.product-grid {
    /* border-radius: 15px; */
    /* border: 1px solid #e7e7e7; */
    overflow: hidden;
    transition: all 0.2s ease-out;
}

/* .product-grid:hover {
    box-shadow: 0px 0px 50px rgba(0, 0, 0, 0.1);
    transform: scale(1.015);
} */

.product-grid .product-image {
    position: relative;
    overflow: hidden;
}

.product-grid .product-image a.image {
    display: block;
}

.product-grid .product-image img {
    width: 100%;
    height: auto;
}

.product-detail #product-text-content {
    position: relative;
    max-height: 200px;
    overflow-x: hidden;
    overflow-y: auto;
}

.product-detail #product-text-content.white-gradient:after {
    position: absolute;
    bottom: 0;
    height: 100%;
    width: 100%;
    content: "";
    background: linear-gradient(to top,
            rgba(255, 255, 255, 1) 0%,
            rgba(255, 255, 255, 0) 60%);
    pointer-events: none;
    /* so the text is still selectable */
}

.product-discount-label,
.cart-discount {
    color: #ffffff;
    display: inline-block;
    /* background: #51c400; */
    background-color: #000000;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 4px 11px;
    border-radius: 2px;
}

.cart-discount {
    color: #ffffff !important;
    font-size: 10px;
    line-height: 1.4;
}

.product-grid .product-discount-label {
    display: none;
    position: absolute;
    top: 12px;
    left: 12px;
}

.product-grid .product-links {
    width: 145px;
    padding: 0;
    margin: 0;
    list-style: none;
    opacity: 0;
    transform: translateX(-50%) translateY(-50%);
    position: absolute;
    top: 65%;
    left: 50%;
    transition: all 0.4s ease 0s;
}

.product-grid:hover .product-links {
    opacity: 1;
    top: 50%;
}

.product-grid .product-links li {
    display: inline-block;
    margin: 0 2px;
}

.product-grid .product-links li a {
    color: #2c2c2c;
    background: #fff;
    font-size: 16px;
    line-height: 42px;
    width: 40px;
    height: 40px;
    border-radius: 50px;
    display: block;
    position: relative;
    transition: all 0.4s ease-out 0s;
}

.product-grid .product-links li a:hover {
    color: #fff;
    background: #78a206;
    box-shadow: 1px 1px 30px 0 rgba(0, 0, 0, 0.2);
}

.product-grid .product-links li a:before,
.product-grid .product-links li a:after {
    content: attr(data-tip);
    color: #fff;
    background-color: #555;
    font-size: 12px;
    line-height: 18px;
    padding: 5px 10px;
    white-space: nowrap;
    display: none;
    transform: translateX(-50%);
    position: absolute;
    left: 50%;
    top: -40px;
    transition: all 0.3s ease 0s;
}

.product-grid .product-links li a:after {
    content: '';
    height: 10px;
    width: 10px;
    padding: 0;
    transform: translateX(-50%) rotate(45deg);
    top: -18px;
    z-index: -1;
}

.product-grid .product-links li a:hover:before,
.product-grid .product-links li a:hover:after {
    display: block;
}

.product-grid .product-content {
    padding: 12px 12px 15px;
    position: relative;
}

.rating {
    padding: 0;
    list-style: none;
    margin: 0;
    font-size: 0;
}

.rating li {
    color: #feab3f;
    font-size: 10px;
}

.product-grid .title {
    min-height: 40px;
}

.product-grid .cat-title {
    font-size: 13px;
    font-weight: 400;
    line-height: 1.2;
}

.product-grid .cat-title a {

    font-weight: 800;
}

.product-grid .cat-title a:hover {

    color: #00174f;
}

.product-grid .prod-title {
    font-size: 12px;
    font-weight: 300;
    min-height: 40px;
    color: #9e9e9e;
    line-height: 1.4;
}

.product-grid .price {
    font-size: 16px;
    font-weight: 700;
    display: block;
    transition: all 0.4s ease-in-out;
}

.product-grid .price span {
    color: #999;
    font-weight: 500;
    text-decoration: line-through;
}

.product-grid .add-to-cart:hover {
    background-color: #2f2f2f;
}

.product-grid .price-and-stars {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.product-grid:hover .add-to-cart {
    opacity: 1;
    bottom: 8px;
}

@media screen and (max-width:1200px) {
    .product-grid {
        margin: 0 0 30px;
    }
}

section.product-detail .qte,
section.product-detail .selection-photos {
    padding: 15px 0px;
}



section.product-detail h3 {
    font-size: 18px;
    margin-bottom: 15px;
}

section.product-detail .prod-qte {
    max-width: 30px;
    background-color: #fff;
    text-align: center;
    padding: 0;
    margin: 0;
    font-size: 22px;
    display: inline-block;
    border: none;
    color: #495554;
    height: auto;
    background: transparent;
}

.qteMoins,
.qtePlus {
    touch-action: manipulation;
    font-family: auto;
    display: inline-block;
    cursor: pointer;
    font-size: 24px;
    padding: 2px;
    font-weight: 500;
    background-color: #000000;
    color: #fff;
    border-radius: 50%;
    width: 39px;
    height: 39px;
    text-align: center;
    line-height: 1;
    padding-top: 5.5px;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.qteMoins:hover,
.qtePlus:hover {
    text-decoration: none;
    background-color: #212834;
    color: #fff;
}

section.panier .qte {
    min-width: 120px;
    text-align: right;
}

section.panier .qteMoins,
section.panier .qtePlus {
    font-size: 14px;
    width: 25px;
    height: 25px;
}

.qtePlus {
    margin-left: 10px;
}

.qteMoins {
    margin-right: 10px;
}

p.price small {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 300;
}


.product-list.cross-sell h2 {
    padding-bottom: 40px;
    padding-top: 40px;
    text-align: center;
}

#popin-replace-img img {
    max-width: 100%;
}

img.galery-img {
    cursor: pointer;
    border: 6px solid #fff;
    transition: border-color 0.2s;
}

img.galery-img:hover {
    border: 6px solid #95c5cb;
}

section.product-detail hr {
    border-top: 1px solid #495554;
    margin-left: 0;
    max-width: 80%;
}

section.product-detail h1 {
    padding-right: 40px;
    color: #333333;
}

.life-style-calpinage {
    margin: 0 18px;
    padding: 4px 20px;
    border: none;
    background-color: #eaeaea;
    display: inline-block;
}

.lifestyle-calpinage-box {
    position: fixed;
    display: none;
    top: 0;
    left: 0;
    max-width: 100%;
    margin: auto;
    height: 100vh;
    z-index: 999;
    overflow: visible;
}

.lifestyle-calpinage-box::before {
    content: '';
    display: block;
    position: fixed;
    background: rgba(255, 255, 255, 0.9);
    width: 100%;
    height: 100vh;
    left: 0;
    top: 0;
    z-index: -1;
}

.lifestyle-calpinage-box-content {
    display: block;
    margin: auto;
    height: 400px;
    overflow: auto;
}

.lifestyle-calpinage-box img {
    max-height: 400px;
}

.lifestyle-calpinage-box .life-style-calpinage-close {
    position: fixed;
    right: 0;
    top: 0;
    width: 32px;
    height: 32px;
    font-size: 20px;
    margin: 10px;
    border-radius: 50%;
    color: #fff;
    background: #000;
}

/* .lifestyle-calpinage-box::after {
    content: '<span>X</span>';
    display: block;
    position: absolute;
    text-align: center;
    width: 32px;
    height: 32px;
    color: #ffffff;
    font-size: 18px;
    font-weight: 700;
    background: #000000;
    border-radius: 50%;
    line-height: 32px;
    right: 0;
    margin: 10px;
} */


.parametre-commande {
    margin-right: 80px;
}

.gallery-list {
    /* height: 55vh; */
    overflow: auto;
    margin-top: 10px;
}

.gallery-list img {
    width: 100%;
}

.gallery-list .col {
    padding-left: 8px;
    padding-right: 8px;
}

#gallery-list figure {
    text-align: center;
    margin-bottom: 0px;
}

#gallery-list a {
    display: inline-block;
    background-color: #FECD3F;
    border-radius: 50%;
    width: 30px;
    padding-top: 5px;
    height: 30px;
    color: white;
    font-size: 14px;
    margin-top: 8px;
    margin-bottom: 15px;
    transition: background-color 0.3s;
}

#gallery-list a:hover {
    background-color: #477377;
}

.single-product-gallery .slick-slide {
    padding-left: 0px;
    padding-right: 0px;
}

.prod-ico {
    display: block;
    width: 50px;
    height: 50px;
    background-position: center !important;
    background-repeat: no-repeat !important;
    background-size: cover !important;
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    border-radius: 100%;
    font-size: 0.7rem;
    line-height: 0.8rem;
    font-weight: 600;
    padding-top: 12px;
    color: #fff;
    z-index: 1;
    text-align: center;
}



.badge.bg-cat {
    display: inline-block;
    background-color: #efeff0;
    color: #1a1a1a;
    font-size: 15px;
    font-weight: 500;
    padding: 12px;
    border-radius: 0px;
}

.badge.bg-cat span {
    font-size: 14px;
}

.cat-list-badge-container {
    text-align: center;
}

section.product-detail .product-selection h3,
.sizes-guide-link a,
.sizes-guide-link,
section.product-detail h3.product-section-title {
    font-size: 14px;
    color: #969696;
    font-weight: 300;

}

.sizes-guide-link a:hover {
    color: #969696;
    text-decoration: underline;
}

.color-swatch {
    display: inline-block;
    cursor: pointer;
    width: 30px;
    height: 30px;
    margin-top: 8px;
    border: 3px solid #FFF;
    border-radius: 18px;
}

.color-swatch.selected {
    box-shadow: 0 0 1px rgb(0 0 0);
}

.wrapper-attributes-selection {
    display: inline-flex;
    flex-wrap: wrap;
    margin-bottom: 4px;
    width: 100%;
    gap: 4px;
}

button.attribute-selector {
    /* width: 75px;
    height: 60px; */
    border-radius: 4px;
    display: block;
    color: #333333;
    border: 1px solid transparent;
    padding: 0;
    position: relative;
    background-color: transparent;
    line-height: 1.2;

}

button.attribute-selector:hover {
    border-color: #75939E;
}

button.attribute-selector.selected {
    border-color: #212834;
}

button.attribute-selector[disabled="disabled"] {
    opacity: 0.3;
    cursor: not-allowed;
}

section.product-detail .product-selection h3 span {
    color: #333;
    font-weight: 600;
}


.out-of-stock {
    color: red !important;
    font-weight: 300 !important;
    font-size: 11px;
}

section.panier .card.cart-list {
    border: 0;
}

section.panier .card.cart-list h5 {
    font-size: 16px;

}

section.panier .card.cart-list.confirmation h1 {
    font-size: 24px;

}

section.panier .card.cart-list.confirmation p.price small {
    font-size: 80%;
}

section.panier .card.cart-list.confirmation p.price {
    line-height: 1.2;
}

.mfp-content h1 {
    font-size: 30px;
}

.zoomzoom {
    overflow: hidden;
    height: auto;
    width: auto;
}

.single-product-slide:hover {
    cursor: zoom-in;
}


@media (max-width: 992px) {

    .cat-list-badge-container {
        display: flex;
        justify-content: left;
        overflow: scroll;
        overflow-y: hidden;
        flex-wrap: nowrap;
    }
}


.color-swatch-container {
    display: flex;
    gap: 5px;
}

.color-swatch-container.category {
    justify-content: center;
    align-items: center;
    position: absolute;
    margin-top: -50px;
    left: 50%;
    transform: translateX(-50%);
}


.color-swatch {
    cursor: pointer;
    width: 26px;
    height: 26px;
    border-radius: 18px;
}

.color-swatch.selected {
    box-shadow: 0 0 1px rgb(0, 0, 0);
}

.color-swatch-container.category .color-swatch {
    cursor: default;
    width: 20px;
    height: 20px;
    margin: 0;
    border: 2px solid #FFF;
}

.color-swatch-container.category p {
    color: #000000;
    font-size: 13px;
    font-weight: 300;
}

.color-swatch-container.category p {
    color: #000000;
    font-size: 13px;
    font-weight: 300;
}

.text-delivery {
    font-family: Prata;
    font-size: 16px;
    font-weight: 300;
    color: #54595f;
}

h2.price {
    font-size: 30px;
}

.product-selection .btn-primary.cali {
    font-size: 40px !important;
}

.product-content.lifestyle .title a {
    font-family: "Montserrat", sans-serif;
    color: #b2b2b2;
    font-size: 12px;
    font-weight: 300;
}

.hero-life-style-title {
    background-color: white;
    margin-top: 31vh;
    padding-top: 60px;
    padding-right: 20px;
    padding-bottom: 60px;
    padding-left: 20px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.hero-life-style-title h3,
.hero-life-style-title h1 {
    font-size: 39px;
    font-weight: 300 !important;
    text-transform: uppercase;
    margin-bottom: 0px;
    margin-top: 10px;
}

.lifestyle-category .intro h1 {
    font-family: 'Prata', serif;
    font-size: 25px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 10px;
    color: #515050;
    margin: 40px 0px;
    line-height: 28px;
}

.lifestyle-category .intro h2 {
    font-family: 'Prata', serif;
    font-size: 34px;
    font-weight: 400;
    letter-spacing: 5px;
    color: #515050;
    line-height: 1.214;
}

.lifestyle-category .intro .framed {
    display: block;
    border: 1px solid grey;
    text-align: center;
    color: #515050;
    font-family: "Montserrat", Sans-serif;
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 4.5px;
    padding: 30px;
}

.lifestyle-category .intro .framed span {
    font-weight: 600;
    font-size: 20px;
}

.lifestyle-category .intro .framed span {
    font-weight: 600;
    font-size: 20px;
}

.lifestyle-category .intro .shipping {
    color: #000;
    font-family: Montserrat, sans-serif;
    font-size: 11px;
    letter-spacing: 3.3px;
    text-align: center;
    white-space: normal;
    word-spacing: 1.1px;
    text-size-adjust: auto;
}

.pic-hover {
    display: flex;
    position: absolute;
    z-index: 9;
    top: 0;
    height: 100%;
    background: white;
    align-content: center;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s;
}

.pic-hover:hover {
    opacity: 1;
}

.product-content.lifestyle p.price {
    font-family: "Montserrat", Sans-serif;
    font-size: 13px;
    font-weight: 300;
    color: #515050;
    margin-top: 0px;
    text-align: center;
    margin-bottom: 0px;
}

.product-content.lifestyle h3.product-name {
    font-family: "Montserrat", Sans-serif;
    font-size: 13px;
    font-weight: 300;
    color: #515050;
    margin-top: 0px;
    text-align: center;
    margin-bottom: 0px;
}

.product-content.lifestyle p.finition {
    font-family: "Notera", sans-serif !important;
    text-align: center;
    font-size: 27px;
    line-height: 27px;
    margin: 0px;
    color: #515050;
}

a.btn-order-sm {
    color: #a0762a !important;
    font-size: 10px;
    text-transform: uppercase;
}



#pannel-collection h2 {
    font-size: 30px;
}

#pannel-collection p {
    text-align: justify;
    line-height: 1.3;
    color: #6e6e6e;
    font-size: 12px;
}

#pannel-collection li {
    list-style: none;
    position: relative;
}

#pannel-collection li h3 {
    font-family: 'Montserrat';
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 0px;
    margin-top: 15px;
}

#pannel-collection ul {
    position: relative;
    margin-left: 28px;
    padding-left: 0px;
    margin-bottom: 0;
}

#pannel-collection li:before {
    position: absolute;
    content: '';
    width: 34px;
    height: 34px;
    background: url(../img/icons/puce.png) center no-repeat;
    background-size: contain;
    top: -6px;
    left: -36px;
}

.decorative-pannel-category .intro p {
    font-weight: 400;
}

.decorative-pannel-category .intro p.new-collection {
    font-weight: 700;
    color: #000;
    font-size: 14px;
}

.decorative-pannel-category .intro p.text-shipping,
.decorative-pannel-category .intro div.text-order-pro p {
    color: #000000;
    font-family: Montserrat, sans-serif;
    font-size: 11px;
    letter-spacing: 3.3px;
    text-align: center;
    white-space: normal;
    word-spacing: 1.1px;
    text-size-adjust: auto;
    line-height: 2;
}

a.btn-order-panel {
    color: #a19e9e;
    border: solid 1px #a19e9e;
    padding: 3px 20px;
    width: 100%;
    max-width: 300px;
    margin: auto;
    display: block;
    text-align: center;
    font-size: 14px;
}

.product-content.decorative-panel h3.product-name a {
    font-family: 'Prata', serif;
    color: #515050;
    font-weight: 300;
}

.product-content.decorative-panel p.price {
    font-weight: 300;
}

.product-image .largeur-pdt,
.product-image .hauteur-pdt {
    font-size: 13px;
}

.finih-pdt {
    font-family: "Hijrnotes", Sans-serif;
    font-size: 16px;
    font-weight: 300;
}

/* ///////////////////////////Checkbox Decor ///////////////////////////////*/


/* Base for label styling */
.lecheck>[type="checkbox"]:not(:checked),
.lecheck>[type="checkbox"]:checked {
    position: absolute;
    opacity: 0.01;
    margin-top: 6px;
    margin-left: 6px;
    z-index: 9;
}

.lecheck>[type="checkbox"]:not(:checked)+label,
.lecheck>[type="checkbox"]:checked+label {
    position: relative;
    padding-left: 15px;
    font-size: 11px !important;
    line-height: 1.7;
    cursor: pointer;
}

/* checkbox aspect not checked*/
.lecheck>[type="checkbox"]:not(:checked)+label:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 13px;
    height: 13px;
    border: 1px solid #aaa;
    background: #ffffff;
    border-radius: 0.2em;
    -webkit-transition: all 0.275s;
    transition: all 0.275s;
}

/* checkbox aspect checked*/
.lecheck>[type="checkbox"]:checked+label:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 13px;
    height: 13px;
    border: none;
    background: #9e9e9e;
    border-radius: 0.2em;
    -webkit-transition: all 0.275s;
    transition: all 0.275s;
}

/* checked mark aspect */
.lecheck>[type="checkbox"]:not(:checked)+label:after,
.lecheck>[type="checkbox"]:checked+label:after {
    content: "\002714";
    position: absolute;
    top: 7px;
    left: 2px;
    font-size: 13px;
    color: #ffffff;
    line-height: 0;
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
}

/* checked mark aspect changes */
.lecheck>[type="checkbox"]:not(:checked)+label:after {
    opacity: 0;
    -webkit-transform: scale(0) rotate(45deg);
    transform: scale(0) rotate(45deg);
}

.lecheck>[type="checkbox"]:checked+label:after {
    opacity: 1;
    -webkit-transform: scale(1) rotate(0);
    transform: scale(1) rotate(0);
}

/* Disabled checkbox */
.lecheck>[type="checkbox"]:disabled:not(:checked)+label:before,
.lecheck>[type="checkbox"]:disabled:checked+label:before {
    box-shadow: none;
    border-color: #bbb;
    background-color: #e9e9e9;
}

.lecheck>[type="checkbox"]:disabled:checked+label:after {
    color: #777;
}

.lecheck>[type="checkbox"]:disabled+label {
    color: #aaa;
}

/* Accessibility */
.lecheck>[type="checkbox"]:checked:focus+label:before,
.lecheck>[type="checkbox"]:not(:checked):focus+label:before {
    /*box-shadow: inset 0 1px 3px rgba(0,0,0, .1), 0 0 0 6px rgba(203, 34, 237, .2);*/
}

.nice-select {
    /*-webkit-tap-highlight-color: transparent;
background-color: #fff;
border-radius: 0px;*/
    margin-top: 10px;
    border: solid 1px #a19e9a;
    box-sizing: border-box;
    /*clear: both;*/
    cursor: pointer;
    display: inline-block;
    /*float: left;*/
    font-family: inherit;
    font-size: 14px;
    font-weight: normal;
    height: 42px;
    line-height: 42px;
    outline: none;
    padding-left: 18px;
    padding-right: 30px;
    position: relative;
    /*text-align: left !important;*/
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    white-space: nowrap;
    width: 100%;
    max-width: 528px;
}

.nice-select:hover {
    border-color: #dbdbdb;
}

.nice-select:active,
.nice-select.open,
.nice-select:focus {
    border-color: #999;
}

.nice-select:after {
    border-bottom: 2px solid #999;
    border-right: 2px solid #999;
    content: "";
    display: block;
    height: 12px;
    margin-top: -8px;
    pointer-events: none;
    position: absolute;
    right: -26px;
    top: 50%;
    -webkit-transform-origin: 66% 66%;
    -ms-transform-origin: 66% 66%;
    transform-origin: 66% 66%;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    -webkit-transition: all 0.15s ease-in-out;
    transition: all 0.15s ease-in-out;
    width: 12px;
}

.nice-select.open:after {
    -webkit-transform: rotate(-135deg);
    -ms-transform: rotate(-135deg);
    transform: rotate(-135deg);
}

.nice-select.open .list {
    opacity: 1;
    pointer-events: auto;
    -webkit-transform: scale(1) translateY(0);
    -ms-transform: scale(1) translateY(0);
    transform: scale(1) translateY(0);
    overflow: auto;
}

.nice-select.disabled {
    border-color: #ededed;
    color: #999;
    pointer-events: none;
}

.nice-select.disabled:after {
    border-color: #cccccc;
}

.nice-select.wide {
    width: 100%;
}

.nice-select.wide .list {
    left: 0 !important;
    right: 0 !important;
}

.nice-select.right {
    float: right;
}

.nice-select.right .list {
    left: auto;
    right: 0;
}

.nice-select.small {
    font-size: 12px;
    height: 36px;
    line-height: 34px;
}

.nice-select.small:after {
    height: 4px;
    width: 4px;
}

.nice-select.small .option {
    line-height: 34px;
    min-height: 34px;
}

.nice-select .list {
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0 0 0 1px rgba(68, 68, 68, 0.11);
    box-sizing: border-box;
    width: 100%;
    margin: 0px;
    margin-top: 4px;
    opacity: 0;
    overflow: hidden;
    padding: 0;
    pointer-events: none;
    position: absolute;
    top: 100%;
    left: 0;
    -webkit-transform-origin: 50% 0;
    -ms-transform-origin: 50% 0;
    transform-origin: 50% 0;
    -webkit-transform: scale(0.75) translateY(-21px);
    -ms-transform: scale(0.75) translateY(-21px);
    transform: scale(0.75) translateY(-21px);
    -webkit-transition: all 0.2s cubic-bezier(0.5, 0, 0, 1.25),
        opacity 0.15s ease-out;
    transition: all 0.2s cubic-bezier(0.5, 0, 0, 1.25), opacity 0.15s ease-out;
    z-index: 9;
    max-height: 270px;
    overflow-y: auto;
}

.nice-select .list:hover .option:not(:hover) {
    background-color: transparent !important;
}

.nice-select .option {
    cursor: pointer;
    font-weight: 400;
    line-height: 40px;
    list-style: none;
    min-height: 40px;
    outline: none;
    padding-left: 18px;
    padding-right: 29px;
    text-align: left;
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
}

.nice-select .option:hover,
.nice-select .option.focus,
.nice-select .option.selected.focus {
    background-color: #f6f6f6;
}

.nice-select .option.selected {
    font-weight: bold;
}

.nice-select .option.disabled {
    background-color: transparent;
    color: #999;
    cursor: default;
}

.no-csspointerevents .nice-select .list {
    display: none;
}

.no-csspointerevents .nice-select.open .list {
    display: block;
}

#divtohide {
    background-color: #ccc2b6 !important;
}

#divtohide .btn1 {
    font-size: 12px !important;
    font-weight: 500 !important;
    background-color: #a79d8d !important;
    border: 0px !important;
}

#divtohide .btn1:hover {
    color: white !important;
}

#divtohide label {
    font-size: 14px !important;
    font-weight: 200 !important;
}