* {margin: 0; padding: 0;}
html {height: 100%}
input[type='submit'],
input[type='button'],
input[type='text'],
input[type='email'],
button {-webkit-appearance: none;}
.statistic {position: absolute; top: 0;}

body {
	color: #444444;
	font-size: 12px;
	font-family: 'Arimo', Arial, sans-serif;
	background: url(../images/body.png) repeat-x;
	position: relative;
}
#wrapper {position: relative; max-width: 1060px;	margin: 0 auto;}
.content {padding-top: 10px; display: flex; justify-content: space-between;}
#container {max-width: 575px; flex-grow: 1; padding-bottom: 20px;}

/*###########################  Header  #######################################*/

.header-top {
	display: flex;
	justify-content: space-between;
	align-items: center;
	height: 73px;
	background-color: #00007f;
}
.sitename {font-size: 26px; color: #fff; padding: 0 20px; text-decoration: none;}
.phones {padding-right: 15px; border-right: 1px solid #8999b1;}
.selectors {text-align: right; color: #fff; margin: 0 10px;}
#tools_languages {white-space: nowrap;}
#tools_currencies {margin-top: 7px; white-space: nowrap;}
.currencies_list,
.languages_list {
	min-width: 170px;
	height: 20px;
	box-sizing: border-box;
	padding-right: 20px;
	padding-left: 2px;
	font-size: 12px;
	border: 1px solid #b4c1c4;
	color: #fff;
	margin-left: 10px;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	background: url(../images/select.png) no-repeat center right;
}
.currencies_list option, 
.languages_list option {
    color: black;
	background-color: white;
}
#tools_cart {
	background-color: #fff;
	border-radius: 5px;
	border-bottom-right-radius: 0;
	margin-right: 40px;
	position: relative;
	padding: 7px 25px 7px 10px;
	white-space: nowrap;
}
#tools_cart:before {
	content: '';
	position: absolute;
	width: 23px;
	height: 24px;
	background: url(../images/cart_bg.png);
	bottom: -5px;
	right: -34px;
}
#tools_cart:after {
	content: '';
	position: absolute;
	border: 4px solid #fff;
	border-top-color: transparent;
	border-right-color: transparent;
	bottom: 0;
	right: -8px;
}
#tools_cart a {text-decoration: none; color: #000;}
.header-cart-btn {text-align: right;}
#tools_cart .header-cart-btn a {color: #ff0000; text-decoration: underline; font-weight: bold;}

.top_menu {
	display: flex;
	height: 35px;
	justify-content: space-around;
	background: #414f76;
	background: linear-gradient(to bottom, #414f76 0%, #516294 50%, #45547e 51%, #485783 71%, #4b5b88 100%);
}
.top_menu a {
	color: #fff;
	text-decoration: none;
	flex-grow: 1;
	text-align: center;
	line-height: 35px;
	position: relative;
	margin-right: 1px;
	font-size: 13px;
}
.top_menu a:after {
	content: '';
	position: absolute;
	top: 7px;
	right: -1px;
	height: 22px;
	border-right: 1px solid #6275a9;
}
.top_menu a:last-child {margin: 0;}
.top_menu a:last-child:after {border: 0;}
.top_menu a:hover {
	background: #3e5e99;
	background: linear-gradient(to bottom, #3e5e99 0%, #496fb4 50%, #4162a0 51%, #4468a9 71%, #4468a9 100%);
}

.mob-header-bg {
	display: none;
	height: 250px;
	background: url(../images/main.png) no-repeat top right;
	background-size: cover;
}

.mob-header {
	display: flex;
	align-items: center;
	height: 55px;
	justify-content: space-between;
	width: 100%;
	box-sizing: border-box;
	padding: 0 5px;
	background-color: rgba(59, 73, 115, 0.6);
	border-bottom: 1px solid #fff;
}

.mob-header a {padding: 10px;}
.mob-sitename {color: #fff; font-size: 20px; text-decoration: none;}

.mob-cart {position: relative;}
.mob-cart span {
	position: absolute;
	top: 5px;
	right: 10px;
	width: 16px;
	height: 16px;
	border-radius: 10px;
	text-align: center;
	line-height: 16px;
	background-color: #b80011;
	color: #fff;
	font-size: 9px;
}

/*------------------  Side menu ------------------- */

.body-lock {overflow: hidden;}
.mob-shadow {
	opacity: 0;
	visibility: hidden;
	position: fixed;
	left: 0;
	top: 0;
	width: 100vw;
	height: 100vh;
	background: rgba(0,0,0,0.5);
	transition: visibility 0.5s, opacity 0.5s;
	z-index: 3;
}
.mob-shadow-show {opacity: 1; visibility: visible;}
.mob-side {
	display: none;
	z-index: 4;
	position: fixed;
	left: -80vw;
	top: 0;
	width: 80vw;
	min-height: 100vh;
	transition: left 0.5s;
	background: #fff;
	overflow: hidden;
}
.mob-side-open {left:0;}
.mob-side-content-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 58px;
	background-color: #eee;
	border-bottom: 1px solid #dfdfdf;
	font-size: 16px;
	padding: 0 10px;
}
.btn-menu-close {width: 16px; padding: 7px; cursor: pointer;}
.scroll-bg {
	position: absolute;
	top: 59px;
	bottom: 0;
	width: 80vw;
	overflow: hidden;
}
.scroll {
	position: absolute;
	width: 100%;
	top: 0;
	height: 100%;
	overflow-y: scroll;
}
.mob-side-content-select {padding: 15px 10px; background-color: #f8f8f8; border-bottom: 1px solid #dfdfdf;}
#tools2_currencies {margin-top: 10px;}
.mob-select {
	border: 1px solid #c9c9c9;
	border-radius: 5px;
	box-sizing: border-box;
	width: 100%;
	height: 35px;
	padding: 0 20px 0 10px;
	font-size: 13px;
	color: #646363;
	position: relative;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}
#tools2_languages,
#tools2_currencies {position: relative;}
#tools2_languages:after,
#tools2_currencies:after {
	content: '';
	position: absolute;
	top: 12px;
	right: 10px;
	width: 7px;
	height: 7px;
	border-bottom: 2px solid #a7a7a7;
	border-right: 2px solid #a7a7a7;
	transform: rotate(45deg);
}
.mob-site-links {padding: 10px; margin-bottom: 50px; }
.mob-site-links > a {
	line-height: 40px;
	color: #383333;
	font-size: 16px;
	padding-left: 25px;
	text-decoration: none;
	white-space: nowrap;
}

.mob-list {
	background:url(../images/mob_icon/m_clist.png) no-repeat center left;
	background-size: 18px auto;
	display: block;
	position: relative;
}
.mob-list:after {
	content: '';
	position: absolute;
	top: 16px;
	right: 10px;
	width: 7px;
	height: 7px;
	border-bottom: 2px solid #a7a7a7;
	border-right: 2px solid #a7a7a7;
	transform: rotate(-45deg);
}
.mob-list-open:after {top: 13px; transform: rotate(45deg);}

.mob-list-block {display: none;}
.mob-list-block .side-list-title{display: none;}
.mob-list-block .side-product-list {border: 0; padding: 8px 0 8px 25px; margin: 0;}
.mob-list-block #product_list {margin-bottom: 5px;}
.mob-list-block .side-product-list a {font-weight: normal; font-size: 14px;}

#categories_list a {text-decoration: none; color: inherit;}

.mob-home {background:url(../images/mob_icon/m_home.png) no-repeat center left; background-size: 18px auto;}
.mob-order {background:url(../images/mob_icon/m_ordstat.png) no-repeat center left; background-size: 18px auto;}
.mob-faq {background:url(../images/mob_icon/m_faq.png) no-repeat center left; background-size: 18px auto;}
.mob-contact {background:url(../images/mob_icon/m_contact.png) no-repeat center left; background-size: 18px auto;}
.mob-testim {background:url(../images/mob_icon/m_about.png) no-repeat center left; background-size: 18px auto;}

.mob-side-chat {padding: 0 10px;}
.mob-side-chat #header_online_chat {margin: 10px 0;}
.mob-side-chat #header_online_chat a {display: flex;}

.mob-side-phone {padding: 10px; border-bottom: 1px solid #dfdfdf; background-color: #598df0; text-align: center;}
.mob-side-phone img {max-width: calc(80vw - 20px);}


/*###########################  Footer  #######################################*/

footer {background-color: #d6d6d6;}
.footer-menu {
	max-width: 1060px;
	margin: 0 auto;
	background: #f1f1f1;
	background: linear-gradient(to bottom, #f1f1f1 0%, #e3e3e3 100%);
	padding: 0 50px 10px 50px;
	box-sizing: border-box;
}
.bottom-menu {display: flex; min-height: 40px; justify-content: space-between; align-items: center; flex-wrap: wrap;}
.bottom-menu a {color: inherit; font-size: 14px; text-decoration: none;}
.copyright {color: #949494; font-size: 11px;}
.footer-mob-banner {display: none; max-width: 760px; margin: 0 auto;}
.link-mob-view {display: none;}
.mob-shipping {
	display: none;
	width: 100%;
	justify-content: space-evenly;
	align-items: center;
	flex-wrap: wrap;
	margin: 20px 0 5px 0;
}
.mob-payment {padding: 0 10px; text-align: center;}
.mob-shipping img {height: 24px;}

/*###########################  Side Bar  #######################################*/

.sidebar {width: 230px; padding-bottom: 20px;}
.side-contact {display: none;}
.side-contact #header_online_chat {margin-bottom: 10px;}
.side-phone {background-color: #c92020; padding: 5px; margin-bottom: 10px; text-align: right;}

#product_list,
#static_sidebar_payment_systems,
#tools_shipping_banner,
#testimonials_list,
#tools_social_bookmark {margin-bottom: 15px;}

.side-list-title {
	font-weight: bold;
	font-size: 15px;
	line-height: 15px;
	color: #fff;
	padding: 15px 10px 15px 20px;
	background-color: #c92020;
}
.side-product-list {
	padding: 6px 0 6px 25px;
	margin-right: 5px;
	border-bottom: 1px dashed #bcbcbc;
	background: url(../images/pill_list.png) no-repeat center left 3px;

}
.side-product-list a {color: #000; text-decoration: none; font-weight: bold;}
.side-product-list a:hover {text-decoration: underline;}
.side-title {
	font-weight: bold;
	font-size: 13px;
	line-height: 15px;
	color: #fff;
	padding: 5px 10px 5px 15px;
	background-color: #c92020;
}
.side-content {border: 1px solid #dbdbdb; padding: 7px;}

#static_decor_discounts {
	border: 1px solid #d9d9d9;
	box-sizing: border-box;
	padding-right: 20px;
	display: flex;
	justify-content: flex-end;
	font-weight: bold;
	background: url(../images/discounts.png) no-repeat top center;
}
.side-bonus {
	padding: 5px 0 5px 18px;
	background: url(../images/checkbox.png) no-repeat center left;
}
.side-bonus span {color: #ff8432;}
.side-bonus-bg {
	display: flex;
	height: 93px;
	flex-direction: column;
	justify-content: center;
}
#header_online_chat {margin-bottom: 20px;}
#static_sidebar_bookmark {margin-bottom: 20px; text-align: center;}
.side-content-testim {border: 1px solid #c92020; padding:20px 25px; background-color: #eeeeee;}
.side-content-testim a {color: #c92020;}
.side-testi-header {font-weight: bold; font-size: 13px; color: #000; margin-bottom: 5px;}
.side-testi-body {margin-bottom: 15px;}

#static_decor_sidebar_package_image {margin-bottom: 20px;}
#static_decor_sidebar_package_image > div {
	display: flex;
	align-items: center;
	box-sizing: border-box;
	padding-left: 80px;
	padding-right: 5px;
	height: 74px;
	font-size: 14px;
	line-height: 16px;
	font-weight: bold;
	color: #000;
}
.safe_decor {background: url(../images/decor/lock.png) no-repeat;}
.q_decor {background: url(../images/decor/pills.png) no-repeat; margin: 7px 0;}
.fast_decor {background: url(../images/decor/map.png) no-repeat;}
#tools_social_bookmark a {display: inline-block; margin: 0 3px;}

#static_sidebar_subscribe_news {margin-bottom: 20px; text-align: center;}
#static_sidebar_sitemap {text-align: center;}
#static_sidebar_subscribe_news a,
#static_sidebar_sitemap a {text-decoration: none; color: inherit; vertical-align: middle;}
#static_sidebar_subscribe_news img,
#static_sidebar_sitemap img {vertical-align: middle;}

/*###########################  Index Page ##################################*/

.title {
	font-size: 16px;
	font-weight: bold;
	color: #555555;
	background: #e9e9e9;
	background: linear-gradient(to bottom, #e9e9e9 0%, #d8d8d8 100%);
	padding: 12px 15px;
}
.short_descr_cat {padding: 10px 0;}
.pill-list {margin-top: 5px;}
.pill-item {
	display: flex;
	justify-content: space-between;
	align-items: center;
	border: 1px solid #DDDDDD;
	margin-bottom: 5px;
}
.pill-ico {flex-shrink: 0;}
.pill-info {width: 160px; flex-shrink: 0;}
.pill-name {display: block; font-size: 16px; font-weight: bold; color: #000; text-decoration: none;}
.pill-ingr {display: block; font-weight: bold; text-decoration: none; color: #717F86; margin-top: 5px;}
.pill-descr {padding: 10px;}
.pill-buy {
	display: flex;
	flex-direction: column;
	justify-content: center;
	width: 80px;
	height: 63px;
	margin: 10px 10px 10px 0;
	text-align: center;
	background: url(../images/btn_buy.png);
	flex-shrink: 0;
}

.pill-price {font-weight: bold; font-size: 18px; color: #000;}
.pill-btn {font-size: 11px; font-weight: bold; color: red;}

.pill-top {flex-shrink: 0; display: flex; align-items: center;}
.pill-bottom {display: flex; align-items: center; justify-content: space-between;}


/*###########################  Product Page #######################################*/

.product-detaled-title {font-size: 20px; font-weight: bold; padding: 15px 0; margin-top: 25px;}
.product-detaled-content {font-size: 13px; margin-bottom: 20px;}

.productPage-icon {
	display: flex;
	align-items: center;
	margin: 10px 0;
	font-size: 13px;
}
.productPage-icon img {flex-shrink: 0;}

.doses-panel {
	padding: 12px 10px;
	font-size: 13px;
	font-weight: bold;
	background: #efefef;
	border: 1px solid #ddd;
	border-bottom: 0;
}
#dosage-select {
	border: 1px solid #2657a2;
	height: 20px;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	background: #fff url('../images/select.png') no-repeat center right;
	box-sizing: border-box;
	padding-left: 3px;
	padding-right: 30px;
}
#dose_items {width: 100%; box-sizing: border-box;}
#dose_items > div {display:none;  width: 100%;}
#dose_items > div.active{ display:block;}

.product-tbl {border-collapse: collapse; width: 100%;}
.product-tbl td {
	border: 1px solid #ddd;
	padding: 5px 10px;
}
.product-tbl td.product-tbl-bestsale {
	text-align: right;
	padding: 0;
	border-right: 0;
}
.product-tbl td.product-tbl-dose {border-left: 0;}
.product-tbl td.product-tbl-price {background-color: #f9f9f9;}

.product-tbl-buy {
	color: inherit;
	font-size: 11px;
	text-decoration: none;
	display: inline-block;
	font-weight: bold;
	position: relative;
	padding-left: 23px;
}
.product-tbl-buy:before {
	content: '';
	position: absolute;
	top: -3px;
	left: -5px;
	width: 25px;
	height: 20px;
	background: url('../images/buy2.png') no-repeat;
}

.product-tbl-save a {font-size: 11px; color: #cc831d; text-decoration: none; font-weight: normal; padding-left: 23px;}
.dose-dose {font-weight: bold; font-size: 14px;}
.dose-type {font-size: 11px; white-space: nowrap;}

/*###########################  Search page #######################################*/

.not_fount {padding: 30px 0; font-size: 20px;}
.not_fount span {font-weight: bold;}
.not_fount label {color: #B60810;}
.not_fount_discr {font-size: 16px;}

/*###########################  Cart page  #######################################*/

.cart-empty {max-width: 580px; margin-top: 20px; text-align: center;}
.cart_table {
	width: 100%;
	border-collapse: collapse;
	margin-top: 10px;
	box-sizing: border-box;
	border: 1px solid #dbdbdb;
}
.cart_table tr.cart_table_header td {border: 0; background-color: #c92020; color: #fff; padding: 10px 5px;}

.cart-delete {padding: 7px 10px;}

#cart_bonuses {margin-top: 40px;}
.bonus-cart-title {
	font-size: 13px;
	color: #ff761a;
	padding: 10px 10px 10px 35px;
	font-weight: bold;
	background: url('../images/box.png') no-repeat left top 3px;
}
.bonus_for_consumers {width: 100%; border-collapse: collapse;}
.bonus_for_consumers td {padding: 5px; vertical-align: middle;}

.update-pills {padding: 10px; background: #f3f5fa; text-align: center;}
.update-pills a {color: inherit;}
.cart_table td.bonus-pill {padding: 10px; border-top: 1px solid #dbdbdb;}

.cart_table .shipping-item td {border-bottom: 0;}
.cart-pill-img {width: 80px;}
.cart-pill-img img {height: 50px;}
.cart-pill-name {font-weight: bold;}

.cart_table td.shipping-title {
	padding: 10px;
	background-color: #f3f5fa;
	font-weight: bold;
	border-top: 1px solid #dbdbdb;
}
.cart_table tr.shipping-item td {padding: 5px 10px;}
.shipping-item-label {display: flex; align-items: center; cursor: pointer;}

.insurance-item td {padding: 10px; border-top: 1px solid #dbdbdb;}
.insurance-item div {font-size: 11px; color: #8c8c8c;}

.cart-total td {padding: 15px 10px; border-top: 1px solid #dbdbdb;}
.cart-total-sum {white-space: nowrap; text-align: right; font-weight: bold; color: #f57300}
.cart-buttons {display: flex; justify-content: space-evenly; margin: 10px 0;}

.checkout-cart {
	cursor: pointer;
	box-sizing: border-box;
	padding: 0 30px;
	height: 36px;
	border: 1px solid #c2c2c2;
	border-radius: 12px;
	color: #636363;
	font-size: 13px;
	font-weight: bold;
	background: #dbdbdb;
	background: linear-gradient(to bottom, #dbdbdb 0%, #ffffff 45%, #ffffff 55%, #dbdbdb 100%);
}

#gift_list {
	font-size: 12px;
	border: 1px solid #2657a2;
	height: 20px;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	background: #fff url('../images/select.png') no-repeat center right;
	box-sizing: border-box;
	padding-left: 3px;
	padding-right: 30px;
}
.newbonus {display: flex; align-items: center; flex-wrap: wrap;}
.newbonus-capt {padding-right: 10px;}

.relative-title {color: #717f86; font-size: 13px; padding: 20px 0; font-weight: bold;}

/*######################  Order status page / Contact us #############################*/

.errors {text-align: center; color:red; margin-top:10px; font-size:13px;}
.success {text-align: center; color:green; margin-top:10px; font-size:13px;}

.order-stat-txt {font-size: 13px; margin-top: 15px;}
.order-stat-tbl {border-collapse: collapse; margin: 40px auto 0 auto; color: #646363; font-size: 13px;}
.order-stat-tbl td {padding: 5px 10px;}
.order-stat-tbl-inputs {text-align: right;}

.order-stat-tbl-inputs input[type='email'],
.order-stat-tbl-inputs input[type='text']{
	width: 280px;
	height: 24px;
	border: 1px solid #cacbcd;
	box-sizing: border-box;
	padding: 0 5px;
	font-size: 13px;
	font-family: Trebuchet MS, sans-serif;
	color: inherit;
}
.order-stat-tbl-inputs textarea {
	width: 280px;
	height: 130px;
	resize: none;
	padding: 5px;
	border-radius: 4px;
	border: 1px solid #cacbcd;
	box-sizing: border-box;
	font-size: 13px;
	font-family: Trebuchet MS, sans-serif;
	color: inherit;
}
.order-stat-tbl-inputs input[type='submit'] {
	cursor: pointer;
	box-sizing: border-box;
	padding: 0 60px;
	height: 36px;
	border: 1px solid #c2c2c2;
	border-radius: 12px;
	color: #636363;
	font-size: 14px;
	background: #dbdbdb;
	background: linear-gradient(to bottom, #dbdbdb 0%, #ffffff 45%, #ffffff 55%, #dbdbdb 100%);
}

.order_info_tbl {width: 300px; margin: 30px auto 0 auto; border-collapse: collapse;}
.order_info_tbl td {padding: 5px 10px; border: 1px solid #dbdbdb;}

/*###########################  Testimonials page  ###################################*/

.testimonials {
	padding: 10px;
	border: 1px solid #cad2d6;
	margin-top: 10px;
	background: #fff;
	background: linear-gradient(to bottom, #ffffff 0%, #ffffff 85%, #f3f3f3 95%, #e8e8e8 100%);
}
.testi_caption{font-size: 13px; font-weight: bold;}

/*###########################  FAQ page  #######################################*/

.faq {margin-top: 10px; color: #6D6D6D;}
.faq_caption {
	font-size:14px;
	line-height: 33px;
	color: #C92020;
	background: #f3f3f3;
	background: linear-gradient(to bottom, #f3f3f3 0%, #ffffff 45%, #ffffff 55%, #f3f3f3 100%);
	padding-left: 15px;
}
.faq ul {margin-left: 30px;}
.faq ul li {padding: 8px 0; list-style-type: disc;}
.faq ul li a {color: #837D7D; font-size: 11px; text-decoration: none; font-style: italic;}
.faq_descr {padding: 10px;}
.question {margin: 10px 0; font-weight: bold; font-size: 14px;}
.answer {margin-bottom: 10px;}
.answer p {display: inline-block;}
.faq_let {font-size:14px; font-weight: bold; display: inline-block;}
.ontop a.anchor {color: #C92020; font-size: 11px;}
.ontop a.anchor:hover {text-decoration: none;}

/*###########################  ED page  #######################################*/

.ed-pack {border: 1px solid #cad2d5; margin-top: 5px;}
.ed-pack-title {
	border-bottom: 1px solid #cad2d5;
	background-color: #f2f2f2;
	padding: 8px 0 8px 150px;
	font-size: 20px;
}
.ed-pack-body {display: flex;}
.ed-pack-icon {
	width: 150px;
	flex-shrink: 0;
	text-align: center;
	background: #90c6f5;
	background: linear-gradient(to bottom, #90c6f5 0%, #76aada 100%);
}
.ed-pack-descr {padding: 10px;}
.ed-pack-bottom {
	padding: 10px;
	border-top: 1px solid #cad2d5;
	background: linear-gradient(to bottom, #ffffff 0%, #ffffff 50%, #e8e8e8 100%);
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.ed-pack-bottom span b {
	border: 1px solid #b9b9b9;
	color: #487095;
	font-size: 16px;
	padding: 2px 25px;
	background-color: #fff;
	white-space: nowrap;
}
.ed-pack-bottom a {
	color: inherit;
	font-size: 11px;
	text-decoration: none;
	display: inline-block;
	font-weight: bold;
	position: relative;
	padding: 5px 5px 5px 30px;
	background: url('../images/buy2.png') no-repeat left center;
}

/*###########################  General page  #######################################*/

.about_us, .our_policy {padding: 10px;}

.sitemap_page {font-size:13px;}
.sitemap_page a {color: inherit;}
.sitemap_header {font-size:14px; font-weight: bold; line-height: 30px;}
.sitemap_page ul {  margin-left: 15px;}

.cat_header {padding: 10px 0; display: block;}
.cat_header a {font-weight: bold;}
.category_block ul {display: flex; flex-wrap: wrap;}
.category_block ul li {width: 25%;}

/* ########################### Mobile Bottom Banners #############################*/

.app-download {
	display: none;
	background-image: url(../images/mob_icon/banner_fon.png),url(../images/mob_icon/banner_fon_2.png);
	background-position: center right, center left;
	background-repeat: no-repeat, no-repeat;
	background-size: auto 100px, auto 100px;
	height: 100px;
	margin: 15px auto 0 auto;
	border: 1px solid #dbdbdb;
	box-sizing: border-box;
	position: relative;
}
.bottBannerLink {
	display: flex;
	justify-content: center;
	align-items: flex-start;
	font-size: 14px;
	color: inherit;
	text-decoration: none;
	padding-left: 10px;
	padding-right: 100px;
	height: 100%;
	flex-direction: column;
	position: relative;
}
.bottBannerBtn {
	position: relative;
	background: #a5c53e;
	background: linear-gradient(to bottom, #a5c53e 0%, #8ba828 100%);
	line-height: 30px;
	height: 32px;
	margin-top: 10px;
	padding-left: 28px;
	padding-right: 20px;
	color: #fff;
	border-radius: 5px;
}
.bottBannerBtn:before{
	content: '';
	position: absolute;
	width: 20px;
	height: 22px;
	top: 5px;
	left: 5px;
	background: url(../images/mob_icon/banner_b.png) no-repeat center center;
	background-size: auto 22px;
}

/*###########################  QuickSearch  #######################################*/
.mob-search {display: none; margin: 10px 10px 0 10px;}
.mob-search #static_sidebar_search {margin-bottom: 0;}
.mob-search .side-search,
.mob-search .side-search-btn {height: 30px;}

#static_sidebar_search {position: relative; margin-bottom: 10px;}

.side-search {
	font-size: 11px;
	color: #393939;
	width: 100%;
	height: 22px;
	padding: 0 20px 0 5px;
	box-sizing: border-box;
	border: 1px solid #d9d9d9;
	background-color: #f2f2f2;
	-webkit-box-shadow: inset 0 2px 4px -4px rgba(0,0,0,1);
	-moz-box-shadow: inset 0 2px 4px -4px rgba(0,0,0,1);
	box-shadow: inset 0 2px 4px -4px rgba(0,0,0,1);
}
.side-search-btn {
	position: absolute;
	top: 1px;
	right: 1px;
	width: 20px;
	height: 20px;
	box-sizing: border-box;
	border: 0;
	background: url(../images/search_bg.png) no-repeat center;
	cursor: pointer;
}

/* ########################### Mobile Landing Banners #############################*/

.bgLandFooter {
	z-index: 1;
	background-color: #666666; 
	height: 45px; 
	position: fixed; 
	width: 100%; 
	bottom: 0;
	padding-right: 30px;
	box-sizing: border-box;
	border-top: 1px solid #fff;
}
.labding-footer {
	height: 45px;
	border-collapse: collapse; 
	margin: 0 auto;
    max-width: 1180px;
    min-width: 300px;
	font-size: 16px; 
	text-align: center;
	color: #fff;
	background: url(../images/ic_app.png) no-repeat left bottom; 
}
.labding-footer td {padding-left: 55px;}
.labding-footer a {
	font-size: 14px; 
	color: #232323; 
	background-color: #fff; 
	display: inline-block; 
	padding: 3px 20px;
	text-decoration: none;	
	margin-left: 10px;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
}
.close_banner {
	position: absolute;
	right: 10px;
	top:13px;
	width: 20px;
	cursor: pointer;
}
/*--------------------------------------------*/
.landing-side {
	border: 1px solid #dddddd;
	width: 230px;
	position: relative;
	margin-bottom: 20px;
}
.landing-side span {
	position: absolute;
	bottom: 15px;
	left: 0;
	width: 100%;
	text-align: center;
}
.landing-side span label {
	display: inline-block;
	padding: 5px 20px;
	border: 0;
	color: #fff;
	font-size: 13px;
	font-weight: bold;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
	background: #c92020;
	cursor: pointer;
}
/*--------------------------------------------*/
.banner-wrapper {
	position: relative; 
	background: url(../images/banner_big.jpg) no-repeat;
	width: 575px;
	height: 230px;
	margin-bottom: 5px;
}
.banner-wrapper-txt {
	color: #3e3f4a; 
	font-size: 18px;  
	padding-left: 30px;
    padding-top: 30px;
    width: 310px;
    font-weight: lighter;
}
.banner-wrapper-txt div {padding-top: 15px; font-size: 16px;}
a.bannerLanding_btn {
	position: absolute; 
	left: 30px; 
	bottom: 20px; 
	width: 159px; 
	height: 64px;
	background: url(../images/bannerLanding_btn.png) no-repeat;
	color: #fff;
	font-size: 18px;
	line-height: 64px;
	padding-left: 70px;
	text-decoration: none;
}
/*--------------------------------------------*/
.lan_corner, #landCornerFull {position: absolute; top: 0; right: 0; z-index: 999;}
#landCornerFull {
	background: url(../images/land_corner_full.png) no-repeat; 
	width: 599px; 
	height: 599px;
	text-decoration: none;
}
.corner-titl {
	color: #fff;
    display: block;
    font-size: 26px;
    line-height: 28px;
    padding-left: 110px;
    padding-right: 245px;
    padding-top: 50px;
    text-align: right;
}
.corner-bttn {
	position: absolute; 
	top: 150px; 
	left: 202px;
	font-size: 16px;
	line-height:16px;
	color: #232323;
	padding: 8px 0;
	text-align: center;
	width:150px;
	background-color: #fff;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
}

/* ###################### Landind Page ######################*/

.landing-title {font-size: 20px; line-height: 70px; text-align: center;}
.landing-bottom {display: flex; justify-content: space-around; align-items: center; margin-top: 30px; margin-bottom: 100px;}
.landing-bottom-box {text-align: center;}
.landing-bottom-box img {width: 45px;}
.landing-bottom-box div {font-weight: bold; font-size: 13px; padding: 10px 0; color: #000;}
.landing-bottom-box p {font-size: 13px;}

.features {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
}
.features-btn {width: 290px; box-sizing: border-box; padding-left: 38px; margin-left: 10px;}
.features-img {width: 250px;}

.features-btn-item {
	padding: 15px 15px 20px 50px;
	border: 1px solid #fff;
	border-radius: 30px;
	cursor: pointer;
	position: relative;
	margin-bottom: 15px;
}
.features-btn-item.active, .features-btn-item.active:hover {
	border-color: #dfdfdf;
	box-shadow: 2px 2px 5px 3px rgba(0,0,0,0.03);
}
.features-btn-item:hover {border-color: rgba(223, 223, 223, 0.70);}
.features-btn-item > img {
	position: absolute;
	width: 70px;
	top: calc(50% - 35px);
	left: -35px;
	filter: drop-shadow(0px 0px 5px #d2d2d291)
}
.features-btn-title {
	font-size: 16px;
	font-weight: bold;
	padding-bottom: 10px;
}
.features-btn-txt {font-size: 14px; line-height: 20px;}
.features-img {	/*	background: url("../images/landing/slider/_blank.png") no-repeat left 100px bottom 10px;  */ }
.features-img img {display: none; width: 230px; box-shadow: 0 0 15px 5px rgba(0,0,0,0.05); border-radius: 12px;}
.features-img img:first-child {display: inline;}


.download-pc {
	box-sizing: border-box;
	padding-bottom: 30px;
	min-height: 380px;
	text-align: center;
	background: url("../images/landing/bg.png") no-repeat center center;
	background-size: 100% 100%;
	margin-top: 20px;
}
.download-stage {display: none;}
.download-stage.active {display: block;}

.download-switcher {
	display: inline-block;
	background-color: #fff;
	padding: 5px;
	border-radius: 48px;
	box-shadow: 0 0 20px 5px rgba(71, 93, 181, 0.1);
}
.download-switcher span {
	display: inline-block;
	line-height: 37px;
	padding: 0 30px;
	font-size: 14px;
	font-weight: 700;
	cursor: pointer;
}
.download-switcher span.active {
	background-color: #2c335c;
	border-radius: 25px;
	color: #fff;
}

.qr-code, .save-link {margin-top: 20px;}
.qr-code p, .save-link p {font-size: 16px; padding: 20px 80px;}
.save-link p {line-height: 25px;}

.copy-link-box {position: relative; margin: 0 50px;}
.field-copy-link, .field-send-link {
	width: 100%;
	box-sizing: border-box;
	height: 44px;
	border-radius: 22px;
	border: 0;
	padding: 0 180px 0 20px;
	font-size: 14px;
	color: #656c71;
	box-shadow: 0 0 20px 5px rgba(71, 93, 181, 0.1);
}
.btn-copy-link, .btn-send-link {
	position: absolute;
	top: 5px;
	right: 5px;
	height: 34px;
	padding: 0 40px;
	color: #fff;
	background-color: #5192ff;
	font-size: 16px;
	cursor: pointer;
	border: 0;
	border-radius: 25px;
}

.landing-form {display: block; margin: 0 60px;}

.send-link-box {position: relative; margin-top: 10px;}
.email-caption {margin-top: 40px; font-size: 16px; color: #000; line-height: 25px; font-weight: bold;}
.email-sub-caption {padding-bottom: 30px; font-size: 14px; line-height: 20px;}
.check-code-box {display: flex; justify-content: space-between;}
.check-code-box img {height: 44px;}
.field-code {
	width: 310px;
	box-sizing: border-box;
	height: 44px;
	border-radius: 22px;
	border: 0;
	padding-left: 20px;
	font-size: 14px;
	color: #656c71;
	box-shadow: 0 0 20px 5px rgba(71, 93, 181, 0.1);
	background: #fff no-repeat center right 20px;
	background-size: auto 38px;
}

.message {padding: 10px 0;}
.error_message {color: red;}
.ok_message {color: green;}

/*------------------- WTF? --------------------------*/
.faq-table {border: 1px solid black; border-collapse: collapse;}
.faq-table td {padding: 7px; width: 92px; height: 30px; border: 1px solid black;}
.faq-table tr {vertical-align: top;border: 1px solid black;}
.faq-table tr p {margin-bottom: 0;}
.privacy-wrapper {font-family: arial,helvetica,sans-serif;font-size: small;}
.pl-30px {padding-left: 30px;}
.terms-conditions-wrapper {font-family: arial,helvetica,sans-serif;}
.terms-conditions-general {font-size: medium;}
.terms-conditions {font-size: small;}
.text-underline {text-decoration: underline;}
.payment-methods {
	display: flex;
	align-items: center;
	gap: 5px;
	padding: 10px;
}
.payment-methods img {
	max-height: 18px;
	max-width: 30px;
}