/* @font-face {
    font-family: Nexa;
    src: url("../fonts/NexaRegular.woff") format("woff");
    font-display: swap;
}

@font-face {
    font-family: NexaThin;
    src: url("../fonts/NexaThin.woff") format("woff");
    font-display: swap;
}

@font-face {
    font-family: NexaBold;
    src: url("../fonts/NexaBold.woff") format("woff");
    font-display: swap;
}

@font-face {
    font-family: Helvetica;
    src: url("../fonts/Helvetica.ttf") format("ttf");
    font-display: swap;
}

@font-face {
    font-family: Helvetica Neue;
    src: url("../fonts/HelveticaNeue.ttf") format("ttf");
    font-display: swap;
}

@font-face {
    font-family: LatoRegular;
    src: url("../fonts/LatoRegular.ttf");
    font-display: swap;
}

@font-face {
    font-family: LatoBold;
    src: url("../fonts/LatoBold.ttf");
    font-display: swap;
} */

@font-face {
    font-family: 'Roboto';
    src: url("../fonts/Roboto.ttf");
    font-display: swap;
}

.header_page {
    position: relative;
    width: 100%;
}

.top_header {
    height: 35px;
    background: #05070ed6;
    display: flex;
    justify-content: center;
}

.top_header_content {
    width: 1180px;
    display: flex;
    justify-content: flex-end;
}

.top_header_item {
    display: flex;
    align-items: center;
    margin-left: 39px;
}

.top_header_item:first-child img {
    width: 17px;
}

.top_header_item:last-child img {
    width: 24px;
}

.top_header_item a {
    color: white;
    text-decoration: none;
    font-size: 13px;
    line-height: 0;
    margin-left: 4px;
}

.top_header_item a:hover {
    color: white!important;
}

.header_main {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    ;
    justify-content: space-between;
    ;
    align-content: center;
    -webkit-align-items: center;
    align-items: center;
    list-style: none;
    padding: 0 15px;
}

.header_main .header_logo:last-of-type {
    padding-bottom: 5px;
}

.header_logo {
    padding-top: 5px;
}

.header_logo img {
    display: block;
    height: 60px;
    object-fit: contain;
}

.header_nav {
    -webkit-box-flex: 1;
    -moz-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
    font-size: 14px;
    padding-top: 15px;
    padding-right: 10px;
    list-style: none;
    padding: 1em 0;
}

.header_nav_list {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    align-content: flex-end;
    -webkit-align-items: flex-end;
    align-items: flex-end;
    list-style: none;
    margin-bottom: 0;
}

.header_nav_list>li {
    padding: 0 5px;
    position: relative;
}

.header_nav_list>li>a {
    position: relative;
    display: block;
    color: #5d5d5d;
    text-decoration: none;
    padding: 12px 15px;
    border-top-left-radius: 2px;
    white-space: nowrap;
    border-top-right-radius: 2px;
    border-bottom: 2px solid transparent;
}

.header_dropdown_link {
    padding-right: 30px !important;
    position: relative;
}

.header_dropdown_link::after {
    content: "";
    position: absolute;
    right: 13px;
    top: 50%;
    margin-top: -2px;
    display: block;
    width: 0;
    height: 0;
    border-top: 4px dashed;
    border-right: 4px solid transparent;
    border-left: 4px solid transparent;
}

.header_nav_list>li>a:hover,
.header_mobile_dropdown_link.active,
.header_nav_list>li>ul>li>a:hover,
.header_current_page,
.header_nav_list>li>a.active {
    color: #379fe8 !important;
    background-color: #eee;
}

.header_current_page {
    background: none !important;
}

.header_nav_list>li>a:hover::before,
.header_mobile_dropdown_link.active::before,
.header_nav_list>li>ul>li>a:hover::before,
.header_current_page::before,
.header_nav_list>li>a.active::before {
    content: "";
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: block;
    width: 100%;
    height: 2px;
    background-color: #379fe8;
}

.header_mobile_dropdown_link.active>i {
    -webkit-transform: rotate(90deg);
    transform: rotate(180deg);
}

.header_nav_list>li>ul {
    display: none;
    position: absolute;
    top: 100%;
    margin-top: 2px;
    right: -5px;
    list-style: none;
    z-index: 100;
    background-color: #fff;
    border: 1px solid rgba(0, 0, 0, .15);
    min-width: 190px;
    padding: 8px 0;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 4px;
    -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, .175);
    box-shadow: 0 6px 12px rgba(0, 0, 0, .175);
}

.header_nav_list>li>ul>li>a {
    display: block;
    position: relative;
    text-decoration: none;
    color: #5d5d5d;
    padding: 13px 20px 13px 20px;
    white-space: nowrap;
}

.header_nav_mobile_toggle {
    width: 45px;
    padding-top: 10px;
    display: none;
}

.header_nav_mobile_toggle_button {
    display: block;
    border: 1px solid #283477;
    height: 35px;
    width: 45px;
    border-radius: 4px;
    position: relative;
}

.header_nav_mobile_toggle_button>div {
    -webkit-transition: all 0.25s ease-in-out;
    -moz-transition: all 0.25s ease-in-out;
    -o-transition: all 0.25s ease-in-out;
    transition: all 0.25s ease-in-out;
}

.header_nav_mobile_toggle_button>div:nth-child(1):empty {
    display: block;
    width: 22px;
    height: 2px;
    position: absolute;
    left: 50%;
    top: 9px;
    margin-left: -11px;
    background: #283477;
}

.header_nav_mobile_toggle_button>div:nth-child(2):empty {
    display: block;
    width: 22px;
    height: 2px;
    position: absolute;
    left: 50%;
    top: 50%;
    margin-top: -1px;
    margin-left: -11px;
    background: #283477;
}

.header_nav_mobile_toggle_button>div:nth-child(3):empty {
    display: block;
    width: 22px;
    height: 2px;
    position: absolute;
    left: 50%;
    bottom: 8px;
    margin-left: -11px;
    background: #283477;
}

.header_nav_mobile_toggle_button.active>div:nth-child(2):empty {
    opacity: 0;
}

.header_nav_mobile_toggle_button.active>div:nth-child(1):empty {
    -webkit-transform: rotate(-45deg) translate(-5px, 5px);
    transform: rotate(-45deg) translate(-5px, 5px);
}

.header_nav_mobile_toggle_button.active>div:nth-child(3):empty {
    -webkit-transform: rotate(45deg) translate(-5px, -5px);
    transform: rotate(45deg) translate(-5px, -5px);
}

.header_card {
    min-width: 180px;
    max-width: 180px;
    position: relative;
}

.header_card_link {
    display: block;
    color: #5d5d5d;
    overflow: hidden;
    background-color: #f0f0f0;
    border-radius: 4px;
    min-height: 50px;
    text-decoration: none;
    padding: 17px 0 0 0;
    text-align: center;
    /* font-size: 16px; */
    position: relative;
}

.header_card_link .header_cart_loading {
    background-color: #f0f0f0;
}

.header_card_link:active,
.header_card_link.active {
    box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125);
}

.header_card_link i {
    font-size: 13px;
    margin: 0 5px 0 0;
}

.header_card_dropdown {
    display: none;
    overflow: hidden;
    position: absolute;
    z-index: 100;
    top: 100%;
    margin-top: 12px;
    right: 0;
    list-style: none;
    background: white;
    width: 320px;
    font-size: 14px;
    border: 1px solid rgba(0, 0, 0, .15);
    border-radius: 4px;
}

.header_card_empty a {
    display: none;
    text-decoration: none;
    padding: 7px 20px 7px 20px;
    text-align: center;
    font-weight: 400;
    line-height: 1.5;
    font-size: 16px;
    color: #333;
}

.header_card_empty a {
    display: none;
    text-decoration: none;
    padding: 7px 20px 7px 20px;
    text-align: center;
    font-weight: 400;
    line-height: 1.5;
    font-size: 16px;
    color: #333;
}

.header_card_empty a:hover {
    background: rgb(245, 245, 245);
}

.header_card_item {
    position: relative;
    border-bottom: 1px solid rgba(0, 0, 0, .15);
}

.header_card_item_link {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    padding: 15px;
    text-decoration: none;
    color: #333;
}

.header_card_item_link_content {
    padding: 0 20px 0 10px;
}

.header_card_item_link_content h3 {
    color: #76bf42;
    font-size: 14px!important;
    font-weight: 500!important;
    margin-bottom: 0!important;
    margin-top: 0!important;
    /* padding-bottom: 5px; */
}

.header_card_item_remove {
    position: absolute;
    right: 10px;
    top: 10px;
    z-index: 10;
    color: #8fc55b;
    border-radius: 100px;
    display: block;
    width: 20px;
    height: 20px;
    font-size: 15px;
    text-align: center;
    padding: 3px 0 0 0.3px;
    line-height: 1.0;
}

.header_card_item_remove:hover {
    color: #5e9a34;
}

.header_card_item_link img {
    width: 50px;
    height: auto;
    align-self: flex-start;
}

.header_card_nav {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex!important;
}

.header_card_nav>a {
    display: none;
    -webkit-box-flex: 1;
    -moz-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
    max-width: 50%;
    color: #333;
    text-decoration: none;
    text-align: center;
    padding: 10px 0 10px 0;
    font-size: 14px;
}

.header_card_nav>a:hover {
    background-color: #f5f5f5;
}

.header_search:empty {
    margin-bottom: 6px;
}

.header_search input:first-of-type {
    float: left;
}

.header_search input[type=text] {
    position: relative;
    z-index: 20;
    padding: 0px 12px 0 12px;
    height: 35px;
    border: none;
    border-right: 0;
    background-color: rgba(0, 0, 0, 0);
    color: #555;
    width: 490px;
    line-height: 1.5;
    font-size: 14px;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
}

.header_search input[type=text]::-ms-clear {
    display: none;
}

.header_cart_loading {
    display: block;
    cursor: default;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 100;
    width: 100%;
    height: 100%;
    text-align: center;
    background-color: rgba(255, 255, 255, 0.5);
}

.header_cart_loading i {
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -9px;
    margin-left: -9px;
    font-size: 20px;
    color: #379fe8;
}

.header_search input[type=text]:focus {
    border-color: #66afe9;
    outline: none;
}

.header_search_submit {
    position: relative;
    padding: 0px 12px 0 12px;
    border: none;
    height: 35px;
    font-size: 16px;
    cursor: pointer;
    background: #DDDDDD;
    border-bottom-right-radius: 4px;
    border-top-right-radius: 4px;
    overflow: visible;
}

.header_search_submit:focus {
    outline: none;
}

.header_search_submit:active,
.header_card_empty a:active,
.header_card_nav>a:active {
    box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125);
}

.centered_block {
    margin: 0 auto;
    display: table;
}

#header_search_block {
    position: relative;
    border: 1px solid #ccc;
    border-bottom-right-radius: 4px;
    border-top-right-radius: 4px;
    -webkit-transition: border-color ease-in-out .15s, -webkit-box-shadow ease-in-out .15s;
    -o-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
    transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
}

#header_search_block::before {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 5px;
    background: #DDDDDD;
    border-bottom-right-radius: 4px;
    border-top-right-radius: 4px;  
    font-family: "Font Awesome 5 Free";

    
    
     /* border-color: #66afe9;
    content: "\f110";
    font-weight: 900;
    font-family: "Font Awesome 5 Free";
    -webkit-animation: fa-spin 2s linear infinite;
    animation: fa-spin 2s linear infinite;
    animation-duration: 2s;
    animation-timing-function: linear;
    animation-delay: 0s;
    animation-iteration-count: infinite;
    animation-direction: normal;
    animation-fill-mode: none;
    animation-play-state: running;
    animation-name: fa-spin; */
}

#header_search_block.focused {   
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 8px rgba(102, 175, 233, .6);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 8px rgba(102, 175, 233, .6);
}

#header_search_block.has_result,
#header_search_block.has_result::before {
    border-bottom-right-radius: 0;
}

#header_search_block>.header_search_submit::before {
    font-family: "Font Awesome 5 free";
    font-weight: 900;   
    content: "";
    font-size: 18px;
    color: #379fe8;
    position: absolute;
    right: 100%;
    z-index: -1;
    top: 50%;
    margin: -10px 10px 0 0;
    animation: fa-spin 2s infinite linear;
    opacity: 0;
    /* -webkit-transition: opacity ease-in-out .15s; */
    /* -o-transition: opacity ease-in-out .15s; */
    transition: opacity ease-in-out .15s;
}

#header_search_block.searching>.header_search_submit::before {
    opacity: 1;
}

#header_search_block_results:empty {
    display: none !important;
}

#header_search_block_results {
    position: absolute;
    z-index: 50;
    top: 100%;
    list-style: none;
    left: -1px;
    right: -1px;
    background: white;
    border: 1px solid #ccc;
    border-top: 0;
    margin-top: 1px;
    border-bottom-right-radius: 4px;
    border-bottom-left-radius: 4px;
    overflow: hidden;
}

#header_search_block_results>li {
    border-bottom: 1px solid #ccc;
}

#header_search_block_results>li:last-child {
    border-bottom: none;
}

#header_search_block_results>li>a {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    -webkit-align-items: center;
    align-items: center;
}

#header_search_block_results>li>a {
    color: #337ab7;
    text-decoration: none;
    font-size: 14px;
}

#header_search_block_results>li>a>.product_image {
    -webkit-box-flex: 1 1 0;
    -moz-box-flex: 1 1 0;
    -webkit-flex: 1 1 0;
    -ms-flex: 1 1 0;
    flex: 1 1 0;
    max-width: 60px;
    padding: 8px;
}

#header_search_block_results>li>a>.product_image img {
    min-height: 40px;
}

#header_search_block_results>li>a>.product_name {
    -webkit-box-flex: 1;
    -moz-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
    padding: 10px;
    white-space: nowrap;
    overflow: hidden;
    position: relative;
    text-overflow: ellipsis;
}

#header_search_block_results>li>a>.product_price del {
    opacity: 0.5;
}

#header_search_block_results>li>a>.product_price {
    padding: 10px;
    font-weight: bold;
    text-align: right;
    color: #f5751e;
}

#header_search_block_results>li:hover {
    background: whitesmoke;
}

#header_search_block_results .header_searc_show_more {
    border: 0;
    display: block;
    width: 100%;
    text-align: center;
    font-weight: bold;
    padding: 5px;
    background: whitesmoke;
    color: black;
    cursor: pointer;
}

#header_search_block_results .header_searc_show_more:hover {
    background: #E2E2E2;
}

#header_search_block_results .header_searc_show_more:focus {
    outline: none;
}

.header_benefits {
    background-color: #76bf42;
}

.header_benefits:empty {
    margin-top: 10px;
    border-top: 1px solid #76bf42;
}

.white {
    background: white !important;
    border-top: 1px solid #76bf42;
}

.white a {
    color: #337ab7 !important;
}

.white a:hover {
    color: #23527c !important;
}

.header_benefits a {
    color: white;
    text-decoration: none;
    font-weight: 500;
}

.header_benefits a:hover {
    text-decoration: underline!important;
    color:white!important;
}
.top_header_item span {
    font-size: 12px;
}

.header_benefits_list {
    display: flex;
    padding: 0 15px;
    margin: 0 auto;
    list-style: none;
    justify-content: space-around;
    color: #333;
}
.white a{   
    color: #337ab7!important;

}
.white a:hover{   
    color: #23527c!important;
    text-decoration: underline!important;

}

.header_benefits_list>li {
    text-align: center;
    white-space: nowrap;
    padding: 5px 15px 5px 30px;
    font-size: 14px;
    line-height: 1.5;
    position: relative;
    min-width: 150px;
}

.header_benefits_list>li>i {
    vertical-align: middle;
    display: inline-block;
    margin-right: 5px;
    font-size: 12px;
}

.header_benefits_list>li span.nowrap {
    text-wrap: nowrap;
}

.header_benefits_list>li>p {
    vertical-align: middle;
    display: inline-block;
}

.entry_section_subtitle {
    margin-bottom: -0.1rem
}

.browse_section_list>li>a {
    border: 1px solid #d8e1e8!important;
}

.header_nav_mobile_list {
    max-height: 0 !important;
    display: none;
    overflow: hidden;
    padding: 0 15px 0 15px;
    width: 100%;
    text-align: center;
    list-style: none;
    border-top: 1px solid silver;
    margin-top: 1rem;
}

.header_nav_mobile_list>li:first-of-type {
    padding-top: 10px;
}

.header_nav_mobile_list>li {
    padding-bottom: 5px;
}

.header_nav_mobile_list>li>ul {
    display: none;
}

.header_nav_mobile_list>li>a {
    display: block;
    width: 100%;
    padding: 10px;
    color: #5d5d5d!important;
    position: relative;
    text-decoration: none!important;
}

.header_mobile_nav_dropdown {
    list-style: none!important;
}

.header_mobile_nav_dropdown>li:first-of-type {
    padding-top: 5px!important;
}

.header_mobile_nav_dropdown>li:last-of-type {
    padding-bottom: 5px;
}

.header_mobile_nav_dropdown>li>a {
    display: block;
    width: 100%;
    padding: 10px;
    color: #5d5d5d;
    position: relative;
    text-decoration: none;
}

.header_mobile_dropdown_link i {
    margin-left: 7px;
}

#MobSearch {
    display: none;
}

@media (max-width: 1200px) {
    .top_header_content {
        width: 100%;
        padding: 0 40px;
    }
}

@media (max-width: 1180px) {
    .header_benefits_list>li {
        white-space: normal;
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
    }
    .header_benefits_list>li>i {
        display: block;
        margin: 5px 0;
    }
    .header_nav_list {
        display: none;
    }
    .header_nav_mobile_toggle {
        display: block;
    }
    .header_card {
        position: static;
        padding: 10px 13px 0 0;
    }
    .header_main {
        position: relative;
    }
    .header_card_dropdown {
        margin-top: 5px;
        right: 15px;
    }
    .header_card_link {
        height: 35px;
        margin: 0;
        padding: 9px 0 0 4px;
    }
    .header_search {
        padding-top: 10px;
    }
    .header_logo {
        padding-top: 10px;
    }
    .header_logo img {
        width: 145px;
        height: auto;
    }
    .header_search input[type=text] {
        width: 100%;
        float: none;
        box-shadow: none !important;
    }
    .header_search .header_search_submit {
        position: absolute !important;
        right: 0;
        top: 0;
        z-index: 20;
    }
    .header_search>.header_search_submit::before {
        z-index: -1;
    }
    .centered_block {
        display: block;
        position: relative;
    }
    .header_search {
        padding-left: 15px;
        padding-right: 15px;
    }
    .header_main .header_search {
        flex: 0 0 40%;
    }
    .header_nav_mobile_list {
        max-height: 3000px !important;
    }
}

@media (max-width: 650px) {
    .header_card_dropdown {
        width: 280px;
    }
    .header_card_nav>a {
        font-size: 13px;
    }
    .header_nav_mobile_list {
        text-align: left;
    }
    .header_card {
        max-width: 63px;
        min-width: 63px;
    }
    .header_card_link span {
        display: none;
    }
    .header_benefits_list {
        max-width: 100%;
        text-align: center;
        flex-wrap: wrap;
    }
    .header_benefits_list>li {
        max-width: 50%;
        min-width: 50%;
        min-height: 53px;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
    }
    .header_benefits_list>li>i {
        position: relative;
        top: 0;
        left: 0;
        margin-right: 5px;
    }
    .header_main .header_search {
        flex: 0 0 25%;
    }
    .header_main .header_search form {
        display: none;
    }
    
}

@media (max-width: 540px) {
    .top_header_item {
        margin-left: 0;
    }
    .top_header_content {
        justify-content: space-between;
        padding: 0 10px;
    }
}

@media (max-width: 480px) {
    .header_benefits_list>li {
        height: 70px;
        padding: 5px 0;
    }
}

@media (max-width: 400px) {
    .top_header_item a {
        font-size: 10px;
    }
    .top_header_item:last-child img {
        width: 19px;
    }
    .top_header_item:first-child img {
        width: 15px;
    }
}