.spin {
    animation: spin 2s infinite linear;
}
@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}
.focusCheck {
    animation: focusCheck 2s;
    border-color: rgb(0, 173, 241) !important;
}
@keyframes focusCheck {
    from {
        transform: scale(1.5);
    }
    to {
        transform: scale(1);
    }
}

.cem label {
    font-size: 1.2em;
    margin-top: 0.5em;
    text-transform: uppercase;
}
.cem input, select, button {
    background-color: #fff;
    background-image: none;
    border: 2px solid rgba(204, 204, 204, 0.5);
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset;
    color: #555;
    display: block;
    font-size: 1.2em;
    padding: 0.5em 1.5em;
    transition: border-color 0.15s ease-in-out 0s, box-shadow 0.15s ease-in-out 0s;
    width: 100%;
}
.cem input[type="submit"] {
    width: 50%;
    margin: auto;
    margin-top: 1em;
    font-size: 1.3em;
} 
.cem input[type="submit"]:hover {
    cursor: pointer;
    border-color: rgb(0, 173, 241);
}
.cem table thead {
    font-size: 1.2em;
}
.cem table thead th {
    padding: 0.5em 1em !important;    
    background-color: rgba(89, 180, 115, 0.5);
    text-transform: uppercase;
}
.cem table tr:hover {
    background-color: rgba(89, 180, 115, 0.4);
}
.cem button {
    font-size: 1.5em;
    width: fit-content;
    padding: 0.5em 1em;
    align-items: center;
    display: flex;
}
.cem button:hover {
    cursor: pointer;
    border-color: rgb(0, 173, 241);
}

.checkContainer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1em;
}
.checkContainer span {
    width: -webkit-fill-available;
    font-size: 1.1em;
}

.checkBox {
    width: 2em;
    height: 2em;
    border: 2px solid rgba(204, 204, 204, 0.5);
    margin-right: 1em;
}
.checkBox:hover {
    cursor: pointer;
}
.selected {
    background-color: rgba(0, 73, 76, 0.7);
}

.loadingContainer {
    display: flex;
    justify-content: center;
    align-items: center;
    width: -webkit-fill-available;
    padding: 1em;
}
.loadingContainer img {
    width: 10em;
}

#result {
    display: flex;
    flex-direction: column;
    margin: 1em 0px;
    justify-content: center;
    align-items: center;
    font-size: 1.5em;
    text-align: center;
}

.filterContainer {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    flex-wrap: wrap;
}
.filterContainer input {
    margin: 1em;
    font-size: 1.5em;
    width: unset;
    text-align: center;
}

.cemText {
    display: block;
    text-align: center;
}