/**
 * Author : CDQ - https://quenum.org
 */

<style>
html {
    background-color: black;
}

body {
    background-color: black;
    font-family: Sans-Serif;
}

table {
    table-layout: auto;
    border-collapse: collapse;
    border-spacing: 30px;
    width: 100%;
    font-family: Sans-Serif;
    color: white; /* Applies to all text in the table */
    text-align: center;
}

th {
    color: #D0312D; /* Applies only to table headers */
}

a {
    text-align: center;
    text-decoration: none;
}

a:link {
    color: #D0312D;
}

a:visited {
    color: #D0312D;
}

a:hover {
    color: #4169E1;
}

.bjflix img {
    text-align:    center;
    max-width:     100%;
    min-width:     350px;
    height:        auto;
    object-fit:    contain;
}   

.parentContenair {
    display: flex;
    justify-content: center;    
    align-items: center;
    width: 100%;
}

.contenair {
    position: relative;
      width: 100%;
    /*
      height: 100vh;
      display: flex;
      padding: 0 5%;
      align-items: center; 
      justifiy-content: center;
   */
}

.contenair_bottom {
    background-color: black;
/* 98% allows to avoid horizontal scrollbar */
    width: 98%; 
    position: absolute;
    object-fit:    cover;
}

.video {
    justifiy-content: center;
    position: absolute;
    width:100%;
    top: -40px;
    right: 0;
    bottom: 0;
    z-index: -1;
}

/* Slider */
/* Slider for TV */
.slider {
    /*      width: 500px; */
    width: 90%;
    overflow: hidden;
    position: relative;
}

.slides {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.slide {
    min-width: 100%;
    box-sizing: border-box;
}

img {
    width: 100%;
    /*
      display: block;
   */
}

.controls {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
}

.controls button {
    background-color: rgba(0, 0, 0, 0.5); 
    color: white;
    border: none;
    padding: 0 5px;
    cursor: pointer;
}

/* Slider for Artists */
.slider_artists {
    /*      width: 500px; */
    width: 90%;
    overflow: hidden;
    position: relative;
}

.slides_artists {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.slide_artists {
    min-width: 100%;
    box-sizing: border-box;
}

img_artists {
    width: 100%;
    /*
      display: block;
   */
}

.controls_artists {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
}

.controls_artists button {
    background-color: rgba(0, 0, 0, 0.5); 
    color: white;
    border: none;
    padding: 0 5px;
    cursor: pointer;
}

/* Slider for radios */
.slider_radios {
    text-align: center;
    width: 90%;
    overflow: hidden;
    position: relative;
}

.slides_radios {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.slide_radios {
    min-width: 100%;
    box-sizing: border-box;
}

img_radios {
    width: 100%;
    /*
      display: block;
   */
}

.controls_radios {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
}

.controls_radios button {
    background-color: rgba(0, 0, 0, 0.5); 
    color: white;
    border: none;
    padding: 0 5px;
    cursor: pointer;
}

/* FAQ Collapsible */
/* Starting collapsible instructions */

.accordion-item {
#    display: flex;
}

.accordion-trigger {
    margin: 10px;
    border-spacing: 5px;
/*    background-color: #333333;  */
    background-color: #333333; 
    border-radius: 10px;
    color: white;
    cursor: pointer;
    padding: 18px;
    width: 70%;  
    border: none;
    text-align: left;
    outline: none; 
    font-size: 15px;
}

.accordion-trigger.active + .accordion-content {
  display: block; /* Show content when trigger is active */
}

.accordion-trigger:hover {
    background-color: #555555;
}

.accordion-trigger:after {
    content: '\002B'; 
    color: white;
    font-weight: bold;
    float: right;
    margin-left: 5px;
}

.accordion-content {
    margin: 10px;
    border-spacing: 5px;
    text-align: left;
    padding: 0 18px;
    display: none;     
    overflow: hidden;
    transition: max-height 0.2s ease-out;
}

.accordion-container.active .accoridon-content {
  display: block; /* Or use height/max-height with transitions for animation */
}

/* Inscription */

input[type=email] {
    background-color: black;
    color: white;
    width: 220px;
    height: 45px;
    border: 1px solid gray;
    font-size: 14pt;
    border-radius: 5px;
}

.custom-button {
    cursor: pointer;
    background-color: #D0312D;
    color: white;
    width: 100px; 
    height: 44px;
    border: none;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 14pt;
    border-radius: 5px;
}

figure {
  border: 0px solid  #D0312D;
  display: flex;
  flex-flow: column;
  padding: 15px;
  max-width: 100px;
  min-width: 40px;
  margin: auto;
}

.connected_devices {
#    background-image: linear-gradient(to right, #B21619, #000000);
    background-image: radial-gradient(circle,  #D0312D, #000000);
#    background-image: linear-gradient(to right, #D0312D, #000000);

    width: 70%;
    border-radius: 1%;
    background-color: black;
    color: white;
    border: 0pt solid white;
}

</style>
