/*
Template Name: uCo - Multipurpose Ecommerce Mobile HTML Template 
Description: uCo - Multipurpose Ecommerce Mobile HTML Template 
Version: 1.0
*
 *--------------------CSS INDEX----------------
 * #-Header
 * #-Footer Nav
 * #-Notifications
 * #-Canvas menu
 * #-Search Area
 * #-Live Chart
 * #-Cart
 * #-Profile
*/
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,300;1,400;1,500&display=swap');
body{
	margin: 0;
	padding: 0;
	font-size: 14px;
	color: #191919;
    font-family: 'Poppins', sans-serif;
	font-weight: normal;
	font-style: normal;
	background: #F7F9FA;
}
a,
button {
	-webkit-transition: all 0.3s ease-out 0s;
	-moz-transition: all 0.3s ease-out 0s;
	-ms-transition: all 0.3s ease-out 0s;
	-o-transition: all 0.3s ease-out 0s;
	transition: all 0.3s ease-out 0s;
}
*::-moz-selection {
	background: #622ED8;
	color: #fff;
	text-shadow: none;
}
::-moz-selection {
	background: #622ED8;
	color: #fff;
	text-shadow: none;
}
::selection {
	background: #622ED8;
	color: #fff;
	text-shadow: none;
}
*::-moz-placeholder {
	color: #555555;
	font-size: 14px;
	opacity: 1;
}
*::placeholder {
	color: #555555;
	font-size: 14px;
	opacity: 1;
}
h1,h2,h3,h4,h5,h6,p{
	margin:0;
	padding: 0;
}
ul{
	margin:0;
	padding: 0;
	list-style: none;
}
a{
	text-decoration: none;
	transition: .4s;
	-webkit-transition: all .4s ease-in-out;
}
a:hover{
	text-decoration: none;
}
button:focus{
	outline: none;
}
input:focus{
	outline: none;
}
textarea:focus{
	outline: none;
}
p{
	color: #555;
}
img{
	max-width: 100%;
}
@media (min-width: 1000px){
	.container {
		max-width: 1000px;
	}
}
/*
 * #-Header
*/
.header {
	background: #622ED8;
	color: #fff;
	border-bottom-right-radius: 15px;
	border-bottom-left-radius: 15px;
	padding: 10px 0px;
}
.navbar-inner .left {
	float: left;
}
.navbar-inner .left .canvas_open{
	width: 40px;
	height: 40px;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 50%;
	background: #ffffff4f;
}
.navbar-inner .left .canvas_open a {
	display: block;
}
.navbar-inner .left .canvas_open a span {
	width: 18px;
	height: 2px;
	background: #fff;
	display: block;
	margin: 5px 0px;
	-webkit-transition: all .4s ease-in-out;
	transition: all .4s ease;
}
.navbar-inner .left .canvas_open a span:nth-child(2) {
	width: 12px;
}
.navbar-inner .title {
	float: left;
	overflow: hidden;
	padding-left: 10px;
}
.navbar-inner .title h2 {
	font-size: 24px;
	text-transform: capitalize;
	font-weight: 700;
	padding-top: 6px;
}
.navbar-inner .title h2 a{
	color: #fff;
}
.text-right{
	text-align: right;
}
.navbar-inner .right {
	float: right;
	height: 100%;
	align-items: center;
	display: flex;
}
.navbar-inner .right .wishlist-btn {
	padding-right: 12px;
}
.navbar-inner .right .wishlist-btn a {
	color: #fff;
	font-size: 20px;
}
.navbar-inner .right .bell-btn a {
	color: #fff;
	font-size: 20px;
	position: relative;
}
.navbar-inner .right .bell-btn a span {
	width: 6px;
	height: 6px;
	background: #00ff10;
	display: block;
	border-radius: 10px;
	position: absolute;
	top: 0;
	right: 1px;
}
/*
 * #-Footer Nav
*/
.footer-nav-wrapper {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 99;
	background-color: #fff;
	-webkit-box-shadow: 0 0 8px rgba(15, 15, 15, 0.15);
	box-shadow: 0 0 8px rgba(15, 15, 15, 0.15);
	padding: 5px 0px;
}
.footer-nav-menu{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	width: 100%;
}
.footer-nav-menu a {
	text-align: center;
	color: #333;
	padding: 6px 0px;
	display: inline-block;
	-webkit-transition: all .4s ease-in-out;
	transition: all .4s ease;
}
.footer-nav-menu a span {
	font-size: 12px;
}
.footer-nav-menu a i {
	display: block;
	font-size: 20px;
}
.footer-nav-menu a.active{
	color: #622ED8;
}
.footer-nav-menu a:hover{
	color: #622ED8;
}
/*
 * #-Notifications
*/
.notifications-area {
	background: #F7F9FA;
	position: fixed;
	width: 100%;
	height: 100vh;
	bottom: 0;
	z-index: 999;
	box-sizing: border-box;
	padding: 10px 16px;
	-webkit-transition: all .4s ease-in-out;
	transition: all .4s ease-in-out;
	overflow-y: auto;
	margin-left: 0px;
	top: 100%;
	opacity: 0;
	visibility: hidden;
}
.notifications-area.active{
	top: 0;
	visibility: visible;
	opacity: 1;
}
.notification-breadcrumb .left {
	float: left;
}
.notification-breadcrumb {
	border-bottom: 1px solid #eee;
	padding-bottom: 10px;
}
.notification-breadcrumb {
	border-bottom: 1px solid #eee;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	padding: 10px 10px;
	background: #F7F9FA;
	z-index: 99;
	-webkit-transition: all .4s ease-in-out;
	transition: all .4s ease-in-out;
}
.notification-breadcrumb .left a {
	font-size: 24px;
	color: #333;
	-webkit-transition: all .4s ease-in-out;
	transition: all .4s ease-in-out;
}
.notification-breadcrumb .left a:hover{
	color: #622ED8;
}
.notification-breadcrumb .title {
	overflow: hidden;
}
.notification-breadcrumb .title h2 {
	color: #384144;
	font-weight: 600;
	font-size: 20px;
	width: 100%;
	padding-top: 4px;
	text-transform: capitalize;
}
.notifications-content {
	padding-top: 70px;
}
.notification-item {
	background: #fff;
	margin-bottom: 20px;
	border-radius: 15px;
	padding: 12px 10px;
	box-sizing: border-box;
	box-shadow: 0px 0px 10px 0px #d9d9d9;
}
.notification-item .title {
	margin-bottom: 10px;
}
.notification-item .title h2 {
	font-size: 14px;
	font-weight: 600;
	text-transform: capitalize;
}
.notification-item .title h2 i {
	font-size: 13px;
}
.notification-item .text {
	margin-bottom: 10px;
}
.notification-item .text p {
	line-height: 22px;
}
.notification-item .item-time {
	width: 100%;
	overflow: hidden;
}
.notification-item .item-time .left {
	float: left;
}
.notification-item .item-time .left span {
	color: #666;
}
/*
 * #-Canvas menu
*/
.off_canvars_overlay {
	width: 100%;
	height: 100%;
	position: fixed;
	z-index: 999;
	opacity: 0;
	visibility: hidden;
	cursor: crosshair;
	background: #232323;
	top: 0;
}
.off_canvars_overlay.active {
	opacity: 0.5;
	visibility: visible;
}
.canvas-menu {
	background: #622ED8;
	position: fixed;
	width: 300px;
	height: 100vh;
	top: 0;
	bottom: 0;
	z-index: 999;
	box-sizing: border-box;
	padding: 10px 16px;
	-webkit-transition: all .4s ease-in-out;
	transition: all .4s ease-in-out;
	overflow-y: auto;
	margin-left: -300px;
}
.canvas-menu.active{
	margin-left: 0px;
}
.menu-close i {
	color: #fff;
	position: absolute;
	top: 5px;
	right: 10px;
	font-size: 30px;
	cursor: pointer;
}
.canvas-header {
	margin-top: 30px;
}
.ba-navbar-user .thumb {
	width: 100%;
	overflow: hidden;
	text-align: center;
	margin-bottom: 10px;
}
.ba-navbar-user .thumb img {
	width: 100px;
	border-radius: 50%;
}
.ba-navbar-user .content h3 {
	font-size: 18px;
	text-transform: capitalize;
	line-height: 1.2;
	color: #fff;
	font-weight: 600;
	margin-bottom: 2px;
}
.ba-navbar-user .content p {
	color: #ddd;
	font-size: 14px;
}
.canvas-nav ul li {
	display: block;
}
.canvas-nav ul li a {
	width: 100%;
	display: inline-block;
	color: #ffffff;
	padding-top: .625rem;
	padding-bottom: .625rem;
	padding-right: 1rem;
	padding-left: 1rem;
	font-size: 14px;
	font-weight: 600;
	border-radius: .375rem;
	margin-bottom: .25rem;
	-webkit-transition: all .4s ease-in-out;
	transition: all .4s ease;
}
.canvas-nav ul li a:hover {
	background: #ffffff1c;
}
.canvas-nav ul li a i {
	padding-right: 4px;
}
/*
 * #-Search Area
*/
.search-area {
	background: #F7F9FA;
	position: fixed;
	width: 100%;
	height: 100vh;
	bottom: 0;
	z-index: 999;
	box-sizing: border-box;
	padding: 10px 16px;
	-webkit-transition: all .4s ease-in-out;
	transition: all .4s ease-in-out;
	overflow-y: auto;
	margin-left: 0px;
	top: 100%;
	opacity: 0;
	visibility: hidden;
}
.search-area.active{
	opacity: 1;
	visibility: visible;
	top: 0;
}
.top-to-breadcrumb {
	border-bottom: 1px solid #eee;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	padding: 10px 10px;
	background: #F7F9FA;
	z-index: 99;
	-webkit-transition: all .4s ease-in-out;
	transition: all .4s ease-in-out;
}
.top-to-breadcrumb .left{
	float: left;
}
.top-to-breadcrumb .left a {
	font-size: 24px;
	color: #333;
	-webkit-transition: all .4s ease-in-out;
	transition: all .4s ease-in-out;
}
.top-to-breadcrumb .left a:hover{
	color: #622ED8;
}
.top-to-breadcrumb .title {
	overflow: hidden;
}
.top-to-breadcrumb .title h2 {
	color: #384144;
	font-weight: 600;
	font-size: 20px;
	width: 100%;
	padding-top: 4px;
	text-transform: capitalize;
}
.search-area-full {
	padding-top: 70px;
}
.serach-top-form {
	width: 100%;
	position: relative;
}
.serach-top-form input {
	font-size: 14px;
	background-color: #fff;
	color: #333;
	border: 1px solid #f1f1f1;
	width: 100%;
	position: relative;
	padding: 14px 20px;
	-webkit-transition: all .4s ease-in-out;
	transition: all .4s ease-in-out;
}
.serach-top-form input:focus {
	border-color: #622ED8;
}
.serach-top-form button {
	position: absolute;
	top: 0;
	right: 0;
	height: 100%;
	border: none;
	padding: 0px 18px;
	color: #fff;
	font-size: 18px;
	background: #622ED8;
}
.recent-popular-serach h4 {
	font-size: 14px;
	font-weight: 600;
	margin-bottom: 5px;
}
.search-tags a {
	display: inline-block;
	border: 1px solid #e1e1e1;
	margin: 4px 2px;
	border-radius: 10px;
	padding: 5px 12px;
	color: #333;
	font-size: 12px;
	text-transform: capitalize;
	background: #fff;
	-webkit-transition: all .4s ease-in-out;
	transition: all .4s ease-in-out;
}
.search-tags a:hover{
	color: #622ED8;
	border-color: #622ED8;
}
/*
 * #-Live Chart
*/
.chart-area {
	background: #F7F9FA;
	position: fixed;
	width: 100%;
	height: 100vh;
	bottom: 0;
	z-index: 999;
	box-sizing: border-box;
	padding: 0px;
	-webkit-transition: all .4s ease-in-out;
	transition: all .4s ease-in-out;
	overflow-y: auto;
	margin-left: 0px;
	top: 100%;
	opacity: 0;
	visibility: hidden;
}
.chart-area.active{
	top: 0%;
	opacity: 1;
	visibility: visible;
}
.live-chart-header {
	background: #622ED8;
	padding: 10px 16px;
	text-align: center;
	border-bottom-left-radius: 50px;
	border-bottom-right-radius: 50px;
	padding-bottom: 30px;
	padding-top: 85px;
}
.live-chart-header p {
	color: #fff;
	font-weight: 500;
	text-transform: capitalize;
	margin-bottom: 4px;
}
.live-chart-header .thumbnail img {
	width: 50px;
	margin-bottom: 10px;
	border-radius: 50%;
}
.live-chart-header .status-online {
	position: relative;
	z-index: 1;
	color: #ffffff;
	font-size: 14px;
	display: inline-block;
	padding-left: 15px;
}
.live-chart-header .status-online::after {
	position: absolute;
	width: 10px;
	height: 10px;
	background-color: #00b894;
	border-radius: 50%;
	content: "";
	margin-top: -5px;
	top: 50%;
	left: 0;
	z-index: 10;
	-webkit-animation: flashing 1.5s infinite linear;
	animation: flashing 1.5s infinite linear;
}
.type-text-form {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	width: 100%;
	background: #fff;
	z-index: 999;
}
.live-chart-header .thumbnail {
	display: flex;
	justify-content: center;
}
.live-chart-header .thumbnail .c-te {
	text-align: left;
	padding-left: 18px;
}
.type-text-form form {
	width: 100%;
	position: relative;
}
.type-text-form form input {
	width: 100%;
	box-sizing: border-box;
	border: 1px solid #eee;
	height: 50px;
	position: relative;
	padding: 0px 40px;
	text-transform: capitalize;
	font-weight: 500;
	font-size: 14px;
	padding-right: 55px;
}
.type-text-form form .file input {
	height: 20px;
	display: none;
}
.type-text-form form .file i {
	position: absolute;
	top: 12px;
	left: 8px;
	cursor: pointer;
	border: 2px solid #eee;
	font-size: 14px;
	width: 25px;
	height: 25px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	color: #666;
	-webkit-transition: all .4s ease-in-out;
	transition: all .4s ease-in-out;
}
.type-text-form form .file i:hover{
	color: #622ED8;
	border-color: #622ED8;
}
.type-text-form form .file label {
	display: flex;
}
.type-text-form form button {
	position: absolute;
	top: 5px;
	right: 10px;
	border: none;
	font-size: 14px;
	-webkit-transition: all .4s ease-in-out;
	transition: all .4s ease-in-out;
	width: 40px;
	height: 40px;
	background: #622ED8;
	color: #fff;
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
}
.type-text-form form button:hover{
	color: #fff;
}
.live-chart-box-full {
	padding: 0px 14px;
	padding-top: 20px;
	padding-bottom: 60px;
	box-sizing: border-box;
}
.support-message-content {
	margin-bottom: 15px;
}
.user-message-text {
	margin-bottom: 15px;
}
.support-message-content {
	margin-bottom: 15px;
	overflow: hidden;
	width: 100%;
}
.support-message-content .thumb {
	width: 40px;
	float: left;
	padding-right: 10px;
	padding-top: 5px;
}
.support-message-content .text-content {
	overflow: hidden;
	position: relative;
}
.support-message-content .text-content .d-block p {
	margin-bottom: 10px;
	background: #fff;
	padding: 12px 15px;
	border-radius: 10px;
	font-size: 14px;
	line-height: 20px;
	display: inline-block;
}
.support-message-content .text-content span {
	text-transform: uppercase;
	font-weight: 500;
	font-size: 12px;
}
.user-message-text .text-content{
	text-align: right;
}
.user-message-text .text-content span {
	text-transform: uppercase;
	font-weight: 500;
	font-size: 12px;
}
.user-message-text .text-content .d-block p {
	margin-bottom: 10px;
	background: #622ED8;
	padding: 12px 15px;
	border-radius: 10px;
	font-size: 14px;
	line-height: 20px;
	display: inline-block;
	color: #fff;
}
.support-message-content .text-content .d-block .writing-mode {
	background: #fff;
	padding: 12px 15px;
	display: inline-block;
	border-radius: 10px;
}
.support-message-content .text-content .d-block .writing-mode .dot {
	width: 7px;
	height: 7px;
	display: inline-block;
	background: #acaaaa;
	margin: 0px 1px;
	border-radius: 50%;
	
  -webkit-animation: wave 1.3s linear infinite;
  animation: wave 1.3s linear infinite;
}
.support-message-content .text-content .d-block .writing-mode .dot:nth-child(2) {
  -webkit-animation-delay: -1.1s;
  animation-delay: -1.1s; 
}
.support-message-content .text-content .d-block .writing-mode .dot:nth-child(3) {
  -webkit-animation-delay: -.9s;
  animation-delay: -.9s; 
}
@-webkit-keyframes wave {
  0%,
  100%,
  60% {
    -webkit-transform: initial;
    transform: initial; }
  30% {
    -webkit-transform: translateY(-5px);
    transform: translateY(-5px); } 
}
@keyframes wave {
  0%,
  100%,
  60% {
    -webkit-transform: initial;
    transform: initial; }
  30% {
    -webkit-transform: translateY(-5px);
    transform: translateY(-5px); 
  }
}
/*
 * #-Cart
*/
.cart-wrapper{
	background: #F7F9FA;
	position: fixed;
	width: 100%;
	height: 100vh;
	bottom: 0;
	z-index: 999;
	box-sizing: border-box;
	padding: 10px 16px;
	-webkit-transition: all .4s ease-in-out;
	transition: all .4s ease-in-out;
	overflow-y: auto;
	margin-left: 0px;
	top: 100%;
	opacity: 0;
	visibility: hidden;
}
.cart-wrapper.active{
	top: 0;
	opacity: 1;
	visibility: visible;
}
.cart-single-p {
	width: 100%;
	overflow: hidden;
	position: relative;
	background: #fff;
	padding: 10px;
	border-radius: 5px;
	margin-bottom: 15px;
}
.cart-single-p .content {
	overflow: hidden;
}
.quantity {
	position: relative;
	width: 100px;
	display: block;
}
.cart-single-p .thumb{
	width: 80px;
	margin-right: 15px;
	float: left;
}
.quantity input {
	width: 100%;
	text-align: center;
	padding-left: 0;
	-moz-appearance: textfield;
	height: 30px;
	border-radius: 0px;
	border: 1px solid #eee;
	font-weight: 600;
}
.quantity-nav {
	height: 30px;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
}
.quantity-button.quantity-up {
	position: absolute;
	top: 0;
	right: 0px;
	height: 100%;
	display: flex;
	width: 25px;
	background: #333;
	justify-content: center;
	align-items: center;
	font-size: 16px;
	color: #fff;
	cursor: pointer;
	transition: all .4s ease;
}
.quantity-button.quantity-down {
	position: absolute;
	top: 0;
	left: 0px;
	height: 100%;
	display: flex;
	width: 25px;
	background: #333;
	justify-content: center;
	align-items: center;
	font-size: 16px;
	color: #fff;
	cursor: pointer;
	transition: all .4s ease;
}
.cart-single-p .content .left h4 {
	font-size: 14px;
	font-weight: 600;
	text-transform: capitalize;
	margin-bottom: 4px;
}
.cart-single-p .content .left h4 a {
	color: #333;
}
.cart-single-p .content .left h4:hover a {
	color: #622ED8;
}
.cart-single-p .content .price {
	font-size: 12px;
	font-weight: 600;
	margin-bottom: 10px;
	color: #622ED8;
}
.c-p-remove {
	position: absolute;
	top: 37%;
	right: 8px;
	width: 25px;
	height: 25px;
	background: #622ED8;
	display: flex;
	justify-content: center;
	align-items: center;
	color: #fff;
	border-radius: 50%;
	cursor: pointer;
	font-size: 17px;
}
.cuppon-form {
	padding: 10px;
	background: #fff;
	border-radius: 5px;
}
.cuppon-form h2 {
	font-size: 16px;
	font-weight: 500;
	margin-bottom: 2px;
}
.cuppon-form p {
	font-size: 13px;
	margin-bottom: 10px;
}
.cuppon-form form {
	position: relative;
	width: 100%;
	margin-bottom: 10px;
}
.cuppon-form form input {
	width: 100%;
	border: 1px solid #eee;
	padding: 12px 16px;
	-webkit-transition: all .4s ease-in-out;
	transition: all .4s ease-in-out;
}
.cuppon-form form input:focus{
	border-color: #622ED8;
}
.cuppon-form form button {
	position: absolute;
	top: 0;
	right: 0;
	border: none;
	height: 100%;
	background: #622ED8;
	color: #fff;
	text-transform: capitalize;
	font-weight: 600;
	font-size: 14px;
	padding: 0px 15px;
}
.cart-checkout-p-area {
	background: #fff;
	border-radius: 5px;
	padding: 20px 10px;
}
.cart-checkout-p-area .left .total span {
	font-size: 14px;
	font-weight: 600;
}
.cart-checkout-p-area .left .total span b{
	color: #622ED8;
}
.cart-checkout-p-area .right a {
	display: inline-block;
	padding: 10px 20px;
	background: #622ED8;
	color: #fff;
	text-transform: capitalize;
	font-weight: 600;
}
/*
 * #-Profile
*/
.profile-wrapper {
	background: #F7F9FA;
	position: fixed;
	width: 100%;
	height: 100vh;
	bottom: 0;
	z-index: 999;
	box-sizing: border-box;
	padding: 10px 16px;
	-webkit-transition: all .4s ease-in-out;
	transition: all .4s ease-in-out;
	overflow-y: auto;
	margin-left: 0px;
	top: 100%;
	opacity: 0;
	visibility: hidden;
}
.profile-wrapper.active {
	top: 0;
	opacity: 1;
	visibility: visible;
}
.profile-wrapper-content-header {
	background: #622ED8;
	padding: 30px 20px;
	border-top-right-radius: 30px;
	border-top-left-radius: 30px;
}
.profile-name-or-u span {
	color: #fff;
	font-weight: 500;
}
.profile-name-or-u p {
	color: #fff;
	text-transform: capitalize;
	font-size: 16px;
	font-weight: 600;
}
.profile-wrapper-content-c {
	background: #fff;
	padding: 20px;
	border-bottom-left-radius: 30px;
	border-bottom-right-radius: 30px;
}
.single-profile-data {
	margin-bottom: 15px;
	width: 100%;
	overflow: hidden;
}
.single-profile-data .title i {
	display: inline-block;
	background: #622ED8;
	color: #fff;
	border-radius: 6px;
	text-align: center;
	width: 26px;
	height: 26px;
	line-height: 1.9;
	font-size: 12px;
	padding-top: 1px;
	margin-right: 2px;
}
.single-profile-data .title {
	float: left;
}
.single-profile-data .data-content {
	overflow: hidden;
	text-align: right;
}
.single-profile-data .title span {
	font-weight: 600;
	font-size: 12px;
}
.single-profile-data .data-content p {
	font-size: 12px;
}
.single-profile-data .data-content a {
	display: inline-block;
	background: #F61957;
	color: #fff;
	text-transform: capitalize;
	font-weight: 600;
	font-size: 12px;
	padding: 5px 16px;
	border-radius: 3px;
}
.edit-p-btn a {
	width: 100%;
	text-align: center;
	display: inline-block;
	background: #622ED8;
	color: #fff;
	text-transform: capitalize;
	font-weight: 600;
	font-size: 14px;
	padding: 10px 0px;
	border-radius: 4px;
}
.edit-p-btn a i{
	padding-left: 4px;
}
.edit-profile-pic label {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 30px;
	height: 30px;
	background: #333;
	border-radius: 50%;
	color: #fff;
	font-size: 12px;
}
.edit-profile-pic label input{
	opacity: 0;
	display: none;
}
.edit-profile-header .profile-img {
	position: relative;
}
.edit-profile-pic {
	position: absolute;
	top: 0;
	left: 0;
}
.edit-profile-wrapper {
	padding: 0px 15px;
}
.edid-profile-form label {
	width: 100%;
	font-weight: 600;
	text-transform: capitalize;
	margin-bottom: 2px;
}
.edid-profile-form input {
	width: 100%;
	margin-bottom: 15px;
	border: 1px solid #eee;
	color: #333;
	padding: 12px 15px;
	-webkit-transition: all .4s ease-in-out;
	transition: all .4s ease-in-out;
}
.edid-profile-form input:focus{
	border-color: #622ED8;
}
.edid-profile-form button {
	width: 100%;
	text-align: center;
	display: inline-block;
	background: #622ED8;
	color: #fff;
	text-transform: capitalize;
	font-weight: 600;
	font-size: 14px;
	padding: 10px 0px;
	border-radius: 4px;
	border: none;
}
.order-page-area {
	background: #F7F9FA;
	box-sizing: border-box;
	padding: 0px 15px;
}
.order-item-single {
	width: 100%;
	overflow: hidden;
	margin-bottom: 15px;
	background: #fff;
	padding: 10px;
}
.order-item-single .thumb {
	float: left;
	width: 80px;
	margin-right: 10px;
}
.order-item-single .right {
	overflow: hidden;
}
.order-item-single .right h4 {
	font-size: 16px;
	font-weight: 600;
	text-transform: capitalize;
	margin-bottom: 5px;
}
.order-item-single .right p {
	font-weight: 600;
	color: #622ED8;
	padding-bottom: 8px;
}
.order-item-single .right .btan span:nth-child(1) {
	padding: 2px 10px;
	display: inline-block;
	border-radius: 4px;
	font-weight: 600;
	text-transform: capitalize;
	font-size: 12px;
}
.order-item-single .right .btan span:nth-child(2) {
	text-align: right;
	float: right;
	color: #555;
	font-size: 12px;
}
.hero-slider-area {
	box-sizing: border-box;
	border-radius: 20px;
	padding: 10px;
}
.hero-slider-single {
	border-radius: 10px;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center center;
	padding: 70px 20px;
}
/*Animation*/
.active .hero-slider-single h2, .active .hero-slider-single h4, .active .hero-slider-single a{
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
  -webkit-animation-delay: 0.5s;
  animation-delay: 0.5s;
}
.active .hero-slider-single h4{
	 -webkit-animation-delay: 0.9s;
  animation-delay: 0.9s;
}
.active .hero-slider-single a {
  -webkit-animation-delay: 1.3s;
  animation-delay: 1.3s;
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}
.hero-slider-caption h2 {
	font-size: 22px;
	text-transform: capitalize;
	font-weight: 700;
	color: #fff;
	margin-bottom: 2px;
}
.hero-slider-caption h4 {
	font-size: 16px;
	text-transform: capitalize;
	font-weight: 600;
	color: #fff;
	margin-bottom: 10px;
	margin-top: 5px;
}
.hero-slider-caption a {
	display: inline-block;
	background: #622ED8;
	color: #fff;
	text-transform: capitalize;
	font-weight: 600;
	font-size: 14px;
	padding: 8px 15px;
	border-radius: 4px;
}
.hero-slider-full{
	position: relative;
}
.hero-slider-full .owl-dots {
	position: absolute;
	bottom: 10px;
	left: 0;
	right: 0;
	width: 100%;
	text-align: center;
}
.hero-slider-full .owl-dots .owl-dot {
	margin: 0 6px;
	border: 0;
	background: none;
	cursor: pointer;
}
.hero-slider-full .owl-dots .owl-dot.active span {
	background: #622ED8;
}
.hero-slider-full .owl-dots .owl-dot span {
	display: block;
	border-radius: 50%;
	background-color: #fff;
	width: 8px;
	height: 8px;
	position: relative;
	transition: all 0.3s ease;
}
.hero-slider-full .owl-dots .owl-dot span::after {
	position: absolute;
	content: "";
	top: -5px;
	left: -5px;
	border: 1px solid #622ED8;
	border-radius: 50%;
	width: calc(100% + 10px);
	height: calc(100% + 10px);
	transform: scale(0);
	transition: all 0.3s ease;
}
.hero-slider-full .owl-dots .owl-dot.active span::after {
	transform: scale(1);
}
.category-slider {
	box-sizing: border-box;
	padding: 10px;
}
.category-slider h2 {
	margin-bottom: 10px;
	font-size: 16px;
	font-weight: 600;
	color: #333;
}
.cate-s-item {
	background: #fff;
	width: 90%;
	box-sizing: border-box;
	border-radius: 5px;
	text-align: center;
	padding: 20px 10px;
}
.cate-s-item a {
	text-align: center;
	display: inline-block;
	color: #333;
}
.cate-s-item a i {
	font-size: 30px;
	display: block;
	margin-bottom: 2px;
}
.cate-s-item a span {
	font-size: 12px;
	text-transform: capitalize;
	color: #666;
	-webkit-transition: all .4s ease-in-out;
	transition: all .4s ease;
}
.cate-s-item a:hover span{
	color: #622ED8;
}
.cate-s-item .fa-heart {
	color: #ff2929;
}
.cate-s-item .fa-gamepad {
	color: #1c90f4;
}
.cate-s-item .fa-mobile-alt {
	color: #c6384c;
}
.cate-s-item .fa-tshirt {
	color: green;
}
.top-prodcut-area .row{
	width: 100%;
}
.top-prodcut-area {
	box-sizing: border-box;
	padding: 10px;
}
.top-prodcut-area h2 {
	margin-bottom: 10px;
	font-size: 16px;
	font-weight: 600;
	color: #333;
}
.product-item {
	width: 100%;
	background: #fff;
	border-radius: 5px;
	padding: 5px;
	position: relative;
	padding-bottom: 10px;
}
.product-item .thumbnail .p-wish-icon {
	position: absolute;
	top: 5px;
	right: 6px;
}
.product-item .thumbnail {
	position: relative;
	margin-bottom: 10px;
}
img{
	max-width: 100%;
}
.product-item .thumbnail .p-wish-icon a {
	color: #622ED8;
	font-size: 18px;
}
.product-item .thumbnail .p-wish-icon a:hover{
	color: #D82E6E;
}
.product-item .content h4.title {
	font-size: 16px;
	font-weight: 600;
	margin-bottom: 10px;
}
.product-item .content h4.title a{
	color: #333;
}
.product-item .content h4.title:hover a{
	color: #622ED8;
}
.product-item .content .price {
	font-weight: 600;
	margin-bottom: 2px;
	font-size: 14px;
}
.product-item .content .price del {
	font-size: 12px;
	color: #622ED8;
	padding-left: 4px;
}
.ratting span {
	float: left;
	font-size: 10px;
	color: #ff6536;
}
.product-item .cart-btn {
	float: right;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 35px;
	height: 35px;
	background: #622ED8;
	border-radius: 50%;
	color: #fff;
	margin-right: 12px;
}
.product-item .col-5 {
	padding: 0;
}
.top-product-slider .product-item {
	width: 96%;
}
.banner-inner {
	width: 93%;
	margin: 0 auto;
	margin-top: 10px;
	border-radius: 10px;
	box-sizing: border-box;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	padding: 55px 20px;
}
.banner-inner h2 {
	color: #fff;
	font-weight: 700;
	font-size: 16px;
	margin-bottom: 10px;
}
.banner-inner a {
	display: inline-block;
	padding: 8px 20px;
	background: #622ED8;
	color: #fff;
	text-transform: capitalize;
	font-weight: 600;
	border-radius: 20px;
}
.feature-product {
	box-sizing: border-box;
	padding: 10px;
	margin-top: 10px;
	overflow: hidden;
}
.feature-product h2 {
	margin-bottom: 10px;
	font-size: 16px;
	font-weight: 600;
	color: #333;
}
.button-12 {
	display: inline-block;
	padding: 10px 30px;
	background: #622ED8;
	text-transform: capitalize;
	font-weight: 600;
	color: #fff;
	border-radius: 50px;
}
.button-12:hover{
	color: #fff;
}
/*===== All Preloader Style =====*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #fff;
  z-index: 999999; 
}
#preloader .preloader {
	width: 100%;
	height: 100%;
	display: inline-block;
	padding: 0px;
	text-align: left;
	box-sizing: border-box;
	position: absolute;
	margin-left: -25px;
	margin-top: -25px;
	display: flex;
	justify-content: center;
	align-items: center;
}
#preloader .preloader span {
    position: absolute;
    display: inline-block;
    width: 150px;
    height: 150px;
    border-radius: 100%;
    background-color: #e52e06;
    -webkit-animation: preloader 1.3s linear infinite;
    animation: preloader 1.3s linear infinite;
}
#preloader .preloader span:last-child {
	animation-delay: -0.8s;
	-webkit-animation-delay: -0.8s;
	background-color: green;
}

@keyframes preloader {
  	0% {
    	transform: scale(0, 0);
    	opacity: 0.5; 
	}
  	100% {
    	transform: scale(1, 1);
    	opacity: 0; 
	} 
}
@-webkit-keyframes preloader {
  	0% {
    	-webkit-transform: scale(0, 0);
    	opacity: 0.5; 
	}
  	100% {
    	-webkit-transform: scale(1, 1);
    	opacity: 0; 
    } 
}
/*End Preloader Style*/
.p-loading-mode .dot {
	width: 7px;
	height: 7px;
	display: inline-block;
	background: #622ED8;
	margin: 0px 1px;
	border-radius: 50%;
	
  -webkit-animation: wave 1.3s linear infinite;
  animation: wave 1.3s linear infinite;
}
.p-loading-mode .dot:nth-child(2) {
  -webkit-animation-delay: -1.1s;
  animation-delay: -1.1s; 
}
.p-loading-mode .dot:nth-child(3) {
  -webkit-animation-delay: -.9s;
  animation-delay: -.9s; 
}
@-webkit-keyframes wave {
  0%,
  100%,
  60% {
    -webkit-transform: initial;
    transform: initial; }
  30% {
    -webkit-transform: translateY(-5px);
    transform: translateY(-5px); } 
}
@keyframes wave {
  0%,
  100%,
  60% {
    -webkit-transform: initial;
    transform: initial; }
  30% {
    -webkit-transform: translateY(-5px);
    transform: translateY(-5px); 
  }
}
.all-lefr-or-r {
	width: 100%;
	overflow: hidden;
}
.feature-product .left {
	float: left;
}
.feature-product .right {
	float: right;
	padding-right: 10px;
}
.product-filer-left i {
	font-size: 20px;
	cursor: pointer;
}
.p-product-filer {
	position: fixed;
	width: 300px;
	height: 100vh;
	top: 0;
	bottom: 0;
	z-index: 9999;
	box-sizing: border-box;
	padding: 10px 16px;
	-webkit-transition: all .4s ease-in-out;
	transition: all .4s ease-in-out;
	overflow-y: auto;
	margin-left: -300px;
	background: #F7F9FA;
	padding-top: 20px;
}
.p-product-filer.active{
	margin-left: 0px;
}
.p-product-filer .menu-close i {
	color: #333;
}
.single-p-product-filer {
	margin-bottom: 20px;
	background: #fff;
	padding: 10px;
	border-radius: 5px;
}
.single-p-product-filer h3 {
	font-size: 16px;
	font-weight: 700;
	text-transform: capitalize;
	margin-bottom: 10px;
}
.single-p-product-filer input {
	width: 14px;
	height: 14px;
	border-radius: 0px;
	border: 1px solid #eee;
}
.single-p-product-filer label {
	color: #666;
}
.product-details-thumbnail .owl-dots {
	position: absolute;
	bottom: 10px;
	left: 0;
	right: 0;
	width: 100%;
	text-align: center;
}
.product-details-thumbnail .owl-dots .owl-dot {
	margin: 0 6px;
	border: 0;
	background: none;
	cursor: pointer;
}
.product-details-thumbnail .owl-dots .owl-dot.active span {
	background: #622ED8;
}
.product-details-thumbnail .owl-dots .owl-dot span {
	display: block;
	border-radius: 50%;
	background-color: #000;
	width: 8px;
	height: 8px;
	position: relative;
	transition: all 0.3s ease;
}
.product-details-thumbnail .owl-dots .owl-dot span::after {
	position: absolute;
	content: "";
	top: -5px;
	left: -5px;
	border: 1px solid #622ED8;
	border-radius: 50%;
	width: calc(100% + 10px);
	height: calc(100% + 10px);
	transform: scale(0);
	transition: all 0.3s ease;
}
.product-details-thumbnail .owl-dots .owl-dot.active span::after {
	transform: scale(1);
}
.p-details-bottom {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	width: 100%;
	text-align: center;
}
.p-details-bottom a {
	width: 100%;
	display: inline-block;
	background: #622ED8;
	color: #fff;
	text-transform: uppercase;
	font-weight: 600;
	padding: 10px 0px;
}
.p-details-bottom a i{
	padding-right: 4px;
}
.p-d-f-content {
	box-sizing: border-box;
	padding: 15px 15px;
}
.p-d-f-content .title {
	font-size: 18px;
	font-weight: 700;
	margin-bottom: 10px;
}
.price-or-quantity {
	width: 100%;
	overflow: hidden;
	margin-bottom: 10px;
}
.price-or-quantity .quantity {
	float: left;
	margin-right: 15px;
}
.price-or-quantity .price {
	overflow: hidden;
}
.price-or-quantity .price span {
	font-size: 20px;
	font-weight: 700;
	color: #000;
}
.price-or-quantity .price span del {
	font-size: 16px;
	color: #622ED8;
}
.p-d-f-content .ratting {
	width: 100%;
	overflow: hidden;
	margin-bottom: 10px;
	padding-top: 10px;
}
.p-d-f-content .ratting span {
	font-size: 14px;
}
.p-d-f-content .ratting span small{
	color: #333;
}
.color-details-full h4 {
	font-size: 16px;
	font-weight: 600;
	text-transform: uppercase;
	margin-bottom: 4px;
}
.color--details .single {
	float: left;
	margin: 0px 3px;
}
.color--details .single span {
	width: 15px;
	height: 15px;
	display: block;
	background: red;
}
.color--details .single span.green {
	background: green;
}
.color--details .single span.blue {
	background: blue;
}
.color--details .single span.yellow {
	background: yellow;
}
.size-details-page {
	width: 100%;
	overflow: hidden;
	padding-top: 12px;
	margin-bottom: 20px;
}
.size-details-page h4 {
	font-size: 16px;
	font-weight: 600;
	text-transform: uppercase;
	margin-bottom: 4px;
}
.size-details-page .form-check {
	float: left;
	margin-right: 10px;
	color: #333;
}
.p-d-f-content .dec h4 {
	font-size: 18px;
	font-weight: 600;
	text-transform: capitalize;
	margin-bottom: 10px;
}
.p-d-f-content .dec p {
	text-align: justify;
	line-height: 26px;
	margin-bottom: 15px;
}
.share-product span {
	margin: 0px 2px;
}
.share-product a {
	display: inline-block;
}
.share-product a i {
	font-size: 14px;
	width: 30px;
	height: 30px;
	display: flex;
	justify-content: center;
	align-items: center;
	background: #084f99;
	border-radius: 5px;
	color: #fff;
}
.share-product a i.fa-twitter {
	background: #1da1f2;
}
.share-product a i.fa-linkedin {
	background: #0e76a8;
}
.share-product a i.fa-skype {
	background: green;
}
.share-product a i.fab.fa-instagram {
	background: radial-gradient(circle farthest-corner at 32% 106%,#ffe17d 0,#ffcd69 10%,#fa9137 28%,#eb4141 42%,transparent 82%),linear-gradient(135deg,#234bd7 12%,#c33cbe 58%);
}
.rattingl-list {
	margin-top: 12px;
	box-sizing: border-box;
	padding: 0px 13px;
}
.rattingl-list h4 {
	font-size: 16px;
	font-weight: 600;
	margin-bottom: 10px;
}
.rattingl-list li {
	width: 100%;
	overflow: hidden;
	margin-bottom: 20px;
	position: relative;
	padding-left: 50px;
}
.rattingl-list li .thumbnail {
	width: 32px;
	position: absolute;
	left: 0;
}
.rattingl-list li .ratting {
	width: 100%;
	overflow: hidden;
}
.rattingl-list li .ratting span {
	font-size: 14px;
	margin: 0px 2px;
}
.rating-form {
	box-sizing: border-box;
	width: 100%;
	padding: 10px;
}
.rating-form h4 {
	font-size: 16px;
	font-weight: 600;
	margin-bottom: 10px;
}
.rating-form .ratting {
	width: 100%;
	overflow: hidden;
	margin-bottom: 10px;
}
.rating-form .ratting span {
	font-size: 20px;
}
.rating-form form{
	width: 100%;
}
.rating-form form textarea {
	width: 100%;
	border: 1px solid #eee;
	padding: 13px 14px;
	height: 100px;
	margin-bottom: 15px;
}
.rating-form form button {
	background: #622ED8;
	border: none;
	color: #fff;
	text-transform: uppercase;
	font-weight: 600;
	padding: 10px 20px;
}
.wishlist-page .product-item .thumbnail .p-wish-icon a {
	color: #fff;
	font-size: 16px;
	background: #622ED8;
	width: 30px;
	height: 30px;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 50%;
}
.contact-area {
	box-sizing: border-box;
	padding: 10px 15px;
}
.contact-info .single {
	width: 100%;
	overflow: hidden;
	margin-bottom: 20px;
	background: #fff;
	padding: 20px 10px;
	border-radius: 5px;
	box-shadow: 0px 0px 10px 0px #d9d7d7;
	display: flex;
}
.contact-info .single .icon {
	font-size: 25px;
	margin-right: 10px;
	color: #622ED8;
	padding-top: 5px;
}
.contact-info .single .content {
	overflow: hidden;
}
.contact-info .single .content p {
	font-size: 16px;
	font-weight: 600;
}
.contact-form {
	margin-bottom: 20px;
	background: #fff;
	padding: 20px 10px;
	border-radius: 5px;
	box-shadow: 0px 0px 10px 0px #d9d7d7;
}
.contact-form h2 {
	font-size: 18px;
	font-weight: 600;
	margin-bottom: 10px;
}
.contact-form input {
	width: 100%;
	margin-bottom: 15px;
	border: 1px solid #eee;
	padding: 14px 15px;
	-webkit-transition: all .4s ease-in-out;
	transition: all .4s ease-in-out;
}
.contact-form textarea {
	width: 100%;
	margin-bottom: 15px;
	border: 1px solid #eee;
	padding: 14px 15px;
	-webkit-transition: all .4s ease-in-out;
	transition: all .4s ease-in-out;
	height: 120px;
}
.contact-form input:focus{
	border-color: #622ED8;
}
.contact-form textarea:focus{
	border-color: #622ED8;
}
.contact-form button {
	margin-bottom: 20px;
	border: none;
	background: #622ED8;
	color: #fff;
	text-transform: uppercase;
	font-weight: 600;
	padding: 15px 30px;
}
.checkout-form {
	padding: 10px 14px;
	padding-top: 75px;
	width: 100%;
	box-sizing: border-box;
}
.checkout-form label {
	width: 100%;
	font-weight: 500;
	text-transform: capitalize;
	color: #666;
	padding-bottom: 2px;
}
.checkout-form input {
	width: 100%;
	border: 1px solid #eee;
	padding: 10px 12px;
	margin-bottom: 15px;
}
.checkout-form select {
	width: 100%;
	border: 1px solid #eee;
	padding: 10px 12px;
	margin-bottom: 15px;
}
.checkout-form textarea {
	width: 100%;
	border: 1px solid #eee;
	padding: 10px 12px;
	margin-bottom: 15px;
	height: 100px;
}
.checkout-form button {
	margin-bottom: 30px;
	padding: 12px 40px;
	text-transform: uppercase;
	font-weight: 600;
	background: #622ED8;
	color: #fff;
	border: none;
	letter-spacing: 1px;
}
.setting-area-full {
	padding: 0px 15px;
	padding-top: 75px;
	padding-bottom: 35px;
}
.setting-item {
	width: 100%;
	overflow: hidden;
	background: #fff;
	border-radius: 5px;
	padding: 14px 15px;
	box-shadow: 0px 0px 10px 0px #ececec;
	margin-bottom: 10px;
}
.setting-item .title {
	float: left;
}
.setting-item .title i {
	color: #622ED8;
	font-size: 20px;
	padding-right: 6px;
	float: left;
}
.setting-item .title span {
	overflow: hidden;
	font-size: 14px;
	text-transform: capitalize;
	font-weight: 500;
	color: #666;
}
.setting-item .date-content-t {
	float: right;
}
.setting-item .toggle-button-cover {
	position: relative;
	z-index: 1;
}
.setting-item .button.r, .setting-item .button.r .layer {
	border-radius: 100px;
}
.setting-item  .button.r {
	position: relative;
	width: 45px;
	height: 21px;
	overflow: hidden;
	border: 1px solid #ebebeb;
}
.setting-item .checkbox {
	position: relative;
	width: 100%;
	height: 100%;
	padding: 0;
	margin: 0;
	opacity: 0;
	cursor: pointer;
	z-index: 3;
}
.setting-item .knobs::before {
	content: '';
	position: absolute;
	top: 2px;
	left: 2px;
	width: 15px;
	height: 15px;
	background-color: #ea4c62;
	border-radius: 50%;
	-webkit-transition: 0.3s ease all, left 0.3s cubic-bezier(0.18, 0.89, 0.35, 1.15);
	transition: 0.3s ease all, left 0.3s cubic-bezier(0.18, 0.89, 0.35, 1.15);
}
.setting-item .layer {
	width: 100%;
	background-color: transparent;
	-webkit-transition: 0.3s ease all;
	transition: 0.3s ease all;
	z-index: 1;
}
.setting-item .knobs {
	z-index: 2;
}
.setting-item .knobs, .setting-item .layer {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
}
.setting-item .checkbox:checked + .knobs::before {
	content: '';
	left: 24px;
	background-color: #100DD1;
}
.login-form-dmark {
	margin: 15px;
	background: #fff;
	box-sizing: border-box;
	padding: 30px 15px;
	margin-top: 30px;
	margin-bottom: 30px;
}
.login-register-form-head {
	width: 100%;
	overflow: hidden;
	margin-bottom: 35px;
}
.login-register-form-middle .single-input {
	width: 100%;
	position: relative;
	margin-bottom: 25px;
}
.login-register-form-middle .single-input input {
	width: 100%;
	position: relative;
	border: 1px solid #eee;
	padding: 15px 20px;
}
.login-register-form-middle .single-input label {
	position: absolute;
	top: -10px;
	background: #fff;
	color: #000;
	z-index: 1;
	font-size: 12px;
	font-weight: 500;
	text-transform: capitalize;
	left: 20px;
}
.login-register-form-middle .single-input label.rememberme {
	position: relative;
	top: -7px;
	left: 10px;
}
.login-register-form-middle .single-input input#rememberme {
	width: auto;
	float: left;
	border-radius: 0px;
}
.login-register-form-middle .single-input button {
	width: 100%;
}
.single-input.checkbox {
	margin-bottom: 10px;
}
.login-register-from-btom p {
	font-size: 14px;
	color: #333;
}
.login-register-from-btom p a{
	color: #333;
}
.login-register-from-btom p a:hover{
	color: #5f3afc;
}
.login-register-from-btom p.text-dark a {
	padding-left: 6px;
}
.login-register-form-middle .single-input button {
	width: 100%;
	background: #622ED8;
	color: #ffff;
	text-transform: uppercase;
	padding: 14px 0px;
	font-weight: 600;
	border: none;
}
.login-register-form-head h2 {
	text-align: center;
	font-size: 20px;
	text-transform: capitalize;
	letter-spacing: 1px;
	margin-bottom: 20px;
	font-weight: 700;
}
.login-register-form-head h3 {
	text-align: center;
	margin-bottom: 10px;
	font-size: 40px;
	font-weight: 900;
}
.login-register-form-head h3 a{
	color: #333;
}
.login-register-form-head ul li {
	display: inline-block;
	text-align: center;
	width: 23%;
	float: left;
	margin: 0% 1%;
}
.login-register-form-head ul li.google {
	width: 48%;
}
.login-register-form-head ul li.facebook a {
	width: 100%;
	display: block;
	color: #fff;
	font-size: 18px;
	font-weight: 600;
	text-transform: capitalize;
	border-radius: 5px;
	padding: 13px 0px;
	background: #36528C;
}
.login-register-form-head ul li.twitter a{
	width: 100%;
	display: block;
	color: #fff;
	font-size: 18px;
	font-weight: 600;
	text-transform: capitalize;
	border-radius: 5px;
	padding: 13px 0px;
	background: #0D8DDC;
}
.login-register-form-head ul li.google a {
	background: #D04237;
	width: 100%;
	display: block;
	color: #fff;
	font-size: 14px;
	font-weight: 600;
	text-transform: capitalize;
	border-radius: 5px;
	padding: 15px 0px;
}
.login-register-form-head ul li.google a i{
	font-size: 20px;
}
.login-register-form-head ul li.google a span {
	padding-left: 6px;
}