:root {
    --item-width: 137px;
    --item-height: var(--item-width);
}

body {
    background-color: white;
}

.department-container{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    row-gap: 20px;
    column-gap: 10px;
    margin-bottom: 30px;

    &:last-of-type {
        margin: 0;
    }
}

.btn-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: var(--item-width);
}

#btn-send {
    width: auto;
}

.global-headline {
    font-weight: 600;
    font-size: 14pt;
    margin-top: 20px;
}

.global-text {
    font-weight: 400;
    font-size: 12pt;
    margin-top: 20px;
}

.label-ott {
    width: var(--item-width);
    height: var(--item-height);
    padding: 0;
}

.label-ott img {
    object-fit: cover;
    height: calc(var(--item-width) * 0.83);
}

#select-all {
    + label img {
        height: 28px;
        margin: 50px auto;
        width: 28px;
    }

    .suite-name-ott {
        margin-top: -30px;
    }
}
.suite-name-ott {
    width: var(--item-width);
    display: block;
    margin-top: -16px;
    font-size: 11pt;
    color: black;
}

.btn-ott {
    width: 100%;
    line-height: 3rem;
}

.btn-check:checked+.btn, .btn.active, .btn.show, .btn:first-child:active, :not(.btn-check)+.btn:active {
    color: var(--bs-btn-active-color);
    background-color: #97baa7;
    border-color: var(--bs-btn-active-border-color);
}

.form-container {
    padding: 10px;
    display: none;
}

.loader-container{
    width: 100%;
    height: 750px;
    display: flex;
    justify-content: space-around;
}

.loader {
    border: 16px solid #f3f3f3; /* Light grey */
    border-top: 16px solid #3498db; /* Blue */
    border-radius: 50%;
    width: 150px;
    height: 150px;
    animation: spin 2s linear infinite;
    display: flex;
    align-self: center;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
