:root{
    --skinAdsContainer: 980px;
    --skinAdsContainer: 1320px;
    --skinAdsWidth: 150px;
}
.skinad{
    position: fixed;
    z-index: 999;
    top: 100px;
    width: var(--skinAdsWidth);
    display: none;
}
.skinad--left{
    margin-left: calc(-1 * var(--skinAdsContainer) / 2 - var(--skinAdsWidth));
    left: 50%;
}

.skinad--right{
    margin-right: calc(-1 * var(--skinAdsContainer) / 2 - var(--skinAdsWidth));
    right: 50%;
}
.bottomframe{
    position: fixed;
    z-index: 999;
    bottom: 0;
    width: 300px;
    left: 0;
    right: 0;
    margin: 0 auto;
}
.headline-brand{
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 10px;
    margin-top: 15px;
}
.headline-brand p{
    margin-bottom: 12px;
    font-size: 17px;
}
@media (min-width:992px){
    :root{
        --skinAdsContainer: 980px;
        --skinAdsWidth: 180px;
    }
}
@media (min-width:1024px){
    .skinad{
        display: block;
    }
    .bottomframe{
        display: none;
    }
}
@media (min-width:1400px){
    :root{
        --skinAdsContainer: 1320px;
        --skinAdsWidth: 250px;
    }
}
