/* 
	Website : Eres
	Author  : DexignZone
	File    : Style css
	URL     : https://eres.dexignzone.com/aspnet
*/

/* ===== Initial ===== */
:root{
	--primary: #fd683e;
	--primary-light: rgba(253, 104, 62, 0.1);
	--secondary: #6418C3;
	--title: #222222;
}
::selection {  
	color: #fff; 
	background: var(--primary); 
}
html {
  scroll-behavior: smooth;
}
body {
	background: #fff;
    font-family: Poppins, sans-serif;
    font-size: 16px;
    color: #666666;
    line-height: 1.6;
    overflow-x: hidden!important;
    margin: auto!important;
}
@media (max-width: 591px){
	body {
		font-size: 14px;
	}
}
::-webkit-scrollbar {
	width: 5px;
	opacity: 0;
}
::-webkit-scrollbar-thumb {
	background: rgba(111, 133, 147, 0.1);
}
img {
	max-width: 100%;
}

/* ===== Basic ===== */
a{
	color: #6f6f6f;
    outline: 0 none;
    text-decoration: none;
}
a:focus{    
	outline: none;
	text-decoration:  none;
}
a:hover {
    text-decoration: none;
}
.btn:focus,
.btn:active,
.btn:hover{
    outline: inherit;
	box-shadow: none;
}
*,
:before,
:after{
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
ul,
ol{
    padding-left: 0!important;
}
li{
    list-style: none;
}
h1,
h2,
h3,
h4,
h5,
h6{
    font-family:  Poppins, sans-serif;
	color: var(--title);
	margin-top: 0;
}
h1, h2 {
    font-weight: 600;
}
h1 {
    font-size: 36px;
    font-weight: 700;
}
h2 {
    font-size: 30px;
    font-weight: 600;
}
h3 {
	font-size: 24px;
    font-weight: 600;
}
h4 {
    font-size: 20px;
    font-weight: 600;
	line-height: 1.4;
}
h5 {
    font-size: 18px;
    font-weight: 600;
}
h6{
    font-size: 16px;
    font-weight: 500;
}
@media (max-width: 767px){
	h1{
		font-size: 30px;
	}
	h2{
		font-size: 24px;
	}
	h3{
		font-size: 20px;
	}
	h4{
		font-size: 18px;
	}
	h5{
		font-size: 16px;
	}
	h6{
		font-size: 15px;
	}
}
.section-header {
  margin-bottom: 35px;
}
.bg-grey{
    background: #fbfbfb !important;
}
.container > .navbar-header, 
.container-fluid > .navbar-header, 
.container > .navbar-collapse, 
.container-fluid > .navbar-collapse {
    margin-right: 0;
    margin-left: 0;
}
.container{
	padding-right: 30px;
	padding-left: 30px;
}
@media (max-width: 1400px) {
	.container {
		width: 100%;
	}
}
strong{
	font-weight: 600;
    color: var(--title);
}
hr{
    margin-top: 0;
	margin-bottom: 0;
	opacity: 0.15;
}
pre{
    display: block;
    padding: 9.5px;
    margin: 0 0 10px;
    font-size: 13px;
    line-height: 1.42857143;
    color: #333;
    word-break: break-all;
    word-wrap: break-word;
    background-color: #f5f5f5;
    border: 1px solid #ccc;
    border-radius: 4px;
}
.text-highlight{
	font-weight: 500;
	color: #222;
}
.text-muted {
    color: #9b9b9b!important;
}
.text-primary{
	color: var(--primary)!important;
}
.text-black{
	color: #000;
}
.bg-primary{
	background-color: var(--primary) !important;
}
code {
    font-size: 14px;
    color: #ff4040;
    word-wrap: break-word;
    background-color: #ffe7e7;
    padding: 2px 6px;
    border-radius: 4px;
}
.m-b15{
	margin-bottom:15px;
}
.dark-text {
    color: #272727;
}
.dark-text small {
    font-size: 16px;
    font-weight: 700;
}
.m-b30{
	margin-bottom: 30px;
}
.m-b10{
	margin-bottom: 10px;
}
.m-t30{
	margin-top: 30px;
}
mark {
    background: #333333;
    color: #fff;
    padding: 5px;
}
.bg-red-light{
	background-color:#fef6f6;
}
.list-unstyled{
	height: 100%;
	width: 100%;
}
ul ul a {
    font-size: 0.9em !important;
    padding-left: 30px !important;
    background: #87a400;
}

/* ===== Buttons ===== */
.btn{
    border-style: solid;
    border-width: 0;
    color: #ffffff;
    cursor: pointer;
    display: inline-block;
    font-size: 14px;
    line-height: 1.42857;
    outline: medium none;
    padding: 12px 24px;
	border-radius: 6px;
}
.btn-link{
	text-decoration: underline;
	color: var(--primary);
}
.btn-link:focus,
.btn-link:active,
.btn-link:hover{
	color: var(--primary);
	text-decoration: underline;
	transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out;
}
.btn:active,
.btn:hover,
.btn:focus{
	color:#fff;
	text-decoration:none;
	background-color:var(--primary);
}
.btn.support-button {
    border: 1px solid #fff;
    background-color: var(--primary);
    float: right;
    margin: 5px 0 5px 10px;
	transition: all 0.5s;
	border-radius: 3px;
}
.btn.support-button:hover{
	background-color: #fff;
	color:var(--primary);
	transition: all 0.5s;
}
.btn.btn-primary{
	background: var(--primary);
	color: #fff;
	border-color: var(--primary);
}
.btn-primary:focus,
.btn-primary:active,
.btn-primary.active,
.open .dropdown-toggle.btn-primary{
    background: var(--primary);
}
.btn-shaodw{
	box-shadow: 0 0 25px rgba(235, 129, 83, 0.3);
}
.btn-lg{
	font-size: 16px;
}
@media (max-width: 576px) {
	.btn.support-button{
		padding: 9px 14px;
		font-size: 13px;
		margin: 5px 0 5px 5px;
	}
	.btn-lg{
		font-size: 14px;
	}
}


/* ===== Content Inner ===== */
.content-inner{
    padding-top: 80px;
    padding-bottom: 80px;
}
.content-inner-2{
    padding-top: 80px;
    padding-bottom: 50px;
}
@media (max-width: 991px) {
	.content-inner{
		padding-top: 50px;
		padding-bottom: 50px;
	}
	.content-inner-2{
		padding-top: 50px;
		padding-bottom: 20px;
	}
}


/* ===== Section Head ===== */
.section-head{
	margin-bottom: 40px;
}
.section-head p{
	font-size: 18px;
}
.section-head .title{
	font-size: 36px;
}
@media (max-width: 767px){
	.section-head{
		margin-bottom: 30px;
	}
	.section-head .title{
		font-size: 30px;
	}
	.section-head p{
		font-size: 16px;
	}
}


/* ===== Sticky Navigation ===== */
.sticky-navigation {
    min-height: 60px;
    background: #FFF;
    border: none;
    padding: 0!important;
    margin-bottom: 0!important;
    -webkit-backface-visibility: hidden;
    -webkit-box-shadow: 0 2px 8px 0 rgba(50, 50, 50, 0.08);
    box-shadow: 0 2px 8px 0 rgba(50, 50, 50, 0.08);
}
.sticky-navigation .navbar-header img {
    max-height: 30px;
    -webkit-backface-visibility: hidden;
}
.sticky-navigation .main-navigation .current a {
    color: #000!important;
    position: relative;
    outline: none;
}
.sticky-navigation .main-navigation li a {
    line-height: 30px;
    font-weight: 400;
    font-size: 13px;
    text-transform: uppercase;
}
.sticky-navigation .main-navigation li a:hover {
    color: #000;
}
.navbar-inverse .navbar-toggle {
    border-color: #313131;
    background: #313131;
}
@media (max-width: 1024px) {
	.sticky-navigation .navbar-header{
		width: 100%;
		position: relative;
		text-align: center;
		margin-top: 10px;
	}
	.sticky-navigation .navbar-header a {
		float: none!important;
	}
	.sticky-navigation .navbar-header img {
		max-height: 40px;
	}
	.sticky-navigation .main-navigation {
		text-align: center;
		width: 100%;
		padding-top: 0;
	}
}


/* ===== Header ===== */
.header{
	margin-bottom:0;
	position:sticky;
	top:0;
	z-index:999;
}
.header .top-nav-bar{
	background-color: var(--primary);
	margin-bottom:0;
}


/* ===== Slide Banner ===== */
.slide-banner .section-description{
    display: inline-block;
    position: relative;
    text-align: center;
	color: #fff;
	font-size: 18px;
}
.slide-banner{
	background-position:center;
	background-size:cover;
	color: var(--title);
	position: relative;
	text-align: center;
	padding: 100px 0;
}
.slide-banner .title{
	font-size: 50px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #fff;
}
.slide-banner .container {
    z-index: 1;
    position: relative;
}
@media (max-width: 991px){
	.slide-banner .inner-content .title {
		font-size: 32px;
	}
}
@media (max-width: 591px) {
	.slide-banner{
		padding: 60px 0;
	}
	.slide-banner .title {
		font-size: 30px;
	}
	.slide-banner .section-description{
		font-size: 14px;
	}
}


/* ===== Footer ===== */
footer .copyright{
    margin-bottom: 0px;
}
.footer{
	padding: 25px 0;
}
.footer-bottom{
    padding: 20px 0;
}


/* ===== Version History ===== */
.dz-version-history li ol{
	padding-left: 22px !important;
    padding-bottom: 20px;
    padding-top: 5px;
}
.dz-version-history li ol li{
	display: block;
	position: relative;
}
.dz-version-history .sub-title{
	font-weight: 500;
}
.dz-version-history li ol li:after{
	content: "";
    height: 5px;
    width: 5px;
    background-color: var(--primary);
    position: absolute;
    left: -20px;
    top: 10px;
}


/* ===== Scroltop ===== */
.scroltop{
	font-size: 14px;
}
@media (max-width: 591px){
	.scroltop{
		display: block;
	}	
}


/* ===== Help Wrapper ===== */
.dz-help-wrapper{
	background-color: #f3f3f3;
}
.dz-help-wrapper .title{
	font-size: 42px;
    line-height: 1.3;
    margin-bottom: 20px;
}
.dz-help-wrapper .dz-info-text{
	font-size: 18px;
    font-weight: 400;
    margin-bottom: 30px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}
.dz-hire{
    padding: 30px;
    background-color: #fff;
    border: 1px dashed rgba(0,0,0,0.2);
    border-radius: 10px;
    margin-top: 20px;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
}
.dz-hire ul{
    margin: 0;
    padding: 0;
    list-style: none;
    color: #232323;
    font-size: 18px;
    font-weight: 400;
}
.dz-message{
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
}
.dz-help-wrapper .icon-skype,
.dz-help-wrapper .icon-gmail{
	display: flex;
    align-items: center;
}
.dz-help-wrapper .icon-skype i,
.dz-help-wrapper .icon-gmail i{
    color: #ffffff;
    font-size: 16px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    width: 30px;
    margin-right: 5px;
    border-radius: 50px;
}
.icon-skype i{
	background-color: #00b6f9;
}
.icon-gmail i{
	background-color: #ea4335;
}
@media (max-width: 991px){
	.dz-help-wrapper .title {
		font-size: 36px;
		margin-bottom: 12px;
	}
}
@media (max-width: 767px){
	.dz-help-wrapper .title {
		font-size: 30px;
	}
}
@media (max-width: 591px){
	.dz-help-wrapper .dz-info-text {
		font-size: 15px;
	}
	.dz-hire {
		padding: 20px;
	}
}



/* ===== dz-items ===== */
.dz-items{
	background: #fff;
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.15);
    border-radius: 6px;
    overflow: hidden;
	transition: all 0.2s;
}
.dz-items:hover{
	transform: translateY(-5px);
}
.dz-media img{
	width:100%;
}
.dz-items .title a{
	color: #111;
}
.dz-items .title{
	font-size: 18px;
    margin-bottom: 0;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    font-weight: 600;
}
.dz-items .product-info{
    padding: 20px 25px;
}


/* ===== DZ Table List ===== */
.dz-table-list{
    border: 1px solid rgba(0,0,0,0.1);
	font-weight: 400;
}
.dz-table-list > li{
    padding: 12px 20px;
	font-size: 14px;
	word-wrap: break-word;
}
.dz-table-list > li p{
	margin-bottom: 0;
}
.dz-table-list > li:nth-child(2n+1){
    background: #f3f3f3 none repeat scroll 0 0;
}


/* ===== Intro Wrapper ===== */
.dz-intro-wrapper .title{
	font-size: 42px;
    margin-bottom: 15px;
}
.dz-intro-wrapper .sub-title{
	margin-bottom: 3px;
}
.dz-wish p{
	margin: 0;
    color: var(--title);
	font-weight: 500;
}
.dz-wish .rating-text{
	margin-bottom: 0;
    color: var(--primary);
    font-size: 14px;
}
.dz-wish{
	background-color: var(--primary-light);
    padding: 20px 20px;
    border-radius: 8px;
    display: inline-block;
    margin-top: 5px;
    border: 1px solid var(--primary-light);
}
@media (max-width: 591px) {
	.dz-intro-wrapper .title{
		font-size: 32px;
		margin-bottom: 10px;
	}
}


/* ===== SASS Compile ===== */
.content-bx{
	margin-bottom: 35px;
}


/* ===== Video Frame ===== */
.video-frame{
	border: 8px solid #222;
	max-width: 1080px;
	width: 100%;
	height: 600px;
	border-radius: 15px;
	display: block;
	margin-top: 30px;
}
@media (max-width: 1191px){
	.video-frame {
		border: 4px solid #222;
		height: 450px;
	}
}
@media (max-width: 767px){
	.video-frame{
		height: 300px;
	}
}
@media (max-width: 591px){
	.video-frame{
		height: 200px;
		border-radius: 10px;
	}
}


/* ===== JS Tree ===== */
.code{
	padding: 6px 12px;
    background-color: #232323;
    margin: 10px 0;
	display: block;
	color: #fff;
}
.jstree-default .jstree-anchor{
	color: #3F4254;
	padding: 0 8px 0 4px; 
}
.jstree-default .jstree-icon{
	color: #ffad0e;
	font-size: 1.3rem; 
}
.jstree-default .jstree-icon.fa{
    font-size: 1.2rem; 
}
.jstree-default .jstree-icon.la{
   font-size: 1.5rem; 
}
.jstree-default .jstree-disabled{
	line-height: auto;
	opacity: 0.7; 
	height: auto;
	cursor: not-allowed;
}
.jstree-default .jstree-disabled .jstree-icon{
    color: #3F4254; 
}	
.jstree-default .fa-file-text{
    color: #969696;
}	
.jstree-default .jstree-clicked{
	border: 0;
	box-shadow: none; 
	background: #F3F6F9;
	-webkit-box-shadow: none;
}
.jstree-default .jstree-hovered{
	box-shadow: none; 
	border: 0;
	background-color: #F3F6F9;
	-webkit-box-shadow: none;
}
.jstree-default .jstree-wholerow-clicked,
.jstree-default .jstree-wholerow-clicked{
	box-shadow: none;
	background: #EBEDF3;
	-webkit-box-shadow: none;
}
.jstree-default .jstree-wholerow-hovered,
.jstree-default.jstree-wholerow .jstree-wholerow-hovered {
	border: 0;
	box-shadow: none; 
	-webkit-box-shadow: none;
	background-color: #F3F6F9;
}
.jstree-open > .jstree-anchor > .fa-folder:before {
	content: "\f07c"; 
	color:#ffad0e;
	margin-left: 2px;
}
.jstree-open > .jstree-anchor > .la-folder:before {
	margin-left: 2px;
	color:#ffad0e;	
	content: "\f200"; 
}
.jstree-default .jstree-clicked{
   background: transparent;	
}
.jstree-anchor{
	background: transparent;
    margin: 0!important;
    padding: 0!important;
    color: #000!important;
}


/* ===== Table ===== */
.table > thead > tr > th, 
.table > tbody > tr > th, 
.table > tfoot > tr > th, 
.table > thead > tr > td, 
.table > tbody > tr > td, 
.table > tfoot > tr > td{
	vertical-align:middle;
	padding: 10px 20px;
}
.table > thead > tr > th, .table > tbody > tr > th, 
.table > tfoot > tr > th, .table > thead > tr > td, 
.table > tbody > tr > td, .table > tfoot > tr > td {
	border: 1px solid #dddddd;
}


/* ===== Navbar ===== */
.navbar{
    padding: 5px 0px;
    background: #fff;
    border: none;
    border-radius: 0;
    margin-bottom: 40px;
    box-shadow: 0 0 25px 0 rgba(0, 0, 0, 0.1);
}
.navbar-btn{
    box-shadow: none;
    outline: none !important;
    border: none;
}


/* Sidebar Style ===== */
.wrapper{
    display: flex;
    align-items: stretch;
}
#nevbarleft{
	background: #ffffff none repeat scroll 0 0;
    color: #ffffff;
    max-width: 300px;
    min-width: 300px;
    position: fixed;
    transition: all 0.3s ease 0s;
    z-index: 9999;
    box-shadow: 0 0 25px 0 rgba(0, 0, 0, 0.1);
    top: 0;
    left: 0;
    height: 100vh;
}
#nevbarleft.active{
    margin-left: -300px;
}
@media only screen and (max-width: 1366px){
	#nevbarleft{
		margin-left: -350px;
	}	
	#nevbarleft.active{
		margin-left: 0;
	}
}
#nevbarleft .sidebar-header img{
	max-width: 180px;
}
#nevbarleft .sidebar-header {
	padding: 12px 25px;
    background: #fff;
    text-align: left;
    border-bottom: 1px solid rgba(0,0,0,0.1);
}
.sidebar-header .main-logo{
    margin: 0;
    display: flex;
	max-width: 170px;
    align-items: center;
}
.sidebar-header .icon{
	width: 45px;
    max-width: 45px;
}
.sidebar-header span{
	font-size: 38px;
    line-height: 38px;
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    display: block;
}
.sidebar-header p{
	margin: 0;
    display: block;
    line-height: 24px;
    font-size: 14px;
}
.sidebar-header .logo-text{
	margin-left: 15px;
    margin-top: 3px;
}
.sidebar-header .small-logo {
	max-width: 30px;
    width: 44px;
    margin-right: 10px;
}
.side-nav{
	height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
#nevbarleft ul.components{
	padding: 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    text-align: left;
	padding-bottom: 30px;
	display: block;
}
#nevbarleft ul p {
    color: #fff;
    padding: 10px;
}
#nevbarleft ul li a {
   padding: 10px;
    font-size: 15px;
    display: block;
	color: #000;
	font-weight: 400;
    padding: 10px 25px;
	border-radius: 8px;
}
#nevbarleft ul li{
	display:block;
	width:100%;
	padding: 0 15px;
	margin:5px 0;
}
#nevbarleft ul li a:focus,
#nevbarleft ul li a:hover,
#nevbarleft ul li a.active{
    background: var(--primary) none repeat scroll 0 0;
    color: #ffffff;
	box-shadow: 0px 0px 22pxrgba(0, 0, 0, 0.1);
}

#nevbarleft ul li > a.active,
#nevbarleft  a[aria-expanded="true"] {
    color: #fff;
    background: var(--primary);
}
#nevbarleft ul li a .fa-star{
	margin-top: 4px;
}
#nevbarleft ul li a:focus .fa-star,
#nevbarleft ul li a:hover .fa-star, 
#nevbarleft ul li.active a .fa-star{
	color: #fff;
}
#nevbarleft a[data-toggle="collapse"] {
    position: relative;
}
#nevbarleft a[aria-expanded="false"]::before, 
#nevbarleft  a[aria-expanded="true"]::before {
    content: '\e259';
    display: block;
    position: absolute;
    right: 20px;
    font-family: 'Glyphicons Halflings';
    font-size: 0.6em;
}
#nevbarleft a[aria-expanded="true"]::before {
    content: '\e260';
}


/* ===== Content Style ===== */
#content{
    min-height: 100vh;
    transition: all 0.3s;
	width: 100%;
	padding-left: 300px;
}
#content.active{
	padding-left: 0;	
}
@media only screen and (max-width: 1366px){
	#content,
	#content.active{
		padding-left: 0;
	}
}
#nevbarleft #mobileCloseBtn img{
    width: 15px;
}
#nevbarleft #mobileCloseBtn{
	height: 50px;
    width: 50px;
    background-color: #fff;
    position: absolute;
    right: -45px;
    top: 20px;
    border-radius: 0 4px 4px 0;
	display: none;
}
@media only screen and (max-width: 1366px){
	#nevbarleft #mobileCloseBtn{
		display: block;
	}
}
#sidebarCollapse {
    width: 40px;
    height: 40px;
    background: var(--primary);
    border: 1px solid #fff;
    border-radius: 3px;
}
#sidebarCollapse span {
    width: 80%;
    height: 2px;
    margin: 0 auto;
    display: block;
    background: #fff;
    transition: all 0.8s cubic-bezier(0.810, -0.330, 0.345, 1.375);
    transition-delay: 0.2s;
}

#sidebarCollapse span:first-of-type {
    transform: rotate(45deg) translate(2px, 2px);
}
#sidebarCollapse span:nth-of-type(2) {
    opacity: 0;
}
#sidebarCollapse span:last-of-type {
    transform: rotate(-45deg) translate(1px, -1px);
}
@media (max-width: 1366px) {
	#sidebarCollapse span {
		transform: none !important;
		margin: 5px auto !important;
		opacity: 1!important;
	}
}
#sidebarCollapse.active span {
    transform: none;
    opacity: 1;
    margin: 5px auto;
}
@media (max-width: 991px) {
    #nevbarleft {
        margin-left: -300px;
        transform: rotateY(90deg);
    }
    #nevbarleft.active {
        margin-left: 0;
        transform: none;
    }
    #sidebarCollapse span:first-of-type,
    #sidebarCollapse span:nth-of-type(2),
    #sidebarCollapse span:last-of-type {
        transform: none;
        opacity: 1;
        margin: 5px auto;
    }
    #sidebarCollapse.active span {
        margin: 0 auto;
    }
    #sidebarCollapse.active span:first-of-type {
        transform: rotate(45deg) translate(2px, 2px);
    }
    #sidebarCollapse.active span:nth-of-type(2) {
        opacity: 0;
    }
    #sidebarCollapse.active span:last-of-type {
        transform: rotate(-45deg) translate(1px, -1px);
    }
	#nevbarleft .navbar-nav{
		margin:0;
	}
	.container{
		padding-right: 15px;
		padding-left: 15px;
	}
}
@media (max-width: 767px) {
	.navbar-right.nav-btn{
		float:right;
		margin-right:-15px;
		padding-top:10px;
		padding-right: 0px;
	}
	.navbar-header{
		float:left;
	}
}
.sidebar-bottom{
	padding: 20px;
	color: #2f2f2f;
	text-align: center;
	border-top: 1px solid rgba(0,0,0,0.1);
}
.sidebar-bottom .name{
	margin-bottom: 5px;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.4;
}		
.sidebar-bottom .ver-info{
	margin: 0;
	font-size: 14px;
	display: block;
	opacity: 0.8;
}
.nav-bar{
	padding-top: 10px;
    display: block;
    height: 80%;
    position: relative;
    overflow-y: scroll;
	scrollbar-width: thin;
	scrollbar-color: rgba(111, 133, 147, 0.1) #fff0;
}
.fa-star{
	font-size: 18px;
	float: right;
	color: #f2d201;
}
.overlay-hover{
	position: relative;
}
.overlay-hover:after{
	background-color: rgba(0,0,0,0.5);
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	content: "";
	position: absolute;
	opacity: 0;
	transition: all 0.5s;
}
.overlay-hover:hover:after{
	transition: all 0.5s;
	opacity: 1;
}


/* ===== Video Play ===== */
.videoplay-bx i{
	width: 50px;
	height: 50px;
	background: #EAA451;
	border-radius: 40px;
	text-align: center;
	line-height: 50px;
	color: #fff;
}
.videoplay-bx span{
	font-weight: 700;
    text-transform: uppercase;
    color: #fff;
    margin-left: 10px;
}
.videoplay-bx{
	display: block;
	position: absolute;
	top: 50%;
	transform: translate(-50% , -50%);
	margin-top: 0;
	left: 50%;
}
.video-box{
    max-width: 600px;
	margin-left: auto;
	margin-top: 50px;
	margin-right: auto;
	position: relative;
	overflow: hidden;
	border-radius: 15px;
	margin-bottom: -200px;
	border: 5px solid #fff;
	box-shadow: 0 20px 50px 20px rgba(0,0,0,0.2);
}
.video-meida{
	background-color:#000;
}
.video-meida img{
	opacity:0.5;
}
@media (max-width: 576px) {
	.video-box {
		max-width: 300px;
		margin-bottom: -120px;
	}
	.videoplay-bx{
		left: 70px;
		top: 60px;
		transform: translate(0);
	}
}
.img-bx,
.gallery img{ 
    border: 1px solid rgba(0,0,0,0.15);
    padding: 10px;
    border-radius: 6px;
    box-shadow: 5px 5px 40px -10px rgba(0,0,0,0.2);
    background: #fff;
}
.overlay-hover{
	position: relative;
}
.overlay-hover:after{
	background-color: rgba(0,0,0,0.5);
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	content: "";
	position: absolute;
	opacity: 0;
	transition: all 0.5s;
}
.overlay-hover:hover:after{
	transition: all 0.5s;
	opacity: 1;
}


/* ===== Color Theme ===== */
.color-list{
    display: flex;
    flex-flow: wrap;
}
.color-list li {
    position: relative;
    width: 120px;
    margin-right: 10px;
    margin-bottom: 10px;
}
.color-list li .overlay-text {
    height: 60px;
    line-height: 60px;
    width: 120px;
    border-radius: 4px;
    text-align: center;
    color: #fff;
}
.color-red{
	background-color: #ff3b30;
}
.color-green{
	background-color: #09c36a;
}
.color-blue{
	background-color: #2196f3;
}
.color-pink{
	background-color: #ff2d55;
}
.color-yellow{
	background-color: #ffcc00;
}
.color-orange{
	background-color: #ff8900;	
}
.color-purple{
	background-color: #ad00ff;
}
.color-deeppurple{
	background-color: #673ab7;
}
.color-lightblue{
	background-color: #5ac8fa;
}
.color-teal{
	background-color: #009688;
}
.color-lime{
	background-color: #cddc39;
}
.color-deeporange{
	background-color: #ff6b22;
}
.color-gray{
	background-color: #8e8e93;
}
.color-black{
	background-color: #000000;
}

.info-list > li{
	margin-bottom: 30px;
}
.info-list > li:last-child{
	margin-bottom: 0;	
}
.info-list > li ul{
	padding-left: 30px!important;
}
.info-list > li ul li{
	list-style: circle;
}
.apk-video{
	border: 5px solid #222;
    border-radius: 5px;
}
@media (max-width: 591px) {
	.apk-video {
		width: 100%;
		height: 200px;
	}
}
.sidebar-header h2{
	margin: 0;
}


/* ===== Theme Features ===== */
.color-list {
    display: flex;
    flex-flow: wrap;
}
.color-list li {
    position: relative;
    width: 120px;
    margin-right: 10px;
    margin-bottom: 10px;
}
.color-list li .overlay-text {
    height: 60px;
    line-height: 60px;
    width: 120px;
    border-radius: 4px;
    text-align: center;
    color: #fff;
}
.border{
	border:1px solid #ccc;
}
.text-black{
	color:#000!important;
}
.color-1{
	background:var(--primary);
}
.color-2{
	background:#6610f2;
}
.color-3{
	background:var(--primary);
}
.color-4{
	background:#4d06a5;
}
.color-5{
	background:#dc3545;
}
.color-6{
	background:#fd7e14;
}
.color-7{
	background:#ffc107;
}
.color-8{
	background:#fff;
}
.color-9{
	background:#20c997;
}
.color-10{
	background:#17a2b8;
}
.color-11{
	background:#94618E;
}
.color-12{
	background:#343a40;
}
.color-13{
	background:#2a2a2a;
}
.color-14{
	background:#4885ed;
}
.color-15{
	background:#4cb32b;
}

.color-f1{
	background-color: #4885ED;
}
.color-f2{
	background-color: #977fff;
}
.color-f3{
	background-color: #06C6D1;
}
.color-f4{
	background-color: #b8c724;
}
.color-f5{
	background-color: #f7244f;
}
.color-f6{
	background-color: #b65fbd;
}
.color-f7{
	background-color: #558b2f;
}

.info-list > li{
	margin-bottom: 30px;
}
.info-list > li:last-child{
	margin-bottom: 0;	
}
.info-list > li ul{
	padding-left: 30px!important;
}
.info-list > li ul li{
	list-style: circle;
}
.img-frame{
	background-color: #fff;
    border: 1px solid rgba(0,0,0,0.1);
    padding: 5px;
    border-radius: 5px;
}
.topbutton{
	font-size: 16px; 
}
@media only screen and (max-width: 591px){
	.topbutton{
		display: block !important;
		margin-bottom: 30px;
		margin-top: 10px;
	}
}
.overlay-black{
	position: relative;
}
.overlay-black:after{
	content: "";
    height: 100%;
    width: 100%;
    position: absolute;
    background-color: #000000;
    left: 0;
    top: 0;
    opacity: 0.4;
}
.fade:not(.show){
	opacity:1;
}
.nav-pills > li > a {
    position: relative;
    display: block;
    padding: 10px 15px;
	color:#333333;
}
.nav-pills .active{
	background-color:var(--primary);
	color:#fff;
	border-radius: 4px;
}

@media (max-width: 767px) {
  .mailchimp-video {
    width: 100%;
  }
}