.modal .product-overlay,
.modal .modal-overlay {
    background-repeat: no-repeat !important;
    position: absolute;
    display: none;
    height: 100%;
    width: 100%;
    background: #fff;
    z-index: 99;
    opacity: 1;
    top: 0;
    left: 0;
    background-position: center;
    border-radius: 16px;
}
.modal {
    position: fixed;
    left: 50% !important;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    z-index: 999;
}
.modal-footer {
    display: flex;
    justify-content: space-evenly;
    gap: 20px;
}
.modal h3 {
    margin-bottom: 30px;
    font-weight: 500;
    font-size: 24px;
    line-height: 34px;
}
.modal-footer .btn{
    display: block;
    border: none;
    font-style: normal;
    font-weight: 600;
    font-size: 18px;
    line-height: 24px;
    text-align: center;
    color: #FFFFFF;
    background: var(--main-color);
    border-radius: 12px;
    margin: 0 auto;
    width: 100%;
    padding: 10px !important;

}
.modal-footer button.btn-cancel{
    background-color: #262626 !important;
    color: #fff !important;
}
span.close{
    background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTAiIGhlaWdodD0iMTAiIHZpZXdCb3g9IjAgMCAxMCAxMCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTkuMDAwMDIgMUwxIDkiIHN0cm9rZT0iYmxhY2siIHN0cm9rZS1saW5lY2FwPSJyb3VuZCIgc3Ryb2tlLWxpbmVqb2luPSJyb3VuZCIvPgo8cGF0aCBkPSJNMSAxTDkuMDAwMDIgOSIgc3Ryb2tlPSJibGFjayIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIiBzdHJva2UtbGluZWpvaW49InJvdW5kIi8+Cjwvc3ZnPgo=);
    width: 10px;
    height: 10px;
    display: inline-block;
    position: absolute;
    top: 16px;
    right: 16px;
    cursor: pointer;
}
.modal:after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: #747474;
    opacity: 0.6;
}
.modal-inner {
    text-align: center;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    background-color: #fff;
    padding: 30px 30px;
    border-radius: 16px;
    box-shadow: 0 4px 28px rgb(0 0 0 / 15%);
    z-index: 1000;
}
@media only screen and (max-width: 600px) {
    .modal-inner {
        width: 95%;
    }
}
.table-offers .project-action .action-trigger {
    width: 5px;
    display: inline-block;
    vertical-align: middle;
    cursor: pointer;
}
.table-offers .project-action .action-trigger .dot {
    width: 5px;
    height: 5px;
    background-color: #6F6F6F;
    display: block;
    margin-bottom: 3px;
    border-radius: 50%;
}
.table-offers .project-action .action-trigger .dot:last-child {
    margin-bottom: 0;
}