/* Add this to your external CSS file */

#jims-trade-popup-container {
    font-family: Helvetica, sans-serif;
    font-size: 16px;f
}
#jims-trade-popup-container * {
    box-sizing: border-box;
}
#jims-trade-popup-container.large {
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100vh;
    background-color: rgba(0,0,0,.3);
    z-index: 99999;

    display: none;
}

#jims-trade-popup-container.small {
    position: fixed;
    bottom: 0px;
    right: 0px;
    width: 380px;
    height: 250px;
    background-color: transparent;
    z-index: 9999;

    display: none;
}

#jims-trade-popup-container.large #jims-trade-popup {
    position: absolute;
    top: calc(50% - 200px);
    right: calc(50% - 170px);
    width: 340px;
    height: auto;
    padding: 20px 20px 20px 20px;
    background-color: #fff;
    box-shadow: 0px 0px 20px rgba(0,0,0,0.2);
    border-radius: 10px;
    display: inline-block;
}


#jims-trade-popup-container.small #jims-trade-popup {
    position: absolute;
    left: 0;
    top: 0;
    width: 360px;
    height: auto;
    padding: 15px;
    background-color: #fff;
    box-shadow: 0px 0px 20px rgba(0,0,0,0.2);
    border-radius: 10px;
    display: inline-block;
}

#jims-trade-popup-container.visible {
    display: inline-block;
}

#jims-trade-popup img {
    margin-left: 0px;
    width: 60px;
}


.small #jims-trade-popup img {
    margin-left: 0px;
    width: 40px;
}

#jims-trade-popup p {
    color: #333;
    margin: 10px 0px 40px 0px;
    font-size: 1.2em;
    line-height: 1.8em;
}

#jims-trade-popup p span {
    font-size: .8em;
    font-weight: 300;
}

.small #jims-trade-popup p {
    color: #333;
    margin: 10px 0px 20px 0px;
    font-size: 1em;
    line-height: 1.6em;

}

.small #jims-trade-popup p br{
    display: none; 
}
.small #jims-trade-popup p br:last-child{
    display: inherit; 
}

#jims-trade-popup p strong {
    font-size: 1.2em;
    line-height: 1.4;
    color: var(--jims-trade-color);
}


.small #jims-trade-popup p strong {
    font-size: 1em;
    line-height: 1.6em;
    color: var(--jims-trade-color);
}

#jims-trade-popup button#close {
    position: absolute;
    top: 0;
    right: 0;
    padding: 10px 15px;
    font-size: 32px;
    font-weight: bold;
    background-color: transparent;
    border: none;
    cursor: pointer;
    color: #111 !important;
}

#jims-trade-popup a {
    display: block;
    padding: 12px 20px;
    background-color: var(--jims-trade-color);
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    border-radius: 5px;
}  

#jims-trade-popup a:hover {
    background-color: var(--jims-trade-color);
}

/*OVERRIDE HIDE*/
#jims-trade-popup-container {
    display: none !important;
}
#jims-trade-popup {
    display: none !important;
}
