html {
    font-size: 14px;
    position: relative;
    min-height: 100%;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

body {
    margin: 0;
    min-height: 100vh;
}

.btn:focus,
.btn:active:focus,
.btn-link.nav-link:focus,
.form-control:focus,
.form-check-input:focus {
    box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

/* ADMIN LAYOUT */

.admin-logo {
    max-width: 125px;
    height: auto;
}

.admin-wrapper {
    min-height: 100vh;
}

.admin-sidebar {
    width: 250px !important;
    min-width: 250px !important;
    max-width: 250px !important;
    height: 100vh !important;
    position: fixed !important;
    top: 0;
    left: 0;
    overflow-y: auto;
    z-index: 1050;
}

.admin-content {
    margin-left: 250px;
    min-height: 100vh;
    width: calc(100% - 250px);
}

/* ADMIN TABLE */


.admin-table thead th {
    background-color: #f8f9fa;
    color: #495057;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    border-bottom: 1px solid #dee2e6;
}

.admin-table tbody td {
    padding-top: 14px;
    padding-bottom: 14px;
    border-bottom: 1px solid #edf0f2;
}

.admin-table tbody tr {
    transition: all 0.2s ease;
    cursor: pointer;
}

    .admin-table tbody tr:hover {
        background-color: #eef3f8;
    }

    .admin-table tbody tr,
    .admin-table tbody tr td,
    .admin-table tbody tr td * {
        cursor: pointer !important;
    }

/* BUTTONS */

.btn-logo {
    background-color: #6c7b8b;
    border-color: #6c7b8b;
    color: white;
    transition: all .2s ease;
}

    .btn-logo:hover {
        background-color: #5b6978;
        border-color: #5b6978;
        color: white;
    }

/* FORM */

.form-control::placeholder {
    color: #6c7b8b !important;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: lowercase;
    opacity: .75;
}

/* MOBILE ADMIN MENU */

@media (max-width: 767px) {
    .admin-sidebar {
        transform: translateX(-100%);
        transition: transform .2s ease;
    }

    .admin-content {
        margin-left: 0;
        width: 100%;
    }

    body.admin-menu-open .admin-sidebar {
        transform: translateX(0);
    }
}
