input::-ms-reveal {
    display: none;
}
.inFrameOverlay {
    position: absolute;
    display: none;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, 0.8);
    z-index: 1036;
}

    .inFrameOverlay .spinner {
        height: 60px;
        width: 60px;
        margin: auto;
        display: flex;
        position: absolute;
        -webkit-animation: inframe_spinner .6s infinite linear;
        -moz-animation: inframe_spinner .6s infinite linear;
        -o-animation: inframe_spinner .6s infinite linear;
        animation: inframe_spinner .6s infinite linear;
        border-left: 6px solid var(--primary-very-light);
        border-right: 6px solid var(--primary-very-light);
        border-bottom: 6px solid var(--primary-very-light);
        border-top: 6px solid var(--primary);
        /*border-top: 6px solid rgba(0, 174, 239, .8);*/
        border-radius: 100%;
    }

@-webkit-keyframes inframe_spinner {
    from {
        -webkit-transform: rotate(0deg);
    }

    to {
        -webkit-transform: rotate(359deg);
    }
}

@-moz-keyframes inframe_spinner {
    from {
        -moz-transform: rotate(0deg);
    }

    to {
        -moz-transform: rotate(359deg);
    }
}

@o-keyframes inframe_spinner {
    from {
        -o-transform: rotate(0deg);
    }

    to {
        -o-transform: rotate(359deg);
    }
}

@keyframes inframe_spinner {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(359deg);
    }
}
