﻿body {
    /*align-items: center;
    display: flex;
    justify-content: center;
    min-height: 100vh;
    transform: scale(3);*/
}

.c-loader {
    animation: is-rotating 1s infinite;
    border: 6px solid #e5e5e5;
    border-radius: 50%;
    border-top-color: #CB2F44;
    border-bottom-color: #005384;
    height: 72px;
    width: 72px;
}

@keyframes is-rotating {
    to {
        transform: rotate(1turn);
    }
}



@media screen and (max-device-width: 1100px) {
    .c-loader {
        margin-left: 5rem !important;
        height: 125px;
        width: 125px;
    }
}

/*@media only screen and (min-device-width: 375px) and (max-device-width: 812px) and (-webkit-min-device-pixel-ratio: 3) and (orientation: landscape) {
}*/