body {
  width: 100%;
  overflow-x: hidden;
}

body.no-scroll {
  height: 100%;
  overflow-y: hidden;
}

#menu-toggler {
  height: 3em;
  width: 3em;
  padding: 0.2em;
  background-color: rgba(0, 0, 0, 0);
  left: 1em;
  border-radius: 3em;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-shadow: 0 0 2em rgba(0, 0, 0, 0.2);
          box-shadow: 0 0 2em rgba(0, 0, 0, 0.2);
  cursor: pointer;
  -webkit-transition: 0.1s all ease-in-out;
  transition: 0.1s all ease-in-out;
}

#menu-toggler:hover {
  -webkit-box-shadow: 0 0 2.2em rgba(0, 0, 0, 0.3);
          box-shadow: 0 0 2.2em rgba(0, 0, 0, 0.3);
}

#menu-toggler.hide {
  width: 0;
  height: 0;
  padding: 0;
  overflow: hidden;
}

#menu-toggler img {
  height: 2em;
}

#nav-drawer {
  position: fixed;
  top: 0;
  width: 0;
  padding: 0;
  margin: 0;
}

#nav-drawer.active {
  width: 100vw;
  z-index: 200;
}

#nav-drawer .overlay {
  width: 0;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0);
  position: absolute;
  overflow-y: scroll;
  -webkit-transition: background-color 0.1s ease-in-out;
  transition: background-color 0.1s ease-in-out;
}

#nav-drawer .overlay.active {
  background-color: rgba(0, 0, 0, 0.4);
  width: 100vw;
}

#nav-drawer .content {
  width: 0;
  height: 100vh;
  background-color: white;
  position: absolute;
  overflow-y: auto;
  -webkit-transition: all 0.1s ease-in-out;
  transition: all 0.1s ease-in-out;
  padding-top: 3em;
}

#nav-drawer .content.active {
  width: 20em;
  padding-left: 1em;
  border: 1px solid rgba(0, 0, 0, 0.2);
}

#nav-drawer .content .close {
  position: absolute;
  top: 0.5em;
  left: 0.5em;
  cursor: pointer;
  -webkit-transform: scale(1.3);
          transform: scale(1.3);
}

#service-schedules-box {
  border: 2px solid #26356a;
  background-color: #26356a;
  color: white;
  overflow: auto;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  margin: 2em;
  -webkit-box-shadow: 0px 0px 5px #26356a;
          box-shadow: 0px 0px 5px #26356a;
  border-radius: 1em;
  padding: 1em;
}

#service-schedules-box h3 {
  padding: 0;
}

#service-title-banner {
  background-color: #1fa9db;
  height: 400px;
  border-bottom-right-radius: 5em;
  border-top-left-radius: 5em;
  overflow: hidden;
  position: relative;
}

#service-title-banner .service-title {
  position: absolute;
  left: 0;
  width: 100vw;
  background-color: rgba(0, 0, 0, 0.2) !important;
  color: white;
  height: inherit;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-left: 20%;
}

#service-title-banner .service-image {
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

#service-title-banner .service-image img {
  width: 100%;
  height: inherit;
  overflow-x: hidden;
}

@media (max-width: 768px) {
  #service-schedules-box {
    position: relative;
    padding: 0;
  }
  #service-title-banner {
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    border-bottom-right-radius: 0.2em;
    border-top-left-radius: 0.2em;
    margin-left: 0.5em;
    margin-right: 0.5em;
  }
  #menu-toggler.hide {
    height: 3em;
    width: 3em;
    padding: 0.2em;
    overflow: unset;
  }
}

.notification-bar {
  background-color: #383838;
  padding: 0.5em 2em;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 210;
  color: white;
  display: none;
  overflow: auto;
}

.notification-bar.active {
  display: block !important;
}

.notification-bar .close-notification {
  position: absolute;
  color: white;
  right: 1em;
  padding: 0.2em;
  top: 1em;
  cursor: pointer;
}

.notification-bar .close-notification:hover {
  background-color: #26356a;
}

.d-horizontal-scroll {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow-x: auto;
  position: relative;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.d-horizontal-scroll.center {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.d-horizontal-scroll::-webkit-scrollbar {
  width: 0;
  background: transparent;
}

.d-horizontal-scroll::-webkit-scrollbar-thumb {
  background-color: rgba(31, 169, 219, 0);
}

.d-horizontal-scroll.hide-controls .control-btn {
  display: none;
}

.d-horizontal-scroll .control-btn {
  position: -webkit-sticky;
  position: sticky;
  background-color: #1fa9db;
  z-index: 2;
  height: 3em;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 3em;
  border-radius: 100%;
  padding: 1em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
  -webkit-box-shadow: 0 0 10px 10px rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 10px 10px rgba(0, 0, 0, 0.1);
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  color: white;
}

.d-horizontal-scroll .control-btn:hover {
  background-color: rgba(31, 169, 219, 0.9);
}

.d-horizontal-scroll .control-btn.next {
  right: 1em;
}

.d-horizontal-scroll .control-btn.previous {
  left: 1em;
}
/*# sourceMappingURL=modification_styles.css.map */