.rrss {
  position: sticky;
  background-color: white;
  top: 50vh;
  right: 0px;
  border: 1px solid #D7D7D7;
  border-right: 0px;
  z-index: 110;
  transition: .3s ease-in-out;
  padding: 10px;
  float: right;
}

.rrss__lista {
  display: flex;
  flex-direction: column-reverse;
  justify-content: center;
  align-content: center;
  gap: 20px;
}

.rrss__elemento {
  display: flex;
}

.rrss__enlace {
  display: flex;
  justify-content: center;
  align-content: center;
}

.rrss__icono path {
  fill: #969594;
  transition: .3s;
}

.rrss__icono:hover path {
  fill: #97001A;
}

.resumen__contenedor {
  background-color: #F3F2F1;
}

.resumen__elementos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-content: space-around;
  gap: 10px;
  padding: 20px 16px;
}

.resumen__elemento {
  border: solid 1px #D7D7D7;
  text-align: center;
  padding: 10px;
  background-color: white;
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-direction: column;
  height: 100px;
  min-width: 190px;
}

.resumen__epigrafe {
  color: #333333;
  font-size: 13px;
  line-height: 13px;
  font-family: "Guardian TextSans Medium", sans-serif;
  text-transform: uppercase;
}

.resumen__precio {
  color: #000000;
  font-family: "Guardian Sans Semibold", sans-serif;
  font-size: 26px;
  line-height: 26px;
}

.resumen__fecha {
  color: #646566;
  font-size: 13px;
  line-height: 13px;
  font-family: "Guardian TextSans Medium", sans-serif;
  text-transform: uppercase;
}


.resumen__precio--barato,
.resumen__fecha--barato {
  color: #258B4E;
}

.resumen__precio--caro,
.resumen__fecha--caro {
  color: #97001A;
}

.resumen__directo::before {
  border-radius: 62.5rem;
  display: inline-block;
  position: relative;
  width: .75em;
  height: .75em;
  content: '';
  margin-right: 6px;
  vertical-align: initial;
  animation: live-pulse 1s infinite;
  background-color: #cbcbcb;
}

@keyframes live-pulse {
  0% {
    opacity: 1;
  }

  10% {
    opacity: .25;
  }

  40% {
    opacity: 1;
  }

  100% {
    opacity: 1;
  }
}

.v__p--verde {
  color: #258B4E;
  background-color: #e6f3e0;
  padding: 0px 6px 2px 6px;
}

.v__p--rojo {
  color: #97001A;
  background-color: #FCEFF2;
  padding: 0px 6px 2px 6px;
}

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

.precios .tbl {
  width: 100%;
  color: #000000;
  font-size: 14px;
  line-height: 18px;
  border-bottom: 2px solid #000;
}

.precios .tbl__c--h {
  border-bottom: 2px solid #000;
  height: 38px;
  text-align: center;
  font-family: "Guardian TextSans Medium", sans-serif;
  color: #202020;
  font-weight: normal;
}

.precios .tbl__r {
  border-bottom: 1px solid #D7D7D7;
  height: 38px;
  text-align: center;
  transition: all 0.3s ease;
}

.precios .tbl__r--verde {
  background-color: #e6f3e0;
}

.precios .tbl__r--verde.tbl__r--seleccionado {
  border: 2px solid #258B4E
}

.precios .tbl__r--amarillo {
  background-color: #fcf8e3;
}

.precios .tbl__r--amarillo.tbl__r--seleccionado {
  border: 2px solid #FFD200;
}

.precios .tbl__r--rojo {
  background-color: #FCEFF2;
}

.precios .tbl__r--rojo.tbl__r--seleccionado {
  border: 2px solid #97001A;
}

.precios .tbl__r {
  text-align: center;
}

.precios .tbl__c {
  text-align: center;
}

.precios .tbl__c:first-child {
  font-weight: bold;
}

.precios .tbl__caption {
  margin: 14px 0;
  text-align: left;
  caption-side: bottom;
  font-size: 12px;
  line-height: 120%;
  letter-spacing: .12px;
  color: #6B6B6B;
  font-family: "IBM Plex Serif Regular", serif;
}

.datos__destacado {
  margin-top: 10px;
  color: #202020;
  font-size: 16px;
  line-height: 140%;
  font-family: "Guardian TextSans Medium", sans-serif;
}

.datos__texto {
  color: #6B6B6B;
  font-size: 16px;
  line-height: 140%;
}


@media screen and (max-width:768px) {

  .resumen__contenedor {
    padding: 10px;
  }

  .resumen__elementos {
    padding: 0px;
  }

  .resumen__elemento {
    padding: 8px;
    height: 80px;
    min-width: 140px;
  }

  .resumen__epigrafe {
    font-size: 11px;
    line-height: 11px;
  }

  .resumen__precio {
    font-size: 18px;
    line-height: 18px;
  }

  .resumen__fecha {
    font-size: 11px;
    line-height: 11px;
  }

}

@media screen and (min-width:768px) {
  .resumen__elemento:nth-child(2) {
    order: 4;
  }
}