body{background: #ebf3f5;font-family: 'Open Sans', sans-serif; font-size:13px;}

.profile-pic {
  border-radius: 100%;
  width: 30px;
}
.notif {position:relative;}
.notif span{ position:absolute; top:10px; right:8px; border-radius:100%; background:#fff; color:#bf292a;padding:0px 7px; font-size:10px;  }
.navbar {min-height: 60px; position: relative;margin-bottom: 28px; border:none !important;}

.navbar-nav > li > a {
  padding-bottom: 20px;
  padding-top: 20px;
 }
.navbar-default .navbar-nav > li > a {
  color:#2f0c0c;
  font-size: 13px;
    text-transform: uppercase;
    font-weight: 600;}
  .navbar-default .navbar-nav > li > a:hover {
 color:#fff;}
 
 .navbar-default .navbar-nav > .open > a, .navbar-default .navbar-nav > .open > a:hover, .navbar-default .navbar-nav > .open > a:focus {
  background-color: #8e2f2f;
  color: #ffdb00;

}
    
  
.navbar-brand {
  padding: 18px 15px !important; height:auto !important; 
}
.navbar-default {
  background-color: #bf292a;
  border-color: none;
  border-radius:0px;
  box-shadow:0px 0px 10px rgba(0,0,0,0.08)
}
ul.nav.navbar-nav.navbar-right > li > a {
  display: table-cell;
  height: 60px;
  padding: 12px 16px;
  vertical-align: middle;
}


/*login and forgot page css*/
.navbar-default .navbar-nav > .active > a, .navbar-default .navbar-nav > .active > a:hover, .navbar-default .navbar-nav > .active > a:focus {
  background-color: #8e2f2f;
  color: #ffdb00;
}

.login-card {
    min-height: 100vh;
    background-image: url('../img/bg.jpg');
    background-size: cover;
    -moz-background-size: cover;
    -ms-background-size: cover;
    -wenkit-background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    position: relative;
    border-radius: 00px;
    -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
    box-shadow: 0 1px 6px 0 rgba(0, 0, 0, 0.12), 0 1px 6px 0 rgba(0, 0, 0, 0.12);
    z-index: 2;
    padding: 0;

}
.login-card:after {
background: -moz-linear-gradient(45deg, #ff4e00 0%, #bf292a 100%);/* FF3.6+ */
background: -webkit-gradient(linear, 45deg, color-stop(0%, #ff4e00), color-stop(100%, #bf292a));/* Chrome,Safari4+ */
background: -webkit-linear-gradient(45deg, #ff4e00 0%, #bf292a 100%);/* Chrome10+,Safari5.1+ */
background: -o-linear-gradient(45deg, #ff4e00 0%, #bf292a 100%);/* Opera 11.10+ */
background: -ms-linear-gradient(45deg, #ff4e00 0%, #bf292a 100%);/* IE10+ */
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff4e00', endColorstr='#bf292a', GradientType='1'); /* for IE */
background: linear-gradient(45deg, #ff4e00 0%, #bf292a 100%);/* W3C */


    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    content: "";
    opacity: 0.90;
    z-index:-1;
}
.login-card > form {
    z-index: 4;
    position: relative;
    padding: 0px 25px;
    width: 100%;
}
.logo-kapsul {
    text-align: center;
    position: relative;
}
.logo {
    height: auto;
    padding: 50px 0px;
}
/* form başlangıç stiller ------------------------------- */

.group {
    position: relative;
    margin-bottom: 45px;
}
.group input {
    font-size: 18px;
    padding: 10px 10px 10px 10px;
    display: block;
    width: 100%;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    background: none;
    color: #eee;
}
.group input:focus {
    outline: none;
}
/* LABEL ======================================= */

.group label {
    color: rgba(256, 256, 256, 0.7);
    font-size: 18px;
    font-weight: normal;
    position: absolute;
    pointer-events: none;
    left: 5px;
    top: 5px;
    transition: 0.2s ease all;
    -moz-transition: 0.2s ease all;
    -webkit-transition: 0.2s ease all;
}
/* active durum */

.group input:focus ~ label,
input:valid ~ label {
    top: -20px;
    font-size: 14px;
    color: rgba(256, 256, 256, 1);
}
/* BOTTOM BARS ================================= */

.bar {
    position: relative;
    display: block;
    width: 100%;
}
.bar:before,
.bar:after {
    content: '';
    height: 2px;
    width: 0;
    bottom: 1px;
    position: absolute;
    background: rgba(255, 255, 255, 0.7);
    transition: 0.2s ease all;
    -moz-transition: 0.2s ease all;
    -webkit-transition: 0.2s ease all;
}
.bar:before {
    left: 50%;
}
.bar:after {
    right: 50%;
}
/* active durum bar */

.group input:focus ~ .bar:before,
.group input:focus ~ .bar:after {
    width: 50%;
}
/* HIGHLIGHTER ================================== */

.highlight {
    position: absolute;
    height: 0%;
    width: 100px;
    top: 25%;
    left: 0;
    pointer-events: none;
    opacity: 0.5;
}
/* active durum */

.group input:focus ~ .highlight {
    -webkit-animation: inputHighlighter 0.3s ease;
    -moz-animation: inputHighlighter 0.3s ease;
    animation: inputHighlighter 0.3s ease;
}
/* form animasyon ================ */

@-webkit-keyframes inputHighlighter {
    from {
        background: rgba(255, 255, 255, 0.7);
    }
    to {
        width: 0;
        background: transparent;
    }
}
@-moz-keyframes inputHighlighter {
    from {
        background: rgba(255, 255, 255, 0.7);
    }
    to {
        width: 0;
        background: transparent;
    }
}
@keyframes inputHighlighter {
    from {
        background: rgba(255, 255, 255, 0.7);
    }
    to {
        width: 0;
        background: transparent;
    }
}
.input-ikon {
    font-size: 25px!important;
    position: relative;
}
.input-sifre-ikon {
    font-size: 22px!important;
    position: relative;
}
.span-input {
    margin-left: 10px;
    position: relative;
    top: 0px;
}
.buton {
  background: #fff none repeat scroll 0 0;
  border-radius: 3px;
  box-shadow: 0 0 14px rgba(0, 0, 0, 0.13);
  color: #575757;
  display: block;
  font-size: 16px;
  outline: medium none;
  padding: 10px;
  text-align: center;
  text-decoration: none;
}
.buton:hover, .buton:active, .buton:focus{text-decoration:none; color:#000;}
.forgot-and-create {
    margin: 20px 0px;
}
.forgot-and-create a {
    color: #fff;
    font-size: 13px;
    text-decoration: none;
}
#login-form{max-width:320px; margin: 0px auto;}
#forgot-page{max-width:320px; margin: 0px auto;}




/*===================================================
                    CLient form
====================================================*/


/*check box ui css*/
 /* The switch - the box around the slider */
.switch {
  position: relative;
  display: inline-block;
  width: 36px;
  height: 20px;
  margin-top:6px;
}

/* Hide default HTML checkbox */
.switch input {display:none;}

/* The slider */
.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: 16px;
  width: 16px;
  left: 2px;
  bottom: 2px;
  background-color: white;
  -webkit-transition: .4s;
  transition: .4s;
}

input:checked + .slider {
  background-color: #bf292a ;
}
.btn-primary:active, .btn-primary.active, .open > .dropdown-toggle.btn-primary {
  background-color: #bf292a !important;
  border-color: #bf292a !important;
  color: #fff;
}

input:focus + .slider {
  box-shadow: 0 0 1px #2196F3;
}

input:checked + .slider:before {
  -webkit-transform: translateX(16px);
  -ms-transform: translateX(16px);
  transform: translateX(16px);
}

/* Rounded sliders */
.slider.round {
  border-radius: 34px;
}

.slider.round:before {
  border-radius: 50%;
} 
/*Checkbox ui  end*/




.c-header{ line-height:38px;
background: -moz-linear-gradient(200deg, #ff6c00 0%, #bf292a 100%);/* FF3.6+ */
background: -webkit-gradient(linear, 200deg, color-stop(0%, #ff6c00), color-stop(100%, #bf292a));/* Chrome,Safari4+ */
background: -webkit-linear-gradient(200deg, #ff6c00 0%, #bf292a 100%);/* Chrome10+,Safari5.1+ */
background: -o-linear-gradient(200deg, #ff6c00 0%, #bf292a 100%);/* Opera 11.10+ */
background: -ms-linear-gradient(200deg, #ff6c00 0%, #bf292a 100%);/* IE10+ */
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff6c00', endColorstr='#bf292a', GradientType='1'); /* for IE */
background: linear-gradient(200deg, #ff6c00 0%, #bf292a 100%);/* W3C */


}
.c-header a{ color:#fff;}
.c-content {  background: #fff none repeat scroll 0 0;  padding: 30px;}
.h-4 {  color: #fff;  font-size: 18px;  margin: 0px !important;  line-height: 38px}
.c-content .form-horizontal .control-label {font-weight: 400;}
.form-horizontal .control-label {font-weight: 400;}


.form-control {
  border: 1px solid #ccc;
  border-radius: 2px;
  box-shadow: none;
  height: 30px;
  padding: 6px 12px;
  transition: border-color 0.15s ease-in-out 0s, box-shadow 0.15s ease-in-out 0s;
  width: 100%;
}

.form-group {
  margin-bottom: 10px;
}

.nav-tabs > li.active > a {
  border-radius: 2px 2px 0 0;
  line-height: 1.42857;
  margin-right: 2px;
  background: #74c07e;
  color:#fff;
  border:none;
}

.nav-tabs > li > a {
  display: block;
  padding:10px 15px;
  position: relative;
  border:none;
  color: #000;
}

.nav-tabs > li.active > a, .nav-tabs > li.active > a:hover, .nav-tabs > li.active > a:focus {
border:none;
background: #bf292a;
color:#fff;
}
.btn-primary{background:#bf292a; border-color:#bf292a; }
.btn-primary:hover, .btn-primary:active, .btn-primary:focus{background:#8e2f2f; border-color:#8e2f2f; }
.bootstrap-select:not([class*="col-"]):not([class*="form-control"]):not(.input-group-btn) {
  width: 100% !important;
}

.dropdown-menu > .active > a, .dropdown-menu > .active > a:hover, .dropdown-menu > .active > a:focus {
  background-color: #8e2f2f;
  color: #fff;
  outline: 0 none;
  text-decoration: none;
}
.dropdown-menu > li > a:hover, .dropdown-menu > li > a:focus {
  background-color: #bf292a;
  color: #fff;
  text-decoration: none;
}
.dropdown-menu {
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 4px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.176);
  display: none;
  float: left;
  font-size: 14px;
  left: 0;
  list-style: outside none none;
  margin: 2px 0 0;
  min-width: 160px;
  padding: 5px 0;
  position: absolute;
  text-align: left;
  top: 100%;
  z-index: 1000;
}
.bootstrap-select .btn {
  border: 1px solid #ccc;
  background:#fff;
  border-radius: 2px;
  box-shadow: none;
  height: 30px;
  padding: 6px 12px;
  transition: border-color 0.15s ease-in-out 0s, box-shadow 0.15s ease-in-out 0s;
  width: 100%;
}

.content-wrap{ height:calc(100vh - 69px); background:#fff; box-shadow:0px 5px 5px rgba(0,0,0,0.2); margin-right:-15px; position:relative;  box-sizing:border-box;}
.content-wrap-2{ height:calc(100vh - 69px); background:#fff; box-shadow:0px 5px 5px rgba(0,0,0,0.2); margin-left:-15px; position:relative;  box-sizing:border-box;}
.heading-lift{color:#333; margin:20px 0px; font-size:24px; display:inline-block; }
.link-lift{ background:#dd261d; display:inline-block; color:#fff; border-radius:3px;margin:-6px 0px 0px 100px; }
.link-lift:hover, .link-lift:focus, .link-lift:active{ color:#fff; background:#b41912;}
.members a{margin:0px 5px;}
/* M E S S A G E S */
.chat { list-style: none; background: none; margin: 0; padding: 0px 0 50px 0; margin-top: 30px; 
}
.chat li { padding: 0.5rem; overflow: hidden; display: flex;
}
.chat .avatar { width: 40px; height: 40px; position: relative; display: block; z-index: 2; border-radius: 100%; -webkit-border-radius: 100%; -moz-border-radius: 100%; -ms-border-radius: 100%; background-color: rgba(255,255,255,0.9);
}
.chat .avatar img { width: 40px; height: 40px; border-radius: 100%; -webkit-border-radius: 100%; -moz-border-radius: 100%; -ms-border-radius: 100%; background-color: rgba(255,255,255,0.9); -webkit-touch-callout: none; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none;
}
.avatar > img, .list-friends img {
  border-radius: 50%;
  margin:0px 5px;
} 
.list-friends .info {
  flex: 1 1 0;
}
.list-friends a {
  color: #666;
  display: flex;
  padding: 5px 5px 5px 27px;
  position: relative;
  width: 100%;
}


.purple::after, .red::after, .green::after, .yellow::after

{
    content: "";
    height: 20px;
    left: 0;
    position: absolute;
    top: 9px;
    width: 4px;
    z-index: 999999
}

.purple::after{background: #7316ff none repeat scroll 0 0;}
.red::after{background: #f21515 none repeat scroll 0 0;}
.green::after{background: #14e923 none repeat scroll 0 0;}
.yellow::after {background: #f7ea16 none repeat scroll 0 0;}

.other .msg { order: 1; background:#f5f5f5; border-radius:2px; margin-left:5px; padding:5px;
}

.self { justify-content: flex-end; align-items: flex-end;
}
.self .msg { order: 1; border-radius:2px; background: #4a847e; margin-right:5px ;border-radius:2px; padding:5px;color:#fff;
}
.self .avatar {  order: 2;
}

.msg p{margin:0px;}
.self time, .other time{font-size:10px; }


.chat-wrap input.textarea {
  background: #eaeaea none repeat scroll 0 0;
  border: medium none;
  bottom: 0;
  color: #666;
  font-weight: 400;
  height: 50px;
  left: 0;
  outline: medium none;
  padding-left: 55px;
  padding-right: 55px;
  position: absolute;
  right: 0;
  width: 100%;
  z-index: 99;
}
.emojis {
  background: rgba(0, 0, 0, 0) url("../img/add.png") no-repeat scroll center center;
  bottom: 8px;
  cursor: pointer;
  display: block;
  height: 34px;
  left: 7px;
  position: absolute;
  width: 34px;
  z-index: 100;
}

.add {
  background: rgba(0, 0, 0, 0) url("../img/send.png") no-repeat scroll center center;
  bottom: 8px;
  cursor: pointer;
  display: block;
  height: 34px;
  position: absolute;
  right: 7px;
  width: 34px;
  z-index: 100;
}

.send {
  background: rgba(0, 0, 0, 0) url("../img/emoji.png") no-repeat scroll center center;
  bottom: 8px;
  cursor: pointer;
  display: block;
  height: 34px;
  position: absolute;
  right: 48px;
  width: 34px;
  z-index: 100;
}
.pad-15{padding:0px 15px;}
.chat-wrap .chat{ height:450px; overflow-y:scroll; position:absolute; width:100%; bottom:52px; padding:0px 15px;}


.lift-action{text-align:right; margin-bottom:15px;}
.lift-action .bootstrap-select:not([class*="col-"]):not([class*="form-control"]):not(.input-group-btn) {
  width: auto   !important;
}
.lift-action .bootstrap-select > .dropdown-toggle {
display:inline-block !important; background:#fdb016; width:100px !important; border:1px solid #fdb016;
}

.lift-action .bootstrap-select > .dropdown-toggle:hover,
.lift-action .bootstrap-select > .dropdown-toggle:active,
.lift-action .bootstrap-select > .dropdown-toggle:focus{ background:#d59517; color:#fff; border-color:#d59517}
hr {

  margin-bottom: 15px;
  margin-top: 15px;
}
/*body{ overflow:hidden;}*/

.nav-dropdown-items{ list-style:none; margin:0; padding:0px;}
.nav-dropdown-items li a{ display:flex; padding:10px 15px; color:#333; position:relative;}
.nav-dropdown-items li a:hover, .nav-dropdown-items li a:active, .nav-dropdown-items li a:focus {  padding:10px 15px; color:#fff;background:#fdb016; text-decoration:none;}

.contract{height:calc(50vh - 34px); overflow-y:scroll;}
.employee{height:calc(50vh - 34px); overflow-y:scroll;}
.contract-2{height:calc(100vh - 69px); overflow-y:scroll;}

.app-search{display:block; position:relative;}
.app-search input {
  border-radius: 100px;
  font-size: 14px;
}
.app-search .srh-btn {
  background: #ebf3f5 none repeat scroll 0 0;
  color: #ccc;
  cursor: pointer;
  font-size: 14px;
  height: 15px;
  line-height: 0;
  position: absolute;
  right: 16px;
  top: 9px;
  width: 15px;
}
.contract-2, .contract, .employee{padding:0px 20px}

/* pagination */

.pagination {
  margin: 20px 0
}
.pagination ul {
  display: inline-block;
*display:inline;
  margin-bottom: 0;
  margin-left: 0;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
*zoom:1;
  -webkit-box-shadow: 0 1px 2px rgba(0,0,0,0.05);
  -moz-box-shadow: 0 1px 2px rgba(0,0,0,0.05);
  box-shadow: 0 1px 2px rgba(0,0,0,0.05)
}
.pagination ul>li {
  display: inline
}
.pagination ul>li>a, .pagination ul>li>span {
  float: left;
  padding: 4px 12px;
  line-height: 20px;
  text-decoration: none;
  background-color: #fff;
  border: 1px solid #ddd;
  border-left-width: 0
}
.pagination ul>li>a:hover, .pagination ul>li>a:focus, .pagination ul>.active>a, .pagination ul>.active>span {
  background-color: #f5f5f5
}
.pagination ul>.active>a, .pagination ul>.active>span {
  color: #999;
  cursor: default
}
.pagination ul>.disabled>span, .pagination ul>.disabled>a, .pagination ul>.disabled>a:hover, .pagination ul>.disabled>a:focus {
  color: #999;
  cursor: default;
  background-color: transparent
}
.pagination ul>li:first-child>a, .pagination ul>li:first-child>span {
  border-left-width: 1px;
  -webkit-border-bottom-left-radius: 4px;
  border-bottom-left-radius: 4px;
  -webkit-border-top-left-radius: 4px;
  border-top-left-radius: 4px;
  -moz-border-radius-bottomleft: 4px;
  -moz-border-radius-topleft: 4px
}
.pagination ul>li:last-child>a, .pagination ul>li:last-child>span {
  -webkit-border-top-right-radius: 4px;
  border-top-right-radius: 4px;
  -webkit-border-bottom-right-radius: 4px;
  border-bottom-right-radius: 4px;
  -moz-border-radius-topright: 4px;
  -moz-border-radius-bottomright: 4px
}
.pagination-centered {
  text-align: center
}
.pagination-right {
  text-align: right
}
.pagination-large ul>li>a, .pagination-large ul>li>span {
  padding: 11px 19px;
  font-size: 17.5px
}
.pagination-large ul>li:first-child>a, .pagination-large ul>li:first-child>span {
  -webkit-border-bottom-left-radius: 6px;
  border-bottom-left-radius: 6px;
  -webkit-border-top-left-radius: 6px;
  border-top-left-radius: 6px;
  -moz-border-radius-bottomleft: 6px;
  -moz-border-radius-topleft: 6px
}
.pagination-large ul>li:last-child>a, .pagination-large ul>li:last-child>span {
  -webkit-border-top-right-radius: 6px;
  border-top-right-radius: 6px;
  -webkit-border-bottom-right-radius: 6px;
  border-bottom-right-radius: 6px;
  -moz-border-radius-topright: 6px;
  -moz-border-radius-bottomright: 6px
}
.pagination-mini ul>li:first-child>a, .pagination-small ul>li:first-child>a, .pagination-mini ul>li:first-child>span, .pagination-small ul>li:first-child>span {
  -webkit-border-bottom-left-radius: 3px;
  border-bottom-left-radius: 3px;
  -webkit-border-top-left-radius: 3px;
  border-top-left-radius: 3px;
  -moz-border-radius-bottomleft: 3px;
  -moz-border-radius-topleft: 3px
}
.pagination-mini ul>li:last-child>a, .pagination-small ul>li:last-child>a, .pagination-mini ul>li:last-child>span, .pagination-small ul>li:last-child>span {
  -webkit-border-top-right-radius: 3px;
  border-top-right-radius: 3px;
  -webkit-border-bottom-right-radius: 3px;
  border-bottom-right-radius: 3px;
  -moz-border-radius-topright: 3px;
  -moz-border-radius-bottomright: 3px
}
.pagination-small ul>li>a, .pagination-small ul>li>span {
  padding: 2px 10px;
  font-size: 11.9px
}
.pagination-mini ul>li>a, .pagination-mini ul>li>span {
  padding: 0 6px;
  font-size: 10.5px
}

/* pagination */