
#container-main{
    margin:0 auto;
    width:95%;
    min-width:320px;
    max-width:960px;
}


.accordion-container {
    width: 100%;
    margin: 0 0 20px;
    clear:both;
}
.nombre {
    position: relative;
    display: block;
    padding: 18px;
    font-size: 24px;
    font-weight: 300;
   
    text-decoration: none;
}
.nombre.open {
    /* background: #16a085; */
    color:  #0082CA;
    padding: 25px;
}
.nombre:hover {
    background:#0082CA;
    color:white;
    transition: all 500ms;
    cursor: pointer;
}
.nombre:hover h3 {
    color:white;
    transition: all 500ms;
}


.nombre span.toggle-icon:before {
    content:"+";
}

.header-cabeza-product{
    display: grid;
    grid-template-areas: "it1 it2" ;
    grid-template-columns: 20% 80%;
    grid-template-rows:  auto;
}
.header-cabeza-product img{
    width: 100%;
    margin: 0 ;
}
#arrow-right{
    width: 15px;
    height: 15px;
    float: none;
    display: none;
    transition: all 4s;

}
.header-cabeza-product .it1{grid-area: it1;
    display: flex;
    justify-content: center;
    width:100%;
}
.header-cabeza-product .it2{grid-area: it2;
     margin-left: 1rem;
     width: calc(100% - 1rem);
     }
.header-cabeza-product .it2 .it3{

     text-align: right;
     margin-bottom: 5%;
     margin-top: 5%;
}
.header-cabeza-product .it2 .it3 a{
    text-decoration: none;
    color: white;
    background-color: #0082CA;
    font-size: 1rem;
    padding: .5rem 1rem;
    border: 3px solid white ;
    border-radius: 52px 52px 52px 52px;
    -moz-border-radius: 52px 52px 52px 52px;
    -webkit-border-radius: 52px 52px 52px 52px;

}
.header-cabeza-product .it2 .it3 a:hover::after{
    content: "";
    display: inline-block;
    background-image: url(../images/arrow-right.png)
    ;
    background-size: 15px 10px;
    width: 15px;
    height: 10px;
    padding-right: 1.5rem;
    background-repeat: no-repeat;
    background-position-x:22px;
    transition:all .500ms;
}
.nombre.open span.toggle-icon:before {
    content:"-";
}

.nombre span.toggle-icon {
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 38px;
    font-weight:bold;
}

.accordion-content {
    display: none;
    padding: 20px;
    overflow: auto;
}

.accordion-content p{
    margin:0;
}

.accordion-content img {
    display: block;
    float: left;
    
    height: auto;
}
.row-acordeon{
    height: 100%;
}
.acord-auto{
    margin-top:.5rem;
}

@media (max-width: 767px) {
    .accordion-content {
        padding: 10px 0;
    }
}