/*------------- GLOBAL ------------*/

body {
    color: #fff;
/*    background: transparent url('../../../Images/bg-login.jpg') no-repeat left top fixed;*/
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    font-size: 0.8rem;
    background-color: white;
}

    body#login {
        background: transparent url('../../../Images/SHOPYM1.png') no-repeat center top fixed;
        -webkit-background-size: cover;
        -moz-background-size: cover;
        -o-background-size: cover;
        background-size: cover;
    }

h1, h2, h3, h4, h5, h6 {
    font-family: "Open Sans";
    font-weight: 700;
    color: #fff;
}


a.link {
    color: #6992b7;
    text-decoration: none;
    font-weight: bold;
}


.breadcrumb {
    color: white;
    background-color: #635430;
}

.breadcrumb-item {
    color: white !important;
}
/*------------- FORMS ------------*/

.panel-title {
    color: black;
}

.form-group {
    color: black;
}

.form-control {
    background-color: #fff;
    color: #121424;
    border: solid 1px #ddd;
    border-radius: 5px;
    font-size: 1rem;
}

    .form-control:hover,
    .form-control:active,
    .form-control:focus {
        background-color: #fff;
        color: #000;
        border: solid 1px #121424;
    }


    .form-control::placeholder {
        color: #fff;
    }

    .form-control:disabled, .form-control[readonly] {
        background-color: #ddd;
        color: #333;
        border: solid 1px #ddd;
    }


/*------------- BUTTONS ------------*/

.btn {
    text-transform: uppercase;
    font-weight: 700;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    border-radius: 7px;
    padding: 0.7rem 1rem;
    font-size: 0.8rem;
    border: none;
}

.btn-rounded {
    border-radius: 99rem;
}

.btn-primary, .btn-primary:not(:disabled):not(.disabled):active {
    background-color: #d99f0c;
}

    .btn-primary:hover {
        color: #fff;
        background-color: #d99f0c;
        border-color: #d99f0c;
    }


    .btn-primary:hover,
    .btn-primary:active,
    .btn-primary:focus {
        background-color: #d99f0c;
    }

.btn-info, .btn-info:not(:disabled):not(.disabled):active {
    background-color: #d99f0c;
}

.btn-info {
    color: #fff;
    background-color: #d99f0c;
    border-color: #d99f0c;
}

    .btn-info:hover,
    .btn-info:active,
    .btn-info:focus {
        background-color: #d99f0c;
    }

    .btn-info:hover {
        color: #fff;
        background-color: #d99f0c;
        border-color: #d99f0c;
    }

.btn-success, .btn-success:not(:disabled):not(.disabled):active {
    background-color: #d99f0c;
}

.btn-success {
    color: #fff;
    background-color: #d99f0c;
    border-color: #d99f0c;
}

    .btn-success:hover {
        color: #fff;
        background-color: #d99f0c;
        border-color: #d99f0c;
    }

    .btn-success:hover,
    .btn-success:active,
    .btn-success:focus {
        background-color: #d99f0c;
    }

.btn-secondary {
    background-color: #0866bd;
}

    .btn-secondary:hover,
    .btn-secondary:active,
    .btn-secondary:focus {
        background-color: #04358e;
    }


/*------------- LOGIN PAGE ------------*/

#loginpanel {
    padding: 3rem 2rem 1rem;
    border-radius: 5px;
}

    #loginpanel .form-control {
        background-color: #FBF9ED;
        color: #8B8A8F;
        border: none;
        border-radius: 10px;
        font-size: 1rem;
    }

        #loginpanel .form-control:hover,
        #loginpanel .form-control:active,
        #loginpanel .form-control:focus {
            background-color: white;
            color: black;
        }


        #loginpanel .form-control::placeholder {
            color: #AFA3A3;
        }

        #loginpanel .form-control:disabled, #loginpanel .form-control[readonly] {
            background-color: #121424;
            color: #fff;
        }

    #loginpanel .input-group-text:disabled, #loginpanel .input-group-text[readonly] {
        background-color: #000;
        color: #999;
        border: none;
        margin-right: -5px;
    }



.subhead {
    font-size: 0.7rem;
    font-family: "Times New Roman";
    font-weight: 100;
}

.btn-login {
    padding: 0.7rem 3.5rem;
}

/*------------- SIDE MENU ------------*/

.navbar-toggler {
    color: #999;
}

.navbar-toggler-open {
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 2rem;
    z-index: 900;
}

.navbar-toggler-close {
    position: absolute;
    top: 20px;
    right: 20px;
}

.offcanvas-collapse {
    z-index: 10000;
    position: fixed;
    top: 0px; /* Height of navbar */
    bottom: 0;
    right: 100%;
    width: 70%;
    padding-right: 1rem;
    padding-left: 1rem;
    overflow-y: auto;
    visibility: hidden;
    background-color: #FFF8F0;
    transition: visibility .3s ease-in-out, -webkit-transform .3s ease-in-out;
    transition: transform .3s ease-in-out, visibility .3s ease-in-out;
    transition: transform .3s ease-in-out, visibility .3s ease-in-out, -webkit-transform .3s ease-in-out;
}

    .offcanvas-collapse.open {
        visibility: visible;
        -webkit-transform: translateX(100%);
        transform: translateX(100%);
    }

.profile-panel {
    margin-top: 4rem;
    margin-bottom: 2rem;
}


.profile-details {
    font-weight: bold;
    font-size: 1rem;
}

.nav-divider {
    height: 1px;
    border-bottom: solid 1px rgba(0,0,0,0.3);
    margin: 10px 1rem;
}

.nav-item {
    border-radius: 5px;
}

    .nav-item.active {
        background-color: rgba(0,0,0,0.3);
    }

    .nav-item:hover {
        background-color: #FDF8DB;
    }

    .nav-item .nav-link {
        color: #333;
        font-size: 1rem;
        position: relative;
        transition: padding-left 0.3s ease-in-out;
    }

    .botbar {
        background-color: #d99f0c;
    }

    .nav-item .collapse > .nav-link {
        padding-left: 15px;
        border-left: 4px solid #ddd;
    }

    .nav-item .collapse > .collapse > .nav-link {
        padding-left: 35px;
        border-left: none;
    }

    .nav-item .collapse > .nav-link:hover {
        background-color: rgba(0,0,0,0.3);
    }

    .nav-item .nav-link[aria-expanded="true"] > i {
        opacity: 0.2;
    }



.languagechooser {
    border-radius: 5px;
    background-color: rgba(0,0,0,0.3);
    display: inline-block;
    padding: 5px 10px;
    position: absolute;
    top: 5px;
    right: 20px;
}

    .languagechooser a {
        color: #6992b7;
    }

#changeLanguage.modal .modal-content {
    background-color: #1e2442;
}

    #changeLanguage.modal .modal-content .close {
        color: #fff;
    }

#changeLanguage.modal .modal-body a {
    color: #6992b7;
}

#changeLanguage.modal .modal-body .flag-icon {
    font-size: 3.5rem;
    border-radius: 5px;
}

/*------------- SCREEN PAGE ------------*/

/*------------- SIDE MENU - DESKTOP ------------*/

.navbar-md {
    background: white;
    color: #999;
    position: fixed;
    height: 100vh;
    overflow-y: auto;
}

    .navbar-md h1,
    .navbar-md h2,
    .navbar-md h3,
    .navbar-md h4,
    .navbar-md h5,
    .navbar-md h6 {
        color: #333;
    }

    .navbar-md .nav-item .nav-link {
        color: #333;
        font-weight: bold;
        font-size: 20px;
    }

    .navbar-md .nav-item.active {
        background-color: rgba(0,0,0,0.05);
    }

    .navbar-md .nav-item:hover {
        background-color: rgba(0,0,0,0.05);
    }

    .navbar-md .nav-item .collapse > .nav-link:hover {
        background-color: rgba(0,0,0,0.1);
    }


    .navbar-md .nav-divider {
        border-bottom: solid 1px rgba(0,0,0,0.1);
    }

    .navbar-md .logo-panel {
        padding-bottom:30px;
    }

        .navbar-md .logo-panel .subhead {
            font-size: 1rem;
        }

            .navbar-md .logo-panel .subhead > img {
                width: 80px;
            }

/*------------- QTIP ------------*/

.qtip {
    background-color: #ddd;
}

/*------------- DASHBOARD PAGE ------------*/

body#dashboard {
/*    background: transparent url('../../../Images/bg-dashboard.jpg') no-repeat center top fixed;*/
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    background-color: #FFFFFF;
}

#dashboard .subhead img {
    width: 50px;
}

#dashboard .logo-panel .subhead {
    font-size: 0.5rem;
    font-family: "Times New Roman";
    font-weight: 100;
}

#dashboard .header {
    margin-top: 3rem;
    margin-bottom: 3rem;
}

    #dashboard .header .heading {
        text-transform: uppercase;
    }

    #dashboard .header .subheading {
        font-family: "Times New Roman";
        text-transform: uppercase;
        font-weight: 100;
    }

    #dashboard .header .fineprint {
        font-size: 0.7rem;
    }

/*------------- WIDGET ------------*/

.widget-container {
    margin-top: 15px;
}

.widget a {
    color: #fff;
}

.widget.widget1 {
    background-color: #0866bd;
    color: #fff;
}

.widget.widget2 {
    background-color: #04358e;
    color: #fff;
}

.widget.widget3 {
    background-color: #0a214b;
    color: #fff;
}

.widget.widget4 {
    background-color: #171c25;
    color: #fff;
}

.widget-content {
    padding: 1rem 1rem;
}

.widget-top {
    border-bottom: solid 1px rgba(255,255,255,0.5);
}

.widget-icon {
    height: 3rem;
}

.widget-value {
    font-size: 1rem;
    font-weight: bold;
    margin-bottom: -10px;
    line-height:40px;
}

.widget-value2 {
    font-size: 1.4rem;
    font-weight: bold;
    margin-bottom: -10px;
    line-height: 40px;
}

.widget-label {
    font-weight: bold;
}

/*------------- MAIN CONTAINER ------------*/

.main-container {
    background: #fff;
    border-radius: 10px;
    padding: 15px;
}

/*------------- MAIN PANELS ------------*/

.panel {
    border-radius: 10px;
    padding: 10px 0px;
    margin-bottom: 10px;
}

.announcement-panel {
    color: #000;
    background-color: rgba(0,0,0,0.05);
}

.announecment-label {
    font-weight: bold;
    font-size: 0.7rem;
}

.announcement-title {
    font-size: 1rem;
    font-weight: bold;
}

.video-panel {
    padding: 0px;
}

    .video-panel iframe {
        border-radius: 10px;
    }

.banner-panel {
    height: 95%;
}

    .banner-panel.banner1 {
        text-align: right;
    }

        .banner-panel.banner1 .banner-heading {
            color: #fff;
            font-style: italic;
            font-weight: bold;
            font-size: 1rem;
            margin-top: 3rem;
        }

        .banner-panel.banner1 .banner-subheading {
            color: #80b4e4;
            font-style: italic;
            font-weight: bold;
            font-size: 0.8rem;
        }

/*------------- FOOTER ------------*/

footer {
}

    footer .copyright {
        color: #000;
    }

    footer a {
        color: #000;
        display: inline-block;
        margin: 0px 10px;
    }

/*------------- LOADER ------------*/

#loader {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
    background-color: rgba(255,255,255,0.95);
}

#loader-logo {
    display: block;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    width: 80px;
    height: 80px;
    padding: 5px 0px 0px 5px;
}

#loader-icon {
    display: block;
    position: relative;
    left: 50%;
    top: 50%;
    width: 150px;
    height: 150px;
    margin: -75px 0 0 -75px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: #6c96c7;
    -webkit-animation: spin 2s linear infinite;
    animation: spin 2s linear infinite;
}

    #loader-icon:before {
        content: "";
        position: absolute;
        top: 5px;
        left: 5px;
        right: 5px;
        bottom: 5px;
        border-radius: 50%;
        border: 3px solid transparent;
        border-top-color: #3b7cb8;
        -webkit-animation: spin 3s linear infinite;
        animation: spin 3s linear infinite;
    }

    #loader-icon:after {
        content: "";
        position: absolute;
        top: 15px;
        left: 15px;
        right: 15px;
        bottom: 15px;
        border-radius: 50%;
        border: 3px solid transparent;
        border-top-color: #0b68be;
        -webkit-animation: spin 1.5s linear infinite;
        animation: spin 1.5s linear infinite;
    }

@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

/*------------- RESPONSIVE ------------*/

@media (min-width: 768px) {
    .profile-panel {
        margin-top: 2rem;
        margin-bottom: 1rem;
    }

    footer .copyright {
        margin-bottom: 0;
    }
}



/*------------- CUSTOM MODALS ------------*/

/* General Modal CSS */

.modal .modal-header {
    background-color: #11172b;
    color: #fff;
    border-bottom: 0px;
}

.modal .btn-primary {
    background-color: #11172b;
}

.modal .modal-dialog-scrollable .modal-body {
    padding-top: 0px;
    color: #000;
}

.modal .modal-body > .modal-content-header {
    margin-left: -16px;
    margin-right: -16px;
    margin-bottom: 15px;
}

.modal .modal-footer {
    background-color: #e7e7e7;
    border-top: 0px;
}

.modal-content ol {
    list-style-type: none;
    counter-reset: item;
    margin: 0;
    padding: 0;
}

    .modal-content ol > li {
        display: table;
        counter-increment: item;
        margin-bottom: 0.6em;
    }

        .modal-content ol > li:before {
            content: counters(item, ".") ". ";
            display: table-cell;
            padding-right: 0.6em;
        }

.modal-content li ol > li {
    margin: 0;
}

    .modal-content li ol > li:before {
        content: counters(item, ".") " ";
    }

/* TYPE 1 = Title,Header,Content,Footer  */
.modal-type1 {
}

/* TYPE 2 = Header,Content  */
.modal-type2 .modal-body {
    padding-top: 0px;
}

    .modal-type2 .modal-body .container-fluid {
        padding-top: 15px;
        padding-bottom: 15px;
    }

.modal-type2 .modal-content-header > img {
    border-top-left-radius: .3rem;
    border-top-right-radius: .3rem;
}

.modal-type2 .modal-content {
    background-color: #0d132a;
    color: #fff;
}

.modal-type2 .modal-choice {
    text-align: center;
    color: #fff;
    font-size: 1.2rem;
    font-weight: bold;
}

.modal-type2 .modal-choice-image {
    max-width: 180px;
    margin: 15px auto;
}


#header_top {
    z-index: 1030;
    position: fixed;
    width: 70px;
    height: 100vh;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-align: center;
    border-right: 1px solid #e8e9e9;
}

@media screen and (max-width: 1200px) {
    #header_top {
        background: #fff;
        border-right: 1px solid rgba(0, 40, 100, 0.12);
    }
}

@media screen and (max-width: 767px) {
    #header_top {
        border-bottom: 1px solid rgba(0, 40, 100, 0.12);
        border-right: 0;
        background: #f8f9fa;
        flex-direction: row;
        height: auto;
        width: 100%;
        padding: 0 15px;
    }

        #header_top .hleft,
        #header_top .dropdown {
            display: flex;
            align-items: center;
        }

        #header_top .header-brand {
            margin: 0;
            padding-right: 15px;
        }
}

#header_top .header-brand {
    padding: 0;
    transition: 0.3s opacity;
    margin-top: 10px;
    margin-bottom: 15px;
    display: inline-block;
}

@media screen and (max-width: 640px) {
    #header_top .header-brand {
        margin: 0 15px 0 0;
    }
}

#header_top .header-brand:hover {
    opacity: 0.8;
    color: inherit;
    text-decoration: none;
}

#header_top .brand-logo {
    background: #292b30;
    padding: 10px;
    color: #fff;
    border-radius: 35px;
    display: inline-block;
}

#header_top .nav-link {
    padding: 12px;
    display: inline-flex;
    color: #333537;
}

    #header_top .nav-link i {
        font-size: 18px;
    }

    #header_top .nav-link .avatar {
        border: 2px solid #fff;
    }

#header_top .header-avatar {
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    width: 2rem;
    height: 2rem;
    display: inline-block;
    vertical-align: bottom;
}

#header_top .hright .dropdown-menu {
    top: 50px !important;
    left: 50px !important;
}

@media screen and (max-width: 767px) {
    #header_top .hright .dropdown-menu {
        top: 0 !important;
        left: auto !important;
    }
}

.header_top > .container {
    padding: 0;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    height: 100vh;
}

@media screen and (max-width: 767px) {
    .header_top > .container {
        flex-direction: row;
        height: 55px;
        align-items: center;
    }
}

.settings-card .settings-icon {
    font-size: 25px;
    color: #efc152;
}

.settings-card:hover .settings-icon {
    color: #FFE096;
}

.settings-card .settings-title {
    font-size: 0.7rem;
    color: #000;
}

.settings-card:hover .settings-title {
    font-weight: bold;
}

.settings-card .settings-icon {
    float: left;
    width: 30px;
}

.settings-card .settings-title {
    float: left;
    line-height: 33px;
    padding-left: 10px;
}

.settings-card .card-body {
    text-align: left !important;
}

