.easySellPro-message {
    top: 20px;
    left: 50%;
    gap: 10px;
    display: flex;
    position: fixed;
    z-index: 9999999;
    pointer-events: none;
    flex-direction: column;
    transform: translateX(-50%);
}

.easy-toast {
    background: #cccccca3;
    color: #333;
    border: 1px solid #242424;
    padding: 10px 30px;
    border-radius: 10px;
    font-size: 16px;
    min-width: 250px;
    max-width: 400px;
    text-align: center;
    margin: 0 auto;
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 0.4s ease, transform 0.4s ease;
    pointer-events: auto;
}

.easy-toast.show {
    opacity: 1;
    transform: translateY(0);
}

.easy-toast.hide {
    opacity: 0;
    transform: translateY(-10px);
}

.easySellPro-loading:before {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 1;
    content: "";
    width: 45px;
    margin: auto;
    height: 45px;
    z-index: 200;
    position: absolute;
    border-radius: 50%;
    text-align: center;
    display: inline-block;
    border: 1px solid #BBB;
    vertical-align: middle;
    border-left-color: #000;
    transition: opacity .2s ease;
    animation: esp-rotate 450ms infinite linear;
}

.easySellPro-loading:after {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 15;
    content: '';
    opacity: 0.5;
    background: #fff;
    position: absolute;
    border-radius: 22px;
}

@keyframes esp-rotate {
    100% {
        transform: rotate(360deg);
    }
}