@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap');

:root {
    --primary-color: #F9592A;
    --secondary-color: #EF8911;
    --background-color: #FFFFFF;
    --text-color: #000000;
    --font-family: "Lato", sans-serif;
    --font-style: normal;
    --font-size-base: 16px;
    --line-height-base: 1.6;

    --dark-background-color: #1B1B1D;
    --dark-text-color: #FFFFFF;

    --gray-shade10: #C6C8CF;
    --gray-shade50: #868686;

    --desktop-padding: 76px;
    --tablet-padding: 32px;
    --mobile-padding: 16px;
}

* {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}

/* Box-sizing */
*,
*::before,
*::after {
    box-sizing: border-box;
}


img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Default (Light Mode) Styles */
body {
    background-color: var(--background-color);
    color: var(--text-color);
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    font-style: var(--font-style);
    line-height: var(--line-height-base);
    transition: background-color 0.3s, color 0.3s;
    overflow-x: hidden;
}

/* Scrollbar styles */
body::-webkit-scrollbar {
    width: 12px;
}

body::-webkit-scrollbar-track {
    background: rgba(224, 224, 224, 0.5);
    border-radius: 0px;
}

body::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 10px;
    cursor: pointer;
}

body::-webkit-scrollbar-thumb:hover {
    background: #555;
}


a {
    color: var(--primary-color);
    text-decoration: none;
}

a:hover {
    color: darken(var(--primary-color), 50%);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.5rem 1rem;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    color: var(--text-color);
    background-color: var(--primary-color);
    border: 1px solid transparent;
    border-radius: 0.25rem;
    cursor: pointer;
}

.btn:hover {
    background-color: darken(var(--primary-color), 10%);
}

/* Forms */
input,
textarea,
select {
    display: block;
    width: 100%;
    padding: 0.5rem;
    margin-bottom: 1rem;
    border: 1px solid #ccc;
    border-radius: 0.25rem;
    font-size: 1rem;
}

input:focus,
textarea:focus,
select:focus {
    border-color: var(--primary-color);
    outline: none;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    margin-bottom: 1rem;
    font-weight: 600;
    line-height: 1.2;
}

p {
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.75rem;
}

h4 {
    font-size: 1.5rem;
}

h5 {
    font-size: 1.25rem;
}

h6 {
    font-size: 1rem;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block;
}

/* Dark Mode Styles */
body.dark-mode {
    background-color: var(--dark-background-color);
    color: var(--dark-text-color);
}

/* Nav */

nav.navbar {
    height: 58px;
    z-index: 4;
    position: absolute;
    width: 100%;
    background: #FFF;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.dark-mode nav.navbar {
    background-color: #000000;
}

nav.navbar .mobile-nav {
    display: flex;
    justify-content: space-between;
    padding-inline: 16px;
}

nav.navbar .mobile-nav .mobile-nav-left {
    display: flex;
    align-items: center;
    gap: 16px;
}

nav.navbar .mobile-nav .mobile-nav-right {
    display: flex;
    align-items: center;
    gap: 16px;
}

nav.navbar .mobile-nav .mobile-nav-left .menu-bars {
    font-size: 20px;
    cursor: pointer;
}

nav.navbar .mobile-nav .mobile-nav-left .logo-container {
    width: 69px;
    height: 58px;
}

nav.navbar .mobile-nav .mobile-nav-left .logo {
    display: none;
}

nav.navbar .mobile-nav .mobile-nav-right .theme-toggler {
    font-size: 20px;
    display: none;
    transition: display 0.3s ease-in-out;
    cursor: pointer;
    width: 32px;
    height: 32px;
    align-items: center;
    justify-content: center;
}

nav.navbar .mobile-nav .mobile-nav-right .user-auth-icon {
    font-size: 20px;
    border: 1px solid #000000;
    border-radius: 5px;
    height: 30px;
    width: 35px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.dark-mode .navbar .mobile-nav .mobile-nav-right .user-auth-icon {
    border-color: #FFFFFF;
}

nav.navbar .mobile-nav .mobile-nav-right .cart-holder {
    border: 1px solid #000000;
    border-radius: 5px;
    height: 30px;
    width: 35px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    cursor: pointer;
}

.dark-mode .navbar .mobile-nav .mobile-nav-right .cart-holder {
    border-color: #FFFFFF;
}

nav.navbar .mobile-nav .mobile-nav-right .cart-holder .cart-items-count {
    width: 20px;
    height: 20px;
    background-color: var(--primary-color);
    color: #FFFFFF;
    font-size: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    position: absolute;
    top: -7px;
    right: -7px;
    visibility: hidden;
    transition: visibility .5s ease-in-out;
}

nav.navbar .mobile-nav .mobile-nav-right .cart-holder .cart-items-count.has-items {
    visibility: visible;
}

nav.navbar .mobile-nav .mobile-nav-right .cart-holder .shopping-cart-icon {
    font-size: 20px;
}

nav.navbar .mobile-nav .mobile-nav-right .profile-img {
    width: 40px;
    min-width: 40px;
    height: 40px;
    min-height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

/* minor-desktop-nav */
.minor-desktop-nav {
    height: 56px;
    background: #F8FAFF;
    display: none;
    justify-content: space-between;
    align-items: center;
    padding-inline: 32px;
}

.minor-desktop-nav .minor-desktop-nav-left {
    display: flex;
    gap: 16px;
}

.minor-desktop-nav .minor-desktop-nav-left i {
    color: #000000;
    font-size: 20px;
}

.minor-desktop-nav .minor-desktop-nav-right {
    display: flex;
    gap: 16px;
}

.minor-desktop-nav .minor-desktop-nav-right .theme-toggler {
    font-size: 20px;
    cursor: pointer;
    transition: opacity 0.3s ease-in-out;
    display: flex;
    width: 25px;
    height: 25px;
    align-items: center;
    justify-content: center;
}

.minor-desktop-nav .minor-desktop-nav-right .theme-toggler:hover {
    opacity: 0.7;
}

.currencies-container {
    position: relative;
}

/* .currencies-container:hover .currencies-dropdown {
    display: block;
} */

.currencies-container .currencies-selector {
    display: flex;
    gap: 16px;
    cursor: pointer;
}

.currencies-container .currencies-dropdown {
    list-style: none;
    display: none;
    position: absolute;
    background: #FFFFFF;
    border: 1px solid var(--gray-shade10);
    min-width: 70px;
    border-radius: 5px;
    right: 0;
    top: 25px;
    box-shadow: 0 0 4px var(--gray-shade10);
    max-height: 200px;
    overflow-y: auto;
    z-index: 2;
}

.currencies-container .currencies-dropdown::-webkit-scrollbar {
    display: none;
}

.currencies-container .currencies-dropdown li {
    padding: 4px 8px;
    cursor: pointer;
}

.currencies-container .currencies-dropdown li.current {
    background: rgba(0, 0, 0, 0.1);
}

.currencies-container .currencies-dropdown li:hover {
    background: rgba(0, 0, 0, 0.1);
}

.minor-desktop-nav .minor-desktop-nav-right .languages-container {
    position: relative;
}

.minor-desktop-nav .minor-desktop-nav-right .languages-container:hover .languages-dropdown {
    display: block;
}

.minor-desktop-nav .minor-desktop-nav-right .languages-container .languages-selector {
    display: flex;
    gap: 16px;
    cursor: pointer;
}

.minor-desktop-nav .minor-desktop-nav-right .languages-container .languages-dropdown {
    list-style: none;
    display: none;
    position: absolute;
    background: #FFFFFF;
    border: 1px solid var(--gray-shade10);
    min-width: 100px;
    border-radius: 5px;
    right: 0;
    top: 25px;
    box-shadow: 0 0 5px var(--gray-shade10);
    z-index: 1;
}

.minor-desktop-nav .minor-desktop-nav-right .languages-container .languages-dropdown li {
    padding: 4px 8px;
    cursor: pointer;
}

.minor-desktop-nav .minor-desktop-nav-right .languages-container .languages-dropdown li.current {
    background: rgba(0, 0, 0, 0.1);
}

.minor-desktop-nav .minor-desktop-nav-right .languages-container .languages-dropdown li:hover {
    background: rgba(0, 0, 0, 0.1);
}

.dark-mode .minor-desktop-nav {
    background-color: rgba(248, 250, 255, 0.2);
}

.dark-mode .minor-desktop-nav i {
    color: #FFFFFF;
}

.dark-mode .minor-desktop-nav .minor-desktop-nav-right .currencies-container ul,
.dark-mode .minor-desktop-nav .minor-desktop-nav-right .languages-container ul {
    background-color: var(--dark-background-color);
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.7);
    border: none;
}

.dark-mode .minor-desktop-nav .minor-desktop-nav-right .currencies-container ul li:hover,
.dark-mode .minor-desktop-nav .minor-desktop-nav-right .languages-container ul li:hover {
    background: rgba(0, 0, 0, 0.5);
}

.dark-mode .minor-desktop-nav .minor-desktop-nav-right .currencies-container .currencies-dropdown li.current,
.dark-mode .minor-desktop-nav .minor-desktop-nav-right .languages-container .languages-dropdown li.current {
    background: rgba(0, 0, 0, 0.5);
}


/* main-desktop-nav */
.main-desktop-nav {
    display: none;
    justify-content: space-between;
    align-items: center;
    height: 58px;
    border-bottom: 1px solid #C6C8CF;
    padding-inline: 32px;
    background: #fff;
}

.main-desktop-nav .left {
    display: flex;
    align-items: center;
    gap: 16px;
}

.main-desktop-nav .left i {
    font-size: 20px;
}

.main-desktop-nav .left .logo-container {
    width: 69px;
    height: 58px;
}

.main-desktop-nav .left .logo-container .logo {
    display: none;
}

.main-desktop-nav .left .category-all {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    height: 58px;
}

nav.navbar .main-desktop-nav .left .category-all:hover {
    color: var(--primary-color) !important;
}

.all-category-dropdown {
    width: 100%;
    background: #FFFFFF;
    border-top: 1px solid var(--primary-color);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: -100vh;
    z-index: 2;
    transition: top .5s ease-in-out;
}

.dark-mode .all-category-dropdown {
    background: var(--dark-background-color);
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
}

.all-category-dropdown ul {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    gap: 16px;
    padding: 16px;
}

.all-category-dropdown ul li a {
    display: inline-block;
    color: #000;
    border-radius: 5px;
    border: 1px solid #000;
    padding: 8px 16px;
    transition: background .5s ease-in-out;
}

.dark-mode .all-category-dropdown ul li a {
    color: #FFFF;
    border: 1px solid #FFF;
}

.all-category-dropdown ul li a:hover {
    background: black;
    color: white;
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.5);
}

.dark-mode .all-category-dropdown ul li a:hover {
    background: #FFF;
    color: #000;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.all-category-dropdown .footer {
    text-align: center;
}

.all-category-dropdown .footer:hover {
    background: rgba(0, 0, 0, 0.1);
    cursor: pointer;
    opacity: .5;
}

.main-desktop-nav .left .category-with-dropdown {
    position: relative;
    height: 58px;
    display: flex;
}

.main-desktop-nav .left .category-with-dropdown .category-header {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.main-desktop-nav .left .category-with-dropdown:hover .category-header {
    color: var(--primary-color);
    font-weight: bold;
}

.main-desktop-nav .left .category-with-dropdown:hover .category-dropdown {
    display: block;
}

.main-desktop-nav .left .category-with-dropdown .category-dropdown {
    display: none;
    list-style: none;
    position: absolute;
    top: 58px;
    left: 0;
    background: #FFFFFF;
    min-width: 200px;
    border-radius: 0 0 5px 5px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
    border-top: 1px solid var(--primary-color);
}

.dark-mode .main-desktop-nav .left .category-with-dropdown .category-dropdown {
    background: var(--dark-background-color);
    box-shadow: 0 0 7px rgba(0, 0, 0, 0.5);
}

.main-desktop-nav .left .category-with-dropdown .category-dropdown li a {
    display: block;
    padding: 8px 16px;
    color: #000000;
}

.dark-mode .main-desktop-nav .left .category-with-dropdown .category-dropdown li a {
    color: #FFFFFF;
}

.main-desktop-nav .left .category-with-dropdown .category-dropdown li a:hover {
    background-color: rgba(0, 0, 0, 0.1);
    opacity: .7;
}

.dark-mode .main-desktop-nav .left .category-with-dropdown .category-dropdown li a:hover {
    background: rgba(0, 0, 0, 0.3);
}

.main-desktop-nav .left .all-grid-icon:hover {
    color: var(--primary-color);
}

.main-desktop-nav .left .category-title {
    color: #000;
}

.dark-mode .main-desktop-nav .left .category-title {
    color: #FFF;
}

.main-desktop-nav .left .category-title:hover {
    color: var(--primary-color);
    cursor: pointer;
    font-weight: bold;
}

.main-desktop-nav .right {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}

.main-desktop-nav .right i {
    font-size: 20px;
}

.main-desktop-nav .right i:hover:hover {
    opacity: 0.7;
    color: var(--primary-color);
    cursor: pointer;
}

.main-desktop-nav .right .search {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.main-desktop-nav .right .search:hover {
    opacity: 0.7;
    color: var(--primary-color);
}

.main-desktop-nav .right .cart-holder {
    height: 30px;
    width: 35px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    cursor: pointer;
}

.main-desktop-nav .right .cart-holder .cart-items-count {
    width: 20px;
    height: 20px;
    background-color: var(--primary-color);
    color: #FFFFFF;
    font-size: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    position: absolute;
    top: -4px;
    right: -4px;
    visibility: hidden;
    transition: visibility .5s ease-in-out;
}

.main-desktop-nav .right .cart-holder .cart-items-count.has-items {
    visibility: visible;
}

.dark-mode .main-desktop-nav {
    background: #000000;
}

.main-desktop-nav .right .authed-user-menu-item {
    display: none;
    flex-direction: column;
    position: relative;
}

.main-desktop-nav .right .authed-user-menu-item .authed-user-title {
    display: flex;
    align-items: center;
    /* gap: 0px; */
}

.main-desktop-nav .right .authed-user-menu-item .authed-user-title img {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    cursor: pointer;
}

.main-desktop-nav .right .authed-user-menu-item ul {
    display: none;
    flex-direction: column;
    list-style: none;
    background: #FFF;
    border-radius: 10px;
    position: absolute;
    top: 35px;
    right: 0;
    padding-top: 4px;
    width: 150px;
    box-shadow: 0 0 4px rgba(0, 0, 0, .5);
    ;
}

.dark-mode .main-desktop-nav .right .authed-user-menu-item ul {
    background: var(--dark-background-color);
    box-shadow: 0 0 4px rgba(255, 255, 255, .1);
}

.main-desktop-nav .right .authed-user-menu-item:hover ul {
    display: flex;
}

.main-desktop-nav .right .authed-user-menu-item ul li a {
    color: #000;
    padding: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--gray-shade50);
}

.main-desktop-nav .right .authed-user-menu-item ul li:last-child {
    border-top: 1px solid rgba(0, 0, 0, 0.2);
}

.dark-mode .main-desktop-nav .right .authed-user-menu-item ul li:last-child {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.main-desktop-nav .right .authed-user-menu-item ul li a img {
    width: 20px;
    height: 20px;
    filter: grayscale(100);
}

.main-desktop-nav .right .authed-user-menu-item ul li a:hover {
    background: rgba(0, 0, 0, 0.1);
    font-weight: bold;
}

.dark-mode .main-desktop-nav .right .authed-user-menu-item ul li a:hover {
    background: rgba(255, 255, 255, 0.1);
    font-weight: bold;
}

.dark-mode .main-desktop-nav .right .authed-user-menu-item ul li a {
    color: #FFF;
}

/* float search */
.search-overlay-wrapper-container {
    position: fixed;
    width: 100%;
    top: -100vh;
    bottom: 0;
    padding: 16px;
    z-index: 6;
    width: 100%;
    transition: top .5s ease-in-out;
    height: 100vh;
    cursor: pointer;
}

section.search-float-wrapper {
    max-width: 500px;
    margin: 0 auto;
}

section.search-float-wrapper .searchbar-float {
    position: relative;
}

section.search-float-wrapper .searchbar-float i {
    font-size: 20px;
    color: #000000;
}

section.search-float-wrapper .searchbar-float i.left-icon {
    position: absolute;
    top: 13px;
    left: 13px;
}

.dark-mode section.search-float-wrapper .searchbar-float i.left-icon {
    color: #FFFFFF;
}

section.search-float-wrapper .searchbar-float input {
    width: 100%;
    border-radius: 10px;
    height: 56px;
    padding-left: 40px;
    margin-bottom: 0;
}

.dark-mode section.search-float-wrapper .searchbar-float input {
    background: var(--dark-background-color);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #FFFFFF;
}

section.search-float-wrapper .searchbar-float input:focus {
    border-color: var(--gray-shade10);
}

section.search-float-wrapper .searchbar-float i.right-icon {
    position: absolute;
    top: 15px;
    right: 13px;
    cursor: pointer;
}

.dark-mode section.search-float-wrapper .searchbar-float i.right-icon {
    color: #FFFFFF;
}

/* search results */
section.search-float-wrapper .searchbar-float-results {
    background: #FFFFFF;
    border-radius: 10px;
    padding: 16px 0;
    overflow-y: auto;
    max-height: 75vh;
    margin-top: 16px;
}

.dark-mode section.search-float-wrapper .searchbar-float-results {
    background-color: var(--dark-background-color);
}

section.search-float-wrapper .searchbar-float-results::-webkit-scrollbar {
    display: none;
}

section.search-float-wrapper .searchbar-float-results .searchbar-float-loader {
    margin: 0 auto;
}

section.search-float-wrapper .searchbar-float-results .category {
    border-bottom: 1px solid var(--gray-shade10);
    padding: 16px;
}

.dark-mode section.search-float-wrapper .searchbar-float-results .category {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

section.search-float-wrapper .searchbar-float-results .category .title {
    color: #848484;
    margin-bottom: 16px;
}

section.search-float-wrapper .searchbar-float-results .category .category-list {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

section.search-float-wrapper .searchbar-float-results .category .category-list .category-item {
    border: 1px solid #000000;
    padding: 8px 16px;
    border-radius: 8px;
    color: #000000;
    display: inline-block;
}

.dark-mode section.search-float-wrapper .searchbar-float-results .category .category-list .category-item {
    border: 1px solid #FFFFFF;
    color: #FFFFFF;
}

section.search-float-wrapper .searchbar-float-results .category .category-list .category-item:hover {
    color: #FFFFFF;
    background-color: #000000;
}

.dark-mode section.search-float-wrapper .searchbar-float-results .category .category-list .category-item:hover {
    color: #000000;
    background-color: #FFFFFF;
}

section.search-float-wrapper .searchbar-float-results .products {
    border-bottom: 1px solid var(--gray-shade10);
    padding: 16px;
}

.dark-mode section.search-float-wrapper .searchbar-float-results .products {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

section.search-float-wrapper .searchbar-float-results .products .title {
    color: #848484;
    margin-bottom: 16px;
    font-weight: bold;
}

section.search-float-wrapper .searchbar-float-results .products .product-list-item {
    display: flex;
    align-items: start;
    gap: 8px;
    border-radius: 4px;
    padding: 8px;
    cursor: pointer;
    color: #000000;
}

.dark-mode section.search-float-wrapper .searchbar-float-results .products .product-list-item {
    color: #FFFFFF;
}

section.search-float-wrapper .searchbar-float-results .products .product-list-item:hover {
    background: rgba(0, 0, 0, 0.1);
}

.dark-mode section.search-float-wrapper .searchbar-float-results .products .product-list-item:hover {
    background: rgba(255, 255, 255, 0.1);
}

section.search-float-wrapper .searchbar-float-results .products .product-list-item .image-container {
    width: 56px;
    height: 56px;
    min-width: 56px;
    min-height: 56px;
    border-radius: 5px;
}

section.search-float-wrapper .searchbar-float-results .products .product-list-item .image-container img {
    width: 100%;
    height: 100%;
    border-radius: 5px;
}

section.search-float-wrapper .searchbar-float-results .products .product-list-item .product-item-body .title {
    margin-bottom: 0;
    color: #000000;
}

.dark-mode section.search-float-wrapper .searchbar-float-results .products .product-list-item .product-item-body .title {
    color: #FFFFFF;
}

section.search-float-wrapper .searchbar-float-results .footer {
    padding: 16px;
    cursor: pointer;
    display: block;
    color: #000000;
}

.dark-mode section.search-float-wrapper .searchbar-float-results .footer {
    color: #FFFFFF;
}

section.search-float-wrapper .searchbar-float-results .footer:hover {
    background: rgba(0, 0, 0, 0.1);
}

.nothing-found {
    color: #606060;
    text-align: center;
    padding: 16px;
}

/* Auth */
.auth-container {
    position: fixed;
    z-index: 6;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    display: none;
    overflow: hidden;
    height: 100vh;
    /* cursor: pointer; */
}

.auth-login-wrapper,
.auth-signup-wrapper,
.auth-forgot-wrapper {
    width: 90%;
    max-width: 500px;
    margin: auto;
    position: relative;
    height: 100%;
    align-items: center;
    justify-content: center;
    display: flex;
    /* display: none; */
}

.auth-signup-wrapper,
.auth-forgot-wrapper {
    display: none;
}

.auth-container .auth-login-wrapper .auth-login-blur,
.auth-container .auth-signup-wrapper .auth-signup-blur,
.auth-container .auth-forgot-wrapper .auth-forgot-blur {
    position: absolute;
    top: 21vh;
    left: 0px;
    border-radius: 10px;
    /* display: none; */
}

.auth-container .auth-login-wrapper .auth-main,
.auth-container .auth-signup-wrapper .auth-main,
.auth-container .auth-forgot-wrapper .auth-main {
    position: absolute;
    width: 100%;
    border-radius: 10px;
    padding: 16px;
    background-color: rgba(255, 255, 255, 1);
    max-height: 80vh;
    overflow-y: auto;
}

.auth-container .auth-login-wrapper .auth-main::-webkit-scrollbar,
.auth-container .auth-signup-wrapper .auth-main::-webkit-scrollbar,
.auth-container .auth-forgot-wrapper .auth-main::-webkit-scrollbar {
    display: none;
}

.dark-mode .auth-container .auth-login-wrapper .auth-main,
.dark-mode .auth-container .auth-signup-wrapper .auth-main,
.dark-mode .auth-container .auth-forgot-wrapper .auth-main {
    background-color: rgba(27, 27, 29, 1);
}

.auth-container .auth-login-wrapper .header,
.auth-container .auth-signup-wrapper .header,
.auth-container .auth-forgot-wrapper .header {
    display: flex;
    align-items: center;
    gap: 16px;
    border-bottom: 1px solid #E5E5E5;
    padding: 16px 0;
}

.dark-mode .auth-container .auth-login-wrapper .header,
.dark-mode .auth-container .auth-signup-wrapper .header,
.dark-mode .auth-container .auth-forgot-wrapper .header {
    border-bottom: 1px solid rgba(229, 229, 229, 0.2);
}

.auth-container .auth-login-wrapper .header .lead-icon,
.auth-container .auth-signup-wrapper .header .lead-icon,
.auth-container .auth-forgot-wrapper .header .lead-icon {
    color: #FFFFFF;
    background-image: linear-gradient(var(--primary-color), var(--secondary-color));
    width: 37px;
    height: 37px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 2px solid #FFFFFF;
    padding: 8px;
}

.auth-container .auth-login-wrapper .header .lead-icon i,
.auth-container .auth-signup-wrapper .header .lead-icon i,
.auth-container .auth-forgot-wrapper .header .lead-icon i {
    font-size: 20px;
}

.auth-container .auth-login-wrapper .header .middle,
.auth-container .auth-signup-wrapper .header .middle,
.auth-container .auth-forgot-wrapper .header .middle {
    width: 100%;
}

.auth-container .auth-login-wrapper .header .middle .title,
.auth-container .auth-signup-wrapper .header .middle .title,
.auth-container .auth-forgot-wrapper .header .middle .title {
    font-weight: bold;
    font-size: 18px;
}

.auth-container .auth-login-wrapper .header .right-icon,
.auth-container .auth-signup-wrapper .header .right-icon,
.auth-container .auth-forgot-wrapper .header .right-icon {
    background: #FFFFFF;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25);
    cursor: pointer;
}

.dark-mode .auth-container .auth-login-wrapper .header .right-icon,
.dark-mode .auth-container .auth-signup-wrapper .header .right-icon,
.dark-mode .auth-container .auth-forgot-wrapper .header .right-icon {
    background-color: var(--dark-background-color);
}

.auth-container .auth-login-wrapper .header .right-icon:hover,
.auth-container .auth-signup-wrapper .header .right-icon:hover,
.auth-container .auth-forgot-wrapper .header .right-icon:hover {
    opacity: .7;
}

.auth-container .auth-login-wrapper .header .right-icon i,
.auth-container .auth-signin-wrapper .header .right-icon i,
.auth-container .auth-forgot-wrapper .header .right-icon i {
    font-size: 20px;
}

.auth-container .auth-login-wrapper .auth-main #login-form,
.auth-container .auth-signup-wrapper .auth-main #signup-form,
.auth-container .auth-forgot-wrapper .auth-main #forgot-form {
    padding: 16px 0;
}

.auth-container .auth-login-wrapper .auth-main #login-form .form-input-group,
.auth-container .auth-signup-wrapper .auth-main #signup-form .form-input-group,
.auth-container .auth-forgot-wrapper .auth-main #forgot-form .form-input-group {
    position: relative;
}

.auth-container .auth-login-wrapper .auth-main #login-form .form-input-group label,
.auth-container .auth-signup-wrapper .auth-main #signup-form .form-input-group label,
.auth-container .auth-forgot-wrapper .auth-main #forgot-form .form-input-group label {
    font-weight: bold;
    margin-bottom: 8px;
}

.auth-container .auth-login-wrapper .auth-main #login-form .form-input-group input,
.auth-container .auth-signup-wrapper .auth-main #signup-form .form-input-group input,
.auth-container .auth-forgot-wrapper .auth-main #forgot-form .form-input-group input {
    border-radius: 6px;
    border: 2px solid #000;
    background-color: transparent;
    box-shadow: 0 1px 10px rgba(0, 0, 0, 0.25);
}

.dark-mode .auth-container .auth-login-wrapper .auth-main #login-form .form-input-group input,
.dark-mode .auth-container .auth-signup-wrapper .auth-main #signup-form .form-input-group input,
.dark-mode .auth-container .auth-forgot-wrapper .auth-main #forgot-form .form-input-group input {
    border: 2px solid rgba(255, 255, 255, 0.9);
    color: #FFF;
    /* box-shadow: 0 1px 10px rgba(255, 255, 255, 0.25); */
}

.auth-container .auth-login-wrapper .auth-main #login-form .form-input-group input:focus,
.auth-container .auth-signup-wrapper .auth-main #signup-form .form-input-group input:focus,
.auth-container .auth-forgot-wrapper .auth-main #forgot-form .form-input-group input:focus {
    border: 1px solid var(--primary-color);
}

.auth-container .auth-login-wrapper .auth-main #login-form .form-input-group i.password-visibility,
.auth-container .auth-signup-wrapper .auth-main #signup-form .form-input-group i.password-visibility {
    position: absolute;
    font-size: 20px;
    color: #000;
    top: 32px;
    right: 15px;
    cursor: pointer;
}

.auth-container .auth-forgot-wrapper .auth-main #forgot-form .form-input-group .form-input-caption {
    text-align: center;
    font-size: 12px;
}

.dark-mode .auth-container .auth-login-wrapper .auth-main #login-form .form-input-group i.password-visibility,
.dark-mode .auth-container .auth-signup-wrapper .auth-main #signup-form .form-input-group i.password-visibility {
    position: absolute;
    font-size: 20px;
    color: var(--primary-color);
    top: 32px;
    right: 15px;
    cursor: pointer;
}

.auth-container .auth-login-wrapper .auth-main #login-form .rme-fp,
.auth-container .auth-signup-wrapper .auth-main #signup-form .tc-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.auth-container .auth-login-wrapper .auth-main #login-form .rme-fp .remember-me {
    display: flex;
}

.auth-container .auth-login-wrapper .auth-main #login-form .rme-fp .remember-me input {
    accent-color: #000;
    margin: 0;
}

.dark-mode .auth-container .auth-login-wrapper .auth-main #login-form .rme-fp .remember-me input {
    accent-color: var(--primary-color);
}

.auth-container .auth-login-wrapper .auth-main #login-form .rme-fp .remember-me label {
    width: 100%;
    flex: 1;
    display: inline-block;
    white-space: nowrap;
    cursor: pointer;
    margin-left: 10px;
}

.auth-container .auth-login-wrapper .auth-main #login-form .rme-fp .forgot-password {
    cursor: pointer;
}

.auth-container .auth-login-wrapper .auth-main #login-form .rme-fp .forgot-password:hover {
    opacity: .7;
}

.auth-container .auth-signup-wrapper .auth-main #signup-form .tc-container {
    justify-content: left;
    gap: 16px;
}

.auth-container .auth-signup-wrapper .auth-main #signup-form .tc-container input {
    width: 20px;
    accent-color: #000;
    margin: 0;
}

.dark-mode .auth-container .auth-signup-wrapper .auth-main #signup-form .tc-container input {
    accent-color: var(--primary-color);
}

.auth-container .auth-login-wrapper .auth-main #login-form button,
.auth-container .auth-signup-wrapper .auth-main #signup-form button,
.auth-container .auth-forgot-wrapper .auth-main #forgot-form button {
    background-image: linear-gradient(var(--primary-color), var(--secondary-color));
    width: 100%;
    border-radius: 10px;
    padding: 8px 16px;
    color: #FFFFFF;
    margin-top: 32px;
    cursor: pointer;
}

.auth-container .auth-login-wrapper .auth-main #login-form button:hover,
.auth-container .auth-signup-wrapper .auth-main #signup-form button:hover,
.auth-container .auth-forgot-wrapper .auth-main #forgot-form button:hover {
    opacity: .8;
    background: var(--primary-color);
}

.auth-container .auth-login-wrapper .auth-main #login-form button:disabled,
.auth-container .auth-signup-wrapper .auth-main #signup-form button:disabled,
.auth-container .auth-forgot-wrapper .auth-main #forgot-form button:disabled {
    background: rgba(249, 89, 42, 0.2);
    cursor: not-allowed;
}

.auth-container .auth-login-wrapper .auth-main #login-form button:disabled .btn-title,
.auth-container .auth-signup-wrapper .auth-main #signup-form button:disabled .btn-title,
.auth-container .auth-forgot-wrapper .auth-main #forgot-form button:disabled .btn-title {
    display: none;
}

.auth-container .auth-login-wrapper .auth-main #login-form button:disabled #loading,
.auth-container .auth-signup-wrapper .auth-main #signup-form button:disabled #loading,
.auth-container .auth-forgot-wrapper .auth-main #forgot-form button:disabled #loading {
    display: inline-block;
}

.auth-container .auth-login-wrapper .auth-main hr,
.auth-container .auth-signup-wrapper .auth-main hr,
.auth-container .auth-forgot-wrapper .auth-main hr {
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    margin-block: 16px;
}

.auth-container .auth-login-wrapper .auth-main .footer,
.auth-container .auth-signup-wrapper .auth-main .footer,
.auth-container .auth-forgot-wrapper .auth-main .footer {
    text-align: center;
}

.auth-container .auth-login-wrapper .auth-main .footer .create-an-account,
.auth-container .auth-signup-wrapper .auth-main .footer .sign-in,
.auth-container .auth-forgot-wrapper .auth-main .footer .sign-in {
    cursor: pointer;
}



/* popup */
.popup {
    position: absolute;
    width: 90%;
    max-width: 500px;
    min-height: 100px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.25);
    z-index: 6;
    background: #FFFFFF;
    margin-left: auto;
    margin-right: auto;
    left: 0;
    right: 0;
    /* transform: translateY(-50%); */
    top: 10%;
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 16px 0;
    /* display: none; */
    transform: scale(0);
    transition: transform 0.3s ease-in-out;
    max-height: 60vh;
    overflow-y: auto;
}

.dark-mode .popup {
    background: var(--dark-background-color);
    box-shadow: 0 0 4px rgba(255, 255, 255, 0.1);
}

.popup::-webkit-scrollbar {
    display: none;
}

.popup .close-popup-container {
    text-align: right;
    width: 100%;
    padding: 0 16px;
}

.popup .close-popup-container .close-popup {
    font-size: 20px;
    cursor: pointer;
}

.popup .popup-body {
    width: 100%;
    padding: 0 16px;
}

.register-success {
    text-align: center;
    padding: 16px;
    /* display: none; */
}

.register-success .register-success-image {
    width: 100px;
    height: 100px;
    margin: 0 auto;
    margin-bottom: 16px;
}

.register-success .register-success-title {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 16px;
}

.register-success .register-success-caption {
    width: 80%;
    margin: 0 auto;
    text-align: center;
}

/* MAIN PAGE CONTENT */
#main-page-content {
    padding-top: 58px;
    padding-bottom: 80px;
}

/* BOTTOM NAV */
.bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 4;
    background: #FFF;
    padding: 8px 0;
    border-top: 1px solid rgba(0, 0, 0, 0.3);
    height: 80px;
    box-shadow: 0 0 4px rgba(0, 0, 0, 0.25);
}

.dark-mode .bottom-nav {
    background: #000;
}

.bottom-nav ul {
    display: flex;
    align-items: center;
    list-style: none;
}

.bottom-nav ul li {
    flex: 1;
    text-align: center;
}

.bottom-nav ul li.active {
    color: var(--primary-color);
    font-weight: bold;
}

.bottom-nav ul li a {
    font-weight: bolder;
}

.bottom-nav ul li i {
    display: block;
    font-size: 20px;
}

/* TRANSLATOR DESKTOP */
nav.navbar .minor-desktop-nav .minor-desktop-nav-right .gtranslate_wrapper .gt_switcher {
    width: fit-content;
}

/* nav.navbar .minor-desktop-nav .minor-desktop-nav-right .gtranslate_wrapper .gt_switcher {
    position: relative;
} */

nav.navbar .minor-desktop-nav .minor-desktop-nav-right .gtranslate_wrapper .gt_selected {
    background: transparent;
}

nav.navbar .minor-desktop-nav .minor-desktop-nav-right .gtranslate_wrapper .gt_selected a {
    color: #000;
    font-size: 14px;
    border: none;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0;
    width: 100%;
}

.dark-mode nav.navbar .minor-desktop-nav .minor-desktop-nav-right .gtranslate_wrapper .gt_selected a {
    color: #FFF;
}

nav.navbar .minor-desktop-nav .minor-desktop-nav-right .gtranslate_wrapper .gt_selected a:hover {
    background: transparent;
    opacity: .5;
}

nav.navbar .minor-desktop-nav .minor-desktop-nav-right .gtranslate_wrapper .gt_selected a img {
    width: 20px;
    height: 20px;
}

nav.navbar .minor-desktop-nav .minor-desktop-nav-right .gtranslate_wrapper .gt_selected a:after {
    position: relative;
    margin-left: 20px;
    color: #FFF;
    display: inline-block;
}

nav.navbar .minor-desktop-nav .minor-desktop-nav-right .gtranslate_wrapper .gt_option {
    position: absolute;
    border-radius: 5px;
    right: 32px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    background: #FFF;
    border: none;
}

.dark-mode nav.navbar .minor-desktop-nav .minor-desktop-nav-right .gtranslate_wrapper .gt_option {
    background: var(--dark-background-color);
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
}

.dark-mode nav.navbar .minor-desktop-nav .minor-desktop-nav-right .gtranslate_wrapper .gt_option a {
    color: #FFF;
}

nav.navbar .minor-desktop-nav .minor-desktop-nav-right .gtranslate_wrapper .gt_option a:hover {
    background: rgba(0, 0, 0, 0.1);
}

.dark-mode nav.navbar .minor-desktop-nav .minor-desktop-nav-right .gtranslate_wrapper .gt_option a:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* TRANSLATOR MOBILE */
nav.navbar .mobile-nav .mobile-nav-right .gtranslate_wrapper .gt_switcher {
    width: fit-content;
}

/* nav.navbar .mobile-nav .mobile-nav-right .gtranslate_wrapper .gt_switcher {
    position: relative;
} */

nav.navbar .mobile-nav .mobile-nav-right .gtranslate_wrapper .gt_selected {
    background: transparent;
}

nav.navbar .mobile-nav .mobile-nav-right .gtranslate_wrapper .gt_selected a {
    color: #000;
    font-size: 14px;
    border: none;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0;
    width: 100%;
}

.dark-mode nav.navbar .mobile-nav .mobile-nav-right .gtranslate_wrapper .gt_selected a {
    color: #FFF;
}

nav.navbar .mobile-nav .mobile-nav-right .gtranslate_wrapper .gt_selected a:hover {
    background: transparent;
    opacity: .5;
}

nav.navbar .mobile-nav .mobile-nav-right .gtranslate_wrapper .gt_selected a img {
    width: 30px;
    height: 30px;
}

nav.navbar .mobile-nav .mobile-nav-right .gtranslate_wrapper .gt_selected a:after {
    position: relative;
    margin-left: 20px;
    color: #FFF;
    display: inline-block;
}

nav.navbar .mobile-nav .mobile-nav-right .gtranslate_wrapper .gt_option {
    position: absolute;
    border-radius: 5px;
    right: 16px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    background: #FFF;
    border: none;
}

.dark-mode nav.navbar .mobile-nav .mobile-nav-right .gtranslate_wrapper .gt_option {
    background: var(--dark-background-color);
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
}

.dark-mode nav.navbar .mobile-nav .mobile-nav-right .gtranslate_wrapper .gt_option a {
    color: #FFF;
}

nav.navbar .mobile-nav .mobile-nav-right .gtranslate_wrapper .gt_option a:hover {
    background: rgba(0, 0, 0, 0.1);
}

.dark-mode nav.navbar .mobile-nav .mobile-nav-right .gtranslate_wrapper .gt_option a:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* TESTIMONIAL */
.testimonial {
    padding-inline: var(--mobile-padding);
    padding-block: 32px;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.testimonial .ts-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}

.testimonial .ts-header h2.left {
    font-size: 28px;
    margin: 0;
}

.testimonial .ts-header .right {
    display: flex;
    justify-content: right;
    align-items: center;
    gap: 16px;
}

.testimonial .ts-header .right i {
    width: 32px;
    height: 32px;
    font-size: 20px;
    color: var(--primary-color);
    background: #FFEBE5;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial .ts-header .right i:hover {
    opacity: .5;
}

.testimonial .ts-header .right i.active {
    background-color: var(--primary-color);
    color: #FFF;
}

.testimonial .ts-body {
    display: flex;
    /* align-items: center; */
    overflow-x: auto;
    gap: 16px;
}

.testimonial .ts-body::-webkit-scrollbar {
    display: none;
}

.testimonial .ts-body .ts-item {
    min-width: 100%;
    width: 100%;
    background: #F5F5F5;
    border-radius: 20px;
    padding: 15px;
    cursor: pointer;
    /* height: 300px; */
}

.dark-mode .testimonial .ts-body .ts-item {
    background: rgba(255, 255, 255, 0.1);
}

/* .testimonial .ts-body .ts-item .ts-image {
    width: 100%;
    height: 100%;
    border-radius: 20px;
    background-repeat: no-repeat;
    background-size: cover;
} */

/* .testimonial .ts-body .ts-item .ts-content { */
/* display: none; */
/* text-align: center; */
/* } */

/* .testimonial .ts-body .ts-item.active {
    min-width: 100%;
    width: 100%;
    background-image: url('../images/header.png');
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
    background-repeat: no-repeat;
    background-size: contain;
} */

/* .testimonial .ts-body .ts-item.active .ts-image {
    width: 100%;
    height: 200px;
} */

/* .testimonial .ts-body .ts-item.active .ts-content {
    display: flex;
    align-items: start;
    flex-direction: column;
    color: rgba(255, 255, 255, 1);
    gap: 16px;
    width: 100%;
} */

/* .testimonial .ts-body .ts-item.active .ts-content .ts-content-msg {
    border-bottom: 1px solid rgba(255, 255, 255, .7);
    padding-bottom: 16px;
    width: 100%;
} */

.testimonial .ts-body .ts-item .ts-content .ts-content-footer .name {
    margin-top: 10px;
    font-size: 12px;
}

/* UNIQUE SECTION */
section.unique-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: start;
    justify-content: space-between;
    padding-inline: var(--mobile-padding);
    padding-block: 64px;
    gap: 16px;
}

section.unique-section .us-item {
    display: flex;
    flex-direction: column;
    gap: 16px;
    justify-content: center;
    align-items: center;
}

section.unique-section .us-item i {
    background: var(--primary-color);
    font-size: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFF;
    box-shadow: -10px -10px 4px rgba(0, 0, 0, 0.2);
}

section.unique-section .us-item h3 {
    text-align: center;
    font-size: 20px;
}

/* FOOTER */
footer {
    background: #141212;
    color: #FFF;
    padding-inline: 16px;
    padding-block: 32px;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

footer .footer-nav {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

footer .footer-nav .footer-column {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

footer .footer-nav .footer-column img {
    width: 58px;
}

footer .footer-nav .footer-column .footer-company-contact {
    display: flex;
    align-items: center;
    gap: 8px;
}

footer .footer-nav .footer-column .footer-company-contact .label {
    color: #FFF;
}

footer .footer-nav .footer-column .column-title {
    margin: 0;
    font-size: 24px;
}

footer .footer-nav .footer-column .column-title2 {
    margin: 0;
    font-size: 18px;
}

footer .footer-nav .footer-column .column-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

footer .footer-nav .footer-column .column-list .column-list-item {
    color: rgba(255, 255, 255, 0.8);
}

footer .footer-nav .footer-column .column-list .column-list-item:hover {
    color: var(--primary-color);
}

footer .footer-nav .footer-column .column-list .hoo-item {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 16px;
    display: flex;
    justify-content: space-between;
}

footer .footer-nav .footer-column .column-list .hoo-item .label {
    flex: 1;
}

footer .footer-nav .footer-column .column-list .hoo-item .value {
    flex: 1;
    text-align: right;
}

footer .copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    gap: 32px;
    padding-block: 16px;
}

footer .copyright .left {
    text-align: center;
}

footer .copyright .socials {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

footer .copyright .socials a i {
    color: #FFF;
    font-size: 20px;
    width: 40px;
    height: 40px;
    background: #262626;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

footer .copyright .socials a i:hover {
    opacity: .5;
}

footer .copyright .socials a i.facebook {
    background: #3B5998;
}

footer .copyright .socials a i.whatsapp {
    background: #25D366;
}

footer .copyright .socials a i.instagram {
    color: #FA00FF;
}

/* SIDEMENU */
#sidemenu .sidemenu-list .sidemenu-list-item.unauth-only {
    display: flex;
}

#sidemenu .sidemenu-list .sidemenu-list-item.mobile-only {
    display: flex;
}


/* LOADING */
#loading {
    position: relative;
    width: 20px;
    height: 20px;
    display: none;
    /* display: inline-block; */
}

#loading span {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform: rotate(calc(36deg * var(--i)));
}

#loading span::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--primary-color);
    /* box-shadow: 0 0 10px #00ff0a; */
    animation: animate 2s linear infinite;
    animation-delay: calc(0.2s * var(--i));
}

@keyframes animate {
    0% {
        transform: scale(1);
    }

    80%,
    100% {
        transform: scale(0);
    }
}


/* Responsive Media Queries */
@media (min-width: 768px) {

    /* Styles for screens greater than 768px */
    section.unique-section {
        grid-template-columns: 1fr 1fr 1fr 1fr;
    }

    .testimonial {
        padding-inline: var(--tablet-padding);
    }

    .testimonial .ts-header h2.left {
        font-size: 32px;
    }

    .testimonial .ts-body .ts-item {
        flex-direction: row;
        min-width: 75%;
        width: 75%;
    }

    /* .testimonial .ts-body .ts-item.active .ts-image {
        width: 50%;
        min-height: 100%;
    }

    .testimonial .ts-body .ts-item.active .ts-content {
        width: 50%;
    } */

    .testimonial .ts-body .ts-item {
        min-width: 55%;
        /* height: 400px; */
    }

    .testimonial .ts-body .ts-item .ts-image {
        height: 100%;
    }
}

@media (min-width: 992px) {

    /* Styles for screens greater than 992px */
    nav.navbar .mobile-nav {
        display: none;
    }

    nav.navbar {
        height: 115px;
    }

    .minor-desktop-nav {
        display: flex;
    }

    .main-desktop-nav {
        display: flex;
    }

    #main-page-content {
        padding-top: 115px;
        padding-bottom: 0;
    }

    .bottom-nav {
        display: none;
    }

    footer {
        padding-inline: 32px;
    }

    footer .footer-nav {
        flex-direction: row;
    }

    footer .footer-nav .footer-column {
        flex: 1;
    }

    footer .copyright {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    .testimonial {
        padding-inline: var(--desktop-padding);
    }
}

@media (min-width: 1200px) {
    /* Styles for screens greater than 1200px */

}

@media (min-height: 500px) {
    .popup {
        max-height: 90vh;
        top: 22%;
    }
}