.modal.container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
}
.modal .content {
    width: 72rem;
    height: 33rem;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 0 12.5px #878787;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.modal.active ,
.modal.active .content {
    display: block;
}

.modal.snapshot .content {
    width: 54rem;
    height: 28rem;
}

.modal .header {
    padding: 1.5rem;
    width: 100%;
    height: 5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #222d53;
    color: #ffffff;
}

.modal .header .title {
    display: flex;
    align-items: center;
    gap: 9px;
    font-size: 1.8rem;
    color: #ffffff;

}

.modal .header .title .decoration {
    padding-top: 0.3rem;
    font-size: 0.5rem;
}
.modal .close-btn-container {
    width: 1.4rem;
    height: 1.4rem;
    position: relative;
}

.modal .close-btn-container img {
    width: 100%;
    height: 100%;
    display: block;
    cursor: pointer;
}
.modal .body {
    width: 100%;
    height: calc(100% - 5rem);
}

.modal .body .info-area {
    height: calc(100% - 7rem);
    display: flex;
    color: #010101;
    padding: 1.5rem;
    align-items: center;
}
.modal.snapshot .body .info-area {
    padding: 4rem;
    align-items: center;
    gap: 1.5rem;
}

.modal .body .info-img {
    display: block;
    width: 13rem;
    /* height: 11.1rem; */
    margin: 2.5rem;
}
.modal.snapshot .body .info-img {
    width: 8rem;
    height: 6.7rem;
    margin: 0;
}

.modal .body .info-text {
    padding: 0 1.5rem;
}
.modal.snapshot .info-text {
    padding: 0;
}

.modal .body .info-text .title{
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 2rem;
}
.modal.snapshot .info-text .title{
    font-size: 2.3rem;
    margin-bottom: 0.5rem;
}
.modal .body .info-text .description{
    font-size: 1.8rem;
    line-height: 1.5
}

.modal .body .button-area {
    height: 7rem;
    background-color: rgba(240, 240, 250, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}

.modal.snapshot .info-text .sub-title{
    margin-left: 0.5rem;
}

.modal .body .button-area button {
    width: 13rem;
    height: 4.6rem;
    color: #ffffff;
    font-size: 1.6rem;
    font-weight: bold;
    border: none;
    cursor: pointer;
}

#modal-save ,
#modal-delete ,
#modal-close {
    background-color: #0a64c8;
}

#modal-exit {
    background-color: #788296;
}

#modal-save:hover ,
#modal-delete:hover ,
#modal-close:hover {
    background-color: #0852a8;
}

#modal-exit:hover {
    background-color: #5e6c7b;
}
