html,
body {
  overflow-x: hidden;
}
html.overflow-hidden,
body.overflow-hidden {
  overflow: hidden;
  min-height: 100vh;
}

body {
  overflow: hidden;
  margin: 0;
  font-weight: 400;
  line-height: 1.5;
  text-align: left;
}

#layout-content {
  flex: 1;
}

p,
a,
input,
textarea,
button {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  line-height: 120%;
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  line-height: 120%;
}

.maps-container {
  width: 100%;
  height: 100vh;
  display: flex;
  flex-direction: row;
  align-items: center;
  background: #003863;
}
@media (max-width: 960px) {
  .maps-container {
    flex-direction: column;
  }
}
.maps-container-menu {
  display: flex;
  flex-direction: column;
  width: 450px;
  height: 100%;
}
@media (max-width: 960px) {
  .maps-container-menu {
    width: 100%;
    height: -moz-fit-content;
    height: fit-content;
  }
}
.maps-container-menu-logo {
  display: flex;
  box-sizing: border-box;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100px;
  padding: 15px 0;
}
.maps-container-menu-logo img {
  height: 100%;
}
.maps-container-menu-logo-bars {
  display: none;
}
@media (max-width: 960px) {
  .maps-container-menu-logo {
    padding: 15px;
    justify-content: space-between;
  }
  .maps-container-menu-logo-bars {
    display: block;
  }
  .maps-container-menu-logo img {
    height: 50px;
  }
}
.maps-container-menu-items {
  width: 100%;
  height: calc(100% - 100px);
}
@media (max-width: 960px) {
  .maps-container-menu-items {
    box-sizing: border-box;
    position: fixed;
    top: 100px;
    left: 0;
    height: calc(100% - 100px);
    width: 85%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: rgba(0, 56, 99, 0.85);
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease 0s;
  }
  .maps-container-menu-items.active {
    visibility: visible;
    opacity: 1;
  }
}
.maps-container-menu-items-item {
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 0;
  height: 20%;
  cursor: pointer;
  transition: all 0.2s ease 0s;
}
@media (max-width: 960px) {
  .maps-container-menu-items-item {
    width: 100%;
    height: auto;
    padding: 20px 15px;
  }
}
.maps-container-menu-items-item:hover {
  background: rgb(0, 79.0787878788, 139.8);
}
.maps-container-menu-items-item-title {
  color: white;
  margin: 0;
}
@media (max-width: 960px) {
  .maps-container-menu-items-item-title {
    text-align: center;
    font-size: 16px;
  }
}
.maps-container-map {
  width: calc(100% - 450px);
  height: 100%;
}
@media (max-width: 960px) {
  .maps-container-map {
    width: 100%;
    height: calc(100vh - 100px);
  }
}
.maps-container-detail {
  display: flex;
  flex-direction: column;
  left: 500px;
  position: fixed;
  background: #ffffff;
  width: 500px;
  height: -moz-fit-content;
  height: fit-content;
  opacity: 0;
  visibility: hidden;
}
.maps-container-detail-background {
  position: relative;
  width: 100%;
  height: 172px;
  background: #003863;
}
.maps-container-detail-background-type {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  position: absolute;
  box-sizing: border-box;
  bottom: 0;
  left: 0;
  width: 170px;
  height: 44px;
  background: #ffffff;
  padding: 0 15px;
  border-top-right-radius: 10px;
}
.maps-container-detail-background-type p {
  margin: 0;
  font-size: 20px;
  font-weight: 900;
  color: #003863;
}
.maps-container-detail-background-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: white;
  position: absolute;
  right: -15px;
  top: -15px;
  cursor: pointer;
}
@media (max-width: 960px) {
  .maps-container-detail-background-toggle {
    right: 0px;
    top: 0px;
  }
}
.maps-container-detail-background-toggle:hover {
  background: #00c1d4;
}
.maps-container-detail-background-toggle img {
  width: 50%;
}
.maps-container-detail-content {
  width: 100%;
  flex: 1;
  padding: 20px 40px;
  box-sizing: border-box;
}
.maps-container-detail-content-title {
  font-size: 20px;
  font-weight: 500;
  margin: 0;
  margin-top: 40px;
  color: #003863;
}
.maps-container-detail-content-address {
  width: 100%;
  display: flex;
  align-items: flex-start;
  margin-top: 16px;
  margin-bottom: 30px;
}
.maps-container-detail-content-address img {
  width: 20px;
  margin-right: 12px;
}
.maps-container-detail-content-address p {
  margin: 0;
  color: #003863;
}
.maps-container-detail-content-shedule {
  display: flex;
  margin-bottom: 30px;
}
.maps-container-detail-content-shedule-icon {
  width: 20px;
  margin-right: 12px;
}
.maps-container-detail-content-shedule-icon img {
  width: 100%;
}
.maps-container-detail-content-shedule-item p {
  margin-top: 0;
  margin-bottom: 10px;
  color: #003863;
}
.maps-container-detail-content .btn {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  border-style: solid;
  border-width: 2px;
  border-radius: 10px;
  padding: 0.4em 1.25em;
  margin: 0;
  position: relative;
  background: none;
  font-size: 20px;
  font-family: "Montserrat", sans-serif;
  white-space: nowrap;
  text-align: center;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  line-height: normal;
  transition: all 0.15s linear 0s;
}
.maps-container-detail-content .btn:hover, .maps-container-detail-content .btn:focus {
  box-shadow: none;
  outline: none;
}
.maps-container-detail-content .btn-1 {
  background: white;
  border-color: #003863;
  color: #003863;
  margin-bottom: 20px;
}
.maps-container-detail-content .btn-1:hover, .maps-container-detail-content .btn-1:focus {
  color: white !important;
  border-color: #003863;
  background-color: #003863;
}
.maps-container-detail.active {
  opacity: 1;
  visibility: visible;
}
@media (max-width: 960px) {
  .maps-container-detail {
    width: 95%;
    height: 95%;
    left: auto;
    top: 2.5%;
  }
}/*# sourceMappingURL=syles.css.map */