.cart_popup {
    position: fixed;
    z-index: 11;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.25);
}
.cart_popup_content {
    position: fixed;
    top: 6em;
    background-color: #ffffff;
    width: 37em;
    filter: drop-shadow(0px 4px 29px rgba(69, 136, 225, 0.14)) drop-shadow(0px 4px 9px rgba(0, 0, 0, 0.06));
    padding: 2em;
    box-sizing: border-box;
    border-radius: 0.5em;
    left: 50%;
}
.cart_popup_close {
    position: absolute;
    top: 2em;
    right: 3.25em;
    width: 1.25em;
    height: 1.25em;
    box-sizing: border-box;
    font-size: inherit;
    margin: 0;
    padding: 0;
    border: none;
    background-color: transparent;
    background-image: url(../../../img/icons/close2-273143.svg);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    opacity: 0.5;
    cursor: pointer;
    display: block;
}
.cart_popup_close:hover {
    opacity: 1;
}
.cart_popup_title {
    font-weight: 600;
    font-size: 1.25em;
    margin-bottom: 1em;
}
.cart_popup_table:not(:last-child) {
    margin-bottom: 1.75em;
}
.cart_popup_tr {
    display: flex;
    box-sizing: border-box;
}
.cart_popup_td {
    padding: 0.75em 0.25em;
    box-sizing: border-box;
}
.cart_popup_td:first-child {
    padding-left: 1.25em;
    width: 2.5em;
}
.cart_popup_td:last-child {
    padding-right: 1.25em;
    width: 2.75em;
}
.cart_popup_td:nth-child(2) {
    width: calc((100% - 5.25em)/2);
}
.cart_popup_td:nth-child(3),
.cart_popup_td:nth-child(4) {
    width: calc((100% - 5.25em)/4);
}
.cart_popup_col_title {
    color: #53627C;
    font-weight: 500;
    font-size: 0.75em;
}
.cart_popup_item {
    border: 1px solid #EAF1FC;
    background-color: #FAFAFA;
    height: 5em;
    align-items: center;
    border-radius: 2.5em;
}
.cart_popup_item:not(:last-child) {
    margin-bottom: 0.5em;
}
.cart_popup .custom_checkbox {
    display: block;
}
.cart_popup_item_name {
    color: #317EE5;
}
.cart_popup_item_cost {
    font-size: 1.125em;
}
.cart_popup_item_remove_butt {
    width: 1.25em;
    height: 1.25em;
    box-sizing: border-box;
    font-size: inherit;
    margin: 0;
    padding: 0;
    border: none;
    display: block;
    background-color: transparent;
    background-image: url(../../../img/icons/close2-babfcd.svg);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    cursor: pointer;
}
.cart_popup_footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.cart_popup_footer .butt {
    min-width: 8.5em;
}
.cart_popup_total_text {
    font-size: 0.875em;
    margin-right: 0.5em;
}
.cart_popup_total_sum {
    font-weight: 500;
    font-size: 1.375em;
}
@media(max-width: 1199px) {
    .cart_popup_content {
        top: 4.5em;
        left: auto;
        right: 1em;
        max-width: calc(100% - 2em);
    }
}