/*----------------------------------------------
    COMMON  STYLES    
------------------------------------------------*/
body {
    font-family: 'Open Sans', sans-serif;
    background: #95ac3c !important;
    color: #121212;
}
body#login-page {
    background: #4A4A4A !important;
}
/********************/
::-webkit-scrollbar {
    width: 6px;
    height: 3px;
    cursor: pointer
}

::-webkit-scrollbar-track-piece {
    background: #FFFFFF;
    -webkit-border-radius: 3px
}

::-webkit-scrollbar-thumb:vertical {
    height: 3px;
    background-color: #95ac3c;
    -webkit-border-radius: 3px;
    cursor: pointer
}

::-webkit-scrollbar-thumb:horizontal {
    width: 6px;
    background-color: #95ac3c;
    -webkit-border-radius: 3px;
    cursor: pointer
}
/********************/
/* STRUCTURE */
#login-page .wrapper {
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    min-height: 100%;
    padding: 20px;
}
#login-page #formContent {
    -webkit-border-radius: 10px 10px 10px 10px;
    border-radius: 10px 10px 10px 10px;
    background: #95ac3c;
    width: 90%;
    max-width: 450px;
    position: relative;
    padding: 0;
    -webkit-box-shadow: 0 30px 60px 0 rgba(0,0,0,0.3);
    box-shadow: 0 30px 60px 0 rgba(0,0,0,0.3);
    text-align: center;
    margin-top: 10%;
}
#login-page #formFooter {
    background-color: #f6f6f6;
    border-top: 1px solid #dce8f1;
    padding: 25px;
    text-align: center;
    -webkit-border-radius: 0 0 10px 10px;
    border-radius: 0 0 10px 10px;
}
/* TABS */
#login-page h2.inactive {
    color: #cccccc;
}
#login-page h2.active {
    color: #0d0d0d;
    border-bottom: 2px solid #95ac3c;
}
/* FORM TYPOGRAPHY*/
#login-page input[type=button], #login-page input[type=submit], #login-page input[type=reset]  {
    background-color: #4A4A4A;
    border: none;
    color: #FFFFFF;
    padding: 15px 80px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    text-transform: uppercase;
    font-size: 13px;
    -webkit-box-shadow: 0 10px 30px 0 rgba(0,0,0,0.4);
    box-shadow: 0 10px 30px 0 rgba(0,0,0,0.4);
    -webkit-border-radius: 5px 5px 5px 5px;
    border-radius: 5px 5px 5px 5px;
    margin: 5px 20px 40px 20px;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
#login-page input[type=button]:hover, #login-page input[type=submit]:hover, #login-page input[type=reset]:hover  {
    background-color: #6c7d2b;
    color: #FFFFFF;
}
#login-page input[type=button]:active, #login-page input[type=submit]:active, #login-page input[type=reset]:active  {
    -moz-transform: scale(0.95);
    -webkit-transform: scale(0.95);
    -o-transform: scale(0.95);
    -ms-transform: scale(0.95);
    transform: scale(0.95);
}

#login-page input[type=text] , #login-page input[type=password] {
    background-color: #f6f6f6;
    color: #0d0d0d;
    padding: 15px 32px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 5px;
    width: 85%;
    border: 2px solid #f6f6f6;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    -webkit-border-radius: 5px 5px 5px 5px;
    border-radius: 5px 5px 5px 5px;
}

#login-page input[type=text]:placeholder {
    color: #cccccc;
}
/* ANIMATIONS */

/* Simple CSS3 Fade-in-down Animation */
.fadeInDown {
    -webkit-animation-name: fadeInDown;
    animation-name: fadeInDown;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

@-webkit-keyframes fadeInDown {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
    }
    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

@keyframes fadeInDown {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
    }
    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

/* Simple CSS3 Fade-in Animation */
@-webkit-keyframes fadeIn { from { opacity:0; } to { opacity:1; } }
@-moz-keyframes fadeIn { from { opacity:0; } to { opacity:1; } }
@keyframes fadeIn { from { opacity:0; } to { opacity:1; } }

.fadeIn {
    opacity:0;
    -webkit-animation:fadeIn ease-in 1;
    -moz-animation:fadeIn ease-in 1;
    animation:fadeIn ease-in 1;

    -webkit-animation-fill-mode:forwards;
    -moz-animation-fill-mode:forwards;
    animation-fill-mode:forwards;

    -webkit-animation-duration:1s;
    -moz-animation-duration:1s;
    animation-duration:1s;
}

.fadeIn.first {
    -webkit-animation-delay: 0.4s;
    -moz-animation-delay: 0.4s;
    animation-delay: 0.4s;
}

.fadeIn.second {
    -webkit-animation-delay: 0.6s;
    -moz-animation-delay: 0.6s;
    animation-delay: 0.6s;
}

.fadeIn.third {
    -webkit-animation-delay: 0.8s;
    -moz-animation-delay: 0.8s;
    animation-delay: 0.8s;
}

.fadeIn.fourth {
    -webkit-animation-delay: 1s;
    -moz-animation-delay: 1s;
    animation-delay: 1s;
}

/* Simple CSS3 Fade-in Animation */
.underlineHover:after {
    display: block;
    left: 0;
    bottom: -10px;
    width: 0;
    height: 2px;
    background-color: #95ac3c;
    content: "";
    transition: width 0.2s;
}
.underlineHover:hover {
    color: #0d0d0d;
    text-decoration: none;
}
.underlineHover:hover:after{
    width: 100%;
}
/* OTHERS */
*:focus {
    outline: none;
}

#icon {
    width:60%;
    margin: 0 auto;
}
/*******************/
a {
    color: #95ac3c;
}
a:hover, a:active {
    color: #6c7d2b;
}
#wrapper {
    width: 100%;
}

#page-wrapper {
    padding: 15px 15px;
    min-height: 600px;
    background: #E6E6E6;
}

#page-inner {
    width: 100%;
    margin: 10px 20px 10px 0;
    background-color: transparent;
    padding: 10px;
    min-height: 1200px;
}

.text-center {
    text-align: center;
}

.no-boder {
    border: 1px solid #f3f3f3;
}

h1, .h1, h2, .h2, h3, .h3 {
    margin-top: 7px;
    margin-bottom: -5px;
}

h2 {
    color: #121212;
}

h4 {
    padding-top: 10px;
}

.square-btn-adjust {
    border: 0 solid transparent;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;

}

p {
    font-size: 16px;
    line-height: 25px;
    padding-top: 20px;
}

.navbar-side {
    z-index: 0;
}

.panel {
    border-radius: 0;
}

.navbar-side .nav > li > a > i {
    color: #FFFFFF;
    padding: 8px;
    width: 30px;
    text-align: center;
}

.top-navbar {
    position: fixed;
    width: 100%;
    z-index: 300;
    -webkit-box-shadow: 0 3px 3px rgba(0, 0, 0, 0.05);
    -moz-box-shadow: 0 3px 3px rgba(0, 0, 0, 0.05);
    box-shadow: 0 3px 3px rgba(0, 0, 0, 0.05);
}

.navbar-side {
    z-index: 1;
    position: fixed;
    width: 260px;
    top: 80px;
}

#page-wrapper {
    position: relative;
    top: 55px;
}

.top-navbar .nav > li > a:hover, .top-navbar .nav > li > a:focus {
    text-decoration: none;
    background-color: #6c7d2b;
    color: #fff;
}

.nav .open > a, .nav .open > a:hover, .nav .open > a:focus {
    background-color: #95ac3c;
    border-color: #6c7d2b;
}

.breadcrumb {
    padding: 18px;
    margin-bottom: 20px;
    list-style: none;
    background-color: #FFFFFF;
    border-radius: 0;
    -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, .05);
    box-shadow: 0 1px 1px rgba(0, 0, 0, .05);
}

.dropdown-menu > li > a {
    display: block;
    padding: 3px 20px;
    clear: both;
    font-weight: 400;
    line-height: 1.42857143;
    color: #333;
    white-space: nowrap;
    font-size: 13px;
}

.dropdown-menu > li > a i {
    color: #95ac3c;
}

.text-muted {
    color: #FB5651;
}

.badge {
    display: inline-block;
    min-width: 10px;
    padding: 4px 7px;
    font-size: 11px;
    font-weight: 700;
    color: #fff;
    text-align: center;
    white-space: nowrap;
    vertical-align: baseline;
    background-color: #95ac3c;
    border-radius: 10px;
}

/*----------------------------------------------
   DASHBOARD STYLES    
------------------------------------------------*/
.page-header {
    padding-bottom: 9px;
    margin: 10px 0 20px;
    border-bottom: 1px solid transparent;
    text-align: left;
}

.page-header span{
    color: #6c7d2b;
    font-weight: 700;
    font-size: 50px;
}
.page-header small{
    color: #000;
    font-size: 32px;
    font-style: italic;
}
.home-description .img-block{
    display: block;
    margin: 20px auto;
    width: 180px;
    height: 140px;
    background-repeat: no-repeat !important;
    background-size: contain !important;
    background-position: center center !important;
}
.home-description .description{
    font-size: 22px;
    width: 60%;
    line-height: 27px;
}
.home-description .title{
    color: #6c7d2b;
    font-weight: 700;
    margin-top: 50px;
    font-size: 25px;
    margin-bottom: 11px;
}
.img-block.page-img-title{
    float: left;
    margin: 0px;
    width: 150px;
    height: 110px;
}
.page-title-block .description{
    width:100%;
}
.page-title-block .title{
    margin-top: 0px;
    font-size: 50px;
    font-weight: 700;
}
.panel-left {
    width: 100px;
    height: 100px;
    background: #32D088;
    border: 2px solid white;
    border-radius: 100%;
    overflow: hidden;

    margin: 12px;
}

.panel-left .fa-5x {
    font-size: 3em;
    color: rgba(255, 255, 255, 0.69);
    padding: 29px 0;
    margin-bottom: 30px;
}

.panel-right {
    height: 124px;
    margin-bottom: 0;
    color: #121212;
    background-color: #fff;
    float: left;
    text-align: left;
    padding-left: 20px;
}

.panel-right h3 {
    font-size: 40px;
    padding: 18px 10px 13px 0;
    color: #8A8A8A;
}

.panel-back {
    background-color: #fff;

}

.panel-default {
    border-color: #ECECEC;
}

.panel-default > .panel-heading {
    color: #000;
    border-color: #FFF;
    font-weight: bold;
    background: #FFFFFF;
    font-size: 16px;
    padding: 15px 15px 0;
}

.panel-heading {
    /* padding: 15px 15px 0px; */
    border-bottom: 1px solid transparent;
    border-top-left-radius: 3px;
    border-top-right-radius: 3px;
}

.jumbotron {
    padding: 20px;
}

.jumbotron p {
    margin-bottom: 15px;
    font-size: 15px;
    font-weight: 200;
}

.jumbotron, .well {
    background: #fff;
}

.noti-box {
    min-height: 100px;
    padding: 20px;
}

.noti-box .icon-box {
    display: block;
    float: left;
    margin: 0 15px 10px 0;
    width: 70px;
    height: 70px;
    line-height: 75px;
    vertical-align: middle;
    text-align: center;
    font-size: 40px;
}

.text-box p {
    margin: 0 0 3px;
}

.main-text {
    font-size: 25px;
    font-weight: 600;
}

.set-icon {
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    border-radius: 50px;

}

.panel-primary {
    display: inline-block;
    margin-bottom: 30px;
    width: 100%;
}

.green {
    /* background-color: #1CC09F; */
    color: #fff;
}

.blue {
    background-color: #32CEE4;
    color: #fff
}

.red {
    background-color: #FB6E51;
    color: #fff;
}

.brown {
    background-color: #F5B252;
    color: #fff;
}

.back-footer-red {
    background-color: #F0433D;
    color: #fff;
    border-top: 0 solid #fff;
}

.icon-box-right {
    display: block;
    float: right;
    margin: 0 15px 10px 0;
    width: 70px;
    height: 70px;
    line-height: 75px;
    vertical-align: middle;
    text-align: center;
    font-size: 40px;
}

.main-temp-back {
    background: #8702A8;
    color: #FFFFFF;
    font-size: 16px;
    font-weight: 300;
    text-align: center;
}

.main-temp-back .text-temp {
    font-size: 40px;
}

.back-dash {
    padding: 20px;
    font-size: 20px;
    font-weight: 500;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
    background-color: #2EA7EB;
    color: #fff;
}

.back-dash p {
    padding-top: 16px;
    font-size: 13px;
    color: #fff;
    line-height: 25px;
    text-align: justify;
}

.color-bottom-txt {
    color: #000;
    font-size: 16px;
    line-height: 30px;
}

/*CHAT PANEL*/
/*Charts*/

.main-chart {
    background: #fff;
}

.easypiechart-panel {
    text-align: center;
    padding: 1px 0;
    margin-bottom: 20px;
}

.placeholder h2 {
    margin-bottom: 0;
}

.donut {
    width: 100%;
}

.easypiechart {
    position: relative;
    text-align: center;
    width: 120px;
    height: 120px;
    margin: 20px auto 10px auto;
}

.easypiechart .percent {
    display: block;
    position: absolute;
    font-size: 26px;
    top: 38px;
    width: 120px;
}

#easypiechart-blue .percent {
    color: #30a5ff;
}

#easypiechart-teal .percent {
    color: #1ebfae;
}

#easypiechart-orange .percent {
    color: #ffb53e;
}

#easypiechart-red .percent {
    color: #ef4040;
}

.chat-panel .panel-body {
    height: 450px;
    overflow-y: scroll;
}

.chat-box {
    margin: 0;
    padding: 0;
    list-style: none;
}

.chat-box li {
    margin-bottom: 15px;
    padding-bottom: 5px;
    border-bottom: 1px dotted #808080;
}

.chat-box li.left .chat-body {
    margin-left: 90px;
}

.chat-box li .chat-body p {
    margin: 0;
    color: #8d8888;
}

.chat-img > img {
    margin-left: 20px;
}

footer p {
    font-size: 14px;
}

/*----------------------------------------------
    MENU STYLES    
------------------------------------------------*/

.user-image {
    margin: 25px auto;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    max-height: 170px;
    max-width: 170px;
}

.top-navbar {
    margin: 0;
}

.top-navbar .navbar-brand {
    color: #fff;
    width: 260px;
    text-align: left;
    height: 60px;
    font-size: 24px;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 30px;
    background: #FFFFFF;
}

.navbar-brand {
    padding: 7px 15px;
}

.navbar-brand b {
    color: #4BD28C;
}

.top-navbar .nav > li {
    position: relative;
    display: inline-block;
    margin: 0;
    padding: 0;
}

.top-navbar .nav > li > a {
    position: relative;
    display: block;
    padding: 20px;
    color: #FFFFFF;
    margin: 0;
}

.top-navbar .nav > li > a:hover, .top-navbar .nav > li > a:focus {
    text-decoration: none;
    color: #319DB5 !important;
    background: transparent;
}

.top-navbar .dropdown-menu {
    min-width: 230px;
    border-radius: 0 0 4px 4px;
}

.top-navbar .dropdown-menu > li > a:hover, .top-navbar .dropdown-menu > li > a:focus {
    color: #225081;
    background: none;
}

.dropdown-tasks {
    width: 255px;
}

.dropdown-tasks .progress {
    height: 8px;
    margin-bottom: 8px;
    overflow: hidden;
    background-color: #f5f5f5;
    border-radius: 0;
}

.dropdown-tasks > li > a {
    padding: 0 15px;
}

.dropdown-tasks p {
    font-size: 13px;
    line-height: 21px;
    padding-top: 4px;
}

.active-menu {
    background-color: #6c7d2b !important;
    color: #fff !important;
}

.active-menu i {
    color: #fff !important;
}

.arrow {
    float: right;
    margin-top: 8px;
}

.fa.arrow:before {
    content: "\f104";
}

.active > a > .fa.arrow:before {
    content: "\f107";
}

.nav-second-level li,
.nav-third-level li {
    border-bottom: none !important;
}

.nav-second-level li a {
    padding-left: 37px;
}

.nav-third-level li a {
    padding-left: 55px;
}

.sidebar-collapse, .sidebar-collapse .nav {
    background: none;
}

.sidebar-collapse .nav {
    padding: 0;
}

.sidebar-collapse .nav > li > a {
    color: #FFFFFF;
    background: transparent;
    text-shadow: none;
}

.sidebar-collapse > .nav > li > a {
    padding: 12px 10px;
}

.sidebar-collapse > .nav > li {
    border-bottom: 1px solid rgba(107, 108, 109, 0.19);
}

ul.nav.nav-second-level.collapse.in {
    background: #096E75;
}

.sidebar-collapse .nav > li > a:hover,
.sidebar-collapse .nav > li > a:focus {
    background: #6c7d2b;
    outline: 0;
}

.navbar-side {
    border: none;
    /*background: #32C2CD url(../img/bg-img.jpg) !important;*/
    background: #95ac3c !important;
}
.top-navbar {
    background: #4A4A4A;
    border-bottom: none;
}

.top-navbar .nav > li > a > i {
    margin-right: 2px;
}

.top-navbar .navbar-brand:hover {
    color: #95ac3c;
    background: #FFFFFF !important;
}

.dropdown-user li {
    margin: 8px 0;
}

.navbar-default {
    border: 0 solid black;

}

.navbar-header {
    background: transparent;
}

.navbar-default .navbar-toggle:hover, .navbar-default .navbar-toggle:focus {
    background-color: #283643;
}

.navbar-default .navbar-toggle {
    border-color: #fff;
}

.navbar-default .navbar-toggle .icon-bar {
    background-color: #FFF;
}

.nav > li > a > i {
    margin-right: 10px;
    color: #FFF;
}

.dropdown-menu > li > a > strong {
    color: #1CC09F;
    padding: 5px 0;
    display: inline-block;
    font-weight: 500;
}

#sideNav {
    position: absolute;
    right: -28px;
    z-index: 3;
    background-color: #CFCECE;
    padding: 3px 9px;
    top: -11px;
    color: #283643;
    cursor: pointer;
    border-radius: 0 15px 15px 0;
    width: 28px;
    font-size: 16px;
}

ul.dropdown-menu.dropdown-messages li a div {
    padding: 2px 0;
}

/*----------------------------------------------
    UI ELEMENTS STYLES     
------------------------------------------------*/
.btn-circle {
    width: 50px;
    height: 50px;
    padding: 6px 0;
    -webkit-border-radius: 25px;
    -moz-border-radius: 25px;
    border-radius: 25px;
    text-align: center;
    font-size: 12px;
    line-height: 1.428571429;
}
/*----------------------------------------------
    FORM ELEMENTS STYLES
------------------------------------------------*/
.form-control:focus {
    border-color: #95ac3c;
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(149, 172, 60, 0.6);
}
.btn-success {
    background-color: #95ac3c;
    border-color: #788b31;
}
.btn-success:hover, .btn-success:focus, .btn-success:active, .btn-success.active, .open>.dropdown-toggle.btn-success {
    background-color: #788b31;
}
.pagination>.active>a, .pagination>.active>a:focus, .pagination>.active>a:hover, .pagination>.active>span, .pagination>.active>span:focus, .pagination>.active>span:hover {
    z-index: 2;
    color: #fff;
    cursor: default;
    background-color: #95ac3c;
    border-color: #788b31;
}
.pagination > li > a, .pagination > li > span {
    color: #95ac3c;
}
.genBtn { width: 100%; }
.file-field {
    position: relative;
}
.z-depth-1-half {
    /*-webkit-box-shadow: 0 5px 11px 0 rgba(0,0,0,.18),0 4px 15px 0 rgba(0,0,0,.15)!important;*/
    /*box-shadow: 0 5px 11px 0 rgba(0,0,0,.18),0 4px 15px 0 rgba(0,0,0,.15)!important;*/
}
.file-field input[type=file] {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    width: 100%;
    margin: 0;
    padding: 0;
    cursor: pointer;
    opacity: 0;
}
/*----------------------------------------------

------------------------------------------------*/
.m-active { color: #337ab7; }
.m-active:hover { color: #23527c; }
.m-inactive { color: #a94442; }
.m-inactive:hover {color:#843534}
.m-active span, .m-inactive span { display: none; }
.navbar-toggle {
    position: relative;
    float: right;
    padding: 7px 5px;
    margin-top: 15px;
    margin-right: 15px;
    margin-bottom: 8px;
    background-color: transparent;
    background-image: none;
    border: 1px solid transparent;
    border-radius: 4px;
}
.navbar-default .navbar-toggle {
    background-color: #4A4A4A;
}
.navbar-default .navbar-toggle:hover,
.navbar-default .navbar-toggle:focus {
    background-color: #2e2e2e;
}
/*----------------------------------------------
    MEDIA QUERIES
------------------------------------------------*/
@media (max-width: 991px) {
    .panel-default .pull-right {
        float: none !important;
        margin-top: 4px;
    }
}
@media (min-width: 768px) {
    #page-wrapper {
        margin: 0 0 0 260px;
        padding: 15px 30px;

        min-height: 1200px;

    }

    .navbar-side {
        width: 260px;
        z-index: 1;
    }

    .navbar {
        border-radius: 0;
    }

}
@media (max-width: 767px) {
    .navbar-default.top-navbar {
        height: 60px;
    }
    .top-navbar .navbar-top-links {
        position: relative;
        float: left;
        top: -62px;
        left: 260px;
    }
    #sideNav { display: none; }
    .navbar-side {
        top: 60px;
    }
}
@media (max-width: 480px) {
    .page-header small {
        display: block;
        padding-top: 14px;
        font-size: 19px;
    }

    .panel-left {
        width: 85px;
        height: 85px;
        border-radius: 100%;
        overflow: hidden;
        margin: 14px;
    }
    /**/
    #sideNav { display: none; }
    #page-wrapper {
        position: relative;
        top: 110px;
    }
    .top-navbar .navbar-brand {
        width: 100%;
    }
    .top-navbar .navbar-top-links {
        position: relative;
        float: left;
        top: -55px;
    }
    .navbar-default.top-navbar {
        height: 110px;
    }
    .navbar-side {
        top: 110px;
    }
    .dropdown-menu {
        top: 87%; /*!!!*/
    }
    .panel-default .pull-right {
        float: none !important;
        margin-top: 4px;
    }
    .panel-default .col-sm-6 {
        width: 100%;
    }
    div.dataTables_filter label {
        width: 50%;
    }
    .navbar-toggle {
        display: block;
    }
}
.error-message{
    color: #fff;
    font-weight: 700;
    background: #f00;
}

#error-box{
    color: #f00;
    font-weight: 700;
    margin-top:10px;
}

.table-responsive > p{
    float:left;
    margin: 20px;
}
.table-responsive tr{
    /*display: none;*/
}
.table-responsive input[type=radio]{
    margin-right: 5px;
}
.show-line , thead > tr{
    display:table-row !important;
}
.change-activity , .change-activity-company , .forgot-style , .change-activity-wifi{
    cursor: pointer;
}
.clear{
    clear:both;

}
#output img{
    max-width: 300px;
    margin-bottom: 20px;
}
.navbar-brand img{
    max-height: 50px;
    display: block;
    margin: 0 auto;
}
#spinner-content{
    background: url(../img/spinner.gif) , #fff;
    width: 100%;
    height: 100%;
    position: absolute;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 999;
    opacity: 0.8;
    display: none;
}
#spinner-content.show-spinner{
    display: block;
}
*{
    font-family: 'Colibri', sans-serif;
}

button b{
    color: #0c495d;
}

/******************************************************************************** START // Popup Styles*/
.show-popup{
    display: block !important;
}
#spinner-content{
    width: 100%;
    position: absolute;
    top: 0px;
    left: 0px;
}
#popup {

    width: 600px;
    margin: 200px auto;
    font-size: 13px;
    font-weight: normal;
    line-height: normal;
    color: #fff;
    text-align: left;

}
#popup .popup-block {
    display: block;
 
    background: #363636;
}
#popup .popup-parent {
    width: 100%;
     text-align: center;

    padding: 20px 25px 40px;
    position: relative;
    background: #2c2c2c;
    background: -moz-linear-gradient(323deg, #2c2c2c 50%, transparent 50%);
    background: -webkit-linear-gradient(323deg, #2c2c2c 50%, transparent 50%);
    background: linear-gradient(323deg, #6c7d2b 50%,transparent 50%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#2c2c2c", endColorstr="transparent",GradientType=1 );
}

#popup .popup-text {
    font-family: 'Colibri';
    font-weight: normal;
    line-height: normal;
    font-size: 17px;
    color: #fff;
    margin: 10px 0;
    padding: 0;
    text-align: center;
}
#popup .popup-content {
    padding: 0px;
    display: block;
    margin: 30px auto 20px;
    width: 70%;
}
#popup .popup-content input, #popup .popup-content input {
    display: inline-block;
    font-family: 'Colibri';
    font-size: 17px;
    font-weight: bold;
    line-height: normal;
    color: #fff;
    cursor: pointer;
    margin: 10px 0 0;
    padding: 0;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    border: 0px solid transparent;
    width: 48%;
    height: 40px;
    text-transform: none;
}
#popup .popup-content input {
    background: #ffa65d;
    position: static !important;
}
#popup .popup-content input {
    background: #51dcde;
}
#popup .popup-content input {
    background: #ffa65d;
    position: static !important;


}
#popup .popup-content input + input {
    display: inline-block;
}
#popup .popup-content input {
    background: #51dcde;
}
.singup{
    outline:none;
    background: #ffa65d !important;
}
.singup:hover{
    background: #dc7f32 !important;
}
.cancel:hover{
    outline:none;
    background: #47c2c3 !important;
}
.singup:active , .cancel:active{
    box-shadow: 1px 1px 6px 2px rgba(0,0,0,0.5) inset;
        color: #0e6465 !important;
}
.popup-overlay.popup-createWiFiForMySelf , 
.popup-overlay.popup-changeActivityWifi ,
.popup-overlay.popup-resendInfoWifi,
.popup-overlay.popup-resendInfoCompany,
.popup-overlay.popup-changeActivityCompany,
.popup-overlay.popup-changeActivityAdmin,
.popup-overlay.popup-resendInfoAdmin
{
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0px;
    background: rgba(0, 0, 0, 0.6);
    z-index: 9999;
    display: none;
}

.navbar-brand , .languages , .languages li {
    float: left;
}

.languages li {
    list-style-type: none;
    margin: 20px 20px 20px 0px;
    background-position: center center;
    background-size: contain;
    background-repeat: no-repeat;
    width: 20px;
    height: 20px;
    border-radius: 10px;
    cursor:pointer;
}

.lang-en{
    background: url('../img/en.png');
}
.lang-hr{
    background: url('../img/hr.png');
}
.languages li.active{
    box-shadow: 0px 0px 13px 7px rgb(255, 255, 255 , 1);
}
/*************************************************************************** END // Popup Styles*/

#dataTables-example_length label{
    display: none;
}

.additional-field{
    float: left;
    width: 90%;
}
.clear{
    clear:both;
}
.additional-field + b{
    padding-top: 5px;
    display: block;
    cursor:pointer;
}
.pagination>li>a, .pagination>li>span {
    margin-left: 0px;
    margin-right: -1px;
}
.pagination {
    margin: 20px 1px;
    float: right;
}