/*digital tv onepager css*/

body#dkt {
    padding-top: 40px;
}

.dkt-top-bar{
    position: fixed;
    height: auto;
    width:100%;
    margin: auto;
    top: 0;
    box-sizing: border-box;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    flex-wrap: wrap;
    row-gap: 10px;
    z-index: 2;
    background-color: white;
}

.dkt-top-bar .logo-list{
    display: flex;
    gap: 5px;
}

.dkt-number{
    height: 40px;
    position: fixed;
    z-index: 2;
    right: 10px;
    top: 10px;
}

.logo-list img, .dkt-top-bar img {
    height: 40px;
}


.skarte path{
    fill: #fff;
    transition: all 0.3s ease-in-out;
}

#skarte path:hover{
    /*
    cursor: pointer;
    fill: #ccc;
    */
    transition: all 0.3s ease;
}

#popup{
    background: white;
    padding: 10px;
    border:1px solid #ccc;
    text-align: center;
}

#popup img{
    height:30px;
    width: 100px;
}


#popup h2{
    margin-bottom: 10px;
    font-size: 1em;
    color: #666;
}

#popup span{
    font-size: 12px;
    color: #666;
}

#skarte .red:hover{
    fill:#e40512;
    cursor:pointer;
}

#skarte .darkred:hover{
    fill:#9d0f05;
    cursor:pointer;
}

#skarte .green:hover{
    fill:#048b04;
    cursor:pointer;
}

#skarte text{
    pointer-events: none;
}


@media (max-width:1200px){
    .dkt-top-bar .logo-list{
        width:100%
    }

    .dkt-number{
        top: 70px;
    }
}


@media (max-width:800px){
    .dkt-top-bar img {
        height: 30px;
    }

    .dkt-top-bar .logo-list{
        display: flex;
        width: 100%;
        gap: 5px;
        justify-content: space-between; 
    }
}

@media (max-width:600px){
    .dkt-top-bar img {
        height: 30px;
    }

    .dkt-top-bar .logo-list{
        display: grid;
        width: 100%;
        gap: 5px;
        grid-template-columns: 1fr 1fr 1fr 1fr;
        justify-content: center;
    }

    .dkt-number{
        top: 95px;
        left: 10px;
        right: unset;
    }
}

@media (max-width:350px){
    .dkt-top-bar img {
        height: 30px;
    }

    .dkt-top-bar .logo-list{
        display: grid;
        width: 100%;
        gap: 5px;
        grid-template-columns: 1fr 1fr 1fr;
        justify-content: center;
    }

    .dkt-number{
        top: 130px;
        height: 30px;
    }


    body#dkt {
        padding-top: 100px;
    }
}



/*mobile list*/
#mobileKantonList {
    display: grid;
    grid-template-columns: 1fr;
    margin-top: 40px;
}

div#mobileKantonList a {
    display: block;
    text-decoration: none;
}

div#mobileKantonList a::after {
    display: block;
    content: "";
    height: 1px;
    width: 100%;
    background: gray;
    opacity: .3;
    margin: 8px 0;
}

#mobileKantonList .green{
    color: #048b04;
}

#mobileKantonList .red{
    color: #e40512;
}

#mobileKantonList .darkred{
    color: #9d0f05;
}

span.kanton-list {
    width: 50%;
    display: inline-block;
}

@media (min-width:800px){
    #mobileKantonList {
        display: none;
    }
}