/* Стили Корзина в шапке */
.small-basket {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align:center;
    -ms-flex-align:center;
            align-items:center;
    color:#000000;
}
.small-basket:hover, .small-basket:focus {
    text-decoration: none;
    color:#000000;
}
.small-basket i {
    display: block;
    width: 30px;
    height: 30px;
    flex-shrink: 0;
    margin-right: 12px;
    background-image: url(../img/shopping-cart.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}
.center-header .right-media .small-basket i{
    -webkit-transform: none;
    -moz-transform: none;
    -ms-transform: none;
    -o-transform: none;
    transform: none;
}
.small-basket__box {
    margin-right: 6px;
    font-size: 12px;
}
.small-basket__box span {
    display: block;
}
.small-basket__box .txt {
    font-weight: 700;
    text-transform: uppercase;
}
.small-basket:hover .small-basket__box .txt {
    color:#FFD511;
}
.small-basket__count {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
            justify-content: center;
    border-radius: 50%;
    flex-shrink: 0;
    min-width: 25px;
    width: fit-content;
    height: 25px;
    padding: 0px 6px;
}
.small-basket__count_y {
    background-color:#FFD511;
}
.small-basket__count_n {
    background-color:#EEEEEE;
}
/* Стили Корзина */
.cart-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
            flex-direction: column;
    gap:18px;
    font-size: 14px;
    line-height: 100%;
}
.item-col1 {
    width: 500px;
}
.item-col2 {
    width: 120px;
}
.item-col3 {
    width: 117px;
}
.item-col4 {
    width: 120px;
}
.item-col5 {
    width: 28px;
}
.cart-head {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
            justify-content: space-between;
    width: 100%;
    border-bottom: 1px solid #00000033;
    padding-bottom: 15px;
}
.cart-head span {
    display: inline-block;
    font-weight: 700;
}
.cart-wrapper .mobile {
    display: none;
}
.cart-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
            align-items: center;
    -ms-flex-negative: 0;
        flex-shrink: 0;
}
.item-link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
            align-items: center;
    gap: 19px;
    color: #333333;
}
.item-link:hover {
    text-decoration: none;
    color: #333333;
}
.item-link__name {
    font-weight: 400;
}
.item-link__img {
    width: 78px;
    height: 64px;
    border-radius: 3px;
    overflow: hidden;
    flex-shrink: 0;
}
.item-link__img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.cart-item .price {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
            flex-direction: column;
    gap:4px;
}
.cart-item .price span {
    flex-shrink: 0;
}
.old-price {
    text-decoration: line-through;
    color:#00000070;
    font-weight: 400;
}
.current-price, .price-summ {
    font-weight: 700;
    color:#FF0101;
}
.discount {
    background-color: #FFD511;
    padding: 2px 4px;
    font-size: 12px;
    font-weight: 700;
    width: fit-content;
    border-radius: 3px;
}
.counter-pr {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
            align-items: center;
    gap: 6px;
}
.counter-pr input[type="text"] {
    border: 1px solid #00000033;
    border-radius:3px;
    padding: 6px 20px;
    width: 60px;
    height: 28px;
    text-align: center;
}
.btn-count {
    background-color: #FFD511;
    width: 28px;
    height: 28px;
    font-size: 12px;
    font-weight: 700;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align:center;
    -ms-flex-align:center;
            align-items:center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
            justify-content: center;
    border: none;
    border-radius: 3px;
    cursor: pointer;
}
.delete-pr-cart {
    width: 28px;
    height: 28px;
    border-radius: 50%;
}
.delete-pr-cart:hover {
    background-color:#FFD511;
}
.ico-basket {
    display: inline-block;
    background-image: url(../img/basket.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    width: 100%;
    height: 100%;
}

.itog {
    background-color:#F3F3F3;
    border-radius: 3px;
    padding: 12px;
    max-width: 309px;
    width: 100%;
    margin: 24px 0;
    font-size: 16px;
    font-weight: 700;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
            justify-content: space-between;
    margin-left: auto;
}
.itog span:first-child {
    color:#00000033;
}
.itog-summ {
    color:#000000;
}
.cart-btns {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
            justify-content: flex-end;
    gap: 18px;
}
.cart-btns a {
    font-size: 12px;
    font-weight: 700;
    line-height: 100%;
    border-radius: 3px;
    color: #000000;
    text-transform: uppercase;
    padding: 0 16px;
    height: 40px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align:center;
    -ms-flex-align:center;
            align-items:center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
            justify-content: center;
    width: fit-content;
    flex-shrink: 0;
    cursor: pointer;
}
.cart-btns a:hover {
    text-decoration: none;
}
.cart-btns .btn-white {
    border: 1px solid #000000;
}
.cart-btns .btn-orang {
    background-color:#FFD511;
}
.ico-arrow-up-right {
    display: inline-block;
    background-image: url(../img/arrow-up-right.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    width: 16px;
    height: 16px;
}
.cart-btns .btn-orang i {
    margin-left: 13px;
    margin-bottom: 2px;
}
.checkbox-submit .right {
	flex-shrink:0;
}
.bx-sls .dropdown-icon {
	left: 18px;
	top: 12px;
}
.bx-sls .dropdown-block {
	padding:12px 36px;
}
.bx-sls .bx-ui-sls-clear {
	margin-top: 5px;
}
.bx-sls .bx-ui-sls-container {
	min-height: 14px;
}
#order_form_content .dropdown-block input[type="text"] {
	margin:0;
	font-family: ProximaNova, sans-serif;
	height: inherit;
}
/* Адаптив Корзина */
@media screen and (max-width: 1023px) {
    .item-col1 {
        width: 286px;
    }
}
@media screen and (max-width: 768px) {
    .cart-btns {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        gap: 12px;
    }
    .cart-btns a {
        width: 100%;
    }
}
@media screen and (max-width: 767px) {
    .cart-head {
        display: none;
    }
    .cart-wrapper {
        gap: 24px;
    }
    .cart-wrapper .mobile {
        display: block;
        font-size: 14px;
        font-weight: 700;
        line-height: 100%;
    }
    .cart-wrapper .cart-item {
        border-bottom: 1px solid #00000033;
        padding-bottom: 24px;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-box-align: start;
        -ms-flex-align: start;
                align-items: flex-start;
        row-gap: 16px;
    }
    .cart-wrapper .cart-item:last-child {
        border-bottom: 0;
        padding-bottom: 0;
    }
    .item-link {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    }
    .item-link__name {
        max-width: 233px;
        width: 60%;
    }
    .item-col1, .name-pr {
        width: 100%;
    }
    .item-col2, .item-col4 {
        min-width: 50%;
    }
    .number-counter {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
                flex-direction: column;
        gap: 4px;
    }
}
/* Стили в карточке товара */
.btns-product {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}
/* Стили стр Оформление заказа */
#order_form_content {
    max-width: 636px;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
}
.form-rightbox {
    max-width: 176px;
    width: 100%;
}
.form-leftbox {
    max-width: 420px;
    width: 100%;
    margin-right: 40px;
}
.form-rightbox {
    display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
                flex-direction: column;
    gap: 40px;
}

.form-subtitle {
    font-size: 14px;
    font-weight: 700;
    line-height: 100%;
    margin-bottom: 12px;
}
#order_form_content .form-leftbox label{
    font-size: 12px;
}
.form-item {
    margin-bottom: 12px;
    display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
                flex-direction: column;
}
.form-item:last-child {
    margin-bottom: 0;
}
#order_form_content input[type="text"], 
#order_form_content input[type="email"], 
#order_form_content input[type="phone"], 
#order_form_content input[type="select"] {
    height: 40px;
}
#order_form_content textarea {
    height: 109px;
    margin-bottom: 0;
}
#order_form_content input[type="text"], 
#order_form_content input[type="email"], 
#order_form_content input[type="phone"], 
#order_form_content input[type="select"],
#order_form_content textarea {
    background-color: #ffffff;
    border: 1px solid #00000033;
    border-radius: 3px;
    padding: 16px 18px;
    font-size: 14px;
    margin-top: 12px;
}
#order_form_content input[type="file"] {
    background-color: #ffffff;
}
.file-wrapper {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
            justify-content: space-between;
    align-items:center;
    width: 100%;
}
.file-box {
    max-width: 275px;
}
.file-box p {
    font-size: 10px;
    color: #333333;
}
.file-input-container {
    overflow: hidden;
    position: relative;
    margin-bottom: 6px;
  }
  
  .file-input-label {
    background: #F0F0F0;
    padding: 6px 8px;
    cursor: pointer;
    border-radius: 3px;
    border: 1px solid #00000033;
  }
  
  .file-input {
    width: 0.1px;
    height: 0.1px;
    opacity: 0;
    position: absolute;
    z-index: -1;
  }
.file-label {
    margin-left: 8px;
    font-weight: 700;
}
#order_form_content .form-leftbox label span {
    color: #FF0101;
}

#order_form_content .radio-box label span {
    display: block;
    font-weight: 700;
}
.form-rightbox input:last-child {
    margin-bottom: 0;
}
.radio-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 12px;
    -webkit-box-align:center;
    -ms-flex-align:center;
            align-items:center;
    margin-bottom: 12px;
}
#order_form_content .ppc-type-user .aside__category-select__block-checkbox__label {
	font-size: 14px;
	flex-shrink: 0;
}
.form-radio { 
    position: relative;
    width: 20px;
    height: 20px;
	flex-shrink: 0;
}
.ppc-type-user .aside__category-select__block-checkbox__list input[type=radio] {
 	width: 20px;
    height: 20px;
	flex-shrink: 0;
}
.ppc-type-user .aside__category-select__block-checkbox__list {
	position: relative;
	gap: 12px;
    -webkit-box-align:center;
    -ms-flex-align:center;
            align-items:center;
}
.form-radio input[type=radio] {
    width: 100%;
    height: 100%;
}
.ppc-type-user .aside__category-select__block-checkbox__list input[type=radio]:checked,
.form-radio input[type=radio]:checked {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
	content: "";
	display: inline-block;
	background-image: url(../img/radio-button.svg);
    background-position:center;
    background-repeat:no-repeat;
    background-size:contain;
}
.form-radio input[type=radio]:checked {
	position: absolute;
	left: 0;
	bottom: 1px;
}

.checkbox-submit {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
/*    gap: 30px; */
    max-width: 420px;
    width: 100%;
    margin-top: 12px;
}
.checkbox-custom  {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align:center;
    -ms-flex-align:center;
            align-items:center;
}
.checkbox-submit .left a {
    display: initial;
    color: #59A600;
    text-decoration: underline;
}
.checkbox-submit input[type=checkbox] {
    margin-right: 8px;
}
.checkbox-text {
    font-weight: 700;
}
/* Сброс стандартного оформления чекбокса */
input[type="checkbox"] {
    -webkit-appearance: none;
    appearance: none;
    width: 24px;
    height: 24px;
    border: 1px solid #000000;
    background-color: #fff;
    cursor: pointer;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    margin: 0;
    flex-shrink: 0;
}

/* Стили для состояния "отмечено" */
input[type="checkbox"]:checked {
    background-color: #000000;
    background-image:url(../img/checkbox-ico1.png);
    background-position:center;
    background-repeat:no-repeat;
    background-size:contain;
}

/* Стили для состояния "отключено" */
/* input[type="checkbox"]:disabled {
} */
.bx-sls .dropdown-block {
	margin-top: 12px;
}
.dFlex {
	display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.ppc-type-user .best-deals__tabs {
	gap: 20px;
	margin-bottom: 12px;
}

/* Адаптив Оформление заказа */
@media screen and (max-width: 767px) {
    .form-order, .checkbox-submit {
        flex-direction: column;
    }
	.checkbox-submit {
        gap: 30px;
    }
}
.ppc-measure {
    color: #808080;
}