.trade-popup {
    position: fixed;
    bottom: 12px;
    left: -1000px;
    z-index: 99999999999;

    border-radius: 40px;
    background: linear-gradient(to right, rgba(57,100,208,1) 0%, rgba(45,193,201,1) 100%);
    padding: 16px 52px 16px 16px;

    opacity: 0.4;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.trade-popup.show {
    opacity:1;
    left: 12px;
}

.trade-popup p {
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 4px;
}

.trade-popup .close-icon {
    position: absolute;
    top: 20px;
    right: 24px;
    color: #fff;
    width: 4px;
    opacity: 0.8
}

.trade-popup .close-icon:hover {
    opacity: 1;
}

@media (max-width : 480px) {
    .trade-popup {
        width: calc(100vw - 24px);
        padding: 16px 32px;

        bottom: -400px;
        left: 12px;
    }

    .trade-popup.show {
        bottom: 12px;
    }
}