/**
* Template Name: Moderna - v2.2.0
* Template URL: https://bootstrapmade.com/free-bootstrap-template-corporate-moderna/
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/


/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/

body {
    font-family: 'Noto Sans TC', sans-serif;
    color: #444;
    background: url(/_res/img/bg.jpg) center center no-repeat;
    background-size: cover;
}

a {
    color: #4fa6d5;
}

a:hover {
    color: #45beff;
    text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6,
.font-primary {
    font-family: 'Noto Sans TC', sans-serif;
}

canvas {
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
}


/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/

.back-to-top {
    position: fixed;
    display: none;
    width: 40px;
    height: 70px;
    right: 15px;
    bottom: 95px;
    background-size: 120%;
    color: #000;
    transition: all 0.5s ease-in-out;
    z-index: 99999;
    font-size: 14px;
    line-height: 105px;
    text-align: center;
    text-shadow: 0 0 3px #fff;
}

.back-to-top:hover {
    color: #000;
    transition: all 0.5s ease-in-out;
}

.back-to-top:before {
    content: '';
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 15px 20px 15px;
    border-color: transparent transparent #ffae00 transparent;
    position: absolute;
    top: 20px;
    left: 5px;
    z-index: 99998;
    opacity: 0.5;
    transition: all 0.5s ease-in-out;
}

.back-to-top:hover:before {
    top: 10px;
    opacity: .3;
}


/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/

#header {
    height: 90px;
    z-index: 997;
    transition: all 0.5s;
    padding: 0;
    width: 100%;
    max-width: 950px;
    margin: 0 auto;
}

#header.header-transparent {
    background: none;
}

#header.header-scrolled {
    background: #254c77;
    height: 60px;
    padding: 0;
    box-shadow: 0 5px 10px rgba(0, 0, 0, .05);
}

#header .logo h1 {
    font-size: 50px;
    margin: 44px auto;
    padding: 0;
    line-height: 1;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
    position: relative;
    transition: all 0.3s ease-in-out;
    color: #fff;
    text-align: center;
    text-shadow: 0 5px 7px rgb(0 0 0 / 50%);
}

#header.header-scrolled .logo h1 {
    font-size: 32px;
    margin: 14px;
    text-align: left;
}

@media(max-width:768px) {
    #header .logo h1 {
        margin: 22px auto;
    }
}

@media(max-width:580px) {
    #header .logo h1 {
        font-size: 36px;
        margin: 13px auto;
    }
}

#main {
    margin-top: 90px;
}

#header .container,
.breadcrumbs .container {
    max-width: 1920px;
    padding: 0;
}

.logo {
    white-space: nowrap;
}


/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/


/* Desktop Navigation */

.nav-menu,
.nav-menu * {
    margin: 0;
    padding: 0;
    list-style: none;
}

.nav-menu {
    position: absolute;
    top: 0;
    right: 0;
    margin: 0 auto;
    transition: all 0.3s ease-in-out;
    border-radius: 0 0 7px 7px;
    background-color: rgb(0 0 0 / 30%);
}

.header-scrolled .nav-menu {
    margin-top: 0;
}

.nav-menu>ul>li {
    position: relative;
    white-space: nowrap;
    float: left;
}

.nav-menu a {
    display: block;
    position: relative;
    color: #fff;
    padding: 10px 20px;
    transition: 0.3s;
    font-size: 18px;
    font-family: 'Noto Sans TC', sans-serif;
}

.nav-menu>ul>li>a {
    height: 50px;
    transition: all 0.3s ease-in-out;
}

#header.header-scrolled .nav-menu>ul>li>a {
    padding: 0 20px;
    height: 60px;
    line-height: 60px;
}

.nav-menu a:hover,
.nav-menu .active>a,
.nav-menu li:hover>a {
    color: #ffeeb4;
    text-decoration: none;
}

.nav-menu .drop-down ul {
    display: block;
    position: absolute;
    left: 0;
    top: calc(100% - 30px);
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    padding: 10px 0;
    background: #fff;
    box-shadow: 0px 15px 30px rgba(127, 137, 161, 0.25);
    transition: ease all 0.3s;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 7px;
}

.nav-menu .drop-down:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
}

.nav-menu .drop-down li {
    min-width: 180px;
    position: relative;
}

.nav-menu .drop-down ul a {
    padding: 10px 20px;
    font-size: 16px;
    font-weight: 300;
    text-transform: none;
    color: #000;
}

.nav-menu .drop-down ul a:hover,
.nav-menu .drop-down ul .active>a,
.nav-menu .drop-down ul li:hover>a {
    color: #fff;
    background-color: #00a9d0;
}

.nav-menu .drop-down.active>a:after,
.nav-menu .drop-down:hover>a:after {
    content: "\ea67";
    font-family: IcoFont;
    position: absolute;
    top: 22px;
    left: 50%;
    transform: translateX(-50%) rotate(180deg);
    font-size: 30px;
    color: #fbcd69;
}

.header-scrolled .nav-menu .drop-down.active>a:after {
    top: 25px;
}

.nav-menu .drop-down:hover>a:after {
    color: rgba(255, 255, 255, .75);
}

.nav-menu .drop-down .drop-down ul {
    top: 0;
}

.nav-menu .drop-down .drop-down:hover>ul {
    opacity: 1;
    top: 0;
    left: 100%;
}

.nav-menu .drop-down .drop-down>a {
    padding-right: 35px;
}

.nav-menu .drop-down .drop-down>a:after {
    content: "\eaa0";
    font-family: IcoFont;
    position: absolute;
    right: 15px;
}

@media (max-width: 1366px) {
    .nav-menu .drop-down .drop-down ul {
        left: -90%;
    }
    .nav-menu .drop-down .drop-down:hover>ul {
        left: -100%;
    }
    .nav-menu .drop-down .drop-down>a:after {
        content: "\ea9d";
    }
}

@media (max-width: 580px) {
    #header {
        height: 60px;
    }
    #header .logo h1 a .title,
    #header.header-scrolled .logo h1 a .title {
        font-size: 27px;
        top: -10px;
        margin-left: 5px;
    }
    #header .logo h1 a .title:before,
    #header.header-scrolled .logo h1 a .title:before {
        height: 24px;
        top: 10px;
    }
    #header .logo h1 a .small {
        font-size: 12px;
        top: 14px;
    }
    #header.header-scrolled .logo h1 a .small {
        display: none;
    }
    #header .logo img,
    #header.header-scrolled .logo img {
        transform: scale(0.7);
        margin: -15px 0 0;
    }
    #header .nav-menu>ul>li>a {
        padding: 0 20px;
        height: 40px;
    }
    #main {
        margin-top: 60px;
    }
}


/* Mobile Navigation */

.mobile-nav {
    position: fixed;
    top: 0;
    bottom: 0;
    z-index: 9999;
    overflow-y: auto;
    left: -260px;
    width: 260px;
    padding-top: 18px;
    background: #516c91;
    transition: 0.4s;
}

.mobile-nav * {
    margin: 0;
    padding: 0;
    list-style: none;
}

.mobile-nav .logo h1 {
    color: #fff;
    font-size: 26px;
    padding: 0 18px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, .3);
    margin-bottom: 15px;
}

.mobile-nav a {
    display: block;
    position: relative;
    color: #e9e9e9;
    padding: 10px 20px;
    font-weight: 500;
}

.mobile-nav a:hover,
.mobile-nav .active>a,
.mobile-nav li:hover>a {
    color: #FFF;
    text-decoration: none;
}

.mobile-nav .drop-down.active>a {
    background-color: rgb(23 66 111 / 75%);
}

.mobile-nav .drop-down>a:after {
    content: "\eaa0";
    font-family: IcoFont;
    padding-left: 10px;
    position: absolute;
    right: 15px;
}

.mobile-nav .active.drop-down>a:after {
    content: "\ea99";
}

.mobile-nav .drop-down>a {
    padding-right: 35px;
}

.mobile-nav .drop-down ul {
    display: none;
    overflow: hidden;
    background-color: rgb(23 66 111 / 40%);
}

.mobile-nav .drop-down li {
    padding-left: 20px;
}

.mobile-nav-toggle {
    position: fixed;
    right: 15px;
    top: 15px;
    z-index: 9998;
    border: 0;
    background: none;
    font-size: 24px;
    transition: all 0.4s;
    outline: none !important;
    line-height: 1;
    cursor: pointer;
    text-align: right;
}

.mobile-nav-toggle i {
    color: #fff;
    font-size: 130%;
}

.mobile-nav-overly {
    width: 100%;
    height: 100%;
    z-index: 9997;
    top: 0;
    left: 0;
    position: fixed;
    background: rgb(49 51 78 / 90%);
    overflow: hidden;
    display: none;
}

.mobile-nav-active {
    overflow: hidden;
}

.mobile-nav-active .mobile-nav {
    left: 0;
}

.mobile-nav-active .mobile-nav-toggle i {
    color: #fff;
}


/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/

section {
    padding: 30px 0;
    max-width: 1920px;
    margin: 0 auto;
}

.section-bg {
    background-color: #ededed;
}

.section-title {
    text-align: center;
    padding-bottom: 30px;
}

.section-title h2 {
    font-size: 28px;
    font-weight: 400;
    margin-bottom: 20px;
    padding-bottom: 20px;
    position: relative;
}

.section-title h2::before {
    content: '';
    position: absolute;
    display: block;
    width: 120px;
    height: 1px;
    background: #ddd;
    bottom: 1px;
    left: calc(50% - 60px);
}

.section-title h2::after {
    content: '';
    position: absolute;
    display: block;
    width: 40px;
    height: 3px;
    background: #68A4C4;
    bottom: 0;
    left: calc(50% - 20px);
}

.section-title p {
    margin-bottom: 0;
}

.ibox.card {
    padding: 10px;
    margin: 0 0 30px 0;
    border: 2px solid transparent;
}

.ibox.card:hover {
    border: 2px solid rgba(0, 0, 0, .2);
}

.ibox.card .card-title {
    font-size: 18px;
    color: #fff;
    font-weight: 400;
}

.ibox.card .money {
    font-size: 38px;
    color: #fff;
    font-weight: bold;
    transition: all 0.3s ease-in-out;
}

.ibox.card:hover .money {
    text-shadow: 0 7px 5px rgba(0, 0, 0, .3);
    transform: translateY(-5px);
}

.ibox.card .card-body {
    padding: 0.3rem 0.6rem;
}

.ibox.card .card-body.ico-money:after {
    content: '$';
    position: absolute;
    right: 15px;
    top: 45%;
    transform: translateY(-50%);
    font-size: 78px;
    font-weight: bold;
    color: #fff;
    opacity: .1;
    transition: all 0.3s ease-in-out;
}

.ibox.card:hover .card-body.ico-money:after {
    right: 15px;
    top: 0;
    opacity: .15;
    transform: scale(2);
    text-shadow: 5px 5px 10px #000;
}

.ibox.card .card-body.ico-money.small:after {
    top: 10%;
    font-size: 38px;
}

.ibox.card:hover .card-body.ico-money.small:after {
    top: 20%;
    opacity: .1;
    transform: scale(5);
}

.ibox-c1 {
    background-color: #727bb3;
}

.ibox-c2 {
    background-color: #8cac65;
}

.ibox-c3 {
    background-color: #ac766a;
}

.ibox-c4 {
    background-color: #4f72a2;
}

.ibox-c5 {
    background-color: #aca665;
}

.ibox-c6 {
    background-color: #328888;
}

.ibox.card.info {
    padding: 30px 30px;
    background-color: rgba(255, 255, 255, .5);
    box-shadow: 0 10px 20px 0 rgba(0, 0, 0, 0.1);
}

.ibox.card.info .card-title {
    color: #000;
    font-weight: bold;
    font-size: 22px;
}

.ibox.card.info .stitle {
    color: #328888;
    font-weight: bold;
}

.ibox.card.info p {
    font-size: 18px;
}

.ibox.card.info .Scope {
    display: none;
}

.ibox.card.info .Scope.active {
    display: block;
}

.btn-chart {
    width: 200px;
    height: 50px;
    max-width: 45%;
    color: #000;
    background-color: #ededed;
    margin: 0 1vw;
    border: 1px solid #ccc;
    box-shadow: 0 3px 7px rgba(0, 0, 0, .3);
}

.btn-chart:hover,
.btn-chart.active {
    color: #fff;
    background-color: #1ab8b8;
    box-shadow: none;
}

.btn-chart.active {
    box-shadow: none;
}

.ichart {
    height: 500px;
    padding-top: 60px;
}

.ichart p.info {
    top: 15px;
}

.color0 {
    color: #000;
}

.color1 {
    color: #727bb3;
}

.color2 {
    color: #729c3e;
}

.color3 {
    color: #c24545;
}

.color4 {
    color: #50b1ab;
}

.color5 {
    color: #328888;
}

.icofont-1_5x {
    font-size: 1.5em;
}

.overflow-visible {
    overflow: visible;
}


/*--------------------------------------------------------------
# topbanner
--------------------------------------------------------------*/

.topbanner {
    margin: -91px 0 0;
    padding: 0;
    width: 100%;
    overflow: hidden;
    height: 365px;
    background: #ededed url(/_res/img/city.jpg) center 0 no-repeat;
}

@media(max-width:580px) {
    .topbanner {
        height: 240px;
        background-size: 372%;
    }
}

.gradient1 {
    background: #25c2e6;
}

.inshadow {
    background-color: #f4f4f4;
    border: 1px solid #328888;
}

.inshadow[readonly] {
    box-shadow: none;
}

.register {
    background-color: #00a9d0;
    border-color: #00a9d0;
}

.rbox {
    padding: 0;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    margin: 0 0 15px 0;
    border-radius: 30px;
    width: 100%;
    min-height: 550px;
    background-color: #fff;
    overflow: hidden;
}

.align-items-sm-start img {
    margin: 30px auto;
}

@media(max-width:768px) {
    .rbox {
        border-radius: 15px;
    }
}


/*--------------------------------------------------------------
# Member
--------------------------------------------------------------*/

.Member {
    margin: -61px auto 0;
    min-height: calc(100vh - 30px);
}

.Member .container {
    max-width: 1920px;
    padding: 100px 108px 30px;
}

.Member.mini .container {
    max-width: 1160px;
}

.Member img.img-fluid {
    margin: 20px auto;
    max-width: 100%;
    max-height: 200px;
}

.Member h3 {
    font-size: 36px;
    font-weight: bold;
    padding: 0.6em 0;
    color: #000;
}

.Member .r_input {
    background-color: #e7e7e7;
    border-radius: 30px;
    height: 60px;
    padding: 1em 1em 1em 75px;
    margin: 0 auto;
    max-width: 315px;
}

.inshadow::placeholder {
    color: #777;
    font-size: 0.9em;
}

.Member .btn-login {
    border-radius: 30px;
    height: 60px;
    padding: 1em;
    margin: 5px auto;
    max-width: 315px;
    line-height: 1em;
    background-color: #00a9d0;
    border-color: #00a9d0;
}

.Member .login,
.Member .pw {
    margin: 0;
    position: relative;
}

.Member .login:after {
    position: absolute;
    left: 5px;
    top: 0;
    height: 60px;
    width: 60px;
    content: '';
    background: url(/_res/img/member.png) 0 0 no-repeat;
}

.Member .pw:after {
    position: absolute;
    left: 5px;
    top: 0;
    height: 60px;
    width: 60px;
    content: '';
    background: url(/_res/img/member.png) -106px 0 no-repeat;
}

.Member .icofont-long-arrow-right {
    font-size: 2em;
    position: absolute;
    margin: -3px 0;
}

.or {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 15px;
    border-left: 1px solid #ccc;
}

.Member .or {
    height: 232px;
}

.or:after {
    content: '或';
    font-size: 18px;
    font-weight: bold;
    color: #666;
    position: absolute;
    background-color: #fff;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    height: 60px;
    width: 30px;
    line-height: 60px;
}

.btn-link2 {
    color: #17a3c3;
    border-radius: 0;
}

.btn-link2:hover {
    border-bottom: 1px solid;
}

.link {
    border-bottom: 1px solid;
}

.link:hover {
    color: #000;
}

.btn-addcarnumber {
    position: relative;
    font-size: 16px;
    text-align: center;
    float: right;
    cursor: pointer;
    margin: -5px 30px 10px 0;
    line-height: 26px;
}

.btn-addcarnumber strong {
    position: absolute;
    right: -22px;
    font-size: 24px;
}

.del_g {
    position: relative;
}

.del_g .delete {
    position: absolute;
    right: -36px;
    top: 0;
    font-size: 30px;
    color: #c00000;
    font-weight: bold;
    width: 40px;
    height: 40px;
    border-radius: 30px;
    transform: rotate(45deg);
    line-height: 40px;
    text-align: center;
    cursor: pointer;
}

.PInfo .form-control-label {
    text-align: right;
    float: right;
}

.dropdown-menu {
    box-shadow: 0 5px 10px rgba(0, 0, 0, .25)
}

.smsvalidation {
    display: none;
}

.Spoint {
    text-align: right;
    font-size: 16px;
    padding: 15px 20px;
}

.point {
    font-weight: bold;
    font-size: 28px;
    padding: 0 10px;
    color: #ff8600;
    font-family: "Century Gothic";
}

.money {
    font-weight: bold;
    color: #c70000;
    font-size: 18px;
    font-family: "Century Gothic";
}

.offical-name {
    font-size: 24pt;
    font-weight: bold;
    text-align: center;
    margin: 20px auto;
    max-width: 100%;
    max-height: 200px;
    color: #fff;
}

@media(max-width:768px) {
    .Member .container {
        padding: 40px 15px 30px;
    }
    .rbox {
        border-radius: 15px;
    }
    .PInfo .form-control-label {
        text-align: left;
        float: left;
    }

    .offical-name {
        margin: 50px auto;
    }
}

@media(max-width:580px) {
    .Member img.img-fluid {
        width: 50%;
    }
    .Member h3 {
        font-size: 32px;
        padding: 0 0 0.6em;
    }
    .Member .r_input {
        font-size: 1rem;
    }
    .time_all {
        text-align: left;
    }
    .PInfo .form-control-label {
        text-align: left;
        float: left;
        margin-bottom: 0;
    }
    .svalue.p-5 {
        padding: 1rem!important;
    }
}

.required {
    color: #f00;
}

i.fa.fa-chevron-right:after {
    content: '▶';
    font-style: normal;
}

i.fa.fa-chevron-left:after {
    content: '◀';
    font-style: normal;
}

.grid-striped {
    width: 100%;
}

.grid-striped .border-bottom {
    border-bottom: 2px solid #25c2e6!important;
}

.grid-striped .row {
    border-bottom: 2px solid #eee;
}

.grid-striped .row:nth-of-type(odd) {
    background-color: rgba(0, 0, 0, .05);
}

.grid-striped .list-header {
    background-color: #e3faff !important;
}

.grid-striped .col {
    align-self: center;
}

.drops {
    position: absolute;
    width: 90%;
    height: 300px;
}

.drop {
    position: absolute;
    top: 64%;
    left: 38%;
    width: 50px;
    height: 50px;
    background: transparent;
    border-radius: 50%;
    box-shadow: inset 10px 10px 10px rgba(0, 0, 0, .1), 5px 10px 10px rgba(0, 0, 0, .1), 3px 7px 10px rgba(0, 0, 0, .3), inset -10px -10px 15px rgba(255, 255, 255, .5);
}

.drop::before {
    content: '';
    position: absolute;
    width: 5px;
    height: 5px;
    background-color: #fff;
    top: 14px;
    left: 15px;
    border-radius: 49% 51% 44% 56% / 49% 53% 47% 51%;
}

.drop::after {
    content: '';
    position: absolute;
    width: 3px;
    height: 3px;
    background-color: #fff;
    top: 11px;
    left: 23px;
    border-radius: 49% 51% 44% 56% / 49% 53% 47% 51%;
}

.drop:nth-child(1) {
    top: 77%;
    left: 55%;
}

.drop:nth-child(2) {
    transform: scale(.5) translate(-171px, -203px);
    border-radius: 50% 50%;
}

.drop:nth-child(3) {
    transform: scale(.5) translate(-100px, -325px);
    border-radius: 50% 50%;
}

.drop:nth-child(4) {
    transform: scale(.35) translate(416px, -306px);
    border-radius: 50% 50%;
}

.drop:nth-child(5) {
    transform: scale(.25) translate(554px, -115px);
    border-radius: 50% 50%;
}

.drop:nth-child(6) {
    transform: scale(0.35) translate(-166px, -45px);
    border-radius: 50% 50%;
}

.drop:nth-child(7) {
    transform: scale(0.65) translate(174px, -253px);
    border-radius: 50% 50%;
}

@media(max-width:580px) {
    .drop {
        top: 87px;
        left: 87px;
    }
        .drop:nth-child(1) {
            top: 100px;
            left: 87px;
        }
    .drop:nth-child(3) {
        transform: scale(.5) translate(354px, -104px);
    }
    .drop:nth-child(4) {
        transform: scale(.35) translate(416px, -232px);
    }
        .drop:nth-child(5) {
            transform: scale(.35) translate(416px, -32px);
        }
    .drop:nth-child(7) {
        transform: scale(0.65) translate(-131px, 64px);
    }
}
 