@import url('https://use.fontawesome.com/releases/v5.4.1/css/all.css');

/* buttons */
#kassy_close {
    mix-blend-mode: difference;
    box-sizing: content-box;
    cursor: pointer;
    position: absolute;
    top: 0;
    right: 0;
    opacity: 0.5;
    z-index: 99999999;
    color: #FFF;
    padding: 14px 14px 14px 7px;
}
#kassy_close:hover {
    opacity: 1;
}
#kassy_close i {
    font-size: 28px;
}
#kassy_resize {
    mix-blend-mode: difference;
    box-sizing: content-box;
    cursor: pointer;
    position: absolute;
    top: 0;
    right: 41px;
    opacity: 0.5;
    z-index: 9999999;
    color: #FFF;
    padding: 14px 7px 14px 14px;
}
#kassy_resize:hover {
    opacity: 1;
}
#kassy_resize i {
    font-size: 28px;
}

/* container */
.kassy_container {
    position: fixed;
    margin: auto;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 85vw;
    height: 90vh;
    z-index: 9999999;
    border: 10px solid #b5b5b5;
    box-shadow: 0 0 30px -5px #000;
    background: #fff;
}
.kassy_container.full {
    width: 100vw;
    height: 100%;
    margin-top: 0;
    border: 0px;
   /* height: calc(var(--vh, 1vh) * 100); */
}

.kassy_container iframe {
    position: relative;
    resize: none;
    background: #fff;
    /*
        position: absolute;
        left: 0;
        right: 0;
        top: 0;
        bottom: 0;
    */
    border: 0;
    display: none;
    z-index: 9999998;
    width: 1px;
    height: 1px;

    min-width: 100%;
    min-height: 100%;
    *width: 100%;
    *height: 100%;

    /* min-width:  100%; */
    /* min-height:  100%; */
}
.kassy_loader {
    margin: auto;
    text-align: center;
    display: block;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    height: 190px;
    width: 85vw;
}
.kassy_loader .spinner {
    font-size: 8rem;
    color: #428bca;
}
.kassy_loader p {
    margin: 0;
    color: #000;
}
.kassy_cover {
    background: #000;
    opacity: 0.3;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
    z-index: 9999997;
}
