/* 
*/
html {
    font-size: 10px;
}
body {
    font-weight: 400;
    /* font-family: var(--ff-ubuntu); */
    font-size: 2rem;
    line-height: 1.4;
    color: black; 
}
img {
    max-width: 100%;
}

.page-title-elm {
    font-weight: 700;
    font-size: 4rem;
    margin: 0 0 5rem;
}
/* 
HEADER
*/
header {
    background-color: #111;
    background-color: #131a22;
    margin: 0 0 3rem;
}
.site-branding {
    text-align: center;
    padding: 2rem;
    
    
    color: #facb08;
}
.site-branding h1 {
    font-size: 5rem;
    font-weight: 700;
    font-style: italic;
}
.site-branding h1 a {
    color: #facb08;
    text-decoration: none;
}
@media only screen and (max-width: 600px) {
    .site-branding h1 {
        font-size: 3.5rem;
    }
}
/* 
FOOTER
 */
footer {
    text-align: center;
    padding: 3rem 0 3rem;
    font-size: 1.2rem;
}
/* 
MAIN SITE */
.main-brosur-section {
    text-align: center;
}
.main-brosur-section .item-wrap img {
    max-width: 60rem;
}
/**/
.link-wrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    height: 100%;
    padding: 16rem 0;
}
.link-button {
    background-color: #131a22;
    color: #facb08;
    padding: 1.5rem 2rem;
    display: block;
    width: 100%;
    font-size: 2.5rem;
    text-decoration: none;
    border: .2rem solid #facb08;
    transition: .3s all ease-in-out;
    border-radius: 1rem;
    margin: 1rem 0;
}
.link-button:hover {
    background-color: #000;
    color: #FFF;
}
@media only screen and (max-width: 1200px) {
    .link-wrap {
       padding: 1rem 0 0;
    }
}
@media only screen and (max-width: 767px) {
    .link-button {
        font-size: 2rem;
    }
}
@media only screen and (max-width: 600px) {
    .link-button {
        font-size: 1.5rem;
    }
}
/* 
KOTA
*/
.kota-section {
    text-align: center;
}
.kota-section h1 {
    font-size: 4rem;
    font-weight: 900;
    margin: 0 0 3rem;
    text-transform: uppercase;
}
.kota-section img {
    margin:  1rem 0;
    max-width: 66rem;
}
@media only screen and (max-width: 700px) {
    .kota-section img {
        margin:  1rem 0;
        max-width: 100%;
    }
    .kota-section h1 {
        font-size: 3.5rem;
    }
}
.kota-section .button-wrap {
    text-align: center;
}
.kota-section .button-wrap .link-button {
    width: auto;
    display: inline-block;
}
.kota-section .link-daftar-wrap .link-button {
    width: auto;
    display: inline-block;
}
/*
PENDAFTARN
*/
.form-pendaftaran-section {
    padding: 5rem 0;
    background-color: #FFF;
}
.form-pendaftaran-section h1 {
    color: var(--theme-color);
}
.form-title-elm {
    background-color: var(--title-bg-color);
    color: #FFF;
    font-weight: 700;
    font-size: 3.5rem;
    padding: .5rem 3rem;
    text-transform: uppercase;
}
@media (max-width: 600px) {
    .form-title-elm {
        font-size: 2.5rem;
    }
}
/**/
.form-wrap tr.error {
    background-color: #f8d7da;
}
.form-wrap .table {
    background-color: transparent;
}
.form-wrap .table td, .form-wrap .table th {
    background-color: transparent;
}
.form-wrap .req {
    color: red;
}
.form-wrap label {
    display: block;
    font-weight: 700;
}
.form-wrap .note-2-wrap {
    padding: 5rem;
    background-color: #d1d2d4;
}
/* RADIO */
.form-wrap label.label-radio {
    font-weight: 400;
    padding: .5rem 2rem; 
    display: inline-block;
    vertical-align: middle;
    position: relative;
    padding-left: 30px;
    cursor: pointer;
    user-select: none;
    font-size: 16px;
}
.form-wrap label.label-radio input[type="radio"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}
.custom-radio {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    height: 2.2rem;
    width: 2.2rem;
    background: radial-gradient(circle, #fff 60%, #ccc 100%);
    border: .2rem solid #bbb;
    border-radius: 50%;
    box-shadow: inset 0 .1rem .3rem rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
}
/* Inner dot */
.custom-radio::after {
    content: "";
    position: absolute;
    display: none;
    top: .4rem;
    left: .4rem;
    width: 1rem;
    height: 1rem;
    border-radius: 50%;
    background: var(--theme-color);
    box-shadow: 0 0 .6rem #28114688;
    transition: all 0.3s ease;
}
.form-wrap label.label-radio input[type="radio"]:checked ~ .custom-radio::after {
    display: block;
}
.form-wrap label.label-radio input[type="radio"]:checked ~ .custom-radio {
    border-color: var(--theme-color);
    background: #f2eefe; background: #222;
    box-shadow: 0 0 0 .4rem #28114633;
    -webkit-box-shadow: 0 0 0 .4rem #28114633;
}
.form-wrap label.label-radio:hover .custom-radio {
    border-color: var(--theme-color);
}
.form-wrap label.label-radio input[type="radio"]:focus-visible ~ .custom-radio {
    outline: .2rem solid var(--theme-color);
    outline-offset: .4rem;
}
/* CHECKBOX */
.fancy-checkbox-label {
    position: relative;
    padding-left: 3.2rem;
    cursor: pointer;
    font-size: 1.6rem;
    color: #333;
    user-select: none;
    transition: color 0.3s ease;
}
.fancy-checkbox-label input[type="checkbox"], .fancy-checkbox-label input[type="radio"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}
.fancy-checkbox-custom {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    height: 2rem;
    width: 2rem;
    background-color: #fff;
    border: .2rem solid #888;
    border-radius: .6rem;
    box-shadow: inset 0 .1rem .2rem rgba(0,0,0,0.1);
    -webkit-box-shadow: inset 0 .1rem .2rem rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
}
/* Checkmark (✓) */
.fancy-checkbox-custom::after {
    content: '';
    position: absolute;
    display: none;
    left: .5rem;
    top: .1rem;
    width: .6rem;
    height: 1.2rem;
    border: solid #281146;
    border-width: 0 .2rem .2rem 0;
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    transition: all 0.3s ease;
    -webkit-ransition: all 0.3s ease;
}
/* Checked state */
.fancy-checkbox-label input[type="checkbox"]:checked ~ .fancy-checkbox-custom, .fancy-checkbox-label input[type="radio"]:checked ~ .fancy-checkbox-custom {
    background-color: #f2eefe;
    border-color: #281146;
    box-shadow: 0 0 0 .4rem #28114633;
    -webkit-box-shadow: 0 0 0 .4rem #28114633;
}
.fancy-checkbox-label input[type="checkbox"]:checked ~ .fancy-checkbox-custom::after, .fancy-checkbox-label input[type="radio"]:checked ~ .fancy-checkbox-custom::after {
    display: block;
}
/* Hover */
.fancy-checkbox-label:hover .fancy-checkbox-custom {
    border-color: #281146;
}
/* Focus ring */
.fancy-checkbox-label input[type="checkbox"]:focus-visible ~ .fancy-checkbox-custom, .fancy-checkbox-label input[type="radio"]:focus-visible ~ .fancy-checkbox-custom {
    outline: .2rem solid #281146;
    outline-offset: .3rem;
}
/**/
.form-wrap .note-wrap {
    font-size: 1.5rem;
}
.form-wrap label.inline {
    display: inline-block;
    vertical-align: middle;
}
.form-wrap label small {
    display: block;
    font-weight: 400;
    font-size: 1.6rem;
}
.form-wrap table td, .form-wrap table th {
    padding: 1rem;
    vertical-align: middle;
}
.form-wrap table .small-col {
    width: 5rem;
}
.form-wrap table .medium-col {
    width: 30rem;
}
.form-wrap .form-group {
    margin-bottom: 1.5rem;
}
.form-wrap .form-control {
    padding: 1rem;
    border: none;
    border-bottom: .1rem solid var(--title-bg-color);
    font-size: 2rem;
    border-radius: 0;
    transition: .3s all ease-in-out;
    -webkit-transition: .3s all ease-in-out;
    background-color: transparent;
    border-bottom: .1rem solid #000;
}
.form-wrap .form-control.inline {
    display: inline-block;
    width: auto;
}
.form-wrap .form-control.large {
    width: 80%;
}
.form-wrap .form-control:focus {
    background-color: #000;
    color: #FFF;
    outline: none;
    box-shadow: none;
}
.form-wrap select.form-control, .form-wrap select.form-control option {
    text-transform: capitalize !important;
}
/**/
.table-packages {
    text-align: center;
}
.table-packages td {
    width: 14.2%;
}
.table-packages .bg-1 {
    background-color: #a7a9ab;
}
.table-packages .bg-2 {
    background-color:  #d1d2d4;
}
.table-packages label {
    height: 4rem;
}
.table-packages .fancy-checkbox-custom {
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
}
/**/
.form-wrap .button-wrap {
    text-align: center;
    padding: 5rem 0;
}
/**/
.form-wrap .package-list-wrap {
    margin-bottom: 3rem;
}
.form-wrap .package-list-wrap .row {
    --bs-gutter-x: 3rem;
    --bs-gutter-y: 3rem;
}
.form-wrap .package-list-wrap .item-wrap {
    border: .2rem solid var(--theme-color);
    text-align: center;
    padding: 3rem;
    border-radius: .3rem;
    -webkit-border-radius: .3rem;
    transition: .3s all ease-in-out;
    height: 100%;
}
.form-wrap .package-list-wrap .item-wrap:hover {
    background-color: var(--theme-color);
    color: #FFF;
}
.form-wrap .package-list-wrap .item-wrap h3 {
    min-height: 7.2rem;
}
.form-wrap .package-list-wrap .text-item-wrap {
    margin-bottom: 1.5rem;
    min-height: 18rem;
}
.form-wrap .package-list-wrap .item-wrap label {
    display: inline-block;
    width: 3rem;
    height: 3rem;
}
@media (max-width:767px) {
    .form-wrap .package-list-wrap .item-wrap {
        width: 95%;
        margin: 1.5rem auto;
    }
}
@media (max-width: 600px) {
    /* .form-wrap{
        overflow: auto;
    } */
    .form-wrap .table, .form-wrap .table tbody {
        display: block;
    }
    .form-wrap .table td.small-col:nth-child(3) {
        display: none !important;
    }
    /* .form-wrap .table td, th {
        display: block; 
        width: 100% !important;
    } */
     .form-wrap .table tr {
        display: flex; display: block;
        flex-wrap: wrap;
     }
     .form-wrap .table tr td,  .form-wrap .table tr th {
        width: 100%; 
        display: block;
     }
    .form-wrap .table tr td:nth-child(1) {
        width: 4rem; width: 100%; 
        /* text-align: center; */
        font-weight: 700;
        background-color: var(--theme-color);
        color: #FFF; color: #000;
    }
    .form-wrap .table tr th:nth-child(2) {
        width: calc(100% - 4rem); width: 100%;
        background-color: var(--theme-color);
        color: #FFF; color: #000;
        /* text-align: center; */
    }
    .table-wrap {
        overflow-x: auto;
        width: 100%;
    }
    .form-wrap .table .table-bordered tr {
        display: table-row;
    }
    .form-wrap .table .table-bordered td, .form-wrap .table .table-bordered th {
        background-color: transparent !important;
        color: #000 !important;  
        width: auto;
    }
    .form-wrap .table tr td.td-full-width:nth-child(1) {
        width: 100%;
        background-color: transparent;
        padding: 0;
        color: #000;
    }
    .form-wrap .note-2-wrap {
        padding: 1.5rem;
        text-align: left;
        font-weight: 400;
        font-size: 1.6rem;
    }
    .form-wrap .note-2-wrap h3 {
        font-size: 2rem;
    }
}
/*
Pendaftaran Berhasil Section
*/
.pendaftaran-berhasil-section {
    min-height: auto;
    min-height: calc(100vh - 25rem);
    color: #000;
    padding: 5rem 0;
    text-align: center;
    
}
.pendaftaran-berhasil-section h1 {
    color: var(--theme-color-2);
    font-size: 5rem; 
    font-weight: 700;
}
/*
LIST PENDAFTARAN PEMUDA
*/
.list-pemuda-section {
    font-size: 1.6rem;
    margin-bottom: 3rem;
    padding-bottom: 3rem;
    border-bottom: .5rem solid #000;
}
.list-pemuda-section h2 {
    font-weight: 700;
    text-align: center;
}