#apply-form {
    width: 100vw;
    height: 100vh
}

.button-default {
    min-width: 0;
}

.button-apply{
    appearance: none;
    background-color: transparent;
    border: 0;
    cursor: pointer;
}

.button-apply:disabled{
    opacity: 0.5;
}

.flip {
    transform: scaleX(-1);
}

select, input, textarea {
    background-color: black;
    color: white;
    border: 1px solid white;
    padding: 15px;
    font-family: Montserrat;
}

select > option {
    font-family: Montserrat;
    color: white;
}

.w-50{
    width: 100%;
}

@media screen and (min-width: 768px) {
    .w-50 {
        width: 45%;
    }
}

.slide {
    top:0%;
    left: 0%;
    width: 95vw;
    min-height: 95vh;
    margin: 2.5vh 2.5vw;
    visibility: hidden;
    display: none;
}

.active {
    visibility: visible;
    display: flex;
}

@keyframes shake {
    0% { transform: translateX(0rem); }
    25% { transform: translateX(0.5rem); }
    75% { transform: translateX(-0.5rem); }
    100% { transform: translateX(0rem); }
  }

.empty{
    border: 2px solid red;
    animation: shake 0.4s ease-in-out 1;
}

.empty[type=checkbox] ~ label{
    border: 2px solid red;
}

.end{
    align-items: flex-end;
}
