/* Global CSS */

@charset "UTF-8";

@font-face {
    font-family: Gotham-Book;
    src: url(../fonts/Gotham-Book.otf);
}

@font-face {
    font-family: Gotham-Book-Medium;
    src: url(../fonts/Gotham-Medium.otf);

    /* src: url(/assets/fonts/Gotham-Medium.otf); */
}

@font-face {
    font-family: Gotham-Book-Bold;
    src: url(../fonts/Gotham-Bold.otf);
}

@font-face {
    font-family: Miller-Text;
    src: url(../fonts/Miller-Text-Regular.otf);
}

@font-face {
    font-family: Miller-Text-Bold;
    src: url(../fonts/Miller-Text-Bold.otf);
}

* {
    margin: 0;
    padding: 0;
}

body{
	font-family:"Gotham-Book";
	overflow-x: hidden;
	}

.btn-primary {
    padding: 10px 15px;
    background: #ECECEC;
    border-radius: 30px;
    border: none;
    font-family: 'Gotham-Book';
    font-style: normal;
    font-weight: 500;
    font-size: 20px;
    line-height: 24px;
    text-align: center;
    color: #000000;
    cursor: pointer;
    text-decoration: none;
}

.btn-primary:hover {
    background: #D2D2D2;
    color: #000000;
}

.btn-primary:active {
    background: #F4F4F4;
}

.btn-secondary {
    padding: 10px 35px;
    background: #171717;
    border-radius: 30px;
    border: none;
	text-decoration: none;
    font-family: 'Gotham-Book';
    font-style: normal;
    font-weight: 500;
    font-size: 20px;
    line-height: 24px;
    text-align: center;
    color: #FFFFFF;
    cursor: pointer;
}

.btn-secondary:hover {
    background: #000000;
    color: #fff;
}

.btn-secondary:active {
    background: #444444;
    color: #fff;
}

.btn-tertiary {
    padding: 10px 35px;
    background: transparent;
    border-radius: 30px;
    border: 1px solid #000000;
	text-decoration: none;
    font-family: 'Gotham-Book';
    font-style: normal;
    font-weight: 500;
    font-size: 20px;
    line-height: 24px;
    text-align: center;
    color: #000000;
}

.btn-tertiary:hover {
    border: 1px solid transparent;
}

.btn-tertiary:active {
    background: #444444;
    color: #FFFFFF;
}
.btnScrollTo{

	height:60px;
	width:60px;
	background: #6262622e;
	border-radius:50%;
	display:flex;
	justify-content:center;
	align-items:center;
	position: fixed;
	right:20px;
	bottom:40px;
	cursor:pointer;	
	z-index: 99999;
}
.btnScrollTo:hover{
	height:65px;
	width:65px;
	background: #62626273;
}
.btnScrollTo .btn-up{
    width: 70%!important;
    rotate: x 180deg;
    height: 24px!important;
}
.list-title.list-option.only {
    margin-bottom: 10px;
}
@media screen and (min-width: 1380px) {

   /*  .btn-primary-xl {
        padding: 17px 48px;
        font-size: 31.25px;
        line-height: 30px;
    } */
}

@media screen and (max-width: 768px) {

    .btn-primary {
        font-size: 16px;
        line-height: 24px;
    }

    .btn-secondary {
        padding: 10px 40px;

        font-size: 16px;
        line-height: 24px;
    }

    .btn-tertiary {
        padding: 10px 40px;

        font-size: 16px;
        line-height: 24px;
    }

}

@media screen and (max-width: 512px) {

    .btn-primary {
        padding: 10px 24px;

        font-size: 16px;
        line-height: 16px;
    }

    .btn-secondary {
        padding: 10px 15px;

        font-size: 16px;
        line-height: 16px;
    }

    .btn-tertiary {
        padding: 10px 25px;

        font-size: 12.8px;
        line-height: 16px;
    }
   .userLoginWrapper .loginButtonWrapper {
    margin-top: 16px;
    display: flex;
    flex-direction: row;
}


}



/* Navbar CSS */



.siteHeaderWrapper {
    position: sticky;
    top: 0;
    left: 0;
    z-index: 99;
    width: 100%;
    background: #FFFFFF;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}

.siteHeader {
    display: flex;
    justify-content: space-between;
    padding: 16px 70px;
}

.mainLogo img {
    width: 140px;
    height: auto;
}

.siteHeaderUtility {
    margin: auto 10px;
    display: inline-flex;
}

.siteHeaderUtilityList {
    display: inline-flex;
    flex-direction: row;
    list-style: none;
    text-align: center;

}

.siteHeaderUtilityListItem {
    border-right: 1px solid #000000;
    height: 32px;
    display: inline-flex;
    align-items: center;
}

.siteHeaderUtilityListItem a:hover{
	font-family:"Gotham-Book-Bold",sans-serif;
}

.siteHeaderUtilityListItem:last-child {
    border: none;
}

.siteHeaderUtilityListItem a {
    text-decoration: none;
    padding: 16px 12px;

    font-family: Gotham-Book;
    font-style: normal;
    font-weight: 500;
    font-size: 20px;
    line-height: 21px;
    text-transform: uppercase;

    color: #000000;
}

.hamburgerMenu {
    display: none;
}

.hamburgerMenu button {
    background: none;
    border: none;
    display: flex;
    align-items: center;
}

.closeHamburgerIcon {
    content: "close";
}

.siteHeaderUserUtility {
    display: inline-flex;
    align-items: center;
    margin-left: 16px;
}

.siteHeaderUserUtility .iconButton {
    border: none;
    background: transparent;
    margin-right: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
}

@media screen and (max-width: 1024px) {

    .siteHeader {
        padding: 16px 48px;
    }

    .mainLogo img {
        width: 84px;
        height: auto;
    }

}

@media screen and (max-width: 768px) {

    .siteHeaderUtilityListItem a {
        font-size: 12px;
        line-height: 16px;

        padding: 12px 8px;
    }

}

@media screen and (max-width: 512px) {

    .siteHeader {
        padding: 14px 25px;
    }

    .mainLogo img {
        width: 64px;
        height: auto;
    }

    .siteHeaderUtility {
        flex-direction: row-reverse;
    }

    .siteHeaderUtilityList {
        display: none;
    }

    .hamburgerMenu {
        display: inline-flex;
        align-items: center;
    }

    .siteHeaderUserUtility {
        align-items: flex-start;
    }

}



/* Hamburger Menu CSS */



.hamburgerMenuOverlay {
    display: none;
}

.hamburgerMenuOverlayWrapper {
    display: flex;
    flex-direction: column;
    margin-top: 112px;
    justify-content: center;
}

.hamburgerMenuOverlayWrapper a {
    text-decoration: none;
    font-family: Gotham-book;
    font-style: normal;
    font-weight: 500;
    font-size: 25px;
    line-height: 24px;
    text-align: center;

    color: #FFFFFF;

    margin: 48px 0;
}

.showHamburgerMenu {
    position: fixed;
    display: block;
    width: 100%;
    height: 100%;
    top: calc(32px + 25px);

    background-color: rgba(0, 0, 0, 0.92);
    z-index: 100;
    cursor: pointer;
}



/* Login Overlay Container CSS */


.userLoginOverlayContainer {
    display: none;
}

.userLoginOverlayContainer .userLoginOverlay {
    margin: 30px;
    display: flex;
    flex-direction: column;
}

.showUserLogin {
    position: fixed;
    display: block;
    width: 100%;
    height: 100%;
    top: calc(32px + 45px);

    background-color: rgba(0, 0, 0, 0.92);
    z-index: 100;
}

.userLoginOverlay>button {
    border: none;
    background: transparent;
    color: white;
    align-self: flex-end;
    cursor: pointer;
    margin-bottom: 72px;
}

.userLoginWrapper {
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.userLoginWrapper .input-group {
    display: inline-block;
    width: 100%;
    margin-bottom: 0.625rem;
    text-align: center;
}
.userLoginWrapper .input-group span.input__error {
    display: block;
    font-size: 12px;
    color: red;
    margin: 5px 0;
}
.userLoginWrapper .input-group span.input{
	position: relative;
    display: inline-block;
    vertical-align: top;
}

.userLoginWrapper .input-group button.show-hide_2 {
	text-decoration: none;
    background: none;
    border: none;
    padding:0; 
    z-index: 1;
    bottom: unset;
	right: 10px;
    top: 50%;
    transform: translateY(-50%);
}
.userLoginWrapper span.incomplete {
	position: relative;
    display: inline-block;
    vertical-align: top;
}
.userLoginWrapper span.completed {
	position: relative;
    display: inline-block;
    vertical-align: top;
}
.userLoginWrapper .input-group span.completed .password__field {
    margin: 0;
}
.userLoginWrapper .input-group span.incomplete .password__field {
    margin: 0;
}


.userLoginWrapper h1 {
    font-family: 'Gotham-Book';
    font-style: normal;
    font-weight: 500;
    font-size: 20px;
    line-height: 24px;
    color: #FFFFFF;
    margin-bottom: 16px;
    text-align: center;
}

.userLoginWrapper p {
    font-family: 'Gotham-Book';
    font-style: normal;
    font-weight: 500;
    font-size: 12.8px;
    line-height: 16px;
    text-align: center;
    color: #FFFFFF;
    margin-bottom: 48px;
}

.userLoginWrapper .input {
    margin-bottom: 24px;
    width: 23vw;
    height: 36px;

    font-family: 'Gotham-Book';
    font-style: normal;
    font-weight: 500;
    font-size: 12.8px;
    line-height: 16px;

    padding-left: 8px;
    color: #737373;
}

.userLoginWrapper .loginButtonWrapper {
    margin-top: 16px;
}

@media screen and (max-width: 1024px) {

    .showUserLogin {
        top: calc(32px + 32px);
    }


}

@media screen and (max-width: 768px) {

    .userLoginOverlayContianer .userLoginOverlay {
        margin: 36px;
    }

    .userLoginWrapper .input {
        width: 40vw;
    }
  
   .userLoginWrapper .input-group button.show-hide_2 {

    right: 5px;
}

.userLoginWrapper .input-group span.incomplete .password__field {
    margin: 0 0 0 45px;
}

}

@media screen and (max-width: 512px) {

    .showUserLogin {
        top: calc(28px + 27px);
    }

    .userLoginWrapper .input {
        width: 70vw;
        font-size: 14px;
        padding-left: 0;
    }

.userLoginWrapper .input-group span.incomplete .password__field {
    margin: 0 0 0 15px;
}

}

/* Footer Container CSS */


.footerContainer {
    margin-top: 112px;
    background: #171717;
}

.footerWrapper {
    padding: 64px 0;

    display: flex;
    flex-wrap: wrap;
    flex-direction: column;

    align-items: center;
}

.footerWrapper .footerNav {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.footerWrapper .footerNav a {
    text-decoration: underline;

    font-family: Gotham-book;
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 24px;
    text-align: center;

    color: #FFFFFF;
    margin: 10px 30px;
    text-underline-offset: 2px;
}

.footerLogo {
    padding-bottom: 50px;
    text-align: center;
}

.footerLogo img {
    width: 150px;
}

.underline {
    margin: 0 auto;
    width: 250px;
    height: 2px;
    color: white;
    background-color: white;

    margin-bottom: 10px;
}

@media screen and (max-width: 1024px) {

    .footerContainer {
        margin-top: 100px;
    }

    .footerWrapper {
        padding: 56px 0;
    }

}

@media screen and (max-width: 768px) {

    .footerContainer {
        margin-top: 90px;
    }

    .footerWrapper {
        padding: 48px 0;
        flex-direction: row;
        justify-content: center;
    }

    .footerWrapper .footerNav {
        flex-direction: column;
        justify-content: unset;
        align-items: center;
    }

    .footerWrapper .footerNav a {
        margin-bottom: 64px;
    }


}

@media screen and (max-width: 512px) {

    .footerContainer {
        margin-top: 86px;
    }

    .footerWrapper {
        padding: 42px 0;
        padding-bottom: 0;
    }

    .underline {
        height: 1px;
    }
}

    /* Shopping Cart Container CSS */

    .shoppingCartContainer {
        text-align: center;
        height: calc(100vh - 81px - 268px);
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .emptyCart p {
        margin-top: 12px;
        font-family: 'Gotham-Book';
        font-style: normal;
        font-weight: 400;
        font-size: 16px;
        line-height: 24px;
    }

    .emptyCart button {
        margin-top: 12px;
    }

    @media screen and (max-width: 1024px) {}

    @media screen and (max-width: 768px) {}

    @media screen and (max-width: 512px) {

        .shoppingCart {
            margin: 100px auto;
        }

    }

.iconButton .cart-count{display:inline-block;position:absolute;top:.4375rem;left:auto;bottom:auto;right:2px;width:18px;height:18px;background-color:#555555;color:#fff;font-size:12px;line-height:16px;border-radius:9px;text-align:center;vertical-align:middle}
@media (min-width:75.625em) {
.iconButton .cart-count{right:8px}
}
.form-error .form-control{border-bottom:1px solid red}
.form-error label{color:red!important}
.form-error input,.form-error select,.form-error textarea{border-bottom:1px solid red;background:url(../img/picto-caution.png) no-repeat 100% center}
.form-error input:focus,.form-error select:focus,.form-error textarea:focus{border-bottom:1px solid red}
.form-error input:focus+label,.form-error select:focus+label,.form-error textarea:focus+label{color:red}
.global-errors,.form-errors{width:100%;clear:both}
.global-errors .form-msg-error,.form-errors .form-msg-error{text-align:center;margin-top:.3125rem;color:red;margin-bottom: .3125rem;}
.global-errors .form-msg-error{line-height:1.3;font-size:1rem}
.form-errors .form-msg-error{font-size:.875rem}
.global-errors .form-msg-error:first-child{margin-top:.625rem}
.global-errors .form-msg-error img,.form-errors .form-msg-error img{width:auto!important;height:auto!important;margin:0 .3125rem 0 0 !important}
.global-errors .form-msg-error a,.form-errors .form-msg-error a{color:#E20714;text-decoration:underline}
.forget{color: white;}

.pc-index{display:none}
.mobile-index{display:block}
@media (min-width:768px){
	.mobile-index{display:none}
	.pc-index{display:block}
}
.primeOfferCard .cardBottomImg img{max-width: 100%; max-height: 100%; display: block; border-bottom-left-radius: 30px;  border-bottom-right-radius: 30px;}

.siteHeaderUserUtility{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-ms-flex-direction:row-reverse}
@media (min-width:48em) {
.siteHeaderUserUtility{position:relative;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row}
}
@media (min-width:75.625em) {
.siteHeaderUserUtility{position:relative;top:0;left:auto;bottom:auto;right:0;margin-right:1.25rem}
}

.siteHeaderUserUtility .siteHeaderUserUtility-btn {
  display: inline-block;
  position: relative;
  float: left;
  z-index: 1001;
}



.siteHeaderWrapper .right-dropdown{display:-webkit-box;display:-ms-flexbox;display:flex;position:absolute;background-color:#fff;top:3.4rem;bottom:auto;left:auto;right:0;border:none;padding:0;width:100%;height:0;visibility:hidden;-webkit-transition:height 1s ease;transition:height 1s ease}
@media (min-width:512px) {
.siteHeaderWrapper .right-dropdown{width:25rem;top:4rem}
}
@media (min-width: 1024px) {
	.siteHeaderWrapper .right-dropdown{top:5rem}
}
.cart-item-info span {
    font-size: 16px!important;
    font-weight: 100;
    font-family: "Gotham-Book";
    text-align: left!important;
}
.cart-item-info h3{
	text-align: left!important;
    font-family: "Gotham-Book";
    font-weight: 100;
}
.cart-item-info strong {
    font-weight: 100!important;
    text-align: left!important;
}
.siteHeaderWrapper .right-dropdown .right-dropdown-container{display:block;width:100%;position:relative}
.siteHeaderWrapper .right-dropdown .btn,.siteHeaderWrapper .right-dropdown .btn-2,.siteHeaderWrapper .right-dropdown .btn-3,.siteHeaderWrapper .right-dropdown .btn-rounded{line-height:17px}
.siteHeaderWrapper .right-dropdown p.price{display:inline-block;font-family:"Gotham-Book-Bold",sans-serif;font-size:20px}
.siteHeaderWrapper .right-dropdown p.price span{font-size:14px;line-height:10px}
.siteHeaderWrapper .right-dropdown .cart-list{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column}
.siteHeaderWrapper .right-dropdown .cart-list .cart-list-item{display:-webkit-box;display:-ms-flexbox;display:flex;width:100%;padding:1.25rem 0;align-items: center;}
.siteHeaderWrapper .right-dropdown .cart-list .cart-list-item .cart-item-img{display:flex ;width:25%;padding:0 .9375rem;float:left; justify-content: center; align-items: center;flex-direction: column;gap: 10px}
.siteHeaderWrapper .right-dropdown .cart-list .cart-list-item .cart-item-img img{max-width:100%}
.siteHeaderWrapper .right-dropdown .cart-list .cart-list-item .cart-item-info{display:inline-block;float:left;width:50%;padding:0 .625rem}
.siteHeaderWrapper .right-dropdown .cart-list .cart-list-item .cart-item-info p.cart-item-info-title{display:inline-block;font-family:"Gotham-Book-Bold",sans-serif;font-size:16px;margin-bottom:0}
.siteHeaderWrapper .right-dropdown .cart-list .cart-list-item .cart-item-info p.cart-item-info-text{color:#000;font-size:14px;line-height:16px}
.siteHeaderWrapper .right-dropdown .cart-list .cart-list-item .cart-item-price{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;-webkit-box-align:end;-ms-flex-align:end;align-items:flex-end;float:left;width:25%;padding-right: .9375rem;margin-left:.625rem}
.siteHeaderWrapper .right-dropdown .cart-list .cart-list-item .cart-item-price a{display:inline-block;cursor:pointer}
.siteHeaderWrapper .right-dropdown .cart-list .cart-list-item .cart-item-price p.price{color:#000}
.siteHeaderWrapper .right-dropdown .cart-list .cart-list-total{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;background-color:#F2F1F1;padding:.625rem .9375rem .9375rem}
.siteHeaderWrapper .right-dropdown .cart-list .cart-list-total p{margin-bottom:0;font-family:"Gotham-Book-Bold",sans-serif}
.siteHeaderWrapper .right-dropdown .cart-list .cart-list-validate{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;padding:1.25rem 0}
.siteHeaderWrapper .right-dropdown.is-open{height:auto;visibility:visible;border-top:1px solid rgba(0,0,0,.2);border-bottom:5px solid #000;max-height: 500px;overflow-y: auto;}
#addCart select.typeDropdown{
	max-width: 200px;
}
@media (max-width:512px) {
.siteHeaderWrapper .right-dropdown.is-open{max-height: 400px;}
}

.typeDropdown {
        padding: 3px 10px;
        font-family: 'Gotham-Book';
        font-style: normal;
        font-weight: 400;
        font-size: 15px;
        line-height: 15px;
        text-align: center;
        color: #000000;
    }

.show-hide {
	top: 3px;
	padding: .4em .8em;
    text-align: center;
    position: absolute;
    right: 8px;
}
button.show-hide_2 {
    float: right;
    bottom: 0; 
    padding: 0.4em 0.8em;
    text-align: center;
    position: absolute;
    right: 1px;
    box-shadow: none;
    border: none;
    background: none!important;
}

button.show-hide {
	box-shadow: none;
	border: 0;
	background: none;
}

.sr-only{
    border: 0!important;
    clip: rect(1px,1px,1px,1px)!important;
    -webkit-clip-path: inset(50%)!important;
    clip-path: inset(50%)!important;
    height: 1px!important;
    overflow: hidden!important;
    padding: 0!important;
    position: absolute!important;
    width: 1px!important;
    white-space: nowrap!important;
}

/* .password__field{
	padding-right: 3em;
} */
.input__field {
    display: block;
}
on{
	display:block;
}
 .show-hide_2 .show-hide__off{
	display:block;
}
.show-hide_2 .show-hide__on{
	display:none;
}
 .show-hide__on{
	display:none;
}
.show-hidec__on{
	display:none;
}
.productEpuise {
    position: absolute;
    color: white;
    background: red;
    font-size: 20px;
    padding: 7px;
}
.productEpuiseTxt{
	color:red!important;
}
.buttonWrapper a.btnEditCart{
    padding: 15px;
    background-color: black;
    color: white;
    text-decoration-line: none;
    border-radius: 20px;
}
.productWrapper .productImg span {
    position: absolute;
    color: white;
    background: red;
    font-size: 20px;
    padding: 7px;
}
.cart-list .cart-item-img span {
    position: absolute;
    color: white;
    background: red;
    font-size: 15px;
    padding: 7px;
}
.btnDisable {
        cursor: not-allowed;
        pointer-events: none;
        color: #ffffff;
        background-color: #636262;

        }