@media screen and (max-width: 550px) {
  #footer .w-12 {
    width: 2rem;
    height: 2rem;
  }
}


.modal-frame {
  position: fixed;
  top: 80%;
  right: 20px;
  margin: auto;
  z-index: 10000;
  display: none;
  width: 300px;
  height: auto;
  min-height: 100px;
  text-align: left;
  background: #fff;
  color: #002250;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

@media screen and (max-width: 550px) {
  .modal-frame {
    width: 200px;
    top: 65%;
  }
}

.modal-title {
  font-size: 10px;
  text-decoration: underline;
  cursor: pointer;
  margin-left: 20px;
  text-align: left;
}

.modal-heading {
  background: #002250;
  color: white;
  padding: 10px;
  margin-bottom: 10px;
}

.modal-frame.state-appear {
  visibility: visible;
  display: block;
}

.modal-inset {
  visibility: visible; /* to keep @ final state */
}

.modal-frame .state-leave {
  visibility: hidden;
}

@-moz-document url-prefix() {
  .modal-frame {
    height: calc(100% - 55px);
  }
}

.modal {
  display: block;
  vertical-align: middle;
  text-align: center;
}

.modal-inset {
  position: relative;
  background-color: white;
  margin: auto;
}

.modal .close {
  display: flex;
  cursor: pointer;
  position: absolute;
  top: -15px;
  align-items: center;
  right: 0;
  font-size: 16px;
  font-weight: 700;
  width: 23px;
  height: 23px;
  padding: 0;
  justify-content: center;
  background-color: white;
  border: 1px solid #002250;
  border-radius: 50%;
  color: black;
  font-family: Montserrat, Arial, sans-serif;
}

.modal-body {
  margin: auto;
  opacity: 1;
  color: #595959;
  display: flex;
  flex-flow: row;
  padding: 10px 10px 20px;
}

.three-quarter-spinner {
  width: 20px;
  height: 20px;
  border: 3px solid #002250;
  border-top: 3px solid transparent;
  border-radius: 50%;
  animation: spin .5s linear 0s infinite;
}

.spinner-box.active {
  box-sizing: border-box;
  position: relative;
  display: block;
  transform: scale(1);
  width: 22px;
  height: 22px;
  border: 2px solid transparent;
  border-radius: 100px
}

.spinner-box.active::after {
  content: "";
  display: block;
  box-sizing: border-box;
  position: absolute;
  left: 3px;
  top: -1px;
  width: 6px;
  height: 10px;
  border-width: 0 2px 2px 0;
  border-style: solid;
  transform-origin: bottom left;
  transform: rotate(45deg)
}

.spinner-box.active .three-quarter-spinner {
  display: none;
}
