.popup {
  &.closed {
    display: none;
  }
}

.popup-overlay {
  position: fixed;
  z-index: 9999;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  background-color: rgba(1,1,1,0.4);

  .container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
  }
}

.popup-box {
  max-width: 920px;
  width: 100%;
  background-color: var(--color-light);
  border-radius: 5px;
  overflow: hidden;
  position: relative;
  max-height: 100%;
  overflow-y: scroll;

  &.bg-white {
    background-color: var(--color-white);
  }

  &.webshop {
    max-width: 600px;
    background-color: var(--color-white);
  }
}

.popup-close {
  position: absolute;
  top: 15px;
  right: 20px;
  padding: 15px;
  cursor: pointer;
  z-index: 10;

  svg {
      path {
        fill: var(--color-white);
      }
    }

  &:hover, &:focus {
    svg {
      path {
        
        opacity: 0.9;
      }
    }
  }
}
