@charset "UTF-8";
* { margin: 0px; padding: 0px; box-sizing: border-box; }
a, a:link, a:visited, a:hover, a:active {text-decoration:none; outline: none;}
img { border: 0px none; }
ul { padding-left: 0; }
body {
	padding:0;
	margin:0;
	font-family: 'Noto Sans TC', '微軟正黑體', sans-serif;
}
@media screen and (max-width: 768px) {
body.open { 
	width: 100%;
	height: 100vh;
	overflow: hidden;
	}
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 49;
    width: 100%;
    height: 100%;
	
    opacity: 0;
	visibility: hidden;
	-webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    background-color: rgba(0,0,0,0.8);
    }
.overlay.open {
    opacity: 0.8;
    visibility: visible;
    }
}
/************************
TOTAL
************************/


.page-wrapper,
.page-container {	
	margin: 0 auto; 
	width: 100%; 
	}
.page-wrapper {	
    padding: 0px; 
	/*max-width: 1200px;*/
	}
.page-container {	
    padding: 0px; 
	max-width: 1100px;
	}

h3 {
	font-size: 20px;
	font-weight: 700;
}

h4 {
	font-size: 18px;
	margin-bottom: 8px;
}

@media only screen and ( max-width:1280px ){ 
	.page-container { 
	width: 100%; 
	padding: 0px;
	}
}	
@media only screen and (max-width:1024px){ 
 	.page-wrapper { 
	width: 100%; 
	}   

}
@media only screen and (max-width:992px) { 

}	
@media only screen and (max-width:480px) { 
	
	
}
/****************************/
.toggle-button {
	position: relative;
    display: none;
	float: left;
	top: 5px;
	left: 0;
	width: 53px;
    height: 53px;
    padding: 15px 15px;
    margin: 0px;
    transition: .25s;
    z-index: 999;
    }
.toggle-button:hover { 
    cursor: pointer;
	/*background-color: #eeeeee;*/
    }
.toggle-button .menu-bar {
	position: relative;
    width: 100%;
    transition: .2s;
    }
.toggle-button .menu-bar-top {
    border: 2px solid #909090;
    border-bottom: none;
    top: 0px;
    }
.toggle-button .menu-bar-middle {
	height: 2px;
    /*background-color: #909090;*/
    margin: 2px 0px;
    top: 0px;
    }
.toggle-button .menu-bar-bottom {
    border: 2px solid #909090;
    border-top: none;
    top: 0px;
    }
.toggle-button.open .menu-bar-top {
    transform: rotate(45deg) translate(3px, 3px);
    transition: .2s;
    }
.toggle-button.open .menu-bar-middle {
    transform: translate(0px);
    transition: .1s ease-in;
    opacity: 0;
    }
.toggle-button.open .menu-bar-bottom {
    transform: rotate(-45deg) translate(3px, -3px);
    transition: .2s;
    } 

@media only screen and (max-width: 992px) {
.toggle-button { 
	display: inline-block;
	}
}
/************************
HEADER
************************/
header {
	position: fixed;
	display: inline-block;
	width: 100%;
	top: 0;
	left: 0;
	font-size: 16px;
	height: 120px;
    z-index: 50;
	background-color: rgba(255,255,255,0.99);
	box-shadow: 0px 2px 2px 0px rgba(0,0,0,0.2);
	transition: all 0.2s ease-out;
	}
header.open { 
	height: 50px;
    border-top: 4px solid #2e2e2e;
	}
header.open,
header { transition: all 0.2s ease-out; }

@media screen and (max-width: 992px) {
header { 
	height: 50px;
    border-top: 4px solid #2e2e2e;
	}
}
/************************/
header .h_menu,
header .h_logo,
header .h_content {
    position: relative; 
	display: inline-block;
	float: left;
    }
header .h_content {
    width: 100%;
	padding-top: 40px;
    }

header .h_menu ul.menu-bottom {
	position: fixed;
	display: inline-block;
	top: 0;
    left: 0;	
	width: 100%;
	height: 40px;
	background: #2e2e2e;
    z-index: 50;
	}
header .h_menu ul.menu-bottom li {
    position: relative; 
	display: inline-block;
	float: right;
	font-size: 14px;
	line-height: 1.5em; 
	font-weight: 500;
	}
header .h_menu ul.menu-bottom a:hover,	
header .h_menu ul.menu-bottom a {
	display: inline-block;
	color: #ffffff;
	height: 40px;
    padding: 9px 18px;
	}
header .h_menu ul.menu-bottom a span {
	font-size: 12px;
	color: #82827c;
	}
header .h_menu ul.menu-bottom li:hover {
	background: #444444;
	}
	
header .h_menu ul.menu-bottom ul {
    position: absolute; 
	display: none;
	top: 100%;
	width: 280px;
	color: #b8b8b8;
	background: #444444;
    }
header .h_menu ul.menu-bottom li:hover > ul { 
    display: block;
	height: auto;
	}
header .h_menu ul.menu-bottom ul li { 
	float: left;
	width: 100%;
	padding: 5px 20px;
	min-height: 40px;
	}
header .h_menu ul.menu-bottom ul li:hover {
	background: #999999;
	} 
header .h_menu ul.menu-bottom ul li.panel-header:hover {
	background: #444444;
	}
	
header .h_menu ul.menu-bottom ul label,	
header .h_menu ul.menu-bottom ul a {
	font-weight: 400;
	}
	
header.open ul.menu-bottom { display: none; }
header.open .h_content { padding-top: 0px; }
header .h_menu ul.menu-bottom ul.last-menu {padding-left: 0;}
@media screen and (max-width: 992px) {
header .h_content { 
    padding-top: 0px; 
	}
body.open .h_content { 
	padding-left: 280px;
	}
	
header.open ul.menu-bottom,
header .h_menu ul.menu-bottom {
    position: relative; 
	display: inline-block;
	background: #ffffff;
	}
header .h_menu ul.menu-bottom li {
	float: left;
	width: 100%;
	}
header .h_menu ul.menu-bottom li:hover {
	background: #ffffff;
	}	
header .h_menu ul.menu-bottom a:hover,	
header .h_menu ul.menu-bottom a {
	width: 100%;
	color: #656565;
	}
header .h_menu ul.menu-bottom a span {
    position: absolute; 
	right: 30px;
	color: #ff3333;
	}	
header .h_menu ul.menu-bottom li.pc768 {
	display: none;
	}
header .h_menu ul.menu-bottom ul {
    position: relative; 
	display: inline-block;
	padding: 10px 0px; 
	color: #70706f;
	background: #ececec;
    }
header .h_menu ul.menu-bottom ul li { 
	padding: 5px 20px;
	min-height: 30px;
	}

header .h_menu ul.menu-bottom ul.last-menu li,
header .h_menu ul.menu-bottom ul li.panel-header:hover {
	background: #ececec;
	}
header .h_menu ul.menu-bottom ul li:hover {
	background: #e2e2e2;
	} 	
header .h_menu ul.menu-bottom ul a:hover,
header .h_menu ul.menu-bottom ul a {
	color: #000000;
	}

header .h_menu ul.menu-bottom li:hover > ul,
header .h_menu ul.menu-bottom ul { display: none; }
header .h_menu ul.menu-bottom li:hover > ul.open,
header .h_menu ul.menu-bottom ul.open { display: inline-block; }

}		
/************************/
header .h_logo {
	width: 190px;
	margin: 0px 10px;
	margin-top: 26px;
	
	transition: all 0.4s ease-out;
	}
header .h_logo img {
	display: inline-block;
	float: left;
	width: 50%;
	}
	
header .h_menu ul.menu-top li,
header .h_menu ul.menu-top,
header .h_menu,
header .h_bank {
    position: relative; 
	display: inline-block;
    }
	
header .h_bank,
header .h_menu ul.menu-top li {
	line-height: 1.5em; 
	height: 80px;
	padding: 26px 0px;
	font-weight: 600;
	color: #2e2e2e; 	
	}
/************************/
header .h_bank ul.dark-last {
    position: absolute; 
	display: none;
	top: 100%;
	right: 0px;
	width: 180px;
	color: #2e2e2e; 
	background: #ececec;
    text-align: center; 
	}
header .h_bank ul.dark-last li {
    display: inline-block;
	width: 100%;
	}
		
header .h_bank ul.dark-last a,
header .h_bank ul.dark-last a:hover {
	display: inline-block;
	width: 100%;
	padding: 15px 0px;
	font-size: 14px;
	color: #2e2e2e; 
	transition: all 0.5s ease 0s; 
	}	
header .h_bank ul.dark-last a:hover {
	background: #dedede;
	}
header .h_bank ul.dark-last.open {
	display: inline-block;
	}	
/************************/

header .h_menu ul.menu-top a,
header .h_menu ul.menu-top a:hover {
	display: inline-block;
	padding: 0px 15px;
	color: #2e2e2e; 
	}
/*
header .h_menu ul.menu-top li:last-child a {
	border-left: 1px solid #c0c0c0;
	}
*/
header .h_menu ul.menu-top li:hover {
	background: #eeeeee;
	}
header.open ul.menu-top li {
	height: 46px;
	padding: 10px 0px;
	}
/************************/	
header .h_menu ul.menu-top a,
header .h_menu ul.menu-top a:hover {
	display: inline-block;
	padding: 0px 17px;
	color: #2e2e2e; 
	}
header .h_menu ul.menu-top li:last-child a {
	border-left: 1px solid #c0c0c0;
	}
header .h_menu ul.menu-top li:hover {
	background: #eeeeee;
	}
header.open ul.menu-top li {
	height: 46px;
	padding: 10px 0px;
	}
/************************/	
header .h_bank {
	float: right;
	background: #ff3333;
	padding: 26px 17px;
	}
header.open .h_bank,
header .h_bank { transition: all 0.2s ease-out; }	
	
header .h_bank a,
header .h_bank a:hover {
	display: inline-block;
	color: #ffffff; 
	}
header .h_bank img {
	display: inline-block;
	width: 20px;
	margin-bottom: -3px;
	}
header.open .h_bank {
	height: 46px;
	padding: 10px 17px;
	}

header.open .h_logo img.logo_tc { display: none; }
header.open .h_logo { 
	width: 80px;
	margin-top: 12px;
	margin-left: 10px;
	margin-right: 10px;
    }
header.open .h_logo img { width: 100%; }

@media screen and (max-width: 992px) {
header .h_content { height: 50px; }
header .h_logo img.logo_tc { display: none; }
header.open .h_logo,
header .h_logo {
	position: absolute;
	width: 80px;
	margin-top: 12px;
	margin-left: 0px;
	margin-right: 10px;
	}
header .h_logo img { width: 100%;}
header .h_bank {
	font-size: 14px;
	height: 46px;
	padding: 10px 17px;
	}

header .h_menu { 
	position: absolute;
	display: none;
    width: 280px;
	height: 100vh;
	top: 0;
	left: 0;
	z-index: 20;
	padding-bottom: 100px;
	background: #ffffff;
    }
	
body.open header .h_menu { 
	display: inline-block;
    overflow-x: hidden;
	}	
body.open .h_bank {
	display: none;
	}
	
header .h_menu ul.menu-top { 
	border-bottom: 1px solid #ececec; 
    }
header .h_menu ul.menu-top li {
	width: 100%;
	height: auto;
	font-size: 18px;
	padding: 12px 0px;
	}
header .h_menu a,
header .h_menu a:hover {
	padding: 0px 20px;
	}	
}
@media screen and (max-width: 468px) {
header .h_logo {

	}
}	
/***********************
LAYOUT 框架
***********************/
main.main-content {
	position: relative;
	display: inline-block;
	width: 100%;
	padding-top: 120px;
	overflow-x: clip;

	text-align: center;
	font-size: 18px;
	font-weight: 500;
	line-height: 1.8em;
	
}
body.open main.main-content { 
	padding-top: 50px;
}
	
@media screen and (max-width: 992px) {
body.open main.main-content,
main.main-content { 
	padding-top: 50px;
	}
}
@media screen and (max-width: 768px) {
	main.main-content {
		font-size: 16px; 
	}
}
/************************
FOOTER
************************/
footer .f_link,
footer .fiscal .f_right,
footer .fiscal .f_left,
footer .fiscal,
footer .f_warning,
footer { 
	position: relative;
	display: inline-block;
	float: left;
    width: 100%;
	}
 
footer { 
	padding: 10px 2%;
	background-color: #000;
    }
/************************/ 
footer .f_warning{
	color: #fff;
	margin: 10px 0 40px 0;
	width: 100%;
	padding: 0 5% 0 0;
}
/************************/ 
footer .fiscal {
	margin: 20px 0px;
	color: #191919;
	}
footer .fiscal .f_left { 
	width: 25%; 
	font-size: 30px;
	color: #ffffff;
	min-height: 48px; 
	text-align: left; 
	}
footer .fiscal .f_left img { 
    width: 80%; 
	}
footer .fiscal .f_right { 
	width: 75%;
	font-size: 14px; 
	line-height: 1.4em; 
	color: #ffffff;
	}
footer .fiscal .f_right a,
footer .fiscal .f_right a:hover  {
   color: #ffffff;
   line-height: 1em;
   }
/************************/ 
footer .f_link {
	margin-top: 10px;
	min-height: 40px;
	font-size: 14px;
	color: #b8b8b8;
	}
footer .f_link a,
footer .f_link a:hover  {
   display: inline-block;
   padding: 0px 10px;
   color: #b8b8b8;
   line-height: 1em;
   }
footer .f_link a + a { border-left: 1px solid #b8b8b8; }
footer .f_copy { 
   display: inline-block; 
   font-weight: 600;
   }	

@media screen and (max-width: 992px) {
footer .fiscal { width: 90%; padding: 0px 5%; }
footer .fiscal .f_left img { max-width: 300px; }
footer .fiscal .f_left,
footer .fiscal .f_right { width: 90%; margin: 0px 5%; text-align: left; }	
footer .fiscal .f_warning {margin: 10px 5% 40px 5%;}
	
footer .f_link { font-size: 13px; }
footer .f_link { width: 96%; margin: 1em 2%; text-align: center;  }
footer .f_copy { display: inline-block; width: 90%; margin: 10px 5%; text-align: center;  }
}



/************************
LAYOUT
************************/
.section {
	padding-block: 60px;
}

@media screen and (max-width: 768px) {
	.section {
		padding-block: 40px;
	}
}
@media screen and (max-width: 576px) {
	.container {
		padding-inline: 15px;
	}
}

/************* Helpers ***********/ 
:root {
	--color-secondary: #ff523b;
	--color-dbs-red: #ff3333;
	--color-dbs-red-dark: #cc0000;
	--color-pink: #ffa6a6;
	--bs-body-bg: #fcf6f1;
	
	--animate-delay: 0.2s;
}
.btn-red {
	background-color: var(--color-dbs-red-dark);
	color: white;
}
.btn-red:hover {
	background-color: #dc0909;
	color: white;
}
.btn-outline-secondary {
	border-color: var(--color-secondary);
	color: var(--color-secondary);
}
.btn-outline-secondary:hover {
	border-color: var(--color-secondary);
	background-color: var(--color-secondary);
	color: white;
}
.text-note {
	font-size: 16px;
	max-width: 700px;
	margin: 0 auto;
	margin-bottom: 10px;
	line-height: 1.5em;
}
.text-brown {
	color: #634b43;
}
.text-secondary {
	color: var(--color-secondary) !important;
}
.text-red { color: var(--color-dbs-red-dark);}
.text-decoration-underline {
	text-decoration: underline
}

.list-style-circle li {
	list-style-type: circle;
}

.text-nowrap {
	white-space: nowrap;
}

.border-bottom {
	border-bottom: 1px solid #808382;
}

.cs01  { color:#ff3333; }
.cs02  { color:#ff4a11; }

.fw-sbold {font-weight: 600;}
.fw-bold {font-weight: 700;}

.fs-1 { font-size: 2rem !important;		} /* 32px */
.fs-2 { font-size: 1.5rem !important; 	} /* 24px */
.fs-3 { font-size: 1.375rem !important; } /* 22px */
.fs-4 { font-size: 1.125rem !important; } /* 18px */
.fs-5 { font-size: 1rem !important; 	} /* 16px */
.fs-6 { font-size: 0.875rem !important; } /* 14px */

.lh-sm {
	line-height: 1.5em;
}
.w-fitcontent { width: fit-content; }
@media screen and (max-width: 768px) {
	.fs-1 { font-size: 1.5rem !important; 		} /* 24px */
	.fs-2 { font-size: 1.375rem !important;	 	} /* 22px */
	.fs-3 { font-size: 1.25rem !important;	 	} /* 20px */
	.fs-4 { font-size: 1rem !important;	 		} /* 16px */
	.fs-5 { font-size: 1rem !important;	 		} /* 16px */
	.fs-6 { font-size: 0.875rem !important;	 	} /* 14px */
}
/************************
KEY VISUAL
************************/
.key-visual {
	background-image: url(../images/key_visual-bg-lg.jpg);
	background-position: center bottom;
	background-repeat: no-repeat;
	background-size: 100% auto;
	aspect-ratio: 1200 / 616;
}
.key-visual .container {
	height: 90%;
}
.key-visual .title-container {
	top: 40%;
}
.key-visual .title {
	width: 32%;
}
.key-visual .app-logo {
	width: 11.7%;
	left: 10%;
	top: 17.5%;
}
.key-visual .app-icon {
	width: 6.6%;
	bottom: 8%;
	left: 10%;
	aspect-ratio: 141 / 174;
	object-fit: contain;
}


@media screen and (max-width: 768px) {
	.key-visual {
		background-image: url(../images/key_visual-bg-md.jpg);
		aspect-ratio: 768 / 620;
	}
	.key-visual .app-icon {
		bottom: auto;
		top: 18%;
		left: 20%;
		width: 6.5%;
	}
	.key-visual .app-logo {
		width: 13%;
		top: 18%;
		left: 5%;
	}
	.key-visual .title {
		width: 55%;
	}
}
@media screen and (max-width: 576px) {
	.key-visual {
		background-image: url(../images/key_visual-bg-sm.jpg);
		aspect-ratio: 390 / 615;
	}
	.key-visual .app-logo {
		width: 29.4%;
		top: 5%;
	}
	.key-visual .app-icon {
		width: 15.9%;
		top: 5%;
		left: 36%;
	}
    .key-visual .title {
        width: 50%;
    }
}

/************************
活動內容
************************/
section.vote-campaign{
	background-image: url(../images/section_bg.jpg);
	background-repeat: no-repeat;
	background-position: center top;
	background-size: cover;
	overflow-x: clip;
}
.vote-campaign .prize {
	width: 180px;
}
.vote-container {
	background-color: rgba(255,255,255,0.65);
	border-radius: 40px;
	padding: 80px 20px;
	margin-top: 40px;
}
.vote-container .swiper-wrapper {
	align-items: center;
}
.vote-container .swiper-slide {
	padding-bottom: 40px;
}
.vote-container .swiper-slide-active {
	padding-top: 40px;
}
.swiper-slide.swiper-slide-next img,.swiper-slide.swiper-slide-duplicate-next img{
	width: 70%;
	margin-right: 20%;
}
.swiper-slide.swiper-slide-prev img,.swiper-slide.swiper-slide-duplicate-prev img{
	width: 70%;
	margin-left: 20%;
}
.vote-container .img-active{
	display: none;
	width: 90%;
	margin-inline: auto;
}
.vote-container .img-inactive{
	opacity: 0.5;
}
.vote-container .swiper-slide-active .img-active{
	display: block;
}
.vote-container .swiper-slide-active .img-inactive{
	display: none;
}
.vote-container .btn-custom{
	display: none;
	border-radius: 6px;
}
.vote-container .swiper-slide-active .btn-custom{
	display: inline-block;
}
.swiper-next, .swiper-prev {
	position: absolute;
	width: 24px;
	top: 50%;
	transform: translateY(-50%);
	z-index: 10;
}
.swiper-next {
	right: 0px;
}
.swiper-prev {
	left: 0;
}
.swiper-pagination-bullet-active{
	background-color: #fc513390;
}
@media screen and (max-width: 768px) {
	.vote-container .img-active{
		width: 70%;
		display: block;
	}
	.vote-container .img-inactive{
		display: none;
	}
}
@media screen and (max-width: 576px) {
	.vote-container .img-active{
		width: 100%;
		padding-inline: 12%;
	}
	.vote-container .swiper-slide-active {
		padding-top: 0px;
	}
	.swiper-slide.swiper-slide-next img,.swiper-slide.swiper-slide-duplicate-next img{
		width: 100%;
		margin-right: 0;
	}
	.swiper-slide.swiper-slide-prev img,.swiper-slide.swiper-slide-duplicate-prev img{
		width: 100%;
		margin-left: 0;
	}
	.vote-container .btn-custom{
		display: inline-block;
	}
	.vote-container .swiper {
		margin-top: 40px;
	}
}
/************************
注意事項
************************/
.notice table th{
	background-color: #ffeaa0;
	border: 1px solid #ffeaa0;
	padding: 4px 10px;
	font-weight: normal;
}
.notice table td{
	border: 1px solid #ffeaa0;
	padding: 4px 10px;
}
@media screen and (max-width:576px) {
	.notice table th{
		padding: 4px 6px;
	}
	.notice table td{
		padding: 4px 4px;
	}
}

/************************
GOTOP
************************/
.go_top,
.go_link {
	position: fixed;
	display: inline-block;
	z-index: 99;
	}
.go_top img,
.go_top a,
.go_link img,
.go_link a { 
	position: relative;
	display: inline-block;
	width: 100%; 
	text-align: center;
	}
	
.go_top { 
    width: 50px; 
	height: 50px;
	right: 0px;
	bottom: 5%;
	}
	
.go_link { 
    width: 100px; 
	right: 0px;
	bottom: 20%;
	}
.go_link a { 
	width: 100%;
}	
.go_link a.link01 { 
	z-index: 10;
}	
.go_link a.link02 { 
	bottom: 72px;
	}	
.go_link img { 
	max-width: 100%; 
	}
.go_link .back {
	display: none;
}	
	
@media screen and (max-width: 576px) {
	.go_link { 
		/* top: 55%; */
		width: 50px;
	}
	.go_top { 
		bottom: 8%;
	}
}




.floating { 
    animation-name: floating;
    animation-duration: 5s;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out;
    margin-left: 30px;
    margin-top: 5px;
}
 
@keyframes floating {
    0% { transform: translate(0,  0px); }
    50%  { transform: translate(0, 40px); }
    100%   { transform: translate(0, -0px); }   
}

.floating2 { 
	animation-delay: 500ms;
	}
	
.floating3 { 
animation-delay: 1000ms;
}

.popup {
	display: none;
}

/************************
Scrollbar
************************/
/* 捲軸寬度及高度 */
::-webkit-scrollbar {
	width: 8px; /*右側捲軸寬度*/
	height: 8px; /*下方捲軸高度*/
  }
  /* 軌道背景底色 */
  ::-webkit-scrollbar-track {
	background: #f1f1f120; 
  }
   
  /* 滑桿顏色 */
  ::-webkit-scrollbar-thumb {
	background: #FF4C4C; 
  }
  /* 滑桿滑鼠滑入時的顏色 */
  ::-webkit-scrollbar-thumb:hover {
	background: #fb3d3d; 
  }
  /* 捲軸兩側頂端的按鈕 */
  ::-webkit-scrollbar-button {
	background-color: #dddddd;
  }
  /* 捲軸兩側頂端的按鈕滑鼠滑入時的顏色 */
  ::-webkit-scrollbar-button:hover {
	background-color: #c2c2c2;
  }

  .floating { 
    animation: floating 3s infinite ease-in-out;
	-webkit-animation: floating 3s infinite ease-in-out;
	-moz-animation: floating 3s infinite ease-in-out;
}

@keyframes floating {
    0% { transform: translate(0,  0px); }
    50%  { transform: translate(0, -20px); }
    100%   { transform: translate(0, 0px); }   
}
@-webkit-keyframes floating {
    0% { transform: translate(0,  0px); }
    50%  { transform: translate(0, -20px); }
    100%   { transform: translate(0, 0px); }   
}
@-moz-keyframes floating {
    0% { transform: translate(0,  0px); }
    50%  { transform: translate(0, -20px); }
    100%   { transform: translate(0, 0px); }   
}



@media screen and (max-width:992px) {

}

/************************
DRAWER-ITEM 
************************/ 
.drawer-content,
.drawer-header,
.drawer-item { 
	position: relative;
	display: inline-block;
	width: 100%;
	cursor: pointer;
	}
.drawer-header {
	min-height: 30px;
	padding: 6px;
	padding-top: 15px;
	padding-left: 1em;
	text-align: left;
	overflow: hidden;
}
.drawer-header h1 {
	font-size: 16px;
	line-height: 1.4em;	
	font-weight: 600;
	margin: 0;
}
.drawer-item-active .drawer-header {
	transition: 0.25s;
	min-height: 30px;
}
.drawer-header-icon {
	position: relative;
	display: inline-block; 
	content: ""; 
	/*float: left;*/
	width: 20px; 
	height: 10px; 

	background-image: url('../images/btn_close.svg');
	background-repeat: no-repeat; 
	background-position: center center; 
	background-attachment: scroll;
	
	background-size: 60% auto;
	-moz-background-size: 60% auto;
	-webkit-background-size: 60% auto;
	-o-background-size: 60% auto;
	
	text-align: center;
	vertical-align: middle; 
}
.drawer-header-icon.drawer-header-icon-active {
	transform: rotate(180deg);
}

.drawer-content {
	display: block;	
	font-size: 14px;
	line-height: 1.8em;
	text-align: left;
	word-wrap: break-word;
	cursor: default;
}
.drawer-content ol li>ul {
	margin-left: 1.2em;
	list-style-type: disc;
}

.drawer-content .title-sub {
	margin-top: 20px;
}

.anchor {
	position: absolute;
	top: -80px;
}
.modal-dialog {
	top: 30vh;
}
.modal-content {
	padding-bottom: 40px;
	border: none;
	outline: none;
}
.modal-header {
	border-bottom: 0;
}
.modal-body {
	text-align: center;
	font-weight: 500;
}
.modal-footer {
	justify-content: center;
	border-top: 0;
}


.decor_1 {
	width: 80px;
	left: 5%;
}
.decor_2 {
	width: 150px;
	right: 0;
	bottom: 0;
}
.decor_3 {
	width: 80px;
	left: 1%;
	top: 0;
}
.decor_4 {
	width: 118px;
	right: 0;
	bottom: 1%;
}
@media screen and (max-width: 768px) {
	.decor_2 {
		width: 100px;
		bottom: -5%;
	}
	.decor_4 {
		width: 80px;
		right: 0;
		bottom: 1%;
	}
}