﻿/********* Variables *********/
:root {
    --main-color: #FF5500;
    --alt-color: #186EA4;
}

/*********Main Style*********/

html,
body,
form {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    /*background-color:aqua;*/
}

.container {
    min-height: 100%;
    position: relative;
}

.allContent {
    padding-top: 77px;
    padding-bottom: 26px;
}

.content {
}

.header1 {
    background-color: var(--main-color);
    color: white;
    /*border-bottom: solid 1px #e7e7e7;*/
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 7001;
    height: 26px;
    line-height: 26px;
}

.show-on-small {
    display: none !important;
}

@media (max-width: 768px) {
    .mainmenu {
        float: right !important;
    }

    .hide-on-small {
        display: none; /* Hides the element completely */
    }

    .show-on-small {
        display: inline-block !important; /* Or block depending on the design */
    }
}


.header2 {
    background-color: #f8f8f8;
    color: orangered;
    border-bottom: solid 1px #e7e7e7;
    position: fixed;
    width: 100%;
    top: 26px;
    z-index: 7001;
    height: 50px;
    line-height: 50px;
}

.article1 {
}

.footer {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 26px;
    color: #777777;
    border-top: solid 1px #e7e7e7;
    border-top: solid 1px black;
    line-height: 26px;
    font-size: small;
    background-color: var(--main-color);
    color: white;
}

/*********Second Style*********/

/*html .t-container-fluid,
html .t-row-wrap > .t-row {
    max-width: 1920px;
}
*/
.sidebar {
    background-color: #d6d6d6;
    border: solid 1px #e7e7e7;
}

.LogoutMenu,
.LogoutMenu .rmRootGroup,
/*.LogoutMenu .rmItem,*/
.LogoutMenu .rmLink {
    border: none !important;
    line-height: 40px !important; /*50px*/
    /*padding: 0 10px !important;*/
}

    .LogoutMenu .rmLink {
        /*padding: 0 10px !important;*/
    }

/*********Side Style*********/

.NoPad {
    padding: 0 !important;
}

.Center {
    text-align: center;
}

.Box {
    border-color: #DDD;
    border-style: solid;
    border-width: 1px;
    border-radius: 5px;
    margin-bottom: 1em;
}

.BoxTop {
    background-color: #F5F5F5;
    border-bottom: 1px solid #DDD;
    padding: 3px;
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
}

.BoxMiddle {
    padding: 3px;
    border-radius: 4px;
}

.BoxBottom {
    background-color: #F5F5F5;
    padding: 3px;
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 4px;
    border-top: 1px solid #DDD;
}

.BoxPrimary {
    border-color: #337ab7;
}

    .BoxPrimary > .BoxTop {
        color: #fff;
        background-color: #337ab7
    }

.BoxBlue {
    border-color: #bce8f1;
}

    .BoxBlue > .BoxTop {
        color: #31708f;
        background-color: #d9edf7
    }

.BoxRed {
    border-color: #337ab7;
}

    .BoxRed > .BoxTop {
        color: #fff;
        background-color: #337ab7
    }

.BoxYellow {
    border-color: #337ab7;
}

    .BoxYellow > .BoxTop {
        color: #fff;
        background-color: #337ab7
    }
