/* MOBILE CLASSES AND MEDIA QUERIES */
@media (max-width: 768px) {
    .hide-on-mobile {
        display: none !important;
    }
    .hide-on-desktop {

    }
    .show-on-desktop {
        display: none !important;
    }
    .disable-pointer-events-on-mobile {
        pointer-events: none !important;
    }
}

/* DESKTOP CLASSES AND MEDIA QUERIES */
@media (min-width: 768px) {
    .hide-on-mobile {

    }
    .show-on-mobile {
        display: none !important;
    }
    .hide-on-desktop {
        display: none !important;
    }
    .show-on-desktop {

    }
    .disable-pointer-events-on-mobile {

    }
}

.hidden {
    display: none;
}

.cursor-pointer {
    cursor: pointer !important;
}

/* sidebar close button */
.sidebar-close-button {
    position: absolute;
    top: 10px;
    right: 15px;
    text-shadow: unset;
    opacity: 0.8;
}

.sidebar-close-button > span {
    font-size: 30px;
    font-weight: 300;
    color: #0F4C81
}

/* */
.go-text-regular {
    font-weight: 400 !important;
}

.go-text-medium {
    font-weight: 500 !important;
}

.go-text-bold {
    font-weight: 700 !important;
}

/* datatables */
.dt-search, .dt-length {
    display: none;
}
.dt-empty {
    display: none;
}
table.dataTable thead th {
    font-weight: 400;
    vertical-align: bottom !important;
    height: 75px;
}
/* */