:root {
    --primary-color-detail: #00defd;
    --primary-color: #0c112c;
    --secondary-color: #0a1c32;
}

.body-content {
    max-width: 960px;
    padding-left: 15px;
    padding-right: 15px;
    margin: 0 auto;
}

body {
    background-color: var(--primary-color);
    color: white;
    padding-top: 30px !important;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 14px !important;
    line-height: 1.428571429;
}

h1, h2, h5, .btn, .btn-default.body-content {
    font-family: "Roboto Mono", sans-serif;
    text-transform: uppercase;
    font-size: 14px;
}

h1 {
    font-weight: 500;
    font-size: 20px;
    color: var(--primary-color-detail);
    margin-top: 50px;
}

h2 {
    margin-bottom: 50px;
    font-size: 26px;
    text-align: center;
}

h5 {
    font-weight: 300;
    width: 100%;
}

    h5 span {
        text-transform: none;
        font-size: 10px;
    }

h1 span {
    border: 1px solid var(--primary-color-detail);
    padding: 3px 9px;
    border-radius: 6px;
    background-color: #00defd29;
}

.btn {
    color: var(--primary-color);
    border-color: var(--primary-color-detail);
    background-color: var(--primary-color-detail);
    font-weight: 500;
    border-radius: 9px;
    box-shadow: 0px 0px 4px 1px var(--primary-color-detail);
    cursor: pointer;
    padding: 5px 10px;
    border: none;
}

    .btn:hover, .btn-default:hover {
        color: var(--primary-color) !important;
        background-color: #3276b1;
        border-color: #285e8e;
        box-shadow: 0px 0px 4px 1px #285e8e;
    }

form {
    margin-bottom: 50px;
}

.form-control {
    display: block;
    width: 100%;
    height: 34px;
    font-size: 14px;
    line-height: 1.428571429;
    color: #555;
    vertical-align: middle;
    background-color: #fff;
    border: 1px solid #ccc;
    border-radius: 9px;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
    -webkit-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
    transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
}

a:not(.btn), a:not(.btn):hover {
    color: var(--primary-color-detail) !important;
}

.text-danger {
    color: #b94a48;
}

    .text-danger.field-validation-error {
        position: absolute;
        font-size: 12px;
    }

    select, label{
        cursor:pointer;
    }
/* 1 */
.insc-container input{
    display:none;
}
.insc-container > label.active {
    border: 1px solid var(--primary-color-detail);
    box-shadow: 0px 0px 4px 1px var(--primary-color-detail);
}
    .insc-container > label.active .insc-img-container {
        border: 1px solid var(--primary-color-detail) !important;
        background-color: var(--primary-color-detail);
    }
.insc-container {
    display: flex;
    flex-direction: row;
    gap: 15px;
    flex-wrap: wrap;
}

    .insc-container > label {
        border: 1px solid #58585b;
        background-color: var(--secondary-color);
        width: 150px;
        display: flex;
        flex-direction: column;
        height: 130px;
        border-radius: 8px;
        justify-content: center;
        padding-left: 0;
        align-items: center;
        font-weight: 600;
        margin-top: 15px;
        text-align: center;
        gap: 10px;
        cursor:pointer;
    }

.insc-img-container {
    border: 1px solid white;
    border-radius: 50px;
    width: 50px;
    height: 50px;
}

.insc-img {
    padding: 10px;
    width: 30px;
}

/* 2 */
.info-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

    .info-container > div {
        width: 48%;
    }

/* 4 */
.tag-item label {
    border: 1px solid white;
    margin-bottom: 2px;
    width: fit-content;
    border-radius: 50px;
    padding: 5px 10px;
}

/* 5 */
textarea.form-control {
    height: 100px;
}

.proteccion-datos {
    margin-top: 50px;
    word-break: break-word;
}

.aceptaciones-container {
    background-color: var(--secondary-color);
    border: 2px solid #00defd1c;
    border-radius: 11px;
    padding: 10px;
}

.tags-container {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    row-gap: 20px;
}

.tag-item label {
    cursor: pointer;
}

.tags-container input[type="checkbox"] {
    display: none;
}

    .tags-container input[type="checkbox"]:checked + label {
        border: 1px solid var(--primary-color-detail);
        color: var(--primary-color-detail);
        background-color: #00defd29;
        box-shadow: 0px 0px 9px -3px var(--primary-color-detail);
    }


.c-form__check {
    padding: 10px 0 !important;
    display: flex;
    align-items: flex-start;
    gap: 5px;
}

.checkbox-list {
    display: flex;
    flex-direction: column;
}

.aceptaciones-container label {
    display: flex;
}

.btn-container {
    width: 100%;
    justify-content: center;
    display: flex;
}

@media(max-width:991px) {
    .body-content {
        max-width: 80%;
    }

    .info-container > div {
        width: 100%;
    }
}
