.ap-modal-backdrop {
    display: none;
    position: fixed;
    z-index: 99999;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.650);
}
.ap-modal {
    background-color: #fefefe;
    margin: 0 auto;
    width: 100%;
    max-width: 500px;
    border-radius: 25px;
    margin-top: 225px;
    overflow: hidden;
}
.ap-modal-backdrop-d-flex {
    display: flex;
    flex-direction: column;
    align-items: center;
    align-content: center;
    margin-left: 10px;
    margin-right: 10px;
}
.ap-modal-header {
    background: linear-gradient(90deg, #FDE0C6 0%, #E89B5A 49.5%, #ED1C24 82.5%);
    display: flex;
    justify-content: flex-end;
    padding: 5px 20px;
}
.close-ap-modal {
    color: #ffffff;
    font-size: 40px;
    line-height: 40px;
}
.close-ap-modal:hover,
.close-ap-modal:focus {
    cursor: pointer;
}
.ap-modal-content {
    padding: 25px;
}
.ap-modal-content h2 {
    color: #ED1C24;
    font-size: 22px;
    line-height: 30px;
    font-weight: 700;
    text-align: center;
    padding-bottom: 15px;
}
.ap-modal-botoes {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}
.ap-modal-btn {
    background: blue;
    padding: 10px 40px;
    border-radius: 8px;
}
.ap-modal-btn-yes {
    background: #ED1C24;
    border: 1px solid #ED1C24;
    color: #ffffff;
}
.ap-modal-btn-yes:hover {
    background: #ED1C24;
    border: 1px solid #ED1C24;
    color: #ffffff;
}
.ap-modal-btn-no {
    background: #ffffff;
    color: #ED1C24;
    border: 1px solid #ED1C24;
}
.ap-modal-btn-no:hover {
    background: #ffffff;
    border: 1px solid #ED1C24;
    color: #ED1C24;
}

