/* Header */
.hidden {
  display: none !important;
}

#installContainer button {
  background-color: inherit;
  border: 1px solid white;
  color: white;
  font-size: 1em;
}

.container .header {
  height: 7em;
}
.container .header_title {
  font-weight: 900;
  color: #000000;
  text-align: center;
  font-size: 4em;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  width: 100%;
  position: absolute;
  top: 50%;
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  text-shadow: 0px 0px 30px #ffeb00, 0px 0px 30px #ffeb00;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: #fea401;
}

.footer .container .header {
  margin: auto;
  height: 1em;
  margin-bottom: 2em;
  opacity: 0.4;
  background-color: white !important;
}

.container .header .image {
  height: 100%;
  width: 100%;
  /* background: url(../images/bulbs.jpg); */
  /* background-repeat: repeat; */
  margin-top: 1em;
}

.container .header .text {
  display: inline-block;
  vertical-align: bottom;
  font-family: sans-serif;
  font-size: x-large;
  border: 2px solid blue;
}
/* End header */

.price__review {
  display: flex;
  width: 70%;
  margin: auto;
}

.current {
  background-color: #ffd831 !important;
  color: black;
  border: 2px solid black;
  border-radius: 15px !important;
  box-shadow: 0px -1px 20px -1px #ffd831;
}

.lowest {
  border: 5px solid green;
}

.highest {
  border: 5px solid red;
}

.price__review_container {
  filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25));
  width: 60%;
  padding: 10px;
  margin: 10px;
  background-color: #fafafa;
  border-radius: 5px;
  text-align: center;
  display: inline-block;
  vertical-align: middle;
  margin-bottom: 1em;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 100px rgba(0, 0, 0, 0);
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: transform;
  transition-property: transform;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}

.price__review_container:hover,
.price__review_container:focus,
.price__review_container:active {
  cursor: pointer;
  -webkit-transform: translateY(-8px);
  transform: translateY(-8px);
}

.price__review_container_title {
  font-size: 20px;
  border-bottom: 5px solid;
}

.price__review_container_title span {
  margin: 0px 5px 0px 0px;
}
.price__review_container_subTitle {
  margin: 0px 5px 0px 0px;
}

.price__review_container_date span {
  margin: 0px 5px 0px 0px;
}

.price__review_container_date {
  font-size: 16px;
  text-align: center;
  font-weight: 600;
}

.price__review_container_value {
  font-size: 42px;
  font-stretch: ultra-condensed;
  font-weight: 600;
}

.price__review_container_unit {
  margin: -35px 0px 0px 175px;
}

.buttons_group {
  background-color: white;
  display: flex;
  justify-content: center;
}

.buttons_group_btn {
  font-size: 23px;
  padding: 10px;
  margin-right: 20px;
}

.price__list > ul {
  padding-left: 0px;
}

.price__list a {
  color: #78b005;
}

.list_nextUpdate {
  display: flex;
  justify-content: center;
  text-align: center;
  font-size: 13px;
  margin: 1em;
  font-weight: 700;
}

.list_title {
  display: flex;
  justify-content: center;
  text-align: center;
  font-size: 17px;
  margin: 1em;
  padding-left: 10em;
  padding-right: 10em;
}

.intro_title {
  display: flex;
  justify-content: center;
  text-align: center;
  font-size: 15px;
  margin: 1em;
  font-weight: bold;
}

.list_header {
  border-left: none !important;
  background-color: yellowgreen !important;
  height: 50px;
  align-items: center;
  color: white;
  text-align: center;
  font-size: 20px;
  font-weight: 600;
}

.list_header li:nth-child(1) {
  margin: 0px 0px 0px -8px;
}
.list_header li:nth-child(2) {
  width: 25%;
  margin: 0px -10px 0px 0px;
}
.list_header li:nth-child(3) {
  width: 50%;
}

.price__list_row {
  width: 100%;
  background-color: #fafafa;
  justify-content: space-around;
  max-width: 40%;
  margin: auto auto 2px auto;
  display: flex;
  border-radius: 3px;
  padding-top: 1px;
  padding-bottom: 1px;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: box-shadow, transform;
  transition-property: box-shadow, transform;
}

.price__list_row:hover,
.price__list_row:focus,
.price__list_row:active {
  cursor: pointer;
  font-weight: bold;
  border-radius: 7px;
  font-size: 28px;
  /* -webkit-transform: scale(1.05);
  transform: scale(1.1); */
}

.price__list_row_current {
  margin-top: 10px;
  margin-bottom: 10px;
  border: 1px solid #ffffff26;
  border-radius: 7px;
  background-color: #ffd831;
}

.price__list_row_highest {
  margin-top: 5px;
  margin-bottom: 5px;
  border: 5px solid red;
  border-radius: 7px;
}

.price__list_row_lowest {
  margin-top: 5px;
  margin-bottom: 5px;
  border: 5px solid green;
  border-radius: 7px;
}

.price__list_row_lowest_1 {
  margin-top: 5px;
  margin-bottom: 5px;
  border: 2px solid green;
  border-radius: 7px;
}

.price__list_row_lowest_2 {
  margin-top: 5px;
  margin-bottom: 5px;
  border: 1px solid green;
  border-radius: 7px;
}

.price__list_row_highest_1 {
  margin-top: 5px;
  margin-bottom: 5px;
  border: 2px solid red;
  border-radius: 7px;
}

.price__list_row_highest_2 {
  margin-top: 5px;
  margin-bottom: 5px;
  border: 1px solid red;
  border-radius: 7px;
}

.price__list_date {
  width: 30%;
  font-size: 25px;
  text-align: center;
  color: black;
  display: flex;
  align-items: center;
}

.price__list_date_day {
  width: 50%;
  font-size: 20px;
  text-align: center;
  margin: auto;
  color: black;
}

.price__list_value {
  width: 50%;
  text-align: center;
  margin: auto;
  font-weight: 600;
  font-size: 30px;
  color: black;
}

.price__list_icons {
  width: 20%;
  text-align: center;
  margin: auto;
}

.price__list_btn_container {
  width: 100%;
  display: flex;
  justify-content: space-around;
  margin: 0px 0px 15px 0px;
}

.price__list_btn {
  justify-content: space-around;
  float: left;
  box-shadow: inset 0 0 0 2px #dde1e3;
  color: #dde1e3 !important;
  margin: 0px 20px 0px 0px;
  min-width: 150px;
}

.dot {
  height: 25px;
  width: 25px;
  background-color: #bbb;
  border-radius: 50%;
  float: right;
}

.chivato {
  background-color: green;
}

.green {
  color: green;
  opacity: 0.3;
}
.red {
  color: red;
  font-weight: 600;
  opacity: 0.3;
}

.full_color {
  opacity: 1;
}

.green_box {
  background-color: green;
  box-shadow: 0px 4px 4px 0px #00000040 inset;
}
.red_box {
  background-color: red;
  box-shadow: 0px 4px 4px 0px #00000040;
}

.footer {
  text-align: center;
  background-color: #fff9ea;
  padding-bottom: 1em;
}

.footer__separator {
  width: 100%;
  height: 0.1em;
  background-color: #fea401;
  margin-bottom: 2em;
}

.footer__texts {
  margin-left: 15em;
  margin-right: 15em;
}

.paypal__btn {
  padding-top: 2em;
  text-align: center;
}

.paypal__btn p {
  padding-bottom: 1em;
}

.special_row {
  font-size: x-large;
  opacity: 1;
}

#icon_header {
  background-color: white;
  width: 200px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  padding: -4px;
  rotate: -10deg;
  margin: auto;
  margin-top: 0px;
  height: inherit;
}
