@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: -42px;
}
.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;
    gap: 5px;
}
.progress-loading { 
    width: 100%;
    height: 5px;
    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;
}

@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;
}
*/