html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}

/* Style for SignInLayout */

.login-wrapper{
    background-image: url(../img/bg-login.png);
    background-position: center;
    background-size: cover;
    height: 100vh;  
    padding: 0;
    margin: 0;
}

.login-box {
    background-color: #FFFFFF;
    width: 100%;
    max-width: 360px;
    border-radius: 5px;
    padding: 48px 24px;
}

/* Styles for login */

.microsoft-button {
    display: inline-flex;
    align-items: center;
    height: 41px;
    border: none;
    background-color: #2f2f2f;
    text-decoration: none;
    cursor: pointer;
}

.microsoft-button__logo {
    margin-left: 12px;
    margin-right: 12px;
}

.microsoft-button__text {
    font-family: 'Segoe UI';
    color: white;
    margin-right: 12px;
    font-weight: 600;
}


/* Styles for filters */

.filter-options {
    display: flex;
    flex-grow: 1;
    flex-wrap: wrap;
    gap: 1rem;
    justify-items: stretch;
}

.filter-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

/* Styles for Seat Map*/
.text-primary {
    color: #0d2e46 !important;
}

.seat {
    padding: 10px 0px 0px 0px;
    transition: all .3s ease-in-out;
    position: relative;
}

    .seat.disabled {
        opacity: 0.3;
        cursor: not-allowed;
    }

    .seat:hover {
        cursor:pointer;
    }

    .seat.active {
        background-color:green;
        color:white;
    }

.img-seat {
    font-size: 30px;
}

.icon-characteristic {
    position: absolute;
    font-size: 24px;
    background-color: #0d2e46;
    padding: 2px 8px;
    color: white;
    border-radius: 50%;
    top: 0;
}

.div-map-seat{
    max-height: 500px;
    overflow: auto
}

.div-passenger {
    margin: 0;
    position: absolute;
    top: 50%;
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 80%;
}

.list-group-item {
    opacity: 0.5;
    transition: all .3s ease-in-out;
}

.list-group-item.active {
    opacity: 1;
    z-index: 2;
    color: #fff;
    background-color: #0d2e46;
    border-color: #007bff;
}