/* 1.1 typography */
/* @import url("https://fonts.googleapis.com/css?family=Poppins:300,400,500,600,700"); */

body {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  font-size: 15px;
}

p, .paragraph {
  font-weight: 400;
  color: #666;
  font-size: 14px;
  line-height: 25px;
  font-family: "Poppins", sans-serif;
}

h1, h2, h3, h4, h5, h6 {
  color: #222;
  font-weight: 500;
  font-family: "Poppins", sans-serif;
}

h1, .h1 {
  font-size: 60px;
}

@media (max-width: 400px) {
  h1, .h1 {
    font-size: 30px;
  }
}

h2, .h2 {
  font-size: 36px;
}

h3, .h3 {
  font-size: 30px;
}

h4, .h4 {
  font-size: 20px;
}

h5, .h5 {
  font-size: 18px;
}

h6, .h6 {
  font-size: 14px;
}

/* 1.3 Button style */
/* .btn-normal {
  font-size: 14px;
  font-family: "Poppins", sans-serif;
  text-transform: capitalize;
  padding: 13px 20px !important;
  border-radius: 4px;
  font-weight: 600;
  border: 0;
  position: relative;
  z-index: 1;
  transition: .2s ease;
} */

/* .btn {
  font-size: 14px;
  font-family: "Poppins", sans-serif;
  text-transform: capitalize;
  padding: 13px 30px;
  border-radius: 35px;
  font-weight: 600;
  border: 0;
  position: relative;
  z-index: 1;
  transition: .2s ease;
} */

.btn {
  font-size: 14px;
  font-family: "Poppins", sans-serif;
  text-transform: capitalize;
}

.btn:focus {
  outline: 0;
  box-shadow: none !important;
}

.btn:active {
  box-shadow: none;
}

.btn-orange {
  background: #eb6427;
  color: #fff;
}

.btn-orange:active {
  color: #fff;
  background: #eb6427 !important;
}

.btn-orange:hover {
  color: #fff;
  background: #ef8352;
}

.section-title {
  margin-bottom: 55px;
  font-family: "Poppins", sans-serif;
  /* font-weight: 600; */
  color: #ff0000;
}

.section-title-sm {
  margin-bottom: 10px;
  /* font-family: "Open Sans", sans-serif; */
  font-family: "Poppins", sans-serif;
  /* font-weight: 600; */
  color: #ff0000;
}

a,
a:hover,
a:focus {
  text-decoration: none;
}

a {
  transition: .2s ease;
}

a:hover {
  /* color: #e84444; */
  color: #5bc3dd;
}

a.text-dark:hover,
a.text-white:hover {
  /* color: #e84444 !important; */
  color: #5bc3dd !important;
}

a,
button {
  cursor: pointer;
}

a .card:hover {
  border-color: #ff0000;
}

.overlay {
  position: relative;
}

.overlay::before {
  position: absolute;
  content: '';
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  background: #000;
  opacity: .6;
}

.overlay-dark {
  position: relative;
}

.overlay-dark::before {
  position: absolute;
  content: '';
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  background: #000;
  opacity: .8;
}

.overlay-primary {
  position: relative;
}

.overlay-primary::before {
  position: absolute;
  content: '';
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  /* background: #e84444; */
  background: #5bc3dd;
  opacity: .6;
}

.overlay-white {
  position: relative;
}

.overlay-white::before {
  position: absolute;
  content: '';
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  background: #fff;
  opacity: .7;
}

.overlay-rounded::before {
  border-radius: 5px;
}

/* card */
.card-img-wrapper {
  position: relative;
}

.card-img-wrapper::before {
  position: absolute;
  content: '';
  height: 100%;
  width: 100%;
  background: #000;
  opacity: 0;
  top: 0;
  left: 0;
  transition: .2s;
}

.card-body-2 {
  position: relative;
  transition: .2s ease;
  border-radius: 0 0 5px 5px;
}

.card-body-2::before {
  position: absolute;
  content: '';
  height: 30px;
  width: 30px;
  background: #fff;
  top: -15px;
  left: 50%;
  transform: translateX(-50%) rotate(-45deg);
  transition: .2s ease;
}

a .card:hover .card-img-wrapper::before {
  opacity: .4;
}

a .card:hover .card-body-2 {
  background: #e84444;
}

a .card:hover .card-body-2 h5,
a .card:hover .card-body-2 h6,
a .card:hover .card-body-2 a {
  color: #fff;
}

a .card:hover .card-body-2::before {
  background: #e84444;
}

.overlay-rounded-top::before {
  border-radius: 5px 5px 0 0;
}

label {
  font-weight: 400;
  color: #666;
  font-size: 14px;
  line-height: 25px;
  font-family: "Poppins", sans-serif;
}

#profile-menu {
  height: 120px;
}

#profile-photo {
  width: 100px;
  overflow: hidden;
}

.profile {
    width: 250px;
    height: 120px;
    overflow: hidden;
}

.profile a.link {
    color: hsla(0,0%,100%,.5);
    text-decoration: none;
    display: block;
}

.profile a.link.last-item {
    margin-top: 30px;
}

.profile a.link:hover {
    color: hsla(0,0%,100%,1);
    text-decoration: none;
}

/* these styles will animate bootstrap alerts. */
.alert{
    z-index: 99;
    top: 60px;
    right:18px;
    min-width:30%;
    position: fixed;
    animation: slide 0.5s forwards;
}
@keyframes slide {
    100% { top: 30px; }
}
@media screen and (max-width: 668px) {
    .alert{ /* center the alert on small screens */
        left: 10px;
        right: 10px;
    }
}
@media screen and (max-width: 576px){
    .navbar-brand {
        max-width: 100px;
    }
    .profile {
        width: 280px;
        margin-top: 20px;
    }
}


/* configs */
.hidden {
  display: none;
}

#imgInp {
    position: absolute;
    left: -9999px;
  }

.loading {
    background: lightgrey;
    padding: 15px;
    position: fixed;
    border-radius: 4px;
    left: 50%;
    top: 50%;
    text-align: center;
    margin: -40px 0 0 -50px;
    z-index: 2000;
    display: none;
}

/* a, a:hover {
    color: white;
} */

.form-group.required label:after {
    content: " *";
    color: red;
    font-weight: bold;
}

table td {
  font-size: 12px;
}

table th a, table th a:hover {
  color: white;
  text-decoration: none;
}

.icon-up:before {
  font-family: "FontAwesome";
  content: "\f0de";
}

.icon-down:before {
  font-family: "FontAwesome";
  content: "\f0dd";
}
.icon-sort:before {
    font-family: "FontAwesome";
    content: "\f0dc";
}
.pagination {
    justify-content: center;
}
.icon-menu {
    width:148px;
    height:148px;
    overflow: hidden;
}

.icon-menu.icon-small {
    width:60px;
    height:60px;
}

.btn_selcted {
  color: #fff !important;
  background-color: #204d74;
  border-color: #122b40;
}

.responsive-video {
  max-width: 100%;
  height: auto;
}

.opt-box {
    border: 1px solid #333;
    border-radius: 5px;
    padding: 5px;
}

.ui-draggable{
  z-index: 10;
}

.ui-state-hover{
  border:2px dashed #ddd;
}

.ui-state-hover:before{
  content: "";
}

.title-form {
  background-color: #c8e0ee;
  padding: 10px;
  margin-top: 10px;
  margin-bottom: 10px;
  border-radius: 5px;
  text-align: center;
  font-weight: bold;
  text-transform: uppercase;
}

.loads{
  position: fixed;
  /*background: rgba(255, 255, 255, 0.8);*/
  background: rgba(255, 255, 255, 1);
  margin:0;
  top: 0px;
  left: 0px;
  text-align: center;
  width:100%;
  height:100%;
  display:none ;
  z-index: 10000;
}

.loading-custom{
  margin: 0 auto;
  margin-left: auto;
  margin-right: auto;
  margin-top: 15%;
  /*width: 200px;*/
  height: 80px;
  text-align: center;
  font-size: 10px;

}

.loading-custom > div {
  height: 100%;
  width: 30px;
  display: inline-block;
  float: left;
  margin-left: 2px;
  -webkit-animation: delay 0.8s infinite ease-in-out;
  animation: delay 0.8s infinite ease-in-out;
}
.loading-custom .bar1 {
  background-color: #754fa0;
}
.loading-custom .bar2 {
  background-color: #09b7bf;
  -webkit-animation-delay: -0.7s;
  animation-delay: -0.7s;
}
.loading-custom .bar3 {
  background-color: #90d36b;
  -webkit-animation-delay: -0.6s;
  animation-delay: -0.6s;
}
.loading-custom .bar4 {
  background-color: #f2d40d;
  -webkit-animation-delay: -0.5s;
  animation-delay: -0.5s;
}
.loading-custom .bar5 {
  background-color: #fcb12b;
  -webkit-animation-delay: -0.4s;
  animation-delay: -0.4s;
}
.loading-custom .bar6 {
  background-color: #ed1b72;
  -webkit-animation-delay: -0.3s;
  animation-delay: -0.3s;
}

.loader{
  position: fixed;
  /*background: rgba(255, 255, 255, 0.8);*/
  background: rgba(255, 255, 255, 1);
  margin:0;
  top: 0px;
  left: 0px;
  text-align: center;
  width:100%;
  height:100%;
  z-index: 10000;
}

.loader-custom{
  margin: 0 auto;
  margin-left: auto;
  margin-right: auto;
  margin-top: 15%;
  /*width: 200px;*/
  height: 80px;
  text-align: center;
  font-size: 10px;

}

/* circle button */
.btn-circle.btn-sm { 
    width: 30px; 
    height: 30px; 
    padding: 6px 0px; 
    border-radius: 15px; 
    font-size: 8px; 
    text-align: center; 
} 
.btn-circle.btn-md { 
    width: 50px; 
    height: 50px; 
    padding: 7px 10px; 
    border-radius: 25px; 
    font-size: 10px; 
    text-align: center; 
} 
.btn-circle.btn-xl { 
    width: 70px; 
    height: 70px; 
    padding: 10px 16px; 
    border-radius: 35px; 
    font-size: 12px; 
    text-align: center; 
}

/* rating star */
.rating {
    float:left;
}

/* :not(:checked) is a filter, so that browsers that don’t support :checked don’t 
   follow these rules. Every browser that supports :checked also supports :not(), so
   it doesn’t make the test unnecessarily selective */
.rating:not(:checked) > input {
    position:absolute;
    /*top:-9999px;*/
    clip:rect(0,0,0,0);
}

.rating:not(:checked) > label {
    float:right;
    width:1.5em;
    padding:0 .1em;
    overflow:hidden;
    white-space:nowrap;
    cursor:pointer;
    font-size:200%;
    line-height:1.2;
    color:#ddd;
    text-shadow:1px 1px #bbb, 2px 2px #666, .1em .1em .2em rgba(0,0,0,.5);
}

.rating:not(:checked) > label:before {
    content: '★ ';
}

.rating > input:checked ~ label {
    color: #f70;
    text-shadow:1px 1px #c60, 2px 2px #940, .1em .1em .2em rgba(0,0,0,.5);
}

.rating:not(:checked) > label:hover,
.rating:not(:checked) > label:hover ~ label {
    color: gold;
    text-shadow:1px 1px goldenrod, 2px 2px #B57340, .1em .1em .2em rgba(0,0,0,.5);
}

.rating > input:checked + label:hover,
.rating > input:checked + label:hover ~ label,
.rating > input:checked ~ label:hover,
.rating > input:checked ~ label:hover ~ label,
.rating > label:hover ~ input:checked ~ label {
    color: #ea0;
    text-shadow:1px 1px goldenrod, 2px 2px #B57340, .1em .1em .2em rgba(0,0,0,.5);
}

.rating > label:active {
    position:relative;
    top:2px;
    left:2px;
}

.range {
  position: relative;
  width: 550px;
  height: 5px;
}

.range input {
  width: 100%;
  position: absolute;
  top: 2px;
  height: 0;
  -webkit-appearance: none;
}
.range input::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  margin: -8px 0 0;
  border-radius: 50%;
  background: #37adbf;
  cursor: pointer;
  border: 0 !important;
}
.range input::-moz-range-thumb {
  width: 18px;
  height: 18px;
  margin: -8px 0 0;
  border-radius: 50%;
  background: #37adbf;
  cursor: pointer;
  border: 0 !important;
}
.range input::-ms-thumb {
  width: 18px;
  height: 18px;
  margin: -8px 0 0;
  border-radius: 50%;
  background: #37adbf;
  cursor: pointer;
  border: 0 !important;
}
.range input::-webkit-slider-runnable-track {
  width: 100%;
  height: 2px;
  cursor: pointer;
  background: #b2b2b2;
}
.range input::-moz-range-track {
  width: 100%;
  height: 2px;
  cursor: pointer;
  background: #b2b2b2;
}
.range input::-ms-track {
  width: 100%;
  height: 2px;
  cursor: pointer;
  background: #b2b2b2;
}
.range input:focus {
  background: none;
  outline: none;
}
.range input::-ms-track {
  width: 100%;
  cursor: pointer;
  background: transparent;
  border-color: transparent;
  color: transparent;
}

.range-labels {
  margin: 18px -41px 0;
  padding: 0;
  list-style: none;
}
.range-labels li {
  position: relative;
  float: left;
  width: 90.25px;
  text-align: center;
  color: #b2b2b2;
  font-size: 14px;
  cursor: pointer;
}
.range-labels li::before {
  position: absolute;
  top: -25px;
  right: 0;
  left: 0;
  content: "";
  margin: 0 auto;
  width: 9px;
  height: 9px;
  background: #b2b2b2;
  border-radius: 50%;
}
.range-labels .active {
  color: #37adbf;
}
.range-labels .selected::before {
  background: #37adbf;
}
.range-labels .active.selected::before {
  display: none;
}

/* status */
.status-success {color: #2CFD06;}
.status-notavailable {color: #D13737;}
.status-inprogress {color: #6DB2F7;}

/* notification */
.notification-unread {background: #F9E29C;}

/* table */
.table-header {background: #6DB2F7; color: #FFFFFF;}

.count-flex {
    margin-top: -15px;
    font-size: 16px;
    margin-left: auto;
    margin-right: 10px;
    text-align: right;
}