
/* BASIC */

html {
  background-color: #56baed;
  overflow: hidden;
}

body {
  font-family: "Poppins", sans-serif;
  height: 100vh;
  overflow: scroll;
}

a {
  color: #92badd;
  display:inline-block;
  text-decoration: none;
  font-weight: 400;
}

h2 {
  text-align: center;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  display:inline-block;
  margin: 40px 8px 10px 8px; 
  color: #cccccc;
}

.blurred-form .card:not(.keep-clear){
  -webkit-filter:blur(5px);
  filter:blur(5px);
}

.blurred .content .card{
  -webkit-filter:blur(5px);
  filter:blur(5px);
}


/* STRUCTURE */

.wrapper {
  display: flex;
  align-items: center;
  flex-direction: column; 
  justify-content: center;
  width: 100%;
  min-height: 100%;
  //padding: 20px;
}

.icon-big {
  font-size: 3em;
  min-height: 64px;
}

.container-fluid {
  background-color: white;
}

.formContent {
  -webkit-border-radius: 10px 10px 10px 10px;
  border-radius: 10px 10px 10px 10px;
  background: #fff;
  padding: 30px;
  width: 90%;
  max-width: 450px;
  position: relative;
  padding: 0px;
  -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;
  -webkit-transition: left 1s ease;
  -moz-transition: left 1s ease;
  -ms-transition: left 1s ease;
  -o-transition: left 1s ease;
  transition: left 1s ease;
}
.formContent.position-absolute{
  padding-top: 61px;

  left:50%;
  transform:translateX(-50%);
}
.formContent.off{
  left:150%;
}

.formContent input[type=text], .formContent input[type=password], .formContent select{
  min-width: 75%;
  max-width: 75%;
  padding:5px 32px;
}
.formContent input[type=submit], .formContent input[type=reset]{
  padding:15px 0px;
  min-width: 50%;
  max-width: 65%;
}
.formContent input[type=reset]{
  padding:15px 0px;
  min-width: 75%;
  max-width: 75%;
  background-color:#edab56;
}

#forgotBtn{
  color:#edab56;
}

.pb-40px {
  padding-bottom: 40px;
}

.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;
}
.formContent.position-absolute .formFooter{
  //padding-bottom: 55px;
}

.alert {
  font: 14px Arial, sans-serif;
  position: fixed;
  top: 0;
  left: 0;
  background: white;
  border: 1px solid lightgray;
  box-shadow: 3px 3px 12px lightgray;
}
.alert p { margin: 12px; }
.alert .buttons {
  float: right
}
html {
  box-sizing: border-box;
}
*, *:before, *:after {
  box-sizing: inherit;
}
/* TABS */

h2.inactive {
  color: #cccccc;
}

h2.active {
  color: #0d0d0d;
  border-bottom: 2px solid #5fbae9;
}

.btn,
.navbar .navbar-nav > a.btn {
  border: 1px solid transparent;
}

#profileModal input, #profileModal .modal-body button {
  width:100%;
}



/* FORM TYPOGRAPHY*/

input[type=button], input[type=submit], input[type=reset]  {
  background-color: #56baed;
  border: none;
  color: white;
  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(95,186,233,0.4);
  box-shadow: 0 10px 30px 0 rgba(95,186,233,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;
}

input[type=button]:hover, input[type=submit]:hover, input[type=reset]:hover  {
  background-color: #39ace7;
}

input[type=button]:active, input[type=submit]:active, 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);
}
input[type=text]:invalid,input[type=password]:invalid,select:invalid {
  background-color: #f6f6f6;
  color:#888888;
}
input[type=text],input[type=password],select {
  background-color: #ffffff;
  border: none;
  color: #0d0d0d;
  padding: 15px 32px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  margin: 5px;
  min-width: 100%;
  max-width: 100%;
  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;
}

input[type=text]:focus,input[type=password]:focus,select:focus {
  background-color: #fff;
  border-bottom: 2px solid #5fbae9;
}

input[type=text]:placeholder,input[type=password]:placeholder,{
  color: #cccccc;
}
.special-select{
  font-weight: bold;
  text-transform: uppercase;
  color:#ef8157!important;
  border:1px solid #ef8157!important;

}

.form-group > .row{
  width:100%!important;
  margin:0!important;
  margin-bottom:5px!important;
}
.form-group .row:last-child{
  padding-bottom:10px;
}
.form-group {
  border-radius: 4px;
  
}
.dropdown .btn {
  background-color:white;
  border-style: solid;
  color:gray;
}
.dropdown .btn:hover {
  background-color:white!important;
  color:black!important;
  border-color:black;
}
.dropdown .btn.dropdown-toggle:focus{
  background-color:lightblue!important;
}

.dropdown>.dropdown-menu {

  margin-top: -10px;

}

ul.dropdown-menu.inner.show{
  background-color: transparent;
  overflow:scroll;
}

label {
  display:block;
  font-size: 1rem;
  font-weight: bold;
  text-align: center;
}
label.light {
  display:inline-block;
  font-weight:normal;
  text-align: center;
  color:rgb(128,128,128);
}

.bootstrap-select button {
  border:1px solid transparent;
}
.table-primary,
.table-warning,
.table-primary>td,
.table-primary>th,
.table-warning>td,
.table-warning>th {
 background-color:#fff;
}

#digital_clock {
 font-size:1.1rem;
 margin-left: 5px;
 color:gray;
}
.icon-clock {
  font-size:1rem!important;
  color:gray;
}
.navbar .container-fluid.px-30{
  padding-left:30px;
  padding-right:30px;
}

.pl-5p {
  padding-left: 5px;
}

.content-subdiv{
  height:150vh!important;
  -webkit-box-shadow: -15px 0px 14px -12px rgba(0,0,0,0.45);
  -moz-box-shadow: -15px 0px 14px -12px rgba(0,0,0,0.45);
  box-shadow: -15px 0px 14px -12px rgba(0,0,0,0.45);
  transition-property: -webkit-box-shadow,-moz-box-shadow,box-shadow, left;
  transition-duration:0s;
  left:0;
  bottom:0;
}
.content-subdiv.set, .content-subdiv.set1, .content-subdiv.set2{
  background-color: #6bd098!important
}
.content-subdiv.search, .content-subdiv.search1, .content-subdiv.search2{
  background-color: #ef8157!important
}
.content-subdiv.send, .content-subdiv.send1, .content-subdiv.send2{
  background-color: #51bcda!important
}
.content.off{
  -webkit-box-shadow:none;
  -moz-box-shadow:none;
  box-shadow:none;
  left: 100%;
}
.text-warning{
  color:#ef8157!important;
}
textarea {
  border: thick double white!important;
}
.row.card{
  padding:2px!important;
}
.mt-30 {
  margin-top:30px;
}
.t-17{
  top:17.5px;
}
#current_status .card{border:1px solid #6bd098;}
a{
  text-decoration: none!important;
}
.category,
.card-category {
  text-transform: capitalize;
  font-weight: 400;
  color: #9A9A9A;
  font-size: 1.2rem!important; 
  line-height:1.8rem;
  text-align: right;
}
.row>.card-category {
  font-weight: 600;
  color:white;
}

.card-category {
  font-size: 1em; }

  .card-title+ul{
    padding:0;
  }
  /* 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;
  }
  .fadeIn.fifth {
    -webkit-animation-delay: 1.2s;
    -moz-animation-delay: 1.2s;
    animation-delay: 1.2s;
  }

  /* Simple CSS3 Fade-in Animation */
  .underlineHover {
    text-decoration: none;
  }

  .underlineHover:after {
    display: block;
    left: 0;
    bottom: -10px;
    width: 0;
    height: 2px;
    background-color: #56baed;
    content: "";
    transition: width 0.2s;
  }

  .underlineHover:hover {
    text-decoration: none;
    color: #0d0d0d;
  }

  .underlineHover:hover:after{
    width: 100%;
  }

  .backstep {
    color:white;
    font-size:1.9rem;
  }
  .t-0 {
    top:0;
  }


  /* OTHERS */

  *:focus {
    outline: none;
  } 

  #icon {
    width:60%;
  }

  table {
    color:white;
  }
  select{
    //width:100%!important;
    overflow-wrap: break-word; 
    word-break: break-word;
  }
  .bs-title-option{
    display:none;

  }
  table.table-bordered {
    border:none!important;
  }
  table.table-bordered thead {
    border:none!important;
  }
  table.table-bordered tbody tr td:first-child {
    border-left: none!important;
  }
  

  table.table-bordered tbody tr td:last-child {
    border-right: none!important;
  }

  .toRemove td:last-child{
    text-align:end;
  }


  body, html {
    height: 100%;
    width: 100%;
    margin: 0;
  }
  .panel-button{
    min-height: 33.33%;
    box-shadow: inset 0px 0px 5px 0px #000000;
    margin:0;
    width:100%;

  }

  div.title{
    display:table-cell;
    text-align:center;
    color:white;
    font-size: 15vw;
    padding:2px;
    vertical-align: middle;
  }
  
  .bootstrap-select .dropdown-header {
    cursor: pointer;
    font-weight: bold;
    font-size: 1rem
  }
  .bootstrap-select .dropdown-header::after{
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .255em;
    vertical-align: .255em;
    content: "";
    border-top: 0;
    border-right: .3em solid transparent;
    border-bottom: .3em solid;
    border-left: .3em solid transparent;
  }

  .bootstrap-select .dropdown-header.closed::after{

    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .255em;
    vertical-align: .255em;
    content: "";
    border-top: .3em solid;
    border-right: .3em solid transparent;
    border-bottom: 0;
    border-left: .3em solid transparent;
  }
  #search_result1{
    color:black;
  }

  .bootstrap-select .dropdown-menu {
    width:100%;
  }

  .autoModal.modal .modal-body{
    max-height: 100%;
  }
  .modal {
    padding-right: 0px!important
  }
  li {
    list-style-position: inside;
  }

  .statusTitle {
    color:#9A9A9A;
    display: inline-block;
    width:100%;
    text-align: right;
    font-size: 1rem;
  }
  .timeSinceDiv {
    padding-top:1rem;
    text-align: right;
    font-size: 0.8rem;
  }
  #timeSinceIcon {
    color:#6bd098;
  }
  .btn.btn-link,
  .navbar .navbar-nav > a.btn.btn-link {
    color: #66615B; 
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    border:1px solid transparent;
  }
  .btn:hover, .btn:focus, .btn:active, .btn.active, .btn:active:focus, .btn:active:hover, .btn.active:focus, .btn.active:hover,
  .show > .btn.dropdown-toggle,
  .show > .btn.dropdown-toggle:focus,
  .show > .btn.dropdown-toggle:hover,
  .navbar .navbar-nav > a.btn:hover,
  .navbar .navbar-nav > a.btn:focus,
  .navbar .navbar-nav > a.btn:active,
  .navbar .navbar-nav > a.btn.active,
  .navbar .navbar-nav > a.btn:active:focus,
  .navbar .navbar-nav > a.btn:active:hover,
  .navbar .navbar-nav > a.btn.active:focus,
  .navbar .navbar-nav > a.btn.active:hover,
  .show >
  .navbar .navbar-nav > a.btn.dropdown-toggle,
  .show >
  .navbar .navbar-nav > a.btn.dropdown-toggle:focus,
  .show >
  .navbar .navbar-nav > a.btn.dropdown-toggle:hover {
    background-color: transparent !important;
    color: #66615B !important; 
    /*! box-shadow: none !important; */
    border: 1px solid lightgray!important;
    -webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */
    -moz-box-sizing: border-box;    /* Firefox, other Gecko */
    box-sizing: border-box;         /* Opera/IE 8+ */
  }
  @media only screen and (max-width: 991px) {

    .content-subdiv{
      transition-duration: 0.75s!important;
    }

    /* Force table to not be like tables anymore */
    .no-more-tables table, 
    .no-more-tables thead, 
    .no-more-tables tbody, 
    .no-more-tables th, 
    .no-more-tables td, 
    .no-more-tables tr { 
      display: block!important;
    }

    .no-more-tables table{
      padding:0!important;
    }

    /* Hide table headers (but not display: none;, for accessibility) */
    .no-more-tables thead tr { 
      position: absolute!important;
      top: -9999px!important;
      left: -9999px!important;
    }

    .no-more-tables tr { 
      border: none!important;
      border-bottom: 2px solid #ef8157 !important;
    }
    .no-more-tables tr:last-child{
     border-bottom:none!important;
   }

   .no-more-tables td { 
    /* Behave  like a "row" */
    border: none!important;
    border-bottom: 1px solid #eee!important; 
    position: relative!important;
    padding-left: 50%!important; 
    padding-top:0.3rem!important;
    padding-bottom:0.3rem!important;
    white-space: normal!important;
    text-align:right!important;
  }

  .no-more-tables td:before { 
    /* Now like a table header */
    position: absolute;
    /* Top/left values mimic padding */
    //top: 6px!important;
    left: 6px!important;
    width: 45%!important; 
    padding-right: 10px!important; 
    white-space: nowrap!important;
    text-align:left!important;
    font-weight: bold!important;
    font-size:0.8rem;
  }

  /*
  Label the data
  */
  .no-more-tables td:before { content: attr(data-title); }
}

.navbar {
  font-size:2rem;
}
.card-category{
  font-size:1.49rem!important;
}
.navbar-collapse>.navbar-nav{
  border-top:1px solid black;
  font-size: 1.2rem;
  text-align: right;
}
.navbar-collapse>.navbar-nav li {
  padding-top:0.2rem;
  
}
.navbar-collapse>.navbar-nav li:first-child{
  padding-top:0.5rem;
}
.navbar-collapse>.navbar-nav li:last-child{
  padding-bottom:1rem;
}
.border-success{
  border:1px solid #6bd098!important;
}
.border-warning{
  border:1px solid #ef8157!important;
}
.border-info{
  border:1px solid #51bcda!important;
}
.badge-success{
  border-color:#6bd098;
  background-color: #6bd098;
}
.badge-warning{
  border-color:#ef8157;
  background-color: #ef8157;
}
.badge-info{
  border-color:#51bcda;
  background-color: #51bcda;
}
.badge-waiting{
  border-color:#dddb22;
  background-color: #dddb22;
}
.badge-delayed{
  border-color:#be4fcf;
  background-color: #be4fcf;
}

.dropdown-item.active,
.dropdown-item:active {
 color:#66615B;
 text-decoration:none;
 background-color:aliceblue;
}

.bs-placeholder .filter-option-inner-inner {
  color: #ef8157;;
}
.pulsate-fwd {
  -webkit-animation: pulsate-fwd 0.5s ease-in-out infinite both;
  animation: pulsate-fwd 0.5s ease-in-out infinite both;
}

.bootstrap-select {
  font-size:1.1rem;
}

.font-success {
  color: #6bd098;
}

/*--------------------------------
 * ICONS
 *
 *
 * ------------------------------*/
 @charset "UTF-8";

 @font-face {
  font-family: "customiconsfont";
  src:url("../fonts/customiconsfont.eot");
  src:url("../fonts/customiconsfont.eot?#iefix") format("embedded-opentype"),
  url("../fonts/customiconsfont.woff") format("woff"),
  url("../fonts/customiconsfont.ttf") format("truetype"),
  url("../fonts/customiconsfont.svg#customiconsfont") format("svg");
  font-weight: normal;
  font-style: normal;

}

[data-icon]:before {
  font-family: "customiconsfont" !important;
  content: attr(data-icon);
  font-style: normal !important;
  font-weight: normal !important;
  font-variant: normal !important;
  text-transform: none !important;
  speak: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

[class^="icon-"]:before,
[class*=" icon-"]:before {
  font-family: "customiconsfont" !important;
  font-style: normal !important;
  font-weight: normal !important;
  font-variant: normal !important;
  text-transform: none !important;
  speak: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-bars:before {
  content: "\64";
}
.icon-arrow-circle-left:before {
  content: "\61";
}
.icon-paper-plane:before {
  content: "\65";
}
.icon-user-md:before {
  content: "\66";
}
.icon-user:before {
  content: "\67";
}
.icon-tasks:before {
  content: "\68";
}
.icon-search:before {
  content: "\69";
}
.icon-envelope-o:before {
  content: "\6a";
}
.icon-envelope:before {
  content: "\6b";
}
.icon-cog:before {
  content: "\6d";
}
.icon-mail-read:before {
  content: "\6e";
}
.icon-logout:before {
  content: "\6f";
}
.icon-medkit:before {
  content: "\70";
}
.icon-hourglass:before {
  content: "\72";
}
.icon-pencil-square-o:before {
  content: "\73";
}
.icon-bell-o:before {
  content: "\62";
}
.icon-bell-slash-o:before {
  content: "\63";
}
.icon-clipboard-pencil:before {
  content: "\74";
}
.icon-comment-discussion:before {
  content: "\6c";
}
.icon-clock:before {
  content: "\75";
}
.icon-chevron-up:before {
  content: "\71";
}
.icon-chevron-down:before {
  content: "\76";
}
.icon-check-clipboard-1:before {
  content: "\77";
}
.icon-commenting:before {
  content: "\78";
}
.icon-out:before {
  content: "\79";
}
.icon-pie-graph:before {
  content: "\7a";
}
.icon-drug-medecine-streamline-syringue:before {
  content: "\41";
}
.icon-pencil:before {
  content: "\43";
}
.icon-ios-people:before {
  content: "\42";
}
.icon-ios-people-outline:before {
  content: "\44";
}
.icon-chevron-right:before {
  content: "\45";
}
.icon-indent-more:before {
  content: "\46";
}
.icon-briefcase:before {
  content: "\47";
}


/* ----------------------------------------------
 * Generated by Animista on 2021-1-20 14:19:54
 * Licensed under FreeBSD License.
 * See http://animista.net/license for more info. 
 * w: http://animista.net, t: @cssanimista
 * ---------------------------------------------- */

/**
 * ----------------------------------------
 * animation pulsate-fwd
 * ----------------------------------------
 */
 @-webkit-keyframes pulsate-fwd {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes pulsate-fwd {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

</style>