.video-carousel-body {
    /*background-color: #f7f7f7;*/
    /*margin-bottom: 4.2vh;*/
    /*margin-top: 4.2vh;*/
}

.video-carousel-container {
    padding-bottom: 12vh;
    padding-top: 4.2vh;
}

#video-carousel-swiper, #video-cuts-carousel-swiper {
    position: relative;
}

#video-cuts-carousel-swiper {
    margin-top: .5rem;
}

.video-button-next,
.video-button-previous {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 28px;
    height: 28px;
    border: solid 1px black;
    border-radius: 4px;
    background-color: rgba(255, 255, 255, .7);
    cursor: pointer;
    z-index: 10;
    transition: all 0.2s linear;

    &:before,
    &:after {
        content: "";
        position: absolute;
        width: 35%;
        height: 10%;
        background: black;
        top: 50%;
        left: 50%;
        transition: all 0.2s linear;
    }

    &:hover {
        background: rgba(255, 255, 255, 1);
    }

    &:active {
        background: rgba(255, 255, 255, 1);
    }
}

.video-button-next.video-cuts-swiper-button-next, .video-button-previous.video-cuts-swiper-button-previous {
    width: 20px;
    height: 20px;
}

.video-button-next {
   right: 10px;
   &:before {
       transform: translate(-50%, -150%) rotate(45deg);
   }
   &:after {
       transform: translate(-50%, 50%) rotate(-45deg);
   }
}

.video-button-previous {
   left: 10px;
   &:before {
       transform: translate(-50%, -150%) rotate(-45deg);
   }
   &:after {
       transform: translate(-50%, 50%) rotate(45deg);
   }
}

.program-item a {
    color: transparent;
}
.program-live-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 10;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.realitatea-video-carousel-title {
    text-align: center;
    margin-bottom: 2vh;
}

.realitatea-video-carousel-title h3 {
    font-size: 13vw;
    font-family: "Leitura Sans Grot 4", sans-serif;
    color: var(--realitatea-gray-text);
    font-weight: bold;
}


.realitatea-video-carousel-hr-line {
    width: calc(100% - 2 * var(--mobile-margin-width));
    margin: 0 var(--mobile-margin-width) 4vh;
    display: flex;
}

.realitatea-video-carousel-hr-line:after {
    background: var(--realitatea-red);
    content: "";
    height: 0.5vh;
    width: 100%;
}

@media only screen and (min-width: 600px) {
    .realitatea-video-carousel-title h3 {
        font-size: 10vw;
    }
}

@media only screen and (min-width: 768px) {
    .realitatea-video-carousel-title h3 {
        font-size: 8vw;
    }
}

@media only screen and (min-width: 992px) {
    .video-carousel-body {
        /*margin-bottom: 4.2vh;*/
    }
    .video-carousel-container {
        margin-left: var(--margin-width);
        margin-right: var(--margin-width);
        padding-top: 5vh;
        padding-bottom: 5vh;
    }
    #video-cuts-carousel-swiper {
        margin-top: 2rem;
    }
    .video-swiper-button-next,
    .video-swiper-button-previous {
        width: 36px;
        height: 36px;
    }
    .video-button-next.video-cuts-swiper-button-next, .video-button-previous.video-cuts-swiper-button-previous {
        width: 28px;
        height: 28px;
    }

    .realitatea-video-carousel-title {
        margin-bottom: 0;
    }

    .realitatea-video-carousel-title h3 {
        font-family: "Leitura Sans Grot 3", sans-serif;
        font-size: 4.2vw;
    }

    .realitatea-video-carousel-hr-line {
        margin-right: 1.5vw;
        width: calc(100% - 1.5vw);
        margin-bottom: 3.3vh;
        margin-left: 0;
    }
}

@media only screen and (min-width: 1336px) {
    .video-carousel-container {
        max-width: 989px;
        margin-left: calc(calc((100vw - 989px) / 2));
        margin-right: calc(calc((100vw - 989px) / 2));
    }
    .realitatea-video-carousel-title h3 {
        font-size: 3.9vw;
    }
}

@media only screen and (min-width: 1920px) {
    .video-carousel-container {
        max-width: 1390px;
        margin-left: calc(calc((100vw - 1390px) / 2));
        margin-right: calc(calc((100vw - 1390px) / 2));
    }
}

@media only screen and (min-width: 3840px) {
    .video-carousel-container {
        max-width: 2780px;
        margin-left: calc(calc((100vw - 2780px) / 2));
        margin-right: calc(calc((100vw - 2780px) / 2));
    }
}