.decoration-none {
  text-decoration: none;
}

.decoration-none a:link { text-decoration: none; }
.decoration-none a:visited { text-decoration: none; }
.decoration-none a:hover { text-decoration: none; }
.decoration-none a:active { text-decoration: none; }

.blink {
  animation: blink 1s infinite;
  animation-fill-mode: both;
  }

@keyframes blink {
  0% { opacity: 0 }
  50% { opacity: 1 }
  100% { opacity: 0 }
}

.dot {
  height: 10px;
  width: 10px;
  background-color: #fa5757;
  border-radius: 50%;
  display: inline-block;
  /* position: absolute;
  top: 3px; */
}

@media (min-width: 768px) {
  body, 
  .main_haeder.header-sticky, 
  .em_main_footer 
  .em_body_navigation, 
  .buttons__footer,
  .emPage__detailsCourse .em_footerinner,
  .modal-dialog,
  .em_loading {
    max-width: var(--screen-width) !important;
    margin-left : auto !important; 
    margin-right : auto !important;
  }
  
  .em_loading{
    left: auto !important;
  }

  body{
    background-color: #f1f1f1 !important;
  }

  #content{
    background-color: var(--bg-white);
  }
}