.toast {
    background-color: #030303 !important;
}

.toast-success {
    background-color: #51a351 !important;
}

.toast-error {
    background-color: #bd362f !important;
}

.toast-info {
    background-color: #2f96b4 !important;
}

.toast-warning {
    background-color: #f89406 !important;
}

.toast-message {
    color: white !important;
}

.col-6 {
    width: 50% !important;
}

.col-12 {
    width: 100% !important;
}

.popup {
    display: none;
    position: fixed;
    z-index: 9;
    left: 0;
    top: 60px;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.253);
}

.popup-content {
    position: absolute;
    background-color: #fefefe;
    margin: 6% auto;
    padding: 20px;
    border-radius: 10px;
    width: 450px;
    left: 0;
    right: 0;
    animation: myAnim 2s ease 0s 1 normal forwards;
    box-shadow: #fff 0px 3px 8px;
}

@keyframes myAnim {
    0%,
    100% {
        transform: rotate(0deg);
        transform-origin: 50% 0;
    }

    10% {
        transform: rotate(2deg);
    }

    20%,
    40%,
    60% {
        transform: rotate(-4deg);
    }

    30%,
    50%,
    70% {
        transform: rotate(4deg);
    }

    80% {
        transform: rotate(-2deg);
    }

    90% {
        transform: rotate(2deg);
    }
}

.close {
    color: #aaa;
    float: right;
    font-size: 30px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: rgb(240, 10, 10);
    text-decoration: none;
    cursor: pointer;
}

.popup-btn {
    background-color: #009fda;
}

/* @media screen and (max-width: 600px) {
    .popup-content {
        width: 300px;
    }
} */
.main-menu__info a:hover {
    color: #ffffff !important;
}