*{
    margin: 0;
    padding: 0;
}


#modal.active {
    right: 20px;
}

#modal {
    position: fixed;
    top: 200px;
    right: -100%;
    width: 400px;
    height: 450px;
    background-color: white;
    box-shadow: -2px 0px 10px rgba(0, 0, 0, 0.5);
    padding: 20px 30px;
    transition: right 0.3s ease-in-out;
    z-index: 100000;
    border-radius: 20px;
}

.closewrap {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: red;
    cursor: pointer;
    width: 30px;
    height: 30px;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
}

#modal h2 {
    font-size: 24px;
    color: red;
    padding-top: 20px;
}

#modal h2 span {
    color: #003487;
    display: block;
    padding-top: 10px;
}

#modal p {
    font-size: 16px;
    color: #222;
    padding-bottom: 20px;
}