.trade-popup {
    position: fixed;
    bottom: calc(12px + 64px + 12px);
    left: -1000px;
    z-index: 999;

    border-radius: 4px;
    padding: 16px;
    padding-top: 8px;
    padding-right: 48px;

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

    background-color: #7B68EE;;
}

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

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

.trade-popup .close-icon {
    position: absolute;
    top: 10px;
    right: 20px;
    color: #cecece;
    width: 4px;
}

.trade-popup .close-icon:hover {
    color: #fff;
}

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

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

    .trade-popup.show {
        bottom: calc(12px + 64px + 12px);
    }
}