.acordeon-container {
    display: flex;
    flex-direction: column;
    width: 100%;
    align-items: center;
}

.patern-container {
    width: 80%;
    display: flex;
    flex-direction: column;
    align-items: end;
    box-sizing: border-box;
}

.patern-display {
    border: solid 1px #EAEAEA;
    display: flex;
    width: 100%;
    height: 60px;
    flex-direction: row;
    padding: 10px;
    background-color: #F3F3F3;
    border-radius: 5px;
    box-sizing: border-box;
    cursor: pointer;
    justify-content: space-between;
}

.edit-enclosure{
    display: none;
}

.edit-enclosure.active-show {
    display: block;
}

.group-btn-edit {
    display: none;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 3px;
}

.group-btn-edit.show-btn-active {
    display: flex;
}

.show {
    display: none;
}

.enclosure-label {
    font-size: 16px;
}

.left-distplay
{
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 5px;
    width: 50%;
}

.group-buton-enclosure {
    display: flex;
    box-sizing: border-box;
    flex-direction: row;
    align-items: center;
    gap: 10px;
}

.button-enclosure {
    border: none;
    padding: 0;
    margin: 0;
    color: #6C6C6C;
    font-size: 17px;
    cursor: pointer;
}

.container-children {
    margin-left: 15px;
}

.container-display {
    display: none;
    width: 100%;
}

.deploy {
    display: block;
}

.visible {
    display: block !important;
}

.right-caret.active {
    transform: rotate(90deg);
}


@media (max-width:800px) {

    .patern-display {
        width: 100%;
        min-width: 100%;
    }

    .patern-container {
        width: 100%;
    }
}