body{
    background: #ffffff;
    color: #2C2C2C;
    font-size: 14px;
}

ul,
ul li {
    margin: 0;
    padding: 0;
    list-style: none;
}

a:hover{
    text-decoration: inherit;
}

.table td{
    padding: 5px 10px;
}
.table .btn{
    line-height: 1.2rem;
}

.table tr.archive td{
    color: #ccc;
}

.form-control{
    border-color: #707070;
    border-radius: 0;
}



/* BUTTON - START */

    .btn{
        border-color: #D9DBDE;
        box-shadow: inset 0 -2px 0 0 rgba(0,0,0,.2);
    }
    .btn:not(:disabled):not(.disabled):hover{
        box-shadow: inset 0 -2px 0 0 rgba(0,0,0,.4);
    }
    .btn:not(:disabled):not(.disabled):active, 
    .btn:not(:disabled):not(.disabled):focus,
    .btn:not(:disabled):not(.disabled):active:focus{
        box-shadow: inset 0 2px 0 0 rgba(0,0,0,.2);
    }

    /* primary */
    .btn-primary:not(:disabled):not(.disabled){
        color: #000;
        background: #D9DBDE;
        border-color: #D9DBDE;
    }
    .btn-primary:not(:disabled):not(.disabled):active,
    .btn-primary:not(:disabled):not(.disabled):focus,
    .btn-primary:not(:disabled):not(.disabled):hover{
        color: #fff;
        background: #13B538;
        border-color: #13B538;
    }

    /* disabled */
    .btn-disabled,
    .btn-disabled:hover{
        color: #D9DBDE;
        box-shadow: none;
    }

    /* action */
    .btn-action{
        background: #13B538;
        border-color: #13B538;
        color: #ffffff;
    }
    .btn-action:active,
    .btn-action:focus,
    .btn-action:hover { 
        background: #00D130;
        border-color: #00D130;
        color: #ffffff;
    }


    .btn-lang{
        text-transform: uppercase;
        font-weight: bold;
        font-size: .8rem;
        padding: 6px;
    }

    .btn-lang.published{
        color: inherit;
        background: #fff;
        border-color: var(--success);
        box-shadow: inset 0 0 0px 1px var(--success);
    }

/* BUTTON - END */

.nocount,
.count{
    width: 1.2rem;
    height: 1.2rem;
    display: inline-block;
    border-radius: 50%;
    background: #000;
    color: #fff;
    font-style: normal;
    font-size: .8rem;
    font-weight: bold;
    margin-left: 8px;
}

.nocount{
    background: #ccc;

}


.status_concept,
.status_new         { color: #000000; }
.status_timeout     { color: #C17E00; }
.status_archive,
.status_canceled    { color: #CCCCCC; }
.status_active,
.status_done        { color: #13B538; }
.status_busy        { color: #00B1FF; }




#loginForm{
    background: #D3D8DD;
    padding: 40px;
}


#sideBar{
    position: fixed;
    top: 0;
    left: 0;
    width: 250px;
    height: 100%;
    background: #D3D8DD;
    overflow: auto;
    padding: 20px 20px 100px;
    z-index: 10;
}

#sideBarLogo{
    display: block;
    width: 100%;
    margin-bottom: 20px;
}


#switchCompany{
    margin-bottom: 40px;
}

#sideBar nav{
    width: 100%;
}

#sideBar li a{
    display: block;
    padding: 5px 0 5px 10px;
    color: inherit;
}

#sideBar li a.active {
    background: #fff;
    box-shadow: 20px 0 0 0 #fff;
}

#sideBar li a:hover,
#sideBar li a.active {
    font-weight: bold;
}

#sideBar li a i {
    width: 30px;
}

#logoutForm{
    position: fixed;
    left: 0;
    bottom: 0px;
    padding: 20px;
    background: #D3D8DD;
}

#logoutForm button{
    background: none;
    padding: 5px 10px;
    border: none;
    display: block;
    width: 100%;
    text-align: left;
}

#logoutForm button:hover{
    background: #fff;
}

#mainContent{
    margin-top: 0px; 
    margin-left: 250px;
    padding: 50px;
    background: #ffffff;
}

.page-title{
    margin-bottom: 40px;
}



#modal{
    display: none;
    position: fixed;
    top:0;
    left:0;
    min-height: 100%;
    width: 100%;
    z-index: 1001;
    background: rgba(0,0,0,.3);
    overflow: auto;
}


#modal.open{
    display: block;
}

#modalContent{
    position: absolute;
    margin: 10vh -200px;
    left: 50%;
    width: 90vw;
    max-width: 700px;
    padding: 60px;
    background: #f4f5f6;
}


#fffSpoof{
    height: 50px; /* add height of fff to body */
}
#fixedFormFooter{
    position: fixed;
    display: block;
    margin-top: 250px;
    left: 250px; /* left column */
    right: 0;
    bottom: 0;
    height: 85px;
    padding: 20px;
    background: #f4f5f6;
    text-align: right;
    z-index: 1;
}

.qNumber{
    font-size: 2rem;
    font-weight: bold;
}
#editTranslation textarea{
    height: 120px;
}


#activeCompanies label{
    position: relative;
    display: block;
    border: 0;
    margin: 0;
    line-height: 20px;
}

/* Hide the browser's default checkbox */
#activeCompanies input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
    background: red;
  }
  
  /* Create a custom checkbox */
  .checkmark {
    position: absolute;
    top: 0px;
    right: 0px;
    height: 20px;
    width: 20px;
    background-color: #eee;
  }
  
  /* On mouse-over, add a grey background color */
  #activeCompanies label:hover input ~ .checkmark {
    background-color: #ccc;
  }
  
  /* When the checkbox is checked, add a blue background */
  #activeCompanies label input:checked ~ .checkmark {
    background-color: #2196F3;
  }
  
  /* Create the checkmark/indicator (hidden when not checked) */
  .checkmark:after {
    content: "";
    position: absolute;
    display: none;
  }
  
  /* Show the checkmark when checked */
  #activeCompanies label input:checked ~ .checkmark:after {
    display: block;
  }
  
  /* Style the checkmark/indicator */
  #activeCompanies label .checkmark:after {
    left: 8px;
    top: 4px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
  }


  #logoContainer{
      background: #D3D8DD;
      padding: 20px;
  }


.tt{
    position: relative;
}
.ttt{
    visibility: hidden;
    width: 200px;
    background-color: #555;
    color: #fff;
    text-align: center;
    padding: 5px 0;
    border-radius: 6px;
    font-size: 12px;
    line-height: 1.2;

    /* Position the tooltip text */
    position: absolute;
    z-index: 1;
    top: 105%;
    left: 50%;
    margin-left: -105px;

    /* Fade in tooltip */
    opacity: 0;
    transition: opacity 0.3s;
    transition-delay: 1s;
}
.tt:hover .ttt {
    visibility: visible;
    opacity: 1;
  }


  
@media print {
    #sideBar{ display:none; }
    #mainContent{ margin:0; }
}