@font-face {
  font-family: "Goldman_regular";
  src: url("https://rietail-file-upload.s3.ap-south-1.amazonaws.com/styles/font/Graphik-Font/Goldman-Regular.ttf") format("opentype");
}
@font-face {
  font-family: "Goldman_bold";
  src: url("https://rietail-file-upload.s3.ap-south-1.amazonaws.com/styles/font/Graphik-Font/Goldman-Bold.ttf") format("opentype");
}
@font-face {
  font-family: "Montserrat";
  src: url("https://rietail-file-upload.s3.ap-south-1.amazonaws.com/styles/font/Graphik-Font/Montserrat-VariableFont_wght.ttf") format("opentype");
}
@font-face {
  font-family: "Inter";
  src: url("https://rietail-file-upload.s3.ap-south-1.amazonaws.com/styles/font/Graphik-Font/Inter-VariableFont_opsz,wght.ttf") format("opentype");
}
@font-face {
  font-family: "Joan";
  src: url("https://rietail-file-upload.s3.ap-south-1.amazonaws.com/styles/font/Graphik-Font/Joan-Regular.ttf") format("opentype");
}
@font-face {
  font-family: "Garamond";
  src: url("https://rietail-file-upload.s3.ap-south-1.amazonaws.com/styles/font/Graphik-Font/EBGaramond-Regular.ttf") format("opentype");
}
@font-face {
  font-family: "Poppins";
  src: url("https://rietail-file-upload.s3.ap-south-1.amazonaws.com/styles/font/Graphik-Font/Poppins-Regular.ttf") format("opentype");
}
body {
  font-family: Futura, Trebuchet MS, Arial, sans-serif;
  padding: 0;
  margin: 0;
  text-decoration: none;
  list-style: none;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

ul {
  list-style-type: none;
}

/* TYPOGRAPHY */
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
}

.p {
  margin-bottom: 1.5em;
  line-height: 1.8;
  color: var(--text-color);
}

a {
  text-decoration: none;
  transition: color var(--transition-speed);
}

.summary {
  list-style: none;
}

.input {
  padding: 8px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.input[type=checkbox] {
  width: 20px;
  margin: 5px 10px 0px 10px;
  cursor: pointer;
  height: 20px;
}

.input_error {
  margin: 8px 10px 0px 10px;
  color: red;
}

.btn_svg {
  height: 22px;
}

/* Background & Color & */
.primary_color {
  color: var(--primary-background-color);
}

.primary_text_color {
  color: var(--primary-text-color);
}

.sec_text_color {
  color: var(--secondary-background-color);
}

.w_color {
  color: white;
}

.blue {
  color: blue;
}

.dodgerblue {
  color: dodgerblue;
}

.red {
  color: red;
}

.gray {
  color: gray;
}

.price_color {
  color: rgb(164, 3, 3);
}

.discount_color {
  color: #388e3c;
}

.primary_back_color {
  background-color: var(--primary-background-color);
}

.secondary_back_color {
  background-color: var(--secondary-background-color);
}

.gray_back_color {
  background-color: var(--gray-background-color);
}

.wish_back_color {
  background-color: var(--wish-background-color);
}

/* Hover -- Background & Color & */
.p_hover_color:hover {
  color: var(--primary-hover-color);
}

/* COMMON BUTTON STYLES */
.cancel_btn {
  background: tomato;
  color: white;
  padding: 5px 10px;
}

button {
  padding: 10px 20px;
  border: none;
  cursor: pointer;
  background-color: transparent;
  border-radius: var(--border-radius);
}

.save_btn {
  background: royalblue;
  color: white;
  padding: 5px 10px;
}

.chips {
  padding: 5px 10px;
  color: whitesmoke;
  border-radius: 20px;
  font-size: 13px;
  margin: 0px 10px;
}

/* LAYOUT & GRID */
.container {
  width: 100%;
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 15px;
}

.hidden {
  overflow: hidden;
}

.break {
  word-wrap: break-word;
}

.pointer {
  cursor: pointer;
}

svg {
  height: 25px;
}

.display_mob {
  display: none !important;
}

.display_web {
  display: block;
}

.relative {
  position: relative;
}

.absolute {
  position: absolute;
}

.flex {
  display: flex;
}

.block {
  display: block;
}

.grid {
  display: grid;
}

.flex_wrap {
  display: flex;
  flex-wrap: wrap;
}

.flex_column {
  display: flex;
  flex-direction: column;
}

.flex_all_centre {
  display: flex;
  align-items: center;
  justify-content: center;
}

.flex_centre {
  display: flex;
  justify-content: center;
}

.flex_space_around {
  display: flex;
  justify-content: space-around;
}

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

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

.flex_btn_start {
  display: flex;
  justify-content: space-between;
  align-items: start;
}

.flex_d_row_m_col {
  display: flex;
  flex-direction: row;
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin-left: calc(-1 * var(--grid-gap) / 2);
  margin-right: calc(-1 * var(--grid-gap) / 2);
}

.col {
  flex: 1;
  padding: calc(var(--grid-gap) / 2);
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--grid-gap);
}

.no_data {
  line-height: 50vh;
}

.outer_div {
  position: fixed;
  top: 0px;
  right: 0px;
  bottom: 0px;
  left: 0px;
  z-index: 10;
}

.outer_space {
  transition: background-color 0.3s linear;
  background-color: rgba(0, 0, 0, 0.5);
}

.outline_button {
  border: 1px solid var(--primary-color);
  color: var(--primary-color);
}

.popup {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  z-index: 1000;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  background-color: rgba(0, 0, 0, 0.5);
}

.popup_mobile {
  position: absolute;
  left: 35%;
  right: 35%;
  top: 25%;
  height: fit-content;
  margin: auto;
  border-radius: 20px;
  background: white;
  padding: 40px;
  transition: height 10s;
  animation-duration: 0.5s;
  animation-name: openDataPopup;
  transition: opacity 0.5s;
}

.popup_top {
  min-height: 250px;
  top: 15% !important;
}

.popup_inner {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  min-width: 25%;
  max-width: 60%;
  height: fit-content;
  margin: auto;
  border-radius: 5px;
  background: white;
  transition: height 10s;
  animation-duration: 0.5s;
  animation-name: openPopup;
  transition: opacity 0.5s;
}

.popup_close_icon svg {
  float: right;
  font-size: 25px;
  position: relative;
  top: -15px;
  right: -15px;
  cursor: pointer;
  height: 35px;
}

/* UTILITIES */
.x-scroll {
  overflow-x: scroll;
}

.r-10 {
  right: 10px;
}

.m-1 {
  margin: 10px;
}

.m-15 {
  margin: 15px;
}

.m-2 {
  margin: 20px;
}

.mt-1 {
  margin-top: 10px;
}

.mt-2 {
  margin-top: 20px;
}

.mt-25 {
  margin-top: 25px;
}

.mt-30 {
  margin-top: 30px;
}

.mb-1 {
  margin-bottom: 10px;
}

.mb-15 {
  margin-bottom: 15px;
}

.mb-2 {
  margin-bottom: 20px;
}

.mtb-1 {
  margin: 10px 0px;
}

.mtb-15 {
  margin: 15px 0px;
}

.mtb-2 {
  margin: 20px 0px;
}

.mtb-3 {
  margin: 30px 0px;
}

.mlr-2 {
  margin: 0px 20px;
}

.m-auto {
  margin: 0px auto;
}

.m30-auto {
  margin: 30px auto;
}

.m5-10 {
  margin: 5px 10px;
}

.p-1 {
  padding: 10px;
}

.p-15 {
  padding: 15px;
}

.p-2 {
  padding: 20px;
}

.p-30 {
  padding: 30px;
}

.ptb-15 {
  padding: 15px 0px;
}

.plr-15 {
  padding: 0px 15px;
}

.ptb-2 {
  padding: 20px 0px;
}

.plr-2 {
  padding: 0px 20px;
}

.pt-2 {
  padding-top: 20px;
}

.pb-1 {
  padding-bottom: 10px;
}

.pb-2 {
  padding-bottom: 20px;
}

.pr-2 {
  padding-right: 20px;
}

.pl-2 {
  padding-left: 20px;
}

.pr-40 {
  padding-right: 40px;
}

.p10-20 {
  padding: 10px 20px;
}

.p20-15 {
  padding: 20px 15px;
}

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

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

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

.text_cap {
  text-transform: capitalize;
}

.height-40 {
  height: 40px;
}

.height-20 {
  height: 20px;
}

.height-25 {
  height: 25px;
}

.vh-25 {
  height: 25vh;
}

.vh-50 {
  height: 50vh;
}

.vh-75 {
  height: 75vh;
}

.vh-100 {
  height: 100vh;
}

.width-5 {
  width: 5%;
}

.width-10 {
  width: 10%;
}

.width-15 {
  width: 15%;
}

.width-20 {
  width: 20%;
}

.width-25 {
  width: 25%;
}

.width-30 {
  width: 30%;
}

.width-35 {
  width: 35%;
}

.width-40 {
  width: 40%;
}

.width-45 {
  width: 45%;
}

.width-50 {
  width: 50%;
}

.width-55 {
  width: 55%;
}

.width-60 {
  width: 60%;
}

.width-65 {
  width: 65%;
}

.width-70 {
  width: 70%;
}

.width-75 {
  width: 75%;
}

.width-80 {
  width: 80%;
}

.width-85 {
  width: 85%;
}

.width-90 {
  width: 90%;
}

.width-95 {
  width: 95%;
}

.width-100 {
  width: 100%;
}

.width-fit {
  width: fit-content;
}

.gap-5 {
  gap: 5px;
}

.gap-6 {
  gap: 6px;
}

.gap-10 {
  gap: 10px;
}

.gap-15 {
  gap: 15px;
}

.gap-20 {
  gap: 20px;
}

.gap-25 {
  gap: 25px;
}

.gap-30 {
  gap: 30px;
}

.gap-35 {
  gap: 35px;
}

.gap-40 {
  gap: 40px;
}

.gapL-20 {
  gap: 0px 20px;
}

.grid-2fr {
  grid-template-columns: 1fr 1fr;
}

.font-11 {
  font-size: 11px;
}

.font-12 {
  font-size: 12px;
}

.font-13 {
  font-size: 13px;
}

.font-14 {
  font-size: 14px;
}

.font-15 {
  font-size: 15px;
}

.font-16 {
  font-size: 16px;
}

.font-17 {
  font-size: 17px;
}

.font-18 {
  font-size: 18px;
}

.font-19 {
  font-size: 19px;
}

.font-20 {
  font-size: 20px;
}

.font-22 {
  font-size: 22px;
}

.font-25 {
  font-size: 25px;
}

.font-bold {
  font-weight: bold;
}

.flex-1 {
  flex: 1;
}

.border-gray {
  border: 1px solid lightgray;
}

.border-b-gray {
  border-bottom: 1px solid lightgray;
}

.border-t-gray {
  border-top: 1px solid lightgray;
}

.border-r-gray {
  border-right: 1px solid lightgray;
}

.border-l-gray {
  border-left: 1px solid lightgray;
}

.lh-2_5 {
  line-height: 2.5;
}

.lh-2 {
  line-height: 2;
}

.lh-1_7 {
  line-height: 1.7;
}

.br-5 {
  border-radius: 5px;
}

.br-7 {
  border-radius: 7px;
}

.br-10 {
  border-radius: 10px;
}

.br-8 {
  border-radius: 8px;
}

.br-20 {
  border-radius: 20px;
}

.br-35 {
  border-radius: 35px;
}

.text-ellipsis {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* ------------------------------------------------------------------------------------------------------------- *\

/* SIDE NAVBAR */
.popup2 {
  position: fixed;
  width: 100%;
  height: auto;
  top: 0;
  z-index: 500;
  left: 0;
  bottom: 0;
  margin: auto;
  background-color: rgba(0, 0, 0, 0.5);
}

.popupInner2 {
  background-color: #f1f1f1;
  color: #333;
  padding: 30px 20px;
  z-index: 100;
  position: fixed;
  top: 0;
  width: 27%;
  height: 100%;
  background-color: white;
  float: right;
  /* padding-left: 20px; */
  display: flex;
  flex-direction: column;
  overflow: auto;
}

.closeIcon {
  font-size: 18px;
  font-weight: bold;
  text-align: right;
  margin: 0px 20px;
}

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

@keyframes openDataPopup {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes openPopup {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes closePopup {
  0% {
    top: 0%;
  }
  100% {
    top: 100%;
  }
}
@keyframes sh02 {
  from {
    opacity: 0;
    left: 0%;
  }
  50% {
    opacity: 1;
  }
  to {
    opacity: 0;
    left: 100%;
  }
}
.whatsAppChat {
  position: fixed;
  bottom: 25px;
  right: 25px;
  background-color: #25d366;
  color: #FFF;
  border-radius: 50px;
  text-align: center;
  padding: 10px 9px 6px 10px;
  z-index: 100;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}
.whatsAppChat svg {
  height: 40px !important;
}

.whatsAppChat:hover {
  color: #FFF;
  cursor: pointer;
}

.pageNotFoundContainer {
  height: 80vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 50px auto;
}

.pageNotFoundImage {
  width: 550px;
}

/* ------------------------------------------------------------------------------------------------------------- */
@media only screen and (min-width: 768px) and (max-width: 1050px) {
  .popupInner2 {
    width: 50%;
  }
  .popup_mobile {
    left: 30% !important;
    right: 30% !important;
    padding: 40px !important;
  }
  .popup_inner {
    min-width: 50%;
    max-width: 75%;
  }
}
@media (max-width: 768px) {
  .input[type=checkbox] {
    width: 17px;
    height: 17px;
  }
  .display_mob {
    display: block !important;
  }
  .display_web {
    display: none !important;
  }
  .popup_mobile {
    left: 5% !important;
    right: 5% !important;
    padding: 25px !important;
  }
  .popupInner2 {
    width: 80%;
  }
  .popup_inner {
    min-width: 90%;
    max-width: 90%;
  }
  .whatsAppChat {
    width: 45px;
    height: 45px;
    font-size: 25px;
    bottom: 30px;
    right: 30px;
  }
  .flex_d_row_m_col {
    flex-direction: column;
  }
}
/* ------------------------------------------------------------------------------------------------------------- *\

/* VIEW ALL CHECKOUT */
.viewCheckoutContainer {
  margin: 20px auto;
  max-width: 1200px;
}

.viewCartTitle {
  font-size: 20px;
  font-weight: bold;
  padding-bottom: 10px;
  border-bottom: 1px solid lightgrey;
}

.viewCartContainer {
  display: flex;
  gap: 20px;
}

.viewSummaryContainer {
  width: 350px;
  position: sticky;
  top: 60px;
  height: fit-content;
  border: 1px solid lightgrey;
  margin: 10px 0px;
}

.viewCartProductContainer {
  width: calc(100% - 350px);
  margin: 10px 0px;
  border: 1px solid lightgray;
}

.viewCartFlexContainer {
  display: flex;
  gap: 20px;
}

.viewCartAddAddress {
  padding: 20px 10%;
}

.changeBtn {
  color: #34A4D4;
  padding: 10px 20px;
  font-weight: bold;
  height: fit-content;
  cursor: pointer;
}

.orderSummaryProductContainer {
  margin: 15px 0px;
  border: 1px solid lightgrey;
  border-radius: 10px;
}

.checkoutSummaryDetail {
  padding: 0px 20px 20px;
}

.paypal_popup {
  padding: 25px;
}

.bookingContainer {
  margin: 20px auto;
  max-width: 1200px;
}

.cartContainer {
  display: flex;
  gap: 20px;
}

.orderProductContainer {
  width: calc(100% - 350px);
  margin: 10px 0px;
  border: 1px solid lightgray;
}

.addr_title {
  margin-top: 15px;
}

.summaryContainer {
  width: 350px;
  position: sticky;
  top: 60px;
  height: fit-content;
  border: 1px solid lightgrey;
  margin: 10px 0px;
}

.transaction_detail {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 8px;
}

@media (max-width: 950px) {
  .viewCartAddAddress {
    padding: 20px 4%;
  }
  .bookingContainer {
    margin: 20px 15px;
  }
  .summaryContainer {
    width: 100%;
  }
  .cartContainer {
    flex-direction: column;
  }
  .viewCheckoutContainer {
    margin: 20px 15px;
  }
  .viewCartTitle {
    font-size: 18px;
  }
  .viewCartContainer {
    flex-direction: column;
  }
  .viewSummaryContainer {
    width: 100%;
  }
  .viewCartFlexContainer {
    flex-direction: column;
  }
  .viewCartProductContainer {
    width: 100%;
    margin: 10px 0px;
    border: 1px solid lightgray;
  }
  .orderProductContainer {
    width: 100%;
    margin: 10px 0px;
    border: 1px solid lightgray;
  }
}
@media only screen and (min-width: 951px) and (max-width: 1200px) {
  .bookingContainer {
    margin: 20px 15px;
  }
  .viewCheckoutContainer {
    margin: 20px 15px;
  }
}
/* ------------------------------------------------------------------------------------------------------------- */
.checkoutContainer {
  display: flex;
  gap: 20px;
  justify-content: space-between;
  padding: 20px 20px;
}

.checkoutDetailRow {
  width: calc(100% - 150px);
}

.stepperContainer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 60%;
  position: relative;
  padding: 20px;
  margin: 10px auto;
}

.stepContainer {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  flex: 1;
}

.circle {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: #e0e0e0;
  border: 2px solid #e0e0e0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
  transition: background-color 0.3s, border 0.3s, color 0.3s;
}

.circle.completed {
  border: 2px solid #4285f4;
  background-color: #4285f4;
}

.circle.active {
  border: 2px solid #4285f4;
  color: #4285f4;
}

.stepLabel {
  margin-top: 8px;
  text-align: center;
  font-size: 14px;
}

.line {
  width: 100%;
  height: 2px;
  background-color: #e0e0e0;
  position: absolute;
  top: 14px;
  left: 50%;
  z-index: -1;
  transition: background-color 0.3s, width 0.3s, left 0.3s;
}

.line.completed {
  background-color: #4285f4;
}

.stepContainer:first-child .line {
  left: 50%;
}

.stepContainer:last-child .line {
  width: 50%;
  left: 0;
}

@media (max-width: 950px) {
  .stepperContainer {
    width: 100%;
    padding: 20px 0px;
  }
}
/* ------------------------------------------------------------------------------------------------------------- *\

/* Checkout Summary */
.summaryDetail {
  padding: 20px 50px;
}

.booking_payment_container {
  border-width: 1px;
  box-sizing: border-box;
  border-color: #C7C7C7;
  border-radius: 8px;
  line-height: 1.7;
  border-style: solid;
  margin: 15px 0px;
}

.option {
  display: flex;
  align-items: center;
  padding: 0px 20px;
  height: 55px;
  border-radius: 5px;
}

.booking_active {
  background-color: #E8F0FE;
  border: 1px solid #357EDD;
}

.optionInput {
  transform: scale(1.2);
}

.booking_label {
  margin-left: 10px;
  width: 100%;
  cursor: pointer;
  height: 100%;
  font-size: 14px;
  line-height: 55px;
}

.coupen_container {
  margin: 15px 0px 20px;
}

.coupen_input_container {
  display: flex;
  align-items: center;
  width: 100%;
  gap: 20px;
  margin-top: 10px;
}

.coupen_input {
  width: 80%;
  flex: 1;
  align-self: stretch;
  padding: 0px 10px;
  border-radius: 5px;
  outline: 1px solid grey;
  border: 1px solid grey;
}

.coupen_input:focus {
  outline: 1px solid #357EDD;
  border: 1px solid #357EDD;
}

.coupen_button {
  padding: 13px 15px;
  border: none;
  border-radius: 4px;
  background-color: #34A4D4;
  color: white;
  font-weight: bold;
  cursor: pointer;
  font-size: 16px;
  width: 20%;
}

.coupen_error_msg {
  display: flex;
  padding: 10px 15px;
  align-items: center;
  justify-content: space-between;
  border: 1px solid lightgray;
  margin-top: 10px;
  border-radius: 5px;
  font-size: 14px;
}
.coupen_error_msg svg {
  cursor: pointer;
}

.applied_coupen {
  border: 1px solid lightgray;
  padding: 10px 10px;
  display: flex;
  border-radius: 5px;
  margin-top: 10px;
  align-items: center;
  gap: 5px;
  font-size: 14px;
  width: fit-content;
}
.applied_coupen svg {
  height: 15px;
  width: 15px;
}

.detailsRow {
  border-width: 1px;
  box-sizing: border-box;
  border-color: #C7C7C7;
  border-radius: 8px;
  line-height: 1.7;
  border-style: solid;
  margin-top: 15px;
  padding: 10px 20px;
}

.productBorder:not(:last-child) {
  border-bottom: 1px solid lightgray;
}

.variantTable {
  margin-top: 20px;
  width: 100%;
  border: 1px solid lightgrey;
  border-collapse: collapse;
  table-layout: fixed;
}
.variantTable th,
.variantTable td {
  border-bottom: 1px solid lightgrey;
  border-collapse: collapse;
  padding: 10px 15px;
  text-align: center;
}
.variantTable th {
  background-color: #f3f3f3;
}

.set_detailContainer {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 0px 20px;
}

@media (max-width: 950px) {
  .summaryDetail {
    padding: 20px 15px;
  }
}
/* ------------------------------------------------------------------------------------------------------------- */
.checkoutContainer {
  display: flex;
  gap: 20px;
  justify-content: space-between;
  padding: 20px 20px;
}

.checkoutDetailRow {
  width: calc(100% - 150px);
}

.detailRow {
  display: flex;
  gap: 20px;
}

.imageContainerCheckOut {
  width: 80px;
  cursor: pointer;
}

.image {
  width: 100%;
  height: 100%;
  border: 1px solid lightgray;
  object-fit: cover;
  object-position: top;
}

.checkoutTitle {
  font-weight: 600;
  margin-bottom: 5px;
  cursor: pointer;
  color: black;
  text-wrap: wrap;
  word-break: break-word;
}

.priceContainer {
  display: flex;
  gap: 10px;
  align-items: center;
  margin: 10px 0px;
}

.productPrice {
  font-weight: bold;
}

.mrp {
  color: #878787;
}

.discount {
  color: #388e3c;
  font-weight: 600;
}

@media (max-width: 575px) {
  .imageContainerCheckOut {
    width: 60px;
  }
  .CheckoutTypeContainer {
    padding: 15px 12px;
  }
  .detailRow {
    gap: 10px;
    width: 100%;
    font-size: 14px !important;
  }
  .productName {
    font-size: 13px;
  }
  .productPriceContainer {
    gap: 5px;
    font-size: 14px;
  }
}
@media (max-width: 758px) {
  .checkoutContainer {
    padding: 15px 12px;
    flex-direction: column;
    gap: 10px;
  }
  .order_confirm_container {
    padding: 50px 0px;
  }
  .order_card {
    padding: 40px 20px;
  }
}
/* ------------------------------------------------------------------------------------------------------------- *\
/* Order Confirmed */
.order_confirm_container {
  padding: 100px 0px;
  background-color: aliceblue;
}

.order_card {
  border-radius: 8px;
  padding: 40px;
  text-align: center;
  width: 100%;
}

.checkMark {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background-color: #34A4D4;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 40px auto;
  position: relative;
  animation: animate 0.6s linear alternate-reverse infinite;
  transition: 0.6s ease;
}

.checkMarkIcon {
  font-size: 36px;
  color: #fff;
}

.order_description {
  color: #888;
  margin-bottom: 30px;
}

.viewOrderButton {
  background-color: #fff;
  color: #34A4D4;
  border: 1px solid #34A4D4;
}

.continueShoppingButton {
  background-color: #34A4D4;
  color: #fff;
}

.fulfilled {
  background-color: rgb(215, 215, 255);
  color: blue;
  padding: 5px 10px;
  border-radius: 10px;
  width: fit-content;
  font-size: 14px;
}

.unfulfilled {
  background-color: rgb(255, 218, 218);
  width: fit-content;
  color: red;
  padding: 5px 10px;
  border-radius: 10px;
  font-size: 14px;
}

@keyframes animate {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.09);
  }
}
/* ------------------------------------------------------------------------------------------------------------- *\
/* Address List */
.address_addNewBtn {
  width: fit-content;
  display: flex;
  cursor: pointer;
  align-items: center;
  gap: 5px;
  font-weight: 600;
  color: #134358;
}
.address_addNewBtn svg {
  height: 20px;
  width: 20px;
}

.address_titleRow {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 20px;
  border-bottom: 1px solid lightgray;
}

.address_title {
  font-weight: bold;
  font-size: 20px;
}

.address_detailsRow {
  border-width: 1px;
  box-sizing: border-box;
  border-color: #C7C7C7;
  border-radius: 8px;
  position: relative;
  line-height: 1.7;
  box-shadow: 0 2px 1px 0 rgba(0, 0, 0, 0.16);
  border-style: solid;
}

.address_bg {
  background-color: #f1fbff;
  border-width: 1px;
  box-sizing: border-box;
  border-color: #C7C7C7;
  border-radius: 8px;
  position: relative;
  line-height: 1.8;
  box-shadow: 0 2px 1px 0 rgba(0, 0, 0, 0.16);
  border-style: solid;
}

.address_editAddress {
  color: dodgerblue;
  font-size: 15px;
  cursor: pointer;
}

.address_addressActions {
  display: flex;
  gap: 10px;
  justify-content: right;
  padding: 10px 15px;
}

.address_addressBox {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid lightgray;
}

.address_addressActive {
  display: flex;
  gap: 10px;
  padding: 10px 15px;
}

.address_removeAddress {
  color: red;
  font-size: 15px;
  cursor: pointer;
}

.address_addressUserName {
  font-weight: 700;
  font-size: 15px;
}

.address_otherDetails {
  color: #0f1111;
  word-wrap: break-word;
}

.address_addressDetails {
  padding: 10px 20px;
}

.address_listRow {
  padding: 20px 50px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.address_wishlistBtn {
  border: 1px solid lightgrey;
  border-radius: 5px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 7px 10px;
  cursor: pointer;
  font-size: 14px;
}
.address_wishlistBtn svg {
  width: 20px;
  height: 20px;
}

.address_wishlistBtn:hover {
  background-color: #d6edf6;
}

.address_updateRow {
  margin-top: 20px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.address_submitButton {
  padding: 15px;
  border: none;
  border-radius: 4px;
  background-color: #34A4D4;
  color: white;
  font-weight: bold;
  cursor: pointer;
  font-size: 16px;
  width: 100%;
  margin-top: 20px;
}

@media (max-width: 950px) {
  .address_title {
    font-weight: bold;
    font-size: 16px;
  }
  .address_addNewBtn {
    font-size: 14px;
  }
  .address_titleRow {
    padding: 15px 10px;
  }
  .address_listRow {
    padding: 20px 15px;
  }
  .address_addressBox {
    font-size: 14px;
  }
}
@media (max-width: 550px) {
  .address_spacer {
    display: none;
  }
  .address_addressActive {
    flex-direction: column;
    gap: 0px;
  }
  .address_submitButton {
    margin-top: 10px;
  }
  .address_addressDetails {
    font-size: 14px !important;
  }
  .address_updateRow {
    flex-direction: column;
  }
  .address_wishlistBtn {
    width: 100%;
    justify-content: center;
  }
}
/* ------------------------------------------------------------------------------------------------------------- */
/* ACCOUNT */
.account_container {
  gap: 40px;
  width: 80%;
  margin: 50px auto;
}

.account_menu {
  width: 25%;
}

.account_active {
  width: 75%;
}

.account_menu_sticky {
  position: sticky;
  top: 80px;
}

.border_profile {
  border-bottom: 1px solid rgba(211, 211, 211, 0.7215686275);
}

.profile_menu_title {
  padding: 0px 5px 0px 70px;
}

.profile_menu_title:hover,
.profile_menu_title.active {
  background-color: #ecf6ff;
}

@media only screen and (min-width: 1050px) and (max-width: 1200px) {
  .account_container {
    gap: 30px;
    width: 85%;
    margin: 30px auto;
  }
  .account_menu {
    width: 30%;
  }
  .account_active {
    width: 70%;
  }
}
@media (max-width: 768px) {
  .account_container {
    width: 100%;
    margin: 0px auto;
  }
  .account_active {
    width: 100%;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1050px) {
  .account_container {
    gap: 25px;
    width: 90%;
    margin: 25px auto;
  }
  .account_menu {
    width: 35%;
  }
  .account_active {
    width: 65%;
  }
}

/*# sourceMappingURL=style.css.map */
