/* Light (300) */
@font-face {
    font-family: 'Helvetica Neue';
    src: url('./fonts/HelveticaNeueLight.otf') format('opentype');
    font-weight: 300;
    font-style: normal;
}

/* Regular (400) */
@font-face {
    font-family: 'Helvetica Neue';
    src: url('./fonts/HelveticaNeueLight.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
}

/* Medium (500) */
@font-face {
    font-family: 'Helvetica Neue';
    src: url('./fonts/HelveticaNeueMedium.otf') format('opentype');
    font-weight: 500;
    font-style: normal;
}

/* Bold (700) */
@font-face {
    font-family: 'Helvetica Neue';
    src: url('./fonts/HelveticaNeueBold.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
}

/* Black (900) */
@font-face {
    font-family: 'Helvetica Neue';
    src: url('./fonts/HelveticaNeueBlack.otf') format('opentype');
    font-weight: 900;
    font-style: normal;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Apply globally */
body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    margin-top: 40px;
}

.calculator-form-wrapper {
    width: 1304px;
    margin: auto;
    padding: 60px;
    border: 1px solid #5662e147;
    border-radius: 20px;
    margin-bottom: 20px;
}

#calculator-form {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    position: relative;
}

#siderbar {
    background: rgba(86, 98, 225, 0.06);
    width: 330px;
    border-radius: 12px;
    padding: 18px;
}

#siderbar ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

#siderbar ul li {
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 12px;
    margin-bottom: 18px;
}

#siderbar ul li .count {
    color: #5662E1;
    text-align: center;
    font-family: "Helvetica Neue";
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 12px;
    border-radius: 60px;
    border: 1px solid #5662E1;
    background: #FFF;
    display: flex;
    width: 30px;
    height: 30px;
    padding: 8px 12px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

#siderbar ul li .step-title {
    color: #000807;
    font-family: "Helvetica Neue";
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 26px;
}

/* Active sidebar item */
#siderbar ul li.active span.step-title {
    color: #5662E1;
}

#siderbar ul li.active span.count {
    background: #5662E1;
    color: #fff;
}

/* Main content */
/* Head */
.main-content-head {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid #D9D9D9;
    padding-bottom: 18px;
}

#main-content {
    width: 820px;
    overflow: hidden;
}

.body-head-item span {
    font-family: "Helvetica Neue";
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 16px;
    color: #5662E1;
}

h4.body-step-title {
    color: #000807;
    font-family: "Helvetica Neue";
    font-size: 36px;
    font-style: normal;
    font-weight: 500;
    line-height: 44px;
    margin-top: 8px;
}

p.body-description {
    color: #888;
    font-family: "Helvetica Neue";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 18px;
    margin-top: 12px;
}

.author-area {
    display: flex;
    width: 180px;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
    gap: 10px;
}

p.author-name {
    color: #000807;
    text-align: right;
    font-family: "Helvetica Neue";
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 18px;
}

p.author-designation {
    color: #5662E1;
    text-align: right;
    font-family: "Helvetica Neue";
    font-size: 13px;
    font-style: normal;
    font-weight: 500;
    line-height: 12px;
}

.body-head-item p.author-designation {
    margin-top: -5px;
}

/* Form group radio */
label.form-group-title {
    color: #000807;
    font-family: "Helvetica Neue";
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: 32px;
    margin-top: 19px;
    display: block;
}

.form-fields-group ul {
    margin: 0;
    padding: 0;
    list-style: none;
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: start;
    gap: 20px;
}

.form-fields-group ul li {
    max-width: 190px;
    width: 190px;
    height: 120px;
    display: flex;
    padding: 12px;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    border-radius: 12px;
    border: 1px solid #D9D9D9;
    background: #FFF;
    cursor: pointer;
}

.form-fields-group ul li .square-radio input[type="radio"] {
    display: none;
}

.square-radio {
    width: 100%;
}

.square-radio-content {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    align-self: stretch;
}

.item-icon {
    display: flex;
    width: 36px;
    height: 36px;
    padding: 9px;
    align-items: center;
    gap: 10px;
    border-radius: 60px;
    background: #F2F2F2;
}

span.selectable-icon {
    width: 16px;
    height: 16px;
    border-radius: 60px;
    border: 1px solid #D9D9D9;
    display: inline-block;
}

span.selectable-icon svg {
    display: none;
}

.radio-content-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    align-self: stretch;
}

label.radio-content-head-item-title {
    color: #000807;
    font-family: "Helvetica Neue";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    cursor: pointer;
}

.form-fields-group {
    margin-top: 24px;
    display: block;
    margin-bottom: 30px;
}

.form-fields-group ul li.square-radio-item.active {
    border: 1px solid #5662E1;
}

.form-fields-group ul li.square-radio-item.active .item-icon {
    background: #5662E1;
}


.form-fields-group ul li.square-radio-item.active .item-icon svg path {
    fill: #fff;
}

.form-fields-group ul li.square-radio-item.active span.selectable-icon svg {
    display: block;
}

.form-fields-group ul li.square-radio-item.active span.selectable-icon {
    background: #5662E1;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Footer */
.main-content-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    align-self: stretch;
    border-top: 1px solid #D9D9D9;
    padding-top: 30px;
}

.footer-item.item-2 {
    display: flex;
    align-items: center;
    gap: 24px;
}

.footer-buttons {
    display: flex;
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-buttons button.next {
    display: flex;
    padding: 10px 18px;
    justify-content: center;
    align-items: center;
    gap: 5px;
    border-radius: 60px;
    background: #FABD33;
    border: 0;
    color: #000807;
    font-family: "Helvetica Neue";
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 16px;
    cursor: pointer;
}

.footer-buttons button.prev {
    display: flex;
    padding: 10px 18px;
    justify-content: center;
    align-items: center;
    gap: 5px;
    border-radius: 60px;
    background: #fff;
    border: 1px solid #000807;
    color: #000807;
    font-family: "Helvetica Neue";
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 16px;
    cursor: pointer;
}
.footer-item img {
    width: 150px;
}

/* Step 2 */
.form-input {
    display: flex;
    width: 820px;
    height: 48px;
    padding: 16px 12px;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    border-radius: 6px;
    border: 1px solid #D9D9D9;
    background: #FFF;
    outline: none !important;

    color: #D9D9D9;

    font-family: "Helvetica Neue";
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 18px;
}

.form-input::placeholder {
    color: #D9D9D9;

    font-family: "Helvetica Neue";
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 18px;
}

.form-input::-ms-input-placeholder {
    /* Edge 12 -18 */
    color: #D9D9D9;

    font-family: "Helvetica Neue";
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 18px;
}

.form-step-fields {
    margin: 12px 0 48px;
}


.form-input {
    position: relative;
}

.form-input::after {
    position: absolute;
    content: 'abc';
    top: 0;
    left: 0;
    width: 100px;
    height: 100px;
    background: red;
}

.number_field_wrapper {
    position: relative;
    display: inline-block;
}

.number_field_wrapper::before {
    position: absolute;
    content: '€';
    top: 50%;
    left: 14px;
    transform: translateY(-50%);
    z-index: 1;
    color: #D9D9D9;
    font-family: "Helvetica Neue";
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 18px;
}

.number_field_wrapper input {padding-left: 25px;}

/* Line radio items css */
.line-radio-lists {
    margin-top: 20px;
}

ul.line-radio-items {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    align-self: stretch;
}

li.line-radio-item {
    display: flex;
    padding: 16px 12px;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    align-self: stretch;
    border-radius: 12px;
    border: 1px solid #D9D9D9;
    background: #FFF;
    cursor: pointer;
}

.line-radio-content label.title {
    color: #000807;
    font-family: "Helvetica Neue";
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 18px;
    cursor: pointer;
}

li.line-radio-item .line-radio-content {
    display: flex;
    align-items: center;
    gap: 12px;
}

li.line-radio-item .line-radio-content input[type="radio"] {
    display: none;
}

span.line-radio-item-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 60px;
    background: #F2F2F2;
    width: 30px;
    height: 30px;
    padding: 6px;
}

span.employee-selector svg {
    display: none;
}

span.employee-selector {
    width: 24px;
    height: 24px;
    display: inline-block;
    border-radius: 60px;
    border: 1px solid #D9D9D9;
}

/* active line radio item */
li.line-radio-item.active {
    border: 1px solid #5662E1;
}

li.line-radio-item.active span.line-radio-item-icon {
    background: #5662E1;
}

li.line-radio-item.active span.line-radio-item-icon svg, li.line-radio-item.active span.line-radio-item-icon path {
    fill: #fff;
}

li.line-radio-item.active span.employee-selector {
    background: #5662E1;
    border: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

li.line-radio-item.active span.employee-selector svg {
    display: block;
}

.line-radio-title-desc {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 8px;
    flex: 1 0 0;
}

p.line-radio-desc {
    color: #888;
    font-family: "Helvetica Neue";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 18px;
}

/* step 10 timer area */
.timer-area-wrapper {
    display: flex;
    height: 72px;
    padding: 12px;
    align-items: center;
    justify-content: center;
    gap: 12px;
    align-self: stretch;
    border-radius: 12px;
    background: #F2F2F2;
    margin: 24px 0;
}

.timer-area-wrapper .timer-icon {
    display: flex;
    width: 30px;
    height: 30px;
    padding: 7px;
    align-items: center;
    gap: 10px;
    border-radius: 60px;
    background: #5662E1;
}

.timer-area-wrapper .timer-title-desc p.timer-desc {
    color: #000807;
    font-family: "Helvetica Neue";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
}

.timer-area-wrapper .timer-time span {
    color: #5662E1;
    font-family: "Helvetica Neue";
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 26px;
    display: inline-block;
}

/* step 10 info box */
.body-info-box {
    display: flex;
    padding: 18px;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    align-self: stretch;
    border-radius: 18px;
    border: 1px solid #D9D9D9;
    background: #FFF;
}

.info-box-wrapper {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    align-self: stretch;
}

.info-box-wrapper .info-icon {
    display: flex;
    padding: 9px;
    align-items: center;
    gap: 10px;
    border-radius: 60px;
    background: #5662E1;
}

.info-box-wrapper .info-body {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    flex: 1 0 0;
}

.info-box-wrapper .info-body .info-title {
    color: #000807;
    font-family: "Helvetica Neue";
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: 32px;
}

.info-box-wrapper .info-body .info-desc {
    color: #888;
    font-family: "Helvetica Neue";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
}

/* half input */
.boxed-input-group {
    display: flex;
    padding: 18px;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    align-self: stretch;
    border-radius: 18px;
    border: 1px solid #D9D9D9;
    background: #FFF;
    margin: 18px 0;
}

.boxed-input-group label {
    color: #000807;
    font-family: "Helvetica Neue";
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
    /* 100% */
}

.boxed-input-group-inputes {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 18px;
    align-self: stretch;
    flex-wrap: wrap;
    width: 100%;
    justify-content: space-between;
}

.boxed-input-group-inputes .form-input-6 {
    width: 48%;
    display: flex;
    padding: 15px 12px;
    justify-content: space-between;
    align-items: center;
    flex: 1 0 0;
    border-radius: 60px;
    border: 1px solid #D9D9D9;
    background: #FFF;
    color: #000807;
    font-family: "Helvetica Neue";
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 14px;
    outline: none !important;
}

.boxed-input-group-inputes .form-input-12 {
    width: 100%;
    display: flex;
    padding: 15px 12px;
    justify-content: space-between;
    align-items: center;
    border-radius: 60px;
    border: 1px solid #D9D9D9;
    background: #FFF;
    color: #000807;
    font-family: "Helvetica Neue";
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 14px;
    outline: none !important;
}

.security-notice {
    display: flex;
    align-items: center;
    gap: 12px;
}

.security-notice-icon {
    display: flex;
    width: 24px;
    height: 24px;
    padding: 6px;
    align-items: center;
    gap: 10px;
    border-radius: 60px;
    background: #F2F2F2;
}

.security-notice-desc p {
    color: #888;
    font-family: "Helvetica Neue";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
}

/* test info box */
.test-info-box-wrapper {
    display: flex;
    padding: 12px;
    align-items: flex-start;
    gap: 12px;
    align-self: stretch;
    border-radius: 8px;
    background: #F2F2F2;
    margin-bottom: 24px;
}

.test-info-box-wrapper .test-desc-area {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 4px;
    flex: 1 0 0;
}

.test-info-box-wrapper .test-desc-area .test-info-title {
    color: #000807;
    font-family: "Helvetica Neue";
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
}

.test-info-box-wrapper .test-desc-area .test-info-desc {
    color: #888;
    font-family: "Helvetica Neue";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
}

input#testi_nvestor_interest {
    display: flex;
    width: 22px;
    height: 22px;
    padding: 4px;
    align-items: center;
    gap: 10px;
    border-radius: 4px;
    border: 1px solid #888;
}

/* form submit btn */
.submit-btn-area {
    width: 100%;
}

button.form-submit-btn {
    display: flex;
    padding: 16px 24px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    align-self: stretch;
    border-radius: 60px;
    background: #FABD33;
    color: #000807;
    font-family: "Helvetica Neue";
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 16px;
    border: 0;
    width: 100%;
    cursor: pointer;
}

/* full author box */
.full-author-area {
    height: 222px;
    border-radius: 24px;
    background: #5662E1;
    padding: 36px;
    margin-top: 30px;
}

.full-author-area-wrapper {
    display: flex;
    width: 650px;
    align-items: center;
    gap: 24px;
}

.full-author-area .author-details {
    display: flex;
    width: 450px;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 4px;
    flex-shrink: 0;
}

.full-author-area .author-details span {
    color: #FFF;
    font-family: "Helvetica Neue";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 18px;
    /* 112.5% */
}

.full-author-area .author-details .author-name {
    color: #FFF;
    font-family: "Helvetica Neue";
    font-size: 30px;
    font-style: normal;
    font-weight: 700;
    line-height: 42px;
    /* 140% */
}

.full-author-area .author-details p.author-designation {
    color: #FFF;
    font-family: "Helvetica Neue";
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px;
    /* 144.444% */
}

/* 2nd sidebar */
#sidebar-2 {
    background: #5662E1;
    width: 330px;
    border-radius: 12px;
    padding: 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 35px;
}

#sidebar-2 .sidebar-title {
    color: #FFF;
    text-align: center;
    font-family: "Helvetica Neue";
    font-size: 30px;
    font-style: normal;
    font-weight: 700;
    line-height: 38px;
}

.sidebaa-icon-list ul {
    margin: 0;
    padding: 0;
    list-style: none;
    text-align: left;
}

.sidebaa-icon-list ul li {
    display: flex;
    align-items: start;
    gap: 12px;
    align-self: stretch;
    margin-bottom: 18px;
}

.sidebaa-icon-list ul li span:first-child {
    display: flex;
    width: 24px;
    height: 24px;
    padding: 4px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 60px;
    background: #44DF38;
}

.sidebaa-icon-list ul li span:last-child {
    color: #FFF;
    font-family: "Helvetica Neue";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
}
.sidebar-image img {
    max-width: 100%;
}
/* popup */

#step-11-popup {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 24px;
    backdrop-filter: blur(9px);
    background: rgba(255, 255, 255, 0.08);
}

.step-11-popup-wrapper {
    width: 800px;
    height: 600px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    align-self: stretch;
    border-radius: 24px;
    border: 1px solid #5662e1;
    background: #5662e1;
    box-shadow: 0 4px 90px 0 rgba(86, 98, 225, 0.42);
    position: absolute;
    top: 5%;
    left: 50%;
    transform: translate(-50%, 0);
}

.popup-icon {
    display: flex;
    width: 90px;
    height: 90px;
    padding: 22px;
    align-items: center;
    gap: 10px;
    border-radius: 60px;
    background: #5662E1;
}

h4.popup-title {
    color: #fff;
    text-align: center;
    font-family: "Helvetica Neue";
    font-size: 32px;
    font-style: normal;
    font-weight: 500;
    line-height: 50px;
}

p.success-message {
    color: #fff;
    text-align: center;
    font-family: "Helvetica Neue";
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px;
}

.popup-close {
    position: absolute;
    top: 30px;
    right: 30px;
    width: 23.97px;
    height: 23.9px;
    flex-shrink: 0;
    cursor: pointer;
}

.popup-spinner {
    width: 30%;
    max-width: 400px;
    margin-top: 50px;
}

input#legal_reason {
    padding: 0px;
    width: 22px;
    height: 22px;
}

.test-info-box-wrapper .test-desc-area .test-info-desc.legal-reason-desc {
    color: #000;
}

.alert-message {
    margin-bottom: 20px;
    display: none;
    background: #ffe6e6;
    color: #b00000;
    padding: 10px 15px;
    border-radius: 6px;
    margin-bottom: 15px;
    font-weight: 500;
}

.is-invalid {
    border: 2px solid #b00000 !important;
    background-color: #fff5f5;
}

input.is-invalid[type="checkbox"] {
    /* Hide default outline */
    outline: none;

    /* Add a red border-like shadow */
    box-shadow: 0 0 0 2px #ff4d4f;
    border-radius: 4px;
    /* This works with box-shadow */
}


@media only screen and (max-width: 1280px) {

    .calculator-form-wrapper {
        width: 100%;
        padding: 20px;
    }

    #siderbar {
        width: 25%;
    }

    div#sidebar-2 {
        display: none;
        width: 25%;
    }

    #main-content {
        width: 75%;
    }
}

@media only screen and (max-width: 768px) {

    .calculator-form-wrapper {
        width: 100%;
        padding: 20px;
    }

    #siderbar {
        display: none !important;
        width: 0;
    }

    div#sidebar-2 {
        display: none !important;
        width: 0;
    }

    #main-content {
        width: 100%;
    }

    .main-content-head {
        flex-direction: column;
    }

    .author-area {
        width: 100%;
        margin-top: 20px;
        text-align: left;
        align-items: start;
    }

    img.author-avatar {
        transform: scaleX(-1);
    }

    h4.body-step-title {
        font-size: 28px;
        line-height: 36px;
    }

    .form-fields-group ul li {
        max-width: 48%;
        height: 150px;
        width: 50%;
        box-sizing: border-box;
    }

    .form-input {
        width: 100%;
    }

    label.form-group-title {
        color: #000807;
        font-family: "Helvetica Neue";
        font-size: 18px;
        font-style: normal;
        font-weight: 500;
        line-height: 24px;
        margin-top: 19px;
        display: block;
    }

    .form-fields-group ul li.square-radio-item {
        flex: inherit;
        width: 46%;
        max-width: 46%;
    }

    .square-radio-item,
    .square-radio,
    .square-radio-content,
    .radio-content-body,
    .radio-content-head-item-title {
        white-space: normal;
        word-wrap: break-word;
        overflow-wrap: anywhere;
    }

    .timer-area-wrapper {
        height: inherit;
    }

    .boxed-input-group-inputes .form-input-6 {
        width: 100%;
        flex: inherit;
    }

    .full-author-area-wrapper {
        width: 100%;
        flex-direction: column;
    }

    .full-author-area .author-details {
        width: 100%;
    }

    .full-author-area {
        height: inherit;
    }

    .main-content-footer {
        flex-direction: column-reverse;
        gap: 20px;
    }

    .footer-item {
        flex-direction: column;
    }

    img.author-avatar {
        filter: fl;
        transform: scaleX(-1);
    }

    .step-11-popup-wrapper {
        width: 100%;
        height: 540px;
    }

    #step-11-popup {
        width: 100%;
        height: 100%;
        padding: 10px;
    }

    h4.popup-title {
    font-size: 26px;
    line-height: 39px;
}
}


.slidePlus {
    animation: slideInRight 0.8s forwards;
}

.slideMinus {
    animation: slideOutLeft 0.8s forwards;
}

@keyframes slideInRight {
    0% {
        transform: translateX(250px);
        opacity: 0;
    }

    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideOutLeft {
    0% {
        transform: translateX(0);
        opacity: 1;
    }

    100% {
        transform: translateX(-250px);
        opacity: 0;
    }
}


.slideInFromLeft {
    animation: slideInFromLeftKey 0.8s forwards;
}

.slideOutToRight {
    animation: slideOutToRightKey 0.8s forwards;
}

@keyframes slideInFromLeftKey {
    0% {
        transform: translateX(-100%);
        opacity: 0;
        z-index: 2;
    }

    100% {
        transform: translateX(0);
        opacity: 1;
        z-index: 2;
    }
}

@keyframes slideOutToRightKey {
    0% {
        transform: translateX(0);
        opacity: 1;
        z-index: 1;
    }

    100% {
        transform: translateX(100%);
        opacity: 0;
        z-index: 1;
    }
}