body {
    font-family: Arial, sans-serif;
}


.smooth-modal-default {
    display: none; /* Hidden by default */
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgb(0,0,0);
    background-color: rgba(0,0,0,0.4);
    animation: fadeIn 0.3s;
}

.smooth_modal {
    background-color: #fefefe;
    margin: 2% auto;
    border: 1px solid #888;
    width: 80%;
    max-width: 500px;
    animation: slideIn 0.3s;
    border-radius: 5px;
}

.cont_header_smooth_modal {
    display: flex;
    padding: 1rem;
    border-bottom: solid #dee2e6 1px;
}
.cont_body_smooth_modal {
    display: flex;
    padding: 1rem;
    flex-direction: column;
}
.cont_footer_smooth_modal {
    display: flex;
    padding: 1rem;
    flex-direction: column;
    border-top: solid #dee2e6 1px;
}

.cont_title_header_smooth_modal {
    display: flex;
    flex-direction: column;
    width: 95%;
}
.cont_btn_close_header_smooth_modal {
    display: flex;
    width: 5%;
    justify-content: end;
}
.smooth_modal_close {
    color: #aaa;

    font-size: 28px;
    font-weight: bold;
}



.smooth_modal_close:hover,
.smooth_modal_close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

@keyframes fadeIn {
    from {opacity: 0;}
    to {opacity: 1;}
}

@keyframes fadeOut {
    from {opacity: 1;}
    to {opacity: 0;}
}

@keyframes slideIn {
    from {transform: translateY(-50px);}
    to {transform: translateY(0);}
}

@keyframes slideOut {
    from {transform: translateY(0);}
    to {transform: translateY(-50px);}
}

.smooth_modal_cont.fade-in {
    animation: fadeIn 0.3s forwards;
}

.smooth_modal_cont.fade-out {
    animation: fadeOut 0.3s forwards;
}

.smooth_modal.fade-in {
    animation: slideIn 0.3s forwards;
}

.smooth_modal.fade-out {
    animation: slideOut 0.3s forwards;
}
