.animated-background {
 background: rgb(255,165,0);
background: -moz-linear-gradient(49deg, rgba(255,165,0,1) 21%, rgba(242,72,242,1) 47%, rgba(255,0,127,1) 75%);
background: -webkit-linear-gradient(49deg, rgba(255,165,0,1) 21%, rgba(242,72,242,1) 47%, rgba(255,0,127,1) 75%);
background: linear-gradient(49deg, rgba(255,165,0,1) 21%, rgba(242,72,242,1) 47%, rgba(255,0,127,1) 75%);
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ffa500",endColorstr="#ff007f",GradientType=1);
}

.mobile-animated-background {
 background: rgb(255,165,0);
background: -moz-linear-gradient(49deg, rgba(255,165,0,1) 21%, rgba(242,72,242,1) 47%, rgba(255,0,127,1) 75%);
background: -webkit-linear-gradient(49deg, rgba(255,165,0,1) 21%, rgba(242,72,242,1) 47%, rgba(255,0,127,1) 75%);
background: linear-gradient(49deg, rgba(255,165,0,1) 21%, rgba(242,72,242,1) 47%, rgba(255,0,127,1) 75%);
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ffa500",endColorstr="#ff007f",GradientType=1);
    filter: contrast(1.2);
}



.image-container {
  position: relative;
  display: inline-block;
  overflow: hidden; /* Ensure the pulsating effect doesn't overflow the container */
}

.animated-background {
  display: block;
  border-radius: 50%; /* Ensure the image is circular */
  position: relative;
  animation: pulsateEdges 1.5s infinite ease-in-out;
}

@keyframes pulsateEdges {
  0% {
    filter: brightness(101%) contrast(101%);
  }
  50% {
    filter: brightness(115%) contrast(115%);
  }
  100% {
    filter: brightness(101%) contrast(101%);
  }
}


.color-button{ text-transform: uppercase; }

.color-button.yellow {

    left: 130px;
}

.color-button.orange {
 left: 200px;
}

.color-button.white { left: 10px;
  
}

.color-button.active {
    font-weight: 900;-webkit-font-smoothing: antialiased;
}




/* Main container styling */
.container2 {
    width: 100%;
    margin: auto;
    height: 110vh;
    position: relative;
    overflow: hidden;
    z-index: 1;
    left: calc(-51vw + 50%);
}

/* Styling for custom buttons inside inner-box2 */
.inner-box2 .custom-buttons {
    display: flex;
    justify-content: center;
    margin-top: 10px; /* Adjust spacing as needed */
}

.inner-box2 .custom-buttons button {
    background-color: #fff;
    border: 1px solid #000;
    color: #000;
    border-radius: 5px;
    margin: 0 5px; /* Adjust spacing between buttons */
    padding: 10px 20px;
    cursor: pointer;
}

.inner-box2 .custom-buttons button:hover {
    background-color: #000;
    color: #fff;
}


.background-fader {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: opacity 1s ease-in-out;
    z-index: -1; /* Keeps it behind content */
    opacity: 1; /* Make sure it's visible by default */
}

.background-fader.fade-out {
    opacity: 0; /* Fades out the image */
}

.background-fader.fade-in {
    opacity: 1; /* Fades the new image in */
}
/* Keyframes for fade-to-black and pan animation */
@keyframes fadeToBlack {
    0% {
        background-color: transparent;
    }
    100% {
        background-color: black;
    }
}

@keyframes slowPan {
    0% {
        background-position: center;
    }
    100% {
        background-position: center right;
    }
}

/* Apply fade and pan animation to the fifth slide */
.fifth-slide.fade-pan-animation .seen-article {
    animation: fadeToBlack 5s ease-in-out, slowPan 10s linear;
    background-size: cover;
    background-repeat: no-repeat;
}


/* Custom slide styling */
.custom-slide {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f0f0f0;
}

.custom-slide-image {
    width: 100%;
    height: auto;
}

.custom-buttons {
    display: flex;
    gap: 10px;
    position: absolute;
    z-index: 1;
    bottom: 20px;
}

.custom-buttons button {
    background-color: #fff;
    border: 1px solid #000;
    color: #000;
    border-radius: 5px;
    padding: 10px 20px;
    cursor: pointer;
}

.custom-buttons button:hover {
    background-color: #000;
    color: #fff;
}



/* Styling for the slide-button */
.slide-button {
    background-color: none; /* Adjust color as needed */
    border: none;
    color: white;
    padding: 10px 20px;
    text-align: center;
    text-decoration: none;
    display: inline-block;font-family: "IBM Plex Sans" !important;
    font-size: 20px;
    margin: 4px 2px;
    cursor: pointer;
    position: absolute; /* Position the button within the container */
    bottom: 20px; /* Distance from the bottom */
   left: 20px; /* Distance from the right */
    z-index: 10; /* Ensure it is above other elements */
    transition: background-color 0.3s; /* Smooth transition on hover */
}

.slide-button:hover {
    background-color: none; opacity: .8; /* Darker color on hover */
}


/* Styling for the color buttons */
.color-button {
    border: none;
    color: white;font-family: "IBM Plex Sans" !important;
    padding: 10px 20px;
    text-align: center;-webkit-font-smoothing: antialiased;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 4px 2px;
    cursor: pointer; left: 10px;
    position: absolute; /* Position the button within the container */
    bottom: 20px; /* Distance from the bottom */
    z-index: 10; /* Ensure it is above other elements */
    transition: background-color 0.3s; /* Smooth transition on hover */
}

.cocoa-pop-overlay {
    position: fixed;
    top: 0; z-index: 1000;
    left: 0;
    width: 100%;
    height: 100%;
backdrop-filter: blur(10px);
    background-color: rgb(99 99 99 / 50%);
    display: none;
    align-items: center;
    justify-content: center;
}

.cocoa-pop-modal {
    background: rgba(255, 255, 255); /* Optional: Adjust to your preference */
    border-radius: 8px;
    padding: 20px;
z-index: 100; width: 350px;-webkit-font-smoothing: antialiased;
    position: relative;
}

.modal-image {

    height: 300px; /* Adjust as needed */
    background-size: cover;background-position: top; position: relative;
    filter: brightness(1);
    border-radius: 8px;
    margin-bottom: 20px;
}

.cocoa-pop-modal-content h2 {
    font-size: 28px;
    padding: 6px; font-weight: 900; padding-top: 0px; padding-bottom: 0px;
}


.cocoa-pop-modal-content h2, 
.cocoa-pop-modal-content p {-webkit-font-smoothing: antialiased; font-family: "Cera-bold" !important; color: #000; line-height: 1.3;
    margin: 0;
}

.cocoa-pop-modal-content p {
    margin-top: 9px;font-family: 'cera-regular' ; opacity: .9;
}

.cocoa-pop-modal-content button {
    padding: 15px 20px;font-family: "IBM Plex Sans" !important; text-transform: uppercase; letter-spacing: .5px; font-weight: 900;-webkit-font-smoothing: antialiased;
    border: none;
    border-radius: 5px; width: 100%;
    margin-top: 1em;
    background-color: #000;
    color: #fff;
    cursor: pointer;font-size: 15px;
}

.cocoa-pop-modal-content button:hover {
    background-color: #333333;
}


.cocoa-pop-modal {
    position: relative; /* Ensure the modal content is positioned relative to its container */
}

.cocoa-pop-close-button {
    position: absolute;
    
    top: -39px !important;
    right: -1px !important;
    background: none !important;
    border: none !important;
    font-size: 22px !important;
    color: white !important;
    cursor: pointer !important;
    z-index: 1000 !important;
}

.cocoa-pop-close-button i {
    line-height: 1; /* Align icon properly */
}

#modalSubtitle {
--subtitle-bg-color: #2c0a09;
    background-color: var(--subtitle-bg-color);
    height: 40px;
    border-radius: 0px 0px 5px 5px;
    color: #fff;-webkit-font-smoothing: antialiased;
    display: flex; font-weight: 900; letter-spacing: .5px;font-family: "IBM Plex Sans" !important;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    text-transform: uppercase;       
}

#modalSubtitle span {
    text-align: center;
    padding: 0 20px;            
    line-height: 1.5;           
}

#modalSubtitle.hidden {
    display: none;              
}

.ads-by-vivo {
    text-align: center; font-weight: 600;
    font-size: 10px;font-family: "IBM Plex Sans" !important;-webkit-font-smoothing: antialiased;
    color: #888; letter-spacing: 1px;
    margin-top: 20px; /* Adjust as needed */
}


.ads-by-vivo a {font-weight: 600;
    font-size: 10px;font-family: "IBM Plex Sans" !important;-webkit-font-smoothing: antialiased;    opacity: 1 !important;
    color: #1b033e  !important;}


/* Subtitle styling */
.modal-image {
    position: relative; /* Make the container relative so the subtitle can be positioned absolutely */
    width: 100%; /* Adjust this as needed */
    height: 300px; /* Set the height of the image container */
    background-size: cover; /* Ensure the background image covers the entire area */
    background-position: top; /* Center the background image */
    filter: brightness(1.05);

}

.modal-subtitle {
    position: absolute; /* Position the subtitle absolutely within the modal image */
    bottom: 0; /* Anchor the subtitle to the bottom */
    left: 0; /* Align subtitle to the left */
    width: 100%; /* Ensure the subtitle spans the full width */
    padding: 7px; /* Add some padding */
    background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent background for better readability */
    color: #fff; /* White text for contrast */
    text-align: center; /* Center the subtitle text */
    font-size: 16px; /* Adjust the font size as needed */

}
/* Modal styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
backdrop-filter: blur(50px);
    background-color: rgb(99 99 99 / 50%);
    overflow-y: auto; /* Allow scrolling if content exceeds the screen height */
}

/* Modal content */
.cocoa-modal-content {
    position: relative;
    margin: auto;
    top: 50%;
    transform: translateY(-50%);
    width: 80%;
    max-width: 700px;
   background-color: none;
    padding: 20px;
    border-radius: 8px;

    transition: all 0.3s ease; /* Optional: for animation */
}

/* Close button */
.close-button {
   position: absolute;
 top: 14px;
    right: 67px;
    font-size: 22px;
    color: #fff;
    cursor: pointer;
}

.close-button:hover {
    opacity: .8;
}

.cocoa-pop-close-button:hover{    opacity: .8;}



#countUpNumber {
   
    transition: color 0.4s ease;
}

#countUpNumber {

    transition: color 0.4s ease;
    display: inline-block;
    width: 4ch; /* Fixed width for 4 digits (4000) */
    text-align: right; /* Align the digits to the right */
}


#countUpNumber.animate {
    color: #FF5733; /* Changes color while animating */
}



/* Modal */
.cocxa-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;font-family: "IBM Plex Sans";
    top: 0;
    width: 100%;
    height: 100%;
backdrop-filter: blur(10px);
    background-color: rgb(99 99 99 / 50%);
    justify-content: center;
    align-items: center;
}

.cocxa-modal-content {
 background: rgba(255, 255, 255); /* Optional: Adjust to your preference */
    border-radius: 8px;
    padding: 20px;
z-index: 100; width: 350px;-webkit-font-smoothing: antialiased;
    position: relative;
}

.cocxa-close {
    position: absolute;
    top: -39px;
    right: 2px;
    font-size: 22px;
    color: #fff;
    cursor: pointer;
}

.cocxa-modal-header {
    margin-bottom: 2px;
}

.cocxa-modal-body img {
   position: relative; /* Make the container relative so the subtitle can be positioned absolutely */
    width: 100%; /* Adjust this as needed */
    height: 300px; /* Set the height of the image container */
    background-size: cover; /* Ensure the background image covers the entire area */
    background-position: top; /* Center the background image */
    filter: brightness(1.1);margin-bottom: 20px;
}


.cocxa-modal-body h2{ font-size: 28px;
    padding: 6px; font-weight: 900; padding-top: 0px;   font-family: 'cera-bold' ;-webkit-font-smoothing: antialiased;

p
    color: #000;
    line-height: 1.3;
    margin: 0;
}

.cocxa-watch-button {
 padding: 15px 20px;font-family: "IBM Plex Sans" !important; text-transform: uppercase; letter-spacing: .5px; font-weight: 900;-webkit-font-smoothing: antialiased;
    border: none;
    border-radius: 5px; width: 100%;
    margin-top: 1em;
    background-color: #000;
    color: #fff;
    cursor: pointer;font-size: 15px;
}

.cocxa-watch-button:hover {
    background-color: #333;
}

#cocxaCountdown {
    margin-top: 10px;
    font-size: 14px; text-align: center;
    color: gray;
}






.cocxa-support-us {
font-weight: 900;
    background-color: #b50ed6;
    color: #fff;
    text-align: center;
    padding: 10px 0;
    position: absolute;
    bottom: 125px;
    width: 100%;
    -webkit-font-smoothing: antialiased;
    font-size: 15px;
    letter-spacing: .5px;
    height: 40px;
    margin-bottom: 4px;
    border-radius: 0px 0px 5px 5px;
}

/* Update modal image container to ensure proper positioning */
.cocxa-modal-body {
    position: relative; /* Ensure the support message is positioned relative to the body */
}

.cocxa-modal-image-container {
    width: 100%;
    height: 300px;
    background-size: cover;
    background-position: top;
    background-repeat: no-repeat; border-radius: 8px;
    margin-bottom: 20px;
}



/* Optional: Fade-in animation for the modal */
.modal.fade-in {
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Responsive design for smaller screens */
@media (max-width: 768px) {
    .modal-content {
        width: 95%;
        top: 20%;
        transform: translateY(0); /* Remove vertical centering for small screens */
    }
}



.pod-buttons {
    border: none;
    color: white;font-family: "IBM Plex Sans" !important;
    padding: 10px 20px;
    text-align: center;-webkit-font-smoothing: antialiased;
    text-decoration: none;
    display: inline-block;
    font-size: 16px; 
    margin: 4px 2px; text-transform: uppercase;
    cursor: pointer; left: 10px;
    position: absolute; /* Position the button within the container */
    bottom: 20px; /* Distance from the bottom */
    z-index: 10; /* Ensure it is above other elements */
    transition: background-color 0.3s; /* Smooth transition on hover */
}

.pod-buttons.active {
    font-weight: 600;
}

.pod-buttons {
    /* Default button styles */
    font-weight: normal;
    /* other default styles */
}

.pod-buttons.active-button {
    font-weight: 600; -webkit-font-smoothing: antialiased; /* or any other style you want to apply */
    /* other active styles like background color change, border, etc. */
}


.color-button.red {
    background-color: none; /* Red color */
    left: 80px; /* Adjust as needed to position next to the slide button */
}

.pod-buttons.two {
    background-color: none; /* Red color */
    left: 100px; /* Adjust as needed to position next to the slide button */
}


.color-button.green {
    background-color: none; /* Green color */
    left: 190px; /* Adjust as needed to position next to the slide button */
}

.pod-buttons.three {
    background-color: none; /* Green color */
    left: 190px; /* Adjust as needed to position next to the slide button */
}



.color-button:hover {
    background-color: none; opacity:.9; /* Darker red color on hover for red button */
}

.color-button.green:hover {
    background-color: none; opacity:.9; /* Darker green color on hover for green button */
}



.cocoa-carousel-slide-3 h1, .cocoa-carousel-slide-3 h2, .cocoa-carousel-slide-3 h3 {
    text-decoration: none;
}




/* Add CSS for the new reset button */
#resetButton {
    background-color: #f0f0f0;
    border: 1px solid #ccc;
    border-radius: 4px;
    color: #333;
    cursor: pointer;
    font-size: 16px;
    padding: 10px 20px;
    margin: 10px;
}

#resetButton:hover {
    background-color: #e0e0e0;
    border-color: #bbb;
}






#cocoa-products {
    padding: 50px; background-color: #fff;
}

.cocoa-container { color: #fff;    font-family: 'cera-regular'; padding-left: 4em;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;-webkit-font-smoothing: antialiased;
}

.cocoa-text {
    width: 61%;
}

.cocoa-text h2 {
    font-size: 1.5rem;  margin-top: 15px;margin-bottom: 30px; line-height: 1.5; width: 95%;-webkit-font-smoothing: antialiased;
}

.cocoa-text p {     font-family: "IBM Plex Sans" !important; font-size:15px; opacity: .8; -webkit-font-smoothing: antialiased; letter-spacing:1px ; margin-bottom: 0px }
.cocoa-slide h2 {
    font-size: 1.5rem;  margin-top: 15px; margin-bottom: 30px;line-height: 1.5;-webkit-font-smoothing: antialiased;
}

.cocoa-slide p {     font-family: "IBM Plex Sans" !important; font-size:15px; opacity: .8;  letter-spacing:1px ; margin-bottom: 0px }

.cocoa-slide{ width:30% }

.cocoa-all-products-link {
   background-color: white;    color: black !important;
    text-decoration: none;border: 1px solid white;
    font-size: 1.1rem; border-radius: 30px;-webkit-font-smoothing: antialiased;
 display: block; width: 150px;
    padding: 10px 20px; text-align: center;
}

.special-slide h1:hover {
    text-decoration: none;
}
.cocoa-all-products-link:hover {
    background-color:  #000;
     color: white !important;    border: 1px solid white;

}

.special-button{   background-color: white;    color: black ;
    text-decoration: none;
    font-size: 1.1rem; border-radius: 30px;-webkit-font-smoothing: antialiased;
  width: 150px; margin: 0 auto; font-family: 'cera-regular';
    padding: 10px 20px; text-align: center; border: 1px solid white;}

    .special-button:hover {
    background-color:  transparent;
     color: white  ;    border: 1px solid white;

}

.cocoa-gallery {
    display: flex;
    flex-direction: row;
}

.cocoa-slide {
    margin-left: 40px;
}

.youtube{ border-radius: 5px }

 .cocoa-slide img {
      width: auto;
      height: 298px;
      margin-top: 1em; filter: brightness(1.1);
   
      border-radius: 5px;border-radius: 8px
      object-fit: cover;
      padding: 2em;
      
    }

.cocoa-caption {
    margin-top: 20px;
    font-size: 1.5rem;
}


/* Filter and box styling */
.filter2 {
    position: relative;
    left: 1%;
    height: 100%;
    width: 350%;
    display: flex;
}







.inner-box2 > a {
    text-decoration: none;
    height: 100%;
    background-color: aqua; 
}

/* Adjusted for better consistency */
.inner-box2 {
    position: absolute;
    width: calc(100% / 5);
    height: 100%;
    margin-right: 20px;
    transition: all 0.5s ease-in-out; background-size: cover;
}

.inner-box2 > a {
    text-decoration: none !important;
    height: 100%;
    background-color: aqua;
    text-align: left;
}

/* Seen article styling */
.seen-article {
    position: relative;
    width: 101%;
    height: 100%;
    margin: auto;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center top;
}

/* Inner article styling */
.inner-article {
    background-color: rgba(0, 0, 0, 0.2);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left !important;
    color: white;
}

.inner-article a > h1 {
    font-size: 58px;
    line-height: 1.2; /* Adjust this value to your preference */
    transition: all 0.2s ease-in-out;
    margin: 0 auto;
    font-family: 'Six Caps'; text-transform:  uppercase;
    padding: 1em;
    width: 70%;
    padding-top: 10px; padding-bottom: .3em; 
  
    text-align: center !important;
    text-decoration: none !important;
    -webkit-font-smoothing: antialiased;
}


/* Add this CSS to your stylesheet */
.panning-background {
    background-size: cover;
    background-repeat: no-repeat;
    animation: pan 30s linear infinite;
}

@keyframes pan {
    0% {
        background-position: 0% 0%;
    }
    100% {
        background-position: 100% 100%;
    }
}


.netflix-pan-effect {
    /* All previous styles for panning effect */
    background-position: center;
    background-size: cover;
    animation: pan 10s infinite linear;
}

@keyframes pan {
    0% {
        background-position: 0% 50%;
    }
    100% {
        background-position: 100% 50%;
    }
}


.inner-article a > h1:hover {
    text-decoration: underline !important;
}

.inner-article a > p {
    font-family: "IBM Plex Sans";
    font-weight: 900;
    text-transform: uppercase;
    text-align: center;
    width: 100%;
    opacity: .8;
    padding-left: 3.2em !important;
    padding: 3.1em;
    line-height: 0;
    font-size: 17px;
    padding-bottom: 0px;
    padding-top: 0px;
    -webkit-font-smoothing: antialiased;
}

/* Button container styling */
#buttonsContainer {
    width: 100%;
    float: left;
    padding: 2.5em;
    margin-top: -28.5em !important;
    margin: auto;
    display: flex;
    margin-right: 5.1em;
    justify-content: space-between;
    z-index: 1000;
}

#buttonsContainer button {
    background-color: #fff;
    color: #000000;
    border: 1px solid #fff;
    z-index: 10;
    height: 50px;
    width: 50px;
    border-radius: 100%;
}

#buttonsContainer button:hover {
    background-color: transparent;
    color: #fff;
    border: 1px solid #ffffff;
}

/* Media queries for responsiveness */
@media (max-width: 600px) {
    .inner-article > h1 {
        font-size: 30px;
        width: 100% !important;
    }

    .container2 {
        width: 100% !important;
    }

    .filter2 {
        position: relative;
        left: -55%;
    }

    .inner-box2 {
        width: 70vw;
    }
}
@media only screen and (max-width: 35em) {

    .modal-image {
        height: 275px !important;
    }

    #modalSubtitle {
        height: 31px;
        font-size: 12px;
    }

    .cocxa-modal-image-container {
        width: 100%;
        height: 230px !important;
    }

    .ads-by-vivo {
        margin-top: 10px;
    }

    .cocoa-pop-modal-content button {
        font-size: 12px;
    }

    .cocoa-pop-modal-content h2 {
        font-size: 24px;
    }

    .cocxa-modal-content {
        padding: 10px;
    width: 230px;
    padding-bottom: 0px;
    }

    .cocoa-pop-modal {
        width: 280px;
        padding: 10px;
    }

    #cocxaCountdown{ font-size:12px }

    .cocxa-modal-image-container {
        height: 230px;
    }

    .cocxa-modal-body h2 {
        font-size: 19px;
    }

    .cocxa-support-us {
        bottom: 94px !important;    font-size: 12px;
    }

    .cocxa-watch-button {
        font-size: 12px;
    }

    .cocxa-support-us {
    bottom: 94px !important;
    font-size: 12px;
    height: 31px;
    padding: 6px 0;}

}



