/*
 * Copyright inpleworks, Co.
 * default is Mobile
*/

/* ------------------------------------------------------------------------------------------------------------------ */
/* reset
/* ------------------------------------------------------------------------------------------------------------------ */
*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
html,
body {
	height:100%;
	font-size: 14px;
	line-height: 1.42857143;
    -webkit-text-size-adjust: none;
	-moz-text-size-adjust: none;
	-ms-text-size-adjust: none;
	margin: 0;
	padding: 0;
	background: #fff;
	color: #333;
}
html, body, table, th, td, button, input { font-family: 'Noto Sans KR', 'Apple SD Gothic Neo', 'Nanum Gothic', 'Malgun Gothic', '돋움', Dotum, 'Lucida Sans', 'Trebuchet MS', Arial, Tahoma, sans-serif; }
div,h1,h2,h3,h4,h5,h6,form,input,textarea,p,figure,fieldset { margin:0; padding:0; }
fieldset, img { border:0 none; }
a, a:visited, a:hover, a:active, a:focus { text-decoration:none; }
a[href^=tel]{
    color:inherit;
    text-decoration:none;
}
a, input { outline:none; }
:focus { outline: 0; }
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
nav,
section {
  display: block;
}
audio,
canvas,
video {
  display: inline-block;
  *display: inline;
  *zoom: 1;
}
audio:not([controls]) {
  display: none;
}
embed,
object,
video {
	max-width: 100%;
}

/* ------------------------------------------------------------------------------------------------------------------ */
/* Typography
/* ------------------------------------------------------------------------------------------------------------------ */
h1 {
	font-weight: 700;
}
h1 .thin {
	font-weight: 300;
}
h2 {
	font-weight: 500;
}
h2 .thin {
	font-weight: 300;
}
h3 {
	font-weight: 500;
}
h3 .thin {
	font-weight: 300;
}
h4 {
	font-weight: 500;
}
h5 {
	font-weight: 500;
}
h6 {
	font-weight: 500;
}

body.fixed,
.xet-layout-body {
	overflow: hidden;
}
.xet-layout-body.preload {
	opacity: 0;
}
.xet-layout-body {
	display: flex;
	flex-direction: column;
}

/* ------------------------------------------------------------------------------------------------------------------ */
/* Left & Right Bar
/* ------------------------------------------------------------------------------------------------------------------ */
#xet-left-bar,
#xet-right-bar {
	display: none;
	transition:all 0.6s cubic-bezier(0.7, 0, 0.3, 1);
	-moz-transition:all 0.6s cubic-bezier(0.7, 0, 0.3, 1);
	-webkit-transition:all 0.6s cubic-bezier(0.7, 0, 0.3, 1);
}


/* ------------------------------------------------------------------------------------------------------------------ */
/* HEADER
/* ------------------------------------------------------------------------------------------------------------------ */
#xet-header {
	z-index: 100;
	position: relative;
	background-color: #181919;
}
#xet-header.fixed {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	width: 100%;
	background-color: rgba(0,0,0,.3);
}
#xet-header.scroll-to-fixed-fixed {
	border-bottom: 1px  solid rgba(0, 0, 0, 0.1);
	-moz-box-shadow: 0 1px 5px 2px rgba(0, 0, 0, 0.2);
	-webkit-box-shadow: 0 1px 5px 2px rgba(0, 0, 0, 0.2);
	box-shadow: 0 1px 5px -2px rgba(0, 0, 0, 0.2);
}

/* Logo
----------------------------------------------------------- */
.xet-logo.text-center {
	margin: 0 70px;
}
.xet-logo a {
	display: inline-block;
	height: 60px;
	line-height: 60px;
	font-size: 18px;
	color: #fff;
	transition:all 0.3s ease-in-out;
	-moz-transition:all 0.3s ease-in-out;
	-webkit-transition:all 0.3s ease-in-out;
}
.xet-logo a img {
	vertical-align: top;
	height: 36px;
	margin-top: 12px;
	transition:all 0.3s ease-in-out;
	-moz-transition:all 0.3s ease-in-out;
	-webkit-transition:all 0.3s ease-in-out;
}



/* NAV - Dropdown
----------------------------------------------------------- */
.xet-nav {}
.xet-nav-ul {
	display: inline-block;
	margin: 0;
	padding: 0;
	list-style: none;
}
.xet-nav-ul > li {
	position:relative;
	float: left;
	margin: 0 20px;
	padding: 0;
	transition:all 0.3s ease-in-out;
	-moz-transition:all 0.3s ease-in-out;
	-webkit-transition:all 0.3s ease-in-out;
}
.xet-nav-ul > li.nav-li:first-child {
	margin-left: 0;
}
.xet-nav-ul > li.nav-li:nth-last-child(1) {
	margin-right: 0;
}
.xet-nav-ul > li > a,
.xet-nav-ul > li > button {
	position: relative;
	display: inline-block;
	font-size: 14px;
	height: 60px;
	line-height: 60px;
	white-space: nowrap;
	text-decoration:none;
	cursor:pointer;
	border: 0;
	margin: 0;
	padding: 0;
	background: none;
	color: #fff;
	transition:all 0.3s ease-in-out;
	-moz-transition:all 0.3s ease-in-out;
	-webkit-transition:all 0.3s ease-in-out;
}
.xet-nav-ul > li.li-btn {
	margin: 0;
}
.xet-nav-ul > li.li-btn > a,
.xet-nav-ul > li.li-btn > button {
	padding-left: 20px;
	font-size: 16px;
}

/* Hover color NAV 1차 */
.xet-nav-ul > li:hover > a,
.xet-nav-ul > li:hover > button,
.xet-nav-ul > li > a.current {
	color: #40C4FF;
}

/* 2차 메뉴 */
.xet-nav-ul ul {
	z-index: 99;
	opacity: 0;
	visibility: hidden;
	position: absolute;
	left: -15px;
	top: 100%;
	width: 200px;
	list-style: none;
	margin: 0;
	padding: 0;
	background: #2e3032;
	border: 1px solid rgba(0, 0, 0, .1);
	border-top: 0;
	box-shadow:0 4px 5px -3px rgba(0,0,0,.1);
	-webkit-box-shadow: 0px 2px 5px 0px rgba(0,0,0,.1);
	transform: translateY(30px);
	transition: all 0.33s ease-out;
	-moz-transition: all 0.33s ease-out;
	-webkit-transition: all 0.33s ease-out;
}
.xet-nav-ul ul li {
	position: relative;
	float: none;
	height: auto;
	line-height: normal;
	padding-left: 15px;
	padding-right: 15px;
}
.xet-nav-ul ul li a,
.xet-nav-ul ul li button {
	position: relative;
	display: block;
	font-size: 12px;
	cursor: pointer;
	white-space: normal;
	font-weight: normal;
	width: 100%;
	text-align: left;
	padding: 14px 0;
	margin: 0;
	border-radius: 0;
	color: #fff;
	background: none;
	border: 0;
	border-bottom: 1px solid rgba(255,255,255,.1);
	transition:all 0.2s ease-in-out;
	-moz-transition:all 0.2s ease-in-out;
	-webkit-transition:all 0.2s ease-in-out;
}
.xet-nav-ul ul li:last-child a,
.xet-nav-ul ul li:last-child button {
	border-bottom: 0;
}
.xet-nav-ul ul li span.child {
	position: absolute;
	right: 12px;
	top: 14px;
	font-size: 11px;
	font-weight: normal;
	text-align: center;
	padding: 0;
	width: 12px;
	transition:all 0.2s ease-in-out;
	-moz-transition:all 0.2s ease-in-out;
	-webkit-transition:all 0.2s ease-in-out;
	color: #fff;
}

.xet-nav-ul ul li:hover > a,
.xet-nav-ul ul li:hover span.child {
	color: #40C4FF;
}
.xet-nav-ul ul li:hover span.child {
	-ms-transform: rotate(-90deg);
	-moz-transform: rotate(-90deg);
	-webkit-transform: rotate(-90deg);
	transform: rotate(-90deg)
}

/* 3차 메뉴 */
.xet-nav-ul ul ul {
	top: 0;
	left: 100%;
}

/* Show NAV 2차, 3차 */
.xet-nav-ul li.hovered > ul,
.xet-nav-ul ul li:hover > ul {
	opacity: 1;
	visibility: visible;
    transform: translateY(0px);
    -moz-transform: translateY(0px);
    -webkit-transform: translateY(0px);
    transition: all 0.33s ease-out;
	-moz-transition: all 0.33s ease-out;
	-webkit-transition: all 0.33s ease-out;
}


/* Mobile hamburger icon
----------------------------------------------------------- */
.xet-toggle-menu {
	position: relative;
	display: block;
	width: 40px;
	height: 60px;
	padding: 0;
	font-size: 0 !important;
	overflow: hidden;
	white-space: nowrap;
	cursor: pointer;
	color: transparent;
	border: 0;
	border-radius: 0;
	background: none;
	transition:all 0.3s ease-in-out;
	-moz-transition:all 0.3s ease-in-out;
	-webkit-transition:all 0.3s ease-in-out;
}
.xet-toggle-menu span,
.xet-toggle-menu span::before,
.xet-toggle-menu span::after {
  /* hamburger icon in CSS */
	position: absolute;
	display: inline-block;
	height: 2px;
	width: 24px;
	background: #fff;
}
.xet-toggle-menu span {
	/* line in the center */
	position: absolute;
	top: 50%;
	left: 50%;
	margin-top: -2px;
	margin-left: -12px;
	-webkit-transition: background 0.2s;
	-moz-transition: background 0.2s;
	transition: background 0.2s;
}
.xet-toggle-menu span::before,
.xet-toggle-menu span::after {
	/* other 2 lines */
	content: '';
	right: 0;
	/* Force Hardware Acceleration in WebKit */
	-webkit-transform: translateZ(0);
	-moz-transform: translateZ(0);
	-ms-transform: translateZ(0);
	-o-transform: translateZ(0);
	transform: translateZ(0);
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-transform-origin: 0% 50%;
	-moz-transform-origin: 0% 50%;
	-ms-transform-origin: 0% 50%;
	-o-transform-origin: 0% 50%;
	transform-origin: 0% 50%;
	-webkit-transition: -webkit-transform 0.2s;
	-moz-transition: -moz-transform 0.2s;
	transition: transform 0.2s;
}
.xet-toggle-menu span::before {
	/* menu icon top line */
	top: -6px;
}
.xet-toggle-menu span::after {
	/* menu icon bottom line */
	top: 6px;
}
.xet-toggle-menu.push-active span {
	/* hide line in the center */
	background: none;
}
.xet-toggle-menu.push-active span::before,
.xet-toggle-menu.push-active span::after {
	/* keep visible other 2 lines */
	background: #fff;
}
.xet-toggle-menu.push-active span::before {
	-webkit-transform: translateX(4px) translateY(-3px) rotate(45deg);
	-moz-transform: translateX(4px) translateY(-3px) rotate(45deg);
	-ms-transform: translateX(4px) translateY(-3px) rotate(45deg);
	-o-transform: translateX(4px) translateY(-3px) rotate(45deg);
	transform: translateX(4px) translateY(-3px) rotate(45deg);
}
.xet-toggle-menu.push-active span::after {
	-webkit-transform: translateX(4px) translateY(2px) rotate(-45deg);
	-moz-transform: translateX(4px) translateY(2px) rotate(-45deg);
	-ms-transform: translateX(4px) translateY(2px) rotate(-45deg);
	-o-transform: translateX(4px) translateY(2px) rotate(-45deg);
	transform: translateX(4px) translateY(2px) rotate(-45deg);
}
#xet-header .xet-toggle-menu.push-active {
	opacity: 0;
	visibility: hidden;
}

/* ------------------------------------------------------------------------------------------------------------------ */
/* MAIN
/* ------------------------------------------------------------------------------------------------------------------ */
#xet-backstretch-video,
#xet-backstretch-main {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	z-index: 1;
	color: #fff;
	-webkit-text-shadow: 0 2px 2px rgba(0,0,0,.1);
	-moz-text-shadow: 0 2px 2px rgba(0,0,0,.1);
	text-shadow: 0 2px 2px rgba(0,0,0,.1);
}


@keyframes cover-fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* Firefox < 16 */
@-moz-keyframes cover-fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* Safari, Chrome and Opera > 12.1 */
@-webkit-keyframes cover-fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* Internet Explorer */
@-ms-keyframes cover-fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* Opera < 12.1 */
@-o-keyframes cover-fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}


/* ------------------------------------------------------------------------------------------------------------------ */
/* Section - Video
/* ------------------------------------------------------------------------------------------------------------------ */

.xet-ytb-buttons {
	z-index: 10;
	position: fixed;
	right: 15px;
	top: 50%;
	margin-top: -75px;
	border: 0;
	transition: all 0.5s ease-out;
	-moz-transition: all 0.5s ease-out;
	-webkit-transition: all 0.5s ease-out;
	-webkit-transition-delay: 0.5s;
    transition-delay: 0.5s;
}
.xet-ytb-buttons button  {
	display: block;
	text-align: center;
	width: 50px;
	height: 50px;
	line-height: 50px;
	cursor: pointer;
	border: 0;
	border-radius: 0;
	transition: all 0.33s ease-out;
	-moz-transition: all 0.33s ease-out;
	-webkit-transition: all 0.33s ease-out;
	background-color: rgba(0,0,0,.5);
	color: #fff;
}
.xet-ytb-buttons button#xet-compress,
.xet-ytb-buttons button#xet-ytb-play,
.xet-ytb-buttons button#xet-ytb-mute {
	display: none;
}
.xet-ytb-buttons button#xet-expand,
.xet-ytb-buttons button#xet-compress,
.xet-ytb-buttons button#xet-ytb-mute,
.xet-ytb-buttons button#xet-ytb-unmute {
	background-color: rgba(0,0,0,.3);
}

.min-vh100 {
	min-height: calc(100vh);
}


/* ------------------------------------------------------------------------------------------------------------------ */
/* BODY - CONTENT - PAGE
/* ------------------------------------------------------------------------------------------------------------------ */
#xet-body {
	flex: 1;
}
/* page top */
.xet-page-top {
	color: #2e3032;
}
.xet-page-top a {
	color: #2e3032;
}
.xet-page-top .page-title-inner {}

/* content */
.xet-content {}

#xet-backstretch-sub {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: -999999;
}


/* ------------------------------------------------------------------------------------------------------------------ */
/* FOOTER
/* ------------------------------------------------------------------------------------------------------------------ */
#xet-footer {
	position: relative;
	padding: 10px 0;
	color: #fff;
	background-color: #181919;
}
#xet-footer a {
	color: #fff;
}
#xet-footer.fixed0 {
	position: fixed;
	width: 100%;
	left: 0;
	right: 0;
	bottom: 0;
	padding: 10px 0;
	z-index: 9;
	background-color: rgba(0,0,0,.2);
}
.xet-logo-footer img {
	vertical-align: top;
	max-height: 60px;
}

/* SNS */
.xet-footer-ul {
	margin: 0;
	padding: 0;
	list-style:none;
}
.xet-footer-ul > li {
	display: inline-block;
	margin: 0 5px 5px;
	padding: 0;
}
.xet-footer-ul > li a {
	display: inline-block;
	font-weight:normal;
	cursor: pointer;
	transition: all 0.33s ease-out;
	-moz-transition: all 0.33s ease-out;
	-webkit-transition: all 0.33s ease-out;
	color: #fff;
}
.xet-footer-ul.sub > li {
	margin: 0 3px 8px;
}
.xet-footer-ul.sub > li a {
	width: 36px;
	height: 36px;
	line-height: 34px;
	-moz-border-radius: 50%;
	-webkit-border-radius: 50%;
	border-radius: 50%;
	border: 1px solid #fff;
}
.xet-footer-ul.sub > li a>i {
	font-size: 16px;
}

/* ------------------------------------------------------------------------------------------------------------------ */
/* Mobile Side Panel
/* ------------------------------------------------------------------------------------------------------------------ */
.xet-side-panel {
	z-index: 1100;
	position: fixed;
	background: #2e3032;
	color: #9199a1;
}
.xet-side-panel .side-panel-top {
	position: relative;
	height: 61px;
	line-height: 60px;
	padding: 0 15px;
	margin-bottom: 20px;
	background: #181919;
}
.xet-side-panel .side-panel-top .xet-acc button,
.xet-side-panel .side-panel-top .xet-acc a {
	display: inline-block;
	padding: 0;
	margin: 0 10px;
	font-size: 20px;
	border-radius: 0;
	border: 0;
	outline: none;
	-webkit-appearance: none;
	background: none;
	color: #bbc4cc;
}

.xet-side-panel .side-panel-body {
	position: relative;
}

/* Push */
.xet-push-left,
.xet-push-right {
	height: 100%;
    top: 0;
}
.xet-push-left {
	width: 320px;
    left: -320px;
}
.xet-push-right {
	width: 320px;
    right: -320px;
}
.xet-push-left.push-open {
    left: 0;
     -webkit-box-shadow: 2px 0px 6px rgba(0,0,0,.7);
    box-shadow: 2px 0px 6px rgba(0,0,0,.7);
}
.xet-push-right.push-open {
    right: 0;
     -webkit-box-shadow: -2px 0px 6px rgba(0,0,0,.7);
    box-shadow: -2px 0px 6px rgba(0,0,0,.7);
}
.push {
    left: 0;
    position: relative;
}
.push-toright {
    left: 320px !important;
}
.push-toleft {
    left: -320px !important;
}
#xet-backstretch-video,#xet-backstretch-main,#xet-video-contents,
#xet-header,
#xet-footer,
.xet-side-panel,
.push {
    transition:all 0.6s cubic-bezier(0.7, 0, 0.3, 1);
	-moz-transition:all 0.6s cubic-bezier(0.7, 0, 0.3, 1);
	-webkit-transition:all 0.6s cubic-bezier(0.7, 0, 0.3, 1);
}
/* push nav */

#xet-shadow-layer {
	display: none;
	z-index: 1000;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right:0;
    cursor: pointer;
    background-color: rgba(0, 0, 0, 0.6);
}


/* ------------------------------------------------------------------------------------------------------------------ */
/* TOP SCROLL BUTTON
/* ------------------------------------------------------------------------------------------------------------------ */
#xet-top-scroll {
	z-index:999;
	display: none;
	position:fixed;
	bottom: 15px;
	right: 15px;
	overflow:hidden;
	width: 40px;
	height: 40px;
	line-height: 40px;
	text-align: center;
}
#xet-top-scroll a {
	display: block;
	text-decoration:none;
	font-size: 0;
	opacity: 0.5;
	-moz-border-radius: 50%;
	-webkit-border-radius: 50%;
	border-radius: 50%;
	color: #fff;
	background: url(../img/up.png) center no-repeat #000;
	background-size: 40px;
	transition:opacity 0.3s ease-in-out;
	-moz-transition:opacity 0.3s ease-in-out;
	-webkit-transition:opacity 0.3s ease-in-out;
}



/* ------------------------------------------------------------------------------------------------------------------ */
/* waypoint - scroll animate
/* ------------------------------------------------------------------------------------------------------------------ */
.xet-animate {
    opacity: 0;
}

/* delay time
---------------------------------*/
.delay-01s {
	animation-delay: 0.1s;
	-webkit-animation-delay: 0.1s;
}
.delay-02s {
	animation-delay: 0.2s;
	-webkit-animation-delay: 0.2s;
}
.delay-03s {
	animation-delay: 0.3s;
	-webkit-animation-delay: 0.3s;
}
.delay-04s {
	animation-delay: 0.4s;
	-webkit-animation-delay: 0.4s;
}
.delay-05s {
	animation-delay: 0.5s;
	-webkit-animation-delay: 0.5s;
}
.delay-06s {
	animation-delay: 0.6s;
	-webkit-animation-delay: 0.6s;
}
.delay-07s {
	animation-delay: 0.7s;
	-webkit-animation-delay: 0.7s;
}
.delay-08s {
	animation-delay: 0.8s;
	-webkit-animation-delay: 0.8s;
}
.delay-09s {
	animation-delay: 0.9s;
	-webkit-animation-delay: 0.9s;
}
.delay-10s {
	animation-delay: 1s;
	-webkit-animation-delay: 1s;
}
.delay-12s {
	animation-delay: 1.2s;
	-webkit-animation-delay: 1.2s;
}
.delay-15s {
	animation-delay: 1.5s;
	-webkit-animation-delay: 1.5s;
}
.delay-18s {
	animation-delay: 1.8s;
	-webkit-animation-delay: 1.8s;
}


/* ------------------------------------------------------------------------------------------------------------------ */
/* Preloader
/* ------------------------------------------------------------------------------------------------------------------ */
#xet-preloader-wrp {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    background: #181919;
}
#xet-preloader-wrp .xet-preloader {
    display: block;
    position: absolute;
    text-align: center;
    left: 0;
    top: 50%;
    width: 100%;
    height: 90px;
    margin: -45px 0 0 0;
}
#xet-preloader-wrp .logo {
    display: block;
    text-align: center;
    font-size: 36px;
    height: 60px;
    overflow: hidden;
    margin-bottom: 10px;
    color: #fff;
    -webkit-animation-fill-mode: both;
	 animation-fill-mode: both;
	display: inline-block;
}
#xet-preloader-wrp .logo img {
	height: 100%;
	vertical-align: top;
	-webkit-animation: fadein 2s;
    animation: fadein 2s;
}
@keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}
@-webkit-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}


#xet-preloader-wrp .ball-pulse > div:nth-child(1) {
	-webkit-animation: scale 0.75s -0.24s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08);
	animation: scale 0.75s -0.24s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08);
}
#xet-preloader-wrp .ball-pulse > div:nth-child(2) {
	-webkit-animation: scale 0.75s -0.12s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08);
	animation: scale 0.75s -0.12s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08);
}
#xet-preloader-wrp .ball-pulse > div:nth-child(3) {
	-webkit-animation: scale 0.75s 0s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08);
	animation: scale 0.75s 0s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08);
}
@-webkit-keyframes scale {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
   	}
  45% {
    -webkit-transform: scale(0.1);
            transform: scale(0.1);
    opacity: 0.7;
    }
  80% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
    }
}
@keyframes scale {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
    }
  45% {
    -webkit-transform: scale(0.1);
            transform: scale(0.1);
    opacity: 0.7;
    }
  80% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
    }
 }
#xet-preloader-wrp .ball-pulse > div {
	background-color: #fff;
	width: 15px;
	height: 15px;
	border-radius: 0;
	margin: 2px;
	-webkit-animation-fill-mode: both;
	 animation-fill-mode: both;
	display: inline-block;
}



/* ------------------------------------------------------------------------------------------------------------------ */
/* Custom buttons
/* ------------------------------------------------------------------------------------------------------------------ */
.xet-btn-bg-theme {
	padding: 10px 30px;
	background-color: #40C4FF !important;
	color: #fff !important;
}

/* hover */
.xet-btn:hover {}

/* ------------------------------------------------------------------------------------------------------------------ */
/* Theme
/* ------------------------------------------------------------------------------------------------------------------ */
.theme-color {
	color: #40C4FF;
}


/* ------------------------------------------------------------------------------------------------------------------ */
/* Colorset
/* ------------------------------------------------------------------------------------------------------------------ */
#xet-header.fixed.light-theme,
#xet-footer.fixed.light-theme {
	background-color: rgba(255,255,255,.8);
}

#xet-header.border-frame,
#xet-footer.border-frame,
#xet-left-bar,
#xet-right-bar {
	background-color: #181919;
}
#xet-header.light-theme,
#xet-footer.light-theme,
#xet-header.light-theme.border-frame,
#xet-footer.light-theme.border-frame,
#xet-left-bar.light-theme,
#xet-right-bar.light-theme {
	background-color: rgba(255,255,255,1);
}
#xet-footer.light-theme {
	background-color: rgba(245,245,245,1);
}
#xet-footer.border-frame {
	border: 0 !important
}

#xet-header.light-theme .xet-logo a,
#xet-header.light-theme .xet-nav-ul > li > a,
#xet-header.light-theme .xet-nav-ul > li > button,
#xet-footer.light-theme,
#xet-footer.light-theme a,
#xet-footer.light-theme .xet-footer-ul > li a {
	color: #111;
}

#xet-footer.light-theme .xet-footer-ul.sub > li a {
	border-color: #111;
	background-color: #fff;
}

#xet-header.light-theme .xet-toggle-menu span,
#xet-header.light-theme .xet-toggle-menu span::before,
#xet-header.light-theme .xet-toggle-menu span::after,
#xet-header.light-theme .xet-toggle-menu.push-active span::before,
#xet-header.light-theme .xet-toggle-menu.push-active span::after {
	background: #111;
}
#xet-header.light-theme .xet-toggle-menu.push-active span {
	background: none;
}

#xet-body.dark-theme {
	background-color: rgba(0,0,0,.85);
}
/* page top */
#xet-body.dark-theme .xet-page-top {
	color: #bbc4cc;
}
