/*-----------------------------------------------------------------------------------------*/
/* ---------------------------- NEED STYLE widget-overlay -------------------------------- */
/*-----------------------------------------------------------------------------------------*/
/* W 740 / H 350 */

@import url('https://fonts.googleapis.com/css2?family=Teko:wght@300;400;500;600;700&display=swap');

body {
    font-family: Teko;
    font-weight: bold;
}

#widget {
    background-color: rgb(0,0,0); /*#f65c00*/
    background-repeat: no-repeat;
    background-position: bottom;
    overflow: hidden;
    /*border-top-right-radius: 20px;
    border-top-left-radius: 20px;*/
    border-radius: 13px;
}

video{
    /*border-bottom: 3px solid #faa06a;*/
    margin-bottom: -8px;
}

#counter {
    position: relative;
    text-transform: initial;
    padding-top: 8px;
}

#counter-data {
    font-size: 85px;
    padding-left: 5px;
    font-weight: 900;
}

#counter-lead {
    font-size: 85px;
    padding-left: 5px;
    font-weight: 900;
    text-transform: uppercase;
}

.logos{
    position: absolute;
    display: flex;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    justify-content: space-between;
    align-items: center;
    padding: 10px 15px;
}

.arrow.left {
    border-left-color: #faa06a;
}

.arrow.right {
    border-right-color: #faa06a;
}

.arrow.up {
    border-width: 17px;
    border-bottom-color: #faa06a;
}

@keyframes counterData {
    0% {
        color: white;
    }
    20% {
        color: #faa06a;
    }
    80% {
        color: #faa06a;
    }
    100% {
        color: white;
    }
}