@import url(https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&);

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-color: #4e9459;
  --body-bg-color: #fff;
  --secondary-color: #444444;
  --primary-color-light: #fff;
  counter-reset: headings;
}

.modal-open {
  overflow-y: hidden;
}

a {
  text-decoration: none;
  transition: all 0.3s;
}

a:-webkit-any-link {
  color: inherit;
  text-decoration: inherit;
}

.navbar-container p {
  margin: 0;
  text-overflow: ellipsis;
}

.navbar-container a:hover {
  text-decoration: none;
  color: black;
}

.navbar-container {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 1.75em 0 1em;
  position: relative;
  top: 0;
  height: 150px;
  z-index: 2;
}

.navbar-container * {
  font-family: 'Roboto', sans-serif;
  text-transform: capitalize;
}

.navbar-container .navigation div.active a {
  color: var(--primary-color);
}

.navbar-container .navigation div.active a:hover {
  color: var(--primary-color);
}

.navbar-container .logo-container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 90%;
}

.logo-container .logo {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-container .logo a {
  text-align: center;
  cursor: pointer;
}

.logo-container .logo img {
  width: 82%;
  image-rendering: auto;
  max-width: 200px;
  min-width: 100px;
}

.logo-container .action-btn {
  position: absolute;
  right: 10%;
  display: flex;
  justify-content: end;
  align-items: center;
  gap: 1em;
  /* width: 10%; */
}

.logo-container .action-btn .login,
.logo-container .action-btn .user-profile {
  display: none;
  justify-content: center;
  align-items: center;
  gap: 0.4em;
  line-height: 1;
  cursor: pointer;
  user-select: none;
}

.logo-container .action-btn .user-profile {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--primary-color);
  color: var(--primary-color-light);
  font-size: 1.2em;
  overflow: hidden;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);

  img {
    display: none;
    width: 100%;
    height: 100%;
  }

  .icon {
    display: none;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    aspect-ratio: 1;
  }

  img[src]:not([src='']) {
    display: flex;
  }

  img[src]:not([src='']) + p,
  img[src]:not([src='']) ~ svg {
    display: none;
  }

  .username-initial[hidden] ~ .icon {
    display: flex;
  }
}

.logo-container .action-btn .login.active,
.logo-container .action-btn .user-profile.active {
  display: flex;
}

.dropdown {
  display: none;
  justify-content: center;
  align-items: center;
  gap: 0.4em;
  position: absolute;
  top: 100%;
  right: 0;
  transform: translate(0, 5px);
  font-family: 'Manrope';
  color: #666666;
  border: 1px solid #dfdfdf;
  border-radius: 15px;
  background: white;
  z-index: 10;
  max-width: 250px;
  overflow: hidden;
  padding: 1em 2em;
}

.dropdown.show {
  display: flex;
}

.dropdown-content {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: start;
  flex-direction: column;
  text-wrap: nowrap;
  gap: 1.2em;
  overflow: hidden;
  padding: 1em 0;

  .contact {
    text-overflow: ellipsis;
    overflow: hidden;
    width: 100%;
    font-size: 0.9em;
    position: static;
    color: var(--primary-color);
    font-weight: 600;
  }
}

.dropdown-content .separation {
  width: 100%;
  height: 1.5px;
  border: none;
  outline: none;
  background: linear-gradient(90deg, #ffffff 0%, #333333 51%, #ffffff 100%);
  opacity: 0.3;
}

.dropdown .dropdown-content > a,
.dropdown .dropdown-content .logout {
  font-family: 'Manrope';
  color: #666666;
  text-decoration: none;
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 0.8em;
  cursor: pointer;
  margin-top: 0.5em;
  width: 100%;

  svg {
    width: 15px;
    height: auto;
    aspect-ratio: 1;
  }
}

.dropdown .dropdown-content > a {
  position: relative;
}

.dropdown .dropdown-content > a::after {
  content: '';
  width: 0;
  height: 1.5px;
  border: none;
  outline: none;
  background: var(--primary-color);
  position: absolute;
  top: 140%;
  transition: all 0.5s ease-in-out;
}

.dropdown .dropdown-content > a:hover::after {
  width: 100%;
}

.navbar-container .navigation-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 90%;
  margin-top: 1em;
}

.navbar-container .navigation-container::before {
  content: '';
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, #fff, #c5c5c5, #fff);
  margin-bottom: 0.8em;
}

.navbar-container .navigation-container::after {
  content: '';
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, #fff, #c5c5c5, #fff);
  margin-top: 0.8em;
}

.navigation-container .navigation {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 80%;
  font-family: Roboto;
  text-transform: uppercase;
  gap: 2.5em;
}

.navigation-container .navigation div {
  font-size: 1em;
  color: #727272;
}

.wedding-card-type-dropdown,
.greeting-card-type-dropdown {
  position: absolute;
  scale: 0.1;
  padding: 1.5rem;
  gap: 1rem;
  left: 50%;
  translate: -50% 0;
  z-index: 2;
  display: flex;
  visibility: hidden;
  align-items: center;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 5px 0 5px 1px rgba(0, 0, 0, 0.1);
  transition: all 0.2s linear;
  font-family: Montserrat;
  text-transform: none;
}

#resendOtpBtn {
  padding: 10px 10px;
  color: var(--primary-color);
  border: none;
  border-radius: 50px;
  font-size: 12px;
  cursor: pointer;
  transition: background-color 0.3s;
  margin-top: 1px;
  display: block;
  width: fit-content;
  text-align: center;
}

#resendOtpBtn:disabled {
  color: grey;
  cursor: not-allowed;
}

#resendOtpBtn:not(:disabled):hover {
  color: var(--primary-color);
  text-decoration: underline;
}

.wedding-invitation-nav-btns,
.greeting-invitation-nav-btns {
  position: relative;
}

.wedding-card-type-dropdown .dropdown-section {
  width: 50%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background-color: #fff;
}

.wedding-card-type-dropdown .dropdown-section:nth-child(3),
.greeting-card-type-dropdown .dropdown-section-greeting:nth-child(3) {
  padding-left: 1rem;
  border-left: 1px solid rgba(0, 0, 0, 0.1);
}

.wedding-card-type-dropdown .dropdown-section > div a,
.greeting-card-type-dropdown .dropdown-section-greeting > div a {
  display: flex;
  gap: 0.7em;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  text-decoration: none;
}

.wedding-card-type-dropdown .dropdown-section > div a,
.greeting-card-type-dropdown .dropdown-section-greeting > div a {
  transition: all 0.2s linear;
}

.wedding-card-type-dropdown .dropdown-section div a img,
.greeting-card-type-dropdown .dropdown-section-greeting div a img {
  height: 20px;
  width: 20px;
}

.wedding-card-type-dropdown .dropdown-section div p,
.greeting-card-type-dropdown .dropdown-section-greeting div p {
  width: max-content;
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  color: rgba(13, 13, 13, 0.6);
  transition: scale 0.2s linear;
}

.wedding-card-type-dropdown .dropdown-section div a:hover,
.greeting-card-type-dropdown .dropdown-section-greeting div a:hover {
  translate: 5px 0;
  /* color: var(--primary-color); */
}

/* Drop down for Greeting cards*/

.greeting-card-type-dropdown {
  right: 0;
  translate: 20% 0;
  left: auto;
}

.greeting-card-type-dropdown .dropdown-section-greeting {
  width: 100%;
  display: flex;
  flex-direction: row;
  gap: 7rem;
  background-color: #fff;
}

.greeting-card-type-dropdown .dropdown-section-greeting div p {
  line-height: 35px;
}

.video-launch-offer-tag {
  background: url(/assets/img/navbar/launch-offer-tag.webp);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  font-weight: 500;
  color: #ffffff;
  display: block !important;
  position: absolute;
  right: -17%;
  top: 0%;
  height: -webkit-fill-available;
  width: 50px;
  transform: translateY(-28%) rotate(5deg);
}

.send-otp-btn:hover,
.confirm-otp-btn:hover,
.google-sign-in-btn:hover {
  transform: scale(1.05);
  color: white;
  background-color: var(--primary-color);
}

.content-section .back-btn:hover {
  transform: scale(1.1);
}

.navbar div.mobile-navbar {
  display: none;
  position: absolute;
  min-width: 200px;
  bottom: -3px;
  transform: translateY(100%);
  right: 5%;
  font-size: 14px;
  padding: 1rem;
  border-radius: 5px;
  border-radius: 12px;
  z-index: 100;
  background: #ffffff;
  box-shadow: 0px 40px 80px -16px rgba(0, 0, 0, 0.2);
  border-radius: 10px;
}

#dashboard {
  flex-direction: column;
  padding: 1rem;
}

.dashboard-content {
  margin: 0 !important;
}

.mobile-navbar {
  display: none;
  padding: 0.7rem 1rem;
  min-width: 265px;
  flex-direction: column;
  position: absolute;
  background: white;
  right: 0;
  top: 0;
  z-index: 2;
  translate: 0 10%;
  box-shadow: 0px 40px 80px -16px rgba(0, 0, 0, 0.2);
  border-radius: 10px;
}

/* .mobile-navbar */

.user-details {
  width: 100%;
}

.mobile-navbar .sidebar-content .user-details {
  padding-left: 0.5rem;
}

.dashboard-content,
.sidebar-content {
  width: 100%;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 6px;
  padding: 0.5rem;
}

.dashboard-content > p > span:nth-child(2),
.sidebar-content > p span {
  color: var(--primary-color);
  font-weight: 600;
}

#dashboard *:not(#logout-btn *, a *),
.mobile-navbar *:not(.sidebar-content > a, .new-tag) {
  margin: 0.4rem 0rem;
}

.sidebar-content > a {
  margin: 0.8rem 0rem;
}

.dashboard-content hr,
.sidebar-content hr {
  width: 90%;
  margin: 0.3rem auto;
  border-top: 0.5px solid rgba(0, 0, 0, 0.1);
}

.sidebar-content hr {
  margin: 0;
  width: 95%;
}

#dashboard div,
.mobile-navbar div {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.mobile-navbar .user-details {
  display: none;
}

.user-details > p:nth-child(1) {
  font-size: 16px;
  font-weight: 400;
}

.user-details > p > span:nth-child(2) {
  color: var(--primary-color);
  font-weight: 600;
}

.user-details > p:nth-child(2) {
  font-size: 12px;
}

.sidebar-content a .video-launch-offer-tag {
  right: 3%;
  top: -11%;
}

#dashboard div a,
.sidebar-content a {
  margin: 0;
  padding: 0.2rem 0rem;
  text-decoration: none;
  color: black;
  display: flex;
  align-items: center;
  cursor: pointer;
  position: relative;
}

#dashboard div a:hover,
.sidebar-content a:hover {
  background-color: rgba(128, 128, 128, 0.15);
}

#dashboard button,
.mobile-navbar button {
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: #ffffff;
  background: var(--primary-color);
  padding: 0rem 1.4rem;
  border: none;
  outline: none;
  display: flex;
  gap: 0.3rem;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border-radius: 5px;
}

#dashboard button {
  margin: 1rem 0 0 0 !important;
}

.mobile-navbar button span svg {
  height: 20px;
  width: 20px;
  fill: white;
  display: flex;
  align-items: center;
}

.nav-link-img {
  width: 20px;
  aspect-ratio: 1;
}

.mobile-navbar .nav-link-img {
  width: 1rem;
  height: 1rem;
}

/* Login/Sign Up Section */

.otp-back {
  top: 0;
}

.login-overlay-modal .primary-btn .p {
  font-size: 0.8em;
}

.login-btn {
  /* text-decoration: underline; */
  color: #727272;
  transition: all 0.3s;
}

.login-btn:hover {
  color: #000;
}

.navbar-container .login-modal {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fcfaf6;
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 11;
}

.login-container .content-section,
.login-container .action-btn-section {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.content-section {
  width: 55%;
  position: relative;
  align-items: flex-start;
}

.content-section .back-btn,
.confirm-otp-container .back-btn {
  position: absolute;
  width: 50px;
  height: 50px;
  left: 0;
  top: 0;
  text-align: center;
  background: #ffffff;
  border: 2px solid rgba(0, 118, 99, 0.15);
  box-shadow: 0px 25px 40px rgba(59, 80, 90, 0.05);
  transform: rotate(-180deg);
  color: var(--primary-color);
  font-size: 1rem;
  border-radius: 50%;
  transform: matrix(-1, 0, 0, 1, 0, 0);
  display: flex;
  justify-content: center;
  cursor: pointer;
}

.content-section .back-btn {
  transform: rotate(0deg);
  transition: scale 0.4s ease-in-out;
}

.content-section .back-btn svg {
  fill: var(--primary-color);
  width: 20px;
  height: 20px;
  margin-top: 65%;
}

.confirm-otp-container .back-btn {
  top: 10px;
  left: 25px;
  border-radius: 0px;
  box-shadow: none;
  background-color: transparent;
  border: none;
  width: fit-content;
  transform: rotate(0deg);
}

.confirm-otp-container .back-btn svg {
  height: 20px;
  width: 20px;
  fill: var(--primary-color);
  display: flex;
  transform: rotate(-180deg);
  align-items: center;
}

.content-section .inner-section {
  width: 80%;
  padding-left: 15%;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  position: relative;
  transform: translate(0, -15%);
}

.content-section .inner-section .back-image-logo {
  position: absolute;
  align-self: center;
  left: 50%;
  width: 70%;
  height: 70%;
  opacity: 0.1;
  transform: translate(-30%, -50%);
  object-fit: contain;
}

.content-section .inner-section .back-image-logo img {
  max-width: 100%;
}

.content-section .inner-section .login-content-logo {
  max-width: 125px;
}

.content-section > .inner-section > p {
  font-weight: 400;
  font-size: 16px;
  line-height: 30px;
  width: fit-content;
  float: right;
  color: rgba(13, 13, 13, 0.7);
}

.content-section .inner-section div p {
  padding: 0px 5px;
  background: rgba(0, 118, 99, 0.1);
  font-weight: 500;
  font-size: 12px;
  width: fit-content;
  line-height: 20px;
  float: right;
  color: #0d0d0d;
  transform: translateX(20%);
}

.login-container .action-btn-section {
  width: 45%;
  background: rgba(0, 118, 99, 0.025);
  border: 1px solid rgba(0, 118, 99, 0.25);
  border-radius: 24px;
  border-radius: 30px;
  overflow: hidden;
  position: relative;
}

.login-container .action-btn-section .close-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  width: auto;
  border: 1px solid rgba(0, 118, 99, 0.25);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: none;
  justify-content: center;
  align-items: center;
  font-size: 28px;
  transform: rotate(45deg);
  color: grey;
}

.login-container .action-btn-section .outer-container {
  width: 200%;
  height: 100%;
  display: flex;
  justify-content: flex-start;
  flex-direction: row;
  transition: transform 1s ease-in-out;
}

.action-btn-section .inner-section,
.action-btn-section .confirm-otp-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding: 7%;
  text-align: left;
}

.action-btn-section .confirm-otp-container {
  gap: 2.5rem;
  position: relative;
}

.action-btn-section .inner-section > p:nth-child(1),
.action-btn-section .confirm-otp-container > p:nth-of-type(1) {
  font-weight: 600;
  font-size: 28px;
  line-height: 34px;
  width: 100%;
  text-align: left;
  color: rgba(13, 13, 13, 0.4);
}

.action-btn-section .confirm-otp-container > div:nth-of-type(1) {
  width: 100%;
  position: relative;
}

.google-sign-in-btn {
  background: #ffffff;
  padding: 0.7rem;
  outline: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border: 1px solid rgba(0, 0, 0, 0.15);
  box-shadow: 0px 8px 25px -10px rgba(0, 0, 0, 0.24), 0px 0px 3px rgba(0, 0, 0, 0.084);
  border-radius: 10px;
  width: 100%;
  transition: all 0.4s ease-in-out;
  cursor: pointer;
}

.google-sign-in-btn img {
  width: 20px;
  height: 20px;
}

.iti--allow-dropdown .iti__country-container:not(:has(+ input[disabled])):not(:has(+ input[readonly])) .iti__selected-country-primary:hover,
.iti--allow-dropdown .iti__country-container:not(:has(+ input[disabled])):not(:has(+ input[readonly])) .iti__selected-country-primary:hover,
.iti--allow-dropdown .iti__country-container:not(:has(+ input[disabled])):not(:has(+ input[readonly])) .iti__selected-country:has(+ .iti__dropdown-content:hover) .iti__selected-country-primary {
  background: transparent;
}

.iti__flag-container {
  transition: background-color 0.4s ease-in-out;
}

.iti__flag-container:hover {
  background-color: #00766223;
}

.iti--inline-dropdown .iti__country-list {
  height: calc(100dvh * 0.12);
}

.iti__country-list::-webkit-scrollbar {
  height: 5px;
  width: 5px;
}

.iti__country-list::-webkit-scrollbar-track {
  border-radius: 20px;
}

.iti__country-list::-webkit-scrollbar-thumb {
  background: #d9d9d9;
  border-radius: 4px;
}

.action-btn-section > div {
  display: flex;
  justify-content: space-between;
  width: 100%;
  align-items: center;
}

.action-btn-section div {
  font-size: 14px;
  font-weight: 500;
  color: rgba(0, 0, 0, 0.24);
}

.action-btn-section .inner-section > div {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
}

.action-btn-section .inner-section > div > hr {
  width: 40%;
  border: none;
  height: 0px;
  border-top: 0.6px solid rgba(0, 0, 0, 0.1);
}

.action-btn-section .inner-section > div > p:not(.error-text) {
  font-weight: 500;
  font-size: 16px;
  color: rgba(0, 0, 0, 0.4);
}

.action-btn-section > div > div > p:nth-child(4) {
  font-weight: 500;
  font-size: 13px;
  width: 100%;
  text-align: left;
  margin-bottom: 10px;
  color: rgba(0, 0, 0, 0.4);
}

#tempErrorDisplay > p {
  font-size: 14px;
  color: red;
  text-align: center;
  margin-top: 15%;
}

/* @media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .iti__flag {background-image: url("/build/img/flags@2x.webp");}
} */

.input-for-mobile-no {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.15);
  box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.084);
  border-radius: 10px;
  display: flex;
  align-items: center;
  width: 100%;
  position: relative;
  top: -5%;
}

.valid-num-error {
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 100%;
  text-align: center;
  color: red;
  transform: translate(-50%, 150%);
  z-index: 1;
  opacity: 1;
  font-size: 12px;
  font-weight: 500;
  visibility: hidden;
}

.incorrect-otp-error {
  position: absolute;
  left: 0;
  width: 100%;
  text-align: left;
  color: red;
  /* transform: translate(-50%, 150%); */
  z-index: 1;
  opacity: 1;
  font-size: 12px;
  font-weight: 500;
  visibility: hidden;
}

.input-for-mobile-no input {
  color: black;
}

.input-for-mobile-no > div > select {
  height: 100%;
  width: 100%;
  background: transparent;
  border: none;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  font-weight: 500;
  font-size: 13px;
  color: rgba(0, 0, 0, 0.4);
}

.input-for-mobile-no input,
.confirm-otp-container input {
  width: 100%;
  border: none;
  outline: none;
  background: transparent;
  height: 100%;
  padding: 0.5rem;
}

.confirm-otp-container input {
  height: auto;
  width: 100%;
  padding: 0.5rem;
  font-weight: 500;
  font-size: 13px;
  color: rgba(0, 0, 0, 0.4);
  border-radius: 10px;
  border: 0.6px solid rgba(0, 0, 0, 0.3);
}

.confirm-otp-container input::-webkit-outer-spin-button,
.confirm-otp-container input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.send-otp-btn,
.confirm-otp-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  background: var(--primary-color);
  border: 1px solid rgba(0, 118, 99, 0.15);
  box-shadow: 0px 8px 25px -10px rgba(0, 0, 0, 0.24), 0px 0px 3px rgba(0, 0, 0, 0.084);
  border-radius: 100px;
  padding: 0.7rem 2rem;
  font-weight: 400;
  font-size: 16px;
  color: #ffffff;
  width: 100%;
  position: relative;
  top: -3%;
  transition: transform 0.3s ease-in-out;
  cursor: pointer;
}

.send-otp-btn svg {
  height: 20px;
  width: 20px;
  fill: white;
  display: flex;
  align-items: center;
}

.confirm-otp-container {
  display: none;
}

.nav-btns span:not(.nav-btns span.wedding-invitation, .nav-btns span.nav-btn-arrow) {
  display: none;
}

.greeting-nav-btns span:not(.greeting-nav-btns span.wedding-invitation, .greeting-nav-btns span.nav-btn-arrow) {
  display: none;
}

@media (max-width: 768px) {
  .navbar {
    height: 120px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .coupon-container .diya {
    display: none;
  }

  .nav-items {
    display: none;
  }

  .navbar > a {
    height: 60%;
  }

  .login-container {
    width: 85%;
    padding: 1rem;
  }

  .profile-img-div {
    display: none;
  }

  .login-container .content-section {
    display: none;
  }

  .login-container .action-btn-section {
    width: 100%;
    border-radius: 30px;
  }

  .action-btn-section .inner-section {
    padding: 0.5rem;
  }

  .action-btn-section .inner-section,
  .action-btn-section .confirm-otp-container {
    box-sizing: border-box;
  }

  .action-btn-section .inner-section > p:nth-child(1),
  .action-btn-section .confirm-otp-container > p {
    font-size: 16px;
    padding-left: 5%;
  }

  .google-sign-in-btn,
  .send-otp-btn,
  .input-for-mobile-no input,
  .confirm-otp-btn,
  .confirm-otp-container input {
    font-size: 14px;
    padding: 1rem;
    width: 90%;
  }

  .send-otp-btn:hover,
  .confirm-otp-btn:hover {
    transform: scale(1);
    color: white;
    background-color: var(--primary-color);
  }

  .google-sign-in-btn:hover {
    transform: scale(1);
    color: black;
    background-color: white;
  }

  .action-btn-section .inner-section {
    gap: 1.5rem;
  }

  .action-btn-section .confirm-otp-container {
    gap: 3rem;
  }

  .confirm-otp-container .back-btn {
    font-size: 16px;
    left: 10px;
    top: 20px;
  }

  .confirm-otp-container .back-btn span svg {
    transform: rotate(-180deg);
    height: 20px;
    width: 20px;
    fill: var(--primary-color);
    display: flex;
    align-items: center;
  }

  .action-btn-section .inner-section > div {
    width: 90%;
  }

  .action-btn-section > div > div > p:nth-child(4) {
    padding-left: 5%;
  }

  .action-btn-section .confirm-otp-container {
    padding: 0;
  }

  .nav-btns,
  .greeting-nav-btns {
    gap: 0.5rem;
  }

  .nav-btns span:not(.nav-btns span.wedding-invitation) {
    display: flex;
    height: 100%;
    align-items: center;
    padding: 0 0.2rem;
    cursor: pointer;
  }

  .nav-btns span svg,
  .greeting-nav-btns span svg {
    height: 50%;
    width: auto;
    display: flex;
    align-items: center;
  }

  #profile-pic {
    margin: 0;
  }

  .login-container .action-btn-section .close-btn {
    display: flex;
  }

  .navbar > div > span {
    justify-content: flex-start;
  }

  .navbar > div > span > a {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    height: fit-content;
    font-size: 1.3rem;
  }

  .navbar-website-selecttag .nav-btn-arrow svg {
    width: 15px;
    height: 15px;
  }

  .navbar-website-selecttag select {
    padding-right: 20px;
  }
}

@media (max-width: 320px) {
  .login-container {
    height: 80%;
  }
}

.new-tag {
  background-image: url(/assets/img/navbar/star1.webp);
  aspect-ratio: 1;
  width: auto;
  height: 35px;
  background-size: 100% 100%;
  margin: 0 0 0 10px;
}

.logout-btn span {
  display: flex;
  justify-content: center;
  align-items: center;
}

#logout-btn {
  padding: 10px !important;
  margin: 5px 0 !important;
  transition: all 0.2s linear;
}

.logout-btn:hover {
  box-shadow: -2px 2px 5px 0 rgb(163, 160, 160);
}

@media (min-width: 576px) {
  .nav-btns {
    position: absolute;
    right: 6%;
    flex-direction: row-reverse;
  }

  .nav-items {
    width: 100%;
    justify-content: space-evenly;
  }

  #dashboard,
  .navbar div.mobile-navbar {
    display: none;
    position: absolute;
    min-width: 200px;
    translate: -60% 0;
    left: 100%;
    font-size: 14px;
    padding: 1rem;
    z-index: 100;
    background: #ffffff;
    box-shadow: 0px 3px 5px 0px rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    font-family: Montserrat;
  }

  .navbar > div:nth-child(2) {
    border-bottom: 3px solid rgb(239 238 238);
  }
}

@media (max-width: 576px) {
  .navbar-container {
    padding: 1.5em 1em;
    border-bottom: 1px solid #cbcbcb;
    height: 80px;
  }

  .navbar-container .logo-container {
    width: 100%;
  }

  .logo-container .logo a {
    width: 40%;
  }

  .navbar-container .navigation-container,
  .action-btn .signin-container {
    display: none;
  }

  .action-btn .menu-icon {
    display: flex;
  }

  .logo-container .action-btn {
    right: 5%;
  }

  .navbar > div:nth-child(2) {
    height: 60%;
  }

  .navbar > div:nth-child(3) {
    height: 0%;
  }

  .navbar > div > span > a {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    height: fit-content;
  }

  .navbar > div:nth-child(2) .nav-btns {
    flex-direction: row-reverse;
  }

  .nav-btns,
  .greeting-nav-btns {
    gap: 0;
  }

  .navbar-website-selecttag {
    position: relative;
    translate: 10%;
  }

  #dashboard,
  .navbar div.mobile-navbar {
    right: 0%;
  }
}

.login-modal .container {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  width: 100%;
  height: 100%;
}

.login-modal .container .left {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 45%;
  font-family: Manrope;
  font-weight: 500;
  padding: 2em 1em;

  p {
    font-weight: 400;
    font-size: 16px;
    line-height: 30px;
    width: fit-content;
    float: right;
    width: 80%;
    color: rgba(13, 13, 13, 0.7);
    font-family: 'Roboto', sans-serif;
  }

  img {
    width: 100%;
    height: 100%;
    position: absolute;
    object-fit: contain;
    z-index: -1;
    opacity: 0.3;
  }

  .tag {
    padding: 0px 5px;
    background: rgba(0, 118, 99, 0.1);
    width: fit-content;
    float: right;
    color: #0d0d0d;
    margin-top: 1em;
    align-self: flex-end;
    text-align: right;
  }

  .tag p {
    width: fit-content;
    font-size: 0.85em;
    font-weight: 500;
    line-height: 20px;
  }
}

.login-modal .container .right {
  width: 50%;
  border: 1.5px solid #dbdbdb;
  border-radius: 20px;
  background: #fff;
  height: 100%;
}

@media screen and (max-width: 1024px) {
  .login-modal {
    width: 80%;
  }
}

@media screen and (max-width: 768px) {
  .login-modal .login-close-modal {
    top: 0%;
    left: 0%;
  }

  .login-modal .container {
    flex-direction: column;
    justify-content: center;
    width: 100%;
    height: 100%;
  }

  .login-modal .container .left {
    display: none;
  }

  .login-modal .container .right {
    width: 100%;
    height: 100%;
  }

  .otp-input {
    justify-content: center;
  }
}

.login-modal .container .right .input-container {
  display: flex;
  justify-content: start;
  align-items: start;
  width: 100%;
  height: 100%;
  padding: 1em;
  overflow: hidden;

  .section-1.active {
    transform: translateX(0%);
    opacity: 1;
  }

  .section-1 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: column;
    width: 100%;
    height: 100%;
    gap: 1em;
    overflow: hidden;
    transform: translateX(-100%);
    opacity: 0;
    transition: transform 0.7s ease-in-out, opacity 0.5s ease-in-out;
    flex: 1 0 100%;

    .close-modal {
      display: none;
    }

    .lottie {
      position: relative;
      width: 70%;
      height: 100px;
      z-index: -1;

      .loader {
        position: absolute;
        top: 40px;
        left: -30px;
        width: 100%;
        z-index: 15;
        translate: -20% -35%;
      }

      @media screen and (max-width: 768px) {
        .loader {
          top: 30px;
          left: -20px;
        }
      }
    }

    .action-btn {
      display: flex;
      justify-content: space-between;
      align-items: center;
      width: 100%;
      flex-direction: column;
      gap: 1em;
      font-family: Manrope;
      font-weight: 500;
      color: #7b7b7b;
      z-index: 2;

      p {
        font-size: 0.9em;
      }

      .google-login {
        border: 1.5px solid #dbdbdb;
        border-radius: 8px;
      }

      .iti {
        width: 90%;
        display: flex;
        justify-content: start;
        align-items: center;
      }

      .iti__selected-country {
        gap: 0;
        border-right: 1.5px solid #d1d1d1;
        padding-right: 1em;
      }

      .iti__flag-container {
        border-right: 1.5px solid #d1d1d1;
        position: unset;
        height: 100%;
        /* width: 30%; */
        padding: 0;
        border-top-left-radius: 8px;
        border-bottom-left-radius: 8px;
      }

      .iti--allow-dropdown .iti__flag-container:hover .iti__selected-flag {
        box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.1);
      }

      .iti__selected-flag {
        border-top-left-radius: 8px;
        border-bottom-left-radius: 8px;
        background: white;
        justify-content: space-between;
        padding: 0;
      }

      button,
      input {
        width: 90%;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 0.5em;
        cursor: pointer;
        outline: none;
        background: white;
        font-family: Manrope;
        font-weight: 500;
        color: #7b7b7b;
        font-size: 1em;
        transition: all 0.2s ease-in-out;

        &:hover,
        &:active,
        &:focus {
          box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.1);
        }
      }

      .iti {
        border-radius: 8px;
        border: 1px solid #d1d1d1;
      }

      .iti__search-input {
        width: 100%;
      }

      .iti__search-input:hover,
      .iti__search-input:focus,
      .iti__search-input:active {
        box-shadow: none;
      }

      .iti__selected-country {
        border-radius: 5px 0 0 5px;
        background-clip: content-box;
      }

      .iti__country {
        font-size: 0.75em;
      }

      button,
      input {
        padding: 0.7em;
      }

      input {
        width: 100%;
        border: none;
        border-radius: 8px;
        font-size: 0.9em;
      }
    }

    .primary-btn {
      padding: 0.5em 2em;
      transition: all 0.2s ease-in-out;
      margin: 1em;
    }

    .primary-btn:disabled {
      cursor: not-allowed;
      background: #dbdbdb;
      &::after {
        animation: none;
      }
    }
  }

  .section-2 {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 100%;
    height: 100%;
    gap: 1em;
    overflow: hidden;
    transform: translateX(0%);
    opacity: 0;
    transition: transform 0.7s ease-in-out, opacity 0.5s ease-in-out;
    flex: 1 0 100%;
    padding: 2%;

    .otp-container {
      display: flex;
      justify-content: start;
      align-items: start;
      width: 100%;
      flex-direction: column;
      gap: 1.5em;
      font-family: Manrope;
      color: #7b7b7b;

      .title {
        font-size: 1.2em;
        font-weight: 500;
      }

      .otp-input {
        display: flex;
        justify-content: start;
        align-items: center;
        width: 100%;
        gap: 2em;

        input {
          width: 50px;
          aspect-ratio: 1;
          display: flex;
          justify-content: center;
          align-items: center;
          border-radius: 8px;
          border: 1px solid #d1d1d1;
          outline: none;
          cursor: pointer;
          text-align: center;
          font-family: inherit;
          color: inherit;
          font-size: 1em;

          &:not(:disabled):hover,
          &:not(:disabled):active,
          &:not(:disabled):focus {
            box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.1);
          }
        }
      }

      .resend-otp {
        display: flex;
        justify-content: center;
        align-items: center;
        width: max-content;
        align-self: center;
        margin-top: 5%;
        background: transparent;
        border: none;
        outline: none;
        cursor: pointer;
        font-size: 0.9em;
        font-weight: 500;
        color: inherit;
      }

      .confirm-otp {
        padding: 0.5em 1.5em;
        align-self: center;
        transition: all 0.2s ease-in-out;
        outline: none;
      }

      button:disabled {
        cursor: not-allowed;

        &::after {
          animation: none;
        }
      }

      .confirm-otp:disabled {
        background: #dbdbdb;
      }
    }
  }

  .section-2.active {
    opacity: 1;
    transform: translateX(-100%);
  }
}

.iti__country-container {
  padding: 0;
}

.test {
  padding: 0;
}

@media screen and (max-width: 1024px) {
  .login-modal .container .right .input-container .section-2 .otp-container {
    align-items: center;
  }

  .login-modal .container .right .input-container .section-2 .otp-container .otp-input {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .navigation {
    padding: 2em;
    position: static;
  }

  .mobile-navigation {
    display: flex;
  }

  .navigation .home {
    display: block;
    width: 35%;
  }

  .navigation .category {
    display: none;
  }

  .navigation .action-btn {
    width: 30%;

    .login.active {
      position: static;
    }

    .user-profile.active {
      display: flex;
      position: static;
    }
  }
}

@media screen and (max-width: 576px) {
  .login-modal {
    width: 95%;
    gap: 1em;
  }
}


/* Display none for nav items  */
div[data-page="bio-data"] {
  display: none;
}