.section__TyCs {
  background-color: var(--white);
  padding-bottom: 24px;
}
.section__TyCs .TyCs {
  width: 94%;
  max-width: 1170px;
}
.TyCs {
  margin: 0 auto 20px;
  max-width: 1170px;
  color: #50535A;
}

.section__TyCs .TyCs__title {
  font-size: clamp(20px, 2vw, 24px);
  font-family: var(--f4);
  font-weight: bold;
  line-height: 1.2;
  margin: 0 0 30px;
  text-align: left;
  color: #1E1E1E;
}
.section__TyCs .TyC {
  width: 100%;
  background: #ffffff;
  padding: 10px 0 !important;
  margin-top: 10px;
  border-bottom: 1px solid #eeeeee;
  cursor: pointer;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  box-shadow: none !important;
}
.i-TyC__arrow::before {
  font-family: "new-ico-logos-movistar", Arial, Helvetica, sans-serif !important;
  content: "\ea0a";
  color: var(--blue);
  transform: rotate(0deg);
  transition: all 0.5s;
  display: block;
}
.TyC.active .i-TyC__arrow::before {
  transform: rotate(-180deg);
  -webkit-transform: rotate(-180deg);
  -moz-transform: rotate(-180deg);
  -ms-transform: rotate(-180deg);
  -o-transform: rotate(-180deg);
}
.TyC__question {
  width: calc(100% - 40px);
  font-size: 17px;
  font-weight: normal;
  margin: 0;
}
.section__TyCs .TyC__answer {
  padding: 20px 20px 20px 0;
  display: none;
  background-color: #fff !important;
}
.TyC__answer p,
.TyC__answer li {
  font-size: 16px;
  margin: 0 0 10px;
}
.TyC__answer li {
  list-style: none;
  position: relative;
  padding-left: 15px;
}
.TyC__answer li::after {
  content: "";
  position: absolute;
  top: 8px;
  left: 0;
  width: 5px;
  height: 5px;
  background-color: #019df4;
  border-radius: 50px;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  -ms-border-radius: 50px;
  -o-border-radius: 50px;
}
.TyC__answer a {
  color: var(--white) !important;
  background-color: var(--blue);
  padding: 6px 12px;
  border-radius: 20px;
}

@media only screen and (min-width: 768px) {
  .section__TyCs {
    padding: 40px 20px;
  }
  .TyCs__title br {
    display: none;
  }
  .TyC__question {
    font-size: 18px;
  }
}
