:root {
    --success-green: #12B886;
    --error-red: #C80000;
    --draft-grey: #A8A8A8;
    --info-blue: #41B2F3;
    --panel-green: #60B73F;
}

*, *:focus{
    outline:none
}
html {
    scroll-behavior: smooth;
}
body{
    font-size: 16px;
}

.w10{
    width: 10%;
}
.w20{
    width: 20%;
}
.w30{
    width: 30%;
}
.w33{
    width:33%;
}
.w40{
    width: 40%;
}
.w50{
    width: 50%;
}
.w60{
    width: 60%;
}
.w70{
    width: 70%;
}
.w80{
    width: 80%;
}
.w90{
    width: 90%;
}
.w100{
    width:100%;
}
.w5{
    width:5%;
}
.w15{
    width: 15%;
}
.w5,.w10,.w20,.w30,.w40,.w50,.w60,.w70,.w80,.w90,.w100{
    box-sizing: border-box;
}
table{
    box-shadow: 0px 0px 3px rgba(0,0,0,0.4);
    margin-bottom: 20px;
    border-radius: 10px;
}
a:hover{
    text-decoration: none;
}
table td{
    padding:10px;
    font-size: 0.8em;

}
table tbody tr{
    transition-duration: 0.2s;

}
table tbody tr:nth-child(2n+1){
    background: #f2f2f2;
}
table tbody tr:hover{
    box-shadow: 0px 0px 4px rgba(0,0,0,0.5);
    z-index: 1000;
}
table thead tr{
    background: #fff;
    color:#555;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
    font-weight: 600;
}
table thead tr td:first-of-type{
    border-top-left-radius: 10px;
}
table thead tr td:last-of-type {
    border-top-right-radius: 10px;
}
ul{
    padding:0px;
    margin: 0px;
}
li{
    list-style: none;
}

input[type="number"],
select{
    border-radius: 5px;
    border:1px  solid #ccc;
    padding:10px;
    line-height: 20px;
    font-size: 0.8em;
    -webkit-appearance: none;
    background: #fff;
}
select{
    width: 100%;
    background-image: url("../images/arrow-down.png");
    background-repeat:  no-repeat;
    background-size: 20px;
    background-position: 98% 50%;
    margin-bottom: 5px;
}

.flex-row{
    display: flex;
}
.container{
    padding-top: 100px;
}
.main-padding{
    padding: 100px 5% 3% 5%;
}
@media screen and (max-width: 1080px){
    .main-padding{
        padding: 100px 3% 3% 3%;
    }
}
.popupwrapper{
    display: none;
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 10000;
    background: rgba(0,0,0,0.3);

}
.popup{
    width:70%;
    position: fixed;
    height: 100%;
    background: #fff;
    right: -1000px;
    padding:20px;
    transition-duration: 0.2s;
    overflow-y: scroll;
}
.popup .btnclose{
    float:right;
}

.popup h4{
    font-weight: 200;
}

.popup .panel{
    font-size: 0.9em;
    background: #888;

}
.popup .panel a{
    color:#fff

}
.popup .panel .row{
    margin:0px 5px;
}
.sortable{
    cursor: pointer;
}

.sortable::after{
    content: '';
    display: block;
    position: relative;
    height: 15px;
    background-size: 100%;
    background-image: url(../images/sortable.png);
    background-repeat: no-repeat;
    width: 7px;
    float: right;
    top: 2px;
}





















nav{
    box-shadow: 0px 0px 4px rgba(0,0,0,0.5);
    height: 60px;
    width:100%;
    z-index: 1000;

}
.navbar{
    position: fixed;
    background: #fff;
    top:0

}
.border{
    border:1px solid red;
}
.navbar-content{
    position: absolute;
    top: 10px;
    left: 100px;
    height: 50px;
    line-height: 40px;
    display: flex;
}
.ta-center{
    text-align: center;
}
.pagination{
    padding-top: 26px;
    padding-right: 20px;
    font-size: 0.8em;
    line-height: 30px;
}

.navbar-content .search-box{
    padding-left: 20px ;
    padding-right: 20px;

}
.navbar-content .search-box input[type="number"]{
    width: 150px;

}
.navbar-content .search-box button {
    display: none;
}
.label{
    font-size: 0.8em;
    padding: 5px 0px;
}
.panel{
    background: var(--panel-green);
    color:#fff;
    padding:10px;
    border-radius: 10px;
    margin-bottom: 10px;
}

.login {
    position: absolute;
    top: 6px;
    right: 20px;
    overflow: hidden;
    height: 50px;
    text-align: right;
    width: 200px;

}
.g-signin2{
    right: 0px;
    top: 10px;
    position: absolute;
}

.login .logged-in .profile-icon{
    width: 40px;
    height: 40px;
    border-radius:30px;
    display: inline-block;
    background-position: 0px 0px;
    background-size: 100%;
    position: relative;

}
.login .logged-in .profile-name {
    display:inline-block;
    padding:10px;
    vertical-align:top;
}

.login .logged-in.show{
    top:0px;
}

.login .logged-in{
    top:-100px;
    transition-duration: 0.2s;
    padding-top:5px;
    position: absolute;
    right: 0px;
}
.logged-in-menu{
    position: fixed;
    right: 2px;
    top: -100px;
    background: #fff;
    width: 200px;
    min-height: 50px;
    box-shadow: 0px 0px 3px rgba(0,0,0,0.3);
    display: block;
    padding-top:20px;
    z-index: 800;
    transition-duration: 0.3s;
}
.logged-in-menu li a{
    display: block;
    padding:0px 10px;
    line-height: 30px;
}
.logged-in-menu.show{
    top:50px;}



.navbar-content h5,
.navbar-content h6{
    line-height: 45px;
    font-weight: 200;
    font-size:1.3em;
}
.navbar-content h6{
    font-size: 1.1em;
}
.navbar-content h6 span{
    font-size: 1.1em;
    font-weight: 200;
}

.logo{
    width: 70px;
    left: 30px;
    position: absolute;
    padding:10px;
    top:0px;
    z-index: 1000;
}
.logo img{
    width: 90%;
}

.section{
    padding:10px;
}
.section .section-heading{
    font-weight: 500;
    padding:10px 0px;
}
.section .section-content{
   box-shadow: 0px 0px 3px rgba(0,0,0,0.3);
    padding:15px;
    border-radius: 10px;
}
.section .section-content img{
    width:100%
}
.section .section-content.attachments img{
    width:300px;
    padding:20px;
    border:1px solid #ccc;
}
.section .section-content.attachments.conv img{
    width:150px;
    padding:10px;
    border:1px solid #ccc;
}
.section .section-content.conversations{
    border:none
}
.section .section-content.conversations .section-content{
    border-radius: 0px;
    border-left: 2px solid #3498db;
}
.section .section-content.conversations .section-content.private:before{
    content: "Private Note";
    position: relative;
    float: right;
    right: 0;
    top: -18px;
    background: #71bf44;
    color: #fff;
    padding: 5px;
    font-size: 0.7em;
    box-shadow: 0px 0px 3px rgba(0,0,0,0.3);

}
.section .section-content.conversations .section-content.public:before {
    content: "Public Comment";
    position: relative;
    float: right;
    right: 0;
    top: -18px;
    background: #3498db;
    color: #fff;
    padding: 5px;
    font-size: 0.7em;
    box-shadow: 0px 0px 3px rgba(0,0,0,0.3);
}

.section .section-content.conversations .section-content.private,
.section .section-content.conversations .row.private {

    border-radius: 0px;
    border-left: 3px solid #71bf44;
}

.section .section-content.conversations .section-content img {
    max-width: 100%;
}
.section .section-content.conversations .row {
    background: #ecf0f1;
    color: #555;
    width: 100%;
    margin-left: 0px;
    border-left: 2px solid #3498db;
    box-shadow: 0px 0px 4px rgba(0,0,0,0.3)
}

.section input[type="text"],
.section input[type="date"],
.section input[type="email"],
.section input[type="number"]
{
    width: 90%;
    border:1px solid #eee;
    border-radius:5px;
    padding:5px;
}
#schedule{
    border:1px solid #eee;
}

.assign{
    display: none;
    position: absolute;
    width: 250px;
    background: #fff;
    z-index: 1111;
    padding:10px;
    box-shadow: 0px 0px 3px rgba(0,0,0,0.3);
}

#btncreateduty{
    display: none;
}
.fl_right{
    float: right;
}
.ta_right{
    text-align: right;
}
#btnnextpage,
#btnprevpage{
    width: 25px;
    height: 25px;
    display: inline-block;
    background-size: 25px;
    line-height: 25px;
    background-repeat: no-repeat;
}

#btnnextpage{
    background-image: url("../images/right.png");

}
#btnprevpage {
    background-image: url("../images/left.png");

}



#main {
    margin-top: 20px;
}

#loading-bar {

    background-color: #f00;
    height: 5px;
    width: 0;
    position: fixed;
    z-index: 666000666;
    -webkit-transition:width 500ms ease-out, height 500ms ease-out;
    -moz-transition:width 500ms ease-out, height 500ms ease-out;
    -o-transition:width 500ms ease-out, height 500ms ease-out;
    transition:width 500ms ease-out, height 500ms ease-out;

}

#loading-bar.no-transition {
    -webkit-transition:none;
    -moz-transition:none;
    -o-transition:none;
    transition:none;
}

#loading-bar.top, #loading-bar.bottom, #loading-bar.left { left: 0;}
#loading-bar.top, #loading-bar.left, #loading-bar.right { top: 0;}
#loading-bar.left, #loading-bar.right { width: 5px; height: 0; }
#loading-bar.bottom { bottom: 0; }
#loading-bar.right { right:0; }


.priority_Urgent,
.priority_High,
.priority_Medium,
.priority_Low{
    color:#fff;
    background: #555;
    padding:5px;
    border-radius: 5px;
    font-size: 0.8em;
    width: 46px;
    display: inline-block;
    text-align: center;
}
.priority_Urgent{
    background: #c0392b;
}
.priority_High{
    background: #d35400;
}
.priority_Medium{
    background: #f1c40f;
}
.priority_Low{
    background: #2980b9;
}

.tox .tox-statusbar{
    display: none;
}

/* Dashboard */
.sucess-green-bg {
    background-color: var(--success-green);
}
.draft-grey-bg {
    background-color: var(--draft-grey);
}
.error-red-bg {
    background-color: var(--error-red);
}
.information-blue-bg {
    background: var(--info-blue);
}
.neutral-bg {
    background-color: #F8F8F8;
}
.status-sucess-green {
    color:  var(--success-green);
}
.status-draft-grey {
    color: var(--draft-grey);
}
.status-error-red {
    color: var(--error-red);
}
.neutral-content{
    color: #6C6C6C;
}
.black-content{
    color: #303030;
}
.white-content{
    color: #FFFFFF;
}
.device-status-div{
    width: 135px;
    height: 90px;
    border-radius: 8px;
    padding: 12px;
    cursor: default;
}
.status-icon{
    font-size: 1.25rem; 
}
.status-device-name {
    text-transform: uppercase;
    font-size: 0.8rem;
    font-weight: bold;
}
.status-info{
    font-size: 0.6rem;
}
.centre-name{
    font-weight: bold;
}
.status-label{
    font-size: 0.9rem;
    line-height: 2.5rem;
    text-align: right;
}
.status-label-padding{
    padding: 2px 10px;
}
.tableWrapper{
    width: 100%;
    height: 10%;
    overflow: scroll;
    position: relative;
    padding: 1px;
    border: 1px solid #f2f2f2EE;
    border-radius: 10px;
}
table thead td:first-child {
    position: sticky;
    left: 0;
    z-index: 2;
    background: white;
}
table tbody td.centre-name {
    position: sticky;
    left: 0;
    z-index: 1;
}
table tbody tr:nth-child(odd) td.centre-name {
    background-color: #f2f2f2EE;
    backdrop-filter: blur(1px);
}
table tbody tr:nth-child(even) td.centre-name{
    background-color: #FFFFFFEE;
    backdrop-filter: blur(10px);
}
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}
::-webkit-scrollbar-track {
    background: white;
    border-radius: 100vw;
}
::-webkit-scrollbar-thumb {
    background: #f2f2f2;
    border-radius: 100vw;
}
.info-button-div{
    position: absolute;
    right: 200px;
    top: 12px;
    width: 200px;
    line-height: 2rem;
}
.info-button{
    color:#fff;
    background: var(--info-blue);
    padding:5px 18px;
    border-radius: 5px;
    font-size: 1.2em;
    width: 100%;
    display: inline-block;
    text-align: center;
    text-decoration: none;
}
.info-button:hover{
    color:#fff;
}
.header-text{
    font-size: 1.5rem;
    line-height: 2rem;
    padding-bottom: 1rem;
    font-weight: bold;
    margin: 0px;
}