.responsive-title-2 {
    display: none;
}

@media (max-width: 800px) {
    .responsive-title-1 {
        display: none;
    }

    .responsive-title-2 {
        display: block;
    }
}

.main-divide {
    display: grid;
    grid-template-columns: 1fr 1fr;
    /* align-items: start; */
    column-gap: 15px;
    row-gap: 15px;
}

.parameter-box {
    padding: 10px 15px 15px 15px;

    border-color: #E2E6E9;
    border-width: 2px;
    border-style: solid;
    border-radius: 0.3rem;

    display: flex;
    flex-direction: column;
    row-gap: 10px;
}

.parameter-title-group {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.parameter-title-circle {
    min-width: 25px;
    padding: 0px 8px;
    background-color: #E2E6E9;

    border: 0px;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 0.9rem;

}

.label-circle {
    width: 18px;
    height: 18px;
    padding: 0px 0px;
    background-color: transparent;

    line-height: 20px;

    border: 2px solid #666;
    border-radius: 999px;
    
    display: flex;
    align-items: center;
    justify-content: center;

    color: #666;
    font-size: 11pt;

    -webkit-user-select: none;
    user-select: none;
}

.mono {
    font-family: "Roboto Mono", monospace;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
}

.text-field {
    border-width: 1px;
    border-color: #CCC;
    border-style: solid;
    border-radius: 0.3rem;

    width: 100%;
    height: 35px;
    padding: 5px;

    box-sizing: border-box;
    font-size: 12pt;
}

.slider {
    appearance: none;
    margin: 0px 0px;
    width: 100%;
    height: 6px;
    border-radius: 6px;
    border: 0px solid #aaa;
    background: #E2E6E9;
}

.slider::-webkit-slider-thumb {
    appearance: none;
    background: #fff;
    border: 1px solid #aaa;
    border-radius: 0.3rem;
    width: 25px;
    height: 25px;
    box-shadow: none;
    opacity: 1%;
    /* visibility: hidden; */
}

.elastic-thumb {
    height: 25px;
    width: 25px;
    
    background-color: #fff;
    border: 1px solid #aaa;
    border-radius: 0.3rem;

    margin-top: -25px;
    pointer-events: none;
}

.picker-wrapper {
    width: 55px;
    height: 35px;
    padding: 0px;
    box-sizing: border-box;

    border-style: solid;
    border-width: 1px;
    border-radius: 0.3rem;
    border-color: #ddd;
    
    display: flex;
    align-items: center;
    justify-content: center;

    background-color: #000000;
}

.download-button {
    width: 80px;
    height: 35px;
    
    border: 1px solid #afc0cb;
    border-radius: 10rem;

    color: #444;
    font-size: 1rem;
    background-color: #FFFFFF;

    font-weight: 500;
}

.download-button:hover {
    background-color: #F0F0F0;
}

.radio-button {
    width: 100%;
    height: 100%;

    border: 1px solid #afc0cb;
    border-radius: 0.25rem;
    /* border-radius: calc(0.3rem); */

    color: #444;
    font-size: 1rem;
    font-weight: 400;
    background-color: transparent;
    margin: 0px;

    transform: scale(1.005);

    /* transform: translate3d(0, 0, 0); */
}

.radio-button:hover {
    background-color: #F0F0F0;
}

.radio-button-active {
    color: white;
    background-color: #afc0cb;
}

.radio-button-active:hover {
    background-color: #afc0cb;
}

button {
  cursor: pointer;
}

.has-label {
    position: relative;
}

.has-label::after {
    display: none;

    content: "QR code 在受到部分遮擋時仍有可能被讀取。容錯等級越高，就能承受越多遮擋，但 QR code 的複雜度可能因此增加。";
    position: absolute;

    right: 0%;
    bottom: 125%;

    border-radius: 0.3rem;
    border: 2px solid #E2E6E9;

    width: 200px;
    padding: 10px;
    
    background-color: #fafafa;

    box-shadow: 0px 5px 10px #55555520;

    font-size: 0.8rem;
    font-weight: 400;
}

.has-label:hover::after {
    display: block;
}

.has-label.active::after {
    display: block;
}

body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    background: #E2E6E9;
    color: #222;
}

.sheets {
    display: flex;
    flex-direction: column;
    align-items: center; 
    row-gap: 2rem;
    margin: 2rem auto 2rem auto;
}

.sheet {
    position: relative;
    box-sizing: border-box;
    max-width: 800px;
    min-width: 320px;
    width: 100%; 
    margin: 0px;
    padding: 4rem 4rem;
    background-color: #fafafa;
    border-radius: 0.3rem;
}

p {
    font-size: 1.1rem;
    margin-top: 1rem;
    margin-bottom: 1rem;
}

a {
    color: #4d87b9;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.title-group {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 16px;
    margin-bottom: 2rem;
}

.title-circle {
    box-sizing: border-box;
    height: 2.75em;
    width: 2.75em;
    border: 0.75em solid #C0D1DC;
    border-radius: 50%;
    z-index: 100;
}

h1 {
    font-family: "Noto Sans TC", sans-serif;
    font-optical-sizing: auto;
    font-weight: 800;
    font-style: normal;
    font-size: 2.5em;

    margin: 0rem;
    color: #444444;
}

.title-group > h1 {
    transform: translate(0em, -0.04em);
}

h2 {
    margin: 0;
    font-size: 1.2rem;
    color: #444444;
}


h3 {
    margin: 0;
    font-size: 1.0rem;
    font-weight: 400;
    font-weight: 500;
    color: #444444;
}

.character-list {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    column-gap: 12px;
    row-gap: 24px;

}

.pfp-square {
    height: auto;
    width: 100%;
    border-radius: 0.3rem;
}

@media (max-width: 800px) {
    .main-divide {
        display: flex;
        flex-direction: column;
        align-items: stretch;
    }
    
    .sheets {
        margin: 1rem;
        row-gap: 1rem;
    }

    .sheet {
        padding: 2.5rem 2rem;
    }

    .title-group {
        /* To change the size of profile circles */
        font-size: 14px; 
    }
}

@media (max-width: 600px) {
    .character-list {
        grid-template-columns: 1fr 1fr;
    }
}

footer {
    background-color: #fafafa;
    padding: 0.5rem 1rem;
    border-radius: 999px;
    font-size: 0.9rem;
    color: #666;
}