

/* Start:/local/components/ramsay/catalog/templates/.default/style.css?1729667011630*/
:root {
    --gradient-in: #FFFFFF;
    --gradient-out: #000000;
    --gender-female-color: #E72680;
    --gender-male-color: #3B73B9;
}

.c-purple {
    --gradient-in: #9256F4;
    --gradient-out: #36DFA9;
}

.c-pink {
    --gradient-in: #FF71A4;
    --gradient-out: #FFA8C8;
}

.c-green {
    --gradient-in: #48DCD2;
    --gradient-out: #99ED4C;
}

.c-yellow {
    --gradient-in: #FF714D;
    --gradient-out: #FBDB3A;
}

.c-blue {
    --gradient-in: #0B38EA;
    --gradient-out: #05E5F3;
}

.c-red {
    --gradient-in: #FF4680;
    --gradient-out: #FDD4AC;
}

.c-sky {
    --gradient-in: #A49CFF;
    --gradient-out: #83D2FF;
}

/* End */


/* Start:/local/components/ramsay/catalog/templates/.default/basket.css?17649219179673*/
:root {
    --basket-grid: auto 336px;
    --basket-gap: 15px;
    --basket-label-size: 30px;
    --basket-label-radius: 6px;
    --basket-label-zoom: 1;
    --basket-list-title-fsize: 24px;
}

.basket_title {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 10px;
}

.basket_desc {
    margin-bottom: 30px;
}

.basket_header {
    display: flex;
    align-items: center;
    gap: 30px;
    font-weight: 600;
    font-size: 16px;
    color: #A9A9A9;
}

.basket_header > div {
    display: flex;
    align-items: center;
    gap: var(--basket-gap);
}

.basket_header > div > .svg-icon {
    font-size: var(--basket-label-size);
}

.basket_check {
    display: none;
}

.basket_remove {
    cursor: pointer;
}

.basket_check + label {
    display: flex;
    align-items: center;
    gap: var(--basket-gap);
    position: relative;
    cursor: pointer;
}

.basket_check + label:before {
    content: '';
    width: var(--basket-label-size);
    height: var(--basket-label-size);
    background: #F1F1F1;
    box-shadow: inset 1.85226px 1.85226px 3.70453px rgba(0, 0, 0, 0.25);
    border-radius: var(--basket-label-radius);
}

.basket_check:checked + label:before {
    background: #0D3A66;
}

.basket_check:checked + label:after {
    content: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjUiIGhlaWdodD0iMjEiIHZpZXdCb3g9IjAgMCAyNSAyMSIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTEuNjMwODYgMTEuNTcxNUw4LjM2NTU1IDE4Ljc3MTVMMjMuNjMwOSAwLjc3MTQ4NCIgc3Ryb2tlPSJ3aGl0ZSIgc3Ryb2tlLXdpZHRoPSIyIi8+Cjwvc3ZnPg==);
    position: absolute;
    left: 2px;
    top: 5px;
    zoom: var(--basket-label-zoom);
}

.basket {
    display: grid;
    grid-template-columns: var(--basket-grid);
    gap: 20px;
}

.basket_list_item {
    display: flex;
    gap: var(--basket-gap);
    margin-top: var(--basket-label-size);
    padding-top: var(--basket-label-size);
    border-top: 1px solid #BEBEBE;
}

.basket_list_item > label {
    align-items: flex-start;
}

.basket_list_item_img {
    width: 150px;
    height: 150px;
    background-image: url(/local/templates/market/assets/img/catalog_item_bg.jpg);
    background-position: center;
    background-size: cover;
    border-radius: 5px;
    position: relative;
    overflow: hidden;
}

.basket_list_item_img:before {
    content: '';
    position: absolute;
    left: 10px;
    right: 10px;
    top: 25px;
    bottom: 25px;
    background: linear-gradient(180deg, var(--gradient-in) 0%, var(--gradient-out) 100%);
    box-shadow: 2px 1px 4px rgba(0, 0, 0, 0.25);
    border-radius: 5px;
}

.basket_list_item_img:after {
    content: '';
    background-image: url(/local/templates/market/assets/img/product_logo.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
    right: 10px;
    bottom: 30px;
    width: 47px;
    height: 25px;
}

.basket_list_item_img_type {
    position: absolute;
    left: 20px;
    top: 35px;
    border: 1px solid #FFFFFF;
    border-radius: 5px;
    font-weight: 500;
    font-size: 10px;
    padding: 3px 6px;
    text-transform: uppercase;
    color: #FFFFFF;
}

.basket_list_item_img_title {
    position: absolute;
    left: 20px;
    right: 20px;
    top: 60px;
    font-family: 'MuseoSansCyrl';
    font-weight: 700;
    font-size: 11px;
    line-height: 107%;
    text-transform: uppercase;
    color: #FFFFFF;
}

.basket_list_item_title {
    flex: 1;
    font-size: var(--basket-list-title-fsize);
    font-weight: 500;
    line-height: 120%;
}

.basket_list_item_info {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.basket_list_item_price {
    display: flex;
    flex-direction: column;
    gap: 5px;
    font-weight: 500;
    font-size: 26px;
    color: #0D3A66;
    text-align: right;
}

.basket_list_item_price > span {
    color: #FC5050;
}

.basket_list_item_price > small {
    font-size: 16px;
    text-decoration-line: line-through;
    color: #A0A0A0;
}

.basket_list_item_counter {
    display: flex;
    width: 135px;
    height: 35px;
    background: #F8F7F5;
    border-radius: 9px;
    justify-content: space-between;
    align-items: center;
}

.basket_list_item_counter > div {
    text-align: center;
    cursor: pointer;
    flex: 0 0 33.333%;
    font-weight: 300;
    font-size: 30px;
}

.basket_list_item_counter > input {
    font-weight: 400;
    flex: 0 0 33.333%;
    width: 33% !important;
    text-align: center;
    background-color: transparent;
    border: none;
    font-weight: 400;
    font-size: 16px;
    color: #000000;
}

.basket_order {
    margin-top: 30px;
    font-weight: 500;
}

.basket_order > button {
    width: 100%;
    line-height: 65px;
    background: #0D3A66;
    box-shadow: inset 1.85226px 1.85226px 3.70453px rgba(0, 0, 0, 0.25);
    border-radius: 10px;
    font-size: 18px;
    color: #FFFFFF;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    border: 1px solid transparent;
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

.basket_order > button:not([disabled]):hover {
    background-color: #184f85;
}

.basket_order > button:not([disabled]):focus {
    background-color: #184f85;
    border-color: #0D3A66;
    box-shadow: 0 0 0 2px rgba(49, 132, 253, .5);
}

.basket_order > button:not([disabled]):active {
    background-color: #184f85;
    border-color: #0D3A66;
}

.basket_order > button:not([disabled]):focus:active {
    box-shadow: 0 0 0 2px rgba(49, 132, 253, .5);
}

.basket_order > button:disabled {
    cursor: default;
    opacity: .5;
}

.basket_order_info {
    background: #F5F4F2;
    border-radius: 13px;
    padding: 16px;
    margin-bottom: 15px;
}

.basket_order_info > div {
    display: flex;
    justify-content: space-between;
}

.basket_order_info_sum {
    font-size: 14px;
    padding-bottom: 5px;
    border-bottom: 1px solid #E2E2E2;
}

.basket_order_info_sale {
    font-size: 14px;
    color: #A1A1A1;
    margin-top: 10px;
}

.basket_order_info_sale > small {
    font-size: 14px;
    color: #FC5050;
}

.basket_order_info_pay {
    margin-top: 35px;
    font-size: 24px;
}

.order {
    width: 710px;
}

.order > h3 {
    font-weight: 600;
    font-size: 28px;
    margin-bottom: 15px;
}

.order > div {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-top: 10px;
}

.order > div > label {
    font-size: 18px;
}

.order > div > input {
    width: 100%;
    line-height: 36px;
    background: #FFFFFF;
    border: 1px solid #0D3A66;
    box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    padding: 0 10px;
}

.order > div > input:focus {
    outline: 0;
    box-shadow: 0 0 0 .25rem rgba(24, 71, 141, .25);
}

.order > div > input.error {
    border-color: #ff6464;
}

.order > div > input.error:focus {
    box-shadow: 0 0 0 .25rem rgba(244, 67, 54, .25);
}

.order > button {
    width: 336px;
    line-height: 44px;
    display: block;
    margin: 30px auto 0;
    background: #0D3A66;
    box-shadow: inset 1.85226px 1.85226px 3.70453px rgba(0, 0, 0, 0.25);
    border-radius: 10px;
    font-weight: 500;
    font-size: 18px;
    color: #FFFFFF;
    text-decoration: none;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    border: 1px solid transparent;
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

.order > button:not([disabled]):hover {
    background-color: #184f85;
}

.order > button:not([disabled]):focus {
    background-color: #184f85;
    border-color: #0D3A66;
    box-shadow: 0 0 0 2px rgba(49, 132, 253, .5);
}

.order > button:not([disabled]):active {
    background-color: #184f85;
    border-color: #0D3A66;
}

.order > button:not([disabled]):focus:active {
    box-shadow: 0 0 0 2px rgba(49, 132, 253, .5);
}

.order > button:disabled {
    cursor: default;
    opacity: .5;
}

@media (max-width: 991px) {
    
    :root {
        --basket-grid: auto;
    }
    
    .basket {
        padding-bottom: 180px;
    }
    
    .basket_order {
        width: 100%;
        position: fixed;
        bottom: 0;
        left: 0;
        background: #FFFFFF;
        box-shadow: 0px -4px 10px rgba(0, 0, 0, 0.1);
        padding: 15px;
    }
    
    .basket_order_info {
        background: transparent;
    }
    
    .order {
        width: 100%;
    }

}

@media (max-width: 600px) {
    
    :root {
        --basket-gap: 10px;
        --basket-label-size: 20px;
        --basket-label-radius: 3px;
        --basket-label-zoom: 0.7;
        --basket-list-title-fsize: 16px;
    }
    
    .basket_header {
        font-size: 12px;
        gap: 15px;
    }
    
    .basket {
        padding-bottom: 130px;
    }
    
    .basket_list_item {
        flex-wrap: wrap;
    }
    
    .basket_list_item_img {
        flex: 100%;
        min-width: 150px;
        margin: 0 25%;
    }
    
    .basket_list_item > label {
        order: 1;
    }
    
    .basket_list_item_title {
        order: 2;
    }
    
    .basket_list_item_info {
        flex: 100%;
        order: 3;
        flex-direction: row-reverse;
        justify-content: space-between;
        align-items: center;
    }
    
    .basket_order_info {
        margin-bottom: 0;
    }
    
    .basket_order_info_pay {
        margin-top: 20px;
        font-size: 18px;
    }
    
    .basket_order > button {
        line-height: 35px;
        font-size: 14px;
    }
    
}

/* End */
/* /local/components/ramsay/catalog/templates/.default/style.css?1729667011630 */
/* /local/components/ramsay/catalog/templates/.default/basket.css?17649219179673 */
