html, body{
  height:100%;
}

.big-icon{
	font-size: 30px;
	margin-bottom: 10px;
}

.table {
  width:100% !important;
}

.message {
  border-radius: 0.2em;
  padding: 0.2em;
  text-align: center;
  font-size: 1.5em;  
  background-color: #eee;
  margin-bottom:1em;
}

.ui-autocomplete {
  width: auto;
  z-index: 9999;
  float: left;
  padding: 5px 0;
  list-style: none;
  background-color: #ffffff;
  border: 1px solid #cccccc;
  -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
  background-clip: padding-box;
}

.ui-autocomplete > li > div {
  padding: 5px 20px;
}

.ui-state-hover,
.ui-state-active,
.ui-state-focus {
  background-color: #f5f5f5;
  cursor: pointer;
}

.main-header.public{
  padding: 10px;
  -webkit-box-shadow: 0px 0px 6px 0px rgba(0,0,0,0.2);
  -moz-box-shadow: 0px 0px 6px 0px rgba(0,0,0,0.2);
  box-shadow: 0px 0px 6px 0px rgba(0,0,0,0.2);
}

.certificate{
    min-height: 260px;
    background-color: rgba(0,0,0,.03);
    padding: 24px;
    position: relative;
    border-bottom: 1px solid #dedede;
}

.certificate .container{
  text-align: center;
  margin: 0 auto;
}

.certificate .container img{
  max-width: 520px;
  height: auto;
}

.certificate-content h2{
  text-align: center;
}

.certificate-content ul{
  display: flex;
  justify-content: center;
}

.request-table{
  max-height: 200px;
  overflow-y: scroll;
}

.border-left{
  border-left: 1px solid #eee;
}

.border-right{
  border-right: 1px solid #eee;
}

.text-center{
  text-align: center;
}

.text-right{
  text-align: right;
}

.h-100{
  height:100%;
}

.selected {
  background-color:#edf2f9;
}

.las {
  font-size:22px !important;
}

.alert-message {
  background-color:#eee;
  border:1px solid #ccc;
}

.dropdown-menu {
  z-index:9999;
}

.nav-item.active {
  background-color:#666 !important;    
  border-radius:5px;
}

.nav-item.active a {
  color:#fff;
}

[class="file-upload"] {
  height: 0;
  overflow: hidden;
  width: 0;
}

[class="file-upload"] + label {
  background: #f15d22;
  border: none;
  border-radius: 5px;
  color: #fff;
  cursor: pointer;
  display: inline-block;
  font-family: "Poppins", sans-serif;
  font-size: inherit;
  font-weight: 600;
  outline: none;
  padding: .25rem .5rem;
  position: relative;
  transition: all 0.3s;
  vertical-align: middle;

  &:hover {
    background-color: darken(#f15d22, 10%);
  }

  &.btn-1 {
    background-color: #f79159;
    box-shadow: 0 6px darken(#f79159, 10%);
    transition: none;

    &:hover {
      box-shadow: 0 4px darken(#f79159, 10%);
      top: 2px;
    }
  }

  &.btn-2 {
    background-color: #99c793;
    border-radius: 50px;
    overflow: hidden;

    &::before {
      color: #fff;
      content: "\f382";
      font-family: "Font Awesome 5 Pro";
      font-size: 100%;
      height: 100%;
      right: 130%;
      line-height: 3.3;
      position: absolute;
      top: 0px;
      transition: all 0.3s;
    }

    &:hover {
      background-color: darken(#99c793, 30%);

      &::before {
        right: 75%;
      }
    }
  }

  &.btn-3 {
    background-color: #ee6d9e;
    border-radius: 0;
    overflow: hidden;

    span {
      display: inline-block;
      height: 100%;
      transition: all 0.3s;
      width: 100%;
    }

    &::before {
      color: #fff;
      content: "\f382";
      font-family: "Font Awesome 5 Pro";
      font-size: 130%;
      height: 100%;
      left: 0;
      line-height: 2.6;
      position: absolute;
      top: -180%;
      transition: all 0.3s;
      width: 100%;
    }

    &:hover {
      background-color: darken(#ee6d9e, 30%);

      span {
        transform: translateY(300%);
      }

      &::before {
        top: 0;
      }
    }
  }
}