
/*!
 * @license Copyright (c) 2015-2021 Radiant Media Player
 * rmp-detachable-player | https://github.com/radiantmediaplayer/rmp-detachable-player
 */

/* attach-container - this serves as an anchor for original player location */

.parcle-control-bar {
    height: 35px;
    background: #f5f5f5;
    text-align: left;
}

.parcle-noshow {
    display:none;
}

.parcle-upper-bar {
    height: 35px;
    background: #f5f5f5;

}


.parcle-control-bar .progress__bar {
    height: 3px;
    width: 0px;
    background-color: #666666;
    position: absolute;
}

.parcle-btn {

    border-radius: 3px;
    border: 0px !important;
    box-sizing: border-box;
    color: #666666;
    cursor: pointer;
    display: inline-block;
    font-family: -apple-system,system-ui,"Segoe UI","Liberation Sans",sans-serif;
    font-size: 12px;
    font-weight: 400;
    margin: 6px 2px;
    outline: none;
    position: relative;
    text-align: center;
    text-decoration: none;
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
    vertical-align: baseline;
    white-space: nowrap;
}

.avanti-btn {

    border: 1px solid #666666 !important;
    box-sizing: border-box;
    color: #666666;
    cursor: pointer;
    display: inline-block;
    font-family: -apple-system,system-ui,"Segoe UI","Liberation Sans",sans-serif;
    font-size: 13px;
    font-weight: 400;
    margin: 8px;
    outline: none;
    /* position: relative; */
    text-align: center;
    text-decoration: none;
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
    vertical-align: top;
    white-space: nowrap;
    padding: 2px;
}

.onair {

    border-radius: 3px;
    box-sizing: border-box;
    color: #FFFFFF;
    background: red;
    cursor: pointer;
    display: inline-block;
    font-family: -apple-system,system-ui,"Segoe UI","Liberation Sans",sans-serif;
    font-size: 10px;
    font-weight: 400;
    margin-left: 8px;
    outline: none;
    /* position: relative; */
    text-align: center;
    text-decoration: none;
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
    vertical-align: top;
    white-space: nowrap;
    padding: 3px;
}


.parcle-btn-close {
    float: right;
    border-radius: 3px;
    border: 0px !important;
    box-sizing: border-box;
    color: #666666;
    cursor: pointer;
    display: inline-block;
    font-family: -apple-system,system-ui,"Segoe UI","Liberation Sans",sans-serif;
    font-size: 12px;
    font-weight: 400;
    margin: 6px 6px;
    outline: none;
    position: relative;
    text-align: center;
    text-decoration: none;
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
    vertical-align: baseline;
    white-space: nowrap;
}

.parcle-btn div {
    display: flex;
}

.parcle-logo {
    float: left !important;
    margin: 10px 5px 0px 0px !important;
    display: inline;
}

@keyframes fill-bar {
    from {width: 0%;}
    to {width: 100%;}
}

#parcle-attach-container {
    height: 180px;
    /*background: #f5f5f5;*/
    margin-bottom: 115px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

@media (min-width: 500px) {
    #parcle-attach-container {
        width: 480px;
        height: 270px;
    }

}


@media (min-width: 768px) {
    #parcle-attach-container {
        width: 640px;
        height: 360px;
    }
}

@media (min-width: 992px) {
    #parcle-attach-container {
        width: 100%;
        height: 360px;
        margin-bottom: 160px;
    }
}

/* detach-container */
#parcle-detach-container {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    border-left: 15px solid #f5f5f5;
    border-right: 15px solid #f5f5f5;
}

/* detach-container - when player is in attached mode */
#parcle-detach-container.rmp-attach {
    width: 100%;
    height: 100%;
}

/* detach-container - when player is in detached mode */
#parcle-detach-container.rmp-detach {
    width: 100%;
    position: fixed;
    bottom: 0px;
    right: 0px;
    z-index: 9999999;
    /*border: 10px solid #f5f5f5;*/
    background: #f5f5f5;
}

@media (min-width: 768px) {
    #parcle-detach-container.rmp-detach {
        width: 484px;
        bottom: 30px;
        right: 16px;
    }
}