.banks-open-disclaimer {
	cursor: pointer;
}

.banks-popup {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0,0,0,0.7);
    z-index: 1111111;
    visibility: hidden;
    opacity: 0;
    transition: all .2s ease-in;
}
.banks-popup-inner {
    background-color: white;
    width: auto;
	max-width: 800px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
    padding: 30px;
    border-radius:10px;
	max-height: 80%;
}
.banks-close {
    position: absolute;
    top: 20px;
    right: 20px;
    cursor: pointer;
    width: 25px;
    text-align: center;
    font-size: 25px;
    line-height: 1;
}
.banks-popup.open {
    visibility: visible;
    opacity: 1;
}
@media (max-width: 768px){
    .banks-popup-inner {
        width: 80%;
        overflow-y: scroll;
        max-width: 100%;
		max-height: 80%;
    }
}
