*, html{
    padding: 0px;
    margin: 0px;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}
sup{
    font-size: 60%;
    line-height: 0px;
}

.header{
    background: #3a3a3aff;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}
.header img{
    width: 100px;
}

/*POPUP*/
.popup-overlay {
    background: #fbebeddb;
    width: 100%;
    height: 100vh;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.popup {
    background: #fff;
    border-radius: 10px;
    padding:50px 40px;
    margin: auto;
    max-width: 500px;
    box-shadow: 0px 0px 11px 0px rgb(147 146 146 / 15%);
}
.popup-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.p-title {
    font-size: 22px;
    padding-bottom: 8px;
    text-align: center;
    font-weight: 500;
    color: #af2938;
}
.p-txt {
    text-align: center;
    font-size: 18px;
    line-height: 130%;
    font-weight: 300;
    padding-bottom: 20px;
}
.btn-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    width: 100%;
}
button.ok {
    display: block;
    text-transform: uppercase;
    background: #af2938;
    padding: 12px 25px;
    border-radius: 3px;
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: 0.4s;
    border: 0px;
    cursor: pointer;
    margin-right: 10px;
    width: 50%;
}
button.ok:hover{
    background: #e30e7eff; 
}
button.ko {
     display: block;
    text-transform: uppercase;
    background: #af2938;
    padding: 12px 25px;
    border-radius: 3px;
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: 0.4s;
    border: 0px;
    cursor: pointer;
    width: 50%;
}
button.ko:hover{
    background: #e30e7eff; 
}
.ko-message{
    display: none;
}
.body {
    overflow: hidden;
    height: 100vh;
}
.show{
    overflow: auto;
    height: inherit;
}

/*SECTION I*/
.background{
    background: url(https://image.s.grunenthal.com/lib/fe3d15707564047e7d1575/m/1/backgrond-pink.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width: 100%;
    height: fit-content;
}
.overlay{
    background: rgb(255 255 255 / 49%);
    width: 100%;
    height: 100%;
}
.wrapper{
    width: 100%;
    margin: 0 auto;
    max-width: 1200px;
    padding: 20px;
}
a.container {
    text-decoration: none;
}
.two-cols {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.img-container {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50%;
}
.img-container img {
    display: block;
    width: 300px;
}
img.pecfent{
    width: 250px;
}
.section-1 .one-col p{
    text-align: center;
    color: #af2938;
    font-size: 30px;
    line-height: 160%;
    font-weight: 500;
    max-width: 900px;
    padding: 40px 0px 50px;
    margin: auto;
}

/*SECTION 2*/
.section-2{
    padding: 30px 0px;
}
img.image-block2{
    width: 400px;
}
.text-container{
    width: 50%;
    display: flex;
    flex-direction: column;
}
.txt {
    font-size: 21px;
    font-weight: 300;
    line-height: 140%;
    color:#000;
}
.txt span{
    font-weight: 600;
    color: #af2938;
}

/*SECTION 3*/
.section-3{
    background: #f8e0e3ff;
    padding:30px 0px;
}
img.image-block3{
    width: 250px;
}
.title {
    font-size: 30px;
    color: #af2938;
    font-weight: 600;
    padding-bottom: 10px;
    line-height: 140%;
}
.section-3 .txt {
    font-size: 25px;
    max-width: 400px;
    padding-bottom:10px;
}
.btn {
    display: block;
    width: fit-content;
    text-transform: uppercase;
    background: #e30e7eff;
    padding: 12px 25px;
    border-radius: 100px;
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: 0.4s;
}
.btn:hover{
    background: #af2938;
    transform: scale(1.02);
}
.shake-vertical {
 -webkit-animation: shake-vertical 10s cubic-bezier(0.455, 0.030, 0.515, 0.955) infinite both;
         animation: shake-vertical 10s cubic-bezier(0.455, 0.030, 0.515, 0.955) infinite both;
}
@-webkit-keyframes shake-vertical {
  0%,
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  10%,
  30%,
  50%,
  70% {
    -webkit-transform: translateY(-8px);
            transform: translateY(-8px);
  }
  20%,
  40%,
  60% {
    -webkit-transform: translateY(8px);
            transform: translateY(8px);
  }
  80% {
    -webkit-transform: translateY(6.4px);
            transform: translateY(6.4px);
  }
  90% {
    -webkit-transform: translateY(-6.4px);
            transform: translateY(-6.4px);
  }
}
@keyframes shake-vertical {
  0%,
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  10%,
  30%,
  50%,
  70% {
    -webkit-transform: translateY(-8px);
            transform: translateY(-8px);
  }
  20%,
  40%,
  60% {
    -webkit-transform: translateY(8px);
            transform: translateY(8px);
  }
  80% {
    -webkit-transform: translateY(6.4px);
            transform: translateY(6.4px);
  }
  90% {
    -webkit-transform: translateY(-6.4px);
            transform: translateY(-6.4px);
  }
}

/*SECTION 4*/
.section-4{
    background:#fbbbddff ;
    padding:30px 0px;
}
 img.image-block4{
     width: 500px
}
.section-4 .logo, .section-5 .logo{
    width: 250px;
    padding-bottom: 20px;
}
.section-4 .title{
    color: #e30e7e;
}
.section-4 .content{
    margin: auto;
    max-width: 523px;
}

/*SECTION 5*/
.section-5{
    background: #fbebedff;
    padding: 30px 0px;
}

.dosis img{
    margin: 10px 0px 10px;
    width: 250px;
}
.dosis .txt {
    color: #000;
}
.dosis .txt span{
   color: #000; 
}
img.abstral-packaging{
    width: 100%;
}
img.phone-logo{
    display: none;
    margin: 0 auto;
    width:200px;
}

/*SECTION 6*/
.section-6{
    padding: 30px 0px;
}
.legal-txt, .legal-txt a{
    font-size: 14px;
    line-height: 130%;
    color: #282828;
    padding-bottom: 8px;
    text-decoration: none;
}
.legal-txt a{
    word-break: break-all; 
}
.legal-txt span{
    font-weight: 600;
    color: #919191;
}

/*SECTION 7*/
.banner{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.banner p{
    font-size: 30px;
    line-height: 140%;
    font-weight: 400;
    margin: auto;
    max-width: 700px;
    text-align: center;
    padding-bottom: 20px;
}
.banner p span{
    color: #af2938ff;
    font-weight: 600;
}
.banner .btn{
    background:#af2938ff ;
}
.banner .btn:hover{
    background:#e30e7eff;
}
/*SECTION 8*/
.section-8 .wrapper{
    padding: 80px 0px;
    margin-top: 50px;
   /* margin: 40px auto;
    border-top: 2px double #E36C7D;
    border-bottom: 2px double #E36C7D;*/
}
.section-8 .banner p span {
     color:#E36C7D;
}
.rating{
    display: flex;
    justify-content: center;
    align-items: center;
}
.rating a {
    display: block;
    padding: 5px;
    transition: 0.4s;
}
.rating img{
    width:60px;
}
.rating a:hover{
    transform: translateY(-10px);
}

/*FOOTER*/
footer{
    background: #3a3a3aff;
}
.footer-col{
    padding: 30px 20px;
}
.ft-container{
    display: flex;
    justify-content: flex-start;
    align-items: center;
}
.ft-logo{
    width: 100px;
}
.line{
    background: rgb(255 255 255 / 21%);
    width: 2px;
    height: 60px;
    margin: 0px 20px;
    border-radius: 100px;
}
.copyright{
    background: rgb(255 255 255 / 8%);
    padding: 10px;
}
.copyright p{
    text-align: center;
    font-size: 12px;
    font-weight: 300;
    color: #fff;
}

/*DC Fentanilo*/
#fentanilo {
    padding: 60px 0px;
}
#fentanilo-pdf{
     max-width: 180px;
    width: 100%;
}


/*RESPONSIVE*/

/*Desktop*/
@media(max-width:1200px){
    
}
/*Desktop*/
@media(max-width:980px){
    .img-container img {
        width: 190px;
    }
    img.pecfent {
        width: 180px;
    }
    .section-1 .one-col p {
        font-size: 22px;
        line-height: 140%;
        max-width: 700px;
        padding: 40px 0px 20px;
    }
    img.image-block2 {
        width: 300px;
    }
    .txt {
        font-size: 18px;
        max-width: 420px;
    }
    .title {
        font-size: 25px;
    }
    .section-3 .txt {
        font-size: 18px;
    }
    img.image-block4 {
        width: 390px;
    }
    img.abstral-packaging {
        width: 400px;
    }
    .banner p {
        font-size: 25px;
    }
    .img-container {
        width: 100%;
        flex-direction: column;
    }
    .section-8 .wrapper {
        margin-top: 20px;
    }

}
/*Ipad*/
@media(max-width:780px){
    .wrapper{
        padding: 20px 20px 40px;
    }
    .two-cols {
        flex-direction: column;
        justify-content: center;
    }
    .text-container {
        width: 100%;
    }
    .txt {
        max-width: inherit !important;
        text-align: center;
    }
    .title {
        text-align: center;
    }
    .btn {
        margin: 10px auto;
    }
    .section-4 .two-cols, .section-5 .two-cols {
        flex-direction: column-reverse;
    }
    .content {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
    }
    .section-4 .logo, .section-5 .logo{
        display: none;
    }
    img.phone-logo{
        display: inline;
    }
     .section-2 .txt{
        padding-top: 20px;
    }
     img.abstral-packaging, img.image-block4, img.image-block2 {
        width: 100%;
        max-width: 300px;
    }
    .section-8 .wrapper {
        margin-top: 0px;
    }
  .section-4 {
        padding: 30px 0px;
    }
  #fentanilo {
      padding: 30px 0px 0px;
  }
  #fentanilo-pdf{
      padding-bottom:20px;
  }
}
/*Phone*/
@media(max-width:580px){
  
    .wrapper {
        padding: 20px 20px 30px;
    }
    .section-1 .one-col p {
        font-size: 18px;
        max-width: 700px;
        padding: 20px 0px 10px;
    }
    .section-2 {
        padding: 10px 0px;
    }
    img.section-3 {
        width: 150px;
    }
   
    img.phone-logo {
        padding-bottom: 10px;
    }
    .img-container img {
        width: 140px;
    }
      img.abstral-packaging, img.image-block4, img.image-block2 {
        width: 100%;
        max-width: 200px;
    }
    .section-6 {
        padding: 10px 0px;
    }
    .banner p {
        font-size: 20px;
        padding-bottom: 10px;
    }
     .section-8 .wrapper {
        padding: 40px 20px;
    }
    .rating img {
        width: 50px;
    }
    .section-6 .wrapper {
        padding: 20px 20px 0px;
    }
    .popup{
        padding: 40px 30px;
    } 
    .btn-container{
     flex-direction:column;
    }
button.ko {
    width: 100%;
}
  button.ok {
      margin-right: 0;
      margin-bottom: 5px;
      width:100%;
  }


}