/*!***************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/@wordpress/scripts/node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[2].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[2].use[2]!./src/modal.css ***!
  \***************************************************************************************************************************************************************************************************/
/* ================================
   OVERLAY (фон як у Fancybox)
   ================================ */
.pacers-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(30, 30, 30, 0.85);
    backdrop-filter: blur(3px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99999;
    opacity: 0;
    visibility: hidden;
    transition: opacity .25s ease, visibility .25s ease;
}
/* Показ модалки */
.pacers-modal-overlay.open {
    opacity: 1;
    visibility: visible;
}
/* ================================
   MODAL WINDOW (вікно як у Fancybox)
   ================================ */
.pacers-modal-window {
    background: #fff;
    border-radius: 6px;
    padding: 25px 30px;
    max-width: 600px;
    width: 90%;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
    position: relative;
    transform: translateY(-20px);
    opacity: 0;
    transition: all .3s ease;
}
/* Анімація появи */
.pacers-modal-overlay.open .pacers-modal-window {
    transform: translateY(0);
    opacity: 1;
}
/* ================================
   CLOSE BUTTON (кнопка як у Fancybox)
   ================================ */
.pacers-modal-close {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(30, 30, 30, 0.6);
    color: #fff;
    border: none;
    cursor: pointer;
    font-size: 18px;
    line-height: 34px;
    text-align: center;
    transition: background .2s ease;
}
.pacers-modal-close:hover {
    background: rgba(30, 30, 30, 0.9);
}
/* ================================
   CONTENT STYLES
   ================================ */
.pacers-modal-window h3 {
    margin-top: 0;
    font-size: 20px;
    font-weight: 600;
}
.pacers-services-list ul {
    margin: 10px 0 0;
    padding-left: 20px;
}
.pacers-services-list li {
    margin: 4px 0;
    font-size: 15px;
}
.columns-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 9999; /* вище за все */
    display: flex;
    align-items: center;
    justify-content: center;
}
.columns-popup__inner {
    background: #fff;
    padding: 25px;
    border-radius: 8px;
    width: 400px;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}
.columns-popup__inner .close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    background: none;
    border: none;
    font-size: 22px;
    cursor: pointer;
}

/*# sourceMappingURL=index.css.map*/