.popup-component.overlay {
    background: #63636340;
    display: flex;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    justify-content: center;
    align-items: flex-start;
    width: 100%;
    height: 100%;
    overflow: scroll;
    box-sizing: border-box;
    padding-top: 80px;
    overscroll-behavior: none;
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
}
.popup-component.overlay::-webkit-scrollbar {
    display: none;
}

.popup-component .box {
    flex: unset;
    position: relative;
    background: #FFFFFF 0% 0% no-repeat padding-box;
    box-shadow: 0px 2px 5px #D4DADE61;
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 30px;
}
.popup-component .content {
    max-width: 95%;
    min-width: 320px;
    min-height: calc(100% + 1px);
    flex: unset;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.popup-component .close-popup {
    position: absolute;
    top: 0px;
    right: 0px;
    padding:25px;
    cursor: pointer;
    z-index:100;
}
.popup-component .close-popup img {
    height: 16px;
    width: 16px;
    position:absolute;
    right:16px;
    top:16px;
}
.popup-component .flex-row {
    display: flex;
    flex-direction: row;
}
.popup-component .flex-wrap {
    flex-wrap: wrap;
}
.popup-component .center-along {
    justify-content: center;
}
.popup-component .flex-1 {
    flex: 1;
}
.popup-component .width-100-per {
    width: 100%;
}
.popup-component .mar-bot-30 {
    margin-bottom: 30px;
} 
.popup-component .h-mar-15 {
    margin-left: 15px;
    margin-right: 15px;
}
.popup-component .mar-bot-20 {
    margin-bottom: 20px;
}
.popup-component .text-center {
    text-align: center;
}