* {
    box-sizing: border-box
}

@keyframes slideRight {
    0% {
        transform: translateX(100px)
    }

    100% {
        transform: translateX(0)
    }
}

@keyframes slideLeft {
    0% {
        transform: translateX(-100px)
    }


    100% {
        transform: translateX(0)
    }
}

@keyframes slideDown {
    0% {
        transform: translateY(-100px)
    }

    100% {
        transform: translateY(0)
    }
}

@keyframes slideUp {
    0% {
        transform: translateY(100px)
    }

    100% {
        transform: translateY(0)
    }
}

.toasttopright {
    left: initial;
    right: 20px;
    animation: slideRight .5s
}

.toasttopleft {
    left: 20px;
    animation: slideLeft .5s
}

.toasttopcenter {
    left: 0;
    right: 0;
    text-align: center;
    animation: slideDown .5s
}

.toastbottomcenter {
    left: 0;
    right: 0;
    bottom: 20px;
    top: initial !important;
    text-align: center;
    animation: slideUp .5s
}

.toastbottomleft {
    bottom: 20px;
    top: initial !important;
    animation: slideLeft .5s
}

.toastbottomright {
    right: 20px;
    bottom: 20px;
    top: initial !important;
    animation: slideRight .5s
}

.toastContainer {
    position: fixed;
    top: 20px;
    z-index: 999999
}

.webToast {
    display: inline-block;
    text-align: left;
    padding: 10px 0;
    background-color: #fff;
    border-radius: 4px;
    max-width: 500px;
    top: 0;
    position: relative;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, .2);
    transition: all .5s ease-in;
    z-index: 99999
}

.webToast:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px
}

.toastIcon {
    position: absolute;
    top: 50%;
    left: 15px;
    transform: translateY(-50%);
    width: 30px;
    height: 30px;
    padding: 5px;
    border-radius: 50%;
    display: inline-block;
    font-size: 20px;
    font-weight: 700;
    text-align: center;
    color: #fff;
    padding-top: 1px
}

.toastStatus {
    color: #3e3e3e;
    font-weight: 700;
    margin-top: 0;
    margin-bottom: 2px;
    font-size: 20px
}

.toastMessage {
    font-size: 16px;
    margin-top: 0;
    margin-bottom: 0;
    color: #878787
}

.toastContent {
    padding-left: 60px;
    padding-right: 40px
}

.toast__close {
    position: absolute;
    right: 15px;
    top: 38%;
    width: 14px;
    cursor: pointer;
    height: 14px;
    color: #ada9a9;
    transform: translateY(-50%);
    font-size: 28px
}

.toastSuccess .toastIcon {
    background-color: #2bde3f
}

.toastSuccess:before {
    background-color: #2bde3f
}

.toastInfo .toastIcon {
    background-color: #1d72f3
}

.toastInfo:before {
    background-color: #1d72f3
}

.toastDanger .toastIcon {
    background-color: #ef6658
}

.toastDanger:before {
    background-color: #ef6658
}

.ConfirmConainer {
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    align-items: center
}

.ConfirmConainer .toastConfirm {
    padding: 40px ;
    max-width: 400px;
}

.ConfirmConainer .confirm-description {
    padding: 10px 0;
    margin-bottom: 5px
}

.toastConfirm>.toastContent {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.toastConfirm>.toastContent>i {
    font-size: 80px;
    color: #f8a01a;
    margin-bottom: 30px;
}

.toastConfirm>.toastContent>p {
    font-size: 14px;
    margin-top: 10px;
}

.confirmBG {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, .4);
    z-index: 3;
}

.webToast-loader {
    border-radius: 50%;
    border-top: 3px solid #3498db;
    width: 30px;
    height: 30px;
    -webkit-animation: webToastSpin 1s linear infinite;
    animation: webToastSpin 1s linear infinite;
    margin-left: -6px
}

@-webkit-keyframes webToastSpin {
    0% {
        -webkit-transform: rotate(0)
    }

    100% {
        -webkit-transform: rotate(360deg)
    }
}

@keyframes webToastSpin {
    0% {
        transform: rotate(0)
    }

    100% {
        transform: rotate(360deg)
    }
}

.webToast-line-loader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 99999;
    height: 5px;
    background-color: #1d72f3;
    background-image: linear-gradient(-45deg, rgba(255, 255, 255, .5) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .5) 50%, rgba(255, 255, 255, .5) 75%, transparent 75%, transparent);
    background-size: 30px 30px;
    animation: move 1s linear infinite
}

@keyframes move {
    0% {
        background-position: 0 0
    }

    100% {
        background-position: 30px 30px
    }
}