@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,400;0,600;0,900;1,600&display=swap');
@import 'colors.css';


.text-primary {
    color: var(--ColorPrimary)!important;
}
.text-blue {
    color: var(--ColorSecondary)!important;
}


body {
    font-family: 'Montserrat', sans-serif;
}

input, button, select, checkbox, radio, textarea,
.btn-primary.focus,
*:visited {
    outline: none!important;
    box-shadow: none!important;
}

*:focus {
    outline: none!important;
    box-shadow: none!important;
}

a {
    color: var(--ColorSecondary);

}
a:hover {
    text-decoration: none!important;
    color:var(--ColorJoker);
}


header {
    min-height: 70px;
}
h2 {
    font-size: 1.5rem;
}

@media (max-width: 991px) {
    h1 {
        font-size: 1.7rem;
    }
    h2 {
        font-size: 1.2rem;
    }
    h3 {
        font-size: 1.0rem;
    }
}
@media (max-width: 767px) {
    h1 {
        font-size: 1.6rem;
    }
    h2 {
        font-size: 1.1rem;
    }
    h3 {
        font-size: 1.0rem;
    }
}

h1 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    letter-spacing: -1px;
    color: var(--ColorJoker);
}
h1 small {
    color: var(--ColorPrimary);
    font-size: 60%!important;
}

h2 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    letter-spacing: -2px;
    color: var(--ColorPrimary);
}

h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    letter-spacing: -1px;
    color: var(--ColorPrimaryFade);
    font-size: 1.3rem;
    margin-top: 10px;
}


ul {
    list-style: none;
}

.hide {
    display: none;
}

.text-center {
    text-align: center;
}

.img-responsive {
    max-width: 100%;
}
.img-card {
    max-height: 200px;
}

.bold {
    font-weight: 600;
}

.justify-content-space-evenly {
    -ms-flex-pack: space-evenly!important;
    justify-content: space-evenly!important;
}
.justify-content-space-between {
    -ms-flex-pack: space-between!important;
    justify-content: space-between!important;
}



.famodal.fancybox-content {
    padding:0;
}
.fa-no-close-btn.fancybox-content .fancybox-close-small{
    display: none!important;
}

.bg-dark {
    background-color: var(--ColorDark)!important;
}
.bg-header {
    background-color: var(--ColorHeader)!important;
}
.bg-footer {
    border-top: solid var(--ColorPrimary)!important;;
    background-color: var(--ColorFooter)!important;
}

.navbar-primary {
    background-color: var(--ColorPrimary)!important;
    color: var(--ColorLight)!important;
}

.btn-primary {
    background-color: var(--ColorSecondary)!important;
    border-color: var(--ColorSecondary)!important;
    color: var(--ColorLight)!important;
    -webkit-transition: all 300ms linear 0s;
    -o-transition: all 300ms linear 0s;
    transition: all 300ms linear 0s;
}


.btn-primary:hover {
    background-color: var(--ColorLight)!important;
    color: var(--ColorSecondary)!important;
    -webkit-transition: all 300ms linear 0s;
    -o-transition: all 300ms linear 0s;
    transition: all 300ms linear 0s;
}
.btn-secondary {
    background-color: var(--ColorSecondary)!important;
    border-color: var(--ColorSecondary)!important;
    color: var(--ColorLight)!important;
    -webkit-transition: all 300ms linear 0s;
    -o-transition: all 300ms linear 0s;
    transition: all 300ms linear 0s;
}

.btn-secondary:hover {
    background-color: var(--ColorLight)!important;
    color: var(--ColorSecondary)!important;
    -webkit-transition: all 300ms linear 0s;
    -o-transition: all 300ms linear 0s;
    transition: all 300ms linear 0s;
}
.btn-secondary-inverse {
    background-color: var(--ColorLight)!important;
    border-color: var(--ColorSecondary)!important;
    color: var(--ColorSecondary)!important;
    font-weight: 600;
    -webkit-transition: all 300ms linear 0s;
    -o-transition: all 300ms linear 0s;
    transition: all 300ms linear 0s;

}

.btn-secondary-inverse:hover {
    background-color: var(--ColorSecondary)!important;
    font-weight: 600;
    color: var(--ColorLight)!important;
    -webkit-transition: all 300ms linear 0s;
    -o-transition: all 300ms linear 0s;
    transition: all 300ms linear 0s;
}

.btn-grey {
    background-color: var(--ColorBGDarkGrey)!important;
    border-color: var(--ColorBGDarkGrey)!important;
    color: var(--ColorLight)!important;
    -webkit-transition: all 300ms linear 0s;
    -o-transition: all 300ms linear 0s;
    transition: all 300ms linear 0s;
}

.btn-grey:hover {
    background-color: var(--ColorLight)!important;
    color: var(--ColorBGDarkGreu)!important;
    -webkit-transition: all 300ms linear 0s;
    -o-transition: all 300ms linear 0s;
    transition: all 300ms linear 0s;
}
.btn-orange {
    background-color: #F19B2C!important;
    border-color: #F19B2C!important;
    color: var(--ColorLight)!important;
    -webkit-transition: all 300ms linear 0s;
    -o-transition: all 300ms linear 0s;
    transition: all 300ms linear 0s;
}

.btn-orange:hover {
    background-color: var(--ColorLight)!important;
    color: #F19B2C!important;
    -webkit-transition: all 300ms linear 0s;
    -o-transition: all 300ms linear 0s;
    transition: all 300ms linear 0s;
}

/*.sticky-wrapper.is-sticky .navbar-primary {
    background-color: var(--ColorDark)!important;
    -webkit-transition: background-color 500ms linear;
    -ms-transition: background-color 500ms linear;
    transition: background-color 500ms linear;
}*/

.navbar-primary a.nav-link {
    color: var(--ColorLight);
}

.nopdl {
    padding-left: 0;
}
.nopdr {
    padding-right: 0;
}
.nobr {
    border-right: 0;
}

.search-bk .input-btn{
    padding : 0;
    background: var(--ColorLight);
}

.search-bk .input-btn button {
    padding: 0 15px;
    height: 100%;
    border: 0;
    background: none;
    color: var(--ColorPrimary);
    font-size: 1.2rem;
}

.account-bk {
    color: var(--ColorPrimary);
    height: 100%;
    margin-left: 15px;
    position: relative;
    font-size:1.2rem;
}

.account-bk:hover {
    color: var(--ColorSecondary);
}

.account-bk span {
    font-size: 0.7rem;
}

.account-bk .badge {
    color: var(--ColorLight);
    position: absolute;
    background: red;
    top: 5px;
    right:7px;
}


.account-bk-user {
    color: var(--ColorPrimary);
    height: 100%;
    margin-left: 15px;
    position: relative;
    font-size:1.2rem;
}

.account-bk-user:hover {
    color: var(--ColorSecondary);
}

.account-bk-user span {
    font-size: 0.7rem;
}

.account-bk-user .badge {
    color: var(--ColorLight);
    position: absolute;
    background: red;
    top: 5px;
    right:2px;
}



.account-bk .badge.zero {
    background: var(--ColorPrimary);
}




.account-connect {
    color: var(--ColorPrimary);
    margin-left: 15px;
    position: relative;
    font-size:0.8rem;
}



nav .container {
    position: relative;
}

nav .nav-link {
    padding: 0 1rem;
    font-size: 0.9rem;
    font-weight: 600;
}
nav .nav-link:hover {
    /*color: var(--ColorDark);*/
    color: var(--ColorJoker);
}

nav .dropdown-item.active, .dropdown-item:active {
    background: none;
}

nav .dropdown.full {
    position: initial;
}

nav .dropdown.full .dropdown-menu {
    min-width: 100%;
    background-color: var(--ColorDropdownMenu);
    margin-top:0.2rem;
}
nav .dropdown.full .dropdown-menu a {
    color: var(--ColorPrimary);
    background-color: var(--ColorDropdownMenu);
    font-weight: 600;
}

nav .category-title {
    font-weight: 600;
    font-size: 1.05rem;
}

nav .category-title.folderico:before {
    font-family: "Font Awesome 5 Free";
    font-weight: 400;
    content: "\f07c";
}


nav .dropdown-item.left {
    padding: .25rem 0;
}

nav .category-bk a {
    font-size: 0.9rem;
    margin-right: 0px;
    padding-right: 0px;
}

.navbar {
    height: 28px;
    padding: 0 1rem;
}

/*.mm-navbar {
    display: none!important;
}*/

.dropdown-menu.mm-panel ul {
    display: none;
}

.mm-menu_theme-white .mm-navbar a, .mm-menu_theme-white .mm-navbar >* {
    color: var(--ColorLight)!important;
}

.mm-menu_theme-white .mm-navbar a, .mm-menu_theme-white .mm-navbar {
    padding: 0 4px;
    text-align: left;
    line-height: 40px;
}


.mm-menu_theme-white {
    background-color: var(--ColorPrimary)!important;
    color: var(--ColorLight)!important;
}

.mm-listitem .nav-link {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
}

.mm-listitem .nav-link:after {
    display: none;
}

.mm-listitem .dropdown-content {
    flex-direction: column;
}

.mm-listitem .dropdown-item.active, .dropdown-item:active {
    color: var(--ColorDark)!important;
}

.mm-listitem .dropdown-item:focus, .dropdown-item:hover {
    color: var(--ColorDark)!important;
    background: none;
}

.mm-listitem .mm-btn_next:not(.mm-btn_fullwidth) {
    width: 100%;
    height: 40px;
}

.mm-listitem .category-bk {
    margin: 0 0 15px;

}
.mm-listitem .category-title,
.mm-listitem a {
    color: var(--ColorLight)!important;
}

.mm-listitem .category-title.folderico:not(.mmsubopen):before {
    content: "\f07b";
}

.mm-listitem .category-title.folderico.mmsubopen:before {
    content: "\f07c";
}



.mm-menu_theme-white .mm-listview .mm-btn_next:after {
    border-color: var(--ColorLight);
}

.mm-listitem:after {
    left: 0;
}

.mobilepanel {
    position: relative;
}
.mobilecontent {
    background-color: var(--ColorPrimary)!important;
    position: absolute;
    z-index: 1;
    top: -1px;
}

@media (max-width: 991px) {
    .account-bk {
        font-size: 1.3rem;
        margin-left: 35px;
    }
    .account-bk .badge {
        right: -7px;
        top: 18px;
    }
    .account-bk-user {
        font-size: 1.3rem;
        margin-left: 35px;
    }
    .account-bk-user .badge {
        right: -7px;
        top: 18px;
    }

}
@media (max-width: 767px) {
    .account-bk .badge {
        top: 9px;
    }
    .account-bk-user .badge {
        top: 9px;
    }

}

@media (max-width: 575px) {
    .account-bk .badge {
        top: 10px;
        right: -6px;
    }
    .account-bk-user .badge {
        top: 10px;
        right: -8px;
    }

}

a.navbar-toggler {
    width: 60px;
    margin: 0 15px 0 0;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 0.7rem;
    flex-direction: column;
    padding: 0;
    color:var(--ColorPrimary);
}

a.navbar-toggler i {
    font-size: 2rem;
}
a.navbar-toggler span {
    font-weight:600;
}



@media (max-width: 500px) {

    a.navbar-toggler {
        font-size: 0.6rem;
    }

    a.navbar-toggler i {
        font-size: 1rem;
    }

    .account-bk {
        font-size: 0.95rem;
        margin-left: 20px;
        top: 4px;
    }

    .account-bk .badge {
        font-size: 60%;
    }
    .account-bk-user {
        font-size: 0.95rem;
        margin-left: 20px;
        top: 4px;
    }

    .account-bk-user .badge {
        font-size: 60%;
    }
}

.myavatar {
    display: block;
    margin: 0 auto;
}


.myavatar .avatar {
    width: 80px;
    height: 80px;
}

.myavatar.account {
    margin: 10px 15px 0 15px;
}

.myavatar .avatar {
    border: 1px solid #ccc;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    flex-wrap: wrap;
}

.myavatar .avatar img {
    max-width: 100%;
    height: auto!important;
}



.footer-container .footer-title {
    font-weight: 600;
}


/* ########################################## CATEGORY ########################################## */
.breadcrumb {
    font-size:0.7rem;
    font-weight: 600;
    color: var(--ColorDark);
    background-color: transparent !important;
}
.breadcrumb a,
.breadcrumb span{
    margin: 0 2px;
}

.breadcrumb a{
    font-size:0.8rem;
    color: var(--ColorPrimary);
}
.breadcrumb a:hover{
    font-size:0.8rem;
    color: var(--ColorJoker) !important;
}

.category-desc {
    height: 68px;
    overflow: hidden;
}

a.viewmore {
    font-size: 0.8rem;
    font-weight: 600;
    /* float: right;*/

}
a.viewmore:after {
    font-family: "Font Awesome 5 Free";
    content: "\f105";
    padding-left: 2px;
}
span.viewmore {
    color: var(--ColorSecondary);
    font-size: 0.8rem;
    font-weight: 600;
    /*float: right;*/

}
span.viewmore:hover {
    cursor: pointer;
    color: var(--ColorJoker);

}
span.viewmore:after {
    font-family: "Font Awesome 5 Free";
    content: "\f105";
    padding-left: 2px;
}

.category-filters {
    font-size: 0.9rem;
    font-weight: 600;
}

.category-filters .finded-product {
    color: var(--ColorPrimary);
}
.category-filters .finded-product span{
    font-weight: 400;
    color: var(--ColorDark);
}
@media (max-width: 1199px) {
    .category-filters form {
        flex-direction: column;
    }

    .category-filters label,
    .category-filters .catfilter {
        width: 100%;
    }
}

.category-miniature .product-image {
    -webkit-transition: all 300ms ease-out;
    -o-transition: all 300ms ease-out;
    transition: all 300ms ease-out;
}


.category-miniature .product-category-card:hover .product-image {
    position: relative;
    transform: scale(1.15);
    -webkit-transition: all 300ms ease-out;
    -o-transition: all 300ms ease-out;
    transition: all 300ms ease-out;
}

.category-miniature .card-footer.product-card-footer {
    height: 64px;
    overflow: hidden;
}
.product-bottom {
    position:absolute;
    bottom:0;
}

.category-miniature span.product-reduc {
    position: absolute;
    top: 0;
    right: 0;
    background: var(--ColorBGProductReduction);
    color: var(--ColorProductReduction);
    padding: 0 2px;
}

.category-miniature div.product-name {
    font-size: 0.8rem;
    font-weight: 600;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}

.category-miniature span.product-from {
    font-size: 0.8rem;
    text-align: right;
}

.category-miniature span.product-price {
    font-size: 0.8rem;
    color: var(--ColorPrimary)!important;
    font-weight: 600;
}

.category-miniature .btn-product-offer{
    background-color:transparent!important;
    border:none!important;
    color: var(--ColorDark)!important;
}

.category-miniature .product-bottom span:last-of-type {
    margin-left: auto;
}

/* blog*/
.content a {
    color: var(--ColorSecondary);
    font-weight: 900;
}
.content a:hover {
    color:var(--ColorJoker);
    text-decoration: underline!important;
}
.content .comment a {
    font-weight: normal!important;
}
.content .comment a:hover {
    color: var(--ColorSecondary!important);
    text-decoration: none!important;
}

.content .hover-decoration-none a:hover {
    color:var(--ColorJoker);
    text-decoration: none!important;
}

.paginationKiwi a,
.paginationKiwi > span {
    font-size: 0.95rem;
    border-radius: 2px;
    min-width: 25px;
    text-align: center;
    margin: 0 5px;
    padding: 0 2px;
}
.paginationKiwi a {
    border: 1px solid var(--ColorPrimary);
    color: var(--ColorPrimary);
    text-decoration: none;
    font-weight: 600;
}
.paginationKiwi > span {
    border: 1px solid var(--ColorDark);
}

.paginationKiwi a:hover {
    background-color: var(--ColorPrimary);
    color: var(--ColorLight);
}

@media (max-width: 530px) {
    .pageselector {
        display: none;
    }
}

/* ########################################## PRODUCT ########################################## */
.product-card .product-image {
    /*height: 380px;*/
    max-height: 380px;
}
.product-card .product-image img {
    max-height: 380px;
}

#productimagesslider {
    width: 60%;
}

#productimagesslider.owl-theme .owl-nav {
    margin-top: 0;
    font-size: 2rem;
}

#productimagesslider.owl-theme .owl-nav [class*=owl-] {
    margin: 0 10px;
}

#productimagesslider.owl-theme .owl-nav [class*=owl-]:hover {
    background: none;
    color: var(--ColorPrimary);
}

#productimagesslider .product-mimage {
    cursor: pointer;
}

.economie,
.price-card {
    width: 100%;
    /*margin-left: -15px;*/
}

.economie {
    font-size: 0.75rem;
}

.economie .economie-value {
    color: var(--ColorBGProductReduction);
    font-size: 0.85rem;
    font-weight: 600;
}

.price-card{
    color : var(--ColorLight);
    font-size: 0.75rem;
    text-transform: uppercase;
}

.price-card .price {
    margin-left: auto;
    font-size: 1.8rem;

}

.push-bottom {
    flex-grow: 1;
}

a.action-btn {
    /*background: var(--ColorBGGrey);*/
    background: transparent;
    border-radius: 10px;
    border: 2px solid var(--ColorPrimary);
    color: var(--ColorPrimary);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-size: 0.50rem;
    font-weight: bolder;
    text-transform: uppercase;
    padding: 0;
    width: 100%;
    height: 60px;
    flex-wrap: nowrap;
    margin: 5px;
}

a.action-btn i {
    font-size: 1.3rem;
}

a.action-btn span {
    padding-top: 6px;
}

a.action-btn:hover {
    background: transparent!important;
    border-color: #28a745!important;
}

a.action-btn:hover i,
a.action-btn:hover span {
    /*  color: var(--ColorPrimary);*/
    color: #28a745;
}

a.action-btn-sell {
    /*background: var(--ColorBGGrey);*/
    background: transparent;
    border-radius: 10px;
    border: 2px solid var(--ColorPrimary);
    color: var(--ColorPrimary);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-size: 0.50rem;
    font-weight: bolder;
    text-transform: uppercase;
    padding: 0;
    width: 100%;
    height: 60px;
    flex-wrap: nowrap;
    margin: 5px;
}

a.action-btn-sell i {
    font-size: 1.3rem;
}

a.action-btn-sell span {
    padding-top: 6px;
}

a.action-btn-sell:hover {
    background: transparent!important;
    border-color: #28a745!important;
}

a.action-btn-sell:hover i,
a.action-btn-sell:hover span {
    color: #28a745;
}

#addtofavorite {
    cursor: pointer;
}

.btn-addtocart {
    width: 100%;
}






.review-avatar {
    justify-content: center;
    display: flex;
}

.sellertype {
    font-size: 0.95rem;
}
.sellerinfo {
    font-size: 0.85rem;
}
.sellerinfo a {
    color: var(--ColorPrimary);
}
.sellerinfo:hover a {
    color: var(--ColorDark);
}

.tab-pane .card {
    border-top: none;
    -webkit-border-top-left-radius: 0;
    -webkit-border-top-right-radius: 0;
    -moz-border-radius-topleft: 0;
    -moz-border-radius-topright: 0;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}

span.psub-title {
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 10px;
    display: block;
}

table.pmarketplace th,
table.pmarketplace td {
    vertical-align: middle;
}


table.pmarketplace .myavatar,
table.pmarketplace .myavatar .avatar {
    width: 40px;
    height: 40px;
}

@media (max-width: 450px) {

    .mpsupmsg {
        font-size: 0.7rem;
        font-weight: bolder;
    }

    table.pmarketplace .merchant {
        width: 82px;
    }

    /* .btn-comparator {
         width: 64px;
         white-space: normal;
         padding: 0;
     }

     .btn-comparator span {
         display: none;
     }*/
}


@media (max-width: 767px) {
    .pmarketplace th {
        font-size: 0.7rem;
    }

    .pmarketplace th,
    .pmarketplace td{
        padding: 0.75rem 0;
    }

    .pmarketplaceimg img {
        max-width: 60%;
    }

    /*  .pmarketplace td a.btn-comparator {
          transform:scale(0.8);
      }*/
}


.mpsupmsg a {
    color: var(--ColorPrimary);
    font-weight: 600;
}

.comment-left {
    border-right: 1px dotted var(--ColorBorder);
}

.comment-text {
    font-size: 0.85rem;
}

.comment-name {
    font-weight: 600;
}



.answer {
    border-top: 1px dotted var(--ColorBorder);
}

#cartconfirm {
    display: none;
    max-width: 800px;
    padding: 0;
    overflow: hidden;
}

#cartconfirm .card {
    border-radius: 0;
}

#cartconfirm .cartconfirm-btns button {
    font-size: 0.75rem;
}

@media (max-width: 1199px) {
    .economie, .price-card {
        /*width: 95%;*/
        width: 100%;
    }
}
@media (max-width: 991px) {
    /*.pr-review-panel {
        display: flex;
        margin: 30px auto;
        flex: 0 0 50%;
        justify-content: center;
        border: 0;
    }*/

    .pr-review-panel {
        padding-top: 30px;
    }

    .mt-5.sellerinfo {
        margin-top:0!important;
    }

    .pmarketplace {
        font-size: 0.9rem;
    }


    #sidebar-col {
        display: none;
    }

}
@media (max-width: 767px) {
    /*.pr-review-panel {
        flex: 0 0 70%;
    }*/

    .pmarketplace {
        font-size: 0.85rem;
    }

    .commentlist .myavatar, .myavatar .avatar {
        width: 60px;
        height: 60px;
    }
    .answer .myavatar, .myavatar .avatar {
        width: 40px;
        height: 40px;
    }
}
@media (max-width: 480px) {
    .card-body {
        /* overflow-x: auto;*/
        overflow-x: visible;
    }
}
@media (max-width: 420px) {
    .product-card .product-image {
        height: 320px;
    }
}
@media (max-width: 355px) {
    .product-card .product-image {
        height: 280px;
    }
}


/*############### BEN ################
/* tree css */
.clt, .clt ul, .clt li {
    position: relative;
}

.clt ul {
    list-style: none;
    padding-left: 32px;
}

.clt li::before, .clt li::after {
    content: "";
    position: absolute;
    left: -12px;
}
.clt li::before {
    border-top: 1px solid #000;
    top: 9px;
    width: 8px;
    height: 0;
}
.clt li::after {
    border-left: 1px solid #000;
    height: 100%;
    width: 0px;
    top: 2px;
}
.clt ul > li:last-child::after {
    height: 8px;
}





.carousel-control-prev-icon {
    /*background-image: url(../images/previous-32.png);*/
    width: 52px;
    height: 52px;
}
.carousel-control-next-icon {
    /* background-image: url(../images/next-32.png);*/
    width: 52px;
    height: 52px;
}

.carousel-indicators {
    position: absolute;
    bottom: 0;
    margin: 0;
    left: 0;
    right: 0;
    width: auto;
}
.carousel-indicators li, .carousel-indicators li.active {
    float: left;
    width: 50%;
    height: 10px;
    margin: 0;
    border-radius: 0;
    border: 0;
    background: #ccc;
}
.carousel-indicators li.active {
    background: var(--ColorPrimary);
}

strong {
    color: var(--ColorPrimary);
    font-weight: 600;
    /* font-size: 1.1rem;*/
}

.product-image-bk {
    overflow : hidden;
}


.my-johnson-box {
    padding: 15px;
    /*background: var(--ColorPrimaryFade);*/
    /*margin: 15px auto;*/
    border-left: 10px solid var(--ColorSecondary);
}
.my-johnson-box-secondary {
    padding: 15px;
    background: #FDF4E8;
    /*margin: 15px auto;*/
    border-left: 10px solid #F19B2C;
}



.container category-subdesc > p > a {
    color: var(--ColorSecondary);
    text-decoration: underline;
    font-weight: 900;
}
.container category-subdesc >  p > a:hover {
    color:var(--ColorJoker);
}


.fontSmall {
    font-size: 13px!important;
}
.backgroundColor {
    background-color: white;
}


.blog img {
    max-width: 100%;
}
.blog .h5 {
    color: var(--ColorPrimary);
}
.blog .cat {
    border-bottom: 3px solid var(--ColorPrimary);
}
.blog ul {

    list-style-type: disc!important;

}
.blog h2 a {
    text-decoration: none !important;
    font-weight: normal !important;

}

.tag {
    border: var(--ColorSecondary) solid 1px;
    padding:5px;
    border-radius: 10px;
    margin-right: 6px;
    font-size: 0.7rem;
    color: var(--ColorSecondary);
    font-weight: 600;
    /*background-color: var(--ColorPrimaryFade) ;*/
    white-space: nowrap;
}
.petitpetit {
    font-size: 0.8rem;
}
.etiquette {
    border: var(--ColorJoker) solid 1px;
    padding:5px;
    margin-right: 6px;

    font-size: 0.9rem;
    color: var(--ColorJoker);
    font-weight: 700;

}

.review-avatar {
    justify-content: center;
    display: flex;
}
.myavatar {
    display: block;
    width: 80px;
    height: 80px;
    margin: 0 auto;
}
.myavatar .avatar {
    border: 1px solid #ccc;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    flex-wrap: wrap;
    width: 80px;
    height: 80px;
}

.youravatar .avatar {
    /* width: 100%;
     height: 100%;
     max-width: 200px;
     max-height: 200px;*/
    width: 170px;
    height: 170px;
    border: 1px solid #ccc;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    flex-wrap: wrap;
}
.middleavatar .avatar {
    max-width:130px;
    width: 130px;
    height: 130px;
    border: 1px solid #ccc;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    flex-wrap: wrap;
}
.smallavatar .avatar {
    max-width:80px;
    width: 80px;
    height: 80px;
    border: 1px solid #ccc;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    flex-wrap: wrap;
}



/* myaccount */

.pull-right {
    float: right;
}



.msg-link {
    /*display: flex;*/
    flex-wrap: wrap;
    flex-direction: column;
    line-height: 1.2rem;
}



.unreadmsg {
    /*background-color: #a3c822!important;*/

}

.readmsg {
    background-color: #EBEBEB!important;

}

.unreadmsg a, .unreadmsg a:hover {
    /* color: #ffffff;*/
    font-weight: 600;
}

.unreadmsg .newmsg-badge {
    /* display: block; */
    background: #ff0000;
    color: #ffffff;
    width: 56px;
    padding: 3px 6px;
    font-size: 0.7rem;
    border-radius: 4px;
    font-weight: bold;
}




/* PAGE MON COMPTE */
span.badge-mail {
    height: 26px;
    width: 26px;
    border-radius: 50%;
    text-align: center;
    font-family: "Poppins", sans-serif;
    font-size: 11px;
    font-weight: normal;
    line-height: 26px;
    color: #fff;
    background:var(--ColorJoker);
    display: inline-block;
}
span.badge-red {
    height: 26px;
    width: 26px;
    border-radius: 50%;
    text-align: center;
    font-family: "Poppins", sans-serif;
    font-size: 11px;
    font-weight: normal;
    line-height: 26px;
    color: #fff;
    background: red;
    display: inline-block;
}
span.badge-grey {
    height: 26px;
    width: 26px;
    border-radius: 50%;
    text-align: center;
    font-family: "Poppins", sans-serif;
    font-size: 11px;
    font-weight: normal;
    line-height: 26px;
    color: #fff;
    background:#C0C0C0;
    display: inline-block;
}
span.badge-primary {
    height:26px;
    width: 26px;
    border-radius: 50%;
    text-align: center;
    font-family: "Poppins", sans-serif;
    font-size: 11px;
    font-weight: 900;
    line-height: 26px;
    color: #000000;
    background:var(--ColorTertiary);
    display: inline-block;
}


.card-title {
    color: var(--ColorPrimary) ;

}


.card-alert {
    min-width: 0;
    word-wrap: break-word;
    background-clip: border-box;
    border: 5px solid red;
    border-radius: .25rem;
}



/* scan */

.price_valid {
    border-right:none;
}

.price_valid-append {
    border: 1px solid #ced4da;
    border-left:none;
    border-radius: 0 .25rem  .25rem 0;
    font-size: 1rem;
}

.price_valid-append .input-group-text {
    padding-right: 0.25rem;
}

.input-group-text {
    /*  casse le champ de recherche header */
    /* background-color:transparent!important;*/
    /*border: 0px !important;*/

}

/* ajout Sylvain */
.row_disable {
    display: block;
    overflow: hidden;
}



.fbordererror {
    border: 2px solid red!important;
}

/**
imager JS
*/
.imager-edit-container .toolbar {
    position: absolute;
}

#imagers {
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
}

.imager-test {
    display: inline-block;
    margin-top: 30px;
    margin-bottom: 100px;
}

.imager-test.custom-quality-visible {
    margin-bottom: 200px;
}

.image-container {
    min-width: 300px;
    margin-right: 30px;
    text-align: left;
}



.orange a {
    color: var(--ColorSecondary);
    text-decoration: underline;
    font-weight: 900;
}
.red a {
    color: red;
    font-weight: 900;
}



/* PAGEINVENTAIRE FAVORIS */
.table.favorites-summary thead tr th {
    border-top: 0px;
    text-transform: uppercase;
    font-size: 14px;
    color: #000;
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    border-bottom: 1px solid #e9ecf2;
    /*text-align: center;*/
}

.table.favorites-summary tbody tr td {
    vertical-align: middle;
    -ms-flex-item-align: center;
    align-self: center;
    padding: 10px 10px;
}

.favorites-summary tbody tr td .media .d-flex {
    padding-right: 30px;
}

.favorites-summary img.item {
    max-width: 40px;
    align-self: center;
}
.favorites-summary img.member {
    max-width: 60px;
    align-self: center;
}

.favorites-summary tbody tr td .media .media-body h4 {
    font-size: 14px;
    color: #000;
    font-family: "Poppins", sans-serif;
}

.favorites-summary td.price {
    /*text-align: right;
    min-width: 89px;*/
}

.favorites-summary .bavail {
    color:#a3c822;
}
.favorites-summary .bnotavail {
    color:red;
}

.favorites-summary .viewbook {
    font-weight: 600;
}

.favorites-summary .alerte-label {
    font-size: 1rem;
    font-weight: 600;
    color: #ff9900;
}

.alerts-del {
    width: 200px;
}

.alerts-del a {
    line-height: 15px;
    display: block;
    text-align: center;
    border-top: 1px solid #cccccc;
    padding: 8px 0;
}

.alerts-del a:first-child {
    border-top: none;
}

.delalert,
.delfavorite {
    line-height: 18px;
    display: block;
    text-align: center;
}


.inventory-action {
    cursor: pointer;
    font-size: 1rem;
}


.inventory-action .fa-edit {
    color: #f79c07;
}
.inventory-action .fa-times {
    color: #000000;
}
.inventory-action .fa-trash-alt {
    color: red;
}

.inventory-action .fa-check {
    color: #a0c63b;
}

.reviewproduct {
    display: none;
    max-width: 800px;
    padding: 10px;
    overflow: hidden;
}

.reviewproduct .fancybox-button.fancybox-close-small {
    top: -11px;
    right: -11px;
}

.reviewproduct-title-block {
    margin-bottom: 15px;
}

.reviewproduct .reviewproduct-title {
    font-size: 1.3rem;
    margin: 5px 0;
    color:  var(--ColorPrimary);
    display: block;
    width: 100%;
    text-align: center;
}

.reviewproduct .reviewproduct-title.subtitle {
    font-size: 0.85rem;
}


.descriptionproduct {
    display: none;
    max-width: 800px;
    padding: 10px;
    overflow: hidden;
}

.descriptionproduct .fancybox-button.fancybox-close-small {
    top: -11px;
    right: -11px;
}

.descriptionproduct-title-block {
    margin-bottom: 15px;
}

.descriptionproduct .reviewproduct-title {
    font-size: 1.3rem;
    margin: 5px 0;
    color:  var(--ColorPrimary);
    display: block;
    width: 100%;
    text-align: center;
}

.descriptionproduct .reviewproduct-title.subtitle {
    font-size: 0.85rem;
}





/* page membre */
.memberaction {
    display: block;
    font-size: 1rem;
}




.labelrightoffer {
    position: absolute;
    z-index: 1;
    top: 1px;
    right: 0;
    padding: 2px 5px;
    font-weight: 600;
    margin: 2px;
}

.labelrightoffer.quote {
    /*border-radius: 0 0 0 100%;*/
    width: 85px;
    height: 30px;
    margin: -1px 0 0 0;
    /*background: var(--ColorSecondary);*/
    color: #fff;
    font-weight: normal;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    align-content: center;
}
.labelleftoffer {
    position: absolute;
    z-index: 1;
    top: 1px;
    left: 0;
    padding: 2px 5px;
    font-weight: 600;
    margin: 2px;
}

.labelleftoffer.quote {
    /*border-radius: 0 0 0 100%;*/
    width: 105px;
    height: 25px;
    margin: -1px 0 0 0;
    color: #fff;
    font-weight: normal;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-content: center;
}


.labelrightoffer.thumbtack {
    /*border-radius: 0 0 0 100%;*/
    width: 80px;
    height: 30px;
    margin: -1px 0 0 0;
    /*background: var(--ColorSecondary);*/
    color: #fff;
    font-weight: normal;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    align-content: center;
}
.labelrightoffer.star {

    width: 170px;
    height: 30px;
    margin: -1px 0 0 0;
    color: #fff;
    font-weight: normal;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    align-content: center;
}

.labelrightalert {
    position: absolute;
    z-index: 4;
    top: 0;
    right: 0;
    padding: 2px 5px;
    font-weight: 600;
    margin: 0;

}
.labelrightgotop {
    position: absolute;
    z-index: 4;
    bottom: 0;
    right: 0;
    padding: 2px 5px;
    font-weight: 600;
    margin: 0;

}

.text-secondary-fade {
    color: var(--ColorSecondaryFade)!important;
}


.list-price {
    font-size: 0.8rem;
}
.list-price-small {
    font-size: 0.7rem;
}

/* item */
.already-in-favorite {
    background: #28a745!important;
    border: 2px solid #28a745!important;
    color:  white!important;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-size: 0.60rem!important;
    font-weight: normal!important;
    text-transform: uppercase;
    padding: 0;
    width: 100%;
    height: 60px;
    flex-wrap: nowrap;
    margin: 5px;
    /*cursor: not-allowed;*/

}

/* rating */

.reviewproduct {
    display: none;
    max-width: 800px;
    padding: 10px;
    overflow: hidden;
}

.reviewproduct .fancybox-button.fancybox-close-small {
    top: -11px;
    right: -11px;
}

.reviewproduct-title-block {
    margin-bottom: 15px;
}

.reviewproduct .reviewproduct-title {
    font-size: 1.3rem;
    margin: 5px 0;
    /*color: #A3C822;*/
    display: block;
    width: 100%;
    text-align: center;
}

.reviewproduct .reviewproduct-title.subtitle {
    font-size: 0.85rem;
}

.stars-bk {
    font-size: 1.3rem;
    cursor: pointer;
}

.star-grey i {
    color: #cccccc;
}
.star-yellow i {
    color: orange;
}

#review-reponse-ok .check-ok,
#review-ok .check-ok {
    display: flex;
    justify-content: center;
    height: 150px;
    font-size: 7rem;
    margin: 0;
    color: #c3e6cb;
}

.reviewslist,
h2.psub {
    margin-top: 50px;
}

.reviewslist .header {
    align-items: center;
}

.reviewslist .review-product {
    height: 30px;
    padding: 0 10px;
    line-height: 1;
}

.reviewslist .review-product-a {
    line-height: 28px;
}

@media (max-width: 410px) {
    .reviewslist .review-product-a {
        width: 100%;
        white-space: normal;
        height: 45px;
        line-height: 1.5;
    }
}

.reviewslist .body {
    border-bottom: 1px solid #ccc;
    margin-bottom: 30px;

}

.reviewslist .body.review-comment {
    border: 1px solid #a3c822;
    border-radius: 7px;
}

.reviewslist div.body:last-of-type {
    margin-bottom: 0;
}

.review-avatar {
    justify-content: center;
    display: flex;
}

.reviewslist .body .reviewstars {
    justify-content: flex-end;
    display: flex;
}

.reviewslist .body .reviewname {
    font-weight: 600;
    color:#000000;
    font-size: 1.05rem;
}

.reviewslist .body.review-comment .reviewname {
    font-size: 0.9rem;
}

.reviewslist .body.nocrit {
    justify-content: center;
}

.reviewslist .critique-like {
    border-top: 1px solid #ccc;
    margin-bottom: 30px;
}






/******PANIER*******/

.breadcrumbCart {

    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding: .75rem 1rem;
    list-style: none;
    font-size:0.7rem;
    /*font-weight: 600;*/
    color: var(--ColorDark);
}


.breadcrumbCart a{
    margin: 0 2px;
    color: var(--ColorDark);
}

.breadcrumbCart .step {
    font-size: 1rem;
}

.breadcrumbCart .step.ok-step {
    /* font-weight: 800;*/
}

.breadcrumbCart .step.current-step {
    color:  var(--ColorSecondary);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 1.2rem;
}

.breadcrumbCart .separator {
    font-size: 1.2rem;
}
.breadcrumbCart span {
    display: inline-block;
    padding: 5px;
    margin: 0 2px;
}

.cart-summary img.item {
    max-width: 80px;
    align-self: center;
}

.table.cart-summary {
    margin-bottom: 0px;
}

.cart-summary .media {
    flex-wrap: wrap;
}

.checkout-nav .btn.btn-primary.checkout_btn {
    float: right;
}

/* livraison  */

carrier-form  {
    border: 1px solid #ced4da;
}

.pmnt-choice {
    justify-content: flex-end;
}
.pmnt-text, .pmnt-choice {
    display: flex;
    align-items: center;
    font-size: 1.1rem;
}

.check-carrier, .carrier-radio {
    cursor: pointer;
}

.mondialrelay-selectedaddress {
    display: none;
    border: 1px solid #000000;
    margin: 30px 0px 30px 10px;
    padding-bottom: 12px;
}


.billing_inner select {
    width:100%;
    color: #495057;
    border: 1px solid #ced4da;
    height: 38px;
    border-radius: .25rem;
}


/* commande */
tr.orderdetail {
    display: none;
}

.kiwiuser .myavatar {
    width: 50px;
    height: 50px;
    margin: 4px auto;
}

.kiwiuser .myavatar .avatar {
    width: 50px;
    height: 50px;
}

.order-summary-detail img.item {
    max-width: 80px;
    align-self: center;
}


/* vente */

.btn.btn-primary.sellsction-btn {
    width: 100%;
    text-transform: uppercase;
    cursor: pointer;
}

.btn.btn-primary.sellsction-btn.valid {
    background: #A0C63B!important;
    border: 1px solid #A0C63B!important;
    color: #ffffff!important;
}
.btn.btn-primary.sellsction-btn.refuse {
    background: #f8d7da!important;
    border: 1px solid #f8d7da!important;
    color: #721c24!important;
}

.nav-tabs .nav-link {
    color: #3f3b3be8!important;

}


.nav-tabs .nav-link.active, .nav-tabs .nav-link.active a:hover {
    color:  var(--ColorPrimary)!important;
    text-decoration: none!important;
    cursor: default!important;

}


.columns {
    -webkit-columns: 3;
    -moz-columns: 3;
    columns: 3;
}

/*  hack pour affichage charjs dans tab fade*/
.tab-content>.tab-pane {
    display: block;
    height: 0;
    overflow: hidden;
}
.tab-content>.tab-pane.active {
    height: auto;
}


.wide-div {
    width: calc(100vw - 20px);
    margin-left: calc(-50vw + 50% + 10px);
    /* background-color:  var(--ColorTertiary)!important;*/
}
.wide-div-grey {
    width: calc(100vw - 20px);
    margin-left: calc(-50vw + 50% + 10px);
    /* background-color:  var(--ColorBGGrey)!important;*/
}
.wide-div-orange {
    width: calc(100vw - 20px);
    margin-left: calc(-50vw + 50% + 10px);
    /*  background-color:  #F19B2C!important;*/
}



.text-dark {

    color:  var(--ColorDark)!important;
}


.start {
    -webkit-transition: all 300ms ease-out;
    -o-transition: all 300ms ease-out;
    transition: all 300ms ease-out;
    max-height: 120px;

}
.start:hover  {

    position: relative;
    transform: scale(1.15);
    -webkit-transition: all 300ms ease-out;
    -o-transition: all 100ms ease-out;
    transition: all 100ms ease-out;

}


/* on annule l'existant' */
.dropdown-toggle::after {
    display: none;

}
.dropdown-toggle::before {
    display: inline-block;
    margin-left: 0.255em;
    vertical-align: 0.255em;
    content: "";
    border-top: 0.3em solid;
    border-right: 0.3em solid transparent;
    border-bottom: 0;
    border-left: 0.3em solid transparent;
}


/* good deal */
.price_promo_sticker_container {
    border-radius: 2px;
    background-color: #FE9900;
    color: #FFFFFF;
    font-size: 16px;
    font-weight: 600;
    padding: 0 8px;
}


/* cartouche nb  */

.text-xs {
    font-size: .7rem;
}

.text-gray-800 {
    color: #5a5c69!important;
}



.border-left-green {
    border-left: 0.25rem solid green!important;
}
.border-left-red {
    border-left: 0.25rem solid red!important;
}
.border-left-gray {
    border-left: 0.25rem solid  #5a5c69!important;
}


.beta{
    border: 5px solid #28a745!important;
}

.check-img:hover {
    cursor: pointer;
}



/* ajout avatar minuscule je l ai je le veux*/
.voxuser .myavatar {
    width: 40px;
    height: 40px;
    margin: 4px auto;
}

.voxuser .myavatar .avatar {
    width: 40px;
    height: 40px;
}

.myavatar.account {
    margin: 10px 15px 0 15px;
}



@media (max-width: 990px) {
    .voxuser .myavatar {
        width: 29px;
        height: 29px;
        margin: 0 auto;
    }

    .voxuser .myavatar .avatar{
        width: 29px;
        height: 29px;
    }

}




.likeit {
    border: 1px solid ;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    color: var(--ColorSecondary);
    background-color: white;
    font-size: 1.1rem;
    padding: 7px;
    transition: all 0.2s;
}


button.likeit {
    margin-left: 15px;
    padding: 0px 5px 0px 5px;
}

button.likeit:hover,
button.likeit:hover span{
    color: var(--ColorJoker)!important;
}



.likedmembers {
    color: #fe9900;
}


.anchorname {
    padding-top: 120px;
}




.body.review-comment {
    /*  border: 1px solid #a3c822;
      border-radius: 7px;*/
}

.review-comment .myavatar {
    width: 45px;
    height: 45px;
}

.review-comment .myavatar .avatar {
    width: 45px;
    height: 45px;
    float: right;
}




.pop {
    max-height: 700px;
}
.pop1 {
    max-height: 400px;
}
.pop2 {
    max-height: 200px;
}
.pop3 {
    max-height: 175px;
}


.centerForce{
    justify-content: center;
}



@media (max-width: 575px) {
    .pop {
        max-height: 200px;
    }
}


.pop:hover {
    cursor: pointer;
}
.object-fit {
    object-fit: cover;
    width: 100%;
    height: 100%;
}


/* recalage ancre nomee header fixe*/
a[name] {
    padding-top: 100px;
    margin-top: -100px;
    display: inline-block; /* required for webkit browsers */
}

.social{
    border: solid 5px;
    border-color:  var(--ColorSecondary);
    border-radius: 10px;
    background-color:#f1f5f9;
}




.mailbox img {
    max-width: 100%;
}


.cross-card {
    position: absolute;
    left: 100%;
    bottom: 75%;
    transform: translate(-50%, 50%);
    color:var(--ColorPrimaryFade );
}

/* simulation lien */
.href{
    color: var(--ColorSecondary);
}
.href:hover{
    color: var(--ColorJoker) !important;
}
.hrefOk {
    color: var(--ColorSecondary);
}
.hrefOk:hover{
    color: green !important;
}
.hrefDanger:hover{
    color: red !important;
}

.pointer:hover {
    cursor: pointer;
}

.sticky-top {
    top: 110px!important;

}


.dataTables_filter {
    float: right!important;
}

.labelrightoffer.quote.new {
    width: 115px!important;
    text-align: center!important;
    display: inline-block;
}

/* correction bug itecomcoreSidebar dflex h100 */
.h-90 {
    height: 95%!important;
    border-top: 0px!important;
}




.sponso_container {
    position: relative;
}

.sponso_container .sponso.desktop {
    position: absolute;
    /* centre sur la div */
    /*top: 50%;*/
    /* transform: translateY(-50%);*/

    top: 0;

    margin-left: 20px;
    margin-right: 20px;
}

.sponso_container .sponso.right.desktop {
    left: 100%;
}

.sponso_container .sponso.left.desktop {
    right: 100%;
    /* start: pour ne pas aligner verticalement  si  top 50% dans sponso.desktop*/
    /*top: 0;
    transform: unset;*/
    /* end */
}

.sponso_container .sponso.mobile {
    margin-top: 20px;
    margin-bottom: 20px;
    text-align: center;
}

.sponso_container .sponso.desktop.hidden {
    /*visibility: hidden;*/
    display: none;
}

.sponso_container .sponso.mobile.hidden {
    display: none;
}

/* rajout plibeo suite bug affichage */
.sponso_container .sponso.desktop.visibility {
    visibility: hidden;
}






.zoom {
    -webkit-transition: all 300ms ease-out;
    -o-transition: all 300ms ease-out;
    transition: all 300ms ease-out;

}
.zoom:hover  {

    position: relative;
    transform: scale(1.10);
    -webkit-transition: all 300ms ease-out;
    -o-transition: all 100ms ease-out;
    transition: all 100ms ease-out;

}


.labelrightoffer.price {
    border-radius: 0 0 0 100%;
    width: 75px;
    height: 56px;
    margin: -1px 0 0;
    background: var(--ColorTertiary);
    color: #000;
    font-weight: 700;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    align-content: center;
}

/* advisorModeration */
.form-check-input {

    margin-left: 0;
}


.dropdown-item-filter {
    font-size: .8rem;
    display: block;
    width: 100%;
    padding: 0.25rem 1.5rem;
    clear: both;
    font-weight: 400;
    color: #212529;
    text-align: inherit;
    white-space: nowrap;
    background-color: transparent;
    border: 0;
}
.dropdown-item-filter:hover {
    background-color: #117a8b;
    color: #fff!important;
}
.dropdown-item-filter-warning:hover {
    background-color: orange;
    color: #fff!important;
}

.btn-xs {
    padding: 5px 15px 5px 5px;
    font-size: .8rem;
    border-radius: 0.2rem;
}


.label-bottom-right {
    position: absolute;
    z-index: 1;
    bottom: 64px;
    right: 0;
    padding: 2px 5px;
    font-weight: 600;

}

.label-bottom-right.quote {
    margin: -1px 0 0 0;
    color: #fff;
    font-weight: normal;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    align-content: center;
}

.label-bottom-left {
    position: absolute;
    z-index: 1;
    bottom: 64px;
    left: 0;
    padding: 2px 5px;
    font-weight: 600;

}

.label-bottom-left.quote {
    margin: -1px 0 0 0;
    color: #fff;
    font-weight: normal;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    align-content: center;
}

.label-bottom-left.price {
    border-radius: 0 100%  0 0;
    width: 75px;
    height: 56px;
    margin: -1px 0 0;
    color: #fff;
    font-weight: 600;
    display: flex;
    flex-wrap: wrap;
    align-content: center;

}


.carousel-control-next,
.carousel-control-prev /*, .carousel-indicators */ {
    filter: invert(100%);
}

.btn-premium {
    background-color:#40c952!important;
    border-color:#40c952!important;
    color: var(--ColorLight)!important;

}


@media (min-width: 1200px) {
    .container, .container-lg, .container-md, .container-sm, .container-xl {
        max-width: 1200px !important;
    }
}
@media (min-width: 1200px) {
    .backgroundColor {
        min-height: 900px !important;
    }
}

#logo {
    max-width: 80%;
}

.wide-div .bg-warning {
    background-color: #F2E70D!important;
}


.btn-fluo {
    color: #000000;
    background-color:#F2E70D;
    border-color:#F2E70D;
    font-weight:600;
}
.btn-fluo:hover {

    background-color:#ede20b;

}

.bg-blue {
    background-color:#0572b7;
}

btn-success {
    color: #fff;
    background-color: #40c952;
    border-color: #40c952;
}

.bg-grey {
    background-color:#E2E2E2 ;
}