.pop_up_shadow{
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    background-color: #0008;
    display: flex;
    justify-content: center;
    -ms-align-items: center;
    align-items: center;
    z-index: 12;
    transform: translateY(-100%);
    transition: 0.3s ease-in;
}
#Pop_up{
    background-color: #fff;
    border-radius: 15px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    overflow: scroll;
}
#Pop_up h4{
    align-items: flex-start;
    font-size: 2rem;
    margin-top: 0;
    margin-bottom: .5rem;
    font-weight: 500;
    line-height: 1.2;
}
#Pop_up .close_btn{
    margin-top: 20px;
    padding: 10px 20px;
    background-color: #ff4b4b;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    width: 200px;
    margin-left: auto;
    margin-right: auto;
}
#Pop_up .case{
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
}
#Pop_up .case .card{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    border: 1px solid #ddd;
    border-radius: 10px;
    
    max-width: 250px;
    width: 100%;
    padding: 20px;
    background-color: #f9f9f9;
    box-shadow: 0 4px 8px #0000001a;
    margin: 20px;
}
#Pop_up .case .card img{
    width: 100%;
    height: auto;
    min-height: 83px;
    object-fit: contain;
    margin-bottom: 15px;
}
#Pop_up .case .card button{
    padding: 0;
    background-color: #4caf50;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin-top: auto;
}

.translate_on{
    transform: translateX(0%) !important;
}