.modal {
  background-color: #0009;
  position: fixed;
  z-index: 9;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: none;
  justify-content: center;
  align-items: center;
}
.modal.active {
  display: flex;
}
.modal-backdrop {
  position: absolute;
  z-index: 1;
  width: 100%;
  height: 100%;
  background-color: transparent;
  display: flex;
}
.modal-content {
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;
}
.modal-content > * {
  display: none;
}
.login-modal-div {
  width: 90%;
  min-width: 750px;
  max-width: 750px;
  background-color: var(--white);
  display: none;
}
.login-modal-div.active {
  display: flex;
}
.login-modal-div > div:first-of-type {
  width: 45%;
  display: flex;
}
.login-modal-div > div:first-of-type > img {
  width: 100%;
}
.login-modal-div > div:nth-of-type(2) {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.8rem;
}
.close-modal-btn {
  width: 35px;
  height: 35px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #1e1e1e0d;
  color: var(--black);
  border: none;
  font-size: 1.3rem;
  border-radius: 50%;
  padding-bottom: 0.2rem;
}
.login-modal-div > div:nth-of-type(2) > p {
  font-size: 2rem;
  color: var(--black);
}
.login-modal-div > div:nth-of-type(2) > div {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.login-modal-div > div:nth-of-type(2) > div > button > svg {
  width: 25px;
  height: 25px;
}
.google-btn {
  padding: 0.8rem 1rem;
  border-radius: 1.5rem;
  background-color: var(--black);
  color: var(--white);
  border: none;
  font-size: 0.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
}
.facebook-btn {
  padding: 0.8rem 1rem;
  border-radius: 1.5rem;
  background-color: var(--white);
  color: var(--black);
  font-size: 0.8rem;
  border: 1px solid rgba(30, 30, 30, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
}
.email-btn {
  padding: 0.8rem 1rem;
  border-radius: 1.5rem;
  background-color: var(--white);
  color: var(--black);
  font-size: 0.8rem;
  border: 1px solid var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
}
.info-modal-div {
  position: relative;
  width: 100dvw;
  max-width: 520px;
  display: none;
  background-color: var(--white);
  flex-direction: column;
  gap: 10px;
  color: var(--black);
}
.info-modal-div.active {
  display: flex;
}
.close-info-div {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 1.5rem;
  margin-bottom: 0.7rem;
  border-bottom: 1px solid rgba(30, 30, 30, 0.1);
}
.close-info-div > button {
  width: 30px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.3rem;
  background-color: transparent;
  border: none;
}
.info-form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  max-height: calc(100dvh - 71px);
  overflow: clip auto;
  align-items: center;
}
.info-form::-webkit-scrollbar {
  width: 5px;
}
.info-form::-webkit-scrollbar-thumb {
  background-color: #f2f2f2;
  border-radius: 10px;
}
.info-form > label {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  padding: 0 1.5rem;
}
.info-form > label > input {
  width: 100%;
  padding: 0.6rem 0.8rem;
  font-size: 0.6rem;
  background-color: var(--white);
  border: 1px solid var(--border-1);
  color: var(--black);
  outline: none;
}
.info-form > label > input:disabled {
  background-color: var(--white);
  color: var(--gray);
  cursor: not-allowed;
}
.info-form > label > span {
  font-size: 0.7rem;
  color: var(--gray);
}
.info-form > button {
  background-color: var(--black);
  color: var(--white);
  border-radius: 2rem;
  padding: 0.7rem 1.3rem;
  width: 80%;
  margin: 0.5rem 0 1rem;
  outline: none;
  border: none;
}
.date-container {
  display: flex;
  width: 100%;
  position: relative;
}
.date-container > span {
  display: flex;
  width: 100%;
  height: 40px;
  border: 1px solid var(--border-1);
  color: var(--black);
  cursor: pointer;
  align-items: center;
  font-size: 0.7rem;
  padding: 0 10px;
}
.date-container > div {
  display: none;
  position: absolute;
  top: -100px;
  left: 0;
  width: min(100%, 380px);
  border: 1px solid var(--border-1);
  background-color: var(--white);
  flex-direction: column;
  z-index: -1;
}
.date-container > div.active {
  display: flex;
  z-index: 1;
}
.date-container > div > div:first-of-type {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.5rem 1rem;
  border-bottom: 1px solid rgba(30, 30, 30, 0.2);
}
.date-container > div > div:first-of-type > span:first-of-type {
  font-size: 0.8rem;
  color: var(--black);
}
.date-container > div > div:first-of-type > span:nth-of-type(2) {
  font-size: 0.8rem;
  color: var(--blue);
  margin-left: auto;
}
.date-container > div > div:first-of-type > span:nth-of-type(3) {
  background-color: transparent;
  font-size: 1.3rem;
  border: none;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 30px;
  padding-bottom: 5px;
  cursor: pointer;
}
.date-container > div > div:nth-of-type(2) {
  height: fit-content;
  display: flex;
  justify-content: center;
  align-items: center;
}
.date-container > div > div:nth-of-type(2) > div {
  cursor: pointer;
  overflow: clip auto;
  scroll-snap-type: y;
  height: 210px;
}
.date-container > div > div:nth-of-type(2) > div::-webkit-scrollbar {
  width: 0;
}
.date-container > div > div:nth-of-type(2) > div > div {
  width: 100%;
  height: 30px;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  color: var(--gray);
  font-size: 0.8rem;
  scroll-snap-align: start;
  scroll-snap-stop: always;
}
.date-container > div > div:nth-of-type(3) {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: flex-end;
  padding: 0.8rem 1rem;
  overflow: hidden;
  gap: 1rem;
  background-color: var(--white);
}
.date-container > div > div:nth-of-type(3) > span:last-of-type {
  background-color: transparent;
  font-size: 0.8rem;
  border: none;
  color: var(--black);
}
.date-container > div > div:nth-of-type(3) > span:first-of-type {
  color: var(--gray);
  background-color: transparent;
  font-size: 0.8rem;
}
.scroll-dial {
  position: relative;
}
.scroll-dial > div {
  width: calc((100% / 3));
  border: none;
  position: relative;
  z-index: 2;
}
.scroll-dial > span {
  width: 100%;
  position: absolute;
  border-bottom: 1px solid var(--border-1);
  border-top: 1px solid var(--border-1);
  top: calc(50% - 15px);
  height: 30px;
  z-index: 1;
}
.gender-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  width: 100%;
}
.gender-container > span {
  width: 100%;
  height: 40px;
  border: 1px solid var(--border-1);
  display: flex;
  align-items: center;
  font-size: 0.7rem;
  padding: 0 10px;
  cursor: pointer;
  text-transform: capitalize;
  color: var(--black);
}
.gender-container > div {
  position: absolute;
  top: 38px;
  left: 0;
  background-color: var(--white);
  border: 1px solid var(--border-1);
  width: min(100%, 300px);
  padding: 5px 0;
  display: none;
  flex-direction: column;
}
.gender-container > div.active {
  display: flex;
}
.gender-container > div > span {
  align-self: flex-end;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 30px;
  font-size: 1.3rem;
  border-radius: 50%;
  padding-bottom: 5px;
  cursor: pointer;
  color: var(--black);
}
.gender-container > div > div {
  font-size: 0.8rem;
  padding: 5px 10px;
  cursor: pointer;
  text-transform: capitalize;
  color: var(--black);
}
.gender-container > div > div:hover {
  background-color: #f2f2f2;
}
.loading-modal {
  background-color: var(--white);
  border-radius: 0.4rem;
  padding: 1rem;
  display: none;
  flex-direction: column;
  justify-content: center;
  width: min(90dvw, 320px);
  text-align: center;
  gap: 1rem;
}
.loading-modal.active {
  display: flex;
}
.loading-modal > p {
  font-size: 0.8rem;
  color: var(--black);
}
.message-modal {
  background-color: var(--white);
  border-radius: 0.4rem;
  padding: 1rem;
  display: none;
  flex-direction: column;
  justify-content: center;
  width: min(90dvw, 350px);
  text-align: center;
}
.message-modal.active {
  display: flex;
}
.message-modal > div:first-of-type {
  width: 100%;
  display: flex;
  justify-content: space-between;
  margin-bottom: 1rem;
}
.message-modal > div:first-of-type > span {
  font-size: 0.8rem;
  color: var(--gray);
  display: flex;
  align-items: center;
}
.message-modal > div:first-of-type > button {
  width: 30px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.2rem;
  padding-bottom: 0.3rem;
  background-color: transparent;
}
.message-modal > p {
  width: 100%;
  font-size: 0.8rem;
  text-align: left;
  color: var(--black);
}
.size-guide-modal {
  background-color: var(--white);
  padding: 0 0 1rem;
  display: none;
  flex-direction: column;
  gap: 0.5rem;
  align-items: center;
  width: min(90dvw, 550px);
}
.size-guide-modal.active {
  display: flex;
}
.size-guide-modal > div:first-of-type {
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: center;
  padding: 0.6rem 1rem;
  border-bottom: 1px solid var(--border-1);
  color: var(--black);
}
.size-guide-modal > div:first-of-type > p {
  font-size: 0.8rem;
}
.size-guide-modal > div:first-of-type > span {
  background-color: transparent;
  padding-bottom: 5px;
  cursor: pointer;
}
.size-guide-modal > div:nth-of-type(2) {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: calc(100% - 40px);
  gap: 1rem;
}
.size-guide-modal > div:nth-of-type(2) > img {
  width: 100%;
}
.write-review-modal {
  display: none;
  background-color: var(--white);
  flex-direction: column;
  width: 100dvw;
  max-width: 570px;
}
.write-review-modal.active {
  display: flex;
}
.write-review-modal > div:first-of-type {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
}
.write-review-modal > div:first-of-type > button {
  background-color: transparent;
  border: none;
  font-size: 1.2rem;
  height: auto;
}
.write-review-modal > div:first-of-type > p {
  font-size: 0.9rem;
  color: var(--black);
}
.write-review-modal > div:nth-of-type(2) {
  display: flex;
  align-items: center;
  border-top: 1px solid var(--border-1);
  border-bottom: 1px solid var(--border-1);
  padding: 20px;
  gap: 20px;
}
.write-review-modal > div:nth-of-type(2) > div:first-of-type {
  width: 90px;
  height: 90px;
  display: flex;
  flex-shrink: 0;
}
.write-review-modal > div:nth-of-type(2) > div:first-of-type {
  width: 90px;
  height: 90px;
  display: flex;
}
.write-review-modal > div:nth-of-type(2) > div:first-of-type > img {
  width: 100%;
  object-position: center top;
  object-fit: cover;
  border-radius: 0.3rem;
}
.write-review-modal > div:nth-of-type(2) > div:nth-of-type(2) {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 10px;
}
.write-review-modal > div:nth-of-type(2) > div:nth-of-type(2) > p {
  font-size: 0.7rem;
  color: var(--black);
}
.write-review-modal > div:nth-of-type(2) > div:nth-of-type(2) > span {
  margin-top: auto;
  display: inline-block;
  color: var(--black);
}
.write-review-modal > div:nth-of-type(3) {
  display: flex;
  justify-content: center;
  gap: 10px;
  align-items: center;
  padding: 15px 20px;
}
.write-review-modal > div:nth-of-type(3) > img {
  cursor: pointer;
}
.write-review-modal > div:nth-of-type(4) {
  display: flex;
  width: 100%;
  padding: 0 20px;
}
.write-review-modal > div:nth-of-type(4) > textarea {
  width: 100%;
  padding: 20px;
  border: 1px solid var(--border-1);
  border-radius: 0.4rem;
  background-color: var(--white);
  color: var(--black);
  resize: vertical;
}
.write-review-modal > div:nth-of-type(4) > textarea:disabled {
  resize: none;
}
.write-review-modal > div:last-of-type {
  display: flex;
  padding: 20px;
  justify-content: center;
  align-items: center;
}
.write-review-modal > div:last-of-type > button {
  padding: 12px 0;
  width: 100%;
  max-width: 280px;
  border: none;
  background-color: var(--black);
  color: var(--white);
}
.write-review-modal > p:last-of-type {
  padding: 10px 20px;
  min-height: 15px;
  font-size: 0.7rem;
  color: var(--red);
  display: none;
}
.write-review-modal > p:last-of-type.active {
  display: block;
}
.cant-write-review-modal {
  display: none;
  width: 100dvw;
  max-width: 550px;
}
.cant-write-review-modal.active {
  display: flex;
  flex-direction: column;
  background-color: var(--white);
}
.cant-write-review-modal > div:first-of-type {
  padding: 10px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--border-1);
}
.cant-write-review-modal > div:first-of-type > p {
  color: var(--black);
  font-size: 0.8rem;
  display: none;
}
.cant-write-review-modal > div:first-of-type > button {
  background-color: transparent;
  font-size: 1.2rem;
  padding-bottom: 3px;
  margin-left: auto;
}
.cant-write-review-modal > div:nth-of-type(2) {
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}
.cant-write-review-modal > div:nth-of-type(2) p {
  color: var(--black);
}
.cant-write-review-modal > div:nth-of-type(2) > span {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background-color: var(--black);
  display: flex;
  justify-content: center;
  align-items: center;
}
.cant-write-review-modal > div:nth-of-type(2) > p:first-of-type {
  font-size: 1.6rem;
  text-align: center;
}
.cant-write-review-modal > div:nth-of-type(2) > p:nth-of-type(2) {
  font-size: 1rem;
  color: var(--gray-2);
  text-align: center;
  max-width: 420px;
}
.cant-write-review-modal > div:nth-of-type(2) > div:nth-of-type(1) {
  display: flex;
  width: 100%;
  flex: 1;
  gap: 1rem;
  align-items: center;
}
.cant-write-review-modal > div:nth-of-type(2) > div:nth-of-type(1) > div {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.cant-write-review-modal > div:nth-of-type(2) > div:nth-of-type(1) > div > p {
  font-size: 0.6rem;
}
.cant-write-review-modal > div:nth-of-type(2) > div:nth-of-type(1) > div > div {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.cant-write-review-modal > div:nth-of-type(2) > div:nth-of-type(1) > span {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
}
.cant-write-review-modal
  > div:nth-of-type(2)
  > div:nth-of-type(1)
  > span
  > img {
  width: 70px;
  max-width: 70px;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  object-position: center top;
  border-radius: 0.3rem;
}
.cant-write-review-modal
  > div:nth-of-type(2)
  > div:nth-of-type(1)
  > span
  > span {
  display: flex;
  width: fit-content;
  color: var(--black);
  font-size: 0.8rem;
  gap: 0.3rem;
}
.cant-write-review-modal
  > div:nth-of-type(2)
  > div:nth-of-type(1)
  > span
  > span
  > img {
  object-fit: contain;
}
.cant-write-review-modal
  > div:nth-of-type(2)
  > div:nth-of-type(1)
  > div
  > div
  > span {
  color: var(--black);
  font-size: 0.6rem;
  display: flex;
  align-items: center;
}
.cant-write-review-modal > div:nth-of-type(2) > button {
  background-color: transparent;
  color: var(--black);
  border: 2px solid var(--black);
  border-radius: 2rem;
  padding: 15px 1.2rem;
  font-size: 0.8rem;
  text-align: center;
}
.payment-modal {
  width: 100dvw;
  max-width: 500px;
  background-color: var(--white);
  border-radius: 10px;
  padding: 20px;
  display: none;
  flex-direction: column;
  color: var(--black);
}
.payment-modal.active {
  display: flex;
}
.close-pop-up-div {
  width: 100%;
  display: flex;
  justify-content: space-between;
}
.close-pop-up-div > button {
  border-radius: 50%;
  background-color: transparent;
  border: none;
  color: var(--red);
  font-size: 1.2rem;
  padding-bottom: 5px;
  width: 30px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.payment-modal > .btn-div {
  display: flex;
  width: 100%;
  margin-top: 10px;
}
.payment-modal > .btn-div > button {
  background: var(--black);
  color: var(--white);
  border: none;
  width: 100%;
  padding: 12px 0;
  text-align: center;
}
.payment-modal > .btn-div > button:focus-visible {
  outline: transparent;
}
.payment-modal > div#payment-form-div {
  max-height: calc(100dvh - 150px);
  overflow: clip auto;
}
.payment-modal > div#payment-form-div::-webkit-scrollbar {
  width: 0;
}
.discount-modal {
  width: fit-content;
  max-width: 550px;
  background-color: var(--black);
  display: none;
  justify-content: center;
  align-items: center;
  color: var(--black);
}
.discount-modal.active {
  display: flex;
}
.discount-modal > div {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}
.discount-modal > div > div:first-of-type {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.discount-modal > div > div:first-of-type > button {
  position: absolute;
  top: 15px;
  right: 15px;
  display: flex;
  width: 30px;
  height: 30px;
  background-color: var(--black);
  color: var(--white);
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  padding-bottom: 6px;
  font-size: 1.2rem;
  border: none;
}
.discount-modal > div > div:first-of-type > img {
  width: 100%;
  object-fit: cover;
  object-position: center bottom;
}
.discount-modal > div > div:nth-of-type(2) {
  display: flex;
  align-items: center;
  padding: 2rem 1rem;
  color: var(--white);
  flex-direction: column;
  gap: 0.5rem;
}
.discount-modal > div > div:nth-of-type(2) > p:first-of-type {
  font-size: 1.4rem;
  line-height: 1;
}
.discount-modal > div > div:nth-of-type(2) > p:nth-of-type(2) {
  line-height: 1;
  font-size: 2.2rem;
  font-weight: 900;
}
.discount-modal > div > div:nth-of-type(2) > p:nth-of-type(3) {
  font-weight: 200;
  font-size: 1.2rem;
}
.discount-modal > div > div:nth-of-type(2) > button:first-of-type {
  border: none;
  width: min(240px, 80%);
  background-color: #222;
  color: var(--white);
  font-size: 0.6rem;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0.5rem 1.2rem;
  border-radius: 1.2rem;
  font-weight: 500;
  gap: 0.5rem;
}
.discount-modal > div > div:nth-of-type(2) > button:nth-of-type(2) {
  border: none;
  width: min(240px, 80%);
  background-color: var(--white);
  color: var(--black);
  font-size: 0.6rem;
  display: flex;
  justify-content: center;
  margin-top: 0.3rem;
  align-items: center;
  padding: 0.5rem 1.2rem;
  border-radius: 1.2rem;
  font-weight: 500;
  gap: 0.5rem;
}
.discount-modal > div > div:nth-of-type(2) > button > svg {
  width: 20px;
  height: 20px;
}
.order-tracking-modal {
  width: fit-content;
  max-width: 550px;
  background-color: var(--white);
  display: none;
  justify-content: center;
  align-items: center;
  color: var(--black);
  max-height: 100dvh;
}
.order-tracking-modal.active {
  display: flex;
}
.order-tracking-modal > div:first-of-type {
  display: flex;
  flex-direction: column;
}
.order-tracking-modal > div > div:first-of-type {
  display: flex;
  align-items: center;
  padding: 1rem;
  justify-content: space-between;
}
.order-tracking-modal > div > div:first-of-type > button {
  background-color: transparent !important;
  padding: 0 0 0.2rem;
  font-size: 1.5rem;
}
.order-tracking-modal > div > div:nth-of-type(2) {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 590px;
  padding: 0 1rem;
}
.order-tracking-modal > div > div:nth-of-type(2) > img {
  width: 100%;
}
.order-tracking-modal > div > div:nth-of-type(3) {
  padding: 1rem;
  line-height: 1;
}
.order-tracking-modal > div > div:nth-of-type(3) > div {
  line-height: 1;
  font-size: 0.7rem;
  color: var(--gray-2);
  display: flex;
  gap: 1rem;
  margin-top: 0.3rem;
}
.order-tracking-modal > div > div:nth-of-type(3) > div > span:first-of-type {
  padding-right: 1rem;
  border-right: 2px solid var(--border-1);
}
.order-tracking-modal > div > div.track-div-wrapper {
  padding: 0 1rem 0 0;
  margin-bottom: 1rem;
  background-color: var(--white);
}
.order-tracking-modal > div > div.track-div-wrapper > div.track-div {
  padding: 0 1rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-height: 180px;
  overflow: clip auto;
}
.order-tracking-modal
  > div
  > div.track-div-wrapper
  > div.track-div::-webkit-scrollbar {
  width: 0.3rem;
}
.order-tracking-modal
  > div
  > div.track-div-wrapper
  > div.track-div::-webkit-scrollbar-thumb {
  background-color: var(--border-1);
  border-radius: 0.3rem;
}
.order-tracking-modal
  > div
  > div.track-div-wrapper
  > div.track-div::-webkit-scrollbar-track {
  background-color: var(--white);
  padding: 0.1rem;
  width: 0.2rem;
}
.order-tracking-modal > div > div.track-div-wrapper > div.track-div > div {
  display: flex;
  border-radius: 0.3rem;
  padding: 0.3rem;
  border: 0.5px solid #1e1e1e1a;
  align-items: center;
  gap: 0.5rem;
  position: relative;
}
.order-tracking-modal
  > div
  > div.track-div-wrapper
  > div.track-div
  > div
  > span:first-of-type {
  position: absolute;
  bottom: -33px;
}
.order-tracking-modal
  > div
  > div.track-div-wrapper
  > div.track-div
  > div:last-of-type
  > span:first-of-type {
  position: absolute;
  bottom: -33px;
  display: none;
}
.order-tracking-modal
  > div
  > div.track-div-wrapper
  > div.track-div
  > div.delivered
  > span:first-of-type
  > svg
  > path {
  fill: var(--black) !important;
}
.order-tracking-modal
  > div
  > div.track-div-wrapper
  > div.track-div
  > div
  > span:nth-of-type(2) {
  display: flex;
  width: 25px;
  height: 25px;
  justify-content: center;
  align-items: center;
}
.order-tracking-modal
  > div
  > div.track-div-wrapper
  > div.track-div
  > div
  > div {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  color: var(--gray);
  flex: 1;
}
.order-tracking-modal
  > div
  > div.track-div-wrapper
  > div.track-div
  > div
  > div
  > span:first-of-type {
  font-size: 0.8rem;
}
.order-tracking-modal
  > div
  > div.track-div-wrapper
  > div.track-div
  > div.delivered
  > div
  > span:first-of-type {
  color: var(--black);
}
.order-tracking-modal
  > div
  > div.track-div-wrapper
  > div.track-div
  > div
  > div
  > span:nth-of-type(2) {
  font-size: 0.6rem;
}
.notify-modal {
  display: none;
  padding: 0;
  flex-direction: column;
  background-color: var(--white);
  min-width: min(100dvw, 500px);
}
.notify-modal > div:first-of-type {
  color: var(--black);
  display: flex;
  padding: 0.5rem 1rem;
  justify-content: space-between;
  align-items: center;
  border: 1px solid var(--border-1);
}
.notify-modal > div:first-of-type > button {
  background-color: transparent;
  font-size: 1.5rem;
}
.notify-modal > div:nth-of-type(2) {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: var(--black);
  gap: 0.6rem;
}
.notify-modal > div:nth-of-type(2) > p:first-of-type {
  font-size: 1.3rem;
  max-width: 350px;
  text-align: center;
}
.notify-modal > div:nth-of-type(2) > label {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.notify-modal > div:nth-of-type(2) > label > span {
  color: var(--gray);
  font-size: 0.7rem;
}
.notify-modal > div:nth-of-type(2) > label > input {
  padding: 0.5rem;
  background-color: var(--white);
  border: 1px solid var(--border-1);
  color: var(--black);
}
.notify-modal > div:nth-of-type(2) > button {
  margin-top: 1rem;
  width: 85%;
  padding: 0.6rem 0;
  text-align: center;
  border: 1px solid var(--black);
  color: var(--white);
  background-color: var(--black);
  border-radius: 2rem;
}
#notify-error {
  display: none;
  font-size: 0.7rem;
  color: var(--red);
  margin: 0.3rem 0;
  text-align: left;
  width: 100%;
}
#notify-error.active {
  display: block;
}
.notify-modal.active {
  display: flex;
}
.login-email-modal {
  width: 90%;
  min-width: 750px;
  max-width: 750px;
  background-color: var(--white);
  display: none;
  height: fit-content;
  position: relative;
}
.login-email-modal.active {
  display: flex;
}
.login-email-modal > div:first-of-type {
  width: 45%;
  display: flex;
}
.login-email-modal > div:first-of-type > img {
  width: 100%;
}
.close-modal-btn-2 {
  width: 35px;
  height: 35px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #1e1e1e0d;
  color: var(--black);
  border: none;
  font-size: 1.3rem;
  border-radius: 50%;
  padding-bottom: 0 !important;
}
.login-email-modal > div:nth-of-type(2) {
  height: 100%;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.login-email-modal > div:nth-of-type(2) > div:first-of-type {
  width: 100%;
  justify-content: center;
  display: flex;
  padding: 1rem;
}
.login-email-modal > div:nth-of-type(2) > div:nth-of-type(2) {
  width: 100%;
  flex: 1;
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  padding: 2rem;
  color: var(--black);
  gap: 1rem;
  align-items: center;
}
.login-email-modal > div:nth-of-type(2) > div:nth-of-type(2) > span {
  background-color: var(--black);
  display: flex;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
}
.login-email-modal > div:nth-of-type(2) > div:nth-of-type(2) > label {
  width: 100%;
}
.login-email-modal > div:nth-of-type(2) > div:nth-of-type(2) > label > input {
  width: 100%;
  background-color: var(--white);
  padding: 1rem;
  border-radius: 2rem;
  color: var(--black);
  border: 1px solid var(--border-1);
}
.login-email-modal > div:nth-of-type(2) > div:nth-of-type(2) > p {
  width: 100%;
  text-align: center;
}
.login-email-modal > div:nth-of-type(2) > div:nth-of-type(2) > button {
  width: 100%;
  padding: 1rem;
  text-align: center;
  background-color: var(--black);
  color: var(--white);
  border: none;
  border-radius: 2rem;
}
#email-login-error {
  display: none;
  font-size: 0.7rem;
  color: var(--red);
  margin-top: -0.5rem;
  text-align: center;
  width: 100%;
  height: 15px;
}
#email-login-error.active {
  display: block;
}
.email-confirmation-modal {
  width: 90%;
  min-width: 750px;
  max-width: 750px;
  background-color: var(--white);
  display: none;
  height: fit-content;
  justify-content: center;
}
.email-confirmation-modal.active {
  display: flex;
}
.email-confirmation-modal > div:first-of-type {
  width: 45%;
  display: flex;
  flex-shrink: 0;
}
.email-confirmation-modal > div:first-of-type > img {
  width: 100%;
  aspect-ratio: 2 / 3;
}
.close-modal-btn-3 {
  width: 35px;
  height: 35px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #1e1e1e0d;
  color: var(--black);
  border: none;
  font-size: 1.3rem;
  border-radius: 50%;
  padding-bottom: 0 !important;
}
.email-confirmation-modal > div:nth-of-type(2) {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
}
.email-confirmation-modal > div:nth-of-type(2) > div:first-of-type {
  display: flex;
  width: 100%;
  justify-content: center;
  align-items: center;
  padding: 1rem;
  margin-bottom: 1rem;
}
.email-confirmation-modal > div:nth-of-type(2) > div:nth-of-type(2) {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.2rem;
}
.email-confirmation-modal > div:nth-of-type(2) > div:nth-of-type(2) > span {
  background-color: var(--black);
  width: 60px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
}
.email-confirmation-modal > div:nth-of-type(2) > div:nth-of-type(2) > p {
  width: 100%;
  text-align: center;
  color: var(--gray);
}
.email-confirmation-modal
  > div:nth-of-type(2)
  > div:nth-of-type(2)
  > p:first-of-type {
  font-size: 1.2rem;
  color: var(--black);
}
.email-confirmation-modal > div:nth-of-type(2) > div:nth-of-type(2) > label {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  width: 100%;
}
.email-confirmation-modal
  > div:nth-of-type(2)
  > div:nth-of-type(2)
  > label
  > input {
  max-width: 50px;
  height: 50px;
  text-align: center;
  border-radius: 50%;
  border: 1px solid #3c3c434a;
  background-color: #f2f2f766;
  color: var(--black);
}
.email-confirmation-modal
  > div:nth-of-type(2)
  > div:nth-of-type(2)
  > label
  > input:focus {
  border-color: var(--black);
}
.email-confirmation-modal
  > div:nth-of-type(2)
  > div:nth-of-type(2)
  > p.error-p {
  color: var(--red);
  font-size: 0.6rem;
  height: 18px;
  width: 100%;
}
.email-confirmation-modal > div:nth-of-type(2) > div:nth-of-type(2) > button {
  width: 100%;
  padding: 1rem;
  background-color: var(--black);
  color: var(--white);
  border-radius: 2rem;
  border: none;
  opacity: 0.5;
  cursor: not-allowed;
}
.email-confirmation-modal
  > div:nth-of-type(2)
  > div:nth-of-type(2)
  > button:enabled {
  opacity: 1;
  cursor: pointer;
}
@media screen and (width <= 899px) {
  .modal {
    height: calc(100% - 46px);
  }
  .login-modal-div {
    position: absolute;
    width: 100%;
    max-width: unset;
    min-width: unset;
    background-color: var(--white);
    top: 0;
    height: 100%;
  }
  .login-modal-div > div:first-of-type {
    display: none;
  }
  .login-modal-div > div:nth-of-type(2) {
    min-width: 100%;
    background-color: var(--white);
  }
  .info-modal-div {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    max-width: unset;
    background-color: var(--white);
    flex-direction: column;
    gap: 10px;
    height: calc(100% - 46px);
  }
  .write-review-modal,
  .cant-write-review-modal {
    width: 100%;
    height: 100%;
  }
  .discount-modal {
    max-width: min(550px, 94dvw);
    position: fixed;
    top: 0;
  }
  .notify-modal,
  .login-email-modal {
    height: 100%;
  }
  .login-email-modal > div:first-of-type {
    display: none;
  }
  .login-email-modal {
    width: 100%;
    max-width: unset;
    min-width: unset;
    min-height: 100%;
  }
  .email-confirmation-modal > div:first-of-type {
    display: none;
  }
  .email-confirmation-modal {
    width: 100%;
    max-width: unset;
    min-width: unset;
    min-height: 100%;
  }
}
@media screen and (width <= 600px) {
  .cant-write-review-modal {
    display: none;
    width: 100%;
    max-width: unset;
  }
  .order-tracking-modal > div > div:nth-of-type(3) > div {
    line-height: 1;
    font-size: 0.6rem;
    color: var(--gray-2);
    display: flex;
    gap: 1rem;
    margin-top: 0.3rem;
  }
  .order-tracking-modal > div > div.track-div-wrapper > div.track-div {
    max-height: 295px;
  }
}
body:has(.modal.active) {
  overflow: hidden !important;
}
