.popup-wrapper .popup-content {
  position: absolute;
  z-index: 200;
  display: flex;
  flex-direction: column;
}

.popup-wrapper .popup-content .popup-img-area {
  flex: 1 0;
}

.popup-wrapper .popup-content .popup-button-area {
  display: flex;
}

.popup-wrapper .popup-content .popup-button-area button {
  font-weight: normal;
  flex: 1 0;
  background-color: #ff666a;
  border-radius: 0;
}

.popup-wrapper .popup-content .popup-button-area button:first-child {
  border-right: dotted #a5a3a3 1px;
}

/*Extra small devices*/

@media only screen and (max-width: 600px) {
  .popup-wrapper {
    position: fixed;
    top: 0;
    z-index: 199;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
  }

  .popup-wrapper .popup-content {
    position: fixed;
    width: 315px;
    height: 394px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
  }

  .popup-wrapper .popup-content .popup-button-area {
    font-size: 0.875rem;
  }
}

/*Small devices*/

@media only screen and (min-width: 600px) and (max-width: 992px) {
  .popup-wrapper {
    position: fixed;
    top: 0;
    z-index: 199;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
  }

  .popup-wrapper .popup-content {
    position: fixed;
    width: 315px;
    height: 394px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
  }

  .popup-wrapper .popup-content .popup-button-area {
    font-size: 0.875rem;
  }
}

/*Large devices*/

@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .popup-wrapper .popup-content {
    position: fixed;
    width: 450px;
    height: 560px;
    top: 288px;
    left: 230px;
  }
}

/*Extra Large devices*/

@media only screen and (min-width: 1200px) {
  .popup-wrapper .popup-content {
    position: fixed;
    width: 450px;
    height: 560px;
    top: 288px;
    left: 230px;
  }
}

