*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

@font-face {
    font-family: "VolteSemibold";
    src: url('../../fonts/VolteRoundedSemibold/font.woff2') format('woff2'), url('../../fonts/VolteRoundedSemibold/font.woff') format('woff');
}

@font-face {
    font-family: "VolteRegular";
    src: url('../../fonts/VolteRoundedRegular/font.woff2') format('woff2'), url('../../fonts/VolteRoundedRegular/font.woff') format('woff');
}


h1,h2,h3,h4,h5,h6{
    font-family: 'VolteSemibold', 'sans-serif';
}

ul {
    list-style: none;
}

.listUnstyled {
    padding-left: 0;
    margin-bottom: 0;
}

address {
    font-style: normal;
}

:root{
    --primary-color: #F49D1A;

    --surface-red: #E53012;
    --surface-smoke: #F5F5F5;
    --surface-dark: #343332;
    --surface-green: #65B22E;
    --surface-yellow: #F39200;


    --text-primary: #343332;
    --text-secondary: #858584;
    --text-white: #FFF;

    --color-green-100: #EFF7EA;

    --popup-bg: #49484733;

    --border-primary: #D6D6D6;


    --yellow: #FC0;

    --blue-200: #EFF9FE;
    --yelow-100: #FEF4E5;
    --gray-100: #EAEAEA;
}

body{
    font-family: 'VolteRegular', sans-serif;
/*     max-width: 100vw;
    overflow: hidden; */
    color: var(--text-primary);
/*     overflow-x: hidden;
    max-width: 100vw;
    position: relative; */
    padding-top: 147px;
}

@media (min-width: 1280px) {
    body {
        padding-top: 0;
    }
}

body.popupIsActive {
    overflow: hidden;
}

body .bodyBackdrop {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 199;
    background-color: var(--popup-bg);
    visibility: hidden;
    opacity: 0;
}

body:has(.searchResultsWrappShow) .bodyBackdrop {
    opacity: 1;
    visibility: visible;
}

.input{
    background-color: white;
    padding: 8px 12px;
    border-radius: 8px;
    color: var(--text-primary);
    border: 2px solid transparent;
    outline: 3px solid transparent;
    transition: 0.3s;
}

button {
    border: 0;
}

input,
textarea{
    font-family: 'VolteRegular', sans-serif;
    resize: none;
}

a {
    color: currentColor;
    text-decoration: underline;
}

a:hover {
    text-decoration: none;
}

.linkNoUnderline,
.linkUnderlineHover {
    text-decoration: none;
}

.linkUnderlineHover:hover {
    text-decoration: underline;
}

.linkIcon {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.linkIcon svg {
    fill: currentColor;
}

strong, b {
    font-family: 'VolteSemibold', 'sans-serif';
}

.textSmall {
    font-size: 12px;
}

.textSecondary {
    color: var(--text-secondary)
}

.input:focus{
    border: 2px solid var(--primary-color);
    outline: 3px solid rgba(243, 146, 0, 0.30);
}

.primary-btn{
    border: none;
    background-color: var(--primary-color);
    color: white;
    font-family: 'VolteSemibold', 'sans-serif';
    padding: 15px 24px;
    border-radius: 8px;
    width: fit-content;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.primary-btn:hover {
    background-color: var(--surface-yellow);
}

a.primary-btn{
    display: block;
    text-decoration: none;
}

.primary-btn a {
    text-decoration: none;
}

.primary-btn.danger {
    background-color: var(--surface-red);
}

.buttonText {
    border: 0;
    background-color: transparent;
    font-family: inherit;
    font-size: inherit;
    cursor: pointer;
}

.btn-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-icon-left {
    justify-content: flex-start;
    text-align: left;
}

a.btn-icon {
    display: flex;
}

.terciary-btn{
    color: var(--text-primary);
    text-decoration: underline;
}

.inputWrappMain,
.phoneInputWrapp{
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.inputWrappMain label,
.phoneInputWrapp label{
    font-weight: 600;
    font-size: 14px;
    line-height: 140%;
    font-family: 'VolteSemibold', 'sans-serif';
}

.inputWrappMain p.error,
.phoneInputWrapp p.error{
    color: var(--surface-red);
    margin-top: 3px;
    width: fit-content;
    text-align: left;
    display: flex;
    align-items: center;
    gap: 4px;
}

.inputWrappMain .inputWrapp.error,
.phoneInputWrapp .inputFull.error{
    border: 1px solid var(--surface-red);
}

.inputWrappMain p.error svg,
.phoneInputWrapp p.error svg{
    width: 16px;
    height: 16px;
    min-width: 12px;
    min-height: 12px;
    flex-shrink: 0;
}

.inputWrappMain .desc{
    font-size: 12px;
}

.inputWrappMain .inputWrapp,
.inputWrappMain .inputFile,
.phoneInputWrapp .inputFull{
    background-color: var(--text-white);
    border: 1px solid var(--text-secondary);
    border-radius: 8px;
    width: 100%;
    padding: 8px 12px;
    border: 1px solid var(--text-secondary);
    outline: 2px solid transparent;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: 0.3s;
}

.inputWrappMain .inputWrapp.inputWrappLg {
    padding-top: 13px;
    padding-bottom: 13px;
}

.phoneInputWrapp .inputFull{
    padding: 0px 12px;
}

.inputWrappMain .inputWrapp input::placeholder,
.phoneInputWrapp .inputFull input::placeholder,
.inputWrappMain .inputWrapp textarea::placeholder{
    color: var(--border-primary);
}

.inputWrappMain .inputWrapp input,
.phoneInputWrapp .inputFull input,
.inputWrappMain .inputWrapp textarea{
    color: var(--text-primary);
    background-color: transparent;
    border: none;
    outline: none;
    font-size: 16px;
    width: 100%;
}

.inputWrappMain .inputFile {
    overflow: hidden;
    font-size: 16px
}

.inputWrappMain .inputFile::file-selector-button {
    padding: 8px 12px;
    margin: -8px -12px;
    margin-inline-end: 12px;
    background-color: var(--primary-color);
    color: white;
    pointer-events: none;
    border-color: inherit;
    border-style: solid;
    border-width: 0;
    border-inline-end-width: 1px;
    border-radius: 0;
    font-family: 'VolteSemibold', 'sans-serif';
    transition: 0.3s ease;
}

/*.inputWrappMain .inputFile:hover:not(:disabled):not([readonly])::file-selector-button {
    background-color: $form-file-button-hover-bg;
}*/

.inputWrappMain .inputWrapp textarea{
    min-height: 100px;
}

.inputWrappMain .inputWrapp textarea.rows {
    min-height: 0;
}

.inputWrappMain .inputWrapp:focus-within{
    border: 1px solid var(--primary-color);
    outline: 2px solid rgba(243, 146, 0, 0.30);
}

.checkboxWrapp {
    position: relative;
}

.checkboxWrapp a {
    color: var(--text-primary);
}

.checkboxWrapp label {
    display: flex;
    gap: 6px;
    font-size: 14px;
    line-height: 140%;
}

.checkboxWrapp .checkbox {
    position: relative;
    margin-top: 3px;
    background-color: var(--text-white);
    color: var(--text-white);
    border: 1px solid var(--text-secondary);
    width: 15.75px;
    height: 15.75px;
    padding: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    cursor: pointer;
}

.checkboxWrapp .checkbox .iconChecked,
.checkboxWrapp .checkbox .iconIndeterminate {
    display: none;
}

.checkboxWrapp input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkboxWrapp.checked .checkbox,
.checkboxWrapp input[type="checkbox"]:checked ~ label .checkbox {
    background-color: var(--primary-color);
    border: 1px solid var(--primary-color);
}

.checkboxWrapp.checked .checkbox .iconChecked,
.checkboxWrapp input[type="checkbox"]:checked ~ label .checkbox .iconChecked {
    display: block;
}

.checkboxWrapp.indeterminate .checkbox .iconIndeterminate {
    display: block;
}

.radioCheckWrapp{
    display: flex;
    gap: 6px;
    align-items: center;
    font-size: 16px;
    line-height: 140%;
}

.radioCheckWrapp .radioCheck{
    width: 20px;
    height: 20px;
    border-radius: 999px;
    background-color: white;
    border: 1px solid var(--border-primary);
    display: flex;
    align-items: center;
    justify-content: center;
}

.radioCheckWrapp .radioCheck .radio{
    width: 8px;
    height: 8px;
    background-color: var(--primary-color);
    display: none;
    border-radius: 999px;
}

.radioCheckWrapp.checked .radioCheck{
    border: 1px solid var(--primary-color);
}

.radioCheckWrapp.checked .radioCheck .radio{
    display: block;
}

.checkboxWrapp p,
.checkboxWrapp label {
    margin-top: 1px;
}


.loadMoreSection .loadMoreWrapper{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    justify-content: center;
}

.loadMoreSection .loadMoreWrapper .primary-btn{
    display: flex;
    align-items: center;
    gap: 10px;
}

.loadMoreSection .loadMoreWrapper .primary-btn svg{
    min-width: 12px;
    min-height: 24px;
}

.loadMoreSection .loadMoreWrapper .pagesWrapp{
    display: flex;
    align-items: center;
    gap: 10px;
}

.loadMoreSection .loadMoreWrapper .pagesWrapp .pages{
    display: flex;
}

.loadMoreSection .loadMoreWrapper .pagesWrapp .pages p{
    width: 32px;
    height: 32px;
    border-radius: 8px;
    padding: 4px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.loadMoreSection .loadMoreWrapper .pagesWrapp .pages p a{
    text-decoration: none;
    color: currentColor;
}

.loadMoreSection .loadMoreWrapper .pagesWrapp .pages p.selected{
    background-color: var(--surface-smoke);
}

.tabs .tabContent.hidden {
    display: none !important;
}

.flashMessage {
    background-color: var(--blue-200);
    padding: 8px 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    border-radius: 4px;
    width: 100%;
    margin: 15px 0;
}

.flashMessage button {
    border: 0;
    margin-left: auto;
    background-color: transparent;
    cursor: pointer;
    font-size: 20px;
}

.flashMessage svg {
    min-width: 12px;
    min-height: 12px;
}

.flashMessage.flashMessagedanger {
    background-color: var(--yelow-100);
}

.flashMessage.flashMessagesuccess {
    background-color: #D0E8C0;
}

.flashMessage.flashMessagesuccess svg,
.flashMessage.flashMessagesuccess i {
    fill: var(--surface-green);
    color: var(--surface-green);
}

:target {
    scroll-margin-top: 88px;
}

.inputWrappPassword .showPassword {
    display: none;
}

.inputWrappPassword:not(.show) {
    .showPassword {
        display: block;
    }

    .hidePassword {
        display: none;
    }
}

.autoGrow {
    position: relative;
    flex: 1;
    text-align: right;
}

.autoGrowText {
    display: inline-block;
    padding: 0 3px;
    font-size: inherit;
    opacity: 0;
    width: 100%;
    height: 100%;
    max-width: 50px;
}

.autoGrowInput {
    position: absolute;
    left: 0;
    appearance: none;
    width: 100%;
    height: 100%;
    border: 0;
    padding: 0 3px;
    background: transparent;
    font-size: inherit;
    text-align: center;
    color: var(--text-primary);
}

.autoGrowInput::-webkit-outer-spin-button,
.autoGrowInput::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.autoGrowInput[type=number] {
    -moz-appearance:textfield; /* Firefox */
}

.amountWrappUnit {
    display: flex;
    align-items: center;
    flex: 1;
    height: 100%;
}

.form-switch {
    position: relative;
}

.form-switch input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.form-switch-label {
    display: flex;
    align-items: center;
    width: 36px;
    height: 22px;
    padding: 3px;
    border-radius: 999px;
    cursor: pointer;
    justify-content: flex-start;
    background-color: var(--border-primary);
    background-size: 20px 20px;
    background-repeat: no-repeat;
    background-position: left center;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e");
    transition: background-position .15s
}

.form-switch-label .ball {
    width: 16px;
    height: 16px;
    background-color: white;
    border-radius: 999px;
    transition: 0.2s ease;
}

.form-switch input:checked ~ .form-switch-label {
    background-position: right center;
    background-color: var(--surface-yellow);
}

.w100 {
    width: 100%;
}

.textLeft {
    text-align: left;
}

.mb4 {
    margin-bottom: 4px;
}

.mb8 {
    margin-bottom: 8px;
}

.mb10 {
    margin-bottom: 10px;
}

.mb48 {
    margin-bottom: 48px;
}

.bgIcon {
    display: inline-block;
    background-repeat: no-repeat;
}

.bgIconChevronLeft {
    width: 6px;
    height: 10px;
    background-size: 6px 10px;
    background-repeat: no-repeat;
    background-image: url("data:image/svg+xml,%3Csvg width='6' height='10' viewBox='0 0 6 10' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath id='Icon' d='M5 1L1 5L5 9' stroke='%23343332' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
}

.bgIconChevronRight {
    width: 6px;
    height: 10px;
    background-size: 6px 10px;
    background-repeat: no-repeat;
    background-image: url("data:image/svg+xml,%3Csvg width='6' height='10' viewBox='0 0 6 10' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath id='Icon' d='M1 9L5 5L1 1' stroke='%23343332' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
}

.products-list .products-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 12px 10px;
    border-bottom: 1px solid var(--border-primary);
}

.products-list .products-item .products-item__left,
.products-list .products-item .products-item__right {
    display: flex;
    align-items: center;
    gap: 12px;
}

.products-list .products-item .products-item__right {
    gap: 30px;
}

.products-list .products-item .products-item__image {
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    min-width: 50px;
    min-height: 50px;
    border-radius: 4px;
    border: 1px solid var(--border-primary);
}

.products-list .products-item .products-item__image img {
    display: block;
    width: 100%;
}

.products-list .products-item .products-item__info {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.products-list .products-item .products-item__info a {
    text-decoration: none;
}

.products-list .products-item .products-item__info a:hover {
    text-decoration: underline;
}

.amountWrapp {
    width: 121px;
    height: 36px;
    display: flex;
    justify-content: space-between;
    padding: 0;
    border: 1px solid var(--border-primary);
    border-radius: 8px;
    text-align: center;
}

.amountWrapp .amountWrappInput {
    display: flex;
    flex: 1;
}

.amountWrapp .btn-counter {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 100%;
    border: 0;
    cursor: pointer;
    background-color: transparent;
}

.mb-1 {
    margin-bottom: 5px;
}

.mb-2 {
    margin-bottom: 10px;
}

.mb-3 {
    margin-bottom: 15px;
}

.mb-4 {
    margin-bottom: 20px;
}

.mb-5 {
    margin-bottom: 40px;
}

.ml-1 {
    margin-left: 5px;
}

.grayBox {
    padding: 32px;
    border-radius: 16px;
    background-color: var(--surface-smoke);
}

.dBlock {
    display: block;
}