.popup-basbox{
    position: relative;
    background: #fff;
    width: 50%;
    left: 0;
    top: 0;
    padding: 20px;
    margin-right: 0;
    display: flex;
    flex-direction: column;
}

.popup-basbox.popup-basbox-active{
	margin: 1.75rem auto;
	transition: transform .25s ease;
	display:block;
	z-index: 9999999;
    box-shadow: -25px 1px 25px 0 rgba(0,0,0,.02), 2px 0 11px 0 rgba(0,0,0,.25);	
}

.popup-basbox-overlay-inner{
    display: flex;
    align-items: center;
    min-height: calc(100% - 1rem);
}

.popup-basbox-overlay{
    display:none;
	position:fixed;
	background:#fff;
	width:100%;
	height:100%;
	right:0;
	top:0;
    background-color: rgba(24,50,71,.6);
    z-index: 999999;
    transition: .2s ease-in;
    animation: fadeInDelay .2s ease-in;	
	overflow-x: hidden;
    overflow-y: auto;
}

.popup-basbox-close{	
    color: #4B4D5F;
    position: absolute;
    top: 15px;
    right: 15px;
    width: 23px;
    height: 23px;
    font-family: Arial;
    text-align: center;
    font-size: 22px;
    z-index: 999999;
    cursor: pointer;
}

.popup-basbox-close:hover{	
    opacity:0.7;
}