/**********************************************************
/* SUPERSTEREO UI */
/******************************************************* */
.section-one-plus-three{
    padding: 25px 0;
}

.section-one-plus-three .post-card__heading-link{
    color: #FFF !important;
}

.layout-title, .layout-title a, .layout-title__link, section-one-plus-three--dark-bg{
    font-weight: 900 !important;
    font-size: 30px;
    color: var(--accent-color);
}

/**********************************************************
/* SUPERSTEREO ADS */
/******************************************************* */

/* Leaderboard Ad */
.leaderboard-up-ad{
    max-width: fit-content;
    margin-top: 25px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 14px;
    padding-right: 14px;
}

.leaderboard-down-ad{
    max-width: fit-content;
    /* margin-top: 25px; */
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 26px;
    padding-left: 14px;
    padding-right: 14px;
}

.section-big-slider{
    padding-bottom: 28px !important;
}

.promos-ad{
    max-width: fit-content;
    /* margin-top: 25px; */
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 25px;
    padding-left: 14px;
    padding-right: 14px;
}

/* Sidebar Ads*/
@media (width >= 501px){
    .sidebar-ads {
        margin-right: 56px;
    }
}

@media (width <= 500){;
    .sidebar-ads {
        margin-right: 0;
    }
}

.post-banner-up{
    margin-bottom: 40px;
}

.post-banner-down{
    margin-top: 30px;
}

/**********************************************************
/* SUPERSTEREO PLAYER BUTTON */
/******************************************************* */

#floating-button {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    /* background: rgb(0, 144, 255); */
    background: #db4437;
    position: fixed;
    bottom: 30px;
    right: 30px;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(219, 68, 55, 1);
    z-index: 99;
    -webkit-animation: glowing 1500ms infinite;
    -moz-animation: glowing 1500ms infinite;
    -o-animation: glowing 1500ms infinite;
    animation: glowing 1500ms infinite;
}

.plus {
    color: white;
    position: absolute;
    top: 0;
    display: block;
    bottom: 0;
    left: 0;
    right: 0;
    text-align: center;
    padding: 0;
    margin: 0;
    line-height: 55px;
    font-size: 38px;
    font-family: "Roboto";
    font-weight: 300;
    animation: plus-out 0.3s;
    transition: all 0.3s;
}

#container-floating {
    position: fixed;
    width: 70px;
    height: 70px;
    bottom: 30px;
    right: 30px;
    z-index: 99;
}

#container-floating:hover {
    height: 400px;
    width: 90px;
    padding: 30px;
}

#container-floating:hover .plus {
    animation: plus-in 0.15s linear;
    animation-fill-mode: forwards;
}

.edit {
    position: absolute;
    top: 0;
    display: block;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 0;
    opacity: 0;
    margin: auto;
    line-height: 65px;
    transform: rotateZ(-70deg);
    transition: all 0.3s;
    animation: edit-out 0.3s;
}

#container-floating:hover .edit {
    animation: edit-in 0.2s;
    animation-delay: 0.1s;
    animation-fill-mode: forwards;
}

/* Button Animation */
@keyframes edit-in {
    from {
        opacity: 0;
        transform: rotateZ(-70deg);
    }
    to {
        opacity: 1;
        transform: rotateZ(0deg);
    }
}
@keyframes edit-out {
    from {
        opacity: 1;
        transform: rotateZ(0deg);
    }
    to {
        opacity: 0;
        transform: rotateZ(-70deg);
    }
}
@keyframes plus-in {
    from {
        opacity: 1;
        transform: rotateZ(0deg);
    }
    to {
        opacity: 0;
        transform: rotateZ(180deg);
    }
}
@keyframes plus-out {
    from {
        opacity: 0;
        transform: rotateZ(180deg);
    }
    to {
        opacity: 1;
        transform: rotateZ(0deg);
    }
}

/* Flashing */
@-webkit-keyframes glowing {
    0% { background-color: #B20000; -webkit-box-shadow: 0 0 3px #B20000; }
    50% { background-color: #FF0000; -webkit-box-shadow: 0 0 20px #FF0000; }
    100% { background-color: #B20000; -webkit-box-shadow: 0 0 3px #B20000; }
}

@-moz-keyframes glowing {
    0% { background-color: #B20000; -moz-box-shadow: 0 0 3px #B20000; }
    50% { background-color: #FF0000; -moz-box-shadow: 0 0 20px #FF0000; }
    100% { background-color: #B20000; -moz-box-shadow: 0 0 3px #B20000; }
}

@-o-keyframes glowing {
    0% { background-color: #B20000; box-shadow: 0 0 3px #B20000; }
    50% { background-color: #FF0000; box-shadow: 0 0 20px #FF0000; }
    100% { background-color: #B20000; box-shadow: 0 0 3px #B20000; }
}

@keyframes glowing {
    0% { background-color: #B20000; box-shadow: 0 0 3px #B20000; }
    50% { background-color: #FF0000; box-shadow: 0 0 20px #FF0000; }
    100% { background-color: #B20000; box-shadow: 0 0 3px #B20000; }
}