/* html,body{
    margin: 0;
    padding: 0;
}
body{
    font-size: 14px;
    color: #333;
} */
@media print {
    body{-webkit-print-color-adjust:exact;} 
}
.fr{
    float:right;
}
.vt{
    vertical-align: top;
}
.loader-15 {
    width: 70px;
    height: 70px;
    border: 5px dotted #FFF;
    border-radius: 50%;
    display: inline-block;
    position: relative;
    -webkit-animation: rotation 4s linear infinite;
    animation: rotation 4s linear infinite;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    }
    /* keyFrames */
    @-webkit-keyframes rotation {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
    }
    @keyframes rotation {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
    }

    .loader_box{
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    }
    .loader_video{
        width: 50px;
        height: 50px;
        border-radius: 50%;
        position: absolute;
        color: #181818;
    }