@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Ga+Maamli&family=Lobster&display=swap');
.video-background {
    position: absolute; /* Ensures the video stays in place behind other content */
    top: 0;             /* Aligns the video to the top of the container */
    left: 0;            /* Aligns the video to the left of the container */
    width: 100%;        /* Ensures the video covers the full width of the container */
    height: 100%;       /* Ensures the video covers the full height of the container */
    object-fit: cover;  /* Scales the video to maintain aspect ratio and cover the container */
    z-index: -1;        /* Places the video behind other elements */
    overflow: hidden;   /* Prevents overflow in case the video exceeds the container size */
    background-color: #4158D0;
    background-image: linear-gradient(43deg, #4158D0 0%, #C850C0 46%, #FFCC70 100%); /* Fallback color for unsupported browsers */
}

/* Full-width container for the gallery */
.animated-gallery-container {
    width: 100%;
    height: 100vh; /* Full viewport height */
}
.gallery-item {
    display: flex; /* Optional vertical alignment */
    height: 90vh;
    overflow-y: hidden;
    position: relative;
    
}

/* Style for "Read More" link */
.gallery-item a {
    display: inline-block;
    margin-top: 15px;
    padding: 10px 20px;
    color: #fff;
    background-color: #007acc; /* Button color */
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
    font-size: 1em;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Subtle shadow for depth */
    
}

.gallery-item a:hover {
    background-color: #005f9e; /* Darker shade on hover */
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.25); /* Deeper shadow on hover */
    transform: translateY(-2px); /* Slight lift effect */
    color: #e0f0ff; /* Lighter text color on hover */
}
/* Individual gallery item */
.gallery-item {
    flex: 0 0 100%; /* Each item takes full width */
    text-align: center;
    padding: 20px;  
}

/* Animated gallery styling */
.animated-gallery {
    position: relative;
    width: 100%;
    max-width: 800px; /* Maximum width of the gallery content */
    margin: auto;
    overflow: hidden;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2); /* Adds a shadow effect */
    height: 80vh;
    z-index: 10;
}

/* Arrows for navigation */
.animated-arrow {
    width: 50px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(219, 26, 84, 0.5);
    color: white;
    border: solid;
    border-radius: 50px;
    border-color: #ff00aa;
    padding: 10px;
    cursor: pointer;
    font-size: 24px;
    z-index: 11;
    transition: background-color 0.3s;
}

.animated-left-arrow {
    left: 10px;
}

.animated-right-arrow {
    right: 10px;
}

.animated-arrow:hover {
    background-color: rgba(0, 0, 0, 0.7);
}

/* Gallery window */
.animated-gallery-window {
    width: 100%;
    overflow: hidden; /* Hides overflowing content */
}

/* Track for sliding items */
.animated-gallery-track {
    display: flex;
    transition: transform 1s ease-in-out;
    width: 100%;
    height: 100vh;
    overflow: visible;
}


/* Pagination dots 
.animated-pagination-dots {
    text-align: center;
    margin-top: 15px;
    position: relative;
    z-index: 11;
}

.animated-pagination-dot {
    height: 10px;
    width: 10px;
    margin: 0 5px;
    background-color: #ccc;
    border-radius: 50%;
    display: inline-block;
    cursor: pointer;
    position: relative;
    z-index: 11;
}

.animated-pagination-dot.active {
    background-color: #333
}
*/
/*Experiment success: dynamically added unique classes to each element in the gallery*/
/*Now we can access each element to modify their look*/

/*Container of element 1 of the gallery*/
.gallery-item-1{
    position: relative;
    z-index: 10;
    justify-content: space-between;
    display: flex;
}
/* image of gallery item 1*/
.gallery-item-1 .content-wrapper img{
    height: 30%;
}
/*container of first item i children: img, h3, p, a gallery*/
/*Radio UK heart*/
.content-wrapper{
    position: relative;
    z-index: 10;
    width: auto;
    height: 250px;
}
/* Affects all gallery items*/
/* image of gallery item 1*/
.gallery-item .content-wrapper img{
    height: 30%;
    display: flex;
    align-self: center;
    border-radius: 50px;
}
.mytuner-widget{
    display: flex;
    align-self: baseline;
    all: initial;
    display: block;
    color: #3D3D3D;
}
.main-play-button {
    padding: 5px;
    border-radius: 20px;
    width: 80px;
    height: 80px;
    margin-left: 10px;
    margin-right: 15px;
    margin-top: 12.5px;
    cursor: pointer;
    background-image: linear-gradient(120deg, #d4fc79 0%, #96e6a1 100%);
    box-shadow: 1px 2px 6px -3px black;
    display: inline-block;

    /* Flexbox alternative to float */
    align-self: flex-start;
}

.main-play-button:hover {
    background-color: #EEE;
}
.main-play-button.disabled {
    filter: grayscale(1);
    cursor: not-allowed;
}
.main-play-button div {
    background: url("https://mytuner-radio.com/static/icons/widgets/BT_Play/BT_Play@2x.png") no-repeat center;
    background-size: 16px;
    width: 70px;
    height: 70px;
    margin-left: 3px;
}
.main-play-button.loading div {
    background: url("https://static2.mytuner.mobi/static/images/sprite-loading.gif") no-repeat center;
    filter: grayscale(1);
    background-size: 28px;
    margin-left: 2px;
}
.main-play-button.playing div {
    background: url("https://mytuner-radio.com/static/icons/widgets/BT_Pause/BT_Pause@2x.png") no-repeat center;
    background-size: 16px;
    margin-left: 2px;
}
.main-play-button.error div {
    background: url("https://mytuner-radio.com/static/icons/widgets/BT_Error/erro@2x.png") no-repeat center;
    background-size: 16px;
    margin-left: 0;
}
.play-button {
    background: url("https://mytuner-radio.com/static/icons/widgets/BT_Play/BT_Play.png") no-repeat center;
    width: 40px;
    height: 40px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    margin: auto 4px auto 19px;
}
.play-button.loading {
    background: url("https://static2.mytuner.mobi/static/images/sprite-loading.gif") no-repeat center;
    filter: grayscale(1);
    background-size: 28px;
}
.play-button.playing {
    background: url("https://mytuner-radio.com/static/icons/widgets/BT_Pause/BT_Pause.png") no-repeat center;
}
.play-button.error {
    background: url("https://mytuner-radio.com/static/icons/widgets/BT_Error/erro.png") no-repeat center;
    background-size: 15px;
}
.play-button.disabled {
    opacity: 0.3;
}
.play-button.disabled:hover {
    cursor: not-allowed;
}
input[type=range][orient=vertical] {
    writing-mode: bt-lr;
   
    width: 8px;
    padding: 0 5px;
}
.volume-controls {
    left: 0px;
    width: 35px;
    height: 35px;
    display: inline-block;
    position: relative;
    margin-left: 5px;
    margin-top: 14px;
    padding-top: 0;
    border-radius: 20px;
    box-sizing: content-box !important;
    z-index: 10;
    border: 1px solid transparent;
    overflow: hidden;
}
.volume-controls:hover {
    padding-top: 140px;
    margin-top: -126px;
    background-color: #F2F2F2;
    border: 1px solid grey;
}
.volume-controls:hover > .volume-control {
    display: block;
}
.volume-controls .volume-control {
    opacity: 0;
    margin-top: -126px;
    margin-left: 13px;
    position: absolute;
    transition: 0.5s all;
}
.volume-controls:hover .volume-control {
    opacity: 1;
}
.volume-controls .volume-indicator {
    cursor: pointer;
    display: block;
    background-color: white;

}
[id="w4huw593wr5Zw5PDksOdw7o9wqFow4PCo8K0V8OJw7DDm1A=top-bar"] {
    height: 650px;
    width: 100%;
    display: block;
    padding-top: 0px;
    line-height: 65px;
    text-decoration: none;
    background-color: #FFFFFF;
    background-image: linear-gradient(180deg, #FFFFFF 0%, #6284FF 50%, #FF0000 100%);
    border-radius: 30px;
    overflow-y: hidden;
}
.volume-indicator {
    fill: grey;
    margin: 2px;
}
/*Style for El Nuevo Zol radio*/

.player-mytuner-logo{
    position: relative;
    left: 150px;
    overflow-x: hidden;
}
.player-radio-name{
    position: relative;
    bottom: -100px;
    left: 50px;
}

/*Container of element 2 of the gallery*/

/* style for radio heart*/

/*Radio UK heart*/
.gallery-item-1-div-1{
    position: relative;
    flex: 1; /*takes 1 of 2 spaces*/
    z-index: 10;
    padding: 20px;
    align-self: baseline;
    border: solid;
    border-color: #ee1f04;
    border-width: 5px;
}
.gallery-item-2{
    position: relative;
    z-index: 10;
    justify-content: space-between;
    display: flex;
}
.gallery-item-1-div-2, .gallery-item-1-div-1{
    position: relative;
    flex: 1; /*takes 1 of 2 spaces*/
    z-index: 10;
    padding: 20px;
    align-self: baseline;
    border: solid;
    border-color: #ee1f04;
    border-width: 5px;
}

.gallery-item-2 .content-wrapper h3{
    height: 50%;
    display: flex;
    align-self: center;
    font-family: "Ga Maamli", sans-serif;
    font-weight: 400;
    font-style: normal;
    color: #da0e0ec7;
    text-shadow: 2px 2px 0 #000000, -2px -2px 0 #28b9c4;
}

#Z8KuwqMrYVjDoUzCulzDg8OQw5XCoT1pwrPDn8OMesK0 {
    height: 600px;
    width: 100%;
    display: block;
    padding-top: 0px;
    line-height: 65px;
    text-decoration: none;
    background-color: #FFFFFF;
    background-image: linear-gradient(180deg, #FFFFFF 0%, #6284FF 50%, #FF0000 100%);
    border-radius: 30px;
    overflow-y: visible;
}


.main-play-button div {
    background: url("https://mytuner-radio.com/static/icons/widgets/BT_Play/BT_Play@2x.png") no-repeat center;
    background-size: 16px;
    width: 28px;
    height: 28px;
    margin-left: 3px;
}

.main-play-button.loading div {
    background: url("https://static2.mytuner.mobi/static/images/sprite-loading.gif") no-repeat center;
    filter: grayscale(1);
    background-size: 28px;
    margin-left: 2px;
}

.main-play-button.playing div {
    background: url("https://mytuner-radio.com/static/icons/widgets/BT_Pause/BT_Pause@2x.png") no-repeat center;
    background-size: 16px;
    margin-left: 2px;
}

.main-play-button.error div {
    background: url("https://mytuner-radio.com/static/icons/widgets/BT_Error/erro@2x.png") no-repeat center;
    background-size: 16px;
    margin-left: 0;
}

.play-button {
    background: url("https://mytuner-radio.com/static/icons/widgets/BT_Play/BT_Play.png") no-repeat center;
    width: 40px;
    height: 40px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    margin: auto 4px auto 19px;
}

.play-button.loading {
    background: url("https://static2.mytuner.mobi/static/images/sprite-loading.gif") no-repeat center;
    filter: grayscale(1);
    background-size: 28px;
}

.play-button.playing {
    background: url("https://mytuner-radio.com/static/icons/widgets/BT_Pause/BT_Pause.png") no-repeat center;
}

.play-button.error {
    background: url("https://mytuner-radio.com/static/icons/widgets/BT_Error/erro.png") no-repeat center;
    background-size: 15px;
}


