:root {
    --ser-font: Geologica, Tahoma, sans-serif;
    --ser-font1: Geologica, Tahoma, sans-serif;
    --ser-color: #000;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    height: 100%;
    font-size: 16px;
}
@media (max-width: 767px) {
    html {
        font-size: 14px;
    }
}
body {
    min-height: 100%;
    height: 100%;
    min-width: 320px;

    max-width: 567px;

    position: relative;
    margin: 0 auto;
    padding: 0;
    font-family: var(--ser-font);
    font-size: 16px;
    line-height: 1.4;
    color: var(--ser-color);
}
@media (max-width: 567px) {
    body {
        font-size: 14px;
    }
}
.clear {
    clear: both;
    height: 0;
    font: 0px/0px Arial, Tahoma, sans-serif;
}

@-webkit-keyframes logo {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
@keyframes logo {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

/* flex-block
-------------------------------*/
.flex
{
    margin: 0;
    padding: 0;
    display: flex;
    display: -ms-flexbox;
    display: -webkit-box;
    display: -webkit-flex;
    flex-flow: row wrap;
    justify-content: flex-start;
    
}
    .flex>*
    {
        
    }
.flj
{
    flex-flow: row wrap;
    -webkit-flex-flow: row wrap;
	-webkit-justify-content: space-between;
    justify-content: space-between;
    -ms-flex-pack: justify;
	-webkit-box-pack: justify; 
    align-items: center;
    -webkit-box-align: center; 
}
.flb
{
    align-items: flex-end;
}
.flt
{
    align-items: flex-start;
}
.flc
{
    flex-flow: row wrap;
    -webkit-flex-flow: row wrap;
    justify-content: center;
	-webkit-justify-content: center;
    -ms-flex-pack: center;
	-webkit-box-pack: center; 
    align-items: center;
    -webkit-box-align: center; 
}

.header
{
    width: 100%; 
    z-index: 10;
	padding: 18px 16px;
    margin: 0 auto;
	
	display: flex;
	justify-content:space-between;
	align-items: center;
	
}
a.logo, a.logo:hover
{
    display:block;
	width:58px;
	
	transition: all .5s;
}
	a.logo:hover
	{
		transform: translateY(1px);
	}
	.logo img
	{
		width:100%;
		height:auto;
	}
a.mmi, a.mmi:hover
{
	display:block;
	transition: all .5s;
	
	width:35px;
	height:26px;
	
	background: url(../images/mmi.svg);
	background-repeat: no-repeat;
	background-size: contain;
	
	cursor: pointer;
}

a.mmi:hover
{
	opacity: .5;
}


.header_back
{
	text-align:center;
	padding: 18px;
	font-size: 16px;
	position: relative;
}

.header_back a, .header_back a:hover
{
	background-image: url(../images/arrow2.svg);
	background-repeat: no-repeat;
	background-position: 50% 50%;
	
	width:24px;
	height:100%;
	
	position: absolute;
	top:0;
	left:0;
	
	transition: all .5s;
}

.header_back a:hover
{
	opacity: .5;
}

.header_back a.header_back_edit, .header_back a.header_back_edit:hover
{
	background-image: url(../images/edit.svg);
	left:auto;
	right:16px;
}


.main_list
{
	display:flex;
	flex-flow: row wrap;
	gap:16px;
}

.main_list_item,
.main_list_item:hover
{
	display:block;
	
	background-color: #FF9810;
	border-color: transition;
	border-radius: 12px;
	border-style: solid;
	border-width: 2px;
	
	padding: 16px;
	text-decoration:none;
	color: #fff;
	
	transition: all .5s;
	
	cursor: pointer;
	
	width: 100%;
}

.main_list_item:hover
{
	background-color: #fff;
	color: #FF9810;
}

.main_list_item em
{
	font-weight:300;
	font-size: 0.8em;
	font-style: normal;
	
	display:block;
	padding-top: 10px;
}

.main_list_item_1
{
	background-image: url(../images/mi1.svg);
	background-repeat: no-repeat;
	background-position: calc(100% + 1px) calc(100% + 1px);
}
.main_list_item_2
{
	background-image: url(../images/mi2.svg);
	background-repeat: no-repeat;
	background-position: calc(100% + 1px) calc(100% + 1px);
}


.main_list_profile, .main_list_profile:hover
{
	width: calc(50% - 16px/2);
	background-color: #FF6E35;
	border-color: #FF6E35;
	background-image: url(../images/profile.svg), url(../images/arrow1.svg);
	background-repeat: no-repeat, no-repeat;
	background-position: 16px 20px, calc(100% - 16px) 20px;
	
	padding-top: 70px;
	
}

.main_list_profile:hover
{
	background-color: #fff;
	color: #FF6E35;
}
.main_list_consignees, .main_list_consignees:hover
{
	width: calc(50% - 16px/2);
	background-color: #FF6E35;
	border-color: #FF6E35;
	background-image: url(../images/consignees.svg), url(../images/arrow1.svg);
	background-repeat: no-repeat, no-repeat;
	background-position: 16px 20px, calc(100% - 16px) 20px;
	padding-top: 70px;
}

.main_list_consignees:hover
{
	background-color: #fff;
	color: #FF6E35;
}

.main_logo
{
	text-align:center;
	padding: 20px 0;
	margin-bottom: 10px;
}
.main_text_1
{
	text-align:center;
	font-size: 1.2em;
	margin-bottom: 20px;
}
.main_text_2
{
	text-align:center;
	margin-bottom: 20px;
}
.main_text_3
{
	text-align:center;
	margin-bottom: 20px;
	font-weight: 300;
	font-size: 14px;
}

.auth_send_more
{
	
}

.auth_send_more a, .auth_send_more a:hover 
{
	padding: 8px 16px;
	text-align: center;
	display: block;
	
	color:#EC4A0A;
	
	text-decoration: none;
	transition: all .5s;
}
.auth_send_more a:hover 
{
	opacity: 0.5;
}

.showon
{
	display: none;
}
.showon.active
{
	display: block;
}
.hideon.active
{
	display: none;
}

.cargo_form
{
	padding: 16px;
	background-color: #E9EAEB;
	border-radius: 12px;
	margin-bottom: 20px;
}


.popmenu
{
    width: 0%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;


    padding-bottom: 140px;

    background: #fff;
    z-index: 1001;    

    transition: all .5s;

    overflow: hidden;
}
.popmenu.active
{
    width: 90%;
}

.popmenu_inner
{
    overflow: hidden;
    min-width: 240px;
}



.welcome
{
    padding: 30px 0 0 0;
    text-align: center;
}
.welcome_name
{
    font-weight: 500;
    font-size: 22px;
    line-height: 140%;
    color: #333333;

    margin: 0 0 10px;
}
.welcome_text
{
    font-family: Roboto;
    font-style: normal;
    font-weight: normal;
    font-size: 11px;
    line-height: 140%;
    text-align: center;
    width: 165px;
    margin: 0 auto;
    color: #333333;
}

.welcome_tel
{
    font-size: 20px;
    line-height: 140%;
    color: #333333;

    width: 240px;
    text-align: center;
    
    display: block;
    margin: 20px auto;

    border: none;
    outline: none;
}
.welcome_sms, .welcome_sms2
{
    font-size: 24px;
    line-height: 140%;
    color: #333333;

    width: 240px;
    text-align: center;
    
    display: block;
    margin: 20px auto;

    border: none;
    outline: none;
}

.welcome_code
{
    font-size: 24px;
    line-height: 140%;
    color: #333333;

    width: 240px;
    text-align: center;
    
    display: block;
    margin: 20px auto;

    border: none;
    outline: none;
}

.welcome_but
{
    background: #66A437;
    border-radius: 5px;
    padding: 6px;

    font-size: 10px;
    line-height: 140%;
    color: #FFFFFF;
    text-align: center;
    text-transform: uppercase;

    display: block;
    margin: 0 auto;
    border: none;

    -webkit-appearance: none;
    border: solid 1px #66A437;
    outline: none;

    cursor: pointer;

    text-transform: uppercase;

    transition: all .5s;
}
.welcome_but:hover
{
    background: #fff;
    color: #66A437;
}

.welcome_but:disabled, .welcome_but:disabled:hover
{
    background: #F6F6F6;
    border-radius: 5px;
    color: #919090;
    border: solid 1px #F6F6F6;
}
.sms_time
{
    text-align: center;
    font-size: 10px;
    color: #919090;

    margin: 0 0 20px;
}
.welcome_code_text
{
    text-align: center;
    font-size: 11px;
    color: #919090;

    margin: 30px 0 10px;
}

.bonus_bottom
{
    background: #F6F6F6;
    padding: 30px;

    text-align: center;
}
.bonus_bottom_name
{
    font-family: Roboto, sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 20px;
    line-height: 140%;
    text-align: center;

    

    color: #333333;

    margin: 0 0 20px;
}

.bonus_bottom_link, .bonus_bottom_link:hover
{
    width: 135px;
    border-radius: 4px;

    display: inline-block;

    padding: 4px 10px;
    border: 1px solid #66A437;

    border-radius: 5px;


    font-family: Roboto, sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 10px;
    line-height: 140%;
    color: #66A437;

    text-align: center;

    text-decoration: none;
}
.bonus_bottom_link:hover
{
    background: #66A437;
    color: #fff;
}

.topmenu
{
    margin: 0;
    padding: 0 0 20px;
    list-style-type: none;

    border-bottom: solid 1px #eee;

    overflow: auto;
}

    .topmenu li
    {
        margin: 0;
        padding: 0;
        
    }
    .topmenu>li>a:hover, .topmenu>li>a:hover:focus
    {
        background-color: #F6F6F6;
    }
    .topmenu>li.arrow>a, .topmenu>li.arrow>a:hover
    {
        background-image: url(../images/menu_down.svg);
        background-repeat: no-repeat;
        background-position: 98% 50%;
    }
    .topmenu>li.arrow.open>a, .topmenu>li.arrow.open>a:hover
    {
        background-image: url(../images/menu_up.svg);
        background-repeat: no-repeat;
        background-position: 98% 50%;
    }
.topmenu li:last-child
{
    border-bottom: none;
}

    .topmenu li a, .topmenu li a:hover
    {
        display: block;
        padding: 8px 16px;
        font-size: 14px;
        color: #333;

        text-decoration: none;
    }
    .topmenu li a:hover
    {
        color: #000;
    }

ul.submenu
{
    margin: 0;
    padding: 0;
    height: 0;
    overflow: hidden;
}
    .open ul.submenu
    {
        height: auto;
    }
    ul.submenu li
    {
        margin: 0;
        padding: 0 0 0 20px;
        position: relative;;
    }
    ul.submenu li:before
    {
        width: 3px;
        height: 3px;
        display: block;
        background: #000;
        content: "";
        position: absolute;
        top: 14px;
        left: 20px;
        opacity: .7;
        border-radius: 50%;
    }

    ul.submenu li a, ul.submenu li a:hover
    {
        
    }



.topmenu_link
{
    padding: 10px 100px 10px 20px;
    position: relative;
}
    .topmenu_link a, .topmenu_link a:hover
    {
        display: block;
        padding: 10px 0;
        font-size: 14px;
        line-height: 125%;
        text-decoration: none;

        color: #333333;
    }
    .topmenu_link a:hover
    {
        color: #000;
    }

    .topmenu_bottom
    {
        background: #eee;
        padding: 30px 20px;
        position: absolute;
        bottom: 0;
        width: 100%;

        min-width: 240px;
    }
    .topmenu_tel, .topmenu_tel:hover
    {
        font-size: 20px;
        line-height: 140%;
        color: #333333;
        text-decoration: none;
        display: inline-block;
        margin: 0 0 20px;
    }
    .social
    {

    }
    .social a, .social a:hover
    {
        display: inline-block;
        width: 28px;
        height: 28px;

        margin: 0 10px 0 0;

        background-size: contain;
    }
    .social a:hover
    {
        opacity: .5;
    }
    a.soc1, a.soc1:hover
    {
        background: url(../images/soc1.svg) no-repeat;
    }
    a.soc2, a.soc2:hover
    {
        background: url(../images/soc2.svg) no-repeat;
    }
    a.soc3, a.soc3:hover
    {
        background: url(../images/soc3.svg) no-repeat;
    }
    a.soc4, a.soc4:hover
    {
        background: url(../images/soc4.svg) no-repeat;
    }

.topmenu_bottom_icon
{
    width: 59px;
    height: 40px;

    display: block;

    background: url(../images/menu_card_icon.png) no-repeat;

    position: absolute;
    top: 20px;
    right: 20px;
}

.product_item_border
{
    border-bottom: solid 2px #eee;
    padding: 0 16px;
    margin: 0 -16px;
    position: relative;
}

.product_item
{
    display: flex;
    display: -webkit-flex;
    flex-flow: row wrap;
    margin: 0 0 30px;
    max-width: 340px;
}
.product_item2
{
    display: flex;
    display: -webkit-flex;
    flex-flow: row wrap;
    padding: 10px 0;
    max-width: 340px;
}
.product_item .pic, .product_item2 .pic
{
    width: 33%;
    position: relative;
}

.product_item2 .pic
{
    width: 25%;
    height: 80px;
}

.product_item .pic img, .product_item2 .pic img
{
    border-radius: 5px;
    max-width: 100%;
    height: 100%;

    transition: all .5s;
    box-shadow: rgba(0,0,0,.2) 1px 1px 2px;
}

.product_item .pic:hover img, .product_item2 .pic:hover img
{
    box-shadow: rgba(0,0,0,.2) 0 0 5px;
}


.product_item .pic .icon, .product_item2 .pic .icon
{
    max-width: 100px;
    width: 100%;

    padding: 4px;

    font-size: 10px;
    line-height: 140%;

    color: #FFFFFF;

    border-radius: 4px;

    display: block;

    position: absolute;
    top: -10px;
    left: 50%;
    z-index: 1;

    text-align: center;

    margin: 0 0 0 -50px;
}


.product_item .desc, .product_item2 .desc
{
    width: 67%;
    padding-left: 20px;
}

.product_item2 .desc
{
    width: 75%;
}

.product_item_name, .product_item_name:hover
{
    font-family: Roboto, sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    line-height: 125%;

    color: #333333;

    text-decoration: none;
    display: block;

    margin: 0 0 10px;
}
.product_item_name:hover
{
    opacity: .5;
}


.product_item2 .product_item_name, .product_item2 .product_item_name:hover
{
    min-height: 32px;
}

.product_item_text
{
    font-family: Roboto, sans-serif;
    font-size: 11px;
    line-height: 140%;

    color: #333333;

    margin: 0 0 10px;
}

.product_item_text2
{
    font-family: Roboto, sans-serif;
    font-size: 10px;
    line-height: 140%;

    color: #66A437;
    text-transform: uppercase;
}

.product_item_text3
{
    display: flex;
    display: -webkit-flex;
    

    flex-flow: row wrap;
    -webkit-flex-flow: row wrap;
	-webkit-justify-content: space-between;
    justify-content: space-between;
    -ms-flex-pack: justify;
	-webkit-box-pack: justify; 
    align-items: center;
    -webkit-box-align: center; 
}
.product_item_price
{
    font-size: 16px;
    line-height: 125%;
    color: #333333;
}
.product_item_bas
{
    width: 90px;
    height: 32px;
}
.product_item_bas3
{
    width: 90px;
    height: 32px;
}
.product_button, .product_button:hover, .product_button:focus
{
    background: #66A437;
    border: solid 1px #66A437;
    border-radius: 5px;
    padding: 8px 14px;

    color: #fff;

    font-size: 10px;
    line-height: 140%;


    color: #FFFFFF;
    text-transform: uppercase;
    text-decoration: none;

}

.product_button:hover, .product_button:focus
{
    background: #fff;
    color: #66A437;
}

.product_weight
{
    font-weight: 500;
    font-size: 16px;
    line-height: 125%;
    color: #919090;

    margin: 20px 0;
}
.product_text5
{
    
    
    font-size: 14px;
    line-height: 125%;

    color: #333333;
    margin: 0 0 20px;

}

.product_text6
{
    margin: 0 -16px;
    min-height: 120px;
    position: relative;
}
.product_text6_more
{
    background: #F6F6F6 url(../images/menu_down.svg) no-repeat 95% 50%;
    padding: 16px;

    font-weight: 500;
    font-size: 14px;
    line-height: 125%;
    cursor: pointer;
    color: #333333;
}
.product_text6_inner
{
    background: #F6F6F6;
    padding: 16px;

    font-size: 14px;
    line-height: 125%;

    display: none;
}
.product_text6.active .product_text6_more
{
    background: #F6F6F6 url(../images/menu_up.svg) no-repeat 95% 50%;
}
.product_text6.active .product_text6_inner
{
    display: block;
}

.product_item_text8
{
    margin: 20px -16px 0;
    position: relative;
}

.product_item_text7
{
    display: flex;
    display: -webkit-flex;
    

    flex-flow: row wrap;
    -webkit-flex-flow: row wrap;
	-webkit-justify-content: space-between;
    justify-content: space-between;
    -ms-flex-pack: justify;
	-webkit-box-pack: justify; 
    align-items: center;
    -webkit-box-align: center; 


    border-top:solid 1px #e6e6e6;
    border-bottom:solid 1px #e6e6e6;
}
.product_price
{
    font-size: 14px;
    line-height: 125%;
    color: #333333;
    width: 50%;
    
    text-align: center;
    padding: 0 20px;
    height: 60px;
    border-right: solid 1px #e6e6e6;


    
}
.product_price2
{
    font-size: 14px;
    line-height: 125%;
    color: #333333;
    width: 35%;
    
    text-align: center;
    padding: 20px;
    border-right: solid 1px #e6e6e6;
}
.product_bas
{
    width: 50%;
    
    text-align: center;
}
.product_bas2
{
    width: 65%;
    font-weight: 500;
    color: #919090;
    text-align: center;
    background: #F6F6F6;

    height: 58px;

    display: flex;
    display: -webkit-flex;
    

    flex-flow: row wrap;
    -webkit-flex-flow: row wrap;
	-webkit-justify-content: space-between;
    justify-content: space-between;
    -ms-flex-pack: justify;
	-webkit-box-pack: justify; 
    align-items: center;
    -webkit-box-align: center; 
}
.product_bas2 span
{
    width: 100%;
}
.product_button2, .product_button2:hover, .product_button2:focus,
.product_button3, .product_button3:hover, .product_button3:focus
{
    background: #66A437;
    border: solid 1px #66A437;
    
    padding: 19px;

    color: #fff;

    font-size: 14px;
    line-height: 140%;


    color: #FFFFFF;
    text-transform: uppercase;
    text-decoration: none;

    display: block;
    text-align: center;
}

.product_button2:hover, .product_button2:focus,
.product_button3:hover, .product_button3:focus
{
    background: #fff;
    color: #66A437;
}

.basket_empty
{
    background: url(../images/basket_empty.svg) no-repeat 50% 50%;
    min-height: 120px;

    margin: 0 0 20px;
}


.basket_text1
{
    font-weight: 500;
    font-size: 22px;
    line-height: 140%;
    color: #333333;
    margin: 0 auto 20px;
    text-align: center;

}
.basket_text2
{
    max-width: 240px;
    margin: 0 auto 40px;
    text-align: center;
}

.bonus_icon_cnt
{
    display: flex;
    display: -webkit-flex;
    

    flex-flow: row wrap;
    -webkit-flex-flow: row wrap;
	-webkit-justify-content: space-between;
    justify-content: space-between;
    -ms-flex-pack: justify;
	-webkit-box-pack: justify; 
    align-items: center;
    -webkit-box-align: center; 

    margin: 0 0 30px;
}

.bonus_btn
{
    width:50%;
    text-align: right;
}
    .bonus_btn a, .bonus_btn a:hover
    {
        background: #66A437;
        border: solid 1px #66A437;
        
        padding: 6px 14px;

        color: #fff;

        font-size: 11px;
        line-height: 140%;
        text-transform: uppercase;
        text-decoration: none;

        display: inline-block;
        text-align: center;
        border-radius: 5px;
        max-width: 150px;
    }
    .bonus_btn a:hover
    {
        background: #fff;
        color: #66A437;
    }


.person_icon_cnt
{
    display: flex;
    display: -webkit-flex;
    

    flex-flow: row wrap;
    -webkit-flex-flow: row wrap;
	-webkit-justify-content: space-between;
    justify-content: space-between;
    -ms-flex-pack: justify;
	-webkit-box-pack: justify; 
    align-items: center;
    -webkit-box-align: center; 

    margin: 0 0 30px;
}


.bonus_icon
{
    width:50%;
    background: url(../images/bonus_icon.svg) no-repeat 0 50%;
    padding: 0 10px 0 30px;

    display: flex;
    display: -webkit-flex;
    

    flex-flow: row wrap;
    -webkit-flex-flow: row wrap;
	-webkit-justify-content: space-between;
    justify-content: space-between;
    -ms-flex-pack: justify;
	-webkit-box-pack: justify; 
    align-items: center;
    -webkit-box-align: center; 

    max-width: 130px;
}
.bonus_icon_count
{
    font-weight: 500;
    font-size: 20px;
    line-height: 140%;
    color: #333333;
}
.bonus_icon_text
{
    font-size: 10px;
    color: #333333;
}




.person_icon
{
    padding-left: 30px;
    background: url(../images/person_icon.svg) no-repeat;
    font-weight: 500;
    font-size: 16px;

    display: flex;
    display: -webkit-flex;
    

    flex-flow: row wrap;
    -webkit-flex-flow: row wrap;
	-webkit-justify-content: space-between;
    justify-content: space-between;
    -ms-flex-pack: justify;
	-webkit-box-pack: justify; 
    align-items: center;
    -webkit-box-align: center; 
}


.order_gray
{
    padding: 16px;
    margin: 0 -16px 20px;
    position: relative;

    background: #F6F6F6;
}


.all_page,
.main_page {
    min-height: 100%;
    margin: 0 auto;
    padding: 0;
    position: relative;
}
.intro_page
{
    min-height: 100%;
    margin: 0 auto;
    padding: 0;
    position: relative;
}
.fixed {
    max-width: 1200x;
    margin: 0 auto;
    padding: 0 10px;
    position: relative;
}
.wrapper {
    padding: 10px 16px;
    margin: 0 auto;
    zoom: 1;
	
	
}

.all_page .wrapper {
    display: block;
}
.content {
    margin: 0;
    padding: 0;
    width: 100%;
}
.aside {
    padding: 0 20px 0 0;
    margin-bottom: 20px;
    width: 27%;
}
@media (max-width: 767px) {
    .aside {
        width: 100%;
    }
}
.aside .h2 {
    font-size: 18px;
    line-height: 18px;
    font-weight: bold;
    margin: 0 0 10px;
    padding-left: 30px;
    text-transform: none;
    cursor: pointer;
    display: none;
    background: url(../images/mmi.png) no-repeat 0 50%;
}
.aside .h2 span {
    margin-right: 5px;
    font-size: 20px;
    transform: translateY(2px);
}
.aside .h2:hover {
    opacity: 0.5;
}
@media (max-width: 767px) {
    .aside .h2 {
        display: block;
    }
}
@media (max-width: 767px) {
    .aside .left_col {
        width: 100%;
        padding: 0 10px;
        margin: 0;
    }
}


h1
{
  
    font-weight: 500;
    font-size: 16px;
    line-height: 125%;

    color: #333333;

    margin: 0 0 20px;
}
p
{
    color: #333333;
    font-size: 14px;
    line-height: 125%;
    margin-bottom: 18px;
}

a, a:hover
{
    color: #333333;
    text-decoration: underline;
}
a:hover
{
    text-decoration: none;
}


.footer {
    width: 100%;
    
    position: relative;
    z-index: 2;
	
	
}

.footer .footer_line1
{
	border-top: 0.5px solid #B9B9B9;
	
	
	padding: 48px 0 0;
}

.footer .footer_line2
{
	border-bottom: 0.5px solid #B9B9B9;
	padding: 0 0 39px;
}

.footer .footer_line3
{
	
	padding: 30px 0;
}

.footer .footer_line1 .inner
{
	display: flex;
    display: -webkit-flex;
    flex-flow: row wrap;
	
	padding: 0 10px;
	max-width: 1220px;
	margin: 0 auto;
}
.footer .footer_line2 .inner
{
	display: flex;
    display: -webkit-flex;
    flex-flow: row wrap;
	
	justify-content: space-between;
    -ms-flex-pack: justify;
    -webkit-box-pack: justify;
    align-items: center;
    -webkit-box-align: center;
	
	padding: 0 10px;
	max-width: 1220px;
	margin: 0 auto;
}
.footer .footer_line3 .inner
{
	display: flex;
    display: -webkit-flex;
    flex-flow: row wrap;
	
	padding: 0 10px;
	max-width: 1220px;
	margin: 0 auto;
}

.footer .footer_col {
    position: relative;
	width: 20%;
}
.footer .footer_col2 {
    position: relative;
	width: 50%;
	
}
.footer .footer_col3 {
    position: relative;
	width: 40%;
	
}

.footer .footer_col:nth-child(5) {
    display: flex;
    display: -webkit-flex;
    flex-flow: row wrap;
	
	text-align: right;
	
	justify-content: space-between;
    -ms-flex-pack: justify;
    -webkit-box-pack: justify;
    align-items: center;
    -webkit-box-align: center;
	
	align-content: space-between;
	
}


.footer-menu-name {
    font-size: 14px;
	line-height: 16px;
	text-transform: uppercase;
	color: #1A4540;
    margin: 0 0 28px;
	width: 100%;
}
.footer-menu-name a, .footer-menu-name a:hover
{
	font-size: 14px;
	line-height: 16px;
	text-transform: uppercase;
	text-decoration: none;
	color: #1A4540;
}
.footer-menu-name a:hover
{
	opacity: .5;
}

@media (max-width: 767px) {
    .footer-menu-name {
        margin: 0 0 10px;
    }
}
.footer-menu-name2 {
    font-size: 14px;
	line-height: 16px;
    
    color: #1A4540;
    margin: 0 0 8px;
}

.footer-menu-name2 a, .footer-menu-name2 a:hover
{
	font-size: 14px;
	color: #1A4540;
	text-decoration: none;
}
.footer-menu-name2 a:hover
{
	opacity:.5;
}


.footer-menu-name3 {
    font-size: 16px;
	line-height: 19px;
	text-align: right;
	width: 100%;
	color: #1A4540;    
    margin: 0 0 8px;
}

.footer-menu-name3 a, .footer-menu-name3 a:hover
{
	font-size: 16px;
	color: #1A4540;    
	text-decoration: none;
}
.footer-menu-name3 a:hover
{
	opacity:.5;
}

.footer-menu-name4
{
	width: 100%;
	text-align: right;
	
	font-size: 14px;
	line-height: 16px;
	color: #828282;
}


.copy
{
	
	font-size: 11px;
	
	color: #333;
    text-align: center;
	margin-bottom: 10px;
}


.footer-link a,
.footer-link a:hover {
    display: block;
    text-decoration: none;
    font-size: 10px;
	line-height: 12px;

	color: #1A4540;
    margin-bottom: 6px;
}
.footer-link a:hover {
    opacity: 0.5;
}


.scrollup {
    width: 50px;
    height: 50px;
    background: #08c url(../images/up.png) no-repeat 50% 48%;
    background-size: 40% auto;
    opacity: 0.6;
    color: #fff;
    font-size: 0px;
    text-indent: -9999px;
    position: fixed;
    bottom: 80px;
    right: 20px;
    display: none !important;
    transition: all 0.5s;
    z-index: 3;
    border-radius: 50%;
}


@media (max-width: 1000px) {
    .footer .footer_col {
        width: 50%;
        min-height: 20px;
		padding-bottom: 20px;
    }
	.footer .footer_col:nth-child(5), .footer .footer_col:nth-child(5) .footer-menu-name3
	{
		text-align: left;
	}
	
}
@media (max-width: 767px) {
	.footer_line1
	{
		display: none;
	}
	.footer .footer_col3
	{
		width: 50%;
	}
}

@media (max-width: 567px) {
	.footer .footer_line3
	{
		padding: 10px 0;
	}
	.footer .footer_line2
	{
		padding-bottom: 10px;
	}
	.footer-menu-name3, .footer-menu-name4
	{
		text-align: left;
	}
    .footer .footer_col, .footer .footer_col3, .footer .footer_col2 {
        width: 100%;
        padding: 10px 0;
    }
}


.scrollup:hover {
    opacity: 0.999;
}
.custom_search {
    margin: 0;
    height: 60px;
    width: 40%;
    display: block;
    z-index: 10;
    position: relative;
    border-left: solid 1px #e1e1e1;
    border-right: solid 1px #e1e1e1;
}
@media (max-width: 825px) {
    .custom_search {
        width: 100%;
    }
}
.custom_search .search {
    position: absolute;
    top: 0;
    right: 0;
    margin: 0 0 0 0;
    height: 100%;
    width: 100%;
    overflow: hidden;
}
.custom_search .search.active {
    background: #fff;
}
.custom_search .search .text {
    position: absolute;
    top: 0;
    left: 0;
    padding: 0 40px 0 20px;
    height: 100%;
    width: 100%;
    font-size: 14px;
    font-weight: 300;
    color: #9a9a9a;
    background: none;
    border: none;
}
.custom_search .search .submit {
    position: absolute;
    top: 0;
    right: 0;
    width: 50px;
    height: 100%;
    outline: none;
    border: none;
    background: url(../images/search.png) no-repeat 50% 50%;
}
.custom_search .search .text:focus {
    outline: solid 1px transparent;
}
.custom_search .validator {
    position: absolute;
    top: 100%;
    right: 0;
    width: 240px;
    display: none;
    height: 50px;
}
.custom_search .validator .arrow {
    background: url(../images/search_arrow.png) no-repeat 10px 0;
    display: block;
    height: 6px;
    position: relative;
    z-index: 2001;
}
.custom_search .validator .inner {
    display: block;
    background: #fff;
    color: #f00;
    font-size: 14px;
    font-style: italic;
    padding: 6px 14px;
    border-radius: 2px;
    box-shadow: rgba(0, 0, 0, 0.2) 0 0 4px;
}

.open_dialog {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2005;
    background: #fff;
    box-shadow: rgba(0, 0, 0, 0.2) 0 0 20px;
    min-width: 200px;
    max-width: 1200px;
    min-height: 100px;
    max-height: 100%;
    padding: 0;

    border-radius: 10px;
}
@media (max-width: 768px) {
    .open_dialog {
        
        height: 100%;
        min-height: 100%;
        overflow: auto;
    }
}
.open_dialog .inner {
    padding: 25px;
}
.open_dialog .inner2 {
    text-align: center;
    font-size: 14px;
    margin-bottom: 20px;
}
@media (max-width: 768px) {
    .open_dialog .inner2 {
        padding: 0;
    }
}

.open_dialog .name5 {
    margin: 0 0 20px;
    text-align: center;
}


.product_close
{
    text-align: center;
    margin: 20px 0 0;
}

.product_close a, .product_close a:hover, .product_close a:focus
{
    display: block;
	border-radius:8px;
    background: #EC4A0A;
    border: solid 1px #EC4A0A;
    color: #fff;
	cursor: pointer;
	letter-spacing: normal;
	-webkit-appearance: none;
	font-weight: 500;
	overflow: visible;
	padding: 14px 16px;
	margin: 0 0 20px;
	font-size: 14px;
	text-decoration: none;
	transition: all 0.5s;
	display: flex;
	justify-content: center;
}
.product_close a:hover, .product_close a:focus
{
    background: #fff;
    color: #EC4A0A;
}

.open_dialog .dtext {
    font-size: 14px;
    color: #000000;
    line-height: 2;
}

.open_dialog .h2 {
    font-size: 20px;
    color: #000;
    margin: 0 0 15px;
    padding: 6px 0 6px 40px;
    background-repeat: no-repeat;
    background-position: 0 50%;
}
@media (max-width: 567px) {
    .open_dialog .h2 {
        font-size: 16px;
    }
}

.open_dialog > a.close,
.open_dialog > a.close:hover,
.open_dialog .inner > a.close,
.open_dialog .inner > a.close:hover {
    width: 15px;
    height: 15px;
    position: absolute;
    top: 10px;
    right: 10px;
    text-decoration: none;
    text-align: center;
    vertical-align: middle;
    /*background: url(../images/close.png) no-repeat;*/
    z-index: 200;
    transition: all 0.5s;
    opacity: 0;
}
@media (max-width: 768px) {
    .open_dialog > a.close,
    .open_dialog > a.close:hover,
    .open_dialog .inner > a.close,
    .open_dialog .inner > a.close:hover {
        opacity: 1;
    }
}
.open_dialog a.close span,
.open_dialog a.close:hover span {
    display: none;
}
.open_dialog > a.close:hover,
.open_dialog .inner > a.close:hover {
    opacity: 0.5;
}
.open_dialog .submit_button {
    margin: 0;
}
.open_dialog .submit_button input {
    margin: 0 10px 10px 0;
}

.dialog_overlay {
    z-index: 910;
    background: #333333;
    position: fixed !important;
    opacity: 0.5;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.custom_overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;


    background: #333333;
    opacity: 0.5;
    box-shadow: 2px 0px 8px rgba(0, 0, 0, 0.15);
}
.custom_overlay2 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 200;

    background: #333333;
    opacity: 0.5;
    box-shadow: 2px 0px 8px rgba(0, 0, 0, 0.15);
}

@media (max-width: 768px) {
    .noresize {
        height: auto;
        min-height: 150px;
    }
}

.custom_slider {
    position: relative;
    overflow: hidden;
    height: 480px;
    margin: 0 auto;
}
.custom_slider .slider {
    margin: 0;
    padding: 0;
}
.custom_slider .slider li {
    margin: 0;
    padding: 0;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.custom_slider .slider li .description {
    position: absolute;
    top: 50%;
    left: 0px;
    padding: 25px 40px 10px 100px;
    background: #010535;
    max-width: 540px;
    min-width: 320px;
    height: 290px;
    margin-top: -145px;
    z-index: 10;
}
@media (max-width: 900px) {
    .custom_slider .slider li .description {
        display: none !important;
    }
}
.custom_slider .slider li .description .t1 {
    font-size: 48px;
    color: #ffffff;
}
.custom_slider .slider li .description .t2 {
    font-size: 18px;
    color: #ffffff;
}
.custom_slider .slider li .description .l1 {
    width: 36px;
    height: 3px;
    margin: 20px 0;
    background-color: #d7001c;
}
.custom_slider .slider li .description .t3 {
    font-size: 14px;
    color: #ffffff;
    margin: 0 0 30px;
}
.custom_slider .slider li .img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform: scale(1.2);
    opacity: 0;
    background-repeat: no-repeat;
    background-size: cover;
}
.custom_slider .slider li .img_2 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-size: contain;
}
.custom_slider .slider li .img img,
.custom_slider .slider li .img_2 img {
    display: none;
}
.custom_slider .slider li .part {
    position: absolute;
    transform: scale(1.2);
}
.custom_slider .slider_pager {
    position: absolute;
    top: 25px;
    right: 25px;
    z-index: 100;
    margin: 0;
    padding: 0;
}
@media (max-width: 900px) {
    .custom_slider .slider_pager {
        display: none;
    }
}
.custom_slider .slider_pager li {
    display: block;
    margin: 0 0 8px 0;
    width: 16px;
    height: 16px;
    padding: 5px 0 5px 0;
}
.custom_slider .slider_pager li a,
.custom_slider .slider_pager li a:hover {
    display: block;
    width: 14px;
    height: 14px;
    text-indent: -9999px;
    font-size: 0;
    border: solid 1px #000;
    border-radius: 50%;
    background: #fff;
}
.custom_slider .slider_pager li.current a,
.custom_slider .slider_pager li.current a:hover {
    background: #000;
}
.custom_slider .next,
.custom_slider .next:hover {
    position: absolute;
    display: block;
    top: 50%;
    right: 20px;
    width: 21px;
    height: 35px;
    margin-top: -24px;
    z-index: 10;
}
.custom_slider .prev,
.custom_slider .prev:hover {
    position: absolute;
    display: block;
    top: 50%;
    left: 20px;
    width: 21px;
    height: 35px;
    margin-top: -24px;
    z-index: 10;
}
.custom_slider .loader {
    height: 2px;
    width: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
    background: #eee;
    z-index: 200;
}
.custom_slider .loader div {
    width: 0;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: #000;
}
@media (max-width: 767px) {
    .custom_slider {
        display: none;
    }
    .custom_slider .slider li .description,
    .custom_slider .slider li .img_2 {
        display: none !important;
    }
}
.custom_select {
    position: relative;
    min-width: 180px;
}
.custom_select select {
    display: none;
    visibility: hidden;
}
.custom_select div {
    padding: 18px;
    font-weight: 400;
	
    white-space: nowrap; 
    overflow: hidden; 
    text-overflow: ellipsis; 
    text-decoration: none;
}
.custom_select div span.icon {
    display: block;
    height: 100%;
    line-height: 36px;
    width: 30px;
    position: absolute;
    text-align: left;
    padding-left: 5px;
    top: 0;
    right: 0;
}
.custom_select ul {
    display: none;
    position: absolute;
    top: 30px;
    left: 0px;
    width: 100%;
    margin: 0;
    padding: 10px;
    list-style-type: none;
    overflow: auto;
    max-height: 250px;
    z-index: 10;
	
	box-shadow: rgba(0,0,0, .1) 0 0 10px;
}

.custom_select ul li {
    margin: 0;
    padding: 0;
}
.custom_select ul li a {
    display: block;
    text-decoration: none;

    font-size: 12px;
	font-weight: 300;
    border-bottom: solid 1px #DDDDDD;
}

.custom_select ul li:last-child a
{
	border-bottom: solid 1px transparent;
}

.custom_select ul li a span{
	opacity: .8;
	display: block;
	color: #000;
}


.error .custom_select div
{
	color:#E31B1E;
	font-weight:700;
}
.label .custom_select
{
	margin-bottom:0;
}

.custom_radio,
.custom_colorbox {
    cursor: pointer;
    display: inline-block;
    vertical-align: middle;
    padding-left: 30px;
}
.custom_radio span.icon,
.custom_colorbox span.icon {
    display: inline-block;
    height: 18px;
    width: 18px;
    padding: 3px;
    margin: 0;
    margin-right: 5px;
    text-align: left;
    vertical-align: middle;
    border-radius: 50%;
    transform: translateY(-1px);
    position: absolute;
    top: 2px;
    left: 0;
}
.custom_radio span.icon span,
.custom_colorbox span.icon span {
    opacity: 0;
    display: block;
    border-radius: 50%;
    height: 100%;
    transition: all 0.3s;
}
.custom_radio input,
.custom_colorbox input {
    display: none;
}
.custom_radio.active span.icon,
.custom_colorbox.active span.icon {
    border: solid 1px #babfc8;
}
.custom_radio.active span.icon span,
.custom_colorbox.active span.icon span {
    opacity: 0.9999;
}
.custom_colorbox span.icon {
    padding: 2px;
}
.custom_colorbox span.icon,
.custom_colorbox span.icon span {
    border-radius: 2px;
}
.custom_colorbox span.icon span {
    display: block;
    opacity: 0.9999;
}
.custom_checkbox {
    vertical-align: middle;
    color: #585858;
    font-size: 14px;
    padding-top: 4px;
    padding-left: 30px;
}
.custom_checkbox span.icon {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    height: 25px;
    width: 25px;
    border: solid 1px #6d6d6d;
    margin: 0;
    text-align: left;
    vertical-align: middle;
    text-align: center;
}
.custom_checkbox span.icon span {
    opacity: 0;
}
.custom_checkbox input {
    display: none;
}
.custom_checkbox.active span.icon span {
    opacity: 0.9999;
}
.custom_switch {
    vertical-align: middle;
}
.custom_switch span.icon {
    display: inline-block;
    height: 30px;
    width: 50px;
    padding: 0;
    margin: 0;
    margin-right: 5px;
    text-align: left;
    vertical-align: middle;
    border-radius: 20px;
    position: relative;
    background: #000;
    cursor: pointer;
}
.custom_switch span.icon span {
    background: #fff;
    border-radius: 50%;
    width: 26px;
    height: 26px;
    font-size: 0;
    color: #fff;
    display: block;
    position: absolute;
    top: 2px;
    left: 2px;
    transition: all 0.5s;
}
.custom_switch input {
    display: none;
}
.custom_switch.active {
    opacity: 0.9999;
}
.custom_switch.active span.icon {
    background: #2a6e7f;
}
.custom_switch.active span.icon span {
    left: 22px;
}
.custom_tooltip {
    margin: 0 10px 0 0;
    padding-top: 10px;
    position: absolute;
    min-width: 50px;
    max-width: 270px;
    z-index: 200;
}
.custom_tooltip div.arrow {
    margin: 0 0 0 -9px;
    background: none;
    width: 18px;
    height: 9px;
    z-index: 202;
    position: absolute;
    top: 5px;
    left: 50%;
    background: url(../images/tooltip_arrow.png) no-repeat;
}
.custom_tooltip div.arrow div.line {
    display: none;
}
.custom_tooltip div.inner {
    margin: 0;
    padding: 8px 0px 8px 8px;
    border-radius: 0px;
    background: #fff;
    position: relative;
    font-size: 0.9em;
    z-index: 201;
    border-top: solid 3px #0088cc;
    box-shadow: rgba(0, 0, 0, 0.1) 0 0 2px;
}
.custom_tooltip.tooltip_click {
    margin-top: -5px;
}
.custom_tooltip.tooltip_click div.arrow {
    background: url(../images/tooltip_arrow.png) no-repeat;
}
.custom_tooltip.tooltip_click div.arrow div.line {
    background: #fff;
}
.custom_tooltip.tooltip_click div.inner {
    background: #fff;
    border: none;
    border-top: solid 3px #0088cc;
}
.custom_tooltip.market {
    margin-top: -5px;
}
.custom_tooltip.market div.arrow {
    background: none;
}
.custom_tooltip.market div.arrow div.line {
    background: #fff;
}
.custom_tooltip.market div.inner {
    background: #fff;
    border: none;
    border-top: solid 3px #fff;
    padding: 10px;
}
.custom_tooltip.market div.inner ul {
    margin: 0;
    padding: 0 10px;
    list-style-type: none;
    border-bottom: dotted 2px #d9dde1;
}
.custom_tooltip.market div.inner ul li {
    background: url(../images/adr_min.png) no-repeat 0 6px;
    padding: 4px 4px 4px 20px;
    color: #000;
    font-size: 14px;
    cursor: pointer;
}
.custom_tooltip.market div.inner ul li:hover {
    color: #841c1e;
}
.custom_tooltip.t {
    padding-top: 0;
    padding-bottom: 10px;
}
.custom_tooltip.t div.arrow {
    top: auto;
    bottom: 5px;
}
.custom_tooltip.t div.arrow div.line {
    top: -6px;
    left: -6px;
}
.custom_tooltip.error div.arrow {
    background: #fde4e4;
    border: solid 1px #f00;
    color: #f00;
}
.custom_tooltip.error div.arrow div.line {
    background: #fde4e4;
}
.custom_tooltip.error div.inner {
    background: #fde4e4;
    border: solid 1px #f00;
    color: #f00;
}
.custom_tooltip.attention div.arrow {
    background: #faecc0;
    border: solid 1px #aba58f;
    color: #7c7557;
}
.custom_tooltip.attention div.arrow div.line {
    background: #faecc0;
}
.custom_tooltip.attention div.inner {
    background: #faecc0;
}
.custom_tooltip.attention div.inner span {
    color: #7c7557;
}

.custom_count {
    position: relative;
    height: 24px;
    padding: 0 20px;
    display: inline-block;
    font-size: 0 !important;
}
.custom_count input {
    background: #fff;
    height: 24px;
    line-height: 22px;
    padding: 0 3px;
    width: 44px;
    text-align: center;
    color: #4c4c4c;
    font-weight: normal;
    font-size: 12px !important;
    border: none;
}
.custom_count em {
    display: block;
    position: absolute;
    top: 0;
    font-size: 11px;
    font-style: normal;
    color: #fff;
    width: 24px;
    height: 24px;
    line-height: 24px;
    
    border-radius: 3px;
    text-align: center;
    vertical-align: middle;
    cursor: pointer;

    background: #66A437;
}
.custom_count em.next {
    right: 0;
}
.custom_count em.prev {
    left: 0;
}
.custom_count em.prev.disabled {
    opacity: .5;
}

.product_count
{
    height: 58px;
    padding: 0 58px;

    max-width: 170px;
}

.product_count input {
    background: #fff;
    height: 58px;
    line-height: 56px;
    padding: 0 3px;
    width: 100%;
    text-align: center;
    color: #4c4c4c;
    font-weight: normal;
    font-size: 16px !important;
    border: none;
    color: #66A437;
}
.product_count em {
    display: block;
    position: absolute;
    top: 0;
    font-size: 20px;
    font-style: normal;
    color: #66A437;
    width: 58px;
    height: 58px;
    line-height: 56px;
    
    border-radius: 0;
    text-align: center;
    vertical-align: middle;
    cursor: pointer;

    background: #fff;
}

.custom_upload {
    position: relative;
    margin: 0 0 20px;
    padding: 0 0 0 30px;
    background: url(../images/upload.svg) no-repeat 0 50%;
}
.custom_upload em {
    display: inline-block;
    font-style: normal;
    font-size: 11px;
    margin: 0 0 3px 0;
    border-bottom: solid 1px #000;
}
.custom_upload .but {
    display: none;
    padding: 10px 30px 10px 60px;
    background: #fff url(../images/upload.png) no-repeat 20px 50%;
    border: solid 1px #c9cccf;
    box-shadow: rgba(0, 0, 0, 0.15) 0px 3px 7px;
    font-size: 16px;
    color: #073179;
}
.custom_upload input.text {
    display: none;
    padding: 10px 0;
    border: none;
    font-size: 11px;
    color: #000;
    position: absolute;
    top: 0;
    left: 30px;
    width: 100%;
    height: auto;
    border: none;
    
    white-space: nowrap; 
    overflow: hidden; 
    text-overflow: ellipsis; 
    text-decoration: none;
}
.custom_upload input.file {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
    z-index: 200;
}
.custom_upload.active .but {
    opacity: 0;
}
.custom_upload.active .text {
    display: block;
}
.custom_tab {
    margin: 0 0 20px;
}
.custom_tab .tab_menu li a {
    display: block;
    padding: 10px;
    border: solid 1px #eee;
    font-size: 15px;
}
.custom_tab .tab_menu li a:hover {
    background: #eee;
}
.custom_tab .tab_menu li.active a {
    background: #eee;
}
.custom_tab .tab {
    display: none;
    padding: 10px;
}

.custom_tab .tab_menu.tab_order
{
    border-radius: 5px;
    overflow: hidden;
    border: solid 1px #a6a6a6;
}
.custom_tab .tab_menu.tab_order li
{
    width: 50%;
    text-align: center;
    padding: 0px;
}
.custom_tab .tab_menu.tab_order li a
{
    border: none;
}
.custom_tab .tab_menu.tab_order li a
{
    border-radius: 4px;
    border: none;
    color: #fff;
    text-decoration: none;
    font-size: 10px;
    padding: 8px;
    display: block;
    color: #a6a6a6;
}
.custom_tab .tab_menu li.active a {
    background: #66A437;
    color: #fff;
}

.cmbox div {
    background: #eaecef url(select.png) no-repeat 100% 16px !important;
}
.cmbox ul {
    background: #eaecef;
}
.custom_message {
    z-index: 901;
    min-height: 20px;
    position: absolute;
    top: 30px;
    left: 10px;
    width: 100%;
    max-width: 320px;
    padding: 10px 30px 10px 10px;
    background: #fff;
    box-shadow: rgba(0, 0, 0, 0.28) 0px 3px 16px;
}
.custom_message a {
    color: #2a6e7f;
    font-size: 14px;
    font-style: italic;
    display: inline-block;
    padding: 0;
}
.custom_message a:hover {
    color: #000;
}
.custom_message a.close {
    width: 15px;
    height: 15px;
    position: absolute;
    top: 10px;
    right: 10px;
    padding: 0;
    display: block;
    opacity: 1;
    background-image: url(../images/cookie_close.png);
    background-repeat: no-repeat;
}
.custom_message a.close:hover {
    background-position: 0 100%;
}
.custom_message a.close span {
    display: none;
}
.custom_message .inner {
    max-width: 1200px;
    margin: 0 auto;
    font-size: 13px;
}
.custom_message .inner > div {
    margin-bottom: 10px;
}
.chk_cnt {
    font-size: 11px;
    margin-top: 5px;
    margin-bottom: 10px;
    padding-top: 5px;
    position: relative;
    padding-left: 19px;
    color: #333;
}
.chk_cnt label {
    padding: 0;
    position: absolute !important;
    top: 0;
    left: 0;
    width: 25px;
    height: 28px;
}
.chk_cnt label input {
    display: none;
}
.chk_cnt a {
    
    color: #66a437;
    text-decoration: none;
}
.chk_cnt a:hover {
    color: #000;
}
.chk_cnt strong {
    font-size: 14px;
    font-weight: bold;
    display: inline-block;
    padding: 2px 0 0 0;
}
.chk_cnt strong a {
    color: #000;
}
.chk_cnt strong a:hover {
    color: #f13c1f;
}
.chk_cnt .message .chk_cnt {
    font-size: 12px;
}
.chk_cnt .message a {
    font-size: 12px;
    color: #000;
}
.chk_cnt .inner {
    padding: 0;
}
@media (max-width: 1200px) {
    .chk_cnt .inner {
        padding-right: 30px;
    }
}
.review_rating {
    font-size: 18px;
    color: #000;
    padding-right: 30px;
    max-width: 480px;
    width: 100%;
    margin: 20px 0 0;
    padding-top: 5px;
}
.review_rating span.name {
    padding-right: 20px;
    display: block;
    float: left;
    font-size: 14px;
    font-weight: bold;
    margin: 4px 0 0 0;
}
@media (max-width: 400px) {
    .review_rating {
        width: auto;
    }
}
.rating_container {
    overflow: hidden;
    height: 25px;
}
.rating_container .count {
    line-height: 30px;
    vertical-align: middle;
    float: left;
    font-size: 18px;
    font-weight: bold;
}
.rating_container em {
    color: #5387ac;
}
.rate-hover-layer span {
    opacity: 0.8;
}
.rate-base-layer span,
.rate-hover-layer span,
.rate-select-layer span {
    background: url(../images/star.png) no-repeat 50% 50%;
}
.rate-hover-layer span,
.rate-select-layer span {
    background: url(../images/star_hover.png) no-repeat 50% 50%;
}
.rating {
    margin: 0 10px 0 0;
    font-size: 30px;
    line-height: 20px;
}
.star_selected {
    background-image: url(../images/star_selected.png);
}
.star,
.star_hover,
.star_selected {
    background-image: url(../images/star.png);
    background-repeat: no-repeat;
}
.star_hover {
    background-image: url(../images/star_hover.png);
}
label.custom-checkbox {
    margin-bottom: 0;
}
.custom-checkbox > input {
    position: absolute;
    z-index: -1;
    opacity: 0;
    visibility: hidden;
}
.custom-checkbox > span {
    display: inline-flex;
    align-items: center;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    font-size: 11px;
    color: #333;
}
.custom-checkbox > span::before {
    content: "";
    display: inline-block;
    width: 1.2em;
    height: 1.2em;
    flex-shrink: 0;
    flex-grow: 0;
    background: #fff;
    border: 1px solid #333333;
    border-radius: 3px;
    margin-right: 0.5em;
    background-repeat: no-repeat;
    background-position: center center;
}
.custom-checkbox > input:not(:disabled):not(:checked) + span:hover::before {
    border-color: #66a437;
}
.custom-checkbox > input:not(:disabled):active + span::before {
    background-color: #66a437;
    border-color: #66a437;
}
.custom-checkbox > input:focus + span::before {
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}
.custom-checkbox > input:focus:not(:checked) + span::before {
    border-color: #66a437;
}
.custom-checkbox > input:checked + span::before {
    background-color: #66a437;
    border-color: #66a437;
    background-image: url(../images/checkbox_active.png);
}
.custom-checkbox > input:disabled + span::before {
    background-color: #e9ecef;
}
label.custom-radio {
    margin-bottom: 14px;
	border-radius: 8px;
	padding: 14px 16px;
	background: #E9EAEB;
	border: solid 1px #E9EAEB;
}



.custom-radio > input {
    position: absolute;
	
    z-index: -1;
    opacity: 0;
    visibility: hidden;
}
.custom-radio > span {
    display: inline-flex;
	flex-flow: row wrap;
    align-items: center;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.custom-radio span i {
	display: block;
	width: 100%;
	font-style: normal;
	font-size: 11px;
	padding-top:4px;
	font-weight: 300;
}

.custom-radio > span::before {
    content: "";
    display: inline-block;
    width: 1.2em;
    height: 1.2em;
    flex-shrink: 0;
    flex-grow: 0;
    border: 1px solid #BFBFBF;
    border-radius: 50%;
    margin-left: 0.5em;
 
    background-repeat: no-repeat;
    background-position: center center;
	background-size: calc(100% - 4px) calc(100% - 4px); /* Уменьшаем на 2px (по 1px с каждой стороны) */
	
	position: absolute;
	right:14px;
}
.custom-radio > input:not(:disabled):not(:checked) + span:hover::before {
    border-color: #FF9810;
}
.custom-radio > input:not(:disabled):active + span::before {
    border-color: #FF9810;
}
.custom-radio > input:focus + span::before {
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}
.custom-radio > input:focus:not(:checked) + span::before {
    border-color: #FF9810;
}
.custom-radio > input:checked + span::before {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-6 -6 12 12'%3e%3ccircle r='6' fill='%23FF9810'/%3e%3c/svg%3e");
	border: 1px solid #FF9810;
}
.custom-radio > input:disabled + span::before {
    background-color: #e9ecef;
}
.ui-widget.ui-widget-content {
    border: 1px solid #c5c5c5;
}
.ui-widget-content {
    border: 1px solid #dddddd;
    background: #ffffff;
    color: #000;
}
.ui-widget-content a {
    color: #000;
}
.ui-widget-header {
    border: 1px solid #dddddd;
    background: #e9e9e9;
    color: #000;
    font-weight: bold;
}
.ui-widget-header a {
    color: #000;
}
.ui-state-default,
.ui-widget-content .ui-state-default,
.ui-widget-header .ui-state-default,
.ui-button,
html .ui-button.ui-state-disabled:hover,
html .ui-button.ui-state-disabled:active {
    border: 1px solid #c5c5c5;
    background: #f6f6f6;
    font-weight: normal;
    color: #000;
}
.ui-state-default a,
.ui-state-default a:link,
.ui-state-default a:visited,
a.ui-button,
a:link.ui-button,
a:visited.ui-button,
.ui-button {
    color: #000;
    text-decoration: none;
}
.ui-state-hover,
.ui-widget-content .ui-state-hover,
.ui-widget-header .ui-state-hover,
.ui-state-focus,
.ui-widget-content .ui-state-focus,
.ui-widget-header .ui-state-focus,
.ui-button:hover,
.ui-button:focus {
    border: 1px solid #cccccc;
    background: #ededed;
    font-weight: normal;
    color: #000;
}
.ui-state-hover a,
.ui-state-hover a:hover,
.ui-state-hover a:link,
.ui-state-hover a:visited,
.ui-state-focus a,
.ui-state-focus a:hover,
.ui-state-focus a:link,
.ui-state-focus a:visited,
a.ui-button:hover,
a.ui-button:focus {
    color: #2b2b2b;
    text-decoration: none;
}
.ui-visual-focus {
    box-shadow: 0 0 3px 1px #5e9ed6;
}
.ui-state-active,
.ui-widget-content .ui-state-active,
.ui-widget-header .ui-state-active,
a.ui-button:active,
.ui-button:active,
.ui-button.ui-state-active:hover {
    border: 1px solid #2a6e7f;
    background: #2a6e7f;
    font-weight: normal;
    color: #ffffff;
}
.ui-icon-background,
.ui-state-active .ui-icon-background {
    border: #2a6e7f;
    background-color: #ffffff;
}
.ui-state-active a,
.ui-state-active a:link,
.ui-state-active a:visited {
    color: #ffffff;
    text-decoration: none;
}
.ui-state-highlight,
.ui-widget-content .ui-state-highlight,
.ui-widget-header .ui-state-highlight {
    border: 1px solid #dad55e;
    background: #fffa90;
    color: #777620;
}
.ui-state-checked {
    border: 1px solid #dad55e;
    background: #fffa90;
}
.ui-state-highlight a,
.ui-widget-content .ui-state-highlight a,
.ui-widget-header .ui-state-highlight a {
    color: #777620;
}
.ui-slider-horizontal {
    height: 0.5em !important;
    border: none !important;
}
.ui-slider .ui-slider-handle {
    border-radius: 50%;
    background: #2a6e7f;
    border: none;
    width: 1.4em !important;
    height: 1.4em !important;
    box-shadow: rgba(0, 0, 0, 0.2) 0 0 2px;
    outline: none;
}
.ui-slider-horizontal .ui-slider-handle {
    top: -0.4em !important;
    margin-left: -0.7em !important;
}
.ui-slider .ui-slider-range {
    background: #2a6e7f;
}
.jcarousel-control-prev,
.jcarousel-control-next {
    position: absolute;
    top: 0;
    width: 30px;
    height: 100%;
    opacity: 0.5;
}
.jcarousel-control-prev.active,
.jcarousel-control-next.active {
    opacity: 0.999;
}
.carusel_preview {
    padding: 0 35px;
    margin: 0 auto 30px;
    position: relative;
}
.carusel_preview > div {
    position: relative;
    overflow: hidden;
    width: 100%;
}
.carusel_preview ul {
    width: 20000em;
    position: relative;
    list-style: none;
    margin: 0;
    padding: 0;
}
.carusel_preview ul li {
    width: 142px;
    float: left;
    margin: 0;
    padding: 0 0 10px;
}
.carusel_preview ul li em {
    display: block;
    font-style: normal;
}
.carusel_preview ul li a {
    display: block;
}
.carusel_preview img {
    display: block;
    width: 100%;
    height: auto !important;
}
.carusel_preview .jcarousel-control-prev {
    left: 0;
    background: url(../images/jprev.png) no-repeat 50% 50%;
}
.carusel_preview .jcarousel-control-next {
    right: 0;
    background: url(../images/jnext.png) no-repeat 50% 50%;
}
.prod_preview {
    padding: 40px 0;
    margin: 0 auto;
    position: absolute;
    top: 20px;
    left: 0px;
    width: 80px;
}
.prod_preview {
    height: 540px;
    width: 80px;
}
.prod_carousel ul {
    width: 80px;
    padding: 0;
}
.prod_carousel ul li {
    padding: 0 0 20px;
    width: 80px;
}
.prod_carousel li em {
    margin: 0;
}
.prod_carousel li a,
.prod_carousel li a:hover {
    display: block;
    border: solid 1px #fff;
}
.prod_carousel li img {
    border: solid 1px #fff;
    width: 100%;
    height: auto;
}
.prod_carousel li.active img {
    border: solid 1px #000000;
    position: relative;
}
.prod_preview .jcarousel-control-prev,
.prod_preview .jcarousel-control-next {
    width: 30px;
    height: 100%;
}
.prod_preview .jcarousel-control-prev {
    background: url(../images/gal_prev.png) no-repeat 50% 50%;
    width: 100%;
    height: 20px;
    top: 0;
}
.prod_preview .jcarousel-control-prev.active:hover {
    opacity: 0.5;
}
.prod_preview .jcarousel-control-next {
    background: url(../images/gal_next.png) no-repeat 50% 50%;
    width: 100%;
    height: 20px;
    top: auto;
    bottom: 0;
}
.prod_preview .jcarousel-control-next.active:hover {
    opacity: 0.5;
}
@media (max-width: 992px) {
    .prod_preview {
        padding: 30px 0;
    }
    .prod_carousel {
        height: 400px;
        width: 70px;
    }
}
@media (max-width: 767px) {
    .prod_preview {
        width: 60px;
    }
    .prod_preview {
        width: 60px;
    }
    .prod_carousel {
        height: 300px;
    }
    .prod_carousel ul {
        width: 60px;
    }
    .prod_carousel ul li {
        width: 60px;
    }
}
@media (max-width: 567px) {
    .prod_carousel {
        height: 200px;
    }
}
.main_preview {
    padding: 0 0;
    margin: 0 -10px 20px;
    position: relative;
}
.main_carousel li {
    padding: 0 10px;
}
.main_preview li {
    width: 200px;
}
.main_carousel img {
    box-shadow: rgba(0, 0, 0, 0.2) 0 5px 5px;
}
.main_preview .jcarousel-control-prev {
    left: -30px;
}
.main_preview .jcarousel-control-next {
    right: -30px;
}
@media (max-width: 1240px) {
    .main_preview {
        padding: 0 35px;
        margin: 0 -10px 20px;
        position: relative;
    }
    .main_preview .jcarousel-control-prev {
        left: 0;
    }
    .main_preview .jcarousel-control-next {
        right: 0;
    }
}
.owl-theme-1 {
    padding: 0 100px;
}
@media (max-width: 1100px) {
    .owl-theme-1 {
        padding: 0 60px;
    }
}
.owl-theme-1 .owl-next {
    background: url(../images/jnext1.png) no-repeat 50% 45% !important;
    width: 30px;
    height: 100%;
    position: absolute;
    right: 0px;
    top: 0;
}
@media (max-width: 1200px) {
    .owl-theme-1 .owl-next {
        right: 10px;
    }
}
.owl-theme-1 .owl-next:hover {
    opacity: 0.5;
}
.owl-theme-1 .owl-prev {
    background: url(../images/jprev1.png) no-repeat 50% 45% !important;
    width: 30px;
    height: 100%;
    position: absolute;
    left: 20px;
    top: 0;
}
@media (max-width: 1200px) {
    .owl-theme-1 .owl-prev {
        left: 10px;
    }
}
.owl-theme-1 .owl-prev:hover {
    opacity: 0.5;
}
.owl-theme-1 .owl-next.disabled,
.owl-theme-1 .owl-prev.disabled {
    opacity: 0.4;
}
.owl-theme-1 .owl-next span,
.owl-theme-1 .owl-prev span {
    display: none;
}


.owl-theme-2
{
    max-width: 320px;
    margin: 0 auto 10px;
}
.owl-theme-2 .owl-nav {
   
    position: absolute;
    width: 100%;
    height: 40px;
    top: 50px;
    margin-top: -20px;
    display: none;
}

.owl-theme-2 .owl-dots {
    text-align: center;
}


.owl-theme-2 .item
{
    height: 290px;
    background-size: cover;
    background-position: 50% 50%;


    border-radius: 10px;
    overflow: hidden;

    box-shadow: 0px 2px 2px rgba(42, 52, 44, 0.2);

    margin: 0 0 4px;
}



.owl-theme-2 button.owl-dot
{
    width: 6px;
    height: 6px;
    background: #D0D0D0;
    display: inline-block;
    margin: 0 3px;
    border-radius: 50%;
}
.owl-theme-2 button.owl-dot.active
{

    background: #767676;
    
}




.owl-theme-3
{
    max-width: 320px;
    margin: 0 auto 10px;
}
.owl-theme-3 .owl-nav {
   
    position: absolute;
    width: 100%;
    height: 40px;
    top: 50px;
    margin-top: -20px;
    display: none;
}

.owl-theme-3 .owl-dots {
    text-align: center;
}


.owl-theme-3 .item
{
    
    background-size: cover;
    background-position: 50% 50%;


    border-radius: 10px;
    overflow: hidden;

    box-shadow: 0px 2px 2px rgba(42, 52, 44, 0.2);

    margin: 0 0 4px;

    height: 140px;
}

.owl-theme-3 .item .text
{
    background: url(../images/csfon.svg) no-repeat;
    
    font-size: 11px;
    color: #fff;
    height: 100%;

    padding: 15px 0 0 15px;
}
.owl-theme-3 .item .text .name
{
    font-weight: 500;
    font-size: 22px;
    line-height: 140%;
    color: #fff;
    margin-bottom: 10px;
}


.owl-theme-3 button.owl-dot
{
    width: 6px;
    height: 6px;
    background: #D0D0D0;
    display: inline-block;
    margin: 0 3px;
    border-radius: 50%;
}
.owl-theme-3 button.owl-dot.active
{
    background: #767676;
}


.main_cat
{
    max-width: 290px;
    margin: 0 auto;

    display: flex;
    display: -webkit-flex;
    flex-flow: row wrap;
	
	justify-content: space-between;
    -ms-flex-pack: justify;
    -webkit-box-pack: justify;
    align-items: center;
    -webkit-box-align: center;
}



.main_cat_item
{
    width: 45%;

    text-align: center;
    text-decoration: none;

    font-size: 14px;
    line-height: 125%;
    color: #333333;

    margin: 0 0 10px;

}

.main_cat_item a, .main_cat_item a:hover
{
    display: block;

    font-size: 14px;
    line-height: 125%;
    color: #333333;
    text-decoration: none;

}
.main_cat_item a:hover
{
    color: #000;
}

.main_cat_item a span, .main_cat_item a:hover span
{
    background-color: #66A437;
    background-repeat: no-repeat;
    background-position: 50% 50%;
    display: block;
    margin-top: 10px;
    box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.25);

    border-radius: 5px;
    transition: all .5s;
    height: 115px;
}
.main_cat_item a:hover span
{
    box-shadow: 0 0 0 rgba(0, 0, 0, 0);
}

input,
textarea {
    font-family: var(--ser-font);
    color: #000;
    font-size: 14px;
    border: none;
}
*::-moz-placeholder {
    opacity: 0.5 !important;
}
*:-ms-input-placeholder {
    opacity: 0.5 !important;
}
*::placeholder {
    opacity: 0.5 !important;
}
select,
button,
button:focus {
    outline: none;
}
label,
.label,
.custom_select {
    padding: 0;
    margin: 0 0 14px 0;
}
.rem {
    margin: 10px 0;
    font-size: 12px;
    font-weight: normal;
    text-align: center;
}
.rem span {
    color: #d7001c;
    font-size: 14px;
}

label,
.label {
    display: block;
    position: relative;
}
label > span,
.label > span {
    display: none;
    margin-top: 3px;
}
label.error > span,
.label.error > span {
    display: block;
    margin-top: 3px;
	
	background-image: url(../images/error_point.svg);
	background-repeat: no-repeat;
	font-size: 12px;
	font-weight: 300;
	padding-left:15px;
	
}
label em,
.label em {
    display: block;
    font-style: normal;
    color: #535862;
	margin-bottom: 8px;
	font-weight:300;
	font-size: .8em;
    
}
label em span,
.label em span {
    display: inline;
    color: #fd5a5a;
}
label.anim,
.label.anim {
    margin: 0 0 25px 0;
}
label.anim em,
.label.anim em {
    display: block;
    position: absolute;
    top: 7px;
    left: 1px;
    padding: 1px 9px 1px 9px;
    z-index: 5;
}
label.error span,
.label.error span,
.custom_select span {
    color: #EB0F0F;
    font-size: 11px;
}
.textbox,
.custom_select div,
.dropbox,
.custom-select,
.divbox {
    width: 100%;
    padding: 11px 16px 11px;
    border: solid 1px #E9EAEB;
   
    outline: none;
    background-color: #E9EAEB;
    border-radius: 8px;
    color: #333333;
	
	font-size:12px;
}

.searchbox
{
	padding-left: 30px;
	background-image: url(../images/search.svg);
	background-repeat: no-repeat;
	background-position: 8px 50%;
	
}

select.selectbox {
    width: 100%;
    padding: 10px 12px;
    background: #fff;
    border: solid 1px #cecece;
    border-radius: 0;
    outline: none;
    padding-right: 40px;
    -webkit-appearance: none;
    -moz-appearance: none;
    background: #fff url(../images/selectbox.png) no-repeat 100% 50%;
    font-size: 14px;
    color: #585858;
}
option:hover {
    box-shadow: 0 0 10px 100px orange inset;
}

.custom_select div {
    
}
.textbox::-webkit-input-placeholder {
    color: #333333;
    opacity: 0.5;
}
.textbox:-moz-placeholder {
    color: #333333;
    opacity: 0.5;
}
.textbox::-moz-placeholder {
    color: #333333;
    opacity: 0.5;
}
.textbox:-ms-input-placeholder {
    color: #333333;
    opacity: 0.5;
}

textarea.textbox {
    width: 100%;
    height: 103px;
    border-radius: 5px;
}
.textbox.tsearch {
    background: #fff url(../images/tsearch.png) no-repeat 100% 50%;
    padding-right: 40px;
}
.textbox.tdrop {
    background: #fff url(../images/tdrop.png) no-repeat 100% 50%;
    padding-right: 40px;
}
input.count {
    border: solid 1px #cecece;
    width: 40px;
    padding: 2px 4px;
}
.dropbox {
    -webkit-appearance: none;
    -moz-appearance: none;
    background: #fff url(../images/tdrop.png) no-repeat 100% 50%;
    font-size: 14px;
    color: #585858;
}
.dropbox::-ms-expand {
    display: none;
}
.custom_select ul {
    background-color: rgb(233, 234, 235);
    border-radius: 8px;
}
.custom_select ul li a,
.custom_select ul li a:hover {
    color: #000;
    padding: 10px 10px;
    font-size: 12px;
}
.custom_select ul li a:hover {
    
}
.custom_select div span.icon {
    color: #656e78;
}
.custom_radio span.icon,
.custom_colorbox span.icon {
    background: #fff;
    border: solid 1px #babfc8;
}
.custom_radio.active span.icon span {
    background: #0088cc;
}
.custom_checkbox span.icon {
    border: solid 1px #e1eaf5;
}
.custom_checkbox.active span.icon span {
    color: #0088cc;
}

.rate-base-layer span,
.rate-hover-layer span,
.rate-select-layer span {
    color: #fd5a5a;
}
.rate-hover-layer span {
    opacity: 0.5;
}

label.error input,
.label.error input,
label.error textarea,
.label.error textarea label.error select,
.label.error select,
.custom_select.error div {
    box-shadow: none;
}
.submit_button,
.submit_button_alt {
    letter-spacing: 10px;
    padding: 0;
    margin-top: 20px;
    text-align: center;
}
.submit_button input,
.submit_button a,
.submit_button a:hover,
.submit_button button,
.submit_button button:hover,
.submit_button2 input,
.submit_button2 a,
.submit_button2 a:hover,
.submit_button2 button,
.submit_button2 button:hover,
.submit_button3 input,
.submit_button3 a,
.submit_button3 a:hover,
.submit_button3 button,
.submit_button3 button:hover,
.submit_button4 input,
.submit_button4 a,
.submit_button4 a:hover,
.submit_button4 button,
.submit_button4 button:hover,
.submit_button_alt input,
.submit_button_alt a,
.submit_button_alt a:hover,
.submit_button_alt button,
.submit_button_alt button:hover {
    border: solid 1px #FF9810;
    background: #FF9810;
    border-radius: 8px;
    color: #fff;
    cursor: pointer;
    letter-spacing: normal;
    -webkit-appearance: none;
    
    font-weight: 500;
    overflow: visible;
    padding: 14px 16px;
    margin: 0 0 20px;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.5s;
	
	display: flex;
	
	justify-content:center;
    
}


.submit_button a:hover, .submit_button a:focus, .submit_button  input:hover {
    background: #fff;
    color: #FF9810;
}

.submit_button2 a, .submit_button2 input,
.submit_button2 a:hover, .submit_button2 a:focus, .submit_button2 input:hover {
    background: #EC4A0A;
}
.submit_button2 a:hover, .submit_button2 a:focus, .submit_button2 input:hover {
    background: #fff;
    color: #EC4A0A;
}

.button input,
.button a,
.button a:hover,
.button button,
.button button:hover {
    background: #fd5a5a;
    color: #fff;
    border: solid 1px #fd5a5a;
    cursor: pointer;
    letter-spacing: normal;
    -webkit-appearance: none;
    border-radius: 0;
    font-weight: normal;
    overflow: visible;
    padding: 8px 15px;
    margin: 0 0 10px;
    font-size: 14px;
    text-transform: uppercase;
    transition: all 0.5s;
}
.button a,
.button a:hover {
    text-decoration: none;
    display: inline-block;
}
.button input:hover,
.button a:hover,
.button button:hover {
    background: #fff;
    color: #fd5a5a;
}


.mCustomScrollBox {
    padding-right: 10px;
}
.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar,
.mCSB_scrollTools .mCSB_draggerRail {
    width: 8px;
    border-radius: 0px;
}
.mCS-minimal.mCSB_scrollTools .mCSB_draggerRail,
.mCS-minimal-dark.mCSB_scrollTools .mCSB_draggerRail {
    background: #ebf1f3;
}
.mCS-minimal.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
    background: #002d7b !important;
}
.mCSB_dragger .mCSB_dragger_bar:hover,
.mCSB_scrollTools_onDrag .mCSB_dragger_bar {
    opacity: 0.8;
}

.torder_h2
{
    padding: 10px 0;
    font-size: 16px;
    line-height: 125%;
    color: #333333;
}
.torder_h3
{
    padding: 10px 0;
    font-size: 16px;
    line-height: 125%;
    color: #333333;
}

.torder_adr
{
    background: url(../images/adr_i.svg) no-repeat 0 10px;
    padding-left: 20px;
}
.torder_adr_link
{
    text-align: right;
    font-size: 11px;
}
.torder_adr_link a, .torder_adr_link a:hover
{
    color: #333;
}
.torder_adr_link a:hover
{
    text-decoration: none;
}

.lk_menu
{
    background: #FFFFFF;
    box-shadow: 0px 0px 2px 1px rgba(51, 51, 51, 0.15);
    font-size: 0;
    margin: -15px -16px 20px;
    position: relative;
}
.lk_menu a, .lk_menu a:hover
{
    display: inline-block;
    vertical-align: top;
    width: 25%;
    text-align: center;
    font-size: 11px;
    padding: 11px 0;
    color: #333333;
    text-decoration: none;
}
.lk_menu a.active, .lk_menu a.active:hover
{
    background: #66a437;
    color: #fff;

    
}
.lk_menu a span.icon, .lk_menu a:hover span.icon
{
    display: block;
    margin: 0 0 8px;

    height: 27px;
    overflow: hidden;
}
.lk_menu a span.name, .lk_menu a:hover span.name
{
    display: block;
}

.card_name
{
    text-align: center;
    margin: 0 0 20px;
}

.torder_i1
{
    background: url(../images/adr_i.svg) no-repeat 0 50%;
    padding: 8px 0 8px 30px;

    font-weight: 500;
    font-size: 14px;
    line-height: 125%;
    color: #333333;
}
.torder_i2
{
    background: url(../images/time_i.svg) no-repeat 0 50%;
    padding: 8px 0 8px 30px;

    font-weight: 500;
    font-size: 14px;
    line-height: 125%;
    color: #333333;
}

.product_bas .submit_button
{
    margin: 0;
}
.product_bas .submit_button input
{
    margin: 0 0 0;
    width: 100%;
    border-radius: 0;
    height: 60px;
    font-weight: 500;
    font-size: 14px;
}
.product_bas .submit_button input:disabled
{
    background: #f6f6f6;
    border-color: #f6f6f6;
    color: #949494;
}
.product_price_t1
{
    font-weight: 500;
    font-size: 14px;
    color: #333333;


    width: 100%;

    height: 20px;
    overflow: hidden;
}
.product_price_t2
{
    font-weight: 500;
    font-size: 14px;
    color: #66A437;

    width: 100%;

    height: 20px;
    overflow: hidden;
}
.order
{

}


.news_item
{
    margin: 0 0 20px;
    overflow: hidden;
    border-radius: 5px;
    max-width: 300px;
    box-shadow: rgba(0, 0, 0, .2) 0 2px 4px;
}
.news_item_pic
{

}
.news_item_pic img
{
    width: 100%;
    height: auto;
}
.news_item_text
{
    padding: 10px;
    background: #F6F6F6;
    font-weight: 500;
    font-size: 14px;
}
    .news_item_text a, .news_item_text a:hover
    {
        display: block;
        text-decoration: none;
        color: #000;
    }
.news_item_date
{
    font-weight: 500;
    font-size: 11px;
    line-height: 125%;
    color: #919090;
    margin: 0 0 8px;
}

.newsdetail
{
    max-width: 567px;

}
.news_pic
{
    margin: -16px -16px 0;
    position: relative;
}
.news_pic img
{
    width: 100%;
}
.news_name
{
    background: #F6F6F6;
    padding: 16px;
    font-weight: bold;
    font-size: 14px;
    margin: 0 -16px 16px;
}

.wsw
{
    font-size: 14px;
    color: #333333;
}
.invite_cnt
{
    margin: 0 auto;
    max-width: 567px;
}
.invite
{
    margin: -16px -16px 35px;
    padding: 25px;
    position: relative;
    background: #66A437;
    
}
.invite_icon
{
    background: url(../images/invite_icon.svg) no-repeat;
    width: 60px;
    height: 60px;
    margin: 0 auto 30px;
}
.invite_text
{
    font-weight: 500;
    font-size: 22px;
    line-height: 140%;
    text-align: center;
    color: #fff;
    margin: 0 0 15px;
}
.invite_link
{
    text-align: center;
}
.invite_link a, .invite_link a:hover
{
    font-size: 11px;
    color: #fff;
}
.invite_social_name
{
    font-weight: 500;
    font-size: 14px;
    line-height: 125%;
    text-align: center;
    margin: 0 0 20px;
    color: #333333;
}

.invite_social
{
    text-align: center;
    margin: 0 0 20px;
}
.invite_social a, .invite_social a:hover
{
    display: inline-block;
    width: 28px;
    height: 28px;

    margin: 0 5px;
    transition: all .5s;
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-size: contain;
}
.invite_social a:hover, .invite_social a:focus
{
    opacity: .5;
}

.invite_social a.soc1, .invite_social a.soc1:hover, .invite_social a.soc1:focus
{
    background-image: url(../images/soc21.svg);
}
.invite_social a.soc2, .invite_social a.soc2:hover, .invite_social a.soc2:focus
{
    background-image: url(../images/soc22.svg);
}
.invite_social a.soc3, .invite_social a.soc3:hover, .invite_social a.soc3:focus
{
    background-image: url(../images/soc23.svg);
}
.invite_social a.soc4, .invite_social a.soc4:hover, .invite_social a.soc4:focus
{
    background-image: url(../images/soc24.svg);
}
.invite_social a.soc5, .invite_social a.soc5:hover, .invite_social a.soc5:focus
{
    background-image: url(../images/soc25.svg);
}
.invite_social a.soc6, .invite_social a.soc6:hover, .invite_social a.soc6:focus
{
    background-image: url(../images/soc26.svg);
}


.card_menu
{
    box-shadow: 0px 0px 2px 1px rgba(51, 51, 51, 0.15);
    margin: 0 -16px !important;
    position: relative;
}
.card_menu li
{
    margin: 0;
    padding: 0;
    font-size: 20px;
    width: 33.33%;

    text-align: center;

    font-weight: 500;
    font-size: 20px;
    line-height: 140%;
    color: #333333;
    display: block;
    padding: 20px 0 !important;

    cursor: pointer;
}
.card_menu li.active
{
    background: #66A437;
    color: #fff;
}
.card_menu li:hover
{
    opacity: .8;
}


.card_pic
{
    margin: 20px 0;
    text-align: center;
}


.card_link
{
    text-align: center;
    margin: 0 0 20px;
}
.card_link a, .card_link a:hover
{
    font-size: 11px;
    color: #333;
    
}
.card_link a:hover
{
    text-decoration: none;
}

.about_link
{
    background: url(../images/info.svg) no-repeat 0 8px;
    margin: 0 0 10px;
    padding: 0 0 0 20px;
}
.about_link a, .about_link a:hover
{
    font-size: 11px;
    color: #333333;
}
.about_link a:hover
{
    text-decoration: none;
}

.about_name
{
    background: #F6F6F6;
    padding: 16px;
    font-weight: bold;
    font-size: 14px;
    margin: -16px -16px 16px;
    position: relative;
}
.about_pic
{
    margin: 0 -16px 16px;
    position: relative;
}
.about_pic img
{
    width: 100%;
}
.date_parent
{
    position: relative;

}
.date_info
{
    background: #F6F6F6;
    box-shadow: 0px 1.5px 1.5px rgba(42, 52, 44, 0.2);
    border-radius: 0px 0px 5px 5px;

    height: 0;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
   
    font-size: 11px;
    line-height: 140%;
    color: #333333;

    

    z-index: 5;

    transition: height .5s;

    overflow: hidden;
}
.date_info_inner
{
    border-top: solid 2px #66A437;
    padding: 8px;
}
.date_parent.active .date_info
{
    height: auto;
}

.cargo_form .textbox {
    background-color: #fff;
}

.cargo_select
{
	border-radius:12px;
	margin-bottom:20px;
	
	border: solid 1px #FF9810;
	
	position: relative;
	
	padding: 16px;
	
	cursor: pointer;
}
.cargo_select_name
{
	margin-bottom:6px;
	font-size: 12px;
	font-weight: normal;
	color: #535862
}

.cargo_select_value
{
}


.cargo_select_cnt
{
	padding-right: 30px;
	position: relative;
}
.cargo_select_cnt::after
{
	content:"";
	display:block;
	
	width:24px;
	height:24px;

	background: url(../images/select_icon.svg);
	
	position: absolute;
	top: calc(50% - 12px);
	right: 0;
	
	transition: all .5s;
	
}

.cargo_select:hover .cargo_select_cnt::after,
.cargo_select.active .cargo_select_cnt::after
{
	transform: rotate(90deg);
}

.cargo_select_list
{
	border-radius:12px;
	border: solid 1px #FF9810;
	
	background: #fff;
	
	position: absolute;
	top: calc(100% - 1px);
	left: 0;
	width:100%;
	
	padding: 16px;
	z-index: 100;
	display: none;
	
	max-height:100px;
	overflow:auto;	
}

.cargo_select.active .cargo_select_list
{
	display: block;
}

.cargo_select_list_item
{
	padding: 8px 0;
	font-size: 14px;
}

.cargo_select_list_item:hover
{
	opacity: .5;
}

.profileid
{
	display:flex;
	justify-content: center;
	margin-bottom:18px;
}
.profileid span
{
	display:block;
	padding:4px 10px;
	
	background-color:#FFFAEB;
	border: solid 1px #FF9810;
	color:#FF9810;
	border-radius: 20px;
	
	font-size:12px;
}

.profile_text_1
{
	font-size:14px;
	margin-bottom:4px
}

.profile_tag
{
	display:flex;
	flex-flow: row wrap;
	gap:10px;
	
	margin-bottom:20px;
}

.profile_tag span
{
	border-radius:20px;
	
	color:#fff;
	background-color: #FF9810;
	font-size:12px;
	font-weight: 300;
	padding: 4px 10px;
}

.profile_text_2
{
	color: #535862;
	font-size: 12px;
}
.profile_text_3
{
	font-size:14px;
	margin-bottom:4px;
	margin-bottom:15px;
}

.profile_info
{
	display:flex;
	flex-flow: row wrap;
	gap:10px 40px;
	
	margin-bottom:34px;
}

.profile_info_item span
{
	color: #535862;
	font-size: 12px;
	display:block;
	margin-bottom: 4px;
}

.profile_info_item div
{
}

.profile_status
{
}

.profile_status_item
{
	position:relative;
	padding: 0 0 0 35px;
	font-size:14px;
	min-height: 50px;
}
.profile_status_item::after
{
	display:block;
	content:"";
	width:18px;
	height:18px;
	
	border-radius:50%;
	background: #E9EAEB;
	
	position: absolute;
	top:0;
	left:0;
}

.profile_status_item::before
{
	display:block;
	content:"";
	width:2px;
	height: calc(100% - 22px);
	
	background: #E9EAEB;
	
	position: absolute;
	top:20px;
	left:8px;
}
.profile_status_item:last-child::before
{
	display:none;
}

.profile_status_item.active::after
{
	background: url(../images/profile_point.svg);
}
.profile_status_item.separate::before
{
	background: #FF9810;
}

.reciving_name
{
	text-align:center;
	margin-top: -20px;
	margin-bottom:20px;
}

.profile_name
{
	text-align: center;
	margin-bottom:10px;
	font-size: 16px;
	font-weight:bold;
}
.profile_mail
{
	text-align: center;
	font-size:12px;
	margin-bottom:16px;
	color: #535862;
}

.profile_data
{
	display:flex;
	flex-flow: row wrap;
	gap:16px;
}

.profile_data_item
{
	padding:20px 10px 10px 10px;
	background-color: #FFFAEB;
	
	background-position: calc(100% - 8px) 8px;
	background-repeat: no-repeat;
	
	width: calc(50% - 8px);
	border-radius:8px;
	
	font-weight:normal;
	font-size:14px;
}

.profile_data_item em{
	font-style: normal;
	font-size:12px;
	color: #535862;
	display:block;
	margin-bottom:4px;
}