:root {
    --acccim-red-dark: #520000;
    --acccim-red: #9b0000;
    --acccim-red-soft: #b30b08;
    --acccim-gold: #c99a3a;
    --acccim-white: #ffffff;
    --acccim-panel: rgba(255, 255, 255, .95);
    --acccim-desktop-bg: url("https://storage.unitedwebnetwork.com/files/1406/90d2e0927c1e04c6a3a2324fc5fea305.avif");
    --acccim-mobile-bg: url("https://storage.unitedwebnetwork.com/files/1406/1e00562e21987370e49a30d393c06aad.webp");
}

/* =========================
   Global
========================= */

body {
    margin: 0;
    background: #4b0000;
    font-family: Arial, "Microsoft YaHei", "PingFang SC", sans-serif;
    color: #222;
}

.container-mobile {
    position: relative;
    min-height: 100vh;
    overflow-x: hidden;
    background: transparent;
}

.acccim-bg-layer {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background:
        linear-gradient(180deg, rgba(70,0,0,.72), rgba(60,0,0,.82)),
        var(--acccim-desktop-bg) center center / cover no-repeat;
}

.fHeader,
#fContent,
#fFooter {
    position: relative;
    z-index: 2;
}

/* =========================
   Header / Navigation
========================= */

.fHeader {
    background: rgba(70, 0, 0, .78);
    border-bottom: 1px solid rgba(255,255,255,.18);
    backdrop-filter: blur(12px);
    z-index: 10;
}

.fHeader .container {
    max-width: 1140px;
    padding-left: 20px;
    padding-right: 20px;
}

.acccim-header-region {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 0;
}

.acccim-logo-module img {
    width: 185px;
    max-width: 58vw;
    height: auto;
}

.acccim-logo-module ul,
.acccim-logo-module li {
    margin: 0;
    padding: 0;
    list-style: none;
}

.acccim-nav-module {
    position: relative;
    text-align: right;
}

.acccim-nav-module .navbar-toggle-container {
    display: block !important;
}

.acccim-nav-module .navbar-toggle {
    width: 54px;
    display: inline-flex;
    flex-direction: column;
    gap: 7px;
    padding: 0;
    border: 0;
    background: transparent;
}

.acccim-nav-module .navbar-toggle .icon-bar {
    display: block;
    width: 100%;
    height: 3px;
    border-radius: 99px;
    background: #fff;
}

.acccim-nav-module nav:not(.show) {
    display: none !important;
}

.acccim-nav-module nav.show {
    display: block !important;
}

.acccim-nav-module nav {
    position: absolute;
    top: 48px;
    right: 0;
    width: 220px;
    padding: 12px;
    border-radius: 14px;
    background: rgba(70, 0, 0, .96);
    box-shadow: 0 18px 40px rgba(0,0,0,.25);
    z-index: 999;
}

.acccim-nav-module .fMenu,
.acccim-nav-module .menu-item {
    margin: 0;
    padding: 0;
    list-style: none;
}

.acccim-nav-module .menu-item a {
    display: block;
    padding: 12px 14px;
    border-radius: 10px;
    color: #fff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    text-align: left;
}

.acccim-nav-module .menu-item a:hover,
.acccim-nav-module .menu-item.active a,
.acccim-nav-module .menu-item.selected a {
    background: rgba(255,255,255,.12);
    color: #fff;
}

/* =========================
   Page Layout
========================= */

.head-padding {
    display: none;
}

#fContent {
    min-height: calc(100vh - 90px);
    padding: 0 0 70px;
    background: transparent;
}

#fContent > .container {
    max-width: 980px;
    padding-left: 10px;
    padding-right: 10px;
}

.fPageTitle {
    padding: 46px 20px 28px;
    margin-bottom: 0;
    color: #fff;
    text-align: center;
    background: transparent;
}

.fPageTitle h1,
#heading {
    color: #fff;
    font-size: clamp(26px, 4vw, 38px);
    font-weight: 700;
    letter-spacing: .5px;
    margin: 0;
}

#heading span {
    display: block;
    font-size: 1.3rem;
}

body.not-home #heading:after {
    content: "";
    display: block;
    width: 80px;
    height: 3px;
    background: var(--acccim-gold);
    margin: 15px auto 0;
    border-radius: 99px;
}

#fMatter {
    margin-top: 10px;
    margin-bottom: 55px;
    background: var(--acccim-panel);
    border-radius: 22px;
    padding: 34px 38px 40px;
    border: 1px solid rgba(255,255,255,.35);
    box-shadow: 0 25px 80px rgba(0,0,0,.32);
    backdrop-filter: blur(12px);
}

body.is-home #fMatter {
    margin: 0;
    background: transparent;
    border: 0;
    border-radius: 0;
    padding: 0;
    box-shadow: none;
    backdrop-filter: none;
}

/* =========================
   Forms
========================= */

body.not-home .fForm fieldset {
    margin: 0 0 26px;
    padding: 0;
    border: 0;
}

body.not-home .fForm fieldset legend {
    width: auto;
    float: none;
    margin: 0 0 18px;
    padding-top: 18px;
    color: #222;
    font-size: 17px;
    font-weight: 700;
}

body.not-home .f-fieldset-body {
    display: flex;
    flex-wrap: wrap;
    margin-left: -8px;
    margin-right: -8px;
}

body.not-home .fForm .form-item {
    padding-left: 8px;
    padding-right: 8px;
    margin-bottom: 18px;
}

body.not-home .fForm label {
    margin-bottom: 7px;
    color: #333;
    font-size: 14px;
    line-height: 1.35;
}

body.not-home #fMatter input[type="text"],
body.not-home #fMatter input[type="email"],
body.not-home #fMatter input[type="password"],
body.not-home #fMatter input[type="number"],
body.not-home #fMatter input[type="tel"],
body.not-home #fMatter select,
body.not-home #fMatter textarea {
    width: 100%;
    min-height: 42px;
    border-radius: 9px;
    border: 1px solid #ddd;
    background: #fff;
    box-shadow: none;
}

body.not-home #fMatter input:focus,
body.not-home #fMatter select:focus,
body.not-home #fMatter textarea:focus {
    outline: none;
    border-color: var(--acccim-red);
    box-shadow: 0 0 0 3px rgba(155,0,0,.12);
}

body.not-home .hint {
    margin-top: 6px;
    font-size: 11px;
    color: #555;
}

body.not-home .user-register-group .f-table-row {
    margin-bottom: 8px;
}

body.not-home .user-register-group input[type="radio"] {
    margin-right: 6px;
}

#fMatter .btn,
#fMatter button,
#fMatter input[type="submit"],
body.not-home #btn_submit {
    min-height: 42px;
    padding: 10px 24px;
    border: 0;
    border-radius: 999px;
    background: var(--acccim-red-dark);
    color: #fff;
    font-size: 13px;
    font-weight: 500;
}

#fMatter .btn:hover,
#fMatter button:hover,
#fMatter input[type="submit"]:hover,
body.not-home #btn_submit:hover {
    background: var(--acccim-red);
    color: #fff;
}

.intl-tel-input {
    width: 100%;
}

.int-tel.form-item {
    overflow: visible;
}

/* =========================
   Homepage
========================= */

body.acccim-home .fheaderToptwo,
body.acccim-home .head-padding,
body.acccim-home .fPageTitle,
body.acccim-home #fFooter,
body.acccim-home #nav-up {
    display: none !important;
}

body.acccim-home .fHeader {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background: transparent;
    border-bottom: 0;
    backdrop-filter: none;
}

body.acccim-home .fHeader .container {
    max-width: 980px;
}

body.acccim-home .acccim-header-region {
    padding-top: 24px;
}

body.acccim-home .acccim-logo-module img {
    width: 240px;
    max-width: 42vw;
}

body.acccim-home #fContent {
    min-height: 100vh;
    padding: 0;
}

body.acccim-home #fContent,
body.acccim-home #fContent > .container,
body.acccim-home #fMatter {
    max-width: 100%;
    padding-left: 0;
    padding-right: 0;
    background: transparent;
}

body.acccim-home #fContent .row {
    margin: 0 !important;
}

body.acccim-home .acccim-bg-layer {
    background:
        linear-gradient(180deg, rgba(60,0,0,.38), rgba(80,0,0,.18)),
        var(--acccim-desktop-bg) center center / cover no-repeat;
}

body.acccim-home .acccim-home-hero {
    min-height: 100vh;
    padding: 135px 20px 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
}

body.acccim-home .acccim-home-content {
    width: 100%;
    max-width: 760px;
    margin: 0 auto;
}

body.acccim-home .acccim-home-content h1 {
    margin: 0 auto 24px;
    color: #fff;
    font-size: clamp(28px, 3vw, 38px);
    font-weight: 400;
    line-height: 1.3;
    letter-spacing: 1px;
    text-shadow: 0 6px 25px rgba(0,0,0,.28);
}

body.acccim-home .acccim-home-subtitle {
    max-width: 720px;
    margin: 0 auto 40px;
    color: #fff;
    font-size: clamp(13px, 1.35vw, 20px);
    font-weight: 700;
    line-height: 1.55;
    text-transform: uppercase;
    text-shadow: 0 5px 20px rgba(0,0,0,.25);
}

body.acccim-home .acccim-event-info {
    max-width: 620px;
    margin: 0 auto 42px;
    padding: 24px 0;
    border-top: 2px solid rgba(214,166,62,.95);
    border-bottom: 2px solid rgba(214,166,62,.8);
    text-align: left;
}

body.acccim-home .acccim-event-info div {
    display: grid;
    grid-template-columns: 90px 20px 1fr;
    margin-bottom: 10px;
    color: #fff;
    font-size: clamp(16px, 1.6vw, 22px);
    line-height: 1.2;
}

body.acccim-home .acccim-event-info strong {
    font-weight: 700;
}

body.acccim-home .acccim-event-info p {
    margin: 0;
    font-weight: 300;
}

body.acccim-home .acccim-register-btn {
    position: relative;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 280px;
    min-height: 68px;
    padding: 14px 42px;
    border-radius: 999px;
    background: #6b0000;
    color: #fff;
    text-decoration: none;
    font-size: 22px;
    font-weight: 400;
    letter-spacing: 3px;
    line-height: 1.35;
    box-shadow: 0 15px 35px rgba(70,0,0,.35);
}

body.acccim-home .acccim-register-btn:hover {
    background: #850000;
    color: #fff;
}

/* =========================
   Thank You Page
========================= */

.thankyou-page {
    max-width: 700px;
    margin: 60px auto;
    text-align: center;
    padding: 40px 30px;
}

.thankyou-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    border-radius: 50%;
    background: #198754;
    color: #fff;
    font-size: 38px;
    font-weight: 700;
    line-height: 80px;
}

.thankyou-page h1 {
    color: #690000;
    font-size: 32px;
    margin-bottom: 15px;
}

.thankyou-page .lead {
    font-size: 19px;
    font-weight: 600;
    margin-bottom: 20px;
}

.thankyou-page p {
    line-height: 1.7;
    margin-bottom: 15px;
}

.thankyou-page a {
    color: #690000;
    font-weight: 600;
    text-decoration: none;
}

.thankyou-page a:hover {
    text-decoration: underline;
}

/* =========================
   Summary Page
========================= */

.acccim-summary-page {
    max-width: 920px;
    margin: 0 auto;
}

.summary-header {
    text-align: center;
    margin-bottom: 28px;
}

.summary-header h2 {
    color: #690000;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 8px;
}

.summary-header p {
    color: #555;
    margin: 0;
}

.summary-section {
    margin-bottom: 28px;
    padding: 24px;
    border-radius: 18px;
    background: #fff;
    border: 1px solid rgba(105,0,0,.12);
    box-shadow: 0 12px 35px rgba(0,0,0,.06);
}

.summary-section h3 {
    margin: 0 0 18px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(105,0,0,.18);
    color: #690000;
    font-size: 20px;
    font-weight: 700;
}

.summary-grid {
    display: grid;
    gap: 10px;
}

.summary-row {
    display: grid;
    grid-template-columns: 38% 1fr;
    gap: 18px;
    padding: 12px 14px;
    border-radius: 12px;
    background: #f8f8f8;
}

.summary-label {
    color: #555;
    font-size: 14px;
    font-weight: 600;
}

.summary-value {
    color: #222;
    font-size: 15px;
    font-weight: 500;
    word-break: break-word;
}

.summary-actions {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 28px;
}

.summary-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 10px 26px;
    border-radius: 999px;
    background: #690000;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
}

.summary-btn:hover {
    background: #900000;
    color: #fff;
}

/* =========================
   Iconset
========================= */

.iconset-new .fMenu {
    justify-content: center;
    display: flex;
    flex-wrap: wrap;
}

.iconset-new .fMenu > li {
    list-style: none;
    margin: 1rem;
    padding: 1rem;
    background: #f5f5f5;
    transition: .5s all;
    position: relative;
    border: 1px solid #eaeaea;
    border-radius: 5px;
}

.iconset-new .fMenu > li:hover {
    background: #fff;
    box-shadow: 0 0 1rem rgb(0 0 0 / 15%);
}

.iconset-new .fMenu > li > a {
    display: block;
    font-weight: bold;
    color: #000;
    border-radius: 5px;
}

.iconset-new img {
    width: auto;
    max-width: 64px;
    display: block;
    margin-bottom: .5rem;
}

.iconset-new .menu-item-text .action:before {
    display: block;
    content: "";
    height: 1.04rem;
    width: 1.04rem;
    background: red;
    border-radius: 1rem;
    position: absolute;
    right: 10px;
    top: 19%;
    transform: translate(0,-50%);
    animation: blinking 2s infinite;
}

.iconset-new .fMenu ul {
    margin-left: 20px;
    margin-top: .5rem;
}

.iconset-new .fMenu ul,
.iconset-new .fMenu ul li {
    list-style: square;
}

.iconset-new .fMenu ul a {
    font-weight: 500;
}

/* =========================
   Mobile
========================= */

@media (max-width: 767px) {
    .acccim-bg-layer,
    body.acccim-home .acccim-bg-layer,
    body.not-home .acccim-bg-layer {
        background:
            linear-gradient(to bottom, rgba(85,0,0,.92), rgba(180,10,8,.4)),
            var(--acccim-mobile-bg) center bottom / cover no-repeat;
    }

    .fHeader .container {
        padding-left: 20px;
        padding-right: 20px;
    }

    .acccim-logo-module img,
    body.acccim-home .acccim-logo-module img {
        width: 175px;
        max-width: 58vw;
    }

    .acccim-nav-module .navbar-toggle {
        width: 50px;
    }

    .acccim-nav-module nav {
        top: 44px;
        width: 210px;
    }

    body.not-home .fPageTitle {
        padding: 42px 20px 20px;
    }

    #heading,
    body.not-home #heading {
        font-size: 28px;
    }

    #fContent {
        padding: 0 0 50px;
    }

    #fMatter,
    body.not-home #fMatter {
        margin-top: 20px;
        padding: 22px 18px 28px;
        border-radius: 14px;
    }

    body.not-home .fForm fieldset legend {
        font-size: 16px;
    }

    body.acccim-home .acccim-header-region {
        padding-top: 10px;
    }

    body.acccim-home .acccim-home-hero {
        padding: 145px 20px 55px;
        display: block;
        text-align: center;
    }

    body.acccim-home .acccim-home-content {
        margin: 0 auto;
    }

    body.acccim-home .acccim-home-content h1 {
        font-size: 22px;
    }

    body.acccim-home .acccim-home-subtitle {
        font-size: 13px;
        margin-bottom: 66px;
    }

    body.acccim-home .acccim-event-info {
        margin: 0 auto 70px;
    }

    body.acccim-home .acccim-event-info div {
        font-size: 16px;
    }

    body.acccim-home .acccim-register-btn {
        width: 76%;
        min-width: 0;
        min-height: 84px;
        font-size: 22px;
    }

    .summary-section {
        padding: 20px 16px;
        border-radius: 16px;
    }

    .summary-row {
        grid-template-columns: 1fr;
        gap: 5px;
    }

    .summary-header h2 {
        font-size: 24px;
    }
}

.converted-guest-block {
    width: 100%;
    padding: 10px;
    background: #ffffff;
	border-radius: 8px;
}
.converted-guest-title {
    font-weight: 600;
    margin-bottom: 12px;
    color: #333333;
}
.converted-guest-block .form-control {
    width: 100%;
    min-height: 40px;
}
