/* ==================================================================
 * Google Fonts
================================================================== */
@font-face{font-family:Nunito;src:url(../fonts/Nunito-Light.woff2) format('woff2'),url(../fonts/Nunito-Light.woff) format('woff');font-weight:300;font-style:normal}@font-face{font-family:Nunito;src:url(../fonts/Nunito-ExtraBold.woff2) format('woff2'),url(../fonts/Nunito-ExtraBold.woff) format('woff');font-weight:800;font-style:normal}@font-face{font-family:Nunito;src:url(../fonts/Nunito-Bold.woff2) format('woff2'),url(../fonts/Nunito-Bold.woff) format('woff');font-weight:700;font-style:normal}@font-face{font-family:Nunito;src:url(../fonts/Nunito-SemiBold.woff2) format('woff2'),url(../fonts/Nunito-SemiBold.woff) format('woff');font-weight:600;font-style:normal}@font-face{font-family:Nunito;src:url(../fonts/Nunito-Regular.woff2) format('woff2'),url(../fonts/Nunito-Regular.woff) format('woff');font-weight:400;font-style:normal}

/* ==================================================================
	01.Global Styles
================================================================== */
:root {
	--primary:#F69632;
	--primary-dark:#c86600;
	--primary-light:#faf9f9;
    --secondary: #616161;
    --light: #f8f9fa;
    --white: #fff;
    --dark:#111;
    --muted:#8492a6;
}
html{
	scroll-behavior: smooth;
}
* {
    outline: 0!important
}
body {
    font-family: 'Nunito', sans-serif;
	margin:0;
    overflow-x: hidden;
	color:var(--dark);
	background:var(--white);
    padding-top: 96px;
}
html a {
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -ms-transition: all .5s;
    transition: all .5s;
    color: var(--primary);
	text-decoration:none;
}
html a:hover {
    color:var(--dark);
	text-decoration:none;
}
svg,
img {
    max-width: 100%;
	height:auto;
	width:auto;
}
html .container {
    max-width: 1200px
}
section{
	position: relative;
    padding-top: 80px;
    padding-bottom: 80px;
	z-index:1;
}
p {
    font-size: 15px;
    color: var(--secondary);
    line-height: 160%;
}
p:last-child{
	margin-bottom:0;
}
#wrapper{
    overflow-x: hidden;
	max-width:100%;
}
::selection{
	color:var(--white);
	background:var(--primary);
}
input[type="file"]::-webkit-file-upload-button {
	cursor:pointer; 
}
input[type="file"]::-moz-file-upload-button {
	cursor:pointer; 
}
input[type="file"]::-ms-file-upload-button {
	cursor:pointer; 
}
input[type="file"]::-o-file-upload-button {
	cursor:pointer; 
}
input[type="file"] {
	cursor:pointer; 
}

/* ==================================================================
	02.Loader Styles
================================================================== */
#loader-wrapper img{
	display:block;
	animation-name:spin2;
	animation-duration:1.5s;
	animation-iteration-count:infinite;
	animation-timing-function:linear;
}
#loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3000;
    display: flex;
    align-items: center;
    justify-content: center;
}
#loader{
	width: 150px;
	z-index:9999;
}
#loader span{
	color: var(--white);
    margin: 26px 0 0 0;
    display: none;
    font-size: 26px;
}
@keyframes spin2 {
  0% {
    transform: rotate(0deg) scale(1);
  }
  50%{
    transform: rotate(180deg) scale(1.2);
  }
  100% {
    transform: rotate(360deg) scale(1);
  }
}
@keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
#loader-wrapper .loader-section {
	position: fixed;
	top: 0;
	width: 51%;
	height: 100%;
	background:#fff;
	z-index: 1000;
}
#loader-wrapper .loader-section.section-left {
	left: 0;
}
#loader-wrapper .loader-section.section-right {
	right: 0;
}
.loaded #loader-wrapper .loader-section.section-left {
	-webkit-transform: translateX(-100%);
	-ms-transform: translateX(-100%);
	transform: translateX(-100%);
	-webkit-transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1.000);
	transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1.000);
}
.loaded #loader-wrapper .loader-section.section-right {
	-webkit-transform: translateX(100%);
	-ms-transform: translateX(100%);
	transform: translateX(100%);
	-webkit-transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1.000);
	transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1.000);
}
.loaded #loader {
	opacity: 0;
	-webkit-transition: all 0.3s ease-out;
	transition: all 0.3s ease-out;
}
.loaded #loader-wrapper {
	visibility: hidden;
	-webkit-transform: translateY(-100%);
	-ms-transform: translateY(-100%);
	transform: translateY(-100%);
	-webkit-transition: all 0.3s 1s ease-out;
	transition: all 0.3s 1s ease-out;
}
/* ==================================================================
	03.Header
================================================================== */
header {
    padding: 18px 0;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    z-index: 999;
	transition:all 0.5s;
	border-bottom:1px solid #eee;
}
.sticky header {
    background: #fff;
    position: fixed;
    box-shadow: 0 1px 3px 0 rgba(60, 72, 88, 0.2);
    padding: 12px 0;
}
header.nav-light {
    border-bottom: 0;
}
header .logo {
    display: flex;
    color: var(--dark);
    font-size: 20px;
    text-transform: uppercase;
    font-weight: 700;
    align-items: center;
}
header .logo i {
    color: var(--dark);
    font-size: 46px;
    margin-right: 15px;
}
header .logo img, 
header .logo svg {
    max-height: 60px;
    margin-right: 15px;
    width: auto;
}
header .navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0;
}
header nav{
	margin-left:auto;
}
header .navbar-nav {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
    -webkit-flex-direction: row;
    flex-direction: row;
    position: relative;
}
header .navbar-nav > li {
    margin-right: 28px;
    position: relative;
}
header .navbar-nav > li:last-child{
	margin-right:0;
}
header .navbar-nav > li > a {
    display: block;
    color: var(--secondary);
    font-size: 13px;
    text-transform: uppercase;
    font-weight: 700;
    line-height: 46px;
	position:relative;
    letter-spacing: 0.5px;
}
header .navbar-nav > li.active > a,
header .navbar-nav > li:hover > a,
header .navbar-nav > li > a:hover {
    color: var(--primary);
}
header .navbar-nav > li > a:before {
    content: "";
    display: block;
    position: absolute;
	left:auto;
	right:0;
	margin-left:auto;
    bottom: 3px;
    width: 0;
    border-bottom: 2px dotted var(--primary);
	-webkit-transition:all 0.5s;
	transition:all 0.5s;
}
header .navbar-nav > li.active > a:before,
header .navbar-nav > li:hover > a:before,
header .navbar-nav > li > a:hover:before {
    width: 100%;
	right:auto;
	left:0;
	margin-left:0;
}
header .navbar-nav > li ul {
    display: block;
    position: absolute;
    left: 0;
    top: 100%;
    padding: 15px 0;
    background: var(--white);
    list-style: none;
    border-radius: 5px;
    min-width: 200px;
    margin:25px 0 0 0;
    box-shadow: 0 0 8px 0 rgba(0,0,0,0.15);
	transition:all 0.1s;
	opacity:0;
	visibility:hidden;
}
header .navbar-nav > li:hover > ul {
	transition:all 0.5s;
	opacity:1;
	visibility:visible;
	margin-top:0;
}
header .navbar-nav > li ul li{
	margin-bottom:8px;
	position:relative;
}
header .navbar-nav > li ul li:last-child{
	margin-bottom:0;
}
header .navbar-nav > li ul li > a {
    display: block;
    color: var(--secondary);
    font-size: 13px;
    text-transform: uppercase;
    font-weight: 700;
    line-height: 120%;
    letter-spacing: 0.5px;
	padding:5px 15px;
}
header .navbar-nav > li ul li.sub-dropdown > a {
	position:relative;
	padding-right:30px;
}
header .navbar-nav > li ul li.sub-dropdown > a:after {
    content:"\f054";
    font-family: "Font Awesome 5 Free";
    display:block;
	font-weight:900;
	position:absolute;
	right:12px;
	top:5px;
}
header .navbar-nav > li ul li.active > a,
header .navbar-nav > li ul li:hover > a ,
header .navbar-nav > li ul li > a:hover {
    color: var(--primary);
}
header .navbar-nav > li.mega-dropdown > a:after,
header .navbar-nav > li.dropdown > a:after {
    content: "\f078";
    font-family: "Font Awesome 5 Free";
    margin-left: 4px;
}
header .navbar-nav > li ul > li > ul {
    left:100%;
    top: 0;
    margin: 0 0 0 25px;
}
header .navbar-nav > li ul > li:hover > ul {
	transition:all 0.5s;
	opacity:1;
	visibility:visible;
	margin-left:0;
}
.toggle-menu{
	display:none;
}
header .header-login{
	margin-left:20px;
	padding-left:20px;
	display:flex;
	align-items:center;
	position:relative;
}
header .header-login:before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 1px;
    background:var(--secondary);
    margin: auto;
    height: 20px;
    opacity: 0.4;
}
html:not(.sticky) header.nav-light .header-login:before{
    background: var(--white);
}
header .header-login > a:first-child {
	margin-left:0;
}
header .header-login > a {
    display: block;
    color: rgba(255,255,255,0.8);
    font-size: 13px;
    text-transform: uppercase;
    font-weight: 700;
    line-height: 38px;
    letter-spacing: 0.5px;
    margin-left: 16px;
}
header .header-login > a:hover {
    color: var(--white);
}
header .header-login > a.signup-btn {
    padding: 0 14px;
    color: var(--white);
    background:var(--primary);
    border-radius: 5px;
	box-shadow:0 3px 5px 0 rgba(0, 0, 0, 0.2);
}
header .header-login > a.signup-btn:hover {
    color: var(--white);
    background:var(--primary-dark);
}
html:not(.sticky) header.nav-light .header-login > a,
html:not(.sticky) header.nav-light .navbar-nav > li > a{
    color: rgba(255,255,255,0.5);
}
html:not(.sticky) header.nav-light .navbar-nav > li.active > a,
html:not(.sticky) header.nav-light .navbar-nav > li > a:hover,
html:not(.sticky) header.nav-light .header-login > a:hover{
    color: #fff;
}
html:not(.sticky) header.nav-light .navbar-nav > li > a:before {
	border-color:#fff;
}
html:not(.sticky) header.nav-light .header-login > a.signup-btn{
    color:var(--primary);
	background:var(--white);
}
html:not(.sticky) header.nav-light .header-login > a.signup-btn:hover{
    color: var(--white);
    background:var(--dark);
}
/* ==================================================================
	04.Elements
================================================================== */
.gray-bg,
html .bg-bg-light {
    background-color: var(--primary-light)!important;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1) inset;
}
html .bg-primary{
	background-color:var(--primary)!important;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1) inset;
}
html .bg-dark {
    background-color: var(--dark) !important;
}
html .bg-muted {
    background-color:var(--muted) !important;
}
/*----Buttons----*/
html .btn {
    padding: 0 22px;
    line-height: 40px;
    font-size: 15px;
    border-radius: 5px;
	cursor:pointer;
	border:0;
    box-shadow:0 3px 5px 0 rgba(0, 0, 0, 0.15);
    font-weight: 600;
    letter-spacing: 0.5px;
	transition:all 0.5s;
}
html .btn.btn-sm {
    font-size: 13px;
    padding: 0 15px;
    line-height: 34px;
}
html .btn.btn-lg {
    font-size: 18px;
    line-height: 50px;
    padding: 0 30px;
}
html .btn.btn-radiusless {
    border-radius: 0;
}
html .btn.btn-rounded {
    border-radius: 50px;
}
html .btn[class*="btn-outline-"] {
    box-shadow:0 3px 5px 0 rgba(0, 0, 0, 0);
}
html .btn[class*="btn-outline-"]:hover {
    box-shadow:0 3px 5px 0 rgba(0, 0, 0, 0.15);
}
.btn.btn-link {
    color: var(--primary);
    box-shadow:0 0 0 0 rgba(0, 0, 0, 0);
}
.btn.btn-white {
    background: #fff;
    color: var(--dark);
}
.btn.btn-white:hover {
    background: var(--dark);
    color: #fff;
}
html .btn.btn-icon {
    padding: 0;
    width: 35px;
    line-height: 35px;
    height: 35px;
    text-align: center;
}
html .btn.btn-icon.btn-sm {
    width: 30px;
    height: 30px;
    line-height: 30px;
    padding: 0;
}
html .btn.btn-icon.btn-lg {
    width: 48px;
    height: 48px;
    line-height: 48px;
    padding: 0;
}
html .btn-outline-light {
    color: #212529;
}
.btn-animation{
    position: relative;
    -webkit-transition: ease-out .3s;
    transition: ease-out .3s
}
.btn-animation:before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    opacity: 1;
    width: 100%;
    height: 100%;
    border: 2px solid rgba(18, 20, 22, .2);
    border-radius: 50%;
    -webkit-animation: button-drop 2s ease-out infinite;
    animation: button-drop 2s ease-out infinite
}
.btn-animation:hover{
    -webkit-transform: scale(.92);
    transform: scale(.92)
}
@-webkit-keyframes button-drop {
    0% {
        opacity: 1;
        width: 100%;
        height: 100%
    }
    60% {
        opacity: 0;
        width: 160%;
        height: 160%
    }
    100% {
        opacity: 0;
        width: 100%;
        height: 100%
    }
}
@keyframes button-drop {
    0% {
        opacity: 1;
        width: 100%;
        height: 100%
    }
    60% {
        opacity: 0;
        width: 160%;
        height: 160%
    }
    100% {
        opacity: 0;
        width: 100%;
        height: 100%
    }
}
/*----List Style----*/
.custom-list {
    list-style: none;
    padding: 0;
    margin: 0 0 18px;
    font-size: 15px;
    color: var(--secondary);
    line-height: 140%;
}
.custom-list > li {
    position: relative;
    padding: 0 0 0 25px;
    margin: 0 0 10px;
}
.custom-list > li:last-child{
	margin-bottom:0;
}
.custom-list > li:before {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    color: var(--primary);
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "\f061";
}
.custom-list.list-hover > li:after {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    color: var(--primary);
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "\f061";
}
.custom-list.list-hover > li:hover:after{
	animation-name:list-hover;
	animation-duration:1s;
	animation-iteration-count:infinite;
	opacity:0;
}
@-webkit-keyframes list-hover{
	0%{
		transform:scale(1);
		transform-origin:left center;
		opacity:1;
	}
	100%{
		transform:scale(2);
		transform-origin:left center;
		opacity:0;
	}
}
@keyframes list-hover{
	0%{
		transform:scale(1);
		transform-origin:left center;
		opacity:1;
	}
	100%{
		transform:scale(2);
		transform-origin:left center;
		opacity:0;
	}
}
.custom-list.style-2 > li:before {
    content: "";
    width: 16px;
    height: 16px;
    background: var(--primary);
    border-radius: 50%;
    border: 2px solid transparent;
    box-shadow: 0 0 0 2px #fff inset;
    top: 3px;
}
.custom-list.style-2.list-hover > li:after {
    content: "";
    position: absolute;
    width: 16px;
    height: 16px;
    opacity: 1;
    top: 3px;
	left:0;
    border: 2px solid var(--primary);
    border-radius: 50%;
}
.custom-list.style-2.list-hover > li:hover:after {
    -webkit-animation: list-hover2 1.5s ease-out infinite;
    animation: list-hover2 1.5s ease-out infinite
}
@-webkit-keyframes list-hover2{
    0% {
        opacity: 1;
		-webkit-transform:scale(1);
		transform:scale(1);
    }
    60% {
        opacity: 0;
		-webkit-transform:scale(2);
		transform:scale(2);
    }
    100% {
        opacity: 0;
		-webkit-transform:scale(1);
		transform:scale(1);
    }
}
@keyframes list-hover2 {
    0% {
        opacity: 1;
		-webkit-transform:scale(1);
		transform:scale(1);
    }
    60% {
        opacity: 0;
		-webkit-transform:scale(2);
		transform:scale(2);
    }
    100% {
        opacity: 0;
		-webkit-transform:scale(1);
		transform:scale(1);
    }
}

html .owl-carousel .owl-nav button.owl-next span, 
html .owl-carousel .owl-nav button.owl-prev span{
	display:none;
}
html .owl-carousel .owl-nav button.owl-next:hover:after, 
html .owl-carousel .owl-nav button.owl-prev:hover:after,
html .owl-carousel .owl-nav button.owl-next:hover, 
html .owl-carousel .owl-nav button.owl-prev:hover {
	background:var(--primary-dark);
}
html .owl-carousel .owl-nav button.owl-next, 
html .owl-carousel .owl-nav button.owl-prev {
    width: 50px;
    height: 50px;
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    transition: all 0.5s;
    text-align: center;
    line-height: 50px;
    font-size: 22px;
    color: #fff;
    background: var(--primary);
    border-radius: 50%;
}
html .owl-carousel .owl-nav button.owl-next{
	left:-80px;
} 
html .owl-carousel .owl-nav button.owl-prev{
	right:-80px;
}
html .owl-carousel .owl-nav button.owl-next:after, 
html .owl-carousel .owl-nav button.owl-prev:after{
	content:"";
	display:block;
	top:0;
	right:0;
	bottom:0;
	width:20px;
	height:20px;
	background:var(--primary);
	border-radius:15px;
	margin:auto -8px;
	position:absolute;
	-webkit-transition:all 0.5s;
	transition:all 0.5s;
}
html .owl-carousel .owl-nav button.owl-prev:after{
	right:auto;
	left:0;
}
html .owl-carousel .owl-nav button.owl-next:before, 
html .owl-carousel .owl-nav button.owl-prev:before{
	content:"\f060";
	display:block;
	font-weight:900;
	font-family:"Font Awesome 5 Free";
}
html .owl-carousel .owl-nav button.owl-prev:before{
	content:"\f061";
}
html .owl-dots {
    margin-top: 35px;
	text-align:center;
}
html .owl-carousel button.owl-dot {
    display: inline-block;
    vertical-align: top;
    background: transparent;
    margin: 0 5px;
    width: 20px;
    border-radius: 50px;
    height: 20px;
    transition: all 0.5s;
    opacity: 1;
    position: relative;
}
html .owl-carousel button.owl-dot:after,
html .owl-carousel button.owl-dot:before{
	content:"";
	display:block;
	position:absolute;
	left:0;
	right:0;
	bottom:0;
	top:0;
	margin:auto;
	border-radius:50%;
	-webkit-transition:all 0.5s;
	transition:all 0.5s;
}
html .owl-carousel button.owl-dot:after{
	width:4px;
	height:4px;
	background:var(--dark);
	z-index:1;
}
html .owl-carousel button.owl-dot:before{
    -webkit-transform:scale(0.5);
    transform:scale(0.5);
	opacity:0;
	background:var(--primary);
}
html .owl-carousel button.owl-dot.active:before,
html .owl-carousel button.owl-dot:hover:before {
    -webkit-transform:scale(1);
    transform:scale(1);
	opacity:1;
}
html .owl-carousel button.owl-dot.active:after,
html .owl-carousel button.owl-dot:hover:after {
    background:#fff;
}
html .owl-carousel .owl-item img {
    width: auto;
}
html .owl-carousel.nav-style-2 .owl-nav button.owl-next{
	left:10px;
	color:#fff;
}
html .owl-carousel.nav-style-2 .owl-nav button.owl-prev{
	right:10px;
	color:#fff;
}
html .owl-carousel.nav-style-3 .owl-nav button.owl-next, 
html .owl-carousel.nav-style-3 .owl-nav button.owl-prev {
    width: 44px;
    height: 80px;
    background: #fff;
    border-radius: 0 5px 5px 0;
    box-shadow: 4px 0px 5px 0 rgba(0,0,0,0.3);
    font-size: 22px;
	color:var(--secondary);
}
html .owl-carousel.nav-style-3 .owl-nav button.owl-next:after, 
html .owl-carousel.nav-style-3 .owl-nav button.owl-prev:after {
	display:none;
}
html .owl-carousel.nav-style-3 .owl-nav button.owl-next{
	left:0;
}
html .owl-carousel.nav-style-3 .owl-nav button.owl-prev{
	right:0;
    border-radius: 5px 0 0 5px;
    box-shadow: -4px 0px 5px 0 rgba(0,0,0,0.3);
}
.owl-carousel.dots-style-2 .owl-dots {
    margin: 0;
    bottom: 25px;
    position: absolute;
    left: 0;
    right: 0;
}
.owl-carousel.dots-style-2 .owl-dots button.owl-dot:after{
	background:var(--light);
}
.owl-carousel.dots-style-2 .owl-dots button.owl-dot:before{
	background:var(--light);
}
.owl-carousel.dots-style-2 .owl-dots button.owl-dot.active:after,
.owl-carousel.dots-style-2 .owl-dots button.owl-dot:hover:after {
	background:var(--primary);
}
figure.slide-box {
    margin: 0;
}
.slide-box figcaption {
    position: absolute;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: 2;
    padding:40px 30px 30px;
    color: #fff;
	background: -moz-linear-gradient(top, rgba(0,0,0,0) 0%, rgba(0,0,0,0.34) 23%, rgba(0,0,0,0.81) 100%);
	background: -webkit-linear-gradient(top, rgba(0,0,0,0) 0%,rgba(0,0,0,0.34) 23%,rgba(0,0,0,0.81) 100%);
	background: linear-gradient(to bottom, rgba(0,0,0,0) 0%,rgba(0,0,0,0.34) 23%,rgba(0,0,0,0.81) 100%);
	border-radius:0 0 5px 5px;
}
.slide-box figcaption h4 {
    font-size: 28px;
    font-weight: 600;
}
.slide-box figcaption p {
    color: rgba(255,255,255,0.8);
}
.dots-style-2 .slide-box figcaption {
    padding-bottom: 80px;
}

.social-list {
    display: flex;
    padding: 0;
    margin:0;
    list-style: none;
    justify-content: center;
}
.social-list li {
    margin: 0 15px 0 0;
}
.social-list li:last-child {
    margin-right: 0;
}
/*----Testimonial----*/
.testimonial-box {
    text-align: center;
}
.testimonial-box h4 {
    color: var(--primary);
    font-size: 18px;
    font-weight: 700;
    margin: 17px 0 0;
}
.testimonial-box h4 small{
    color: var(--secondary);
    font-size: 14px;
}
.t-user {
    width: 90px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(60, 72, 88, 0.4);
    margin: 0 auto 20px;
    border: 2px solid var(--primary);
}
.testimonial-box p {
    font-size: 16px;
    line-height: 170%;
    color: var(--dark);
}
.star-rating {
    margin-top: 10px;
    font-size: 12px;
    color: #ccc;
}
.star-rating .fas {
    color: #f17425;
}
.testimonial-box2 {
    position: relative;
    padding-top: 45px;
}
.testimonial-box2:before {
    content: "";
    display: block;
    position: absolute;
    left: 30px;
    font-family: "Font Awesome 5 Free";
    top: 0;
    content: "\f10d";
    font-weight: 900;
    z-index: 5;
    color: var(--primary);
    font-size: 70px;
    line-height: 110%;
    text-shadow: 1px 1px 0 rgba(0,0,0,.7);
}
.testimonial-box2 .content {
    background: #fff;
    padding: 40px 25px 25px;
    border-radius: 5px;
    position: relative;
    border: 1px solid #e9ecef;
}
.testimonial-box2 .content:after {
    content: "";
    display: block;
    position: absolute;
    left: 30px;
    border-left: 10px ridge transparent;
    border-right: 10px ridge transparent;
    border-top: 13px solid #fff;
    top: 100%;
}
.testimonial-box2 .content:before {
    content: "";
    display: block;
    position: absolute;
    left: 28px;
    border-left: 12px ridge transparent;
    border-right: 12px ridge transparent;
    border-top: 15px solid #e9ecef;
    top: 100%;
}
.testimonial-box2 .avtar-wrap {
    position: relative;
    margin-top: 25px;
    padding: 10px 0 0 90px;
    min-height: 65px;
}
.testimonial-box2 .avtar-wrap .avtar {
    position: absolute;
    left: 10px;
    top: 0;
    width: 65px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--primary);
}
.testimonial-box2 h4 {
    color: var(--dark);
    font-size: 18px;
    font-weight: 700;
    margin: 0 0;
}
.testimonial-box2 h4 small {
    color: var(--secondary);
    font-size: 14px;
}
.testimonial-box2 .avtar-wrap .star-rating {
    margin-top: 5px;
    margin-left: 10px;
}
.testimonial-box3{
	position:relative;
	padding-left:88px;
}
.testimonial-box3 .content {
    background: #fff;
    padding: 25px;
    border-radius: 5px;
    position: relative;
    border: 1px solid #e9ecef;
}
.testimonial-box3 .content:after {
    content: "";
    display: block;
    position: absolute;
    top: 30px;
    border-bottom: 10px ridge transparent;
    border-top: 10px ridge transparent;
    border-right: 13px solid #fff;
    right: 100%;
}
.testimonial-box3 .content:before {
    content: "";
    display: block;
    position: absolute;
    top: 28px;
    border-bottom: 12px ridge transparent;
    border-top: 12px ridge transparent;
    border-right: 15px solid #e9ecef;
    right: 100%;
}
.testimonial-box3 .avtar {
    position: absolute;
    top: 10px;
    left: 0;
    width: 65px;
    border-radius: 50%;
    overflow: hidden;
}
.testimonial-box3 h4 {
    color: var(--primary);
    font-size: 18px;
    font-weight: 700;
    margin: 0 0;
}
.testimonial-box3 h4 small {
    color: var(--secondary);
    font-size: 14px;
}
.testimonial-box3 .star-rating {
    margin-top: 5px;
    margin-left: 10px;
}
.testimonial-box4 {
    background: var(--light);
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 0 3px rgba(60, 72, 88, 0.25);
}
.testimonial-box4 h4 {
    color: var(--primary);
    font-size: 18px;
    font-weight: 700;
    margin: 0 0;
}
.testimonial-box4 h4 small {
    color: var(--secondary);
    font-size: 14px;
}
.testimonial-box4 .star-rating {
    margin-top: 5px;
    margin-left: 12px;
}
.testimonial-box4 .content{
	padding:15px;
}

/*----Title Style----*/
.title {
    text-align: center;
    margin: 0 0 40px;
    position: relative;
    padding: 0 0 20px;
}
.title h2 {
    font-size: 36px;
    font-weight: 600;
    line-height: 120%;
    margin: 0 0 15px;
}
.title:after, 
.title:before {
    content: "";
    display: block;
    position: absolute;
    left: 12px;
    right: 0;
    bottom: 0;
    height: 3px;
    width: 26px;
    background: var(--dark);
    margin: auto;
    border-radius: 5px;
}
.title:before {
    width: 10px;
    background: var(--primary);
    left: -30px;
}
.title h2 span{
	color:var(--primary);
}
.title p {
    font-size: 16px;
    color: var(--secondary);
}
.title h2:last-child{
	margin-bottom:0;
}
.title h6{
    font-size: 16px;
    margin: 0 0 12px;
	color:var(--secondery);
	text-transform:uppercase;
}
.title.title-white {
    color:var(--white);
}
.title.title-white:after{
    background:rgba(255,255,255,0.6);
}
.title.title-white:before {
    background:#fff;
}
.title.title-left {
    text-align: left;
    margin-bottom: 30px;
}
.title.title-left h2 {
    font-size: 35px;
}
.title.title-left:before{
	margin:0;
	left:0;
}
.title.title-left:after {
    margin: 0;
    left: 14px;
}
.title.title-right {
    text-align: right;
    margin-bottom: 30px;
}
.title.title-right h2 {
    font-size: 35px;
}
.title.title-right:before{
	margin:0;
	right:0;
	left:auto;
}
.title.title-right:after {
    margin: 0;
    right: 14px;
	left:auto;
}

.pagination{
    margin: 30px 0 0;
    display: flex;
}
.pagination ul{
    list-style: none;
    padding: 0;
    display: flex;
    align-items: center;
	margin:0;
}
.pagination li {
    margin: 0 5px;
}
.pagination li a, 
.pagination li span {
    padding: 0 6px;
    line-height: 32px;
    background: #fff;
    display: block;
    min-width: 32px;
    text-align: center;
    box-shadow: 0 0 3px rgba(60, 72, 88, 0.25);
    border-radius: 5px;
    font-size: 13px;
    color: #000;
}
.pagination li a:hover,
.pagination li.active a{
    color: #fff;
	background:var(--primary);
}
.pagination.style-2 ul {
    border: 1px solid #dee2e6;
    border-radius: 50px;
}
.pagination.style-2 ul li {
    margin: 0;
    border-right: 1px solid #dee2e6;
}
.pagination.style-2 ul li:last-child {
    border-right:0;
}
.pagination.style-2 ul li a, 
.pagination.style-2 ul li span {
    box-shadow: 0 0 0 0 transparent;
    border-radius: 0;
    line-height: 34px;
    min-width: 34px;
}
.pagination.style-2 ul li.prev-nav a,
.pagination.style-2 ul li.next-nav a{
	padding:0 12px;
}
.pagination.style-2 ul li.prev-nav a{
	border-radius:50px 0 0 50px;
}
.pagination.style-2 ul li.next-nav a{
	border-radius:0 50px 50px 0;
}
/*----Forms----*/
.form-group .file-upload .form-control {
    padding-right: 130px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.form-group label {
    font-size: 14px;
    font-weight: 600;
    margin: 0 0 4px;
}
.form-group label em {
    color:#ff0000;
	font-style:normal;
}
.form-group .form-control {
    -webkit-box-shadow: none;
    box-shadow: none;
    background-color: var(--white);
    border: 1px solid #dee2e6;
    color: var(--dark);
    height: 42px;
	font-family:'Nunito', sans-serif;
	line-height:normal;
    font-size: 13px;
    border-radius: 6px;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}
.form-group .form-control:focus{
	border-color:var(--primary);
}
.form-group textarea.form-control {
    height: 100px;
    padding-top: 10px;
    resize: none;
}
.form-group {
    margin: 0 0 18px;
    position: relative;
}
.field-icon {
    position: relative;
}
.form-group .field-icon .form-control {
    padding-left: 40px;
}
.form-group .field-icon i {   
	font-size: 14px;
    position: absolute;
    left: 0;
    top: 0;
    display: block;
    line-height: 42px;
    width: 40px;
	color:var(--dark);
    text-align: center;
}
/* ==================================================================
	Home Page
================================================================== */
.btn-set .btn + .btn {
    margin-left: 12px;
}
.btn-set {
    margin-top: 30px;
}
.what-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.what-icon img{
	max-height:100%;
}
.what-list p {
    text-align: center;
}
/* Different Section */
.section-bg-img {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: -1;
}
.sub-title {
    font-weight: 700;
    font-size: 28px;
    margin: 0 0 12px;
}
.bg-dot{
	background:url("../images/dot-bg.png") repeat 0 0;
}
.different-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.different-list li:last-child {
	margin-bottom:0;
}
.different-list li {
    display: flex;
    align-items: center;
    margin: 0 0 50px 0;
}
.different-list .icon {
    width: 70px;
    margin-right: 22px;
}
.different-list h5 {
    margin: 0;
    color: var(--white);
    font-size: 18px;
    font-weight: 600;
}
.different-round {
    position: relative;
    max-width: 480px;
    margin: 0px auto;
}
.different-round img {
    display:block;
	margin:0 auto;
	animation-name:round;
	animation-duration:18s;
	animation-iteration-count:infinite;
	animation-timing-function:linear;
}
@keyframes round{
	0%{
		transform:rotate(0deg);
	}
	100%{
		transform:rotate(360deg);
	}
}
/* ==================================================================
	06.Footer
================================================================== */
footer {
    background: var(--dark);
    color:var(--primary-light);
	font-size:14px;
    position: relative;
    z-index: 1;
}   
footer p{
	color:var(--primary-light);
	font-size:14px;
	line-height:150%;
}
footer a{
	color:var(--primary-light);
}
footer a:hover{
	color: var(--primary);
}
.footer-top {
    padding: 50px 0;
}
.footer-top > .container > .row{
    overflow: hidden;
}
footer:before {
    content: "";
    background-image: url("../images/shape-1.png");
    background-repeat: no-repeat;
    background-position: top right;
	background-size:100% auto;
    position: absolute;
    right: 0;
    top: 0;
    z-index: -1;
    width:45%;
    height: 100%;
	opacity:0.7;
}
footer:after {
    content: "";
    background-image: url("../images/shape-2.png");
    background-repeat: no-repeat;
    background-position: bottom right;
	background-size:100% auto;
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: -1;
    width:35%;
    height: 100%;
	opacity:0.7;
}
.footer-bottom {
    padding: 0 0 15px;
}
footer .logo:hover {
    color: var(--light);
}
footer .logo {
    display: flex;
    color: var(--light);
    font-size: 20px;
    text-transform: uppercase;
    font-weight: 700;
    align-items: center;
	margin-bottom:30px;
}
footer .logo i {
    color: var(--dark);
    font-size: 46px;
    margin-right: 15px;
}
footer .logo img, 
footer .logo svg {
    max-height: 50px;
    margin-right: 15px;
    width: auto;
}
footer .social-list {
    margin-top: 20px;
}
footer ul {
    margin: 0;
    padding: 0;
    list-style: none;
}
footer h3 {
    color: var(--text-white);
    font-weight: 700;
    font-size: 22px;
    position: relative;
    margin: 0 0 22px;
    padding: 0 0 15px;
}
footer h3:before, 
footer h3:after {
    content: "";
    display: block;
    position: absolute;
    left: 12px;
    bottom: 0;
    width: 26px;
    height: 3px;
    border-radius: 5px;
    background: var(--primary);
}
footer h3:after {
    width: 8px;
    left: 0;
	background:var(--light);
}
.foot-contact li {
    position: relative;
    padding-left: 40px;
    margin: 0 0 15px;
}
.foot-contact li:last-child{
	margin-bottom:0;
}
.foot-contact li i {
    position: absolute;
    left: 0;
    top: 1px;
    font-size: 18px;
}
.foot-contact li h6 {
    text-transform: uppercase;
    font-size: 13px;
    margin: 0 0 3px;
    font-weight: 700;
    color: #fff;
}
.payment-icon-list {
    display: flex;
}
.payment-icon-list li{
    margin-left:2px;
}
.payment-icon-list li:last-child{
    margin-left:0;
}
.payment-icon-list img{
    max-width:34px;
}
.footer-bottom p {
    font-size: 13px;
}
.footer-list li {
    position: relative;
    margin: 0 0 8px;
}
.footer-list li:last-child{
	margin-bottom:0;
}
.footer-list li > a{
    position: relative;
    padding-left: 20px;
	display:inline-block;
	vertical-align:top;
}
.footer-list > li > a:before {
    content: "\f054";
    font-family: "Font Awesome 5 Free";
    position: absolute;
    left: 4px;
    top: 3px;
    font-weight: 900;
    font-size: 70%;
}
footer label {
    color: #fff;
}
footer .foot-get-map i {
    position: relative;
    top: 0;
    font-size: 11px;
    margin-right: 2px;
}
footer .foot-get-map {
    color: var(--dark);
    background: var(--light);
    font-size: 10px;
    padding: 0 8px;
    border-radius: 3px;
    line-height: 20px;
    display: inline-block;
    margin: 0 0 0 3px;
}
footer .foot-get-map:hover {
    background: var(--primary);
    color: var(--light);
}
.sticky .scrollToTop{
	animation-name:bounceInUp;
	opacity:1;
}
.scrollToTop {
    width: 40px;
    height: 40px;
    position: fixed;
    bottom: 96px;
    border-radius: 5px;
    right: 30px;
    line-height: 40px;
    color: #fff;
    text-align: center;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
    box-shadow: 0 3px 5px 0 rgba(0, 0, 0, 0.15);
    opacity: 0;
    display: block;
    background: var(--primary);
    z-index: 99;
}
.scrollToTop:hover {
    background:var(--primary-dark);
	color:#fff;
}
section.last-section {
    padding-bottom: 130px;
}
.mobile_frame {
    position: absolute;
    left:00px;
    top: 0;
    max-width: 370px;
}
.mobile_screen {
    position: relative;
    padding: 1px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.mobile_screen .carousel-inner {
    width: 301px;
    margin: 47px 0 0 30px;
    overflow: hidden;
    border-radius: 0 0 40px 40px;
}
.work-section{
    background-image: linear-gradient(to top,rgba(0, 0, 0, .07), #fff);
	overflow:hidden;
}
.work-section:before {
    content: "";
    display: block;
    position: absolute;
    left: auto;
    bottom: -40px;
    width: 840px;
    right: 50%;
    height: 840px;
    background:url("../images/dotsasd.png") repeat ;
    background-color: var(--primary);
    border-radius: 50%;
    margin-right: 40px;
    box-shadow: 10px 15px 0 0 rgba(0,0,0,0.06);
}
.work-section:after {
    width: 420px;
    height: 495px;
    content: "";
    display: block;
    position: absolute;
    right: -90px;
    top: 10px;
    background: url(../images/shape_12.png) no-repeat 0 0;
    z-index: -1;
    background-size: 100% auto;
}
.mobile_screen .carousel-indicators:before {
    width: 133px;
    height: 575px;
    content: "";
    display: block;
    position: absolute;
    left: -30px;
    top: -60px;
    background: url(../images/dot_line.png) no-repeat 0 0;
    z-index: -1;
    background-size: 100% auto;
    opacity: 0.3;
}
.mobile_screen .carousel-indicators {
    position: relative;
    margin: 0;
    width: 600px;
    display: block;
}
.mobile_screen .carousel-indicators li {
    width: auto;
    height: auto;
    position: relative;
    text-indent: 0;
    border: 0;
    margin:0 0 50px 55px;
    background: transparent;
    opacity: 1;
}
.mobile_screen .carousel-indicators li:first-child{
	margin-left:0;
}
.mobile_screen .carousel-indicators li:last-child{
	margin-bottom:0;
	margin-left:0;
}
.mobile_screen .carousel-indicators li .icon {
    width: 80px;
    height: 80px;
    background: var(--secondary);
	position:relative;
    border-radius: 50%;
    display: flex;
    align-items: center;
    padding: 15px;
	transition:all 0.5s;
    justify-content: center;
    box-shadow: 0 0 6px 0 rgba(0,0,0,0.1);
}
.mobile_screen .carousel-indicators li .icon:hover,
.mobile_screen .carousel-indicators li.active .icon {
    transform:scale(1.1);
	background:var(--primary);
}
.mobile_screen .carousel-indicators li .icon:hover:before,
.mobile_screen .carousel-indicators li.active .icon:before {
	border-color:var(--primary);
}
.mobile_screen .carousel-indicators li .icon:before {
    border:2px solid var(--secondary);
    border-radius: 50%;
	left:0;
	top:0;
	transition:all 0.5s;
	bottom:0;
	right:0;
	margin:-6px;
	content:"";
	position:absolute;
	pointer-events:none;
}
.mobile_screen .carousel-indicators li .icon *{
	fill:#fff;
}
.mobile_screen .carousel-indicators li .dtc {
    position: absolute;
    left: 170px;
    top: -12px;
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 2px 2px 8px 0 rgba(0,0,0,0.1);
    max-width: 510px;
	transition:all 0.5s;
	opacity:0;
	visibility:hidden;
}
.mobile_screen .carousel-indicators li .dtc:before {
    content: "";
    display: block;
    position: absolute;
    right: 100%;
    top: 40px;
    width: 20px;
    height: 20px;
    background: #fff;
    transform: rotate(45deg);
    margin-right: -9px;
    border-left: 1px solid #eee;
    border-bottom: 1px solid #eee;
}
.mobile_screen .carousel-indicators li.active .dtc {
    left: 120px;
	opacity:1;
	visibility:visible;
}
.mobile_screen .carousel-indicators li .dtc h3 {
    font-weight: 700;
    font-size: 20px;
    margin: 0 0 8px;
}
.mobile_screen .carousel-indicators li .dtc p {
    line-height: 120%;
    font-size: 13px;
}
.card {
    box-shadow: 0 0 3px rgba(60, 72, 88, 0.25);
    background: var(--white);
    border-radius: 5px;
    transition: all 0.5s;
    margin-bottom: 30px;
    overflow: hidden;
    border: 0;
}
html .info-box-wrap {
    padding: 0 80px;
}
.card-body.info-box-min {
    margin: 0 0 20px;
    padding: 20px 20px 20px 100px;
    position: relative;
    min-height: 95px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}
.card-body.info-box-min:last-child{
	margin-bottom:0;
}
.info-box-min .icon {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    display: flex;
    margin: auto 15px;
    background: var(--primary);
    width: 70px;
    height: 70px;
    border-radius: 5px;
    padding: 12px;
	transition:all 0.5s;
    box-shadow: 0 0 3px rgba(60, 72, 88, 0.25);
    text-align: center;
    color: #fff;
    font-size: 30px;
    align-items: center;
    justify-content: center;
}
.info-box-min:hover .icon{
	transform:scale(1.1);
}
.info-box-min .icon *{
	fill:#fff;
}
.card-body.info-box-min h3 {
    font-size: 18px;
    margin: 0 0 5px;
    font-weight: 700;
}
.card-body.info-box-min h3:last-child {
    margin: 0;
}
.info-box-min p {
    font-size: 14px;
    line-height: 140%;
}
.rating-wrap {
    position: relative;
    width: 64px;
    height: 15px;
	background:url("../images/star-rating-o.png") repeat-x center left;
	background-size:13px auto;
}
.rating-wrap .inner{
	position:absolute;
	left:0;
	top:0;
	bottom:0;
	width:0;
	overflow:hidden;
	background:url("../images/star-rating.png") repeat-x center left;
	background-size:13px auto;
}
.testimonial-box2 .rating-wrap {
    margin-top: 6px;
}
section.achat-section {
    background-attachment: fixed;
    background-size: cover;
    background-position: center center;
}
.banner-section {
    background: rgb(255,255,255);
    background: -moz-linear-gradient(top, rgba(255,255,255,1) 0%, var(--primary-light) 49%, var(--primary-light) 100%);
    background: -webkit-linear-gradient(top, rgba(255,255,255,1) 0%,var(--primary-light) 49%,var(--primary-light) 100%);
    background: linear-gradient(to bottom, rgba(255,255,255,1) 0%,var(--primary-light) 49%,var(--primary-light) 100%);
    z-index: 1;
    padding-top: 110px;
}
.banner-section .bg-img {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    z-index: -1;
}
.banner-iphone {
    max-width: 400px;
    margin:0 20px 0 auto ;
    position: relative;
}
.banner-iphone .banner-app {
    position: absolute;
    left: 65px;
    top: 59px;
    width: 177px;
}
.banner-app-with-color{
	background:var(--primary);
	background: -moz-linear-gradient(45deg, var(--primary-dark) 0%, var(--primary) 100%); 
	background: -webkit-linear-gradient(45deg, var(--primary-dark) 0%,var(--primary) 100%);
	background: linear-gradient(45deg, var(--primary-dark) 0%,var(--primary) 100%); 
}
.banner-shap {
    position: absolute;
    right: -150px;
    top: 0;
    bottom: 0;
    background:#DF8200;
    left: 50%;
    -webkit-transform: skew(20deg);
    transform: skew(20deg);
}
.banner-shap-layer {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    background: url(../images/banner-dot-orange.png) no-repeat left center;
    background-size: auto 100%;
    left: 50%;
    margin-left: -170px;
}
.banner-section h1,
.banner-section h2 {
    font-size: 35px;
    font-weight: 600;
    line-height: 140%;
    margin: 0 0 20px;
}
.banner-section h1 span,
.banner-section h2 span{
	color:var(--primary);
}
.banner-section p {
    color: var(--secondary);
    font-size: 16px;
}
.btn-set .btn + .btn {
    margin-left: 12px;
}
.btn-set {
    margin-top: 30px;
}
.banner-shape {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
}
.banner-shape svg {
    -webkit-transform: scale(2);
    transform: scale(2);
    width: 100%;
    height: auto;
    -webkit-transform-origin: top center;
    transform-origin: top center;
}
.contact-with-us {
    padding: 30px 410px 30px 30px;
    border-radius: 6px;
    margin: -110px 0 50px;
    z-index: 9;
    position: relative;
    box-shadow: 0 6px 8px 4px rgba(0,0,0,0.1);
	background:var(--primary);
	background: -moz-linear-gradient(45deg, #e77600 0%, var(--primary) 100%); 
	background: -webkit-linear-gradient(45deg, #e77600 0%,var(--primary) 100%);
	background: linear-gradient(45deg, #e77600 0%,var(--primary) 100%); 
}
.contact-with-us .btn {
    position: absolute;
    right: 30px;
    top: 0;
    bottom: 0;
    height: 40px;
    margin: auto;
}
.contact-with-us h2 {
    font-size: 24px;
    font-weight: 700;
    margin: 0 0 5px;
}
.contact-with-us p {
    margin: 0;
    font-size: 16px;
}
.download_icons img {
    max-width: 170px;
}
.download_icons a + a {
    margin-left: 10px;
}
.download_icons {
    position: absolute;
    right: 30px;
    top: 31px;
}
ul.secure_list .icon {
    position: absolute;
    left: 0;
    top: 0;
    width: 40px;
}
ul.secure_list .icon *{
    fill:#fff;
}
ul.secure_list li {
    position: relative;
    padding: 0 0 0 55px;
    margin: 0 0 20px;
}
ul.secure_list li h6 {
    font-weight: 700;
    margin: 0 0 2px;
}
.creat-section{
	margin-bottom:90px;
}
.creat-section h2 {
    text-align: center;
    font-size: 38px;
	color:#fff;
    line-height: 120%;
}
.creat-counter {
    background: #fff;
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.07);
    margin: 70px 0 -175px;
    border-radius: 30px;
    padding: 50px 30px;
    text-align: center;
}
.counter-box {
    text-align: center;
    padding: 50px 30px;
    box-shadow: 0 0 3px rgba(60, 72, 88, 0.25);
    border-radius: 5px;
}
.counter-box.bg-gradient .icon ,
.counter-box.bg-gradient h3,
.counter-box.bg-gradient {
	color:#fff;
}
.counter-box .icon {
    font-size: 70px;
    margin: 0 0 10px;
    color: var(--primary);
    line-height: 120%;
}
.counter-box h3 ,
.creat-counter h3 {
    color: var(--primary);
    font-size: 42px;
    margin: 0 0 10px;
}
.counter-box h4 ,
.creat-counter h4 {
    margin: 0;
    font-size: 20px;
}
.c_shap {
    position: absolute;
    right: 0;
    top: -70px;
    z-index: -1;
    max-width: 220px;
    transform: rotate(-45deg);
}

.inner-banner {
    z-index: 5;
    padding-top: 40px;
    padding-bottom: 40px;
    text-align: left;
    background-size: cover;
    background-attachment: fixed;
    background-position: center center;
    background-image: url(../images/inner-banner.jpg);
}
.inner-banner:before {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: -1;
    background: var(--dark);
    opacity: 0.7;
}
.breadcrumb-list ul {
    list-style: none;
    margin: 0;
    background: var(--primary);
    color: #fff;
    padding: 7px 15px;
    display: flex;
    align-items: center;
    font-size: 13px;
    line-height: 22px;
    border-radius: 5px;
    box-shadow: 1px 2px 3px 0 rgba(60, 72, 88, 0.25);
}
.breadcrumb-list ul li {
    padding-right: 20px;
    margin-right: 14px;
    position: relative;
}
.breadcrumb-list ul li:last-child {
    padding-right: 0;
    margin-right: 0;
}
.breadcrumb-list ul li a {
    color: #fff;
}
.breadcrumb-list ul li a:hover {
    color: #fff;
	font-weight:700;
}
.breadcrumb-list ul li:after {
    content: "\f054";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    display: block;
    position: absolute;
    right: 0;
    top: 0;
    font-size: 80%;
    opacity: 0.7;
}
.breadcrumb-list ul li:last-child:after {
    display:none;
}
.inner-banner h1,
.inner-banner h2 {
    font-weight: 600;
    margin: 0 0 15px;
    font-size: 32px;
    color: #fff;
}
.inner-banner h1:last-child,
.inner-banner h2:last-child{
	margin-bottom:0;
}
.inner-banner p {
    font-size: 17px;
	color:var(--light);
}
.top_title_bar {
    background: #fff;
    border-radius: 5px;
    margin: 0 0 25px;
    box-shadow: 2px 2px 4px 0 rgba(0,0,0,0.1);
    border: 1px solid #eee;
    display: flex;
    align-items: center;
    padding: 15px 20px;
    justify-content: space-between;
}
.top_title_bar h2 {
    margin: 0;
    font-size: 22px;
    font-weight: 700;
}
.s_field {
    position: relative;
    width: 270px;
}
.s_field input {
    display: block;
    width: 100%;
    height: 40px;
    border: 1px solid #ddd;
    padding: 0 60px 0 20px;
    border-radius: 4px;
    font-size: 14px;
}
.s_field button:hover {
	color:#fff;
	background:var(--dark);
}
.s_field button {
    display: block;
    position: absolute;
    right: 0;
    top: 00;
    width: 34px;
    height: 34px;
    border: 0;
	transition:all 0.5s;
    border-radius: 4px;
    background: var(--primary);
    color: #fff;
    margin: 3px;
    font-size: 15px;
    padding: 0;
    line-height: 34px;
    box-shadow: 1px 1px 3px 0 rgba(0,0,0,0.2);
}
.astrologer_card {
    border: 1px solid #eee;
    border-radius: 10px;
    box-shadow: 2px 2px 4px 0 rgba(0,0,0,0.05);
    padding: 12px 12px 20px;
    display: flex;
    min-height: 0;
    transition: all 0.5s;
    position: relative;
	background:#fff;
    margin: 0 0 30px 0;
}
.astrologer_card:hover {
    transform:translateY(-10px);
    box-shadow: 2px 2px 4px 0 rgba(0,0,0,0.1);
}
.astrologer_card.card-online {
    border-top: 4px solid #4caf50;
}
.astrologer_card.card-busy {
    border-top: 4px solid #fa3e3e;
}
.astrologer_card.card-offline {
    border-top: 4px solid #aaa;
}
.card-busy .astrologer_btn .btn {
	background:#fa3e3e;
	cursor:not-allowed;
}
.card-offline .astrologer_btn .btn {
	background:#aaa;
	cursor:not-allowed;
}
.card-busy .astrologer_btn .btn:hover ,
.card-offline .astrologer_btn .btn:hover {
    background: var(--dark);
}
.astrologer_btn .btn {
    font-size: 10px;
    padding: 0 8px;
    line-height: 26px;
    letter-spacing: normal;
    background: #4caf50;
    color: #fff;
    border-radius: 4px 0 0 4px;
    box-shadow: 0 3px 5px 0 rgba(0, 0, 0, 0.2);
    position: relative;
}
.astrologer_btn .btn:hover {
    background: var(--dark);
}
.astrologer_btn .btn .hide {
    display: none!important;
}
.astrologer_btn .btn .show {
    display: default;
}
.astrologer_btn .btn:before {
    content: "";
    border-bottom: 8px ridge transparent;
    border-left: 8px solid #555;
    height: 0;
    position: absolute;
    right: -1px;
    top: 100%;
}
.astrologer_btn .w-time {
    display: block;
    font-size: 9px;
    margin: 4px 14px 0 15px;
    color: #fa3e3e;
    font-weight: 600;
}
.astrologer_card .avtar_img_wrap {
    flex-basis: 95px;
    max-width: 95px;
    padding-right: 15px;
    text-align: center;
    min-width: 95px;
}
.astrologer_card .dtc {
    flex-grow: 1;
    font-size: 13px;
    color: var(--secondary);
}
.astrologer_card .rating-wrap {
    margin: 0 auto 5px;
}
.astrologer_card .avtar_img {
    border-radius: 5px;
    overflow: hidden;
    width: 70px;
    margin: 0 auto 10px;
    box-shadow: 2px 2px 4px 0 rgba(0,0,0,0.2);
    border: 2px solid #fff;
}
.astrologer_card .avtar_img_wrap p {
    font-size: 9px;
    margin: 0;
}
.astrologer_card .astrologer_btn {
    text-align: right;
    position: absolute;
    right: -8px;
    bottom: 17px;
}
.astrologer_card .dtc h4 {
    font-weight: 700;
    font-size: 17px;
    margin: 0 0 10px;
}
.astrologer_card .dtc h4 a{
    color:var(--dark);
}
.astrologer_card .dtc h4 a:hover{
    color:var(--primary);
}
.astrologer_card .dtc p {
    font-size: 12px;
    margin: 0 0 5px;
    line-height: 140%;
}
.astrologer_card .m_card {
    list-style: none;
    padding: 0;
    margin: 0;
}
.astrologer_card .m_card li {
    position: relative;
    padding: 0 0 0 20px;
    margin: 0 0 5px;
    line-height: 120%;
}
.astrologer_card .m_card li i {
    color: #ccc;
    display: block;
    position: absolute;
    left: 0;
    top:1px;
    width: 15px;
    text-align: center;
}
.astrologer_card .dtc h4 img {
    max-width: 17px;
    vertical-align: top;
    margin-top: 1px;
}
.title_right_bar {
    display: flex;
    align-items: center;
}
ul.color-list {
    display: flex;
    align-items: center;
    font-size: 15px;
    padding: 0;
    margin: 0 20px 0 0;
    font-weight: 600;
    list-style: none;
}
ul.color-list li {
    position: relative;
    padding: 0 0 0 25px;
    margin-left: 18px;
	line-height:18px;
}
ul.color-list li span {
    position: absolute;
    left: 0;
    top: 0;
    width: 18px;
    height: 18px;
    background: red;
    border-radius: 3px;
    box-shadow: 2px 2px 5px 0 rgba(0,0,0,0.15);
}
ul.color-list li.c_online span {
	background:#4caf50;
}
ul.color-list li.c_busy span {
	background:#fa3e3e;
}
ul.color-list li.c_offline span {
	background:#aaa;
}
section.first-section {
    padding-top: 50px;
}
.filter_top{
	margin-right:20px;
}
.filter-btn {
    width: 34px;
    height: 34px;
    background: var(--primary);
    padding: 5px;
    border-radius: 5px;
    box-shadow: 1px 1px 3px 0 rgba(0,0,0,0.2);
    line-height: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.filter-btn:hover {
    background: var(--dark);
}
.a_balance {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin: 0 0 30px;
}
.a_balance h2 {
    font-weight: 700;
    font-size: 23px;
    margin: 0 20px 0 0;
}
.login-form h2 {
    color: #000;
    text-align: center;
    margin: 0 0 25px;
    font-size: 30px;
    font-weight: 700;
}
.login-form .form-group .form-control {
    border-radius: 5px;
    box-shadow: none;
    border: 1px solid #ddd;
    background: transparent;
    color: #000;
    font-size: 14px;
    padding: 0 0 0 45px;
    height: 46px;
}
.login-form .form-group i {
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 46px;
    text-align: center;
    line-height: 46px;
    font-size: 15px;
}
.login-form .form-group .form-control::-webkit-input-placeholder {
    color: #ccc;
    opacity: 1;
}
.login-form .form-group .form-control::-moz-placeholder {
    color: #ccc;
    opacity: 1;
}
.login-form .form-group .form-control:-ms-input-placeholder {
    color: #ccc;
    opacity: 1;
}
.login-form .form-group .form-control::-ms-input-placeholder {
    color: #ccc;
    opacity: 1;
}
.login-form .form-group .form-control::placeholder {
    color: #ccc;
    opacity: 1;
}
.remember-wrap {
    margin: 25px 0 20px;
}
.login-link {
    text-align: center;
    color: #000;
    margin-top: 13px;
}
.login-form .custom-checkbox .custom-control-label::before {
    height: 17px;
    width: 17px;
    border: 1px solid #eee;
    box-shadow: 1px 1px 3px 0 rgba(0,0,0,0.15);
    left: 0;
    top: 2px;
}
.login-form .custom-checkbox .custom-control-input:checked ~ .custom-control-label::before{
    border-color:var(--primary);
    background:var(--primary);
}
.login-form .custom-checkbox .custom-control-label::after {
    background: transparent !important;
    border-left: 2px solid #fff;
    border-bottom: 2px solid #fff;
    width: 9px;
    height: 5px;
    opacity: 0;
    transition: all 0.3s;
    transform: rotate(-45deg);
    margin: 9px 0 0 4px;
    left: 0;
    top: -1px;
}
.login-form .custom-checkbox .custom-control-input:checked ~ .custom-control-label::after{
	opacity:1;
}
.login-form .form-group .line{
	width:0;
	height:2px;
	background:var(--primary);
	position:absolute;
	left:0;
	right:0;
	bottom:0;
	margin:auto;
	transition:all 0.5s;
}
.login-form .form-group.has-focus .line{
	width:100%;
}
.login_with_box h2 {
    font-size: 26px;
    font-weight: 600;
    margin: 0 0 25px;
    text-align: center;
}
.login_with_box h2:after {
    content: "";
    display: block;
    width: 30px;
    height: 1px;
    background: #ccc;
    margin: 15px auto 0;
}
.login_with_box h4 {
    text-align: center;
    font-size: 15px;
    color: var(--secondary);
    margin: 0 0 20px;
}
.login_with_box ul {
    list-style: none;
    padding: 0;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}
.login_with_box ul li{
    width:42%;
}
.login_with_box ul li + li{
    margin-left:20px;
}
.login_with_box ul li a {
    position: relative;
    padding:10px 10px 10px 65px;
    display: block;
    color: #fff;
    border-radius: 5px;
    background: #E31F33;
    font-size: 15px;
    text-transform: uppercase;
    font-weight: 600;
    line-height: 24px;
	z-index:1;
	box-shadow:2px 2px 3px 0 rgba(0,0,0,0.2);
    text-align: left;
}
.login_with_box ul li a:before {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(255,255,255,0.05) 0%,rgba(255,255,255,0.06) 1%,rgba(255,255,255,0.18) 25%,rgba(255,255,255,0) 100%);
    z-index: -1;
    border-radius: 5px;
}
.login_with_box ul li a i {
    display: block;
    position: absolute;
    left: 0;
    top: 4px;
    width: 45px;
    line-height: 38px;
    text-align: center;
    border-right: 1px solid rgba(0,0,0,0.15);
    box-shadow: 1px 0px 0 0 rgba(255,255,255,0.2);
}
.login_with_box ul li.s_fg a {
    background: #3B5998;
}
.login_with_box ul li.s_tg a {
    background: #55ACEE;
}
.login_with_box ul li a:hover {
	background:#000!important;
}
.login-wrap {
    box-shadow: 2px 2px 6px 0 rgba(0,0,0,0.1);
    max-width: 550px;
    margin: 0 auto;
    padding: 50px;
	position:relative;
	background:#fff;
    border-radius: 5px;
}
.login-wrap:before {
    content: "";
    display: block;
    position: absolute;
    right: -50px;
    bottom: -40px;
    height: 420px;
    width: 420px;
    background: url(../images/dotsasd-dark.png);
    z-index: -1;
    opacity: 0.3;
}
.or-hr span {
    display: block;
    margin: 0 auto;
    width: 50px;
    height: 50px;
    border: 1px solid #ccc;
    text-align: center;
    border-radius: 50%;
    line-height: 48px;
    font-size: 15px;
    font-weight: 700;
    background: #fff;
}
.or-hr {
    position: relative;
    z-index: 1;
    margin: 30px 0;
}
.or-hr:before {
    content: "";
    display: block;
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    left: 0;
    height: 1px;
    background: #ccc;
    margin: auto;
    z-index: -1;
}
.login-section {
    background: rgba(0,0,0,0.018);
}
.login-form h3 {
    font-size: 17px;
    font-weight: 600;
    margin: 35px 0 10px;
}
.login-form .custom-control {
    padding: 0;
}
.login-form .custom-control-label {
    position: relative;
    padding-left: 25px;
}
.profile-banner {
    background-size: cover;
    background-attachment: fixed;
    background-position: center center;
    overflow: hidden;
	padding:60px 0;
}
.profile-banner:before {
    content: "";
    display: block;
    position: absolute;
    left: -60px;
    bottom: -70px;
    width: 690px;
    height: 340px;
    background: var(--primary);
    z-index: -1;
    border-radius: 0 450px 0 0;
    transform: rotate(12deg);
    box-shadow: 15px -5px 0 0 rgba(255,255,255,0.2);
}
.profile_card {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 3px 3px 8px 0 rgba(0,0,0,0.2);
    border-top: 4px solid var(--primary);
}
.profile-dtc {
    background: #fff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 3px 3px 8px 0 rgba(0,0,0,0.2);
    min-height: 100%;
}
.profile-dtc p {
    font-size: 14px;
    line-height: 140%;
}
.starfield {
  position: absolute;
  top:0;
  left:0;
  right:0;
  bottom:0;
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
    z-index:-2;
}
.starfield > * {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  -webkit-transform-origin: 50% 50%;
          transform-origin: 50% 50%;
  background-image: -webkit-radial-gradient(2px 2px at 40px 60px, #cccccc, rgba(0, 0, 0, 0)), -webkit-radial-gradient(2px 2px at 20px 50px, #dddddd, rgba(0, 0, 0, 0)), -webkit-radial-gradient(2px 2px at 30px 100px, #eeeeee, rgba(0, 0, 0, 0)), -webkit-radial-gradient(2px 2px at 40px 60px, #ffffff, rgba(0, 0, 0, 0)), -webkit-radial-gradient(2px 2px at 110px 90px, #cccccc, rgba(0, 0, 0, 0)), -webkit-radial-gradient(2px 2px at 190px 150px, #dddddd, rgba(0, 0, 0, 0));
  background-image: radial-gradient(2px 2px at 40px 60px, #cccccc, rgba(0, 0, 0, 0)), radial-gradient(2px 2px at 20px 50px, #dddddd, rgba(0, 0, 0, 0)), radial-gradient(2px 2px at 30px 100px, #eeeeee, rgba(0, 0, 0, 0)), radial-gradient(2px 2px at 40px 60px, #ffffff, rgba(0, 0, 0, 0)), radial-gradient(2px 2px at 110px 90px, #cccccc, rgba(0, 0, 0, 0)), radial-gradient(2px 2px at 190px 150px, #dddddd, rgba(0, 0, 0, 0));
  background-repeat: repeat;
  background-size: 200px 200px;
  -webkit-animation-name: starfieldRotate;
  -webkit-animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
}
.starfield > *:nth-child(1) {
  -webkit-animation-duration: 18s;
}
.starfield > *:nth-child(2) {
  -webkit-animation-duration: 22s;
}
.starfield > *:nth-child(3) {
  -webkit-animation-duration: 36s;
}
.starfield > *:nth-child(4) {
  -webkit-animation-duration: 40s;
}
@-webkit-keyframes starfieldRotate {
  from {
    -webkit-transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
  }
}
.profile_img_wrap {
    display: flex;
    align-items: center;
    margin: 0 0 25px;
}
.profile_img {
    border-radius: 50%;
    width: 100px;
    margin: 8px;
    position: relative;
    min-width: 100px;
}
.profile_img img{
	display:block;
	border-radius:50%;
}
.profile_img:before {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
	pointer-events:none;
    border: 2px solid #efefef;
    border-radius: 50%;
    margin: -7px;
}
.profile_img_wrap .profile_title {
    padding-left: 15px;
    flex-grow: 1;
    text-align: left;
}
.profile_card h4 {
    font-weight: 600;
    font-size: 20px;
    margin: 0 0 5px;
}
.profile_card h4 img {
    max-width: 15px;
    vertical-align: top;
    margin-top: 5px;
}
.profile-rating {
    display: flex;
    align-items: center;
}
.profile-rating p {
    font-size: 11px;
    margin-left: 6px;
}
ul.profile_m_card {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 12px;
}
.profile_m_card li {
    position: relative;
    padding: 16px 10px 16px 29px;
    margin: 0 0 15px 18px;
    min-height: 36px;
    border: 1px solid #ddd;
    border-radius: 5px;
    text-align: left;
    line-height: 130%;
    box-shadow: 2px 2px 2px 0 rgba(0,0,0,0.07);
}
.profile_m_card li i {
    display: block;
    position: absolute;
    left: -18px;
    top: 0;
    width: 36px;
    height: 36px;
    bottom: 0;
    border-radius: 50%;
    text-align: center;
    line-height: 32px;
    box-shadow: 1px 2px 4px 0 rgba(0,0,0,0.15);
    border: 2px solid #fff;
    color: #fff;
    font-size: 13px;
    margin: auto;
    background: linear-gradient(45deg, rgba(0,0,0,1) 0%,rgba(119,110,110,1) 100%);
}
.profile_btn {
    text-align: center;
    margin-top: 15px;
}
.profile_btn .btn {
    font-size: 13px;
    line-height: 38px;
    padding: 0 20px;
    border-radius: 50px;
    box-shadow: 0 -2px 0 0 rgba(0,0,0,0.2) inset, 0 3px 5px 0 rgba(0, 0, 0, 0.15);
}
.profile_m_card li h5 {
    font-size: 14px;
    font-weight: 600;
    margin: 0 0 4px;
    position: absolute;
    left: 24px;
    top: -8px;
    background: #fff;
    padding: 0 6px;
}
.reviews-wrap .rating-counter {
    border: 1px solid #eee;
    padding: 16px;
    border-radius: 5px;
}
.rating-counter .item {
    position: relative;
    padding: 0 50px 0 30px;
    margin: 0 0 5px;
    font-weight: 600;
    font-size: 13px;
    color: #333;
    line-height: 18px;
}
.rating-counter .item:last-child{
	margin-bottom:0;
}
.rating-counter .item .rating-percent {
    position: absolute;
    right: 0;
    top: 0;
    width: 40px;
}
.rating-counter .item .rating-count-star {
    position: absolute;
    left: 0;
    top: 0;
}
.rating-counter .item .rating-count-star i {
    font-size: 80%;
    vertical-align: top;
    margin-top: 4px;
}
.rating-counter .progress {
    height: 4px;
    margin: 0;
}
.rating-counter .rate-bar {
    padding: 7px 0;
}
.rating-counter {
    max-width: 380px;
}
.rating-counter .progress-bar {
    box-shadow: 0 -2px 0 0 rgba(0,0,0,0.2) inset;
}
.rating-counter .item.rating-5 .rating-count-star i {
    color:#5BA727;
}
.rating-counter .item.rating-5 .progress-bar {
    background:#5BA727;
}
.rating-counter .item.rating-4 .rating-count-star i {
    color:#b3ca42;
}
.rating-counter .item.rating-4 .progress-bar {
    background:#b3ca42;
}
.rating-counter .item.rating-3 .rating-count-star i {
    color:#ffd248;
}
.rating-counter .item.rating-3 .progress-bar {
    background:#ffd248;
}
.rating-counter .item.rating-2 .rating-count-star i {
    color:#fb904b;
}
.rating-counter .item.rating-2 .progress-bar {
    background:#fb904b;
}
.rating-counter .item.rating-1 .rating-count-star i {
    color:#ee503b;
}
.rating-counter .item.rating-1 .progress-bar {
    background:#ee503b;
}
.details-widget .reviews-wrap > .row > [class*="col-"] {
    padding: 0 30px;
    border-right: 1px solid #dfdfdf;
}
.details-widget .reviews-wrap > .row > [class*="col-"]:last-child {
    border-right:0;
}
.reviews-wrap .heading-rating {
    font-size: 20px;
    font-weight: 600;
    line-height: 42px;
    padding: 0 12px;
    margin: 0 0 10px;
}
.reviews-wrap .heading-rating i {
    font-size: 65%;
    vertical-align: top;
    margin-top: 13px;
}
.reviews-wrap .vots {
    font-weight: 700;
    font-size: 17px;
}
.reviews-wrap .reviews-text {
    font-weight: 600;
    font-size: 15px;
    color: #888;
}
.add-rating {
    margin: 0 0 12px;
}
.add-rating-list {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    justify-content: flex-end;
}
.add-rating-list input{
	display:none;
}
.add-rating-list label {
    border: 1px solid #dfdfdf;
    width: 34px;
    height: 34px;
    text-align: center;
    line-height: 32px;
    margin: 0 8px 0 0;
    border-radius: 9px;
    cursor: pointer;
    font-size: 14px;
}
.add-rating-list input:checked ~ label{
	border-color:#5ba727;
	background:#5ba727;
	color:#fff;
	text-shadow:1px 1px 0 rgba(0,0,0,0.5);
	box-shadow:0 -2px 0 0 rgba(0,0,0,0.2) inset;
}
.add-rating-list input:checked ~ label i:before{
	font-weight:900;
}
.add-rating-list input.addstar-1:checked ~ label{
	border-color:#ee503b;
	background:#ee503b;
}
.add-rating-list input.addstar-2:checked ~ label{
	border-color:#fb904b;
	background:#fb904b;
}
.add-rating-list input.addstar-3:checked ~ label{
	border-color:#ffd248;
	background:#ffd248;
}
.add-rating-list input.addstar-4:checked ~ label{
	border-color:#b3ca42;
	background:#b3ca42;
}
.add-rating-list input.addstar-5:checked ~ label{
	border-color:#5ba727;
	background:#5ba727;
}
.add-rating h5 {
    text-align: center;
    font-size: 16px;
    margin: 0 0 18px;
}
.add-review h4 {
    margin: 0 0 12px;
    font-size: 20px;
}
html .label, .add-review label {
    font-weight: 500;
    font-size: 14px;
    margin: 0 0 5px;
    padding: 0;
    color: #000;
    display: inline-block;
    vertical-align: top;
}
html .label em,
.add-review label em{
	color:red;
	font-style:normal;
}
.review-like {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
}
.review-like li {
    margin: 0 6px 6px 0;
}
.review-like input {
    display: none;
}
.review-like li label {
    border: 1px solid #dfdfdf;
    margin: 0;
    padding: 0 10px;
	transition:all 0.5s;
    line-height: 30px;
    display: inline-block;
    vertical-align: top;
    font-size: 13px;
	cursor:pointer;
    border-radius: 5px;
}
.review-like li input:checked + label,
.review-like li label:hover{
	color:#fff;
	border-color:#5ba727;
	background:#5ba727;
}
.add-review textarea {
    width: 100%;
    border: 1px solid #dfdfdf;
    padding: 15px;
    font-size: 13px;
    border-radius: 5px;
    min-height: 100px;
    height: 100px;
}
.review-list .item {
    border-bottom: 1px solid #dfdfdf;
    position:relative;
	padding:0 0 15px 70px;
	margin-bottom:15px;
}
.review-list .item:last-child {
    border-bottom:0;
    margin-bottom:0;
    padding-bottom:0;
}
.review-list .item .avtar{
	width:55px;
	height:55px;
	border-radius:50px;
	overflow:hidden;
	position:absolute;
	left:0;
	top:0;
}
.review-list .item h3{
	font-size:18px;
	margin-bottom:5px;
}
.review-list .item h4{
	font-weight:normal;
	font-size:15px;
	margin:0 0 5px;
}
.review-list .item .start-calc{
	margin-bottom:5px;
}
.review-list .item p {
    font-size: 13px;
}
.reviews-wrap h4 {
    margin: 0 0 15px;
    font-size: 24px;
    font-weight: 500;
}
.add-rating h5 {
    text-align: center;
    margin-top: 18px;
    font-size: 14px;
}
.rating-star {
    font-size: 12px;
    margin: 0px 0 10px 0;
    line-height: 18px;
}
.rating-star img {
    vertical-align: top;
}
.rating-star .fa.fa-star {
    color: #FF7E00;
}
.form-group-btn .cust-btn {
    padding: 0 30px;
}
.reviews-wrap hr {
    border-top: 1px solid #dfdfdf;
    margin: 40px 0;
}
.reviews-list-wrap {
    background: #efefef;
    padding: 30px;
    border-radius: 5px;
    box-shadow: 0 0 3px 0px rgba(60, 72, 88, 0.25) inset;
}
.review-item {
    margin: 0 10px 20px;
    border: 1px solid #ededed;
    border-radius: 5px;
    padding: 20px;
    border-left: 2px solid var(--primary);
}
.reviews-row .grid-sizer, 
.reviews-row .grid-item {
    float: left;
    width: 50%;
}
.review-item .review-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0 0 25px;
    color: #666;
    font-size: 13px;
}
.review-item p {
    font-size: 13px;
    line-height: 130%;
}
.r_avtar {
    position: relative;
    text-align: left;
    padding-left: 78px;
    min-height: 65px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.r_avtar_img {
    position: absolute;
    left: 0;
    top: 0;
    width: 62px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--primary);
}
.review-item h3 {
    font-size: 14px;
    font-weight: 600;
	margin:0;
    text-transform: capitalize;
}
.review-item .re_date {
    display: block;
    font-weight: 500;
    color: #555;
    font-size: 11px;
    margin-top: 4px;
}
.profile_r_count {
    text-align: center;
    margin: 0 auto 20px;
    border: 1px solid #efefef;
    max-width: 150px;
    min-height: 150px;
    border-radius: 50%;
    padding-top: 28px;
    background: #fff;
    box-shadow: 0 -8px 10px 0 rgba(0,0,0,0.1) inset;
}
.profile_r_count h3 {
    font-size: 33px;
    font-weight: normal;
    margin: 0 0 10px;
    line-height: 100%;
}
.profile_r_count h6 {
    font-size: 12px;
    margin: 0;
    color: #555;
}
.profile_r_count .rating-wrap {
    margin: 0 auto 12px;
    background-size: 20px auto;
    width: 98px;
    height: 20px;
}
.profile_r_count .rating-wrap .inner {
    background-size: 20px auto;
}
.r_box {
    padding: 25px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 2px 2px 4px 0 rgba(0,0,0,0.05);
    border: 1px solid #efefef;
    margin: 0 0 30px;
}
.r_box h2 {
    font-size: 24px;
    font-weight: 600;
    margin: 0 0 20px;
}
.reviews-row {
    margin: 0 -10px;
}
.r_rate {
    font-size: 0;
    line-height: 0;
    margin-right: 5px;
}
.r_rate img {
    max-width: 15px;
}
.shap1 {
    position: absolute;
    right: -50px;
    max-width: 350px;
    top: 70px;
	z-index:-1;
}
.shap2 {
    position: absolute;
    left: -50px;
    max-width: 350px;
    bottom: 70px;
	z-index:-1;
}
.r_meta {
    display: flex;
    align-items: center;
    margin: 4px 0 5px;
}
.profile-toggle {
    display: none;
}
.custom-box {
    box-shadow: 2px 2px 6px 0 rgba(0,0,0,0.1);
    padding: 25px;
    position: relative;
    background: #fff;
    border-radius: 5px;
    max-width: 900px;
    margin: 0 auto;
    border-top: 2px solid var(--primary);
}
.custom-box.with-pattern:before {
    content: "";
    display: block;
    position: absolute;
    right: -50px;
    bottom: -40px;
    height: 420px;
    width: 420px;
    background: url(../images/dotsasd-dark.png);
    z-index: -1;
    opacity: 0.3;
}
.country-number {
    position: relative;
    padding-left: 110px;
}
.form-group .country-number select.form-control {
    position: absolute;
    left: 0;
    top: 0;
    width: 100px;
    border: 0;
    font-size: 14px;
    font-weight: 600;
    padding: 0 20px 0 0;
}
.custom-control.form-check-inline {
    display: inline-block;
    vertical-align: top;
}
.form-group label.custom-control-label {
    font-size: 14px;
    line-height: 27px;
    margin: 0;
}
.custom-control-input:checked ~ .custom-control-label::before {
    border-color: var(--primary);
    background-color:  var(--primary);
}
.form-group .field-icon i img {
    max-width: 16px;
}
.partner-fields {
    border: 1px solid #dddd;
    border-radius: 5px;
    padding: 22px;
    margin: 0 0 20px;
}
.custom-box h3 {
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 10px;
}
.btn.btn-3d{
	box-shadow:0 -2px 0 0 rgba(0,0,0,0.2) inset,0 3px 5px 0 rgba(0, 0, 0, 0.15);
}
.inr {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
}
.recharge-list {
    display: flex;
    margin: 0 -10px;
    flex-wrap: wrap;
}
.recharge-list .item {
    flex-basis: 25%;
    max-width: 25%;
    margin: 0 0 20px;
    padding: 0 10px;
}
.recharge-box {
    border: 1px solid #ddd;
    color: #000;
    padding: 20px 15px;
    border-radius: 5px;
	box-shadow:0 -30px 20px -20px rgba(0,0,0,0.05) inset;
    position: relative;
    margin: 8px;
	transition:all 0.5s;
}
.recharge-box:hover{
	box-shadow:0 -30px 20px -20px rgba(0,0,0,0.05) inset, 3px 3px 8px 0 rgba(0,0,0,0.08);
}
.recharge-box h3 {
    text-align: center;
    font-size: 24px;
    margin: 0;
}
.recharge-box h4 {
    text-align: center;
    font-size: 14px;
    margin: 0;
}
.recharge-box .r_offer {
    background: var(--primary);
    text-align: center;
    line-height: 31px;
    width: 90px;
    border-radius: 40px 10px 40px;
    position: absolute;
    left: 0;
    top: 0;
    color: #fff;
    font-weight: 700;
    font-size: 14px;
    transform: rotate(-45deg);
    margin: -1px 0 0 -34px;
    box-shadow: 0 -2px 0 0 rgba(0,0,0,.2) inset, 2px 2px 7px 0 rgba(0,0,0,.1);
}
.recharge-box .btn{
    background:#ff7e00;
    border:none;
    position:absolute;
    width:100%;
    height:100%;
    top:0;
    left:0;
    opacity:0
}
.payment-block.custom-box h3 {
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 20px;
}
.payment-block .table tr:first-child td, 
.payment-block .table tr:first-child th {
    border-top: 0;
}
.payment-block .table td{
	text-align:right;
}
.payment-block .table td, 
.payment-block .table th {
    font-size: 15px;
    padding: 12px 0;
	font-weight:normal;
}
.payment-block .table .total-tr td, 
.payment-block .table .total-tr th {
    font-size: 18px;
}
.payment-btnset {
    text-align: center;
    margin-top: 30px;
}
.offer-payment {
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 10px 60px 10px 32px;
    box-shadow: 0 -40px 30px -20px rgba(0,0,0,0.03) inset;
	margin-top:10px;
	position:relative;
	margin-left:20px;
}
.offer-payment h4 {
    font-weight: 700;
    font-size: 18px;
    margin: 0 0 5px;
}
.offer-payment h5 {
    margin: 0;
    font-size: 13px;
    color: var(--primary);
    font-weight: 600;
}
.offer-payment .percentage {
    position: absolute;
    left: -21px;
    top: 11px;
    max-width: 40px;
}
.offer-payment .offer_close {
    width: 24px;
    height: 24px;
    display: block;
    position: absolute;
    right: 15px;
    top: 0;
    bottom: 0;
    margin: auto;
}
.offer-payment .offer_close:before, 
.offer-payment .offer_close:after {
    content: "";
    display: block;
    position: absolute;
    right: 0;
    left: 0;
    top: 0;
	transition:all 0.5s;
    bottom: 0;
    margin: auto;
    height: 2px;
    width: 18px;
    background: #222;
    border-radius: 5px;
    transform: rotate(45deg);
}
.offer-payment .offer_close:after {
    width: 2px;
    height: 18px;
}
.offer-payment .offer_close:hover:before, 
.offer-payment .offer_close:hover:after{
	background:var(--primary);
}
.custom-box.payment-block.with-pattern:before {
    height: 220px;
}
.coupon-block {
    border: 1px solid #ddd;
    padding: 10px 15px 15px;
    border-radius: 5px;
    margin: 0 0 20px;
}
.coupon-block .field-icon {
    padding-right:100px;
}
.coupon-block .field-icon .btn {
    position: absolute;
    right: 0;
    top:1px;
}
header .header-login .user_nav_link {
    position: relative;
    padding-left: 30px;
}
header .header-login .user_nav_link .user_dp {
    display: flex;
    position: absolute;
    left: 0;
    top: 3px;
    width: 30px;
    height: 30px;
    border: 2px solid #ddd;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    background: #fff;
    overflow: hidden;
}
header .header-login .user_nav_link {
    position: relative;
    padding-left: 38px;
    text-transform: capitalize;
    color: #000 !important;
    font-size: 14px;
    padding-top: 8px;
    padding-bottom: 8px;
    display: inline-block;
    vertical-align: top;
}
header .header-login .user_nav_link:hover {
    color:var(--primary) !important;
}
header.nav-light .header-login .user_nav_link:hover,
header.nav-light .header-login .user_nav_link {
    color: #fff !important;
}
.account-menu {
    background: #fff;
    border-radius: 8px;
    box-shadow: 2px 2px 4px 0 rgb(0 0 0 / 10%);
    padding: 15px 0;
}
.account-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
.account-menu > ul >li + li{
	margin-top:8px;
}
.account-menu > ul >li >a {
    display: block;
    color: var(--dark);
    font-size: 15px;
    line-height: 42px;
    padding: 0 18px 0 48px;
    font-weight: 600;
    position: relative;
}
.account-menu > ul >li:hover >a ,
.account-menu > ul >li.active >a {
	color:var(--primary)
}
.account-menu > ul >li >a .icon {
    position: absolute;
    left: 15px;
    top: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.account-menu > ul >li >a:before{
	content:"";
	display:block;
	position:absolute;
	left:0;
	top:0;
	bottom:0;
	border-radius:0 5px 5px 0;
	transition:all 0.4s;
	background:var(--primary);
	width:0;
}
.account-menu > ul >li:hover >a:before ,
.account-menu > ul >li.active >a:before {
	width:4px;
}
.rhistory-box {
    border: 2px solid #dedede;
    border-radius: 6px;
    padding: 15px;
    margin: 0 0 20px;
	transition:all 0.5s;
}
.rhistory-box:hover {
    box-shadow:2px 2px 4px 0 rgb(0 0 0 / 5%);
	border-color:#aaa;
}
.rhistory-box .paymeny_status{
	font-weight:600;
}
.rhistory-box.rhistory-success {
    border-color: #00b600;
}
.rhistory-box.rhistory-success .paymeny_status{
    color: #008b00;
}
.rhistory-box.rhistory-pending {
    border-color: red;
}
.rhistory-box.rhistory-pending .paymeny_status{
    color: red;
}
.rhistory-box h3 {
    font-weight: 800;
    font-size: 17px;
    margin: -12px -12px 14px;
    background: #efefef;
    padding: 10px 20px;
    border-radius: 5px 5px 0 0;
}
.rhistory-box ul {
    list-style: none;
    margin: 0;
    padding: 0;
    font-size: 13px;
}
.rhistory-box ul li + li {
    margin-top: 3px;
    word-break: break-all;
}
.row.rhistory-row,
.row.orderh-row{
	margin-left:-10px;
	margin-right:-10px;
}
.row.orderh-row > [class*="col-"],
.row.rhistory-row > [class*="col-"]{
	padding-left:10px;
	padding-right:10px;
}
.btn.btn-sm.btn-filter-icon {
    padding: 0 0px;
    min-width: 36px;
}
.account-tab .nav {
    padding: 0 12px;
    margin-bottom: 17px;
}
.account-tab .nav .nav-link {
    font-size: 14px;
    color: var(--dark);
    font-weight: 600;
    padding: 0 26px;
    border-radius: 5px;
    line-height: 38px;
    position: relative;
    background: #fff;
    box-shadow: 0 0 3px rgb(60 72 88 / 25%);
    margin: 0 10px;
}
.account-tab .nav .nav-link:hover,
.account-tab .nav .nav-link.active {
    color: #fff;
    background: var(--primary);
    box-shadow: 0 3px 5px 0 rgba(0, 0, 0, 0.15);
}
.account-tab .nav .nav-link:before {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    width: 0;
    height: 0;
    border-left: 8px ridge transparent;
    border-right: 8px ridge transparent;
    margin: auto;
    border-top: 8px solid var(--primary);
    margin-top: -5px;
    opacity: 0;
    transition: all 0.1s;
}
.account-tab .nav .nav-link.active:before{
	margin-top:0;
	opacity:1;
}
.date_head {
    margin: 15px 0 15px 0;
    font-size: 14px;
    font-weight: 600;
    line-height: 34px;
    display: flex;
    align-items: center;
}
.date_head:first-child {
    margin-top:0;
}
.date_head span {
    background: #efefef;
    border-radius: 5px;
    padding: 0 20px;
    display: inline-block;
    vertical-align: top;
}
.date_head:after {
    content: "";
    display: block;
    height: 2px;
    background: #efefef;
    flex-grow: 1;
    box-shadow: -270px 0px 90px -60px rgb(255 255 255 / 60%) inset;
}
.orderh-item {
    position: relative;
    padding: 15px 15px 15px 90px;
    border: 1px solid #ddd;
    border-radius: 6px;
    margin: 0 0 20px;
	transition:all 0.5s;
	color:var(--dark);
}
.orderh-item:hover {
    box-shadow:2px 2px 4px 0 rgb(0 0 0 / 5%);
	border-color:var(--primary);
}
.orderh-item .btn{
    background:#ff7e00;
    border:none;
    position:absolute;
    width:100%;
    height:100%;
    top:0;
    left:0;
    opacity:0
}
.orderh-item .img {
    border-radius: 50%;
    overflow: hidden;
    width: 60px;
    height: 60px;
    border: 2px solid #ddd;
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    margin: auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.orderh-item h3 {
    font-size: 17px;
    font-weight: 700;
    margin: 0 0 1px;
}
.orderh-item h4 {
    color: var(--primary);
    margin: 0 0 6px;
    font-size: 18px;
    font-weight: 600;
}
.orderh-item h5 {
    font-size: 11px;
    margin: 0;
    color: #777;
    font-weight: 600;
}
.btn_date_wrap {
    position: relative;
}
.btn_date_wrap input {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 100%;
    width: 100%;
    opacity: 0;
    cursor: pointer;
}
.charcha-box {
    background: #f1f1f1;
    padding: 20px;
    border-radius: 10px;
    position: relative;
    z-index: 1;
    border: 1px solid #e7e7e7;
    margin-bottom: 20px;
}
.charcha-box:last-child{
    margin-bottom: 0;
}
.charcha-box:before {
    background: url(../images/bg-chat.png) repeat 0 0;
    content: "";
    background-size: 480px auto;
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: -1;
    opacity: 0.05;
}
.charcha_head_wrap {
    background: #fff;
    margin: -20px -20px 30px;
    padding: 12px 20px;
    border-radius: 10px 10px 0 0;
    box-shadow: 0 2px 5px 0 rgb(0 0 0 / 5%);
    position: relative;
    border-bottom: 1px solid #e7e7e7;
}
.charcha_head {
    position: relative;
    padding-left: 56px;
    min-height: 46px;
    padding-top: 4px;
    color: var(--dark);
    padding-right: 50px;
}
.charcha_head_inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: -20px -12px 0;
    padding: 10px 14px 10px;
    border: 1px solid var(--primary);
    background: #fff;
    border-radius: 6px;
}
.charcha_head_inner p {
    margin: 0;
    font-size: 14px;
    font-weight: 600;
    line-height: 130%;
    color: var(--dark);
}
.charcha_head .img {
    position: absolute;
    left: 0;
    top: 0;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    overflow: hidden;
    border: 1px solid #e7e7e7;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    box-shadow: 0 1px 2px 0 rgb(0 0 0 / 13%);
}
.charcha_head h4 {
    font-size: 17px;
    font-weight: 800;
    margin: 0 0 3px;
}
.charcha_head h6 {
    font-weight: normal;
    font-size: 13px;
    margin: 0;
}
.charcha_foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 10px;
    font-size: 14px;
}
.charcha_foot .star_left i {
    color: var(--primary);
}
.charcha_foot .star_left p {
    font-size:inherit;
	color:var(--dark);
}
.charcha_foot a {
    display: block;
    flex-basis: 30%;
    max-width: 30%;
    line-height: 32px;
    color: var(--dark);
    border-radius: 5px;
    text-align: center;
    font-size: 14px;
}
.charcha_foot a:hover {
    color: var(--dark);
	background:#efefef;
}
.charcha_body img {
    border-radius: 10px;
    margin: 8px 0;
}
.charcha_cmt{
	margin-top:15px;
}
.charcha_cmt .item {
    position: relative;
    margin: 0 0 15px;
    min-height: 40px;
    max-width: 80%;
}
.charcha_cmt .item .img {
    position: absolute;
    left: 0;
    top: 0;
    width: 40px;
    border-radius: 50%;
    overflow: hidden;
}
.charcha_cmt .item .dtc {
    display: inline-block;
    vertical-align: top;
    max-width: 100%;
    position: relative;
    padding-right: 45px;
}
.charcha_cmt .item .inner {
    border-radius: 0 6px 6px 6px;
    background: #fff;
    padding: 15px;
    position: relative;
    box-shadow:0 1px 2px 0 rgb(0 0 0 / 13%);
}
.charcha_cmt .item .inner .arrow {
    position: absolute;
    right: 100%;
    top: -6px;
    width: 8px;
}
.charcha_cmt .item.item_my .inner .arrow {
    right: auto;
    left: 100%;
}
.charcha_cmt .item.item_my .inner {
    /* background: linear-gradient(to bottom, rgba(12,2,2,1) 0%,rgba(58,58,58,1) 38%,rgba(58,58,58,1) 50%,rgba(58,58,58,1) 63%,rgba(15,8,8,1) 100%); */
    box-shadow:0 1px 2px 0 rgb(223 184 142 / 80%);
	background:#fff6ec;
    border-radius:6px 0  6px 6px;
}
.charcha_cmt .item.item_my .inner .arrow path:last-child {
    fill: #fff6ec;
}
.charcha_cmt .item .inner .more_cmt {
    position: absolute;
    left: 0;
    right: 0;
    bottom: -10px;
    text-align: center;
}
.charcha_cmt .item .inner .more_cmt a {
    display: inline-block;
    vertical-align: top;
    background: #eee;
    border-radius: 50px;
    font-size: 12px;
    color: var(--dark);
    padding: 0 10px;
    font-weight: 600;
    line-height: 20px;
}
.charcha_cmt .item .inner .more_cmt a:hover {
    color:#fff;
    background: var(--dark);
}
.charcha_cmt .dtc h4 {
    font-size: 13px;
    flex-wrap: wrap;
    font-weight: 600;
    margin: 0;
    color: #888;
}
.charcha_cmt .dtc p {
    font-size: 15px;
    line-height: 130%;
    color: var(--dark);
    margin: 0 0 8px;
}

.charcha_cmt .dtc img {
    width: 150px;
    height: 150px;
    border-radius: 4%;
    margin: 0 0 8px;
}

.charcha_cmt .item.item_my {
    margin-left: auto;
    padding-left: 0;
}
.charcha_cmt .item.item_my .dtc {
    padding-left: 45px;
    padding-right: 0;
}
.charcha_cmt .item.item_my .img {
    left: auto;
    right: 0;
}

.charcha_form {
    margin:25px -20px -20px;
    background: #fff;
    padding: 20px 20px;
    border-top: 1px solid #e7e7e7;
    border-radius: 0 0 10px 10px;
}
.charcha_form .field {
    position: relative;
    padding-left: 0;
    min-height: 40px;
}
.charcha_form .field .img {
    position: absolute;
    left: 0;
    top: 0;
    width: 40px;
    border-radius: 50%;
    overflow: hidden;
}
.charcha_form .field input {
    display: block;
    border-radius: 50px;
    width: 100%;
    height: 48px;
    border: 1px solid #ddd;
    padding: 0 90px 0 25px;
    font-size: 14px;
    background: #f8f8f8;
}
.charcha_form .field .btn {
    position: absolute;
    right: 0;
    top: 0;
    margin: 5px;
    border-radius: 100px;
    padding: 0 20px;
    height: 38px;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 13px;
}
.charcha_cmt .item .dtc .dropdown {
    position: absolute;
    right: 0;
    top: 20px;
}
.charcha_cmt .item.item_my .dtc .dropdown {
    left: 0;
    right: auto;
}
.charcha_cmt .item .dtc .dropdown button {
    width: 34px;
    height: 34px;
    padding: 0;
    border-radius: 50%;
    border: 0;
    color: var(--dark);
    font-size: 14px;
	transition:all 0.3s;
    line-height: 34px;
    background: transparent;
    opacity: 0;
}
.charcha_cmt .item:hover .dtc .dropdown button {
    opacity: 1;
}
.charcha_cmt .item .dtc .dropdown button:hover {
    background: #efefef;
}
.charcha_cmt .item .dtc .dropdown.show button {
    opacity: 1;
    background: #efefef;
}
.charcha_cmt .item .dtc .dropdown .dropdown-menu {
    font-size: 14px;
    min-width: 130px;
}
.charcha_cmt .item .dtc .dropdown .dropdown-menu .dropdown-item {
    padding: 4px 14px;
}
.charcha_head .dropdown {
    position: absolute;
    right: 0;
    top: 4px;
}
.charcha_head .dropdown button {
    width: 34px;
    height: 34px;
    padding: 0;
    border-radius: 50%;
    border: 0;
    color: var(--dark);
    font-size: 18px;
    transition: all 0.3s;
    line-height: 36px;
    background: transparent;
}
.charcha_head .dropdown button:hover {
    background: #ddd;
	color:var(--dark);
}
.charcha_head .dropdown.show button {
    opacity: 1;
    background: #ddd;
	color:var(--dark);
}
.charcha_head .dropdown .dropdown-menu {
    left: auto !important;
    right: 0;
    min-width: 250px;
    padding: 15px;
    font-size: 13px;
    transform: none !important;
    top: 100% !important;
}
.charcha_head .dropdown .dropdown-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.charcha_head .dropdown .dropdown-menu ul li + li {
    margin-top: 5px;
}
.charcha_head .dropdown .dropdown-menu .dropdown-item {
    padding: 4px 14px;
}
.end_btn .btn {
    color: #fff !important;
}
.charcha_head .end_btn {
    position: absolute;
    right: 0;
    top: 5px;
    margin-right: 50px;
}

.review-rating {
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
    flex-wrap: wrap;
}
.review-rating label {
    margin: 0 3px 0 0px;
    cursor: pointer;
}
.review-rating label input[type="radio"] {
    display: none;
}
.review-rating label .radio-label {
    width: 28px;
    height: 28px;
    background: url(../images/favourites.svg) no-repeat center center;
    background-size: 100% 100%;
    opacity: 0.15;
    overflow: hidden;
    transition: all 0.4s;
    font-size: 0;
    display: block;
    filter: brightness(0);
    margin: 3px;
}
.review-rating label.active .radio-label ,
.review-rating label.active ~ label .radio-label ,
.review-rating label input:checked ~ .radio-label {
    opacity: 1;
    filter: brightness(1);
    transform: scale(1.2);
}
.revie_form_box {
    border: 1px solid #e7e7e7;
    padding: 20px;
    position: relative;
    border-radius: 8px;
}
.revie_form_box .revie_form_close {
    position: absolute;
    right: 0;
    top: 0;
    border-radius: 5px;
    width: 32px;
    height: 32px;
    font-size: 24px;
    line-height: 23px;
    margin: 15px;
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 0;
    color: #fff;
    transition: all 0.5s;
}
.revie_form_box .revie_form_close:hover {
    background: var(--dark);
    color: #fff;
}
.user_nav_wrap {
    position: relative;
}
.user_nav_wrap > ul {
    display: block;
    position: absolute;
    left: 0;
    top: 100%;
    padding: 15px 0;
    background: var(--white);
    list-style: none;
    border-radius: 5px;
    min-width: 200px;
    margin:25px 0 0 0;
    box-shadow: 0 0 8px 0 rgba(0,0,0,0.15);
	transition:all 0.1s;
	opacity:0;
	visibility:hidden;
}
.user_nav_wrap:hover > ul {
	transition:all 0.5s;
	opacity:1;
	visibility:visible;
	margin-top:0;
}
.user_nav_wrap > ul li{
	margin-bottom:8px;
	position:relative;
}
.user_nav_wrap > ul li:last-child{
	margin-bottom:0;
}
.user_nav_wrap > ul li > a {
    display: block;
    color: var(--secondary);
    font-size: 14px;
    font-weight: 700;
    line-height: 120%;
    letter-spacing: 0.5px;
    padding: 7px 15px 7px 43px;
    position: relative;
}
.user_nav_wrap > ul li.active > a,
.user_nav_wrap > ul li > a:hover {
    color: var(--primary);
}
.user_nav_wrap > ul li > a .icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    position: absolute;
    left: 15px;
    top: 4px;
}
.profile_inner {
    width: 130px;
    position: relative;
    margin: 0 0 20px;
}
.profile_inner .profile-upload-img {
    width: 130px;
    height: 130px;
    background-position: center center;
    background-size: cover;
    border: 1px solid #ddd;
    border-radius: 50%;
}
.profile_inner .btn {
    position: absolute;
    right: 2px;
    bottom: -2px;
    width: 36px;
    padding: 0;
    height: 36px;
    line-height: 36px;
    border-radius: 50%;
    margin: auto;
}
.profile_inner .btn input {
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    opacity: 0;
    position: absolute;
    left: 0;
    top: 0;
}
.hidden{display:none!important}
.breakAll {
  word-break: break-all;
}
.cc-selector input{
    margin:0;padding:0;
    -webkit-appearance:none;
       -moz-appearance:none;
            appearance:none;
}
/*.paytm{background-image:url({{ asset('resources/images/paytm.png') }});}*/
/*.razorpay{background-image:url({{ asset('resources/images/razorpay-blue.png') }});}*/

.cc-selector input:active +.drinkcard-cc{opacity: .9;}
.cc-selector input:checked +.drinkcard-cc{
    -webkit-filter: none;
       -moz-filter: none;
            filter: none;
}
.drinkcard-cc{
    cursor:pointer;
    background-size:contain;
    background-repeat:no-repeat;
    display:inline-block;
    width:100px;height:50px;
    -webkit-transition: all 100ms ease-in;
       -moz-transition: all 100ms ease-in;
            transition: all 100ms ease-in;
    -webkit-filter: brightness(1.8) grayscale(1) opacity(.7);
       -moz-filter: brightness(1.8) grayscale(1) opacity(.7);
            filter: brightness(1.8) grayscale(1) opacity(.7);
}
.drinkcard-cc:hover{
    -webkit-filter: brightness(1.2) grayscale(.5) opacity(.9);
       -moz-filter: brightness(1.2) grayscale(.5) opacity(.9);
            filter: brightness(1.2) grayscale(.5) opacity(.9);
}
.hide {
    display: none!important;
}









