/*page productos*/

.main_details_products{
    margin-top: 50px !important;
}
.square_products {
    position: relative;
    width: 100%;
    background-image: url(../img/general/banner_producto.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

.square_products:after {
    content: "";
    display: block;
    padding-bottom: 100%;
}

.square_products_content {
    position: absolute;
    width: 100%;
    height: 100%;
}

.square_products_content img {
    max-width: 150px;
    max-height: 150px;
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.detail_products {
    position: relative;
    margin-top: -10%;
}

.action_detail_products{
    background-color: #001a3c;
    height: 100%;
    width: 100%;
    padding: 10px;
}

.action_detail_products.detail_right_products:hover{
    background-color: #e5c791 !important;
    color: #ffffff !important;
}

.detail_left_products{
    border-top-left-radius: 100px;
    border-bottom-right-radius: 25px;
}

.detail_right_products{
    border-top-left-radius: 25px;
    border-bottom-right-radius: 100px;
}

.detail_products p{
    color: #ffffff;
    font-size: 21px;
    font-weight: 600;
    line-height: normal;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
}

.info_detail_products{
    color: #001a3c !important;
    max-width: 75%;
}

@media screen and (max-width: 1200px) {
    .detail_products p {
        font-size: 19px;
    }
}

@media screen and (max-width: 992px) {
    .detail_products p {
        font-size: 17px;
    }
}

@media screen and (max-width: 768px) {
    .detail_products p {
        font-size: 20px;
    }
}

@media screen and (max-width: 576px) {
    .detail_products p {
        font-size: 18px;
    }
    .detail_left_products, .detail_right_products{        
        border-radius: 10px !important;
    }
    
}