/* ====================== TABS =======================*/
.tab-content {
	border: 1px solid #DDDDDD;
	border-top: 0 none;
	padding: 25px;
}
.tab-content {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}
.tab-content > .tab-pane.active {
    display: flex;
}
.tab-pane {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}
/* ====================== Messages Container =======================*/
.successMessages {
    display: flex;
    flex-direction: column;
    padding: 0 15px 15px;
}
.successMessages .alert {
    margin: 0;
}
.successMessages .alert + .alert {
    margin-top: 15px;
}
/* ====================== Panel customization =======================*/
.panel {
    display: flex;
    flex-direction: column;
}
.panel > .panel-body {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}
.panel-footer {
    padding: 0;
}
/* ====================== Busy indicator - overlay =====================*/
#busy-overlay {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    background: #000;
    opacity: 0.2;
    filter: alpha(opacity=80);
}
#loading {
    width: 50px;
    height: 57px;
    position: absolute;
    top: 50%;
    left: 50%;
    margin: -28px 0 0 -25px;
}
/* ====================== Adding asterisk to required fields ===================== */
.form-group.required .control-label:after {
  content:" *";
  color:red;
}
.panel-default.required .panel-title:after {
  content:" *";
  color:red;
}
/* ====================== LOGIN-V ====================== */
.login-form {
    margin: auto;
    width: 300px;
}
.login_header {
    margin-bottom: 20px;
}
.login_logo {
    height: 36px;
    background: url(../img/logo-team-login.png) no-repeat;
    margin: 3px 0 0;
    margin-left: 45px;
}
.login_label {
    text-align: center;
}
.login-body {
    background-color: white;
    margin-bottom: 0;
    padding: 20px 0;
}

.login-body .teamwork-label,
.login-body .google-label {
    margin-left: auto;
    text-align: right;
}
.teamwork-heading,
.google-heading {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 0 15px 0 !important;
}
.login-body .img_login_teamwork {
    width:53px;
    height:55px;
    background:url(../img/img-logo-team-login.png) no-repeat;
}
.login-body input.signin_button,
.login-body button.signin_button,
.login-body a.signin_button {
    width: 170px;
    color: #29A7DF;
    font-size: 15px;
    font-family: Century Gothic;
}
.login-body .separator {
    border-right: 1px solid #bbbbbb;
}

.login-body .img_login_google {
    width: 126px;
    height: 55px;
    background: url(../img/logo-google.png) no-repeat 0 13px;
}
.login-body .check {
    font-size: 16px;
    line-height: 18px;
}
.login-body .flashes {
    display: flex;
    flex-direction: column;
    margin: 20px 0 0 0;
}
.login-body .flashes .alert {
    margin: 0;
}
.login-body .flashes .alert + .alert {
    margin-top: 15px;
}
/* ====================== droplist-component ====================== */
droplist-component {
    width: 100%;
    display: block;
    position: relative;
    overflow: hidden;
}
droplist-component .w2ui-list {
    width: 100% !important;
}