﻿@font-face {
    font-family: 'IRANSans_Med';
    src: url(../fonts/IRANSans_Medium.eot) format('eot'), url(../fonts/IRANSans_Medium.woff) format('woff'), url(../fonts/IRANSans_Medium.otf) format('otf'), url(../fonts/IRANSans_Medium.ttf) format('truetype');
}

#snackbar-check {
    direction: rtl;
    visibility: hidden;
    width: 100%;
    min-height: 55px;
    background-color: #34c234;
    color: #ffffff;
    text-align: center;
    padding: 16px;
    position: fixed;
    z-index: 100000000000;
    bottom: 0px;
    font-size: 17px;
    font-family: 'IRANSans_Med';
    
}

    #snackbar-check div {
        display: inline-block;
    }


    .notify-btn {
        margin: 8px 0 ;
    }


.notify-btn a {
    background-color: #9C2C91;
    border: 1px solid #9C2C91;
    border-radius: 5px;
    padding: 5px;
    color: #fff;
}

#snackbar-warning {
    direction: rtl;
    visibility: hidden;
    width: 100%;
    height: 55px;
    background-color: #FFFF33;
    color: #000;
    text-align: center;
    padding: 16px;
    position: fixed;
    z-index: 100000000000;
    bottom: 0px;
    font-size: 17px;
    font-family: 'IRANSans_Med';
}

#snackbar-danger {
    direction: rtl;
    visibility: hidden;
    width: 100%;
    height: 55px;
    background-color: #FF4500;
    color: #ffffff;
    text-align: center;
    padding: 16px;
    position: fixed;
    z-index: 100000000000;
    bottom: 0px;
    font-size: 17px;
    font-family: 'IRANSans_Med';
}

#snackbar-check.show {
    visibility: visible;
    -webkit-animation: fadein 1s;
    animation: fadein 1s;
}

#snackbar-check.hide {
    visibility: visible;
    -webkit-animation: fadeout 1s;
    animation: fadeout 1s;
}

#snackbar-warning.show {
    visibility: visible;
    -webkit-animation: fadein 1s;
    animation: fadein 1s;
}

#snackbar-warning.hide {
    visibility: visible;
    -webkit-animation: fadeout 1s;
    animation: fadeout 1s;
}

#snackbar-danger.show {
    visibility: visible;
    -webkit-animation: fadein 1s;
    animation: fadein 1s;
}

#snackbar-danger.hide {
    visibility: visible;
    -webkit-animation: fadeout 1s;
    animation: fadeout 1s;
}

@-webkit-keyframes fadein {
    from {
        bottom: -150px;
    }

    to {
        bottom: 0px;
    }
}

@keyframes fadein {
    from {
        bottom: -150px;
    }

    to {
        bottom: 0px;
    }
}

@-webkit-keyframes fadeout {
    from {
        bottom: 0px;
    }

    to {
        bottom: -150px;
    }
}

@keyframes fadeout {
    from {
        bottom: 0px;
    }

    to {
        bottom: -150px;
    }
}
