HEX
Server: Apache/2.4.41 (Ubuntu)
System: Linux wordpress-ubuntu-s-2vcpu-4gb-fra1-01 5.4.0-169-generic #187-Ubuntu SMP Thu Nov 23 14:52:28 UTC 2023 x86_64
User: root (0)
PHP: 7.4.33
Disabled: pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare,
Upload Files
File: /var/www/zaklada/html/lib/scss/core/_modal.scss
.modal-window {
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 1100;
  left: 0;
  top: 0;
  background-color: rgba(0, 0, 0, 0.8);
  display: none;
  overflow: auto;
  animation-duration: 0.2s;
  // display: flex;
  align-items: center;
  justify-content: center;
  &.visible {
    display: flex;
  }
  .modal-inner {
    position: relative;
    max-width: 80%;
    padding: 47px 35px 50px 35px;
    background: $color-blue-dark;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    @media screen and (min-width: 768px) {
      max-width: 827px;
      padding: 100px 90px;
    }
    h1 {
      font-weight: 600;
      text-transform: none;
      text-align: center;
      color: $color-white;
      font-size: rem(18);
      margin-bottom: 30px;
      @media screen and (min-width: 768px) {
        margin-bottom: 65px;
        font-size: rem(50);
      }
    }
    p {
      font-weight: 400;
      text-align: center;
      color: $color-white;
      font-size: rem(16);
      margin-bottom: 0px;
      @media screen and (min-width: 768px) {
        margin-bottom: 30px;
        font-size: rem(19);
      }
    }
  }
  .close-modal {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 25px;
    height: 25px;
    cursor: pointer;
    z-index: 9;
    &:before,
    &:after {
      content: "";
      position: absolute;
      width: 5px;
      height: 18px;
      left: 10px;
      top: 4px;
      background: $color-white;
    }
    &:before {
      transform: rotate(45deg);
    }
    &:after {
      transform: rotate(-45deg);
    }
  }
}