@CHARSET "UTF-8";
/*======================================================================================================
*	VARIABLES
*======================================================================================================*/
:root {
    --color-black: #000000;
    --color-darkgrey: #333333;
    --color-mediumgrey: #a7a7a7;
	--color-lightgrey: #ededed;
	--color-white: #FFFFFF;

    --color-darkblue: #0052CC;
    --color-blue: #337ab7;
    --color-green: #3c763d;
    --color-lightgreen: #52B848;
    --color-lime: #39FF14;
    --color-orange: #FAA000;
    --color-red: #ff0000;
    --color-lightred: #FF5252;

	--font-heading: "Inter", sans-serif;
	--font-body: "Montserrat", sans-serif;
	--transition-style: .3s ease-in-out;
	--transition-style2: 0.25s ease;
}

/*======================================================================================================
*	PAGE STRUCTURE AND RESETS
*======================================================================================================*/
body {
    background:whitesmoke;
    font-size:16px;
    font-weight:400;
    color: var(--color-black);
    background: transparent;
    font-family: var(--font-body);
    padding-top:0px;
    -webkit-font-smoothing: antialiased;
}

body .page_wrap a, body header a, body footer a {
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}

h1, h2, h3, h4, h5, h6, p {
    padding:0;
    margin:0;
}

ul, ol {
    padding-left:0;
    margin-left:0;
    list-style:none;
    -webkit-margin-before: 0;
    -webkit-margin-after: 0;
    -webkit-margin-start: 0px;
    -webkit-margin-end: 0px;
    -webkit-padding-start: 0px;
}

/*======================================================================================================
*	COMMON ELEMENTS - IN ALPHABETICAL ORDER
*======================================================================================================*/

/*------------------------------
*	ACCESSIBILITY
*------------------------------*/
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap; /* added to prevent the text from wrapping */
    border: 0;
}

/*------------------------------
*	ALERTS
*------------------------------*/

/*Warning Box*/
.message_box {
    width: 600px;
    margin: 15px 0;
    padding: 15px;
    background: #337ab7;
    color: white;
    font-size: 14px;
}

.alert {
    margin-top: 10px;
    border-radius: 0;
}

@media (max-width: 575px) {
    .alert .mobile_block_with_margintop {
        display:block;
        margin-top:10px;
    }
}

/*------------------------------
*	BACKGROUND
*------------------------------*/
.background_white_floating {
    background:var(--color-white);
    border-radius: 0;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.10);
    transition: all var(--transition-style);
}
.background_white_floating:hover {
    box-shadow: 0 25px 60px rgba(0,0,0,0.14);
}

/*------------------------------
*	BUTTONS
*------------------------------*/
.btn, .btn i, .btn span {
    -webkit-transition: all ease-in-out .35s;
    -o-transition: all ease-in-out .35s;
    transition: all ease-in-out .35s;
}

/* V2s */
.btn_black_v2{
	background: linear-gradient(#000, #222);
    color: var(--color-white);
    padding: 18px 40px;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: all var(--transition-style2);
    box-shadow: 0 4px 18px rgba(0,0,0,0.18);
	width:auto;
}

.btn_black_v2:hover,
.btn_black_v2:focus-visible,
.btn_black_v2:active {
	color: var(--color-lightgrey) !important;
    transform: translateY(-2px);
    text-decoration:none;
}

.btn_black_v2:disabled {
    color: var(--color-lightgrey) !important;
}

.btn_black_v2.btn_small{
    padding:12px 30px;
}

.btn_white_v2{
	background: linear-gradient(var(--color-white), var(--color-lightgrey));
    color: var(--color-black);
    padding: 18px 40px;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: all var(--transition-style2);
    box-shadow: 0 4px 18px rgba(0,0,0,0.18);
	width:auto;
}

.btn_white_v2:hover,
.btn_white_v2:focus-visible,
.btn_white_v2:active {
	color: var(--color-black) !important;
    transform: translateY(-2px);
    text-decoration:none;
}

.btn_white_v2.btn_small {
    padding:12px 30px;
}

.btn_outline_v2{
	background: linear-gradient(var(--color-white), var(--color-lightgrey));
    color: var(--color-black);
    padding: 6px 10px;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 8px;
    border: 2px solid var(--color-darkgrey);
    cursor: pointer;
    transition: all var(--transition-style2);
	width:auto;
}

.btn_outline_v2:hover,
.btn_outline_v2:focus-visible,
.btn_outline_v2:active {
	color: var(--color-black) !important;
    transform: translateY(-2px);
    border: 2px solid var(--color-darkgrey);
    text-decoration:none;
}

.btn_red_v2{
	background: linear-gradient(#ff0000, #e70000);
    color: var(--color-white);
    padding: 12px 30px;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: all var(--transition-style2);
    box-shadow: 0 4px 18px rgba(0,0,0,0.18);
	width:auto;
}

.btn_red_v2:hover,
.btn_red_v2:focus-visible,
.btn_red_v2:active {
	color: var(--color-lightgrey) !important;
    transform: translateY(-2px);
    text-decoration:none;
}

.btn_red_v2:disabled {
    color: var(--color-lightgrey) !important;
}

@media (min-width:576px) and (max-width:767px) {
    .btn_black_v2, .btn_white_v2, .btn_red_v2 {
        padding:10px 20px;
    }
}
@media (max-width:575px) {
    .btn_black_v2, .btn_white_v2, .btn_red_v2 {
        padding:10px 20px;
    }
    .btn_black_v2.btn_small, .btn_white_v2.btn_small, .btn_red_v2.btn_small {
        padding:8px 16px;
    }

    .btn_black_v2, .btn_white_v2, .btn_red_v2, .btn_black_v2.btn_small, .btn_white_v2.btn_small, .btn_red_v2.btn_small {
        max-width: 100%;
        white-space: normal;
    }
}

/* V1s */

.btn_black {
    background: black;
    color: white;
    padding: 10px;
    font-size: 18px;
    font-weight: 300;
    -webkit-transition: all ease-in-out .35s;
    -o-transition: all ease-in-out .35s;
    transition: all ease-in-out .35s;
    border: 1px solid transparent;
    border-radius:0;
    width: 100%;
}

.btn_black:hover, .btn_black:active,.btn_black:focus {
    background: white;
    color:black;
    border:1px solid black;
}

.btn_black_small {
    background: black;
    color: white;
    padding: 8px;
    font-size: 16px;
    font-weight: 300;
    -webkit-transition: all ease-in-out .35s;
    -o-transition: all ease-in-out .35s;
    transition: all ease-in-out .35s;
    border: 1px solid transparent;
    border-radius:0;
    width: 100%;
}

.btn_black_small:hover, .btn_black_small:active,.btn_black_small:focus {
    background: white;
    color:black;
    border:1px solid black;
}
.btn_navy_small,.btn_navy_small:focus {
    background: navy;
    color: white;
    padding: 8px;
    font-size: 16px;
    font-weight: 300;
    -webkit-transition: all ease-in-out .35s;
    -o-transition: all ease-in-out .35s;
    transition: all ease-in-out .35s;
    border: 1px solid transparent;
    border-radius:0;
    width: 100%;
}

.btn_navy_small:hover, .btn_navy_small:active {
    background: white;
    color:black;
    border:1px solid navy;
}

.btn_red_small,.btn_red_small:focus {
    background: #e01d1d;
    color: white;
    padding: 8px;
    font-size: 16px;
    font-weight: 300;
    -webkit-transition: all ease-in-out .35s;
    -o-transition: all ease-in-out .35s;
    transition: all ease-in-out .35s;
    border: 1px solid transparent;
    border-radius:0;
    width: 100%;
}

.btn_red_small:hover, .btn_red_small:active {
    background: white;
    color: #e01d1d;
    border:1px solid #e01d1d;
}

.btn_white_small, .btn_white_small:focus, .btn_white_small:active {
    background:transparent;
    color:#333;
    padding:8px;
    font-size:16px;
    border-radius:0;
    -moz-box-shadow: inset 0 0 10px #000000;
    -webkit-box-shadow: inset 0 0 10px #000000;
    box-shadow: inset 0 0 10px #b1b1b1;
}

.btn_white_small:hover {
    outline: 5px auto -webkit-focus-ring-color;
    outline-offset: -2px;
}

.btn_white2, .btn_white2:focus, .btn_white2:active {
    background:#eee;
    color:grey;
    text-transform:uppercase;
    padding:8px 22px 7px;
    font-size:14px;
    letter-spacing:1px;
}

.btn_white2:hover {
    background: grey;
    color: #eee;
    text-transform:uppercase;
    padding:8px 22px 7px;
    font-size:14px;
    letter-spacing:1px;
}

.btn_blue, .btn_blue:focus, .btn_blue:active {
    height: 44px;
    color: white;
    background: #0089DF;
    padding: 10px 20px;
    border-radius: 0;
    font-size:16px;
    border:2px solid transparent;
    display: block;
}

.btn_blue:hover {
    background: #12527E;
    color: white;
    border:2px solid transparent;
}

.btn_blue_hover, .btn_blue_hover:focus, .btn_blue_hover:active {
    background-color:rgb(57, 117, 141);
    text-align:center;
    color:white;
    font-size:14px;
    padding:12px 0;
    border-radius:30px;
    display: block;
}

.btn_blue_hover i {
    -ms-transform: translate(40px, 0px);
    -webkit-transform: translate(40px, 0px);
    transform: translate(40px, 0px);
    opacity: 0;
    position:relative;
    top:-1px;
}

.btn_blue_hover:hover {
    text-decoration:none;
    color:white;
    background-color:#333;
}

.btn_blue_hover:hover i {
    -ms-transform: translate(0px, 0px);
    -webkit-transform: translate(0px, 0px);
    transform: translate(0px, 0px);
    opacity: 1;
}

.btn_blue_hover:hover span {
    margin-right:20px;
}

.btn_orange, .btn_orange:focus, .btn_orange:active {
    height: 44px;
    color: white;
    background: #ef9a00;
    padding: 10px 20px;
    border-radius: 0;
    font-size:16px;
    border:2px solid transparent;
    display: block;
}

.btn_orange:hover {
    background: #a06715;
    color: white;
    border:2px solid transparent;
}


.btn_transparent, .btn_transparent:focus, .btn_transparent:active {
    padding: 6px 30px;
    color: white;
    border: 1px solid lightgrey;
    border-radius: 0;
}

.btn_transparent:hover {
    color:#333;
    background:white
}

/*------------------------------
*	CARET
*------------------------------*/

.caret {
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 4px;
    vertical-align: middle;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 5px solid var(--color-black); /* caret color */
}

/*------------------------------
*	CLEARFIX
*------------------------------*/
.clearfix::after {
    content: "";
    display: table;
    clear: both;
}
/*------------------------------
*	COLORS
*------------------------------*/
.main_green {
    color:var(--color-lightgreen);
}

.main_orange {
    color:var(--color-orange);
}

.ft-red {
    color:var(--color-red);
}

/*------------------------------
*	DROPDOWNS
*------------------------------*/
.dropdown-menu {
    display: none;
    position: absolute;
    background: #fff;
    border: 1px solid #ccc;
    padding: 10px 10px;
    margin-top: 5px;
    z-index: 1000;
}

.dropdown-menu.show {
    display: block;
}
.dropdown-menu li{
    margin-bottom:5px;
}
.dropdown-menu li a{
    display:block;
    font-size:0.875rem;
    color:var(--color-black);
}
.dropdown-menu li a:hover{
    color:var(--color-darkgrey);
}

header .dropdown-menu{
    right:0;
    left:auto;
    left:initial;
}

/*------------------------------
*	FORMS AND ERRORS
*------------------------------*/
input.form-control[disabled] {
    background:transparent;
}

input.readonly_control {
    background:white !important;
    cursor:pointer !important;
}

.radio label, .checkbox label {
    line-height:22px;
    font-size:14px;
}

.form_error {
    border-color: red;
    -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
    box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
}

.form_ok {
    border-color: #3c763d;
    -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
    box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
}

.form_short {
    width:80%;
}

.form_vshort {
    width:50%;
}

.form_indent {
    padding-left:30px;
}

.list_phone li {
    float:left;
}

.list_phone li input {
    width:60px;
    display:inline-block;
    margin-left:2px;
    margin-right:2px;
}

.list_phone li.first {
    margin-right:8px;
}

.list_phone li.second {
    margin-right:4px;
}

.list_phone li.third {
    margin-right:8px;
}

.list_phone li.third input {
    width:80px;
}

.tip {
    font-size:12px;
    min-height:20px;
    line-height:20px;
    color:red;
    display:none;
}

.tip.fail {
    color:red;
    background:url('../images/cross.png') no-repeat center left;
}

.tip.great {
    color:#00CC00;
    background:url('../images/tick.png') no-repeat center left;
}

.tip.large-font {
    font-size:14px;
}

.tip_wrapper {
    padding-left:30px;
}

.text_center {
    text-align:center;
}

.error {
    color:red;
}
.error_on_black{
    color:var(--color-lightred);
}

.panelbody .error {
    text-align:center;
    margin-bottom:20px;
}

.error_box {
    padding-left:16px;
    background-color: #f2dede;
    padding: 10px;
    margin-bottom:20px;
}

.success {
    color:forestgreen;
}
.success_on_black {
    color:var(--color-lime);
}

.success_box {
    margin-bottom:20px;
    background:#dff0d8;
    padding:15px;
}

.success_middle {
    font-size:18px;
    text-align:center;
}

.must {
    color:red;
    font-family: Georgia, Helvetica, Arial, serif;
}

.mandatory {
    color:red;
    margin-bottom:8px;
    font-family: Georgia, Helvetica, Arial, serif;
}

.note {
    color:white;
    font-size:14px;
    font-weight:normal;
    font-style:italic;
    margin-bottom:8px;
}

.form_middle {
    line-height:38px;
}

.null_notify {
    background: #fcf8e3;
    padding: 20px;
    font-size: 16px;
}
.null_notify .button_wrap {
    margin-top:20px;
}

.warning_box {
    background: #fcf8e3;
    padding: 20px;
    font-size: 16px;
    margin-bottom:20px;
}

.label_offset {
    height:22px;
    margin-bottom:5px;
}

@media (max-width:991px) {

    .label_offset {
        display:none;
    }

}

@media (max-width:470px) {

    .list_phone li.fourth {
        margin-top:10px;
    }

}

/*------------------------------
*	IMAGES
*------------------------------*/

div.img_wrap {
    white-space:nowrap;
    text-align:center;
    margin:1em 0;
}

div.img_wrap span.img_helper {
    display:inline-block;
    height:100%;
    vertical-align:middle;
}

div.img_wrap img {
    vertical-align:middle;
    max-height:100%;
    max-width:100%;
}

/*------------------------------
*	LINKS
*------------------------------*/

/* Link */
a {
	text-decoration:none;
}

a:hover {
    text-decoration:underline;
}

a.underline {
    text-decoration:underline;
}

a:focus {
    text-decoration:none;
}

a:active {
    text-decoration:none;
}

/*------------------------------
*	LOADERS
*------------------------------*/
.loader {
    display:none;
    width:30px;
    margin-left:5px;
}


/*------------------------------
*	MARGINS
*------------------------------*/
.paddingBottom {
    padding-bottom:50px;
}

.paddingbottom0 {
    padding-bottom:0 !important;
}

.margintop5 {
    margin-top:5px !important;
}

.margintop10 {
    margin-top:10px !important;
}

.margintop20 {
    margin-top:20px !important;
}

.margintop30 {
    margin-top:30px !important;
}

.marginbottom10 {
    margin-bottom:10px !important;
}

.marginbottom20 {
    margin-bottom:20px !important;
}

.marginbottom30 {
    margin-bottom:30px !important;
}

.padLeftRight15px {
    padding-left:15px;
    padding-right:15px;
}

.margintopnone {
    margin-top:0;
    padding-top:0;
}

/*------------------------------
*	POPUPS
*------------------------------*/
.white-popup {
    position:relative;
}

.white-popup .close {
    background: transparent;
    border: 0;
    position: absolute;
    right: 10px;
    top:10px;
}

.white-popup.wide-popup {
    width:700px;
}

.white-popup.background-pattern-1 {
    background-color: #fafff5;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='199' viewBox='0 0 100 199'%3E%3Cg fill='%23bfc5f7' fill-opacity='0.4'%3E%3Cpath d='M0 199V0h1v1.99L100 199h-1.12L1 4.22V199H0zM100 2h-.12l-1-2H100v2z'%3E%3C/path%3E%3C/g%3E%3C/svg%3E");
}

.white-popup .form_coupon {
    text-align:center;
}

.white-popup .form_coupon input[type="email"] {
    max-width:500px;
    margin:5px auto;
}

.white-popup .coupon_table th, thead, tr th {
    font-size:0.875rem;
}
.white-popup .coupon_table th, thead, tr th.min_width_1{
    min-width:120px;
}
.white-popup .coupon_table_wrap .mobile_hint {
    display:none;
}

@media (max-width:575px) {
    .white-popup .coupon_table_wrap {
        max-width:100%;
        overflow-x:auto;
    }
    .white-popup .coupon_table_wrap .mobile_hint {
        display:block;
    }
}


/*------------------------------
*	RESPONSIVE
*------------------------------*/
.mobile_text {
    display:none;
}
.word-break {
    word-break: break-all;
}
@media (max-width:991px) {
    .desktop_text {
        display:none;
    }
    .mobile_text {
        display:initial;
    }
}

/*------------------------------
*	TYPOGRAPHY
*------------------------------*/
h1, h2, h3, h4, h5, h6 {
	font-family: var(--font-heading);
}

.ft_main_larger {
	font-size:2.75rem;
	font-weight:600;
}

.ft_main_large {
	font-size:2.5rem;
	font-weight:600;
}

.ft_main_medium {
	font-size:2rem;
	font-weight:600;
}

.ft_small_medium {
    font-size:1.5rem;
    font-weight:600;
}

.ft_sub_heading {
    font-size:1.25rem;
    font-weight:500;
}

.ft_small_heading {
    font-size:1rem;
    font-weight:500;
}

.ft_very_small_heading {
    font-size:0.875rem;
    font-weight:500;
}

.ft_price {
    font-size:1.75rem;
    font-weight:600;
}

.ft-large {
    font-size:1.25rem;
}

.ft-regular{
    font-size:1rem;
    font-weight:400;
}

.ft-small {
    font-size:0.875rem;
}

.ft-left{
    text-align:left;
}

.ft-center{
    text-align:center;
}

@media (min-width:576px) and (max-width:767px) {
    .ft_main_larger {
        font-size:2.25rem;
    }
    .ft_main_large {
        font-size:2rem;
    }
    .ft_main_medium {
        font-size:1.75rem;
    }
    .ft_price {
        font-size:1.5rem;
    }
}
@media (max-width:575px) {
    .ft_main_larger {
        font-size:2rem;
    }
    .ft_main_large {
        font-size:1.75rem;
    }
    .ft_main_medium {
        font-size:1.5rem;
    }
    .ft_price {
        font-size:1.25rem;
    }
}

/*------------------------------
*	TRANSITIONS
--------------------------------*/
.transition1 {
    -webkit-transition: all ease-in-out .35s;
    -o-transition: all ease-in-out .35s;
    transition: all ease-in-out .35s;
}

.transition2 {
    -webkit-transition: all linear 0.05s;
    -o-transition: all linear 0.05s;
    transition: all linear 0.05s;
}

.transition3 {
    -webkit-transition: all ease-in-out .2s;
    -o-transition: all ease-in-out .2s;
    transition: all ease-in-out .2s;
}

.transition4 {
    -webkit-transition: all ease-in-out 2s;
    -o-transition: all ease-in-out 2s;
    transition: all ease-in-out 2s;
}

/*======================================================================================================
*	HEADERS AND FOOTERS
*======================================================================================================*/
/* Header */
header .primary{
    background:var(--color-black);
}
header .primary .top {
	padding:5px 0;
}
header .primary .top .selector {
	margin-left: 10px;
	font-family:var(--font-heading);
    font-size: 0.875rem;
    width: auto;
}
header .primary .top .mobile_button {
    display:none;
}
header .primary .bottom {
	padding-bottom:10px;
}
header .primary .bottom .bottom_wrap {
	display:grid;
	grid-template-columns:250px 300px auto;
	align-items:center;
	gap:20px;
    position:relative;
}
header .primary .bottom .primary_logo img {
	width:250px;
}
header .primary .bottom .search_wrap {
    position:relative;
}
header .primary .bottom .search_wrap .search_group {
	position:relative;
}
header .primary .bottom .search_wrap .search_group input{
	width:100%;
	height:42px;
	line-height:42px;
}
header .primary .bottom .search_wrap .search_group button{
	position:absolute;
	right:5px;
	top:5px;
	width:34px;
	height:34px;
	background:transparent;
	border:none;
}
header .primary .bottom .search_wrap .search_dropdown {
    position: absolute;
    background: var(--color-white);
    z-index: 10;
    box-shadow: 0 0 3px rgba(0, 0, 0, 0.3);
}
header .primary .bottom .search_wrap .search_dropdown .grid {
    display:grid;
    grid-template-columns:300px auto;
    gap:0px;
}
header .primary .bottom .search_wrap .search_dropdown .results_list {
    background:var(--color-white);
}
header .primary .bottom .search_wrap .search_dropdown .results_list .each{
    font-size:0.875rem;
    padding:10px 20px 10px 10px;
    position:relative;
}
header .primary .bottom .search_wrap .search_dropdown .results_list .each:hover,
header .primary .bottom .search_wrap .search_dropdown .results_list .each.active{
    background:var(--color-lightgrey);
}
header .primary .bottom .search_wrap .search_dropdown .results_list .each.with_icon::after {
    content: "\203A"; /* › RIGHT SINGLE ANGLE QUOTE */
    font-size: 16px;
    color: var(--color-darkgrey);
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    transition: all var(--transition-style2);
}

header .primary .bottom .search_wrap .search_dropdown .results_list .each.with_icon:hover::after {
    transform: translate(4px, -50%);
    color: var(--color-black);
}
header .primary .bottom .search_wrap .search_dropdown .results_list a{
    font-size:0.875rem;
}
header .primary .bottom .search_wrap .search_dropdown .results_list a:hover{
    text-decoration:underline;
}
header .primary .bottom .search_wrap .search_dropdown .products_list_wrap{
    padding:10px;
    background:var(--color-lightgrey);
    display:none;
}
header .primary .bottom .search_wrap .search_dropdown .products_list_wrap.product{
    width:300px;
    display:block;
}
header .primary .bottom .search_wrap .search_dropdown .products_list_wrap.products{
    width:600px;
    display:block;
}
header .primary .bottom .search_wrap .search_dropdown .products_list_wrap .title{
    margin-bottom:10px;
}
header .primary .bottom .search_wrap .search_dropdown .products_list{
    display:grid;
    grid-template-columns:1fr 1fr 1fr;
    gap:15px;
    align-items:start;
}
header .primary .bottom .search_wrap .search_dropdown .products_list_wrap.product .products_list{
    grid-template-columns:1fr;
}
header .primary .bottom .search_wrap .search_dropdown .products_list .each{
    width:100%;
    text-align: center;
}
header .primary .bottom .search_wrap .search_dropdown .products_list .each .image{
    width:100%;
    height:150px;
    border:2px solid var(--color-mediumgrey);
    background:var(--color-white);
    margin-bottom:5px;
    text-align:center;
    display:flex;
    align-items:center;
    justify-content:center;
}
header .primary .bottom .search_wrap .search_dropdown .products_list .each .image img{
    max-width:90%;
    max-height:90%;
    object-fit:contain;
}
header .primary .bottom .search_wrap .search_dropdown .products_list .each a{
    font-size:0.875rem;
    color:var(--color-darkgrey);
    font-weight:500;
}
header .primary .bottom .search_wrap .search_dropdown .products_list .each a.btn {
    display:inline-block;
    margin:10px auto 0;
    color:var(--color-white);
}
header .primary .bottom .search_wrap .search_dropdown .products_list .each a:hover{
    color:var(--color-black);
    text-decoration:underline;
}
header .primary .bottom .search_wrap .search_dropdown .products_list .each a.btn:hover{
    color:var(--color-white);
    text-decoration:none;
}
header .primary .bottom .search_wrap .search_dropdown .products_list .each a:hover .image{
    box-shadow:0 0 3px rgba(0,0,0,0.3);
}
header .primary .bottom .search_wrap .search_dropdown .products_list .each .name{
    text-align:center;
}
header .primary .bottom .search_wrap .search_dropdown .products_list_wrap .link_wrap {
    margin-top:10px;
    text-align:right;
}
header .primary .bottom .search_wrap .search_dropdown .products_list_wrap .link_wrap a {
    font-size:0.875rem;
    font-weight:600;
}

header .primary .bottom .right_side {
	display:grid;
	grid-auto-flow:column;
	gap:30px;
	align-items:center;
	justify-content: end;
}
header .primary .bottom .right_side .mobile_search_icon {
    display:none;
}
header .primary .bottom .right_side a.first_level {
	color:var(--color-white);
	font-family:var(--font-heading);
	font-weight:600;
	display:grid;
	grid-auto-flow:column;
	gap:10px;
	align-items:center;
	transition:all var(--transition-style);
}
header .primary .bottom .right_side a.first_level:hover {
	color:var(--color-lightgrey);
	text-decoration:none;
}
header .primary .bottom .right_side .shopping_cart_wrap {
    position:relative;
}
header .primary .bottom .right_side a.shopping_cart {
    position:relative;
}
header .primary .bottom .right_side a.shopping_cart .count {
    position: absolute;
    left: -12px;
    top: -18px;
    background: red;
    width: 22px;
    height: 22px;
    line-height: 22px;
    text-align: center;
    border-radius: 50%;
    font-size: 0.875rem;
}
header .primary .bottom .right_side .shopping_cart_wrap .shopping_cart_dropdown {
    display:none;
    position: absolute;
    right: 0;
    padding-top:20px;
    width: 400px;
    z-index: 101;
    top: 20px;
}
header .primary .bottom .right_side .shopping_cart_wrap .shopping_cart_dropdown.shown {
    display:block;
}
header .primary .bottom .right_side .shopping_cart_wrap .shopping_cart_dropdown.smaller{
    width:300px;
}
header .primary .bottom .right_side .shopping_cart_wrap .shopping_cart_dropdown .inner{
    background: var(--color-white);
    box-shadow: 0 0 3px rgba(0, 0, 0, 0.3);
    width:100%;
    padding: 15px;
}
header .primary .bottom .right_side .shopping_cart_wrap:hover .shopping_cart_dropdown {
    display:block;
}
header .primary .bottom .right_side .shopping_cart_wrap .shopping_cart_dropdown .title {
    display:grid;
    grid-template-columns:auto auto;
    align-items:center;
    justify-content: space-between;
}
header .primary .bottom .right_side .shopping_cart_wrap .shopping_cart_dropdown .title.centered{
    grid-template-columns: auto;
    justify-content: center;
}
header .primary .bottom .right_side .shopping_cart_wrap .shopping_cart_dropdown .title .close{
    display:none;
}
header .primary .bottom .right_side .shopping_cart_wrap .shopping_cart_dropdown .empty{
    padding-top:10px;
    text-align:center;
}
header .primary .bottom .right_side .shopping_cart_wrap .shopping_cart_dropdown .empty .image{
    padding: 15px 0 30px;
    color: var(--color-mediumgrey);
}
header .primary .bottom .right_side .shopping_cart_wrap .shopping_cart_dropdown .info {
    font-size:0.875rem;
    margin-bottom:10px;
    padding-bottom:10px;
    border-bottom:1px solid var(--color-lightgrey);
}
header .primary .bottom .right_side .shopping_cart_wrap .shopping_cart_dropdown .items_list {
    max-height: 405px;
    overflow-y: auto;
}
header .primary .bottom .right_side .shopping_cart_wrap .shopping_cart_dropdown .items_list .each{
    padding-bottom:15px;
    margin-bottom:15px;
    border-bottom:1px solid var(--color-lightgrey);
    display:grid;
    grid-template-columns:80px auto;
    gap:10px;
}
header .primary .bottom .right_side .shopping_cart_wrap .shopping_cart_dropdown .items_list .each .image{
    width:80px;
    height:80px;
    border:1px solid var(--color-lightgrey);
    text-align:center;
    display:flex;
    align-items:center;
    justify-content:center;
}
header .primary .bottom .right_side .shopping_cart_wrap .shopping_cart_dropdown .items_list .each .image img{
    max-width:100%;
    max-height:100%;
    object-fit:contain;
}
header .primary .bottom .right_side .shopping_cart_wrap .shopping_cart_dropdown .items_list .each .details {
    font-size:0.875rem;
}
header .primary .bottom .right_side .shopping_cart_wrap .shopping_cart_dropdown .items_list .each .details .name{
    margin-bottom:10px;
}
header .primary .bottom .right_side .shopping_cart_wrap .shopping_cart_dropdown .items_list .each .details .quantity input{
    width:70px;
    display:inline;
}
header .primary .bottom .right_side .shopping_cart_wrap .shopping_cart_dropdown .items_list .each .details .quantity .remove_item{
    color:red;
    position: relative;
    top: -2px;
    left: 30px;
}

header .secondary{
	background: var(--color-lightgrey);
}
header .secondary .menu {
	display:grid;
	grid-auto-flow:column;
	gap:20px;
	align-items:center;
	justify-content: start;
    position:relative;
}
header .secondary .menu a {
	display:block;
	padding:15px;
	font-weight:600;
	font-family:var(--font-heading);
	color:var(--color-black);
	transition:all var(--transition-style);
}
header .secondary .menu a:hover,
header .secondary .menu a.active {
	color:var(--color-white);
	background:var(--color-black);
	text-decoration:none;
}

header .secondary .menu .category_dropdown {
    position:absolute;
    top:54px;
    background:var(--color-lightgrey);
    padding: 5px 15px 15px;
    z-index: 10;
    display:none;
}
header .secondary .menu .category_dropdown.shown{
    display:block;
}
header .secondary .menu .category_dropdown ul:not(.first){
    padding-left:15px;
}
header .secondary .menu .category_dropdown a{
    padding:3px 0px;
    font-weight:400;
}
header .secondary .menu .category_dropdown a:hover{
    background:transparent;
    text-decoration:underline;
    color:var(--color-black);
}

.notification_bar {
    display:none;
    padding: 8px 60px;
    background: rgb(255, 128, 0);
    position: relative;
}

.notification_bar.shown {
    display:block;
}

.notification_bar p {
    text-align: center;
}

.notification_bar .close {
    position: absolute;
    right: 30px;
    top: 15px;
    opacity: 0.6;
}

.notification_bar .close:hover {
    opacity:1;
}

.staging_notice {
    padding: 8px 60px;
    background: rgb(255, 128, 0);
    position: fixed;
    color:white;
    text-align:center;
    font-size:20px;
}

.coupon_notification_bar {
    background: greenyellow;
    text-align: center;
    padding: 10px;
    font-weight:500;
}

#hamburger {
    display:none;
    width: 32px;
    height: 32px;
    position: relative;
    top: 2px;
    z-index: 1002;
    cursor:pointer;
}

#hamburger span {
    width: 100%;
    height: 2px;
    border-bottom: 3px solid white;
    display: block;
}

#hamburger.opened span {
    border-bottom:3px solid white;
}

#mobile_menu {
    width:300px;
    position:fixed;
    height:100%;
    background:white;
    top: 0;
    z-index: 1000;
    left:-300px;
}

#mobile_menu.opened {
    left:0;
}

#mobile_menu .menu{
    background:var(--color-black);
    height:100%;
    padding:15px;
    overflow-y: auto;
}

#mobile_menu .menu a {
    display:block;
    padding:5px 10px;
    color:var(--color-white);
    font-weight:600;
}

#mobile_menu .menu .category_dropdown {
    display:none;
}

#mobile_menu .menu .category_dropdown.shown{
    display:block;
}

#mobile_menu .menu .category_dropdown ul {
    padding-left:15px;
}

#mobile_cover {
    display:none;
    position:fixed;
    width:100%;
    height:100%;
    z-index:999;
    background:rgba(0,0,0,0.7);
    top:0;
}

#mobile_cover.opened {
    display:block;
}

/* Footer */
footer {
    background:var(--color-black);
    padding:30px 0;
}

footer p {
    color:var(--color-white);
}

footer a {
    color:var(--color-white);
}

footer .top_footer {
    padding:30px;
}

footer .top_row li.first {
    font-weight:bold;
    margin-bottom:10px;
    text-transform:uppercase;
}

footer .bottom_footer {
    padding:10px 0px;
}

footer .bottom_footer .column_top {
    padding-top:15px;
}

footer .bottom_footer .image_wrap {
    margin-bottom:13px;
}

footer .bottom_footer .image_wrap img {
    width:200px;
}

footer .bottom_footer .title {
    margin-bottom:20px;
    color:var(--color-white);
}

footer .bottom_footer .credit_cards img {
    height:40px;
}

footer .bottom_footer .trust {
    margin-bottom:30px;
    margin-top:30px;
}

footer ul.social_footer {
    margin-bottom:10px;
}

footer ul.social_footer li {
    float:left;
    margin-right:10px;
}

footer ul.social_footer li img {
    width:25px;
    filter: invert(1);
}

footer .last_row .copyright {
    line-height: 30px;
    text-align:center;
    font-size:12px;
    margin-top:30px;
}

@media (min-width:992px) and (max-width:1199px) {

    header .top .primary_logo img {
        margin-top:10px;
    }

    header .top .username {
        margin-top:24px;
    }


    footer ul.social_footer {
        padding-left:0px;
    }

    footer .column {
        margin-bottom:10px;
    }

    footer .bottom_footer .copyright {
        text-align:left;
    }

    footer .bottom_footer .credit_cards {
        text-align:left;
    }

}

@media (max-width:991px) {

    #hamburger {
        display: grid;
        grid-template-rows: 1fr 1fr 1fr;
        align-items: center;
    }

    header .primary .top .top_grid {
        display:grid;
        grid-template-columns: auto auto;
        justify-content:space-between;
    }
    header .primary .top .selector {
        padding:1px 30px 1px 10px;
    }
    header .secondary {
        display:none;
    }
    header .primary .bottom {
        padding-top:2px;
    }
    header .primary .bottom .bottom_wrap {
        grid-template-columns:200px auto;
    }
    header .primary .bottom .primary_logo img {
        width:200px;
    }
    header .primary .bottom .search_wrap {
        display:none;
    }
    header .primary .bottom .search_wrap.active{
        display: block;
        position: absolute;
        width: 100%;
        z-index: 10000;
    }
    header .primary .bottom .search_wrap .search_dropdown .grid {
        grid-template-columns:300px 1fr;
    }
    header .primary .bottom .search_wrap .search_dropdown .products_list_wrap.products {
        width:100%;
    }
    header .primary .bottom .search_wrap .search_dropdown .products_list_wrap.product {
        width:396px;
    }
    header .primary .bottom .search_wrap .search_dropdown .products_list {
        gap:10px;
    }
    header .primary .bottom .right_side .username a.first_level .greeting{
        display:none;
    }
    header .primary .bottom .right_side .shopping_cart_wrap a.first_level .text {
        display:none;
    }
    header .primary .bottom .right_side .mobile_search_icon {
        display:block;
    }
    header .primary .bottom .right_side a.shopping_cart .count{
        left:-16px;
        top:-10px;
    }
    header .primary .bottom .right_side .shopping_cart_wrap .shopping_cart_dropdown {
        display:none !important;
    }
    header .primary .bottom .right_side .shopping_cart_wrap .shopping_cart_dropdown.shown {
        display:block !important;
    }

    footer.in_order_panel, footer.in_item_list, footer.in_guest_checkout {
        display:none;
    }

    footer ul.social_footer {
        padding-left:0px;
    }

    footer .column {
        margin-bottom:10px;
    }

    footer .bottom_footer .copyright {
        text-align:left;
    }

    footer .bottom_footer .credit_cards {
        text-align:left;
    }

}

@media (max-width:767px) {
    header .primary .bottom .bottom_wrap {
        grid-template-columns: 150px auto;
    }
    header .primary .bottom .primary_logo img {
        width: 150px;
    }
    header .primary .bottom .search_wrap .search_dropdown .grid {
        grid-template-columns: 250px 1fr;
    }
    header .primary .bottom .search_wrap .search_dropdown .products_list {
        grid-template-columns:1fr;
    }
    header .primary .bottom .search_wrap .search_dropdown .products_list_wrap.product {
        width:100%;
    }
    header .primary .bottom .right_side .shopping_cart_wrap .shopping_cart_dropdown{
        position:fixed;
        left:0;
        right:auto;
        right:initial;
        width: 100vw;
        height:100vh;
        top:0;
        padding-top:0;
        z-index: 10003;
    }
    header .primary .bottom .right_side .shopping_cart_wrap .shopping_cart_dropdown .inner{
        height:100%;
    }
    header .primary .bottom .right_side .shopping_cart_wrap .shopping_cart_dropdown .items_list {
        max-height: calc(100% - 200px);
    }
    header .primary .bottom .right_side .shopping_cart_wrap .shopping_cart_dropdown .title {
        grid-template-columns: 1fr 70px 24px;
    }
    header .primary .bottom .right_side .shopping_cart_wrap .shopping_cart_dropdown .title .close{
        display:block;
        color:var(--color-red);
    }

    footer ul.social_footer {
        padding-left:0px;
    }

    footer .column {
        margin-bottom:10px;
    }

    footer .bottom_footer .copyright {
        text-align:left;
    }

    footer .bottom_footer .credit_cards {
        text-align:left;
    }

}

@media (max-width: 575px){
    header .primary .bottom .search_wrap .search_dropdown .grid{
        grid-template-columns:180px 1fr;
    }
}

@media print {

    #header {
        display:none;
    }

    #header_top {
        display:none;
    }

    .header {
        display:none;
    }

    #footer {
        display:none;
    }

    #footer_top {
        display:none;
    }

    #footer_bottom {
        display:none;
    }

    header {
        display:none;
    }

    footer {
        display:none;
    }

    #mobile_menu {
        display:none;
    }

    #hamburger {
        display:none;
    }

}

/* WORDPRESS RESET */
#footer-sidebar {
    color:transparent !important;
}

#footer-sidebar #footer-inner-wrapper {
    background:white !important;
}

#header_top.navbar-default .navbar-nav.rightNav>li>a.btn.blog_custom {
    border-radius:0;
}

#footer-sidebar ul {
    list-style:none;
    margin:0;
}

#footer-sidebar ul li {
    margin:0;
    font-size:16px;
    list-style:none;
}

#footer_top p.footer_title.blog_custom {
    padding-left:15px;
}

.navbar-default .navbar-collapse, .navbar-default .navbar-form.blog_custom {
    margin-top:0;
}

/*------------------------------
*	RESPONSIVE UTILITIES
*------------------------------*/
/* XS Screen CSS Reset */
@media (max-width: 767px) {

    .xs-font-14 {
        font-size:14px !important;
    }

    .xs-font-16 {
        font-size:16px !important;
    }

    .xs-font-18 {
        font-size:18px !important;
    }

    .xs-font-20 {
        font-size:20px !important;
    }

    .xs-font-22 {
        font-size:22px !important;
    }

    .xs-font-24 {
        font-size:24px !important;
    }

    .xs-font-26 {
        font-size:26px !important;
    }

    .xs-font-28 {
        font-size:28px !important;
    }

    .xs-font-30 {
        font-size:30px !important;
    }

    .xs-font-32 {
        font-size:32px !important;
    }


    .xs-padding-reset {
        padding:0 !important;
    }

    .xs-paddingTop-reset {
        padding-top:0 !important;
    }

    .xs-paddingLeft-reset {
        padding-left:0 !important;
    }

    .xs-margin-reset {
        margin:0 !important;
    }

    .xs-marginLeft-reset {
        margin-left:0 !important;
    }

    .xs-marginTop-reset {
        margin-top:0 !important;
    }


    .xs-width-auto {
        width:auto !important;
    }

    .xs-height-auto {
        height:auto !important;
    }


    .xs-float-reset {
        float:none !important;
    }

}

/*------------------------------
*	PAGING
*------------------------------*/
div.paging {
    width:100%;
    height:34px;
    font-size:0.9em;
    font-weight:normal;
    font-family: Arial, Helvetica, sans-serif;
    padding:20px 0 3px;
}

.paging span {
    width:140px;
    height:24px;
    line-height:24px;
    display:block;
    float:left;
}

.paging ul {
    width:600px;
    float:right;
    -webkit-margin-before: 0;
    -webkit-margin-after: 0;
}

.paging ul li {
    width:34px;
    height:34px;
    line-height:34px;
    text-align:center;
    float: right;
    list-style: none;
    border:1px solid lightgrey;
    border-radius: 2px;
    margin: 0 1px;
}

.paging ul li:hover {
}

.paging ul li.page_nostyle {
    border:none;
}

.paging ul li.page_nostyle:hover {
    background-color: transparent;
    color: black;
}

.paging ul li.current_page {
    color:white;
    background-color:grey;
}

.paging ul li a {
    display:inline-block;
    width:100%;
    height:100%;
    text-decoration: none;
    color:black;
    font-weight:bold;
}

.paging ul li:hover a {
    color:white;
    background:lightgray;
}

