﻿.error {
    min-height: 50vh;
}

.error-code-number {
    font-size: 96px;
    line-height: 100px;
}

.text-error-page {
    color: #2d353c !important;
}

.d-flex {
    display: flex;
    flex-wrap: wrap;
}

.d-inline-flex {
    display: inline-flex;
}

.flex-row {
    flex-direction: row;
}

.flex-row-reverse {
    flex-direction: row-reverse;
}

.flex-column {
    flex-direction: column;
}

.flex-column-reverse {
    flex-direction: column-reverse;
}

.justify-start {
    justify-content: flex-start;
}

.justify-center {
    justify-content: center;
}

.justify-end {
    justify-content: flex-end;
}

.justify-between {
    justify-content: space-between;
}

.justify-around {
    justify-content: space-around;
}

.justify-evenly {
    justify-content: space-evenly;
}

.content-start {
    align-content: flex-start;
}

.content-center {
    align-content: center;
}

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

.content-between {
    align-content: space-between;
}

.content-around {
    align-content: space-around;
}

.content-evenly {
    align-content: space-evenly;
}

.content-stretch {
    align-content: stretch;
}

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

.align-center {
    align-items: center;
}

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

.align-stretch {
    align-items: stretch;
}

.flex-wrap {
    flex-wrap: wrap;
}

.flex-nowrap {
    flex-wrap: nowrap;
}

.text-uppercase {
    text-transform: uppercase !important;
}

.w-100 {
    min-width: 100% !important;
}

.gap-0 {
    gap: 0px !important;
}

.gap-1 {
    gap: 1px !important;
}

.gap-2 {
    gap: 2px !important;
}

.gap-3 {
    gap: 3px !important;
}

.gap-4 {
    gap: 4px !important;
}

.gap-5 {
    gap: 5px !important;
}

.gap-6 {
    gap: 6px !important;
}

.gap-7 {
    gap: 7px !important;
}

.gap-8 {
    gap: 8px !important;
}

.gap-9 {
    gap: 9px !important;
}

.gap-10 {
    gap: 10px !important;
}

.gap-15 {
    gap: 15px !important;
}

.gap-20 {
    gap: 20px !important;
}

.gap-30 {
    gap: 30px !important;
}

.w-100 {
    min-width: 100%;
}

.flex-1 {
    flex: 1 !important;
}

.card {
    background-color: white !important;
    border: 1px solid #e1e1e1;
    border-radius: 5px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
    margin-bottom: 16px;
    overflow: hidden;
    padding: 24px;
    transition: 0.3s;
    animation: fade-in .5s ease-out forwards !important;
}

.card-header {
    padding: 12px 16px;
    background-color: #f8f9fa;
    border-bottom: 1px solid #e0e0e0;
    font-weight: 600;
    font-size: 14px;
    color: #333;
}

.card-body {
    padding: 16px;
    font-size: 14px;
    color: #555;
}

.card-footer {
    padding: 12px 16px;
    background-color: #f8f9fa;
    border-top: 1px solid #e0e0e0;
    font-size: 13px;
    color: #666;
}

.cursor-pointer {
    cursor: pointer;
}

@media(min-width: 700px) {
    .modal-sm {
        min-width: 400px !important;
    }
}