body {
  background:#eef2f6;
  font-family: "Manrope", sans-serif;
  margin: 1px;
}

#main-content {
  display: block;
  width: 100%;
  height: 1400px;

  margin: 0 auto;
  
  background-color: #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1); 
  border-radius: 10px;

  overflow: hidden;
}

#main-title {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;

  width: 98%;
  height: 70px;

  margin: 30px auto;

  padding: 0 20px;

  box-sizing: border-box;

  background: linear-gradient(135deg, #2f3845,#495566);
  color:white;
  border-radius: 10px;

}

#title-left {
  position: absolute;
  left: 20px;
  display: flex;
  align-items: center;
  gap: 12px;

  font-size: 40px;
}

#title-left img {
  height: 60px;
  width: auto;
}

#spot-title {
  font-size: 28px;
  font-weight: 700;
  color: white;
  opacity: .9;
}
#spot-title_phone_pov {
  min-width: 0;
  max-width: 150px;

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

#display {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 98%;
  height: 1000px;
  
  margin: 30px auto;

  background:#f6f8fb;
  border:1px solid #d9dde3;
  box-shadow: 0 8px 24px rgba(0, 0, 0, .08); 
  border-radius: 10px;

  box-sizing: border-box;
}

#toolbar {
  position: relative;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;

  width: 95%;

  margin: 15px auto;
}

#alerts {
  display: flex;
  justify-content: center;
  align-items: center;
  
  width: nowrap;
  min-height: 60px;
  
  margin: 0;
  padding: 0 16px;

  
  border-radius: 10px;

  font-size: 18px;
  text-align: center;
}
#alerts_phone_pov {
  font-size: 12px;
}
.alert-link {
  padding: 5px 8px;

  border-radius: 10px;

  background: #229ED9;
  color: white;

  text-decoration: none;
  font-weight: 600;

  transition: transform .15s ease;
}

.alert-link:hover {
  transform: translateY(-1px);
}

#info {
  display: block;
  width: 98%;
  height: auto;
  margin: 30px auto;

  justify-content: center;
  align-items: center;

  background: #fafafa;
  border: 1px solid #ececec;
  box-shadow: 0 4px 12px rgba(140, 137, 95, 0.1); 
  border-radius: 10px;
}
.faq-inline {
  display: flex;
  justify-content: space-between;
  align-items: center;

  margin-top: 16px;
  padding: 14px 18px;

  border-radius: 10px;

  background: white;
  border: 1px solid #e7e7e7;
  box-shadow: 0 2px 8px rgba(0,0,0,.05);;

  cursor: pointer;

  transition: background .15s ease;
}

.faq-inline h3 {
  margin: 0;
}
.faq-inline span {
  font-size: 22px;
  font-weight: 700;
}
.info-block {
  padding: 20px 24px;
}
.instagram-link {
  color: #2f5d8a;
  font-weight: 700;

  text-decoration: none;
}

.instagram-link:hover {
  text-decoration: underline;
}

.hidden {
  display: none !important;
}

@media (max-width: 700px) {
  #main-title {
    justify-content: space-between;
  }
  #main-content {
    padding: 1px 0;
    height: auto;
    overflow: visible;
  }

  #display {
    height: 60vh;
  }
  #alerts {
    font-size: 12px;
    min-height: auto;
    padding: 0;
  }

  .alert-link {
    font-size: 13px;
    padding: 5px 6px;
    white-space: nowrap;
  }
  #title-left {
    position: static;
    left: 10px;
    font-size: 26px;
  }
  #title-left img {
    height: 45px;
  }

  #toolbar{
    flex-wrap: wrap;
    gap: 12px;
  }
}
@media (max-width: 900px) and (orientation: landscape) {
  #spot-title {
    display: none;
  }
}