.pop-up {
    position: fixed;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.496);
    display: none;
    z-index: 1000;
}

.mascot {
    position: absolute;
    width: 250px;
    inset: -120px auto auto -80px;
    z-index: 1;
    transform: rotate(10deg) scaleX(-1);
}

.pop-up-content {
    width: 500px;
    background: white;
    position: relative;
    border-radius: 6px;
}

.pop-up-title-container,
.pop-up-book-extra-info {
    padding: 24px;
}

.pop-up-book-container,
.pop-up-bottom {
    padding: 0 24px;    

}

.pop-up-title {
    font-size: 24px;
    line-height: 28px;
    margin-bottom: 0;
    color: black;
}

.pop-up-info {
    color: rgb(113, 113, 122);
    margin-bottom: 0;
    font-size: 14px;
}

.pop-up-book-container {
    display: flex;
    gap: 16px;
}

.pop-up-book-container img {
    width: 100px;
    height: 150px;
}

.pop-up-book-info-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.pop-up-book-info {
    margin-bottom: 0;
}

.pop-up-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.pop-up-button {
    width: 100%;
    background-color: black;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 900;
    margin-bottom: 8px;
    padding: 12px 0;
}

.pop-up-button:hover {
    background-color: gray;
    box-shadow: 0 3px 3px rgba(0, 0, 0, 0.768);
}

.pop-up-under-button {
    font-size: 12px;
    color: rgb(113, 113, 122);
}


.pop-up-close {
    color: black;
    position: absolute;
    inset: 10px 10px auto auto;
    box-shadow: none;
    background-color: inherit;
    border-radius: 5px;
    padding: 10px 18px;
}

.pop-up-close:hover {
    background-color: rgba(201, 201, 201, 0.496);
    transform: none;
    box-shadow: none;
}

.pop-up-show {
    display: flex;
    justify-content: center;
    align-items: center;
}