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

.btn-clickandcollect {
    display: inline-flex;
    margin-top: 8px;
    margin-bottom: 14px;
}
#modal-clickandcollect {
  overflow-y: auto;
  max-height: 90vh;
}
#link_resa {
    /*padding-left: 10px;*/
    width: 215px;
    height: 32px;
    line-height: 30px;
}
#link_resa .btn-link {
    width: 100%;
}
#link_resa a {
    text-align: left;
    color: #4f4e4e;
    font-family: "Roboto", sans-serif;
    font-size: 14px;
    text-decoration: underline !important;
    font-weight: 500;
}
#button-open-modal-clickandcollect {
    height: 32px;
    width: 215px;
    line-height: 30px;
    margin-right: 9px;
    /*font-size: 14px;*/
}
#button-open-modal-clickandcollect .tips { 
    margin-left: 10px;
    text-transform: none;
}
#button-open-modal-clickandcollect .question-mark { 
    background-color: #a18c6f;
    border: 1px solid #fff;
    color: #fff !important;
}
#button-open-modal-clickandcollect .question-mark:hover, #button-open-modal-clickandcollect .question-mark:active { 
    background-color: #fff;
    border: 1px solid #a18c6f;
    color: #a18c6f !important;
}
#link_resa .tips { 
    margin-left: 5px;
}
#button-open-modal-clickandcollect:hover > .question-mark {
    background-color: #fff;
    border: 1px solid #a18c6f;
    color: #a18c6f !important;
}
.btn-clickandcollect .tips--content {
    bottom: -82px !important;
}
.btn-clickandcollect .tips:before {
    bottom: -14px;
    border-bottom: 10px solid #dfdfdf;
    border-top: 0px solid transparent;
}
.btn-clickandcollect .tips:after {
    bottom: -14px;
    border-bottom: 6px solid #fff;
    border-top: 0px solid transparent;
}
.btn-clickandcollect .btn-disabled, .btn-clickandcollect .btn-link[disabled] {
    background: lightgrey;
}
.btn-clickandcollect .btn-disabled:hover {
    color: #fff !important;
    border: 0px !important;
}




/**
 * Overlay
 * -- only show for tablet and up
 */
 /*@media only screen and (min-width: 40em) {
    .modal-overlay {
      display: flex;
      align-items: center;
      justify-content: center;
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      z-index: 6000;
      background-color: rgba(0, 0, 0, 0.6);
      opacity: 0;
      visibility: hidden;
      -webkit-backface-visibility: hidden;
              backface-visibility: hidden;
      transition: opacity 0.6s cubic-bezier(0.55, 0, 0.1, 1), visibility 0.6s cubic-bezier(0.55, 0, 0.1, 1);
    }
    .modal-overlay.active {
      opacity: 1;
      visibility: visible;
    }
  }*/
  /**
   * Modal
   */
   .modal-overlay {
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 6000;
    background-color: rgba(0, 0, 0, 0.6);
    opacity: 0;
    visibility: hidden;
    -webkit-backface-visibility: hidden;
            backface-visibility: hidden;
    /*transition: opacity 0.6s cubic-bezier(0.55, 0, 0.1, 1), visibility 0.6s cubic-bezier(0.55, 0, 0.1, 1);*/
  }
  .modal-overlay.active {
    opacity: 1;
    visibility: visible;
  }
  .modal {
    /*display: flex;*/
    align-items: center;
    justify-content: center;
    position: relative;
    margin: 0 auto;
    background-color: #fff;
    width: 65%;
    max-width: 65%;
    min-height: 20rem;
    padding: 1rem;
    border-radius: 3px;
    opacity: 0;
    overflow-y: auto;
    visibility: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    -webkit-backface-visibility: hidden;
            backface-visibility: hidden;
    /*transform: scale(1.2);
    transition: all 0.6s cubic-bezier(0.75, 0, 0.1, 1);*/
  }
  .modal .close-modal {
    position: absolute;
    cursor: pointer;
    top: 5px;
    right: 15px;
    opacity: 0;
    -webkit-backface-visibility: hidden;
            backface-visibility: hidden;
    /*transition: opacity 0.6s cubic-bezier(0.55, 0, 0.1, 1), transform 0.6s cubic-bezier(0.55, 0, 0.1, 1);
    transition-delay: 0.3s;*/
  }
  .modal .close-modal svg {
    width: 1.75em;
    height: 1.75em;
  }
  .modal .modal-content {
    opacity: 0;
    -webkit-backface-visibility: hidden;
            backface-visibility: hidden;
    /*transition: opacity 0.6s cubic-bezier(0.55, 0, 0.1, 1);
    transition-delay: 0.3s;*/
    width: 98%;
  }
  .modal.active {
    visibility: visible;
    opacity: 1;
    transform: scale(1);
  }
  .modal.active .modal-content {
    opacity: 1;
  }
  .modal.active .close-modal {
    transform: translateY(10px);
    opacity: 1;
    color: #a18c6f !important;
    font-weight: bold !important;
    font-size: 24px !important;
  }
  .modal-clickandcollect-title {
    background-image: url(./../../views/img/mab-logo.png);
    background-repeat: no-repeat;
    padding-left: 70px;
    width: 60%;
    min-height: 55px;
    margin: 0px auto 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
  }
  @media only screen and (max-width: 910px){
    .modal-clickandcollect-title {
        width: 83%;
    }
    .modal {
        width: 90%;
        max-width: 90%;
    }
  }
  .modal-clickandcollect-main-title {
    font-size: 18px;
    font-weight: bold;
    color: #a18c6f;
    line-height: 1.5;
  }
  .modal-clickandcollect-sub-title {
    color: #a18c6f;
    font-size: 15px;
  }
  .modal-clickandcollect-search-input-container {
    display: flex;
  }
  .modal-clickandcollect-goeloc-button {
    background-color: #a18c6f;
    background-image: url(./../../views/img/geoloc.png);
    background-repeat: no-repeat;
    height: 3.5rem;
    width: 3.5rem;
    background-position: center;
    color: #ffffff;
    border: 0;
    outline: none;
  }
  .modal-clickandcollect-search-input {
    flex: 1;
    font-size: 14px;
    height: 3.5rem;
    padding: 6px 12px;
    border: 1px solid #d6d6d6;
    outline: none;
  }
  .modal-clickandcollect-search-button {
    background-color: #a18c6f;
    background-image: url(./../../views/img/magnifying-glass.svg);
    background-repeat: no-repeat;
    background-size: 50%;
    height: 3.5rem;
    width: 3.5rem;
    background-position: center;
    color: #ffffff;
    border: 0;
    outline: none;
  }
  .modal-clickandcollect-search-text {
    padding: 1rem 0;
  }
  
.modal-clickandcollect-search-wrap {
    display: flex;
    flex-direction: column;
}

.modal-clickandcollect-search-results-container {
    flex: 1;
}

.modal-clickandcollect-map-container {
    padding: 2rem 1rem;
    margin-left: auto;
    margin-right: auto;
    width: auto;
}

.place {
    padding: 1rem;
    border-top: 1px solid #d6d6d6;
}
#cc-map {
  width: auto;
  height: 330px;
}
.hidden {
  display: none;
}

@media only screen and (min-width: 911px){
    .flex {
        display: flex;
    }
}
.place-flex {
    display: flex;
    max-width: 36%;
}
.flex-1 {
  flex: 1 1 0%;
}
.pac-container {
  display: none;
}

.place__position-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex: 0 0 60px;
}

.place__marker {
    background-image: url(./../../views/img/marker.png);
    background-repeat: no-repeat;
    background-size: 100%;
    width: 25px;
    height: 33px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #ffffff;
    margin-bottom: 1rem;
}

.place--out-of-stock .place__marker {
    background-image: url(./../../views/img/marker-inactive.png);
}

.place__content {
    flex: 1;
    padding: 0 1rem;
}

.place__action__content {
    flex: 1;
    margin-top: auto;
    margin-bottom: auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.place__name {
    font-size: 15px;
    margin-bottom: 2rem;
}

.place--in-stock .place__name {
    color: #a18c6f;
}

.place__status {
    margin-bottom: 1rem;
}

.place__stock-status-container,
.place__action-container {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 0.5rem;
}

.place__stock-status {
    font-weight: bold;
    color: #000000;
    display: flex;
    align-items: center;
}

.place__stock-status--in-stock::before {
    content: '';
    background-color: #1a6d27;
    background-image: url(./../../views/img/done-tick.svg);
    background-repeat: no-repeat;
    background-size: 65%;
    background-position: center;
    display: inline-block;
    width: 16px;
    height: 16px;
    margin-right: 0.5rem;
    border-radius: 50%;
}

.place__product {
    margin-top: 20px;
}

.place__action-choose, .place__action-choose-resa,
.place__product-action-reserve {
    background-color: #a18c6f;
    color: #ffffff;
    border-radius: 5px;
    border: none;
    font-weight: bold;
    width: 100%;
    max-width: 330px;
    height: 32px;
    line-height: 32px;
    outline: none;
    text-align: center;
    padding: 0 0.5rem;
    cursor: pointer;
}

@media only screen and (max-width: 910px){
    .place__action-choose, .place__action-choose-resa,
    .place__product-action-reserve {
        margin-top: 15px;
    }
    .place__stock-status {
        margin-top: 6px;
    }
}

.place__action-choose:hover, .place__action-choose-resa:hover,
.place__product-action-reserve:hover {
    color: #ffffff;
}

.place__product-action-container {
    text-align: center;
}

.place__product-action-reserve {
    display: inline-block;
    padding: 1rem 2rem;
    font-weight: bold;
    font-size: 16px;
    width: auto;
    line-height: 1;
    height: auto;
}

.clickandcollect-product-header {
    display: flex;
    padding: 1rem 0;
    border-bottom: 4px solid #a18c6f;
}

.clickandcollect-product-header-name {
    color: #a18c6f;
    font-size: 15px;
    font-weight: bold;
    flex: 1 1 0%;
    text-transform: uppercase;
}

.clickandcollect-product-header-price {
    font-size: 13px;
    font-weight: bold;
    color: #000000;
}

.clickandcollect-product-price-col {
    width: 100px;
    text-align: center;
    padding: 0 1rem;
}

.clickandcollect-product-container {
    display: flex;
    padding: 1rem 0;
}

.clickandcollect-product-image {
    border: 1px solid #d6d6d6;
    height: 100%;
}

.clickandcollect-product-name {
    font-weight: bold;
    color: #a18c6f;
}

.clickandcollect-product-size {
    font-weight: bold;
    color: #000000;
}

.clickandcollect-product-content {
    padding: 0 2rem;
    flex: 1 1 0%;
}

.clickandcollect-form__label {
    display: flex !important;
    width: auto !important;
    text-align: left !important;
    align-items: center;
}

.clickandcollect-form__label span{
    display: block;
    width: 100px;
    font-size: 15px;
    font-weight: normal;
}

.store-header {
    color: #a18c6f;
    font-size: 15px;
    font-weight: bold;
    padding-bottom: 1rem;
    border-bottom: 4px solid #a18c6f;
    text-transform: uppercase;
    margin-top: 2.5rem;
}

.store-content {
    display: flex;
    color: #000000;
    margin-bottom: 1.5rem;
}

.store-info {
    flex: 1;
    padding: 1rem;
}
.store-hours {
    padding: 1rem;
    text-align: center;
}

.store-hours > div {
    color: #a18c6f;
}

.store-name {
    color: #a18c6f;
    font-weight: bold;
    display: inline-block;
    padding-left: 22px;
    background-image: url(./../../views/img/mab-logo.png);
    background-repeat: no-repeat;
    background-size: 6%;
}

.clickandcollect-action {
    text-align: center;
}

#modal-clickandcollect .clickandcollect-product-price-col.quantity,
#modal-clickandcollect .clickandcollect-product-price-col.total-price
{
    display: none;
}

.clickandcollect-product-price.unit-price,
.clickandcollect-product-price.total-price
{
    color: #a18c6f;
    font-weight: bold;
}

.unit-price,
.quantity {
    display: none;
}

.error {
    margin: 1.5rem 0;
    padding: 1.5rem;
}

#clickandcollect .btn-disabled,
#clickandcollect .btn-link[disabled]
{
    background: lightgrey;
}

#clickandcollect .btn-link[disabled]:hover,
#clickandcollect .btn-link[disabled]:focus,
#clickandcollect .btn-link[disabled]:active,
#clickandcollect .btn-disabled:hover,
#clickandcollect .btn-disabled:focus,
#clickandcollect .btn-disabled:active {
    background: lightgrey;
    border-color: transparent;
    color: white;
}

@media screen and (min-width: 1000px) {
    .modal-clickandcollect {
        width: 1000px;
    }

    .modal-clickandcollect-search-wrap {
        flex-direction: row;
    }

    .place__stock-status-container,
    .place__action-container {
        margin-left: 0;
    }
    .place__action-container {
        width: 170px;
        margin-left: auto;
        margin-right: auto;
        display: flex;
        flex-direction: column;
        gap: 10px;
    }
    .place__stock-status-container {
        margin-left: 0;
        margin-top: 10px;
    }

    .modal-clickandcollect-text,
    .modal-clickandcollect-sub-text{
        margin: 2.5rem 4rem;
    }

    .unit-price,
    .quantity {
        display: block;
    }
}
@media screen and (max-width: 992px){
    #button-open-modal-clickandcollect {
        font-size: 14px;
        line-height: 21px;
        padding: 0;
        width: 163px;
    }
}

@media screen and (max-width: 767px){
    .modal-clickandcollect-title-container {
        width: 100%;
    }

    #button-open-modal-clickandcollect {
        font-size: 13px;
        line-height: 21px;
        padding: 0;
        width: 140px;
    }

    /*** fiche produit ***/

    #product #button-open-modal-clickandcollect { 
        width: 155px;
        height: 43px;
    }

}

.modal-clickandcollect-place-choosen {
    margin-bottom: 15px;
    margin-left: 4px;
    color: #a18c6f;
}
div#cc-place-choosen-desc {
    width: 100%;
}
span#cc-place-choosen-title {
    font-size: 15px;
    font-weight: bold;
    margin-right: 10px;
}
a#cc-place-update {
    text-align: left;
    color: #4f4e4e;
    font-family: "Roboto", sans-serif;
    font-size: 14px;
    text-decoration: underline !important;
    font-weight: bold;
    cursor: pointer;
}

/*New style blockcart cc & resa */
.cc_blockcart, .resa_blockcart {
    margin: 5px -18px 10px -18px;
    border-bottom: 2px solid #a18c6f;
    padding-top: -20px;
}
.cart_block_list .products dt.last_item {
    /*padding-bottom: 18px;*/
    border-bottom: 2px solid #a18c6f;
}
.cart_block_list dl.products {
    margin-bottom: 0px;
}
body #header .cart_block dt{
    padding-bottom: 16px !important;
}
#header .cart_block .cart_block_list .ajax_cc_cart_block_remove_link, #header .cart_block .cart_block_list .ajax_resa_cart_block_remove_link {
    color: #fff;
    outline: none;
    text-decoration: none;
}
#header .cart_block .ajax_cc_cart_block_remove_link, #header .cart_block .ajax_resa_cart_block_remove_link {
    width: 18px;
    height: 18px;
    line-height: 18px;
    text-align: center;
    font-size: 12px;
    -moz-border-radius: 9px;
    -webkit-border-radius: 9px;
    border-radius: 9px;
    background-color: #a18c6f;
    padding: 3px 3px 1px;
}
#header .cart_block .ajax_cc_cart_block_remove_link i, #header .cart_block .ajax_resa_cart_block_remove_link i {
    vertical-align: middle;
    font-size: 11px;
}
.cart_block .cart_block_list .cc_remove_link {
    position: absolute;
    right: 10px;
    top: 19px;
    width: 18px !important;
    height: 18px !important;
}

p.desc_new_cart {
    width: 60%;
    margin-top: 7px;
    font-size: 12px;
    font-weight: normal;
    line-height: 17px;
    text-align: justify;
    
}
.new_step_cart {
    border: 2px solid #a18c6f;
    padding: 5px 15px 0px 15px;
    margin-bottom: 20px;
}
@media only screen and (min-width: 768px) {
    .btn-return-shopping {
        margin-top: 5px;
        margin-left: -7px;
    }
    .avantages-bijou {
        margin-top: 63px;
    }
}

#order #form #orderecrin, #order #form #ccbag {
    margin-bottom: 10px;
    margin-top: 10px;
    padding-left: 146px;
}
#order #form #orderecrin label, #order #form #ccbag label {
    position: relative;
    width: 100%;
}
#order #form #orderecrin label .checkbox, #order #form #ccbag label .checkbox {
    float: left;
    margin-right: 15px;
}
#order #form #orderecrin .option-label.highlighted, #order #form #ccbag .option-label.highlighted {
    color: #a18c6f;
    font-style: normal;
    font-weight: bold;
}
#order #form #orderecrin label .option-label, #order #form #ccbag label .option-label {
    font-size: 14px;
    display: block;
    padding-top: 8px;
}
#order #form #orderecrin label:before {
    background: #FFF url(../img/ecrin.png) center center no-repeat;
}
#order #form #orderecrin label:before, #order #form #ccbag label:before {
    content: '';
    height: 43px;
    left: -60px;
    position: absolute;
    top: -4px;
    width: 43px;
}
@media only screen and (max-width: 767px){
    #order #form #orderecrin, #order #form #ccbag {
        padding-left: 60px;
    }
    p.desc_type_cart {
        width: 100% !important;
    }

    /***block de text situé sous "Mes paniers"***/
    p.desc_new_cart {
        width: 100%;
    }
}
.title-type-cart {
    font-size: 17px;
    font-family: "Roboto", sans-serif;
    font-weight: bold;
    color: #a18c6f;
    margin-top: 10px;
}
.title-type-cart span {
    margin-left: 47px;
}
.title-type-cart:before {
    background: #FFF url(../img/cart-with-livraison.png) center center no-repeat;
    background-size: 33px;
    content: '';
    height: 21px;
    position: absolute;
    width: 43px;
}

.cc-title-type-cart {
    font-size: 17px;
    font-family: "Roboto", sans-serif;
    font-weight: bold;
    color: #a18c6f;
    margin-top: 10px;
    margin-bottom: 15px;
}
.cc-title-type-cart {
    padding-left: 35px;
}
.cc-title-type-cart:before {
    background: #FFF url(../img/logo_cc.png) center center no-repeat;
    background-size: 22px;
    content: '';
    height: 28px;
    position: absolute;
    width: 32px;
    margin-top: -6px;
    margin-left: -39px;
}

.resa-title-type-cart {
    font-size: 17px;
    font-family: "Roboto", sans-serif;
    font-weight: bold;
    color: #a18c6f;
    margin-top: 10px;
    margin-bottom: 15px;
}
.resa-title-type-cart span {
    margin-left: 38px;
}
.resa-title-type-cart:before {
    background: #FFF url(../img/resa-icon.png) center center no-repeat;
    background-size: 22px;
    content: '';
    height: 28px;
    position: absolute;
    width: 32px;
    margin-top: -5px;
}

p.desc_type_cart {
    width: 45%;
    margin-top: -3px;
    margin-bottom: 24px;
    font-size: 12px;
    font-weight: normal;
    line-height: 14px;
    text-align: justify;
}

#order #order-detail-content .cc_cart_quantity_delete {
    display: inline-block;
    width: 26px;
    height: 26px;
    line-height: 23px;
    -moz-border-radius: 13px;
    -webkit-border-radius: 13px;
    border-radius: 13px;
    background-color: #a18c6f;
    text-align: center;
}
#order #order-detail-content .cc_cart_quantity_delete i {
    vertical-align: middle;
    font-size: 14px;
    color: #fff;
}

#order #order-detail-content .resa_cart_quantity_delete {
    display: inline-block;
    width: 26px;
    height: 26px;
    line-height: 23px;
    -moz-border-radius: 13px;
    -webkit-border-radius: 13px;
    border-radius: 13px;
    background-color: #a18c6f;
    text-align: center;
}
#order #order-detail-content .resa_cart_quantity_delete i {
    vertical-align: middle;
    font-size: 14px;
    color: #fff;
}

.cc-title-cart{
    font: 800 30px/34px "Source Sans Pro", sans-serif;
    color: #555454;
    text-transform: none;
    padding: 0px 0px 17px 0px;
    margin-top: -15px;
    overflow: hidden;
}
ul.cc-step li {
    width: 25% !important;
}
li.cc-step_current span .mob:after {
    content: "/4" !important;
}
ul.resa-step li {
    width: 33.33% !important;
}
li.resa-step_current span .mob:after {
    content: "/3" !important;
}

@media only screen and (min-width: 768px){
    .cc-addresses .address_add{
        margin-bottom: 20px !important;
    }
}
ul.cc-address_delivery {
    padding-left: 0px !important;
    font-size: 15px;
}
@media only screen and (min-width: 768px) {
    .adr-title {
        font-size: 15px;
        padding-left: 35px;
    }
    .adr-title:before {
        content: '';
        height: 43px;
        left: 8px;
        position: absolute;
        top: 62px;
        width: 43px;
        background: #FFF url(../img/shop-icon.png) center center no-repeat;
        background-size: 35px;
    }
    div#cc-adr-liv\ uniform-id_address_delivery {
        margin-top: 20px;
        margin-bottom: 20px;
    }
}
@media only screen and (max-width: 767px) {
    .adr-title {
        font-size: 15px;
        padding-left: 45px;
    }
    .adr-title:before {
        content: '';
        height: 43px;
        left: -5px;
        position: absolute;
        top: 40px;
        width: 43px;
        background: #FFF url(../img/shop-icon.png) center center no-repeat;
        background-size: 35px;
    }
    div#cc-adr-liv\ uniform-id_address_delivery {
        margin-top: 25px;
        margin-bottom: 16px;
    }

    .place-flex {
        max-width: initial;
    }
}

.cc-previous {
    margin-top: 45px;
}
.cc-title-payment {
    /*border-top: 2px solid #d6d6d6;*/
    font: 800 30px/34px "Source Sans Pro", sans-serif;
    color: #555454;
    text-transform: none;
    padding: 15px 0px 17px 0px;
    margin-top: -15px;
    overflow: hidden;
}
.fidelity-text {
    color: #a18c6f;
    font-size: 14px;
    font-family: "Roboto", sans-serif;
    font-weight: bold;
    width: 100%;
    margin-top: 20px;
}
input.input-fidelity-card {
    font-size: 14px;
    font-weight: 700;
    width: 100%;
    height: 30px;
    border: 2px solid #d6d6d6;
}
input.input-fidelity-card:hover {
    border: 2px solid #a18c6f;
}

input.input-fidelity-card-error {
    font-size: 14px;
    font-weight: 700;
}

input.input-fidelity-card-error {
    width: 97%;
    height: 30px;
    border: 2px solid #ca1919;
}

input.input-fidelity-card-ok {
    width: 97%;
    height: 30px;
    border: 2px solid #00855e;
}

.fidelity-text .tips--content{
    left: 130px !important;
    top: 27px !important;
    height: fit-content !important;

}    

@media only screen and (max-width: 768px){
    .fidelity-text .tips--content{
        left: -62px !important;
        top: 27px !important;
        height: fit-content !important;
        position: absolute !important;
        width: 285px !important;
    }    
}

.fidelity-text .tips:before {
    bottom: -12px;
    border-bottom: 10px solid #dfdfdf;
    border-top: 0px solid transparent;
}
.fidelity-text .tips:after {
    bottom: -12px;
    border-bottom: 6px solid #fff;
    border-top: 0px solid transparent;
}
.fidelity-text a {
    text-decoration: underline;
    color: #000000;
    font-weight: bold;
}
.cc-valid-order {
    border-top: 2px solid #d6d6d6;
    margin-bottom: auto;
}
.cc-valid-order .content-confirm {
    width: 80%;
    line-height: 20px;
    font-weight: 500;
    color: #000000;
    margin-top: -10px;
    text-align: justify;
}
.cc-valid-order .page-subheading {
    border-bottom: 0px solid #d6d6d6 !important;
    padding-left: 35px;
}
.cc-valid-order .page-subheading:before {
    content: '';
    height: 43px;
    left: 0px;
    position: absolute;
    top: 6px;
    width: 43px;
    background: #FFF url(../img/shop-icon.png) center center no-repeat;
    background-size: 35px;
}
.cc-valid-order .content-confirm .conf-paraph {
    margin-bottom: 15px;
}
.btn-return-cart .button-exclusive {
    border: 2px solid #a18c6f;
    color: #a18c6f;
    font-size: 15px;
    font-family: "Roboto", sans-serif;
    font-weight: 600 !important;
    display: block;
    text-transform: uppercase;
    -moz-border-radius: 6px;
    -webkit-border-radius: 6px;
    border-radius: 6px;
    background: #fff;
    text-align: center;
    height: 49px;
    padding: 0;
    margin: 0;
    outline: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
}
.btn-return-cart {
    left: 50%;
    transform: translate(-50%, -50%);
    margin-top: 55px;
}
.carousel-address .btn-carousel-adr {
    border: 2px solid #a18c6f;
    color: #ffffff;
    font-size: 15px;
    font-family: "Roboto", sans-serif;
    font-weight: 600 !important;
    display: block;
    text-transform: uppercase;
    -moz-border-radius: 6px;
    -webkit-border-radius: 6px;
    border-radius: 6px;
    background: #a18c6f;
    text-align: center;
    height: 49px;
    padding: 0;
    margin: 0;
    outline: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
    padding-bottom: 30px;
}
.carousel-address {
    display:inline-block;
    margin-top: 30px;
    width: 100%;
}
.carousel-address .btn-carousel-adr .v-align {
    margin-top: 6px;
    font-weight: bold;
    color: #ffffff;
}
.delivery-address {
    padding-bottom: 30px;
}
.carousel-address .name-carousel {
    font-size: 16px;
    font-weight: bold;
    color: #000000;
}
.carousel-address .adr-carousel {
    font-size: 16px;
    font-weight: 500;
    color: #000000;
    line-height: 22px;
}
.carousel-address .delivery-address {
    padding-left: 50px;
}
.carousel-address .delivery-address:before {
    content: '';
    height: 43px;
    left: 0px;
    position: absolute;
    top: -5px;
    width: 43px;
    background: #FFF url(../img/point_retrait.png) center center no-repeat;
    background-size: 35px;
}
.cc-refused {
    margin-top: 30px;
    font-size: 16px;
    font-weight: 500;
    color: #000000;
}
@media only screen and (max-width: 1200px){
    .carousel-address .btn-carousel-adr {
        left: 50%;
        transform: translate(-50%, -50%);
        margin-top: 30px;
    }
}
p.format-card {
    width: 100%;
    font-weight: 700;
}
@media only screen and (max-width: 992px){
    .cc-card-error:after {
        content: "\2716";
        color: #ca1919;
        font-family: "mab";
        display: inline-block;
        font-size: 17px;
        top: -52px;
        position: relative;
        left: 100%;
    }
    .cc-card-ok:after {
        content: "\2713";
        color: #00855e;
        font-family: "mab";
        display: inline-block;
        font-size: 17px;
        top: -52px;
        position: relative;
        left: 100%;
    }
}
.resa-text-paiement {
    color: #a18c6f;
    font-size: 18px;
    font-family: "Roboto", sans-serif;
    font-weight: bold;
    text-align: center;
    padding: 15px 0 15px; 
}
@media only screen and (min-width: 992px){
    .cc-card-error:after {
        content: "\2716";
        color: #ca1919;
        font-family: "mab";
        display: inline-block;
        font-size: 17px;
        top: -51px;
        position: relative;
        left: 100%;
    }
    .cc-card-ok:after {
        content: "\2713";
        color: #00855e;
        font-family: "mab";
        display: inline-block;
        font-size: 17px;
        top: -51px;
        position: relative;
        left: 100%;
    }
}
#resa_manege {
    font-weight: bold;
    color: #a18c6f;
}
div#resa_conf {
    padding: 20px 0px 20px 14%;
}
#order #order-detail-content .table tr td.cart_avail .label.indispo {
    font-weight: bold;
}
#desc-cc {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: auto;
}
#title-desc-cc {
    display: flex;
    justify-content: center;
    color: #777777;
    font-size: 16px;
    font-weight: bold;
    margin-top: 10px;
    text-align: center;
}

#acordion-cc-container {
    margin-top: 20px;
}
#acordion-cc-container .cc-accordion {
    background: transparent;
    color: #777777;
    cursor: pointer;
    padding: 12px;
    width: 100%;
    outline: none;
    transition: 0.4s;
    border: 2px solid;
    margin-bottom: 10px;
    font-size: 18px;
    font-weight: bold;
}
.cc-accordion span {
    display: inline-block;
    height: 30px;
    padding-top: 7px;
}
#acordion-cc-container .cc-panel {
    display: none;
    overflow: hidden;
    width: 90%;
    margin: 0px auto 12px auto;
    margin-right: auto;
    text-align: justify;
}
#acordion-cc-container .cc-accordion:after {
    content: '\02C5'; 
    font-family: monospace;
    font-size: 18px;
    color: #777777;
    float: right;
    margin-left: 5px;
    border: 2px solid #777777;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    padding-top: 8px;
    
}
#acordion-cc-container .active:after {
    content: "\02C4"; 
}
@media only screen and (max-width: 992px){
    #card-number{
        margin-bottom: 30px;
        width: 70%;
        margin-left: auto;
        margin-right: auto;
    }
}
@media only screen and (min-width: 992px){
    #card-number{
        margin-bottom: 20px;
        padding-top: 50px !important;
        width: 70%;
        margin-left: auto;
        margin-right: auto;
    }
}
