
.hidden {display: none;}
.notVisible {visibility: hidden;}
.error, .unsaved-alert {color:red;}
.unsaved-alert {
    padding-bottom: 13px;
    display: block;
}

/*LOADER*/
.loader {
    display: inline-block;
    width: 100%;
    height: 100%;
    position: absolute;
    /*left: 55%;*/
    /*top: 50%;*/
    background-color: darkgrey;
    z-index: 10000;
    opacity: 0.5;
}
.loader:after {
    content: " ";
    display: block;
    width: 46px;
    height: 46px;
    margin: 1px;
    border-radius: 50%;
    border: 5px solid #006dcc;
    border-color: #006dcc transparent #006dcc transparent;
    animation: lds-dual-ring 1.2s linear infinite;
    position: relative;
    top: 50%;
    left: 50%;
}
@keyframes lds-dual-ring {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* Login Box
**********************************************/
#wrapper.login-register {
    padding: 20px;
    background-image:none !important;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    position: absolute;
}
#wrapper.login-register::after {
    content: "";
    background: url('https://source.unsplash.com/1920x1080/?shop');
    opacity: 0.6;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    position: absolute;
    z-index: -1;   
  }
.login-box.card {
    max-width: 400px;
    margin: 20px auto;
    opacity:0.92;
}
/**********************************************/


/* Page and Navbars
**********************************************/
.navbar-header {
    padding-left: 0 !important;
}
.navbar-header a.navbar-brand {
    margin: 8px 0 0;
    display: block;
    width: 100%;
    max-height: 59px;
}
    .navbar-header a.navbar-brand b {
        width: 100%;
    }
    .navbar-header a.navbar-brand img {
        width: 100%;
        display: block;
        max-width: 126px;
        padding:7%;
        margin: 0 auto;
    }
    #usrLogo {opacity:0.3;}
/**********************************************/

/* forms 
*****************************************/
@media screen and (min-width: 768px) {
    .mini-sidebar .sidebar-nav #sidebarnav>li>a {
        padding: 10px 15px 10px 25px;
    }
}
/******************************************/

/* forms 
*****************************************/
.form-group {overflow: auto;}
.form-horizontal label, label {
    display: block;
    margin-bottom: 5px;
}
/* input with selector */
.input-group-addon-button {
    cursor:pointer;
    float:left; height:38px; width:34px; padding:10px;
    background: #eee;
    border-radius: 5px 0px 0px 5px;
}
.input-group-addon {
    float:left; height:38px; width:calc(100% - 37px); border-left:none;
    border-radius: 0 5px 5px 0;
}
/* buttons */
.btn-group-horizontal .btn+.btn {margin-left: 10px;}

.form-actions .btn, .btn.fileinput-button {
    border-radius: 2px;
    padding: 12px 32px;
    font-size: 15px;
    font-weight: 300;
    margin: 6px;
}

.btn.fileinput-button {
    margin: 0;
}

.btn.btn-action-custom {
    display: inline-block;
    font-weight: 400;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    border: 1px solid transparent;
    line-height: 1.5;
    border-radius: 0.25rem;
    cursor: pointer;
    padding: 5px 10px;
    font-size: 15px;
    color: #fff;
    background-color: #03a9f3;
    border-color: #03a9f3;
}

/******************************************/

/* Data Tables 
*****************************************/
.table-actions {
    min-width: 80px;
}
.GenericTable th {font-size: 12px;}
.GenericTable td {font-size: 12px;}
/******************************************/


/* Modals
*****************************************/
@media screen and (min-width: 576px) {
    .modal-dialog {
        max-width: 700px;
    }
}
/******************************************/

/* advanced tooltips
-------------------------------------------------------*/
.dataTables_wrapper table td, .dataTables_wrapper table tr , .dataTables_wrapper table, .dataTables_wrapper {
    position: relative;
    z-index:unset;
}
.tooltipped {
    display: table-cell;
    overflow: visible;
    position:relative;
    z-index:unset;
}
.adv-tooltip {
    background: rgba(255, 255, 255, 1);
    border:2px solid #ccc;
    border-radius: 3px;
    font-family: 'Poppins',sans-serif;
    font-size: 11px;
    font-weight: 300;
    padding: 5px;

    min-width: 100px;
    position: absolute;
    left:20%;
    top:115%;
    z-index: 1000;
    overflow-y:visible !important;
    overflow-x:visible !important;
    /* transition: all 0.1s ease-in-out; */
}
.adv-tooltip:after {
    border-color: #ccc rgba(0, 0, 0, 0);
    border-style: solid;
    border-width: 0px 8px 14px 5px;
    top: -14px;
    content: "";
    display: block;
    left: 9px;
    position: absolute;
    width: 0;
}
    .adv-tooltip.adv-tooltip-right {
        top: 50%;
        transform: translateY(-50%);
        left: 120%;
        left: calc(100% + 15px);
    }
    .adv-tooltip.adv-tooltip-right:after {
        border-color: rgba(0, 0, 0, 0) #ccc ;
        border-style: solid;
        border-width: 8px 14px 8px 0;
        content: "";
        display: block;
        left: -14px;
        top: 50%;
        margin-top: -7px;
        position: absolute;
        width: 0;
    }

    .adv-tooltip.adv-tooltip-left {
        top: 50%;
        transform: translate(-120%, -50%);
    }
    .adv-tooltip.adv-tooltip-left:after {
        border-color: rgba(0, 0, 0, 0) #ccc ;
        border-style: solid;
        border-width: 8px 0 8px 14px;
        content: "";
        display: block;
        left: 100%;
        top: 50%;
        margin-top: -7px;
        position: absolute;
        width: 0;
    }

.adv-tooltip table th {
    white-space: nowrap;
}
.adv-tooltip table td a:hover {
    text-decoration: underline;
}

.tooltipped .adv-tooltip, .adv-tooltip {
    display: none;
    opacity:0;
}
.tooltipped:hover .adv-tooltip {
    display: block;
    opacity:1;
}
/*-----------------------------------------------------*/

.noWrap {
    white-space: nowrap;
}

span.info-icon {
    background-color: #006dcc;
    border-radius: 50%;
    color: #fff;
    cursor:pointer;
    display: block;
    font-family: 'Times New Roman, Times, serif';
    font-style: italic;
    font-weight: bold;
    padding: 0px 7px;
    width: 18px;
    height: 18px;
}

/* file uploads
-------------------------------------------------------*/
#attachmentList {
    padding-left: 25px;
    list-style: none;
}
.fileContainer {
    display:block;
    position: relative;
}
    @media screen and (min-width:680px) {
        .fileContainer {
            display: inline-block;
            margin-right: 5%;
            width: 27%;
            vertical-align: top;
        }
    }
    
.fileContainer a.imgHolder {
    display: block;
    height: 190px;
}
.fileContainer a img {
    height: 85%;
    object-fit: contain;
    width:100%;
    transition: all 0.2s ease-in-out;
}
    img.notvisible {
        opacity:0.3;
    }

.fileContainer .imgDate, .fileContainer .imgDescription, 
.fileContainer .imgAnnotation {
    padding-left:2px;
    margin-left:10px;
    min-height: 16px;
}
.fileContainer .imgDate:hover, .fileContainer .imgDescription:hover, 
.fileContainer .imgAnnotation:hover {
    border-left:2px solid #ccc;
    color:#ccc;
    cursor:pointer;
}
    .fileContainer .shopInfo, .fileContainer .shopName {
        font-size: 12px;
        border-bottom: 1px solid #ccc;
        padding-bottom: 10px;
        margin-bottom: 10px;
        margin-left:10px;
        min-height: 30px;
    }
        .fileContainer .brandInfo {
            border-bottom: none;
            background-color: #eee;
            border-radius: 5px;
            font-style: italic;
            font-size: 10px;
            padding: 5px 10px;
            margin-bottom: 10px;
            margin-left: 10px;
            height: 24px;
        }
        .fileContainer .shopName {
            min-height: 27px;
        }

        @media screen and (min-width:680px) {
            .fileContainer {
                min-height: 47px;
            }
        }
    #reportUploads .shopInfo {display:none;}
    #reportUploads .shopName {display:none;}
    .fileContainer .imgDate {
        font-size:12px;
    }
    .fileContainer .imgDescription {
        font-size:14px;
        font-weight: 500;
    }
    .fileContainer .imgAnnotation {
        font-style: italic;
        font-size: 12px;
    }
    .fileContainer textarea, .fileContainer input {
        font-weight: 300;
        font-size: 11px;
        border-radius: 3px;
        padding:5px;
        color:#666;
    }

.uploadedFileLink {
    display: inline-block;
    color: #fff !important;
    font-size: 13px;
    height: 300px;
    margin: 10px;
    max-width: 100%;
    background-color: cadetblue;
    border-radius: 3px 3px 0 0;
    padding: 70px 10px 10px;
    word-wrap: break-word;
    transition: all 0.2s ease-in;
}
.uploadedFileLink:hover {
    background-color: darkcyan;
}

.dropdown-menu.flipInX.show li {margin:5px 10px;}
/*-----------------------------------------------------*/

/* multi select
-------------------------------------------------------*/
.ms-selection .ms-list {border-color:#666;}
.ms-container .ms-selection li.ms-elem-selection {background-color:#4F5467;}
.ms-container .ms-selection li.ms-elem-selection span {color:#fff;}
#ms-shopIds.ms-container {width:650px;}

/* reports filters
-------------------------------------------------------*/
#reportsFilters {position:relative;}
.clearFilters {
    position:absolute;
    top:5px;
    right:10px;
    text-decoration:underline;
    font-size:10px;
    color:#006dcc;
    cursor:pointer;
    z-index: 999;
}
.results {
    position:absolute;
    bottom:8px;
    right:10px;
    font-size:10px;
    color:#666;
    z-index: 999;
}

/* pagination
-------------------------------------------------------*/
#page-buttons {
    display: block;
    margin: 20px 0 0px;
    /* border-width: 1px 0 1px 0;
    border-style: solid;
    border-color: #ccc;
    padding: 10px 0; */
    width: 100%;
}
.pagButton {
    display: inline-block;
    padding: 5px 5px;
    border:1px solid #ccc;
    margin:5px;
    width: 39px;
    height: 35px;
    text-align: center;
    line-height: 1.8;
    font-size: 14px;
    color: #666;
}
    .pagButton.active {
        font-weight: 700;
        box-shadow: 2px 2px 2px -1px rgba(0, 0, 0, 0.4);
    }

/* reports answers */
.questionText {
    display: block;
    background-color: #eee;
    border-radius: 4px;
    padding:7px 8px;
}

/* span circles
-------------------------------------------------------*/
.circle {
    display: inline-table;
    height: 15px;
    width: 15px;
    border-radius: 50%;
    background-color: #aaa;
    border-color: rgba(0, 0, 0, 0.2);
    margin: 0px 1px 2px 1px;
    line-height: 1.7;
    text-align: center;
    font-size: 11px;
    color: #fff;
} 
.yellow-circle {
    background-color: gold;
}
.red-circle {
    background-color: red;
}
.gray-circle {
    background-color: gray;
}
.green-circle {
    background-color: green;
}
.orange-circle {
    background-color: orange;
}
.transparent-circle {
    background-color: transparent;
}

/* tags wrappers */
.tag-wrapper {
    display: inline-block;
    font-size: 10px;
    margin: 5px;
    position: relative;
    padding-left: 24px;
    white-space: nowrap;
}
.tag-wrapper .circle {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}