@font-face {
    font-family: Vazir;
    src: url('fonts/Vazir-FD.eot');
    src: url('fonts/Vazir-FD.eot?#iefix') format('embedded-opentype'),
    url('fonts/Vazir-FD.woff2') format('woff2'),
    url('fonts/Vazir-FD.woff') format('woff'),
    url('fonts/Vazir-FD.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: Vazir;
    src: url('fonts/Vazir-Black-FD.eot');
    src: url('fonts/Vazir-Black-FD.eot?#iefix') format('embedded-opentype'),
    url('fonts/Vazir-Black-FD.woff2') format('woff2'),
    url('fonts/Vazir-Black-FD.woff') format('woff'),
    url('fonts/Vazir-Black-FD.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
}
@font-face {
    font-family: Vazir;
    src: url('fonts/Vazir-Black-FD.eot');
    src: url('fonts/Vazir-Black-FD.eot?#iefix') format('embedded-opentype'),
    url('fonts/Vazir-Black-FD.woff2') format('woff2'),
    url('fonts/Vazir-Black-FD.woff') format('woff'),
    url('fonts/Vazir-Black-FD.ttf') format('truetype');
    font-weight: 900;
    font-style: normal;
}
@font-face {
    font-family: Vazir;
    src: url('fonts/Vazir-Medium-FD.eot');
    src: url('fonts/Vazir-Medium-FD.eot?#iefix') format('embedded-opentype'),
    url('fonts/Vazir-Medium-FD.woff2') format('woff2'),
    url('fonts/Vazir-Medium-FD.woff') format('woff'),
    url('fonts/Vazir-Medium-FD.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
}
@font-face {
    font-family: Vazir;
    src: url('fonts/Vazir-Light-FD.eot');
    src: url('fonts/Vazir-Light-FD.eot?#iefix') format('embedded-opentype'),
    url('fonts/Vazir-Light-FD.woff2') format('woff2'),
    url('fonts/Vazir-Light-FD.woff') format('woff'),
    url('fonts/Vazir-Light-FD.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
}
@font-face {
    font-family: Vazir;
    src: url('fonts/Vazir-Thin-FD.eot');
    src: url('fonts/Vazir-Thin-FD.eot?#iefix') format('embedded-opentype'),
    url('fonts/Vazir-Thin-FD.woff2') format('woff2'),
    url('fonts/Vazir-Thin-FD.woff') format('woff'),
    url('fonts/Vazir-Thin-FD.ttf') format('truetype');
    font-weight: 100;
    font-style: normal;
}
i.bg_hrb_alert {
    position: fixed;
    display: block;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: #ffffffc2;
    z-index: 10000000;
    transition: all 1s;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}
i.bg_hrb_alert.show {
    opacity: 1;
    visibility: visible;
    pointer-events: auto !important;
}
.hrb_alert {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: transparent;
    z-index: 10000001;
    display: flex;
    justify-content: center;
    align-items: center;
    pointer-events: none;
    transition: all 0.5s ease;
    opacity: 1;
    font-family: Vazir !important;
}
.hrb_alert input,.hrb_alert button,.hrb_alert textarea , .hrb_alert select , .hrb_alert select *{
    font-family: Vazir !important;
}

.content_hrb_alert {
    position: relative;
    width: 100%;
    max-width: 460px;
    background: white;
    padding: 10px;
    border-radius: 8px;
    box-shadow: 0 0 10px -3px #000;
    pointer-events: auto;
    transition: all 0.5s cubic-bezier(1, 0.31, 0, 1.35);
    opacity: 0;
    transform: scale(0);
}
.hrb_alert.show .content_hrb_alert {
    opacity: 1;
    transform: scale(1);
}
.content_hrb_alert h2.title_hrb_alert {
    position: relative;
    display: block;
    margin: 0;
    height: 40px;
    text-align: center;
    color: #717171;
}
.content_hrb_alert p.text_hrb_alert {
    position: relative;
    width: 100%;
    margin: 5px auto;
    text-align: center;
    font-size: 16px;
    color: #9E9E9E;
}
i.icon_hrb_alert {
    position: relative;
    width: 100px;
    height: 100px;
    display: block;
    margin: 10px auto;
    /*background: #ececec;*/
    border-radius: 100%;
}
.btns_hrb_alert {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 50px;
    flex-direction: row-reverse;
}
.btns_hrb_alert .btn_hrb_alert {
    background: #3c6eff;
    border: 2px solid rgba(0, 0, 0, 0.3);
    height: 36px;
    width: auto;
    padding: 0 20px;
    color: #fff;
    border-radius: 5px;
    font-size: 14px;
    cursor: pointer;
    margin: 0 3px;
}

.btns_hrb_alert .btn_hrb_alert:hover {
    background: #3145ff;
}
.btns_hrb_alert .btn_hrb_alert.cancel {
    background: #369a70;
    border: 2px solid rgba(0, 0, 0, 0.3);
}
.btns_hrb_alert .btn_hrb_alert.cancel:hover {
    background: #276e50;
    border: 2px solid rgba(0, 0, 0, 0.3);
}
.content_hrb_alert i.close {
    position: absolute;
    top: 5px;
    left: 5px;
    width: 25px;
    height: 25px;
    color: red;
    font-weight: bold;
    font-size: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}
.hrb_alert_html_content {
    position: relative;
    width: 100%;
    display: block;
}
.hrb_alert_html_content form {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 8px 0;
}
.hrb_alert_html_content form label {
    position: relative;
    width: 100%;
    text-align: center;
    height: 27px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.hrb_alert_html_content form input {
    position: relative;
    width: 100%;
    height: 40px;
    border-radius: 4px;
    border: 2px solid #2196F3;
    padding: 0 10px;
}
button.btn_hrb_alert.del {
    background: #c30000;
    color: #fbff00;
}
button.btn_hrb_alert.del:hover {
    background: #7d0422;
    color: #fbff00;
}

















/*.icon_hrb_alert {*/
/*    background-color: #fff;*/
/*    box-shadow: 0 0 10px 2px rgba(0, 0, 0, 0.2);*/
/*    border-radius: 4px;*/
/*    margin: 20px;*/
/*    padding: 50px;*/
/*}*/

.icon_hrb_alert .f-modal-icon {
    border-radius: 50%;
    border: 4px solid gray;
    box-sizing: content-box;
    height: 80px;
    margin: 20px auto;
    padding: 0;
    position: relative;
    width: 80px;
}
.icon_hrb_alert .f-modal-icon.f-modal-success, .icon_hrb_alert .f-modal-icon.f-modal-error {
    border-color: #A5DC86;
}
.icon_hrb_alert .f-modal-icon.f-modal-success:after, .icon_hrb_alert .f-modal-icon.f-modal-success:before, .icon_hrb_alert .f-modal-icon.f-modal-error:after, .icon_hrb_alert .f-modal-icon.f-modal-error:before {
    background: #fff;
    content: '';
    height: 120px;
    position: absolute;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    width: 60px;
}
.icon_hrb_alert .f-modal-icon.f-modal-success:before, .icon_hrb_alert .f-modal-icon.f-modal-error:before {
    border-radius: 120px 0 0 120px;
    left: -33px;
    top: -7px;
    -webkit-transform-origin: 60px 60px;
    transform-origin: 60px 60px;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}
.icon_hrb_alert .f-modal-icon.f-modal-success:after, .icon_hrb_alert .f-modal-icon.f-modal-error:after {
    border-radius: 0 120px 120px 0;
    left: 30px;
    top: -11px;
    -webkit-transform-origin: 0 60px;
    transform-origin: 0 60px;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}
.icon_hrb_alert .f-modal-icon.f-modal-success .f-modal-placeholder, .icon_hrb_alert .f-modal-icon.f-modal-error .f-modal-placeholder {
    border-radius: 50%;
    border: 4px solid rgba(165, 220, 134, 0.2);
    box-sizing: content-box;
    height: 80px;
    left: -4px;
    position: absolute;
    top: -4px;
    width: 80px;
    z-index: 2;
}
.icon_hrb_alert .f-modal-icon.f-modal-success .f-modal-fix, .icon_hrb_alert .f-modal-icon.f-modal-error .f-modal-fix {
    background-color: #fff;
    height: 90px;
    left: 28px;
    position: absolute;
    top: 8px;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    width: 5px;
    z-index: 1;
}
.icon_hrb_alert .f-modal-icon.f-modal-success .f-modal-line, .icon_hrb_alert .f-modal-icon.f-modal-error .f-modal-line {
    background-color: #A5DC86;
    border-radius: 2px;
    display: block;
    height: 5px;
    position: absolute;
    z-index: 2;
}
.icon_hrb_alert .f-modal-icon.f-modal-success .f-modal-line.f-modal-tip, .icon_hrb_alert .f-modal-icon.f-modal-error .f-modal-line.f-modal-tip {
    left: 14px;
    top: 46px;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    width: 25px;
}
.icon_hrb_alert .f-modal-icon.f-modal-success .f-modal-line.f-modal-long, .icon_hrb_alert .f-modal-icon.f-modal-error .f-modal-line.f-modal-long {
    right: 8px;
    top: 38px;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    width: 47px;
}
.icon_hrb_alert .f-modal-icon.f-modal-error {
    border-color: #F27474;
}
.icon_hrb_alert .f-modal-icon.f-modal-error .f-modal-x-mark {
    display: block;
    position: relative;
    z-index: 2;
}
.icon_hrb_alert .f-modal-icon.f-modal-error .f-modal-placeholder {
    border: 4px solid rgba(200, 0, 0, 0.2);
}
.icon_hrb_alert .f-modal-icon.f-modal-error .f-modal-line {
    background-color: #F27474;
    top: 37px;
    width: 47px;
}
.icon_hrb_alert .f-modal-icon.f-modal-error .f-modal-line.f-modal-left {
    left: 17px;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}
.icon_hrb_alert .f-modal-icon.f-modal-error .f-modal-line.f-modal-right {
    right: 16px;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}
.icon_hrb_alert .f-modal-icon.f-modal-warning {
    border-color: #F8BB86;
}
.icon_hrb_alert .f-modal-icon.f-modal-warning:before {
    -webkit-animation: pulseWarning 2s linear infinite;
    animation: pulseWarning 2s linear infinite;
    background-color: #fff;
    border-radius: 50%;
    content: "";
    display: inline-block;
    height: 100%;
    opacity: 0;
    position: absolute;
    width: 100%;
}
.icon_hrb_alert .info .f-modal-icon.f-modal-warning:before {
    -webkit-animation: pulseinfo 2s linear infinite;
    animation: pulseinfo 2s linear infinite;
    background-color: #fff;
    border-radius: 50%;
    content: "";
    display: inline-block;
    height: 100%;
    opacity: 0;
    position: absolute;
    width: 100%;
}
.icon_hrb_alert .f-modal-icon.f-modal-warning:after {
    background-color: #fff;
    border-radius: 50%;
    content: '';
    display: block;
    height: 100%;
    position: absolute;
    width: 100%;
    z-index: 1;
}
.icon_hrb_alert .f-modal-icon.f-modal-warning .f-modal-body {
    background-color: #F8BB86;
    border-radius: 2px;
    height: 47px;
    left: 50%;
    margin-left: -2px;
    position: absolute;
    top: 10px;
    width: 5px;
    z-index: 2;
}
.icon_hrb_alert .f-modal-icon.f-modal-warning .f-modal-dot {
    background-color: #F8BB86;
    border-radius: 50%;
    bottom: 10px;
    height: 7px;
    left: 50%;
    margin-left: -3px;
    position: absolute;
    width: 7px;
    z-index: 2;
}
.icon_hrb_alert .info .f-modal-icon.f-modal-warning {
    border-color: #50cdff;
}

.icon_hrb_alert  .f-modal-icon.f-modal-warning .f-modal-body {
    background-color: #50cdff;
}

.icon_hrb_alert .info .f-modal-icon.f-modal-warning .f-modal-dot {
    background-color: #50cdff;
}
.icon_hrb_alert .f-modal-icon + .f-modal-icon {
    margin-top: 50px;
}

.animateSuccessTip {
    -webkit-animation: animateSuccessTip .75s;
    animation: animateSuccessTip .75s;
}

.animateSuccessLong {
    -webkit-animation: animateSuccessLong .75s;
    animation: animateSuccessLong .75s;
}

.f-modal-icon.f-modal-success.animate:after {
    -webkit-animation: rotatePlaceholder 4.25s ease-in;
    animation: rotatePlaceholder 4.25s ease-in;
}

.f-modal-icon.f-modal-error.animate:after {
    -webkit-animation: rotatePlaceholder 4.25s ease-in;
    animation: rotatePlaceholder 4.25s ease-in;
}

.animateErrorIcon {
    -webkit-animation: animateErrorIcon .5s;
    animation: animateErrorIcon .5s;
}

.animateXLeft {
    -webkit-animation: animateXLeft .75s;
    animation: animateXLeft .75s;
}

.animateXRight {
    -webkit-animation: animateXRight .75s;
    animation: animateXRight .75s;
}

.scaleWarning {
    -webkit-animation: scaleWarning 0.75s infinite alternate;
    animation: scaleWarning 0.75s infinite alternate;
}

.pulseWarningIns {
    -webkit-animation: pulseWarningIns 0.75s infinite alternate;
    animation: pulseWarningIns 0.75s infinite alternate;
}

@-webkit-keyframes animateSuccessTip {
    0%,54% {
        width: 0;
        left: 1px;
        top: 19px;
    }
    70% {
        width: 50px;
        left: -8px;
        top: 37px;
    }
    84% {
        width: 17px;
        left: 21px;
        top: 48px;
    }
    100% {
        width: 25px;
        left: 14px;
        top: 45px;
    }
}

@keyframes animateSuccessTip {
    0%,54% {
        width: 0;
        left: 1px;
        top: 19px;
    }
    70% {
        width: 50px;
        left: -8px;
        top: 37px;
    }
    84% {
        width: 17px;
        left: 21px;
        top: 48px;
    }
    100% {
        width: 25px;
        left: 14px;
        top: 45px;
    }
}
@-webkit-keyframes animateSuccessLong {
    0%,65% {
        width: 0;
        right: 46px;
        top: 54px;
    }
    84% {
        width: 55px;
        right: 0;
        top: 35px;
    }
    100% {
        width: 47px;
        right: 8px;
        top: 38px;
    }
}
@keyframes animateSuccessLong {
    0%,65% {
        width: 0;
        right: 46px;
        top: 54px;
    }
    84% {
        width: 55px;
        right: 0;
        top: 35px;
    }
    100% {
        width: 47px;
        right: 8px;
        top: 38px;
    }
}
@-webkit-keyframes rotatePlaceholder {
    0%,5% {
        -webkit-transform: rotate(-45deg);
        transform: rotate(-45deg);
    }
    100%,12% {
        -webkit-transform: rotate(-405deg);
        transform: rotate(-405deg);
    }
}
@keyframes rotatePlaceholder {
    0%,5% {
        -webkit-transform: rotate(-45deg);
        transform: rotate(-45deg);
    }
    100%,12% {
        -webkit-transform: rotate(-405deg);
        transform: rotate(-405deg);
    }
}
@-webkit-keyframes animateErrorIcon {
    0% {
        -webkit-transform: rotateX(100deg);
        transform: rotateX(100deg);
        opacity: 0;
    }
    100% {
        -webkit-transform: rotateX(0deg);
        transform: rotateX(0deg);
        opacity: 1;
    }
}
@keyframes animateErrorIcon {
    0% {
        -webkit-transform: rotateX(100deg);
        transform: rotateX(100deg);
        opacity: 0;
    }
    100% {
        -webkit-transform: rotateX(0deg);
        transform: rotateX(0deg);
        opacity: 1;
    }
}
@-webkit-keyframes animateXLeft {
    0%,
    65% {
        left: 82px;
        top: 95px;
        width: 0;
    }
    84% {
        left: 14px;
        top: 33px;
        width: 47px;
    }
    100% {
        left: 17px;
        top: 37px;
        width: 47px;
    }
}
@keyframes animateXLeft {
    0%,
    65% {
        left: 82px;
        top: 95px;
        width: 0;
    }
    84% {
        left: 14px;
        top: 33px;
        width: 47px;
    }
    100% {
        left: 17px;
        top: 37px;
        width: 47px;
    }
}
@-webkit-keyframes animateXRight {
    0%,
    65% {
        right: 82px;
        top: 95px;
        width: 0;
    }
    84% {
        right: 14px;
        top: 33px;
        width: 47px;
    }
    100% {
        right: 16px;
        top: 37px;
        width: 47px;
    }
}
@keyframes animateXRight {
    0%,
    65% {
        right: 82px;
        top: 95px;
        width: 0;
    }
    84% {
        right: 14px;
        top: 33px;
        width: 47px;
    }
    100% {
        right: 16px;
        top: 37px;
        width: 47px;
    }
}
@-webkit-keyframes scaleWarning {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
    30% {
        -webkit-transform: scale(1.02);
        transform: scale(1.02);
    }
    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}
@keyframes scaleWarning {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
    30% {
        -webkit-transform: scale(1.02);
        transform: scale(1.02);
    }
    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}
@-webkit-keyframes pulseWarning {
    0% {
        background-color: #fff;
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 0.5;
    }
    30% {
        background-color: #fff;
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 0.5;
    }
    100% {
        background-color: #F8BB86;
        -webkit-transform: scale(2);
        transform: scale(2);
        opacity: 0;
    }
}
@-webkit-keyframes pulseinfo {
    0% {
        background-color: #fff;
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 0.5;
    }
    30% {
        background-color: #fff;
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 0.5;
    }
    100% {
        background-color: #73b7f8;
        -webkit-transform: scale(2);
        transform: scale(2);
        opacity: 0;
    }
}
@keyframes pulseinfo {
    0% {
        background-color: #fff;
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 0.5;
    }
    30% {
        background-color: #fff;
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 0.5;
    }
    100% {
        background-color: #73b7f8;
        -webkit-transform: scale(2);
        transform: scale(2);
        opacity: 0;
    }
}
@-webkit-keyframes pulseWarningIns {
    0% {
        background-color: #F8D486;
    }
    100% {
        background-color: #F8BB86;
    }
}
@keyframes pulseWarningIns {
    0% {
        background-color: #F8D486;
    }
    100% {
        background-color: #F8BB86;
    }
}
@-webkit-keyframes pulseInfoIns {
    0% {
        background-color: #73b7f8;
    }
    100% {
        background-color: #60adf8;
    }
}
@keyframes pulseInfoIns {
    0% {
        background-color: #73b7f8;
    }
    100% {
        background-color: #60adf8;
    }
}
