﻿body {
    background-color: rgb(21, 25, 83);
}

.pop-circ {
    width: 40px;
    height: 40px;
    background-color: white;
    box-shadow: rgb(0, 0, 0, 0.2) 2px 3px 4px;
    border-radius: 50%;
    position: absolute;
    bottom: 15px;
    right: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
}

    .pop-circ:hover {
        cursor: pointer;
        background-color: white;
        box-shadow: rgb(0, 0, 0, 0.4) 2px 3px 4px;
    }

/* Estilizar el checkbox ocultándolo */
input[type='checkbox'] {
    display: none;
}

/* Estilo para el label que actúa como botón */
.toggle-label {
    cursor: pointer;
    padding: 10px 20px;
    background-color: #007bff;
    color: #fff;
    border-radius: 5px;
}

input[type='checkbox']:checked ~ .pop-circ > .svg-close {
    display: block;
    color: red;
}

.svg-close {
    display: none;
}

input[type='checkbox']:checked ~ .pop-circ > .svg-quest {
    display: none;
}

.svg-quest {
    display: block;
}

/* Cuando el checkbox está marcado, mostrar la caja */
input[type='checkbox']:checked ~ .pop-circ-cuadro {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    gap: 15px;
}

/* Estilo de la caja */
.pop-circ-cuadro {
    box-sizing: border-box;
    box-shadow: rgb(0, 0, 0, 0.2) 2px 3px 4px;
    border-radius: 12px;
    width: 250px;
    height: fit-content;
    background-color: rgba(255, 255, 255, 0.17);
    display: none;
    position: absolute;
    bottom: 65px;
    right: 15px;
    padding: 25px;
}

    .pop-circ-cuadro > .title {
        color: #fff;
        font-feature-settings: 'cv11';
        font-family: inherit;
        font-size: 15px;
        font-style: normal;
        font-weight: 700;
        line-height: normal;
        letter-spacing: 0.3px;
    }

    .pop-circ-cuadro > .subtitle {
        color: #fff;
        font-feature-settings: 'cv11';
        font-family: inherit;
        font-size: 11px;
        font-style: normal;
        font-weight: 500;
        line-height: normal;
        letter-spacing: 0.22px;
    }

    .pop-circ-cuadro > .btn {
        box-sizing: border-box;
        width: 100%;
        height: min-content;
        border-radius: 12px;
        background: rgba(0, 0, 0, 0.35);
        border: solid 1px #66696c;
        box-shadow: rgb(0, 0, 0, 0.2) 2px 3px 4px;
        display: flex;
        gap: 10px;
        flex-direction: column;
        padding: 10px;
    }

        .pop-circ-cuadro > .btn > .btn-title {
            color: #fff;
            font-feature-settings: 'cv11';
            font-family: inherit;
            font-size: 10px;
            font-style: normal;
            font-weight: 700;
            line-height: normal;
            letter-spacing: 0.2px;
        }

        .pop-circ-cuadro > .btn > .btn-info {
            color: #fff;
            background-color: transparent;
            display: flex;
            flex-direction: row;
            gap: 10px;
            font-feature-settings: 'cv11';
            font-family: inherit;
            font-size: 14px;
            font-style: normal;
            font-weight: 700;
            line-height: normal;
            letter-spacing: 0.2px;
        }

        .pop-circ-cuadro > .btn .flex {
            display: flex;
        }

        .pop-circ-cuadro > .btn .flex-row {
            flex-direction: row;
        }

        .pop-circ-cuadro > .btn .flex-col {
            flex-direction: column;
        }

        .pop-circ-cuadro > .btn .gap-1 {
            gap: 4px;
        }

        .pop-circ-cuadro > .btn .gap-2 {
            gap: 8px;
        }

        .pop-circ-cuadro > .btn .gap-3 {
            gap: 12px;
        }

        .pop-circ-cuadro > .btn .gap-4 {
            gap: 16px;
        }

        .pop-circ-cuadro > .btn .items-center {
            align-items: center;
        }

        .pop-circ-cuadro > .btn .justify-center {
            justify-content: center;
        }
