﻿/* Please see documentation at https://docs.microsoft.com/aspnet/core/client-side/bundling-and-minification\ 
for details on configuring this project to bundle and minify static web assets. */
body {
    padding-top: 50px;
    padding-bottom: 20px;
    font-family: "Open Sans", sans-serif;
}

/* Wrapping element */
/* Set some basic padding to keep content from hitting the edges */
.body-content {
    padding-left: 15px;
    padding-right: 15px;
}

/* Carousel */
.carousel-caption p {
    font-size: 20px;
    line-height: 1.4;
}

/* Make .svg files in the carousel display properly in older browsers */
.carousel-inner .item img[src$=".svg"] {
    width: 100%;
}

/* QR code generator */
#qrCode {
    margin: 15px;
}

/* Hide/rearrange for smaller screens */
@media screen and (max-width: 767px) {
    /* Hide captions */
    .carousel-caption {
        display: none;
    }
}

a {
    color: #F56200;
}


.top-menu {
    background: #f7f7f7;
    border: none;
    border-radius: 0;
    padding-left: 10px;
    padding-right: 10px;
    box-shadow: 0 2px 16px 0 rgba(0,0,0,.08);
    z-index: 999;
}

.top-nav-glyph {
    margin-right: 5px;
}


.top-menu a {
    color: #51476B !important;
    text-decoration: none !important;
}

.top-menu .glyphicon {
    font-size: 20px
}

.top-menu ul.dropdown-menu li a {
    color: black !important;
}

.login-box {
    padding-top: 20px;
    width: 400px;
    padding-left: 20px;
    padding-bottom: 50px;
    margin: auto;
}

.login-left-filler {
    top: 0;
    bottom: 0;
    position: fixed;
    width: 50%;
    background: #3b3b53;
}

.login-right-box {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0px;
    /* width: 50%; */
    top: 0;
    background: white;
    min-height: 550px;
    margin-bottom: 10px;
    margin-top: 10px;
}


.pull-center {
    text-align: center;
}

.login-sub-header {
    color: grey;
    margin-top: 10px;
    margin-bottom: 20px;
}


.left-menu navbar li .glyphicon {
    margin-right: 10px;
}

.left-menu nav {
    background: #F7F7F9;
}

.left-menu a {
    color: #676973 !important;
    text-shadow: none !important;
}

.left-menu li.active a {
    color: #676973 !important;
}

.left-menu {
    width: 60px;
}

/* Sidebar Overlay Background */
.sidebar-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1001;
}

body.sidebar-open .sidebar-overlay {
    display: block;
}

/* Sidebar - Always visible but collapsed */
.left-menu nav,
.left-menu .navbar {
    left: 0 !important;
    width: 60px !important;
    position: fixed !important;
    top: 0 !important;
    bottom: 0 !important;
    z-index: 1002 !important;
    transition: width 0.3s ease !important;
    background: #fff !important;
    overflow: hidden !important;
}

/* Sidebar expanded when open */
body.sidebar-open .left-menu nav,
body.sidebar-open .left-menu .navbar {
    width: 240px !important;
    box-shadow: 4px 0 20px rgba(0,0,0,0.15) !important;
}

/* Hide text labels when collapsed */
.left-menu .left-menu-text {
    display: none;
}

body.sidebar-open .left-menu .left-menu-text {
    display: inline;
}

/* Center icons when collapsed */
.left-menu li a {
    justify-content: center !important;
    padding: 12px 8px !important;
}

body.sidebar-open .left-menu li a {
    justify-content: flex-start !important;
    padding: 12px 20px !important;
}

/* Hide logo when collapsed, show when expanded */
.left-menu .sidebar-logo {
    display: none;
}

body.sidebar-open .left-menu .sidebar-logo {
    display: block;
}

/* Hamburger button always visible in collapsed sidebar */
.left-menu .navbar-header {
    display: flex;
    justify-content: center;
    padding: 15px 10px !important;
}

body.sidebar-open .left-menu .navbar-header {
    justify-content: space-between;
    padding: 15px !important;
}

/* Close button hidden when collapsed, visible when expanded */
#sidebar-close {
    display: none;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    padding: 8px;
    cursor: pointer;
    color: #666;
    border-radius: 6px;
}

body.sidebar-open #sidebar-close {
    display: inline-flex;
}

#sidebar-close:hover {
    background: #ffebeb;
    color: #c00;
}

/* Hamburger toggle button in sidebar */
#sidebar-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    padding: 10px;
    cursor: pointer;
    color: #666;
    border-radius: 6px;
    font-size: 18px;
}

#sidebar-toggle:hover {
    background: #fff3ec;
    color: #E8703A;
}

/* Hide hamburger when sidebar is open */
body.sidebar-open #sidebar-toggle {
    display: none;
}

/* Allow tooltips to overflow the sidebar when collapsed */
.left-menu nav,
.left-menu .navbar {
    overflow: visible !important;
}

.left-menu .navbar-collapse,
.left-menu .container-fluid {
    overflow: visible !important;
}

/* Tooltips for collapsed sidebar menu items */
.left-menu li {
    position: relative;
}

.left-menu li a::after {
    content: attr(data-tooltip);
    position: absolute;
    left: 65px;
    top: 50%;
    transform: translateY(-50%);
    background: #454561;
    color: #fff;
    padding: 8px 14px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
    z-index: 9999;
    pointer-events: none;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.left-menu li a::before {
    content: '';
    position: absolute;
    left: 57px;
    top: 50%;
    transform: translateY(-50%);
    border: 6px solid transparent;
    border-right-color: #454561;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease, visibility 0.2s ease;
    z-index: 9999;
}

.left-menu li a:hover::after,
.left-menu li a:hover::before {
    opacity: 1;
    visibility: visible;
}

/* Hide tooltips when sidebar is expanded */
body.sidebar-open .left-menu li a::after,
body.sidebar-open .left-menu li a::before {
    display: none;
}

.right-container {
    top: 0;
    bottom: 0;
    display: flex;
    position: fixed;
    width: calc(100% - 60px);
    float: left;
    margin-left: 60px;
}

.left-menu li a {
    padding-left: 29px !important;
}

.left-menu .glyphicon {
    font-size: 18px;
}


@media (min-width: 768px) {
    /* On large screens, convert the nav menu to a vertical sidebar */

    .left-menu .navbar-header {
        float: none;
    }

    .left-menu .navbar .navbar-collapse {
        /*border-top: 1px solid #444;*/
        padding: 0;
    }

    .left-menu .navbar .container-fluid {
        padding: 0;
        margin: 0;
    }

        .left-menu .navbar .container-fluid .navbar-brand {
            margin: 0;
        }

    .left-menu .navbar ul {
        float: none;
    }

    .left-menu .navbar li {
        float: none;
        font-size: 15px;
        margin: 6px;
    }

        .left-menu .navbar li a {
            padding: 10px 16px;
            border-radius: 4px;
        }

    .left-menu .navbar a {
        /* If a menu item's text is too long, truncate it */
        width: 100%;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
}

footer {
    position: fixed;
    bottom: 0;
    left: 20px;
    padding: 20px;
}


.page-top-bar {
    height: 90px;
    border-bottom: solid 1px #d6d1d1;
    padding-top: 10px;
    width: 100%;
}

.top-page-actions {
    height: 40px;
    border-radius: 3px;
    margin-top: 17px;
}

.page-left-content {
    float: left;
    width: 20%;
    height: 100%;
    border-right: solid 1px #d6d1d1;
    padding-left: 20px;
    padding-right: 20px;
    overflow: auto;
}

    .page-left-content li a, .page-left-content li a:hover, .page-left-content li a:focus {
        color: #454561;
        text-decoration: none;
    }

.page-right-content {
    float: left;
    width: 80%;
    padding-left: 10px;
    overflow: auto;
    height: 100%;
}

.page-content {
    position: fixed;
    top: 64px;
    bottom: 10px;
    width: calc(100% - 76px);
    -webkit-overflow-scrolling: touch;
}

.left-menu .navbar-header {
    margin-bottom: 20px;
}

.top-action {
    float: right;
    margin-top: 9px;
    cursor: pointer;
    margin-left: 20px;
    width: 31px;
    text-align: center;
    color: #F56200;
}

    .top-action div {
        font-size: 11px;
        line-height: 11px;
        text-align: center;
    }

    .top-action .glyphicon {
        font-size: 24px;
    }

#logoutForm {
    margin-right: 18px;
}



@media screen and (min-width: 768px) {
    .modal:before {
        display: inline-block;
        vertical-align: middle;
        content: " ";
        height: 100%;
    }
}

.modal-error-message {
    padding-left: 14px;
    padding-top: 15px;
    color: #cc2020;
    font-size: 12px;
    font-style: italic;
    font-weight: normal;
}


.modal.large {
    width: 80%; /* respsonsive width */
    margin-left: -40%; /* width/2) */
}



.modal {
    text-align: center;
}

.modal-dialog {
    /*width:auto;*/
    display: inline-block;
    text-align: left;
    vertical-align: middle;
}



#modal-dialog-xl .modal-large {
    width: 90%;
    max-width: 1440px;
}

.main-left-nav li {
    margin-top: 20px !important;
    margin-bottom: 20px !important;
}

.left-menu-text {
    padding-left: 5px;
}

.main-left-nav .glyphicon {
    top: 3px;
}

.left-menu .navbar-header {
    background: #F7F7F9;
    align-content:center;
}

.left-menu .navbar-collapse.collapse {
    padding-top: 33px;
}

.navbar-inverse .navbar-nav > .active > a, .navbar-inverse .navbar-nav > .active > a:focus, .navbar-inverse .navbar-nav > .active > a:hover {
    background: white;
    font-weight: bold;
}

.btn-default, .btn-default:hover {
    background-color: #F56200;
    color: white;
}

body {
    /* background: #f0f0f7*/
}

.navbar-inverse .navbar-nav > .open > a, .navbar-inverse .navbar-nav > .open > a:focus, .navbar-inverse .navbar-nav > .open > a:hover {
    color: #fff;
    background-color: #f0f0f7;
}

.navbar-brand {
    padding-left: 0px;
}

    .navbar-brand img {
        /*width: 34px;
     float: left; 
    position: fixed;
    left: 13px;
    top: 10px;*/
        width: 95%;
        margin-left: 5px;
        margin-bottom: 2px;
        height: 100%;
    }

.navbar-inverse .btn-link, .navbar-inverse .btn-link:hover {
    color: #1d1b1b;
}

.right-container {
    overflow-y: auto;
    margin-bottom: 10px;
}

.nav-pills > li.active > a, .nav-pills > li.active > a:focus, .nav-pills > li.active > a:hover {
    background-color: #F56200;
}

.page-content .tab-content {
    padding-top: 100px;
    margin-left: 20px;
}

.top-search {
    position: fixed;
    top: 7px;
    width: 350px;
    left: 80px;
    z-index: 100;
}

.top-search-button {
    position: fixed;
    left: 424px;
    top: 7px;
    width: 50px;
    height: 34px;
    background: #EC7323;
    border-radius: 0 4px 4px 0;
    padding: 6px 14px;
    color: #fff;
    z-index: 100;
}

/*.navbar-brand {
    padding-left: 50px;
    margin-top: 5px !important;
}*/


.sidenav {
    width: 50px;
    position: fixed;
    z-index: 1000;
    top: 80px;
    right: 0;
    background-color: #18435c;
    overflow-x: hidden;
    padding-top: 50px;
    transition: 0.5s;
    /* margin-top: 80px; */
    bottom: 80px;
    /* margin-bottom: 500px; */
    box-shadow: -2px 5px 7px #dcd2d2;
}



/* Style page content - use this if you want to push the page content to the right when you open the side navigation */
#main {
    transition: margin-left .5s;
    padding: 20px;
}

/* On smaller screens, where height is less than 450px, change the style of the sidenav (less padding and a smaller font size) */
@media screen and (max-height: 450px) {
    .sidenav {
        padding-top: 15px;
    }

        .sidenav a {
            font-size: 18px;
        }
}





.top-nav-header {
    border: solid 1px #7272A1;
    width: 400px;
    text-align: center;
    padding: 5px;
    color: #7272A1;
    border-radius: 4px;
    font-size: 19px;
    margin-left: auto;
    margin-right: auto;
    font-size: 14px;
    height: 30px;
    padding-top: 8px;
    font-weight: bold;
}

.page-left-content ul {
    list-style: none;
    padding-left: 8px;
}

.page-left-content li {
    height: 31px;
    background: white;
    margin-bottom: 6px;
    padding-left: 5px;
    padding-top: 6px;
    border-radius: 4px;
}

    .page-left-content li.active {
        background: #7272A1;
    }

        .page-left-content li.active a {
            color: white;
        }

.load-progress {
    display: none;
    position: fixed;
    z-index: 500000;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: #ffffff url('/static-images/lg1.gif') 50% 50% no-repeat;
    background-size: 100px 100px;
}

.loading.load-progress {
    display: block;
}

i.top-action {
    font-size: 14px;
    margin-top: 11px;
}

a.font-a {
    padding-top: 19px !important;
}

.navbar-right i {
    font-size: 20px;
}

.login-banner-image {
    width: 150px;
    margin-top: 20px;
    height: 150px;
}

.login-banner-text {
    margin-top: 30px;
    color: white;
    font-size: 40px;
}

.navbar-right .badge {
    position: absolute;
    left: 31px;
    top: 3px;
    background: #4845A8;
}

/*.btn-default.modal-cancel {
    color: #42415C;
    background: none;
    border-color: #42415C;
}*/

.top-page-actions i {
    font-size: 14px;
}

.btn-primary, btn-primary:focus, btn-primary:active, btn-primary:hover {
    background-color: #454561 !important;
    border-color: #454561 !important;
}

.no-data-banner {
    display: flex;
}

.data-banner-text {
    position: absolute;
    width: 600px;
    margin: auto;
    top: 40%;
    left: calc(50% - 300px);
    font-size: 18px;
    color: #6F5287;
    text-align: center;
}

.top-page-nav .nav-pills {
    margin-top: 25px;
    width: 700px;
    border-radius: 6px;
}

.nav-pills > li {
    width: 200px;
}

.top-page-nav .nav > li > a {
    padding: 6px 15px !important;
}

.survey-buttons {
    width: 170px;
    text-align: center;
}

.skill-glyphicon {
    float: right;
    padding: 2px;
    cursor: pointer;
}

.period-glyphicon {
    padding: 2px;
    cursor: pointer;
}

.skill-text-box {
    width: 50%;
    border-radius: 5px;
    margin: unset;
}

.dialog-width {
    width: auto;
}


.top-page-nav .nav-pills > li {
    width: 150px;
}

.play-store-button {
    height: 100px;
    width: 300px;
}

#add-coupon-article-type {
    margin-right: 150px;
  /*  margin-top: 60px !important;*/
}

#coupon-recipients-div {
  /*  margin-top: 50px;*/
}

.action-button {
    font-size:16px !important;
}
.fa-add-button{
    font-size:14px !important;
}
table {
    border-collapse: inherit;
    font-weight: 400;
}

