@font-face {
    font-family: 'cathay_sansregular';
    src: url('../fonts/cathaysans/cathaysans_rg-webfont.woff2') format('woff2'),
    url('../fonts/cathaysans/cathaysans_rg-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'cathay_sansbold';
    src: url('../fonts/cathaysans/cathaysans_bd-webfont.woff2') format('woff2'),
    url('../fonts/cathaysans/cathaysans_bd-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

body {
  font-family: 'cathay_sansregular', Arial, sans-serif, "微軟正黑體"; font-size:16px; /*20240206*/
}

input, textarea, select, option {
    font-family: Arial, sans-serif, "微軟正黑體";
}

/*Scroll bar*/
::-webkit-scrollbar {
    width: 5px;
    height: 5px;
}

::-webkit-scrollbar-track {
    background: #fff;
    -webkit-box-shadow: inset 1px 1px 2px rgba(0, 0, 0, 0.1);
}

::-webkit-scrollbar-thumb {
    background: #ccc;
    -webkit-box-shadow: inset 1px 1px 2px rgba(0, 0, 0, 0.2);
}

::-webkit-scrollbar-thumb:hover {
    background: #aaa;
}

::-webkit-scrollbar-thumb:active {
    background: #888;
    -webkit-box-shadow: inset 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.fat-font {
    font-family: 'cathay_sansregular', Verdana, Arial, sans-serif, "微軟正黑體";
}

.row {
    margin: 0;
}

.float-right {
    float: right;
}

.coming-soon {
    text-align: center;
    color: #AAA;
    margin: 30px 0;
}

.container {
    width: 100%;
}

.back-to-top {
    position: fixed;
    right: 15px;
    bottom: 15px;
}

.back-to-top a {
    opacity: 0.3;
    color: #FFF;
    background: #000;
    padding: 15px;
    text-decoration: none;
    font-size: 1.5em;
    border-radius: 8px;
}

.back-to-top a:hover {
    opacity: 0.7;
}

.navbar {
    min-height: 0px;
}

.navbar-toggle {
    position: relative;
    float: left;
    margin: 0 0 0 10px;
    padding: 5px 10px;
}

.navbar .navbar-header .fa {
    font-size: 1.3em;
    line-height: 1.5em;
    color: #fff;
}

.btn-primary {
    background-color: #006465;
    border: 0px;
    background-image: none;
}

.btn-primary:hover {
    background-color: #be3030;
}

.btn-primary:active:focus, .btn-primary:focus {
    background-color: #444;
    outline: 0;
}

.btn-blue {
    background-color: #006465;
    border: 0px;
    background-image: none;
    color: #EEE;
}

.btn-blue:hover {
    background-color: #be3030;
    color: #EEE;
}

.btn-blue:active:focus, .btn-blue:focus {
    background-color: #006465;
    outline: 0;
    color: #EEE;
}

.btn-blueB {
    background-color: #006465;
    border: 0px;
    background-image: none;
    color: #fff;
    border-radius: 0;
}

.btn-blueB:hover {
    background-color: #be3030;
    color: #fff;
}

.btn-blueB:active:focus, .btn-blueB:focus {
    background-color: #006465;
    outline: 0;
    color: #EEE;
}

.btn-blueC {
    background-color: #FFF;
    border: 1px #CCC solid;
    background-image: none;
    color: #333;
    border-radius: 0;
}

.btn-blueC:hover {
    background-color: #EEE;
}

.btn-blueC:active:focus, .btn-blueC:focus {
    background-color: #EEE;
    outline: 0;
}
/*20240208*/
.btn-blueD {
  background-color: #d69f7d;
  background-image: none;
  color: #fff;
  border-radius: 0;
  font-size: 15px;
  padding: 6px 12px 4px 12px;
}
.btn-blueD:hover {
  background-color: #b3754f;
  color: #fff;
}
.btn-blueD:active:focus,
.btn-blueD:focus {
  background-color: #b3754f;
  color: #fff;
  outline: 0;
}
.alert {
    padding: 8px 15px;
    background-image: none;
    margin: 0 0 10px 0;
  font-size:14px; /*20240206*/
}

.alert-success {
    background-color: #CAF0AE;
}

.alert-danger {
    background-color: #EECBCB;
}

@media (min-width: 768px) {
    .logo-frame {
        padding-top: 47px;
        border-bottom: 2px #fff solid;
        background: #fff;
        position: relative;
        display: inline-block;
        width: 100%;
    }

    /*2019UPDATE*/
    .logo-frame .col-md-10.col-sm-12 {
        z-index: 1;
    }

    .navbar {
        margin: 0;
        border-radius: 0;
        margin-bottom: 0;
        border-bottom: 2px solid #006564;
    }

    /*2022UPDATE*/
    .navbar .container {
        padding: 0;
    }

    .navbar-collapse {
        padding: 0;
        border: 0px;
    }

    .navbar-nav {
        float: none;
        margin: 0;
        text-align: center;
        width: 100%;
        padding: 0;
        display: flex;
    }

    /*2022UPDATE*/
    .navbar-nav > li {
        float: none;
        width: initial;
        display: inline-block;
        border-bottom: 3px transparent solid;
        -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
        flex: 1 1 auto;
        text-align: center;
    }

    .navbar-nav > li.active,
    .navbar-nav > li:hover,
    .navbar-nav > li:focus,
    .navbar-nav > li:active:focus {
        border-color: #006564;
    }

    /*2022UPDATE*/
    .navbar-nav > li:first-child {
        width: 9%;
    }

    /*.navbar-nav > li:nth-child(2) {width:15%;}
    .navbar-nav > li:nth-child(3) {width:15%;}
    .navbar-nav > li:nth-child(4) {width:14%;}
    .navbar-nav > li:nth-child(5) {width:14%;}
    .navbar-nav > li:nth-child(6) {width:15%;}
    .navbar-nav > li:nth-child(7) {width:15%;}*/
    .navbar-nav > li > a {
        padding: 10px 0 5px 0;
        text-align: center;
        color: #006564;
        font-weight: bold;
        font-size: 15px;
        text-shadow: none;
    }

    /*2022UPDATE*/
    .navbar-nav > li > a:focus,
    .navbar-nav > li > a:hover {
        background-color: #FFF;
        color: #006564;
    }

    .main-frame {
    /* 2024 */
    background: #0c4550 url(../images/Sportstar_bg.png) no-repeat center top;
    background-size: 100% auto;
    /*background: #82d4cf url(../images/Sportstar_bg.png) no-repeat center top;
    background-size: cover;*/
  }/*2023UPDATE*/
    .main-frame .center-frame {
        min-height: 600px;
        background-color: rgba(255, 255, 255, 0.9);
    }


}

@media (max-width: 767px) {
    .logo-frame {
        background: #fff;
    }


    .navbar-nav {
        margin: 0 -15px;
    }

    .navbar-header {
        background: #006465;
    }

    .navbar-collapse {
        background-color: #025052;
    }

    .nav > li.active > a,
    .nav > li > a:hover,
    .nav > li > a:focus {
        text-decoration: none;
        background-color: #1a7a7c;
    }

    .navbar-collapse a {
        color: #EEE;
    }

    .mobile-nav-tools {
        background: #006465;
        padding: 8px 15px;
    }

    .mobile-nav-tools button {
        background-color: #006465;
        color: #fff;
        font-size: 1.2em;
        border-radius: 0;
    }

    .mobile-nav-tools button:hover,
    .mobile-nav-tools button:active:focus,
    .mobile-nav-tools button:focus {
        background-color: #fff;
        color: #006465;
        outline: 0;
    }

    .mobile-nav-tools button:disabled:hover,
    .mobile-nav-tools button:disabled {
        background-color: #fff;
        color: #006465;
        opacity: 0.5;
        cursor: default;
    }

    .mobile-nav-tools button.btn-share:hover,
    .mobile-nav-tools button.btn-share:active:focus,
    .mobile-nav-tools button.btn-share:focus {
        background-color: #006465;
        color: #18afad;
        outline: 0;
    }

    .at-resp-share-element .at-icon, .at-resp-share-element .at-label {
        fill: #fff !important;
    }
}

.banner-bar-web {
    width: 100%;
}

.banner-bar-web .web-nav-tools {
    position: absolute;
    right: 0px;
    top: -40px;
}

.banner-bar-web .web-nav-tools button {
    background-color: transparent;
    color: #005e62;
    font-size: 1.3em;
    border-radius: 0;
    padding: 6px 4px 1px 4px;
    line-height: 1;
}

/*2019UPDATE*/
.banner-bar-web .web-nav-tools button:hover,
.banner-bar-web .web-nav-tools button:active:focus,
.banner-bar-web .web-nav-tools button:focus {
    background-color: #005e62;
    color: #fff;
    outline: 0;
}

/*2019UPDATE*/
.banner-bar-web .web-nav-tools button:disabled:hover,
.banner-bar-web .web-nav-tools button:disabled {
    color: #006564;
    background-color: #fff;
    cursor: default;
}

.banner-bar-web .web-nav-tools button.btn-share:hover,
.banner-bar-web .web-nav-tools button.btn-share:active:focus,
.banner-bar-web .web-nav-tools button.btn-share:focus {
    background-color: transparent;
    color: #18afad;
    outline: 0;
}

/*override plugin*/
.banner-bar-web .web-nav-tools .addthis_inline_share_toolbox {
    padding-top: 0 !important;
}

.banner-bar-web .web-nav-tools .addthis_inline_share_toolbox .at-share-btn {
    background-color: transparent !important;
}

.banner-bar-web .banner {
    text-align: center;
    margin: 0 -15px;
}

.banner-bar-web .banner img {
    width: 100%;
    max-width: 1160px;
}

.banner-bar-mobile {
    border-bottom: 2px #006465 solid;
    margin: 0px -15px;
    padding-bottom: 5px;
    padding-top: 40px;
}

.banner-bar-mobile .banner {
    text-align: center;
    background: #fff;
}

/*2019UPDATE*/
.banner-bar-mobile .banner img {
    width: 90%;
    max-width: 498px;
}

/*
.logo-frame>div,
.main-frame>div {min-height:0px;}
*/

.sponsor-area {
    text-align: center;
    padding: 18px 0px;
    position: relative;
}
/*2023UPDATE*/
@media (min-width: 768px) {
    .sponsor-area .separator {
        border-left: 1px solid #006564;
        display: inline-block;
        margin: 0 5px;
        height: 100px;
        vertical-align: top;
    }
}
.sponsor-area:before {
    width: 100%;
    height: 20px;
    background: #fff;
    content: '';
    top: -20px;
    position: absolute;
}

.each-sponsor {
    display: inline-block;
}

.each-sponsor .toping {
    text-align: center;
    color: #CCC;
    height: 40px;
    font-size: 13px;
    padding: 0 5px;
    z-index: 2;
    position: relative;
}

.each-sponsor .logo {
    margin-top: -20px;
    z-index: 1;
}

.each-sponsor .logo img {
    height: 95px;
}

@media only screen and (min-width: 1400px) and (max-width: 1600px) {
    .each-sponsor .logo img {
        height: 77px;
    }
}

@media only screen and (min-width: 1601px) and (max-width: 1700px) {
    .each-sponsor .logo img {
        height: 89px;
    }
}

@media (max-width: 1399px) {
    .each-sponsor .logo img {
        height: 85px;
    }
}

@media (max-width: 470px) {
    .each-sponsor {
        display: block;
        margin-bottom: 10px;
    }

    .each-sponsor .toping {
        height: auto;
    }

    .each-sponsor .logo {
        margin-top: 0px;
    }
}

.footer-area {
    background: #006564;
    text-align: center;
    padding-bottom: 10px;
  font-size:14px;  /*20240206*/
}

/*2019UPDATE*/
.footer-area a, .footer-area span {
    color: #fff;
    text-decoration: none;
    line-height: 25px;
}

.footer-area a:hover, .footer-area a:active:focus {
    opacity: .7;
}

.footer-area .footer-block {
    margin: 20px 0 20px 0;
}

.footer-area .footer-block a {
    padding: 0px 20px;
    white-space: nowrap;
}

@media (max-width: 470px) {
    .footer-area .footer-block {
        margin: 10px 0 25px 0;
    }

    .footer-area .footer-block a {
        display: block;
        padding: 5px 20px;
    }

    .footer-area .footer-block + span {
        display: block;
        padding-bottom: 0px;
    }
}

.footer-area .bl-link {
    color: #DDD;
}

.main-frame {
    position: relative;
}

.main-frame .center-frame {
    padding-top: 30px;
}

.main-frame .row-title {
    height: 80px;
    padding: 15px 5px;
    margin-bottom: 20px; /*white-space:nowrap;*/
}

.main-frame .row-title .title {
    pointer-events: none;
    z-index: 1;
    position: relative;
}

.main-frame .row-title .star-icon {
    background: url(../images/logo/star_titlesize.png);
    width: 70px;
    height: 56px;
    display: inline-block;
    vertical-align: top;
    margin-right: 10px;
}

.main-frame .row-title .word {
    color: #006564;
  font-size: 39px; /*20240206*/
    vertical-align: top;
    line-height: 1.5em;
    font-family: 'cathay_sansregular', sans-serif, "微軟正黑體";
    font-weight: bold;
}

@media (max-width: 767px) {
    .main-frame {
        padding-top: 30px;
    }

    .main-frame .center-frame {
        padding-top: 0;
    }

    .main-frame .row-title .star-icon {
        background: url(../images/logo/star_titlesize_mobile.png);
        width: 50px;
        height: 40px;
        margin-right: 5px;
        background-size: contain;
        background-repeat: no-repeat;
    }

    .main-frame .row-title .word {
        font-size: 2em;
    }
}

@media (max-width: 400px) {
    .main-frame .row-title .word {
        font-size: 1.5em;
        line-height: 40px;
    }
}

.main-frame .row-title .dropdown {
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    white-space: normal;
}

.main-frame .row-title .dropdown.active,
.main-frame .row-title .dropdown:hover {
    background-color: #D9E8EF;
}

.main-frame .row-title .dropdown .dropdown-toggle {
    width: 100%;
    height: 70px;
    display: block;
    text-align: right;
    background: #fff;
}

.main-frame .row-title .dropdown .dropdown-toggle .glyphicon {
    font-size: 2em;
    padding: 20px;
    color: #006465;
}

.main-frame .row-title .dropdown .dropdown-menu {
    width: 100%;
    max-height: calc(100vh - 100px);
    border: 0;
    margin: 0;
    padding: 0;
    background-color: #D9E8EF;
    overflow: auto;
    border-radius: 0;
}

.main-frame .row-title .dropdown .dropdown-menu a {
    color: #006465;
    text-decoration: none;
    padding: 8px 20px;
    display: block;
}

.main-frame .row-title .dropdown .dropdown-menu a:hover,
.main-frame .row-title .dropdown .dropdown-menu a:focus,
.main-frame .row-title .dropdown .dropdown-menu a:active:focus {
    background: white;
    font-weight: bold;
}

.main-frame .row-title .dropdown .dropdown-menu a.active {
    background: #006465;
    color: #FFF;
    font-weight: bold;
}

.main-frame .row-title .dropdown .dropdown-menu a.category {
    background: #B7D7E5;
    color: #555;
    pointer-events: none;
}

.main-frame .row-title .dropdown .dropdown-menu a:not(.category) + .sub-menu-child {
    display: none;
}

.main-frame .row-title .dropdown .dropdown-menu .sub-menu-child {
    width: 100%;
    list-style-type: none;
    padding: 0 0 0 20px;
}

.main-frame .row-title .dropdown .dropdown-menu .sub-menu-child li a {
    padding: 8px 20px;
    display: block;
}


.main-frame .main-content {
    margin: 0 -10px 0 -10px;
    padding-bottom: 50px;
}

.main-frame .sub-menu {
    position: relative;
    padding: 10px 0;
    margin-bottom: 100px;
    box-shadow: none;
    border-right: 1px solid #ccc;
}

/*.main-frame .sub-menu:after {width:10px; height:100%; box-shadow:inset 5px 0 8px -2px rgba(0,0,0,0.1); content:''; left:100%; top:0; position:absolute;}*/
.main-frame .sub-menu .list-group-item {
    border: 0;
    background: transparent;
  /*2023UPDATE*/
  font-size:16px;
}

.main-frame .sub-menu .list-group-item.active {
    color: #be3030;
    font-weight: bold;
    text-shadow: none;
}

.main-frame .sub-menu .list-group-item:first-child,
.main-frame .sub-menu .list-group-item:last-child {
    border-radius: 0;
}

.main-frame .sub-menu .sub-menu-child {
    list-style-type: none;
    padding: 0 0 0 10px;
    margin: 0;
}

.main-frame .sub-menu .list-group-item:not(.active) + .sub-menu-child {
    display: none;
}

.main-frame .sub-menu .sub-menu-child li > a {
    padding: 5px 5px 5px 15px;
    display: block;
    color: #666;
    text-decoration: none;
}

.main-frame .sub-menu .sub-menu-child li > a.active,
.main-frame .sub-menu .sub-menu-child li > a:hover,
.main-frame .sub-menu .sub-menu-child li > a:focus,
.main-frame .sub-menu .sub-menu-child li > a:active:focus {
    background: transparent;
}

.main-frame .sub-menu .sub-menu-child li > a.active {
    font-weight: bold;
}

.main-frame .sub-title {
    margin: 10px 0 20px 0;
}

.main-frame .sub-title .star-icon {
    background: url(../images/logo/star_subtitlesize@2x.png);
    background-size: 38px 30px;
    width: 38px;
    height: 30px;
    display: inline-block;
    vertical-align: top;
    margin-right: 5px;
}

.main-frame .sub-title .word {
    color: #333;
    font-weight: bold;
  font-size: 25px; /*20240206*/
    vertical-align: top;
    line-height: 1.3em;
}

@media (max-width: 400px) {
    .main-frame .sub-title {
        margin: 0px 0 10px 0;
    }

    .main-frame .sub-title .word {
        font-size: 1.4em;
        line-height: 1.5em;
    }
}

.main-frame .page-home .sub-title {
    margin: 15px -10px 0 -10px;
}

.main-frame .page-home .sub-title .star-icon {
    background: url(../images/logo/star_titlesize.png);
    width: 70px;
    height: 56px;
    display: inline-block;
    vertical-align: top;
    margin-right: 10px;
}

.main-frame .page-home .sub-title .word {
    color: #006564;
    font-weight: bold;
  font-size: 39px; /*20240206*/
    vertical-align: top;
    line-height: 1.5em;
    font-family: 'cathay_sansregular', sans-serif, "微軟正黑體";
}

.main-frame .page-home .sub-title.secondary {
    margin-top: 40px;
}

.main-frame .page-home .sub-title.secondary .star-icon {
    background: url(../images/logo/star_titlesize_mobile.png);
    width: 50px;
    height: 40px;
    margin-right: 5px;
}

.main-frame .page-home .sub-title.secondary .word {
    font-size: 2em;
}

.main-frame .page-home .news-block {
    list-style-type: none;
    padding: 0 0 50px 0;
}

.main-frame .page-home .news-block li {
    padding: 20px 0;
}

.main-frame .page-home .news-block li + li {
    border-top: 1px #CCC solid;
}

.main-frame .page-home .news-block li .photo {
    display: inline-block;
    width: 30%;
    vertical-align: middle;
    text-align: center;
}

.main-frame .page-home .news-block li .photo img {
    max-width: 100%;
    max-height: 202px;
}

.main-frame .page-home .news-block li .content {
    display: inline-block;
    width: 100%;
    vertical-align: middle;
    font-weight: bold;
    padding-left: 10px;
}

.main-frame .page-home .news-block li .photo + .content {
    width: calc(70% - 10px);
}

.main-frame .page-home .news-block li .content a {
    color: #333;
    text-decoration: none;
}

.main-frame .page-home .news-block li .content a:hover,
.main-frame .page-home .news-block li .content a:focus,
.main-frame .page-home .news-block li .content a:active:focus {
    color: #be3030;
}

.main-frame .page-home .news-block li .content span {
    color: #006465;
    line-height: 30px;
}

.main-frame .page-home table {
    width: 100%;
    margin-bottom: 50px;
}

.main-frame .page-home table th {
    border: 1px rgba(255, 255, 255, 0.5) solid;
    background: #006465;
    color: #FFF;
    font-weight: normal;
    border-color: #1d5183;
    padding: 8px 10px;
    vertical-align: top;
}

.main-frame .page-home table td {
    border: 1px rgba(255, 255, 255, 0.5) solid;
    background: #FFF;
    color: #333;
    border-color: #DDD;
    padding: 8px 10px;
    vertical-align: top;
}

@media (max-width: 767px) {
    .main-frame .page-home .news-block {
        padding: 0;
    }

    .main-frame .page-home .sub-title.secondary .star-icon {
        background: url(../images/logo/star_titlesize.png);
        width: 70px;
        height: 56px;
        margin-right: 10px;
    }

    .main-frame .page-home .sub-title.secondary .word {
        font-size: 2.8em;
    }
}

@media (max-width: 450px) {
    .main-frame .page-home .news-block li .photo {
        width: 40%;
    }

    .main-frame .page-home .news-block li .content {
        width: 100%;
    }

    .main-frame .page-home .news-block li .photo + .content {
        width: calc(60% - 10px);
    }
}

@media (max-width: 400px) {
    .main-frame .page-home .sub-title .star-icon {
        background: url(../images/logo/star_titlesize_mobile.png);
        width: 50px;
        height: 40px;
        margin-right: 5px;
    }

    .main-frame .page-home .sub-title .word {
        font-size: 2em;
    }

    .main-frame .page-home .sub-title.secondary .star-icon {
        background: url(../images/logo/star_titlesize_mobile.png);
        width: 50px;
        height: 40px;
        margin-right: 5px;
    }

    .main-frame .page-home .sub-title.secondary .word {
        font-size: 2em;
    }

    .main-frame .page-home .news-block li .photo {
        width: 50%;
    }

    .main-frame .page-home .news-block li .content {
        width: 100%;
    }

    .main-frame .page-home .news-block li .photo + .content {
        width: calc(50% - 10px);
    }
}

.main-frame .page-home .video-area {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%;
    margin-top: 10px;
}
/*2023UPDATE*/
.main-frame .page-home .video-area {
  margin-bottom: 10px;
}
.main-frame .page-home .video-area iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.main-frame .page-home .voting-banner {
    margin: 25px 0 0 0;
}

@media (max-width: 767px) {
  .main-frame .page-home .voting-banner {}
}

.main-frame .page-home .voting-banner + .voting-banner {
    margin-top: 10px;
}

.main-frame .page-home .voting-banner img {
    width: 100%;
}

.main-frame .page-home .photo-block {
    list-style-type: none;
    padding: 0 0 50px 0;
}

.main-frame .page-home .photo-block li {
    padding: 5px;
    width: 50%;
    display: inline-block;
    text-align: center;
}

.main-frame .page-home .photo-block li:nth-child(odd) {
    padding: 10px 5px 0 0;
}

.main-frame .page-home .photo-block li:nth-child(even) {
    padding: 10px 0 0 5px;
}
.main-frame .page-home .photo-block li a {
  display: block;
  width: 100%;
  padding-top: 66.67%;
  border: 1px solid rgba(0, 0, 0, 0.1);
  position: relative;
}
/*2022UPDATE*/
.main-frame .page-home .photo-block li img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  display: inline-block;
  max-height: 100%;
    max-width: 100%;
}

/*2023UPDATE*/
.main-frame .page-home .social-media {
  display:flex;
  justify-content:space-around;
}
/* Reorder social-media below video-area on mobile 20251021*/
@media (max-width: 767px) {
  .main-frame .page-home .col-sm-4 {
    display: flex;
    flex-direction: column;
  }
  .main-frame .page-home .social-media {
    order: 10;
    margin-top: 10px;
    margin-bottom: 30px;
  }
  .main-frame .page-home .video-area {
    order: 5;
  }
  .main-frame .page-home .voting-banner {
    order: 1;
  }
}
/*2022UPDATE*/
.main-frame .page-about {
    margin-right: -20px;
}

.main-frame .page-past {
    margin-right: -20px;
}

.main-frame .page-trendview {
    margin-right: -20px;
}

.main-frame .page-past table td:last-child {
    width: 30%;
}

.main-frame .page-gallery {
    margin-right: -20px;
}

.main-frame .page-gallery .photo-block {
    list-style-type: none;
    padding: 0 0 50px 0;
}

.main-frame .page-gallery .photo-block li {
    padding: 5px;
    width: calc(100% / 3);
    display: inline-block;
    text-align: center;
}

.main-frame .page-gallery .photo-block li img {
    max-height: 160px;
    max-width: 100%;
}

@media (max-width: 600px) {
    .main-frame .page-gallery .photo-block li {
        width: 50%;
    }
}

@media (max-width: 400px) {
    .main-frame .page-gallery .photo-block li {
        width: 100%;
    }
}

@media (min-width: 1300px) {
    .main-frame .page-gallery .photo-block li {
        width: 25%;
    }
}


.main-frame .page-news .press-list {
    list-style-type: none;
    padding: 0;
}

.main-frame .page-news .press-list li + li {
    margin-top: 25px;
}

.main-frame .page-news .press-list li > div {
    display: inline-block;
    vertical-align: top;
}

.main-frame .page-news .press-list li > div:first-child {
    font-weight: bold;
    width: 110px;
}

.main-frame .page-news .press-list li > div:last-child {
    width: calc(100% - 115px);
}

.main-frame .page-news .press-list li > div a {
    color: #006465;
    text-decoration: none;
}

.main-frame .page-news .press-list li > div a:focus,
.main-frame .page-news .press-list li > div a:hover {
    color: #be3030;
}

@media (max-width: 450px) {
    .main-frame .page-news .press-list li > div:last-child {
        width: 100%;
    }
}

.main-frame .page-topic .photo-col {
    padding: 0;
    margin-left: 15px;
}

.main-frame .page-topic .photo-block {
    list-style-type: none;
    padding: 0 0 50px 0;
}

.main-frame .page-topic .photo-block li {
    padding: 5px;
    width: 100%;
    display: inline-block;
    text-align: center;
}

.main-frame .page-topic .photo-block li img {
    max-height: 172px;
    max-width: 100%;
}

@media (max-width: 767px) {
    .main-frame .page-topic .photo-col {
        margin: 0;
    }

    .main-frame .page-topic .photo-block li {
        width: calc(50% - 10px);
    }

    .main-frame .page-topic .photo-block li:nth-child(odd) {
        padding: 10px 5px 0 0;
    }

    .main-frame .page-topic .photo-block li:nth-child(even) {
        padding: 10px 0 0 5px;
    }
}

@media (max-width: 400px) {
    .main-frame .page-topic .photo-block li {
        padding: 0px;
        width: 100%;
    }

    .main-frame .page-topic .photo-block li:nth-child(odd),
    .main-frame .page-topic .photo-block li:nth-child(even) {
        padding: 10px 0 0 0;
    }
}


.main-frame .page-admin .nav-pills {
    display: inline-block;
}

.main-frame .page-admin .nav-pills > li > a {
    background: none;
    color: #777;
    border-left: 4px #777 solid;
    border-radius: 0;
    padding: 0px 8px;
    margin-right: 15px;
}

.main-frame .page-admin .nav-pills > li > a:hover {
    color: #999;
    border-color: #999;
}

.main-frame .page-admin .nav-pills > li.active > a {
    background: none;
    color: #006465;
    border-color: #006465;
}

.main-frame .page-admin .nav-pills > li + li {
    margin-left: 0px;
}

.main-frame .page-admin .btn-logout {
    float: right;
    display: inline-block;
    vertical-align: top;
}

.main-frame .page-admin {
    margin-bottom: 100px;
}

.main-frame .page-admin .login-form {
    text-align: center;
    width: 100%;
    margin-top: 50px;
}

.main-frame .page-admin .login-form.sportasso {
    margin-top: 100px;
}

.main-frame .page-admin .input-field {
    text-align: left;
    display: inline-block;
    margin-bottom: 10px;
}

.main-frame .page-admin .input-field input {
    width: 300px;
    margin-bottom: 0px;
    box-sizing: border-box;
    padding: 10px 12px;
}

.main-frame .page-admin .input-field error-text {
    color: #CC0000;
    font-size: 0.9em;
    visibility: hidden;
}

.main-frame .page-admin .input-field.show-error error-text {
    visibility: visible;
}

.main-frame .page-admin .input-field.show-error input {
    border-color: red;
}

.main-frame .page-admin .account-mng,
.main-frame .page-admin .nomination-mng {
    margin-top: 25px;
}

.main-frame .page-admin .filter-area {
    padding-left: 25px;
    margin-bottom: 25px;
    line-height: 30px;
}

.main-frame .page-admin .dropdown {
    background-color: #FFF;
    border: 1px #CCC solid;
    padding: 5px;
    border-radius: 4px;
    margin: 0px 15px;
}

.main-frame .page-admin .dropdown .glyphicon-menu-down {
    font-size: 0.8em;
    margin-left: 20px;
}

.main-frame .page-admin .dropdown a {
    text-decoration: none;
    color: #333;
}

.main-frame .page-admin .search-box {
    background: #FFF;
    border: 1px #CCC solid;
    border-radius: 5px;
    padding: 5px 10px;
    line-height: 21px;
}

.main-frame .page-admin .search-box input {
    border: 0;
    width: 120px;
}

.main-frame .page-admin .search-box input:focus {
    outline: 0;
}

.main-frame .page-admin .search-box .glyphicon {
    color: #5E5E5E;
    text-decoration: none;
    font-size: 1.2em;
    vertical-align: text-bottom;
}

.main-frame .page-admin .search-box .glyphicon:hover,
.main-frame .page-admin .search-box .glyphicon:focus,
.main-frame .page-admin .search-box .glyphicon:active:focus {
    color: #888;
}

.main-frame .page-admin .table-area .float-right {
    margin-bottom: 10px;
}

.main-frame .page-admin .table-area table {
    margin-top: 10px;
}

.main-frame .page-admin .table-area table th {
    text-align: center;
    background-color: #5E5E5E;
    color: #EEE;
    border-color: #FCFCFC;
    font-weight: normal;
}

.main-frame .page-admin.sportasso .table-area table th {
    background-color: #006465;
}

.main-frame .page-admin .table-area table th a {
    color: #EEE;
    text-decoration: none;
}

.main-frame .page-admin .table-area table td {
    text-align: center;
    background-color: #FCFCFC;
    vertical-align: middle;
}

.main-frame .page-admin .table-area table td .glyphicon {
    padding: 0 8px;
    text-decoration: none;
    color: #5E5E5E;
    font-size: 1.2em;
}

.main-frame .page-admin .table-area table td .glyphicon:active:focus,
.main-frame .page-admin .table-area table td .glyphicon:hover {
    color: #888;
}

.main-frame .page-admin .table-area table td .glyphicon-off,
.main-frame .page-admin .table-area table td .glyphicon-ban-circle {
    color: #CCC;
}

.main-frame .page-admin .table-area table td .glyphicon-off.on {
    color: #228617;
}

.main-frame .page-admin .table-area table td .glyphicon-ban-circle.on {
    color: #AF0D0D;
}

.main-frame .page-admin .table-area table td.table-nav-left {
    text-align: left;
    background-color: #EEE;
    border-right: 0px;
    vertical-align: middle;
}

.main-frame .page-admin .table-area table td.table-nav-right {
    text-align: right;
    background-color: #EEE;
    border-left: 0px;
    vertical-align: middle;
}

.main-frame .page-admin .table-area table td.table-nav-right select {
    padding: 3px 5px;
    border-radius: 3px;
}

.main-frame .page-admin .table-area table td.td-no-wrap {
    white-space: nowrap;
}

.main-frame .page-admin .nomination-mng .filter-area .fix-width-field {
    display: inline-block;
    width: 240px;
    margin-bottom: 20px;
}

.main-frame .page-admin .nomination-mng .filter-area .dropdown {
    margin: 0;
}

.main-frame .page-admin.sportasso {
    margin-top: 25px;
}

.main-frame .page-admin.sportasso .sportasso-title {
    font-size: 1.8em;
    display: inline-block;
    font-weight: bold;
}

.main-frame .page-admin.sportasso table .submitted {
    color: #209F16;
}

.main-frame .page-admin.sportasso table .saved {
    color: #006465;
}

.main-frame .page-admin .form-con .content_container {
    position: relative;
}

.main-frame .page-admin .form-con .page_wrapper {
    height: auto;
    margin-top: 25px;
    width: 100%;
}

.main-frame .btn_votenow_con {
    text-align: center;
    margin-top: 30px;
}

.main-frame .selected-page + .btn_votenow_con {
    margin: 10px 0 30px 0;
}

.main-frame .btn_votenow {
    color: #FFF;
    border-radius: 0;
    padding: 12px 25px;
    font-size: 1.4em;
    font-weight: bold;
    border: 0;
    box-shadow: 0px 3px 10px #999;
    position: relative;
    background: #006465;
    /* For browsers that do not support gradients */
    background: -webkit-linear-gradient(#009698, #006465);
    /* For Safari 5.1 to 6.0 */
    background: -o-linear-gradient(#009698, #006465);
    /* For Opera 11.1 to 12.0 */
    background: -moz-linear-gradient(#009698, #006465);
    /* For Firefox 3.6 to 15 */
    background: linear-gradient(#009698, #006465);
    /* Standard syntax */
}

.main-frame .btn_votenow:hover,
.main-frame .btn_votenow:focus,
.main-frame .btn_votenow:active {
    outline: 0;
}

.main-frame .btn_votenow:active {
    outline: 0;
    box-shadow: none;
    top: -2px;
    box-shadow: 0px -2px 5px #999;
}

.main-frame .btn_votenow_con button + button {
    margin-left: 10px;
}

.main-frame .voting-cate-con {
    text-align: center;
}

.main-frame .voting-cate-con .cate-box {
    position: relative;
    text-align: center;
    width: 22%;
    min-width: 170px;
    display: inline-block;
    margin: 10px 10px 30px 10px;
}

.main-frame .voting-cate-con .cate-box .star-icon {
    display: inline-block;
    margin: 0 0 3px -15px;
  width: 105px;
  height: 84px;
}

.main-frame .voting-cate-con .cate-box .star-icon img {
    width: 100%;
}

.main-frame .voting-cate-con .cate-box .word {
    font-weight: bold;
    font-size: 1.2em;
    margin-bottom: 10px;
}
.main-frame.chi .voting-cate-con .cate-box .word {
  font-size: 1.44em;
}
.main-frame .voting-cate-con .cate-box .not-open {
    font-size: 1em;
    background: #e24f3a;
    border-radius: 3px;
    color: #FFF;
    padding: 2px 0px;
    margin-bottom: 5px;
}

.main-frame .voting-cate-con .cate-box .voted {
    position: absolute;
  width: 70px; /*20240206*/
    left: 0px;
    top: 0px;
}

.main-frame .voting-cate-con .cate-box .voted img {
    width: 100%;
}

.main-frame .voting-personal-form {
    margin: 0 auto;
    max-width: 680px;
}

.main-frame .voting-personal-form .ol-padding-div {
    margin-left: 20px;
}

.main-frame .voting-personal-form .float-left-block {
    display: inline-block;
    width: 6px;
    vertical-align: top;
}

.main-frame .voting-personal-form .float-left-block-tail {
    display: inline-block;
    width: calc(100% - 10px);
}

.main-frame .voting-personal-form ol {
    padding-left: 20px;
}

.main-frame .voting-personal-form label {
    font-weight: normal;
}

.main-frame .voting-personal-form input[type="radio"] {
    margin-left: 10px;
}

.main-frame .voting-personal-form input[type="text"] {
    margin-bottom: 20px;
    border-radius: 4px;
    border: 1px #CCC solid;
    padding: 5px 10px;
}

.main-frame .voting-personal-form input[type="text"].short {
    width: 60px;
}

.main-frame .voting-personal-form input[type="text"].medium {
    width: 200px;
    max-width: 100%;
}

.main-frame .voting-personal-form input[type="text"].long {
    width: 300px;
    max-width: 100%;
}

.main-frame .voting-personal-form input[type="text"].extra {
    width: 450px;
    max-width: 100%;
}

.main-frame .voting-personal-form table td {
    vertical-align: top;
}

.main-frame .error-text {
    color: #FF0000;
    text-align: center;
    margin-top: 15px;
}

.main-frame .vote-note {
    padding: 0px 10px;
}

.main-frame .voting-nom-con {
    text-align: center;
}

.main-frame .voting-nom-con.selected-page {
    text-align: left; /*width:800px; so that 4 boxes a row*/
  /*width: 600px;*/
  /*so that 3 boxes a row*/
  max-width:100%; /*20250204*/
}

.main-frame .voting-nom-con .nom-box {
    display: inline-block;
  width: 380px; /*20240208*/
    background: #FFF;
    box-shadow: 0px 0px 10px #999;
    padding: 5px 0 5px 5px;
    margin: 7px 5px;
    height: 180px;
    vertical-align: top;
  text-align:left; /*20240208*/
}

.main-frame .voting-nom-con.selected-page .nom-box {
    width: 170px;
    padding: 8px;
    margin: 12px 10px;
    min-height: 180px;
    height: auto;
}

.main-frame .voting-nom-con .nom-box > div {
    vertical-align: top;
}

.main-frame .voting-nom-con .nom-box .photo {
    display: inline-block;
  width: 45%; /*20240208*/
    position: relative;
}

.main-frame .voting-nom-con.selected-page .nom-box .photo {
    width: 100%;
}

.main-frame .voting-nom-con .nom-box .photo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: cover;
}

.main-frame .voting-nom-con .nom-box .photo .check-box {
    position: absolute;
    right: 0px;
    bottom: 0px;
    width: 100%;
    height: 100%;
}

.main-frame .voting-nom-con .nom-box .photo .check-box .check-btn {
    border: 0;
    background: rgba(255, 0, 0, 0);
    width: 100%;
    height: 100%;
}

.main-frame .voting-nom-con .nom-box .photo .check-box .check-btn:hover,
.main-frame .voting-nom-con .nom-box .photo .check-box .check-btn:active,
.main-frame .voting-nom-con .nom-box .photo .check-box .check-btn:focus {
    outline: 0;
}

.main-frame .voting-nom-con .nom-box .photo .check-box .check-btn div {
    position: absolute;
    right: 0px;
    bottom: 0px;
  width: 45px; /*20240206*/
  height: 45px; /*20240206*/
    background: url(../images/vote_box.png);
    pointer-events: none;
}

.main-frame .voting-nom-con .nom-box .photo .check-box .check-btn.checked div {
    background: url(../images/vote_box_o.png);
}

.main-frame .voting-nom-con .nom-box .details {
    display: inline-block;
  width: calc(54% - 2px); /*20240208*/
    max-height: 170px;
    overflow: auto;
    text-align: left;
}

.main-frame .voting-nom-con.selected-page .nom-box .details {
    width: 100%;
    height: 155px;
}

.main-frame .voting-nom-con.not-open .nom-box .details {
    width: 85%;
    text-align: center;
    min-height: 180px;
}

.main-frame .voting-nom-con .nom-box .details .num {
    font-size: 0.9em;
    font-weight: bold;
    margin: 5px 0px;
}

.main-frame .voting-nom-con .nom-box .details .name {
    font-weight: bold;
    color: #006465;
  /*font-size: 1.1em; 20240206*/
    display: block;
}

.main-frame .voting-nom-con .nom-box .details .association {
    font-size: 0.9em;
    color: #006465;
    display: block;
}

.main-frame .voting-nom-con .nom-box .details .click-detail {
    font-size: 0.9em;
    font-weight: bold;
    color: #006465;
    text-decoration: underline;
  margin: 15px 0px 10px 0px;
    display: block;
}

@media (max-width: 400px) {
    .main-frame .voting-nom-con .nom-box {
        width: 100%;
    }
}

.page-detail .sub-title .word {
    display: inline-block;
    max-width: calc(100% - 50px);
}

@media (max-width: 767px) {
    .page-detail .sub-title .word {
        font-size: 1.5em;
    }
}

@media (max-width: 400px) {
    .page-detail .sub-title .word {
        font-size: 1.2em;
    }
}

.main-frame .page-trendview strong {
    color: #006465;
}

.main-frame .page-trendview .trend-con {
    list-style: none;
    padding: 0;
    position: relative;
}

.main-frame .page-trendview .trend-con .photo {
    vertical-align: top;
    display: inline-block;
    width: 170px;
    position: relative;
    box-shadow: 0px 0px 10px #999;
    margin: 10px;
}

.main-frame .page-trendview.selected-page .trend-con .photo {
    width: 100%;
}

.main-frame .page-trendview .trend-con .photo img {
    width: 100%;
}

.main-frame .page-trendview .trend-con .photo .check-box {
    position: absolute;
    right: 0px;
    bottom: 0px;
    width: 100%;
    height: 100%;
}

.main-frame .page-trendview .trend-con .photo .check-box .check-btn {
    border: 0;
    background: rgba(255, 0, 0, 0.2);
    width: 100%;
    height: 100%;
}

.main-frame .page-trendview .trend-con .photo .check-box .check-btn:hover,
.main-frame .page-trendview .trend-con .photo .check-box .check-btn:active,
.main-frame .page-trendview .trend-con .photo .check-box .check-btn:focus {
    outline: 0;
}

.main-frame .page-trendview .trend-con .photo .check-box .check-btn div {
    position: absolute;
    right: 0px;
    bottom: 0px;
    width: 34px;
    height: 34px;
    background: url(../images/vote_box.png);
    pointer-events: none;
}

.main-frame .page-trendview .trend-con .photo .check-box .check-btn.checked div {
    background: url(../images/vote_box_o.png);
}

/*
.main-frame .page-trendview .trend-con .details {display:inline-block; width:calc(60% - 10px); text-align:left; padding:10px;}
*/
.main-frame .page-trendview .trend-con .details-con {
    width: calc(100% - 195px);
    display: inline-block;
}

.main-frame .page-trendview .trend-con .details {
    width: 100%;
    text-align: left;
    padding: 20px 10px 10px 10px;
}

.main-frame .page-trendview.not-open .trend-con .details {
    width: calc(60% - 10px);
    text-align: center;
}

.main-frame .page-trendview .trend-con .details .num {
    font-size: 0.9em;
    font-weight: bold;
    margin: 5px 0px;
}

.main-frame .page-trendview .trend-con .details .name {
    font-weight: bold;
    color: #006465;
    font-size: 1.1em;
    display: block;
}

.main-frame .page-trendview .trend-con .details .association {
    font-size: 0.9em;
    color: #006465;
    display: block;
}

.main-frame .page-trendview .trend-con .details .click-detail {
    font-size: 0.9em;
    font-weight: bold;
    color: #006465;
    text-decoration: underline;
    margin: 25px 0px 10px 0px;
    display: block;
}

.main-frame .page-trendview .trend-con .progress {
    width: 100%;
    height: 30px;
    vertical-align: middle;
    margin: 10px 10px 50px 10px;
}

@media (min-width: 768px) {
    .main-frame .page-trendview .trend-con .details-con {
        width: calc(50% - 195px);
    }

    .main-frame .page-trendview .trend-con .progress {
        width: calc(50% - 5px);
        margin: 0;
        display: inline-block;
        top: calc(50% - 15px);
        position: absolute;
    }
}


/* cms-part */
.main-frame .cms-area {
    line-height: 1.5em;
}
/*2023UPDATE*/
.main-frame .cms-area p {
  font-size:16px;
}
.main-frame .cms-area h4,
.main-frame .cms-area h2 {
    color: #006564;
    font-size: 1.2em;
    font-weight: bold;
    margin-bottom: 10px;
}

.main-frame .cms-area h1 {
    color: #006564;
    border-bottom: 1px #006564 solid;
    font-size: 1.4em;
    font-weight: bold;
    margin-bottom: 20px;
}

.main-frame .cms-area table {
    width: 100%;
}

.main-frame .cms-area table th {
    border: 1px rgba(255, 255, 255, 0.5) solid;
    background: #b7dbdb;
    padding: 8px 10px;
    vertical-align: top;
}

.main-frame .cms-area table td {
    border: 1px rgba(255, 255, 255, 0.5) solid;
    background: #d7ecec;
    padding: 8px 10px;
    vertical-align: top;
}
/*2023UPDATE*/
.main-frame .cms-area table.middle td {
  vertical-align:middle;
}
@media (min-width: 768px) {
    .main-frame .cms-area table td {
        background: #c5e2e2;
    }
}

.main-frame .cms-area dl dd,
.main-frame .cms-area ul,
.main-frame .cms-area ol {
    padding-left: 20px;
}

.main-frame .cms-area dl {
    padding: 0;
}

.main-frame .cms-area li,
.main-frame .cms-area dd {
    padding: 5px 0px;
}

.main-frame .cms-area a {
    font-weight: bold;
    color: #006564;
    text-decoration: none;
    word-break: break-word;
}

.main-frame .cms-area a:hover,
.main-frame .cms-area a:active:focus,
.main-frame .cms-area a:focus {
    color: #be3030;
}

.main-frame .cms-area hr {
    border-color: #CCC;
}

.main-frame .cms-area.voting-style-fix ul {
    padding-left: 25px;
}

.main-frame .cms-area.voting-style-fix table th {
    background: #006465;
    color: #FFF;
    font-weight: normal;
    border-color: #1d5183;
}

.main-frame .cms-area.voting-style-fix table th:nth-child(2) {
    border-left-color: #FFF;
}

.main-frame .cms-area.voting-style-fix table td {
    background: #FFF;
    color: #333;
    border-color: #DDD;
}

.main-frame .cms-area.voting-style-fix h6 {
    font-size: 1.1em;
    font-weight: bold;
}

.main-frame .cms-area.voting-style-fix dl,
.main-frame .cms-area.voting-style-fix dd {
    padding: 0;
}

.main-frame .cms-area.voting-style-fix dd {
    padding-left: 55px;
}

.main-frame .cms-area.voting-style-fix ol {
    list-style-type: none;
    counter-reset: item;
    margin: 0;
    padding: 0;
}

.main-frame .cms-area.voting-style-fix ol > li {
    display: table;
    counter-increment: item;
    margin-bottom: 0.6em;
}

.main-frame .cms-area.voting-style-fix ol > li:before {
    content: counters(item, ".") ". ";
    display: table-cell;
    padding-right: 0.6em;
}

.main-frame .cms-area.voting-style-fix li ol > li {
    margin: 0;
}

.main-frame .cms-area.voting-style-fix li ol > li:before {
    content: counters(item, ".") " ";
}

.main-frame .cms-area.attach {
    margin-top: 50px;
}

.main-frame .cms-area.attach ul {
    list-style: none;
    padding-left: 0;
}

.main-frame .cms-area.attach a {
    font-weight: normal;
}

.page-detail .cms-area h1 ol {
    margin-bottom: 5px;
}

.page-detail .cms-area h1 ol li {
    padding: 0;
    margin: 0 0 4px 0;
}

.page-detail .cms-area table td {
    background: rgba(255, 255, 255, 0.7);
    border-color: #DDD;
    vertical-align: middle;
}

.page-detail .cms-area table th {
    background: #006465;
    color: #FFF;
    font-weight: normal;
    border-color: #CCC;
}

.page-detail .cms-area .nom-info td[rowspan="99"] {
    text-align: center;
}

.page-detail .cms-area .nom-info td[rowspan="100"] {
    text-align: center;
}

.page-detail .cms-area table td img {
    width: 100%;
    max-width: 240px;
}

.page-detail .cms-area table td img.tonly {
    max-width: none;
}

.page-detail .cms-area table.nom-info {
    min-width: 380px;
}

.page-detail .cms-area table.nom-info td:first-child {
    background: #006465;
    color: #FFF;
    font-weight: normal;
    border-color: #CCC;
}

.page-detail .cms-area h1 + table {
    margin-bottom: 50px;
}

.page-detail .cms-area h1 + p {
    margin-bottom: 50px;
    text-align: center;
}

@media print {

    .banner-bar-mobile {
        display: none !important;
    }

    .banner-bar-web {
        display: block !important;
        border-bottom: 3px #26497C solid;
        margin: 0px -15px;
        padding-bottom: 5px;
    }

    .web-nav-tools {
        display: none !important;
    }

    .navbar-header {
        display: none !important;
    }

    a[href]:after {
        content: none !important;
    }

    table.form {
        border-collapse: unset !important;
        border-width: 1px;
    }

    table.form tr {
        page-break-inside: avoid;
    }
}

.addthis_box {
    float: right;
    margin-left: -5px;
    padding-top: 6px;
    padding-right: 10px;
}

/*20161118 Jason*/
/*2022 cust*/
.page-content .backButton {
    margin-left: 0;
    font-family: 'cathay_sansregular', Arial, sans-serif, "微軟正黑體";
    color: #006564;
}

.page-content .backButton::before {
    color: inherit;
}
.form-con .table-responsive {
  margin-bottom: 5px;
}
/*2023UPDATE*/
.form-con p {
  text-align:left;
}
/*2023UPDATE*/
.form-con table.step_container td.w_step p {
  text-align:center;
}
.form-con .small_font {
  display: inline-block;
}
.form-con .border_bblack + .small_font {
  margin-top: 3px;
}
/*20251121*/
.form-con table.form .nom-td-width {
  width: 260px!important;
}
@media (max-width: 767px) {
  .form-con table.form .nom-td-width {
    width: inherit !important;
  }
}