/* -------------------------------- 

Primary style

-------------------------------- */
*, *::after, *::before {
  box-sizing: border-box;
}

::-moz-selection { /* Code for Firefox */
  color: #fffaef; 
  background: #ff525a;
}

::selection {
  color: #fffaef; 
  background: #ff525a;
}

html {
    scroll-behavior: smooth;
    font-size: 1em;
}

body {
  font-family: 'Raleway', sans-serif;
  color: #281c00;
    font-size: 1em;
    font-weight: 400;
    line-height: 1.2;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
    background-color: #fffaef; 
}
b {
  font-weight: 600;
}
i {
  font-style: italic;
}

/* -------------------------------- 

Auto-Hiding Navigation

-------------------------------- */
.cd-auto-hide-header {
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  width: 100%;
  height: 70px;
  background-color: #fffaef;
  /* Force Hardware Acceleration */
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
  will-change: transform;
  -webkit-transition: -webkit-transform .5s;
  transition: -webkit-transform .5s;
  transition: transform .5s;
  transition: transform .5s, -webkit-transform .5s;
}
.cd-auto-hide-header::after {
  clear: both;
  content: "";
  display: block;
}
.cd-auto-hide-header.is-hidden {
  -webkit-transform: translateY(-100%);
      -ms-transform: translateY(-100%);
          transform: translateY(-100%);
}

.cd-auto-hide-header .logo,
.cd-auto-hide-header .nav-trigger {
  position: absolute;
  top: 50%;
  bottom: auto;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}

.cd-auto-hide-header .logo {
  left: 5%;
    width: 265px;
    height: 28px;
    background-image: url("../img/TTP_logo.png");
    background-size: 265px;
}

.cd-auto-hide-header .nav-trigger {
  /* vertically align its content */
  display: flex;
  height: 100%;
  padding-right: 5%;
  right: 0;
}
.cd-auto-hide-header .nav-trigger span {
  /* vertically align inside parent element */
  display: flex;
    align-items: center;
}
.cd-auto-hide-header .nav-trigger em, .cd-auto-hide-header .nav-trigger em::after, .cd-auto-hide-header .nav-trigger em::before {
  /* this is the menu icon */
  display: block;
  position: relative;
  height: 2px;
  width: 30px;
  background-color: #25283D;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}
.cd-auto-hide-header .nav-trigger em::before, .cd-auto-hide-header .nav-trigger em::after {
  position: absolute;
  content: '';
  left: 0;
  -webkit-transition: -webkit-transform .2s;
  transition: -webkit-transform .2s;
  transition: transform .2s;
  transition: transform .2s, -webkit-transform .2s;
}
.cd-auto-hide-header .nav-trigger em::before {
  /* this is the menu icon top line */
    width: 26px;
  -webkit-transform: translateY(-10px);
      -ms-transform: translateY(-10px);
          transform: translateY(-10px);
}
.cd-auto-hide-header .nav-trigger em::after {
  /* this is the menu icon bottom line */
    width: 26px;
  -webkit-transform: translateY(10px);
      -ms-transform: translateY(10px);
          transform: translateY(10px);
}
@media only screen and (min-width: 1100px) {
  .cd-auto-hide-header .nav-trigger {
    display: none;
  }
}

.cd-auto-hide-header.nav-open .nav-trigger em {
  /* transform menu icon into a 'X' icon */
  background-color: rgba(255, 255, 255, 0);
}
.cd-auto-hide-header.nav-open .nav-trigger em::before {
  /* rotate top line */
  -webkit-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.cd-auto-hide-header.nav-open .nav-trigger em::after {
  /* rotate bottom line */
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
}

.cd-primary-nav {
  display: inline-block;
  float: right;
  height: 100%;
  padding-right: 5%;
}
.cd-primary-nav > ul {
  position: absolute;
  z-index: 2;
  top: 70px;
  left: 0;
  width: 100%;
  background-color: #fffaef;
  display: none;
  box-shadow: 0 5px 5px rgba(0, 0, 0, 0.1);
}
.cd-primary-nav > ul a {
  /* target primary-nav links */
    display: flex;
    align-items: center;
    justify-content: center;
    height: 60px;
    padding: .5em;
    border-top: solid 1px #ddd; 
    color: #281c00;
    text-decoration: none;
    text-align: center;
    transition: none;
}
.cd-primary-nav > ul a.area {
    background-color: #ff525a;
    color: #fffaef;
    font-weight: 600;
    background-image: url("../img/area_cliente_icono.png");
    background-size: 20px 22px;
    background-position: left .6em center;
    background-repeat: no-repeat;
    padding: .4em;
    transition: none;
    border-top: inherit;
}

@media only screen and (min-width: 1100px) {
.cd-auto-hide-header {
    height: 100px;
}
.cd-auto-hide-header .logo {
    width: 378px;
    height: 40px;
    background-size: 378px;
}
  .cd-primary-nav {
    /* vertically align its content */
    display: flex;
      align-items: center;
  }
  .cd-primary-nav > ul {
    display: flex;
    /* reset mobile style */
    position: relative;
    width: auto;
    top: 0;
    padding: 0;
    background-color: transparent;
    box-shadow: none;
  }
  .cd-primary-nav > ul::after {
    clear: both;
    content: "";
    display: block;
  }
  .cd-primary-nav > ul li {
    display: flex;
    float: left;
    margin-right: 1.5em;
  }
  .cd-primary-nav > ul li:last-of-type {
    margin-right: 0;
  }
  .cd-primary-nav > ul a {
    /* reset mobile style */
    height: auto;
    line-height: normal;
    border: none;
    transition: color .3s ease;
}
.cd-primary-nav > ul a:hover, .cd-primary-nav > ul a.active {
  color: #ff525a;
}
.cd-primary-nav > ul a.area {
    padding: .5em .6em .5em 38px;
    border-radius: 5px;
    transition: background .3s ease;
    color: #fffaef;
}
.cd-primary-nav > ul a.area:hover {
    background-color: #f0525a;
}

}

.nav-open .cd-primary-nav ul,
.cd-primary-nav ul:target {
  /* 
  	show primary nav - mobile only 
  	:target is used to show navigation on no-js devices
  */
  display: block;
}
@media only screen and (min-width: 1100px) {
  .nav-open .cd-primary-nav ul,
  .cd-primary-nav ul:target {
    display: table-cell;
  }
}



/* -------------------------------- 

Main content

-------------------------------- */

.bloqueprincipal {
    width: 100%;
    height: 100vh;
    background-color: #281c00;
    display: flex;
    flex-direction: column;
}
.bloqueprincipal h1.padded-multiline {
    font-family: 'playfair display';
    font-weight: 600;
    font-size: 3em;
    z-index: 2;
    background-color: transparent;
    padding: 0;
    margin-bottom: 0;
}  
.padded-multiline {  
  width: 350px;
    position: absolute;
    top: 32vh;
    left: 5%;
}
.padded-multiline span { 
  background-color: #ff525a;
  color: #fffaef;
  display: inline;
  padding: 0rem 0.8rem 0.5rem 0.8rem;
    border-radius: 5px;
  
  /* Needs prefixing */
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

.bloqueprincipal img {
    width: 100%;
    height: calc(100vh - 260px);
    opacity: 0.7;
    object-fit: cover;
    display: block;
}
.bloquedefinicion {
    width: 100%;
    height: 260px;
    padding: 0 5%;
    background-color: #281c00;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.bloquedefinicion h2 {
    font-size: 1.875em;
    color: #ff525a;
    max-width: 590px;
    padding-left: 16px;
    border-left: dotted 1px #fffaef;
}
.bloquedefinicion h2 span {
    font-weight: 600;
    color: #fffaef;
}
a.botondescarga {
    font-size: 1.25em;
    font-weight: 600;
    color: #fffaef;
    text-decoration: none;
    padding: .6em 3.8em .6em .8em;
    margin-right: .5em;
    border-radius: 5px;
    transition: background .3s ease;
    background-color: #ff525a;
    position: relative;
}
a.botondescarga:hover {
    background-color: #f0525a;
}
i.iconodescarga {
    width: 70px;
    height: 70px;
    background-color: #fffaef;
    border-radius: 40px;
    position: absolute;
    margin-top: -1.15em;
    margin-left: .8em;
    background-image: url("../img/flecha_descarga_icono.png");
    background-size: 21px 40px;
    background-position: center center;
    background-repeat: no-repeat;
    transition: background .3s ease;
}
a.botondescarga:hover i.iconodescarga {
    background-position: center bottom 12px;
}
.bloqueclaro {
    width: 100%;
    background-color: #fffaef;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 90px 5%;
}
.bloqueclaro h2 {
    font-family: 'playfair display';
    font-weight: 600;
    font-size: 1.5em;
    padding: 3px;
    background-color: #ff525a;
    color: #fffaef;
    border-radius: 5px;
    margin-bottom: 20px;
}
.bloqueclaro p {
    font-size: 1.5em;
    max-width: 1100px;
}
.bloqueoscuro {
    width: 100%;
    background-color: #281c00;
    display: flex;
    flex-direction: column;
    padding: 50px 5% 60px 5%;
}
.bloqueoscuro h2 {
    font-family: 'playfair display';
    font-weight: 600;
    font-size: 1.5em;
    color: #ff525a;
    margin-bottom: 30px;
}
.columnas {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    grid-gap: 5%;
    grid-row-gap: 5vw;
}
.coltercio {
    width: 30%;
}
.colmitad {
    width: 47.5%;
}
.coldostercios {
    width: 65%;
}
.personatestimonio {
    padding-left: 10px;
    border-left: dotted 1px #fffaef;
    margin-bottom: 10px;
}
.nombre {
    font-family: 'playfair display';
    font-weight: 600;
    font-size: 1.5em;
    color: #fffaef;
}
.cargo {
    color: #ff525a;
    font-size: 1.125em;
    font-style: italic;
}
.testimonio {
    font-size: 1.125em;
    background-color: #fffaef;
    padding: 10px;
    border-radius: 5px;
    display: flex;
    flex-direction: column;
    grid-gap: 1em;
}
.bloqueproductos {
    width: 100%;
    background-color: #fffaef;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 50px 5% 20px 5%;
}
.bloqueproductos h2 {
    font-family: 'playfair display';
    font-weight: 600;
    font-size: 1.5em;
    color: #281c00;
    margin-bottom: 40px;
}
.bloqueproductos h3 {
    font-weight: 600;
    font-size: 1.5em;
    padding: 3px;
    background-color: #ff525a;
    color: #fffaef;
    border-radius: 5px;
    z-index: 1;
}
.bloqueviajes {
    width: 100%;
    padding: 50px 0 50px 0;
    border-top: dotted 1px #ff525a;
    border-bottom: dotted 1px #ff525a;
    margin-top: -17px;
}
.miniaturaviaje {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background-color: #281c00;
    border-radius: 5px;
    overflow: hidden;
}
.miniaturaviaje p {
    position: absolute;
    font-weight: 600;
    font-size: 1.5em;
    text-align: center;
    padding: 3px;
    background-color: #281c00;
    color: #fffaef;
    border-radius: 5px;
    margin: 5%;
    z-index: 1;
}
.miniaturaviaje img {
    aspect-ratio: 4/3;
    width: 100%;
    object-fit: cover;
    border-radius: 5px;
    opacity: 1;
    transform: scale(1);
    transition: all .5s ease;
}
.miniaturaviaje:hover.miniaturaviaje img {
    opacity: 0.8;
    transform: scale(1.02);
}
.bloquerestoproductos {
    width: 100%;
    padding: 50px 0 50px 0;
}
.miniaturaresto {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background-color: #ff525a;
    border-radius: 5px;
    overflow: hidden;
}
.miniaturaresto p {
    position: absolute;
    font-weight: 600;
    font-size: 1.5em;
    text-align: center;
    padding: 3px;
    background-color: #ff525a;
    color: #fffaef;
    border-radius: 5px;
    margin: 5%;
    z-index: 1;
}
.miniaturaresto img {
    aspect-ratio: 2/1;
    width: 100%;
    object-fit: cover;
    border-radius: 5px;
    opacity: 1;
    transform: scale(1);
    transition: all .5s ease;
}
.miniaturaresto:hover.miniaturaresto img {
    opacity: 0.8;
    transform: scale(1.02);
}
.bloquerojo {
    width: 100%;
    background-color: #ff525a;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 100px 10%;
    background-image: url("../img/foto_suscripcion.jpg");
    background-size: 487px 330px;
    background-position: bottom right 10vw;
    background-repeat: no-repeat;
}
.bloquerojo h2 {
    font-weight: 600;
    font-size: 1.5em;
    color: #fffaef;
}
.tituloguia {
    font-family: 'playfair display';
    font-weight: 600;
    font-size: 2.5em;
    color: #281c00;
    margin-top: 20px;
    padding-left: 10px;
    border-left: dotted 1px #fffaef;
}
.bloquecorreo {
    display: flex;
    width: 100%;
    margin-top: 60px;
}
.campocorreo {
    font-family: 'Raleway', sans-serif;
	font-size: 16px;
    color: #333333;
    background-color: #fffaef;
	height: 42px;
    padding-left: 14px;
	width: 100%;
    max-width: 410px;
    border-radius: 5px;
    border: none;
    outline: none;
    margin-right: 25px
}
.campocorreo:focus {
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}
.boton {
    font-family: 'Raleway', sans-serif;
    color: #fffaef;
    font-size: 20px;
    font-weight: 600;
    padding: 5px 20px;
    background-color: #281c00;
    border-radius: 5px;
    text-decoration: none;
    transition: background .3s ease;
    cursor: pointer;
	border: none;
	outline: none;
}
.boton:hover {
    background-color: #322710;
}
footer {
    width: 100%;
    background-color: #281c00;
    padding: 100px 5%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.logofooter {
	height: 97.5px;
	width: 120px;
	background-image: url(../img/TTP_logo_footer.png);
    background-size: 120px;
    margin-top: -28px;
}
footer ul {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    grid-gap: 6px;
}
footer ul li a {
    color: #ff525a;
}
footer ul li a:hover {
    text-decoration: none;
}
.bloquelistado {
    width: 100%;
    background-color: #fffaef;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 150px 5% 20px 5%;
}
.bloquelistado h2 {
    font-weight: 600;
    font-size: 1.5em;
    padding: 3px;
    background-color: #ff525a;
    color: #fffaef;
    border-radius: 5px;
    z-index: 1;
}
.cabeceraviaje {
    width: 100%;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}
.cabeceraviaje h1 {
    position: absolute;
    font-weight: 600;
    font-size: 2.25em;
    text-align: center;
    padding: 5px;
    background-color: #281c00;
    color: #fffaef;
    border-radius: 5px;
    margin: calc(5% + 100px) 5% 5% 5%;
    z-index: 1;
}
.cabeceraviaje img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.detallesviaje {
    width: 90%;
    max-width: 1280px;
    margin: 60px auto 100px auto;
}
.detallesviaje h2 {
    font-size: 1.5em;
    font-weight: 600;
    color: #ff525a;
    margin-bottom: 1em;
}
.detallesviaje p {
    font-size: 1.125em;
    margin-bottom: 1em;
}
.detallesviaje p:last-of-type {
    margin-bottom: 0;
}
.cuadrodetalle {
    width: 100%;
    color: #ff525a;
    padding: 1em;
    margin-bottom: 1em;
    border-radius: 5px;
    border: solid 1px #281c00;
}
.cuadrodetalle p {
    margin-bottom: 0;
}
.cuadrodetalle p.dato {
    font-weight: 600;
    color: #281c00;
}
.botoncomprar {
    font-size: 1.5em;
    font-weight: 600;
    display: block;
    width: 100%;
    background-color: #ff525a;
    color: #fffaef;
    padding: 15px;;
    margin-top: 1em;
    border-radius: 5px;
    text-decoration: none;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: background .3s ease;
}
.botoncomprar:hover {
    background-color: #f0525a;
}
i.iconomas {
    width: 40px;
    height: 40px;
    background-color: #fffaef;
    border-radius: 20px;
    background-image: url("../img/mas_icono.png");
    background-size: 30px 30px;
    background-position: center center;
    background-repeat: no-repeat;
    transition: all .3s ease;
}
.botoncomprar:hover i.iconomas {
    border-radius: 5px;
}
.buscador {
    width: 100%;
    height: 100vh;
    background-color: #fffaef;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0 5%;
}
.logotts {
    width: 338.5px;
    height: 40px;
    background-image: url("../img/TTs_logo.png");
    background-size: 338.5px;
}
.buscador h1 {
    max-width: 90%;
    font-family: 'playfair display';
    font-size: 1.125em;
    font-weight: 600;
    margin-top: 35px;
    padding-top: 10px;
    border-top: dotted 1px #ff525a;
    text-align: center;
}
.barrabuscar {
	height: 50px;
    width: 90%;
    max-width: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin: 6vh 0;
}
.campobuscar {
    font-family: 'raleway';
	font-size: 1em;
    color: #333333;
	height: 50px;
	padding-left: 15px;
	width: 100%;
    border-radius: 5px;
    border: solid 1px #ff525a;
    outline: none;
}
.campobuscar:focus {
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
}
.botonbuscar {
	height: 50px;
	width: 50px;
	cursor: pointer;
	border: none;
	outline: none;
    border-radius: 5px;
	transition: background 0.3s ease;
    background-color: #ff525a;
    right: 0;
    position: absolute;
    background-image: url(../img/boton-buscar.png);
    background-size: 23px;
    background-position: center;
    background-repeat: no-repeat;
}
.botonbuscar:hover {
	background-color: #f0525a;
}
.bloquetiposingredientes {
    width: 90%;
    display: flex;
    align-items: center;
    justify-content: center;
    grid-gap: 2.5vh;
    flex-wrap: wrap;
}
p.indicacion {
    font-weight: 600;
    margin-bottom: 2em;
    text-align: center;
    color: #ff525a;
}
.tipoingrediente {
    width: 120px;
    padding: 1em;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1em;
    border-radius: 5px;
    transition: background .3s ease;
    cursor: pointer;
    box-sizing: content-box;
}
.tipoingrediente:hover {
    background: #ecebe8;
}
.tipoingrediente img {
    width: 100%;
    object-fit: cover;
    border-radius: 5px;
}
.tipoingrediente p {
    font-size: 1.125em;
    font-weight: 600;
    text-align: center;
    margin-top: .75em;
}
.resultado {
    width: 90%;
    margin: 0 auto;
    padding: 150px 0 100px 0;
    display: flex;
    justify-content: space-between;
}
.resultadoizq {
    display: flex;
    flex-direction: column;
    width: calc(100% - 320px);
}
.fichaingrediente {
    width: 100%;
    max-width: 840px;
    margin-bottom: 6em;
}
.fichaingrediente h1 {
    font-size: 1.5em;
    font-weight: 600;
    color: #ff525a;
    padding-bottom: 5px;
    border-bottom: dotted 1px #ff525a;
    margin-bottom: 1em;
}
.resultado h2 {
    font-size: 1.125em;
    font-weight: 600;
    margin-bottom: 1em;
}
.fichaingrediente img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 5px;
    margin-bottom: 2em;
}
.recetas {
    display: flex;
    grid-gap: 2vh;
    flex-wrap: wrap;
}
.receta {
    font-size: 1.125em;
    font-weight: 600;
    display: block;
    width: 350px;
    height: 80px;
    background-color: #ff525a;
    color: #fffaef;
    padding: 15px 70px 15px 15px;
    border-radius: 5px;
    text-decoration: none;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: background .3s ease;
}
.receta:hover {
    background-color: #f0525a;
}
i.iconover {
    position: absolute;
    right: 15px;
    width: 40px;
    height: 40px;
    background-color: #fffaef;
    border-radius: 20px;
    background-image: url("../img/ver_icono.png");
    background-size: 28px 15.25px;
    background-position: center center;
    background-repeat: no-repeat;
    transition: all .3s ease;
}
.receta:hover i.iconover {
    border-radius: 5px;
}
.combinaciones {
    display: flex;
    flex-direction: column;
    width: 290px;
    padding-left: 30px;
    margin-left: 30px;
    border-left: dotted 1px #ff525a;
}
.combinaciones img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 5px;
    margin-top: 2em;
    margin-bottom: 1em;
}
.bloquereceta {
    width: 90%;
    max-width: 840px;
    margin: 0 auto;
    padding: 150px 0 100px 0;
    display: flex;
    flex-direction: column;
}
.bloquereceta h1 {
    font-size: 1.5em;
    font-weight: 600;
    color: #ff525a;
    padding-bottom: 5px;
    border-bottom: dotted 1px #ff525a;
    margin-bottom: 1em;
}
.bloquereceta img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 5px;
}
.bloquereceta h2 {
    font-size: 1.125em;
    font-weight: 600;
    margin-top: 2em;
    margin-bottom: 1em;
}
.bloquereceta p {
    margin-bottom: 1em;
}
.bloquereceta ul {
    color: #ff525a;
    list-style-type: '>';
    margin-left: 8px;
    font-weight: 600;
}
.bloquereceta ul li {
    padding-left: 5px;
    line-height: 1.4;
}
.bloquereceta ul li p {
    color: #281c00;
    margin-bottom: 0;
    
}

/******************Mediaquerys*******************/

@media only screen and (max-width: 1480px) {
.bloquerojo {
    padding: 100px 5%;
    background-size: 432px;
    background-position: bottom right 5vw;
}
    }

@media only screen and (max-width: 1250px) {
.bloquerojo {
    background-image: none;
}
.buscador {
    height: auto;
    padding: 120px 5% 50px 5%;
}
    }

@media only screen and (max-width: 1100px) {
    
.bloqueprincipal {
    height: auto;
}
.bloqueprincipal img {
    height: 100vh;
}
.padded-multiline {  
    top: 40vh;
}
.bloquedefinicion {
    height: auto;
    padding: 90px 5%;
    align-items: flex-start;
    flex-direction: column;
    gap: 50px;
}
.bloquelistado {
    padding: 110px 5% 20px 5%;
}
.cabeceraviaje {
    height: 450px;
}
.cabeceraviaje h1 {
    font-size: 1.825em;
    margin: calc(5% + 70px) 5% 5% 5%;
}
.cabeceraviaje img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.bloquereceta {
    padding: 100px 0 100px 0;
}
    }

@media only screen and (max-width: 900px) {
    
.columnas {
    flex-direction: column;
    grid-gap: 50px
}
.coltercio {
    width: 100%;
}
.colmitad {
    width: 100%;
}
.coldostercios {
    width: 100%;
}
.miniaturaresto img {
    aspect-ratio: 1/1;
}
.bloquetiposingredientes {
    grid-gap: 1.5vh;
}
.tipoingrediente {
    width: 60px;
}
.tipoingrediente p {
    font-size: 1em;
}
.resultadoizq {
    display: flex;
    flex-direction: column;
    width: calc(100% - 230px);
}
.combinaciones {
    width: 200px;
}
.combinaciones img {
    height: 150px;
}
    }


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

.bloqueprincipal h1.padded-multiline {
    font-size: 2.825em;
}  
.bloquedefinicion {
    padding: 40px 5%;
    gap: 30px;
}
.bloquedefinicion h2 {
    font-size: 1.5em;
}
a.botondescarga {
    font-size: 1.125em;
    padding: .6em 3.8em .6em .8em;
    margin-right: .5em;
}
i.iconodescarga {
    width: 60px;
    height: 60px;
    margin-top: -1.08em;
}
a.botondescarga:hover i.iconodescarga {
    background-position: center bottom 10px;
}
.bloqueclaro {
    padding: 40px 5%;
}
.bloquerojo {
    padding: 60px 5%;
}
.tituloguia {
    font-size: 1.825em;
}
.bloquecorreo {
    flex-direction: column;
    align-items: flex-start;
    margin-top: 40px;
}
.campocorreo {
    margin-bottom: 16px
}
.cabeceraviaje h1 {
    font-size: 1.5em;
    padding: 3px;
}
.detallesviaje p {
    font-size: 1em;
}
.resultado {
    flex-direction: column;
    grid-gap: 6em;
}
.resultadoizq {
    width: 100%;
}
.combinaciones {
    width: 100%;
    padding-left: 0;
    margin-left: 0;
    border-left: none;
}
    }

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

a.botondescarga {
    font-size: 1em;
}
i.iconodescarga {
    margin-top: -1.275em;
}
.logotts {
    width: 300px;
    height: 35.5px;
    background-size: 300px;
}
.buscador h1 {
    margin-top: 25px;
}
.receta {
    width: 100%;
}
    }

@media screen and (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}
}
