html {
    font-size: 14px;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

html {
    position: relative;
    min-height: 100%;
}

body {
    margin-bottom: 60px;
    overflow: auto;
}
/* Right LOADER */
#loading {
    width: 100%;
    height: 100vh;
    left: 0;
    top: 0;
    position: fixed;
    z-index: 999999;
    background: rgb(128, 128, 128, 0.4);
}

.loader {
    border: 16px solid transparent;
    border-radius: 50%;
    border-top: 22px solid #3498db;
    border-bottom: 22px solid #df2315;
    width: 220px;
    height: 220px;
    animation: spin 2s linear infinite;
    position: fixed;
    top: 50%;
    left: 50%;
}

.visible {
    visibility: visible !important;
}

.invisible {
    visibility: hidden !important;
}
.text-gray-600 {
    color: #c3c3c3 !important;
    font-size: 12px !important;
}

.set-elements-center-outer {
    position: relative;
}
.set-elements-center-inner {
    margin: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}
