/*FONTS*/
@font-face {
    font-family: 'Antarctica Beta';
    src: url('/_content/Aprila.Web.Ui/assets/fonts/AntarcticaBeta-Regular.woff2') format('woff2'), url('/_content/Aprila.Web.Ui/assets/fonts/AntarcticaBeta-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: block;
}

@font-face {
    font-family: 'Atacama Beta';
    src: url('/_content/Aprila.Web.Ui/assets/fonts/AtacamaBeta-CondExtLt.woff2') format('woff2'), url('/_content/Aprila.Web.Ui/assets/fonts/AtacamaBeta-CondExtLt.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: block;
}

@font-face {
    font-family: 'Atacama Beta';
    src: url('/_content/Aprila.Web.Ui/assets/fonts/AtacamaBeta-CondensedMedium.woff2') format('woff2'), url('/_content/Aprila.Web.Ui/assets/fonts/AtacamaBeta-CondensedMedium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: block;
}

@font-face {
    font-family: 'Atacama Beta';
    src: url('/_content/Aprila.Web.Ui/assets/fonts/AtacamaBeta-CondensedLight.woff2') format('woff2'), url('/_content/Aprila.Web.Ui/assets/fonts/AtacamaBeta-CondensedLight.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: block;
}

@font-face {
    font-family: 'Antarctica Beta';
    src: url('/_content/Aprila.Web.Ui/assets/fonts/AntarcticaBeta-Medium.woff2') format('woff2'), url('/_content/Aprila.Web.Ui/assets/fonts/AntarcticaBeta-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: block;
}

@font-face {
    font-family: 'Antarctica Beta';
    src: url('../fonts/AntarcticaBeta-Light.woff2') format('woff2'), url('../fonts/AntarcticaBeta-Light.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: block;
}

@font-face {
    font-family: 'Atacama Beta';
    src: url('../fonts/AtacamaBeta-CondensedRegular.woff2') format('woff2'), url('../fonts/AtacamaBeta-CondensedRegular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: block;
}



/*VARIABLES*/
:root {
    --body-background-color: #E6E3DB;
    --card-background-color: #F7F6F4;
    --main-font: "Antarctica Beta", Helvetica, Arial, sans-serif;
    --second-font: "Atacama Beta", serif;
    --text-color-darken: #3F3922;
    --text-color-dark: #706B59;
    --text-color-light: #ffffff;
    --text-color-lighten: #FDFDFC;
    --text-color-disabled: #BFBBAA;
    --text-color-link: #cf6833;
    --table-input-disabled: #D6CFC6;
    --input-background-default: #F1F0E8;
    --input-border-color-default: rgba(110, 75, 55, 0.1);
    --input-border-color-error: #CE1A24;
    --input-border-color-active: #6E4B37;
    --button-color-disabled: #C8C1BE;
    --accent-color: #CF6833;
    --accent-color-darken: #B95928;
    --accent-color-lighten: rgba(207, 104, 51, 0.1);
    --error-color: #CE1A24;
    --error-color-background: rgba(206, 26, 36, 0.1);
    --warning-color: orange;
    --success-color: green;
    --breakpoint-xs: 0;
    --breakpoint-sm: 576px;
    --breakpoint-md: 768px;
    --breakpoint-lg: 992px;
    --breakpoint-xl: 1200px;
    --breakpoint-xxl: 1400px;
    --border-radius-xs: 1px;
    --border-radius-sm: 3px;
    --border-radius-md: 4px;
    --border-radius-lg: 8px;
    --sidebar-background: #FDFDFC;
    --sidebar-width: 131px;
    --main-content-width: 480px;
}

/*COMMON*/
html,
body {
    overflow-x: hidden;
}

body {
    background-color: var(--body-background-color);
    font-family: var(--main-font);
}

h1, h2, h3, h4, h5, h6 {
    margin-bottom: 1rem;
    font-family: var(--second-font);
    font-weight: 500;
    line-height: 130%;
    color: var(--text-color-darken);
}

h1 {
    font-size: 32px;
}

h2 {
    font-size: 26px;
}

h3 {
    font-size: 21px;
}

h4 {
    font-size: 17px;
}

h5 {
    font-size: 13px;
}

h6 {
    font-size: 11px;
}

a. a:hover, a:visited, a:focus {
    color: var(--text-color-link);
    text-decoration: none;
}

a.link {
    color: var(--text-color-link);
}

    a.link:hover {
        text-decoration: none;
        background-image: linear-gradient(to right, var(--text-color-link) 50%, var(--text-color-link) 50%);
        background-position: 0 1.04em;
        background-repeat: repeat-x;
        background-size: 6px 3px;
    }

    a.link:visited {
        color: var(--text-color-link);
    }

.scroll::-webkit-scrollbar-track {
    border-radius: 0;
    background-color: #DAD4CB;
}

.scroll::-webkit-scrollbar {
    width: 10px;
    background-color: #DAD4CB;
}

.scroll::-webkit-scrollbar-thumb {
    border-radius: 0;
    background-color: var(--input-border-color-active);
    border-bottom: 3px solid #DAD4CB;
    border-top: 3px solid #DAD4CB;
}

/* Buttons */
.scroll::-webkit-scrollbar-button:single-button {
    background-color: #DAD4CB;
    display: block;
    border-style: solid;
    height: 10px;
    width: 16px;
}

    /* Up */
    .scroll::-webkit-scrollbar-button:single-button:vertical:decrement {
        border-width: 0 5px 5px 5px;
        border-color: transparent transparent var(--input-border-color-active) transparent;
    }

    /* Down */
    .scroll::-webkit-scrollbar-button:single-button:vertical:increment {
        border-width: 5px 5px 0 5px;
        border-color: var(--input-border-color-active) transparent transparent transparent;
    }

/* HOVER SINGLE BUTTON */
.scroll::-webkit-scrollbar-button:vertical:single-button:increment:hover {
    border-color: #A07055 transparent transparent transparent;
}

.scroll::-webkit-scrollbar-button:single-button:vertical:decrement:hover {
    border-color: transparent transparent #A07055 transparent;
}


@media (min-width: 768px) {
    h1 {
        font-size: 40px;
    }

    h2 {
        font-size: 34px;
    }

    h3 {
        font-size: 29px;
    }

    h4 {
        font-size: 25px;
    }

    h5 {
        font-size: 22px;
    }

    h6 {
        font-size: 20px;
    }
}

p {
    margin-bottom: 1rem;
    font-size: 14px;
    line-height: 24px;
    color: var(--text-color-dark);
}

/*.link {
  font-weight: 500;
  font-size: 14px;
  line-height: 19px;
  color: var(--accent-color);
}*/


/*WRAPPER*/
.wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    background: url("../images/common/noise.png") 0 0 repeat;
}

@media (min-width: 768px) {
    .wrapper {
        flex-direction: row;
        flex-wrap: nowrap;
    }
}



/*SIDEBAR*/
.sidebar {
    position: fixed;
    left: 0;
    top: 0;
    background-color: var(--sidebar-background);
    z-index: 100;
}

@media (max-width: 768px) {
    .sidebar {
        right: 0;
        padding: 19px 0 4px;
    }
}

@media (min-width: 769px) {
    .sidebar {
        bottom: 0;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        height: 100vh;
        width: var(--sidebar-width);
        max-width: var(--sidebar-width);
        padding: 41px 24px 32px;
    }
}

/*SIDEBAR LOGO*/
@media (max-width: 767px) {
    .logo-mobile {
        height: 40px;
        background: url('/_content/Aprila.Web.Ui/assets/images/logo/mobile-logo.svg') 50% 50% no-repeat;
        background-size: contain;
    }
}

@media (min-width: 768px) {
    .logo-desktop {
        height: 40px;
        background: url('/_content/Aprila.Web.Ui/assets/images/logo/desktop-logo.svg') 50% 50% no-repeat;
        background-size: contain;
    }
}

/*SIDEBAR FOOTER LOGO*/
@media (min-width: 768px) {
    .sidebar__footer-logo {
        height: 53px;
        background: url('/_content/Aprila.Web.Ui/assets/images/logo/kassakreditt-logo.svg') 50% 50% no-repeat;
        background-size: contain;
    }
}


/*MAIN CONTENT*/
.main-content {
    height: 100%;
}

@media (max-width: 767px) {
    .main-content {
        margin-top: 150px;
    }
}

@media (min-width: 768px) {
    .main-content {
        margin-left: var(--sidebar-width);
    }
}

@media (min-width: 992px) {
    .main-content .side-image {
        position: sticky;
        top: 0;
        bottom: 0;
        right: -15px;
        width: 30vh;
        height: 100vh;
        z-index: 100;
        overflow: hidden;
    }
}

@media (min-width: 768px) {
    .slides .row {
        display: none;
        max-height: 100vh;
        overflow: hidden;
    }

    .slides .row--active {
        display: flex;
    }

    .slides .row > div:first-child {
        max-height: 100vh;
        overflow-y: auto;
        position: relative;
    }

    .dropdown-selector {
        position: absolute;
        right: 48px;
        top: 48px;
    }

    .dropdown-menu {
        right: 0;
        top: calc(100% - 40px);
        padding-top: 40px;
        cursor: pointer;
        z-index: -1;
    }

        .dropdown-menu:hover,
        .dropdown:hover .dropdown-menu {
            display: block;
        }

    .dropdown button:focus {
        outline: none !important;
    }

    .slides .row > div:first-child {
        overflow-x: hidden;
    }

    .slides .row > div:nth-child(2) {
        padding-left: 0;
    }

    .slides .row > div:first-child::-webkit-scrollbar-track {
        border-radius: 0;
        background-color: #DAD4CB;
    }

    .slides .row > div:first-child::-webkit-scrollbar {
        width: 10px;
        background-color: #DAD4CB;
    }

    .slides .row > div:first-child::-webkit-scrollbar-thumb {
        border-radius: 0;
        background-color: var(--input-border-color-active);
        border-bottom: 3px solid #DAD4CB;
        border-top: 3px solid #DAD4CB;
    }

    /* Buttons */
    .slides .row > div:first-child::-webkit-scrollbar-button:single-button {
        background-color: #DAD4CB;
        display: block;
        border-style: solid;
        height: 10px;
        width: 16px;
    }

        /* Up */
        .slides .row > div:first-child::-webkit-scrollbar-button:single-button:vertical:decrement {
            border-width: 0 5px 5px 5px;
            border-color: transparent transparent var(--input-border-color-active) transparent;
        }

        /* Down */
        .slides .row > div:first-child::-webkit-scrollbar-button:single-button:vertical:increment {
            border-width: 5px 5px 0 5px;
            border-color: var(--input-border-color-active) transparent transparent transparent;
        }

    /* HOVER SINGLE BUTTON */
    .slides .row > div:first-child::-webkit-scrollbar-button:vertical:single-button:increment:hover {
        border-color: #A07055 transparent transparent transparent;
    }

    .slides .row > div:first-child::-webkit-scrollbar-button:single-button:vertical:decrement:hover {
        border-color: transparent transparent #A07055 transparent;
    }
}

@media (max-width: 767px) {
    .main-content__wrapper {
        margin-top: 64px;
        margin-left: 0;
        padding: 40px 15px;
    }

    .slides-switcher {
        display: none;
    }

    .tabs-switcher {
        margin-top: 24px;
    }

    .dropdown-selector {
        display: none;
    }
}

@media (min-width: 768px) {
    .main-content__wrapper {
        max-width: var(--main-content-width);
        margin: 144px 40px 72px 72px;
        padding: 0;
    }
}

.main-content__titling {
    margin-bottom: 0;
}

@media (max-width: 767px) {
    .main-content__titling {
        margin-bottom: 48px;
    }
}

@media (min-width: 768px) {
    .main-content__titling {
        margin-bottom: 60px;
    }
}

.container-fluid {
    padding: 0;
}

/*SIDE IMAGES*/
@media (min-width: 768px) {
    .side-image {
        width: 100%;
        height: 100%;
    }

    .side-image__picture {
        width: 100%;
        height: 100%;
        object-position: center center;
        object-fit: cover;
    }
}







/*FORM*/

.form__row {
    display: flex;
    justify-content: space-between;
}

.form__row-description {
    width: 100%;
    font-weight: 500;
    font-size: 14px;
    line-height: 24px;
    color: var(--text-color-dark);
}

.form__row-description-display {
    font-weight: 300;
}

@media (max-width: 767px) {
    .main-content__wrapper {
        margin: 0 auto;
    }

    .form__row .form__row__phone {
        flex-direction: column;
    }

    .form__row__phone {
        display: flex;
        justify-content: space-between;
    }

    .form__row--unadaptive {
        flex-direction: row;
    }
}

@media (min-width: 768px) {
    .form__row .form__item:not(:first-of-type) {
        margin-left: 32px;
    }
}

.form__item {
    flex-grow: 1;
    position: relative;
    margin-bottom: 16px;
}

.form__item-text {
    max-width: 80%;
}

@media (max-width: 767px) {
    .form__item {
        margin-bottom: 48px;
    }
}


/*INPUT & INPUT STATES*/
.input:focus ~ .label,
.input--filled ~ .label,
input:placeholder-shown ~ .label {
    top: -14px;
    opacity: 1;
    font-size: 12px;
    line-height: 12px;
}

input {
    font-family: var(--main-font);
}

    input::-webkit-input-placeholder {
        color: var(--text-color-disabled);
    }

    input::-ms-input-placeholder {
        color: var(--text-color-disabled);
    }

    input::-ms-input-placeholder {
        color: var(--text-color-disabled);
    }


.input {
    width: 100%;
    padding: 0 0 8px;
    border: none;
    border-bottom: 1px solid var(--input-border-color-default);
    background-color: transparent;
    outline: none;
    font-size: 14px;
    line-height: 24px;
    color: var(--text-color-dark);
    transition: border 0.3s;
}


    .input:focus {
        border-bottom: 1px solid var(--input-border-color-active);
    }


    .input:hover,
    .input:not(:focus):valid:hover {
        cursor: pointer;
        border-bottom: 1px solid var(--input-border-color-active);
    }

    .input:disabled, .input:read-only {
        opacity: 0.75;
        transition: none;
        cursor: default;
    }

    .input:hover:read-only, .input:focus:read-only, .input:hover:disabled, .input:focus:disabled {
        border-bottom: 1px solid var(--input-border-color-default)
    }


/*INPUT LABEL*/
.label {
    position: absolute;
    pointer-events: none;
    left: 0;
    top: 1px;
    transition: 0.2s ease all;
    font-size: 14px;
    line-height: 24px;
    color: var(--text-color-disabled);
}

/*INPUT ERROR*/
.input-error {
    position: absolute;
    bottom: -18px;
    left: 0;
    color: var(--error-color);
    font-weight: 300;
    font-size: 11px;
    line-height: 11px;
    display: none;
}

.input--error[type='text'],
.input--error[type='text']:read-only,
.input--error[type='text']:disabled {
    border-bottom: 1px solid var(--input-border-color-error);
}

    .input--error[type='text'] ~ .input-error {
        display: block;
    }

.input-note {
    position: absolute;
    bottom: -18px;
    left: 0;
    color: var(--text-color-dark);
    font-weight: 300;
    font-size: 11px;
    line-height: 11px;
}

/*TEXTAREA*/

textarea {
    font-family: var(--main-font);
    color: var(--text-color-dark);
}

.textarea {
    width: 100%;
    padding: 8px;
    border: 1px solid var(--input-border-color-default);
    background-color: transparent;
    resize: vertical;
    transition: border 0.3s;
}

    .textarea::placeholder {
        color: var(--text-color-disabled);
    }

    .textarea:focus {
        border: 1px solid var(--input-border-color-active);
    }


/*BUTTON & BUTTONS STATES*/
.btn {
    background: var(--accent-color);
    border: 1px solid var(--accent-color);
    border-radius: 100px;
    color: #FFFFFF !important;
    align-items: center;
}

.btn-primary {
    background-color: var(--accent-color);
}

.btn:hover,
.btn:focus,
.btn:active {
    background-color: var(--accent-color-darken) !important;
    border-color: var(--accent-color-darken) !important;
}

.max-height {
    max-height: 40px;
}

.button {
    width: fit-content;
    min-width: 224px;
    padding: 15px 60px;
    color: var(--text-color-lighten);
    font-weight: 500;
    font-size: 13px;
    line-height: 18px;
    text-align: center;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    white-space: nowrap;
    background: var(--accent-color);
    border: 1px solid var(--accent-color);
    border-radius: 100px;
    cursor: pointer;
    outline: none;
    transition: all 0.3s;
}

    .button:focus {
        outline: none !important;
    }

    .button:hover {
        background-color: var(--accent-color-darken);
        border-color: var(--accent-color-darken);
    }

    .button:disabled {
        background-color: var(--button-color-disabled);
        border-color: var(--button-color-disabled);
    }

.button--ghost {
    color: var(--accent-color) !important;
    background: transparent;
    border: 1px solid var(--accent-color);
}

    .button--ghost:hover {
        background-color: var(--accent-color-lighten) !important;
        border-color: var(--accent-color-lighten) !important;
    }

    .button--ghost:disabled {
        color: var(--button-color-disabled) !important;
        background-color: transparent !important;
        border-color: var(--button-color-disabled) !important;
    }

@media (max-width: 576px) {
    .button {
        width: 100%;
    }
}

/*RANGE INPUT*/
.range {
    position: relative;
}

.range__current {
    padding: 23px 23px 33px;
    margin: 0;
    background-color: var(--sidebar-background);
    font-family: var(--second-font);
    font-size: 20px;
    line-height: 23px;
    color: var(--text-color-darken);
}

.range > .range__input {
    width: 100%;
    transform: translateY(-15px);
}

input[type='range'] {
    -webkit-appearance: none;
    width: 100%;
    height: 4px;
    cursor: pointer;
    box-shadow: none;
    background: #C8A578;
    border-radius: 0;
    border: none;
    outline: none;
}

    input[type='range']::-webkit-slider-thumb {
        -webkit-appearance: none;
        width: 32px;
        height: 32px;
        border-radius: 50%;
        background: var(--accent-color);
        border: none;
        box-shadow: none;
        cursor: pointer;
        appearance: none;
        background: url("../icons/range-icon.svg") 50% 50% no-repeat, linear-gradient(90deg, rgba(207,104,51,1) 0%, rgba(207,104,51,1) 100%) !important;
        background-position: center !important;
    }

    input[type='range']::-moz-range-thumb {
        -webkit-appearance: none;
        width: 32px;
        height: 32px;
        border-radius: 50%;
        background: var(--accent-color);
        border: none;
        box-shadow: none;
        cursor: pointer;
        appearance: none;
        background: url("../icons/range-icon.svg") 50% 50% no-repeat, linear-gradient(90deg, rgba(207,104,51,1) 0%, rgba(207,104,51,1) 100%) !important;
        background-position: center !important;
    }

    input[type='range']::-ms-thumb {
        -webkit-appearance: none;
        width: 32px;
        height: 32px;
        border-radius: 50%;
        background: var(--accent-color);
        border: none;
        box-shadow: none;
        cursor: pointer;
        appearance: none;
        background: url("../icons/range-icon.svg") 50% 50% no-repeat, linear-gradient(90deg, rgba(207,104,51,1) 0%, rgba(207,104,51,1) 100%) !important;
        background-position: center !important;
    }

.range__values {
    display: flex;
    justify-content: space-between;
}

.range__min,
.range__max {
    margin: 0;
    font-family: var(--second-font);
    color: var(--text-color-dark);
    font-weight: 500;
    font-size: 14px;
    line-height: 17px;
}

.range__max {
    text-align: right;
}

/*RADIO INPUT*/
.input-wrapper {
    position: relative;
    display: block;
    margin-top: -6px;
}

    .input-wrapper label {
        display: block;
        padding: 12px 48px;
        margin: 0;
        font-weight: 300;
        font-size: 14px;
        line-height: 24px;
        color: var(--text-color-dark);
        border-radius: var(--border-radius-md);
        border: 1px solid transparent;
        cursor: pointer;
        transition: border 0.3s;
    }



input::before,
input::after {
    content: '';
}

input[type='radio'],
input[type='checkbox'] {
    position: absolute;
    top: 16px;
    left: 16px;
    width: 16px;
    height: 16px;
    -webkit-appearance: none;
}

    input[type='checkbox']:disabled,
    input[type='radio']:disabled,
    input[type='checkbox']:disabled ~ label,
    input[type='radio']:disabled ~ label {
        opacity: 0.75;
    }

        input[type='checkbox']:disabled:checked,
        input[type='radio']:disabled:checked,
        input[type='checkbox']:disabled:checked ~ label,
        input[type='radio']:disabled:checked ~ label {
            opacity: 0.75;
        }

.input--error[type='radio']::before {
    border: 1px solid var(--input-border-color-error);
    background-color: var(--error-color-background);
}

.input--error[type='radio']::after {
    background: var(--input-border-color-error);
}

input[type='radio']::before {
    border: 1px solid var(--accent-color);
    border-radius: 50%;
    background-color: transparent;
    transition: background-color 0.3s;
}


input[type='checkbox']::before,
input[type='radio']::before {
    position: absolute;
    left: 0;
    top: 0;
    display: block;
    width: 16px;
    height: 16px;
    border: 1px solid var(--accent-color);
    background: transparent;
    transition: background-color 0.3s;
}

input[type='checkbox']:checked::before {
    background-color: var(--accent-color);
}

input[type='checkbox']::after {
    position: absolute;
    left: 4px;
    top: 4px;
    height: 5px;
    width: 8px;
    transform-origin: center center;
    transform: rotate(-45deg);
    background-color: transparent;
    border-left: 2px solid var(--text-color-light);
    border-bottom: 2px solid var(--text-color-light);
    opacity: 0;
    transition: opacity 0.3s;
    z-index: 1;
}

input[type='checkbox']:checked::after {
    opacity: 1;
}

.input--error[type='checkbox']::before,
.input--error[type='checkbox']:checked::before {
    border: 1px solid var(--input-border-color-error);
    background-color: var(--error-color-background);
}

.input--error[type='checkbox']::after {
    border-color: var(--input-border-color-error);
}

input[type='checkbox'] .input--error[type='checkbox']:disabled::before {
    background-color: var(--error-color-background);
}

input[type='radio']::after {
    display: block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent-color);
    transform: translate(4px, 4px);
    opacity: 0;
    transition: opacity 0.3s;
}

input[type='radio']:checked::after {
    opacity: 1;
}

input[type='checkbox']:disabled::before,
input[type='checkbox']:disabled:checked::before {
    background-color: transparent;
}

input[type='radio']:disabled::after,
input[type='radio']:disabled:checked::after {
    background: var(--button-color-disabled);
}

input[type='checkbox']:disabled::after,
input[type='checkbox']:disabled:checked::after {
    border-color: var(--button-color-disabled);
}

input[type='checkbox']:disabled::before,
input[type='checkbox']:disabled:checked::before,
input[type='radio']:disabled::before,
input[type='radio']:disabled:checked::before {
    border-color: var(--button-color-disabled);
}

input[type='checkbox'].switch {
    width: 51px;
    height: 31px;
    padding: 15px 0;
    cursor: pointer;
}

    input[type='checkbox'].switch:focus {
        box-shadow: none;
    }

    input[type='checkbox'].switch::before {
        width: 51px;
        height: 31px;
        border-radius: 60px;
        border: none;
        background-color: #CDC7C5;
        transition: background-color 0.3s;
    }

    input[type='checkbox'].switch:checked::before {
        background-color: var(--accent-color);
    }

    input[type='checkbox'].switch::after {
        left: 2px;
        top: 2px;
        border-radius: 50%;
        width: 27px;
        height: 27px;
        background-color: var(--text-color-lighten);
        border: none;
        opacity: 1;
        box-shadow: 0px 3px 8px rgba(0, 0, 0, 0.15), 0px 3px 1px rgba(0, 0, 0, 0.06);
        transition: left 0.3s;
    }

    input[type='checkbox'].switch:checked::after {
        left: 22px;
        opacity: 1;
    }

    input[type='checkbox'].switch:disabled::before,
    input[type='checkbox'].switch:disabled::after {
        opacity: 0.5;
    }

    input[type='checkbox'].switch:checked:disabled::before {
        background-color: var(--accent-color-lighten);
    }

@media (max-width: 767px) {
    .input-wrapper {
        margin-top: 0;
        margin-bottom: 8px;
    }

        .input-wrapper input:not(.switch) label {
            border: 1px solid rgba(110, 75, 55, 0.1);
        }

    input[type='radio']:checked ~ label {
        border: 1px solid var(--accent-color);
    }

    .input--error[type='checkbox']:checked ~ label,
    .input--error[type='radio']:checked ~ label {
        border: 1px solid var(--input-border-color-error);
    }

    input[type='checkbox']:disabled:checked ~ label,
    input[type='radio']:disabled:checked ~ label {
        border-color: var(--button-color-disabled);
    }
}


/*ALERT*/
.alert {
    position: relative;
    padding: 16px 24px 15px 58px;
    border-left: 6px solid var(--input-border-color-active);
    background-color: rgba(110, 75, 55, 0.1);
}

    .alert::before {
        position: absolute;
        top: 14px;
        left: 18px;
        width: 24px;
        height: 24px;
        background: url("../icons/alert-icon.svg") 50% 50% no-repeat;
        background-size: contain;
        content: '';
    }

    .alert p {
        margin-bottom: 0;
    }


/*TOOLTIP*/

.tippy-box[data-theme~='aprila'] {
    background-color: var(--sidebar-background);
    padding: 24px;
    box-shadow: 0px 3px 8px rgba(0, 0, 0, 0.15), 0px 5px 5px rgba(0, 0, 0, 0.06);
}


.help-info {
    position: relative;
    display: inline;
    width: 20px;
    height: 20px;
    padding: 10px;
    margin-left: 5px;
    background: url("../icons/alert-icon.svg") 50% 50% no-repeat;
    background-size: contain;
    cursor: pointer;
}


.help-info__wrapper {
    display: block;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) translateY(50px);
    width: 248px;
    max-width: 248px;
    padding-bottom: 40px;
    opacity: 0;
    transition: transform 0.3s, opacity 0.3s;
    transform-origin: center center;
    pointer-events: none;
    z-index: 5;
}

.help-info:hover .help-info__wrapper {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
    pointer-events: all;
}
/*.help-info__inner {
  display: block;
  background-color: var(--sidebar-background);
  padding: 24px;
  box-shadow: 0px 3px 8px rgba(0, 0, 0, 0.15), 0px 5px 5px rgba(0, 0, 0, 0.06);
}
*/

.help-info__title {
    display: block;
    margin-bottom: 3px;
    font-weight: 500;
    font-size: 14px;
    line-height: 24px;
    color: #676562;
}

.help-info__description {
    margin-bottom: 0;
    font-weight: 300;
    font-size: 11px;
    line-height: 150%;
    color: #75655D;
}

@media (max-width: 576px) {
    .tippy-box[data-theme~='aprila'] {
        margin-right: 25px;
        margin-left: 25px;
    }
}


/*PLANS*/
.planer-list {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    margin-right: -250px;
    margin-bottom: 48px;
    overflow-x: scroll;
}

    .planer-list::-webkit-scrollbar {
        display: none;
    }

@media (max-width: 576px) {
    .planer-list {
        overflow-x: scroll;
    }
}

@media (min-width: 577px) {
    .planer-list {
        display: flex;
        align-items: center;
        flex-wrap: nowrap;
        margin-right: -250px;
        margin-bottom: 48px;
    }
}

.planer-list div:not(:last-child) {
    margin-right: 24px;
}

.plan {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 272px;
    min-height: 344px;
    padding: 40px;
    margin-bottom: 16px;
    border: 2px solid var(--sidebar-background);
    border-radius: var(--border-radius-sm);
    background-color: var(--sidebar-background);
    transition: border 0.3s;
}

    .plan:hover,
    .plan--active {
        border: 2px solid var(--input-border-color-active);
    }

.plan--invalid {
    transform-origin: left top;
    transform: scale(0.8);
    opacity: 0.7;
    pointer-events: none;
}

.plan__title {
    font-weight: 500;
    font-size: 20px;
    line-height: 28px;
    color: var(--text-color-dark)
}

.plan__percent {
    margin-bottom: 0;
    font-weight: 500;
    font-size: 20px;
    line-height: 28px;
    color: var(--text-color-darken);
}

.plan__percent-description {
    font-weight: 300;
    font-size: 12px;
    line-height: 17px;
    color: #A9A5A5;
}

    .plan__percent-description .help-info {
        background-size: 75%;
    }

.list {
    margin: 16px 0 32px 0;
    padding-left: 20px;
}

.list__item {
    position: relative;
    font-size: 14px;
    line-height: 24px;
    color: var(--text-color-dark);
    margin-bottom: .5rem;
}

    .list__item p {
        margin-bottom: .5rem;
    }

    .list__item::before {
        position: absolute;
        top: 8px;
        left: -20px;
        width: 4px;
        height: 4px;
        background-color: var(--text-color-dark);
        border-radius: 50%;
        content: '';
    }

.list--accent .list__item::before {
    background-color: var(--accent-color);
}



/*STEPS*/
.steps {
    display: flex;
    align-items: center;
}

.steps__item {
    position: relative;
    cursor: pointer;
}

.non-clickable {
    cursor: default;
}

.steps__item-content {
    position: relative;
    width: 26px;
    height: 26px;
    margin-bottom: 0;
    border-radius: 50%;
    background-color: var(--body-background-color);
    color: var(--sidebar-background);
    font-weight: 300;
    font-size: 13px;
    line-height: 28px;
    text-align: center;
    transition: background-color 0.3s;
}

.steps__item[data-finished='true'] .steps__item-content {
    background-color: var(--accent-color);
}

.steps__item:not(:last-child) .steps__item-progress {
    display: block;
    position: absolute;
    background: var(--body-background-color);
    transition: transform 0.6s;
    z-index: -1;
}

.steps__item-content::after {
    display: block;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) scale(0);
    width: 130%;
    height: 130%;
    border-radius: 50%;
    border: 1px solid var(--accent-color);
    background-color: var(--sidebar-background);
    transform-origin: center center;
    transform: scale(0);
    content: '';
    z-index: -1;
    transition: transform 0.6s;
}

.steps__item[data-finished='true'] .steps__item-content::after {
    animation: stepActiveBorder 0.6s linear forwards;
}

@media (max-width: 768px) {
    .sidebar .steps {
        margin-top: 24px;
    }

    .steps {
        justify-content: center;
        flex-direction: row;
    }

    .steps__item:not(:last-child) {
        margin-right: 105px;
    }

        .steps__item:not(:last-child) .steps__item-content::before {
            display: block;
            position: absolute;
            left: 100%;
            top: 50%;
            width: 105px;
            height: 1px;
            background-color: var(--body-background-color);
            transform: translateY(-50%);
            content: '';
            z-index: -2;
        }

        .steps__item:not(:last-child) .steps__item-progress {
            left: 100%;
            top: 50%;
            width: 105px;
            height: 1px;
            transform-origin: left center;
            transform: translateY(-50%) scaleX(0);
            background-color: var(--accent-color);
        }

    .steps__item[data-active="true"] .steps__item-progress {
        transform: translateY(-50%) scaleX(1);
    }
}

@media (min-width: 769px) {
    .sidebar .steps {
        margin-top: 96px;
    }

    .steps {
        flex-direction: column;
    }

    .steps__item:not(:last-child) {
        margin-bottom: 83px;
    }

        .steps__item:not(:last-child) .steps__item-content::before {
            display: block;
            position: absolute;
            left: 50%;
            top: 100%;
            width: 1px;
            height: 85px;
            background-color: var(--body-background-color);
            transform: translateX(-50%);
            content: '';
            z-index: -2;
        }

        .steps__item:not(:last-child) .steps__item-progress {
            left: 50%;
            top: 100%;
            width: 1px;
            height: 85px;
            transform-origin: center top;
            transform: translateX(-50%) scaleY(0);
            background-color: var(--accent-color);
        }

    .steps__item[data-active="true"] .steps__item-progress {
        transform: translateX(-50%) scaleY(1);
    }
}


@keyframes stepActiveBorder {
    0% {
        transform: translate(-50%, -50%) scale(0);
    }

    60% {
        transform: translate(-50%, -50%) scale(1.1);
    }

    80% {
        transform: translate(-50%, -50%) scale(0.9);
    }

    100% {
        transform: translate(-50%, -50%) scale(1);
    }
}

.tab {
    display: none;
    opacity: 0;
    transform: translateX(50%);
    transition: 0.6s transform, 0.3s opacity;
}

.tab--active {
    display: block;
    opacity: 1;
    transform: translateX(0);
}

@media (min-width: 768px) {
    .tab > .row {
        width: 100%;
        min-height: 100vh;
    }
}

/*TABLE*/
.table {
    position: relative;
    margin-bottom: 1rem;
}

.table__row {
    display: grid;
    grid-template-columns: auto;
    grid-template-rows: auto;
}

.table__row {
    grid-template-columns: 66% 33%;
    background-color: var(--input-background-default);
}

.table__item {
    padding: 12px 24px;
    border-bottom: 1px solid #E0DFDA;
}

    .table__item:not(:last-child) {
        border-right: 1px solid #E0DFDA;
    }


.table__heading {
    background-color: rgba(110, 75, 55, 0.1);
}

.table__item {
    color: var(--text-color-dark);
    font-weight: 300;
    line-height: 24px;
}

.table__heading .table__item {
    font-weight: 500;
    font-size: 15px;
}


.example-table .table__row {
    grid-template-columns: 33% 33% 33%;
}

/*UPLOAD*/
.upload {
    position: relative;
    width: 100%;
    max-width: 480px;
    height: 168px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 40px;
    background-color: rgba(230, 230, 230, 0.3);
    border: 1px dashed #C8A578;
}

    .upload label {
        font-weight: normal;
        font-size: 14px;
        line-height: 24px;
        color: #BFBBAA;
    }

    .upload input {
        position: absolute;
        opacity: 0;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }


.select {
    position: relative;
    font-family: Arial;
}

    .select select {
        /*hide original SELECT element: */
        display: none;
    }

.select-selected {
    color: var(--text-color-dark);
    padding: 16px 16px 16px 0;
    cursor: pointer;
    background-color: transparent;
    border-bottom: 1px solid var(--input-border-color-default);
    transition: border 0.3s;
}

    .select-selected:hover {
        cursor: pointer;
        border-bottom: 1px solid var(--input-border-color-active);
    }

    /* Style the arrow inside the select element: */
    .select-selected::after {
        position: absolute;
        content: "";
        top: 20px;
        right: 10px;
        display: block;
        width: 7px;
        height: 7px;
        transform-origin: center center;
        transform: rotate(-45deg);
        background-color: transparent;
        border-left: 1px solid var(--input-border-color-active);
        border-bottom: 1px solid var(--input-border-color-active);
        transition: transform 0.6s, top 0.3s;
    }

    /* Point the arrow upwards when the select box is open (active): */
    .select-selected.select-arrow-active::after {
        transform: rotate(-225deg);
        top: 24px;
    }

.select-items::-webkit-scrollbar-track {
    border-radius: 0;
    background-color: #DAD4CB;
}

.select-items::-webkit-scrollbar {
    width: 10px;
    background-color: #DAD4CB;
}

.select-items::-webkit-scrollbar-thumb {
    border-radius: 0;
    background-color: var(--input-border-color-active);
    border-bottom: 3px solid #DAD4CB;
    border-top: 3px solid #DAD4CB;
}

/* Buttons */
.select-items::-webkit-scrollbar-button:single-button {
    background-color: #DAD4CB;
    display: block;
    border-style: solid;
    height: 10px;
    width: 16px;
}

    /* Up */
    .select-items::-webkit-scrollbar-button:single-button:vertical:decrement {
        border-width: 0 5px 5px 5px;
        border-color: transparent transparent var(--input-border-color-active) transparent;
    }

    /* Down */
    .select-items::-webkit-scrollbar-button:single-button:vertical:increment {
        border-width: 5px 5px 0 5px;
        border-color: var(--input-border-color-active) transparent transparent transparent;
    }

/* HOVER SINGLE BUTTON */
.select-items::-webkit-scrollbar-button:vertical:single-button:increment:hover {
    border-color: #A07055 transparent transparent transparent;
}

.select-items::-webkit-scrollbar-button:single-button:vertical:decrement:hover {
    border-color: transparent transparent #A07055 transparent;
}

/* style the items (options), including the selected item: */
.select-items div {
    color: var(--text-color-disabled);
    padding: 16px;
    cursor: pointer;
}

/* Style items (options): */
.select-items {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 99;
    max-height: 200px;
    overflow-y: scroll;
    overflow-x: hidden;
    background-color: #F1EFEB;
    box-shadow: 2px 4px 10px rgba(14, 23, 24, 0.15);
    border-radius: var(--border-radius-xs);
    transform-origin: center top;
    transition: transform 0.3s;
    transform: scaleY(1);
}

    .select-items div {
        color: var(--text-color-dark);
        font-size: 14px;
        line-height: 24px;
        transition: background-color 0.3s;
    }

/* Hide the items when the select box is closed: */
.select-hide {
    transform: scaleY(0);
}

.select-items div:hover, .same-as-selected {
    background-color: rgba(110, 75, 55, 0.1);
}

.same-as-selected {
    background-color: rgba(110, 75, 55, 0.25);
}

.select.disabled {
    pointer-events: none;
    opacity: 0.6;
}





/* BORDERED INPUT */
.input--bordered {
    display: flex;
    flex-direction: column;
    width: 100%;
    margin-bottom: 32px;
    font-size: 14px;
    font-weight: 500;
    line-height: 24px;
    color: var(--text-color-dark);
}

    .input--bordered input {
        display: block;
        width: 100%;
        margin-top: 8px;
        padding: 12px 16px;
        background-color: var(--input-background-default);
        border: 1px solid var(--input-border-color-active);
        border-radius: var(--border-radius-xs);
        font-size: 15px;
        font-weight: 500;
        line-height: 24px;
        color: var(--text-color-dark);
        transition: border 0.3s, background-color 0.3s;
    }

        .input--bordered input::placeholder {
            font-size: 16px;
            font-weight: 500;
            line-height: 18px;
            color: var(--text-color-dark);
        }

        .input--bordered input:disabled {
            border: 1px solid var(--table-input-disabled);
            background-color: var(--table-input-disabled);
            pointer-events: none;
            outline: none;
            box-shadow: none;
        }


/*online banking*/
.online-banking > div {
    margin-bottom: 80px;
}

.cart-1 {
    width: 352px;
    max-height: 157px;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(8px);
    border-radius: 16px;
    padding: 16px 48px 16px 24px;
}

.cart-1__part1 {
    display: flex;
    flex-direction: column;
    margin-bottom: 35px;
}

.cart-1__part2 {
    display: flex;
    justify-content: space-between;
}

.cart-1__subtitle {
    font-size: 12px;
    line-height: 16px;
    color: #BFBBAA;
    margin-bottom: 8px
}

.cart-1__part1-text {
    font-family: Atacama Beta;
    font-weight: 500;
    font-size: 21px;
    line-height: 26px;
    color: #3F3922;
    margin-bottom: 0;
}

.cart-1__part2-text {
    font-size: 12px;
    line-height: 16px;
    color: #706B59;
    margin-bottom: 0;
}

.cart-2, .cart-6 {
    width: 228px;
    max-height: 220px;
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid #C1BCAE;
    box-sizing: border-box;
    backdrop-filter: blur(8px);
    border-radius: 16px;
    padding: 23px;
}

.cart-2__img {
    background: url("../images/online-banking/cart_2_img.svg") no-repeat;
    display: block;
    width: 88px;
    height: 71px;
    margin: auto;
}

.cart-2__content {
    margin-top: 13px;
}

.cart-2__content-title {
    font-weight: 500;
    font-size: 12px;
    line-height: 16px;
    color: #3F3922;
    margin-bottom: 8px;
}

.cart-2__content-text {
    font-size: 10px;
    line-height: 16px;
    color: #706B59;
    margin-bottom: 0;
}

.cart-3 {
    width: 228px;
    max-height: 220px;
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid #C1BCAE;
    box-sizing: border-box;
    backdrop-filter: blur(8px);
    border-radius: 16px;
    padding: 23px;
    padding-bottom: 25px;
    margin-top: 46px;
}

.cart-3__img {
    background: url("../images/online-banking/cart_3_img.svg") no-repeat;
    display: block;
    width: 104px;
    height: 66px;
    margin: auto;
}

.cart-3__content-wrapper {
    margin-top: 16px;
}

.cart-3__content-title {
    font-weight: 500;
    font-size: 12px;
    line-height: 16px;
    color: #3F3922;
    margin-bottom: 8px;
}

.cart-3__content-text {
    font-size: 10px;
    line-height: 16px;
    color: #706B59;
    margin-bottom: 0;
}

.cart-4 {
    max-height: 264px;
}

.cart-4__table {
    width: 352px;
}

.cart-4__table-heading {
    display: grid;
    grid-template-rows: auto;
    grid-template-columns: 33% 33% 33%;
    font-size: 14px;
    line-height: 24px;
    color: #706B59;
    padding-bottom: 8px;
}

.cart-4__table-heading-1item {
    padding-left: 0;
}

.cart-4__table-heading-2item {
    padding-left: 5px;
}

.cart-4__table-heading-3item {
    text-align: end;
    padding-right: 16px;
}

.cart-4__table-row {
    display: grid;
    grid-template-rows: auto;
    grid-template-columns: 33% 33% 33%;
    font-size: 12px;
    line-height: 16px;
    color: #706B59;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(8px);
    border-radius: 6px;
    margin-bottom: 8px;
}

.cart-4__table-1item {
    padding: 12px 16px;
}

.cart-4__table-2item {
    padding: 12px 0;
}

.cart-4__table-3item {
    text-align: end;
    padding: 12px 16px;
}

.cart-5 {
    width: 352px;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(8px);
    border-radius: 8px;
    max-height: 220px;
}

.cart-5__title-wrapper, .form__title-wrapper {
    border-bottom: 1px solid #E6E3DB;
    padding: 23px 24px 0;
}

.cart-5__title, .form__title {
    font-family: Atacama Beta;
    font-weight: 500;
    font-size: 18px;
    line-height: 22px;
    color: #3F3922;
}

.cart-5__text-wrapper {
    padding: 54px 24px 54px;
}

.cart-5__text {
    font-family: Atacama Beta;
    font-weight: 500;
    font-size: 28px;
    line-height: 34px;
    color: #3F3922;
}

.cart-6__img {
    background: url("../images/online-banking/cart_6_img.svg") no-repeat;
    display: block;
    width: 93px;
    height: 68px;
    margin: auto;
}

.cart-6__content {
    margin: 16px 0;
}

.form-1 {
    max-height: 247px;
}

.form-1, .form-2, .form-3, .form-4, .form-5, .form-6, .form-7, .form-8 {
    width: 607px;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(8px);
    border-radius: 8px;
}

.form-3, .form-4, .form-5, .form-6, .form-7, .form-8 {
    margin-bottom: 16px;
}

.form__wrapper {
    padding: 23px 41px 2px 24px;
}

.form__wrapper-inputs {
    display: grid;
    grid-column-gap: 46px;
    grid-template-columns: repeat(2, 1fr);
}

.form__item.input1 {
    margin-bottom: 32px;
}

.input.input1 {
    border-bottom: 1px solid #6E4B37;
    padding: 8px 0 9px;
}

.label.input1 {
    font-size: 12px;
    line-height: 16px;
    color: #BFBBAA;
}

.form__item-dis {
    margin-bottom: 32px;
    display: flex;
    flex-direction: column;
}

.label-dis {
    font-size: 12px;
    line-height: 16px;
    color: #BFBBAA;
    margin-bottom: 1px;
}

.input-dis {
    background: #D6CFC6;
    box-shadow: inset 1px 1px 4px #b1b0a8;
    border-radius: 6px;
    width: 100%;
    border: none;
    padding: 12px 16px;
    font-size: 12px;
    line-height: 16px;
}

.form-2__wrapper {
    padding: 15px 0 4px;
}

    .form-2__wrapper.page2 {
        padding: 15px 0 24px;
    }

    .form-2__wrapper button {
        padding-left: 46.7px;
        padding-right: 46.7px;
    }

.form__img {
    background: url("../images/online-banking/form_img.svg") no-repeat;
    display: block;
    width: 161px;
    height: 126px;
    margin: auto;
}

.form-2__text {
    line-height: 24px;
    font-size: 14px;
    text-align: center;
    width: 252px;
    margin: 16px auto 11px;
}

.form__btn {
    text-align: center;
}

.form__wrapper-items {
    display: grid;
    grid-column-gap: 48px;
    grid-template-columns: repeat(2, 1fr);
    margin-bottom: 7px;
}

.form-3__item :nth-child(1) {
    font-size: 12px;
    line-height: 16px;
    color: #BFBBAA;
    margin-bottom: 8px;
}

.form-3__item :nth-child(2) {
    color: var(--text-color-dark, #706B59) !important;
}

.form__title-wrapper.form-4__title {
    display: flex;
    justify-content: space-between;
}

    .form__title-wrapper.form-4__title :nth-child(2) {
        font-weight: 500;
        font-size: 11px;
        line-height: 16px;
        color: #CF6833;
    }

.form-4 {
    padding-bottom: 1px;
    padding-top: 1px;
}

.form-6__wrapper {
    padding: 23px 97px 17px 24px;
}

.form-6__wrapper-items {
    display: grid;
    grid-column-gap: 46px;
    grid-template-columns: repeat(2, 1fr);
    margin-bottom: 7px;
}

.form-6__item > p {
    margin-bottom: 0;
}

.select.form6 {
    width: 190px;
}

.select.form6-years {
    width: 148px;
}

.form-6__icon {
    display: flex;
}

.form-6__select {
    display: flex;
    justify-content: space-between;
}

.select-selected {
    padding: 10px 16px 0 0;
    font-size: 14px;
    line-height: 24px;
    font-family: Antarctica Beta;
}

    .select-selected::after {
        top: 10px;
    }

.form-7__wrapper {
    padding: 24px;
}

    .form-7__wrapper :nth-child(2) {
        font-weight: 500;
        font-size: 11px;
        line-height: 16px;
        color: #CF6833;
        margin-bottom: 0;
    }

.form-8__wrapper-items {
    display: grid;
    grid-column-gap: 49px;
    grid-template-columns: repeat(2, 1fr);
}

.form-8__wrapper {
    padding: 23px 39px 3px 24px;
}

    .form-8__wrapper.page3 {
        padding: 23px 39px 23px 24px;
    }

.form-8__item-dis {
    margin-bottom: 24px;
    display: flex;
    flex-direction: column;
}

.input__form-8 {
    background: transparent;
    width: 100%;
    border: none;
    padding: 8px 0 0;
    font-size: 14px;
    line-height: 24px;
    color: #706B59;
    border-bottom: 1px solid #6E4B37;
}

.form-8 .select-selected {
    padding: 0;
    text-align: center;
}

.select.form8 {
    width: 100%;
}

.form-8 .select-selected {
    border-bottom: 1px solid #6E4B37;
}

.form-6__select .form-8__num {
    font-size: 14px;
    line-height: 24px;
    color: #706B59;
    position: absolute;
}

.form-8 .select-selected::after {
    left: 37px;
    top: 7px;
}

.form-8__buttons {
    display: flex;
}

.button.form-8__btn1 {
    padding: 8px 37px 8px 38px;
    border-radius: 8px;
    min-width: 136px;
    text-transform: none;
    font-size: 12px;
    line-height: 16px;
    margin-right: 8px;
}

.button.button--ghost.form-8__btn2 {
    padding: 8px 32px;
    border-radius: 8px;
    min-width: 104px;
    text-transform: none;
    font-size: 12px;
    line-height: 16px;
}

/*page online banking*/

@media (min-width: 768px) {
    .sidebar__footer-logo-savings {
        height: 53px;
        background: url("../images/icons/Sparekonto logo.svg") 50% 50% no-repeat;
        background-size: contain;
    }
}

@media (min-width: 768px) {
    .online-banking__wrapper .steps__item:not(:last-child) {
        margin-bottom: 24px;
    }
}

.steps__item-cont {
    position: relative;
    width: 48px;
    height: 48px;
    margin-bottom: 0;
    border-radius: 50%;
    background-color: var(--body-background-color);
    color: var(--sidebar-background);
    font-weight: 300;
    font-size: 13px;
    line-height: 28px;
    text-align: center;
    transition: background-color 0.3s;
}

.icon-img {
    display: block;
    width: 100%;
    height: 100%;
}

    .icon-img.img-1 {
        background: url("../images/icons/icon1.svg") 50% 50% no-repeat;
    }

    .icon-img.img-2 {
        background: url("../images/icons/icon2.svg") 50% 50% no-repeat;
    }

    .icon-img.img-3 {
        background: url("../images/icons/icon3.svg") 50% 50% no-repeat;
    }

    .icon-img.img-4 {
        background: url("../images/icons/icon4.svg") 50% 50% no-repeat;
    }

.section-wrapper {
    padding: 32px 0 0 56px;
    margin-left: 131px;
    max-width: 719px;
    height: 100vh;
    margin-right: 56px;
}

.section-wrapper__content {
    width: 607px;
}

.navbar-top {
    display: flex;
}

    .navbar-top li {
        margin-right: 48px;
        font-family: Atacama Beta;
        font-weight: 500;
        font-size: 15px;
        line-height: 18px;
        color: #3F3922;
    }

    .navbar-top.active {
        border-bottom: 1px solid #CF6833;
    }

.online-banking__title {
    margin-top: 48px;
    margin-bottom: 40px;
    font-size: 32px;
    line-height: 39px;
}

.section-subtitle {
    font-weight: 500;
    font-size: 18px;
    line-height: 22px;
    margin-bottom: 8px
}

.cart-1 {
    margin-bottom: 48px;
}

.section1-content {
    display: flex;
}

.online-banking__wrapper {
    display: flex;
}

.section1-content__part1 {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.online-banking__bg {
    background: url("../images/online-banking/bg.png") no-repeat;
    width: 100%;
    height: 100vh;
    background-size: cover;
}

.sidebar__footer.banking {
    margin-bottom: 0;
}

.steps__item-text {
    display: none;
}

.sidebar.online-banking {
    transition: 0.5s;
}

@media screen and (min-width: 769px) {
    .sidebar.online-banking:hover {
        width: 256px;
        max-width: 256px;
        transition: 0.5s;
    }

        .sidebar.online-banking:hover .steps__item-cont {
            width: 191px;
            height: 48px;
            border-radius: 8px;
            transition: 0.5s;
            display: flex;
            align-items: center;
        }

        .sidebar.online-banking:hover .steps__item-text {
            display: block;
            font-size: 14px;
            line-height: 24px;
            color: #3F3922
        }

            .sidebar.online-banking:hover .steps__item-text.show-text {
                display: block;
                font-weight: normal;
                font-size: 14px;
                line-height: 24px;
                color: #FDFDFC;
            }

        .sidebar.online-banking:hover .icon-img {
            width: 23.04px;
            background-position-x: initial;
            margin-left: 16.48px;
            margin-right: 16.48px;
        }
}

.form-1 .form__wrapper {
    padding: 23px 41px 24px 24px;
}

.form-1, .form-2 {
    margin-top: 24px;
}

.tabs-title.active .steps__item-cont {
    background: var(--text-color-link);
}

.tab-content {
    display: none;
}

    .tab-content.open {
        display: block;
    }

.tabs-title.active .img-1, .tabs-title.active .img-2, .tabs-title.active .img-3, .tabs-title.active .img-4 {
    filter: brightness(0) invert(1);
}

.btn-form {
    cursor: pointer;
}

@media screen and (max-width: 768px) {
    .sidebar.online-banking {
        display: flex;
        flex-direction: row;
        justify-content: center;
        height: 64px;
        width: 100%;
        position: fixed;
        bottom: 0;
        left: unset;
        top: unset;
        padding: 0;
        border-radius: 8px 8px 0 0;
    }

        .sidebar.online-banking nav {
            max-width: 375px;
            width: 100%;
            display: flex;
        }

            .sidebar.online-banking nav .logo {
                display: none;
            }

            .sidebar.online-banking nav .steps {
                margin: 0;
                max-width: 375px;
                width: 100%;
                display: flex;
                justify-content: space-around;
                align-items: center;
            }

                .sidebar.online-banking nav .steps .steps__item {
                    margin: 0;
                }

    .section-wrapper {
        margin: 0;
        padding: 112px 40px 64px 40px;
        box-sizing: border-box;
        width: 100%;
        height: 100%;
    }

        .section-wrapper .section-wrapper__content {
            width: 100%;
        }

            .section-wrapper .section-wrapper__content .navbar {
                display: none;
            }

            .section-wrapper .section-wrapper__content .online-banking__title {
                margin: 0 0 24px;
            }

            .section-wrapper .section-wrapper__content .section1-content__part1 {
                width: 100%;
            }

            .section-wrapper .section-wrapper__content .section1-content__part2 {
                display: none;
            }

            .section-wrapper .section-wrapper__content .section1-content__part1 .statistic {
                width: 100%;
            }

            .section-wrapper .section-wrapper__content .cart-4 {
                width: 100%;
            }

            .section-wrapper .section-wrapper__content .cart-4__table {
                width: 100%;
            }

                .section-wrapper .section-wrapper__content .cart-4__table .cart-4__table-heading-2item {
                    padding: 0;
                }

                .section-wrapper .section-wrapper__content .cart-4__table .cart-4__table-heading-3item {
                    padding: 0;
                }

    .online-banking__bg {
        display: none;
    }
}

.slick-carousel {
    width: 100vw;
    margin-left: -40px;
    height: 188px;
    box-sizing: border-box;
    display: none !important;
}

.online-banking__wrapper .menu-wrapper {
    display: none;
}

.online-banking__wrapper .mobile-logo {
    display: none;
}

@media screen and (max-width: 768px) {
    .online-banking__wrapper .menu-wrapper {
        display: block;
    }

    .form-1.form-section1 {
        margin-bottom: 16px;
    }

    .cart-4__table-3item {
        padding: 12px 6px 12px 0;
    }

    .section-wrapper .section-wrapper__content .cart-4 {
        max-height: 100%;
        margin-bottom: 20px;
    }

    .online-banking__wrapper .cart-1 {
        display: none;
    }

    .online-banking__wrapper .section2 .form-section1 {
        margin-top: 0;
        width: 100%;
        height: 100%;
        max-height: 100%;
    }

        .online-banking__wrapper .section2 .form-section1 .form__title-wrapper {
            padding: 24px 0 0 24px;
        }

        .online-banking__wrapper .section2 .form-section1 .form__title {
            font-size: 18px;
        }

        .online-banking__wrapper .section2 .form-section1 .form__wrapper-inputs {
            display: flex;
            flex-direction: column;
        }

        .online-banking__wrapper .section2 .form-section1 .input1 {
            margin-bottom: 12px;
        }

        .online-banking__wrapper .section2 .form-section1 .form-btn1 {
            margin-bottom: 24px;
            width: 100%;
            min-width: 100%;
        }

    .online-banking__wrapper .section-wrapper .form-2 {
        width: 100%;
        height: 352px;
        max-height: 352px;
        margin-bottom: 20px;
    }

        .online-banking__wrapper .section-wrapper .form-2 .button {
            width: 224px;
            padding: 15px 24px;
        }

    .online-banking__wrapper .section2 .cart-5,
    .online-banking__wrapper .section2 .cart-6 {
        display: none;
    }

    .online-banking__wrapper .section2 .slick-carousel .cart-5,
    .online-banking__wrapper .section2 .slick-carousel .cart-6 {
        display: block;
        width: 72.26vw !important;
        height: 157px;
        box-sizing: border-box;
    }

    .online-banking__wrapper .section2 .slick-carousel .cart-5 {
        margin: 0 24px 0 0;
    }

    .online-banking__wrapper .section2 .slick-carousel .cart-6 {
        margin: 0;
        padding: 16px 24px;
    }

        .online-banking__wrapper .section2 .slick-carousel .cart-6 .cart-6__img {
            display: none;
        }

        .online-banking__wrapper .section2 .slick-carousel .cart-6 .cart-2__content-title {
            font-size: 12px;
            font-weight: 500;
            font-family: "Antarctica Beta", sans-serif;
            margin-bottom: 0;
        }

        .online-banking__wrapper .section2 .slick-carousel .cart-6 .cart-2__content-text {
            margin-top: 8px;
            font-size: 10px;
            font-family: "Antarctica Beta", sans-serif;
            line-height: 16px;
        }

    .online-banking__wrapper .section2 .slick-carousel .cart-5 .cart-5__title-wrapper {
        padding: 24px 0 0 24px;
        margin: 0;
    }

    .online-banking__wrapper .section2 .slick-carousel .cart-5 .cart-5__title {
        font-size: 18px;
        font-weight: 500;
    }

    .online-banking__wrapper .section2 .slick-carousel .cart-5 .cart-5__text-wrapper {
        padding: 0;
        margin: 32px 0 0 24px;
    }

    .online-banking__wrapper .section3 .form-3 {
        width: 100%;
        height: 294px;
        max-height: 294px;
    }

        .online-banking__wrapper .section3 .form-3 .form__wrapper-items {
            display: flex;
            flex-direction: column;
        }

        .online-banking__wrapper .section3 .form-3 .form-3__item {
            margin-bottom: 46px;
        }

            .online-banking__wrapper .section3 .form-3 .form-3__item p:last-child {
                margin: 0;
            }

    .online-banking__wrapper .section3 .form-4 {
        width: 100%;
        height: 234px;
        max-height: 234px;
    }

    .online-banking__wrapper .section3 .form-8 {
        width: 100%;
        height: 274px;
    }

    .online-banking__wrapper .section3 .form-4 .btn-form {
        display: flex;
        align-items: center;
    }

    .online-banking__wrapper .section3 .form-4 .form__wrapper-items,
    .online-banking__wrapper .section3 .form-8 .form-8__wrapper-items {
        display: flex;
        flex-direction: column;
    }

    .online-banking__wrapper .section3 .form-4 .form-4__item,
    .online-banking__wrapper .section3 .form-8 .form-8__item-dis {
        margin-bottom: 26px;
    }

        .online-banking__wrapper .section3 .form-4 .form-4__item p:last-child {
            margin: 0;
        }

    .online-banking__wrapper .section3 .form-5 {
        width: 100%;
        height: 256px;
        max-height: 256px;
    }

        .online-banking__wrapper .section3 .form-5 .btn-form {
            display: flex;
            align-items: center;
        }

        .online-banking__wrapper .section3 .form-5 .form__wrapper-items {
            display: flex;
            flex-direction: column;
        }

        .online-banking__wrapper .section3 .form-5 .form-5__item p {
            margin: 0;
        }

        .online-banking__wrapper .section3 .form-5 .form-5__item {
            margin-bottom: 24px;
        }

    .online-banking__wrapper .section3 .form-6 {
        width: 100%;
        height: 258px;
        max-height: 258px;
    }

        .online-banking__wrapper .section3 .form-6 .form-6__wrapper-items {
            display: flex;
            flex-direction: column;
        }

        .online-banking__wrapper .section3 .form-6 .form-6__wrapper {
            padding: 24px 24px 32px 24px;
        }

        .online-banking__wrapper .section3 .form-6 .form-6__item {
            width: 100%;
            margin-bottom: 24px;
        }

        .online-banking__wrapper .section3 .form-6 .form6-years,
        .online-banking__wrapper .section3 .form-6 .form6 {
            width: 100%;
            margin-right: 33px;
        }

    .online-banking__wrapper .section3 .form-7 {
        width: 100%;
        height: 286px;
        max-height: 286px;
    }

    .online-banking__wrapper .slick-carousel {
        display: block !important;
    }

    .slick-carousel .slick-dots {
        bottom: 0;
    }

    .slick-dots li {
        width: 7px !important;
        height: 7px !important;
        margin-right: 8px !important;
    }

        .slick-dots li button {
            background-color: #c3bbb7 !important;
            width: 7px !important;
            height: 7px !important;
            border-radius: 50%;
            text-indent: -9999px;
            overflow: hidden;
            /* more CSS */
        }

        .slick-dots li.slick-active button {
            background-color: #cf6833 !important;
        }

    .online-banking__wrapper .slick-carousel .slick-track {
        margin-left: -12px;
    }

    .online-banking__wrapper .slick-carousel .cart-1 {
        margin: 0 24px 0 0;
        width: 72.26vw !important;
        height: 157px;
        box-sizing: border-box;
        padding: 16px 24px;
    }

    .online-banking__wrapper .slick-carousel .cart-2 {
        margin: 0 24px 0 0;
        width: 72.26vw !important;
        height: 157px;
        box-sizing: border-box;
        padding: 16px 24px;
    }

        .online-banking__wrapper .slick-carousel .cart-2 .cart-2__img {
            display: none;
        }

        .online-banking__wrapper .slick-carousel .cart-2 .cart-2__content-title {
            font-size: 12px;
            font-weight: 500;
            font-family: "Antarctica Beta", sans-serif;
            margin-bottom: 0;
        }

        .online-banking__wrapper .slick-carousel .cart-2 .cart-2__content-text {
            margin-top: 8px;
            font-size: 10px;
            font-family: "Antarctica Beta", sans-serif;
            line-height: 16px;
        }

    .online-banking__wrapper .slick-carousel .cart-3 {
        margin: 0;
        width: 72.26vw !important;
        height: 157px;
        box-sizing: border-box;
        padding: 16px 24px;
    }

        .online-banking__wrapper .slick-carousel .cart-3 .cart-3__img {
            display: none;
        }

        .online-banking__wrapper .slick-carousel .cart-3 .cart-3__content-title {
            font-size: 12px;
            font-weight: 500;
            font-family: "Antarctica Beta", sans-serif;
            margin-bottom: 8px;
        }

        .online-banking__wrapper .slick-carousel .cart-3 .cart-3__content-text {
            font-size: 10px;
            font-family: "Antarctica Beta", sans-serif;
            line-height: 16px;
        }

    .online-banking__wrapper .mobile-logo {
        position: absolute;
        top: 24px;
        left: 26px;
        display: block;
    }

    .online-banking__wrapper .menu-wrapper .burger-icon {
        position: absolute;
        top: 24px;
        right: 24px;
    }

    .online-banking__wrapper .menu-wrapper .menu {
        position: fixed;
        z-index: 100;
        top: 0;
        right: 0;
        width: 0;
        height: 100%;
        background-color: #fff;
        box-shadow: -1px 0 16px rgba(181, 174, 158, 0.52);
        overflow: hidden;
        transition: width 300ms ease-in-out;
    }

        .online-banking__wrapper .menu-wrapper .menu.open {
            width: 281px;
        }

        .online-banking__wrapper .menu-wrapper .menu .close-icon {
            position: absolute;
            top: 24px;
            right: 24px;
        }

        .online-banking__wrapper .menu-wrapper .menu .logo {
            position: absolute;
            bottom: 40px;
            left: 50%;
            transform: translateX(-50%);
        }

        .online-banking__wrapper .menu-wrapper .menu .nav-list {
            margin-top: 201px;
            text-align: center;
        }

            .online-banking__wrapper .menu-wrapper .menu .nav-list .nav-item {
                margin-bottom: 35px;
            }

                .online-banking__wrapper .menu-wrapper .menu .nav-list .nav-item .nav-link {
                    font-family: "Atacama Beta", sans-serif;
                    font-size: 20px;
                    color: #3F3922;
                }

                    .online-banking__wrapper .menu-wrapper .menu .nav-list .nav-item .nav-link.active {
                        border-bottom: 2px solid #cf6833;
                        border-radius: 1px;
                    }
}

/*POP-UP*/
.pop-up {
    display: none;
}

.pop-up {
    position: fixed;
    height: 100%;
    width: 110%;
    z-index: 200;
    background-color: #0f0f0f6e;
}

    .pop-up.open {
        display: block;
    }

.pop-up__message-block {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #E6E3DB;
    width: 50vw;
    height: 516px;
    border-radius: 6px;
    padding: 65px 19px 40px;
    text-align: center;
}

    .pop-up__message-block .close-icon {
        position: absolute;
        top: 16px;
        right: 16px;
    }

    .pop-up__message-block .title {
        margin-top: 40px;
        font-family: "Atacama Beta", serif;
        font-weight: 500;
        font-size: 40px;
        color: #3F3922;
    }

    .pop-up__message-block .text {
        margin-top: 16px;
        font-family: "Antarctica Beta", sans-serif;
        font-size: 18px;
        line-height: 28px;
        color: #706B59;
    }

    .pop-up__message-block .button {
        margin-top: 41px;
        width: 224px;
        padding: 15px 24px;
        height: 48px;
        font-family: "Antarctica Beta", sans-serif;
        font-size: 13px;
        letter-spacing: 0.04em;
        text-transform: uppercase;
    }

@media screen and (max-width: 768px) {
    .pop-up {
        position: fixed;
        height: 100%;
        width: 110%;
        z-index: 200;
        background-color: #0f0f0f6e;
    }

        .pop-up.open {
            display: block;
        }

    .pop-up__message-block {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        background-color: #E6E3DB;
        width: calc(100vw - 40px);
        height: 516px;
        border-radius: 6px;
        padding: 65px 19px 40px;
        text-align: center;
    }

        .pop-up__message-block .close-icon {
            position: absolute;
            top: 16px;
            right: 16px;
        }

        .pop-up__message-block .title {
            margin-top: 40px;
            font-family: "Atacama Beta", serif;
            font-weight: 500;
            font-size: 40px;
            color: #3F3922;
        }

        .pop-up__message-block .text {
            margin-top: 16px;
            font-family: "Antarctica Beta", sans-serif;
            font-size: 18px;
            line-height: 28px;
            color: #706B59;
        }

        .pop-up__message-block .button {
            margin-top: 20px;
            width: 224px;
            padding: 15px 24px;
            height: 48px;
            font-family: "Antarctica Beta", sans-serif;
            font-size: 13px;
            letter-spacing: 0.04em;
            text-transform: uppercase;
        }
}

@media screen and (max-width: 375px) {
    .section-wrapper {
        padding: 112px 16px 64px 16px;
    }

    .online-banking__wrapper .mobile-logo {
        left: 16px;
    }

    .slick-carousel {
        margin-left: -16px;
    }
}

.card-header-title > a {
    display: block;
    position: relative;
    font-size: 14px !important;
    color: var(--text-color-dark, #706B59) !important;
}

    .card-header-title > a:hover {
        cursor: pointer;
    }

.card-header-title img.arrow-up {
    display: none;
}

.card-header-title > a[aria-expanded="true"] img.arrow-down {
    display: none;
}

.card-header-title > a[aria-expanded="true"] img.arrow-up {
    display: inline;
}

.form-background {
    background-color: var(--card-background-color);
    border-radius: 8px;
}
