/**
* 2007-2018 PrestaShop
*
* NOTICE OF LICENSE
*
* This source file is subject to the Academic Free License (AFL 3.0)
* that is bundled with this package in the file LICENSE.txt.
* It is also available through the world-wide-web at this URL:
* http://opensource.org/licenses/afl-3.0.php
* If you did not receive a copy of the license and are unable to
* obtain it through the world-wide-web, please send an email
* to license@prestashop.com so we can send you a copy immediately.
*
* DISCLAIMER
*
* Do not edit or add to this file if you wish to upgrade PrestaShop to newer
* versions in the future. If you wish to customize PrestaShop for your
* needs please refer to http://www.prestashop.com for more information.
*
*  @author    PrestaShop SA <contact@prestashop.com>
*  @copyright 2007-2018 PrestaShop SA
*  @license   http://opensource.org/licenses/afl-3.0.php  Academic Free License (AFL 3.0)
*  International Registered Trademark & Property of PrestaShop SA
*
* Don't forget to prefix your containers with your own identifier
* to avoid any conflicts with others containers.
*/

#barra_superior_producto {
    float: left;
    width: 100%;
    margin: 0px 0px 0px 0px;
    display: none;
    background-color: #fff;
}

#barra_superior_producto .imagen {
    height: 55px !important;
    margin-right: 25px !important;
}

#barra_superior_producto .titulo {
    font-size: 13px;
    float: left;
    width: 100%;
    margin: 6px 0px 4px 0px;
}

#barra_superior_producto .subtitulo {
    float: left;
    width: 100%;
    margin: 0px 0px 4px 0px;
}

#barra_superior_producto .precio {
    float: left;
    font-size: 23px;
    font-weight: bold !important;
    margin: 18px 0px 0px 10px;
    color: #1c1124;
}

#barra_superior_producto .boton {
    float: left;
    background: #74b49b;
    border: none;
        border-radius: 4px;
    color: #ffffff;
    text-transform: uppercase;
    font-size: 13px;
    padding: 10px 15px 10px 15px;
    margin: 9px 0px 0px 35px;
}

.fixed {
    display: inline !important;
    float: left !important;
    width: 100% !important;
    position: fixed !important;
    bottom: 0 !important;
    left: 0 !important;
    z-index: 999999999999999;
}

.fixed .container {
    background: #ffffff !important;
    padding: 10px 10px 10px 10px;
    -webkit-box-shadow: -1px -4px 16px 3px rgba(0, 0, 0, 0.16);
    -moz-box-shadow: -1px -4px 16px 3px rgba(0, 0, 0, 0.16);
    box-shadow: -1px -4px 16px 3px rgba(0, 0, 0, 0.16);
}

@media only screen and (max-width: 600px) {
    #barra_superior_producto .image-container{
        display: none;
    }

    #barra_superior_producto .precio{
        font-size: 17px;
        text-align: center;
        margin-top: 20px;
        margin-left: 0;
    }

    #barra_superior_producto .boton{
        margin: 9px 0px 0px 0px;
    }
}