/* The switch - the box around the slider */
.switch {
    position: relative;
    display: inline-block;
    width: 40px;
    height: 20px;
}

/* Hide default HTML checkbox */
.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

/* The slider */
.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    -webkit-transition: .4s;
    transition: .4s;
}

.slider:before {
    position: absolute;
    content: "";
    height: 15px;
    width: 15px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    -webkit-transition: .4s;
    transition: .4s;
}

input:checked + .slider {
    background-color: #2196F3;
}

input:focus + .slider {
    box-shadow: 0 0 1px #2196F3;
}

input:checked + .slider:before {
    -webkit-transform: translateX(15px);
    -ms-transform: translateX(15px);
    transform: translateX(15px);
}

/* Rounded sliders */
.slider.round {
    border-radius: 10px;
}

.slider.round:before {
    border-radius: 50%;
}

.wrapper_meca_vae {
    display: grid;
    /*grid-template-columns: 6em 10em;*/
    /*grid-template-rows: 3em 3em;*/
    /*column-gap: 0.5em; !* Optional spacing between columns *!*/
}

.box1 {
    grid-column-start: 1;
    grid-row-start: 1;
    width:20%;
    height:4em;
}
.box2,
.box3 {
    grid-column-start: 2;
    width: 40%; /* Adjust width as necessary */
    word-wrap: break-word; /* Allows text to break within the bounds */
    white-space: break-spaces; /* Enables wrapping */
    overflow: visible; /* Ensures all text is shown */
    text-align: left; /* Align text to the left, optional */
    line-height: 1.8em; /* Adjust line height for better spacing */
    height:4em;
}

.wrapper_facilities {
    margin-top: 2%;
    margin-bottom: 2%;
    display: grid;
    grid-template-columns: 4em 10em;
    grid-template-rows: 2em;
    border-bottom-left-radius: 1em;
    border-bottom-right-radius: 1em;
    background-color: white;
}

.box1_facilities {
    grid-column-start: 1;
    grid-row-start: 1;
    padding-right: 10%;
    padding-left: 10%;
}
.box2_facilities {
    grid-column-start: 2;
    grid-row-start: 1;
}


#menu a {
    font-size: 13px;
    color: #404040;
    display: block;
    margin: 0;
    height:100%;
    /*line-height:3.5em;*/
    text-decoration: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.25);
    text-align: center;
    width: 100%;
}

#menu a:last-child {
    border: none;
}

#menu a:hover {
    background-color: #f8f8f8;
    color: #404040;
}

#menu a.active {
    background-color: #3887be;
    color: #ffffff;
}
#menu a.inactive {
    background-color: #ffffff;
    color: #000000;
}

#menu a.active:hover {
    background: #3074a4;
}
