@-webkit-keyframes fadeIn {
    0% {
        opacity: 0
    }
    to {
        opacity: 1
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0
    }
    to {
        opacity: 1
    }
}

@-webkit-keyframes show {
    0% {
        max-height: 0;
        opacity: 0
    }
    to {
        display: block;
        max-height: 500px;
        opacity: 1
    }
}

@keyframes show {
    0% {
        max-height: 0;
        opacity: 0
    }
    to {
        display: block;
        max-height: 500px;
        opacity: 1
    }
}

@-webkit-keyframes hide {
    0% {
        max-height: 500px
    }
    to {
        display: none;
        max-height: 0;
        opacity: 0
    }
}

@keyframes hide {
    0% {
        max-height: 500px
    }
    to {
        display: none;
        max-height: 0;
        opacity: 0
    }
}

@-webkit-keyframes placeHolderLoader {
    0% {
        background-position: 100% 0
    }
    to {
        background-position: -100% 0
    }
}

@keyframes placeHolderLoader {
    0% {
        background-position: 100% 0
    }
    to {
        background-position: -100% 0
    }
}

.app-toast {
    margin: 0;
    border-radius: 0;
    max-width: none;
    border: none;
    font-size: .875rem;
    line-height: 1.2;
    text-align: inherit;
    overflow: hidden
}

.app-toast .toast-content {
    padding: 8px 16px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between
}

.app-toast .toast-content.fixed-height, .app-toast .toast-content.is-loading {
    height: 50px
}

.app-toast .toast-message-wrapper {
    max-height: 100%;
    overflow: hidden
}

.app-toast .toast-message .toast-message-title {
    display: block
}

.app-toast .toast-message .inlineMessage, .app-toast .toast-message .toast-message-title.inlineMessage {
    display: inline
}

.app-toast .toast-message .action-button {
    display: inline;
    background: transparent;
    font-size: inherit;
    padding: 0;
    margin: 0;
    border: none
}

.app-toast .toast-close {
    width: 12px;
    height: 12px;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    -ms-flex-item-align: start;
    align-self: flex-start;
    cursor: pointer
}

.app-toast .toast-close:lang(ben), .app-toast .toast-close:lang(en), .app-toast .toast-close:lang(hin), .app-toast .toast-close:lang(ind), .app-toast .toast-close:lang(mal), .app-toast .toast-close:lang(sin), .app-toast .toast-close:lang(tgl) {
    margin-left: 24px
}

.app-toast .toast-close:lang(ar), .app-toast .toast-close:lang(urd) {
    margin-right: 24px
}

.app-toast .toast-expand {
    background: rgba(0, 0, 0, .2);
    text-align: center;
    height: 16px;
    cursor: pointer
}

.app-toast.toast-information {
    color: #1b1b1b;
    background: #cde3df url(../img/info.svg);
    background-repeat: no-repeat;
    background-position-y: top;
    background-size: 13vh
}

.app-toast.toast-information:lang(ben), .app-toast.toast-information:lang(en), .app-toast.toast-information:lang(hin), .app-toast.toast-information:lang(ind), .app-toast.toast-information:lang(mal), .app-toast.toast-information:lang(sin), .app-toast.toast-information:lang(tgl) {
    background-position: 100%
}

.app-toast.toast-information:lang(ar), .app-toast.toast-information:lang(urd) {
    background-position: 0
}

.app-toast.toast-information .toast-message .action-button {
    cursor: pointer;
    border-bottom: 2px dashed #0a7161;
    font-weight: 700;
    font-size: 1rem
}

.app-toast.toast-success {
    color: #0a7161;
    background: #b8d88f
}

.app-toast.toast-error {
    color: #fff;
    background: #d18686 url(../img/error_cross_light.svg);
    background-repeat: no-repeat;
    background-size: 13vh
}

.app-toast.toast-error:lang(ben), .app-toast.toast-error:lang(en), .app-toast.toast-error:lang(hin), .app-toast.toast-error:lang(ind), .app-toast.toast-error:lang(mal), .app-toast.toast-error:lang(sin), .app-toast.toast-error:lang(tgl) {
    background-position: 100%
}

.app-toast.toast-error:lang(ar), .app-toast.toast-error:lang(urd) {
    background-position: 0
}

.toast-prelogin .app-toast {
    margin: 0
}

.app-toast .toast-message-title {
    font-weight: 400
}