html {
-webkit-text-size-adjust: none;
}
body {
	font-size: 16px;
	line-height: initial;
	color: #333333;
	background: #fff;
	font-family: 'Kanit', sans-serif;
	font-weight: 100;
	margin: 0px;
	}
	a{
	text-decoration: none;
	}
	* {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	-webkit-font-smoothing: antialiased;
	}
	*:focus {
	outline: none;
	}
	body .ui-input-text {
	border: 0;
	}
	.owl-dots {

	}
	.owl-theme.owl-carousel .owl-dots .owl-dot span {
	background-color: #d4e2e5;
	width: 12px;
	height: auto;
	aspect-ratio: 1;
	padding: 2px;
	margin: 6px 2px;
	background-clip: content-box;
	border: 1px solid transparent;
	transition: .5s;
	}
	.owl-theme.owl-carousel .owl-dots .owl-dot.active span {
	background-color: #ffffff;
	border-color: #fff;
	background-clip: content-box;
	}
	.owl-theme.owl-carousel .owl-dots .owl-dot:hover span {
	background-color: #cbcccc;
	background-clip: content-box;
	}

	#fancybox-loading ,
	.fancybox-close ,
	.fancybox-prev span ,
	.fancybox-next span {
	background-image: url(../images/fancybox.png) !important;
	visibility: visible !important;
	}
	.fancybox-nav {
	width: 40px !important;
	top: 50% !important;
	height: 100px !important;
	transform: translateY(-50%) !important;
	}
	.fancybox-next {
	right: -20px !important;
	}
	.fancybox-prev {
	left: -20px !important;
	}
	.fancybox-nav span {
	left: 50% !important;
	margin-left: -18px !important;
	}

	/* --------------------------------------------------- BTN Top --------------------------------------------------- */
	.btn-top {
	width: 35px;
	height: 35px;
	display: block;
	background: #252525 url(../images/btn-top.svg) no-repeat left center;
	position: fixed;
	right: 0px;
	bottom: 0px;
	display: none;
	z-index: 999;
	border-radius: 4px;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
	}
	.btn-top:hover{
	width: 152px;
	background-position-x: left;
	background-color: #113f6e;
	}

	/* --------------------------------------------------- loader --------------------------------------------------- */
	#loader {
	position: fixed;
	left: 0;
	top: 0;
	z-index: 99999;
	width: 100%;
	height: calc(100% + 80px);
	background-color: rgba(255, 255, 255, 0.6);
	}
	#loader::before {
	content: "";
	position: fixed;
	left: 50%;
	top: 50%;
	width: 35px;
	height: 35px;
	margin: -8px 0 0 -25px;
	border: 7px solid transparent;
	border-radius: 50%;
	border-top-color: #3fbda2;
	border-right-color: #3ca7bd;
	border-bottom-color: #398edc;
	-webkit-animation: spin 2s linear infinite;
	animation: spin 2s linear infinite;
	}
	@-webkit-keyframes spin {
	0% { -webkit-transform: rotate(0deg); }
	100% { -webkit-transform: rotate(360deg); }
	}
	@keyframes spin {
	0% { transform: rotate(0deg); }
	100% { transform: rotate(360deg); }
	}
	#loader span {
	position: fixed;
	left: 50%;
	top: 50%;
	width: 49px;
	height: 49px;
	margin: -8px 0 0 -25px;
	border-radius: 100%;
	-webkit-animation: spin2 2s linear infinite;
	animation: spin2 2s linear infinite;
	}
	@-webkit-keyframes spin2 {
	0% { -webkit-transform: rotate(0deg); }
	100% { -webkit-transform: rotate(360deg); }
	}
	@keyframes spin2 {
	0% { transform: rotate(0deg); }
	100% { transform: rotate(360deg); }
	}
	#loader span::before {
	content: "";
	width: 6px;
	height: 6px;
	margin-top: 7px;
	margin-left: 7px;
	display: block;
	border-radius: 100%;
	background: #56c1d2;
	}
	#loader span::after {
	content: "";
	width: 6px;
	height: 6px;
	margin-top: 24px;
	margin-left: 7px;
	display: block;
	border-radius: 100%;
	background: #4098e1;
	}

	/* --------------------------------------------------- header --------------------------------------------------- */
	header {
	width: 100%;
	transition: .5s;
	background: #fff;
	height: 50px;
	position: fixed;
	top: 0px;
	left: 0px;
	z-index: 99;
	box-shadow: 0 0 10px rgb(0 0 0 / 15%);
	}
	header.menu-open {
	left: calc(100vw - 50px);
	}
	 
	header .container {
	padding: 12px 15px;
	position: relative;
	}
	header .shifter-handle {
	overflow: hidden;
	cursor: pointer;
	display: table;
	padding: 6px 0px;
	}
	.shifter-handle.active:before {
	-webkit-animation: slideLeft 0.2s 0.05s ease-out forwards;
	animation: slideLeft 0.2s 0.05s ease-out forwards;
	}
	.menu-open .shifter-handle:after {
	-webkit-animation: slideRight 0.2s 0.05s ease-out forwards;
	animation: slideRight 0.2s 0.05s ease-out forwards;
	width: 20px;
	}
	.menu-open .shifter-handle .bar {
	-webkit-animation: rotate45 0.2s ease-out forwards;
	animation: rotate45 0.2s ease-out forwards;
	background: #999999;
	}
	.shifter-handle.active .bar:last-child {
	-webkit-animation: rotate135 0.2s 0.2s ease-out forwards;
	animation: rotate135 0.2s 0.2s ease-out forwards;
	}
	.shifter-handle.back:before {
	-webkit-transform: translateX(-120%);
	transform: translateX(-120%);
	-webkit-animation: slideBack 0.2s 0.05s ease-out forwards;
	animation: slideBack 0.2s 0.05s ease-out forwards;
	}
	.shifter-handle.back:after {
	-webkit-transform: translateX(120%);
	transform: translateX(120%);
	-webkit-animation: slideBack 0.2s 0.05s ease-out forwards;
	animation: slideBack 0.2s 0.05s ease-out forwards;
	}
	.shifter-handle.back .bar {
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
	-webkit-animation: rotateBack 0.2s ease-out forwards;
	animation: rotateBack 0.2s ease-out forwards;
	}
	.shifter-handle.back .bar:last-child {
	-webkit-transform: rotate(-135deg);
	transform: rotate(-135deg);
	-webkit-animation: rotateBack 0.2s 0.2s ease-out forwards;
	animation: rotateBack 0.2s 0.2s ease-out forwards;
	}
	.shifter-handle:before {
	content: '';
	display: block;
	width: 20px;
	height: 2px;
	background: url(../images/shifter-handle.png) no-repeat center;
	background-size: 100%;
	background-color: #3a92d7;
	}
	.shifter-handle:after {
	content: '';
	display: block;
	width: 13px;
	height: 2px;
	background: url(../images/shifter-handle.png) no-repeat center;
	background-size: 100%;
	background-color: #3a92d7;
	}
	.shifter-handle .bar {
	display: block;
	width: 20px;
	height: 2px;
	background: url(../images/shifter-handle.png) no-repeat center;
	background-size: 100%;
	margin: 4px 0;
	background-color: #3a92d7;
	}
	.shifter-handle .bar:last-child {
	opacity: 0;
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
	position: absolute;
	top: 20px;
	}
	@-webkit-keyframes rotate135 {
	form {
	opacity: 1;
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
	}
	to {
	opacity: 1;
	-webkit-transform: rotate(-135deg);
	transform: rotate(-135deg);
	}
	}
	@keyframes rotate135 {
	form {
	opacity: 1;
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
	}
	to {
	opacity: 1;
	-webkit-transform: rotate(-135deg);
	transform: rotate(-135deg);
	}
	}
	@-webkit-keyframes rotate45 {
	to {
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
	}
	}
	@keyframes rotate45 {
	to {
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
	}
	}
	@-webkit-keyframes rotateBack {
	to {
	-webkit-transform: rotate(0);
	transform: rotate(0);
	}
	}
	@keyframes rotateBack {
	to {
	-webkit-transform: rotate(0);
	transform: rotate(0);
	}
	}
	@-webkit-keyframes slideRight {
	to {
	-webkit-transform: translateX(122%);
	transform: translateX(122%);
	}
	}
	@keyframes slideRight {
	to {
	-webkit-transform: translateX(122%);
	transform: translateX(122%);
	}
	}
	@-webkit-keyframes slideLeft {
	to {
	-webkit-transform: translateX(-122%);
	transform: translateX(-122%);
	}
	}
	@keyframes slideLeft {
	to {
	-webkit-transform: translateX(-122%);
	transform: translateX(-122%);
	}
	}
	@-webkit-keyframes slideBack {
	to {
	-webkit-transform: translateX(0);
	transform: translateX(0);
	}
	}
	@keyframes slideBack {
	to {
	-webkit-transform: translateX(0);
	transform: translateX(0);
	}
	}

	header .logo {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%,-50%);
	width: 30px;
	aspect-ratio: 1;
	background: url(../images/logo.png) no-repeat center;
	background-size: contain;
	}
	header .box-profile {
	display: flex;
	align-items: center;
	position: absolute;
	right: 0px;
	top: 50%;
	transform: translateY(-50%);
	}
	header .box-profile .I-map {
	width: 30px;
	margin: 0px 5px;
	height: 25px;
	background: url(../images/I-map.png) no-repeat center;
	background-size: 18px auto;
	}
	header .box-profile .I-search {
	width: 30px;
	margin: 0px 5px;
	height: 25px;
	background: url(../images/I-search.png) no-repeat center;
	background-size: 18px auto;
	}
	header .box-profile .I-pro {
	width: 30px;
	margin: 0px 5px;
	height: 25px;
	background: url(../images/I-pro.png) no-repeat center;
	background-size: 18px auto;
	}

	header .shadow-close {
	position: absolute;
	left: 0px;
	width: 0px;
	height: calc(100vh - 50px);
	top: 50px;
	background: rgba(0, 0, 0, 0.2);
	}
	header .box-menu {
	width: calc(100vw - 50px);
	max-width: 100%;
	height: 100vh;
	transition: .5s;
	background: #ffffff;
	left: calc(-100vw + 50px);
	position: absolute;
	z-index: 99;
	top: 0px;
	transition: .5s;
	overflow-y: auto;
	}
	header.menu-open .box-menu+.shadow-close {
	width: 100vw;
	}
	header .box-menu .box-profile2 {
	background: rgba(63,190,160,1);
	background: -moz-linear-gradient(left, rgba(63,190,160,1) 0%, rgba(57,139,222,1) 100%);
	background: -webkit-gradient(left top, right top, color-stop(0%, rgba(63,190,160,1)), color-stop(100%, rgba(57,139,222,1)));
	background: -webkit-linear-gradient(left, rgba(63,190,160,1) 0%, rgba(57,139,222,1) 100%);
	background: -o-linear-gradient(left, rgba(63,190,160,1) 0%, rgba(57,139,222,1) 100%);
	background: -ms-linear-gradient(left, rgba(63,190,160,1) 0%, rgba(57,139,222,1) 100%);
	background: linear-gradient(to right, rgba(63,190,160,1) 0%, rgba(57,139,222,1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#3fbea0', endColorstr='#398bde', GradientType=1 );
	padding: 25px;
	margin: 0px;
	display: flex;
	align-items: center;
	position: sticky;
	top: 0px;
	left: 0px;
	right: 0px;
	z-index: 1;
	}
	header .box-menu .box-profile2 img.img {
	width: 55px;
	border-radius: 50%;
	aspect-ratio: 1;
	border: 1px solid #fff;
	padding: 3px;
	margin-right: 12px;
	background-color: #dfdfdf;
	background-clip: content-box;
	}
	header .box-menu .box-profile2 .b-text {
	color: #fff;
	}
	header .box-menu .box-profile2 .b-text a {
	color: #fff;
	}
	header .box-menu .box-profile2 img.I-card {
	border-radius: 0px;
	border: 0px;
	width: 19px;
	padding: 0px;
	margin: 0px;
	vertical-align: middle;
	}

	.box-language {
	padding: 10px 0px 25px 0px;
	}
	.box-language .box-list {
	text-align: center;
	display: table;
	width: 100%;
	}
	.box-language .box-list .b-list {
	float: left;
	width: 33.33%;
	border-left: 1px solid #ccc;
	}
	.box-language .box-list .b-list:first-child {
	border: none;
	}
	.box-language .box-list .b-list a {
	opacity: 0.6;
	display: block;
	color: #9a9a9a;
	}
	.box-language .box-list .b-list.active a {
	opacity: 1;
	color: #0F75BC;
	}
	.box-language .box-list .b-list img {
	width: 30px;
	display: block;
	margin: auto;
	transition: .5s;
	}

	header .box-menu .menu-main {
	padding: 7px 0px;
	margin: 0px;
	}
	header .box-menu .menu-main li {
	display: block;
	width: 100%;
	}
	header .box-menu .menu-main a {
	color: #575757;
	padding: 12px 35px;
	display: block;
	font-weight: 500;
	padding-left: 75px;
	position: relative;
	}
	header .box-menu .menu-main a img {
	width: 30px;
	position: absolute;
	left: 37px;
	top: 10px;
	}

	header .box-menu .menu-social {
	background: rgba(63,190,160,1);
	background: -moz-linear-gradient(left, rgba(63,190,160,1) 0%, rgba(57,139,222,1) 100%);
	background: -webkit-gradient(left top, right top, color-stop(0%, rgba(63,190,160,1)), color-stop(100%, rgba(57,139,222,1)));
	background: -webkit-linear-gradient(left, rgba(63,190,160,1) 0%, rgba(57,139,222,1) 100%);
	background: -o-linear-gradient(left, rgba(63,190,160,1) 0%, rgba(57,139,222,1) 100%);
	background: -ms-linear-gradient(left, rgba(63,190,160,1) 0%, rgba(57,139,222,1) 100%);
	background: linear-gradient(to right, rgba(63,190,160,1) 0%, rgba(57,139,222,1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#3fbea0', endColorstr='#398bde', GradientType=1 );
	padding: 10px 0px;
	margin: 12px;
	border-radius: 16px;
	}
	header .box-menu .menu-social li {
	display: block;
	width: 100%;
	}
	header .box-menu .menu-social a {
	color: #ffffff;
	padding: 14px 30px;
	display: block;
	font-weight: 500;
	}
	header .box-menu .menu-social a img {
	display: block;
	float: left;
	width: 37px;
	margin-right: 10px;
	margin-top: -6px;
	background-color: #fff;
	border-radius: 50%;
	}

	header .btn.menu-social {
	background: rgba(63,190,160,1);
	background: -moz-linear-gradient(left, rgba(63,190,160,1) 0%, rgba(57,139,222,1) 100%);
	background: -webkit-gradient(left top, right top, color-stop(0%, rgba(63,190,160,1)), color-stop(100%, rgba(57,139,222,1)));
	background: -webkit-linear-gradient(left, rgba(63,190,160,1) 0%, rgba(57,139,222,1) 100%);
	background: -o-linear-gradient(left, rgba(63,190,160,1) 0%, rgba(57,139,222,1) 100%);
	background: -ms-linear-gradient(left, rgba(63,190,160,1) 0%, rgba(57,139,222,1) 100%);
	background: linear-gradient(to right, rgba(63,190,160,1) 0%, rgba(57,139,222,1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#3fbea0', endColorstr='#398bde', GradientType=1 );
	padding: 13px;
	text-align: center;
	margin: 12px;
	border-radius: 28px;
	color: #fff;
	display: block;
	border: 3px solid #CBDFF7;
	}

	header .box-search {
	width: 100%;
	height: 100vh;
	transition: .5s;
	background: #1991E4;
	right: -100vw;
	overflow-y: auto;
	position: absolute;
	z-index: 99;
	top: 0px;
	transition: .5s;
	}
	header.menu-pro-open .box-search {
	box-shadow: -2px 0px 7px 0px rgba(0, 0, 0, 0.25);
	right: 0px;
	}
	header.menu-pro-open .box-search+.shadow-close {
	width: 100vw;
	}
	header .box-search form {
	background: #0F75BC;
	padding-bottom: 5px;
	position: sticky;
	top: 0px;
	left: 0px;
	right: 0px;
	margin: 0px;
	}
	header .box-search .btn.close {
	width: auto;
	margin: 0px;
	border: 0px;
	border-radius: 0px;
	aspect-ratio: 1;
	padding: 12px;
	margin-left: auto;
	display: block;
	}
	header .box-search .d-head {
	color: #fff;
	display: flex;
	justify-content: space-between;
	padding: 18px;
	align-items: center;
	}
	header .box-search .d-head h2 {
	margin: 0px;
	}
	header .box-search .d-head img {
	width: 60px;
	aspect-ratio: 1;
	object-fit: cover;
	border-radius: 50%;
	}

	header .box-search .input-group {
	display: flex;
	background-color: #fff;
	border-radius: 8px;
	margin: 18px;
	margin-top: 0px;
	}
	header .box-search .input-group .btn {
	margin: 0px;
	width: 48px;
	border: 0px;
	background: transparent;
	padding: 0px;
	}
	header .box-search .input-group .ui-input-text {
	margin: 0px;
	width: 100%;
	border: 0px;
	}
	header .box-search .input-group input {
	height: 100%;
	font-size: 16px;
	font-family: 'Kanit', sans-serif;
	color: #333333;
	padding: 0.55em;
	padding-left: 0px;
	width: 100%;
	border: 0;
	background: transparent none;
	}

	header .box-search .d-result {
	color: #fff;
	display: flex;
	justify-content: space-between;
	padding: 0px 32px 18px 32px;
	align-items: center;
	}
	header .box-search .d-head ,
	header .box-search .input-group ,
	header .box-search .d-result ,
	#search_result {
	max-width: 600px;
	margin-left: auto;
	margin-right: auto;
	}

	#search_result {
	padding: 15px;
	padding-top: 0px;
	}
	#search_result a {
	border-bottom: 1px solid rgb(255 255 255 / 42%);
	display: block;
	color: #fff;
	padding: 20px 18px;
	}
	#search_result a span {
	display: block;
	font-size: 14px;
	}

	/* --------------------------------------------------- box-body --------------------------------------------------- */
	.box-body {
	max-width: 800px;
	margin: auto;
	}
	.divHeader+.box-body {
	padding-top: 50px;
	}
	img.cartoon {
	width: 80%;
	display: block;
	margin: auto;
	margin-top: 10px;
	}
	#popup-promotion {
	position: fixed;
	left: 0px;
	right: 0px;
	top: 0px;
	z-index: 99;
	background: rgba(0, 0, 0, 0.5);
	height: 100%;
	opacity: 0;
	transition: opacity .5s;
	transform: scale(0);
	}
	#popup-promotion.open {
	opacity: 1;
	transform: scale(1);
	}
	#popup-promotion .box-promotion {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 100%;
	transform: translate(-50%,-50%);
	padding: 20px;
	padding-top: 40px;
	}
	#popup-promotion .btn-close {
	position: absolute;
	top: 0px;
	right: 15px;
	width: 36px;
	height: 36px;
	cursor: pointer;
	z-index: 8040;
	background-image: url(../images/fancybox.png) !important;
	background-size: 44px 152px;
	}
	#popup-promotion img {
	width: 100%;
	}

	.btn-group {
	position: relative;
	display: inline-block;
	vertical-align: middle;
	}
	.btn-group .btn {
	display: inline-block;
	padding: 6px 15px;
	margin-bottom: 0;
	font-size: 14px;
	font-weight: 400;
	line-height: 1.42857143;
	text-align: center;
	white-space: nowrap;
	vertical-align: middle;
	-ms-touch-action: manipulation;
	touch-action: manipulation;
	cursor: pointer;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	background-image: none;
	border: 1px solid transparent;
	border-radius: 25px;
	float: left;
	color: #333;
	background-color: #fff;
	border-color: #ccc;
	}
	.btn-group .btn.disabled {
	color: #bfbfbf;
	}
	.btn-group>.btn:first-child:not(:last-child) {
	border-top-right-radius: 0;
	border-bottom-right-radius: 0;
	}
	.btn-group>.btn:not(:first-child):not(:last-child) {
	border-radius: 0;
	}
	.btn-group>.btn:last-child:not(:first-child) {
	border-top-left-radius: 0;
	border-bottom-left-radius: 0;
	}
	.btn-group .btn+.btn {
	margin-left: -1px;
	}
	.btn-group  input.btn {
	width: 40px;
	padding: 6px 3px;
	}

	.input-calendar {
	display: flex;
	margin: 10px 5px;
	border-radius: 10px;
	border: 1px solid #cecece;
	box-shadow: 0px 4px 4px rgb(167 176 192 / 16%);
	overflow: hidden;
	}
	.input-calendar .ui-input-text {
	border: 0;
	margin: 0px;
	width: 100%;
	}
	.input-calendar .form-control {
	padding: 14px 13px;
	line-height: normal;
	box-sizing: border-box;
	font-family: 'Kanit', sans-serif;
	font-weight: 100;
	width: 100%;
	font-size: 18px;
	border: none;
	}
	.input-calendar .input-group-append {
	display: flex;
	align-items: center;
	}
	.input-calendar .input-group-append img {
	padding: 10px;
	width: 29px;
	box-sizing: content-box;
	}

	.modal {
	position: fixed;
	z-index: -1;
	opacity: 0;
	inset: 0px;
	display: flex;
	align-items: center;
	justify-content: center;
	}
	.modal.open {
	z-index: 99;
	opacity: 1;
	}
	.modal .modal-content {
	z-index: 2;
	background-color: #fff;
	padding: 15px;
	max-width: 90%;
	}
	.modal .gc-calendar {
	padding: 0px;
	}
	.modal .shadow {
	content: "";
	position: absolute;
	z-index: 1;
	background-color: rgb(0 0 0 / 50%);
	inset: 0px;
	display: flex;
	align-items: center;
	justify-content: center;
	}

	.b-head-btn {
	padding: 3px 15px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 28px;
	}
	.b-head-btn h4 {
	margin: 0px;
	color: #0F75BC;
	position: relative;
	font-size: 21px;
	}
	.b-head-btn h4::after {
	content: "";
	position: absolute;
	bottom: 0px;
	left: 0px;
	width: 30px;
	border-bottom: 1px solid #0F75BC;
	}
	.b-head-btn a.btn {
	padding: 6px 25px;
	background: #F8F8F8;
	border-radius: 91px;
	color: #666666;
	}

	a.I-back {
	position: absolute;
	top: 15px;
	left: 16px;
	z-index: 10;
	}
	.divHeader+.box-body a.I-back {
	top: 70px;
	}
	a.I-back.back-color {
	position: fixed;
	}

	body .gc-calendar {
	font-family: 'Kanit', sans-serif;
	}
	body .gc-calendar .gc-calendar-header button.next ,
	body .gc-calendar .gc-calendar-header button.prev {
	padding: 0px;
	margin: 0px;
	box-shadow: none !important;
	}
	body .gc-calendar .gc-calendar-header button.next img ,
	body .gc-calendar .gc-calendar-header button.prev img {
	width: 24px;
	}

	a.I-basket {
	position: fixed;
	bottom: 5px;
	right: 10px;
	z-index: 1;
	}
	a.I-basket img {
	display: block;
	width: 40px;
	}

	.box-body .box-head {
	text-align: center;
	padding: 8px 15px;
	position: relative;
	}
	.box-body .box-head::before {
	content: "";
	background: rgba(63,190,160,1);
	background: -moz-linear-gradient(left, rgba(63,190,160,1) 0%, rgba(57,139,222,1) 100%);
	background: -webkit-gradient(left top, right top, color-stop(0%, rgba(63,190,160,1)), color-stop(100%, rgba(57,139,222,1)));
	background: -webkit-linear-gradient(left, rgba(63,190,160,1) 0%, rgba(57,139,222,1) 100%);
	background: -o-linear-gradient(left, rgba(63,190,160,1) 0%, rgba(57,139,222,1) 100%);
	background: -ms-linear-gradient(left, rgba(63,190,160,1) 0%, rgba(57,139,222,1) 100%);
	background: linear-gradient(to right, rgba(63,190,160,1) 0%, rgba(57,139,222,1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#3fbea0', endColorstr='#398bde', GradientType=1 );
	width: 100%;
	height: 63px;
	position: absolute;
	left: 0px;
	top: 0px;
	z-index: -1;
	}
	.box-body a.I-back.back-color+.box-head {
	position: sticky;
	top: 50px;
	left: 0px;
	right: 0px;
	background-color: #fff;
	z-index: 9;
	}
	.box-body a.I-back.back-color+.box-head h1 {
	font-weight: 500;
	}
	.box-body a.I-back.back-color+.box-head::before {
	display: none;
	}
	.box-body a.I-back:not(.back-color) {
	filter: brightness(0) invert(1);
	top: 75px;
}

.box-body a.I-back.grey-color {
	filter: brightness(0) invert(0.5);
	top: 75px;
}

.box-head .Icon {
	display: table;
	border-radius: 50%;
	overflow: hidden;
	padding: 5px;
	margin: auto;
	margin-bottom: 10px;
	position: relative;
}
.box-head .Icon img {
	width: 85px;
	display: block;
	border-radius: 50%;
}

.box-head h1 {
	color: #3a92d7;
	margin: 0px;
	font-size: 20px;
	padding-bottom: 5px;
}
.box-head h2 {
	color: #4aa42f;
	margin: 0px;
	font-size: 18px;
	line-height: 18px;
	font-weight: 500;
	padding-bottom: 5px;
}
.box-head hr {
	border: 0;
	border-bottom: 1px solid #e2e2e2;
}

.box-head-gradient {
	background: rgba(63,190,160,1);
	background: -moz-linear-gradient(left, rgba(63,190,160,1) 0%, rgba(57,139,222,1) 100%);
	background: -webkit-gradient(left top, right top, color-stop(0%, rgba(63,190,160,1)), color-stop(100%, rgba(57,139,222,1)));
	background: -webkit-linear-gradient(left, rgba(63,190,160,1) 0%, rgba(57,139,222,1) 100%);
	background: -o-linear-gradient(left, rgba(63,190,160,1) 0%, rgba(57,139,222,1) 100%);
	background: -ms-linear-gradient(left, rgba(63,190,160,1) 0%, rgba(57,139,222,1) 100%);
	background: linear-gradient(to right, rgba(63,190,160,1) 0%, rgba(57,139,222,1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#3fbea0', endColorstr='#398bde', GradientType=1 );
	color: #fff;
}
.box-head-gradient h3 {
	margin: 0px;
	text-align: center;
	padding: 20px;
}

.box-form.border-gradient {
	position: relative;
}
.box-form.border-gradient::before {
	content: "";
	background: rgba(63,190,160,1);
	background: -moz-linear-gradient(left, rgba(63,190,160,1) 0%, rgba(57,139,222,1) 100%);
	background: -webkit-gradient(left top, right top, color-stop(0%, rgba(63,190,160,1)), color-stop(100%, rgba(57,139,222,1)));
	background: -webkit-linear-gradient(left, rgba(63,190,160,1) 0%, rgba(57,139,222,1) 100%);
	background: -o-linear-gradient(left, rgba(63,190,160,1) 0%, rgba(57,139,222,1) 100%);
	background: -ms-linear-gradient(left, rgba(63,190,160,1) 0%, rgba(57,139,222,1) 100%);
	background: linear-gradient(to right, rgba(63,190,160,1) 0%, rgba(57,139,222,1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#3fbea0', endColorstr='#398bde', GradientType=1 );
	height: 4px;
	width: 100%;
	position: absolute;
	left: 0px;
	right: 0px;
	top: 0px;
}
.box-form {
	max-width: 800px;
	margin: auto;
	background-color: White;
}
h3 {
	margin: 0px;
	text-align: center;
}
.box-gyronorm {
	overflow: hidden;
	position: relative;
}
.box-gyronorm::after {
	content: "";
	width: 100%;
	height: 100%;
	display: block;
	position: absolute;
	top: 0px;
	left: 0px;
	right: 0px;
	background: url(../images/BG-text.png) no-repeat center top;
	background-size: contain;
}
.box-gyronorm img.ban-img {
	width: calc(100% + 160px) !important;
	transition: .5s;
	margin: -80px -80px -10px;
}

.box-content {
	padding: 15px;
	max-width: 800px;
	margin: auto;
	padding-bottom: 55px;
}
.box-content .row {
	margin: 0px -15px;
}
.box-content img {
	max-width: 100%;
}
.box-content a.fancybox img {
	width: 100%;
	display: block;
	border-radius: 10px;
}
.box-content p {
	padding: 0px 5px;
}
.box-content h1 {
	margin: 0px;
	font-size: 20px;
	text-align: center;
}
.box-content hr {
	border: 0;
	border-bottom: 1px solid #e2e2e2;
}
.box-content b {
	color: #656565;
	font-weight: 500;
}
.box-content img.Icon {
	width: 100px;
	margin: 20px auto 10px auto;
	display: block;
}

.btn-gradient {
	background: rgba(63,189,162,1);
	background: -moz-linear-gradient(left, rgba(63,189,162,1) 0%, rgba(57,139,222,1) 100%);
	background: -webkit-gradient(left top, right top, color-stop(0%, rgba(63,189,162,1)), color-stop(100%, rgba(57,139,222,1)));
	background: -webkit-linear-gradient(left, rgba(63,189,162,1) 0%, rgba(57,139,222,1) 100%);
	background: -o-linear-gradient(left, rgba(63,189,162,1) 0%, rgba(57,139,222,1) 100%);
	background: -ms-linear-gradient(left, rgba(63,189,162,1) 0%, rgba(57,139,222,1) 100%);
	background: linear-gradient(to right, rgba(63,189,162,1) 0%, rgba(57,139,222,1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#3fbda2', endColorstr='#398bde', GradientType=1 );
	border-radius: 50px !important;
	padding: 10px;
	width: 100%;
	color: #ffffff;
	font-family: 'Kanit', sans-serif;
	font-weight: 100;
	font-size: 16px;
	box-shadow: 0px 0px 0px 4px rgba(73, 142, 223, 0.28);
	border: 0px;
	margin: 20px auto;
	margin-bottom: 20px;
	display: block;
	text-align: center;
}
.text-gradient {
	background: -webkit-gradient(linear,left top,right top,from(#3fbea1),to(#79a9e3));
	background: linear-gradient(to right,#3fbea1,#79a9e3);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	-webkit-box-decoration-break: clone;
	box-decoration-break: clone;
	text-shadow: none;
}
.btn-reset {
	background: #f8f8f8;
	color: #575757;
	border-radius: 50px;
	padding: 10px;
	width: 85%;
	font-family: 'Kanit', sans-serif;
	font-weight: 100;
	font-size: 20px;
	border: 0px;
	display: block;
	margin: 15px auto;
	margin-bottom: 20px;
	text-align: center;
}

/* ---------------------------------------------------**** Tablet ****--------------------------------------------------- */
@media only screen and (min-width: 768px) {
	header.menu-open {
		left: 400px;
	}
	header .box-menu {
		width: 400px;
		left: -400px;
	}
	header.menu-profile-open {
	    left: -400px;
	}
	header.menu-pro-open {
	    left: -400px;
	}
	header .box-menu .box-profile2 {
		width: 400px;
	}
}

header .box-menu-pro {
	width: calc(100vw - 55px);
	height: 100vh;
	transition: .5s;
	background: #ffffff;
	right: calc(-100vw + 55px);
	overflow-y: auto;
	position: absolute;
	z-index: 99;
	top: 0px;
	transition: .5s;
}
header.menu-pro-open .box-menu-pro {
	box-shadow: -2px 0px 7px 0px rgba(0, 0, 0, 0.25);
}
header.menu-pro-open .box-menu-pro+ .shadow-close {
	width: 100vw;
}
header .box-menu-pro .img-profile {
	background: rgba(63,190,160,1);
	background: -moz-linear-gradient(left, rgba(63,190,160,1) 0%, rgba(57,139,222,1) 100%);
	background: -webkit-gradient(left top, right top, color-stop(0%, rgba(63,190,160,1)), color-stop(100%, rgba(57,139,222,1)));
	background: -webkit-linear-gradient(left, rgba(63,190,160,1) 0%, rgba(57,139,222,1) 100%);
	background: -o-linear-gradient(left, rgba(63,190,160,1) 0%, rgba(57,139,222,1) 100%);
	background: -ms-linear-gradient(left, rgba(63,190,160,1) 0%, rgba(57,139,222,1) 100%);
	background: linear-gradient(to right, rgba(63,190,160,1) 0%, rgba(57,139,222,1) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#3fbea0', endColorstr='#398bde', GradientType=1 );
	padding: 25px;
	margin: 0px;
	text-align: center;
	color: #ffffff;
}
header .box-menu-pro .img-profile .img {
	display: table;
	border-radius: 50%;
	border: 3px solid rgba(255, 255, 255, 0.5);
	margin: auto;
	margin-bottom: 13px;
	background: no-repeat center;
	background-size: cover;
	background-clip: content-box;
}
header .box-menu-pro .img-profile .img img {
	width: 30vw;
	max-width: 180px;
	display: block;
}

header .box-menu-pro .menu-main {
	padding: 0px;
	margin: 0px;
}
header .box-menu-pro .menu-main li {
	border-bottom: 1px solid #eaeaea;
	display: block;
	width: 100%;
}
header .box-menu-pro .menu-main a {
	color: #575757;
	padding: 18px 23px;
	display: block;
	font-weight: 500;
}
header .box-menu-pro .menu-main a img {
	display: block;
	float: left;
	width: 22px;
	margin-right: 10px;
}

header .box-menu-pro a.a-logout {
	background: #e05252;
	color: #fff;
	display: table;
	padding: 4px 25px 7px 25px;
	margin: 20px auto;
	border-radius: 20px;
}