.hidden {
    display: none !important;
}
.elementor-field-type-repeater>label {
	display: none !important;
}

.elementor-editor-active .elementor-field-type-repeater>label, .elementor-editor-active .elementor-field-type-repeater_start>label {
    display: block !important;
}
.container-repeater-field, .elementor-field-repeater-end, .elementor-field-repeater-start {
	width: 100% !important;
}
.gf-repeater-field-button-add {
	background-color: #69727d !important;
    border-radius: 103px 103px 103px 103px !important;
    padding: 10px 20px 10px 20px !important;
    color: #fff !important;
    text-decoration: none !important;
    display: inline-block !important;
}
.gf-repeater-field-button-add:hover {
    box-shadow: 4px 4px 0 0 rgba(0,0,0,.35)!important;
    color: #fff;
}
.repeater-field-header {
    display: flex !important;
    width: 100% !important;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 16px 18px;
    border: 1px solid #cdcdcd;
    border-radius: 8px;
    background: #fff;
}

.repeater-field-header-main {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    min-width: 0;
    flex: 1;
}

.repeater-field-header-label,
.repeater-field-header-summary {
    font-size: 16px;
    font-weight: 600;
    line-height: 1.4;
}

.repeater-field-header-summary:empty {
    display: none;
}

.repeater-field-item.has-validation-error .repeater-field-header-label,
.repeater-field-item.has-validation-error .repeater-field-header-summary {
    color: #da2800;
}

.repeater-field-header-acctions {
    display: flex;
    align-items: center;
    gap: 8px;
    width: auto !important;
    text-align: inherit;
}

.repeater-field-header-edit {
    appearance: none;
    border: 1px solid #cdcdcd;
    border-radius: 6px;
    background: #fff;
    padding: 8px 14px;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.2;
    cursor: pointer;
}

.repeater-field-header-acctions-remove {
    appearance: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    padding: 0;
    border: 1px solid #cdcdcd;
    border-radius: 6px;
    background: #fff;
    cursor: pointer;
}

.repeater-field-header-acctions-remove .repeater-icon {
    font-size: 18px;
    line-height: 1;
}

.repeater-field-footer {
    margin: 15px 0 !important;
}

.repeater-field-item {
    margin-bottom: 15px !important;
}

.repeater-field-warp-item-data .repeater-field-item > .repeater-field-content {
    display: none;
}

.repeater-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 120;
}

.repeater-modal.is-open {
    display: block;
}

.repeater-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
}

.repeater-modal-dialog {
    position: relative;
    display: flex;
    flex-direction: column;
    width: min(720px, calc(100% - 32px));
    max-height: calc(100vh - 48px);
    margin: 24px auto;
    border-radius: 12px;
    background: #fff;
    overflow: hidden;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.18);
}

.repeater-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 24px;
    border-bottom: 1px solid #ddd;
}

.repeater-modal-title {
    margin: 0;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.3;
}

.repeater-modal-close {
    appearance: none;
    border: 0;
    background: transparent;
    width: 32px;
    height: 32px;
    padding: 0;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
}

.repeater-modal-body {
    flex: 1;
    overflow-y: auto;
    padding: 24px;
}

.repeater-modal-body .repeater-field-content {
    display: block !important;
}

.repeater-modal-footer {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 10px;
    padding: 16px 24px 20px;
    border-top: 1px solid #ddd;
}

.repeater-modal-cancel,
.repeater-modal-confirm {
    appearance: none;
    border-radius: 6px;
    padding: 12px 24px;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.2;
    cursor: pointer;
}

.repeater-modal-cancel {
    border: 1px solid #cdcdcd;
    background: #fff;
    color: #222;
}

.repeater-modal-confirm {
    border: 0;
    background: #69727d;
    color: #fff;
}

body.repeater-modal-open {
    overflow: hidden;
}

.container-repeater-field {
    grid-column-gap: 2% !important;
    -ms-grid-columns: (1fr 2%) [12] !important;
    grid-row-gap: 16px !important;
    display: grid !important;
    grid-template-columns: repeat(12,1fr) !important;
    grid-template-rows: repeat(auto-fill,auto) !important;
    width: 100% !important;
}
ul.gform_fields li .container-repeater-field {
    grid-template-columns: none !important;
}

@media only screen and (max-width: 600px) {
    .repeater-modal-dialog {
        width: 100%;
        max-height: 100vh;
        margin: 0;
        border-radius: 0;
    }

    .repeater-modal-body {
        padding: 20px 16px;
    }
}