html, body {
    font-family: 'Open Sans';
    font-size: 16px;
    margin: 0;
    padding: 0;
    height: 100%;
}
/* Header Style */
header {
    background: #343a40;
    padding: 10px 0;
    border-top: 4px solid transparent;
}
body.company-pro header { border-color: #f26722; }
body.company-supply header { border-color: #ffc20e; }

header .navbar-row{    
    display: flex;
    flex-direction: column;
}
header .navbar-row .col-left { 
    display: flex;
    justify-content: space-between;
    align-items: center;
}
header .navbar-row .col-right { 
    padding-top: 10px;
}
header #buttonMenuToggle {
    color: #c2c7d0;
    border: 0;
    font-size: 25px;
    padding: 5px;
    text-align: center;
    background: #252a2e;
    height: 40px;
    width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}
header #navmenuCollapse {
    padding-top: 10px;
    border-top: 1px solid #585858;
}
header ul.menu {
    list-style: none;
    margin: 0;
    padding: 0;
    text-align: center;
}
header ul.menu li {
    margin-bottom: 5px;
}
header ul.menu li > a{
    color: #c2c7d0;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 15px;
}
header ul.menu li > a:hover{
    color: #fff;
}
/* Company Selection Style */
.company-selection {
    padding: 10px 0;
    text-align: right;
    background: #f7f7f7;
}
.company-selection .container {
    display: flex;
    justify-content: space-between;
    flex-direction: row;
    align-items: center;
}
.company-selection .user-info {
    display: flex;
    align-items: center;
    text-align: start;
    margin-right: 15px;
}
.company-selection .user-info .avatar {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ccc;
    border-radius: 50px;
    font-size: 25px;
    margin-right: 10px;
    flex: 0 0 40px;
}
.company-selection .user-info .username {
    font-size: 16px;
    line-height: 1;
    font-weight: 500;
}
.company-selection .user-info .usertype {
    font-size: 14px;
    color: #919191;
}
.company-selection .user-info a {
    font-size: 14px;
}
.company-selection #formCompany{
    margin-bottom: 0;
    flex: 1 1 auto;
}
.company-selection #formCompany .form-group {
    margin: 0 0 0 auto;
    text-align: start;
    max-width: 330px;
}
.company-selection #formCompany label {
    margin-right: 5px;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    margin-bottom: 0;
    color: #999;
    flex: 0 0 130px;
}
.company-selection #formCompany select {
    cursor: pointer;
}
/* Login Page Style */
.login-page .container {
    width: 100%;
    max-width: 950px;
}
.login-page {
    padding: 30px 0;
    height: 100%;
    background: #343a40;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.login-page .card {
    background: #fff;
    box-shadow: 0 5px 10px rgb(0 0 0 / 60%);
    display: flex;
    overflow: hidden;
    flex-direction: column;
    max-width: 500px;
    margin: 0 auto;
}
.login-page .card .left {
    background: url('../images/login-bg.jpg') no-repeat center center;
    background-size: cover;
    padding: 20px;
}
.login-page .card .left .logo {
    text-align: center;
}
.login-page .card .left img.desktop {
    display: none;
}
.login-page .card .left .tagline {
    color: #fff;
    font-size: 24px;
    margin: 10px 0;
    font-weight: 400;
    font-style: italic;
    text-align: center
}
.login-page .card .right h2 {
    text-align: center;
    background: #FFCC33;
    margin: 0;
    color: #fff;
    text-transform: uppercase;
    padding: 30px 20px;
    font-size: 27px;
}
.login-page .card .right form {
    margin: 0 auto;
    max-width: 360px;
    background: #fff;
    padding: 30px 25px;
}
.login-page .card .right form label {
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
}
.login-page .card .right form  #login-btn {
    background: #FFCC33;
    color: #fff;
    border-radius: 0;
    font-size: 18px;
    margin-top: 20px;
    font-weight: 400;
    padding: 7px 20px;
    outline: 0;
    box-shadow: none;
    transition: all 0.3s ease;
}
.login-page .card .right form  #login-btn:hover{ background: #ddad1d; }
.login-page .card .right form .form-control {
    border-radius: 0;
    box-shadow: none;
}
.login-page .card .right .other {
    margin-top: 40px;
}
.login-page .card .right .email-us {
    margin-bottom: 30px;
    margin-top: 30px;
}
.login-page .card .right .email-us b{
    font-weight: 600;
    font-size: 15px;
}
.login-page .card .right .email-us .icon{
    background: #FFCC33;
    color :#fff;
    font-size: 21px;
    width: 40px;
    height: 40px;
    border-radius: 50px;
    display: block;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 auto 5px auto;
    padding-bottom: 2px;
}
@media (min-width: 768px)
{

}
@media (min-width: 992px) 
{
    /* Header Style */
    header {
        padding: 15px 0;
    }
    header .navbar-row {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }
    header .navbar-row .col-left { 
        margin-right: 20px;
    }
    header .navbar-row .col-right { 
        padding-top: 0;
        flex: 1 1 auto;
    }
    header #buttonMenuToggle {
        display: none;
    }
    header #navmenuCollapse {
        display: block;
        border: 0;
        padding: 0;
    }
    header ul.menu {
        text-align: right;
        display: flex;
        justify-content: end;
    }
    header ul.menu li {
        margin-bottom: 0;
        margin-left: 8px;
    }
    header ul.menu li > a{
        padding: 5px 10px;
        border-radius: 5px;
    }
    header ul.menu li > a:hover, header ul.menu li.active > a{
        color: #fff;
        background: #494e53;
    }

    /* Company Selection Style */
    .company-selection #formCompany .form-group {
        display: flex;
        align-items: center;
    }

    /* Login Page Style */
    .login-page .card {
        flex-direction: row;
        max-width: 100%;
        min-height: 600px;
    }
    .login-page .card > div {
        flex: 0 0 50%;
    }
    .login-page .card .left {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    .login-page .card .left img.mobile { display: none; }
    .login-page .card .left img.desktop { display: inline; }
    .login-page .card .right {
        padding-bottom: 50px;
    }
    .login-page .card .right h2 {
        padding: 40px 20px 80px 20px;
    }
    .login-page .card .right form {
        margin: -50px auto 0 auto;
        box-shadow: 0 0px 10px rgb(0 0 0 / 20%);
    }
}
/*---------------------------------------------*/





#main{

	background: rgba(211, 211, 211, 0.56);

    padding: 20px;

    border: 1px solid #dadada;

}	

.site-cover{

    width: 100%;

    min-height: 500px;

}



.center-content{

    padding:20px;

    text-align: center;

}

.custom-tbl thead{

    background: #aaaaaa;

    color: #545454;

    border-bottom: 1px solid #3a3a3a;

}



.div-spacer{

    margin-top: 100px;

    margin-bottom: 100px;

}



.loader-container{

    display: none;

    font-size: 24px;

}



.view-download-container{

    display: none;

}



a.upload-again-link{

    color:#0d76d0;

}



a.upload-again-link:hover{

    color: #337ab7;

}



#bootstrap-alert-box-modal .modal-header h4,

#bootstrap-alert-box-modal .modal-body p{

    color: #000;

}



.item-image{

    max-width: 100px;

}

.panel-primary {

    border-color: #3c3c3c;

}

.panel-primary>.panel-heading {

    color: #fff;

    background-color: #3d3d3d;

    border-color: #3c3c3c;

}

.panel-title {

    font-size: 21px;

}



/*.navbar-inverse {

    background-color: rgba(0,0,0,.2);

    border-color: #9a9a9a;

}

.navbar-brand {

    height: 65px;

    padding: 11px 15px;

}

@media (min-width: 768px){

    .navbar-nav>li>a {

        padding-top: 22px;

        padding-bottom: 23px;

    }

}

.navbar-inverse .navbar-nav>li>a:hover{

    background: rgba(192, 191, 193, 0.2);

}

.navbar-inverse .navbar-nav>.active>a, .navbar-inverse .navbar-nav>.active>a:focus, .navbar-inverse .navbar-nav>.active>a:hover {

    color: #fff;

    background-color: rgba(192, 191, 193, 0.7);

}



.navbar-inverse .navbar-nav>li>a {

    color: #ffffff;

}*/



#percentage-loading{

    font-size: 25px;

    display: block;

}



.items-top-btn{

    /*width: 15% !important;*/

}


/*.switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
  vertical-align: bottom;
}*/

.switch {
  position: relative;
  display: inline-block;
  width: 45px;
  height: 15px;
  vertical-align: bottom;
}

.switch input {display:none;}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: .4s;
  transition: .4s;
}

/*.slider:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  -webkit-transition: .4s;
  transition: .4s;
}*/

.slider:before {
  position: absolute;
  content: "";
  height: 14px;
  width: 14px;
  left: 4px;
  bottom: 1px;
  background-color: white;
  -webkit-transition: .4s;
  transition: .4s;
}

input:checked + .slider {
  background-color: #2196F3;
}

input:focus + .slider {
  box-shadow: 0 0 1px #2196F3;
}

input:checked + .slider:before {
  -webkit-transform: translateX(26px);
  -ms-transform: translateX(26px);
  transform: translateX(26px);
}

/* Rounded sliders */
.slider.round {
  border-radius: 34px;
}

.slider.round:before {
  border-radius: 50%;
}

.switch-cotnainers{
  text-align: right;
}

.upload-form .columns{ position: relative; }
.upload-form .columns .btn-file {
    position: relative;
    width: 100%;
    padding: 10px 10px;
    padding: 10px 20px;
    display: block;
}

.upload-form .columns .btn-file input[type=file] {
    position: absolute;
    top: 0;
    right: 0;
    font-size: 100px;
    text-align: right;
    filter: alpha(opacity=0);
    opacity: 0;
    outline: none;
    background: white;
    cursor: pointer;
    display: block;
    width: 100%;
    height: 46px;
}
.upload-form .columns .btn-group { display: flex; }
.upload-form .columns .btn-group.disabled { 
    position: relative;
}
.upload-form .columns .btn-group.disabled::before { 
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    border: 1px dashed #a7a7a7;
    border-radius: 4px;
    background: #ccccccbf;
    z-index: 1;
}
.upload-form .columns .btn-group > button { float: none; }
.upload-form .columns .btn-group > button.text { flex: 1 1 auto; }
.upload-form .footer-text {
    max-width: 350px;
    margin: 0 auto;
}
@media (max-width: 992px){
    /*.label-column,
    .card-column{
        text-align: center !important;
    }*/
}
/*------------------------------------------------------------------------*/
/** COMMON CLASSES **/
.section-container {
    padding: 50px 0;
}
.section-title {
    font-size: 30px;
    font-weight: bold;
    margin-bottom: 40px;
    margin-top: 0;
}
.section-content {
    background: #f7f7f7;
    padding: 40px 30px;
}

/** UPLOADS PAGE **/
.uploads-page {

}
