
.content_termo {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.checkbox-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 600px;
}

.checkbox-wrapper {
    background-color: var(--secondary-color);
    border-radius: 10px;
    padding: 15px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
}

    /* Hide default checkbox */
    .checkbox-wrapper input[type="checkbox"] {
        display: none;
    }

    .checkbox-wrapper label {
        cursor: pointer;
        font-size: 14px;
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
        margin: 0 auto;
    }

/* Classic */
#classic + label:before {
    content: '';
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 2px solid var(--text-color);
    margin-right: 10px;
}

#classic:checked + label:before {
    background-color: var(--primary-color);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
    background-size: 80%;
    background-repeat: no-repeat;
    background-position: center;
}

/* Toggle Switch */
#toggle + label {
    width: 60px;
    height: 30px;
    background: var(--secondary-color);
    border-radius: 15px;
}

    #toggle + label:after {
        content: '';
        position: absolute;
        top: 2px;
        left: 2px;
        width: 26px;
        height: 26px;
        background: var(--text-color);
        border-radius: 50%;
        transition: 0.3s;
    }

#toggle:checked + label {
    background: var(--primary-color);
}

    #toggle:checked + label:after {
        left: calc(100% - 2px);
        transform: translateX(-100%);
    }

/* Neon Glow */
#neon + label {
    width: 20px;
    height: 20px;
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    transition: 0.3s;
}

#neon:checked + label {
    box-shadow: 0 0 10px var(--primary-color);
    background-color: var(--primary-color);
}

/* Animated Check */
@keyframes check {
    0% {
        transform: scale(0);
    }

    100% {
        transform: scale(1);
    }
}

#animated + label {
    width: 20px;
    height: 20px;
    border: 2px solid var(--text-color);
    position: relative;
}

#animated:checked + label:after {
    content: '\2714';
    position: absolute;
    top: 0;
    left: 4px;
    color: var(--primary-color);
    font-size: 16px;
    animation: check 0.3s cubic-bezier(0.68, -0.55, 0.27, 1.55);
}

/* Pulsating */
@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
    }
}

#pulse + label {
    width: 20px;
    height: 20px;
    border: 2px solid var(--text-color);
    border-radius: 50%;
}

#pulse:checked + label {
    background: var(--primary-color);
    animation: pulse 1s infinite;
}

/* Ripple Effect */
#ripple + label {
    width: 20px;
    height: 20px;
    border: 2px solid var(--text-color);
    border-radius: 50%;
    position: relative;
    overflow: hidden;
}

#ripple:checked + label:after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 5px;
    height: 5px;
    background: rgba(76, 175, 80, 0.5);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: ripple 0.6s linear;
}

@keyframes ripple {
    to {
        width: 30px;
        height: 30px;
        opacity: 0;
    }
}

/* Handwritten */
#handwritten + label {
    font-family: 'Brush Script MT', cursive;
    font-size: 24px;
    color: var(--text-color);
}

#handwritten:checked + label {
    text-decoration: line-through;
    color: var(--primary-color);
}

/* Container styles */
.container {
    cursor: pointer;
}

    .container input {
        display: none;
    }

    .container svg {
        overflow: visible;
    }

.path {
    fill: none;
    stroke: var(--text-color);
    stroke-width: 6;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: stroke-dasharray 0.5s ease, stroke-dashoffset 0.5s ease;
    stroke-dasharray: 241 9999999;
    stroke-dashoffset: 0;
}

.container input:checked ~ svg .path {
    stroke-dasharray: 70.5096664428711 9999999;
    stroke-dashoffset: -262.2723388671875;
}

/* Checkmark styles */
.container input {
    display: none;
}

.container {
    display: block;
    position: relative;
    cursor: pointer;
    font-size: 20px;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
}

.checkmark {
    position: relative;
    top: 0;
    left: 0;
    height: 1.3em;
    width: 1.3em;
    background-color: transparent;
    border-radius: 0.25em;
    transition: all 0.25s;
}

.container input:checked ~ .checkmark {
    background-color: var(--primary-color);
}

.checkmark:after {
    content: "";
    position: absolute;
    transform: rotate(0deg);
    border: 0.1em solid var(--text-color);
    left: 0;
    top: 0;
    width: 1.05em;
    height: 1.05em;
    border-radius: 0.25em;
    transition: all 0.25s, border-width 0.1s;
}

.container input:checked ~ .checkmark:after {
    left: 0.45em;
    top: 0.25em;
    width: 0.25em;
    height: 0.5em;
    border-color: transparent var(--secondary-color) var(--secondary-color) transparent;
    border-width: 0 0.15em 0.15em 0;
    border-radius: 0;
    transform: rotate(45deg);
}

footer {
    text-align: center;
    padding: 10px;
    background-color: var(--background-color);
    /* color: var(--text-color); */
    font-size: 14px;
    position: fixed;
    bottom: 10px;
    left: 0;
    right: 0;
}

cbutton {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 10px 20px;
    font-size: 16px;
    background-color: var(--primary-color);
    color: var(--secondary-color);
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

    cbutton:hover {
        opacity: 0.9;
    }

.flex-betwen {
    display: flex;
    flex-direction: column;
    /* justify-content: space-between; */
    /* justify-items: ; */
}

.check {
    cursor: pointer;
    position: relative;
    margin: auto;
    width: 18px;
    height: 18px;
    -webkit-tap-highlight-color: transparent;
    transform: translate3d(0, 0, 0);
}

    .check:before {
        content: "";
        position: absolute;
        top: -15px;
        left: -15px;
        width: 48px;
        height: 48px;
        border-radius: 50%;
        background: rgba(34, 50, 84, 0.03);
        /* background: var(--secondary-color); */
        opacity: 0;
        transition: opacity 0.2s ease;
    }

    .check svg {
        position: relative;
        z-index: 1;
        fill: none;
        stroke-linecap: round;
        stroke-linejoin: round;
        stroke: var(--text-color);
        stroke-width: 1.5;
        transform: translate3d(0, 0, 0);
        transition: all 0.2s ease;
    }

        .check svg path {
            stroke-dasharray: 60;
            stroke-dashoffset: 0;
        }

        .check svg polyline {
            stroke-dasharray: 22;
            stroke-dashoffset: 66;
        }

    .check:hover:before {
        opacity: 1;
    }

    .check:hover svg {
        stroke: var(--primary-color, #a3e583);
    }

#cbx2 {
    display: none;
    color:#29a4bf;
}

    #cbx2:checked + .check svg {
        stroke: var(--primary-color, #a3e583);
    }

        #cbx2:checked + .check svg path {
            stroke-dashoffset: 60;
            transition: all 0.3s linear;
        }

        #cbx2:checked + .check svg polyline {
            stroke-dashoffset: 42;
            transition: all 0.2s linear;
            transition-delay: 0.15s;
        }

.link {
    text-decoration: none;
    color: var(--primary-color);
}

.aname {
    color: var(--text-color);
    opacity: 100;
    text-decoration-color: var(--text-color);
}

.bell-regular-container {
    width: 24px;
    height: 24px;
    /* display: flex; */
    /* justify-content: center; */
    /* align-items: center; */
    /* position: relative; */
    /* cursor: pointer; */
    user-select: none;
    fill: var(--primary-color);
}

    .bell-regular-container .bell-regular {
        position: absolute;
        animation: keyframes-fill .5s;
    }

    .bell-regular-container .bell-solid {
        position: absolute;
        display: none;
        animation: keyframes-fill .5s;
    }

    .bell-regular-container input:checked ~ .bell-regular {
        display: none;
    }

    .bell-regular-container input:checked ~ .bell-solid {
        display: block;
    }

    .bell-regular-container input {
        position: absolute;
        opacity: 0;
        cursor: pointer;
        height: 0;
        width: 0;
    }

@keyframes keyframes-fill {
    0% {
        opacity: 0;
    }

    25% {
        transform: rotate(25deg);
    }

    50% {
        transform: rotate(-20deg) scale(1.2);
    }

    75% {
        transform: rotate(15deg);
    }
}


.uv-checkbox-wrapper {
    display: inline-block;
}

.uv-checkbox {
    display: none;
}

.uv-checkbox-label {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.uv-checkbox-icon {
    position: relative;
    width: 2em;
    height: 2em;
    border: 2px solid var(--text-color);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    transition: border-color 0.3s ease, border-radius 0.3s ease;
}

.uv-checkmark {
    position: absolute;
    top: 0.1em;
    left: 0.1em;
    width: 1.6em;
    height: 1.6em;
    fill: none;
    stroke: #fff;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-dasharray: 24;
    stroke-dashoffset: 24;
    transition: stroke-dashoffset 0.5s cubic-bezier(0.45, 0.05, 0.55, 0.95);
}

.uv-checkbox-text {
    margin-left: 0.5em;
    transition: color 0.3s ease;
}

.uv-checkbox:checked + .uv-checkbox-label .uv-checkbox-icon {
    border-color: var(--primary-color);
    border-radius: 70% 30% 30% 70% / 70% 70% 30% 30%;
    background-color: var(--primary-color);
}

.uv-checkbox:checked + .uv-checkbox-label .uv-checkmark {
    stroke-dashoffset: 0;
}

.uv-checkbox:checked + .uv-checkbox-label .uv-checkbox-text {
    color: var(--primary-color);
}
