@view-transition {
  navigation: auto;
}

::view-transition-group(*){
  animation-duration: 0.5s;
}

.hidden{ display:none !important; }

.bg_coral{
  background:coral;
}

.switch {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 24px;
  margin-top: 8px;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: .4s;
  transition: .4s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 16px;
  width: 16px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  -webkit-transition: .4s;
  transition: .4s;
}

input:checked+.slider {
  background-color: #52f421;
}

input:focus+.slider {
  box-shadow: 0 0 1px #52f421;
}

input:checked+.slider:before {
  -webkit-transform: translateX(26px);
  -ms-transform: translateX(26px);
  transform: translateX(26px);
}

/* Rounded sliders */
.slider.round {
  border-radius: 34px;
}

.slider.round:before {
  border-radius: 50%;
}

.circulo-rojo {
  border:0.5px solid red;
  border-radius: 50%;
  width: 20px !important;
  height: 20px !important;
  background: red;
}

.circulo-verde {
  border:0.5px solid green;
  border-radius: 50%;
  width: 20px !important;
  height: 20px !important;
  background: green;
}

.circulo-amarillo {
  border:0.5px solid yellow;
  border-radius: 50%;
  width: 20px !important;
  height: 20px !important;
  background: yellow;
}

.circulo-marron {
  border:0.5px solid brown;
  border-radius: 50%;
  width: 20px !important;
  height: 20px !important;
  background: brown;
}

.list-check{
  display: flex;
  flex-flow: row;
  justify-content: space-evenly;
  align-items: center;
}

.list_comercial{
  display: flex;
  flex-flow: row;
  justify-content: space-between;
}

@media only screen and (max-width: 560px) {
  .list-check{
    flex-flow: column;
  }

  .list_comercial{
    flex-flow: column;
  }
}

.no-wrap{
  white-space: nowrap;
}

.btn-from{
  margin-top: 30px;
}

.pointer{
  cursor:pointer;
}

.parpadea {
  animation-name: parpadeo;
  animation-duration: 1s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;

  -webkit-animation-name:parpadeo;
  -webkit-animation-duration: 1s;
  -webkit-animation-timing-function: linear;
  -webkit-animation-iteration-count: infinite;
}

@-moz-keyframes parpadeo{  
  0% { opacity: 1.0; }
  50% { opacity: 0.0; }
  100% { opacity: 1.0; }
}

@-webkit-keyframes parpadeo {  
  0% { opacity: 1.0; }
  50% { opacity: 0.0; }
   100% { opacity: 1.0; }
}

@keyframes parpadeo {  
  0% { opacity: 1.0; }
   50% { opacity: 0.0; }
  100% { opacity: 1.0; }
}

.bb{
  font-weight: bolder;
}

.text-middle{
  vertical-align: middle !important;
}