/* General button  */

.btn {
    cursor:pointer;
    padding: 16px;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    background-color: #004f8b;
    border: 1px solid #004f8b;
    border-radius: 2px;
    text-align: center;
    transition: all 0.2s;
    display: flex; 
    justify-content: center; 
    align-items: center; 

  }
  
.btn:hover {
  background-color: transparent;
  color: #004f8b;
  border: 1px solid #004f8b;
  transition: all 0.2s;
}

/* Search button */
.btn-search {
    width: 150px;
    background: #4abed3;
    box-shadow: 0 5px 23px 0 rgba(0, 79, 139, 0.13);
    border-radius: 2px;
    font-family: "Source Sans Pro";
    font-size: 22px;
    color: #fff;
    letter-spacing: 0;
    line-height: 26px;
    padding: 16px;
    margin-left: 32px;
    cursor: pointer;
    border: 1px solid #4abed3;
  }
  
  .btn-search:hover,
  .btn-search:active {
    background-color: #fff;
    color: #4abed3;
    border: 1px solid #4abed3;
  }

  .btn.disabled {
    cursor: auto; 
    background: #F0F0F0 !important;
    color: #6B778C!important;
    border: 1px solid transparent !important; 
    
  }

  .btn.disabled:hover {
    background: #F0F0F0 !important;
    color: #6B778C !important;
    
  }

/* Orange button */
.btn.btn-orange {
  background: #FFAE46;
  border: 1px solid #FFAE46;
  color: #fff; 
}

.btn.btn-orange:hover {
  background: transparent;
  border: 1px solid #FFAE46;
  color: #FFAE46; 
}

.btn.btn-orange:hover .btn-text {
  color: #FFAE46; 
}

/* Orange-inverse button */
.btn.btn-orange-inverse {
  background: white;
  border: 1px solid #FFAE46;
}

.btn.btn-orange-inverse .btn-text {
  color: #FFAE46; 
}

/* blue/green button */
.btn.btn-blue-green {
  background: #46BAC2;
  border: 1px solid #46BAC2;
  color: #fff; 
}

.btn.btn-blue-green:hover {
  background: transparent;
  border: 1px solid #46BAC2;
}

.btn.btn-blue-green:hover .btn-text {
  color: #46BAC2; 
}

/* light blue button */
.btn.btn-light-blue {
  background: #01B2EA;;
  border: 1px solid #01B2EA;;
  color: #fff; 
}

.btn.btn-light-blue:hover {
  background: transparent;
  border: 1px solid #01B2EA;;
}

.btn.btn-light-blue:hover .btn-text {
  color: #01B2EA;; 
}

/* btn-revert */
.btn.btn-revert {
  background: #FFFFFF;
  box-shadow: 0px 5px 13px rgba(147, 152, 160, 0.1);
  border-radius: 2px;
  border: 1px solid transparent; 
}

.btn.btn-revert:hover {
  background: initial; 
  border: 1px solid transparent; 
}

.btn.btn-revert .btn-text {
  color: #004F8B;
}

.btn.btn-revert:hover .btn-text {
  color: #004F8B;
}

/* btn back */

.btn-back {
  font-family: "Source Sans Pro";
  font-style: normal;
  font-weight: 600;
  font-size: 20px;
  line-height: 17px;
  text-align: center;
  color: #FFAE46;
  border: 1.5px solid #FFAE46;
  box-shadow: 0px 15px 25px rgba(0, 79, 139, 0.06);
  border-radius: 2px;
  width: 250px;
  height: 60px; 
  display: flex; 
  justify-content: center; 
  align-items:center; 
  margin-right: 24px; 

}