@import url('https://fonts.googleapis.com/css2?family=Noto+Kufi+Arabic:wght@100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap');
.modal-backdrop{
  display: none;
}
html[dir="rtl"] * {

  font-family: "Noto Kufi Arabic", sans-serif;
  font-optical-sizing: auto;
  line-height: 1.4em;

}

html[dir="rtl"] body .zmdi {
  font-family:  'Material-Design-Iconic-Font'  ; 

}

h1,h2,h3,h4,h5{
    font-family: inter;
}
.btn-green,
.btn-grey:hover,
.badge.badge-green,
.custom-control-input:checked ~ .custom-control-label::before,
.btn-green-line:hover
{
background:#00CCBC;
color:#fff !important;
}

.owl-item > div{
    background-color: #fff;
    border-radius: 10px;
}

.owl-item > div > div> a > img{
  
    border-radius: 15px 15px 0px 0px !important;

}
.owl-item > div > div> div{
  
    padding:0px 10px;

}
.show{
  visibility: visible !important
}
/* START INFINIT SCROLL */
@-webkit-keyframes scroll {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(calc(-250px * 7));
    }
  }
  
  @keyframes scroll {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(calc(-250px * 7));
    }
  }
  .slider {
    background: white;
    /*box-shadow: 0 10px 20px -5px rgba(0, 0, 0, 0.125);*/
    height: 120px;
    margin: auto;
    overflow: hidden;
    position: relative;
    width: 100%;
  }
  .slide{
    padding:10px
  }
  .slider::before, .slider::after {
    background: linear-gradient(to right, white 0%, rgba(255, 255, 255, 0) 100%);
    content: "";
    height: 100px;
    position: absolute;
    width: 200px;
    z-index: 2;
  }
  .slider::after {
    right: 0;
    top: 0;
    transform: rotateZ(180deg);
  }
  .slider::before {
    left: 0;
    top: 0;
  }
  .slider .slide-track {
    -webkit-animation: scroll 80s linear infinite;
            animation: scroll 80s linear infinite;
    display: flex;
    width: calc(250px * 14);
  }
  .slider .slide {
    height: 100px;
    width: 250px;
  }
/* END INFINIT SCROLL*/

/* Loader styles */
.loader-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255,1);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 1.5s ease; 
  opacity: 1;
}

.loader {
  border: 10px solid #ffffff;
  border-top: 10px solid #F96E83;
  border-radius: 50%;
  width: 100px;
  height: 100px;
  animation: spin 1s linear infinite;
}
.loader_2 {
  border: 10px solid #ffffff;
  border-top: 10px solid #00CCBC;
  border-radius: 50%;
  width: 120px;
  height: 120px;
  animation: spin 1.2s linear infinite;
}

.loader_3 {
  border: 10px solid #ffffff;
  border-top: 10px solid #FDBB1E;
  border-radius: 50%;
  width: 140px;
  height: 140px;
  animation: spin 1.4s linear infinite;
}


@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}