:root {
  --background-gradient: linear-gradient(178deg, #ffff33 10%, #3333ff);
  --gray: #34495e;
  --darkgray: #2c3e50;
}
#option{
    height: 101px;
    overflow: hidden;
    margin: 2px;
    border: 1px solid #888;
}
.compoment{
    display: flex;
    height: 70px;
    align-content: space-around;
    width: 100%;
    flex-direction: column;
}
.compoment span {
  height: 55%;
  /*! align-self: center; */
  display: block;
  align-self:center;
}
.compoment select {
  /* Reset Select */
  appearance: none;
  outline: 10px red;
  border: 0;
  box-shadow: none;
  /* Personalize */
  flex: 1;
  padding: 0 1em;
  color: #fff;
  background-color: var(--darkgray);
  background-image: none;
  cursor: pointer;
  /*! margin: 5px; */
  /*! align-self: flex-end; */
  width: 100%;
  border-radius: 10px;
}
/* Remove IE arrow */
.compoment select::-ms-expand {
  display: none;
}
/* Custom Select wrapper */
.select {
  position: relative;
  display: flex;
  width: 100%;
  height: 3em;
  border-radius: .25em;
  overflow: hidden;
  /*! margin: 1px; */
}
.select label{
  align-self: center;
  width: 50%;
  text-align: center;
}
/* Arrow */
.select::after {
  content: '\25BC';
  position: absolute;
  top: 20px;
  right: 8px;
  padding: 0.4rem;
  background-color: #34495e;
  transition: .25s all ease;
  pointer-events: none;
}
/* Transition */
.select:hover::after {
  color: #f39c12;
}
.next,.last {
    width: 50px;
    height: 35px;
  }
.rules section:last-of-type{
    width: 50%;
    border: 1px solid #555;
    float: left;
    display: flex;
    justify-content: space-evenly;
    margin: 0 10px 0 4px;
}
.timer {
    width:100px;
height:90px; 
border:10px  solid transparent;
border-radius:50%;
background:linear-gradient(#3336, #1116) content-box no-repeat,conic-gradient(#2A36EE 0%, 0, #6663 ) border-box;
filter:drop-shadow(2px 2px 5px #FF0);
position: absolute;
right: -35px;
display: flex;
flex-direction: column;
align-content: center;
flex-wrap: wrap;
}
.timer span {
    font-size: 2em;
    /* width: 100%; */
    /* display: flex; */
    align-self: center;
    align-content: center;
    height: 100%;
    color: #FF0;
}
.timer::after{
    display: block;
    width: 50px;
    height: 50px;
    border:1px solid #F00;
}
widgetbot{
  width:250px;
  height:375px;
  position:absolute;
  z-index:8;
}
input[type=range] {
    -webkit-appearance: none;     /*nécessaire pour Chrome */
    padding: 0;                   /* nécessaire pour IE */
    font: inherit;                /* même rendu suivant font document */
    outline: none;
    color: #069;                  /* sert pour couleur de référence, via currentColor, pour le curseur */
    opacity: .8;
    background: transparent;             /* sert pour couleur de fond de la zone de déplacement */
    box-sizing: border-box;       /* même modèle de boîte pour tous */
    transition: opacity .2s;
    cursor: pointer;
    width: 50%;
    transition: .7s;
  }
  .select option:last-of-type{
    background: #2A36EE;
  }
  .select option:last-of-type:hover{
    background: #A236EE !important;
  }
  input[type="range"]::-webkit-slider-runnable-track {
    background: #053a5f;
    height: .5rem;
  }
  /******** Firefox ********/
input[type="range"]::-moz-range-track {
  background: #053a5f;
  box-shadow: 2px 2px 3px #FF0;
  height: 0.5rem;
}
  input[type="range"]::-webkit-slider-thumb,input[type="range"]::-moz-range-thumb {
    -webkit-appearance: none; /* Override default look */
    appearance: none;
     /* Centers thumb on the track */
    background-color: #5cd5eb;
    height: 1rem;
    border-radius: 50%;
    width: 1rem;    
 }

 input[type="range"]:focus::-webkit-slider-thumb,input[type="range"]:focus::-moz-range-thumb {
    border: 1px solid #053a5f;
    outline: 3px solid #74b3e1;
    outline-offset: 0.125rem;
    filter: drop-shadow(2px 2px 5px #FF0)
  }