/**************

popup

**************/

@media only screen and (max-width: 991px) {
  .custom-popup-component {
    position: fixed !important;
    left: 0 !important;
    top: 0;
    width: 100%;
    height: 100%;
    margin: 0 !important;
    padding: 60px 30px;
    background: rgba(0, 0, 0, 0.2);
    z-index: 10;
    align-items: center;
    justify-content: center;
  }
  .custom-popup-component.is-active {
    display: flex;
  }
  .custom-popup-inner {
    max-width: 500px;
    background: #ffffff;
    width: 100%;
    max-height: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
  }
  .custom-popup-content {
    padding: 30px 20px;
    width: 100%;
    flex: 1;
    overflow: hidden;
    display: flex;
    flex-direction: column;
  }
  .custom-popup-content-inner {
    max-height: none;
    overflow: auto;
  }
}

@media only screen and (max-width: 767px) {
  .custom-popup-component {
    padding: 60px 15px 60px 15px;
  }
  .custom-popup-content {
    padding: 20px 15px;
  }
}
