﻿header {
    margin: 20px;
    color: white;
}

.layout-body {
    background-color: #18181C;

}
.layout-header { 
}
.layout-header-top {
    margin-top: 5px;
    height: 100px;
    background-image: url('../image/SECONDARY- WHITE 1.png');
    background-position: left top;
    background-repeat: no-repeat;
    background-size: 280px;
    background-color: #18181C;
    text-align: center;
}
.layout-header-env {
    text-align: center;
    color:dimgray;
}
.layout-header-org {
    text-align: right;
    color: silver;
    width: 100%; 
    padding-bottom: 5px;
}
.layout-nav {
    background-color: #5F5E63;
    min-height: 40px;
    margin-bottom: 20px;
    border-radius: 5px;
}
.layout-nav:empty {
    display:none;
}
.layout-nav-item {
    color: white;
    font-size: 1em;
    min-width: 50px;
    display: inline-block;
    padding: 8px 10px 5px 10px;
}
.layout-nav-item:hover {
    color: white;
}

.layout-nav-item-selected {
    color: #f0d719; 
}

/***********************************************************************/
/* MISC */

.dashbroad-num {
    font-size: 30px;
    font-weight: bold;
    text-align: center;
    height: 40px;
}

/***********************************************************************/
/* buttons */

.btn {
    border: solid 1px black;
    color: black;
    min-width: 120px;
    padding-left: 20px;
    padding-right: 20px;
}


/*    .btn:hover {
        background-color: #eaeaea;
    }
*/


.btn-login {
    background-color: dodgerblue;
    color: white;
}
    .btn-login:hover {
        background-color: #1B82E6;
        color: white;
    }
.btn-register {
    background-color: #FABD25;
    color: white;
}

    .btn-register:hover {
        background-color: goldenrod;
        color: white;
    }
.btn-submit {
    background-color: dodgerblue;
    color: white;
}

.btn-submit:hover {
    background-color: #1B82E6;
    color: white;
}
.btn-small {
    background-color: #1a72c7;
    color: #eaeaea;
    font-size: 0.8em;
    width: 60px;
    min-width: 60px;
    max-width: 60px;
    padding-left: 5px;
    padding-right: 5px;
    border: none;
}
.btn-small:hover {
    background-color: #1B82E6;
    color: white;
}
.btn-x {
    background-color: transparent;
    color: red;
    font-size: 1em;
    min-width: unset;
    padding-left: 5px;
    padding-right: 5px;
    border:none;
}
    .btn-x:hover { 
        color: darkred;
    }
.btn-uat {
    background-color: transparent;
    color: blue;
    font-size: 0.8em;
    min-width: unset;
    padding-left: 5px;
    padding-right: 5px;
    border: none;
}
    .btn-uat:hover {
        color: navy;
    }
.btn-general {
    background-color: transparent;
    color: black;
    font-size: 1em; 
    padding-left: 5px;
    padding-right: 5px;
    border: none;
    outline: none;
    min-width: 30px;
    margin-left: 2px;
    border: solid 1px white
}

    .btn-general:hover {
        color: dimgray;
    } 
.btn-switch {
    background-color: transparent;
    color: white;
    font-size: 1em;
    min-width: unset;
    padding-left: 5px;
    padding-right: 5px;
    border: none;
}

    .btn-switch:hover {
        color: dimgray;
    }
.btn-promote {
    background-color: navy;
    color: white;
    font-size: 1em;
}
    .btn-promote:hover {
        background-color: blue;
        color: white;
    }
.btn-fallback {
    background-color: #b10000;
    color: white;
    font-size: 1em;
}

    .btn-fallback:hover {
        background-color: #b1000080;
        color: white;
    }
.btn-microsoft {
    background-image: url('../image/microsoft.png');
    background-repeat: no-repeat;
    background-position-x: 6px;
    background-position-y: 6px;
    background-size: 30px;
    padding-left: 50px;
    height: 42px;
} 



/***********************************************************************/
.dropdown {
    display: inline-block;
    margin: 0px;
}
.dropdown-item {
    cursor:pointer;
}
/***********************************************************************/
/* modal */
.modal-x {
    color: red;
    background-color: transparent;
    border: solid 2px transparent;
    border-radius:5px;
}
.modal-x:hover {   
    border: solid 2px white;
}

.modal-confirm {
    background-color: #1B82E6;
    color: white;
    border: none !important;
}
.modal-confirm:hover {
    background-color: #1a72c7;
    color: white;
}
.modal-cancel {
    background-color: silver;
    color: white;
    border: none !important;
}
.modal-cancel:hover {
    background-color: darkgray;
    color: white;
}

.modal-delete {
    background-color: #b10000;
    color: white;
    border:none;
}
    .modal-delete:hover {
        background-color: darkred;
        color: white;
    }


.modal-danger .modal-header {
    background-color: red !important;
    color: white;
}
.modal-danger .btn-danger {
    background-color: red !important;
    color: white;
}
.modal-danger .btn-danger:hover {
    background-color: #ff000092 !important;
    color: white;
}
.modal-disable-mask {
    display:none;
    position: absolute;
    left:0px;
    top:0px;
    z-index: 9999;
    width: 100%;
    height: 100%;
    background-color:rgba(255,255,255, 0.2);
}
.div-x {
    position: absolute;
    right: 0;
    top: 0;
    font-weight: normal;
    font-size: 1em;
    border: none;
    background-color: #c0c0c0a5;
    color: darkred;
}
.div-x:hover {
    color:red;
    background-color:silver;
}

@keyframes fa-blink {
    0% {
        opacity: 1;
    }

    25% {
        opacity: 0.25;
    }

    50% {
        opacity: 0.5;
    }

    75% {
        opacity: 0.75;
    }

    100% {
        opacity: 0.1;
    }
}

.fa-blink {
    -webkit-animation: fa-blink 5s linear infinite;
    -moz-animation: fa-blink 5s linear infinite;
    -ms-animation: fa-blink 5s linear infinite;
    -o-animation: fa-blink 5s linear infinite;
    animation: fa-blink 5s linear infinite;
}

.error-highlight {
    background-color: rgba(255, 0, 0, 0.3);
}