/**
* 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.
*/

.button-theme_configurator {
    position: fixed;
    top: 120px;
    right: 20px;
}

/** 
* Button 
*/

.button-theme_configurator{
    text-align: right;
    z-index: 9999;
}
.button-theme_configurator .open_theme_configurator_window,
.button-theme_configurator .close_theme_configurator_window{
    position: relative;
    display: inline-block;
    background: #ffffff;
    border-radius: 50%;
    text-align: center;
    padding: 16px;
    cursor: pointer;
    -moz-box-shadow: 0px 0px 10px 1px rgba(0,0,0,.15);
    -webkit-box-shadow: 0px 0px 10px 1px rgba(0,0,0,.15);
    -o-box-shadow: 0px 0px 10px 1px rgba(0,0,0,.15);
    box-shadow: 0px 0px 10px 1px rgba(0,0,0,.15);
}
.button-theme_configurator .open_theme_configurator_window{
    -webkit-border-radius: 50px;
    -webkit-border-bottom-right-radius: 0;
    -moz-border-radius: 50px;
    -moz-border-radius-bottomright: 0;
    border-radius: 50px;
    border-bottom-right-radius: 0;
}
.button-theme_configurator .theme_configurator-puce {
    position: absolute;
    left: -2px;
    top: 0px;
    border: 6px solid red;
    border-radius: 50%;
    width: 17px;
    height: 17px;
    background: #fff;
}
.button-theme_configurator div i{
    font-size: 34px !important;
    color: #000 !important;
}
.button-theme_configurator div:hover i {
    opacity: .7;
}
.button-theme_configurator .close_theme_configurator_window {
    display: none;
}

/** 
* Panel General
*/

.panel-theme_configurator *{
    font-family: "Open Sans",sans-serif !important;
}
.panel-theme_configurator .material-icons{
    font-family: Material Icons !important;
}
.panel-theme_configurator{
    display: none;
    position: fixed;
    width: 295px;
    top: 150px;
    right: 50px;
    bottom: 15px;
    -moz-box-shadow: 0px 0px 10px 1px rgba(0,0,0,.15);
    -webkit-box-shadow: 0px 0px 10px 1px rgba(0,0,0,.15);
    -o-box-shadow: 0px 0px 10px 1px rgba(0,0,0,.15);
    box-shadow: 0px 0px 10px 1px rgba(0,0,0,.15);
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    background: #fff;
    z-index: 9998;
}
.panel-theme_configurator .panel-themeconf_header {
    position: absolute;
    width: 100%;
    top: 0px;
    background: #f5f5f5;
    text-align: center;
    font-size: 16px;
    padding: 15px 0px;
    -webkit-border-top-left-radius: 5px;
    -webkit-border-top-right-radius: 5px;
    -moz-border-radius-topleft: 5px;
    -moz-border-radius-topright: 5px;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
}
.panel-theme_configurator .panel-themeconf_content {
    background: #ffffff;
    position: absolute;
    top: 48px;
    bottom: 60px;
    overflow: auto;
}
.panel-theme_configurator .panel-themeconf_body {
    padding: 0px 15px;
}
.panel-theme_configurator .panel-themeconf_body section{
    padding: 10px 0px;
    border-bottom: 1px solid #e3e3e3;
}
.panel-theme_configurator .panel-themeconf_body section:last-child{
    border-bottom: 0;
}
.panel-theme_configurator .panel-themeconf_footer {
    padding: 10px;
    text-align: center;
    position: absolute;
    bottom: 0;
    width: 100%;
    background: #FFF;
    -webkit-border-bottom-left-radius: 5px;
    -webkit-border-bottom-right-radius: 5px;
    -moz-border-radius-bottomleft: 5px;
    -moz-border-radius-bottomright: 5px;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
}
.panel-theme_configurator .panel-themeconf_footer .btn-themeconf,
.panel-theme_configurator .panel-themeconf_footer .btn-themeconf-ok {
    width: 100%;
    padding: 10px;
    background: #6c868e;
    color: #fff;
    border: 2px solid #6c868e;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    transition: background .2s ease;
}
.panel-theme_configurator .panel-themeconf_footer .btn-themeconf {
    width: 100%;
    padding: 10px;
    background: #fff;
    color: #6c868e;
    border: 2px solid #6c868e;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    transition: background .2s ease;
    opacity: .4;
    cursor: inherit;
}
.panel-theme_configurator .panel-themeconf_footer .btn-themeconf-ok:hover,
.panel-theme_configurator .panel-themeconf_footer .btn-themeconf-ok:focus,
.panel-theme_configurator .panel-themeconf_footer .btn-themeconf-ok:active{
    color: #fff;
    background: #5b747b;
    border-color: #5b747b;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    transition: background .2s ease;
    transition: border .2s ease;
}

.panel-theme_configurator .panel-themeconf_footer .footer-confirmation label {
    color: #363A41;
    font-size: 16px;
    letter-spacing: -0.27px;
    line-height: 22px;
    font-weight: normal;
    padding-top: 5px;
}

.panel-theme_configurator .panel-themeconf_footer .footer-confirmation .buttons-confirm {
    padding: 18px 0px 10px;
}

.panel-theme_configurator .panel-themeconf_footer .footer-confirmation .buttons-confirm {
    padding: 18px 0px 10px;
}

.panel-theme_configurator .panel-themeconf_footer .footer-confirmation .buttons-confirm button {
    color: #fff;
    border: 0;
    padding: 8px 15px;
    width: 125px;
    box-shadow: 0 0 10px 0 rgba(0,0,0,0.2);
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    transition: opacity .2s ease;
}

.panel-theme_configurator .panel-themeconf_footer .footer-confirmation .buttons-confirm button:hover{
    opacity: .7;
    transition: opacity .2s ease;
}

.panel-theme_configurator .panel-themeconf_footer .footer-confirmation .buttons-confirm .footer-btn-cancel{
    background-color: #DA495B;
}

.panel-theme_configurator .panel-themeconf_footer .footer-confirmation .buttons-confirm .footer-btn-save {
    background-color: #76BE8B;
}

/** 
* Panel Sections
*/

.panel-themeconf_body input{
    max-width: 100%;
}
.panel-themeconf_body label {
    font-weight: normal;
    font-size: 14px;
}
.panel-themeconf_body select {
    width: 100%;
    background: #ededec;
    border: 0;
    padding: 0px 10px;
    height: 40px;
    cursor: pointer;
    font-size: 14px;
    margin-top: 5px;
}
.panel-themeconf_body .themeconf_title {
    font-size: 16px;
    margin-bottom: 22px;
    color: #363A41;
}
.panel-themeconf_body .color_input {
    border: 2px solid #dcdcdc;
    height: 32px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    cursor: pointer;
}

/** Color **/
.panel-themeconf_body .themeconf_color{
    margin-bottom: 10px;
}
.panel-themeconf_body .themeconf_color .text{
    float: left;
    width: 70%;
}
.panel-themeconf_body .themeconf_color .text p {
    font-size: 11px;
    color: #718a91;
}
.panel-themeconf_body .themeconf_color .color_input{
    float: left;
    width: 30%;
    border: 2px solid #dcdcdc;
    height: 32px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
}
.panel-themeconf_body .themeconf_color:after {
    content: '';
    display: block;
    clear: both;
}

/** Checkbox **/
.panel-themeconf_body .themeconf_checkbox {
    margin-bottom: 15px;
}
.panel-themeconf_body .themeconf_checkbox .checkbox{
    float: left;
    width: 6%;
}
.panel-themeconf_body .themeconf_checkbox .text {
    float: left;
    width: 85%;
}
.panel-themeconf_body .themeconf_checkbox:after {
    content: '';
    display: block;
    clear: both;
}

/** Color & Checkbox **/
.panel-themeconf_body .themeconf_color_checkbox .checkbox{
    float: left;
    width: 6%;
}
.panel-themeconf_body .themeconf_color_checkbox .text {
    float: left;
    width: 55%;
}
.panel-themeconf_body .themeconf_color_checkbox .color_input{
    float: right;
    width: 30%;
}
.panel-themeconf_body .themeconf_color_checkbox:after {
    content: '';
    display: block;
    clear: both;
}

/** Selector **/
.panel-themeconf_body .themeconf_select{
    margin-top: 15px;
}

/** Custom **/
.panel-themeconf_body .themeconf-style_buttons .themeconf_checkbox{
    width: 50%;
    float: left;
}
.panel-themeconf_body .themeconf-style_buttons .checkbox {
    width: 12%;
}
.panel-themeconf_body .themeconf-style_buttons .text {
    width: 70%;
}
.panel-themeconf_body .themeconf-style_buttons:after {
    content: '';
    display: block;
    clear: both;
}

/** Reset **/
.panel-themeconf_body #reset-themeconf{
    padding: 6px 0px;
}
.panel-themeconf_body #reset-themeconf span{
    cursor: pointer;
}
.panel-themeconf_body #reset-themeconf .material-icons{
    color: #6c868e;
}
.panel-themeconf_body #reset-themeconf:hover .material-icons{
    -webkit-animation:spin .5s linear;
    -moz-animation:spin .5s linear;
    animation:spin .5s linear;
}
@-moz-keyframes spin { 100% { -moz-transform: rotate(-360deg); } }
@-webkit-keyframes spin { 100% { -webkit-transform: rotate(-360deg); } }
@keyframes spin { 100% { -webkit-transform: rotate(-360deg); transform:rotate(-360deg); } }

.panel-themeconf_body #reset-themeconf:hover span{
    color: #6c868e;
}

/**
* Other
*/

/** checkbox **/
.checkbox {
    display: block;
    position: relative;
    padding-left: 35px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 22px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.checkbox input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}
.checkbox .checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 20px;
    width: 20px;
    border: 2px solid #6c868e;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
}
.checkbox:hover input ~ .checkmark {
    background-color: #ccc;
}
.checkbox input:checked ~ .checkmark {
    background-color: #6c868e;
}
.checkbox input:checked ~ .checkmark:after {
    display: block;
}
.checkbox .checkmark:after {
    left: 6px;
    top: 2px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    content: "";
    position: absolute;
    display: none;
}

/** scrollbar **/

.panel-themeconf_content::-webkit-scrollbar {
    width: 5px;
    opacity: 0;
}

.panel-themeconf_content:hover::-webkit-scrollbar {
    opacity: 1;
}
.panel-themeconf_content:hover::-webkit-scrollbar-thumb {
    background-color: #ccc;
    outline: 1px solid #6c868e;
    border-radius: 10px;
}

/** ColorPicker **/
#picker-container {
    right: -12px;
}

/**
 * Specific
 */

 #PS_THEME_MAIN_COLOR label {
     font-size: 16px;
     color: #363A41;
 }