.modal.modal-white.fg-box-shadowed-modal-container {
  background-color: rgba(34, 36, 38, .3);
}

.modal.modal-dark.fg-box-shadowed-modal-container {
  background-color: rgba(34, 36, 38, .4);
}

.fg-modal-overlay {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.fg-box-shadowed-modal-body-scrollable-container {
  overflow: auto;
}

.fg-box-shadowed-modal-body {
  position: relative;
  z-index: 1;

  overflow: auto;

  width: 412px;
  height: 100vh;

  margin: auto;

  box-shadow: 0 0 0 15px rgba(255, 255, 255, .5);
  background-color: #FFFFFF;
  cursor: default;
}

.fg-box-shadowed-modal-body-scrollable-container .fg-box-shadowed-modal-body {
  height: unset;
  min-height: 100vh;
}

.fg-box-shadowed-modal-body--short {
  top: 74px;

  height: 100%;

  border-radius: 10px;
}

.modal.modal-dark .fg-box-shadowed-modal-body {
  box-shadow: 0 0 0 15px rgba(72,77,81,.8);
  background-color: #222426;
}

.fg-box-shadowed-modal-content-loader-container {
  position: relative;

  width: 100%;
}

.fg-box-shadowed-modal-content-loader {
  position: absolute;
  top: 100px;
  left: calc(50% - 17.5px);
}

.fg-box-shadowed-modal-button {
  position: relative;

  display: block;

  width: 100%;
  height: 50px;

  background-color: #777777;
  color: #FFFFFF;
  border: none;
  outline: none;
  border-radius: 5px;

  font-size: 15px;

  transition: background-color .4s ease;
}

.fg-box-shadowed-modal-button:hover {
  background-color: #8C8C8C;
}

.fg-box-shadowed-modal-button-error {
  position: absolute;
  left: 0;
  bottom: 2px;
  
  width: 100%;

  margin: 0;
  
  color: #5E2927;

  font-size: 11px;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .fg-box-shadowed-modal-body {
    width: 300px;
  }
}
