:root {
  --blue: #0078c2;
  --black: hsl(0, 0%, 30%);
}

.markerContainer {
  width: fit-content;
  height: 500px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-areas:
    "header header"
    "description photos";
  line-height: 1.5;
  gap: 0 16px;
  background-color: #ffff;
  position: relative;
}
.markerContainer p {
  margin: 0;
}

@media (max-width: 600px) {
  .markerContainer {
    width: calc(100% - 16px);
    grid-template-columns: 1fr;
    grid-template-areas:
      "header"
      "photos"
      "description";
  }
}

.markerContainer__descriptionColumn {
  display: flex;
  flex-direction: column;
  gap: 4px;
  grid-area: description;
  color: var(--black);
}
.markerContainer__imagesColumn {
  display: flex;
  flex-direction: column;
  gap: 12px;
  grid-area: photos;
}

.markerHeader {
  grid-area: header;
  color: var(--blue);
  font-weight: 600;
  text-align: center;
  font-size: 1rem;
  padding-bottom: 10px;
}

.markerImg {
  width: 100%;
  height: auto;
  max-height: 200px;
  cursor: zoom-in;
}

.locationAddress {
  text-align: center;
  line-height: 1.5;
  margin-bottom: 0;
  color: var(--black);
}

.markerContainer__locationDescription {
  line-height: 1.5;
  margin-bottom: 0;
  display: flex;
  gap: 8px;
  font-size: 14px;
  color: var(--black);
  font-weight: normal;
}
.rate {
  font-weight: 400;
}
.markerContainer__locationDescription__rateDescription {
  font-weight: 500;
}
.monthlySignUps {
  display: flex;
  flex-direction: column;
  padding-bottom: 12px;
}
.monthlyRatesSection {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.ratesContainer {
  display: grid;
  align-content: center;
  grid-template-columns: 1fr auto auto;
  justify-content: center;
  align-items: center;
  justify-items: start;
  gap: 12px;
}
.monthlySignupLink {
  font-weight: 500;
  font-size: 0.8125rem;
  background-color: #00aacc;
  color: #ffffff;
  border-radius: 12px;
  padding: 4px 12px;
  text-decoration: none;
}
.monthlySignupLink:hover {
  text-decoration: none;
  background-color: hsl(190, 100%, 30%);
  color: #ffffff;
}
.markerToday {
  font-weight: 500;
  color: var(--blue);
}

.markerContainer__propertyName {
  font-weight: 900;
  color: var(--blue);
}
/* table */
.markerContainer__workingHours {
  border-collapse: collapse;
  width: fit-content;
}
.markerContainer__workingHours tr {
  width: fit-content;
}
.markerContainer__workingHours td {
  line-height: 1.5;
}
.markerContainer__workingHours td:not(:last-child) {
  padding-right: 8px;
}
.markerContainer__workingHours th:not(:last-child) {
  padding-right: 8px;
}
.markerContainer__tableColumn {
  width: fit-content;
}

.markerContainer__zoomedImage {
  background-size: contain;
  width: 100%;
  height: 100%;
  position: fixed;
  z-index: 10000;
  top: 0;
  left: 0;
  cursor: zoom-out;
  background-color: rgba(0, 0, 0, 0.5);
  background-repeat: no-repeat;
  background-position: center;
}
.exceptionImg {
  cursor: auto;
}
.markerContainer__accentFontColor {
  color: var(--blue);
}
.pc-mb-8 {
  margin-bottom: 8px !important;
}
.markerContainer__SendAppTittle {
  text-align: center;
  font-size: 1rem;
  font-weight: 400;
  color: #000000;
}
.markerContainer__SendAppInput {
  padding: 8px;
  background-color: #f1f4f8;
  border: 1px solid hsl(214, 33%, 86%);
  border-radius: 2px;
}
.markerContainer__SendAppLabel {
}
.markerContainer__SendAppButton {
  background-color: rgb(0, 120, 194);
  color: #ffffff;
  font-weight: 600;
  border-radius: 20px;
  border: none;
  padding: 12px 24px;
  font-size: 0.9rem;
  align-self: center;
}
.markerContainer__SendAppButton:hover {
  background-color: hsl(203, 100%, 28%);
}
.markerContainer__SendAppFormField {
  display: flex;
  flex-direction: column;
  width: 145px;
  align-self: center;
}
.markerContainer__SendAppContainer {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.mapMarkerStyle {
  width: 40px;
  transition: all 0.3s ease;
}

.mapMarkerStyle:hover {
  scale: 1.2;
}
.viewFullScreenBtn {
  border: 1px solid hsl(0, 0%, 75%);
  background-color: transparent;
  width: fit-content;
  height: fit-content;
  border-radius: 4px;
  display: flex;
  gap: 8px;
  align-items: center;
  padding: 4px;
  margin-top: 12px;
  position: absolute;
  right: 0;
  top: 0;
  margin-top: 0;
}
.markerContainer:fullscreen {
  padding: 16px;
  .markerImg {
    max-height: initial;
    cursor: auto;
  }
}

@media (min-width: 769px) {
  div.gm-style-iw.gm-style-iw-c {
    min-width: 650px !important;
  }
}
@media (max-width: 768px) {
  .viewFullScreenBtn {
    display: none;
  }
}
