.popup-bg {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 9;
    background-color: rgb(0 0 0 / 85%);
    display: none;
}
.popup-wrapper {
    position: fixed;
    left: 50%;
    top: 55%;
    transform: translateX(-50%) translateY(-50%);
    width: auto;
    height: auto;
    z-index: 10;/*
    width: 100%;*/
    max-height: 55%;
    overflow: scroll;
    padding: 25px;
    display: none;
}
.popup-wrapper .content {
    background-color: #F6C810;
    padding: 1em;
    border-radius: 4px;
    width: 100%;
}
.popup-wrapper .ic-close {
    position: absolute;
    right: 10px;
    top: 10px;
    background-color: #fff;
    color: #F6C810;
    text-decoration: none;
    z-index: 2;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    border-radius: 50%;
    font-size: 18px;
    font-weight: bolder;
    box-shadow: 0 1px 10px 1px rgb(0 0 0 / 10%);
    transition: all 0.2s linear;
}
.popup-wrapper .ic-close:hover {
    background-color: #FFF;
    color: #F6C810;
}


  @media(max-width: 767px){
   .popup-wrapper{
      width: fit-content;
   }
 }