/*TODO move these css to template sytle ();*/
.page-top-container {
	padding-top: 10px;
	padding-bottom: 10px;
	background-position-x: center;
	background-position-y: top;
	color: #FFF;
}

.page-top-title {
	color: #fff;
	text-transform: capitalize;
	text-align: center;
	font-weight: 100;
}

.page-top-subtitle {
	font-size: 17px;
	text-align: center;
	color: #fff;
	font-weight: 100;
}

a.page-top-button, a:link.page-top-button, a:hover.page-top-button, a:visited.page-top-button
	{
	border-radius: 5px;
	background-color: #ff3265;
	color: #fff;
	text-align: center;
	width: 191px;
	margin: 0 auto;
	font-size: 16px;
	font-weight: 100;
	letter-spacing: 1px;
	display: block;
	margin-top: 60px;
	margin-bottom: 125px;
	text-align: center;
	text-decoration: none;
	padding-top: 11px;
	padding-bottom: 11px;
	transition: all 0.3s ease 0s;
	text-transform: uppercase;
	font-weight: 100;
	letter-spacing: 1px;
}

a.page-top-button:hover {
	background-color: #F42056;
}

.page-content-section-container {
	height: auto;
	padding-top: 65px;
	padding-bottom: 65px;
}

.heading-normalized-container {
	height: auto;
	padding-top: 100px;
	padding-bottom: 120px;
}

div.page-top-title-captilize {
	margin-top: 52px;
	margin-bottom: 100px;
	font-size: 48px;
	text-align: center;
	font-weight: 600;
}

h1.page-top-title-captilize {
	margin-top: 52px;
	margin-bottom: 100px;
	font-size: 48px;
	text-align: center;
	font-weight: 600;
	text-transform: none;
}

/* link */
a, a:link, a:visited {
	/*color: #009DDC;*/
	/*color: #017BFF;*/
	color: #3C92E7;
	text-decoration: none;
}

a:hover {
	color: #0082B8;
	text-decoration: none;
}

/*icon color*/
i.icon-color-danger {
	color: #d9534f;
}

i.icon-color-warning {
	color: #f0ad4e;
}

i.icon-color-info {
	color: #5bc0de;
}

i.icon-color-default {
	color: #777;
}

/** shopping cart **/
div#cart-wrapper {
	display: none;
	position: absolute;
	right: 2px;
	top: 38px;
}

div#cart-wrapper img {
	float: right;
	margin-right: 12px;
}

div#cart-wrapper form {
	padding: 20px;
	color: #555;
	background-color: #fff;
	display: block;
	line-height: normal;
	min-width: 303px;
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
	border-radius: 3px;
	-moz-box-shadow: 0 0 10px 0 #333;
	-webkit-box-shadow: 0 0 10px 0 #333;
	box-shadow: 0 0 10px 0 #333;
	overflow: hidden;
	height: auto;
	clear: both;
}

div#cart-wrapper h3 {
	padding-top: 0;
	font-size: 20px;
	font-weight: bold;
	color: #555;
	margin: 0;
	padding-bottom: 26px;
}

div#cart-wrapper table {
	padding: 0;
	width: 100%;
	min-width: 303px;
}

div#cart-wrapper .button-grey-drop, div#cart-wrapper .button-green {
	color: #000;
	background-color: #f1f1f1;
	border: none;
	font-size: 12px;
	font-weight: normal;
	min-width: 83px;
	height: 32px;
	cursor: pointer;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	border-radius: 5px;
}

div#cart-wrapper .button-green {
	display: block;
	background-color: #FF3163;
	border: none;
	color: #fff;
	text-transform: uppercase;
}

div#cart-wrapper input.button-green {
	float: right;
}

div#cart-wrapper td.item_name, div#cart-wrapper tr:last-child td {
	font-weight: bold;
	border-bottom-width: 0;
	padding-top: 14px;
	padding-right: 0;
}

div#cart-wrapper td.item_cost, div#cart-wrapper tr:last-child td:last-child
	{
	text-align: right;
	padding-right: 0;
}

div#cart-wrapper td {
	border-bottom: 1px solid #ccc;
	padding: 4px 16px 9px 0;
}

div#cart-wrapper tr:last-child td {
	padding-bottom: 26px;
}

/*alert bar*/
div.alert-bar {
	position: absolute;
	top: 117px;
	width: 100%;
	overflow: auto;
}

div.alert-bar-inner {
	background: url(../png/exclamation.png) no-repeat 36px 10px;
	max-width: 1620px;
	height: 40px;
	line-height: 40px;
	margin: 0 auto;
	padding: 0;
	font-size: 15px;
	font-weight: 300;
	color: #FFFFFF;
	position: relative;
	overflow: hidden;
}

div.alert-bar .alert-bar-inner {
	max-width: 100%;
	min-width: 600px;
}

div.alert-bar-inner a {
	color: #FFFFFF;
	text-decoration: underline;
}

div.promo-alert {
	background-color: #0082d2;
}

div.restart-alert {
	background-color: #e03d24;
}

div.coupon-alert {
	/* Same as promo alert for now */
	background-color: #0082d2;
}

div.alert-bar-inner span:first-of-type {
	margin-left: 65px;
}

div.alert-bar-inner span:nth-child(1n+2) {
	margin-left: 35px;
}

div.alert-bar-inner span#restart-counter {
	margin-left: 0px;
}

div.alert-close {
	background: url(../png/x.png) no-repeat 15px 15px;
	position: absolute;
	right: 0px;
	top: 0px;
	height: 100%;
	width: 40px;
	cursor: pointer;
}

div.promo-alert div.alert-close {
	background-color: #00639b;
}

div.restart-alert div.alert-close {
	background-color: #af2d1a;
}

div.alert-spacer {
	display: none;
	visibility: hidden;
	height: 40px;
}

a.domain-search-button {
	background-color: #0796d6;
	transition: all 0.3s ease 0s;
}

a.domain-search-button:hover {
	background-color: #067EB4;
}

/* btn */
a.button-red-bodered, div.button-red-bodered {
	transition: all 0.3s ease 0s;
	display: block;
	border: 2px solid #ff2a5e;
	padding: 5px 10px;
	border-radius: 5px;
	margin-top: 20px;
	text-decoration: none;
	width: 120px;
	text-align: center;
	text-transform: uppercase;
	color: #ff2a5e;
	cursor: pointer;
}

a.button-red-bodered:hover, div.button-red-bodered:hover {
	color: #fff;
	background-color: #ff2a5e;
	font-weight: 400;
}

a.btn.btn-blue-bordered, div.btn.btn-blue-bordered {
	transition: all 0.3s ease 0s;
	background-color: #ffffff;
	border: 1px solid #009ddc;
	color: #009ddc;
}

a.btn.btn-blue-bordered:hover, div.btn.btn-blue-bordered:hover {
	background-color: #009ddc;
	color: #fff;
}

/* cp */
/* nav bar */
.navbar-default {
	background-color: #fff;
}

.navbar-content {
	background-color: #2A333E;
	border-color: #2A333E;
}

a.sign-in {
	line-height: 40px;
	text-decoration: none;
	color: #A7B1C2;
}

a.sign-in:hover {
	color: #A7B1C2;
	text-decoration: none;
}

.navbar-icon-style {
	padding: 7px 5px 7px !important;
}

.navbar-nav>li>a {
	padding-top: 10px;
	padding-bottom: 10px;
}

.itemspace-top {
	margin-top: 15px;
}

.itemspace-bottom {
	margin-bottom: 12px;
}

/* head photo */
#user_dropdown_avatar_uploader_button {
	background: #0076BF;
	height: 74px;
	width: 74px;
	text-align: center;
	color: #fff;
	font-size: 11px;
	text-transform: uppercase;
	font-weight: 600;
	opacity: 0;
	-webkit-transition: opacity .2s ease;
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	border-radius: 3px;
}

.avatar-photo {
	border-radius: 3px;
	width: 74px;
	height: 74px;
}

.photo-opacity {
	opacity: 0.8 !important;
	z-index: 0 !important;
}

.ng-binding {
	padding-top: 18px;
}

.fileinput-button {
	position: relative;
	overflow: hidden;
	display: inline-block;
}

.fileinput-button input {
	position: absolute;
	top: 0;
	right: 0;
	margin: 0;
	opacity: 0;
	-ms-filter: 'alpha(opacity=0)';
	font-size: 200px !important;
	direction: ltr;
	cursor: pointer;
}

.head-info-error {
	color: red;
}

a.view-dashboard {
	background: #0076BF;
	padding: 5px 13px;
	color: #FFF;
	font-size: 13px;
	height: 30px;
	border-radius: 3px;
	border-color: #0076BF;
}

a.view-dashboard:hover {
	background: #0069a6;
	color: #fff;
	border-color: #0069a6;
}

a.view-dashboard:active {
	background: #0069a6;
}

a.view-dashboard:focus {
	background: #0069a6;
	border-color: #0069a6;
}

a.view-dashboard:active:focus {
	background: #0069a6;
	border-color: #204d74;
}

/* no message navbar style*/
.navbar-block i.fa {
	border-radius: 3px;
	width: 23px;
	height: 20px;
	color: #FFF;
	text-align: center;
	padding-top: 5px;
	padding-left: 5px;
	padding-right: 5px;
}

/* no message unread*/
.navbar-msg-read {
	font-size: 14px;
	background: #515B6F;
}

#id-shopping-cart .navbar-msg-read {
	text-align: justify !important;
}

i.navbar-msg-read:hover {
	background: #444D5F;
}

/*have message unread*/
.navbar-msg-unread {
	border-radius: 3px;
	min-width: 40px !important;
	height: 26px;
	color: #FFF;
	font-size: 14px;
	background-color: #BA5D80;
	width: 100% !important;
}

.dropmenu-data {
	font-family: "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
	font-size: 14px;
	margin-left: 3px;
}

i.navbar-msg-unread:hover {
	background: #AF5476;
}

/*for notification message*/
li.divider.divider-notification-top {
	margin-bottom: 20px;
}

.notifications-domain-msg {
	margin: 5px 20px 10px 20px;
	background: #BA5D80;
	padding-left: 16px;
	font-size: 14px;
	color: #FFF;
	border-radius: 2px;
	height: 60px;
	width: 270px;
	text-decoration: none;
}

.notifications-domain-no-msg {
	margin: 5px 20px 10px 20px;
	background: #828EA6;
	padding-left: 16px;
	font-size: 14px;
	color: #FFF;
	border-radius: 2px;
	height: 60px;
	width: 270px;
	text-decoration: none;
}

.notifications-order-msg {
	margin: 5px 20px 10px 20px;
	background: #BA5D80;
	padding-left: 16px;
	color: #FFF;
	font-size: 14px;
	border-radius: 2px;
	height: 60px;
	width: 270px;
}

.notifications-order-no-msg {
	margin: 5px 20px 10px 20px;
	background: #828EA6;
	padding-left: 16px;
	color: #FFF;
	font-size: 14px;
	border-radius: 2px;
	height: 60px;
	width: 270px;
}

li.divider.divider-notification-buttom {
	margin-top: 20px;
}

.span-arrow {
	font-size: 20px;
	font-weight: 900;
	padding-right: 15px;
	line-height: 60px;
}

.notifications-domain-msg>span {
	color: #FFF;
	line-height: 60px;
}

.notifications-order-msg>span {
	color: #FFF;
	line-height: 60px;
}

.dropdown-menu a:hover {
	text-decoration: none;
}

.dropdown-menu a:link {
	text-decoration: none;
}

.notifications-domain-msg:hover {
	background: #AF5476;
}

.notifications-order-msg:hover {
	background: #AF5476;
}

.notifications-domain-no-msg>span {
	color: #FFF;
	line-height: 60px;
}

.notifications-domain-no-msg:hover {
	background: #6E7D9C;
}

.notifications-order-no-msg>span {
	color: #FFF;
	line-height: 60px;
}

.notifications-order-no-msg:hover {
	background: #6E7D9C;
}

.inbox-info-msg {
	margin: 20px 20px;
	background: #BA5D80;
	padding-left: 16px;
	font-size: 14px;
	color: #FFF;
	border-radius: 2px;
	height: 60px;
	width: 270px;
	text-decoration: none;
}

.inbox-info-no-msg {
	margin: 20px 20px;
	background: #828EA6;
	padding-left: 16px;
	font-size: 14px;
	color: #FFF;
	border-radius: 2px;
	height: 60px;
	width: 270px;
	text-decoration: none;
}

.inbox-info-msg>span {
	color: #FFF;
	line-height: 60px;
}

.inbox-info-msg:hover {
	background: #AF5476;
}

.inbox-info-no-msg>span {
	color: #FFF;
	line-height: 60px;
}

.inbox-info-no-msg:hover {
	background: #6E7D9C;
}

.view-button-notification {
	margin: 20px 20px;
	border: 1px solid #DAE3E9;
	padding-top: 8px;
	text-align: center;
	font-size: 14px;
	color: #0078BD;
	border-radius: 3px;
	height: 38px;
}

.view-button-notification:hover {
	background: #F5F6F7;
}

.view-button-notification:active {
	background: #e6e6e6;
}

.view-button-notification>a:hover {
	color: #0078BD;
}

/* topbar dropdown */
.topbar-function-dropdown>li>a {
	height: 30px;
}

.dropdown-menu-items-en>li>a {
	padding-left: 30px !important;
}

.support-menu-width {
	min-width: 230px;
}

.support-option-chat-online {
	cursor: pointer;
	margin: 20px 20px;
	background: #828EA6;
	padding-left: 16px;
	font-size: 14px;
	width: 190px;
	height: 60px;
	border-radius: 2px;
	color: #FFF;
}

.support-option-chat-online>span {
	line-height: 60px;
}

.support-option-chat-online:hover {
	background: #6E7D9C;
	color: #FFF;
}

.support-option-chat-offline {
	cursor: pointer;
	margin: 20px 20px;
	background: #D3DBE2;
	padding-left: 30px;
	color: #333;
	font-size: 14px;
	width: 190px;
	height: 60px;
	border-radius: 2px;
}

.support-option-chat-offline>span {
	line-height: 60px;
}

.shoppding-cart-msg-unread {
	min-width: 23px !important;
	font-size: 14px;
	background-color: #269FEF;
	width: 100% !important;
}

/*i.shoppding-cart-msg-unread:hover {
	background: #2290D9;
}*/

.shoppingcard-items {
	padding-left: 30px;
}

.view-card-item {
	margin: 20px 17px;
}

.table-shoppingcard {
	margin-top: 10px;
	margin-bottom: 10px;
	border-collapse: separate;
	border-spacing: 6px;
	width: 100%;
}

.table-shoppingcard-items {
	padding-left: 25px;
}

.table-shoppingcard-value {
	padding-right: 25px;
}

.table-shoppingcard-subtotal {
	padding-left: 25px;
}

.table-shoppingcard-total {
	padding-right: 25px;
}

a.view-cart {
	background: #0076BF;
	padding: 8px 20px;
	color: #FFF;
	font-size: 14px;
	border-radius: 2px;
	width: 195px;
}

a.view-cart:hover {
	background-color: #0069a6 !important;
	color: #fff;
	border-color: #0069a6;
}

a.view-cart:active {
	background: #0069a6;
}

a.view-cart:focus {
	background: #0069a6;
	border-color: #0069a6;
}

a.view-cart:active:focus {
	background: #0069a6;
	border-color: #204d74;
}

td>a:hover {
	text-decoration: none;
}

/*modfy the bootstrap default style*/
.dropdown-header {
	font-size: 14px;
	color: #333;
}

.dropdown-header-info {
	text-align: center;
	margin-top: 10px;
	margin-bottom: 10px;
}

.dropdown-menu .divider {
	margin: 1px 20px 9px;
	border-color: #DAE3E9;
}

.title-function:hover {
	color: #fff !important;
}

.sub-navbar {
	height: 80px;
	box-shadow: 0 1px 3px rgba(43, 59, 93, 0.3);
}

a.navbar-logo {
	display: block;
	height: 0;
	width: 110px;
	padding: 18px 0;
}

a.navbar-logo>img {
	height: 40px;
}

/*site function */
.account-stats-row {
	margin-left: 230px;
}

.site-function {
	color: #333333;
}

.site-function:hover {
	color: #0069A6;
}

.site-function-items-top {
	margin-top: -5px;
}

.site-function-items-buttom {
	margin-bottom: 3px;
}

.site-function-dropdown {
	background-color: #2A333E;
	border-radius: 5px;
	border-top-left-radius: 5px !important;
	border-top-right-radius: 5px !important;
}

.site-function-dropdown>li {
	height: 40px;
}

.site-function-dropdown>li>a {
	color: #A7B1C2;
	font-size: 13px;
	line-height: 40px;
	padding-left: 23px;
}

.site-function-dropdown>li>a:hover {
	color: #FFF;
	background: #272C35;
	border-top-left-radius: 5px !important;
	border-top-right-radius: 5px !important;
}

.site-function-dropdown>li>a:focus {
	color: #FFF;
	background: #272C35;
	border-top-left-radius: 5px !important;
	border-top-right-radius: 5px !important;
}

.menu-line-sub {
	height: 1px !important;
}

.navbar-toggle-menu {
	width: 32px;
	height: 32px;
	padding: 7px 7px;
	margin-right: 10px;
	margin-top: -10px;
	border: 1px solid #D3DBE2;
	margin-bottom: 13px;
}

.dropdown-menu.bullet-right:before {
	width: 0;
	height: 0;
	content: '';
	display: inline-block;
	position: absolute;
	border-color: transparent;
	border-style: solid;
	-webkit-transform: rotate(360deg);
	border-width: 0 7px 7px;
	border-bottom-color: #2A333E;
	border-bottom-color: rgba(0, 0, 0, 0.15);
	top: -7px;
	right: 19px;
}

.dropdown-menu.bullet-right:after {
	width: 0;
	height: 0;
	content: '';
	display: inline-block;
	position: absolute;
	border-color: transparent;
	border-style: solid;
	-webkit-transform: rotate(360deg);
	border-width: 0 6px 6px;
	border-bottom-color: #2A333E;
	top: -6px;
	right: 20px;
}

.dropdown-menu.bullet:before {
	width: 0;
	height: 0;
	content: '';
	display: inline-block;
	position: absolute;
	border-color: transparent;
	border-style: solid;
	-webkit-transform: rotate(360deg);
	border-width: 0 7px 7px;
	border-bottom-color: #cccccc;
	border-bottom-color: rgba(0, 0, 0, 0.15);
	top: -7px;
	left: 15px;
}

.dropdown-menu.bullet:after {
	width: 0;
	height: 0;
	content: '';
	display: inline-block;
	position: absolute;
	border-color: transparent;
	border-style: solid;
	-webkit-transform: rotate(360deg);
	border-width: 0 6px 6px;
	border-bottom-color: #ffffff;
	top: -6px;
	left: 16px;
}

/* alert bar*/
.alert-site-maintenance {
	color: #E74C3C;
	font-size: 15px;
	position: absolute;
	right: 20px;
	border-radius: 4px;
	padding: 12px;
	background-color: #F9D3CF;
	border: 1px solid #F3A69E;
	margin-top: -8px;
	margin-left: 250px;
}

.close-alert-site-bar {
	color: #EE796D;
	cursor: pointer;
	position: relative;
	top: 3px;
	right: 2px;
	float: right;
	font-size: 18px;
	margin-left: 10px;
}

.alert-site-maintenance>span {
	padding-left: 10px;
}

.alert-promote {
	color: #3498DB;
	font-size: 15px;
	position: absolute;
	right: 20px;
	border-radius: 4px;
	padding: 12px;
	background-color: #CDE6F6;
	border: 1px solid #9ACCED;
	margin-top: -8px;
	margin-left: 250px;
}

.close-alert-bar {
	color: #3498db;
	cursor: pointer;
	position: relative;
	top: 3px;
	right: 2px;
	float: right;
	font-size: 18px;
	margin-left: 10px;
}

.alert-promote>span {
	padding-left: 10px;
}

.able_account_button {
	color: #fff !important;
	background: #0076BF !important;
	border-color: #0076BF !important;
}

.able_account_button:hover {
	background: #0069a6 !important;
	color: #fff !important;
	border-color: #0069a6 !important;
}

.able_account_button:active {
	background: #0069a6 !important;
	border-color: #0069a6 !important;
	outline: 0px auto -webkit-focus-ring-color !important;
	outline-offset: 0px !important;
}

.able_account_button:focus {
	background: #0069a6 !important;
	border-color: #0069a6 !important;
	outline: 0px auto -webkit-focus-ring-color !important;
	outline-offset: 0px !important;
}

.top-menu-account {
	color: #333333 !important;
	padding-left: 15px !important;
}

.open_app {
    border: 1px solid #A7B1C2;
    color: #A7B1C2;
    border-radius: 8px;
    margin-top: 2px;
    padding: 2px 6px;
    font-size: 10px;
}

.down {
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgb(0, 0, 0);
    background-color: rgba(0, 0, 0, 0.4);
    -webkit-animation-name: fadeIn;
    -webkit-animation-duration: 0.4s;
    animation-name: fadeIn;
    animation-duration: 0.4s
}

.down_content {
    position: fixed;
    bottom: 0;
    background-color: #fefefe;
    width: 100%;
    -webkit-animation-name: slideIn;
    -webkit-animation-duration: 0.4s;
    animation-name: slideIn;
    animation-duration: 0.4s;
    border-top-left-radius: 30px;
    border-bottom-left-radius: 0px;
    border-top-right-radius: 30px;
    border-bottom-right-radius: 0px;
}

.down_header {
    font-size: 18px;
    font-weight: 900;
    margin-top: 14px;
    padding-bottom: 14px;
    text-align: center;
    border-width: 0 0 1px 0;
    border-style: solid;
    border-color: #A7B1C2;
}

.down_body {
    text-align: left;
    padding: 20px 35px 30px 35px;
    font-size: 15px;
    font-weight: 900;
}

.open_button {
    text-align: center;
    width: 120px;
    height: 40px;
    float: right;
    background-color: #037afe;
    color: #ffffff;
    margin-top: -8px;
    padding-top: 8px;
    border-radius: 4px;
}

.close_button {
    text-align: center;
    width: 120px;
    height: 40px;
    float: right;
    background-color: #eaf4ff;
    color: #037afe;
    margin-top: -8px;
    padding-top: 8px;
    border-radius: 4px;
}

@-webkit-keyframes slideIn {
    from {
        bottom: -300px;
        opacity: 0
    }

    to {
        bottom: 0;
        opacity: 1
    }
}

@keyframes slideIn {
    from {
        bottom: -300px;
        opacity: 0
    }

    to {
        bottom: 0;
        opacity: 1
    }
}

@-webkit-keyframes fadeIn {
    from {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

@keyframes fadeIn {
    from {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

.mainsite-checkbox-div {
	display: inline-block;
	width: unset !important;
	padding: unset !important;
}

.mainsite-checkbox-div .checkbox-label {
	height: 16px;
	width: 16px;
	text-align: center;
	vertical-align: middle;
	line-height: 20px;
	margin-top: 2px;
	border: 1px solid #c4cdd5;
	cursor: pointer;
	border-radius: 3px;
	background: linear-gradient(to bottom, #fff, #f9fafb);
	box-shadow: 0 1px 0 0 rgba(22, 29, 37, 0.05);
	font-size: 13px;
	font-weight: 300;
}
.col-xs-12.col-sm-4 .switch .mainsite-checkbox-div .checkbox-label {
	display: none;
}
.mainsite-checkbox-div input[type='checkbox']:checked+label:after {
	content: "\f00c";
	color: #0076BF;
	font-family: "Font Awesome 5 Pro";
	position: relative;
	top: -4px;
	font-weight: 900;
}
