/*Input Your Custom CSS Here*/

.img-logo {
  height: 160px !important;
  width: 160px !important;
  filter: grayscale(100);
  opacity: .6;
  position: relative;
  transform: translateX(-50%);
  left: 50%;  
}

.img-logo:hover {
  filter: grayscale(0);
  opacity: 1;
}

.li-item::before {
  content: '\ef5e';
  font-family: 'IcoFont';
  margin-right: 5px;
}

.hr-underline {
  border-bottom: 2px solid #0f1934;
  margin-bottom: 0.5rem;
}

/* Spinner */
.lds-facebook {
  display: inline-block;
  position: absolute;
  width: 80px;
  height: 80px;
  bottom: 10%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.lds-facebook div {
  display: inline-block;
  position: absolute;
  left: 8px;
  width: 16px;
  background: #da251c;
  animation: lds-facebook 1.2s cubic-bezier(0, 0.5, 0.5, 1) infinite;
}

.lds-facebook div:nth-child(1) {
  left: 8px;
  animation-delay: -0.24s;
}

.lds-facebook div:nth-child(2) {
  left: 32px;
  animation-delay: -0.12s;
}

.lds-facebook div:nth-child(3) {
  left: 56px;
  animation-delay: 0;
}

@keyframes lds-facebook {
  0% {
    top: 8px;
    height: 64px;
  }

  50%,
  100% {
    top: 24px;
    height: 32px;
  }
}

.show-text {
  display: block;
  color: white;
  margin-top: 0.4rem;
}

.notification-text {
  display: none;
}

.icofont-tick-mark {
  color: #da251c;
}

.theme-blue {
  color: #0f1934;
}

.dwn-btn-link {
  font-weight: 400;
  display: inline-block;
  text-align: center;
  text-transform: capitalize;
  font-size: 18px;
  padding: 10px 30px;
  border: 1px solid #da251c;
  color: #fff !important;
  background: #da251c;
  text-decoration: none;
}

.dwn-btn-link:focus,
.dwn-btn-link:hover,
.dwn-btn-link:active{
  color:#fff;
  text-decoration: none;
}

.mtop-3{
  margin-top: 3rem;
}

.more-sec{
  display: flex;
  justify-content: flex-end;
}

.btn-theme{
  background: #0f1934;
  border: 1px solid #0f1934;
  padding:0.7rem 0.9rem;
  color:white;
  font-weight:bold;
  transition: all 0.3s ease-in;
}

.btn-theme:hover{
  background: white;
  border:1px solid #0f1934;
  color:#0f1934; 
}

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

.mt-2{
  margin-top:2rem;
}