@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;500&display=swap');
:root {
    --gradient-theme-primary: linear-gradient(#5ea758 0%, #187249 100%);
	--gradient-theme-danger: linear-gradient(#a75858 0%, #721818 100%);
    --color-green: #47894b;
    --color-green-secondary: #187249;
    --shadow-theme-primary: -14px -3px 43px rgba(0, 0, 0, 0.05);
    --color-black: #303030;
    --color-grey: #979797;
    --color-offwhite: #f7f7f7;
    --color-border: #D2D2D2;
    --color-box-backgrounds: white;
}

@font-face {
    font-family: 'gothammedium';
    src: url('/cart/stylesheets/fonts/gothammedium-webfont.woff2') format('woff2'), url('/stylesheets/fonts/gothammedium-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'gothamblack';
    src: url('/cart/stylesheets/fonts/gotham-black-webfont.woff2') format('woff2'), url('/stylesheets/fonts/gotham-black-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'gothambold';
    src: url('/cart/stylesheets/fonts/gotham-bold-webfont.woff2') format('woff2'), url('/stylesheets/fonts/gotham-bold-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'gothamlight';
    src: url('/cart/stylesheets/fonts/gotham-light-webfont.woff2') format('woff2'), url('/stylesheets/fonts/gotham-light-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'gotham-con-bold';
    src: url('/cart/stylesheets/fonts/Gotham-Condensed-Bold.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
}


ul.list_style_none {
    list-style: none;
}

a {
    text-decoration: none;
    transition: all 0.5s ease;
}
.hover_green:hover{
    color: var(--color-green);
}

p {
    font-weight: 500;
}

/* Colors */

.color-green {
    color: var(--color-green);
}

.color-grey {
    color: var(--color-grey);
}

.color-black {
    color: var(--color-black);
}


.color-white{
    color: white;
}

.border-grey{
    border: 1px solid var(--color-border);
}

.noselect {
    -webkit-touch-callout: none; /* iOS Safari */
      -webkit-user-select: none; /* Safari */
       -khtml-user-select: none; /* Konqueror HTML */
         -moz-user-select: none; /* Old versions of Firefox */
          -ms-user-select: none; /* Internet Explorer/Edge */
              user-select: none; /* Non-prefixed version, currently
                                    supported by Chrome, Edge, Opera and Firefox */
  }

/* Backgrounds */

.bg-offwhite {
    background-color: var(--color-offwhite);
}
.bg-black{
    background-color: var(--color-black);   
}
.bg-white{
    background-color: white;   
}
.bg-style {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

/* Borders */

.border_radius_17{
    border-radius: 17px;
}
.border_radius_14{
    border-radius: 8px;
}

.border_radius_50perc{
    border-radius: 50%;
}

.dashed_border_4{
    border: 1.5px solid rgba(152, 152, 152, 0.49) !important;
    border-style: dashed !important;
}

.text-decor-underline{
    text-decoration: underline;
}


/* Fonts */

.gotham-medium{
    font-family: gothammedium;
}

.gotham-black{
    font-family: gothamblack;
}

.gotham-bold{
    font-family: gothambold;
}

.gotham-light{
    font-family: gothamlight;
}
.gotham-con-bold{
    font-family: gotham-con-bold;
}

.uppercase{
    text-transform: uppercase;
}

.capitalize{
    text-transform: capitalize;
}

.font_94{
    font-size: clamp(3.5rem, 5vw + 1rem, 5.875rem);
}
.font_77{
    font-size: clamp(3rem, 4vw + 1rem, 4.813rem);
}
.font_49{
    font-size: clamp(2.5rem, 3vw + 1rem ,3.063rem);
}
.font_15{
    font-size: 15px;
}
.font_14 {
    font-size: 14px;
}
.font_14{
    font-size: 14px;
}
.font_26{
    font-size: 26px;
}
.font_21{
    font-size: 21px;
}
.font_41{
    font-size: 41px;
}
.font_31{
    font-size: 31px;
}
.letter_spacing_9{
    letter-spacing: 9px;
}
.semi-bold{
    font-weight: 600;
}
.bold{
    font-weight: bold;
}

.line_height_87{
    line-height: clamp(3.5rem, 4.635vw + 1rem, 5.438rem);
}

.line_height_50{
    line-height: clamp(2.5rem, 3vw + 1rem , 3.125rem);
}

.line_height_25{
    line-height: 25px;
}


/* Layout */
.wrapper{
    padding: 0 5%;
}
.wrapper-shrink{
    padding: 0 10%;
}

.padding-l-100{
    padding-left: 100px;
}
.padding-l-75{
    padding-left: 75px;
}
.padding-l-30{
    padding-left: 30px;
}

.padding-tb-100{
    padding-top: 100px;
    padding-bottom: 100px;
}
.margin-tb-100{
    margin-top: 100px;
    margin-bottom: 100px;
}
.margin-t-60{
    margin-top: 60px;
}

.cursor-pointer{
    cursor: pointer;
}

.dot{
    display: inline-block;
    background-color: var(--color-green);
    width: 5px;
    height: 5px;
    margin: 0 10px;
}

.banner-alignment{
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: flex-end;
}

.width-95{
    width: 95%;
    margin: 0 auto;
}
.width-75{
    width: 75%;
    margin: 0 auto;
}
.width-70{
    width: 70%;
    margin: 0 auto;
}
.width-70{
    width: 70%;
    margin: 0 auto;
}

@media only screen and (max-width: 1400px){
    .wrapper.shrink{
      padding: 0;
    }
    .wrapper-shrink{
        padding: 0;
    }
    .padding-l-100{
        padding-left: 10px;
    }
}
@media only screen and (max-width: 992px){
    .width-75{
        width: 100%;
    }
    .width-70{
        width: 100%;
    }
    .width-95{
        width: 100%;
        margin: 0 auto;
    }
    .padding-l-75{
        padding-left: 15px;
    }
    .padding-l-30{
        padding-left: 15px;
    }
    .padding-tb-100{
        padding-top: 50px;
        padding-bottom: 50px;
    }
    .padding-l-100{
        padding-left: .8rem;
    }
    .rm-padding{
        padding: 0 !important;
    }
    .rm-margin{
        margin: 0 !important;
    }
}

@media only screen and (min-width: 576px){
    .offset-small{
        margin-left: 11%;
    }
}
@media only screen and (max-width: 576px){
    .offset-small{
        margin-left: 5%;
    }
}
@media only screen and (max-width: 370px){
    .offset-small{
        margin-left: 2%;
    }
}


/* Buttons */
.primary_btn{
    padding: 20px 30px;
    background-image: var(--gradient-theme-primary);
    color: white;
    border-radius: 8px;
    border: none;
    margin-top: 28px;
    font-size: 14px;
}

.secondary_btn{
    padding: 22px 40px;
    background-color: white;
    color: var(--color-green);
    border-radius: 8px;
    border: none;
    font-size: 14px;
}
.danger_btn{
    padding: 20px 30px;
    background-image: var(--gradient-theme-danger)!important;
    color: white;
    border-radius: 8px;
    border: none;
    margin-top: 28px;
    font-size: 14px;
}

.btn-style-none{
    border: none;
    background-color: transparent;
    padding: 0;
    margin: 0;
}


.custom-radio-btn{
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding-left: 35px;
    margin-bottom: 12px;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    height: 25px;
}

.custom-radio-btn input {
	/*
	position: absolute;
    opacity: 0;
	*/
    cursor: pointer;
}

.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 25px;
    width: 25px;
    background-color: white;
    border-radius: 50%;
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}
.custom-radio-btn input:checked ~ .checkmark:after {
    display: block;
}

.custom-radio-btn .checkmark:after {
    top: 6px;
   left: 6px;
   width: 13px;
   height: 13px;
   border-radius: 50%;
   background: var(--color-green);
}



/* Swiper Slider */
.swiper-btn{
    background-size: 30%;
    background-repeat: no-repeat;
    background-position: center;
    width: 58px;
    height: 58px;
    border: 1px solid #C8C8C8;
    border-radius: 50%;
    color: var(--color-green);
    position: absolute;
    top: 25px;
}
/*
.swiper-button-next{
    background-image: url('/cart/images/arrow-right-solid.svg');
    right: 80px;
}

.swiper-button-prev{
    background-image: url('/cart/images/arrow-left-solid.svg');
    left: auto;
    right: 150px;
}
*/
.swiper-button-next::after, .swiper-button-prev::after{
    content: '';
}

@media only screen and (max-width: 576px){
    
    .swiper-btn{
        top: 150px;
        bottom: 10%;
    }

    .swiper-button-next{
        right: 40px;
    }
    
    .swiper-button-prev{
        left: auto;
        right: 110px;
    }

    /* Follow Us */
    .swiper-follow .swiper-btn{
        bottom: -15%;
    }
}


/* Breadcrumbs */
ul.breadcrumb {
    list-style: none;
}
ul.breadcrumb li {
    display: inline;
    color: white;
}
ul.breadcrumb li+li:before {
    padding: 8px;
    color: white;
    content: "/\00a0";
}
ul.breadcrumb li a {
    color: white;
    text-decoration: none;
}
ul.breadcrumb li a:hover {
    color: white;
    text-decoration: underline;
}


/* Forms */
.field-label::after{
    content: ' *';
    color: red;
}
.getproducts img {width:100%;}

#proteusjscartcontent a {display:unset!important;}
.products_view .product {
	padding:10px;
	text-align: center;
}
.primary_btn_div .primary_btn {margin-top:4px !important;}
#pb420banner {display:none;}
.swiper-btn {border: none;}


.browse .filters {
    padding: 20px;
    background-color: var(--color-box-backgrounds);
    border: 1px solid var(--color-border);
    border-radius: 8px;
    margin-bottom: 16px;
}
