.btn-disable {
    background-color: #000;
}

.form-step {
    animation: fadeIn .5s cubic-bezier(0.39, 0.575, 0.565, 1) both;
}

@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: translateY(10%);
    }

    100% {
        opacity: 1;
        transform: translateY(0%);
    }
}

* {
    user-select: text;
}

th:last-child,
td:last-child {
    text-align: right;
}

td {
    border: none;
}

input:focus {
    background-color: transparent;
}

input:active {
    background-color: transparent;
}

input {
    background-color: transparent;
}

.errmsg {
    position: fixed;
    top: 35%;
    left: 50%;
    transform: translate(-50%,-35%);
    min-width: 70%;
    max-width: 80%;
    background-color: teal;
    color: white;
    border: 1px solid grey;
    border-radius: 8px;
    padding: 5px 42px;
    text-align: center;
    transition: all .5s ease-out;
}

.texterr {
    color: #ED3F3F;
    font-size: 12px;
}

.active-location {
    border: 2px solid #219653;
    background-color: #F3F5FC;
    border-radius: 12px;
}
