html {
    font-size: 14px;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

html {
    position: relative;
    min-height: 100%;
}

body {
    margin-bottom: 60px;
}

.custom-page-title {
    float: left;
}

.auto-overflow {
    overflow: auto;
}

.custom-page-right-button {
    float: right;
}

    .custom-page-right-button a {
        text-decoration: none;
    }

.page-item.disabled .page-link {
    background-color: #333333 !important;
    color: #666666 !important;
}

.page-header-padding {
    padding-top: 20px;
    padding-left: 10px;
}

.form-row {
    padding-top: 10px;
}

.loader {
    border: 8px solid #f3f3f3;
    border-top: 8px solid #3498db;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 1s linear infinite;
    margin: 50px auto;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}