.multiTags {
  margin-top: 8px;
  margin-bottom: 8px;
  margin-left: 4px;
  margin-right: 4px;
 -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
 -webkit-tap-highlight-color: transparent;
 -webkit-user-select: none;
 -khtml-user-select: none;
 -moz-user-select: none;
 -ms-user-select: none;
  user-select: none;
}

.tagInterruptor {
  margin-top: 4px;
  margin-bottom: 4px;
  font-family: arial;
  display: inline-block;
  width: auto;
  height: 46px;
  border-radius: 100px;
  background: #ffd1d1;
  vertical-align: middle;
  position: relative;
  cursor: pointer;
  user-select: none;
  transition: background 350ms ease;
  box-shadow: inset 2px 2px 4px rgba(0, 0, 0, 0.22);
}
.tagInterruptor .interruptorDeslizante {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: 0!important;
  overflow: hidden;
  border-radius: 100px;
}
.tagInterruptor .tagTexto {
  line-height: 38px;
  font-weight: 500!important;
  -webkit-font-smoothing: auto;
  font-family: arial;
  font-size: 18px;
}
.tagInterruptor .tagConjuntoDimension {
  position: relative;
  height: 100%;
  line-height: 100%;
  padding: 4px;
  padding-left: 48px;
  padding-right: 13px;
  display: inline-block;
  visibility: hidden;
}
.tagInterruptor .tagConjuntoCinetico {
  position: absolute;
  left: 0;
  width: 100%;
  transition: all 450ms cubic-bezier(0, 0.95, 0.38, 0.98);
}
.tagInterruptor .tagConjuntoCinetico .tagTexto {
  line-height: 45px;
}

.tagInterruptor .tagCirculo {
  -webkit-font-smoothing: auto;
  font-size: 16px;
  display: block;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  transition: opacity 200ms linear;
  color: white;
  font-weight: bold;
  line-height: 40px;
  text-align: center;
}
.tagInterruptor .circuloTagSi {
  background: #4dc373;
  right: 5px;
  transform: translate3d(100%, -18px, 0);
  opacity: 0;
}
.tagInterruptor .circuloTagNo {
  background: #f34e4d;
  transform: translate3d(5px, -18px, 0);
}
.tagInterruptor .textoValorMulti {
  display: none;
}
.tagInterruptor.tagMultiple .textoValorMulti {
  display: inline-block;
}
.tagInterruptor.tagMultiple .textoValorSencillo {
  display: none;
}

input:checked + .tagInterruptor {
  background: #caf3d0;
}
input:checked + .tagInterruptor .tagConjuntoCinetico {
  left: -37px;
}
    input:checked + .tagInterruptor .tagConjuntoCinetico .tagTexto {
        padding-left: 40px;
    }
input:checked + .tagInterruptor .circuloTagNo {
  opacity: 0;
}
input:checked + .tagInterruptor .circuloTagSi {
  opacity: 1;
}

.subtagOverlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0);
  backdrop-filter: blur(0);
  transition: background-color 250ms linear;
  z-index: 200;
 -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
 -webkit-tap-highlight-color: transparent;
 -webkit-user-select: none;
 -khtml-user-select: none;
 -moz-user-select: none;
 -ms-user-select: none;
  user-select: none;
}
.subtagOverlay .closeOverlay {
  display: inline-block;
  position: absolute;
  top: 3px;
  right: -17px;
  top: -8px;
  right: -13px;
  font-size: 45px;
  width: 55px;
  height: 55px;
  z-index: 300;
  cursor: pointer;
  font-weight: lighter;
  background-color: white;
  border-radius: 50px;
  line-height: 55px;
  text-align: center;
  display: block;
  box-shadow: -6px 6px 20px 6px rgba(158, 158, 158, 0.6);
  transition: transform 0.3s ease;
  transform:scale(0.9);
}
.subtagOverlay .closeOverlay:hover {
  color: #e05458;
  transform:scale(1);
  box-shadow: -6px 6px 20px 6px rgba(226, 78, 78, 0.46);
}
.subtagOverlay .subtagContainer {
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 12px;
  background-color: white;
  padding: 12px;
  opacity: 0;
  transition: all 250ms ease-out;
}
.subtagOverlay .subtagScroll {
  overflow: auto;
  padding: 10px;
  width: 350px;
  max-width: 70vw;
  max-height: 60vh;
}
.subtagOverlay .subtag {
  display: block;
  font-size: 18px;
  height: 45px;
}
.subtagOverlay .subtag .subtagTexto {
  cursor: pointer;
}
.subtagOverlay .subtag .subtagCirculo {
  cursor: pointer;
  box-shadow: inset 2px 2px 3px rgba(0, 0, 0, 0.2);
  background-color: #f34e4d;
  border-radius: 100px;
  display: inline-block;
  width: 35px;
  height: 35px;
  overflow: hidden;
  vertical-align: middle;
  color: white;
  font-size: 16px;
  font-weight: bold;
  line-height: 35px;
  text-align: center;
  position: relative;
  margin-right: 5px;
  transition: background-color 300ms ease-in-out;
}
.subtagOverlay .subtag .subtagIndicador {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  transition: transform 300ms ease-in-out;
}
.subtagOverlay .subtag .subtagSi {
  transform: translate(0, -50px);
}
.subtagOverlay .subtag .subtagNo {
  transform: translate(0, 0);
}
.subtagOverlay input:checked + .subtag .subtagCirculo {
  background-color: #4dc373;
}
.subtagOverlay input:checked + .subtag .subtagTexto {
  font-weight: bold;
  color: black;
  border-bottom: 2px solid #4dc373;
}
.subtagOverlay input:checked + .subtag .subtagSi {
  transform: translate(0, 0);
}
.subtagOverlay input:checked + .subtag .subtagNo {
  transform: translate(0, 50px);
}
.subtagOverlay.visible {
  background-color: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
}
.subtagOverlay.visible .subtagContainer {
  opacity: 1;
  top: 50%;
}

.multiTags.modoResponsive .tagInterruptor {
  height: 38px;
  margin-bottom:2px;
  margin-bottom:2px;
}
.multiTags.modoResponsive .tagInterruptor .tagCirculo {
  width: 32px;
  height: 32px;
  line-height: 32px;
  font-size: 15px;
}
.multiTags.modoResponsive .tagInterruptor .tagConjuntoDimension {
  padding: 4px;
}
.multiTags.modoResponsive .tagInterruptor .tagTexto {
  padding-left: 43px;
  line-height: 38px;
  font-size: 16px;
}
.multiTags.modoResponsive .tagInterruptor .circuloTagNo {
  transform: translate3d(4px, -16px, 0);
}
.multiTags.modoResponsive .tagInterruptor .circuloTagSi {
  transform: translate3d(100%, -16px, 0);
}
.multiTags.modoResponsive .tagInterruptor .tagConjuntoCinetico .tagTexto {
  padding-left: 0px;
}
.multiTags.modoResponsive input:checked + .tagInterruptor .tagConjuntoCinetico .tagTexto {
    padding-left: 41px;
}
.multiTags.modoResponsive input:checked + .tagInterruptor .tagConjuntoCinetico {
  left: -31px;
}
.multiTags.modoResponsive .subtagOverlay .subtag {
  height: 47px;
}
