/* checkbox swich style start */
.ati-switch {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 24px;
}
.ati-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.ati-switch-slider {
  position: absolute;
  cursor: pointer;
  top: 0; left: 0; right: 0; bottom: 0;
  background-color: #ccc;
  transition: 0.4s;
  border-radius: 34px;
}

.ati-switch-slider:before {
  content: "";
  position: absolute;
  height: 20px;
  width: 20px;
  left: 4px;
  bottom: 2px;
  background-color: white;
  transition: 0.4s;
  border-radius: 50%;
}

.ati-switch input:checked + .ati-switch-slider {
  background-color: #4CAF50;
}

.ati-switch input:checked + .ati-switch-slider:before {
  transform: translateX(22px);
}
/* checkbox swich style end */
@keyframes progress-animation {
    0% { width: 0; }
    100% { width: 100%; }
}
/* rtl start 
html[dir="rtl"] .ati-notif-note {
    box-shadow: inset #03A9F4 -30px 0px 0px 0px;
}
*/