.document-request-wrapper {
    max-width: 600px;
    margin: 0 auto;
    border: 1px solid #ccc;
    min-height: 300px;
}

.document-types {
    display: flex;
    flex-direction: column;
}

.document-types__inner {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    padding: 20px;
    height: 100%;
}

.document-types__footer {
    min-height: 40px;
    margin-top: auto;
    background: #f5f5f5;
    padding: 20px;

    display: flex;
    align-items: center;
}

.document-types__footer button:last-child {
    margin-left: auto;
}

.document-type {
    border: 1px solid #ccc;
    padding: 10px;
    text-align: center;

    min-height: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    user-select: none;
    border-radius: 6px;
}

.document-type:hover {
    border-color: red;
    cursor: pointer;
}

.document-type.active {
    background: red;
    color: #fff;
    border-color: red;
}

.document-type i {
    font-size: 50px!important;
}

.document-type h3 {
    font-size: 16px;
    margin-top: 20px;
    color: inherit;
    font-weight: 800;
}

.card-title {
    margin: 0;
}

.card-footer.has-buttons {
    display: flex;
    align-items: center;
}

.card-footer.has-buttons button:last-child {
    margin-left: auto;
}

.document-request-wrapper {
    border: none;
}

.document-request-wrapper .card {
    border: none;
}

.document-request-wrapper .card-title {
    color: inherit;
}

.document-request-wrapper .card-header {
    background: #fff;
    color: transparent;
    border: none;
}

.document-request-wrapper .card-footer {
    background: #fff;
    border: none;
    margin-top: 30px;
}

.document-request-wrapper .card-body {
    padding: 0;
}


@media screen and (max-width: 600px) {
    .document-types__inner {
        grid-template-columns: repeat(2, 1fr);
    }
}

.theme-btn-default {
    background: #f5f5f5!important;
    color: #000!important;
}

.theme-btn-default:hover {
    color: #fff!important;
}

/* .fade-enter, .fade-leave-to {
    transform: translateY(-10px);
}

.fade-leave, .fade-enter-to {
    transform: translateY(0);
}

.fade-enter-active, .fade-leave-active {
    transition: all .5s ease;
} */