body a:active,
body a:focus {
    outline: none;
}

main {
    width: 100%;
    margin: 60px 0px;
}

section {
    width: 100;
}

section span {
  display: none;
  position: fixed;
  z-index: 100;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: rgb(0, 0, 0);
  background: rgba(0, 0, 0, 0.4);
}

section span p {
  padding: 40px 20px;
  box-sizing: border-box;
  background: rgb(254, 254, 254);
  background: rgba(254, 254, 254, 0.95);
  margin: 8% auto;
  /* 5% from the top, 15% from the bottom and centered */
  width: 40%;
  text-align: center;
  /* Could be more or less, depending on screen size */
  border: 1px solid #00b1cb;
  box-shadow: 0px 0px 5px rgba(0, 177, 203, .5);
  -webkit-animation: animatezoom 0.6s;
  animation: animatezoom 0.6s
}

section .compras {
    width: 100;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: stretch;
    margin: 30px 0px;
}

section .img {
    width: 25%;
}

section .txt {
    width: 40%;
    font-size: 18px;
}

section .target {
    width: 20%;
    padding-bottom: 20px;
}

section .pdf {
    width: 80%;
}

section .pdf iframe{
    width: 100%;
    height: 900px;
}

section .uno {
  display: none;
}

section .target ul {
  width: 100%;
  list-style-type: disc;
  box-sizing: border-box;
  padding: 0px 5px 0px 25px;
}

section .target ul li {
  text-align: left;
  margin: 10px 0px;
  line-height: 20px;
}

section .img {
    max-width: 353px;
}

section .img img {
    width: 100%;
    margin-bottom: 20px;
    border-radius: 10px;
    box-shadow: 2px 2px 10px rgba(0,0,0,.5)
}

section .img small {
    display: block;
    font-size: 1em;
    margin-bottom: 10px;
}

section .img select {
    width: 60%;
    display: block;
    font-size: .9em;
    padding: 5px 10px;
    border: 1px solid #00b1cb;
    background: #fff;
    color: #242424;
    border-radius: 2px;
    margin-bottom: 20px;
}

section .img a {
    display: block;
    margin-bottom: 20px;
    color: blue;
}

section .img .icon-help {
    margin-right: 15px;
    color: #424242;
}

section .txt {
    box-sizing: border-box;
    padding: 0 40px;
}

section .txt p {
    line-height: 30px;
    margin: 0px 0px;
    text-align: justify;
}

section h1 {


}

section .title {
    font-size: 1.5em;
    font-weight: bold;
    line-height: 25px;
    margin: 20px;
    text-align: center;
}

section .sub-title {
     font-size: 1.2em;
}

section .txt ul {
    margin-left: 40px;
}

section .txt ul li {
    list-style: square;
    margin: 20px;
}

section .target {
    background: #fff;
    border: 2px solid #00b1cb;
    border-radius: 5px;
    box-shadow: inset 0px 0px 5px rgba(0, 176, 203, 0.6),
        2px 2px 10px rgba(84, 84, 84, 0.3);
    text-align: center;
    font-size: 1.125em;
}

section .target small {
    font-size: 1.2em;
    display: block;
    margin: 20px 0px;
}

section .target .precio {
    font-size: 1.5em;
    margin-top: 20px;
    letter-spacing: 3px;
    text-decoration: none;
    color: black;
}

section .target .precioPromo {
    margin-top: 20px;
    letter-spacing: 3px;
    font-weight: bold;
}

section .target .incluye {
    font-weight: bold;
    text-align: left;
    margin-left: 20px;
}

section .target p {
    margin: 0px 20px;
    text-align: left;
    line-height: 23px;
    margin-bottom: 20px;
}

section .target .cantidad {
    margin: 0px 20px;
    margin-bottom: 40px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

section .target .cantidad small {
    margin: 0;
}

section .target .cantidad select {
    width: 50px;
    font-size: .9em;
    padding: 5px 10px;
    border: 1px solid #00b1cb;
    background: #fff;
    color: #242424;
    border-radius: 2px;
}

section .target a {
    width: 50%;
    margin-left: 25%;
    display: block;
    color: white;
    padding: 12px 5px;
    background: #00b1cb;
    border-radius: 2px;
    text-decoration: none;
}

aside {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: stretch;
}

section h1 {
    width: 100%;
    font-size: 3em;
    font-weight: bold;
    margin: 40px 0px;
    color: #00b1cb;
    text-align: center;
}


aside div {
    width: 17%;
    box-sizing: border-box;
    padding: 12px;
    margin: 0 2%;
    margin-bottom: 60px;
    border: 1px solid #dedede;
    border-radius: 2px;
    box-shadow: inset 0px 0px 5px rgba(139, 139, 136, 0.3),
        2px 2px 8px rgba(84, 84, 84, 0.3);
    text-align: center;
    transition: all .25s linear;
}

aside div:hover {
    transform: scale(1.15);
    border: 1px solid #00B0CB;
    box-shadow: inset 0px 0px 5px rgba(0, 176, 203, 0.6),
        2px 2px 8px rgba(0, 176, 203, 0.6);
}

aside div img {
    width: 100%;
    margin-bottom: 20px;
    border-radius: 10px;
}

aside div h6 {
    font-size: 1em;
    font-weight: bold;
    margin-bottom: 10px;
}

aside div p {
    line-height: 23px;
}

aside div a,
aside div button{
    font-family: 'Myriad Pro', serif;
    font-size: 16px;
    line-height: 16px;
    display: inline-block;
    padding: 10px 20px;
    margin: 15px;
    color: white;
    border: none;
    border-radius: 2px;
    background: #00b1cb;
    text-decoration: none;
    transition: all .2s ease;
}

aside div a:hover,
aside div button:hover{
    background: #BE0052;
}

@media screen and (max-width: 1024px) {
    section .img {
        width: 35%;
    }

    section .txt {
        width: 50%;
        padding: 0;
    }

    section .target {
        width: 30%;
        margin: 20px 0;
    }

    section .target a {
        margin-bottom: 30px;
    }

    aside div {
        width: 25%;
    }

}

@media screen and (max-width: 680px) {
    section .img {
        width: 55%;
        order: 1;
    }

    section .target {
        width: 35%;
        margin: 0;
        order: 2;
    }

    section .txt {
        width: 90%;
        padding: 0;
        margin-top: 20px;
        order: 3;
    }

    aside div {
        width: 45%;
    }

}

@media screen and (max-width: 480px) {
    main {
        margin: 0;
        margin-top: 20px;
    }

    section .img {
        width: 90%;
        order: 1;
    }

    section .img img {
        width: 100%;
    }

    section .target {
        width: 90%;
        margin: 0;
        order: 2;
    }

    aside div {
        width: 90%;
    }

    aside div:hover {
        transform: scale(1.08);
    }

}
