* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
}
body {
  font-family: Roboto, sans-serif;
}
.fsu-map-container {
  display: flex;
  width: 100%;
}
.fsu-map-container.vertical {
  flex-direction: column;
}
.fsu-map-container.horizontal {
  flex-direction: row;
}
.fsu-map-container.centered {
  justify-content: center;
}
.fsu-map-container.between {
  justify-content: space-between;
}
.fsu-map-container.around {
  justify-content: space-around;
}
.fsu-map-container.bottom {
  margin-top: auto;
}
.fsu-map-container.tall {
  height: 100%;
}
.spinner-container {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 1rem;
  width: 100%;
  height: auto;
  z-index: 7000;
}
.spinner-container .spinner {
  animation: rotate 2s linear infinite;
  width: 64px;
  height: 128px;
}
.spinner-container .spinner .path {
  stroke: #14af61;
  stroke-linecap: round;
  animation: dash 1.5s ease-in-out infinite;
}
@keyframes rotate {
  100% {
    transform: rotate(360deg);
  }
}
@keyframes dash {
  0% {
    stroke-dasharray: 1, 150;
    stroke-dashoffset: 0;
  }
  50% {
    stroke-dasharray: 90, 150;
    stroke-dashoffset: -35;
  }
  100% {
    stroke-dasharray: 90, 150;
    stroke-dashoffset: -124;
  }
}
.hidden {
  display: none !important;
}
.maps {
  height: 720px;
}
.maps .metropolitan {
  border-width: 0;
  border-style: solid;
  border-color: #ffffff;
  border-width: 2px;
  width: 1081px;
  height: 100%;
}
@media screen and (max-width: 768px) {
  .maps .metropolitan {
    border-top-width: 2px;
    border-bottom-width: 0;
    border-left-width: 2px;
    border-right-width: 2px;
  }
}
@media screen and (max-width: 768px) {
  .maps .metropolitan {
    width: 100%;
    height: 240px;
  }
}
.maps .overseas .overseas-map {
  border-width: 0;
  border-style: solid;
  border-color: #ffffff;
  border-right-width: 2px;
  height: 240px;
}
@media screen and (max-width: 768px) {
  .maps .overseas .overseas-map {
    border-left-width: 2px;
    border-right-width: 2px;
  }
}
.maps .overseas .overseas-map:nth-child(odd) {
  border-top-width: 2px;
  border-bottom-width: 2px;
}
@media screen and (min-width: 768px) {
  .maps .overseas .overseas-map:nth-child(odd) {
    border-bottom-width: 2px;
  }
}
@media screen and (min-width: 768px) {
  .maps .overseas {
    display: flex;
    flex-direction: column;
    width: 361px;
  }
}
@media screen and (max-width: 768px) {
  .maps .overseas {
    width: 100%;
  }
}
.maps.popup,
.maps .leaflet-popup-content-wrapper,
.maps .leaflet-popup-tip,
.maps [class^="leaflet-tooltip-"] {
  border: none !important;
}
.maps.popup,
.maps .leaflet-popup-content-wrapper {
  border-radius: 6px !important;
  padding: 0.125em !important;
  text-align: center !important;
}
.maps.popup,
.maps .leaflet-popup-tip {
  height: 0 !important;
}
@media screen and (max-width: 768px) {
  .maps {
    flex-direction: column !important;
    width: 100%;
    height: 100%;
  }
}
.fsu-informations-container {
  padding: 0 1rem;
}
.fsu-informations-container .fsu-informations {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  align-content: center;
  margin: auto;
  padding: 2rem;
  width: 360px;
  height: 240px;
  background-color: #ffffff;
}
.fsu-informations-container .fsu-informations > .title,
.fsu-informations-container .fsu-informations .address {
  flex-grow: 1;
}
.fsu-informations-container .fsu-informations > * {
  margin: auto 0;
  text-align: justify;
  color: #474747;
}
.fsu-informations-container .fsu-informations a {
  color: #14af61;
}
@media screen and (max-width: 768px) {
  .fsu-informations-container {
    flex-direction: column !important;
  }
  .fsu-informations-container .fsu-informations {
    width: 100%;
    height: 100%;
  }
  .fsu-informations-container .fsu-informations:not(:first-child) {
    margin: 2rem auto 0 auto;
  }
}
.fsu-departments-list {
  margin: 2rem 0 3rem 0;
}
.fsu-departments-list select {
  padding: 1rem;
  width: 35%;
  height: 100%;
  text-align: center;
  color: #3b4251;
}
