/*
Android-Toast
(c) 2013-2014 Jad Joubran
*/

#android_toast_container {
    width: 100%;
    position: fixed;
    bottom: 12%;
    left: 0;
    pointer-events: none;
	z-index:300000;
}

#android_toast {
    width: 80%;
    margin-left: auto;
    margin-right: auto;
    background-color: rgb(48, 52, 55);
    color: rgb(245, 245, 245);
    font-size: 13px;
    padding: 5px;
    border-radius: 2px;
    -webkit-border-radius: 2px;
    opacity: 0.95;
    -webkit-box-shadow: 1px 2px 2px 1px rgba(34, 34, 34, 1);
    box-shadow: 1px 2px 2px 1px rgba(34, 34, 34, 1);
    text-align: center;
    font-family: Roboto, sans-serif;
}

#android_toast.error
    background-color: rgb(162, 0, 0);
    -webkit-box-shadow: 1px 2px 2px 1px rgba(99, 16, 16, 1);
    box-shadow: 1px 2px 2px 1px rgba(99, 16, 16, 1);
}

#android_toast em {
    color: rgb(81, 180, 210);
    font-weight: bold;
    font-style: normal;
}

.android_toast_top {
    top: 12%;
    bottom: auto !important;
}

.android_toast_fadein {
    animation: android_toast_fadein 1s ease;
    -webkit-animation: android_toast_fadein 1s ease;
}

.android_toast_fadeout {
    animation: android_toast_fadeout 1s ease;
    -webkit-animation: android_toast_fadeout 1s ease;
    animation-fill-mode: forwards;
    -webkit-animation-fill-mode: forwards;
}

@keyframes android_toast_fadein {
    from {
        opacity: 0;
        -webkit-opacity: 0;
    }

    to {
        opacity: 0.95;
        -webkit-opacity: 0.95;
    }
}

@-webkit-keyframes android_toast_fadein {
    from {
        opacity: 0;
        -webkit-opacity: 0;
    }

    to {
        opacity: 0.95;
        -webkit-opacity: 0.95;
    }
}

@keyframes android_toast_fadeout {
    from {
        opacity: 0.95;
        -webkit-opacity: 0.95;
    }

    to {
        opacity: 0;
        -webkit-opacity: 0;
    }
}

@-webkit-keyframes android_toast_fadeout {
    from {
        opacity: 0.95;
        -webkit-opacity: 0.95;
    }

    to {
        opacity: 0;
        -webkit-opacity: 0;
    }
}
