html, body {
	font-family: 'Montserrat', sans-serif;
	font-family: 'Inter', sans-serif;
	font-weight: 400;
	min-height: calc(100vh - 80px);
	background: #fff;
	color: #333;
}
.font_bold {
	font-weight: 600;
}
.font_medium {
	font-weight: 500;
}
/*::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}
::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 4px;
}*/
h1.h1_title {
	margin-top: 0;
	font-size: 24px;
}
h1 {
	font-weight: 600;
	font-size: 36px;
	line-height: 44px;
	margin-top: 16px;
	margin-bottom: 8px;
}
.fright {
	float: right;
}
.flex {
	display: flex;
}
.flex_acenter {
	align-items: center;
}
.flex_jcenter {
	justify-content: center;
}
.flex_jspace {
	justify-content: space-between;
}
.clrgray {
	color: #888;
}
.m10 {
	margin: 10px;
}
.p10 {
	padding: 10px;
}
.mr10 {
	margin-right: 10px;
}
.mr20 {
	margin-right: 20px;
}
.mt10 {
	margin-top: 10px;
}
.mb10 {
	margin-bottom: 10px;
}
.mt20 {
	margin-top: 20px;
}
.mb20 {
	margin-bottom: 20px;
}
.pt10 {
	padding-top: 10px;
}
.pb10 {
	padding-bottom: 10px;
}
.pt20 {
	padding-top: 20px;
}
.pb20 {
	padding-bottom: 20px;
}
.nav {
	background: #fff;
	border-bottom: 1px solid #ddd;
	padding: 5px 0px;
	position: fixed;
	width: 100%;
	left: 0;
	top: 0;
	z-index: 7;
	height: 70px;
}
.nav_cont {
	display: flex;
	justify-content: space-between;
	align-items: center;
	position: relative;
}
.nav_search_dropdown {
	position: absolute;
    background: #fff;
    width: 100%;
    height: calc(100vh - 100px);
    max-height: 300px;
    left: 0;
    top: 64px;
    align-items: center;
    overflow-y: auto;
    box-shadow: #aaa 1px 6px 10px 0px;
    display: none;
}
.nav_search_dropdown .search_item {
	display: flex;
	align-items: center;
	border-bottom: 1px solid #eee;	
	font-size: 16px;
	font-weight: 600;
	padding: 5px 10px;
	cursor: pointer;
}
.search_item img {
	width: 50px;
	height: 50px;
	object-fit: cover;	
	margin-right: 12px;
}
.nav_search,
.p_search {
	position: absolute;
	background: #fff;
	width: 100%;
	height: calc(100% - 2px);
	left: 0;
	top: 0;
	display: flex;
	align-items: center;
	display: none;
}
.div_search {
	padding: 1.5%;
}
.p_search {
	display: flex;
	height: 50px;
    position: relative;
    border: 1px solid #ddd;
}
.nav_search i,
.p_search i {
	color: #888;
	padding: 10px;
	font-size: 18px;
	cursor: pointer;
}
.nav_search input,
.p_search input {
	border: 0px;
	outline: none;
	font-size: 18px;
	width: calc(100% - 80px);
    height: 100%;
}
.m_nav {
	display: none;
}
.nav_logo {
	display: flex;
	align-items: center;
	font-size: 24px;
	font-weight: 700;
}
.nav_logo img {
	height: 60px;
	margin-right: 10px;
}
.nav_logo span {
	letter-spacing: -0.5px;
	color: #b938c8;
}
a,
a:hover,
a:visited {
	text-decoration: none;
	color: inherit;
}
a:hover {
	color: #b938c8;
}
.nav_menu {
	display: flex;
}
.nav_item {
	display: flex;
	align-items: center;
	margin-left: 40px;
	font-size: 16px;
	text-transform: uppercase;
	border-bottom: 2px solid transparent;
	padding: 20px 0px;
	position: relative;
	cursor: pointer;
}
.nav_item:hover {
	border-color: #b938c8;
}
.nav_item:hover > span,
.nav_item:hover > i {
	color: #b938c8;
}
.nav_item i {
	color: #888;
	margin-right: 10px;
}
.nav_item:hover > .nav_sub_menu {
	display: block;
}
.nav_sub_menu {
	position: absolute;
	background: #fff;
	border: 1px solid #ddd;
	padding: 20px;
	top: 65px;
    border-top: 0px;
    min-width: 280px;
    display: none;
}
.nav_sub_item {
	display: flex;
	align-items: center;
	padding: 10px;
	font-size: 20px;
	cursor: pointer;
}
.nav_sub_item img {
	width: 50px;
	height: 50px;
	border-radius: 50px;
	background: #f2f2f2;
	object-fit: contain;
	margin-right: 10px;
}
.nav_sub_item:hover {
	color: #b938c8;
}
.nav_sub_categories {
	width: 270px;
}
.nav_sub_categories .nav_sub_item {
	font-size: 16px;
}
img {
	max-width: 100%;
}
.cont_body {
	padding-top: 70px;
}
.section {
	padding: 40px 0px;
}
.footer {
	background: #3b3b3b;
	color: #fff;
	padding: 40px 10px;
}
.footer1 {
	background: #3b3b3b;
	color: #fff;
	padding: 30px 10px;
	border-top: 1px solid #979797;
}
.footer h3 {
	font-size: 18px;
	font-weight: 700;
	text-transform: uppercase;
	padding-bottom: 10px;
}
.f_logo {
	font-weight: 600;
	font-size: 24px;
	display: flex;
	align-items: center;
	padding: 20px 0px;
}
.f_logo img {
	height: 110px;
	margin-right: 10px;
}
.footer1 .socials i {
	font-size: 22px;
	margin-right: 20px;
}
.appstores {
	background: #b938c8;
	color: #fff;
	font-weight: 700;
	padding: 20px;
	border-radius: 8px;
	margin: 0px 20px;
}
.appstores h3 {
	font-weight: 700;
    margin-bottom: 20px;
}
.appstores > img {
	height: 100%;
}
.bt {
	background: #b938c8;
	border: 1px solid #b938c8;
	color: #fff;
	padding: 12px 20px;
	display: inline-block;
	border-radius: 8px;
	text-align: center;
    font-weight: 700;
    cursor: pointer;
}
.bt:hover {
	opacity: 0.9;
}
.bt.bt_white {
	background: #fff;
	border-color: #b938c8;
	color: #b938c8;
}
.dbuttons1 {
	margin-top: 20px;
}
.dbuttons {
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.fsignup input {
	height: 100%;
	width: calc(100% - 100px);
	padding: 10px 12px;
	border-top-right-radius: 0;
	border-bottom-right-radius: 0;
}
.fsignup .bt {
	width: 100px;
	padding: 8px 12px;
	border-top-left-radius: 0;
	border-bottom-left-radius: 0;
}
a.seeall {
	text-transform: none;
	float: right;
	font-weight: 400;
}

/*dialog*/
.dlg {
	position: fixed;
	z-index: 99;
	background: rgba(0,0,0,0.2);
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	display: none;
}
.success_message {
	text-align: center;
}
.dlg_cont {
	background: #fff;
	padding: 20px;
	border-radius: 8px;
	min-width: 300px;
}
.dlg_cont h3 {
	margin: 0px;
	border-bottom: 1px solid #eee;
	padding-bottom: 10px;
}

#dlg_image.dlg {
	background: rgba(0,0,0,1);
}
#dlg_image .dlg_cont {
	width: 100%;
	height: 100%;
	max-width: 100%;
	max-height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	background: transparent;
	padding: 20px;
    margin: 0;
}
#dlg_image .dlg_cont img {
	background: #aaa;
	padding: 20px;
	border-radius: 12px;
	max-width: 100%;
	max-height: 100%;
	object-fit: contain;
	user-select: none;
}
.bt_cancel {
	z-index: 99;
	position: absolute;
	right: 10px;
	top: 10px;
	float: right;
	font-size: 16px;
    cursor: pointer;
    background: #fff;
    display: flex;
	align-items: center;
	justify-content: center;
	width: 30px;
	height: 30px;
	border-radius: 30px;
	opacity: 0.7;
}
.bt_cancel:hover {
	opacity: 1;
}
.div_loading {
	position: fixed;
	display: flex;
	align-items: center;
	justify-content: center;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: rgba(255,255,255,1);
    z-index: 999;
    opacity: 0.6;
	display: none;
}
.div_loading img {
	width: auto;
	height: 150px;
}
.loading_title {
	text-align: center;
	font-weight: bold;
	padding: 0px;
}
.error,
.error1 {
	padding: 16px 0px;
	text-align: center;
	color: #f33636;
	font-size: 14px;
}
.toast {
	position: fixed;
	z-index: 99;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 100%;
	justify-content: center;
	align-items: center;
	display: none;
	transition: ease all 0.5s;
}
.toast div {
	border-radius: 8px;
	background: #414142;
	color: #fff;
	padding: 20px 30px;
	border: 0px solid #fff;
	box-shadow: #aaa 0px 0px 12px 0px;
}
.toast.open {
	display: flex;
}
