html,
body {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    background: var(--background-color) !important;
}

.bg-logo {
    opacity: .5;
    width: 100%;
    position: fixed;
    z-index: 1;
}

.mgsection {
    width: 100%;
    height: 15%;
    z-index: 5;
}

.top {
    top: 0;
    left: 0;
}

.middel {
    top: 15%;
    left: 50%;
    height: 70%;
}

.bottom {
    left: 0;
    bottom: 0;
}

.steam {
    transition: .4s;
    outline: none;
    border: 1px solid transparent;
    height: 60px;
    padding-left: 20px;
    padding-right: 20px;
    background: var(--bright-background-color);
    border-radius: var(--border-radius);
    color: var(--text-color);
}

.steam:focus {
    outline: none;
}

.steam:hover {
    color: var(--dark-color);
    border: 1px solid var(--dark-color);
}

.fa-icon {
    font-size: 20px;
}

.entry-label {
    padding-left: 10px;
    padding-right: 10px;
    padding-top: 1px;
    padding-bottom: 1px;
    border-radius: var(--border-radius);
    border: 1px solid red;
}

.no-border {
    border: 0 !important;
}

.mg-card {
    border: 0 !important;
}

.card-stats {
    background: transparent !important;
}

.z_lower {
    z-index: 5 !important;
}

textarea {
    padding: 20px;
    overflow: auto;
    height: 200px !important;
}

.mg-input:focus {
    outline: none;
}

.datepicker-left {
    float: left;
    width: 65%;
    border-radius: var(--border-radius) 0 0 var(--border-radius);
}

.datepicker-right {
    float: left;
    width: 35%;
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
}

.entry-hidden-container {
    transition: .4s;
}

.entry-hidden {
    transition: .4s;
    overflow: hidden;
    height: 0px !important;
}



@media (max-width: 1600px) {
    .mobile_fix {
        width: 100% !important;
        -ms-flex: 0 0 50% !important;
        flex: 0 0 50% !important;
        max-width: 50% !important;
        margin-top: 1.5rem;
    }
}

@media (max-width: 980px) {
    .mobile_fix {
        width: 100% !important;
        -ms-flex: 0 0 100% !important;
        flex: 0 0 100% !important;
        max-width: 100% !important;
        margin-top: 1.5rem;
    }
}

/* TABLE */
.table-sm>tbody>tr:nth-child(odd)>td,
.table-sm>tbody>tr:nth-child(odd)>th {
    background-color: rgb(40, 40, 40);
}

.table-sm>tbody>tr:nth-child(even)>td,
.table-sm>tbody>tr:nth-child(even)>th {
    background-color: rgb(30, 30, 30)
}

.borderless td {
    border: none !important;
    border-bottom: 1px solid rgba(255,255,255,0.1) !important;
}

.borderless th {
    border: none !important;
}

.responsive_table {
    display: normal;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: -ms-autohiding-scrollbar
}

@media (max-width:1002px) {
    .responsive_table {
        display: block;
        width: 100%;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        -ms-overflow-style: -ms-autohiding-scrollbar
    }

    .responsive_table>.table-bordered {
        border: 0
    }
}

.entry-label-rp {
    border-radius: var(--border-radius);
    border: 1px solid red;
    padding: 2px 10px;
    margin-top: 4px;
    width: auto !important;
    display: inline-block;
}