﻿/* TOAST */
div.toast {
    transition: all linear 0.5s;
    width: 350px;
    margin-left: -175px;
    background-color: #333333;
    color: #ffffff;
    text-align: center;
    font-size: small;
    border-radius: 15px;
    padding: 5px;
    position: fixed;
    z-index: 1;
    left: 50%;
    bottom: 60px;
}

    div.toast.ng-hide {
        margin-left: -150px;
        width: 300px;
        color: transparent;
        background-color: transparent;
    }

    div.toast.ng-hide-add,
    div.toast.ng-hide-remove {
        transition: all linear 0.5s;
    }
/* LOADER */
div.loading {
    border: 16px solid #fbfbbc;
    border-top: 16px solid #f0f000;
    border-radius: 50%;
    width: 100px;
    height: 100px;
    animation: spin 2s linear infinite;
    margin-top: calc(20% - 60px);
    margin-left: calc(50% - 60px);
    position: absolute;
    z-index:999999;
}

@media only screen and (max-width: 600px) {
    div.loading {
        margin-top: calc(50% - 35px);
        margin-left: calc(50% - 35px);
        width: 70px;
        height: 70px;
    }
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@-webkit-keyframes load7 {
    0%, 80%, 100% {
        box-shadow: 0 1em 0 -1em #ffffff;
    }

    40% {
        box-shadow: 0 1em 0 0 #FFF;
    }
}

.glyphicon-compressed {
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
    font-size: 1.2em;
}
