/* Reset */

.button {
  display: inline-block;
  background-color: #214787;
  width: 150px;
  height: 50px;
  line-height: 50px;
  color: #fff;
  position: relative;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  cursor: pointer;
  overflow: hidden;
  border-radius: 5px;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.3);
  transition: all 0.25s cubic-bezier(0.31, -0.105, 0.43, 1.4);
  margin:5px 10px;
  
}
.btn-wp{
  background-color: #25d366;
}
.pm-btn{
    background-color: #214787;
}
.sd-btn{
    background-color: #f58115;
}
.btn-up{
    width: 250px;
}
.button:hover{
    color:#fff;
}
.button span,
.button .icon {
  display: block;
  height: 100%;
  text-align: center;
  position: absolute;
  top: 0;
}
.button span {
  width: 72%;
  line-height: inherit;
  font-size: 15px;
  left: 0;
  transition: all 0.25s cubic-bezier(0.31, -0.105, 0.43, 1.4);
}
.button span:after {
  content: "";
  background-color: #fff;
  width: 1px;
  height: 70%;
  position: absolute;
  top: 15%;
  right: -1px;
}
.button .icon {
  width: 28%;
  right: 0;
  transition: all 0.25s cubic-bezier(0.31, -0.105, 0.43, 1.4);
}
.button .icon i {
  font-size: 15px;
  /* vertical-align: middle; */
  transition: all 0.25s cubic-bezier(0.31, -0.105, 0.43, 1.4), height 0.25s ease;
}
.button .icon i {
  height: 50px;
}

.button.success span, .button:hover span {
  left: -72%;
  opacity: 0;
}
.button.success .icon, .button:hover .icon {
  width: 100%;
}
.button.success .icon i, .button:hover .icon i {
  font-size: 15px;
}
.button.success {
  background-color: #27ae60;
}
.button.success .icon i {
  display: none;
}

.button:hover {
  opacity: 0.9;
}
.button:hover .icon i {
  height: 50px;
}
.button:active {
  opacity: 1;
}


.custom-btn {
    padding: 15px 30px;
    border: 1px solid white;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
    outline: none;
    border-radius: 3px;
    font-weight: 600;
    font-size: 16px;
  }


.btn-text-white{
    color: white !important;
}

.custom-pm-btn{
    border: 1px solid #214787 !important;
    color: #214787 !important;
}
.custom-pm-btn:hover{
    border-color: #214787 !important;
}
.custom-sd-btn{
    border: 1px solid #f58115 !important;
    color: #f58115 !important;
}
.custom-sd-btn:hover{
    background-color: #f58115 !important;
    color: white  !important;
}