.fos {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 100;
    visibility: hidden;
    opacity: 0;
    transition: .3s;
}

.fos-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    background-color: #000a;
}

.fos-cont {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
    overflow-y: auto;
}

.fos-cont-flex {
    min-height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 0;
}

.inn-fos-cont {
    position: relative;
    background-color: #fff;
    pointer-events: visible;
    border-radius: 15px;
    max-width: calc(100% - var(--cont-padding) * 2);
}

.fos-krestik {
    cursor: pointer;
}

.fos-krestik svg {
    width: 100%;
    height: 100%;
}

.fos-krestik svg path {
    transition: .3s;
}


/*@media(max-width:768px){*/
/*    .fos-cont-flex{*/
/*        padding:0 20px;*/
/*    }*/
/*    .fos-krestik {*/
/*        cursor: pointer;*/
/*        top: 10px;*/
/*        right: 10px;*/
/*        width: 18px;*/
/*        height: 18px;*/
/*        position: absolute;*/
/*    }*/
/*}*/

