:root {
	--vh: 1vh;
}
html, body {
	overflow-x: hidden;
}
body {
	font-family: 'Arial', 'Noto Sans CJK TC', 'PingFang TC', 'Heiti TC', 'Noto Sans TC', source-han-sans-traditional, 'Microsoft JhengHei', sans-serif;
	color: #1a1a1a;
	font-size: 1.125rem;
	font-weight: 400;
	background-color: #f4f4f4;
	letter-spacing: 0.05em;
}
body.loaded {
}
p {
	line-height: 1.8;
	font-weight: 400;
}
p + p {
	margin-top: 0.6em;
}
a {
	text-decoration: none;
	color: inherit;
	-webkit-tap-highlight-color: transparent;
}
a, button, input[type="submit"], input[type="button"] {
	cursor: pointer;
}
input, select, textarea, button {
	font-family: 'Arial', 'Noto Sans CJK TC', 'PingFang TC', 'Heiti TC', 'Noto Sans TC', source-han-sans-traditional, 'Microsoft JhengHei', sans-serif;
	font-size: 1.125rem;
	font-weight: 400;
}
img {
	max-width: 100%;
	width: auto;
	height: auto;
}

/* Preloader */
#preloader {
	position: fixed;
	top:0;
	left:0;
	right:0;
	bottom:0;
	background-color:#4abebe; /* change if the mask should have another color then white */
	z-index:100; /* makes sure it stays on top */
}
#status {
	border: 8px solid #faf8f0; /* Light grey */
    border-top: 8px solid #f5da3d; /* yellow */
    border-radius: 50%;
    width: 60px;
    height: 60px;
    animation: spin 2s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* layout */
.container {
	padding: 5em 2em 5em;
	max-width: 1025px;
	width: 100%;
	margin: 0 auto;
}
.container.midwide {
	max-width: 1260px;
}
.container.wide {
	max-width: 1600px;
}
footer .container {
	padding: 1em 2em 3em;
}
.max-w8 {max-width: 780px;}
.max-w7 {max-width: 680px;}
.max-w6 {max-width: 600px;}
.max-w5 {max-width: 500px;}

.col {
	display: inline-block;
}
.flex {
	display: flex;
}
.grid-2 {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
}
.mx-auto {
	margin-left: auto!important;
	margin-right: auto!important;
}
.w100 {
	width: 100%;
}
.d-table {
	display: table;
}
.d-row {
	display: table-row;
}
.d-cell {
	display: table-cell;
}
.mt-1 {	margin-top: 0.8em; }
.mt-2 {	margin-top: 1.4em; }
.mt-3 {	margin-top: 2.5em; }
.mt-4 {	margin-top: 4em; }
.mb-1 {	margin-bottom: 0.8em; }
.mb-2 {	margin-bottom: 1.4em; }
.mb-3 {	margin-bottom: 2em; }
.mb-4 {	margin-bottom: 4em; }
.mb-s { margin-bottom: 10px; }
.ml-1 { margin-left: 1em; }
.ml-2 { margin-left: 1.8em; }
.mr-1 { margin-right: 1em; }
.mr-2 { margin-right: 2em; }

.my-1 { margin-top: 0.5em; margin-bottom: 0.5em;}

.pt-1 { padding-top: 0.8em; }
.pt-2 { padding-top: 1.4em; }
.pt-4 { padding-top: 4em; }
.pb-1 { padding-bottom: 1em; }
.pb-4 { padding-bottom: 4em; }

/* position */
.relative {
	position: relative;
}
.ab-center {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	margin: auto;
}
.fixed-right {
	position: fixed;
	right: 20px;
	bottom: 150px;
	z-index: 90;
}
.flex-column {
	flex-direction: column;
}
.flex-middle {
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: center;
    justify-content: center;
}
.flex-space {
	display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: space-between;
    justify-content: space-between;
}
.flex-right {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: flex-end;
    justify-content: flex-end;
}
.flex-left {
	-webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
}

/* color */
.bg-no {
	background: transparent;
}
.bg-blue {
	background: #027AC5;
}

.black { color: #1a1a1a; }
.white { color: #fff; }
.red { color: #bb272f; }
.blue { color: #027AC5; }
.deepblue { color: #2A659A; }
.gray { color: #6E8294; }
.deepgray { color: #3E5971; }

.opacity-75 { opacity: 0.75; }
.opacity-60 { opacity: 0.6; }

/* text */
.t-xl { font-size: 50px; /* 30px */ }
.t-lg { font-size: 36px; /* 26px */ }
.t-mll { font-size: 28px; /* 22px */ }
.t-ml { font-size: 22px; /* 22px */ }
.t-md { font-size: 18px; /* 18px */ }
.t-sm { font-size: 16px; /* 16px */ }
.t-xs { font-size: 14px; /* 14px */ }
.t-center { text-align: center; }
.t-left { text-align: left; }
.t-right { text-align: right; }
.t-justify { text-align: justify; }
.bold { font-weight: 700; }
.font-w4 { font-weight: 400; }
.font-w5 { font-weight: 500; }
.lh-13 { line-height: 1.3; }
.lh-15 { line-height: 1.5; }
.lh-20 { line-height: 2; }
.ls-1 { letter-spacing: 1px; }
.show-sm, .show-mid { display: none; }

hr {
	border: 0;
	border-bottom: 1px solid #fff;
}

/* button */
.main-btn {
	color: #fff;
	text-align: center;
	border: 0;
	display: block;
	font-weight: bold;
	font-size: 24px;
	border-radius: 30px;
	width: 240px;
	height: 60px;
	line-height: 60px;
	background: linear-gradient(to bottom, #1D9DD0, #164B98);
}
.main-btn:hover {
	background: linear-gradient(to bottom, #164B98, #0A6BAD);
	transform: scale(0.98);
}
.circle-btn {
	position: relative;
	display: flex;
    align-items: center;
	width: 93px;
	height: 93px;
	border-radius: 50%;
	box-shadow: 0 0 12px rgba(9, 13, 51, 0.2);
	background: linear-gradient(to bottom, #cccccc 0%, #ffffff 25%, #D1D1D1 70%);
	color: #2A659A;
	font-size: 22px;
	letter-spacing: 2px;
	padding: 10px 10px 10px 24px;
	line-height: 1.4;
}
.circle-btn::after {
	content: '';
	display: inline-block;
	position: absolute;
	border: 1px solid #2A659A;
	border-radius: 50%;
	width: 83px;
	height: 83px;
	left: 4px;
	top: 4px;
}
.top-btn {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	border: 1px solid #6DA7AF;
	border-radius: 50%;
}
.top-btn::before {
	content: '';
	display: inline-block;
	width: 18px;
	border-top: 1px solid #6DA7AF;
	margin: 6px auto 8px;
}
.top-btn::after {
	content: '';
	display: inline-block;
	width: 0;
	height: 0;
	border: 6px solid transparent;
	border-color: #6DA7AF transparent transparent #6DA7AF;
	transform: rotate(45deg);

}
/* header */
.header {
	position: relative;
	z-index: 99;
    transition: all 0.2s ease;
    font-size: 22px;
}
.navtop.container {
	padding: 0em 3em 0 2em;
	height: 100%;
}
.navbar {
	padding-top: 20px;
	padding-bottom: 20px;
}
.navbar li {
	display: inline-block;
}
.navbar li + li {
	margin-left: 2.75em;
}
.navbar a {
	padding: 5px 10px;
	transition: color 0.12s ease;
    font-weight: 500;
    position: relative;
    color: #fff;
    text-shadow: 0 0 5px rgba(9, 13, 51, 0.95);
}
.navbar a:hover, .navbar a.active {
}
.navbar a::before {
	content: '';
	display: block;
	position: absolute;
	background: url('../img/light.png') no-repeat;
	width: 204px;
	height: 29px;
	left: -999px;
	top: -999px;
	right: -999px;
	bottom: -999px;
	margin: auto;
	opacity: 0;
	transition: opacity 0.2s ease-in-out;
	z-index: -1;
	pointer-events: none;
}
.navbar a:hover::before, .navbar a.active::before {
	opacity: 1;
}
.header.detachedHide {
	transform: translateY(-100%);
}
.header.detached {
	position: fixed;
	top: 0px;
	left: 0;
	max-height: 78px;
	background-color: #053782dd;
	width: 100%;
	font-size: 18px;
}
.header.detached.show {
	transform: translateY(0);
}

/* navbar toggle */
.hbg-btn {
	border: 1px solid rgba(255, 255, 255, 0.6);
	border: 0;
	height: 50px;
	width: 50px;
	border-radius: 5px;
	vertical-align: top;
	margin-top: 7px;
	display: none;
	transition: margin 0.2s ease;
	margin-right: -15px;
	position: absolute;
	top: 8px;
	right: 25px;
}
header.detached .hbg-btn {
	margin-top: 0;
}
.icon-hbg,
.icon-hbg::before,
.icon-hbg::after {
	content: "";
	display: block;
	margin: 0 auto;
	width: 30px;
	height: 4px;
	background-color: #fff;
	border-radius: 2px;
	position: relative;
	box-shadow: 0 0 3px rgba(9, 13, 51, 0.3);
}
.icon-hbg::before {
	position: absolute;
	top: -10px;
}
.icon-hbg::after {
	position: absolute;
	bottom: -10px;
}

/* main bg */
.main-bg {
	
}
.main-bg picture {
	content: '';
	display: block;
	position: fixed;
	z-index: -3;
	width: 100vw;
	height: 100vh;
	height: calc(var(--vh) * 100);
	pointer-events: none;
	overflow: hidden;
}
.main-bg img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: 50% 15%;
}
.main-bg div:nth-of-type(2) {
	mix-blend-mode: screen;
}
.bg-darken, .bg-lighter {
	position: relative;
}
.bg-darken::before, .bg-lighter::before,
.bg-darken::after, .bg-lighter::after {
	content: '';
	display: block;
	position: absolute;
	width: 100%;
	height: 100%;
	z-index: -2;
	top: 0;
}
.bg-darken {
	color: #fff;
}
.bg-lighter {
	color: #2A659A;
}
.bg-darken::before {
	mix-blend-mode: multiply;
	background-color: #447FAA;
}
.bg-lighter::before {
	mix-blend-mode: hard-light;
	background-color: #DCF5F9;
}
.bg-darken::after {
	background-color: rgba(1, 64, 137, .5);
}
.bg-lighter::after {
	background-color: rgba(173, 231, 245, .4);
}

/* topsec */
.topsec {
	min-height: 100vh;
	min-height: calc(var(--vh) * 100);;
}
.main-title, .sub-title {
	position: relative;
}
.main-title img, .sub-title img {
	position: absolute;
	max-width: 100%;
	max-height: 100%;
}
.main-title img:last-of-type, .sub-title img:last-of-type {
	position: relative;
}

.main-title img:nth-of-type(1), .main-title img:nth-of-type(2) {
	mix-blend-mode: overlay;
}
.main-title img:nth-of-type(4) {
	mix-blend-mode: overlay;
}
.sub-title img:nth-of-type(1) {
	mix-blend-mode: multiply;
}
.sub-title {
	width: 35%;
	max-width: 550px;
	margin: 0.3em auto 2em;
}

/* section */
.sec-title {
	font-family: 'Fredoka One', cursive;;
	color: #fff;
	position: relative;
	text-align: center;
}
.dec-light-2 {
	text-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
}
.dec-light-2::before, .dec-light-2::after {
	content: '';
	position: absolute;
	pointer-events: none;
	width: 548px;
	height: 22px;
	background: url('../img/light-wide.png') no-repeat;
	z-index: -1;
}
.dec-light-2::before { left: -150px; top: 25px; }
.dec-light-2::after { right: -150px; bottom: 0px; }

.dec-light {
	text-shadow: 0 0 6px rgba(14, 81, 104, 0.5);
	margin: 0 auto 0.5em;
}
.dec-light::before {
	content: '';
	position: absolute;
	pointer-events: none;
	width: 100%;
	height: 100%;
	left: 0;
	background: url('../img/light-wide2.png') no-repeat;
	background-position: center;
	z-index: -1;
}
.dec-car {
	text-shadow: 0 0 6px rgba(17, 100, 119, 0.5);
	margin: 1em auto;
}
.dec-car::before {
	content: '';
	position: absolute;
	z-index: -1;
	width: 161px;
	height: 125px;
	background: url('../img/car.png') no-repeat;
	background-size: contain;
	transform: translate(-100px, -50px);
	mix-blend-mode: overlay;
}
/* speaker */
.news-slick , .speaker-slick {
	padding-top: 2em;
	position: relative;

}
.slick-track {
	margin: 0 auto;
}
.slick-dots button[aria-label="1 of 1"] {
	display: none;
}
.speakers-group {
	display: flex;
	justify-content:space-between;
}
.speakers-group .speaker-main img {
	max-width: 180px;
}
.speakers-group .speaker {
	width: 200px;
	margin-bottom: 20px;
}
.speaker-slick .speaker {
	margin: 0 2em;
	width: 18.2%;
}
.slider {
	max-width: 1300px;
	overflow: hidden;
	margin: auto;
}

.speaker {
	display: inline-block;
	position: relative;
	vertical-align: top;
}
.speaker:hover,
.speaker:focus,
.speaker:active {
	outline: none;
}
.speaker-main {
	position: relative;
	text-align: center;
	padding-bottom: 10px;
	max-width: 180px;
	margin: 0 auto;
}
.speaker-main.longname {
	padding-bottom: 50px;
}

.speaker-img {
	width: 100%;
	padding-top: 100%;
	background: #fff;
	margin-bottom: 20px;
	overflow: hidden;
}
.speaker-img.circle-img {
	width: 100%;
    border-radius: 50%;
    overflow: hidden;
    display: inline-block;
    background: #fff;
    position: relative;
    box-shadow: 0 0 12px rgba(9, 13, 51, 0.4);
    box-sizing: content-box;
    margin-top: 1px;
}
.speaker-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	top: 0;
	left: 0;
	position: absolute;
}
.speaker-main h5 {
	white-space: nowrap;
	margin: auto;
	margin-bottom: 12px;
	width: 140%;
    margin-left: -20%;
}
.speaker-main h6 {
	white-space: nowrap;
	margin: auto;
	line-height: 1.3;
	text-align: center;
	width: 160%;
	margin-left: -30%;
}
.speaker-info {
	text-align: justify;
    width: 140%;
    padding: 6px 1px 10px;
    margin-left: -20%;
	margin-top: 0px;
	transition: opacity 0.6s ease-in-out 0s, max-height 1.2s ease-in-out 0s;
	border-top: 1px solid #bbb;
	opacity: 0;
	max-height: 0;
	overflow: hidden;
}
.speaker-info.wide {
	width: 300%;
	margin-left: -100%;
}
.speakers-group .speaker-info {
	width: 110%;
	margin-left: -5%;
}
.speaker.hover .speaker-info {
	opacity: 1;
	max-height: 500px;
}

.slick-arrow {
	position: absolute;
	display: inline-block;
	top: 0;
	bottom: 0;
	margin: auto;
    text-indent: -200px;
    overflow: hidden;
    z-index: 2;
    border: 0;
    background: url('../img/arr_prev.png') no-repeat;
    width: 41px;
    height: 64px;
    transition: all 0.2s ease;
}
.slick-arrow.slick-prev {
	left: -50px;
}
.slick-arrow.slick-next {
	right: -50px;
	background: url('../img/arr_next.png') no-repeat;
}
.slick-arrow.slick-prev:hover {
	transform: translateX(-10px);
}
.slick-arrow.slick-next:hover {
	transform: translateX(10px);
}
.slick-dots {
    position: absolute;
    left: 0;
    right: 0;
    bottom: -50px;
    margin: auto;
    text-align: center;
}

.slick-dots li {
    position: relative;
    display: inline-block;
    width: 20px;
    height: 20px;
    margin: 0 0px;
    padding: 0;
    cursor: pointer;
}
.slick-dots li button {
    font-size: 0;
    line-height: 0;
    display: block;
    width: 20px;
    height: 20px;
    padding: 5px;
    cursor: pointer;
    color: transparent;
    border: 0;
    outline: none;
    background: transparent;
}
.slick-dots li button:before {
    font-family: 'slick';
    font-size: 6px;
    line-height: 20px;
    position: absolute;
    top: 0;
    left: 0;
    width: 10px;
    height: 10px;
    border-radius: 5px;
    content: '';
    text-align: center;
    background-color: #fff;
    opacity: 0.25;
    right: 0;
    margin: auto;
    bottom: 0;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.slick-dots li.slick-active button:before {
    background-color: #fff;
    opacity: 1;
}

/* info */
.time-block {
	margin: 1em auto;
}
.time-row:first-of-type {
	border-top: 1px solid #fff;
}
.time-row {
	border-bottom: 1px solid #fff;
	padding: 0.7em 0 0.4em 0em;
    line-height: 1.4;
	display: flex;
	justify-content: start;
	margin: 0 auto;
}
.time-col {
	display: inline-block;
	width: 136px;
	text-align: center;
	opacity: .6;
}
.time-col p {
	line-height: 1.4;
	font-size: 16px;
}
.time-border {
	display: inline-block;
	font-size: 16px;
	border: 1px solid rgba(85, 132, 174, 0.6);
	padding: 4px 10px 2px;
	letter-spacing: 2px;
	margin-top: 2px;
}
.event-col {
	display: inline-block;
	width: 100%;
	padding-left: 15px;
}
.event-col h6 {
	color: #fffaa9;
}
.event-col h4 + h4 {
	margin-top: 6px;
}
.event-col p {
	color: #6E8294;
}
.theme-row {
	background: linear-gradient(to right, #027AC5, #28BAE5);
	color: #fff;
}
.stop-sec {
	background-color: rgba(0, 0, 0, 0.75);
	display: flex;
	align-items: center;
	justify-content: center;
	position: absolute;
	height: 100%;
	width: 100%;
	z-index: 99;
}

/* form */
.form-item + .form-item > label:first-of-type {
	padding-top: 1.4em;
}
.form-item .d-cell {
	min-width: 125px;
}
.form-item input,
.form-item .select,
.form-item textarea {
	width: 100%;
	padding: 10px 15px 8px;
	border-radius: 5px;
	border: 1px solid #333;
	box-sizing: border-box;
	opacity: 1;
}
.form-item input:focus,
.form-item .select:focus,
.form-item textarea:focus,
.form-item input:hover,
.form-item .select:hover,
.form-item textarea:hover {
	opacity: 1;
}
.form-item .select {
	padding: 0 15px;
	position: relative;
    background: #fff;
}
.select select {
    background: none;
    width: 100%;
    border: none;
    height: 47px;
    cursor: pointer;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    text-indent: 0.01px;
    text-overflow: ”;
    outline: none;
    box-sizing: border-box;
}
.select::after {
	content: "";
	border: 8px solid transparent;
	border-top: 10px solid #666;
	border-bottom: 0;
	position: absolute;
	right: 15px;
	top: 20px;
}

label.required::after {
	content: "*";
	color: #d7261d;
	padding-left: 3px;
}

.form-item input[type=radio],
.form-item input[type=checkbox] {
	display: inline;
	width: auto;
	position: absolute;
    opacity: 0;
}
.form-item .radio-label {
	margin-right: 1.2em;
	padding-top: 0.5em;
}

.radio-label {
	display: inline-block;
}
.radio-label span {
	display: inline-block;
	position: relative;	
	border: 1px solid #AAAAAA;
	border-radius: 100%;
	height: 23px;
	width: 23px;
	transition: border .25s linear;
	-webkit-transition: border .25s linear;
	margin-bottom: -4px;
    margin-right: 7px;
    background: #fff;
}
.radio-label.checkbox span {
	border-radius: 5px;
}

input[type=radio]:hover + .radio-label span,
input[type=checkbox]:hover + .radio-label span {
  border: 1px solid #aaa;
}

.radio-label span::before {
	display: block;
	position: absolute;
	content: '';
	border-radius: 100%;
	height: 15px;
	width: 15px;
	top: 3px;
	left: 3px;
	margin: auto;
	transition: opacity 0.25s linear;
	-webkit-transition: opacity 0.25s linear;
}
.radio-label.checkbox span::before {
	border-radius: 0px;
	border-bottom: 3px solid #666;
	border-left: 3px solid #666;
	width: 10px;
	height: 5px;
	transform: rotate(-45deg);
	top: 5px;
	left: 4px;
	opacity: 0;
}

input[type=radio]:checked + .radio-label span,
input[type=checkbox]:checked + .radio-label span {
  border: 1px solid #666;
}

input[type=radio]:checked + .radio-label span::before,
input[type=checkbox]:checked + .radio-label span::before{
  opacity: 1;
}

.linkafter + .form-item {
	display: none;
}
.linkafter.showafter + .form-item {
	display: table-row;
}
.linkafter + .form-item label:first-of-type {
	padding-top: .4em;
	padding-bottom: .8em;
}
/* list */
.num-list {
	padding-left: 1.15em;
	text-indent: -1.15em;
}
.num-list.tc {
	padding-left: 2em;
	text-indent: -2em;
}
.num-list li + li {
	margin-top: 0.4em;
}
/* news card */
.slick-list {
	margin: 0 auto;
	overflow: hidden;
}
.slider-news {
	position: relative;
}
.news-card {
	width: 368px;
	display: inline-block;
	position: relative;
	margin-left: auto;
	margin-right: auto;
	margin: 0 20px;
	vertical-align: top;
}
.news-img {
	width: 100%;
	position: relative;
	display: inline-block;
	padding-top: 66%;
	overflow: hidden;
}
.news-card img {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	object-fit: cover;
	transition: all 0.5s ease;
}
.news-card p {
	margin: auto;
	line-height: 1.5;
	margin-top: 8px;
	font-size: 16px;
}
.news-img::before {
	content: "";
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background: #000;
	opacity: 0.3;
	z-index: 1;
	transition: opacity 0.6s ease;
}
.news-card:hover .news-img::before {
	opacity: 0;
}
.news-card:hover .news-img img {
	transform: scale(1.1)
}

footer {
	background: linear-gradient(to bottom, #04082E00, #04082Eff);
}

/* right btns */
.hideontop {
	opacity: 0;
	pointer-events: none;
	transition: all 0.6s ease;
}
.hideontop.show {
	opacity: 1;
	pointer-events: auto;
	transform: translateY(50px);
}
.hideontop.show:hover {
	opacity: 1;
}


/* fadein */
.fadein {
	opacity: 0;
	transform: translateY(-6px);
	transition: opacity 1s ease, transform 1s ease;
}
.fadein.show {
	opacity: 1;
	transform: translateY(0);
}
.fadein.nav-scrollspy {
	transition-delay: 0.4s;
}
/* stop sign in */
.stop-signin-block {
	background: rgba(0, 0, 0, 0.75);
	position: absolute;
	top: 0;
	left: 0;
	z-index: 10;
	width: 100%;
	height: 100%;
	display: none;
}
.stop-signin-block.active {
	display: flex;
}
#signup-sec {
	position: relative;
}
.stop-signin-block .card-block {
	border-radius: 5px;
	max-width: 400px;
	background-color: #fff;
}
/* popup */
.popup-container {
	display: flex;
	width: 100%;
	height: 100vh;
	position: fixed;
	top: 0;
	left: 0;
	background-color: rgba(11, 38, 58, 0.75);
	z-index: 999;
	align-items: center;
	justify-content: center;
	opacity: 0;
	transition: opacity 0.3s ease;
	pointer-events: none;
	padding: 30px 0;
	overflow: auto;
}
.popup-block {
	width: 90%;
	max-width: 600px;
	box-shadow: 0 0 3px rgba(0, 0, 0, 0.16);
	position: relative;
	opacity: 0;
	transform: translateY(30px);
	transition: transform 0.5s ease, opacity 0.2s ease;
	transition-delay: 0.3s, 0.3s;
}
.popup-container.active {
	opacity: 1;
	pointer-events: auto;
}
.popup-block.active {
	transform: translateY(0px);
	opacity: 1;
}
.popup-header {
	padding: 10px 10px;
	background-color: #fff;
	border-top-left-radius: 5px;
	border-top-right-radius: 5px;
	line-height: 1.5;
}
.popup-body {
	padding: 20px 60px 30px;
	background-color: #fff;
	border-bottom-left-radius: 5px;
	border-bottom-right-radius: 5px;
	line-height: 1.5;
}
.popup-close {
	width: 40px;
    height: 40px;
    border: 0;
    position: absolute;
    top: 1px;
    right: 3px;
    background-color: transparent;
    color: #808080;
    padding: 4px;
    font-size: 24px;
}
.checkicon {
	width: 97px;
}