/*-----------------------------------------------------------------------------------------*/
/* ---------------------------- 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-image: url("../img/widget-sonix-bg.png");
    background-color: rgb(0,0,0); /*#f65c00*/
    height: 350px;
    background-repeat: no-repeat;
    background-position: bottom;
    overflow: hidden;
    border-top-right-radius: 20px;
    border-top-left-radius: 20px;
}

video{
    border-bottom: 3px solid #faa06a;
}

#counter {
    bottom: 0;
    top: 220px;
    text-transform: initial;
}

#counter-data {
    font-size: 90px;
    padding-left: 5px;
    font-weight: 600;
}

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

.logos{
    position: absolute;
    height: calc(140px - 20px);
    width: calc(100% - 20px);
    top: 210px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
}

.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;
    }
}