.modal {
  display: none;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  overflow-y: auto;
  position: fixed;
  z-index: 9999;
  outline: 0; }
  .modal.fade {
    animation-name: fadeOut;
    animation-duration: 0.25s;
    animation-fill-mode: both;
    animation-timing-function: ease; }

@keyframes fadeOut {
  0% {
    opacity: 1; }
  100% {
    opacity: 0; } }
    .modal.fade.show {
      animation-name: fadeIn;
      animation-duration: 0.25s;
      animation-fill-mode: both;
      animation-timing-function: ease; }

@keyframes fadeIn {
  0% {
    opacity: 0; }
  100% {
    opacity: 1; } }
  .modal.animate-in {
    animation-name: bounceIn;
    animation-duration: 0.5s;
    animation-fill-mode: both;
    animation-timing-function: ease; }

@keyframes bounceIn {
  0% {
    opacity: 0;
    transform: scale(0.3); }
  50% {
    opacity: 1;
    transform: scale(1.05); }
  70% {
    transform: scale(0.9); }
  100% {
    transform: scale(1); } }
  .modal.animate-out {
    animation-name: bounceOut;
    animation-duration: 0.5s;
    animation-fill-mode: both;
    animation-timing-function: ease;
    display: block; }

@keyframes bounceOut {
  0% {
    transform: scale(1); }
  25% {
    transform: scale(0.95); }
  50% {
    opacity: 1;
    transform: scale(1.1); }
  100% {
    opacity: 0;
    transform: scale(0.3); } }
  .modal-backdrop {
    transition: opacity 0.25s linear;
    background: rgba(0, 0, 0, 0.8);
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 9998;
    opacity: 0; }
    .prefers-reduced-motion .modal-backdrop {
      transition: none; }
    .modal-backdrop.show {
      opacity: 1; }
  .modal-dialog {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
    margin-top: 15px;
    margin-bottom: 15px; }
    @media (min-width: 576px) {
      .modal-dialog {
        max-width: 1140px; } }
    @media (min-width: 768px) {
      .modal-dialog {
        max-width: 1140px; } }
    @media (min-width: 992px) {
      .modal-dialog {
        max-width: 1140px; } }
    @media (min-width: 1200px) {
      .modal-dialog {
        max-width: 1140px; } }
  .modal-header {
    min-height: 26px;
    margin-bottom: 10px; }
    .modal-header .modal-title {
      font-family: "Roboto", sans-serif;
      font-weight: 400;
      margin: 0;
      padding-right: 40px;
      color: #000; }
      .modal-header .modal-title {
        font-size: 18px; }
      @media (min-width: 575px) {
        .modal-header .modal-title {
          font-size: calc(18px + 6 * (100vw - 575px) / 1025); } }
      @media (min-width: 1600px) {
        .modal-header .modal-title {
          font-size: 24px; } }
  .modal-dismiss-button {
    transition: none;
    background-color: transparent;
    border: none;
    border-radius: 0;
    padding: 0;
    display: flex;
    float: right;
    padding: 5px;
    margin: 0;
    color: #000 !important; }
    .prefers-reduced-motion .modal-dismiss-button {
      transition: none; }
    .modal-dismiss-button:hover, .modal-dismiss-button:focus {
      background-color: transparent; }
    .modal-dismiss-button:before {
      content: "\f11b";
      font-family: "icons" !important;
      font-style: normal;
      font-weight: normal;
      font-variant: normal;
      text-transform: none;
      display: inline-block;
      vertical-align: middle;
      line-height: 1;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale; }
  .modal-content {
    background-color: #f2f2f2;
    color: #000;
    padding: 15px;
    position: relative; }
  .modal-footer {
    margin: 50px 0 0; }
    .modal-footer--spaced {
      display: flex;
      justify-content: space-between; }
    .modal-footer--centered {
      display: flex;
      justify-content: center; }
    .modal-footer--align-right {
      display: flex;
      justify-content: flex-end; }
    .modal-footer .btn {
      margin-left: 15px; }
      .modal-footer .btn:first-child {
        margin-left: 0; }

.modal--side .modal-dialog {
  position: absolute;
  position: relative;
  top: auto;
  left: auto;
  transform: translate(0, 0);
  position: fixed;
  margin: auto;
  padding: 0; }

.modal--side .modal-content {
  height: 100%;
  overflow-y: auto; }

.modal--side.left .modal-dialog {
  top: 0;
  bottom: 0;
  left: 0;
  width: auto;
  height: 100%; }

.modal--side.left.animate-in {
  animation-name: slideInLeft;
  animation-duration: 0.5s;
  animation-fill-mode: both;
  animation-timing-function: ease; }

@keyframes slideInLeft {
  0% {
    opacity: 0;
    transform: translateX(-2000px); }
  100% {
    transform: translateX(0); } }

.modal--side.left.animate-out {
  animation-name: slideOutLeft;
  animation-duration: 0.5s;
  animation-fill-mode: both;
  animation-timing-function: ease; }

@keyframes slideOutLeft {
  0% {
    transform: translateX(0); }
  100% {
    opacity: 0;
    transform: translateX(-2000px); } }

.modal--side.right .modal-dialog {
  top: 0;
  bottom: 0;
  right: 0;
  width: auto;
  height: 100%; }

.modal--side.right.animate-in {
  animation-name: slideInRight;
  animation-duration: 0.5s;
  animation-fill-mode: both;
  animation-timing-function: ease; }

@keyframes slideInRight {
  0% {
    opacity: 0;
    transform: translateX(2000px); }
  100% {
    transform: translateX(0); } }

.modal--side.right.animate-out {
  animation-name: slideOutRight;
  animation-duration: 0.5s;
  animation-fill-mode: both;
  animation-timing-function: ease; }

@keyframes slideOutRight {
  0% {
    transform: translateX(0); }
  100% {
    opacity: 0;
    transform: translateX(2000px); } }

.modal--side.top .modal-dialog {
  top: 0;
  right: 0;
  left: 0;
  width: 100%;
  max-width: inherit; }

.modal--side.top.animate-in {
  animation-name: slideInDown;
  animation-duration: 0.5s;
  animation-fill-mode: both;
  animation-timing-function: ease; }

@keyframes slideInDown {
  0% {
    opacity: 0;
    transform: translateY(-2000px); }
  100% {
    transform: translateY(0); } }

.modal--side.top.animate-out {
  animation-name: slideOutUp;
  animation-duration: 0.5s;
  animation-fill-mode: both;
  animation-timing-function: ease; }

@keyframes slideOutUp {
  0% {
    transform: translateY(0); }
  100% {
    opacity: 0;
    transform: translateY(-2000px); } }

.modal--side.bottom .modal-dialog {
  bottom: 0;
  right: 0;
  left: 0;
  width: 100%;
  max-width: inherit; }

.modal--side.bottom.animate-in {
  animation-name: slideInUp;
  animation-duration: 0.5s;
  animation-fill-mode: both;
  animation-timing-function: ease; }

@keyframes slideInUp {
  0% {
    opacity: 0;
    transform: translateY(2000px); }
  100% {
    transform: translateY(0); } }

.modal--side.bottom.animate-out {
  animation-name: slideOutDown;
  animation-duration: 0.5s;
  animation-fill-mode: both;
  animation-timing-function: ease; }

@keyframes slideOutDown {
  0% {
    transform: translateY(0); }
  100% {
    opacity: 0;
    transform: translateY(2000px); } }

.modal--video .modal-dialog {
  background: transparent; }

.modal--video .modal-header .modal-title {
  color: #fff; }

.modal--video .modal-dismiss-button {
  color: #fff !important; }

.modal--video .modal-content {
  padding: 0;
  background-color: transparent; }

.modal--video .modal-footer {
  border: none;
  margin: 20px 0 0; }
