/* @import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@600;700;800;900&amp;display=swap'); */
@import url("https://fonts.googleapis.com/css2?family=Roboto&display=swap'");

:root{
  --main-color: white;
}

path {
  fill: white;
}

html,
body {
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  margin: 0;
  padding: 0;
  font-family: "Roboto", serif;
}

.bg-layer-left {
  background-image: url(../res/fondo.jpg);
  background-position: center;
  background-size: cover;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  background-color: #f2f2f2; /* Set your background color */
}

.main-wrapper {
  margin: auto;
  width: 100%;
  height: 100%;
}

input[type="range"] {
  width: 100%;
  margin: 7.45px 0;
  background-color: transparent;
  -webkit-appearance: none;
}
input[type="range"]:focus {
  outline: none;
}
input[type="range"]::-webkit-slider-runnable-track {
  background: var(--main-color);
  
  border-radius: 1.3px;
  width: 100%;
  height: 3px;
  border-radius: 5px;
  cursor: pointer;
}
input[type="range"]::-webkit-slider-thumb {
  margin-top: -7.65px;
  width: 19px;
  height: 19px;
  background: var(--main-color);
  border-radius: 19px;
  cursor: pointer;
  -webkit-appearance: none;
}
input[type="range"]:focus::-webkit-slider-runnable-track {
  background: var(--main-color);
}
input[type="range"]::-moz-range-track {
  background: var(--main-color);
  border-radius: 1.3px;
  width: 100%;
  height: 3px;
  border-radius: 5px;
  cursor: pointer;
}
input[type="range"]::-moz-range-thumb {
  width: 19px;
  height: 19px;
  background: var(--main-color);
  border-radius: 19px;
  cursor: pointer;
}
input[type="range"]::-ms-track {
  background: transparent;
  border-color: transparent;
  border-width: 8.45px 0;
  color: transparent;
  width: 100%;
  height: 3px;
  cursor: pointer;
  border-radius: 3px;
}
input[type="range"]::-ms-fill-lower {
  background: #f2f2f2;
  border-radius: 2.6px;
}
input[type="range"]::-ms-fill-upper {
  background: var(--main-color);
  border-radius: 2.6px;
}
input[type="range"]::-ms-thumb {
  width: 19px;
  height: 19px;
  background: var(--main-color);
  border-radius: 19px;
  cursor: pointer;
  margin-top: 0px;
  /*Needed to keep the Edge thumb centred*/
}
input[type="range"]:focus::-ms-fill-lower {
  background: var(--main-color);
}
input[type="range"]:focus::-ms-fill-upper {
  background: var(--main-color);
}
.image-logo {
  max-width: 80%;
  max-height: 30%;
  display: flex;
  margin: auto;
  margin-top: 10vh;
}

.controllers-wrapper {
  width: 100%;
    padding-top: 20px;
    padding-bottom: 0px;
    margin: auto;
}

.controllers {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.program {
  text-align: center;
  margin-bottom: 20px;
  display: flex;
  flex-flow: column;
  color: var(--main-color);
  font-size: 20px;
}

.program-l1 {
  font-size: 16px;
  color: var(--main-color); /* Set your text color */
  margin-bottom: 5px;
}

.program-l2 {
  font-size: 24px;
  color: var(--main-color); /* Set your text color */
  margin: 0;
  margin-bottom: 10px;
}

.buttons {
  display: flex;
  margin-bottom: 20px;
}

.button {
  margin: 0 10px;
  display: inline-flex;
  cursor: pointer;
}

.progress-bar {
  width: 70%;
  position: relative;
  margin-bottom: 20px;
}

.progress-bar .text {
  color: var(--main-color);
  font-size: 20px;
  letter-spacing: 3px;
}

.slider-color {
  width: 100%;
}

.text {
  text-align: center;
  margin-top: 5px;
  color: var(--main-color); /* Set your text color */
}

.social {
  display: flex;
  justify-content: center;
}

.stores {
  display: flex;
  justify-content: center;
}

.button.med {
  width: 34px;
  height: 34px;
  color: var(--main-color);
}

.button.big {
  width: 60px;
  height: 60px;
}

.btn-stores{
  width: 126px;
  margin-top: 40px;
}

@media (max-width: 767px) {
  html,
  body {
    width: 100%;
    height: 100vh;
    min-width: 100%;
    min-height: 100vh;
  }
}
