.slide-panel {
    background-color: #ffffff;
    position: fixed;
    right: 0;
    visibility: hidden;
    top: 0;
    z-index: 1000;
    width: 450px;
    padding-bottom: 20px;
}

.slide-panel-right,
.slide-panel-left {
    width: 450px;
    height: 100%;
}
.slide-panel-right {
    right: -1000px;
    transition: all 0.5s;
}
.slide-panel-left {
    left: -1000px;
    transition: 0.5s;
}
.slide-panel-top,
.slide-panel-bottom {
    width: 100%;
    height: 100%;
}
.slide-panel-top {
    top: -1000px;
}
.slide-panel-bottom {
    bottom: -1000px;
}
.slide-panel-back {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 400;
    opacity: 0;
    visibility: hidden;
    background-color: rgba(0, 0, 0, .6);
    -webkit-transition: opacity .25s ease, visibility 0.25s ease;
    transition: opacity .25s ease, visibility 0.25s ease;
}

.slide-panel-title {
    padding: 20px 40px 20px 20px;
    margin: 0;
    font-weight: 600;
    font-size: 20px;
    line-height: 24px;
    color: #171717;
    border-bottom: 1px solid #ECECEC;
}

.slide-panel form {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
}

.slide-panel-close {
    position: absolute;
    right: 15px;
    top: 13px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    width: 40px;
}

.slide-panel-close::after {
    font-family: 'Font Awesome 6';
    content: "\f00d";
    font-weight: 100;
    font-size: 28px;
    line-height: 28px;
}


.slide-panel-content {
    height: calc(100vh - 50px);
    overflow-y: auto;
}



/***************************
    slide-panel-to-cart-wrapper
****************************/

.slide-panel-to-cart-wrapper {
    padding: 20px;
}

.slide-panel-to-cart-wrapper .slide-panel-product-price {
    margin-bottom: 10px;
}
.slide-panel-to-cart-product-name.a-h3 {
    font-size: 18px;
    line-height: 26px;
}

.slide-panel-product-row {}
.slide-panel-product-row span {
    font-weight: 600;
    margin-right: 5px;
}

.slide-panel-multi-options-box-wrapper {
    padding: 20px 0;
}
.slide-panel-multi-options-box-header {
    margin-bottom: 10px;
}
.slide-panel-multi-options-box-content {
    display: flex;
    align-items: center;
    height: 44px;
}
.slide-panel-multi-options-name {
    width: 30%;
}
.slide-panel-multi-options-value {
    display: flex;
    align-items: center;
}
.slide-panel-multi-options-value-unit {}

.slide-panel-multi-options-box-wrapper .nice-select {
    border: 1px solid #DEDACE;
    border-radius: 4px;
}
.slide-panel-multi-options-box-wrapper .nice-select .current {
    font-weight: 600;
}
.slide-panel-multi-options-box-wrapper .nice-select .list {
    width: 200%;
    right: inherit;
    left: 0;
    white-space: wrap;
}


/*********
    success-cartadded
**********/

.success-cartadded-wrapper {
    padding-top: 40px;
}

.multi-options-popover-info-wrapper {
    padding: 0 20px 20px;
    text-align: center;
}


/***************************
    attached-products
****************************/

.attached-products-popover {
    padding: 20px;
}
.attached-products-popover-info {
    padding: 0 20px 20px;
    text-align: center;
}
.attached-products-popover input {
    margin: 0;
    border: 1px solid #A9BC00;
    border-radius: 4px;
    padding: 11px 20px 10px;
}
.attached-products-popover-title {
    font-weight: 700;
    font-size: 16px;
    line-height: 18px;
    color: #2F2F2F;
    text-transform: uppercase;
    margin-top: 30px;
}

.attached-products-popover-filter {
    padding: 20px 0;
}
.attached-products-popover-filter > span {
    font-weight: 700;
    margin-right: 10px;
}
.attached-products-popover-filter > a {
    font-size: 14px;
    line-height: 17px;
    border-bottom: 0.7px dashed #919191;
    margin: 0 20px 20px 0;
}
.attached-products-popover-filter > a:hover,
.attached-products-popover-filter > a.active {
    color: #A9BC00;
}
.slide-panel-product.no_active {
    display: none;
}
.slide-panel-product.active {
    display: flex;
}

.slide-panel-product {
    padding: 10px 0;
    display: flex;
    justify-content: space-between;
}
.slide-panel-product + .slide-panel-product {
    border-top: 1px solid #ECECEC;
}
.slide-panel-product-photo {
    width: 85px;
}
.slide-panel-product-photo img {
    width: 85px;
    height: auto;
    font-size: 8px;
    line-height: 12px;
    transition: 0.5s;
}
.slide-panel-product-info-wrapper {
    padding: 0 15px;
    flex-grow: 1;
    cursor: pointer;
}
.slide-panel-product-cat {
    font-style: normal;
    font-weight: 300;
    font-size: 13px;
    line-height: 15px;
    color: #7D7D7D;
    margin-bottom: 7px;
    text-transform: uppercase;
    transition: 0.5s;
}
.slide-panel-product-name-wrapper {}
.slide-panel-product-name{
    margin-bottom: 7px;
    max-height: 38px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: 0.5s;
    font-weight: 700;
    font-size: 16px;
    line-height: 18px;
    color: #2F2F2F;
    text-transform: uppercase;
}
.slide-panel-product-info-wrapper:hover .slide-panel-product-cat,
.slide-panel-product-info-wrapper:hover .slide-panel-product-name {
    color:  #A9BC00;
    transition: 0.5s;
}
.slide-panel-product-price {
    font-weight: 700;
    font-size: 16px;
    line-height: 15px;
    color: #2F2F2F;
    width: 200px;
}
.slide-panel-product-price span {
    font-weight: 300;
    font-size: 16px;
    line-height: 15px;
    text-decoration-line: line-through;
    color: #ACACAC;
    margin-left: 10px;
}
.slide-panel-product-price i {
    font-weight: 400;
    color: #828282;
}
.slide-panel-product .add-to-cart {
    font-size: 14px;
    line-height: 1;
    padding: 5px 10px 6px;
    border-radius: 3px;
    color: #ffffff;
    transition: 0.5s;
    margin-left: auto;
    display: block;
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: 1;
}
.slide-panel-product .add-to-cart,
.slide-panel-product .add-to-cart.remove:hover{
    background: #A9BC00;
    transition: 0.5s;
}
.slide-panel-product .add-to-cart:hover,
.slide-panel-product .add-to-cart.remove{
    background: #2F2F2F;
    transition: 0.5s;
}

/*******************************
slide-panel-cart-list
**********************************/

.slide-panel-cart-list-empty {
    padding: 20px;
    text-align: center;
}

.slide-panel-cart-empty-text::after {
    content: "";
    display: inline-block;
    height: 8px;
    width: 100%;
    background-color: #121212;
    border-radius: 8px;
}


.slide-panel-cart-empty-ico {
    margin: 40px 0;
}
.slide-panel-cart-empty-ico img {
    width: 40%;
    height: auto;
}
.slide-panel-cart-empty-btn {
    width: 100%;
}
.slide-panel-cart-list-wrapper {
    height: calc(100vh - 192px);
    overflow-y: auto;
}
.slide-panel-cart-list-footer {
    width: 100%;
    padding: 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    height: 140px; /* for wrapper height set */
    box-shadow: 0 0 16px rgba(0,0,0, 0.05);
}
.cart-panel-total {
    width: 50%;
    display: flex;
    align-items: end;
    line-height: 18px;
}
.cart-panel-total .cart-value {
    font-weight: 700;
    margin-left: 10px;
    font-size: 24px;
    line-height: 24px;
    color: #121212;
}
.slide-panel-cart-list-footer .button-dark {
    width: 100%;
}
.slide-panel-cart-product-del{
    align-self: center;
    width: 20px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.5s;
}
.slide-panel-cart-product-del::after{
    font-family: 'Font Awesome 6';
    content: "\f2ed";
    font-style: normal;
    cursor: pointer;
    font-weight: 200;
    font-size: 16px;
    line-height: 16px;
    color: #a6a6a6;
    transition: 0.5s;
}
.slide-panel-cart-product-del:hover::after{
    color: #5897fb;
    transition: 0.5s;
}
.slide-panel-cart-product-del:hover{
    transition: 0.5s;
    transform: scale(1.20);
}


/*********
login, account info
**********/


.slide-panel-body {
    background-color: transparent;
}





/****************************/
/* cart drop in slide-panel */
/****************************/


.slide-panel-drop-wl,
.slide-panel-drop-cart {
    position: fixed;
    top: 115px;
    left: 300px;
    width: 443px;
    /*                    right: calc((100% - 1338px) / 2);*/
    /*    display: none;*/
    z-index: 800;
    background-color: #ffffff;
    padding: 17px 0 17px 22px;
    border-radius: 4px;
    box-shadow: 0 0 25px rgb(0 0 0 / 16%);
}

.slide-panel-drop-cart::before,
.slide-panel-drop-wl::before{
    font-family: 'Font Awesome 6';
    content: "\f0d8";
    font-style: normal;
    font-weight: 900;
    font-size: 25px;
    color: #ffffff;
    position: absolute;
    top:-20px;
}
.slide-panel-drop-cart::before {
    right: 72px;
}
.slide-panel-drop-wl::before{
    right: 141px;
}

.slide-panel-drop-wl .slide-panel-close,
.slide-panel-drop-cart .slide-panel-close {
    color: #cccccc !important;
    padding: 10px 50px 10px;
    font-size: 14px;
    height: auto;
    display: none;
}

.slide-panel-drop-wl .slide-panel-close::before,
.slide-panel-drop-wl .slide-panel-close::after,
.slide-panel-drop-cart .slide-panel-close::before,
.slide-panel-drop-cart .slide-panel-close::after {
    color: #F00;
    width: 20px;
    height: 2px;
}



.slide-panel-drop-cart .cart-popover-header,
.cart-box-top .slide-panel .cart-popover-header {
    border-top: 1px solid #ECECEC;
    padding-top: 18px;
}
.slide-panel-drop-cart .cart-popover-header p,
.cart-box-top .slide-panel .cart-popover-header p {
    font-style: normal;
    font-weight: 300;
    font-size: 13px;
    line-height: 15px;
    color: #7D7D7D;
}
.slide-panel-drop-cart .scroll,
.cart-box-top .scroll {
    max-height: 377px;
    overflow-y: auto;
    padding-right: 22px;
}
/* cart box scrcollbar */
.slide-panel-drop-cart .scroll::-webkit-scrollbar,
.cart-box-top .scroll::-webkit-scrollbar{
    width: 5px;
    background: #DEDACE;
}
.slide-panel-drop-cart .scroll::-webkit-scrollbar-thumb,
.cart-box-top .scroll::-webkit-scrollbar-thumb {
    background: #cccccc;
}
.slide-panel-drop-cart .scroll,
.cart-box-top .scroll {		/* firefox*/
    scrollbar-color: rgb(204,204,204, 0.4) rgba(238,238,238, 0.3);
    scrollbar-width: thin;  /* толщина auto/thin/none */
}


.slide-panel-drop-cart .slide-panel-content,
.cart-box-top .slide-panel-content {
    color: #170f20;
    padding: 0 20px;
    min-height: 1px;
    overflow: hidden;
    position: relative;
    height: auto;
}



.slide-panel-drop-cart .slide-panel-title {
    font-style: normal;
    font-weight: 600;
    font-size: 20px;
    line-height: 24px;
    color: #171717;
    padding-bottom: 18px;
}

.cart-box-top .slide-panel-close {
    display: none;
}


.slide-panel-content iframe {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    padding: 0 20px;
}
.slide-panel-iframe-content form {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}
.slide-panel-form-field {
    width: 48%;
    border: 1px #cfcfcf solid;
    padding: 10px 20px;
}



.slide-panel-drop-cart .slide-panel-product {
    border-top: 1px solid #ECECEC;
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-content: center;
}



.slide-panel-drop-cart .slide-panel-product-photo {
    width: 85px;
}



.slide-panel-drop-cart .slide-panel-product-photo img {
    width: 85px;
}




.slide-panel-drop-cart .slide-panel-product-info-wrapper {
    padding: 0 15px;
    flex-grow: 1;
}

.slide-panel-product-cat {
    font-style: normal;
    font-weight: 300;
    font-size: 13px;
    line-height: 15px;
    color: #7D7D7D;
    margin-bottom: 7px;
    text-transform: uppercase;
}

.slide-panel-product-info-wrapper:hover a .slide-panel-product-name,
.slide-panel-product-info-wrapper:hover a .slide-panel-product-price,
.slide-panel-product-info-wrapper:hover a .slide-panel-product-cat {
    color:  #A9BC00;
}

.slide-panel-product-price a {
    color: #170f20;
}


.slide-panel-product-del {
    align-self: center;
}

.slide-panel-product-del::after {
    font-family: 'Font Awesome 6';
    content: "\f2d3";
    font-style: normal;
    cursor: pointer;
    font-weight: 900;
    font-size: 24px;
    line-height: 24px;
    color: #A9BC00;
}



.slide-panel-to-cart-wrapper {
    width: 100%;
}
.slide-panel-product-add-wrapper {
    width: 100%;
    margin: 20px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.slide-panel-product-add-wrapper span {
    font-weight: 500;
}


.cart-panel-overlay {
    background: linear-gradient(360deg, #FFFFFF 35.21%, rgba(255, 255, 255, 0) 100%);
    height: 50px;
    margin-top: -50px;
}

.cart-panel-footer {
    /*    position: absolute;
        !* bottom: 15px; *!
        border-top: 2px solid #E0E0E0;
        color: #2d2a2a;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        width: 100%;
        left: 0;
        margin: auto;
        !* height: 13vh; *!*/

    display: flex;
    justify-content: space-between;
    align-content: center;
    margin-top: 10px;
    padding-right: 22px;
}
.cart-panel-sum {
    /*   font-size: 18px;
       font-weight: 700;
       width: 100%;
       display: flex;
       align-items: flex-end;
       justify-content: space-between;
       margin: 20px 20px 0 20px;*/
}
.cart-panel-sum div.sum {
    font-style: normal;
    font-weight: 700;
    font-size: 18px;
    line-height: 18px;
    color: #2F2F2F;
    margin-top: 2px;

}
.cart-panel-sum div.total {
    font-style: normal;
    font-weight: 300;
    font-size: 11px;
    line-height: 13px;
    color: #7D7D7D;
}

/*
.cart-panel-sum .total {
    text-align: left;
}
.cart-panel-sum .sum {
    text-align: right;
}*/

a.cart-panel-button {
    background: #A9BC00;
    border: 0.401018px solid #DEDACE;
    font-style: normal;
    font-weight: 400;
    font-size: 16.0407px;
    line-height: 21px;
    text-align: center;
    text-transform: uppercase;
    color: #FFFFFF;
    padding: 9px 15px;

}
a.cart-panel-button:hover {
    opacity: 0.9;
    color: #FFFFFF;
}

/**************************/
/* slide-panel-mod-login */
/**************************/

.slide-panel-mod-login {
    width: 509px;
    position: fixed;
    top:5%;
    left: 20%;
    margin-left: -254px;  /*1/2 width*/
    z-index: 800;

    background-color: #ffffff;
    padding: 30px 35px 35px;
    border-radius: 4px;
    box-shadow: 0 0 25px rgb(0 0 0 / 16%);
}

.slide-panel-mod-login .slide-panel-close {
    position: absolute;
    right: 0;
    top: -26px;
    color: #ffffff !important;
    padding: 0 50px;
    height: auto;

}
.slide-panel-mod-login .slide-panel-close::before,
.slide-panel-mod-login .slide-panel-close::after {
    width: 0;
    height: 0;
    color: #ffffff;
    transform: none;
}

.slide-panel-mod-login .slide-panel-close::after {
    font-family: 'Font Awesome 6';
    content: "\e59b";
    font-style: normal;
    font-weight: 300;
    font-size: 24px;
    color: #fff;
    cursor: pointer;
    margin-left: 8px;
    top: -10px;
}

.slide-panel-mod-login .slide-panel-title{
    font-style: normal;
    font-weight: 600;
    font-size: 20px;
    line-height: 24px;
    text-transform: uppercase;
    color: #121212;
    padding-bottom: 22px;
}
.slide-panel-mod-login .slide-panel-title span {
    border-bottom: 3px solid #A9BC00;
    padding-bottom: 20px;
}
.slide-panel-mod-login .slide-panel-content{
    height: auto;
    min-height: 530px;
    padding: 0;
}
.slide-panel-mod-login .slide-panel-content iframe {
    padding: 0;
}
/* iframe */
.slide-panel-iframe-content form {
    display: block;         /* ?????????????????????? */
}
.slide-panel-iframe-content .slide-panel-form-inner {
    border-top: 1px solid #E8E8E8;
    border-bottom: 1px solid #E8E8E8;
    padding-top: 30px;
    padding-bottom: 20px;
}

.slide-panel-iframe-content .slide-panel-form-inner .message-error-box {
    margin-top: 0;
    padding-top: 0;
    padding-left: 22px;
}

.slide-panel-form-field-wrapper {
    position: relative;
    margin-bottom: 10px;
    padding-left: 1px;
}
.slide-panel-form-field  {
    width: 100%;
    font-style: normal;
    font-weight: 600;
    font-size: 18px;
    line-height: 21px;
    color: #121212;
    padding: 17px 21px 18px;
    margin-bottom: 22px;
    background: #FFFFFF;
    border: 1px solid #E7E7E7;
    border-radius: 4px;
}
.slide-panel-form-field::placeholder {
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 21px;
    color: #8A8A8A;
}

.slide-panel-form-input-ico.open-eye::after,
.slide-panel-form-input-ico.close-eye::after {
    font-family: 'Font Awesome 6';
    content: "\f06e";
    font-style: normal;
    font-weight: 300;
    font-size: 18px;
    line-height: 18px;
    color: #777777;
    position: absolute;
    top: 0;
    right: 19px;
    cursor: pointer;
}
.slide-panel-form-input-ico.close-eye::after {
    content: "\f070";
}
.slide-panel-form-input-ico.open-eye::after{
    content: "\f06e";
}

.slide-panel-form-field-wrapper label {
    font-style: normal;
    font-weight: 300;
    font-size: 18px;
    line-height: 16px;
    color: #303030;
}
.slide-panel-form-field-wrapper .label-check:before {
    margin-right: 13px;
}
a.forgot-passw {
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 20px;
    color: #A9BC00;
}
a.forgot-passw:hover {
    color: #cccccc;
}

.login-button {
    border: 0.401018px solid #DEDACE;
    font-style: normal;
    font-weight: 400;
    font-size: 16.0407px;
    line-height: 21px;
    text-align: center;
    text-transform: uppercase;
    padding: 15px 40px;
    text-shadow: -1.60407px 1.60407px 7.21832px rgb(0 0 0 / 8%);
    display: inline-block;
    margin-top: 10px;
}

.slide-panel-form-new-reg {
    margin-top: 43px;
    margin-bottom: 5px;
}
.slide-panel-form-new-reg span {
    font-style: normal;
    font-weight: 400;
    font-size: 17px;
    line-height: 20px;
    color: #121212;
}
.slide-panel-form-new-reg a {
    color: #A9BC00;
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 21px;
    margin-left: 7px;
    border-bottom: 1px dashed #A9BC00;
}

.slide-panel-info-text {
    margin-top: 30px;
    margin-bottom: 20px;
}
