html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0;
    border: 0;
    font: inherit;
    font-size: 100%;
    vertical-align: baseline
}

html {
    line-height: 1
}

ol,
ul {
    list-style: none
}

table {
    border-collapse: collapse;
    border-spacing: 0
}

caption,
th,
td {
    text-align: left;
    font-weight: normal;
    vertical-align: middle
}

q,
blockquote {
    quotes: none
}

q:before,
q:after,
blockquote:before,
blockquote:after {
    content: "";
    content: none
}

a img {
    border: none
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
    display: block
}

@keyframes spin {
    0% {
        -moz-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
        opacity: 0.4
    }
    50% {
        -moz-transform: rotate(180deg);
        -ms-transform: rotate(180deg);
        -webkit-transform: rotate(180deg);
        transform: rotate(180deg);
        opacity: 1
    }
    100% {
        -moz-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
        opacity: 0.4
    }
}

@keyframes rotate-one {
    0% {
        -moz-transform: rotateX(35deg) rotateY(-45deg) rotateZ(0deg);
        -ms-transform: rotateX(35deg) rotateY(-45deg) rotateZ(0deg);
        -webkit-transform: rotateX(35deg) rotateY(-45deg) rotateZ(0deg);
        transform: rotateX(35deg) rotateY(-45deg) rotateZ(0deg)
    }
    100% {
        -moz-transform: rotateX(35deg) rotateY(-45deg) rotateZ(360deg);
        -ms-transform: rotateX(35deg) rotateY(-45deg) rotateZ(360deg);
        -webkit-transform: rotateX(35deg) rotateY(-45deg) rotateZ(360deg);
        transform: rotateX(35deg) rotateY(-45deg) rotateZ(360deg)
    }
}

@keyframes rotate-two {
    0% {
        -moz-transform: rotateX(50deg) rotateY(10deg) rotateZ(0deg);
        -ms-transform: rotateX(50deg) rotateY(10deg) rotateZ(0deg);
        -webkit-transform: rotateX(50deg) rotateY(10deg) rotateZ(0deg);
        transform: rotateX(50deg) rotateY(10deg) rotateZ(0deg)
    }
    100% {
        -moz-transform: rotateX(50deg) rotateY(10deg) rotateZ(360deg);
        -ms-transform: rotateX(50deg) rotateY(10deg) rotateZ(360deg);
        -webkit-transform: rotateX(50deg) rotateY(10deg) rotateZ(360deg);
        transform: rotateX(50deg) rotateY(10deg) rotateZ(360deg)
    }
}

@keyframes rotate-three {
    0% {
        -moz-transform: rotateX(35deg) rotateY(55deg) rotateZ(0deg);
        -ms-transform: rotateX(35deg) rotateY(55deg) rotateZ(0deg);
        -webkit-transform: rotateX(35deg) rotateY(55deg) rotateZ(0deg);
        transform: rotateX(35deg) rotateY(55deg) rotateZ(0deg)
    }
    100% {
        -moz-transform: rotateX(35deg) rotateY(55deg) rotateZ(360deg);
        -ms-transform: rotateX(35deg) rotateY(55deg) rotateZ(360deg);
        -webkit-transform: rotateX(35deg) rotateY(55deg) rotateZ(360deg);
        transform: rotateX(35deg) rotateY(55deg) rotateZ(360deg)
    }
}

@keyframes bounce {
    0% {
        -moz-transform: translateY(0px);
        -ms-transform: translateY(0px);
        -webkit-transform: translateY(0px);
        transform: translateY(0px)
    }
    100% {
        -moz-transform: translateY(-20px);
        -ms-transform: translateY(-20px);
        -webkit-transform: translateY(-20px);
        transform: translateY(-20px)
    }
}

@keyframes blink {
    0% {
        background-color: #F0F0F0;
        color: #555555
    }
    50% {
        background-color: #D3332E;
        color: #ffffff
    }
    100% {
        background-color: #F0F0F0;
        color: #555555
    }
}

.animated {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both
}

.animated.infinite {
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite
}

.animated.hinge {
    -webkit-animation-duration: 2s;
    animation-duration: 2s
}

.animated.bounceIn,
.animated.bounceOut {
    -webkit-animation-duration: .75s;
    animation-duration: .75s
}

.animated.flipOutX,
.animated.flipOutY {
    -webkit-animation-duration: .75s;
    animation-duration: .75s
}

@-webkit-keyframes shake {
    from,
    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }
    10%,
    30%,
    50%,
    70%,
    90% {
        -webkit-transform: translate3d(-10px, 0, 0);
        transform: translate3d(-10px, 0, 0)
    }
    20%,
    40%,
    60%,
    80% {
        -webkit-transform: translate3d(10px, 0, 0);
        transform: translate3d(10px, 0, 0)
    }
}

@keyframes shake {
    from,
    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }
    10%,
    30%,
    50%,
    70%,
    90% {
        -webkit-transform: translate3d(-10px, 0, 0);
        transform: translate3d(-10px, 0, 0)
    }
    20%,
    40%,
    60%,
    80% {
        -webkit-transform: translate3d(10px, 0, 0);
        transform: translate3d(10px, 0, 0)
    }
}

.shake {
    -webkit-animation-name: shake;
    animation-name: shake
}

@-webkit-keyframes fadeInDown {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0)
    }
    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0)
    }
    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none
    }
}

.fadeInDown {
    -webkit-animation-name: fadeInDown;
    animation-name: fadeInDown
}

@-webkit-keyframes fadeOut {
    from {
        opacity: 1
    }
    to {
        opacity: 0
    }
}

@keyframes fadeOut {
    from {
        opacity: 1
    }
    to {
        opacity: 0
    }
}

.fadeOut {
    -webkit-animation-name: fadeOut;
    animation-name: fadeOut
}

@-webkit-keyframes fadeOutDown {
    from {
        opacity: 1
    }
    to {
        opacity: 0;
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0)
    }
}

@keyframes fadeOutDown {
    from {
        opacity: 1
    }
    to {
        opacity: 0;
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0)
    }
}

.fadeOutDown {
    -webkit-animation-name: fadeOutDown;
    animation-name: fadeOutDown
}

@-webkit-keyframes fadeOutUp {
    from {
        opacity: 1
    }
    to {
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0)
    }
}

@keyframes fadeOutUp {
    from {
        opacity: 1
    }
    to {
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0)
    }
}

.fadeOutUp {
    -webkit-animation-name: fadeOutUp;
    animation-name: fadeOutUp
}

@-webkit-keyframes hinge {
    0% {
        -webkit-transform-origin: top left;
        transform-origin: top left;
        -webkit-animation-timing-function: ease-in-out;
        animation-timing-function: ease-in-out
    }
    20%,
    60% {
        -webkit-transform: rotate3d(0, 0, 1, 80deg);
        transform: rotate3d(0, 0, 1, 80deg);
        -webkit-transform-origin: top left;
        transform-origin: top left;
        -webkit-animation-timing-function: ease-in-out;
        animation-timing-function: ease-in-out
    }
    40%,
    80% {
        -webkit-transform: rotate3d(0, 0, 1, 60deg);
        transform: rotate3d(0, 0, 1, 60deg);
        -webkit-transform-origin: top left;
        transform-origin: top left;
        -webkit-animation-timing-function: ease-in-out;
        animation-timing-function: ease-in-out;
        opacity: 1
    }
    to {
        -webkit-transform: translate3d(0, 700px, 0);
        transform: translate3d(0, 700px, 0);
        opacity: 0
    }
}

@keyframes hinge {
    0% {
        -webkit-transform-origin: top left;
        transform-origin: top left;
        -webkit-animation-timing-function: ease-in-out;
        animation-timing-function: ease-in-out
    }
    20%,
    60% {
        -webkit-transform: rotate3d(0, 0, 1, 80deg);
        transform: rotate3d(0, 0, 1, 80deg);
        -webkit-transform-origin: top left;
        transform-origin: top left;
        -webkit-animation-timing-function: ease-in-out;
        animation-timing-function: ease-in-out
    }
    40%,
    80% {
        -webkit-transform: rotate3d(0, 0, 1, 60deg);
        transform: rotate3d(0, 0, 1, 60deg);
        -webkit-transform-origin: top left;
        transform-origin: top left;
        -webkit-animation-timing-function: ease-in-out;
        animation-timing-function: ease-in-out;
        opacity: 1
    }
    to {
        -webkit-transform: translate3d(0, 700px, 0);
        transform: translate3d(0, 700px, 0);
        opacity: 0
    }
}

.hinge {
    -webkit-animation-name: hinge;
    animation-name: hinge
}

.animated.hinge {
    -webkit-animation-duration: 2s;
    animation-duration: 2s
}

.animated {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both
}

[role="button"],
input[type="submit"],
input[type="reset"],
input[type="button"],
button {
    -webkit-box-sizing: content-box;
    -moz-box-sizing: content-box;
    box-sizing: content-box;
    cursor: pointer
}

input[type="submit"],
input[type="reset"],
input[type="button"],
button {
    background: none;
    border: 0;
    color: inherit;
    font: inherit;
    line-height: normal;
    overflow: visible;
    padding: 0;
    -webkit-appearance: button;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none
}

input::-moz-focus-inner,
button::-moz-focus-inner {
    border: 0;
    padding: 0
}

[role="button"] {
    color: inherit;
    display: inline-block;
    text-align: center;
    text-decoration: none;
    white-space: pre;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none
}

b,
strong {
    font-weight: bolder
}

i,
cite,
em,
var,
address {
    font-style: italic
}

pre,
tt,
code,
kbd,
samp {
    font-family: monospace
}

pre {
    white-space: pre
}

big {
    font-size: 1.17em
}

small,
sub,
sup {
    font-size: 0.83em
}

sub {
    vertical-align: sub
}

sup {
    vertical-align: super
}

s,
strike,
del {
    text-decoration: line-through
}

hr {
    border: 1px inset
}

u,
ins {
    text-decoration: underline
}

center {
    text-align: center
}

table {
    max-width: 100%;
    width: 100%
}

table th,
table td {
    line-height: 1.42857;
    padding: 8px
}

a {
    outline: 0
}

img {
    max-width: 100%
}

:focus {
    outline: thin dotted invert
}

.pull-left {
    float: left
}

.pull-right {
    float: right
}

.no-margin {
    margin: 0
}

.text-left {
    text-align: left
}

.text-right {
    text-align: right
}

.text-center {
    text-align: center
}

ul.has-bullet {
    margin-left: 20px;
    list-style: disc
}

ul.has-bullet li {
    list-style: disc
}

.ajax_loader {
    background: rgba(0, 0, 0, 0.5);
    z-index: 100;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%
}

.ajax_loader:after {
    content: '';
    width: 30px;
    height: 30px;
    position: absolute;
    left: calc(50% - (30px / 2));
    top: calc(50% - (30px / 2));
    border: 8px solid #fff;
    border-right-color: transparent;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    -moz-box-shadow: 0 0 25px 2px #eee;
    -webkit-box-shadow: 0 0 25px 2px #eee;
    box-shadow: 0 0 25px 2px #eee;
    -moz-animation: spin 1s linear infinite;
    -webkit-animation: spin 1s linear infinite;
    animation: spin 1s linear infinite
}

.truncate {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis
}

select:-moz-focusring {
    color: transparent;
    text-shadow: 0 0 0 #000
}

input::-moz-focus-inner {
    border: 0
}

.video-wrapper {
    position: relative;
    padding-bottom: 52.25%;
    padding-top: 25px;
    height: 0
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%
}

.clearfix:after {
    content: "";
    clear: both;
    display: block
}

@font-face {
    font-family: 'Kittithada';
    src: url("../fonts/kittithada/KittithadaMedium65RdPro.eot");
    src: url("../fonts/kittithada/KittithadaMedium65RdPro.eot?#iefix") format("embedded-opentype"), url("../fonts/kittithada/KittithadaMedium65RdPro.woff2") format("woff2"), url("../fonts/kittithada/KittithadaMedium65RdPro.woff") format("woff"), url("../fonts/kittithada/KittithadaMedium65RdPro.ttf") format("truetype"), url("../fonts/kittithada/KittithadaMedium65RdPro.svg#KittithadaMedium65RdPro") format("svg");
    font-weight: normal;
    font-style: normal
}

@font-face {
    font-family: 'Kittithada';
    src: url("../fonts/kittithada/KittithadaMedium65RdProItalic.eot");
    src: url("../fonts/kittithada/KittithadaMedium65RdProItalic.eot?#iefix") format("embedded-opentype"), url("../fonts/kittithada/KittithadaMedium65RdProItalic.woff2") format("woff2"), url("../fonts/kittithada/KittithadaMedium65RdProItalic.woff") format("woff"), url("../fonts/kittithada/KittithadaMedium65RdProItalic.ttf") format("truetype"), url("../fonts/kittithada/KittithadaMedium65RdProItalic.svg#KittithadaMedium65RdProItalic") format("svg");
    font-weight: normal;
    font-style: italic
}

@font-face {
    font-family: 'Kittithada';
    src: url("../fonts/kittithada/KittithadaBold75RdPro.eot");
    src: url("../fonts/kittithada/KittithadaBold75RdPro.eot?#iefix") format("embedded-opentype"), url("../fonts/kittithada/KittithadaBold75RdPro.woff2") format("woff2"), url("../fonts/kittithada/KittithadaBold75RdPro.woff") format("woff"), url("../fonts/kittithada/KittithadaBold75RdPro.ttf") format("truetype"), url("../fonts/kittithada/KittithadaBold75RdPro.svg#KittithadaBold75RdPro") format("svg");
    font-weight: bold;
    font-style: normal
}

@font-face {
    font-family: 'Kittithada';
    src: url("../fonts/kittithada/KittithadaBold75RdProItalic.eot");
    src: url("../fonts/kittithada/KittithadaBold75RdProItalic.eot?#iefix") format("embedded-opentype"), url("../fonts/kittithada/KittithadaBold75RdProItalic.woff2") format("woff2"), url("../fonts/kittithada/KittithadaBold75RdProItalic.woff") format("woff"), url("../fonts/kittithada/KittithadaBold75RdProItalic.ttf") format("truetype"), url("../fonts/kittithada/KittithadaBold75RdProItalic.svg#KittithadaBold75RdProItalic") format("svg");
    font-weight: bold;
    font-style: italic
}

* {
    box-sizing: border-box
}

body {
    font: 1.35em/1.1 Kittithada, Arial, Helvetica, sans-serif;
    color: #000000;
    font-size: calc(18px + 6 * ((100vw - 320px) / 680))
}

@media screen and (min-width: 1000px) {
    body {
        font-size: 24px
    }
}

a {
    text-decoration: none;
    color: #000000
}

a:hover {
    text-decoration: underline
}

img {
    max-width: 100%;
    max-height: 100%
}

strong,
h1,
h2,
h3 {
    font-weight: bold
}

h1 {
    font-size: 2em;
    text-align: center
}

h2 {
    font-size: 1.1em;
}

main,
.wrapper {
    max-width: 600px;
    margin: 0 auto
}

@media only screen and (max-width: 600px) {
    main,
    .wrapper {
        padding: 0 20px
    }
}

header {
    background: #000;
    height: 40px;
    padding: 10px
}

@media only screen and (min-width: 600px) {
    header {
        height: 60px
    }
}

footer {
    text-align: center;
    padding-top: 50px
}

footer span {
    white-space: nowrap;
    display: inline-block
}

input:not([type=checkbox]):not([type=radio]),
select,
textarea {
    padding: 5px 20px;
    font-family: Kittithada;
    font-size: 1em;
    width: 100%;
    background: #f0f0f0;
    border: 1px solid #f0f0f0
}

input[type="radio"],
input[type="checkbox"] {
    display: none
}

input[type="radio"]+label,
input[type="checkbox"]+label {
    position: relative;
    display: inline-block;
    margin: 10px;
    cursor: pointer;
    padding-left: 35px
}

input[type="radio"]+label:after,
input[type="radio"]+label:before,
input[type="checkbox"]+label:after,
input[type="checkbox"]+label:before {
    content: '';
    display: block;
    position: absolute;
    background: #fff;
    -moz-transition: all 300ms ease-in-out;
    -o-transition: all 300ms ease-in-out;
    -webkit-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out
}

input[type="radio"]+label:before,
input[type="checkbox"]+label:before {
    display: block;
    width: 20px;
    height: 20px;
    border: 1px solid rgba(0, 0, 0, 0.54);
    overflow: hidden;
    left: 0;
    top: 0;
    background: #f0f0f0
}

input[type="radio"]+label:after {
    display: block;
    width: 0;
    height: 0;
    left: 9px;
    top: 9px;
    border-radius: 100%
}

input[type="radio"]+label:before {
    border-radius: 100%
}

input[type="radio"]:checked+label:after {
    width: 14px;
    height: 14px;
    left: 3px;
    top: 3px;
    animation: rippleOff .5s
}

input[type="checkbox"]+label:after {
    font-family: 'Font Awesome 5 Free';
    content: '\f00c';
    top: -10px;
    left: -3px;
    background: none;
    font-size: 36px;
    line-height: 36px;
    width: 0;
    height: 36px;
    overflow: hidden;
    white-space: nowrap;
    font-weight: 900
}

input[type="checkbox"]+label:before {
    border-radius: 3px
}

input[type="checkbox"]:checked+label:after {
    width: 36px
}

form .form-group {
    margin: 8px 0
}

form .checkbox-group {
    display: flex;
    flex-wrap: wrap
}

form .checkbox-group li {
    flex-basis: 50%;
    position: relative
}

@media only screen and (min-width: 600px) {
    form .checkbox-group li {
        flex-basis: 33%
    }
}

.btn {
    background: #000;
    color: #ffffff;
    padding: 5px 30px;
    height: 39px;
    box-sizing: border-box
}

.breadcrumb {
    display: flex;
    font-size: .9em;
    max-width: 1000px;
    margin: 0 auto 20px auto
}

.breadcrumb li:after {
    content: '>'
}

.breadcrumb li:last-child:after {
    content: ''
}

.breadcrumb li a {
    display: inline-block;
    margin: 0 10px;
    color: #000000
}

#index {
    background: url("../images/bg.jpg") no-repeat center center;
    background-size: cover;
    height: 100vh
}

#index .center-page form {
    padding-top: 25vh;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center
}

#index select {
    height: 39px;
    padding-left: 20px;
    width: 200px
}

@media only screen and (min-width: 600px) {
    #index select {
        width: 300px
    }
}

.panel {
    position: relative
}

.panel .panel-footer {
    text-align: center
}

.file_upload {
    height: 300px;
    background: #fff url("../images/upload.png") no-repeat center;
    background-size: 200px 200px;
    margin: 0 auto;
    border: 3px dashed #f0f0f0;
    position: relative
}

@media only screen and (max-width: 600px) {
    .file_upload {
        background-size: 100% auto
    }
}

.file_upload .dz-remove {
    font-family: "Font Awesome 5 Free";
    position: absolute;
    top: 0;
    right: 0;
    font-weight: 900;
    color: #000000;
    width: 50px;
    height: 50px;
    background: #f0f0f0;
    line-height: 50px;
    text-align: center;
    font-size: 38px
}

.file_upload .dz-remove:before {
    content: "\f00d"
}

.file_upload .dz-image-preview {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: #FFFFFF;
    text-align: center
}

.file_upload .dz-image-preview span {
    width: 100%;
    height: 100%;
    display: block;
    background-repeat: no-repeat
}

.parsley-errors-list {
    background: red;
    color: #FFFFFF;
    padding: 0 20px;
    line-height: 1.3em
}

.birth_date {
    display: flex;
    justify-content: space-between
}

.birth_date div {
    flex-basis: 30%
}

.fb {
    display: inline-block;
    width: 100px
}

table tr {
    border-bottom: 1px solid #000000
}

table tr th {
    text-align: right;
    width: 30%;
    font-weight: bold
}

table tr th:after {
    content: ' : '
}

#lightcase-case {
    font-family: Kittithada;
    font-size: 1em
}

#lightcase-case h3 {
    font-size: 1.5em;
    margin: 20px 0
}

#lightcase-case ol {
    list-style: decimal;
    padding-left: 20px
}

#lightcase-case p {
    margin: 10px 0
}

@media screen and (max-width: 640px) {
    #lightcase-content h1,
    #lightcase-content h2,
    #lightcase-content h3,
    #lightcase-content h4,
    #lightcase-content h5,
    #lightcase-content h6,
    #lightcase-content p,
    #lightcase-content ol {
        color: #ffffff;
        text-shadow: none
    }
}