/**
 * eToro Popup Banner
 */

.etoro-popup-banner {
    max-width: calc(100% - 15px * 2);
    position: fixed;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    overflow: hidden;
    z-index: 999;
}

.etoro-popup-banner .close {
    background: #181D23;
    border-radius: 100%;
    text-align: center;
    width: 20px;
    height: 20px;
    position: absolute;
    top: 4px;
    right: 4px;
    cursor: pointer;
}

.etoro-popup-banner .close .fa {
    color: #fff;
    font-size: 10px;
    position: relative;
    top: -7px;
}



/**
 * Stream
 */

.stream-container {
    display: block;
    line-height: 1;
    
    position: relative;
    width: 100%;
    height: 0;
    padding-top: 56.25%;
}

.stream-container iframe {
    display: block;
    line-height: 1;
    
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}