@font-face {
    font-family: "Syne Variable";
    src: url("fonts/syne_variable.ttf");
}

@font-face {
    font-family: "Syne Regular";
    src: url("fonts/syne_regular.ttf");
}

@font-face {
    font-family: "Syne Bold";
    src: url("fonts/syne_bold.ttf");
}

@font-face {
    font-family: "Outfit Regular";
    src: url("fonts/Outfit-Regular.woff2");
}

@font-face {
    font-family: "Outfit Light";
    src: url("fonts/Outfit-Light.woff2");
}

@font-face {
    font-family: "Outfit Medium";
    src: url("fonts/Outfit-Medium.woff2");
}

@font-face {
    font-family: "Outfit SemiBold";
    src: url("fonts/Outfit-SemiBold.woff2");
}

:root {
    --color-light: #E4E7DF;
    --color-light-gray: #F1F5F6;
    --color-light-green: #E4E7DF;
    --color-green: #BFCFBC;
    --color-gray-text: #878787;
    --color-darkgray-text: #2D2D2D;
}




/*------------------------------------*\
  ------------- #RESET -------------
\*------------------------------------*/

* {
    box-sizing: border-box;
    margin:  0;
    padding: 0;
    font-family: "Outfit Regular", sans-serif;
    font-size: 1rem;
}

body, html {
    /*overflow-x: hidden;*/
    scroll-behavior: smooth;
    /*overflow-y: auto;*/
}

p, span {
    line-height: 1.3rem;
}

a {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

button {
    border: none;
    background-color: unset;
    cursor: pointer;
}

input:focus, textarea:focus, select:focus {
    outline: none;
}

input:disabled {
    color: black;
}

textarea {
    resize: none;
}

fieldset {
    border: none;
}

h1, h2, h3, h4, h5, h6, div, p, span {
    word-break: break-word;
}

h1 {
    font-family: "Syne Variable", sans-serif;
    font-size: 2.5rem;
    font-weight: 500;
    color: white;
}

#how, #prices, #contact {
    scroll-margin: 100px;
}

#download {
    scroll-margin: 220px;
}

#faq {
    scroll-margin: 130px;
}


/* CONTENT */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 99999;
    padding: 40px;
    background-color: black;
}

.header-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    position: relative;
}

.header-nav__links {
    display: flex;
    gap: 100px;
}

.header-nav__link {
    color: white;
}

.home-hero {
    padding-top: 160px;
    padding-bottom: 80px;
    background-color: black;
}

.home-hero .landing-container {
    display: flex;
    justify-content: space-between;
    gap: 70px;
}

.home-hero__left {
    margin-top: 50px;
}

.home-hero__title {
    font-family: "Syne Variable", sans-serif;
    font-style: normal;
    font-size: 3.5rem;
    margin-bottom: 30px;
}

.home-hero__title-1 {
    font-size: inherit;
    font-family: inherit;
    font-weight: 400;
}

.home-hero__title-2 {
    font-size: inherit;
    font-family: inherit;
    font-weight: 500;
}

.home-hero__subtitle {
    font-size: 1.125rem;
    margin-bottom: 80px;
    color: white;
}

.hero-cta {
    max-width: 230px;
    margin-bottom: 20px;
}

.hero-cta__info {
    font-family: "Outfit Light", sans-serif;
    color: white;
    text-align: center;
    margin-bottom: 10px;
}

.hero-cta__btn.btn {
    font-family: "Syne Variable", sans-serif;
    font-size: 1.375rem;
    font-weight: 500;
    display: inline-block;
}

.home-hero__right {
    position: relative;
    height: 660px;
    max-width: 52%;
    flex-shrink: 0;
}

.home-hero__right video {
    width: 100%;
    min-height: 100%;
    object-fit: cover;
    object-position: left;
    border-radius: 40px;
}

.hero-datas {
    display: flex;
    gap: 15px;
    position: absolute;
    left: -280px;
    bottom: 20px;
    z-index: 20;
}

.hero-data {
    padding: 25px;
    border-radius: 15px;
}

.hero-data__1 {
    background-color: var(--color-light);
}

.hero-data__2 {
    padding-right: 150px;
    background-color: var(--color-green);
}

.hero-data__title {
    font-family: "Syne Variable", sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 30px;
}

.hero-data__subtitle {
    font-family: "Syne Variable", sans-serif;
    font-size: 1.125rem;
    font-weight: 500;
}

.prices {
    background-color: black;
    padding: 100px 0 0;
}

.landing-section-title {
    font-family: "Syne Variable", sans-serif;
    font-size: 3.5rem;
    font-weight: 500;
    color: white;
    text-align: center;
    margin-bottom: 100px;
}

.prices-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.prices-flex__left {
    max-width: 400px;
    padding: 50px;
    border-radius: 40px;
    background-color: var(--color-green);
    text-align: center;
}

.price-tag {
    margin: 20px 0 30px;
}

.prices-left__title {
    font-family: "Syne Variable", sans-serif;
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 8px;
}

.prices__subtitle {
    opacity: 0.8;
    margin-bottom: 30px;
}

.prices__subtitle--no-margin {
    margin-bottom: unset;
}

.prices__text-1 {
    font-family: "Outfit SemiBold", sans-serif;
    margin-bottom: 5px;
}

.prices-flex__right {
    flex-basis: 30%;
}

.prices__features {
    color: white;
}

.prices__features li:not(.prices__features li:last-child) {
    margin-bottom: 10px;
}

.prices-stats-wrapper {
    padding-bottom: 280px;
    position: relative;
}

.price-stats {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    position: absolute;
    bottom: 0;
    transform: translateY(50%);
}

.price-stat {
    padding: 20px;
    border-radius: 15px;
    background-color: var(--color-light);
    flex-basis: calc(100% / 3 - 60px);
}

.price-stat__rate {
    font-family: "Syne Variable", sans-serif;
    font-size: 2rem;
    font-weight: 700;
    text-align: right;
    margin-bottom: 50px;
}

.price-stat__title {
    font-family: "Syne Variable", sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.price-stat__subtitle {
    font-family: "Syne Variable", sans-serif;
    font-size: 1rem;
    font-weight: 500;
}

.faq {
    padding: 250px 0 100px;
}

.faq__header, .download__header, .contact__header {
    text-align: center;
    margin-bottom: 100px;
}

.contact__header {
    margin-bottom: 60px;
}

.faq .landing-section-title, .download .landing-section-title, .contact .landing-section-title {
    font-weight: 500;
    margin-bottom: 50px;
}

.faq__question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.faq__question-wrapper:not(:first-of-type) {
    margin-top: 50px;
}

.faq__text {
    font-family: "Outfit Medium", sans-serif;
    font-size: 1.5rem;
    color: black;
}

.faq__answer {
    display: none;
    max-width: 80%;
    margin-top: 20px;
    font-family: "Outfit Light", sans-serif;
}

.download {
    padding: 100px 0;
    background-color: var(--color-light);
}

.download__buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    align-items: center;
}

.download__buttons img {
    height: 80px;
}

.contact {
    padding: 100px 0;
}

.input-wrapper {
    margin-bottom: 30px;
}

.input-wrapper:last-of-type {
    margin-bottom: 40px;
}

.input-text, .input-textarea {
    width: 100%;
    border-radius: 70px;
    padding: 20px;
    border: 1px solid black;
}

.input-textarea {
    border-radius: 16px;
    margin-bottom: 40px;
}

#landing-footer {
    padding: 40px 0;
}

#landing-footer span {
    display: inline-block;
    margin-right: 5px;
    font-size: 0.875rem;
    vertical-align: bottom;
}

#landing-footer img {
    margin-bottom: -4px;
}

.landing-footer__nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.how {
    padding: 100px 0;
}

.how .landing-section-title {
    color: black;
}

.how__feature {
    position: relative;
}

.how__feature--two, .how__feature--three, .how__feature--four {
    margin-top: -50px;
}

.how__box-1 {
    left: 180px;
    top: 160px;
}

.how__box-1 .how__number {
    right: 5px;
    left: unset;
}

.how__box-2 {
    top: 200px;
    right: 180px;
}

.how__box-3 {
    top: 200px;
    left: 180px;
}

.how__box-3 .how__number {
    right: 5px;
    left: unset;
    top: -47px;
}

.how__box-4 {
    top: 200px;
    right: 180px;
}

.how__box-4 .how__number {
    top: -45px;
}

.how__feature--right {
    text-align: right;
}

.how__feature img {
    width: 255px;
}

.how__box {
    position: absolute;
    padding: 40px;
    border-radius: 15px;
    background-color: black;
    max-width: 250px;
}

.how__number {
    position: absolute;
    top: -40px;
    left: 5px;
    font-family: "Syne Variable", sans-serif;
    font-weight: 500;
    font-size: 3.5rem;
}

.how__box p {
    color: white;
    text-align: left;
}





#app-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: black;
    border-radius: 32px 32px 0 0;
    padding: 15px;
}

.footer-nav {
    width: 300px;
    max-width: 90%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-nav__link {
    text-align: center;
}

.footer-nav__link--opaque {
    opacity: 50%;
}

.footer-nav__link--active {
    opacity: 1;
}

.footer-nav__link span {
    display: block;
    color: white;
}

.footer-nav__icon {
    margin-bottom: 3px;
}

.footer-nav__icon-wrapper {
    display: inline-block;
    position: relative;
}

.footer-nav__icon-dot {
    display: none;
    position: absolute;
    top: 0;
    right: -2px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: white;
}


.hero {
    height: 25vh;
    position: relative;
}

.hero__restaurant-thumbnail {
    position: absolute;
    z-index: 1;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center;
}

.hero__overlay {
    position: absolute;
    z-index: 2;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
}

.hero .container {
    height: 100%;
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.hero h1 {
    position: absolute;
    top: 20%;
}

.powered-by-yumgo {
    color: white;
    display: flex;
    align-items: center;
    gap: 7px;
    top: unset;
    position: relative;
}

.partners {
    padding-top: 200px;
}

.partners .landing-section-title {
    color: black;
    text-align: center;
}

.partners-flex {
    display: flex;
    gap: 40px;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.whole-page {
    height: 100vh;
    display: flex;
    flex-direction: column;
}

.whole-page footer {
    margin-top: auto;
}

.wa-link {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: black;
    border-radius: 50%;
    padding: 17px;
    height: 95px;
    width: 95px;
    box-shadow: 0 0 30px rgb(0 0 0 / 20%);
}

/* #MENU & #ORDER */

.menu {
    padding-bottom: 100px;
}

.menu-section {
    /*scroll-margin-top: 270px;*/
    padding-top: 40px;
}

.menu-section__restaurant-description {
    margin: 30px 0 10px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.order, .checkout, .signup, .email-validation,
.order-confirmed, .user-profile, .user-data-edit, .login {
    padding: 30px 0 0;
    display: flex;
    flex-direction: column;
}

.user-profile {
    display: block;
}

.container.order, .container.checkout {
    /*min-height: 87vh;*/
}

.container.order {
    padding-bottom: 16vh;
}

.btn--pay-order, .btn--edit-user-data, .btn--edit-password, #signup-customer-btn, .btn--login, .btn--verify-email {
    margin-bottom: 20px;
}

.order .card-dish {
    margin-right: 0;
}

.order__warning {
    font-size: 0.8rem;
    color: var(--color-gray-text);
    margin: 20px 10px 60px;
}

.user-data-edit {
    /*min-height: 100vh;*/
    display: flex;
    flex-direction: column;
}

.user-data-edit .btn--block, .login .btn--block {
    margin-top: auto;
}

.signup__customer-password-fields {
    margin-bottom: 50px;
}

.user-data-edit__fields {
    padding-top: 20px;
}

.order-confirmed {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.order-confirmed__title {
    font-family: "Outfit Medium", sans-serif;
    font-size: 1.625rem;
    margin: 30px 0;
    color: black;
}

.order-confirmed .btn--block {
    margin-top: auto;
}

.menu-section__title {
    font-family: "Outfit Medium", sans-serif;
    font-size: 1.25rem;
    margin: 0 0 30px;
}

.menu-section .card-dish:last-of-type {
    margin-bottom: 0;
}

.card-dish {
    position: relative;
    display: flex;
    margin-right: 5%;
    align-items: start;
    gap: 20px;
    background-color: white;
    padding: 25px;
    border-radius: 16px;
    margin-bottom: 20px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.card-dish.card-dish--checkout {
    justify-content: space-between;
    background-color: transparent;
    padding: 25px 0;
    box-shadow: unset;
    border-radius: unset;
    margin-bottom: 0;
    margin-right: 0;
    align-items: start;
}

.card-dish--checkout .card-dish__price-quantity {
    text-align: right;
    margin-top: 10px;
    color: var(--color-gray-text);
}

.card-dish--checkout .card-dish__name {
    margin-bottom: 10px;
}

.card-dish--checkout .card-dish__description {
    margin-bottom: 0;
}

.order .card-dish__description {
    margin-bottom: 10px;
}

.card-dish--checkout .card-dish__price, .card-dish--checkout .card-dish__price-quantity {
    font-family: "Outfit Regular", sans-serif;
    font-size: 1rem;
}

.checkout__total-price {
    text-align: right;
    padding: 25px 0;
    font-family: "Outfit Medium", sans-serif;
    font-size: 1.25rem;
}


.card-dish__img {
    width: 30%;
    object-fit: cover;
    aspect-ratio: 1;
    border-radius: 8px;
}

.card-dish__info {
    height: 100%;
    flex-basis: 60%;
    overflow: hidden;
}

.card-dish--checkout .card-dish__info {
    flex-basis: 70%;
}

.card-dish--order .card-dish__info {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex-basis: unset;
    flex-grow: 1;
}

.card-dish__info-header {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    align-items: start;
    /*margin-bottom: 15px;*/
}

.card-dish__name {
    font-family: "Outfit Medium", sans-serif;
    font-size: 1.125rem;
    margin-bottom: 15px;
    max-width: 80%;
}

.card-dish--order .card-dish__name {
    margin-bottom: unset;
}

.card-dish__description {
    color: var(--color-gray-text);
    margin-bottom: 15px;
}

.card-dish__info-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: auto;
}

.card-dish__price-wrapper {

}

.card-dish__quantity {
    display: flex;
    align-items: center;
    justify-content: end;
}

.card-dish__quantity-number {
    text-align: center;
    width: 50px;
    padding: 14px 0;
    border: 1px solid black;
}

.card-dish__change-quantity {
    padding: 14px 16px;
}

.card-dish__reduce-quantity {
    border-left: 1px solid black;
    border-top: 1px solid black;
    border-bottom: 1px solid black;
    border-radius: 8px 0 0 8px;
}

.card-dish__increase-quantity {
    border-right: 1px solid black;
    border-top: 1px solid black;
    border-bottom: 1px solid black;
    border-radius: 0 8px 8px 0;
}

.card-dish__price, .card-dish__price-quantity {
    font-size: 1.125rem;
}

.card-dish__plus {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translate(50%, -50%);
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    aspect-ratio: 1;
    background-color: black;
    border-radius: 50%;
}

.add-to-order-popup {
    display: none;
    position: fixed;
    z-index: 5;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--color-light-green);
    border-radius: 24px 24px 0 0;
    padding: 30px;
    box-shadow: 0 0 0 10000px rgba(0, 0, 0, 0.6);
    height: 80vh;
}

.add-to-order__header {
    width: 80%;
    margin-bottom: 10px;
}

.add-to-order__title {
    font-family: "Outfit Medium", sans-serif;
    font-size: 1.625rem;
    margin-bottom: 25px;
}

.add-to-order__dish-description {
    font-size: 1.125rem;
    color: var(--color-darkgray-text);
    margin-bottom: 20px;
}

.add-to-order__allergens {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    color: var(--color-gray-text);
    margin-bottom: 25px;
}

.add-to-order__alert {
    margin-bottom: 3px;
}

.add-to-order__dish-price {
    font-size: 1.25rem;
}

.add-to-order__scroll {
    max-height: 100%;
    overflow: auto;
    padding-bottom: 100px;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.add-to-order__scroll::-webkit-scrollbar {
    display: none;
}

.add-to-order__ingredient {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
    width: 100%;
    position: relative;
}

.add-to-order__ingredients {
    margin-top: 35px;
}

.add-to-order__ingredient .checkmark {
    right: 0;
    left: unset;
}

.add-to-order__set {
    margin-bottom: 10px;
}

.add-to-order__set-title {
    margin: 20px 0 5px;
    font-family: "Outfit Medium", sans-serif;
    font-size: 1.2rem;
}

.add-to-order__removable-ingredients-list {
    margin-top: 20px;
}

.add-to-order__set .text-gray {
    margin-bottom: 20px;
}

.add-to-order__option {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    padding-right: 30px;
    margin-bottom: 20px;
}

.add-to-order__option--multiple {
    padding-right: 0;
    gap: 10px;
}

.add-to-order__option--multiple .option-name {
    flex-grow: 1;
    text-align: right;
    overflow: hidden;
}

.add-to-order__option .input-flex .input-field {
    width: 35px;
    height: 25px;
    pointer-events: none;
}

.add-to-order__option input[type="number"] {
    background-color: transparent;
}

.add-to-order__option-left {
    text-align: right;
}

.add-to-order__option-left label {
    line-height: 1.2rem;
}

.add-to-order__option-price {
    flex-shrink: 0;
    line-height: 1.2rem;
}

.input-option__checkmark {
    position: absolute;
    top: 0;
    right: 0;
    height: 18px;
    width: 18px;
    background-color: transparent;
    border: 1px solid black;
    border-radius: 50%;
}

/* Create the indicator (the dot/circle - hidden when not checked) */
.input-option__checkmark:after {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    display: none;
}


.add-to-order__option input:checked ~ .input-option__checkmark:after {
    display: block;
    background-color: black;
}

.add-ingredient-checkbox {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkmark {
    position: absolute;
    top: -3px;
    left: 0;
    height: 25px;
    width: 25px;
    background-color: transparent;
    border: 1px solid black;
    border-radius: 7px;
}

input:checked ~ .checkmark:after {
    content: "\2713";
    display: inline-block;
    margin-left: 4px;
    margin-top: 2px;
    scale: 120%;
}

.add-to-order__ingredient-label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding-right: 30px;
}

/*.add-to-order__ingredient-label span {
    font-size: 1.125rem;
}*/

.add-to-order__warning {
    margin-top: 40px;
    color: var(--color-gray-text);
    font-size: 1.125rem;
}

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

.add-to-order__add-btn span {
    font-family: "Syne Variable", sans-serif;
    font-size: 1.5rem;
}

.add-to-order__footer {
    position: relative;
    z-index: 1000;
    margin-top: -90px;
}

.go-to-orders-popup {
    position: fixed;
    bottom: 110px;
    left: 5%;
    display: none;
    width: 90%;
    margin: 0 auto;
    padding: 25px;
    justify-content: space-between;
    align-items: center;
    background-color: var(--color-green);
    border: 1px solid black;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.go-to-orders-popup span {
    font-family: "Outfit Medium", sans-serif;
    font-size: 1.125rem;
}

.close-button {
    position: absolute;
    right: 25px;
    top: 30px;
}

.add-to-order-popup .close-button {
    background-color: var(--color-light-green);
    border-radius: 50%;
    z-index: 50;
    top: 15px;
}

.order-checkout {
    padding: 30px 0 0;
}

.order-checkout__total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    margin-bottom: 35px;
}

.order-checkout__total span {
    font-family: "Outfit Medium", sans-serif;
    font-size: 1.25rem;
}

.go-to-checkout__btn {
    display: block;
    width: 100%;
    margin-top: auto;
}

.checkout__login, .order-confirmed__info {
    margin-top: 70px;
}

.checkout__login-alert, .order-confirmed__alert {
    max-width: 300px;
    margin: 0 auto 30px;
    line-height: 1.6rem;
}

.login__signup {
    margin-top:  80px;
}

.checkout__login-secure {
    display: flex;
    justify-content: center;
    align-items: start;
    gap: 30px;
    margin-top: 50px;
}

.checkout__signup-btn {
    margin-bottom: 30px;
}

.ckeckout__login-btn * {
    vertical-align: middle;
}

.ckeckout__login-btn span {
    font-family: "Syne Variable", sans-serif;
    font-size: 1.5rem;
}

.signup .black-title-wrapper {
    margin-bottom: 35px;
}

.signup__customer-data {
    margin-bottom: 30px;
}

.signup__customer-flag {
    display: flex;
    position: relative;
    margin-bottom: 25px;
}

.signup__customer-flag .checkmark {
    top: 0;
}

.signup__flag-label {
    margin-left: 40px;
    font-size: 0.975rem;
    line-height: 1.5rem;
}

.signup__flag-label * {
    font-size: inherit;
}

.checkbox {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

#signup-customer-btn {
    margin-top: 10px;
}

.email-validation .mini-title {
    margin: 80px 0 120px;
}

.email-validation__inputs {
    display: flex;
    justify-content: space-between;
    gap: 10px;
}

.input-validation-number-field {
    font-size: 3rem;
    padding: 10px 0;
    border: 1px solid black;
    border-radius: 9px;
    text-align: center;
}

.email-validation__inputs .input-validation-number-field {
    flex-basis: calc(100% / 6 - 10px);
    width: calc(100% / 6 - 10px);
}

.email-validation {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.email-validation .btn {
    margin-top: auto;
}

.email-validation__not-received {
    text-align: center;
    margin-top: 60px;
}

.checkout__payment {
    padding: 0;
}

.checkout__payment-section {
    padding: 40px 0 0;
}

.checkout__payment-wrapper {
    padding: 25px 0;
}

.checkout__payment-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}

.checkout__input-info {
    font-size: 0.875rem;
    color: var(--color-gray-text);
    margin-top: 20px;
}

.checkout__payment-wrapper .input-text-label {
    margin: 0;
    color: black;
}

.checkout__payment-validation {
    display: none;
    color: #ff1500;
    margin: 10px 0 0 15px;
    font-size: 0.9rem;
}

.checkout__payment-validation--customer_email {
    margin-top: -10px;
}

.payment-method-checkout {
    position: relative;
    padding: 35px;
    border: 1px solid black;
    border-radius: 16px;
    margin-bottom: 20px;
}

.payment-method-checkout .radio {
    position: absolute;
    width: 20px;
    height: 20px;
    border: 1px solid black;
    border-radius: 50%;
    left: 30px;
    top: 50%;
    transform: translate(-50%, -50%);
}

.payment-method-checkout--selected .radio:after {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    content: "";
    width: 0.7rem;
    height: 0.7rem;
    background-color: black;
    border-radius: 50%;
}

.payment-method-checkout-new .input-radio-wrapper {
    margin-left: 30px;
}

.payment-method-checkout--selected {
    background-color: var(--color-light-green);
}

.payment-method-checkout.payment-method-checkout-register {
    padding: 15px 0;
    border: unset;
    line-height: 1.2rem;
}

.payment-method-checkout-register .input-radio-wrapper {
    margin-left: 65px;
    margin-bottom: 0;
}

.payment-method-checkout-register .text {
    margin-left: 30px;
    color: var(--color-gray-text);
}

.pay-online-icons {
    display: flex;
    align-items: start;
    gap: 10px;
    margin-left: 30px;
}

.pay-online-icons img {
    height: 28px;
}

.pay-online-icons span {
    line-height: 1.1rem;
    vertical-align: top;
}

.checkout__payment-footer {
    padding: 30px 0 30px;
}

.checkout__payment-footer .checkout__payment-wrapper {
    padding-top: unset;
}

.payment-method-radio-wrapper {
    margin: 0 0 15px 30px;
}

.user-profile__link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 0;
}

.user-profile__link > div {
    display: flex;
    align-items: center;
    gap: 20px;
}

.user-profile__link--logout {
    margin-top: 100px;
}

.user-profile__link span {
    margin-top: 4px;
}

.user-profile__links {
    margin-bottom: 13vh;
}

.customer-order {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 25px 30px 25px 35px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    margin-bottom: 20px;
    border-radius: 16px;
}

.customer-order__id {
    font-family: "Outfit Medium", sans-serif;
    font-size: 1.25rem;
    margin-bottom: 20px;
}

.customer-order__restaurant {
    margin-bottom: 20px;
}

.customer-order__restaurant, .customer-order__price {
    display: flex;
    align-items: center;
    gap: 20px;
}

.menu .customer-order__restaurant {
    margin-top: 40px;
    margin-bottom: 30px;
    gap: 10px;
}

.profile-order__header {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 40px;
}

.profile-order__date *, .profile-order__restaurant * {
    vertical-align: bottom;
}

.profile-order__header img {
    margin-right: 10px;
}

.profile-order__dishes, .profile-order__notes {
    margin-bottom: 30px;
}

.profile-order__dish {
    display: flex;
    justify-content: space-between;
    margin-bottom: 25px;
    gap: 20px;
}

.profile-order__dish .flex-row {
    display: flex;
    gap: 20px;
}

/*.profile-dish__name {
    width: 60%;
}*/

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

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

.profile-dish__additional-ingredients {
    margin-top: 15px;
}

.profile-dish__price {
    text-align: right;
    flex: auto;
    margin-bottom: 20px;
}

.profile-dish__ingredient:not(.profile-dish__ingredient:last-child) {
    margin-bottom: 5px;
}

.profile-order__text {
    color: var(--color-gray-text);
}

.profile-order__price {
    float: right;
    margin-top: 25px;
    font-size: 1.125rem;
}

.profile-order__price span {
    font-family: "Outfit Medium", sans-serif;
    font-size: 1.25rem;
    margin-left: 30px;
}

.profile-order__notes .mini-title {
    margin-bottom: 15px;
}

.customer-payment-methods {
    margin-top: 45px;
}

.customer-payment-method {
    display: flex;
    flex-direction: column;
    border: 1px solid black;
    border-radius: 16px;
    padding: 30px;
    margin-bottom: 30px;
}

.customer-payment-method__brand {
    font-family: "Outfit Medium", sans-serif;
    font-size: 1.25rem;
    margin-bottom: 40px;
}

.customer-payment-method__brand img {
    vertical-align: middle;
    margin-right: 10px;
}

.customer-payment-method__number {
    font-size: 1.125rem;
    margin-bottom: 40px;
}

.customer-payment-method__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.customer-payment-method__date {
    color: var(--color-gray-text);
}

.order-no-dishes {
    font-size: 1.2rem;
    color: var(--color-gray-text);
    padding-bottom: 20px;
}

.order-no-dishes .text-underline {
    font-size: 1.2rem;
}

.card-dish__ingredients {
    max-width: 80%;
}

.card-dish__ingredients span {
    vertical-align: text-bottom;
}

.card-dish--checkout .card-dish__ingredients {
    padding-left: 20px;
}

.card-dish__ingredient:not(.card-dish__ingredient:last-child) {
    margin-bottom: 10px;
}

.checkout__service {
    display: flex;
    justify-content: space-between;
    background-color: transparent;
    padding: 15px 0 0;
    align-items: start;
}

.checkout__service-title {
    flex-basis: 70%;
    font-family: "Outfit Medium", sans-serif;
    font-size: 1.125rem;
    color: var(--color-gray-text);
}

.checkout__service-price {
    margin-bottom: 10px;
    text-align: right;
    color: var(--color-gray-text);
}

.checkout__service-people {
    text-align: right;
    color: var(--color-gray-text);
}

#order-people {
    pointer-events: none;
}

.centered-qr-code {
    padding: 200px 0;
    text-align: center;
}

.inner-loading {
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    height: 100vh;
    width: 100vw;
    z-index: 9999999999;
    background-color: rgba(0, 0, 0, 0.3);
    justify-content: center;
    align-items: center;
}

.inner-loading .loading-box {
    height: 100px;
    width: 100px;
    background-color: white;
    border-radius: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
}

.inner-loading img {
    height: 50px;
}





/* @UTILITIES */
.landing-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.landing-container--small {
    max-width: 1000px;
}

.landing-container--smaller {
    max-width: 800px;
}

.landing-container--how {
    max-width: 700px;
}

.landing-container--form {
    max-width: 400px;
}

.container {
    width: 90%;
    max-width: 1000px;
    margin: 0 auto;
}

.black-title-wrapper {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 20px;
}

.black-title {
    font-family: "Outfit Medium", sans-serif;
    font-size: 1.625rem;
    color: black;
    margin-bottom: 20px;
}

.black-title-wrapper .black-title {
    margin-bottom: unset;
}

.mini-title {
    font-family: "Outfit Medium", sans-serif;
    font-size: 1.25rem;
    margin-bottom: 25px;
}

.arrow-left {
    margin-right: 5px;
}

.input-validation-number-field::-webkit-outer-spin-button,
.input-validation-number-field::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.btn {
    width: 100%;
    text-align: center;
    padding: 22px 24px;
    border-radius: 90px;
    font-family: "Syne Variable", sans-serif;
    font-weight: 500;
    font-size: 1.5rem;
}

.btn--black {
    background-color: black;
    color: white;
}

.btn--light {
    color: black;
    background-color: var(--color-light);
    transition: background-color 0.2s;
}

.btn--light:hover {
    background-color: #d1d2ca;
}

.btn--block {
    display: block;
}

.btn--disabled {
    opacity: 0.25;
    pointer-events: none;
}

.btn--disabled-2 {
    background-color: #ccc;
    pointer-events: none;
}

.btn--add-person-to-order, .btn--add-option-to-set {
    position: relative;
    border-radius: 50%;
    height: 50px;
    width: 50px;
    flex-shrink: 0;
    padding: unset;
}

.btn--add-option-to-set {
    width: 25px;
    height: 25px;
    color: black;
    border: 1px solid black;
}

.btn--add-person-to-order img, .btn--add-option-to-set img {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.btn--add-option-to-set img {
    width: 60%;
}

.navbar-categories {
    background-color: white;
    position: sticky;
    top: 0;
    z-index: 5;
    overflow-x: scroll;
    -ms-overflow-style: none;
    scrollbar-width: none;
    display: flex;
    gap: 15px;
    padding: 20px 15px;
    scroll-behavior: smooth;
}


.navbar-categories--shadowed {
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

.navbar-categories::-webkit-scrollbar {
    display: none;
}

.btn--category {
    width: unset;
    padding-top: 5px;
    padding-bottom: 5px;
    font-family: "Outfit Light", sans-serif;
    font-size: 1rem;
    background: transparent;
    border: var(--color-darkgray-text) 1px solid;
    color: var(--color-darkgray-text);
    scroll-behavior: smooth;
}

.btn--category-active {
    transition: 0.2s;
    background-color: var(--color-darkgray-text);
    color: white;
}

.navbar-categories .btn--category {
    flex-shrink: 0;
}

.text-center {
    text-align: center;
}

.text-right {
    text-align: right;
}

.text-underline {
    font-family: inherit;
    font-size: inherit;
    text-decoration: underline;
}

.text-gray {
    color: var(--color-gray-text);
}

.text-black {
    color: black;
}

.img--checkout, .img--order-confirmed {
    width: 140px;
}

.img--order-confirmed {
    margin-left: 45px;
}

.input-text-label {
    display: block;
    color: var(--color-gray-text);
    margin: 0 0 7px 10px;
    font-size: 0.975rem;
}

input[name="order-table"] {
    margin-bottom: 0;
}

.input-flex {
    display: flex;
    align-items: center;
}

.input-flex .input-field {
    position: relative;
    width: 55px;
    height: 55px;
    padding: 0;
    border: unset;
    text-align: center;
    margin-bottom: unset;
}

.checkout__payment-header .input-text-label {
    margin: 0 10px 7px 15px;
}

.input-field {
    display: block;
    width: 100%;
    padding: 20px 25px;
    border: 1px solid black;
    border-radius: 70px;
    margin-bottom: 25px;
}

.textarea-field {
    margin-top: 25px;
    margin-bottom: 0;
    padding: 20px;
    border-radius: 16px;
}

.invalid-input {
    border-color: #ff1500;
}

.input-field::placeholder {
    font-size: 1rem;
    color: var(--color-gray-text);
}

.input-validation-number-field::selection {
    background: var(--color-light-green);
}

.input-radio {
    position: relative;
    width: 1.2em;
    height: 1.2em;
    margin-right: 15px;
    border: 1px solid #6c6c6c;
}

.input-radio:checked {
    appearance: none;
    background-color: black;
}

input[type="radio" i] {
    appearance: none;
    display: none;
}

.input-radio-label, .input-radio {
    vertical-align: middle;
}

.payment-method-checkout .input-radio-wrapper {
    margin-top: 0;
}

.input-radio-wrapper {
    margin: 15px 0;
}

.input-password-wrapper {
    position: relative;
}

.password-eye {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-45%);
}

.password-eye-off-img {
    display: none;
}

.bg-green {
    background-color: var(--color-light-green);
}

.popup {
    display: none;
    width: 90%;
    text-align: center;
    background-color: white;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 120px 40px 40px;
    border-radius: 16px;
    box-shadow: 0 0 0 10000px rgba(0, 0, 0, 0.39);
}

.remove-dish-popup__message {
    margin: 0 0 60px;
    font-size: 1.3rem;
}



/* STRIPE */

.stripe-payment {
    padding: 40px 0;
}

.stripe-payment h1 {
    color: black;
    margin-bottom: 30px;
}

.stripe-payment .btn--block {
    margin-top: 30px;
}


@media all and (max-width: 400px) {
    * {
        font-size: 1rem;
    }

    footer {
        padding: 12px;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .menu-section {
        padding-top: 40px;
    }

    .menu-section__title {
        margin-bottom: 20px;
    }

    .go-to-orders-popup {
        padding: 15px;
        bottom: 95px;
    }

    .card-dish {
        padding: 15px;
    }

    .card-dish__price {
        font-size: 1.125rem;
    }

    .add-to-order-popup {
        padding: 25px 25px 0;
    }

    .close-button {
        right: 16px;
        top: 23px;
    }

    .add-to-order__title {
        font-size: 1.4rem;
        margin-bottom: 20px;
    }

    .add-to-order__dish-description {
        font-size: 1rem;
    }

    .add-to-order__dish-price {
        font-size: 1.125rem;
    }

    .add-to-order__ingredient-label span {
        font-size: 1rem;
    }

    .add-to-order__ingredient {
        margin-bottom: 15px;
    }

    .add-to-order__warning {
        margin-top: 28px;
        font-size: 1rem;
    }

    .checkmark {
        width: 20px;
        height: 20px;
    }

    input:checked ~ .checkmark:after {
        margin-left: 3px;
        margin-top: 1px;
        scale: 112%;
    }

    .add-to-order__add-btn span {
        font-size: 1.2rem;
    }
}

/* reCAPTCHA */
.grecaptcha-badge {
    visibility: hidden;
}

/* ADMIN */
/** Admin Dashboard **/
.card-title{
    text-transform: uppercase;
    font-weight: bold;
    padding-bottom: 10px;
}
.cloop-dashboard-container{
    color: #333;
    background-color: #f5f5f5;
    display: flex;
    align-items: flex-start;
    justify-content: stretch;
    border-top: solid 2px #EBEBEB;
}
.cloop-dashboard-col-left{
    width: 300px;
    min-width: 300px;
    height: calc(100vh - 2px);
    background-color: white;
    border-right: solid 2px #EBEBEB;
    padding: 30px;
    box-sizing: border-box;
}
.cloop-dashboard-logo{
    max-height: 85px;
    max-width: 250px;
}
.cloop-dashboard-menu__title-item{
    margin-top: 50px;
    padding-left: 15px;
    text-transform: uppercase;
    font-weight: bold;
    font-size: 0.8rem;
    opacity: 0.3;
    letter-spacing: 3px;
}
.cloop-dashboard-menu__item{
    transition: background-color .2s ease-in-out;
    display: block;
    margin-top: 10px;
    text-decoration: none;
    color: inherit;
    padding: 10px;
    padding-left: 15px;
    border-radius: 4px;
}
.cloop-dashboard-menu__item:hover{
    background-color: rgba(240, 240, 240, 0.4);
}
.cloop-dashboard-menu__item.selected{
    background-color: #F0F0F0;
}
.cloop-dashboard-col-right{
    width: 100%;
    height: calc(100vh - 2px);
    overflow-y: scroll;
    padding: 50px 100px;
    box-sizing: border-box;
}
.cloop-dashboard-col-right > div:first-child{
    padding-bottom: 30px;
}
.cloop-dashboard-title{
    font-size: 2.4rem;
    font-weight: bold;
}
.cloop-dashboard-data-id{
    font-size: 1.5rem;
}
.admin-area--top-panel{
    justify-content: space-between;
    padding-top: 40px;
    padding-bottom: 40px;
}
.admin-area--card{
    padding: 30px;
    background-color: white;
    border: 1px solid #EBEBEB;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: calc((100% / 4) - 20px);
    justify-content: center;
    border-radius: 5px;
}
.admin-area--card span:first-child{
    font-size: 2.2rem;
    font-weight: bold;padding-bottom: 10px;
}
.admin-area--card-alert{
    padding: 20px;
    background-color: #822E31;
    color: white;
    border-radius: 5px;
    display: flex;
    justify-content: space-between;
    font-size: 1rem;
    align-items: center;
    margin-bottom: 40px;
}
.admin-area--chart-container div{
    padding-bottom: 50px;
}
/* Data table set */
.cloop-table-wrapper{
    background-color: white;
    border-radius: 4px;
    padding: 30px;
    border: solid 2px #EBEBEB;
}
.dataTable-text-bold{
    font-weight: bold;
}
.table-btn{
    color: white;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.8rem;
    padding: 5px;
    padding-left: 10px;
    padding-right: 10px;
    background-color: #333;
    border-radius: 4px;
    transition: .2s ease-in-out;
}
.table-btn:hover{
    cursor: pointer;
    transition: .2s ease-in-out;
    background-color: #444;
}

/* Brand/New */
.table-btn.new{
    width: 220px;
    text-align: center;
    margin-left: auto;
    margin-bottom: 30px;
    padding: 10px 0px;
    font-size: 1.2rem;
}

/* Brand details */
.brand-detail-form{
    padding-top: 50px;
}
.brand-detail-form button{
    margin-left: auto;
}
.brand-detail-container label{
    font-weight: bold;
    padding-bottom: 5px;
}
.brand-detail-container h3{
    font-size: 1.3rem;
    font-weight: bold;
    padding-bottom: 10px;
}
.brand-name input{
    border: none;
    outline: none;
    font-size: 1.2rem;
    width: 250px;
    background-color: #ececec;
    padding: 10px;
}
.brand-image-input{
    position: relative;
}
.brand-image label{
    font-weight: normal;
}
.brand-image--box{
    width: 130px;
    height: 130px;
    border-radius: 50%;
    background-color: #FFFFFF;
    margin: auto;
    display: block;
    border: 1px solid #cecece;
    overflow: hidden;
}
.brand-image--box.no-img{
    background-color: #ececec;
}
.brand-image--box img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.brand-image-input label{
    padding-right: 30px;
    padding-bottom: 0;
}
.uploaded-file-name{
    position: absolute;
    top: 150%;
    right: 0%;
    transform: translate(-50%, -50%);
    font-size: 0.8rem;
    color: #00CE99;
    width: 500px;
    height: 30px;
    overflow: hidden;
}

/* User details */
.card-user--data{
    padding-left: 30px;
}
.card-user--data span:first-child{
    font-weight: bold;
    padding-bottom: 5px;
}
/* Products details */
.product-detail-top{
    padding-bottom: 80px;
}
.product-detail-top .col-left,
.product-detail-top .col-right{
    padding: 20px;
}
.product-detail-top .col-left div{
    width: 450px;
    height:500px;
    background-color: #eeeeee;
    border-radius: 10px;
    margin: auto;
}
.product-detail-top .col-right div{
    padding: 5px 0;
}
.product-detail-top .col-right div:first-child{
    font-size: 1.20rem;
    font-weight: bold;
}
.product-detail-top .col-right h2{
    font-size: 2rem;
    font-weight: bold;
    padding: 5px 0 15px 0;
}
.product-detail-bottom{
    padding-top: 80px;
    border-top: 2px solid #eeeeee;
}
.product-detail-bottom .col-left h3,
.product-detail-bottom .col-right h3{
    font-size: 1.2rem;
    font-weight: bold;
    padding: 5px 0 15px 0;
}
.product-information-container{
    padding-right: 50px;
}
.product-information-container div{
    border-bottom: 1px solid #eeeeee;
    padding: 10px 0 5px 0;
}
.product-information-container div span:first-child{
    font-weight: bold;
}
.product-detail-bottom .col-right div{
    padding-bottom: 20px;
}
.product-info .col-right .top{
    padding-bottom: 30px;
}
.container-product-image{
    position: relative;
}
.card--image.product-image{
    border-radius: 5px;
    margin-right: 20px;
}
.card--image.product-image.no-margin{
    margin-right: 0;
}
.card--image.product-image img{
    border-radius: 5px;
}
.container-product-image .btn.btn-danger{
    position: absolute;
    bottom: 10px;
    right: 30px;
    width: 50px;
    height: 20px;
    font-size: .60rem;
}
.data-card.return-request div .btn.btn-success{
    margin-right: 10px;
}

/* Return request details */
.card--image.product-image.return-request{
    margin-top: 15px;
    width: 75px;
    height: 75px;
}
.image{
    cursor: pointer;
}
.enlarged{
    max-width: 100%;
    max-height: 100%;
    transition: all 0.3s;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    z-index: 1000;
}
#enlarged-image-container {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 999;
}

/* Cloop check details */
.btn-check-container .btn-success{
    margin-right: 25px;
}

/* Order details */
.order-point{
    width: 8px;
    height: 8px;
    background-color: #717171;
    border-radius: 50%;
    margin-right: 15px;
    margin-left: 10px;
}

.burger-menu-btn {
    display: none;
}

.burger-menu-img .invisible {
    display: none;
}

/* Privacy policy */
.privacy-policy, .eula {
    padding-top: 200px;
}

.privacy-policy h1, .eula h1 {
    color: black;
    margin-bottom: 50px;
}

.privacy-policy h2, .eula h2 {
    color: black;
    margin: 40px 0 15px;
    font-size: 1.6rem;
}

.eula h2 {
    text-align: center;
    line-height: 2.4rem;
}

.eula ul {
    margin-top: 20px;
    margin-left: 30px;
}

.eula li {
    margin-top: 10px;
}

.eula li b {
    margin-top: 10px;
}

.yumgo-data {
    margin-top: 50px;
}

@media all and (max-width: 900px) {
    header {
        padding: 40px 20px;
    }

    .wa-link {
        height: 70px;
        width: 70px;
        padding: 12px;
    }

    .burger-menu-btn {
        display: inline-block;
    }

    .header-nav__links {
        display: none;
        position: fixed;
        height: 100vh;
        width: 100vw;
        background-color: black;
        left: 0;
        top: 125px;
        text-align: center;
        padding-top: 70px;
    }

    .header-nav__link {
        display: block;
        margin-bottom: 50px;
        font-size: 2.2rem;
        text-transform: capitalize;
    }

    .home-hero .landing-container {
        display: block;
    }

    .home-hero {
        padding-top: 130px;
    }

    .home-hero__left {
        margin-top: 0;
    }

    .home-hero__title {
        line-height: 3.6rem;
    }

    .home-hero__subtitle {
        margin-bottom: 35px;
    }

    .home-hero__right {
        position: unset;
        max-width: 100%;
        height: unset;
        margin-top: 60px;
    }

    .home-hero__right video {
        height: 400px;
        display: block;
    }

    .hero-datas {
        position: unset;
        margin-top: 60px;
        width: 100%;
    }

    .hero-data {
        padding: 15px;
    }

    .hero-data__1 {
        max-width: 150px;
    }

    .hero-data__2 {
        flex-grow: 1;
        padding-right: 15px;
        max-width: 400px;
    }

    .hero-cta__btn.btn {
        font-size: 1.25rem;
    }

    .how__feature--two, .how__feature--three, .how__feature--four {
        margin-top: 50px;
    }

    .how__box {
        padding: 35px 25px;
        width: unset;
    }

    .how__feature img {
        width: 230px;
    }

    .how__box-1, .how__box-3 {
        left: 80px;
    }

    .how__box-2, .how__box-4 {
        right: 80px;
    }

    .prices-flex {
        display: block;
        margin-bottom: 60px;
    }

    .prices-flex__left {
        margin-bottom: 50px;
    }

    .prices__features {
        position: relative;
        display: inline-block;
        padding-left: 1em;
        left: 55%;
        transform: translateX(-50%);
    }

    .prices-stats-wrapper {
        position: unset;
        padding-bottom: 0;
    }

    .price-stats {
        display: block;
        position: unset;
        transform: unset;
    }

    .price-stat {
        margin-bottom: 40px;
    }

    .price-stat__rate {
        margin-bottom: 30px;
    }

    .prices-flex__left, .prices-flex__right {
        max-width: 100%;
        padding: 30px;
    }

    .prices__subtitle {
        margin-bottom: 40px;
    }

    .faq {
        padding: 60px 0 40px;
    }

    .faq .landing-section-title {
        margin-bottom: 30px;
    }

    .download {
        padding: 60px 0;
    }

    .download__header {
        margin-bottom: 50px;
    }

    .download__header .landing-section-title {
        margin-bottom: 30px;
    }

    .download__buttons {
        display: block;
    }

    .download-button__wrapper {
        text-align: center;
    }

    .download-button__wrapper:first-of-type {
        margin-bottom: 30px;
    }

    .contact {
        padding: 60px 0;
    }

    .contact__header {
        margin-bottom: 0;
    }

    .landing-footer__nav {
        flex-direction: column;
        align-items: flex-start;
    }

    .landing-footer__link {
        margin-bottom: 20px;
    }
}


@media all and (max-width: 512px) {
    .wa-link {
        height: 60px;
        width: 60px;
        bottom: 12px;
        right: 12px;
    }

    .home-hero__title-1, .home-hero__title-2 {
        font-size: 2.375rem;
    }

    .hero-data__title {
        font-size: 1.25rem;
        margin-bottom: 20px;
    }

    .hero-data__subtitle {
        font-size: 0.9rem;
    }

    .landing-section-title {
        font-size: 2.375rem;
        margin-bottom: 60px;
    }

    .how {
        padding: 60px 0;
    }

    .prices {
        padding: 60px 0;
    }

    .faq__header {
        margin-bottom: 60px;
    }

    .faq__header p {
        max-width: 240px;
        margin: 0 auto;
    }

    .faq__text {
        font-size: 1rem;
        text-align: left;
        max-width: 90%;
    }

    .prices-flex__left {
        width: 100%;
    }
}

.hero-flex {
    position: absolute;
    top: 18vh;
    width: 100%;
    display: flex;
    justify-content: space-between;
}

#gt_float_wrapper {
    position: absolute !important;
    top: 15px !important;
    right: 15px !important;
}

.gt_float_switcher img {
    width: 13px !important;
}

.nturl, span.gt-lang-code {
    font-size: 0.6rem !important;
}

.gt_float_switcher .gt-selected .gt-current-lang {
    padding: 0 6px !important;
}

.gt_float_switcher .gt-selected .gt-current-lang span.gt-lang-code {
    top: unset !important;
}

.gt_float_switcher .gt-selected .gt-current-lang span.gt_float_switcher-arrow {
    height: 9px !important;
    width: 9px !important;
    background-size: 7px !important;
}
