/*pop shop cart*/
.pop_cart_block {
    /* display: none; */
    position: fixed;
    background: var(--cart-bg-color);
    min-height: 100%;
    z-index: 9999999999;
    right: 0;
    width: 300px;
    box-sizing: border-box;
    top: 0;
    display: none;
    box-shadow: -4px 0px 12px rgb(0 0 0 / 85%);
}

@media(max-width: 768px) {
    .pop_cart_block {
        height: 480px;
        top: unset;
        min-height: unset;
        bottom: 0;
        width: 96%;
        bottom: -520px;
        overflow: hidden;
        transition: bottom 0.3s;
        /* visibility: hidden; */
        right: 2%;
        border-radius: 9px 9px 0 0;
        display: block;
        max-width: 400px;
        box-shadow: 0px 0px 12px rgb(0 0 0 / 85%);
    }

    .pop_cart_block.show {
        display: block;
        bottom: 0;
        visibility: visible;
        z-index: 9999;
    }
}

.pop_cart_top {
    padding: 23px 29px;
    /* border-bottom: 2px solid #36322F; */
    position: relative;
    box-sizing: border-box;
    width: 300px;
}

@media(max-width: 768px) {
    .pop_cart_top {
        width: unset;
    }
}

.pop_cart_title {
    font-size: 23px;
    letter-spacing: 2px;
    font-weight: 500;
}

.pop_cart_content {
    padding: 15px 15px;
    overflow-y: auto;
    height: calc(100vh - 217px);
    width: 300px;
    box-sizing: border-box;
}

@media(max-width: 768px) {
    .pop_cart_content {
        width: unset;
        height: 286px;
    }
}

.pop_cart_item {
    margin-bottom: 10px;
    display: flex;
    padding: 0 0px 10px;
    border-bottom: 1px solid #36322F;
    position: relative;
    flex-wrap: wrap;
}

.pop_cart_item:last-child {
    border: 0;
}

.pop_cart_item_img {
    width: 30%;
    box-sizing: border-box;
}

@media(max-width: 480px) {
    .pop_cart_item_img {
        /* width: unset; */ margin-bottom: 15px;
    }
}

@media(max-width: 480px) {
    .pop_order_list .pop_cart_item_img {
        margin-bottom: 15px;
        width: unset;
        max-width: 180px;
        margin: 0 auto 15px;
    }
}

.pop_cart_item_img img {
    border-radius: 4px;
    max-width: 100%;
}

.pop_cart_item_desc {
    padding: 0 9px;
    width: 70%;
    box-sizing: border-box;
}

@media(max-width: 480px) {
    .pop_cart_item_desc {
        /* width: unset; */
    }
}

@media(max-width: 480px) {
    .pop_order_list .pop_cart_item_desc {
        width: unset;
        margin: auto;
    }
}

.pop_cart_item_text {
    padding: 8px 0;
}

.pop_cart_bottom {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 12px;
    box-sizing: border-box;
    padding: 15px 7px 19px;
    border-top: 1px solid #2B4554;
    width: 300px;
    display: none;
    background-color: #091C27;
    text-align: center;
}

@media(max-width: 768px) {
    .pop_cart_bottom {
        padding-bottom:20px;
        width: 100%;
    }
}

.pop_cart_item_title {
    /* text-transform: uppercase; */
    display: block;
    font-size: 15px;
    letter-spacing: 0.03em;
    margin-right: 24px;
    font-weight: 500;
    color: #fff;
}

.pop_cart_item_variations {
    padding: 5px 0 0 6px;
    font-size: 12px;
    color: #d0e599;
}

.pop_cart_item_variations_item {
    padding: 2px 0;
}

.pop_cart_item_variations_title {
    cursor: pointer;
    padding: 4px 0;
    display: inline-block;
    border-bottom: 1px dashed #3086b8;
    color: #c2c2c2;
    transition: all 0.2s;
}

.pop_cart_item_variations_title:hover {
    color: #fff;
    border-color: #fff;
}

.pop_cart_item_variations_item_content {
    display: none;
}

.pop_cart_item_price {
    color: #ffffff;
    font-size: 16px;
    border: 0;
    /* display: block; */
    /* text-align: right; */
    font-weight: 500;
    width: 70%;
    display: inline-block;
    text-align: right;
    font-weight: 500;
}

.pop_cart_remove_button {
    display: block;
    position: absolute;
    background-size: 14px;
    text-indent: -999em;
    background-repeat: no-repeat;
    width: 22px;
    height: 22px;
    background-position: center 1px;
    right: 0;
    top: 0;
    cursor: pointer;
    background-color: #0e2a3a;
    border-radius: 50%;
}

.pop_cart_item_price_block {
    padding: 12px 0;
    display: flex;
    /* justify-content: center; */
    align-items: center;
}

.pop_cart_item_count {
    width: 26%;
    display: inline-block;
}

.pop_cart_result {
    color: #ffffff;
    font-size: 23px;
    border: 0;
    padding-bottom: 14px;
    text-align: center;
    font-weight: 500;
}

.pop_cart_bottom .button_one {
    margin: auto;
    padding: 7px 9px;
    font-size: 12px;
    /* min-width: 142px; */
    color: #000;
    background-color: #D6C14D;
    /* text-transform: uppercase; */
    letter-spacing: 0.05em;
    font-weight: 500;
    cursor: pointer;
    border-radius: 3px;
}

.pop_cart_button_open_cart {
    font-size: 13px;
    display: block;
    margin-top: 9px;
    color: #bcbcbc;
    display: none;
}

.pop_cart_close_button {
    height: 32px;
    background-repeat: no-repeat;
    position: absolute;
    right: 10px;
    top: 6px;
    cursor: pointer;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pop_cart_coupon_block {
    padding-bottom: 16px;
    /* border-bottom: 1px solid #2B4554; */
    margin-bottom: 0;
    /* display: none; */
}

.pop_cart_coupon_show_button {
    background-color: #0f2f41;
    display: inline-block;
    padding: 8px 18px 7px;
    cursor: pointer;
    border-radius: 3px;
    /* margin-bottom: 4px; */
    font-size: 12px;
}

@media(max-width: 768px) {
    .pop_cart_coupon_show_button {
        background-color: transparent;
        padding: 0 2px 3px;
        border-bottom: 1px dashed #d0e599;
        color: #d0e599;
    }
}

.pop_cart_coupon_title {
    /* width: 30%; */
    font-weight: 400;
    margin-bottom: 10px;
    letter-spacing: 0.05em;
}

.pop_cart_coupon_field {
    display: inline-block;
    width: 123px;
    margin-right: 7px;
}

.pop_cart_coupon_field input {
    padding: 5px 8px;
    display: block;
    width: 100%;
    box-sizing: border-box;
    border-radius: 1px;
    border: 2px solid #0E3145;
    box-shadow: unset;
    background-color: #0E3145;
    border-radius: 3px;
    color: #fff;
    transition: all 0.2s;
}

.pop_cart_coupon_field input:focus {
    border-color: #224A61;
}

.pop_cart_coupon_top {
    margin-bottom: 2px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    flex-direction: column;
}

.pop_cart_coupon_added {
    /* width: 70%; */
    text-align: right;
    font-size: 12px;
    display: none;
    margin-bottom: 8px;
    padding: 0 12px;
}

.pop_cart_coupon_remove_button {
    /* text-transform: uppercase; */
    border-bottom: 1px dashed #dddddd;
    color: #dddddd;
    display: inline-block;
    cursor: pointer;
    font-weight: 500;
}

.pop_cart_coupon_added_str {
    display: inline-block;
    margin-right: 5px;
}

.pop_cart_coupon_err {
    padding-top: 2px;
    color: #d50c0c;
    display: none;
    font-weight: 500;
    text-align: right;
    font-size: 14px;
    margin-bottom: 8px;
}

.product_count {
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: Roboto-Black, sans-serif;
    font-size: 16px;
    user-select: none;
    font-weight: 300;
}

@media(max-width: 800px) {
    .product_count {
        /* margin-top:10px; */
    }
}

.product_count_button {
    padding: 4px 6px;
    cursor: pointer;
}

@media(max-width: 768px) {
    .product_count_button {
        font-size: 31px;
        padding: 4px 7px;
    }
}

.load_placeholder {
    min-height: 120px;
    display: flex;
    align-items: center;
    width: 100%;
    justify-content: center;
    letter-spacing: 0.05em;
}

.pop_cart_pay_title {
    font-weight: 500;
    margin-bottom: 5px;
}

.pop_pay_methods {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 29px;
}

.pop_cart_pay_methods {
    white-space: nowrap;
    min-width: 100%;
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    overflow: hidden;
    padding: 0 3px;
}

.pop_cart_pay_method_item {
    /* background-color: #e74c3c; */
    min-width: 58px;
    max-width: 112px;
    margin: 2px 2px;
    padding: 5px 3px;
    /* background-color: #14415B; */
    border-radius: 3px;
    cursor: pointer;
}

.pop_cart_pay_method_img {
    /* min-height: 51px; */
    display: flex;
    align-items: center;
}

.pop_cart_pay_method_img img {
    max-width: 100%;
}

.pop_cart_pay_method_item_in {
    transition: all 0.2s;
    height: 100%;
    overflow: hidden;
    padding: 4px 8px;
}

.pop_cart_pay_method_item input {
    display: none;
}

.pop_cart_pay_method_item > input[type=radio]:checked + .pop_cart_pay_method_item_in {
    background-color: #14415B;
    border-color: #1E475F;
    cursor: default;
    /* padding: 4px; */
    border-radius: 4px;
}

.pop_cart_pay_method_title {
    font-size: 12px;
    max-width: 100%;
    white-space: initial;
    margin-top: 6px;
    text-align: center;
}

.pay_methods_scroll_arrow {
    width: 27px;
    height: 27px;
    background-size: 100%;
    position: absolute;
    background-repeat: no-repeat;
    background-position: center;
    cursor: pointer;
}

.pay_methods_scroll_arrow_l {
    transform: rotate(90deg);
    left: 0;
    opacity: 0;
    transition: all 0.2s;
}

.pay_methods_scroll_arrow_r {
    transform: rotate(-90deg);
    right: 0;
}

.pop_pay_desc_item_paypal {
    padding: 0 12px 10px 12px;
    margin: auto;
    max-width: 400px;
    text-align: center;
    margin-bottom: 8px;
    font-size: 13px;
    color: #d0e599;
    font-weight: 400;
    letter-spacing: 0.03em;
    line-height: 150%;
    display: none;
}

.pop_pay_sum {
    text-align: center;
    padding: 2px 12px 9px;
    /* display: none; */
}

.pop_pay_sum .webinar_page_price {
    margin: 0;
    font-weight: 500;
}

.pop_pay_countdown {
    padding: 3px 12px 10px;
}

.pop_pay_countdown .webinar_countdown_item:nth-child(1) {
    display: none;
}

.pop_cart_button_checkout {
    width: 88%;
    padding: 15px 11px;
    letter-spacing: 0.08em;
}

/*/pop shop cart*/
