﻿.header-top {
    background-color: #3f454e;
    height: 60px;
    padding: 5px;
    width: 100%;
}

.header-menu-admin {
    background-color: #3C454F;
    position: absolute;
    top: 12px;
    left: 0;
    width: 100%;
    display: none;
}

.header-title {
    float: left;
    margin-left: 15px;
    margin-top: auto;
    margin-bottom: auto;
}

.header-title a {
    text-decoration: none;
    font-size: 26px;
    color: white;
}

.header-menu {
    margin-top: auto;
    margin-bottom: auto;
    padding-top: 5px;
    height: 100%;
}

.header-title-link {
    margin-left: 5px;
    margin-right: 10px;
    margin-top: auto;
    margin-bottom: auto;
}

.header-title-link a {
    color: deepskyblue;
    text-decoration: none !important;
}

.header-title-link a:hover {
    color: white !important;
}

.header-user {
    padding-top: 2px;
    text-align: right;
    margin-right: 15px;
    color: white;
    font-size: 12px;
    margin-top: auto;
    margin-bottom: auto;
}

.fa-bars {
    color: #7bb467;
    font-size: 30px !important;
}

.fa-bars:hover {
    cursor: pointer;
}

.fa-chevron-down {
    font-size: 25px !important;
    color: white;
}

.fa-chevron-down:hover {
    cursor: pointer;
}

.circle {
    display: inline-block;
    background-color: #379350;
    border-radius: 50%;
}

.circle:hover {
    cursor: pointer;
}

.circle-inner {
    color: white;
    display: table-cell;
    vertical-align: middle;
    text-align: center;
    text-decoration: none;
    height: 30px;
    width: 30px;
    font-size: 16px;
}

@media (max-width: 200px) {
    .header-top {
        height: 60px;
    }

    .header-title a {
        font-size: 50px;
    }   

    .fa-bars {
        font-size: 60px !important;
    }

    .fa-chevron-down {
        font-size: 50px !important;
    }

    .nav-menu {
        font-size: 30px !important;
    }

    .nav-menu-group span {
        font-size: 40px !important;
    }

    .nav-menu-item {
        font-size: 40px !important;
        padding: 10px !important;
    }

    .top-menu-item {
        font-size: 40px !important;
    }

    .header-user {
        margin-left: auto;
        margin-right: 20px;
    }

    .circle-inner {
        height: 60px;
        width: 60px;
        font-size: 38px;
    }
}

@media only screen and (max-device-width: 1400px) {

    .container-fluid {
        padding-left: 5px !important;
        padding-right: 5px !important;
    }

    .header-top {
        height: 60px;
    }

    #btnMenuPopup {
        font-size: 60px !important;
    }

    .TitleLink {
        font-size: 30px !important;
    }

    #btnTopMenu {
        font-size: 40px !important;
    }

    .dxeListBoxItemRow_Metropolis {
        font-size: 20px;
    }

    .dxm-item {
        font-size: 20px;
    }
}

hovertext {
    position: relative;
    cursor: pointer;
}

hovertext:before {
    content: attr(data-hover);
    visibility: hidden;
    opacity: 0;
    background-color: black;
    color: #fff;
    text-align: center;
    border-radius: 5px;
    padding: 5px;
    position: absolute;
    top: 110%;
    left: 0;
    transition: opacity 0.3s ease-in-out;
}

hovertext:hover:before {
    visibility: visible;
    opacity: 1;
}