﻿.error_container
{
    position: fixed;
    background-color: #f0f0f0;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 37;
}

    .error_container .alert
    {
        -webkit-animation: blink 1s infinite;
        -moz-animation: blink 1s infinite;
        -ms-animation: blink 1s infinite;
        animation: blink 1s infinite;
        font-size: 1.4em;
        color: #F5B201;
        padding: 0px;
    }

    .error_container .marquee
    {
        overflow: hidden;
        line-height: 2em;
        padding: 10px 20% 0 20%;
        color: #a50505;
    }

@-webkit-keyframes blink
{
    0%
    {
        opacity: 0.1;
    }

    50%
    {
        opacity: 1;
    }

    100%
    {
        opacity: 0.1;
    }
}

@-moz-keyframes blink
{
    0%
    {
        opacity: 0.1;
    }

    50%
    {
        opacity: 1;
    }

    100%
    {
        opacity: 0.1;
    }
}

@-ms-keyframes blink
{
    0%
    {
        opacity: 0.1;
    }

    50%
    {
        opacity: 1;
    }

    100%
    {
        opacity: 0.1;
    }
}

@keyframes blink
{
    0%
    {
        opacity: 0.1;
    }

    50%
    {
        opacity: 1;
    }

    100%
    {
        opacity: 0.1;
    }
}



.marquee
{
    -webkit-animation: scroll 10s ease infinite;
    -moz-animation: scroll 10s ease infinite;
    -ms-animation: scroll 10s ease infinite;
    animation: scroll 10s ease infinite;
}

@-webkit-keyframes scroll
{
    0%
    {
        -webkit-transform: translateX(100%);
        opacity: 0;
    }

    10%
    {
        -webkit-transform: translateX(0);
        opacity: 1;
    }

    40%
    {
        -webkit-transform: translateX(0%);
    }

    50%
    {
        -webkit-transform: translateX(0%);
    }

    90%
    {
        opacity: 1;
    }

    100%
    {
        opacity: 0;
    }
}

@-moz-keyframes scroll
{
    0%
    {
        -moz-transform: translateX(100%);
        opacity: 0;
    }

    10%
    {
        -moz-transform: translateX(0);
        opacity: 1;
    }

    40%
    {
        -moz-transform: translateX(0%);
    }

    50%
    {
        -moz-transform: translateX(0%);
    }

    90%
    {
        opacity: 1;
    }

    100%
    {
        opacity: 0;
    }
}

@keyframes scroll
{
    0%
    {
        transform: translateX(100%);
        opacity: 0;
    }

    10%
    {
        transform: translateX(0);
        opacity: 1;
    }

    40%
    {
        transform: translateX(0%);
    }

    50%
    {
        transform: translateX(0%);
    }

    90%
    {
        opacity: 1;
    }

    100%
    {
        opacity: 0;
    }
}

.eeeeer {
    max-width:75px;
    height: auto;
    margin: 0 auto;
    padding:45px 0px 0 0;
}




.error_container .logoError
{
    background-image: url('../Images/common/logo.png');
    background-repeat: no-repeat;
    background-position: center center !important;
    max-width: 400px;
    height: 60px;
    margin: 0 auto;
    padding: 15px 0px;
}

.cloud
{
    background-color: #000;
    clear: both;
    padding: 5px;
    max-width: 400px;
    margin: 0 auto;
    border-radius: 5px;
    position: relative;
    color:#666;
}

    .cloud:before
    {
        content: '';
        border: 15px solid transparent;
        position: absolute;
        border-radius: 50%;
        bottom: 55px;
    }

    .cloud a
    {
        border-radius: 2px;
        text-decoration: none;
        background-color: #2aa1cd;
        color: #FFF;
        font-size: 1em;
        cursor: pointer;
        padding: 5px 10px 10px 10px;
        -webkit-transition: all 0.2s ease-out;
        -moz-transition: all 0.2s ease-out;
        -ms-transition: all 0.2s ease-out;
        -o-transition: all 0.2s ease-out;
        transition: all 0.2s ease-out;
    }

        .cloud a:active
        {
            -webkit-transform: translateZ(0) scale(0.9);
            -moz-transform: translateZ(0) scale(0.9);
            -o-transform: translateZ(0) scale(0.9);
            -ms-transform: translateZ(0) scale(0.9);
            transform: translateZ(0) scale(0.9);
        }

        .cloud a:hover
        {
            background-color: #bd1a8d;
        }

.cloud-right
{
    text-align: right;
    font-family: 'Conv_a-jannat-lt';
    margin-bottom: 25px;
    direction: rtl;
}

    .cloud-right:before
    {
        border-left-color: #f0f0f0;
        right: -15px;
        transform: rotate(-135deg);
    }

    .cloud-right a
    {
        float: left;
    }

.cloud-left
{
    text-align: left;
    font-family: 'RobotoRegular';
}

    .cloud-left:before
    {
        border-right-color: #f0f0f0;
        left: -15px;
        transform: rotate(135deg);
    }

    .cloud-left a
    {
        float: right;
        text-transform: uppercase;
    }
