
/*! Swipebox v1.3.0 | Constantin Saguin csag.co | MIT License | github.com/brutaldesign/swipebox */
html.swipebox-html.swipebox-touch {
  overflow: hidden !important;
}

#swipebox-overlay img {
  border: none !important;
}

#swipebox-overlay {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99999 !important;
  overflow: hidden;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

#swipebox-container {
  position: relative;
  width: 100%;
  height: 100%;
}

#swipebox-slider {
  -webkit-transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease;
  height: 100%;
  left: 0;
  top: 0;
  width: 100%;
  white-space: nowrap;
  position: absolute;
  display: none;
  cursor: pointer;
}
#swipebox-slider .slide {
  height: 100%;
  width: 100%;
  line-height: 1px;
  text-align: center;
  display: inline-block;
}
#swipebox-slider .slide:before {
  content: "";
  display: inline-block;
  height: 50%;
  width: 1px;
  margin-right: -1px;
}
#swipebox-slider .slide img, #swipebox-slider .slide .swipebox-video-container {
  display: inline-block;
  max-height: 100%;
  max-width: 100%;
  margin: 0;
  padding: 0;
  width: auto;
  height: auto;
  vertical-align: middle;
}
#swipebox-slider .slide .swipebox-video-container {
  background: none;
  max-width: 1140px;
  max-height: 100%;
  width: 100%;
  padding: 5%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
#swipebox-slider .slide .swipebox-video-container .swipebox-video {
  width: 100%;
  height: 0;
  padding-bottom: 56.25%;
  overflow: hidden;
  position: relative;
}
#swipebox-slider .slide .swipebox-video-container .swipebox-video iframe {
  width: 100% !important;
  height: 100% !important;
  position: absolute;
  top: 0;
  left: 0;
}
#swipebox-slider .slide-loading {
  background: url('../../typo3conf/ext/typo3site/Resources/Public/Images/SwipeBox/loader.gif') no-repeat center center;
}

#swipebox-bottom-bar,
#swipebox-top-bar {
  -webkit-transition: 0.5s;
  transition: 0.5s;
  position: absolute;
  left: 0;
  z-index: 999;
  height: 50px;
  width: 100%;
}

#swipebox-bottom-bar {
  bottom: -50px;
}
#swipebox-bottom-bar.visible-bars {
  -webkit-transform: translate3d(0, -50px, 0);
  transform: translate3d(0, -50px, 0);
}

#swipebox-top-bar {
  top: -50px;
}
#swipebox-top-bar.visible-bars {
  -webkit-transform: translate3d(0, 50px, 0);
  transform: translate3d(0, 50px, 0);
}

#swipebox-title {
  display: block;
  width: 100%;
  text-align: center;
}

#swipebox-prev,
#swipebox-next,
#swipebox-close {
  background-image: url('../../typo3conf/ext/typo3site/Resources/Public/Images/SwipeBox/icons.png');
  background-repeat: no-repeat;
  border: none !important;
  text-decoration: none !important;
  cursor: pointer;
  width: 50px;
  height: 50px;
  top: 0;
}

#swipebox-arrows {
  display: block;
  margin: 0 auto;
  width: 100%;
  height: 50px;
}

#swipebox-prev {
  background-position: -32px 13px;
  float: left;
}

#swipebox-next {
  background-position: -78px 13px;
  float: right;
}

#swipebox-close {
  top: 0;
  right: 0;
  position: absolute;
  z-index: 9999;
  background-position: 15px 12px;
}

.swipebox-no-close-button #swipebox-close {
  display: none;
}

#swipebox-prev.disabled,
#swipebox-next.disabled {
  opacity: 0.3;
}

.swipebox-no-touch #swipebox-overlay.rightSpring #swipebox-slider {
  -webkit-animation: rightSpring 0.3s;
  animation: rightSpring 0.3s;
}
.swipebox-no-touch #swipebox-overlay.leftSpring #swipebox-slider {
  -webkit-animation: leftSpring 0.3s;
  animation: leftSpring 0.3s;
}

.swipebox-touch #swipebox-container:before, .swipebox-touch #swipebox-container:after {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
  content: ' ';
  position: absolute;
  z-index: 999;
  top: 0;
  height: 100%;
  width: 20px;
  opacity: 0;
}
.swipebox-touch #swipebox-container:before {
  left: 0;
  -webkit-box-shadow: inset 10px 0px 10px -8px #656565;
  box-shadow: inset 10px 0px 10px -8px #656565;
}
.swipebox-touch #swipebox-container:after {
  right: 0;
  -webkit-box-shadow: inset -10px 0px 10px -8px #656565;
  box-shadow: inset -10px 0px 10px -8px #656565;
}
.swipebox-touch #swipebox-overlay.leftSpringTouch #swipebox-container:before {
  opacity: 1;
}
.swipebox-touch #swipebox-overlay.rightSpringTouch #swipebox-container:after {
  opacity: 1;
}

@-webkit-keyframes rightSpring {
  0% {
    left: 0;
  }

  50% {
    left: -30px;
  }

  100% {
    left: 0;
  }
}

@keyframes rightSpring {
  0% {
    left: 0;
  }

  50% {
    left: -30px;
  }

  100% {
    left: 0;
  }
}
@-webkit-keyframes leftSpring {
  0% {
    left: 0;
  }

  50% {
    left: 30px;
  }

  100% {
    left: 0;
  }
}
@keyframes leftSpring {
  0% {
    left: 0;
  }

  50% {
    left: 30px;
  }

  100% {
    left: 0;
  }
}
@media screen and (min-width: 800px) {
  #swipebox-close {
    right: 10px;
  }

  #swipebox-arrows {
    width: 92%;
    max-width: 800px;
  }
}
/* Skin 
--------------------------*/
#swipebox-overlay {
  background: #0d0d0d;
}

#swipebox-bottom-bar,
#swipebox-top-bar {
  text-shadow: 1px 1px 1px black;
  background: #000;
  opacity: 0.95;
}

#swipebox-top-bar {
  color: white !important;
  font-size: 15px;
  line-height: 43px;
  font-family: Helvetica, Arial, sans-serif;
}

#header-bottom{
    background-color: #616161;
    text-align: right;
    color:#fff;
    position: fixed;
    top: 78px;
    width: 100%;
    z-index: 900;
}
body {
    padding-top: 106px !important;
}
body.homepage #header-bottom{
    position:absolute;
    background-color:transparent;
}
body.homepage{
    padding-top: 78px !important;
}
#header-bottom a{
    color: #fff !important;
}
#header-bottom #extshop-minicart{
    display: block;
    position: relative;
}
#header-bottom .fa-shopping-cart, #header-bottom .fa-gift{
    float: left;
    font-size: 20px;
    line-height: 16px;
    margin-left:5px;
}
#header-bottom .cart-link, #header-bottom .cart-shop-link{
    padding: 5px;
    background: #000;
    width: 293px;
    display: block;
    font-weight: bold;
    float: right;
    text-decoration: none;
}
.extshop-advoucher-form .help-text, .update-voucher-form .help-text{
    font-size: 90%;
    color: #ababab;
    margin-top: 2px;
}

/*EXTSHOP CSS*/
.product-prices .old-price{
    color:#ddd;
    text-decoration: line-through;
}
.product-prices .price-discounted{
    font-weight:bold;
}
.product-qty-wrapper{
    width: 110px;
    display: inline-block;
}
.breadcrumb li.active{
    font-weight: bold;
}
.main-content .shop-cart h3{
    margin-top: 5px;
    border: none;
    text-transform: none;
}

/*BADGES*/
#shop-categories li a, #shop-filters li.list-group-item label{
    position: relative;
    padding-right: 30px;
}
#shop-filters .badge, #shop-categories .badge{
    position: absolute;
    right: 5px;
    top:10px;
}


#shop-filters .control, .giftoption.control{
    margin: 0;
    padding: 10px 0 10px 30px;
    display: block;
}
#shop-filters li.active, #shop-filters li:hover{
    background-color: #f7fbfc;
    border-color: #ddd;
}
#shop-filters li.active .badge{
    background-color: #337ab7;
}
#shop-filters .control-indicator, .giftoption .control-indicator{
    top: 10px;
    left: 5px;
    width: 20px;
    height: 20px;
    line-height: 20px;
}

#shop-filters ul.checkboxes li{
    padding: 0;
}

#shop-filters .noUi-tooltip{
    font-size: 10px;
}
#shop-filters .noUi-horizontal .noUi-handle-lower .noUi-tooltip{
    top: 30px;
    right: 0;
}
#shop-filters .noUi-horizontal .noUi-handle-upper .noUi-tooltip{
    bottom: -30px;
}
#shop-filter-price .panel-body{
    padding-bottom:45px;
}
#main-content .sidebar-menu li.active .badge{
    background-color: #fff !important;
}

#shop-products .shop-product{
    width:100%;
}
#shop-products .shop-product:hover{
    background-color: #f7fbfc;
}
#panelProducts .panel-title{
    display: inline-block;
    margin-top: 5px;
}

.main-content .shop-category h3{
    padding: 0;
    margin: 0;
    text-transform: none;
    border: none;
    font-size: 19px;
}
.main-content h4.product-name,.main-content h4.panel-title{
    border: none;
    font-size: 14px;
    padding: 0;
    margin: 0;
    line-height: 30px;
}
#shop-no-products .alert{
    margin-bottom: 0;
}
.product-duration{
    font-size: 12px;
}
#noty_topRight_layout_container{
    margin-top:50px !important;
}
.dropdown-cart{
    width: 295px;
    right: -1px !important;
    left: auto;
    padding: 0;
    top: 25px;
    padding: 15px;
    background-color: #eee;
    color: #000;
    /*box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.15) inset;*/
}
.dropdown-cart:before{
    display: block;
}
.dropdown-cart li.cart-item{
    border-bottom:1px solid #DEDEDE;
    padding: 5px 10px;
}
.dropdown-cart li.cart-total{
    font-weight: bold;
    border-bottom: none;
    margin-bottom: 15px;
}
.dropdown-cart li a,.dropdown-cart li a:focus, .dropdown-cart li a:active{
    background: #0092cf;
}
.dropdown-cart li.cart-header{
    background-color: #616161;
    color: #fff;
    font-weight:bold;
    text-align: center;
}
.dropdown-cart .cart-btn-link a{
    text-decoration: none !important;
    color: #fff !important;
}
/** CART ***/
.cart-product-body{
    background-color: #F7F7F7;
}
.cart-product-actions{
    padding-top:22px;
}
.main-content a.btn{
    color: #fff;
}
.cart-content .well {
    padding: 15px;
}
tr.cart-content-product td{
    background-color: #F7F7F7;
}


.cart-steps{
    margin-bottom:20px;
    margin-top:20px;
    margin-left: 0;
    margin-right: 0;
}
.cart-steps .cart-step{
    padding:0;
    position: relative;
}
.cart-steps .cart-step:after{
    position: absolute;
    z-index: 2;
    content: '';
    top: 50%;
    right: 0;
    border: solid;
    background-color: #fff;
    width: 1.14285714em;
    height: 1.14285714em;
    border-color: rgba(34,36,38,.15);
    border-width: 0 1px 1px 0;
    -webkit-transition: background-color .1s ease,opacity .1s ease,color .1s ease,box-shadow .1s ease;
    transition: background-color .1s ease,opacity .1s ease,color .1s ease,box-shadow .1s ease;
    -webkit-transform: translateY(-50%) translateX(50%) rotate(-45deg);
    -ms-transform: translateY(-50%) translateX(50%) rotate(-45deg);
    transform: translateY(-50%) translateX(50%) rotate(-45deg);
    display: block;
}
.cart-steps .cart-step:last-child:after{
    display: none;
}
.cart-steps {
    border: 1px solid rgba(34, 36, 38, 0.15);
    border-radius: 5px;
}
.cart-steps .cart-step{
    border-right:1px solid rgba(34, 36, 38, 0.15);
}
.cart-steps .cart-step:last-child{
    border-right:none
}
.cart-steps .cart-step a, .cart-steps .cart-step .cart-step-span{
    display: block;
    padding: 10px 20px;
}
.cart-steps .cart-step.active, .cart-steps .cart-step.active:after{
    background-color: #f3f4f5;
}
.cart-steps .cart-step .step-icon {
    font-size: 25px;
    margin-right: 15px;
    line-height: 30px;
}
.cart-steps .cart-step .content .description{
    font-size:12px;

}
.cart-steps .cart-step .content h4{
    margin:0;
    padding:0;
    border:none;
}
.cart-steps .cart-step .cart-step-span h4{
    color: #333;
}
.cart-gift-options{
    padding: 10px 0;
    position: relative;
    padding-right: 40px;
    border-top: 1px solid #e8e8e8;
}
.cart-gift-edit-btn{
    position: absolute;
    z-index:1;
    right: 10px;
    top: 10px;
}
.cart-gift-edit-btn a{
    color: #333 !important;
}
@media (min-width: 768px){
    .cart-gift-options{
        padding-right: 0;
        padding-left: 45px;
    }
    .cart-gift-edit-btn{
        top: 3px;
        left: 10px;
        right: auto;
    }
}

.shop-cart-products-title {
    background-color: #888;
}
.shop-cart-products-title h2{
    margin:0 !important;
    padding:0 !important;
    border: 0 !important;
    color: #fff;
}
.order-payment-methods .control, .order-shipping-methods .control{
    display: block;
    margin:0;
    padding:15px 15px 15px 40px;
    border-top:1px solid #ddd;
    font-weight: normal !important;
}
.order-payment-methods .control.selected, .order-shipping-methods .control.selected{
    background: #f8f8f8;
}
.order-payment-methods .control-indicator, .order-shipping-methods .control-indicator{
    top: 25px;
    left: 10px;
    width: 20px;
    height: 20px;
    line-height: 20px;
}
.order-payment-methods .control .fa, .order-shipping-methods .control .fa{
    display: block;
    float: left;
    font-size: 30px;
    margin-top: 5px;
    margin-right: 10px;
}
.order-payment-methods .control .info, .order-shipping-methods .control .info{
    display: block;
    float: left;
    margin-left: 10px;
}
.order-payment-methods .control h4, .order-shipping-methods .control h4{
    padding-bottom: 0;
    border: none;
    margin: 0;
}
.order-payment-methods .control .description, .order-shipping-methods .control .description{
    margin-top:5px;
}
.order-shipping-methods .control .price{

}
#accept-terms-check label{
    display: block;
}
.fa.fa-right{
    margin-left: 5px;
}
.fa.fa-left{
    margin-right: 5px;
}
.panel-total{
    padding:10px 5px;
}
.panel-default .panel-subtitle{
    background: #f8f8f8;
    padding:10px;
    margin:0;
    border-top:1px solid #ddd;
}
.panel-default .address{
    padding:15px;
    border-top:1px solid #ddd;
}
/* Checkout */
#panel-checkout-shipping .same-shipping{
    padding: 5px 15px 10px;
}
#panel-checkout-shipping .same-shipping label{
    display: block;
}
#panel-checkout-shipping .same-shipping{
    border-bottom: 1px solid #ddd;
    background-color: #f8f8f8;
}
#order-total-table tr.products.last td{
    border-bottom: 2px solid #ddd;
}
#order-total-table tr.total td{
    background: #f8f8f8;
}
#order-payment-instructions p{
    display: inline;
}


.products-simple .product-description-text{
    margin-bottom: 10px;
    font-style: normal;
    font-size: 13px;
}
.main-content .products-simple .product-grid h4{
    font-size: 15px;
}
.main-content .products-simple .price.normal-price{
    font-weight: bold;
}
.product-grid{
    margin-bottom: 10px;
    border:1px solid #ddd;
    box-shadow: 0px 0px 3px #ccc;
}
.product-grid h4{
    float: left;
}
.product-grid .product-image{
    position: relative;
}
.product-grid .product-image .product-duration, .product-grid.product-single .product-duration{
    position: absolute;
    bottom:0px;
    right: 0px;
    padding: 10px;
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
}
.product-grid .product-description{
    padding:20px 10px;
}
.product-grid .product-add-cart{
    padding: 10px;
    border-top: 1px solid #ddd;
    background-color: #f5f5f5;
}
.product-grid .price.normal-price{
    margin-top: 7px;
}
.product-grid .product-new-label {
    float: right;
}
.main-content .product-grid h4{
    border: none;
    font-size: 13px;
    padding: 0;
    margin: 0;
    font-style: normal;
    text-transform: none;
    line-height: 15px;
    margin-bottom: 10px;
}
/* PRODUCT SINGLE */
.product-single-image{
    background-color: #f5f5f5;
    position: relative;
}
.product-single-image img{
    margin: 0 auto;
}
/*HOME CATEGORIES*/
.shop-category{
    position: relative;
    border: 1px solid #ddd;
    margin-bottom: 20px;
}
.shop-category:hover{
    box-shadow: 0px 0px 3px #ccc;
}
.main-content .shop-category h4{
    text-transform: none;
    border: none;
    margin:0;
}
.main-content .shop-category a{
    text-decoration: none;
    color: #444;
}
.shop-category .category-link  {
    text-align: right;
    background: #f5f5f5;
    display: block;
    padding: 10px;
}
.shop-category .category-image{
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    width: 300px;
    height: 100%;
    position: absolute;
}
.shop-category .category-description{
    margin-left: 300px;
    padding: 15px;
}
.category-info{
    margin-bottom: 20px;
}
.main-content .category-info h1{
    margin-bottom: 5px;
}
.main-content .category-info h2{
    border: none;
    margin-top:5px;
}

/*/HOME CATEGORIES*/

.slick-products .promoted-product {
    width:390px;
}

.slick-products img{
    max-width: none;
    height: auto;
}
.promoted-product .media-body{
    padding-right: 10px;
    position: relative;
}
.promoted-product h4{
    border: none !important;
    font-size: 14px;
    padding: 0 !important;
    margin: 0 !important;
    line-height: 14px;
}
.product-description, .restrict-shipping{
    font-size:12px;
    font-style: italic;
}
.product-description ul, .p-subtitle ul{
    margin-left: 0;
    padding-left: 0;
    margin-bottom: 5px !important;
    list-style-type: none;
}
.product-description ul li, .p-subtitle ul li{
    margin-bottom: 0;
    padding: 2px 0 2px 20px;
    position: relative;
}
.product-description ul li:before, .p-subtitle ul li:before{
    content: "\f105";
    width: auto;
    display: inline-block;
    font: normal normal normal 14px/1 FontAwesome;
    font-size: inherit;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    transform: translate(0, 0);
    position: absolute;
    left: 5px;
    top: 5px;
    color: #0092cf;
}
.restrict-shipping{
}
.product-grid .product-description{
    position: relative;
}
.product-grid .product-description.restrict-shipping{
    padding-bottom: 35px;
}
.product-description .restrict-shipping{
    font-size: 11px;
    position: absolute;
    bottom: 10px;
    white-space: nowrap;
}
.promoted-product .product-description{
    margin-top:10px;
    padding-bottom: 50px;
}
.promoted-product .product-add-cart {
    position: absolute;
    bottom: 0;
    width: 100%;
    left: -10px;
    padding: 5px 10px;
}
.shop-categories-description, .promoted-description{
    margin-bottom: 20px;
}
.slick-products .slick-next, .slick-products .slick-prev{
    background: none !important;
}
.slick-products .slick-next:after, .slick-products .slick-prev:after{
    color: #444;
    /*background: #fff;
    border-radius: 50%;
    width: 29px;
    height: 29px;
    line-height: 29px;*/
}
.slick-products .slick-next {
    right:-39px;
}
.slick-products .slick-prev {
    left:-39px;
}
tr.trTax {
    color: #888;
}
.product-variations{
    margin-top: 0;
    margin-bottom: 10px;
}
.product-variations select{
    font-size: 12px;
    padding: 5px;
    height: 30px;
}

/*
.slick-products .slick-next:after{
    content: "\f138";
}
.slick-products .slick-prev:after{
    content: "\f137";
}
*/
.slick-products .promoted-product{
    /*display: none;*/
}
.slick-products.slick-initialized .promoted-product{
    display: block;
}
/** Responsive **/
@media (min-width: 768px){
    #order-contact-info .contact-mobile{
        text-align: center;
    }
    #order-contact-info .contact-email{
        text-align: right;
    }
    #hide-shop-filters, #show-shop-filters{
        display: none !important;
    }
    #category-filter-form{
        float: right;
    }
}
@media (min-width: 768px) and (max-width: 1199px){
    .cart-product-delete{
        text-align: right;
    }
    .cart-product-price{
        padding-top:38px;
    }
}
@media (max-width: 767px){
    .product-single-image{
        border-bottom: 1px solid #ddd;
    }
    .shop-category .category-image{
        width: 30%;
    }
    .shop-category .category-description{
        margin-left: 30%;
        padding:15px 10px;
    }
    .product-grid.product-multiples h4{
        float: none;
    }
    .product-grid.product-multiples .product-new-label {
        float: none;
        margin-top: -10px;
        margin-bottom: 5px;
    }
    .product-grid .product-info{
        position: relative;
    }
    .product-grid .product-image{
        position: absolute;
        height: 100%;
        width: 120px;
        background-size: cover;
        background-position: center center;
        background-repeat:no-repeat;
    }
    .product-grid .product-description{
        margin-left: 120px;
    }
    .product-grid.product-single .product-description{
        margin-left: 0;
    }
    .product-grid .product-image .product-duration, .product-grid.product-single .product-duration{
        padding: 5px;
        font-size: 11px;
    }


    #cart-index-btn-continue{
        margin-bottom: 20px;
    }
    #shop-products .shop-product .product-price-cart{
        border-top: 1px solid #f5f5f5;
        padding-top: 10px;
        background: #f5f5f5;
        padding-bottom: 10px;
    }
    #shop-products .shop-product{
        padding-bottom: 0;
    }
    body {
        padding-top: 81px !important;
    }
    #header-bottom{
        top: 53px;
    }
    body.homepage #header-bottom{
        background-color: #616161;
    }
    .cart-product-actions{
        padding-top:0px;
    }
    .cart-steps .cart-step:after{
        display: none;
    }
    .cart-steps .cart-step{
        border-bottom:1px solid rgba(34, 36, 38, 0.15);
    }
    .cart-steps .cart-step:last-child{
        border-bottom:none;
    }
    .shop-cart .product-total-info{
        background: #f5f5f5;
        padding: 10px;
        margin-bottom: -10px;
        margin-top: 5px;
    }
    .order-payment-methods .control .fa, .order-shipping-methods .control .fa{
        display: none;
    }
    #shop-main-content{
        margin-bottom: 20px;
    }
    #shop-row{
        position: relative;
    }
    .product-grid-wrap{
        width: 100%;
    }
    #shop-filters{
        padding:10px;
        position: absolute;
        z-index: 100;
        left:-265px;
        width:250px;
        top:0;
        bottom:0;
        border-right: 2px solid #ddd;
        background: #fff;
        overflow: auto;
        transition:left 1s linear;
        -moz-transition:left 1s linear;
        -webkit-transition:left 1s linear;
        box-shadow: 3px 0px 10px rgba(0, 0, 0, 0.5);
        -moz-box-shadow: 3px 0px 10px rgba(0, 0, 0, 0.5);
        -webkit-box-shadow: 3px 0px 10px rgba(0, 0, 0, 0.5);
    }
    #show-shop-filters, #hide-shop-filters{
        display:block;
        position: fixed;
        z-index: 900;
        left:0;
        top:49px;
    }
    #shop-filters.active{
        left:0;
    }
    .slick-products .slick-next {
        right: -30px;
    }
    .slick-products .slick-prev {
        left: -30px;
    }
}

@media (max-width: 445px){
    .slick-products .promoted-product, .slick-products .promoted-product .media-body {
        width:300px;
    }
    .promoted-product .product-description{
        padding-bottom: 0;
    }
    .promoted-product .media-left{
        display: none;
    }
    .promoted-product .category-name{
        display: none;
    }
    .promoted-product .product-add-cart{
        position: relative;
    }
    .promoted-product .product-add-cart .add-to-cart, .promoted-product .product-add-cart .price{
        float: none !important;
    }
    .promoted-product .product-add-cart .add-to-cart {
        margin-top:5px;
    }
}
/**
CORE STYLES
*/

#cc-notification
{
	position: fixed !important;
	z-index: 99999998 !important;
	left: 0 !important;
	width: 100% !important;
	background-color: #fff !important;
}

#cc-notification.cc-mobile
{
	position: relative !important;
	border-bottom: 0 !important;
}

#cc-modal #cc-modal-closebutton a,
#cc-settingsmodal #cc-settingsmodal-closebutton a
{
	/*
	display: block !important;
	width: 18px !important;
	height: 18px !important;
	position: absolute !important;
	top: 2px !important;
	right: 2px !important;
	background-image: url(https://s3-eu-west-1.amazonaws.com/assets.cookieconsent.silktide.com/cross.png) !important;
	*/
	position: relative !important;
	right: auto !important;
	top: auto !important;
	height: auto !important;
	text-align: center;
	background-image: none !important;
	display: block !important;
    padding: 10px 0;
    color: #fff !important;
    margin: auto 100px;
    width: auto !important;
}

#cc-modal #cc-modal-closebutton a span,
#cc-settingsmodal #cc-settingsmodal-closebutton a span
{
	/* display: none;*/
}


#cc-notification.cc-bottom
{
	bottom: 0 !important;
}

#cc-notification.cc-top
{
	top: 0 !important;
}

#cc-notification.cc-push
{
	top: 0 !important;
}

#cc-notification #cc-notification-permissions
{
	display: none;
}

#cc-tag
{
	position: fixed !important;
	z-index: 999999999 !important;
	bottom: 0 !important;
	right: 10% !important;
	display: none;
}

#cc-tag.cc-tag-bottom-left
{
	right: auto !important;
	left: 10% !important;
}

#cc-tag.cc-tag-horizontal-right
{
	right: 0 !important;
	bottom: 20% !important;
}

#cc-tag.cc-tag-horizontal-left
{
	left: 0 !important;
	right: auto !important;
	bottom: 20% !important;
}

#cc-tag.cc-tag-vertical-right
{
	right: 0 !important;
	bottom: 20% !important;
}

#cc-tag.cc-tag-vertical-left
{
	left: 0 !important;
	right: auto !important;
	bottom: 20% !important;
}

#cc-tag a
{
	padding: 0 12px !important;
	text-decoration: none !important;
}
#cc-modal-overlay
{
	background: rgb(255, 255, 255) !important;
	background-color: rgba(255,255,255,0.8) !important;
	display: none;
	width: 100% !important;
	height: 1000% !important;
	position: fixed !important;
	top: 0 !important;
	left: 0 !important;
	z-index: 999999 !important;
}

#cc-modal,
#cc-settingsmodal
{
	display: none;
	width: 100% !important;
	height: 1000% !important;
	position: fixed !important;
	top: 0 !important;
	left: 0 !important;
	z-index: 99999999 !important;
}


#cc-settingsmodal
{
	z-index: 9999999999 !important;
}

#cc-modal #cc-modal-wrapper,
#cc-settingsmodal #cc-settingsmodal-wrapper
{

	margin: 100px auto !important;
}

#cc-modal,
#cc-settingsmodal,
#cc-tag,
#cc-notification
{
	line-height: 1 !important;
}

.cc-clear
{
	clear: both !important;
}

#cc-modal,
#cc-settingsmodal,
#cc-tag,
#cc-notification,
#cc-modal div, #cc-modal span, #cc-modal iframe, #cc-modal h1, #cc-modal h2, #cc-modal h3, #cc-modal h4, #cc-modal h5, #cc-modal h6, #cc-modal p, #cc-modal pre, #cc-modal a, #cc-modal code, #cc-modal em, #cc-modal img, #cc-modal s, #cc-modal small, #cc-modal strong, #cc-modal b, #cc-modal u, #cc-modal i, #cc-modal dl, #cc-modal dt, #cc-modal dd, #cc-modal ol, #cc-modal ul, #cc-modal li, #cc-modal form, #cc-modal label,
#cc-settingsmodal div, #cc-settingsmodal span, #cc-settingsmodal iframe, #cc-settingsmodal h1, #cc-settingsmodal h2, #cc-settingsmodal h3, #cc-settingsmodal h4, #cc-settingsmodal h5, #cc-settingsmodal h6, #cc-settingsmodal p, #cc-settingsmodal pre, #cc-settingsmodal a, #cc-settingsmodal code, #cc-settingsmodal em, #cc-settingsmodal img, #cc-settingsmodal s, #cc-settingsmodal small, #cc-settingsmodal strong, #cc-settingsmodal b, #cc-settingsmodal u, #cc-settingsmodal i, #cc-settingsmodal dl, #cc-settingsmodal dt, #cc-settingsmodal dd, #cc-settingsmodal ol, #cc-settingsmodal ul, #cc-settingsmodal li, #cc-settingsmodal form, #cc-settingsmodal label,
#cc-tag div, #cc-tag span, #cc-tag iframe, #cc-tag h1, #cc-tag h2, #cc-tag h3, #cc-tag h4, #cc-tag h5, #cc-tag h6, #cc-tag p, #cc-tag pre, #cc-tag a, #cc-tag code, #cc-tag em, #cc-tag img, #cc-tag s, #cc-tag small, #cc-tag strong, #cc-tag b, #cc-tag u, #cc-tag i, #cc-tag dl, #cc-tag dt, #cc-tag dd, #cc-tag ol, #cc-tag ul, #cc-tag li, #cc-tag form, #cc-tag label,
#cc-notification div, #cc-notification span, #cc-notification iframe, #cc-notification h1, #cc-notification h2, #cc-notification h3, #cc-notification h4, #cc-notification h5, #cc-notification h6, #cc-notification p, #cc-notification pre, #cc-notification a, #cc-notification code, #cc-notification em, #cc-notification img, #cc-notification s, #cc-notification small, #cc-notification strong, #cc-notification b, #cc-notification u, #cc-notification i, #cc-notification dl, #cc-notification dt, #cc-notification dd, #cc-notification ol, #cc-notification ul, #cc-notification li, #cc-notification form, #cc-notification label
{
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 10pt;
	font-family: 'Open Sans', Arial, Helvetica, sans-serif;
	font-weight: 400;
	line-height: 1.5em;
	text-align: left;
	vertical-align: baseline;
	text-shadow: none;
	background: none;
	text-transform: none !important;
}
#cc-modal a,
#cc-tag a,
#cc-settingsmodal a,
#cc-notification a,
#cc-modal a:hover,
#cc-tag a:hover,
#cc-settingsmodal a:hover,
#cc-notification a:hover
{
	background-color: transparent;
}

#cc-modal a#footerlogo span {
	background: url("https://s3-eu-west-1.amazonaws.com/assets.cookieconsent.silktide.com/silktide-logo.png") no-repeat scroll 0 0 transparent !important;
	display: block;
	height: 31px !important;
	margin-top: 4px !important;
	text-indent: -5000px !important;
	width: 126px !important;
}

#cc-modal #cc-modal-wrapper a#footerlogo, footer#mainfooter a#footerlogo,
#cc-modal #cc-modal-wrapper a#footerlogo, footer#mainfooter a#footerlogo:active,
#cc-modal #cc-modal-wrapper a#footerlogo, footer#mainfooter a#footerlogo:visited
{
	display: block;
	margin-top: 20px !important;
	color: #868686 !important;
	text-decoration: none !important;
}

#cc-modal #cc-modal-wrapper .cc-getforsite
{
	position: absolute;
	right: 16px;
	bottom: 16px;
}

#cc-modal.cc-mobile #cc-modal-wrapper .cc-getforsite
{
	position: relative !important;
	margin-top: 30px !important;
	margin-left: 16px;
}

/*#cc-modal.cc-mobile,
#cc-settingsmodal.cc-mobile
{
	width: 100% !important;
	position: relative !important;
	top: 0 !important;
	left: 0 !important;
	height: auto !important;
	z-index: 999999999999 !important;
}*/

#cc-modal.cc-mobile a.cc-logo,
#cc-settingsmodal.cc-mobile a.cc-logo,
#cc-notification.cc-mobile a.cc-logo
{
	display: none !important;
}

#cc-notification .cc-logo,
#cc-tag .cc-logo,
#cc-modal .cc-logo,
#cc-settingsmodal .cc-logo
{
	background-image: url(https://s3-eu-west-1.amazonaws.com/assets.cookieconsent.silktide.com/cookie-consent-logo.png);
	width: 142px;
	height: 32px;
	position: absolute;
	right: 32px;
	bottom: 20px;

}

.cc-logo span
{
	display: none;
}


/**
LIGHT STYLE
*/

#cc-notification.cc-light
{
	background-color: rgb(226, 226, 226) !important;
	color: #1d1d1d !important;
}

#cc-notification.cc-light #cc-notification-permissions li
{
	color: #1d1d1d !important;

}

#cc-notification.cc-light #cc-notification-permissions li strong
{
	color: #31a8f0 !important;
}

#cc-notification.cc-light #cc-notification-permissions li.cc-notification-permissions-inactive
{
	color: #AAA !important;
}
#cc-notification.cc-light #cc-notification-permissions li.cc-notification-permissions-inactive label
{
	color: #AAA !important;
}

#cc-notification.cc-light #cc-notification-permissions li.cc-notification-permissions-inactive strong
{
	color: #88BFEF !important;
}

#cc-notification.cc-light #cc-notification-permissions li.cc-notification-permissions-inactive a.cc-learnmore-link
{
	color: #AAA !important;
}

#cc-notification.cc-light a,
#cc-notification.cc-light a:visited
{
	color: #31A8F0 !important;
}

#cc-notification.cc-light a:hover
{
	color: #257eb4 !important;
}

#cc-notification.cc-light h2,
#cc-notification.cc-light h3,
#cc-notification.cc-light p
{
	color: #1d1d1d !important;
}

#cc-notification.cc-light ul.cc-notification-buttons li a,
#cc-notification.cc-light ul.cc-notification-buttons li a:visited
{
	background-color: #f1d600 !important;
	color: #111 !important;
}

#cc-notification.cc-light ul.cc-notification-buttons li a:hover,
#cc-notification.cc-light ul.cc-notification-buttons li a:active,
#cc-notification.cc-light ul.cc-notification-buttons li #cc-approve-button-allsites:hover,
#cc-notification.cc-light ul.cc-notification-buttons li #cc-approve-button-allsites:active
{
	background-color: #f5f5f5 !important;
}

#cc-notification.cc-light ul.cc-notification-buttons li #cc-approve-button-allsites
{
	background-color: #31A8F0 !important;
}

#cc-tag.cc-light a,
#cc-tag.cc-light a:visited
{
	background-color: #e2e2e2 !important;
	color: #1d1d1d !important;
}


body #cc-modal #cc-modal-wrapper
{
	background-color: #e2e2e2 !important;
	color: #f5f5f5 !important;
}

body #cc-modal #cc-modal-wrapper a,
body #cc-modal #cc-modal-wrapper a:visited
{
	color: #fff !important;
}
body #cc-modal #cc-modal-wrapper a:hover
{
	color: #fff !important;
}

body #cc-modal #cc-modal-wrapper #cc-change-button-allsites
{
	background-color: #666666 !important;
	color: #111 !important;
}

body #cc-modal #cc-modal-wrapper select
{

	color: #111 !important;
}

body #cc-modal #cc-modal-wrapper a.cc-consentchange:hover
{
	background-color: #31A8F0 !important;
}

body #cc-modal #cc-modal-wrapper li strong
{
	color: #31a8f0 !important;
}

body #cc-modal #cc-modal-wrapper li span
{
	color: #7A7A7A !important;

}
#cc-settingsmodal.cc-light #cc-settingsmodal-wrapper
{

	background-color: #e1e1e1 !important;
	color: #f5f5f5 !important;
}

body #cc-modal #cc-modal-wrapper p,
#cc-settingsmodal.cc-light #cc-settingsmodal-wrapper p
{
	color: #F5F5F5 !important;
}


body #cc-modal #cc-modal-wrapper h2,
#cc-settingsmodal.cc-light #cc-settingsmodal-wrapper h2
{
	color: #1d1d1d !important;
}

body #cc-modal #cc-modal-wrapper h2 span,
#cc-settingsmodal.cc-light #cc-settingsmodal-wrapper h2 span
{
	color: #7a7a7a !important;
}

#cc-settingsmodal.cc-light #cc-settingsmodal-wrapper h2 span
{
	color: #71f031 !important;
}

#cc-settingsmodal.cc-light #cc-settingsmodal-wrapper p.cc-subtitle,
body #cc-modal #cc-modal-wrapper p.cc-subtitle
{
	color: #7a7a7a !important;
}

#cc-settingsmodal.cc-light #cc-settingsmodal-secondclosebutton a,
#cc-settingsmodal.cc-light #cc-settingsmodal-secondclosebutton a:visited
{
	color: #666666 !important;
}

body #cc-modal #cc-modal-secondclosebutton a:hover,
body #cc-modal #cc-modal-secondclosebutton a:active,
#cc-settingsmodal.cc-light #cc-settingsmodal-secondclosebutton a:hover,
#cc-settingsmodal.cc-light #cc-settingsmodal-secondclosebutton a:active,
body #cc-modal #cc-modal-global a:hover,
body #cc-modal #cc-modal-global a:active
{
	color:#fff  !important;
}

body #cc-modal #cc-modal-wrapper .cc-preference-importantmessage a,
body #cc-modal #cc-modal-wrapper .cc-preference-importantmessage a:visited
{

	background-color: #f5F5F5 !important;
	color: #111 !important;
	box-shadow:1px 1px 2px #000;
	-moz-box-shadow:1px 1px 2px #000;
	-webkit-box-shadow:1px 1px 2px #000;
	background-color: #F1D600 !important;

}

body #cc-modal #cc-modal-wrapper .cc-preference-importantmessage a:hover,
body #cc-modal #cc-modal-wrapper .cc-preference-importantmessage a:active
{
	background-color: #0288CE !important;
	color:#fff  !important;
	box-shadow:1px 2px 10px #000;
	-moz-box-shadow:1px 2px 10px #000;
	-webkit-box-shadow:1px 2px 10px #000;

}

body #cc-modal #cc-modal-wrapper a.cc-learnmore-link,
#cc-settingsmodal.cc-light #cc-settingsmodal-wrapper a.cc-learnmore-link,
#cc-notification.cc-light a.cc-learnmore-link
{
	color: #666 !important;
}

/**
MONOCHROME STYLE
*/

#cc-notification.cc-monochrome
{
	background: rgb(51, 51, 51) !important;
	background-color: rgba(51, 51, 51, 0.95) !important;
	color: #fff !important;
}

#cc-notification.cc-monochrome #cc-notification-permissions li
{
	color: #fff !important;

}

#cc-notification.cc-monochrome #cc-notification-permissions li strong
{
	color: #fff !important;
}

#cc-notification.cc-monochrome #cc-notification-permissions li.cc-notification-permissions-inactive
{
	color: #AAA !important;
}
#cc-notification.cc-monochrome #cc-notification-permissions li.cc-notification-permissions-inactive label
{
	color: #AAA !important;
}

#cc-notification.cc-monochrome #cc-notification-permissions li.cc-notification-permissions-inactive strong
{
	color: #bbb !important;
}

#cc-notification.cc-monochrome #cc-notification-permissions li.cc-notification-permissions-inactive a.cc-learnmore-link
{
	color: #AAA !important;
}

#cc-notification.cc-monochrome a,
#cc-notification.cc-monochrome a:visited
{
	color: #DDD !important;
}

#cc-notification.cc-monochrome a:hover
{
	color: #ffffff !important;
}

#cc-notification.cc-monochrome h2,
#cc-notification.cc-monochrome h3,
#cc-notification.cc-monochrome p
{
	color: #AAA !important;
}

#cc-notification.cc-monochrome ul.cc-notification-buttons li a,
#cc-notification.cc-monochrome ul.cc-notification-buttons li a:visited
{
	background-color: #ddd !important;
	color: #111 !important;
}

#cc-notification.cc-monochrome ul.cc-notification-buttons li a:hover,
#cc-notification.cc-monochrome ul.cc-notification-buttons li a:active,
#cc-notification.cc-monochrome ul.cc-notification-buttons li #cc-approve-button-allsites:hover,
#cc-notification.cc-monochrome ul.cc-notification-buttons li #cc-approve-button-allsites:active
{
	background-color: #fff !important;
}

#cc-notification.cc-monochrome ul.cc-notification-buttons li #cc-approve-button-allsites
{
	background-color: #ddd !important;
}

#cc-tag.cc-monochrome #cc-tag-button,
#cc-tag.cc-monochrome #cc-tag-button:visited
{
	background-color: #333 !important;
	color: #ddd !important;
}
#cc-tag.cc-monochrome #cc-tag-button:hover,
#cc-tag.cc-monochrome #cc-tag-button:active
{
	border-top: 3px solid #fff !important;
	border-right: 3px solid #fff !important;
	border-left: 3px solid #fff !important;
}
#cc-settingsmodal.cc-monochrome #cc-settingsmodal-wrapper li strong,
#cc-modal.cc-monochrome #cc-modal-wrapper li strong
{
	color: #FFF !important;
}

#cc-modal.cc-monochrome #cc-modal-wrapper
{
	background-color: #333 !important;
	color: #f5f5f5 !important;
}

#cc-modal.cc-monochrome #cc-modal-wrapper a,
#cc-modal.cc-monochrome #cc-modal-wrapper a:visited
{
	color: #666666 !important;
}
#cc-modal.cc-monochrome #cc-modal-wrapper a:hover
{
	color: #31A8F0 !important;
}

#cc-modal.cc-monochrome #cc-modal-wrapper #cc-change-button-allsites
{
	background-color: #666666 !important;
	color: #111 !important;
}

#cc-modal.cc-monochrome #cc-modal-wrapper select
{

	color: #111 !important;
}

#cc-modal.cc-monochrome #cc-modal-wrapper a.cc-consentchange:hover
{
	background-color: #31A8F0 !important;
}

#cc-modal.cc-monochrome #cc-modal-wrapper li strong
{
	color: #fff !important;
}

#cc-modal.cc-monochrome #cc-modal-wrapper li span
{
	color: #7A7A7A !important;

}
#cc-settingsmodal.cc-monochrome #cc-settingsmodal-wrapper
{

	background-color: #333 !important;
	color: #f5f5f5 !important;
}

#cc-modal.cc-monochrome #cc-modal-wrapper p,
#cc-settingsmodal.cc-monochrome #cc-settingsmodal-wrapper p
{
	color: #F5F5F5 !important;
}


#cc-modal.cc-monochrome #cc-modal-wrapper h2,
#cc-settingsmodal.cc-monochrome #cc-settingsmodal-wrapper h2
{
	color: #fff !important;
}

#cc-modal.cc-monochrome #cc-modal-wrapper h2 span,
#cc-settingsmodal.cc-monochrome #cc-settingsmodal-wrapper h2 span
{
	color: #7a7a7a !important;
}

#cc-settingsmodal.cc-monochrome #cc-settingsmodal-wrapper h2 span
{
	color: #ddd !important;
}

#cc-settingsmodal.cc-monochrome #cc-settingsmodal-wrapper p.cc-subtitle,
#cc-modal.cc-monochrome #cc-modal-wrapper p.cc-subtitle
{
	color: #7a7a7a !important;
}

#cc-settingsmodal.cc-monochrome #cc-settingsmodal-secondclosebutton a,
#cc-settingsmodal.cc-monochrome #cc-settingsmodal-secondclosebutton a:visited
{
	color: #fff !important;
}

#cc-modal.cc-monochrome #cc-modal-secondclosebutton a:hover,
#cc-modal.cc-monochrome #cc-modal-secondclosebutton a:active,
#cc-settingsmodal.cc-monochrome #cc-settingsmodal-secondclosebutton a:hover,
#cc-settingsmodal.cc-monochrome #cc-settingsmodal-secondclosebutton a:active,
#cc-modal.cc-monochrome #cc-modal-global a:hover,
#cc-modal.cc-monochrome #cc-modal-global a:active
{
	color:#fff  !important;
}

#cc-modal.cc-monochrome #cc-modal-wrapper .cc-preference-importantmessage a,
#cc-modal.cc-monochrome #cc-modal-wrapper .cc-preference-importantmessage a:visited
{

	background-color: #f5F5F5 !important;
	color: #111 !important;
	box-shadow:1px 1px 2px #000;
	-moz-box-shadow:1px 1px 2px #000;
	-webkit-box-shadow:1px 1px 2px #000;
	background-color: #F1D600 !important;

}

#cc-modal.cc-monochrome #cc-modal-wrapper .cc-preference-importantmessage a:hover,
#cc-modal.cc-monochrome #cc-modal-wrapper .cc-preference-importantmessage a:active
{
	background-color: #0288CE !important;
	color:#fff  !important;
	box-shadow:1px 2px 10px #000;
	-moz-box-shadow:1px 2px 10px #000;
	-webkit-box-shadow:1px 2px 10px #000;

}

#cc-modal.cc-monochrome #cc-modal-wrapper a.cc-learnmore-link,
#cc-settingsmodal.cc-monochrome #cc-settingsmodal-wrapper a.cc-learnmore-link,
#cc-notification.cc-monochrome a.cc-learnmore-link
{
	color: #ddd !important;
}

/**
DARK STYLE
*/

#cc-notification ul.cc-notification-buttons li a,
#cc-notification ul.cc-notification-buttons li a:visited
{
	float: right !important;
}
#cc-notification ul.cc-notification-buttons
{
	position: absolute !important;
	right: 0 !important;
	top: 5px !important;
	width: 360px !important;
}
#cc-notification #cc-notification-wrapper
{

}
#cc-notification.cc-mobile #cc-notification-wrapper
{
	margin-right: 0 !important;
}
#cc-notification.cc-mobile ul.cc-notification-buttons li a,
#cc-notification.cc-mobile ul.cc-notification-buttons li a:visited
{
	float: none !important;
}
#cc-notification.cc-mobile ul.cc-notification-buttons
{
	padding-top: 1px !important;

	position: relative !important;
	right: 0 !important;
	top: 0 !important;
	width: auto !important;
	clear: both;
}

#cc-notification
{
	background: rgb(29, 29, 29) !important;
	background-color: rgba(29, 29, 29, 0.95) !important;
	color: #F5F5F5 !important;
	border-bottom: 1px dotted #CCCCCC !important;
	font-family: 'Open Sans', Arial, Helvetica, sans-serif !important;
	font-size: 11pt !important;
}

#cc-notification #cc-notification-wrapper
{
	padding: 15px !important;
}

#cc-notification #cc-notification-permissions ul
{
	margin: 0 !important;
	padding: 0 !important;
	list-style: none !important;
	float: left !important;
}

#cc-notification.cc-mobile #cc-notification-permissions li
{
	width: auto !important;
}

#cc-notification #cc-notification-permissions li
{
	margin: 0 0 10px 30px !important;
	padding: 6px 0 0 !important;
	list-style: none !important;
	width: 440px !important;
	color: #9a9a9a !important;
	-webkit-transition:color 0.2s ease-in;
	-moz-transition:color 0.2s ease-in;
	-o-transition:color 0.2s ease-in;
	transition:color 0.2s ease-in;

}


#cc-notification #cc-notification-permissions li label
{
	font-size: 10pt !important;
	line-height: 1.3em;
	color: #9a9a9a !important;
	-webkit-transition:color 0.2s ease-in;
	-moz-transition:color 0.2s ease-in;
	-o-transition:color 0.2s ease-in;
	transition:color 0.2s ease-in;
}

#cc-notification #cc-notification-permissions li input
{
	float: left !important;
	margin-left: -30px !important;
	margin-top: 0 !important;
}

#cc-notification #cc-notification-permissions li strong
{
	color: #31a8f0 !important;
	display: block !important;
	font-size: 14pt;
	letter-spacing: -0.05em;
	-webkit-transition:color 0.2s ease-in;
	-moz-transition:color 0.2s ease-in;
	-o-transition:color 0.2s ease-in;
	transition:color 0.2s ease-in;
}

#cc-notification #cc-notification-permissions li.cc-notification-permissions-inactive
{
	color: #666 !important;
}
#cc-notification #cc-notification-permissions li.cc-notification-permissions-inactive label
{
	color: #666 !important;
}

#cc-notification #cc-notification-permissions li.cc-notification-permissions-inactive strong
{
	color: #1D658E !important;
}
#cc-notification #cc-notification-permissions li a.cc-learnmore-link
{
	-webkit-transition:color 0.2s ease-in;
	-moz-transition:color 0.2s ease-in;
	-o-transition:color 0.2s ease-in;
	transition:color 0.2s ease-in;
}
#cc-notification #cc-notification-permissions li.cc-notification-permissions-inactive a.cc-learnmore-link
{
	color: #666 !important;
}

#cc-notification a,
#cc-notification a:visited
{
	text-decoration: none !important;
	color: #31A8F0 !important;
	font-size:11pt;
}

#cc-notification a:hover
{
	text-decoration: underline !important;
	color: #B2F7FF !important;
}

#cc-notification h2,
#cc-notification h3,
#cc-notification p
{
	color: #F5F5F5 !important;
	margin: 0 !important;
	text-align: left !important;
	font-size:11pt;
	width: auto !important;
}
#cc-notification h2
{
	margin-right: 320px !important;
}

#cc-notification.cc-mobile h2
{
	margin-right: 0 !important;
}

#cc-notification h2 span,
#cc-notification h2
{
	font-size: 13px;
	/*letter-spacing: -0.05em;*/
	font-weight: 400 !important;
}

#cc-notification h2 a
{
	letter-spacing: -0.05em;
	font-size: 13px;
}

#cc-notification h3
{
	margin-top: 10px !important;
}

#cc-notification ul.cc-notification-buttons
{
	margin: 0 !important;
	padding: 0 !important;
	list-style: none !important;

}

#cc-notification.cc-notification-afterload ul.cc-notification-buttons
{
	top: auto !important;
	bottom: 5px !important;
}

#cc-notification ul.cc-notification-buttons li
{
	margin: 0 !important;
	padding: 0 !important;
	list-style: none !important;
}

#cc-notification ul.cc-notification-buttons li a,
#cc-notification ul.cc-notification-buttons li a:visited
{
	margin-top: 8px !important;
	margin-bottom: 6px !important;
	display: block;
	padding: 8px 16px !important;
	background-color: #f1d600 !important;
	color: #111 !important;
	margin-right: 12px !important;
	text-decoration: none !important;
	font-size:12pt !important;
	font-weight: 600;
	letter-spacing: -0.05em;

	border-radius: 5px !important;
	-moz-border-radius: 5px !important;
	-webkit-border-radius: 5px !important;

	/*box-shadow:1px 1px 2px #000;*/
	/*-moz-box-shadow:1px 1px 2px #000;*/
	/*-webkit-box-shadow:1px 1px 2px #000;*/

	transition:background 0.2s ease-in-out 0s, color 0.2s ease-in-out 0s, box-shadow 0.2s ease-in-out 0s;
	-moz-transition:background 0.2s ease-in-out 0s, color 0.2s ease-in-out 0s, -moz-box-shadow 0.2s ease-in-out 0s;
	-webkit-transition:background 0.2s ease-in-out 0s, color 0.2s ease-in-out 0s, -webkit-box-shadow 0.2s ease-in-out 0s;

}

#cc-notification ul.cc-notification-buttons li a:hover,
#cc-notification ul.cc-notification-buttons li a:active,
#cc-notification ul.cc-notification-buttons li #cc-approve-button-allsites:hover,
#cc-notification ul.cc-notification-buttons li #cc-approve-button-allsites:active
{
	text-decoration: none !important;
	background-color: #f5f5f5 !important;

	box-shadow:1px 2px 10px #000;
	-moz-box-shadow:1px 2px 10px #000;
	-webkit-box-shadow:1px 2px 10px #000;

}

#cc-notification ul.cc-notification-buttons li #cc-approve-button-allsites
{
	background-color: #31A8F0 !important;
}

#cc-tag
{


}

#cc-tag,
#cc-tag #cc-tag-button,
#cc-tag #cc-tag-button  span
{

}

#cc-tag a,
#cc-tag a:visited
{
	font-family: 'Open Sans', Arial, Helvetica, sans-serif !important;
	font-size: 12pt !important;
	background-color: #1d1d1d !important;
	/*background-image: url(http://assets.cookieconsent.silktide.com/cookie-consent-box.png);*/
	background-repeat: no-repeat;
	background-position: 6px 7px;
	color: #F5F5F5 !important;
	padding: 8px 12px 8px 12px !important;
	text-decoration: none !important;
	display:block;
	border-top: 3px solid #666 !important;
	border-right: 3px solid #666 !important;
	border-left: 3px solid #666 !important;

	border-radius: 3px 3px 0  0 !important;
	-moz-border-radius: 3px 3px 0  0 !important;
	-webkit-border-radius: 3px 3px 0  0 !important;

	box-shadow:1px 1px 2px #000;
	-moz-box-shadow:1px 1px 2px #000;
	-webkit-box-shadow:1px 1px 2px #000;

	transition:color 0.2s ease-in-out 0s, box-shadow 0.2s ease-in-out 0s;
	-moz-transition:color 0.2s ease-in-out 0s, -moz-box-shadow 0.2s ease-in-out 0s;
	-webkit-transition:color 0.2s ease-in-out 0s, -webkit-box-shadow 0.2s ease-in-out 0s;
}

#cc-tag.cc-tag-horizontal-right a,
#cc-tag.cc-tag-horizontal-right a:visited
{
	-webkit-transform: rotate(-90deg) !important;
	-moz-transform: rotate(-90deg) !important;
	-o-transform: rotate(-90deg) !important;
	-ms-transform: rotate(-90deg) !important;
	margin-right: -82px !important;
	padding: 8px 12px 60px 12px !important;
}

#cc-tag.cc-tag-horizontal-left a,
#cc-tag.cc-tag-horizontal-left a:visited
{
	-webkit-transform: rotate(90deg) !important;
	-moz-transform: rotate(90deg) !important;
	-o-transform: rotate(90deg) !important;
	-ms-transform: rotate(90deg) !important;
	margin-left: -82px !important;
	padding: 8px 12px 60px 12px !important;
}

#cc-tag.cc-tag-vertical-right a,
#cc-tag.cc-tag-vertical-right a:visited
{
	-webkit-transform: rotate(-90deg) !important;
	-moz-transform: rotate(-90deg) !important;
	-o-transform: rotate(-90deg) !important;
	-ms-transform: rotate(-90deg) !important;
	margin-right: -82px !important;
	padding: 8px 12px 60px 12px !important;
}

#cc-tag.cc-tag-vertical-left a,
#cc-tag.cc-tag-vertical-left a:visited
{
	-webkit-transform: rotate(90deg) !important;
	-moz-transform: rotate(90deg) !important;
	-o-transform: rotate(90deg) !important;
	-ms-transform: rotate(90deg) !important;
	margin-left: -82px !important;
	padding: 8px 12px 60px 12px !important;
}



#cc-tag a:hover,
#cc-tag a:active
{
	border-top: 3px solid #F1D600 !important;
	border-right: 3px solid #F1D600 !important;
	border-left: 3px solid #F1D600 !important;

	box-shadow:2px 2px 7px #000;
	-moz-box-shadow:2px 2px 7px #000;
	-webkit-box-shadow:2px 2px 7px #000;
}

#cc-tag a span
{
	font-size: 12pt !important;
}

#cc-modal
{
	font-family: 'Open Sans', Arial, Helvetica, sans-serif !important;
	font-size: 11pt !important;
}

#cc-modal #cc-modal-wrapper
{
	width: 686px !important;
	margin: 40px auto !important;
	background-color: #1d1d1d !important;
	color: #f5f5f5 !important;
	padding:25px 15px 5px !important;
	text-align: left !important;
	position: relative !important;
	max-height: 8%;
	overflow-y: auto;
	overflow-x: hidden;
	min-height: 560px;
	box-shadow:0px 0px 30px #000;
	-moz-box-shadow:0px 0px 30px #000;
	-webkit-box-shadow:0px 0px 30px #000;
}

#cc-modal #cc-modal-wrapper a,
#cc-modal #cc-modal-wrapper a:visited
{
	color: #F5F500 !important;
	text-decoration: none !important;
}
#cc-modal #cc-modal-wrapper a:hover
{
	color: #31A8F0 !important;
	text-decoration: underline !important;
}

#cc-modal #cc-modal-wrapper #cc-change-button-allsites
{
	margin-top: 16px !important;
	margin-bottom: 6px !important;
	display: block !important;
	padding: 6px 12px !important;
	background-color: #F5F500 !important;
	color: #111 !important;
	float: left !important;
	clear: both !important;
	margin-right: 8px !important;
	text-decoration: none !important;
	border-radius: 3px !important;
	-moz-border-radius: 3px !important;
	-webkit-border-radius: 3px !important;
}

#cc-modal #cc-modal-wrapper #cc-change-button-allsites:hover,
#cc-modal #cc-modal-wrapper #cc-change-button-allsites:active
{
	background-color: #31A8F0 !important;
}

#cc-settingsmodal #cc-settingsmodal-wrapper select,
#cc-modal #cc-modal-wrapper select
{
	/*padding: 2px 6px !important;*/
	color: #111 !important;
	margin-right: 8px !important;
	text-decoration: none !important;
	position: absolute !important;
	top: 28px !important;
	right: 8px !important;
	float: right !important;
	font-size: 10pt !important;
	width: 150px;
}

#cc-settingsmodal.cc-mobile #cc-settingsmodal-wrapper select,
#cc-modal.cc-mobile #cc-modal-wrapper select
{
	float: none !important;
	margin-top: 10px !important;
	position: static !important;
}

#cc-modal #cc-modal-wrapper a.cc-consentchange:hover
{
	background-color: #31A8F0 !important;
}


#cc-settingsmodal #cc-settingsmodal-wrapper ul li label,
#cc-modal #cc-modal-wrapper ul li label
{
	float: left;
}

#cc-settingsmodal #cc-settingsmodal-wrapper ul,
#cc-modal #cc-modal-wrapper ul
{
	margin: 0 !important;
	padding: 0 100px !important;
	list-style: none !important;
}

#cc-settingsmodal.cc-mobile #cc-settingsmodal-wrapper ul,
#cc-modal.cc-mobile #cc-modal-wrapper ul
{
	padding: 0 !important;
}

#cc-settingsmodal #cc-settingsmodal-wrapper li,
#cc-modal #cc-modal-wrapper li
{
	clear: both !important;
	margin: 0 !important;
	padding: 30px 0 0 !important;
	list-style: none !important;
	position: relative;
}

#cc-settingsmodal #cc-settingsmodal-wrapper li strong,
#cc-modal #cc-modal-wrapper li strong
{
	width: 480px !important;
	float: left !important;
	display: block !important;
	color: #31a8f0 !important;
	font-size: 16pt;
	font-weight: 400 !important;
}

#cc-settingsmodal.cc-mobile #cc-settingsmodal-wrapper li strong
#cc-modal.cc-mobile #cc-modal-wrapper li strong
{
	float: none !important;
}

#cc-settingsmodal #cc-settingsmodal-wrapper li span,
#cc-modal #cc-modal-wrapper li span
{
	width: 470px !important;
	float: left !important;
	clear: left !important;
	display: block !important;
	color: #7A7A7A !important;
	line-height: 1.2em;
	font-size: 11pt !important;
	margin-top: 8px;

}

#cc-settingsmodal.cc-mobile #cc-settingsmodal-wrapper li span,
#cc-modal.cc-mobile #cc-modal-wrapper li span
{
	float: none !important;
}

#cc-settingsmodal
{
	font-family: 'Open Sans', Arial, Helvetica, sans-serif !important;
	font-size: 11pt !important;
}

#cc-settingsmodal.cc-mobile
{
	height: auto;
}

#cc-settingsmodal #cc-settingsmodal-wrapper
{
	width: 716px !important;
	height: 8% !important;
	margin: 40px auto !important;
	background-color: #1d1d1d !important;
	padding-top: 24px !important;

	color: #f5f5f5 !important;
	text-align: left !important;
	position: relative !important;
	overflow-x: hidden;
	max-height: 560px;
	background-image: url(https://s3-eu-west-1.amazonaws.com/assets.cookieconsent.silktide.com/globe.png);
	background-position: -20px 20px;
	background-repeat: no-repeat;
	box-shadow:0px 0px 30px #000;
	-moz-box-shadow:0px 0px 30px #000;
	-webkit-box-shadow:0px 0px 30px #000;

}
#cc-settingsmodal #cc-settingsmodal-wrapper .cc-content
{
	overflow: hidden !important;

	min-height: 350px;
	height: auto;
	margin-top: 20px;
}
#cc-settingsmodal.cc-mobile #cc-settingsmodal-wrapper
{
	max-height: none !important;
}

#cc-settingsmodal.cc-mobile #cc-settingsmodal-wrapper .cc-content
{
	height: 540px !important;
	max-height: none !important;
}

#cc-modal #cc-modal-wrapper p
{
	line-height: 1.3em;
	margin-top: 12px;
	color: #F5F5F5 !important;
}

#cc-settingsmodal #cc-settingsmodal-wrapper p
{
	margin-top: 32px;
}

#cc-modal #cc-modal-wrapper .cc-content
{
	padding-top: 8px;
	clear: both;
	height: 420px;
    overflow-x: hidden !important;
    overflow-y: auto !important;
}
#cc-modal.cc-mobile #cc-modal-wrapper .cc-content
{
	height: auto !important;
}

#cc-modal #cc-modal-wrapper h2,
#cc-settingsmodal #cc-settingsmodal-wrapper h2
{
	margin: 0 57px !important;
	font-size: 20pt !important;
	width: 712px !important;
	color: #FFF !important;
	font-weight: 400;
}

#cc-settingsmodal #cc-settingsmodal-wrapper h2
{
	margin: 0 72px !important;
}


#cc-modal #cc-modal-wrapper h2 span,
#cc-settingsmodal #cc-settingsmodal-wrapper h2 span
{
	font-size: 14pt !important;
	color: #7a7a7a !important;
}

#cc-settingsmodal #cc-settingsmodal-wrapper h2 span
{
	color: #71f031 !important;
}

#cc-settingsmodal #cc-settingsmodal-wrapper p.cc-subtitle,
#cc-modal #cc-modal-wrapper p.cc-subtitle
{
	color: #7a7a7a !important;
	margin: 20px 100px 0 !important;
	font-size: 12pt !important;
}

#cc-settingsmodal #cc-settingsmodal-wrapper p.cc-subtitle
{
	margin: 16px 0 0 73px !important;
}

#cc-modal.cc-mobile #cc-modal-wrapper p.cc-subtitle
{
	margin-left: 0 !important;
}

#cc-settingsmodal.cc-mobile #cc-settingsmodal-wrapper p.cc-subtitle
{
	margin-left: 10px !important;
}

#cc-settingsmodal #cc-settingsmodal-wrapper iframe
{
	width: 714px !important;
	border: 0 !important;
	min-height: 390px !important;
}
#cc-settingsmodal.cc-mobile #cc-settingsmodal-wrapper iframe
{
	width: 100% !important;
	height: 500px;
	z-index: 9999999999999 !important;
	margin-top: 0;
}

#cc-modal #cc-modal-closebutton a,
#cc-settingsmodal #cc-settingsmodal-closebutton a {
	/*
	background-image: url("https://s3-eu-west-1.amazonaws.com/assets.cookieconsent.silktide.com/modal-close.png") !important;
	display: block !important;
	height: 24px !important;
	position: absolute !important;
	right: 10px !important;
	top: 10px !important;
	width: 24px !important;
	background-position: 0 0;
	*/
	position: relative !important;
	right: auto !important;
	top: auto !important;
	height: auto !important;
	text-align: center;
	background-image: none !important;
	display: block !important;
}

#cc-modal #cc-modal-closebutton a:hover,
#cc-settingsmodal #cc-settingsmodal-closebutton a:hover {

	/*background-position: 0 -24px;*/

}


#cc-modal #cc-modal-global
{
	padding-top: 5px !important;
}


#cc-modal #cc-modal-secondclosebutton a,
#cc-modal #cc-modal-secondclosebutton a:visited,
#cc-settingsmodal #cc-settingsmodal-secondclosebutton a,
#cc-settingsmodal #cc-settingsmodal-secondclosebutton a:visited,
#cc-modal #cc-modal-global a,
#cc-modal #cc-modal-global a:visited
{

}
#cc-settingsmodal #cc-settingsmodal-secondclosebutton a,
#cc-settingsmodal #cc-settingsmodal-secondclosebutton a:visited
{
    width: auto !important;
	color: #71F031 !important;
	text-decoration: none !important;
}
#cc-modal #cc-modal-secondclosebutton a span,
#cc-modal #cc-modal-secondclosebutton a:visited span,
#cc-settingsmodal #cc-settingsmodal-secondclosebutton a span,
#cc-settingsmodal #cc-settingsmodal-secondclosebutton a:visited span,
#cc-modal #cc-modal-global a span,
#cc-modal #cc-modal-global a:visited span
{
	font-size: 12pt !important;
	font-weight: 600 !important;
}

#cc-settingsmodal.cc-mobile #cc-settingsmodal-secondclosebutton
{
	padding-left: 10px;
	padding-top: 0;
}

#cc-modal.cc-mobile #cc-modal-secondclosebutton a,
#cc-modal.cc-mobile #cc-modal-secondclosebutton a:visited,
#cc-modal.cc-mobile #cc-modal-global a,
#cc-modal.cc-mobile #cc-modal-global a:visited
{
	float: none !important;
}

#cc-settingsmodal.cc-mobile #cc-settingsmodal-secondclosebutton a,
#cc-settingsmodal.cc-mobile #cc-settingsmodal-secondclosebutton a:visited
{
	display: none !important;
}

#cc-modal #cc-modal-secondclosebutton a:hover,
#cc-modal #cc-modal-secondclosebutton a:active,
#cc-settingsmodal #cc-settingsmodal-secondclosebutton a:hover,
#cc-settingsmodal #cc-settingsmodal-secondclosebutton a:active,
#cc-modal #cc-modal-global a:hover,
#cc-modal #cc-modal-global a:active
{
	text-decoration: none !important;
	color:#fff  !important;


}



#cc-modal #cc-modal-wrapper #cc-modal-footer-buttons
{
	margin-left: 57px !important;
	margin-top: 25px !important;

}
#cc-settingsmodal #cc-settingsmodal-wrapper #cc-settingsmodal-footer-buttons
{
	margin-left: 72px !important;
}

#cc-modal.cc-mobile #cc-modal-wrapper #cc-modal-footer-buttons
{
	position:relative;
	width: auto;
	padding-top: 10px !important;
	margin-left: 0 !important;
}


#cc-modal #cc-modal-wrapper .cc-preference-importantmessage
{
	margin-top: 20px !important;
	clear: both !important;
	padding: 10px !important;
	text-align: left !important;
	background-color: #444 !important;
	border: 1px dotted #666 !important;
	line-height: 2em !important;
}

#cc-modal #cc-modal-wrapper .cc-preference-importantmessage a,
#cc-modal #cc-modal-wrapper .cc-preference-importantmessage a:visited
{
	line-height: 1.2em;
	margin-top: 0 !important;
	margin-bottom: 0 !important;
	display: block;
	padding: 5px 10px !important;
	background-color: #f5F5F5 !important;
	color: #111 !important;
	margin-right: 8px !important;
	text-decoration: none !important;
	font-size:10pt;
	float: right;

	border-radius: 5px !important;
	-moz-border-radius: 5px !important;
	-webkit-border-radius: 5px !important;

	box-shadow:1px 1px 2px #000;
	-moz-box-shadow:1px 1px 2px #000;
	-webkit-box-shadow:1px 1px 2px #000;

	transition:background 0.2s ease-in-out 0s, color 0.2s ease-in-out 0s, box-shadow 0.2s ease-in-out 0s;
	-moz-transition:background 0.2s ease-in-out 0s, color 0.2s ease-in-out 0s, -moz-box-shadow 0.2s ease-in-out 0s;
	-webkit-transition:background 0.2s ease-in-out 0s, color 0.2s ease-in-out 0s, -webkit-box-shadow 0.2s ease-in-out 0s;
	background-color: #F1D600 !important;

}

#cc-modal #cc-modal-wrapper .cc-preference-importantmessage a:hover,
#cc-modal #cc-modal-wrapper .cc-preference-importantmessage a:active
{
	text-decoration: none !important;
	background-color: #0288CE !important;
	color:#fff  !important;
	box-shadow:1px 2px 10px #000;
	-moz-box-shadow:1px 2px 10px #000;
	-webkit-box-shadow:1px 2px 10px #000;

}

#cc-modal #cc-modal-wrapper a.cc-learnmore-link,
#cc-settingsmodal #cc-settingsmodal-wrapper a.cc-learnmore-link,
#cc-notification a.cc-learnmore-link
{
	color: #FFF !important;
}

#cc-modal.cc-mobile #cc-modal-wrapper
{
	height: auto !important;
	max-height: none !important;
	min-height: inherit !important;
}

#cc-modal.cc-mobile #cc-modal-wrapper,
#cc-settingsmodal.cc-mobile #cc-settingsmodal-wrapper
{
	margin-top: 0 !important;
	width: auto !important;
}
#cc-modal.cc-mobile #cc-modal-wrapper h2
{
	width: auto !important;
	margin-left: 0 !important;
}
#cc-settingsmodal.cc-mobile #cc-settingsmodal-wrapper h2 span,
#cc-modal.cc-mobile #cc-modal-wrapper h2 span
{
	display: block;
	margin-top: 8px;
}

#cc-settingsmodal.cc-mobile #cc-settingsmodal-wrapper h2
{
	margin-left: 10px !important;
	width: auto !important;
}

#cc-modal.cc-mobile #cc-modal-wrapper,
#cc-settingsmodal.cc-mobile #cc-settingsmodal-wrapper
{
	border: 0 !important;
	box-shadow: none;
	-moz-box-shadow: none;
	-webkit-box-shadow: none;
	background-image: none !important;
	max-height: none !important;

}
#cc-settingsmodal.cc-mobile #cc-settingsmodal-wrapper li span,
#cc-modal.cc-mobile #cc-modal-wrapper li span
{
	width: auto !important;
	float: none !important;
}
#cc-modal.cc-mobile #cc-modal-wrapper a.cc-consentchange
{
	margin-top: 10px !important;
	float: none !important;
}
#cc-modal #cc-modal-wrapper li strong
{
	width: auto !important;
}

.image_off
{
        margin: 0px;
        background-repeat: repeat;
        color: #FFFFFF;
        font-size: 130%;
        font-weight: normal;
        text-align: justify;
        width: 100%;
        height: auto;
    -webkit-border-radius: 5px;
    border-radius: 5px;
    overflow: hidden;
}

.text_off
{
    display: block;
    width: 100%;
    height: 100%;
    color:black;
    padding: 20px 0;
}

.bg_text {
    background-color: rgba(255, 255, 255, 0.9);
    display: block;
    margin: 0 auto;
    padding: 5px;
    text-align: center;
    width: 80%;
    -webkit-border-radius: 5px;
    border-radius: 5px;
    font-size: 1.2em;
}

/* custom styles */
#cc-notification + div header nav.navbar-fixed-top { top: 69px; }
#cc-notification.cc-mobile + div header nav.navbar-fixed-top { top: 0 !important; }
#cc-modal.cc-mobile #cc-modal-closebutton a { margin: 0 !important; }
body #cc-modal.cc-mobile { overflow-y: auto !important; height: 100% !important; background-color: #e2e2e2 !important; }
body #cc-modal.cc-mobile #cc-modal-wrapper { margin: 0 !important; }
#cc-tag-button { display: none !important; }
#cc-notification #cc-notification-permissions li input[type="checkbox"], body #cc-modal #cc-modal-wrapper select {
	margin-top: 10px !important;
}
#cc-notification #cc-notification-permissions ul, #cc-notification #cc-notification-permissions li { width: 100% !important; }
#cc-notification #cc-notification-permissions li { padding-right: 20px !important; }

#cc-notification.cc-mobile ul.cc-notification-buttons li a { text-align: center !important; }
#cc-modal.cc-mobile #cc-modal-wrapper p.cc-subtitle, #cc-modal.cc-mobile #cc-modal-wrapper h2 { margin: 0 !important; }
#cc-modal.cc-mobile #cc-modal-wrapper h2 { margin-bottom: 20px !important; text-align: center; }
#cc-modal.cc-mobile #cc-modal-wrapper li { padding-top: 10px !important; }
#cc-modal.cc-mobile #cc-modal-wrapper select {
	width: 100%;
	height: 30px;
}
/* skin colors */
.skin-manoir #cc-notification.cc-light #cc-notification-permissions li strong,
.skin-manoir #cc-notification.cc-light a,
.skin-manoir #cc-notification.cc-light a:visited,
.skin-manoir #cc-modal #cc-modal-wrapper li strong {
	color: #baa979 !important;
}
.skin-manoir .image_off,
.skin-manoir #cc-notification.cc-light ul.cc-notification-buttons li a,
.skin-manoir #cc-notification.cc-light ul.cc-notification-buttons li a:visited,
.skin-manoir #cc-modal #cc-modal-closebutton a,
.skin-manoir #cc-settingsmodal #cc-settingsmodal-closebutton a {
	background-color: #baa979 !important;
	color: #fff !important;
}

.skin-poste #cc-notification.cc-light #cc-notification-permissions li strong,
.skin-poste #cc-notification.cc-light a,
.skin-poste #cc-notification.cc-light a:visited,
.skin-poste #cc-modal #cc-modal-wrapper li strong {
	color: #fbac18 !important;
}
.skin-poste .image_off,
.skin-poste #cc-notification.cc-light ul.cc-notification-buttons li a,
.skin-poste #cc-notification.cc-light ul.cc-notification-buttons li a:visited,
.skin-poste #cc-modal #cc-modal-closebutton a,
.skin-poste #cc-settingsmodal #cc-settingsmodal-closebutton a {
	background-color: #fbac18 !important;
	color: #fff !important;
}

.skin-bsh #cc-notification.cc-light #cc-notification-permissions li strong,
.skin-bsh #cc-notification.cc-light a,
.skin-bsh #cc-notification.cc-light a:visited,
.skin-bsh #cc-modal #cc-modal-wrapper li strong {
	color: #e0051c !important;
}
.skin-bsh .image_off,
.skin-bsh #cc-notification.cc-light ul.cc-notification-buttons li a,
.skin-bsh #cc-notification.cc-light ul.cc-notification-buttons li a:visited,
.skin-bsh #cc-modal #cc-modal-closebutton a,
.skin-bsh #cc-settingsmodal #cc-settingsmodal-closebutton a {
	background-color: #e0051c !important;
	color: #fff !important;
}

.skin-aquatis #cc-notification.cc-light #cc-notification-permissions li strong,
.skin-aquatis #cc-notification.cc-light a,
.skin-aquatis #cc-notification.cc-light a:visited,
.skin-aquatis #cc-modal #cc-modal-wrapper li strong {
	color: #0092cf !important;
}
.skin-aquatis .image_off,
.skin-aquatis #cc-notification.cc-light ul.cc-notification-buttons li a,
.skin-aquatis #cc-notification.cc-light ul.cc-notification-buttons li a:visited,
.skin-aquatis #cc-modal #cc-modal-closebutton a,
.skin-aquatis #cc-settingsmodal #cc-settingsmodal-closebutton a {
	background-color: #0092cf !important;
	color: #fff !important;
}

.skin-cty #cc-notification.cc-light #cc-notification-permissions li strong,
.skin-cty #cc-notification.cc-light a,
.skin-cty #cc-notification.cc-light a:visited,
.skin-cty #cc-modal #cc-modal-wrapper li strong {
	color: #83d0f5 !important;
}
.skin-cty .image_off,
.skin-cty #cc-notification.cc-light ul.cc-notification-buttons li a,
.skin-cty #cc-notification.cc-light ul.cc-notification-buttons li a:visited,
.skin-cty #cc-modal #cc-modal-closebutton a,
.skin-cty #cc-settingsmodal #cc-settingsmodal-closebutton a {
	background-color: #83d0f5 !important;
	color: #fff !important;
}

.skin-discovery #cc-notification.cc-light #cc-notification-permissions li strong,
.skin-discovery #cc-notification.cc-light a,
.skin-discovery #cc-notification.cc-light a:visited,
.skin-discovery #cc-modal #cc-modal-wrapper li strong {
	color: #847F77 !important;
}
.skin-discovery .image_off,
.skin-discovery #cc-notification.cc-light ul.cc-notification-buttons li a,
.skin-discovery #cc-notification.cc-light ul.cc-notification-buttons li a:visited,
.skin-discovery #cc-modal #cc-modal-closebutton a,
.skin-discovery #cc-settingsmodal #cc-settingsmodal-closebutton a {
	background-color: #847F77 !important;
	color: #fff !important;
}

.skin-lakegeneva #cc-notification.cc-light #cc-notification-permissions li strong,
.skin-lakegeneva #cc-notification.cc-light a,
.skin-lakegeneva #cc-notification.cc-light a:visited,
.skin-lakegeneva #cc-modal #cc-modal-wrapper li strong {
	color: #006db6 !important;
}
.skin-lakegeneva .image_off,
.skin-lakegeneva #cc-notification.cc-light ul.cc-notification-buttons li a,
.skin-lakegeneva #cc-notification.cc-light ul.cc-notification-buttons li a:visited,
.skin-lakegeneva #cc-modal #cc-modal-closebutton a,
.skin-lakegeneva #cc-settingsmodal #cc-settingsmodal-closebutton a {
	background-color: #006db6 !important;
	color: #fff !important;
}

.skin-nendaz #cc-notification.cc-light #cc-notification-permissions li strong,
.skin-nendaz #cc-notification.cc-light a,
.skin-nendaz #cc-notification.cc-light a:visited,
.skin-nendaz #cc-modal #cc-modal-wrapper li strong {
	color: #67b4d4 !important;
}
.skin-nendaz .image_off,
.skin-nendaz #cc-notification.cc-light ul.cc-notification-buttons li a,
.skin-nendaz #cc-notification.cc-light ul.cc-notification-buttons li a:visited,
.skin-nendaz #cc-modal #cc-modal-closebutton a,
.skin-nendaz #cc-settingsmodal #cc-settingsmodal-closebutton a {
	background-color: #67b4d4 !important;
	color: #fff !important;
}

.skin-poste #cc-notification.cc-light #cc-notification-permissions li strong,
.skin-poste #cc-notification.cc-light a,
.skin-poste #cc-notification.cc-light a:visited,
.skin-poste #cc-modal #cc-modal-wrapper li strong {
	color: #fbac18 !important;
}
.skin-poste .image_off,
.skin-poste #cc-notification.cc-light ul.cc-notification-buttons li a,
.skin-poste #cc-notification.cc-light ul.cc-notification-buttons li a:visited,
.skin-poste #cc-modal #cc-modal-closebutton a,
.skin-poste #cc-settingsmodal #cc-settingsmodal-closebutton a {
	background-color: #fbac18 !important;
	color: #fff !important;
}

.skin-rasses #cc-notification.cc-light #cc-notification-permissions li strong,
.skin-rasses #cc-notification.cc-light a,
.skin-rasses #cc-notification.cc-light a:visited,
.skin-rasses #cc-modal #cc-modal-wrapper li strong {
	color: #870336 !important;
}
.skin-rasses .image_off,
.skin-rasses #cc-notification.cc-light ul.cc-notification-buttons li a,
.skin-rasses #cc-notification.cc-light ul.cc-notification-buttons li a:visited,
.skin-rasses #cc-modal #cc-modal-closebutton a,
.skin-rasses #cc-settingsmodal #cc-settingsmodal-closebutton a {
	background-color: #870336 !important;
	color: #fff !important;
}

.skin-saillon #cc-notification.cc-light #cc-notification-permissions li strong,
.skin-saillon #cc-notification.cc-light a,
.skin-saillon #cc-notification.cc-light a:visited,
.skin-saillon #cc-modal #cc-modal-wrapper li strong {
	color: #3DAAE1 !important;
}
.skin-saillon .image_off,
.skin-saillon #cc-notification.cc-light ul.cc-notification-buttons li a,
.skin-saillon #cc-notification.cc-light ul.cc-notification-buttons li a:visited,
.skin-saillon #cc-modal #cc-modal-closebutton a,
.skin-saillon #cc-settingsmodal #cc-settingsmodal-closebutton a {
	background-color: #3DAAE1 !important;
	color: #fff !important;
}

.skin-aquarium #cc-notification.cc-light #cc-notification-permissions li strong,
.skin-aquarium #cc-notification.cc-light a,
.skin-aquarium #cc-notification.cc-light a:visited,
.skin-aquarium #cc-modal #cc-modal-wrapper li strong {
	color: #00a6b5 !important;
}
.skin-aquarium .image_off,
.skin-aquarium #cc-notification.cc-light ul.cc-notification-buttons li a,
.skin-aquarium #cc-notification.cc-light ul.cc-notification-buttons li a:visited,
.skin-aquarium #cc-modal #cc-modal-closebutton a,
.skin-aquarium #cc-settingsmodal #cc-settingsmodal-closebutton a {
	background-color: #00a6b5 !important;
	color: #fff !important;
}