* {
    box-sizing: border-box;
    list-style: none;
    
}
.flash {
    display: block;
    position: fixed;
    z-index: 1000;
    top: 15px;
    right: 25px;
    width: 350px;
    padding: 20px 25px 20px 60px;
    font-size: 14px;
    font-weight: 400;
    background-color: #fff;
    border-radius: 2px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.25);
    opacity: 0;
}
.flash__icon {
    position: absolute;
    display: flex;
    align-items: center;
    top: 50%;
    left: 0;
    width: 1.8em;
    height: 100%;
    padding: 0 0.4em;
    color: #fff;
    font-size: 24px;
    font-weight: 300;
    transform: translate(0, -50%);
}
.flash__icon .icon {
    position: absolute;
    top: 50%;
    transform: translate(0, -50%);
}
.flash__body {
    font-size: 14px;
    margin-bottom: 0px !important;
    margin-top: 0px;
}
.flash__body a {
    display: none;
}
.success-notice {
    color: #28a745;
    border: 2px solid #28a745;
}
.success-notice .flash__icon {
    background-color: #28a745;
}
.error-notice {
    color: #dc3545 !important;
    border: 2px solid #dc3545;
}
.error-notice .flash__icon {
    background-color: #dc3545;
}
.notice {
    color: #6c757d !important;
    border: 2px solid #6c757d;
}
.notice .flash__icon {
    background-color: #6c757d;
}
@keyframes drop-in-fade-out {
    0% {
        opacity: 0;
        visibility: visible;
        transform: translate3d(0, -200%, 0);
   }
    12% {
        transform: translate3d(0, 0, 0);
   }
    20% {
        opacity: 1;
   }
    70% {
        opacity: 1;
        visibility: visible;
        transform: translate3d(0, 0, 0);
   }
    80% {
        opacity: 0;
   }
    100% {
        visibility: hidden;
        transform: translate3d(75%, 0, 0);
   }
}
.animate--drop-in-fade-out {
    animation: drop-in-fade-out 5.5s 0.4s cubic-bezier(0.32, 1.75, 0.65, 0.91);
    animation-fill-mode: forwards;
}
/* Modal confirm Styles */
.modal-confirm {
    display: none;
    background: white;
    padding: 40px 20px 30px 20px;
    border-radius: 10px;
    text-align: center;
    width: 450px;
    position: fixed;
    top: 15%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 1px solid #ccc;
    flex-direction: column;
    gap: 14px;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.1215686275);
}
.modal-confirm h3 {
    font-size: 20px;
    font-weight: 400;
    line-height: 24px;
    text-align: center;
}
.modal-confirm .confirm-type-choose {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}
.modal-confirm .confirm-type-choose button {
    border: 1px solid #121212;
    padding: 8px 21px;
    border-radius: 20px;
    min-width: 100px;
    min-height: 34px;
    background-color: #121212;
    color: #fff;
    cursor: pointer;
}
.modal-confirm .confirm-type-choose .confirm-no {
    color: #121212;
    background-color: #fff;
}
.modal-confirm-show {
    display: flex;
}
.modal-confirm-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}
