/* Global reset */
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: "font-regular" !important;
}

.test {
  display: none;
}

:root {
  --color-prime: #002340;
  --color-second: #b4ff00;
  --color-grey: #80919f;
  --color-shadow-grey: #e5e9ec;
  --color-white: #ffffff;
  --color-alice-blue: #f2f4f5;
  --color-orange: #ffba0f;
}

.hide {
  display: none !important;
}

#block-webview-content {
  padding-left: 1rem;
}

/* Header */
.headerTitle {
  width: 100%;
  color: #002340;
  white-space: nowrap;
  margin-top: 2rem;
  margin-bottom: 0.5rem;
  margin-left: 1rem;
  font-size: 1.5rem;
}

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

/* Card */
.containerContent__card {
  /*flex: 0 0 calc(50% - 20px); !* Set the width for two columns with a gap of 20px *!*/
  width: calc(45% - 20px);
  /* Set the max-width to ensure equal columns */
  border-width: 1.8px;
  padding: 10px;
  /*margin: 10px; !* Add back the 10px margin removed from the container *!*/
  border-style: solid;
  border-color: #002340;
  border-radius: 10px;
  box-sizing: border-box;
  /* Include padding and border in the width */
}

/* Main Card */
.containerContent__card.main {
  width: 100%;
  border-width: 1.8px;
  padding: 10px;
  margin: 1rem;
  border-style: solid;
  border-color: #002340;
  border-radius: 10px;
}

/* Shop Card*/
.shop {
  background-color: var(--color-prime);
  color: var(--color-white);
}

.containerContent__card.shop > div {
}

/* Thin text - Description */
.containerContent__thinLabel {
  color: #80919f;
  margin-top: 0.5rem;
  padding-left: 0.5rem;
  display: flex;
  /* flex-direction: row; */
  align-content: center;
  /* align-items: center; */
}

.descriptionContainer > p {
  margin: 1.5rem;
  width: 88%;
  white-space: pre-wrap;
}

.containerContent__card.shop .containerContent__deliverylabel {
  color: var(--color-white);
  font-size: 12px;
  font-weight: 100;
}

/* Result container */

.result-container {
  display: flex;
  /* Use flexbox for the container */
  flex-wrap: wrap;
  /* Allow items to wrap to the next row */
  justify-content: flex-start;
  /* Distribute items evenly in two columns */
  gap: 20px;
  counter-reset: boxOrder;
}

.result-container > * {
  counter-increment: boxOrder;
  order: counter(boxOrder);
}

/*content: "✔";*/
.success-checkmark:after {
  display: inline-block;
  content: url(../images/success-check.svg);
  width: 20px;
  height: 20px;
  text-align: center;
  border: 3px solid #b4ff00;
  background: #f8f8f8;
  border-radius: 50%;
  color: var(--color-second);
}

.error-checkmark:after {
  display: inline-block;
  content: url(../images/error-check.svg);
  width: 20px;
  height: 20px;
  text-align: center;
  border: 3px solid #ffba0f;
  background: #f8f8f8;
  border-radius: 50%;
  color: var(--color-orange);
}

.availabilityText {
  font-size: 14px;
  margin-right: 0.5rem;
  white-space: nowrap;
}

.containerContent__addresslabel {
  color: #002340;
  padding: 0.5rem;
  max-height: 3rem;
  overflow: hidden;
  /*white-space: nowrap;*/
  text-overflow: ellipsis;
  vertical-align: top;
  /* word-wrap: break-word;
  white-space: normal;
  max-width: 100%;  */
}

.containerContent__addresslabel::before {
  content: attr(data-tooltip);
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  padding: 5px;
  background-color: #333;
  color: #fff;
  border-radius: 3px;
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
  white-space: nowrap;
}

.containerContent__addresslabel:hover::before {
  opacity: 1;
}

.containerContent__citylabel {
  padding-left: 0.5rem;
  font-family: "font-light" !important;
}

.containerContent__label {
  display: inline-block;
}

.hidden {
  display: none;
}

.none {
  display: none;
}

.containerContent__deliverylabel {
  font-weight: 100;
  font-size: 12px;
  white-space: pre-line;
  width: 169px;
  display: inline-block;
}

.containerContent__thinLabel > span {
  /* padding-top: 1rem; */
}

.containerContent__labelBold {
  font-weight: bold;
  display: inline-block;
}

.containerContent__availability-row__Two {
  display: flex;
  justify-content: space-between;
  padding-top: 0.5rem;
}

.containerContent__availability-row__Two > .containerContent__thinLabel {
  padding: 0px;
}

.containerContent__availability-row__Two > button {
  margin: 0px;
}

.containerContent__availability {
  padding-top: 0.5rem;
  display: inline-block;
}

.containerContent__availability > span {
  margin-right: 0.5rem;
}

.cnt {
  display: flex;
  justify-content: flex-end;
}

.mapContainer__mobile-content {
  border-radius: 10px;
  background-color: #002340;
  max-width: 497px;
  height: 100%;
}

input[type="text"] {
  padding: 1rem;
  margin-top: 0.5rem;
  width: 97%;
  height: 3rem;
  border-radius: 12px;
  border: 2px solid #e5e9ec;
  border-width: 2.5px;
}

input[type="text"]:focus {
  outline: none;
  border-color: #002340;
}

.inputContainer {
  position: relative;
}

.userInput {
  padding-right: 30px;
}

.clearInput {
  position: absolute;
  top: 68%;
  right: 2rem;
  transform: translateY(-50%);
  font-size: 12px;
  cursor: pointer;
  display: none;
  color: #80919f;
}

.clearInput::before {
  content: "";
  display: block;
  width: 18px;
  height: 18px;
  border: 2px solid #80919f;
  border-radius: 50%;
  box-sizing: border-box;
  text-align: center;
  line-height: 12px;
  position: absolute;
  top: 50%;
  right: -4px;
  transform: translateY(-50%);
}

.clearInput::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.containerContent__orderlabel {
  margin-top: 1rem;
  font-weight: 200;
  font-size: 11.5px;
  text-decoration: underline;
  display: inline-block;
}

.containerContent__content {
  padding: 10px;
}

.containerContent {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  justify-items: center;
}

.containerContent__info {
  /* display: flex; */
  margin-top: 1.5rem;
  margin-bottom: 1rem;
  /* justify-content: space-between; */
  width: 88.5%;
  /* background-color: var(--color-prime); */
  color: var(--color-second);
  /* border-radius: 8px; */
  flex-shrink: 0;
  /* border: 1px solid #002340; */
}

.containerContent__info .notFound-label {
  margin-top: 1rem;
}

.containerContent__info .info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem;
  font-style: normal;
  font-weight: bold;
  gap: 11rem;
  color: #80919f;
  border-radius: 8px;
  background-color: var(--color-prime);
  border: 1px solid #002340;
}

.info-row {
  display: flex;
  align-items: center;
}

.info > svg {
  margin-top: 5px;
}

.info p {
  margin-left: 10px;
}

.info_txt {
  display: inline-block;
  /*display: flex;*/
  /*justify-content: space-between;*/
  /*margin-bottom: 20px;*/
  color: var(--color-second);
}

.containerContent__info-secondary {
  display: flex;
  margin-top: 1.5rem;
  margin-bottom: 1rem;
  justify-content: space-between;
  width: 88.5%;
  height: auto;
  background-color: #c4dfe9;
  border-radius: 8px;
  flex-shrink: 0;
  border: 1px solid #002340;
}

.containerContent__info-secondary p {
  color: var(--color-prime);
}

.containerContent__info-secondary .info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem;
  font-style: normal;
  font-weight: bold;
  color: #80919f;
  border-radius: 8px;
}

.containerContent__info-secondary button {
  width: auto;
  white-space: nowrap;
}

.containerContent__info-secondary p {
}

.btn-outline {
  margin-left: 1rem;
  color: var(--color-prime);
  background-color: #c4dfe9;
  cursor: pointer;
  font-weight: bold;
  border: 2px solid var(--color-prime);
  border-radius: 20px;
  width: 250px;
  padding: 8px;
}

.btn-primary {
  color: var(--color-white);
  background-color: var(--color-prime);
  cursor: pointer;
  font-weight: bold;
  border: 2px solid var(--color-prime);
  border-radius: 20px;
  width: 150px;
  padding: 8px;
}

.color__greenDot {
  height: 20px;
  width: 20px;
  background-color: #b4ff00;
  border-radius: 50%;
  display: inline-block;
}

.color__redDot {
  height: 20px;
  width: 20px;
  border-radius: 50%;
  display: inline-block;
  background-color: #cf2031;
}

.color__whiteDot {
  height: 20px;
  width: 20px;
  border-radius: 50%;
  display: inline-block;
  background-color: #edd6bf;
}

.color__pinkDot {
  height: 20px;
  width: 20px;
  border-radius: 50%;
  display: inline-block;
  background-color: #8c7192;
}

.color__blueDot {
  height: 20px;
  width: 20px;
  border-radius: 50%;
  display: inline-block;
  background-color: #002340;
}

.color__whiteBlueDot {
  height: 20px;
  width: 20px;
  border-radius: 50%;
  display: inline-block;
  background-color: #069adf;
}

.color__darkDot {
  height: 20px;
  width: 20px;
  border-radius: 50%;
  display: inline-block;
  background-color: #1c232b;
}

.containerContent__colors {
  /* margin-left: 0.5rem; */
  display: flex;
  gap: 5px;
  margin-left: 10px;
}

.containerContent__colors > span {
  margin: 0 2.5px;
  /* margin-top: 1.5rem; */
  width: 19px;
  height: 19px;
  border-radius: 50%;
  border: 1px solid black;
}

.availability {
  display: inline-block;
  font-size: 15px;
  margin-left: 5px;
  padding-bottom: 5px;
}

.availabilityContainer {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}

.primary {
  cursor: pointer;
  /* margin-left: 10rem; */
  background-color: #002340;
  border-radius: 25px;
  width: 124px;
  height: 36px;
  color: #fff;
  font-weight: bold;
  padding: 8px 16px 8px 16px;
}

.primary:hover {
  background-color: #fff;
  color: #002340;
  transition: all 0.5s ease;
}

.locationLink {
  display: inline-block;
  margin-top: 0.5rem;
  margin-left: 0.5rem;
  font-size: 13px;
  color: #002340;
  font-weight: bold;
}

.locationLink:focus {
  outline: none;
}

.locationLink:hover {
  color: #16456c;
}

.arrow {
  border: solid black;
  border-width: 0 3px 3px 0;
  display: inline-block;
  padding: 3px;
}

.up {
  margin-left: 0.5rem;
  transform: rotate(-135deg);
  -webkit-transform: rotate(-135deg);
}

.down {
  margin-left: 0.5rem;
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
}

.buttonWrapper {
  display: inline-block;
  margin-bottom: 4rem;
  margin-left: 2rem;
}

.mapContainer {
  display: flex;
  width: 88%;
  height: auto;
  /* height: 50vh; */
  /*display: none;*/
  /* margin-left: 1rem; */
}

.mapContainer__leftSide {
  border-radius: 10px 0 0 10px;
  /*display: none;*/
  background-color: #002340;
  /*max-width: 497px;*/
  /*height: 450px;*/
}

.mapContainer__content {
  color: #fff;
  padding: 2rem 2rem 1rem;
}

.mapContainer__content span {
  padding: 5px;
  display: block;
}

.mapContainer__description {
  padding: 0 2rem;
  font-family: "font-light";
  font-size: 12px;
  color: #ffffff;
  white-space: pre-wrap;
  word-wrap: break-word;
}

.mapContainer__workingLabel {
  font-family: "font-light";
  padding-top: 0.5rem;
  padding-left: 2rem;
  font-weight: bold;
  font-size: 14px;
  color: #ffffff;
}

.outlineBtn {
  cursor: pointer;
  background-color: #002340;
  font-weight: bold;
  border: 2px solid #b4ff00;
  color: #b4ff00;
  border-radius: 20px;
  width: 107px;
  padding: 8px;
}

.containerContent__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.containerContent__inner img {
  width: 100px;
}

.mapContainer__btnWrapper {
  display: flex;
  padding: 2rem 2rem 1rem 2rem;
  gap: 10px;
}

.mapContainer__btnWrapper button {
  width: 100%;
}

.mapContainer__btnWrapper--firstRow {
  display: flex;
  justify-content: center;
  padding: 2rem 2rem 1rem 2rem;
  gap: 10px;
}

.mapContainer__btnWrapper--secondRow {
  display: flex;
  justify-content: center;
  padding-bottom: 1rem;
}

.mapContainer__btnWrapper--secondRow svg {
  height: 18px;
  width: 18px;
  vertical-align: middle;
}

.specialBtn {
  cursor: pointer;
  background-color: #b4ff00;
  font-weight: bold;
  color: #002340;
  border-radius: 20px;
  border: none;
  width: 230px;
  height: 30px;
}

.specialBtn:hover {
  background-color: #002340;
  color: #b4ff00;
  border: 2px solid #b4ff00;
  transition: all 0.6s ease;
}

.specialBtn:hover svg path {
  fill: #b4ff00;
}

.outlineBtn:hover {
  background-color: #b4ff00;
  color: #002340;
  border: 2px solid #b4ff00;
  transition: all 0.5s ease;
}

.primaryBtn {
  cursor: pointer;
  background-color: #b4ff00;
  font-weight: bold;
  color: #002340;
  border-radius: 20px;
  border: none;
  width: 90px;
  height: 30px;
}

.primaryBtn:hover {
  background-color: #002340;
  color: #b4ff00;
  border: 2px solid #b4ff00;
  transition: all 0.6s ease;
}

#frm1 {
  display: none;
}

.autocompleteSuggestions {
  display: none;
  position: absolute;
  background-color: white;
  border: 1px solid #ccc;
  max-height: 150px;
  width: 443px !important;
  overflow-y: auto;
  border-radius: 10px;
  padding: 0.5rem;
  box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.2);
}

.suggestion {
  padding: 10px 10px;
  cursor: pointer;
}

.suggestion:hover {
  background-color: #f2f4f5;
  width: 100%;
}

.containerContent__availability-row__Three a {
  text-decoration: none;
  color: #fff;
}

.containerContent__unavailable {
  margin-top: 1rem;
  padding: 15px;
  width: 88.5%;
  height: auto;
  border-radius: 8px;
  background-color: #fff6cf;
}

.containerContent__unavailable-content {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.containerContent__unavailable-content button {
  width: auto;
  white-space: nowrap;
}

.containerContent__unavailable-content p {
  text-wrap: balance;
}

/* Responsiveness */

/* Desktop */
@media screen and (max-width: 1200px) {
  .headerTitle {
    width: 80%;
    font-size: 1.2rem;
    margin: 1rem;
  }

  /* .containerContent {
    grid-template-columns: 1fr;
  } */

  .containerContent {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
  }

  .containerContent__card {
    /* margin: 0.5rem; */
  }

  .mapContainer {
    /*display: none;*/
  }
}

.info-container {
  padding-left: 2rem;
  font-weight: 100;
  font-size: 12px;
}

.notFound-label {
  color: #4d6579;
}

@media screen and (max-width: 860px) and (max-width: 1570px) {
  .result-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 20px;
  }

  .result-container > * {
    flex: 0 0 calc(50% - 20px);
    padding-left: 1rem;
  }

  .containerContent__info-secondary {
    width: calc(95% - 20px);
  }

  #map {
    min-height: 34.3rem !important;
  }
}

@media screen and (max-width: 860px) {
  .result-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  .mapContainer__btnWrapper--firstRow button {
    width: 100%;
  }

  .headerTitle {
    white-space: normal;
  }

  .availabilityText {
    margin: 0;
    display: flex;
    white-space: break-spaces;
    align-items: center;
    gap: 4px;
  }
  .availabilityText span.flag {
    width: 88px;
  }

  .info-container {
    padding-left: 0rem;
  }

  .info {
    gap: normal;
  }

  .containerContent__special .containerContent__card {
    border-style: solid;

    border-width: 1.8px;
    padding: 10px;
    /*margin: 10px; !* Add back the 10px margin removed from the container *!*/

    border-color: #002340;
    border-radius: 10px;
    box-sizing: border-box;
    /* Include padding and border in the width */
  }

  .descriptionContainer > .containerContent__thinLabel {
    display: none;
  }

  /*.containerContent__card.shop {*/
  /*  !*display: none;*!*/
  /*}*/

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

  .containerContent__info {
    display: none;
  }

  .containerContent__card {
    border: none;
    content: "";
    border-bottom: 2px solid #e5e9ec;
    /*margin: auto;*/
    border-radius: 0;
    width: calc(95% - 20px);
    padding: 10px;
    box-sizing: border-box;
  }

  .info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: column;
    padding: 1rem;
    font-style: normal;
    font-weight: bold;
    color: #80919f;
  }

  svg {
    display: none;
  }

  .info_txt {
    padding-bottom: 1rem;
  }

  .info-row {
    display: flex;
    text-align: center;
  }

  .containerContent__info-secondary .info p {
    white-space: balance;
    margin-left: 0;
  }
}

.containerContent__card {
}

.mapContainerWrapper {
  display: block;
}

@media screen and (max-width: 375px) {
  .autocompleteSuggestions {
    width: 300px !important;
  }

  .containerContent__addresslabel {
    white-space: normal;
  }

  .info-container {
    padding-left: 0rem;
  }

  .info {
    gap: normal;
  }

  .info svg {
    width: 100px;
    height: auto;
  }

  .containerContent__availability-row__One {
    display: inline-block;
  }

  .containerContent__availability-row__One p {
  }

  .containerContent__availability-row__One p::after {
  }

  .success-checkmark:after {
    display: inline-block;
    content: url(../images/success-check.svg);
    width: 20px;
    height: 19px;
    text-align: center;
    border: 3px solid #b4ff00;
    background: #f8f8f8;
    border-radius: 50%;
    color: var(--color-second);
  }

  .error-checkmark:after {
    display: inline-block;
    content: url(../images/error-check.svg);
    width: 20px;
    height: 19px;
    text-align: center;
    border: 3px solid #ffba0f;
    background: #f8f8f8;
    border-radius: 50%;
    color: var(--color-orange);
  }
}
