﻿
body {
    font-family: 'Sarabun'
}

.full-width {
    width: 100%;
}

.vertical-top {
    vertical-align: top;
}

.vertical-middle {
    vertical-align: middle !important;
}


.upload-file {
    background: #ffffff;
    height: 45px;
    padding: 5px;
    width: 100%;
    border: 1px solid #ccc;
}

.btn-upload-file {
    margin-top: 0px;
}

.upload-file-content {
    margin-top: 10px;
}


.mt-10 {
    margin-top: 10px;
}

.mt-20 {
    margin-top: 20px;
}


.iti {
    width: 100%;
}

.tab-form {
    display: none;
}

    .tab-form.show-form {
        display: block;
    }

.timepicker {
    display: flex;
    justify-content: space-between;
}

    .timepicker .hours {
        width: 50%;
    }

    .timepicker .minute {
        width: 50%;
    }


label {
    font-size: 0.8rem;
    font-family: 'Sarabun';
    margin-bottom: 0rem;
    font-weight: bold;
    color: #091836;
}

.dropdown-menu {
    padding: 10px 20px !important;
}


.cookie {
    position: fixed;
    padding: 20px 0;
    z-index: 100;
    left: 0;
    right: 0;
    bottom: 0;
    background: #303840;
    font-family: 'Sarabun';
    color: #ffffff;
}

    .cookie a {
        color: #3d1049 !important;
        text-decoration: underline;
        cursor: pointer;
    }

        .cookie a:hover {
            color: #3d1049 !important;
        }

    .cookie .btn-accept, .cookie .btn-accept:hover {
        font-weight: bold;
        text-transform: uppercase;
        color: #3d1049;
        background: #ebcd15;
        font-size: 0.8rem;
    }

.btn-accept {
    position: absolute;
    padding: 6px 25px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #303841;
    background-color: #ebcd15;
    border-radius: 0px;
}

@media (min-width: 1300px) {
    .container {
        width: 1270px;
    }
}

@media (max-width: 460px) {
    .container {
        padding-right: 20px;
        padding-left: 20px;
    }
}


#main-content {
    margin-top: 120px;
    min-height: 50vh;
}



@media(max-width: 830px) {
    #main-content {
        margin-top: 80px
    }
}

@media(max-width: 460px) {
    #main-content {
        margin-top: 80px
    }
}


#menuModal {
    background: #ffffff;
}

    #menuModal .modal-dialog {
        margin: 3rem 1.5rem 3rem 1.5rem;
    }

        #menuModal .modal-dialog .modal-content {
            border: none;
            border-radius: 0rem;
            background: #ffffff;
        }

            #menuModal .modal-dialog .modal-content .close {
                position: absolute;
                top: -20px;
                right: 0px;
                opacity: 1;
            }

            #menuModal .modal-dialog .modal-content .menu-brand {
                text-align: center;
                margin-bottom: 30px;
            }

                #menuModal .modal-dialog .modal-content .menu-brand img {
                    width: 50%;
                }

            #menuModal .modal-dialog .modal-content #mobile-menu {
                list-style: none;
                padding-left: 0px;
            }

                #menuModal .modal-dialog .modal-content #mobile-menu li a {
                    color: #000000;
                    font-size: 1.5rem;
                    font-family: 'Sarabun';
                    letter-spacing: 0px;
                    text-align: center;
                    padding: 2px 0px;
                    text-transform: unset;
                }




/*****************************************
* Loader
*****************************************/
.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #262451;
    background-image: linear-gradient(to top, rgba(0, 0, 0, 1), rgba(38, 36, 81, 1));
    transition: opacity 0.75s, visibility 0.75s;
    z-index: 999;
}


.loader--hidden {
    opacity: 0;
    visibility: hidden;
}

@-moz-keyframes blink {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@-webkit-keyframes blink {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}
/* IE */
@-ms-keyframes blink {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}
/* Opera and prob css3 final iteration */
@keyframes blink {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.blink-image {
    width: 360px;
    -moz-animation: blink normal 2s infinite ease-in-out; /* Firefox */
    -webkit-animation: blink normal 2s infinite ease-in-out; /* Webkit */
    -ms-animation: blink normal 2s infinite ease-in-out; /* IE */
    animation: blink normal 2s infinite ease-in-out; /* Opera and prob css3 final iteration */
}

/*****************************************
* Topbar 
*****************************************/
#topbar {
    z-index: 10;
    position: fixed;
    top: 0px;
    width: 100%;
    height: 50px;
    background: #efefef;
    transition: 0.5s ease all;
    box-shadow: 0px 4px 12px #e8e8e8;
}

.topbar-menu {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    height: 50px;
}

    .topbar-menu .button-action, .topbar-menu .button-action:hover {
        background-color: #44331b !important;
        border-color: #44331b !important;
        border-radius: 10px;
        outline: 0;
        position: relative;
        color: #ffffff;
        padding: 4px 10px;
        font-size: 16px;
        font-weight: bold;
        margin: 0px 10px;
        text-decoration: none;
    }


@media (max-width: 460px) {
    #topbar {
        height: 40px;
    }

    .topbar-menu {
        height: 40px;
    }

        .topbar-menu .button-action {
            font-size: 14px;
            margin: 0px 4px;
        }
}



/*****************************************
* Navbar 
*****************************************/
.navbar {
    z-index: 10;
    position: fixed;
    top: 50px;
    width: 100%;
    background: #ffffff;
    transition: 0.5s ease all;
    height: 70px;
    box-shadow: 0px 4px 12px #e8e8e8;
}

    .navbar .navbar-share {
        position: absolute;
        top: 24px;
        right: 46px;
    }

        .navbar .navbar-share img {
            width: 34px;
        }


    .navbar .navbar-top {
        position: absolute;
        top: 20px;
        right: 24px;
    }

        .navbar .navbar-top .external-link, .navbar .navbar-top .external-link:hover {
            border: 1px solid #45CBCA;
            padding: 5px 13px 4px 13px;
            color: #000000;
            border-radius: 7px;
            font-size: 0.9rem;
            font-family: 'Sarabun';
            margin: 0px 5px;
            text-decoration: none;
            background: #45CBCA;
            text-transform: uppercase;
        }



    .navbar.bg-transparent {
        /*background-image: linear-gradient(to top, rgba(0,0,0,0), rgba(0,0,0,0.3));*/
        background-color: rgba(0, 0, 0, 0);
    }


    .navbar .navbar-brand .navbar-logo {
        height: 60px;
        transition: 0.5s ease all;
    }


/*   .navbar.navbar-scroll {
        padding: 0.5rem 1rem 0.5rem 1rem;
        transition: 0.5s ease all;
    }

        .navbar.navbar-scroll.bg-transparent {
            background-color: rgba(0, 0, 0, 0.95);
        }

        .navbar.navbar-scroll .navbar-brand {
            transition: 0.5s ease all;
        }

            .navbar.navbar-scroll .navbar-brand .navbar-logo {
                height: 70px;
                transition: 0.5s ease all;
            }*/


.navbar-light .navbar-nav .nav-link,
.navbar-light .navbar-nav .nav-link:visited {
    color: #000000;
    font-size: 18px;
    font-family: 'Sarabun';
    padding: 0.25rem 1rem;
    letter-spacing: 0px;
    cursor: pointer;
    font-weight: bold;
}


    .navbar-light .navbar-nav .nav-link:hover {
        color: #000000;
    }



    .navbar-light .navbar-nav .nav-link.register {
        background-color: #e03126 !important;
        border-color: #e03126 !important;
        border-radius: 10px;
        outline: 0;
        position: relative;
        color: #ffffff;
        font-weight: normal;
    }

    .navbar-light .navbar-nav .nav-link.active {
        background-color: #44331b !important;
        border-color: #44331b !important;
        border-radius: 10px;
        outline: 0;
        position: relative;
        color: #ffffff;
        font-weight: normal;
    }


@media (max-width: 460px) {

    .navbar {
        padding: 0rem 1rem;
        height: 60px;
        top: 40px;
    }

    .navbar-light .navbar-toggler {
        border: none;
        outline: none;
    }

    .navbar .navbar-share {
        top: 26px;
        right: 60px;
    }

        .navbar .navbar-share img {
            width: 20px;
        }

    /*.navbar.bg-transparent {
            background: #000000 !important;
        }*/

    .navbar .navbar-top {
        top: 7px;
        right: 50px;
    }

    .navbar .navbar-brand {
        top: 8px;
    }


        .navbar .navbar-brand .navbar-logo {
            height: 45px;
        }

    .navbar-nav {
        margin: 10px auto 0px auto;
    }

    .navbar-light .navbar-nav .nav-link,
    .navbar-light .navbar-nav .nav-link:hover,
    .navbar-light .navbar-nav .nav-link:visited {
        color: #ffffff;
        font-size: 1.5rem;
        font-family: 'Sarabun';
        letter-spacing: 3px;
    }


    .navbar-collapse {
        display: none;
    }

    .navbar-light .navbar-nav .nav-link, .navbar-light .navbar-nav .nav-link:hover, .navbar-light .navbar-nav .nav-link:visited {
        color: #000000;
    }

    .nav-toolbar {
        display: none;
    }

    .nav-rightmenu {
        display: none;
    }
}

.toolbar-icon {
    text-align: right;
    cursor: pointer;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    border-left: 1px solid #000000;
    margin-left: 20px;
    padding-left: 20px;
}

    .toolbar-icon .nav-toolbar-icon {
        position: relative;
    }

        .toolbar-icon .nav-toolbar-icon a {
            display: block;
            cursor: pointer;
            margin: 0.5rem;
        }

            .toolbar-icon .nav-toolbar-icon a img {
                width: 26px;
                transition: 0.2s ease all;
            }


        .toolbar-icon .nav-toolbar-icon .nav-badge {
            color: #ffffff;
            background: #e62b2b;
            width: 18px;
            position: absolute;
            top: -3px;
            right: 0px;
            text-align: center;
            font-size: 0.6rem;
            border-radius: 50%;
            padding: 3px 2px 1px 2px;
        }


@media (max-width: 767px) {

    .toolbar-icon {
        position: fixed;
        top: 17px;
        right: 15px;
    }
}



.navbar-light .navbar-toggler {
    color: rgba(0,0,0,.5);
    border: none;
    outline: none;
    position: absolute;
    right: 10px;
    top: 13px;
}

@media (max-width: 460px) {
    .toolbar-icon {
        position: fixed;
        top: 15px;
        right: 70px;
        border-left: none;
        margin-left: 0px;
        padding-left: 0px;
    }
}


/*****************************************
* Swiper
*****************************************/
.swiper-button-prev, .swiper-button-next {
    color: #466fe4;
}

@media (max-width: 1240px) {
    .banner-slide {
        height: auto;
    }

    .swiper-wrapper {
        height: auto;
    }

    .banner-slide img {
        width: 100%;
        height: auto;
    }
}



@media (max-width: 460px) {
    .banner-slide {
        margin-top: 0px;
        height: auto;
    }

    .swiper-button-prev {
        left: 20px;
        width: 24px;
        height: 24px;
    }


    .swiper-button-next {
        right: 20px;
        width: 24px;
        height: 24px;
    }

    .swiper-pagination {
        bottom: 30px !important;
    }

    .swiper-pagination-bullet {
        width: 5px;
        height: 5px;
        margin: 0px 7px !important;
    }

    .swiper-pagination-bullet-active {
        background: transparent;
        border: 1px solid #000000;
        width: 10px;
        height: 10px;
    }

    .swiper-slide .swiper-text {
        top: 15%;
    }


        .swiper-slide .swiper-text .headline {
            color: #000000;
            font-size: 2rem;
            line-height: 2.3rem;
            width: 70%;
            margin-bottom: 20px;
        }

        .swiper-slide .swiper-text .title {
            font-size: 1.3rem;
            margin-bottom: 5px;
            line-height: 1.8rem;
            width: 70%;
            margin-bottom: 20px;
        }

        .swiper-slide .swiper-text .footer-text {
            color: #000000;
            font-size: 1.5rem;
            margin-bottom: 5px;
            line-height: 2rem;
            width: 70%;
            margin-bottom: 40px;
        }



        .swiper-slide .swiper-text .btn-seemore-outline {
            padding: 4px 20px 3px 20px;
            border: 1px solid #ffffff;
            font-size: 1rem;
        }
}




/*****************************************
* Home Carousel
*****************************************/
#home-carousel {
    overflow: hidden;
}

/*****************************************
* Home Video
*****************************************/
#home-video {
    background-color: #000;
    color: #fff;
}

.home-video-wrapper {
    position: relative;
}

    .home-video-wrapper .home-video-logo {
        position: absolute;
        left: 5%;
        top: 10%;
        z-index: 2;
        width: 10%;
    }

    .home-video-wrapper .home-video-info {
        position: absolute;
        right: 10%;
        bottom: 15%;
        z-index: 2;
    }

        .home-video-wrapper .home-video-info .title {
            color: #000000;
            font-size: 4rem;
            line-height: 4.5rem;
            font-family: 'Sarabun';
            text-transform: uppercase;
        }

        .home-video-wrapper .home-video-info .subtitle {
            color: #000000;
            font-size: 2.5rem;
            line-height: 3rem;
            font-family: 'Sarabun';
            margin-bottom: 20px;
            text-transform: uppercase;
        }


        .home-video-wrapper .home-video-info .btn-seemore {
            font-family: 'Sarabun';
            padding: 15px 0px 10px 0px;
            color: #ffffff;
            font-size: 1.3rem;
            font-weight: normal;
            line-height: 24px;
            background-color: #000000;
            border: 1px solid #000000;
            border-radius: 0;
            transition: all 0.2s ease-in-out;
            display: inline-block;
            width: 260px;
            text-align: center;
            margin-right: 5px;
            text-decoration: none;
            text-transform: uppercase;
        }


        .home-video-wrapper .home-video-info .btn-seemore-oitline {
            font-family: 'Sarabun';
            letter-spacing: 2px;
            padding: 10px 0px 7px 0px;
            color: #ffffff;
            font-size: 0.6rem;
            font-weight: normal;
            line-height: 24px;
            background-color: transparent;
            border: 1px solid #ffffff;
            border-radius: 0;
            transition: all 0.2s ease-in-out;
            display: inline-block;
            width: 260px;
            text-align: center;
            margin-right: 5px;
        }


.sliding-hero__item {
    height: 681px;
    overflow: hidden;
    position: relative;
    opacity: 1;
    transition: opacity .5s ease;
    z-index: 1;
}

    .sliding-hero__item video {
        position: absolute;
        object-fit: cover;
        width: 100%;
    }


.sliding-hero__picture {
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    will-change: transform,opacity;
}


@media (max-width: 460px) {
    .sliding-hero__item {
        height: 500px;
    }

    .home-video-wrapper .home-video-logo {
        left: 5%;
        top: 10%;
        width: 30%;
    }

    .home-video-wrapper .home-video-info {
        right: 5%;
        bottom: 10%;
        left: 5%;
    }

        .home-video-wrapper .home-video-info .title {
            font-size: 2.5rem;
            line-height: 3rem;
        }

        .home-video-wrapper .home-video-info .subtitle {
            font-size: 2rem;
            line-height: 2.5rem;
            margin-bottom: 10px;
        }

        .home-video-wrapper .home-video-info .btn-seemore {
            padding: 10px 0px 5px 0px;
            width: 160px;
            font-size: 1rem;
        }
}

/*****************************************
* Board
*****************************************/
#board {
    padding: 100px 0px 0px 0px;
}

    #board .title {
        color: #44331b;
        font-family: 'Sarabun';
        font-size: 60px;
        line-height: 60px;
        font-weight: bold;
        text-align: center;
        margin-bottom: 40px;
    }

@media(max-width: 460px) {

    #board {
        padding: 50px 0px 0px 0px;
    }

        #board .title {
            font-size: 50px;
            line-height: 50px;
            margin-bottom: 20px;
        }
}


#board-tabs {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
}

    #board-tabs .board-nav-item {
        height: 80px;
        width: calc(100% / 6);
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: 16px;
        line-height: 20px;
        font-weight: bold;
        padding: 20px 10px;
        text-align: center;
        transition: 0.5s ease all;
        border: 1px solid white;
        cursor: pointer;
    }

        #board-tabs .board-nav-item.active {
            color: #ffffff;
            background: #44331b;
        }

.board-content {
    display: none;
}

    .board-content.active {
        display: block;
    }


@media(max-width: 460px) {
    #board-tabs .board-nav-item {
        width: 50%;
    }

    #board-tabs .board-nav-item {
        width: 50%;
        height: 60px;
        font-size: 16px;
        line-height: 18px;
    }
}



/*****************************************
* Project Background
*****************************************/
#about {
    padding: 50px 0px;
}

@media(max-width: 460px) {
    #about {
        padding: 40px 0px 0px 0px;
    }
}

.about {
    width: 90%;
    margin: 0px auto;
}

    .about .about-photo {
    }


    .about .title {
        color: #44331b;
        font-family: 'Sarabun';
        font-size: 3rem;
        line-height: 3.5rem;
        font-weight: bold;
    }

    .about .subtitle {
        font-family: 'Sarabun';
        font-size: 1.8rem;
        line-height: 2rem;
        margin-bottom: 15px;
    }


    .about .about-detail {
        padding: 40px 0px;
        font-family: 'Sarabun';
        font-size: 1rem;
        line-height: 1.5rem;
        margin-bottom: 30px;
        text-align: justify;
    }

        .about .about-detail ol {
            list-style: none;
        }

    .about h5 {
        color: #44331b;
        font-family: 'Sarabun';
        font-size: 2rem;
        line-height: 2.5rem;
        font-weight: bold;
    }


@media(max-width: 460px) {

    .about {
        width: 100%;
    }

    .about {
        margin-bottom: 30px;
    }

        .about .title {
            font-size: 40px;
            line-height: 40px;
            font-weight: bold;
            margin-bottom: 3px;
        }

        .about .subtitle {
            font-size: 18px;
            line-height: 18px;
            margin-bottom: 15px;
        }


        .about .about-detail {
            padding: 20px 0px;
            font-size: 14px;
            line-height: 16px;
        }

            .about .about-detail ol {
                padding-left: 20px;
            }
}

/*****************************************
* Project
*****************************************/
#project {
    position: relative;
    padding: 100px 0px;
    background: url('/Upload/about/banner.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top center;
}

@media(max-width: 460px) {
    #project {
        padding: 50px 0px;
    }
}


.project-information {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
}

    .project-information .project-photo {
        width: 50%;
    }

    .project-information .project-info {
        width: 50%;
    }

@media(max-width: 460px) {
    .project-information .project-info {
        width: 100%;
    }
}


.project-detail {
    background: #ffffff;
    border-radius: 20px;
    padding: 40px;
    box-shadow: -3px 10px 50px rgba(255,255,255,1);
}

    .project-detail .title {
        font-family: 'Sarabun';
        font-size: 40px;
        font-weight: bold;
        line-height: 44px;
        margin-bottom: 20px;
        text-align: center;
    }

    .project-detail .description {
        font-family: 'Sarabun';
        font-size: 1.3rem;
        line-height: 1.5rem;
        margin-bottom: 30px;
        text-align: center;
    }

    .project-detail .btn-reservation {
        color: #ffffff;
        background: #e03126;
        border: 2px solid #e03126;
        padding: 10px 0px;
        width: 170px;
        display: block;
        margin: 0px auto;
        text-transform: uppercase;
        font-weight: bold;
        letter-spacing: 0px;
        font-size: 1.3rem;
        text-decoration: none;
        text-align: center;
        transition: 0.3s ease all;
        cursor: pointer;
        border-radius: 10px;
    }


        .project-detail .btn-reservation:hover {
            background: #be0b00;
            border: 2px solid #be0b00;
        }

@media(max-width: 460px) {
    .project-detail {
        padding: 20px 20px 30px 20px;
    }

        .project-detail .title {
            font-size: 26px;
            line-height: 30px;
        }

        .project-detail .description {
            font-size: 16px;
            line-height: 18px;
        }
}


/*****************************************
* Committee
*****************************************/
#committee-register {
    position: relative;
    padding: 100px 0px;
    background: url('/Upload/about/banner2.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top center;
}



/*****************************************
* Quick Reservation
*****************************************/
#quick-reservation {
    position: relative;
    /*padding: 100px 0px;
    background: url('/Upload/home/quick-reservation.jpg');
    background-repeat:no-repeat;
    background-size:100% auto;
    background-position:top center;
    min-height:760px;*/
}

.reservation-content {
    position: absolute;
    top: 20%;
    right: 5%;
    width: 40%;
    background: rgba(255,255,255,0.5);
    padding: 30px;
    text-align: center;
}

    .reservation-content .title {
        font-family: 'Sarabun';
        font-size: 2.5rem;
        line-height: 3rem;
        margin-bottom: 15px;
    }

    .reservation-content .description {
        font-family: 'Sarabun';
        font-size: 1.2rem;
        line-height: 1.5rem;
        margin-bottom: 30px;
    }

    .reservation-content .btn-reservation {
        color: #ffffff;
        background: #e03126;
        border: 2px solid #e03126;
        padding: 10px 0px;
        width: 170px;
        display: block;
        margin: 0px auto;
        text-transform: uppercase;
        font-weight: bold;
        letter-spacing: 2px;
        font-size: 1rem;
        text-decoration: none;
        text-align: center;
        transition: 0.3s ease all;
        border-radius: 10px;
    }


        .reservation-content .btn-reservation:hover {
            background: #be0b00;
            border: 2px solid #be0b00;
        }

@media(max-width: 460px) {
    .reservation-content {
        position: absolute;
        top: 15%;
        right: 5%;
        width: 90%;
        background: rgba(255,255,255,0.5);
        padding: 30px;
        text-align: center;
    }

        .reservation-content .title {
            font-size: 2rem;
            line-height: 2.5rem;
        }
}

#loading-vehicle {
    height: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
    display: none;
    background: #ffffff;
    box-shadow: 0px 4px 12px #e8e8e8;
    border-radius: 20px;
}
/*
.loader {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: inline-block;
    border-top: 4px solid #FFF;
    border-right: 4px solid transparent;
    box-sizing: border-box;
    animation: rotation 1s linear infinite;
}

    .loader::after {
        content: '';
        box-sizing: border-box;
        position: absolute;
        left: 0;
        top: 0;
        width: 48px;
        height: 48px;
        border-radius: 50%;
        border-left: 4px solid #FF3D00;
        border-bottom: 4px solid transparent;
        animation: rotation 0.3s linear infinite reverse;
    }

@keyframes rotation {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

*/


#footer {
    color: #44331b;
    padding: 40px 20px;
    border-top: 1px solid #ebebeb;
}

    #footer .container {
        padding-right: 0px;
        padding-left: 0px;
    }


@media (max-width: 460px) {
    #footer {
    }
}

.footer-contact {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

    .footer-contact .contact-information {
        width: 30%;
        text-align: center;
        font-size: 30px;
        font-weight: bold;
        margin-bottom: 20px;
    }

        .footer-contact .contact-information .footer-logo img {
            width: 100px;
        }

    .footer-contact .contact-address {
        width: 60%;
        font-size: 16px;
        line-height: 20px;
        margin-bottom: 20px;
    }

        .footer-contact .contact-address .header {
            font-weight: bold;
            font-size: 20px;
            line-height: 24px;
            margin-bottom: 10px;
        }


@media (max-width: 460px) {
    .footer-contact .contact-information {
        width: 100%;
        margin-bottom: 10px;
    }

        .footer-contact .contact-information .footer-logo img {
            width: 100px;
        }

    .footer-contact .contact-address {
        width: 100%;
        font-size: 14px;
        line-height: 16px;
        text-align: center;
    }

        .footer-contact .contact-address .header {
            width: 100%;
            font-size: 16px;
            line-height: 18px;
            text-align: center;
        }
}


/*.footer-bottom {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    padding: 20px 0px
    ;
}


    .footer-bottom .footer-header {
        font-family: 'Sarabun';
        font-size: 2rem;
        line-height: 2.5rem;
    }

    .footer-bottom .footer-text {
        font-family: 'Montserrat-Regular', 'Prompt-Medium';
        font-size: 1rem;
        line-height: 1.5rem;
        padding: 10px 0px 20px 0px;
    }

    .footer-bottom .footer-phone {
        font-family: 'Montserrat-Regular', 'Prompt-Medium';
        font-size: 1.5rem;
        line-height: 2rem;
        padding: 5px 0px;
    }

    .footer-bottom .left-panel {
        width: calc(100% / 3);
        padding: 20px;
    }

        .footer-bottom .left-panel .footer-brand {
        }

            .footer-bottom .left-panel .footer-brand img {
                width: 30%;
            }

    .footer-bottom .middle-panel {
        width: calc(100% / 3);
        padding: 20px;
    }


    .footer-bottom .right-panel {
        width: calc(100% / 3);
        padding: 20px;
    }*/


.footer-social {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 10px 0px 20px 0px;
}

    .footer-social .social-item {
        width: 36px;
        height: 36px;
        margin: 0px 5px;
    }


.footer-copyright {
    text-align: center;
    padding: 0px;
    border-top: 1px solid #434b55;
}


@media (max-width: 460px) {
}


/*****************************************
* Reservation Form
*****************************************/
#reservation {
    padding: 50px 0px;
    /* background: url(/upload/home/top-reservation.png), url(/upload/home/bottom-reservation.png);
    background-repeat: no-repeat, no-repeat;
    background-size: 20% auto, 30% auto;
    background-position: bottom 0% left -5%, bottom right 2%;*/
    padding-bottom: 130px;
}


    #reservation .title {
        text-align: center;
        font-family: 'Sarabun';
        font-weight: bold;
        font-size: 3.5rem;
        line-height: 3rem;
        color: #3170e7;
        text-transform: uppercase;
        margin-bottom: 10px;
    }

    #reservation .subtitle {
        text-align: center;
        font-family: 'Sarabun';
        font-size: 1.5rem;
        line-height: 2rem;
        color: #000000;
        margin-bottom: 40px;
    }


@media (max-width: 460px) {
    #reservation {
        padding: 50px 0px 100px 0px;
        background: none;
    }


        #reservation .title {
            font-size: 1.8rem;
            line-height: 2.5rem;
            margin-bottom: 0px;
        }

        #reservation .subtitle {
            font-size: 1.2rem;
            line-height: 1.3rem;
            margin-bottom: 20px;
        }
}



.reservation-form {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

    .reservation-form .left-side, .reservation-form .right-side {
        width: 49%;
        padding: 20px;
        background: #ffffff;
        box-shadow: 0px 4px 12px #e8e8e8;
        border-radius: 20px;
    }

    .reservation-form .center-side {
        width: 100%;
        padding: 20px;
        background: #ffffff;
        box-shadow: 0px 4px 12px #e8e8e8;
        border-radius: 20px;
    }


    .reservation-form .btn-primary, .reservation-form .btn-primary:hover {
        font-family: 'Sarabun';
        padding: 8px 50px 10px 50px;
        color: #ffffff;
        font-size: 1rem;
        font-weight: normal;
        line-height: 24px;
        background-color: #041837;
        border-radius: 0;
        transition: all 0.2s ease-in-out;
        display: block;
        text-align: center;
        text-decoration: none;
        cursor: pointer;
        margin-top: 0px;
        height: inherit;
        border: 1px solid #041837;
        width: auto;
    }

    .reservation-form .btn-secondary, .reservation-form .btn-secondary:hover {
        font-family: 'Sarabun';
        padding: 8px 50px 10px 50px;
        color: #041837;
        font-size: 1rem;
        font-weight: normal;
        line-height: 24px;
        background-color: transparent;
        border: 1px solid #041837;
        border-radius: 0;
        transition: all 0.2s ease-in-out;
        display: block;
        text-align: center;
        text-decoration: none;
        cursor: pointer;
    }


@media (max-width: 460px) {

    .reservation-form .left-side, .reservation-form .right-side {
        width: 100%;
        box-shadow: none;
        padding: 0px;
    }
}



.reservation-action {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 40px 0px;
}

    .reservation-action .previos-button {
        width: 150px;
    }

    .reservation-action .next-button {
        width: 150px;
    }


    .reservation-action .btn-primary, .reservation-action .btn-primary:hover {
        font-family: 'Sarabun';
        padding: 10px;
        color: #ffffff;
        font-size: 1.2rem;
        font-weight: normal;
        line-height: 24px;
        background-color: #3170e7;
        transition: all 0.2s ease-in-out;
        display: block;
        text-align: center;
        text-decoration: none;
        cursor: pointer;
        margin-top: 0px;
        height: inherit;
        border: 1px solid #3170e7;
        width: 100%;
        border-radius: 10px;
    }

    .reservation-action .btn-danger, .reservation-action .btn-danger:hover {
        font-family: 'Sarabun';
        padding: 10px;
        color: #ffffff;
        font-size: 1.2rem;
        font-weight: normal;
        line-height: 24px;
        background-color: #e03126;
        transition: all 0.2s ease-in-out;
        display: block;
        text-align: center;
        text-decoration: none;
        cursor: pointer;
        margin-top: 0px;
        height: inherit;
        border: 1px solid #e03126;
        width: 100%;
        border-radius: 10px;
    }


.selected-vehicle {
    padding: 20px 15px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
}

    .selected-vehicle .selected-item {
        width: calc(100% / 4 - 8px);
        padding: 3px;
        background: #f6f6f6;
        margin: 4px;
        border-radius: 15px;
        cursor: pointer;
        transition: 0.3s ease all;
    }

        .selected-vehicle .selected-item.active {
            background: #3170e7;
            transform: scale(1.1);
        }

        .selected-vehicle .selected-item img {
            border-radius: 12px;
        }




@media (max-width: 460px) {
    .selected-vehicle {
        padding: 10px 0px;
    }


        .selected-vehicle .selected-item {
            width: calc(100% / 2 - 8px);
        }
}




.checkout-identify {
    background: #ffffff;
}

    .checkout-identify .remark {
        font-size: 0.7rem;
        font-family: 'Sarabun';
        color: #e03126;
        font-weight: bold;
        background-color: #fdf3f3;
        padding: 10px 20px;
        border: 1px solid #e86161;
    }

    .checkout-identify .fa-asterisk {
        font-size: 0.6rem;
        color: #e03126;
    }

    .checkout-identify .headline {
        font-size: 1.2rem;
        font-family: 'Sarabun';
        font-weight: bold;
        padding: 10px 15px;
        border-bottom: 1px solid #3170e7;
        color: #3170e7;
        display: flex;
        justify-content: flex-start;
        align-items: center;
    }

        .checkout-identify .headline .headline-no {
            background: #3170e7;
            color: #ffffff;
            border-radius: 30px;
            margin-right: 10px;
            font-size: 0.8rem;
            width: 25px;
            height: 25px;
            text-align: center;
            display: flex;
            justify-content: center;
            align-items: center;
        }

    .checkout-identify .identify-panel {
        font-size: 0.8rem;
        font-family: 'Sarabun';
        padding: 15px 15px 10px 15px;
    }

        .checkout-identify .identify-panel.dark-theme {
            background-color: #fafafa;
            border: 1px solid #f1f1f1;
            padding: 10px 15px 0px 15px;
            margin: 0px 0px 10px 0px;
            border-radius: 10px;
        }




@media (max-width: 460px) {
    .checkout-identify .identify-panel {
        padding: 15px 0px;
    }
}


form .form-group.no-padding {
    margin-bottom: 0px;
}

form .form-group label, form label {
    font-size: 16px;
    font-family: 'Sarabun';
    font-weight: bold;
    margin-bottom: 0.3rem;
    color: #091836;
}

form .form-group input {
    background: #fff;
    background-clip: padding-box;
    border: 1px solid #eae8e4;
    box-shadow: none;
    transition: border .3s cubic-bezier(.39,.575,.565,1);
    padding: 0 1rem;
    box-sizing: border-box;
    height: 36px;
    font-size: 16px;
    color: #19110b;
    line-height: 3rem;
    width: 100%;
    border-radius: 10px;
    outline: none;
}

form .form-group textarea {
    background: #fff;
    background-clip: padding-box;
    border: 1px solid #eae8e4;
    box-shadow: none;
    transition: border .3s cubic-bezier(.39,.575,.565,1);
    padding: 14px;
    box-sizing: border-box;
    font-size: 16px;
    color: #19110b;
    line-height: 1.3rem;
    width: 100%;
    border-radius: 10px;
    outline: none;
}

form .form-group select {
    background: #fff;
    background-clip: padding-box;
    border: 1px solid #eae8e4;
    border-radius: 0;
    box-shadow: none;
    transition: border .3s cubic-bezier(.39,.575,.565,1);
    padding: 0 1rem;
    box-sizing: border-box;
    height: 36px;
    font-size: 16px;
    letter-spacing: .025rem;
    line-height: 2rem;
    color: #19110b;
    line-height: 3rem;
    font-weight: 500;
    width: 100%;
    border-radius: 10px;
    outline: none;
}

form .form-group input[type=file] {
    background: #fff;
    background-clip: padding-box;
    border: 1px solid #eae8e4;
    border-radius: 0;
    box-shadow: none;
    transition: border .3s cubic-bezier(.39,.575,.565,1);
    padding: 0rem;
    box-sizing: border-box;
    height: 36px;
    font-size: 16px;
    letter-spacing: .025rem;
    font-weight: 300;
    color: #19110b;
    line-height: 2rem;
    width: 100%;
    border-radius: 10px;
    border-radius: 10px;
}



form .form-group.form-checkbox {
    height: 36px;
    display: flex;
    justify-content: flex-start;
    align-items: inherit;
    margin-bottom: 0rem;
}


    form .form-group.form-checkbox .checkbox-wrapper {
        display: flex;
        justify-content: flex-start;
        align-items: center;
        flex-wrap: wrap;
        width: 100%;
        font-size: 16px;
        font-family: 'Sarabun';
    }

        form .form-group.form-checkbox .checkbox-wrapper .checkbox-item {
            width: calc(100%/4);
            display: flex;
            justify-content: flex-start;
            align-items: center;
            line-height: 0.8rem;
            margin-bottom: 10px;
        }

            form .form-group.form-checkbox .checkbox-wrapper .checkbox-item img {
                height: 36px;
            }



            form .form-group.form-checkbox .checkbox-wrapper .checkbox-item.driver {
                width: calc(100%/3);
            }

                form .form-group.form-checkbox .checkbox-wrapper .checkbox-item.driver img {
                    height: 50px;
                }


    form .form-group.form-checkbox input[type=checkbox] {
        box-sizing: border-box;
        padding: 0;
        height: 20px;
        width: 30px;
        margin-top: 5px;
    }



form .form-group.form-radio {
    display: flex;
    justify-content: flex-start;
    align-items: inherit;
    margin-bottom: 5px;
}


    form .form-group.form-radio .radio-wrapper {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-wrap: wrap;
        width: 100%;
        font-size: 1rem;
        font-family: 'Sarabun';
    }

        form .form-group.form-radio .radio-wrapper .radio-item {
            width: calc(100%/4);
            display: flex;
            justify-content: flex-start;
            align-items: center;
            line-height: 1rem;
            margin-bottom: 10px;
        }

            form .form-group.form-radio .radio-wrapper .radio-item img {
                height: 36px;
            }



            form .form-group.form-radio .radio-wrapper .radio-item.driver {
                width: calc(100%/3);
            }

                form .form-group.form-radio .radio-wrapper .radio-item.driver img {
                    height: 50px;
                }


    form .form-group.form-radio input[type=radio] {
        box-sizing: border-box;
        padding: 0;
        height: 20px;
        width: 30px;
        margin-top: 5px;
    }


form button {
    color: #ffffff;
    font-size: 1rem;
    font-weight: bold;
    line-height: 24px;
    background: #3170e7;
    border: #3170e7;
    border-radius: 10px;
    transition: all 0.2s ease-in-out;
    display: block;
    text-align: center;
    text-decoration: none;
    font-family: 'Sarabun';
    outline: none;
    margin-top: 15px;
    padding: 10px 30px 10px 30px;
}

    form button:hover {
        /*background: #313841;*/
        background: #3170e7;
    }

    form button:focus {
        color: #ffffff;
        background: #3170e7;
    }



/*****************************************
* Order Success
*****************************************/
#book-success {
    padding: 50px 0px 150px 0px;
}

    #book-success .title {
        text-align: center;
        font-family: 'Sarabun';
        font-weight: bold;
        font-size: 2.5rem;
        line-height: 3rem;
        color: #3170e7;
        text-transform: uppercase;
        letter-spacing: 4px;
        margin-bottom: 5px;
    }

    #book-success .thankyou-message {
        font-size: 3rem;
        font-family: 'Sarabun';
        margin-bottom: 10px;
        color: #091836;
        text-align: center;
    }

    #book-success .success-message {
        font-size: 1rem;
        line-height: 1.3rem;
        font-family: 'Sarabun';
        text-align: center;
        width: 70%;
        margin: 20px auto 30px auto;
    }

        #book-success .success-message .hilight {
            font-family: 'Sarabun';
            text-decoration: underline;
        }


    #book-success .success-orderno {
        font-size: 2rem;
        font-family: 'Sarabun';
        display: flex;
        justify-content: center;
        align-items: center;
        text-align: center;
    }

        #book-success .success-orderno .orderno {
            background: #f6f6f6;
            padding: 10px 50px;
            color: #000000;
            border-radius: 15px;
            font-weight: bold;
        }


@media (max-width: 460px) {
    #book-success .title {
        font-size: 2rem;
        line-height: 2.5rem;
        margin-bottom: 20px;
    }

    #book-success .success-message {
        width: 100%;
        margin: 20px auto 20px auto;
    }
}



.book-success-content {
    margin-top: 50px;
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
}

    .book-success-content .booking-success-message {
        width: 60%;
        padding: 20px;
    }

    .book-success-content .booking-success-detail {
        width: 40%;
    }

@media (max-width: 460px) {
    .book-success-content {
        margin-top: 10px;
    }

        .book-success-content .booking-success-message {
            width: 100%;
            padding: 0px;
            order: 2;
        }

        .book-success-content .booking-success-detail {
            width: 100%;
            order: 1;
        }
}



@media (max-width: 460px) {
    #book-success {
        padding: 50px 0px 100px 0px;
    }

    .booking-success-message .thankyou-message {
        font-size: 2rem;
        line-height: 2.5rem;
    }

    .booking-success-message .success-message {
        font-size: 1rem;
        line-height: 1.3rem;
    }
}


/*****************************************
* Shipping Info
*****************************************/
#shipping-info {
    margin-bottom: 30px;
}

    #shipping-info .info-title {
        color: #000000;
        font-size: 2rem;
        font-family: 'Sarabun';
        /*padding-bottom: 5px;
        margin-bottom: 10px;*/
        font-weight: bold;
    }

    #shipping-info .shippinginfo-item {
        display: flex;
        justify-content: flex-start;
        padding: 0px 0px 5px 0px;
    }

        #shipping-info .shippinginfo-item .label {
            width: 200px;
            font-weight: bold;
        }

        #shipping-info .shippinginfo-item .value {
            width: calc(100% - 100px);
        }


@media (max-width: 460px) {

    #shipping-info {
        margin-top: 30px;
        margin-bottom: 20px;
    }

        #shipping-info .info-title {
            font-size: 1.5rem;
            margin-bottom: 10px;
            text-align: left;
        }

        #shipping-info .shippinginfo-item {
            text-align: left;
        }
}



.order-success-contact {
    padding: 50px;
    text-align: center;
    background: #fafafa;
    border-radius: 20px;
}

    .order-success-contact .order-success-text {
        padding-bottom: 30px;
        font-size: 1rem;
        line-height: 1.3rem;
        font-family: 'Sarabun';
    }


    .order-success-contact .order-success-button {
        color: #fff;
        background-color: #07b53b;
        border: 1px solid #07b53b;
        padding: 10px 0px;
        border-radius: 20px;
        display: block;
        width: 160px;
        margin: 0px auto;
        margin-top: 0px;
    }


    .order-success-contact .bank-account-display {
        display: flex;
        justify-content: flex-start;
        width: 60%;
        margin: 0px auto 30px auto;
    }

        .order-success-contact .bank-account-display .bank-icon {
            width: 80px;
        }

        .order-success-contact .bank-account-display .bank-info {
            width: calc(100% - 80px);
            text-align: left;
            padding: 0px 20px;
            font-weight: bold;
        }

            .order-success-contact .bank-account-display .bank-info .account-no {
                font-size: 2rem;
                line-height: 2.5rem;
                font-family: 'Sarabun';
            }

            .order-success-contact .bank-account-display .bank-info .account-name {
                font-size: 2rem;
                line-height: 2.5rem;
                font-family: 'Sarabun';
            }


@media (max-width: 460px) {

    .order-success-contact {
        padding: 30px;
    }

        .order-success-contact .order-success-text {
            padding-bottom: 20px;
            font-size: 1rem;
            line-height: 1.3rem;
        }

        .order-success-contact .bank-account-display {
            width: 70%;
            margin: 0px auto 0px auto;
        }

            .order-success-contact .bank-account-display .bank-icon {
                width: 60px;
            }

            .order-success-contact .bank-account-display .bank-info {
                width: calc(100% - 60px);
            }

                .order-success-contact .bank-account-display .bank-info .account-no {
                    font-size: 1.5rem;
                    line-height: 2rem;
                }

                .order-success-contact .bank-account-display .bank-info .account-name {
                    font-size: 1.5rem;
                    line-height: 2rem;
                }
}




.additional-content {
    padding: 20px;
    background: #ffffff;
    box-shadow: 0px 4px 12px #e8e8e8;
    border-radius: 20px;
}

    .additional-content .header {
        font-size: 1rem;
        line-height: 1.3rem;
        font-family: 'Sarabun';
        font-weight: bold;
        color: #3170e7;
        padding-bottom: 10px;
    }

    .additional-content ul {
        padding-left: 15px;
        font-size: 1rem;
        line-height: 1.3rem;
        font-family: 'Sarabun';
    }




/*****************************************
* Home Additional
*****************************************/
#home-additional {
    position: relative;
}

    #home-additional .additional-box {
        padding: 20px;
        background: #ffffff;
        box-shadow: 0px 4px 12px #e8e8e8;
        border-radius: 20px;
        width: 35%;
        position: absolute;
        top: 15%;
        right: 15%;
        font-size: 1.3rem;
        line-height: 1.8rem;
        font-family: 'Sarabun';
    }

        #home-additional .additional-box .header {
            font-size: 2rem;
            line-height: 2.5rem;
            font-family: 'Sarabun';
            font-weight: bold;
            color: #3170e7;
            padding-bottom: 10px;
        }

        #home-additional .additional-box ul {
            padding-left: 15px;
        }

            #home-additional .additional-box ul li {
                padding-bottom: 5px;
            }


@media (max-width: 460px) {
    #home-additional .additional-box {
        width: 90%;
        position: absolute;
        top: 5%;
        right: 5%;
        left: 5%;
        bottom: 5%;
    }
}


/*****************************************
* Term Additional
*****************************************/
#term-additional {
    background: url('/Upload/home/bg-additional.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top center;
    padding: 100px 0px 100px 0px;
}


@media (max-width: 460px) {
    #term-additional {
        background-size: auto 100%;
        padding: 50px 0px 30px 0px;
        background-position: top left;
    }
}


.term-additional-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

    .term-additional-content .term-additional-content-item {
        width: 49%;
        padding: 40px;
        background: rgba(255, 255, 255, 1);
        box-shadow: 0px 4px 12px #e8e8e8;
        border-radius: 20px;
    }

        .term-additional-content .term-additional-content-item .header {
            font-size: 1.5rem;
            line-height: 2rem;
            font-family: 'Sarabun';
            font-weight: bold;
            color: #3170e7;
            padding-bottom: 10px;
        }

        .term-additional-content .term-additional-content-item ul {
            font-size: 1.3rem;
            line-height: 1.8rem;
            font-family: 'Sarabun';
            padding-left: 15px;
        }

            .term-additional-content .term-additional-content-item ul b {
                text-decoration: underline;
            }

@media (max-width: 460px) {
    .term-additional-content .term-additional-content-item {
        width: 100%;
        padding: 20px;
        margin-bottom: 20px;
    }
}


/*****************************************
* Contact Form
*****************************************/
#contact-form {
    background: url('/Upload/contact/bg-contact.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top center;
    padding: 100px 0px 150px 0px;
}


    #contact-form .title {
        text-align: center;
        font-family: 'Sarabun';
        font-size: 3.5rem;
        line-height: 4rem;
        color: #ffffff;
        font-weight: bold;
        text-transform: uppercase;
        letter-spacing: 4px;
        margin-bottom: 30px;
    }


@media (max-width: 460px) {
    #contact-form {
        padding: 50px 0px 120px 0px;
    }

        #contact-form .title {
            margin-bottom: 20px;
            font-size: 3rem;
        }
}




.contact-form-wrapper {
    padding: 40px;
    background: #ffffff;
    box-shadow: 0px 4px 12px #e8e8e8;
    border-radius: 20px;
    width: 60%;
    margin: 0px auto;
}


    .contact-form-wrapper .header {
        font-size: 1.5rem;
        font-family: 'Sarabun';
        font-weight: bold;
        color: #3170e7;
    }

    .contact-form-wrapper .subheader {
        font-size: 1.2rem;
        font-family: 'Sarabun';
        font-weight: bold;
        margin-bottom: 20px;
        color: #000000;
    }

    .contact-form-wrapper .form-group label {
        color: #3170e7;
        font-size: 1rem;
    }

    .contact-form-wrapper .form-group input {
        height: 50px;
        border-radius: 0px;
        border: 1px solid #f1f1f1;
        font-size: 1rem;
    }

    .contact-form-wrapper .form-group textarea {
        border-radius: 0px;
        border: 1px solid #f1f1f1;
        font-size: 1rem;
    }

@media (max-width: 460px) {

    .contact-form-wrapper {
        width: 100%;
        padding: 20px;
    }

        .contact-form-wrapper .header {
            font-size: 1.2rem;
        }

        .contact-form-wrapper .subheader {
            font-size: 1rem;
        }
}


#why-chooseus {
}

.why-chooseus {
    border: 1px solid red;
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
}

    .why-chooseus .why-chooseus-item {
        border: 1px solid red;
        width: calc(100%/3);
        padding: 20px;
        text-align: center;
    }

        .why-chooseus .why-chooseus-item .why-chooseus-icon {
        }


        .why-chooseus .why-chooseus-item .why-chooseus-title {
            font-size: 1.5rem;
            font-family: 'Sarabun';
            color: #3170e7;
            font-weight: bold;
        }


        .why-chooseus .why-chooseus-item .why-chooseus-detail {
            font-size: 1rem;
            font-family: 'Sarabun';
            font-weight: bold;
        }



/*****************************************
* Main Backend
*****************************************/
#main-backend {
    padding: 50px 0px 100px 0px;
}

    #main-backend .title-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        text-transform: uppercase;
        margin-bottom: 15px;
    }

        #main-backend .title-header .title {
            text-align: center;
            font-family: 'Sarabun';
            font-weight: bold;
            font-size: 3rem;
            line-height: 3.5rem;
            color: #3170e7;
            text-transform: uppercase;
            margin-bottom: 10px;
        }

        #main-backend .title-header .button-action {
            font-size: 20px;
            line-height: 24px;
            color: #ffffff;
            background: #e03126;
            border: #3170e7;
            border-radius: 10px;
            transition: all 0.2s ease-in-out;
            display: block;
            text-align: center;
            text-decoration: none;
            font-family: 'Sarabun';
            outline: none;
            padding: 8px 20px 8px 20px;
            margin-top: 0px;
            min-width: 160px;
            margin-right: 5px;
            cursor: pointer;
        }



/*.table-backend {
    font-size: 0.8rem;
    font-family: 'Sarabun';
}

    .table-backend thead tr th {
        font-size: 0.6rem;
        padding: 0.25rem 0.75rem;
        background-color: #fbfbfb;
        color: #000000;
    }


    .table-backend tbody tr td {
        color: #000000;
        font-size: 0.8rem;
        padding: 0.50rem 0.75rem;

    }



        .table-backend tbody tr td a, .table-backend tbody tr td a:hover {
            color: #000000;
            text-transform: uppercase;
        }

            .table-backend tbody tr td a img.icon {
                width: 14px;
                margin: 0px 3px;
            }

                .table-backend tbody tr td a img.icon.remove {
                    width: 13px;
                }


    .table-backend .badge {
        display: inline-block;
        padding: 5px 8px 4px 8px;
        font-size: 10px;
        font-weight: bold;
        line-height: 1;
        text-align: center;
        white-space: nowrap;
        vertical-align: baseline;
        border-radius: 0.25rem;
        transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
    }

    .table-backend .label {
        font-weight: bold;
        margin-bottom: 0px;
    }

    .table-backend .label-underline {
        font-weight: bold;
        text-decoration:underline;
        margin-bottom: 0px;
    }

    .table-backend .text {
        margin-bottom: 5px;
    }

    .table-backend .font-icon {
        font-size: 1.5rem;
    }


    .table-backend .action-link, .table-backend .action-link:hover {
        background: #007bff;
        color: #ffffff;
        padding: 7px 20px;
        display: block;
        border-radius: 0.25rem;
        font-weight: bold;
        text-decoration: none;
    }*/


.checkbox-display-wrapper {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin: 5px 0px;
}


    .checkbox-display-wrapper .checkbox-display {
        width: 24px;
        height: 24px;
        background: #ffffff;
        border: 1px solid #3170e7;
    }

        .checkbox-display-wrapper .checkbox-display.checked {
            background: #3170e7;
        }

    .checkbox-display-wrapper .checkbox-label {
        padding-left: 10px;
    }



#dashboard {
    padding: 50px 0px 150px 0px;
}

.dashboard {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
}

    .dashboard .dashboard-item {
        box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.15);
        width: calc(100% / 3 - 20px);
        margin: 10px;
        padding: 20px;
    }

        .dashboard .dashboard-item .dashboard-item-title {
            font-size: 1rem;
            font-family: 'Sarabun';
            color: #000000;
            font-weight: bold;
            text-align: center;
            margin-bottom: 20px;
        }

        .dashboard .dashboard-item .dashboard-item-count {
            font-size: 6rem;
            font-family: 'Sarabun';
            color: #007bff;
            font-weight: bold;
            text-align: center;
            /*background: #fafafa;*/
        }

            .dashboard .dashboard-item .dashboard-item-count a, .dashboard .dashboard-item .dashboard-item-count a:hover {
                text-decoration: none;
            }



ol.stepper {
    --default-b: lightgrey;
    --default-c: black;
    --active-b: #e18536;
    --active-c: white;
    --circle: 3.5em; /* size of circle */
    --b: 5px; /* line thickness */
    display: flex;
    list-style: none;
    justify-content: space-between;
    background: linear-gradient(var(--default-b) 0 0) no-repeat 50% calc((var(--circle) - var(--b))/2)/100% var(--b);
    counter-reset: step;
    margin: 40px 0px 40px 0px;
    padding: 0;
    font-size: 22px;
    font-weight: bold;
    counter-reset: step;
    overflow: hidden;
}

    ol.stepper li {
        display: grid;
        place-items: center;
        gap: 5px;
        font-family: sans-serif;
        position: relative;
    }

        ol.stepper li span {
            font-size: 1rem;
            line-height: 1.3rem;
            font-family: 'Sarabun';
            text-align: center;
        }

        ol.stepper li::before {
            content: counter(step) " ";
            counter-increment: step;
            display: grid;
            place-content: center;
            aspect-ratio: 1;
            height: var(--circle);
            border: 5px solid #fff;
            box-sizing: border-box;
            background: var(--active-b);
            color: var(--active-c);
            border-radius: 50%;
            font-family: monospace;
            z-index: 1;
        }

        ol.stepper li.active ~ li::before {
            background: var(--default-b);
            color: var(--default-c);
        }

        ol.stepper li.active::after {
            content: "";
            position: absolute;
            height: var(--b);
            right: 100%;
            top: calc((var(--circle) - var(--b))/2);
            width: 100vw;
            background: var(--active-b);
        }


@media (max-width: 600px) {
    ol.stepper {
        display: grid;
        gap: 20px;
        background: linear-gradient(var(--default-b) 0 0) no-repeat calc((var(--circle) - var(--b))/2) 50%/ var(--b) 100%;
    }

        ol.stepper li {
            display: flex;
        }

            ol.stepper li.active::after {
                content: "";
                position: absolute;
                width: var(--b);
                bottom: 100%;
                left: calc((var(--circle) - var(--b))/2);
                top: auto;
                right: auto;
                height: 100vw;
                background: var(--active-b);
            }
}





.backend-form {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

    .backend-form .side-menu {
        width: 30%;
        background: #ffffff;
        box-shadow: 0px 4px 12px #e8e8e8;
    }

        .backend-form .side-menu ul {
            list-style: none;
            padding-left: 0px;
        }

            .backend-form .side-menu ul li {
                border-bottom: 1px solid #eee;
                padding: 15px 20px;
                background: #ffffff;
                transition: 0.3s ease all;
                cursor: pointer;
            }


                .backend-form .side-menu ul li:last-child {
                    border-bottom: none;
                }

                .backend-form .side-menu ul li:hover {
                    background: #f8f8f8;
                }

                .backend-form .side-menu ul li a {
                    color: #000000;
                    text-decoration: none;
                    display: block;
                }

                .backend-form .side-menu ul li.active {
                    background: #3170e7;
                }

                    .backend-form .side-menu ul li.active a {
                        color: #ffffff;
                    }

    .backend-form .content-form {
        width: 68%;
        background: #ffffff;
        box-shadow: 0px 4px 12px #e8e8e8;
        padding: 20px;
    }

        .backend-form .content-form.half-form {
            width: 49%;
        }

        .backend-form .content-form.full-form {
            width: 100%;
        }



        .backend-form .content-form .headline {
            font-size: 1.2rem;
            font-family: 'Sarabun';
            font-weight: bold;
            padding: 0px 0px 5px 0px;
            border-bottom: 1px solid #3170e7;
            color: #3170e7;
            display: flex;
            justify-content: flex-start;
            align-items: center;
            margin-bottom: 15px;
        }

        .backend-form .content-form .fa-asterisk {
            font-size: 0.8rem;
            color: #e03126;
        }

        .backend-form .content-form .headline .headline-no {
            background: #3170e7;
            color: #ffffff;
            border-radius: 30px;
            margin-right: 10px;
            font-size: 0.8rem;
            width: 25px;
            height: 25px;
            text-align: center;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .backend-form .content-form .subheadline {
            font-size: 0.8rem;
            font-family: 'Sarabun';
            padding: 0px 0px 15px 0px;
            color: #000000;
        }


        .backend-form .content-form .button-action {
            display: flex;
            justify-content: flex-start;
            align-items: center;
        }

            .backend-form .content-form .button-action .btn-primary, .backend-form .content-form .button-action .btn-primary:hover {
                font-family: 'Sarabun';
                color: #ffffff;
                font-size: 1rem;
                font-weight: normal;
                line-height: 24px;
                background-color: #3170e7;
                transition: all 0.2s ease-in-out;
                display: block;
                text-align: center;
                text-decoration: none;
                cursor: pointer;
                margin-top: 10px;
                margin-right: 10px;
                border: 1px solid #3170e7;
                border-radius: 10px;
                padding: 5px 30px;
            }

            .backend-form .content-form .button-action .btn-outline, .backend-form .content-form .button-action .btn-outline:hover {
                font-family: 'Sarabun';
                color: #3170e7;
                font-size: 1rem;
                font-weight: normal;
                line-height: 24px;
                background-color: transparent;
                transition: all 0.2s ease-in-out;
                display: block;
                text-align: center;
                text-decoration: none;
                cursor: pointer;
                margin-top: 10px;
                margin-right: 10px;
                border: 1px solid #3170e7;
                border-radius: 10px;
                padding: 5px 30px;
            }



@media (max-width: 460px) {

    .backend-form .side-menu, .backend-form .content-form {
        width: 100%;
        box-shadow: none;
        padding: 0px;
    }
}


.backend-table {
    font-size: 18px;
}

    .backend-table thead tr th {
        font-size: 16px;
        padding: 10px 15px;
    }


    .backend-table tbody tr td {
        border: 1px solid #dee2e6;
        padding: 10px 15px;
    }

        .backend-table tbody tr td .badge, .backend-table tbody tr td a {
            text-decoration: none;
        }

            .backend-table tbody tr td .badge, .backend-table tbody tr td .badge:hover {
                padding: 5px 20px 8px 20px;
                text-decoration: none;
                font-weight: bold;
                font-size: 16px;
                line-height: 20px;
            }

                .backend-table tbody tr td .badge.badge-outline, .backend-table tbody tr td .badge.badge-outline:hover {
                    color: #3170e7;
                    background: transparent;
                    border: 1px solid #3170e7;
                }

                .backend-table tbody tr td .badge.badge-export, .backend-table tbody tr td .badge.badge-export:hover {
                    color: #ffffff;
                    background: #e03126;
                    border: 1px solid #e03126;
                }

                .backend-table tbody tr td .badge.badge-success, .backend-table tbody tr td .badge.badge-success:hover {
                    color: #ffffff;
                    background: #28a745;
                    border: 1px solid #28a745;
                }

                .backend-table tbody tr td .badge.badge-process, .backend-table tbody tr td .badge.badge-process:hover {
                    color: #000000;
                    background: #eee;
                    border: 1px solid #ccc;
                }

                .backend-table tbody tr td .badge.badge-exportpdf, .backend-table tbody tr td .badge.badge-exportpdf:hover {
                    color: #000000;
                    background: #ffc107;
                    border: 1px solid #ffc107;
                }

                .backend-table tbody tr td .badge.badge-blue, .backend-table tbody tr td .badge.badge-blue:hover {
                    color: #ffffff;
                    background: #3170e7;
                    border: 1px solid #3170e7;
                }


        .backend-table tbody tr td .delete-button, .backend-table tbody tr td .delete-button:hover {
            text-decoration: none;
            font-weight: normal;
            font-size: 18px;
            line-height: 18px;
            background: #e03126;
            color: #ffffff;
            padding: 3px 20px;
            border-radius: 5px;
        }




        .backend-table tbody tr td .label-underline {
            font-weight: bold;
            text-decoration: underline;
            margin-bottom: 0px;
        }

.back-form {
    margin-bottom: 40px;
    display: flex;
    justify-content: space-between;
}

    .back-form .btn-back, .back-form .btn-back:hover {
        font-size: 18px;
        font-weight: bold;
        line-height: 24px;
        color: #3170e7;
        border: 2px solid #3170e7;
        border-radius: 10px;
        transition: all 0.2s ease-in-out;
        text-align: center;
        text-decoration: none;
        font-family: 'Sarabun';
        outline: none;
        padding: 8px 20px 8px 20px;
        display: block;
        width: 180px;
    }

    .back-form .btn-action, .back-form .btn-action:hover {
        font-size: 18px;
        font-weight: bold;
        line-height: 24px;
        color: #ffffff;
        border: 2px solid #e03126;
        background: #e03126;
        border-radius: 10px;
        transition: all 0.2s ease-in-out;
        text-align: center;
        text-decoration: none;
        font-family: 'Sarabun';
        outline: none;
        padding: 8px 20px 8px 20px;
        display: block;
        width: 180px;
    }



/*****************************************
* Evaluate Form
*****************************************/
#evaluate-form {
    padding: 50px 0px 130px 0px;
}

    #evaluate-form .evaluate-logo {
        width: 17%;
    }

    #evaluate-form .title {
        text-align: center;
        font-family: 'Sarabun';
        font-weight: bold;
        font-size: 3rem;
        line-height: 3.5rem;
        color: #3170e7;
        text-transform: uppercase;
        margin-bottom: 5px;
    }

    #evaluate-form .subtitle {
        text-align: center;
        font-family: 'Sarabun';
        font-size: 2rem;
        line-height: 2.5rem;
        color: #000000;
        text-transform: uppercase;
        margin-bottom: 40px;
    }

@media (max-width: 460px) {
    #evaluate-form {
        padding: 30px 0px 0px 0px;
    }


        #evaluate-form .container {
            padding-right: 0px;
            padding-left: 0px;
        }

        #evaluate-form .title {
            font-size: 26px;
            line-height: 26px;
        }

        #evaluate-form .subtitle {
            font-size: 16px;
            line-height: 20px;
            margin-bottom: 30px;
        }

        #evaluate-form .evaluate-logo {
            width: 30%;
        }
}



/*****************************************
* Evaluate Tab
*****************************************/
.evaluate-tab {
    display: flex;
    justify-content: flex-start;
    margin: 0px auto 20px auto;
    width: 100%;
}

    .evaluate-tab .evaluate-item {
        width: calc(100% / 5);
        color: #091836;
        border: 1px solid #ffffff;
        background: #f1f1f1;
        cursor: pointer;
        text-decoration: none;
    }

        .evaluate-tab .evaluate-item.active {
            background: #3170e7;
            color: #ffffff;
        }

        .evaluate-tab .evaluate-item .header {
            font-size: 1.5rem;
            line-height: 1.8rem;
            font-family: 'Sarabun';
            font-weight: bold;
            margin-bottom: 0.3rem;
            text-align: center;
            padding: 15px 15px 10px 15px;
        }

        .evaluate-tab .evaluate-item .subheader {
            font-size: 1rem;
            line-height: 1rem;
            font-family: 'Sarabun';
            margin-bottom: 0.3rem;
            text-align: center;
        }



@media (max-width: 460px) {
    .evaluate-tab {
        margin: 0px auto 0px auto;
    }

        .evaluate-tab .evaluate-item .header {
            font-size: 14px;
            line-height: 14px;
            padding: 10px 5px;
        }
}



/*****************************************
* Evaluate Form
*****************************************/
.evaluate-form {
    margin: 0px auto 20px auto;
    padding: 20px;
    box-shadow: 0px 4px 12px rgba(49,112,231,0.15);
    width: 100%;
}

    .evaluate-form .fa-asterisk {
        font-size: 0.8rem;
        color: #e03126;
    }

    .evaluate-form .big-headline {
        font-size: 40px;
        font-family: 'Sarabun';
        font-weight: bold;
        color: #3170e7;
    }

    .evaluate-form .headline {
        font-size: 26px;
        line-height: 26px;
        font-family: 'Sarabun';
        font-weight: bold;
        margin-bottom: 15px;
        border-bottom: 2px solid #3170e7;
        color: #3170e7;
        display: flex;
        justify-content: flex-start;
        align-items: center;
        padding-bottom: 10px;
    }

        .evaluate-form .headline .headline-no {
            background: #3170e7;
            color: #ffffff;
            border-radius: 30px;
            margin-right: 10px;
            font-size: 16px;
            line-height: 18px;
            width: 26px;
            height: 26px;
            display: flex;
            justify-content: center;
            align-items: center;
        }

    .evaluate-form .subheadline {
        font-size: 16px;
        font-family: 'Sarabun';
        padding-bottom: 10px;
        color: #000000;
        display: flex;
        justify-content: flex-start;
        align-items: center;
    }

    .evaluate-form .remark {
        font-size: 1rem;
        font-family: 'Sarabun';
        font-weight: bold;
        padding-bottom: 10px;
        color: #e22216;
        display: flex;
        justify-content: flex-start;
        align-items: center;
    }

    .evaluate-form .button-action {
        display: flex;
        justify-content: center;
        align-items: center;
        padding-top: 30px;
    }


        .evaluate-form .button-action .btn-save, .evaluate-form .button-action .btn-save:hover {
            font-size: 1rem;
            font-weight: bold;
            line-height: 24px;
            color: #ffffff;
            background: #e22216;
            border: #e22216;
            border-radius: 10px;
            transition: all 0.2s ease-in-out;
            display: block;
            text-align: center;
            text-decoration: none;
            font-family: 'Sarabun';
            outline: none;
            padding: 8px 20px 8px 20px;
            margin-top: 0px;
            width: 150px;
            margin-right: 5px;
        }

        .evaluate-form .button-action .btn-reset, .evaluate-form .button-action .btn-reset:hover {
            font-size: 1rem;
            font-weight: bold;
            line-height: 24px;
            color: #000000;
            background: #ebebeb;
            border-radius: 10px;
            transition: all 0.2s ease-in-out;
            display: block;
            text-align: center;
            text-decoration: none;
            font-family: 'Sarabun';
            outline: none;
            padding: 8px 20px 8px 20px;
            margin-top: 0px;
            width: 150px;
        }




@media (max-width: 460px) {
    .evaluate-form {
        width: 100%;
        margin: 0px auto 0px auto;
    }

        .evaluate-form .headline {
            font-size: 20px;
            line-height: 20px;
        }

            .evaluate-form .headline .headline-no {
                width: 24px;
                height: 24px;
                font-size: 16px;
                line-height: 16px;
            }
}


#activities-tab {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

    #activities-tab .activities-tab-item {
        width: calc(100% / 5);
        text-align: center;
        padding: 10px 20px;
        background: #f1f1f1;
        border: 1px solid #ffffff;
        font-size: 20px;
        font-weight: bold;
        line-height: 22px;
        cursor: pointer;
    }

        #activities-tab .activities-tab-item.active {
            background: #6c757d;
            color: #ffffff;
        }


.activities-tab-content {
    display: none;
    transition: 1s ease all;
}

    .activities-tab-content.active {
        display: block;
    }


/*****************************************
* Add Control Box
*****************************************/
.addcontrol-box {
    background-color: #fafafa;
    border: 1px solid #f1f1f1;
    padding: 15px 15px 0px 15px;
    margin: 5px 0px 15px 0px;
    border-radius: 10px;
}

    .addcontrol-box select {
        background: #fff;
        background-clip: padding-box;
        border: 1px solid #eae8e4;
        border-radius: 10px;
        box-shadow: none;
        transition: border .3s cubic-bezier(.39,.575,.565,1);
        padding: 0 1rem;
        box-sizing: border-box;
        height: 36px;
        font-size: 0.8rem;
        letter-spacing: .025rem;
        line-height: 2rem;
        font-weight: 300;
        color: #19110b;
        line-height: 3rem;
        font-weight: 500;
        width: 100%;
    }

    .addcontrol-box .btn-add, .addcontrol-box .btn-add:hover, .btn-add, .btn-add:hover {
        font-family: 'Sarabun';
        padding: 10px;
        color: #ffffff;
        font-size: 16px;
        font-weight: normal;
        line-height: 16px;
        background-color: #3170e7;
        display: block;
        text-align: center;
        text-decoration: none;
        cursor: pointer;
        margin-top: 28px;
        width: 100%;
        height: 36px;
        border-radius: 10px;
        outline: none;
    }


@media (max-width: 460px) {
    .addcontrol-box {
        padding: 15px;
    }

        .addcontrol-box .btn-add, .addcontrol-box .btn-add:hover {
            margin-top: 0px;
        }
}



/*****************************************
* Process Project
*****************************************/
.process-projects {
}

.process-project {
    padding: 20px;
    position: relative;
    border: 2px solid #e8eefa;
    margin-bottom: 10px;
    border-radius: 10px;
}

    .process-project .close-btn {
        position: absolute;
        top: 10px;
        right: 10px;
        width: 16px;
        height: 16px;
        background: url('/frontend-assets/images/icons/close.png');
        background-repeat: no-repeat;
        background-size: 100% auto;
        background-position: top center;
        cursor: pointer;
    }


    .process-project .process-project-name {
        font-size: 1.2rem;
        line-height: 1.5rem;
        font-family: 'Sarabun';
        font-weight: bold;
        color: #3170e7;
        margin-bottom: 5px;
    }

    .process-project .process-project-detail {
        display: flex;
        justify-content: flex-start;
        align-items: center;
        margin-bottom: 15px;
        font-family: 'Sarabun';
    }

        .process-project .process-project-detail .project-year {
            font-size: 0.8rem;
            line-height: 1.4rem;
            font-weight: bold;
            color: #ffffff;
            background: #28a745;
            border: 1px solid #28a745;
            padding: 3px 10px 0px 10px;
            margin-right: 5px;
        }

        .process-project .process-project-detail .participants-count {
            font-size: 0.8rem;
            line-height: 1.4rem;
            font-weight: bold;
            color: #000000;
            background: #ebcd15;
            border: 1px solid #ebcd15;
            padding: 3px 10px 0px 10px;
            margin-right: 5px;
        }

    .process-project .performance {
        font-size: 16px;
        line-height: 18px;
        font-family: 'Sarabun';
        color: #000000;
    }

/*****************************************
* Honor Awards
*****************************************/
.honor-awards {
}

.honor-award {
    position: relative;
    border: 2px solid #e8eefa;
    margin-bottom: 10px;
    border-radius: 10px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

    .honor-award .close-btn {
        position: absolute;
        top: 10px;
        right: 10px;
        width: 16px;
        height: 16px;
        background: url('/frontend-assets/images/icons/close.png');
        background-repeat: no-repeat;
        background-size: 100% auto;
        background-position: top center;
        cursor: pointer;
    }

    .honor-award .honor-award-year {
        font-size: 30px;
        font-weight: bold;
        font-family: 'Sarabun';
        width: 150px;
        color: #ffffff;
        background: #3170e7;
        padding: 10px 0px;
        text-align: center;
        border-radius: 10px 0px 0px 10px;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
    }

        .honor-award .honor-award-year .header {
            font-size: 16px;
            line-height: 16px;
            font-family: 'Sarabun';
        }

    .honor-award .honor-award-detail {
        width: calc(100% - 150px);
        padding: 20px;
    }


        .honor-award .honor-award-detail .honor-award-name {
            font-size: 24px;
            line-height: 26px;
            font-family: 'Sarabun';
            font-weight: bold;
            color: #000000;
        }

        .honor-award .honor-award-detail .honor-award-organization {
            font-size: 16px;
            font-weight: bold;
            line-height: 18px;
            font-family: 'Sarabun';
            color: #000000;
            margin-bottom: 5px;
        }

        .honor-award .honor-award-detail .honor-award-performance {
            font-size: 16px;
            font-family: 'Sarabun';
            color: #000000;
        }

@media (max-width: 460px) {
    .honor-award {
        border-radius: 10px;
    }


        .honor-award .honor-award-year {
            width: 100%;
            border-radius: 10px 10px 0px 0px;
        }

        .honor-award .honor-award-detail {
            width: 100%;
        }
}


/*****************************************
* Public Health
*****************************************/
.public-healths {
}

.public-health {
    position: relative;
    border: 2px solid #e8eefa;
    margin-bottom: 10px;
    border-radius: 10px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

    .public-health .close-btn {
        position: absolute;
        top: 10px;
        right: 10px;
        width: 16px;
        height: 16px;
        background: url('/frontend-assets/images/icons/close.png');
        background-repeat: no-repeat;
        background-size: 100% auto;
        background-position: top center;
        cursor: pointer;
    }

    .public-health .public-health-year {
        font-size: 2rem;
        font-weight: bold;
        font-family: 'Sarabun';
        width: 150px;
        color: #ffffff;
        background: #3170e7;
        padding: 10px 0px;
        text-align: center;
        border-radius: 10px 0px 0px 10px;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
    }

        .public-health .public-health-year .header {
            font-size: 0.8rem;
            line-height: 1rem;
            font-family: 'Sarabun';
        }

    .public-health .public-health-detail {
        width: calc(100% - 150px);
        padding: 20px;
    }


@media (max-width: 460px) {
    .public-health .public-health-year {
        width: 100%;
        border-radius: 10px 10px 0px 0px;
    }

        .public-health .public-health-year .header {
            font-size: 16px;
            line-height: 16px;
        }


    .public-health .public-health-detail {
        width: 100%;
    }
}


.public-health-item {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 10px;
    flex-wrap: wrap;
}

    .public-health-item .public-health-label {
        width: 80%;
        color: #000000;
        font-size: 1.5rem;
        font-family: 'Sarabun';
    }

    .public-health-item .public-health-control {
        width: 80px;
        height: 40px;
        border: 1px solid #e8eefa;
        text-align: center;
        display: flex;
        justify-content: center;
        align-items: center;
        border-radius: 10px;
        font-size: 1.5rem;
        font-family: 'Sarabun';
        font-weight: bold;
        color: #3170e7;
    }

@media (max-width: 460px) {
    .public-health-item .public-health-label {
        width: 85%;
        font-size: 15px;
    }

    .public-health-item .public-health-control {
        width: 15%;
        height: 35px;
    }
}




/*****************************************
* Profile Box
*****************************************/
#profile-box {
    background: #fbfbfb;
    padding: 5px 0px;
}

.profile-box {
    height: 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 20px;
    font-weight: bold;
    flex-wrap: wrap;
}

    .profile-box .profile-account {
        width: 50%;
    }

    .profile-box .profile-name {
        width: 50%;
        text-align: right;
    }


@media (max-width: 460px) {
    .profile-box {
        font-size: 16px;
    }

        .profile-box .profile-account {
            width: 100%;
        }

        .profile-box .profile-name {
            width: 100%;
            text-align: left;
        }
}




.dhamma-practice {
    position: relative;
    border: 2px solid #e8eefa;
    margin-bottom: 10px;
    border-radius: 10px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    background: #3170e7;
}

    .dhamma-practice .close-btn {
        position: absolute;
        top: 10px;
        right: 10px;
        width: 16px;
        height: 16px;
        background: url('/frontend-assets/images/icons/close.png');
        background-repeat: no-repeat;
        background-size: 100% auto;
        background-position: top center;
        cursor: pointer;
    }

    .dhamma-practice .dhamma-practice-title {
        font-size: 18px;
        font-family: 'Sarabun';
        width: 40%;
        color: #ffffff;
        background: #3170e7;
        padding: 15px 20px 10px 20px;
        border-radius: 10px 0px 0px 10px;
    }


    .dhamma-practice .dhamma-practice-detail {
        width: 60%;
        padding: 10px 20px 0px 20px;
        background: #ffffff;
    }


        .dhamma-practice .dhamma-practice-detail .dhamma-practice-name {
            font-size: 24px;
            line-height: 26px;
            font-family: 'Sarabun';
            font-weight: bold;
            color: #000000;
        }

        .dhamma-practice .dhamma-practice-detail .honor-award-organization {
            font-size: 16px;
            font-weight: bold;
            line-height: 18px;
            font-family: 'Sarabun';
            color: #000000;
            margin-bottom: 5px;
        }

        .dhamma-practice .dhamma-practice-detail .dhamma-practice-performance {
            font-size: 16px;
            font-family: 'Sarabun';
            color: #000000;
        }

@media (max-width: 460px) {
    .dhamma-practice {
        border-radius: 10px;
    }


        .dhamma-practice .dhamma-practice-title {
            width: 100%;
            border-radius: 10px 10px 0px 0px;
        }

        .dhamma-practice .dhamma-practice-detail {
            width: 100%;
        }
}



.appendix {
    position: relative;
    border: 2px solid #eee;
    margin-bottom: 10px;
    border-radius: 10px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

    .appendix .appendix-title {
        font-size: 20px;
        font-weight: 400;
        font-family: 'Sarabun';
        width: 25%;
        color: #000000;
        background: #eee;
        padding: 10px 20px;
        border-radius: 10px 0px 0px 10px;
    }


    .appendix .appendix-detail {
        width: 55%;
        background: #ffffff;
    }

        .appendix .appendix-detail .form-group {
            margin-bottom: 0rem;
        }

            .appendix .appendix-detail .form-group input[type=file] {
                border-radius: 0px;
                height: 55px;
                border: none;
                padding: 10px;
            }


    .appendix .appendix-addcontrol {
        width: 20%;
    }

        .appendix .appendix-addcontrol button {
            width: 100%;
            height: 100%;
            text-decoration: none;
            font-size: 20px;
            font-weight: bold;
            line-height: 18px;
            background: #3170e7;
            color: #ffffff;
            padding: 3px 20px;
            display: flex;
            justify-content: center;
            align-items: center;
            border-radius: 0px 5px 5px 0px;
            margin-top: 0px;
            outline: none;
        }

            .appendix .appendix-addcontrol button.delete-button {
                background: #e22216;
            }




#statistics-chart {
    padding: 100px 0px;
}

.chart-lists {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
}


.highcharts-credits {
    display: none;
}

.highcharts-container {
    font-size: 18px;
    font-family: 'Sarabun';
}

.highcharts-pie-series .highcharts-point {
    stroke: #ede;
    stroke-width: 2px;
}

.highcharts-pie-series .highcharts-data-label-connector {
    stroke: silver;
    stroke-dasharray: 2, 2;
    stroke-width: 2px;
}

.highcharts-figure,
.highcharts-data-table table {
    width: 50%;
    margin: 1em auto;
}

.highcharts-data-table table {
    font-family: Verdana, sans-serif;
    border-collapse: collapse;
    border: 1px solid #ebebeb;
    margin: 10px auto;
    text-align: center;
    width: 100%;
    max-width: 500px;
}

.highcharts-data-table caption {
    padding: 1em 0;
    font-size: 1.2em;
    color: #555;
}

.highcharts-data-table th {
    font-weight: 600;
    padding: 0.5em;
}

.highcharts-data-table td,
.highcharts-data-table th,
.highcharts-data-table caption {
    padding: 0.5em;
}

.highcharts-data-table thead tr,
.highcharts-data-table tr:nth-child(even) {
    background: #f8f8f8;
}

.highcharts-data-table tr:hover {
    background: #f1f7ff;
}


/*****************************************
* Loader
*****************************************/
.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    transition: opacity 0.75s, visibility 0.75s;
    z-index: 999;
}


.loader--hidden {
    opacity: 0;
    visibility: hidden;
}

/*.loader::after {
    content: "";
    width: 75px;
    height: 75px;
    border: 15px solid #dddddd;
    border-top-color: #009578;
    border-radius: 50%;
    animation: loading 0.75s ease infinite;
}*/

@-moz-keyframes blink {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@-webkit-keyframes blink {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}
/* IE */
@-ms-keyframes blink {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}
/* Opera and prob css3 final iteration */
@keyframes blink {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.blink-image {
    width: 200px;
    -moz-animation: blink normal 2s infinite ease-in-out; /* Firefox */
    -webkit-animation: blink normal 2s infinite ease-in-out; /* Webkit */
    -ms-animation: blink normal 2s infinite ease-in-out; /* IE */
    animation: blink normal 2s infinite ease-in-out; /* Opera and prob css3 final iteration */
}


/*****************************************
* Statiscitcs
*****************************************/
#statiscitcs {
    padding: 50px 0px;
}


    #statiscitcs .title {
        text-align: center;
        font-size: 40px;
        line-height: 44px;
        color: #3170e7;
        font-weight: bold;
        text-transform: uppercase;
        margin-bottom: 30px;
    }


@media (max-width: 460px) {
    #statiscitcs .title {
        font-size: 26px;
        line-height: 26px;
    }
}

.statistics-lists {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    box-shadow: 0px 4px 12px rgba(49, 112, 231, 0.15);
    padding: 20px;
}

    .statistics-lists .statistic-item {
        width: 100%;
        padding: 10px 20px;
        display: flex;
        justify-content: flex-start;
        flex-wrap: wrap;
        align-items: center;
        margin: 0px 10px;
    }

        .statistics-lists .statistic-item .statistic-label {
            color: #000000;
            font-size: 22px;
            line-height: 26px;
            font-weight: bold;
            width: 60%;
        }

        .statistics-lists .statistic-item .statistic-value {
            color: #3170e7;
            font-size: 50px;
            line-height: 54px;
            font-weight: bold;
            width: 30%;
            text-align: center;
        }

        .statistics-lists .statistic-item .statistic-unit {
            color: #000000;
            font-size: 22px;
            line-height: 26px;
            font-weight: bold;
            width: 10%;
            text-align: center;
        }


@media (max-width: 460px) {

    .statistics-lists {
        padding: 15px 15px;
    }

        .statistics-lists .statistic-item {
            padding: 0px;
            margin: 0px 0px 30px 0px;
        }

            .statistics-lists .statistic-item .statistic-label {
                width: 100%;
                font-size: 20px;
                line-height: 20px;
                margin-bottom: 5px;
            }

            .statistics-lists .statistic-item .statistic-value {
                width: 70%;
            }

            .statistics-lists .statistic-item .statistic-unit {
                width: 30%;
                font-size: 20px;
                line-height: 20px;
            }
}



/*****************************************
* Media
*****************************************/
#media {
    padding: 40px 0px;
}


    #media .title {
        text-align: center;
        font-size: 40px;
        line-height: 44px;
        color: #3170e7;
        font-weight: bold;
        text-transform: uppercase;
        margin-bottom: 30px;
    }

@media (max-width: 460px) {
    #media .title {
        font-size: 26px;
        line-height: 26px;
    }
}


.media-lists {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    align-items: center;
}


    .media-lists .media-item {
        width: calc(100% / 2 - 20px);
        margin: 10px;
        padding: 5px;
        background: #ffffff;
        border: 5px solid #3170e7;
    }

.videoWrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 */
    padding-top: 25px;
    height: 0;
}

    .videoWrapper iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }


@media (max-width: 460px) {
    .media-lists .media-item {
        width: 100%;
    }
}


/*****************************************
* Search Village
*****************************************/
#search-village {
    padding: 0px 0px 100px 0px;
}


    #search-village .title {
        text-align: center;
        font-size: 40px;
        line-height: 44px;
        color: #3170e7;
        font-weight: bold;
        text-transform: uppercase;
        margin-bottom: 30px;
    }

#search-count {
    padding: 0px 10px;
}

@media (max-width: 460px) {
    #search-village {
        padding: 50px 0px 120px 0px;
    }

        #search-village .title {
            margin-bottom: 20px;
            font-size: 3rem;
        }
}

/*****************************************
* Download Document
*****************************************/
#download-document {
    padding: 100px 0px;
}

@media (max-width: 460px) {
    #download-document {
        padding: 40px 0px;
    }
}


.download-lists {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
}

    .download-lists .download-item {
        width: calc(100% / 2 - 20px);
        box-shadow: 0px 4px 12px rgba(49, 112, 231, 0.15);
        padding: 20px;
        margin: 10px;
    }

        .download-lists .download-item .header {
            font-size: 22px;
            line-height: 26px;
            color: #3170e7;
            font-weight: bold;
            text-transform: uppercase;
            margin-bottom: 10px;
        }

        .download-lists .download-item ul {
            padding-left: 20px;
        }


            .download-lists .download-item ul li a {
                padding: 5px 0px;
                font-size: 18px;
                line-height: 22px;
                text-decoration: underline;
                color: #5B513D;
            }

@media (max-width: 460px) {
    .download-lists .download-item {
        width: 100%;
    }
}


/*****************************************
* Schedule
*****************************************/
#schedule {
    padding: 100px 0px;
    border-top: 1px solid #f3f3f3;
}

    #schedule .title {
        font-size: 40px;
        line-height: 44px;
        color: #3170e7;
        font-weight: bold;
        text-transform: uppercase;
        margin-bottom: 15px;
    }

    #schedule ul {
        font-size: 18px;
        line-height: 26px;
    }


@media (max-width: 460px) {
    #schedule {
        padding: 40px 0px;
    }

        #schedule .title {
            font-size: 26px;
            line-height: 26px;
        }

}


/*****************************************
* Score Lists
*****************************************/
.score-lists {
    margin-bottom: 20px;
}


    .score-lists .score-item {
        display: flex;
        justify-content: flex-start;
        flex-wrap: wrap;
        margin-bottom: 20px;
        box-shadow: 0px 4px 12px rgba(49, 112, 231, 0.15);
    }

        .score-lists .score-item .village-info {
            width: 45%;
            padding: 20px;
            border-right: 1px solid #efefef;
        }

            .score-lists .score-item .village-info .village-name {
                font-size: 20px;
                line-height: 24px;
                font-weight: 600;
                color: #3170e7;
                padding-bottom: 5px;
            }

            .score-lists .score-item .village-info .village-address {
                font-size: 16px;
                line-height: 20px;
                padding-bottom: 5px;
            }

            .score-lists .score-item .village-info .village-action {
                display: flex;
                justify-content: flex-start;
                flex-wrap: wrap;
                margin-bottom: 10px;
            }

                .score-lists .score-item .village-info .village-action .village-action-item {
                    width: calc(100% / 3);
                    padding: 5px;
                }


        .score-lists .score-item .village-committee {
            width: 20%;
            padding: 20px;
        }

            .score-lists .score-item .village-committee .village-committee-header {
                font-size: 20px;
                line-height: 24px;
                font-weight: 600;
                color: #3170e7;
                padding-bottom: 5px;
            }

            .score-lists .score-item .village-committee .village-commmitee-lists {
            }


        .score-lists .score-item .village-score {
            width: 20%;
            font-size: 16px;
            line-height: 20px;
            display: flex;
            justify-content: center;
            align-items: center;
            flex-direction: column;
            background: #f3f3f3;
            height: 200px;
        }

            .score-lists .score-item .village-score .calculate-score-label {
                font-size: 16px;
                line-height: 20px;
                font-weight: bold;
            }

            .score-lists .score-item .village-score .calculate-score-value {
                font-size: 46px;
                line-height: 50px;
                font-weight: bold;
            }

        .score-lists .score-item .village-evaluate {
            width: 15%;
            padding: 20px;
        }
