/**
* 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.
*/

.pa_div{
    position: relative;
    display: block;
    background: #fbfbfb;
    margin-bottom: 15px;
}
.pa_div.pa_block{
    border: 1px solid #ededed;
    box-shadow: 2px 2px 11px 0px rgba(0, 0, 0, 0.1);
}

#product.content_only div.primary_block div.pb-left-column{
    width: 100%;
    padding: 0px;
}

.pa_txt{
    padding: 10px;
}

#product-plan .imp-wrap .loading_msg{
    padding: 50px;
    text-align: center;
}
#product-plan .img-wrap>img {
    max-width: 100%;
    height: auto;
    margin-right: auto;
    margin-left: auto;
    display: block;
}

#product-plan .imp-shape-text{
    /*display: inline-table;*/
}

#product-plan .imp-shape-text .imp-text {
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
}
#product-plan .imp-shape-text .imp-text.transition{
    transition: all .25s cubic-bezier(.55,0,.1,1);
    -moz-transition: all .25s cubic-bezier(.55,0,.1,1);
    -webkit-transition: all .25s cubic-bezier(.55,0,.1,1);
}
.imp-tooltip{
    
}
.imp-tooltip.imp-anim-rotate{
    transition-timing-function : cubic-bezier(.17,.67,.4,1.39);
    -webkit-transition-timing-function: cubic-bezier(.17,.67,.4,1.39);
    -moz-transition-timing-function:  cubic-bezier(.17,.67,.4,1.39);
}
.imp-tooltip.imp-zindex{
    z-index:5010;
}
.imp-tooltip.imp-tooltip-visible{
}
.imp-tooltip .disabled{
    cursor: not-allowed;
    pointer-events: none;
    opacity: 0.65;
    filter: alpha(opacity=65);
    -webkit-box-shadow: none;
    box-shadow: none;
}

.pb-left-column #views_block{
    display: flex;
    flex-direction: row;
}

span.view_scroll_spacer{
    flex: 2;
    float: none;
    width: inherit;
    padding: 0;
    margin-left: 5px;
    margin-right: 5px;
}

#thumbs_list{
    flex: 20;
    float: none;
    width: inherit;
}

#view_scroll_left,
#view_scroll_right{
    margin-top: 0px;
    margin-left: auto;
    margin-right: auto;
    height: 24px;
    width: 24px;
    float: none;
}
#view_scroll_left:before, #view_scroll_right:before{
    font-size: 24px;
}

section.pa-product-list{
    margin-top:25px;
}


/* content-only */
#product.content_only div.primary_block {
    margin: 0;
    padding: 20px 20px 5px 35px;
}

#product.content_only .pa_socialsharing_product{
    text-align: center;
}

.pa-quickview .mask {
    width: inherit;
}

#pa_home{
    clear: both;
    margin: 10px 0;
}

#pa_home .product-plan{
    margin-bottom: 10px;
}

#category #product-plan{
    margin-bottom: 15px;
}

/* loader */
.pa_loader {
  height: 4px;
  width: 100%;
  position: relative;
  overflow: hidden;
  background-color: #ddd;
  margin-bottom: 10px;
}
.pa_loader:before{
  display: block;
  position: absolute;
  content: "";
  left: -200px;
  width: 200px;
  height: 4px;
  background-color: #2980b9;
  animation: loading 2s linear infinite;
}

@keyframes loading {
    from {left: -200px; width: 30%;}
    50% {width: 30%;}
    70% {width: 70%;}
    80% { left: 50%;}
    95% {left: 120%;}
    to {left: 100%;}
}

/* CMS PAGE INTEGRATION */
.product-plan-cms{
    float: none;
}

.product-plan-cms.pa-center{
    margin: 0 auto;
}
.product-plan-cms.pa-left{
    float: left;
}
.product-plan-cms.pa-right{
    float: right;
}
