﻿/*Estilos CheckList*/
.group-input-test {
    display: flex;
    flex-direction: column;
    padding: 20px;
    gap: 20px;
    text-align: left;
    width: 100%;
}

.detail-inspection {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.card-inspection-form {
    width: 100%;
    border-radius: 5px;
    background-color: #F6F9FB;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    text-align: center;
    margin: 10px 0px;
}

    .card-inspection-form.general-aspect {
        flex-direction: row !important;
        width: 100% !important;
    }

.validate-form {
    display: none;
}

.title-opttion-test {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.item-check-list {
    padding: 5px;
    margin: 0;
}

.group-input-test {
    padding: 20px;
    text-align: left;
    width: 100%;
}


.group-button-test {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-evenly;
    width: 20%;
    font-size: 20px;
}

.item-test {
    text-align: justify;
}

.content-text-test {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.content-icon-test {
    font-size: 19px;
    width: 20px;
}

.btn-inspection-option {
    height: 40px;
    width: 40px;
    border-radius: 20px;
    border: none;
    background-color: #F6F9FB;
    cursor: pointer;
    font-size: 20px;
}

    .btn-inspection-option:hover {
        background-color: #FFFFFF;
    }

.parameter-check {
    text-align: justify;
    font-size: 13px;
}

.alert-icon {
    color: red !important;
}

.danger-icon {
    color: orange !important;
}

.succes-icon {
    color: green !important;
}


@media (max-width: 1200px) {

    .form-modal-content {
        width: 100%;
        max-height: 100%;
    }

    .title-modal {
        font-size: 17px;
    }

    .submit-btn-modal {
        width: 95%;
    }

    .card-inspection-form {
        flex-direction: column;
        align-items: center;
        padding: 0px;
        margin-top: 5px;
    }

    .section-modal {
        padding: 0px;
        margin: 5px;
    }

    .group-button-test {
        width: 60%;
        padding: 10px;
    }

    .column-3 {
        flex-direction: column !important;
        justify-content: space-between !important;
        flex-wrap: wrap !important;
    }

    .item-3 {
        width: 100% !important;
        max-width: 100% !important;
    }
}


.loading-goals {
    display: flex;
    position: relative;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: min-content;
}

    .loading-goals span {
        position: relative;
        top: -35px;
        color: black;
        font-size: 9px;
    }

svg {
    width: 60px;
    height: 60px;
}

circle {
    fill: none;
    stroke-width: 5;
    transform: rotate(-90deg);
    transform-origin: 50%;
    stroke-dasharray: 100 100;
    stroke: #F3F3F3;
}

    circle:nth-child(2) {
        stroke-dasharray: 0 100;
        stroke: var(--backcolor);
        animation: rellenar .5s linear forwards;
    }

@keyframes rellenar {
    to {
        stroke-dasharray: var(--porcentaje) 100;
    }
}
