
.a2uModal {
    border-width: 0px;
    padding:0px !important;
	background-color: transparent;
	width: 100%
	
}

.a2uModal span{
    width: 100%;
    height: 200px;
    background-image: url("../../static_images/my-payment-power-logo.png");
    background-position: center;
    background-size: contain;
    display: block;
	background-repeat: no-repeat;

}

.a2uModal span:focus, .a2uModal:focus{
	outline: none;
}

.a2uModal:active{
    top:4px;
}

#a2uModal{
    display: none;
    background-color: rgba(71, 78, 93, .65);
    position: fixed;
    z-index: 99999999999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
}

#a2uModalContent{
    background-color: #FEFEFE;
    margin: 3% auto 5% auto;
    border: 1px solid #888;
    width: 99%;
    max-width: 1200px;
    height: 90%;
    max-height: 90%;
    position: relative;
    display: flex;
    flex-direction: column;
}
#a2uModalHeader {
    width: calc(100% - 40px);
    height: 43px;
}

#a2uModalFooter{
    width: 100%;
    height: 32px;
    display: flex;
    background-color: #d1d9e1;
}

#a2uModalFooter p{
    font-size: 12px;
    margin: auto;
}

#a2uModalClose{
    position: absolute;
    right: 10px;
    top: 0;
    font-size: 40px;
    font-weight: bold;
    color: #6d6d6d;
    cursor: pointer;
    z-index: 999999;
}

#a2uModalClose:hover{
    color: red;
}

#a2uModalContentIframe{
    flex: 1;
    border-width: 0;
}

#a2uModalWrapper {
    position: relative;
    flex: 1;
    overflow-y:auto;
}
#a2uModalWrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    border-width: 0;
    max-width: 100%;
    height: 100%;
}

#a2uFloatButton{
    position: fixed;
    top: calc(50% - 40px);
    right: 15px;
}

#a2uFloatButtonImg{
    background-image: url("http://ec2-54-196-23-2.compute-1.amazonaws.com/static/media/float-button.png");
    background-position: center;
    background-size: cover;
    height: 80px;
    width: 80px;
    position: absolute;
    right: 0;
    cursor: pointer;
}

#a2uLabelFloat{
    width: max-content;
    direction: rtl;
    margin-top: 85px;
    display: none;
    color: #FFF;
    background-color: #00D367;
    padding: 2px 15px;
    border-radius: 10px;
    font-weight: bolder;
}

#a2uFloatButtonImg:hover ~ #a2uLabelFloat{
    transition: all 2s linear;
    display: block;
}

@media (min-width: 768px) and (max-width: 991px) {
    #a2uModalClose {
        font-size: 70px;
    }
}

/* Mobile :320px. */
@media (max-width: 767px) {
    #a2uModalClose {
        font-size: 125px;
    }
}