@font-face {
    font-family: 'iransansxv';
    font-weight: 100 1000;
    font-display:swap;
    src: url('../fonts/IRANSansXV.woff') format('woff-variations'),
    /* will be the standard and works in Safari now */
    url('../fonts/IRANSansXV.woff2') format('woff');
}
/* avoid to auto zoom in responsive devices */
@media screen and (-webkit-min-device-pixel-ratio:0) { 
  select,
  textarea,
  input {
    font-size: 16px;
  }
}

.ati-admin-header *:not(i):not(.dashicons),
.ati-admin-wrapper *:not(i):not(.dashicons) {
    font-family: 'iransansxv', 'iransansx', 'tahoma';    
    -moz-font-feature-settings: "ss04";
    -webkit-font-feature-settings: "ss04";
    font-feature-settings: "ss04";
}
.ati-notif {
    display: flex;
    flex-direction: column;
    z-index: 9999999999;
    width: 100%;
}
.ati-admin-wrapper .ati-notif{
    position: absolute;
    top: -51px;
}

.ati-notif-note,
.ati-notif-success,
.ati-notif-error {
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    width: -webkit-fill-available;
    white-space: normal;
    align-items: center;
    gap: 10px;
    padding: 10px;
    margin: 1px 0;
    min-height: 40px;
}
.ati-admin-wrapper .ati-notif-note,
.ati-admin-wrapper .ati-notif-success,
.ati-admin-wrapper .ati-notif-error{
    background-color: #00000050;
}
.ati-notif-success {
    color: #4CAF50;
}
.ati-notif-error {
    color: #ec407a;
}
.ati-notif-icon-text{
    display: flex;
    width: 100%;
    gap: 5px;
    align-items: center;
}
.progress-loading { 
    width: 100%;
    height: 2px;
    background-color: #f3f3f3;
    position: relative;
    overflow: hidden;
}

.progress-loading::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 0;
    background-color: #0073aa;
    animation: progress-animation 6s linear forwards;
}

/* 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-slider {
  position: absolute;
  cursor: pointer;
  top: 0; left: 0; right: 0; bottom: 0;
  background-color: #ccc;
  transition: 0.4s;
  border-radius: 34px;
}

.ati-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-slider {
  background-color: #4CAF50;
}

.ati-switch input:checked + .ati-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;
}
*/