.flip-card {
    width: 100%;
    perspective: 1000px;
}

.matecard {
    height: 425px;
    max-width: 350px;
    background-color: rgba(250, 250, 250, 0.7);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.flip-card-inner {
    position: relative;
    width: 100%;
    transition: transform 0.8s;
    transform-style: preserve-3d;
}

.flip-card.flipped .flip-card-inner {
    transform: rotateY(180deg);
}

.flip-card-front,
.flip-card-back {
    position: absolute;
    width: 100%;
    backface-visibility: hidden;
    top: 0;
    left: 0;
}

.flip-card-back {
    transform: rotateY(180deg);
}

.font-size-res {
    /*font-size: clamp(.7rem, 5.5vw, 1rem)*/
    font-size: 16px;
}

.btn-day {
    color: #fff;
    background-color: #6c757d;
    border: none;
}

.btn-night {
    color: #fff;
    background-color: #6c757d;
    border: none;
}

.btn-day.timeActive {
    color: #fff;
    background-color: rgb(24, 132, 82);
    outline: 1px solid rgb(24, 132, 82) !important;
    outline-offset: 2px;
}

.btn-night.timeActive {
    color: #fff;
    background-color: rgb(24, 132, 82);
    outline: 1px solid rgb(24, 132, 82) !important;
    outline-offset: 2px;
}

.btn-night.active {
    box-shadow: 0 0 0 3px #34495e inset !important;
}

.txt-color-cardheader {
    color: #ff7400;
}

.mobile-matecard {
    background-color: rgba(250, 250, 250, 0.85);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.mobile-matecard-header {
    border-bottom: solid #ccc 1px;
    padding: .75rem 1rem;
    color: black;
}

.mobile-matecard-header span {
    text-transform: uppercase;
}

.mobile-matecard-body {
    display: flex;
    flex-direction: column;
    padding: .75rem 1rem;
    font-size: 15.2px;
    gap: .85rem;
    border-bottom: solid #ccc 1px;
    color: black;
}

.mobile-matecard-footer {
    display: flex;
    padding: .75rem 1rem;
    font-size: 15.2px;
    align-items: end;
    color: black;
}

.info .disabled {
    background-color: #ddd;
    border: solid #ccc 1px;
}

.activeAir {
    color: #fff;
    background-color: rgb(24, 132, 82) !important;
    outline: 1px solid rgb(24, 132, 82) !important;
    outline-offset: 2px;
    box-shadow: none !important;
}

.infocard {
    background-color: rgba(250, 250, 250, 0.9);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    min-height: 430px;
}

.infocard-header {
    border-bottom: solid #ccc 1px;
    padding: .75rem 1rem;
    color: black;
}

.infocard-header span {
    text-transform: uppercase;
}

.infocard-body {
    display: flex;
    flex-direction: column;
    padding: .75rem 1rem;
    font-size: 15.2px;
    gap: .85rem;
    border-bottom: solid #ccc 1px;
    color: black;
}

.infocard-footer {
    display: flex;
    padding: .75rem 1rem;
    font-size: 15.2px;
    align-items: end;
    color: black;
}

.info .disabled {
    background-color: #ddd;
    border: solid #ccc 1px;
}