.mgcp-providers-section,
.mgcp-provider-form-wrap {
    --mgcp-dark:#0F1941;
    --mgcp-blue:#0439A4;
    --mgcp-soft:#0439A40F;
    --mgcp-gradient:linear-gradient(180deg,#FFFFFF 0%,#0F19410D 100%);
    --mgcp-radius:24px;
    --mgcp-button-radius:8px;
    color:var(--mgcp-dark);
}

.mgcp-providers-section {
    width:100%;
    margin:0;
    padding:0;
}

.mgcp-providers-header {
    margin:0 0 26px;
    padding:0;
}

.mgcp-providers-header h2 {
    margin:0;
    padding:0;
    color:var(--mgcp-dark);
    font-size:38px;
    line-height:1.1;
    font-weight:900;
}

.mgcp-providers-header p {
    margin:8px 0 0;
    color:#536078;
    font-size:18px;
}

.mgcp-provider-filter {
    display:grid;
    grid-template-columns:repeat(6,minmax(0,1fr));
    gap:14px;
    margin:0 0 30px;
    padding:0;
}

.mgcp-provider-filter button {
    border:1px solid #fff;
    background:var(--mgcp-gradient);
    color:var(--mgcp-dark);
    border-radius:var(--mgcp-radius);
    padding:14px 16px;
    display:flex;
    align-items:center;
    gap:10px;
    cursor:pointer;
    transition:.25s;
    text-align:left;
    box-shadow:0 6px 18px rgba(15,25,65,.06);
    min-width:0;
}

.mgcp-provider-filter .mgcp-filter-icon {
    width:24px;
    height:24px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    flex:0 0 24px;
    color:var(--mgcp-blue);
}

.mgcp-provider-filter .mgcp-filter-icon svg {
    width:22px;
    height:22px;
    display:block;
    fill:none;
    stroke:currentColor;
    stroke-width:2;
    stroke-linecap:round;
    stroke-linejoin:round;
}

.mgcp-provider-filter button span:last-child {
    display:flex;
    flex-direction:column;
    gap:2px;
    min-width:0;
}

.mgcp-provider-filter button strong {
    font-size:14px;
    line-height:1.15;
    white-space:normal;
}

.mgcp-provider-filter button small {
    font-size:12px;
    color:#667;
    font-weight:600;
    line-height:1.2;
}

.mgcp-provider-filter button:hover,
.mgcp-provider-filter button.active {
    background:var(--mgcp-dark);
    color:#fff;
    transform:translateY(-2px);
    box-shadow:0 10px 24px rgba(4,57,164,.22);
}

.mgcp-provider-filter button:hover .mgcp-filter-icon,
.mgcp-provider-filter button.active .mgcp-filter-icon {
    color:#fff;
}

.mgcp-provider-filter button:hover small,
.mgcp-provider-filter button.active small { color:rgba(255,255,255,.85); }

.mgcp-providers-grid {
    display:grid !important;
    grid-template-columns:repeat(3,minmax(0,1fr)) !important;
    gap:22px !important;
    width:100%;
}

.mgcp-provider-card {
    background:var(--mgcp-gradient);
    border-radius:var(--mgcp-radius);
    overflow:hidden;
    box-shadow:0 10px 30px rgba(15,25,65,.10);
    border:1px solid #fff;
    transition:.25s;
    width:100%;
    min-width:0;
}

.mgcp-provider-card:hover {
    transform:translateY(-5px);
    box-shadow:0 18px 40px rgba(15,25,65,.12);
}

.mgcp-provider-card.hide { display:none !important; }

.mgcp-card-gallery {
    height:210px;
    position:relative;
    overflow:hidden;
    background:#eef3fb;
}

.mgcp-card-track {
    display:flex;
    height:100%;
    overflow-x:auto;
    overflow-y:hidden;
    scroll-snap-type:x mandatory;
    scroll-behavior:smooth;
    scrollbar-width:none;
}

.mgcp-card-track::-webkit-scrollbar { display:none; }

.mgcp-card-slide {
    min-width:100%;
    height:210px;
    background-size:cover;
    background-position:center;
    scroll-snap-align:start;
}

.mgcp-card-slide-empty {
    background:var(--mgcp-soft);
}

.mgcp-gallery-prev,
.mgcp-gallery-next {
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    width:34px;
    height:34px;
    border:none;
    border-radius:50%;
    background:rgba(255,255,255,.88);
    color:var(--mgcp-dark);
    font-size:24px;
    font-weight:900;
    cursor:pointer;
    line-height:1;
    display:flex;
    align-items:center;
    justify-content:center;
    box-shadow:0 5px 16px rgba(15,25,65,.18);
    z-index:3;
}

.mgcp-gallery-prev { left:12px; }
.mgcp-gallery-next { right:12px; }

.mgcp-provider-badge {
    position:absolute;
    left:18px;
    bottom:16px;
    color:#fff;
    padding:8px 14px;
    border-radius:999px;
    font-size:14px;
    font-weight:900;
    box-shadow:0 8px 18px rgba(0,0,0,.18);
    z-index:4;
}

.mgcp-provider-content { padding:22px; }

.mgcp-provider-content h3 {
    margin:0 0 10px;
    color:var(--mgcp-dark);
    font-size:24px;
    line-height:1.18;
    font-weight:900;
}

.mgcp-provider-content p {
    margin:0 0 18px;
    color:#526079;
    font-size:16px;
    line-height:1.6;
}

.mgcp-card-description {
    overflow-wrap:anywhere;
    word-break:break-word;
}

.mgcp-card-description-full {
    display:none;
}

.mgcp-provider-card.is-expanded .mgcp-card-description-short,
.mgcp-help-card.is-expanded .mgcp-card-description-short {
    display:none;
}

.mgcp-provider-card.is-expanded .mgcp-card-description-full,
.mgcp-help-card.is-expanded .mgcp-card-description-full {
    display:inline;
}

.mgcp-card-more {
    display:inline-flex;
    align-items:center;
    width:auto;
    margin:-8px 0 16px;
    padding:0;
    border:0;
    background:transparent;
    color:#0439A4;
    font:inherit;
    font-size:16px;
    font-weight:800;
    line-height:1.3;
    text-decoration:none;
    cursor:pointer;
    box-shadow:none;
}

.mgcp-card-more:hover,
.mgcp-card-more:focus {
    color:#0F1941;
    background:transparent;
    text-decoration:underline;
}

.mgcp-card-actions {
    display:flex;
    align-items:center;
    gap:12px;
    margin-top:12px;
}

.mgcp-share-trigger {
    display:inline-flex;
    align-items:center;
    gap:7px;
    width:auto;
    margin:0;
    padding:0;
    border:0;
    background:transparent;
    color:#0439A4;
    font:inherit;
    font-size:15px;
    font-weight:800;
    line-height:1.3;
    cursor:pointer;
    box-shadow:none;
}

.mgcp-share-trigger:hover,
.mgcp-share-trigger:focus {
    color:#0F1941;
    background:transparent;
    text-decoration:underline;
}

.mgcp-location-share-trigger {
    margin-top:10px;
    font-size:14px;
}

.mgcp-share-modal {
    position:fixed;
    inset:0;
    z-index:99999;
    display:none;
    align-items:center;
    justify-content:center;
    padding:18px;
    background:rgba(15,25,65,.46);
}

.mgcp-share-modal.is-open {
    display:flex;
}

.mgcp-share-dialog {
    width:min(430px, 100%);
    background:#fff;
    border-radius:18px;
    box-shadow:0 24px 70px rgba(15,25,65,.28);
    padding:20px;
    color:#0F1941;
}

.mgcp-share-head {
    display:flex;
    align-items:flex-start;
    justify-content:space-between;
    gap:14px;
    margin-bottom:16px;
}

.mgcp-share-head h3 {
    margin:0;
    color:#0F1941;
    font-size:22px;
    line-height:1.15;
    font-weight:900;
}

.mgcp-share-head p {
    margin:4px 0 0;
    color:#536078;
    font-size:14px;
    line-height:1.35;
}

.mgcp-share-close {
    width:34px;
    height:34px;
    border:0;
    border-radius:50%;
    background:#f3f5f9;
    color:#0F1941;
    font-size:24px;
    line-height:1;
    cursor:pointer;
}

.mgcp-share-options {
    display:grid;
    grid-template-columns:repeat(5,minmax(0,1fr));
    gap:12px;
}

.mgcp-share-option {
    display:flex;
    flex-direction:column;
    align-items:center;
    gap:7px;
    min-width:0;
    padding:10px 4px;
    color:#0F1941;
    text-decoration:none;
    border:0;
    background:transparent;
    cursor:pointer;
    font:inherit;
    font-size:12px;
    font-weight:700;
}

.mgcp-share-option:hover,
.mgcp-share-option:focus {
    color:#0439A4;
}

.mgcp-share-icon {
    width:44px;
    height:44px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    font-size:18px;
    font-weight:900;
    box-shadow:0 8px 20px rgba(15,25,65,.14);
}

.mgcp-share-whatsapp .mgcp-share-icon { background:#20C45A; }
.mgcp-share-viber .mgcp-share-icon { background:#7356E8; }
.mgcp-share-facebook .mgcp-share-icon { background:#1877F2; }
.mgcp-share-messenger .mgcp-share-icon { background:linear-gradient(135deg,#7B2FF7 0%,#FF2D7A 55%,#FF7A00 100%); }
.mgcp-share-copy .mgcp-share-icon { background:#596579; }

@media(max-width:520px){
    .mgcp-share-dialog {
        border-radius:16px;
        padding:18px;
    }

    .mgcp-share-options {
        grid-template-columns:repeat(3,minmax(0,1fr));
    }
}

.mgcp-provider-meta {
    display:flex;
    flex-wrap:wrap;
    gap:9px 14px;
    color:#536078;
    font-size:14px;
    font-weight:700;
    margin-bottom:16px;
}

.mgcp-provider-meta > span,
.mgcp-help-meta > span {
    display:inline-flex;
    align-items:center;
    gap:7px;
}

.mgcp-meta-icon {
    width:16px;
    height:16px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    flex:0 0 16px;
    color:#D92D72;
}

.mgcp-meta-icon svg {
    width:15px;
    height:15px;
    display:block;
    fill:none;
    stroke:currentColor;
    stroke-width:2.1;
    stroke-linecap:round;
    stroke-linejoin:round;
}

.mgcp-provider-meta a { color:#0439A4; text-decoration:none; }

.mgcp-provider-btn,
.mgcp-provider-form button {
    display:inline-block;
    background:var(--mgcp-dark);
    color:#fff !important;
    padding:11px 16px;
    border-radius:var(--mgcp-button-radius);
    text-decoration:none;
    font-weight:800;
    border:none;
    cursor:pointer;
    transition:.25s;
}

.mgcp-provider-btn:hover,
.mgcp-provider-form button:hover { background:var(--mgcp-blue); }

.cat-lokalnopridelano { background:#38a845; }
.cat-apartmajisobe { background:#1168c9; }
.cat-storitve { background:#6f36cc; }
.cat-domaciizdelki { background:#ff7a00; }
.cat-obrtniki { background:#16a3a8; }
.cat-vse { background:#0439A4; }

.mgcp-provider-form-wrap {
    background:var(--mgcp-gradient);
    border:1px solid #fff;
    border-radius:var(--mgcp-radius);
    padding:26px;
    box-shadow:0 10px 30px rgba(15,25,65,.10);
}

.mgcp-provider-form-intro {
    background:var(--mgcp-soft);
    border:1px solid #fff;
    border-radius:var(--mgcp-radius);
    padding:20px 24px;
    margin-bottom:22px;
}

.mgcp-provider-form-intro h3 {
    margin:0 0 8px;
    color:var(--mgcp-dark);
    font-size:24px;
    font-weight:900;
}

.mgcp-provider-form-intro p { margin:0; color:#536078; }

.mgcp-provider-form-grid {
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:16px 22px;
}

.mgcp-provider-form-grid .mgcp-full { grid-column:1 / -1; }

.mgcp-provider-form label {
    display:block;
    font-weight:800;
    color:var(--mgcp-dark);
    margin-bottom:7px;
}

.mgcp-provider-form input,
.mgcp-provider-form select,
.mgcp-provider-form textarea {
    width:100%;
    border:1px solid #d9deea;
    border-radius:12px;
    padding:12px 14px;
    font-size:15px;
    background:#fff;
}

.mgcp-provider-form small {
    display:block;
    margin-top:7px;
    color:#667;
    font-weight:600;
}

.mgcp-upload-grid {
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:12px;
}

.mgcp-upload-grid span {
    display:block;
    color:var(--mgcp-dark);
    font-size:13px;
    font-weight:800;
    margin-bottom:6px;
}

.mgcp-check label {
    display:flex;
    align-items:flex-start;
    gap:10px;
    font-weight:600;
}

.mgcp-check input { width:auto; margin-top:4px; }

.mgcp-provider-form button { width:100%; margin-top:24px; padding:14px 22px; }

.mgcp-form-success,
.mgcp-form-error {
    padding:14px 18px;
    border-radius:14px;
    font-weight:700;
    margin-bottom:18px;
}

.mgcp-form-success { background:#e9f9ef; color:#1d7a3a; }
.mgcp-form-error { background:#fdecec; color:#b42318; }

@media (max-width:1024px) {
    .mgcp-provider-filter { grid-template-columns:repeat(3,minmax(0,1fr)); }
    .mgcp-providers-grid { grid-template-columns:repeat(2,minmax(0,1fr)) !important; }
    .mgcp-providers-header h2 { font-size:34px; }
}

@media (max-width:700px) {
    .mgcp-providers-header { margin-bottom:22px; }
    .mgcp-providers-header h2 { font-size:30px; }
    .mgcp-providers-header p { font-size:15px; }

    .mgcp-provider-filter {
        grid-template-columns:1fr;
        gap:8px;
        margin-bottom:24px;
    }

    .mgcp-provider-filter button {
        width:100%;
        padding:10px 14px;
        border-radius:14px;
    }

    .mgcp-provider-filter button small { display:none; }
    .mgcp-provider-filter button strong { font-size:15px; }

    .mgcp-providers-grid { grid-template-columns:1fr !important; }
    .mgcp-card-gallery,
    .mgcp-card-slide { height:190px; }

    .mgcp-provider-form-wrap { padding:20px; }
    .mgcp-provider-form-grid { grid-template-columns:1fr; }
    .mgcp-upload-grid { grid-template-columns:1fr; }
}

/* MGCP v1.2 fixes */
.mgcp-card-gallery,
.mgcp-card-slide {
    height:180px !important;
    max-height:180px !important;
    min-height:180px !important;
}

.mgcp-card-slide {
    background-size:contain !important;
    background-position:center center !important;
    background-repeat:no-repeat !important;
    background-color:#eef3fb !important;
}

.cat-lokalnopridelano,
.cat-lokalno-pridelano,
.cat-lokalnopridelalno { background:#2E7D32 !important; color:#fff !important; }
.cat-apartmajisobe,
.cat-apartmaji-sobe { background:#1565C0 !important; color:#fff !important; }
.cat-storitve { background:#7B1FA2 !important; color:#fff !important; }
.cat-domaciizdelki,
.cat-domaci-izdelki { background:#EF6C00 !important; color:#fff !important; }
.cat-obrtniki { background:#00838F !important; color:#fff !important; }

/* Lokacije / prijave */
.mgcp-locations-section,
.mgcp-location-form-wrap {
    --mgcp-dark:#0F1941;
    --mgcp-blue:#0439A4;
    --mgcp-soft:#0439A40F;
    --mgcp-gradient:linear-gradient(180deg,#FFFFFF 0%,#0F19410D 100%);
    --mgcp-radius:24px;
    --mgcp-button-radius:8px;
    color:var(--mgcp-dark);
}

.mgcp-location-filter {
    display:flex;
    flex-wrap:wrap;
    gap:12px;
    margin:0 0 20px;
}

.mgcp-location-filter button {
    border:1px solid #fff;
    background:var(--mgcp-gradient);
    color:var(--mgcp-dark);
    border-radius:var(--mgcp-radius);
    padding:12px 18px;
    display:flex;
    align-items:center;
    gap:8px;
    cursor:pointer;
    transition:.25s;
    box-shadow:0 6px 18px rgba(15,25,65,.06);
    font-weight:800;
}

.mgcp-location-filter button:hover,
.mgcp-location-filter button.active {
    background:var(--mgcp-dark);
    color:#fff;
    transform:translateY(-2px);
    box-shadow:0 10px 24px rgba(4,57,164,.22);
}

.mgcp-locations-map {
    height:500px;
    min-height:500px;
    width:100%;
    border-radius:16px;
    overflow:hidden;
    border:1px solid #fff;
    box-shadow:0 10px 30px rgba(15,25,65,.10);
}

.mgcp-location-detail {
    margin-top:24px;
    background:var(--mgcp-gradient);
    border-radius:var(--mgcp-radius);
    overflow:hidden;
    box-shadow:0 10px 30px rgba(15,25,65,.10);
    border:1px solid #fff;
}

.mgcp-location-detail.empty {
    padding:24px;
}

.mgcp-location-detail-placeholder {
    color:#667;
    font-weight:700;
    text-align:center;
}

.mgcp-location-detail-card {
    display:grid;
    grid-template-columns:280px 1fr;
}

.mgcp-location-detail-image {
    min-height:230px;
    aspect-ratio:1 / 1;
    background-size:cover;
    background-position:center center;
    background-color:#eef3fb;
}

.mgcp-location-popup-image {
    width:100%;
    aspect-ratio:1 / 1;
    border-radius:12px;
    margin-bottom:8px;
    background-size:cover;
    background-position:center center;
    background-color:#eef3fb;
}

.mgcp-location-leaflet-popup .leaflet-popup-content-wrapper {
    border-radius:18px;
    padding:0;
    overflow:hidden;
    box-shadow:0 14px 36px rgba(15,25,65,.22);
}

.mgcp-location-leaflet-popup .leaflet-popup-content {
    width:300px !important;
    margin:0;
}

.mgcp-location-popup-card {
    background:#fff;
    padding:12px;
}

.mgcp-location-popup-badge {
    display:inline-block;
    color:#0439A4;
    font-size:12px;
    font-weight:900;
    margin:4px 0 7px;
}

.mgcp-location-popup-title {
    display:block;
    color:var(--mgcp-dark);
    font-size:18px;
    line-height:1.22;
    margin-bottom:6px;
}

.mgcp-location-popup-text {
    display:block;
    color:#526079;
    font-size:14px;
    line-height:1.45;
}

.mgcp-location-detail-content {
    padding:28px;
}

.mgcp-location-badge,
.mgcp-location-latest-badge {
    display:inline-block;
    color:#fff;
    padding:7px 14px;
    border-radius:999px;
    font-size:13px;
    font-weight:900;
    margin-bottom:12px;
    box-shadow:0 8px 18px rgba(0,0,0,.14);
}

.mgcp-location-detail h3 {
    margin:0 0 10px;
    font-size:26px;
    line-height:1.15;
    color:var(--mgcp-dark);
    font-weight:900;
}

.mgcp-location-detail p {
    margin:0;
    color:#526079;
    line-height:1.6;
}

.mgcp-location-meta {
    font-size:14px;
    color:#667;
    margin-bottom:18px;
    font-weight:700;
}

.mgcp-location-latest {
    margin-top:28px;
}

.mgcp-location-latest-head {
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:14px;
    margin-bottom:18px;
}

.mgcp-location-latest h3 {
    margin:0;
    font-size:24px;
    color:var(--mgcp-dark);
    font-weight:900;
}

.mgcp-location-latest-nav {
    display:flex;
    gap:8px;
}

.mgcp-location-latest-nav button {
    width:38px;
    height:38px;
    border:none;
    border-radius:50%;
    background:#fff;
    color:var(--mgcp-dark);
    font-size:28px;
    font-weight:900;
    line-height:1;
    box-shadow:0 7px 20px rgba(15,25,65,.14);
    cursor:pointer;
    transition:.2s;
}

.mgcp-location-latest-nav button:hover {
    background:var(--mgcp-dark);
    color:#fff;
}

.mgcp-location-latest-slider {
    overflow:hidden;
}

.mgcp-location-latest-grid {
    display:flex;
    gap:18px;
    overflow-x:auto;
    scroll-behavior:smooth;
    scroll-snap-type:x mandatory;
    scrollbar-width:none;
    padding:2px 2px 12px;
}

.mgcp-location-latest-grid::-webkit-scrollbar {
    display:none;
}

.mgcp-location-latest-card {
    flex:0 0 260px;
    scroll-snap-align:start;
    background:var(--mgcp-gradient);
    border-radius:18px;
    overflow:hidden;
    box-shadow:0 8px 24px rgba(15,25,65,.10);
    border:1px solid #fff;
    cursor:pointer;
    transition:.25s;
}

.mgcp-location-latest-card:hover {
    transform:translateY(-4px);
    box-shadow:0 12px 30px rgba(15,25,65,.16);
}

.mgcp-location-latest-img {
    aspect-ratio:1 / 1;
    background-size:cover;
    background-position:center center;
    background-color:#eef3fb;
}

.mgcp-location-latest-content {
    padding:16px;
}

.mgcp-location-latest-title {
    font-size:16px;
    font-weight:900;
    color:var(--mgcp-dark);
    margin-bottom:7px;
    line-height:1.3;
}

.mgcp-location-latest-date {
    font-size:13px;
    color:#667;
    font-weight:700;
}

.mgcp-location-form-wrap {
    background:var(--mgcp-gradient);
    border:1px solid #fff;
    border-radius:var(--mgcp-radius);
    padding:26px;
    box-shadow:0 10px 30px rgba(15,25,65,.10);
}

.mgcp-location-form-intro {
    background:var(--mgcp-soft);
    border:1px solid #fff;
    border-radius:var(--mgcp-radius);
    padding:20px 24px;
    margin-bottom:22px;
}

.mgcp-location-form-intro h3 {
    margin:0 0 8px;
    color:var(--mgcp-dark);
    font-size:24px;
    font-weight:900;
}

.mgcp-location-form-intro p { margin:0; color:#536078; }

.mgcp-location-form-grid {
    display:grid;
    grid-template-columns:.85fr 1.15fr;
    gap:24px;
    align-items:start;
}

.mgcp-location-fields,
.mgcp-location-map-col {
    display:flex;
    flex-direction:column;
    gap:12px;
}

.mgcp-location-form label {
    display:block;
    font-weight:800;
    color:var(--mgcp-dark);
    margin-bottom:0;
}

.mgcp-location-form input,
.mgcp-location-form select,
.mgcp-location-form textarea {
    width:100%;
    border:1px solid #d9deea;
    border-radius:12px;
    padding:12px 14px;
    font-size:15px;
    background:#fff;
}

.mgcp-location-cropper {
    display:grid;
    gap:10px;
    background:#fff;
    border:1px solid #d9deea;
    border-radius:18px;
    padding:12px;
}

.mgcp-location-crop-title {
    color:var(--mgcp-dark);
    font-weight:900;
    font-size:15px;
}

.mgcp-location-cropper[hidden] {
    display:none;
}

.mgcp-location-crop-stage {
    position:relative;
    width:100%;
    aspect-ratio:1 / 1;
    overflow:hidden;
    border-radius:14px;
    background:#edf2f8;
    cursor:grab;
    touch-action:none;
    user-select:none;
}

.mgcp-location-crop-stage:active {
    cursor:grabbing;
}

.mgcp-location-crop-stage img {
    position:absolute;
    max-width:none;
    pointer-events:none;
}

.mgcp-location-crop-frame {
    position:absolute;
    inset:0;
    border:2px solid rgba(255,255,255,.95);
    box-shadow:inset 0 0 0 999px rgba(15,25,65,.08);
    pointer-events:none;
}

.mgcp-location-crop-zoom {
    display:grid !important;
    gap:6px;
    font-size:13px;
}

.mgcp-location-crop-zoom input[type="range"] {
    padding:0;
}

.mgcp-location-cropper small {
    color:#536078;
    line-height:1.4;
}

.mgcp-submit-map {
    height:430px;
    width:100%;
    border-radius:18px;
    overflow:hidden;
    border:1px solid #d9deea;
}

.mgcp-location-coords {
    background:#f4f6fb;
    border-radius:14px;
    padding:12px 14px;
    font-weight:800;
    color:var(--mgcp-dark);
    font-size:14px;
}

.mgcp-coords-text { color:var(--mgcp-blue); }

.mgcp-location-picker-actions {
    display:grid;
    grid-template-columns:1fr auto;
    gap:10px;
    align-items:stretch;
}

.mgcp-use-current-location {
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:8px;
    border:none;
    border-radius:8px;
    background:var(--mgcp-dark);
    color:#fff;
    padding:0 18px;
    min-height:45px;
    font-size:14px;
    font-weight:700;
    cursor:pointer;
    transition:.25s;
    white-space:nowrap;
}

.mgcp-use-current-location:hover,
.mgcp-use-current-location:focus {
    background:var(--mgcp-blue);
    transform:translateY(-2px);
}

.mgcp-use-current-location:disabled {
    cursor:wait;
    opacity:.72;
    transform:none;
}

.mgcp-location-form button[type="submit"] {
    display:block;
    width:100%;
    background:var(--mgcp-dark);
    color:#fff;
    border:none;
    border-radius:var(--mgcp-button-radius);
    padding:15px 26px;
    font-weight:900;
    cursor:pointer;
    margin-top:24px;
    font-size:16px;
    transition:.25s;
}

.mgcp-location-form button[type="submit"]:hover {
    background:var(--mgcp-blue);
    transform:translateY(-2px);
}

.mgcp-submission-form.is-submitting {
    opacity:.86;
}

.mgcp-submission-form.is-submitting button[type="submit"] {
    cursor:wait !important;
    opacity:.78;
    transform:none !important;
}

.mgcp-submit-loading {
    margin-top:12px;
    padding:12px 14px;
    border-radius:14px;
    background:#eef6ff;
    color:var(--mgcp-dark);
    font-weight:800;
    text-align:center;
}

.mgcp-submit-loading::before {
    content:"";
    display:inline-block;
    width:14px;
    height:14px;
    margin-right:8px;
    border:2px solid rgba(15,25,65,.22);
    border-top-color:var(--mgcp-blue);
    border-radius:50%;
    vertical-align:-2px;
    animation:mgcp-spin .8s linear infinite;
}

@keyframes mgcp-spin {
    to { transform:rotate(360deg); }
}

@media (max-width:1024px) {
    .mgcp-location-latest-grid { grid-template-columns:none; }
}

@media (max-width:700px) {
    .mgcp-card-gallery,
    .mgcp-card-slide {
        height:170px !important;
        max-height:170px !important;
        min-height:170px !important;
    }

    .mgcp-card-slide {
        background-size:contain !important;
        background-position:center center !important;
        background-repeat:no-repeat !important;
        background-color:#eef3fb !important;
    }

    .mgcp-location-filter {
        display:grid;
        grid-template-columns:1fr;
        gap:8px;
    }

    .mgcp-location-filter button {
        width:100%;
        justify-content:flex-start;
        padding:10px 14px;
        border-radius:14px;
    }

    .mgcp-locations-map {
        height:380px;
        min-height:380px;
    }

    .mgcp-location-detail-card {
        grid-template-columns:1fr;
    }

    .mgcp-location-detail-image {
        min-height:210px;
    }

    .mgcp-location-leaflet-popup .leaflet-popup-content {
        width:min(220px, calc(100vw - 56px)) !important;
    }

    .mgcp-location-leaflet-popup .leaflet-popup-content-wrapper {
        border-radius:12px;
        box-shadow:0 8px 22px rgba(15,25,65,.18);
    }

    .mgcp-location-popup-card {
        padding:8px;
    }

    .mgcp-location-popup-image {
        border-radius:9px;
        margin-bottom:6px;
    }

    .mgcp-location-popup-badge {
        font-size:11px;
        margin:2px 0 5px;
    }

    .mgcp-location-popup-title {
        font-size:15px;
        margin-bottom:4px;
    }

    .mgcp-location-popup-text {
        font-size:12px;
        line-height:1.35;
    }

    .mgcp-location-detail-content {
        padding:22px;
    }

    .mgcp-location-latest-grid {
        display:flex;
        overflow-x:auto;
        gap:14px;
        padding-bottom:10px;
        scroll-snap-type:x mandatory;
    }

    .mgcp-location-latest-card {
        flex:0 0 260px;
        min-width:260px;
        scroll-snap-align:start;
    }

    .mgcp-location-form-wrap {
        padding:20px;
    }

    .mgcp-location-form-grid {
        grid-template-columns:1fr;
    }

    .mgcp-submit-map {
        height:320px;
    }

    .mgcp-location-picker-actions {
        grid-template-columns:1fr;
    }

    .mgcp-use-current-location {
        width:100%;
        min-height:44px;
    }

    .mgcp-location-cropper {
        padding:10px;
        border-radius:16px;
    }

    .mgcp-location-crop-stage {
        border-radius:12px;
    }

    .mgcp-location-crop-zoom input[type="range"] {
        min-height:34px;
    }
}

@media (max-width:420px) {
    .mgcp-location-form-wrap {
        padding:16px;
    }

    .mgcp-location-cropper {
        margin-left:-2px;
        margin-right:-2px;
    }
}


/* MGCP v1.2.1 */
.mgcp-location-filter-pin {
    width:18px;
    height:18px;
    display:inline-block;
    border-radius:50% 50% 50% 0;
    transform:rotate(-45deg);
    border:3px solid #fff;
    box-shadow:0 3px 8px rgba(15,25,65,.25);
    position:relative;
    flex-shrink:0;
}

.mgcp-location-filter-pin::after {
    content:"";
    position:absolute;
    width:6px;
    height:6px;
    border-radius:50%;
    background:#fff;
    top:3px;
    left:3px;
}

.mgcp-location-filter button.active .mgcp-location-filter-pin,
.mgcp-location-filter button:hover .mgcp-location-filter-pin {
    border-color:#fff;
}

.mgcp-provider-form button,
.mgcp-location-form button[type="submit"] {
    display:inline-flex !important;
    align-items:center;
    justify-content:center;
    width:auto !important;
    min-width:220px;
    padding:14px 28px !important;
    border-radius:8px !important;
}

@media (max-width:700px) {
    .mgcp-provider-form button,
    .mgcp-location-form button[type="submit"] {
        width:100% !important;
        min-width:0;
    }
}

/* MGCP v1.3.0 - Help module */
.mgcp-help-section,
.mgcp-help-form-wrap {
    --mgcp-dark:#0F1941;
    --mgcp-blue:#0439A4;
    --mgcp-soft:#0439A40F;
    --mgcp-gradient:linear-gradient(180deg,#FFFFFF 0%,#0F19410D 100%);
    --mgcp-radius:24px;
    --mgcp-button-radius:8px;
    color:var(--mgcp-dark);
}

.mgcp-help-section {
    width:100%;
    margin:0;
    padding:0;
}

.mgcp-help-header {
    margin:0 0 26px;
    padding:0;
}

.mgcp-help-header h2 {
    margin:0;
    padding:0;
    color:var(--mgcp-dark);
    font-size:38px;
    line-height:1.1;
    font-weight:900;
}

.mgcp-help-header p {
    margin:8px 0 0;
    color:#536078;
    font-size:18px;
}

.mgcp-help-filter {
    display:grid;
    grid-template-columns:repeat(4,minmax(0,1fr));
    gap:14px;
    margin:0 0 30px;
    padding:0;
}

.mgcp-help-filter button {
    border:1px solid #fff;
    background:var(--mgcp-gradient);
    color:var(--mgcp-dark);
    border-radius:var(--mgcp-radius);
    padding:14px 16px;
    display:flex;
    align-items:center;
    gap:10px;
    cursor:pointer;
    transition:.25s;
    text-align:left;
    box-shadow:0 6px 18px rgba(15,25,65,.06);
    min-width:0;
}

.mgcp-help-filter .mgcp-filter-icon {
    width:24px;
    height:24px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    flex:0 0 24px;
    color:var(--mgcp-blue);
}

.mgcp-help-filter .mgcp-filter-icon svg {
    width:22px;
    height:22px;
    display:block;
    fill:none;
    stroke:currentColor;
    stroke-width:2;
    stroke-linecap:round;
    stroke-linejoin:round;
}

.mgcp-help-filter button span:last-child {
    display:flex;
    flex-direction:column;
    gap:2px;
    min-width:0;
}

.mgcp-help-filter button strong {
    font-size:14px;
    line-height:1.15;
}

.mgcp-help-filter button small {
    font-size:12px;
    color:#667;
    font-weight:600;
    line-height:1.2;
}

.mgcp-help-filter button:hover,
.mgcp-help-filter button.active {
    background:var(--mgcp-dark);
    color:#fff;
    transform:translateY(-2px);
    box-shadow:0 10px 24px rgba(4,57,164,.22);
}

.mgcp-help-filter button:hover .mgcp-filter-icon,
.mgcp-help-filter button.active .mgcp-filter-icon {
    color:#fff;
}

.mgcp-help-filter button:hover small,
.mgcp-help-filter button.active small { color:rgba(255,255,255,.85); }

.mgcp-help-grid {
    display:grid !important;
    grid-template-columns:repeat(3,minmax(0,1fr)) !important;
    gap:22px !important;
    width:100%;
}

.mgcp-help-card {
    background:var(--mgcp-gradient);
    border-radius:var(--mgcp-radius);
    overflow:hidden;
    box-shadow:0 10px 30px rgba(15,25,65,.10);
    border:1px solid #fff;
    transition:.25s;
    width:100%;
    min-width:0;
}

.mgcp-help-card:hover {
    transform:translateY(-5px);
    box-shadow:0 18px 40px rgba(15,25,65,.12);
}

.mgcp-help-card.hide { display:none !important; }

.mgcp-help-image {
    height:180px;
    position:relative;
    overflow:hidden;
    background:#eef3fb;
    background-size:contain;
    background-position:center center;
    background-repeat:no-repeat;
}

.mgcp-help-placeholder {
    height:180px;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    gap:8px;
    color:#fff;
    text-align:center;
    padding:20px;
}

.mgcp-help-placeholder-icon {
    width:46px;
    height:46px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    color:#fff;
}

.mgcp-help-placeholder-icon svg {
    width:42px;
    height:42px;
    display:block;
    fill:none;
    stroke:currentColor;
    stroke-width:1.8;
    stroke-linecap:round;
    stroke-linejoin:round;
}

.mgcp-help-placeholder strong {
    font-size:18px;
    font-weight:900;
}

.mgcp-help-badge {
    position:absolute;
    left:18px;
    bottom:16px;
    color:#fff;
    padding:8px 14px;
    border-radius:999px;
    font-size:14px;
    font-weight:900;
    box-shadow:0 8px 18px rgba(0,0,0,.18);
    z-index:4;
    display:inline-flex;
    align-items:center;
    gap:8px;
}

.mgcp-help-badge svg {
    width:17px;
    height:17px;
    display:block;
    flex:0 0 17px;
    fill:none;
    stroke:currentColor;
    stroke-width:2.1;
    stroke-linecap:round;
    stroke-linejoin:round;
}

.mgcp-help-content { padding:22px; }

.mgcp-help-content h3 {
    margin:0 0 10px;
    color:var(--mgcp-dark);
    font-size:24px;
    line-height:1.18;
    font-weight:900;
}

.mgcp-help-content p {
    margin:0 0 18px;
    color:#526079;
    font-size:16px;
    line-height:1.6;
    display:-webkit-box;
    -webkit-line-clamp:3;
    -webkit-box-orient:vertical;
    overflow:hidden;
}

.mgcp-help-content p.mgcp-card-description {
    display:block;
    -webkit-line-clamp:unset;
    -webkit-box-orient:initial;
    overflow:visible;
}

.mgcp-help-meta {
    display:flex;
    flex-wrap:wrap;
    gap:9px 14px;
    color:#536078;
    font-size:14px;
    font-weight:700;
}

.mgcp-help-meta a { color:#0439A4; text-decoration:none; }

.cat-help-potrebujem-pomoc { background:#D94F45; }
.cat-help-nudim-pomoc { background:#2E7D32; }
.cat-help-podarim { background:#EF6C00; }

.mgcp-help-form-wrap {
    background:var(--mgcp-gradient);
    border:1px solid #fff;
    border-radius:var(--mgcp-radius);
    padding:26px;
    box-shadow:0 10px 30px rgba(15,25,65,.10);
}

.mgcp-help-form-intro {
    background:var(--mgcp-soft);
    border:1px solid #fff;
    border-radius:var(--mgcp-radius);
    padding:20px 24px;
    margin-bottom:22px;
}

.mgcp-help-form-intro h3 {
    margin:0 0 8px;
    color:var(--mgcp-dark);
    font-size:24px;
    font-weight:900;
}

.mgcp-help-form-intro p { margin:0; color:#536078; }

.mgcp-help-form-grid {
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:16px 22px;
}

.mgcp-help-form-grid .mgcp-full { grid-column:1 / -1; }

.mgcp-help-form label {
    display:block;
    font-weight:800;
    color:var(--mgcp-dark);
    margin-bottom:7px;
}

.mgcp-help-form input,
.mgcp-help-form select,
.mgcp-help-form textarea {
    width:100%;
    border:1px solid #d9deea;
    border-radius:12px;
    padding:12px 14px;
    font-size:15px;
    background:#fff;
}

.mgcp-help-form small {
    display:block;
    margin-top:7px;
    color:#667;
    font-weight:600;
}

.mgcp-help-form button {
    display:inline-flex !important;
    align-items:center;
    justify-content:center;
    width:auto !important;
    min-width:220px;
    padding:14px 28px !important;
    border-radius:8px !important;
    background:var(--mgcp-dark);
    color:#fff !important;
    text-decoration:none;
    font-weight:800;
    border:none;
    cursor:pointer;
    transition:.25s;
    margin-top:24px;
}

.mgcp-help-form button:hover { background:var(--mgcp-blue); }

@media (max-width:1024px) {
    .mgcp-help-filter { grid-template-columns:repeat(2,minmax(0,1fr)); }
    .mgcp-help-grid { grid-template-columns:repeat(2,minmax(0,1fr)) !important; }
    .mgcp-help-header h2 { font-size:34px; }
}

@media (max-width:700px) {
    .mgcp-help-header { margin-bottom:22px; }
    .mgcp-help-header h2 { font-size:30px; }
    .mgcp-help-header p { font-size:15px; }

    .mgcp-help-filter {
        grid-template-columns:1fr;
        gap:8px;
        margin-bottom:24px;
    }

    .mgcp-help-filter button {
        width:100%;
        padding:10px 14px;
        border-radius:14px;
    }

    .mgcp-help-filter button small { display:none; }
    .mgcp-help-filter button strong { font-size:15px; }

    .mgcp-help-grid { grid-template-columns:1fr !important; }
    .mgcp-help-image,
    .mgcp-help-placeholder { height:170px; }

    .mgcp-help-form-wrap { padding:20px; }
    .mgcp-help-form-grid { grid-template-columns:1fr; }
    .mgcp-help-form button { width:100% !important; min-width:0; }
}

/* MGCP carried fixes */
.mgcp-card-gallery,
.mgcp-card-slide {
    height:180px !important;
    max-height:180px !important;
    min-height:180px !important;
}

.mgcp-card-slide {
    background-size:contain !important;
    background-position:center center !important;
    background-repeat:no-repeat !important;
    background-color:#eef3fb !important;
}

.cat-lokalnopridelalno { background:#2E7D32 !important; color:#fff !important; }
.cat-lokalnopridelano { background:#2E7D32 !important; color:#fff !important; }
.cat-apartmajisobe { background:#1565C0 !important; color:#fff !important; }
.cat-storitve { background:#7B1FA2 !important; color:#fff !important; }
.cat-domaciizdelki { background:#EF6C00 !important; color:#fff !important; }
.cat-obrtniki { background:#00838F !important; color:#fff !important; }

@media (max-width:700px) {
    .mgcp-card-gallery,
    .mgcp-card-slide {
        height:170px !important;
        max-height:170px !important;
        min-height:170px !important;
    }
}


/* MGCP v1.5.2 - checkbox alignment */
.mgcp-check{display:block !important;margin-top:18px !important;}
.mgcp-check label{display:flex !important;align-items:center !important;gap:10px !important;margin:0 !important;font-weight:800 !important;color:#0F1941 !important;line-height:1.4 !important;}
.mgcp-check input[type="checkbox"]{width:18px !important;height:18px !important;min-width:18px !important;margin:0 !important;flex:0 0 18px !important;accent-color:#0439A4 !important;}

/* MGCP v1.6.0 - Latest community widget */
.mgcp-latest-widget{
    --mgcp-dark:#0F1941;
    --mgcp-blue:#0439A4;
    --mgcp-soft:#0439A40F;
    --mgcp-gradient:linear-gradient(180deg,#FFFFFF 0%,#0F19410D 100%);
    --mgcp-radius:24px;
    background:var(--mgcp-gradient);
    border:1px solid #fff;
    border-radius:var(--mgcp-radius);
    padding:24px;
    box-shadow:0 10px 30px rgba(15,25,65,.10);
    color:var(--mgcp-dark);
}

.mgcp-latest-widget h2{
    margin:0 0 20px;
    padding:0;
    text-align:center;
    color:var(--mgcp-dark);
    font-size:30px;
    line-height:1.15;
    font-weight:900;
}

.mgcp-latest-list{
    display:flex;
    flex-direction:column;
    gap:14px;
}

.mgcp-latest-item{
    display:grid;
    grid-template-columns:130px 1fr;
    gap:16px;
    align-items:center;
    background:#fff;
    border:1px solid rgba(15,25,65,.06);
    border-radius:12px;
    padding:0;
    overflow:hidden;
    text-decoration:none !important;
    color:var(--mgcp-dark) !important;
    transition:.25s;
}

.mgcp-latest-item:hover{
    transform:translateY(-2px);
    box-shadow:0 10px 24px rgba(15,25,65,.12);
}

.mgcp-latest-image{
    display:block;
    width:100%;
    height:105px;
    background-size:cover;
    background-position:center center;
    background-repeat:no-repeat;
    background-color:#eef3fb;
}

.mgcp-latest-placeholder{
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    font-size:34px;
}

.mgcp-latest-content{
    display:flex;
    flex-direction:column;
    gap:4px;
    padding:12px 14px 12px 0;
    min-width:0;
}

.mgcp-latest-content strong{
    color:var(--mgcp-dark);
    font-size:18px;
    line-height:1.18;
    font-weight:900;
}

.mgcp-latest-content em{
    color:var(--mgcp-blue);
    font-size:13px;
    line-height:1.25;
    font-style:normal;
    font-weight:800;
}

.mgcp-latest-content small{
    color:#526079;
    font-size:15px;
    line-height:1.35;
    font-weight:500;
}

.mgcp-latest-button{
    display:flex;
    align-items:center;
    justify-content:center;
    margin-top:20px;
    background:var(--mgcp-dark);
    color:#fff !important;
    border-radius:8px;
    padding:14px 22px;
    text-decoration:none !important;
    font-weight:900;
    transition:.25s;
}

.mgcp-latest-button:hover{
    background:var(--mgcp-blue);
    transform:translateY(-2px);
}

.mgcp-latest-empty{
    margin:0;
    color:#526079;
    font-weight:700;
    text-align:center;
}

@media(max-width:700px){
    .mgcp-latest-widget{
        padding:20px;
    }

    .mgcp-latest-widget h2{
        font-size:26px;
        text-align:left;
    }

    .mgcp-latest-item{
        grid-template-columns:96px 1fr;
        gap:12px;
    }

    .mgcp-latest-image{
        height:86px;
    }

    .mgcp-latest-content strong{
        font-size:16px;
    }

    .mgcp-latest-content small{
        font-size:14px;
    }
}


/* MGCP v1.7.0 - Latest widget defaults */
.mgcp-latest-widget h2{
    display:none !important;
}

.mgcp-latest-time{
    display:block;
    color:#667;
    font-size:12px;
    font-weight:800;
    line-height:1.2;
}

.mgcp-latest-content em + .mgcp-latest-time{
    margin-top:1px;
}


/* MGCP v1.8.1 - compact latest/news widgets */
.mgcp-latest-widget,
.mgcp-news-widget{
    background:transparent !important;
    border:none !important;
    box-shadow:none !important;
    padding:0 !important;
    margin:0 !important;
    border-radius:0 !important;
}

.mgcp-latest-list,
.mgcp-news-list{
    gap:16px !important;
}

.mgcp-latest-item,
.mgcp-news-item{
    grid-template-columns:120px 1fr !important;
    gap:14px !important;
    padding:10px !important;
    border-radius:14px !important;
    background:#fff !important;
    border:1px solid rgba(15,25,65,.06) !important;
    overflow:hidden !important;
    cursor:pointer !important;
}

.mgcp-latest-item:hover,
.mgcp-news-item:hover{
    transform:translateY(-2px) !important;
    box-shadow:0 10px 24px rgba(15,25,65,.12) !important;
}

.mgcp-latest-image,
.mgcp-news-image{
    height:90px !important;
    border-radius:10px !important;
}

.mgcp-latest-content,
.mgcp-news-content{
    padding:0 !important;
    gap:3px !important;
}

.mgcp-latest-content strong,
.mgcp-news-title{
    display:-webkit-box !important;
    -webkit-line-clamp:2 !important;
    -webkit-box-orient:vertical !important;
    overflow:hidden !important;
    font-size:18px !important;
    line-height:1.15 !important;
    margin:0 !important;
}

.mgcp-latest-content small,
.mgcp-news-excerpt{
    display:-webkit-box !important;
    -webkit-line-clamp:1 !important;
    -webkit-box-orient:vertical !important;
    overflow:hidden !important;
    font-size:15px !important;
    line-height:1.25 !important;
    margin:0 !important;
}

.mgcp-news-item:hover .mgcp-news-title,
.mgcp-news-item:hover .mgcp-latest-content strong,
.mgcp-latest-item:hover .mgcp-latest-content strong{
    color:#0439A4 !important;
}

@media(max-width:700px){
    .mgcp-latest-item,
    .mgcp-news-item{
        grid-template-columns:90px 1fr !important;
        gap:12px !important;
        padding:10px !important;
    }

    .mgcp-latest-image,
    .mgcp-news-image{
        height:72px !important;
    }

    .mgcp-latest-content strong,
    .mgcp-news-title{
        font-size:16px !important;
    }

    .mgcp-latest-content small,
    .mgcp-news-excerpt{
        font-size:14px !important;
    }
}


/* MGCP v1.8.2 - news link + hover parity */
.mgcp-news-item,
.mgcp-news-item:visited,
.mgcp-news-item:focus,
.mgcp-news-item:hover{
    text-decoration:none !important;
    color:#0F1941 !important;
}

.mgcp-news-item{
    display:grid !important;
    transition:transform .25s ease, box-shadow .25s ease, border-color .25s ease !important;
}

.mgcp-news-item:hover,
.mgcp-news-item:focus-visible{
    transform:translateY(-2px) !important;
    box-shadow:0 10px 24px rgba(15,25,65,.12) !important;
    border-color:rgba(4,57,164,.18) !important;
}

.mgcp-news-item:hover .mgcp-news-title,
.mgcp-news-item:focus-visible .mgcp-news-title,
.mgcp-news-item:hover .mgcp-latest-content strong,
.mgcp-news-item:focus-visible .mgcp-latest-content strong{
    color:#0439A4 !important;
}

.mgcp-news-excerpt,
.mgcp-latest-excerpt{
    display:-webkit-box !important;
    -webkit-line-clamp:1 !important;
    -webkit-box-orient:vertical !important;
    overflow:hidden !important;
    text-overflow:ellipsis !important;
}


/* MGCP v1.8.3 - stronger news hover/click styling */
.mgcp-news-item{
    cursor:pointer !important;
    display:grid !important;
    text-decoration:none !important;
    color:#0F1941 !important;
    transition:transform .25s ease, box-shadow .25s ease, border-color .25s ease !important;
}
.mgcp-news-item:hover,
.mgcp-news-item:focus-visible{
    transform:translateY(-2px) !important;
    box-shadow:0 10px 24px rgba(15,25,65,.12) !important;
    border-color:rgba(4,57,164,.18) !important;
    outline:none !important;
}
.mgcp-news-title-link{
    color:inherit !important;
    text-decoration:none !important;
}
.mgcp-news-item:hover .mgcp-news-title,
.mgcp-news-item:focus-visible .mgcp-news-title,
.mgcp-news-title-link:hover .mgcp-news-title{
    color:#0439A4 !important;
}
.mgcp-news-excerpt{
    display:-webkit-box !important;
    -webkit-line-clamp:1 !important;
    -webkit-box-orient:vertical !important;
    overflow:hidden !important;
    text-overflow:ellipsis !important;
}

/* MGCP v1.9.0 - Provider category refresh */
.mgcp-provider-filter{
    grid-template-columns:repeat(5,minmax(0,1fr)) !important;
}

.cat-lokalno-domace,
.cat-lokalnopridelano,
.cat-lokalnopridelalno,
.cat-domaciizdelki{
    background:#2E7D32 !important;
    color:#fff !important;
}

.cat-namestitve,
.cat-apartmajisobe{
    background:#1565C0 !important;
    color:#fff !important;
}

.cat-storitve-obrtniki,
.cat-storitve,
.cat-obrtniki{
    background:#00838F !important;
    color:#fff !important;
}

.cat-sport-drustva{
    background:#2F5DA8 !important;
    color:#fff !important;
}

.mgcp-provider-badge {
    display:inline-flex !important;
    align-items:center !important;
    gap:8px !important;
}

.mgcp-provider-badge svg {
    width:18px;
    height:18px;
    display:block;
    flex:0 0 18px;
    fill:none;
    stroke:currentColor;
    stroke-width:2.1;
    stroke-linecap:round;
    stroke-linejoin:round;
}

@media (max-width:1024px){
    .mgcp-provider-filter{
        grid-template-columns:repeat(2,minmax(0,1fr)) !important;
    }
}

@media (max-width:700px){
    .mgcp-provider-filter{
        grid-template-columns:1fr !important;
    }
}

/* MGCP v2.0.2 - Weather stable compact / webcam-safe */
.mgcp-weather-widget{
    --mgcp-dark:#0F1941;
    --mgcp-blue:#0439A4;
    --mgcp-gradient:linear-gradient(180deg,#FFFFFF 0%,#0F19410D 100%);
    width:100% !important;
    max-width:100% !important;
    display:block !important;
    position:relative !important;
    z-index:5 !important;
    margin:0 !important;
    padding:0 !important;
    color:var(--mgcp-dark) !important;
    clear:both !important;
    box-sizing:border-box !important;
    isolation:isolate !important;
}

.mgcp-weather-widget *{
    box-sizing:border-box !important;
}

.mgcp-weather-grid{
    display:grid !important;
    grid-template-columns:repeat(3,minmax(0,1fr)) !important;
    gap:6px !important;
    width:100% !important;
    margin:0 !important;
    padding:0 !important;
}

.mgcp-weather-item{
    min-width:0 !important;
    min-height:58px !important;
    height:auto !important;
    display:flex !important;
    align-items:center !important;
    justify-content:center !important;
    gap:7px !important;
    background:rgba(255,255,255,.82) !important;
    border:1px solid rgba(255,255,255,.92) !important;
    border-radius:14px !important;
    padding:7px 6px !important;
    box-shadow:0 6px 16px rgba(15,25,65,.08) !important;
    transition:.25s !important;
    overflow:hidden !important;
    backdrop-filter:blur(8px) !important;
    -webkit-backdrop-filter:blur(8px) !important;
}

.mgcp-weather-item:hover{
    transform:translateY(-2px) !important;
    box-shadow:0 10px 22px rgba(15,25,65,.12) !important;
}

.mgcp-weather-icon{
    width:30px !important;
    height:30px !important;
    min-width:30px !important;
    display:flex !important;
    align-items:center !important;
    justify-content:center !important;
    border-radius:9px !important;
    background:var(--mgcp-dark) !important;
    font-size:15px !important;
    line-height:1 !important;
}

.mgcp-weather-content{
    display:flex !important;
    flex-direction:column !important;
    min-width:0 !important;
    text-align:left !important;
}

.mgcp-weather-value{
    color:var(--mgcp-dark) !important;
    font-size:14px !important;
    font-weight:900 !important;
    line-height:1.05 !important;
    white-space:nowrap !important;
}

.mgcp-weather-label{
    color:#687089 !important;
    font-size:10px !important;
    font-weight:800 !important;
    line-height:1.1 !important;
    margin-top:2px !important;
}

/* If weather shortcode is placed inside the webcam box, keep it inside the camera and out of document flow */
.camera-box .mgcp-weather-widget{
    position:absolute !important;
    left:12px !important;
    right:12px !important;
    bottom:12px !important;
    width:auto !important;
    margin:0 !important;
    z-index:10 !important;
    clear:none !important;
}

@media(max-width:767px){
    .mgcp-weather-grid{
        grid-template-columns:repeat(3,minmax(0,1fr)) !important;
        gap:5px !important;
    }

    .mgcp-weather-item{
        flex-direction:column !important;
        align-items:center !important;
        justify-content:center !important;
        text-align:center !important;
        gap:3px !important;
        min-height:62px !important;
        padding:6px 3px !important;
        border-radius:12px !important;
        box-shadow:0 4px 12px rgba(15,25,65,.07) !important;
    }

    .mgcp-weather-icon{
        width:26px !important;
        height:26px !important;
        min-width:26px !important;
        font-size:13px !important;
        border-radius:8px !important;
    }

    .mgcp-weather-content{
        text-align:center !important;
        align-items:center !important;
    }

    .mgcp-weather-value{
        font-size:12px !important;
        line-height:1 !important;
    }

    .mgcp-weather-label{
        font-size:9px !important;
        margin-top:0 !important;
    }

    .camera-box .mgcp-weather-widget{
        left:8px !important;
        right:8px !important;
        bottom:8px !important;
    }
}

@media(max-width:390px){
    .mgcp-weather-grid{ gap:4px !important; }
    .mgcp-weather-item{ min-height:58px !important; padding:5px 2px !important; }
    .mgcp-weather-icon{ width:24px !important; height:24px !important; min-width:24px !important; font-size:12px !important; }
    .mgcp-weather-value{ font-size:11px !important; }
    .mgcp-weather-label{ font-size:8px !important; }
}

/* MGCP v2.0.0 - Newsletter widget */
.mgcp-newsletter-widget{
    --mgcp-dark:#0F1941;
    --mgcp-blue:#0439A4;
    --mgcp-gradient:linear-gradient(180deg,#FFFFFF 0%,#0F19410D 100%);
    width:100%;
    color:var(--mgcp-dark);
}

.mgcp-newsletter-title{
    margin:0 0 6px;
    color:var(--mgcp-dark);
    font-size:22px;
    line-height:1.15;
    font-weight:900;
}

.mgcp-newsletter-description{
    margin:0 0 14px;
    color:#536078;
    font-size:15px;
    line-height:1.45;
    font-weight:600;
}

.mgcp-newsletter-form{
    display:flex;
    flex-direction:column;
    gap:10px;
    margin:0;
}

.mgcp-newsletter-email{
    width:100%;
    height:52px;
    border:1px solid #d9deea;
    border-radius:12px;
    padding:0 18px;
    background:#fff;
    color:var(--mgcp-dark);
    font-size:16px;
    outline:none;
    transition:.2s;
}

.mgcp-newsletter-email:focus{
    border-color:var(--mgcp-blue);
    box-shadow:0 0 0 3px rgba(4,57,164,.10);
}

.mgcp-newsletter-submit{
    width:100%;
    height:48px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:var(--mgcp-dark);
    color:#fff;
    border:none;
    border-radius:8px;
    padding:0 24px;
    font-size:16px;
    font-weight:600;
    line-height:1;
    cursor:pointer;
    transition:.25s;
}

.mgcp-newsletter-submit:hover{
    background:var(--mgcp-blue);
    transform:translateY(-2px);
}

.mgcp-newsletter-message{
    margin:0 0 12px;
    padding:10px 12px;
    border-radius:12px;
    font-size:14px;
    font-weight:800;
}

.mgcp-newsletter-message.success{
    background:#e9f9ef;
    color:#1d7a3a;
}

.mgcp-newsletter-message.error{
    background:#fdecec;
    color:#b42318;
}

@media(max-width:767px){
    .mgcp-newsletter-title{
        font-size:20px;
    }

    .mgcp-newsletter-description{
        font-size:14px;
        margin-bottom:12px;
    }

    .mgcp-newsletter-email{
        height:50px;
        font-size:15px;
    }

    .mgcp-newsletter-submit{
        height:44px;
        font-size:15px;
    }
}

/* MGCP v4.5.5 - Contact Form 7 Notizie newsletter */
.wpcf7[id*="d0e0432"],
form[action*="wpcf7-fd0e0432"]{
    --mgcp-dark:#0F1941;
    --mgcp-blue:#0439A4;
    width:100%;
    color:var(--mgcp-dark);
}

.wpcf7[id*="d0e0432"] .newsletter-row,
form[action*="wpcf7-fd0e0432"] .newsletter-row{
    width:100%;
}

.wpcf7[id*="d0e0432"] .newsletter-row .wpcf7-form-control-wrap,
form[action*="wpcf7-fd0e0432"] .newsletter-row .wpcf7-form-control-wrap{
    display:block;
    width:100%;
    margin-bottom:10px !important;
}

.wpcf7[id*="d0e0432"] form,
form[action*="wpcf7-fd0e0432"]{
    display:flex;
    flex-direction:column;
    gap:10px;
    margin:0;
}

.wpcf7[id*="d0e0432"] p,
form[action*="wpcf7-fd0e0432"] p{
    margin:0;
}

.wpcf7[id*="d0e0432"] label,
form[action*="wpcf7-fd0e0432"] label{
    display:block;
    margin:0 0 6px;
    color:#536078;
    font-size:15px;
    line-height:1.45;
    font-weight:600;
}

.wpcf7[id*="d0e0432"] input[type="email"],
.wpcf7[id*="d0e0432"] input[type="text"],
form[action*="wpcf7-fd0e0432"] input[type="email"],
form[action*="wpcf7-fd0e0432"] input[type="text"]{
    width:100%;
    height:52px;
    border:1px solid #d9deea;
    border-radius:12px;
    padding:0 18px;
    background:#fff;
    color:var(--mgcp-dark);
    font-size:16px;
    outline:none;
    transition:.2s;
    box-shadow:none;
}

.wpcf7[id*="d0e0432"] input[type="email"]:focus,
.wpcf7[id*="d0e0432"] input[type="text"]:focus,
form[action*="wpcf7-fd0e0432"] input[type="email"]:focus,
form[action*="wpcf7-fd0e0432"] input[type="text"]:focus{
    border-color:var(--mgcp-blue);
    box-shadow:0 0 0 3px rgba(4,57,164,.10);
}

.wpcf7[id*="d0e0432"] input[type="submit"],
form[action*="wpcf7-fd0e0432"] input[type="submit"]{
    width:100%;
    height:44px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:var(--mgcp-dark);
    color:#fff;
    border:none;
    border-radius:8px;
    padding:0 24px;
    font-size:16px;
    font-weight:300 !important;
    line-height:1;
    cursor:pointer;
    transition:.25s;
    box-shadow:none;
    margin-top:-20px !important;
}

.wpcf7[id*="d0e0432"] input[type="submit"]:hover,
.wpcf7[id*="d0e0432"] input[type="submit"]:focus,
form[action*="wpcf7-fd0e0432"] input[type="submit"]:hover,
form[action*="wpcf7-fd0e0432"] input[type="submit"]:focus{
    background:var(--mgcp-blue);
    color:#fff;
    transform:translateY(-2px);
}

.wpcf7[id*="d0e0432"] .wpcf7-spinner,
form[action*="wpcf7-fd0e0432"] .wpcf7-spinner{
    margin:8px auto 0;
}

.wpcf7[id*="d0e0432"] .wpcf7-response-output,
form[action*="wpcf7-fd0e0432"] .wpcf7-response-output{
    margin:2px 0 0 !important;
    padding:10px 12px !important;
    border-radius:12px;
    font-size:14px;
    font-weight:800;
}

@media(max-width:767px){
    .wpcf7[id*="d0e0432"] label,
    form[action*="wpcf7-fd0e0432"] label{
        font-size:14px;
    }

    .wpcf7[id*="d0e0432"] input[type="email"],
    .wpcf7[id*="d0e0432"] input[type="text"],
    form[action*="wpcf7-fd0e0432"] input[type="email"],
    form[action*="wpcf7-fd0e0432"] input[type="text"]{
        height:50px;
        font-size:15px;
    }

    .wpcf7[id*="d0e0432"] input[type="submit"],
    form[action*="wpcf7-fd0e0432"] input[type="submit"]{
        height:44px;
        font-size:15px;
        font-weight:300 !important;
    }
}

/* MGCP v2.1.0 - Footer */
.mgcp-footer{
    --mgcp-footer-dark:#062348;
    --mgcp-footer-darker:#031a38;
    --mgcp-footer-blue:#2F77A8;
    --mgcp-footer-soft:#2F77A8;
    width:100%;
    position:relative;
    overflow:hidden;
    color:#fff;
    background:
        radial-gradient(circle at 20% 0%, rgba(47,119,168,.22) 0%, rgba(47,119,168,0) 34%),
        linear-gradient(135deg, #062348 0%, #031a38 55%, #062b58 100%);
    padding:56px 48px 24px;
    border-radius:0;
}

.mgcp-footer::after{
    content:"";
    position:absolute;
    left:0;
    right:0;
    bottom:-1px;
    height:86px;
    background:linear-gradient(170deg, transparent 34%, rgba(47,119,168,.10) 35%, rgba(47,119,168,.14) 100%);
    pointer-events:none;
}

.mgcp-footer-inner{
    position:relative;
    z-index:2;
    max-width:1180px;
    margin:0 auto;
    display:grid;
    grid-template-columns:1.25fr 1fr 1fr .95fr;
    gap:48px;
}

.mgcp-footer a{
    color:#fff;
    text-decoration:none !important;
    transition:.22s;
}

.mgcp-footer a:hover{
    color:var(--mgcp-footer-soft);
}

.mgcp-footer-logo{
    display:flex;
    align-items:center;
    gap:16px;
    margin-bottom:16px;
}

.mgcp-footer-logo-mark{
    width:82px;
    height:58px;
    display:flex;
    align-items:center;
    justify-content:center;
    position:relative;
    font-size:66px;
    line-height:1;
    font-weight:900;
    color:#fff;
    letter-spacing:-7px;
}

.mgcp-footer-logo-mark::after{
    content:"";
    position:absolute;
    bottom:0;
    left:7px;
    width:70px;
    height:10px;
    border-radius:50%;
    background:linear-gradient(90deg, transparent 0%, #2F77A8 30%, #2F77A8 55%, transparent 100%);
    transform:skewX(-18deg);
    opacity:.9;
}

.mgcp-footer-logo-text{
    font-size:28px;
    line-height:1;
    font-weight:900;
    letter-spacing:.04em;
}

.mgcp-footer-brand p{
    max-width:230px;
    margin:0 0 20px;
    color:#2F77A8;
    font-size:18px;
    line-height:1.45;
    font-weight:600;
}

.mgcp-footer-line{
    display:block;
    width:38px;
    height:2px;
    background:#2F77A8;
    margin:0 0 28px;
}


.mgcp-footer-art{
    position:relative;
    width:var(--mgcp-footer-art-width, 420px);
    max-width:100%;
    margin:10px 0 0;
    opacity:var(--mgcp-footer-art-opacity, .22);
    pointer-events:none;
    transform:translateY(-14px);
}

.mgcp-footer-art::after{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(90deg, rgba(6,35,72,0) 0%, rgba(6,35,72,.12) 58%, rgba(6,35,72,.9) 100%);
}

.mgcp-footer-art img{
    display:block;
    width:100%;
    height:auto;
    filter:drop-shadow(0 10px 26px rgba(0,0,0,.18));
}

.mgcp-footer h3{
    display:flex;
    align-items:center;
    gap:12px;
    margin:0 0 26px;
    color:#fff;
    text-transform:uppercase;
    letter-spacing:.04em;
    font-size:16px;
    line-height:1.1;
    font-weight:900;
}

.mgcp-footer-heading-icon{
    width:46px;
    height:46px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    border:2px solid rgba(47,119,168,.75);
    border-radius:999px;
    color:#2F77A8;
    font-size:24px;
    line-height:1;
    flex:0 0 46px;
}

.mgcp-footer ul{
    list-style:none;
    margin:0;
    padding:0;
    display:flex;
    flex-direction:column;
    gap:16px;
}

.mgcp-footer li a{
    display:flex;
    align-items:center;
    gap:12px;
    color:rgba(255,255,255,.92);
    font-size:17px;
    line-height:1.25;
    font-weight:600;
}

.mgcp-footer li a span{
    color:#2F77A8;
    font-size:28px;
    line-height:1;
    font-weight:900;
}

.mgcp-footer-email{
    display:flex;
    align-items:center;
    gap:12px;
    font-size:17px;
    line-height:1.4;
    font-weight:600;
}

.mgcp-footer-email span{
    color:#2F77A8;
    font-size:28px;
}

.mgcp-footer-divider{
    display:block;
    width:100%;
    max-width:190px;
    height:1px;
    background:#2F77A8;
    margin:32px 0;
    opacity:.9;
}

.mgcp-footer-contact p{
    margin:0 0 22px;
    font-size:17px;
    color:rgba(255,255,255,.9);
    font-weight:600;
}

.mgcp-footer-socials{
    display:flex;
    align-items:center;
    gap:24px;
}

.mgcp-social{
    width:54px;
    height:54px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:999px;
    color:#fff !important;
    font-size:34px;
    font-weight:900;
    box-shadow:0 10px 24px rgba(0,0,0,.18);
}

.mgcp-social-fb{ background:#2d73d9; }
.mgcp-social-ig{ background:radial-gradient(circle at 30% 100%, #feda75 0%, #fa7e1e 30%, #d62976 55%, #962fbf 78%, #4f5bd5 100%); }

.mgcp-footer-bottom{
    position:relative;
    z-index:2;
    max-width:1180px;
    margin:34px auto 0;
    padding-top:18px;
    border-top:1px solid rgba(47,119,168,.22);
    color:rgba(255,255,255,.65);
    font-size:13px;
    font-weight:600;
}

@media(max-width:1024px){
    .mgcp-footer{
        padding:46px 28px 22px;
    }

    .mgcp-footer-inner{
        grid-template-columns:1fr 1fr;
        gap:38px;
    }
}

@media(max-width:700px){
    .mgcp-footer{
        padding:36px 22px 22px;
        border-radius:24px 24px 0 0;
    }

    .mgcp-footer-inner{
        grid-template-columns:1fr;
        gap:34px;
    }

    .mgcp-footer-logo-mark{
        width:68px;
        height:50px;
        font-size:56px;
    }

    .mgcp-footer-logo-text{
        font-size:24px;
    }

    .mgcp-footer-brand p{
        max-width:none;
        font-size:16px;
    }

    .mgcp-footer-art{
        width:min(100%, 320px);
        opacity:.16;
        margin-top:18px;
    }

    .mgcp-footer h3{
        margin-bottom:18px;
    }

    .mgcp-footer ul{
        gap:13px;
    }

    .mgcp-footer li a{
        font-size:16px;
    }

    .mgcp-footer-divider{
        margin:24px 0;
    }
}

/* MGCP v3.0.0 - Footer settings additions */
.mgcp-footer-logo-img{
    max-width:230px;
    max-height:76px;
    width:auto;
    height:auto;
    display:block;
}

.mgcp-footer-light{
    color:#0F1941;
    background:linear-gradient(180deg,#FFFFFF 0%,#0F19410D 100%);
    border-top:1px solid rgba(15,25,65,.06);
}

.mgcp-footer-light a,
.mgcp-footer-light h3,
.mgcp-footer-light .mgcp-footer-logo-text,
.mgcp-footer-light .mgcp-footer-logo-mark,
.mgcp-footer-light .mgcp-footer-bottom{
    color:#0F1941;
}

.mgcp-footer-light .mgcp-footer-brand p,
.mgcp-footer-light .mgcp-footer-contact p,
.mgcp-footer-light .mgcp-footer-address,
.mgcp-footer-light li a{
    color:#536078;
}

.mgcp-footer-light .mgcp-footer-heading-icon{
    border-color:#0439A4;
    color:#0439A4;
}

.mgcp-footer-light .mgcp-footer-line,
.mgcp-footer-light .mgcp-footer-divider{
    background:#0439A4;
}

.mgcp-footer-address{
    margin:14px 0 0 !important;
    color:rgba(255,255,255,.9);
}

.mgcp-social-tt{background:#111;}
.mgcp-social-yt{background:#ff0033;}
.mgcp-social-in{background:#0a66c2;font-size:22px;}

@media(max-width:700px){
    .mgcp-footer-logo-img{
        max-width:190px;
        max-height:64px;
    }
}


/* MGCP v4.1.0 - Footer art and logo uploader fixes */
.mgcp-footer-logo:has(.mgcp-footer-logo-text):not(:has(.mgcp-footer-logo-mark)):not(:has(img)){
    gap:0;
}
.mgcp-footer-brand{
    position:relative;
    z-index:2;
}
.mgcp-footer-inner > *{
    position:relative;
    z-index:2;
}
@media(max-width:700px){
    .mgcp-footer-art{
        display:none !important;
    }
}

/* MGCP v4.2.1 - provider image polish */
.mgcp-card-gallery {
    aspect-ratio:16 / 9 !important;
    height:auto !important;
    min-height:0 !important;
    max-height:none !important;
}

.mgcp-card-track {
    height:100% !important;
}

.mgcp-card-slide {
    height:100% !important;
    min-height:0 !important;
    max-height:none !important;
    background-size:cover !important;
    background-position:center center !important;
    background-repeat:no-repeat !important;
    background-color:#eef3fb !important;
}

.mgcp-provider-link {
    display:inline-flex;
    align-items:center;
    gap:8px;
    margin-top:8px;
    color:var(--mgcp-dark);
    text-decoration:none;
    font-weight:900;
}

.mgcp-provider-link span {
    display:inline-flex;
    align-items:center;
    justify-content:center;
    width:26px;
    height:26px;
    border-radius:50%;
    background:#eef6ff;
    color:var(--mgcp-blue);
    font-size:15px;
}

.mgcp-provider-link:hover {
    color:var(--mgcp-blue);
}

.mgcp-upload-crop-item {
    min-width:0;
}

.mgcp-upload-crop-item .mgcp-location-cropper {
    margin-top:10px;
}

.mgcp-provider-crop-stage {
    aspect-ratio:16 / 9;
}

@media(max-width:700px){
    .mgcp-card-gallery {
        aspect-ratio:16 / 9 !important;
        height:auto !important;
        min-height:0 !important;
        max-height:none !important;
    }
}

/* MGCP v4.2.2 - calmer provider cards */
.mgcp-card-gallery {
    aspect-ratio:2.65 / 1 !important;
}

.mgcp-card-slide {
    background-size:contain !important;
    background-position:center center !important;
    background-repeat:no-repeat !important;
}

.mgcp-provider-badge {
    bottom:14px !important;
    left:18px !important;
    padding:9px 14px !important;
    font-size:14px !important;
    box-shadow:0 8px 18px rgba(15,25,65,.16) !important;
}

.mgcp-provider-content {
    padding:20px 22px 22px !important;
}

.mgcp-provider-content h3 {
    font-size:23px !important;
}

.mgcp-provider-content p {
    margin-bottom:16px !important;
}

.mgcp-provider-meta {
    margin-bottom:0 !important;
    gap:8px 14px !important;
}

.mgcp-provider-link {
    display:none !important;
}

@media(max-width:700px){
    .mgcp-card-gallery {
        aspect-ratio:2.2 / 1 !important;
    }

    .mgcp-provider-badge {
        left:14px !important;
        bottom:12px !important;
        font-size:13px !important;
        padding:8px 12px !important;
    }
}

/* MGCP v4.2.3 - provider card image and link refinement */
.mgcp-provider-card {
    overflow:hidden;
}

.mgcp-card-gallery {
    width:calc(100% - 32px) !important;
    aspect-ratio:1.25 / 1 !important;
    margin:16px 16px 0 !important;
    border:1px solid rgba(15,25,65,.08) !important;
    border-radius:16px !important;
    box-shadow:inset 0 0 0 1px rgba(255,255,255,.7) !important;
}

.mgcp-card-slide {
    background-size:cover !important;
    background-position:center center !important;
}

.mgcp-provider-badge {
    left:12px !important;
    bottom:12px !important;
    font-size:13px !important;
    padding:8px 12px !important;
}

.mgcp-gallery-prev,
.mgcp-gallery-next {
    width:30px !important;
    height:30px !important;
    font-size:21px !important;
}

.mgcp-provider-website-meta {
    flex-basis:100%;
}

@media(max-width:700px){
    .mgcp-card-gallery {
        width:calc(100% - 28px) !important;
        aspect-ratio:1.18 / 1 !important;
        margin:14px 14px 0 !important;
    }
}

/* MGCP v4.2.5 - help card image polish */
.mgcp-help-image,
.mgcp-help-placeholder {
    width:calc(100% - 32px) !important;
    aspect-ratio:1.25 / 1 !important;
    height:auto !important;
    min-height:0 !important;
    margin:16px 16px 0 !important;
    border:1px solid rgba(15,25,65,.08) !important;
    border-radius:16px !important;
    overflow:hidden !important;
    box-shadow:inset 0 0 0 1px rgba(255,255,255,.7) !important;
}

.mgcp-help-image {
    background-size:cover !important;
    background-position:center center !important;
    background-repeat:no-repeat !important;
    background-color:#eef3fb !important;
}

.mgcp-help-badge {
    left:12px !important;
    bottom:12px !important;
    font-size:13px !important;
    padding:8px 12px !important;
}

.mgcp-help-content {
    padding:20px 22px 22px !important;
}

.mgcp-help-crop-stage {
    aspect-ratio:1.25 / 1;
}

@media(max-width:700px){
    .mgcp-help-image,
    .mgcp-help-placeholder {
        width:calc(100% - 28px) !important;
        aspect-ratio:1.18 / 1 !important;
        margin:14px 14px 0 !important;
    }
}

/* MGCP v4.2.7 - provider/help image lightbox */
body.mgcp-lightbox-open {
    overflow:hidden;
}

[data-mgcp-lightbox-src] {
    cursor:zoom-in;
}

.mgcp-lightbox {
    position:fixed;
    inset:0;
    z-index:999999;
    display:flex;
    align-items:center;
    justify-content:center;
    padding:24px;
    background:rgba(15,25,65,.78);
    backdrop-filter:blur(4px);
}

.mgcp-lightbox[hidden] {
    display:none;
}

.mgcp-lightbox-panel {
    position:relative;
    max-width:min(1100px, 94vw);
    max-height:92vh;
    display:grid;
    gap:10px;
    justify-items:center;
}

.mgcp-lightbox-image {
    display:block;
    max-width:min(1100px, 94vw);
    max-height:82vh;
    object-fit:contain;
    border-radius:16px;
    background:#eef3fb;
    box-shadow:0 24px 70px rgba(0,0,0,.35);
}

.mgcp-lightbox-title {
    color:#fff;
    font-weight:900;
    text-align:center;
    text-shadow:0 2px 10px rgba(0,0,0,.28);
}

.mgcp-lightbox-close,
.mgcp-lightbox-nav {
    position:absolute;
    border:none;
    border-radius:50%;
    background:rgba(255,255,255,.92);
    color:var(--mgcp-dark);
    box-shadow:0 8px 24px rgba(0,0,0,.22);
    cursor:pointer;
    z-index:2;
}

.mgcp-lightbox-close {
    top:-14px;
    right:-14px;
    width:40px;
    height:40px;
    font-size:28px;
    line-height:1;
}

.mgcp-lightbox-nav {
    top:50%;
    width:44px;
    height:44px;
    transform:translateY(-50%);
    font-size:32px;
    font-weight:900;
}

.mgcp-lightbox-prev {
    left:-58px;
}

.mgcp-lightbox-next {
    right:-58px;
}

@media(max-width:700px){
    .mgcp-lightbox {
        padding:14px;
    }

    .mgcp-lightbox-image {
        max-width:94vw;
        max-height:78vh;
        border-radius:12px;
    }

    .mgcp-lightbox-close {
        top:8px;
        right:8px;
    }

    .mgcp-lightbox-prev {
        left:8px;
    }

    .mgcp-lightbox-next {
        right:8px;
    }

    .mgcp-lightbox-nav {
        width:38px;
        height:38px;
        font-size:28px;
    }
}

/* MGCP v4.3.3 - align home latest and news cards with neighboring promo block */
.mgcp-latest-widget,
.mgcp-news-widget {
    width:100%;
}

.mgcp-latest-list,
.mgcp-news-list {
    display:flex !important;
    flex-direction:column !important;
    gap:18px !important;
    margin:0 !important;
    padding:0 !important;
}

.mgcp-latest-item,
.mgcp-news-item {
    display:grid !important;
    grid-template-columns:132px minmax(0, 1fr) !important;
    align-items:center !important;
    gap:16px !important;
    min-height:112px !important;
    padding:10px !important;
    border-radius:16px !important;
    box-sizing:border-box !important;
}

.mgcp-latest-image,
.mgcp-news-image {
    width:100% !important;
    height:92px !important;
    border-radius:12px !important;
    align-self:center !important;
    background-size:cover !important;
    background-position:center center !important;
}

.mgcp-latest-content,
.mgcp-news-content {
    min-height:92px !important;
    display:flex !important;
    flex-direction:column !important;
    justify-content:center !important;
    gap:4px !important;
    padding:0 !important;
}

.mgcp-news-title-link {
    display:block !important;
}

@media(max-width:700px){
    .mgcp-latest-list,
    .mgcp-news-list {
        gap:14px !important;
    }

    .mgcp-latest-item,
    .mgcp-news-item {
        grid-template-columns:92px minmax(0, 1fr) !important;
        gap:12px !important;
        min-height:104px !important;
        padding:10px !important;
        border-radius:14px !important;
    }

    .mgcp-latest-image,
    .mgcp-news-image {
        height:78px !important;
        border-radius:10px !important;
    }

    .mgcp-latest-content,
    .mgcp-news-content {
        min-height:78px !important;
        gap:2px !important;
    }
}

@media(max-width:420px){
    .mgcp-latest-item,
    .mgcp-news-item {
        grid-template-columns:82px minmax(0, 1fr) !important;
    }

    .mgcp-latest-image,
    .mgcp-news-image {
        height:70px !important;
    }

    .mgcp-latest-content,
    .mgcp-news-content {
        min-height:70px !important;
    }
}

/* MGCP v4.3.9 - Forminator poll 2667 button only */
#forminator-module-2667 .forminator-poll-footer,
#forminator-module-2667 .forminator-pagination-footer {
    display:flex !important;
    align-items:center !important;
    gap:14px !important;
    flex-wrap:wrap !important;
}

#forminator-module-2667 .forminator-button-submit {
    display:inline-flex !important;
    align-items:center !important;
    justify-content:center !important;
    width:min(100%, 380px) !important;
    min-height:38px !important;
    border:0 !important;
    border-radius:8px !important;
    background:#0F1941 !important;
    color:#fff !important;
    padding:8px 24px !important;
    box-shadow:none !important;
    font-size:15px !important;
    line-height:1.2 !important;
    font-weight:900 !important;
    text-align:center !important;
    text-decoration:none !important;
    overflow:hidden !important;
}

#forminator-module-2667 .forminator-button-submit span {
    border-radius:8px !important;
    font-weight:900 !important;
}

#forminator-module-2667 .forminator-button-submit:hover,
#forminator-module-2667 .forminator-button-submit:focus {
    background:#0439A4 !important;
    color:#fff !important;
    box-shadow:none !important;
}

/* MGCP v4.7.0 - native portal polls */
.mgcp-poll-card {
    background:#eef3fb;
    border-radius:22px;
    padding:20px 34px 18px;
    color:#0F1941;
    position:relative;
    overflow:hidden;
}

/* MGCP v4.8.0 - benefits cards */
.mgcp-benefits-section {
    width:100%;
}

.mgcp-benefits-grid {
    display:grid;
    grid-template-columns:repeat(3,minmax(0,1fr));
    gap:22px;
}

.mgcp-benefit-card {
    background:var(--mgcp-gradient);
    border-radius:var(--mgcp-radius);
    overflow:hidden;
    box-shadow:0 10px 30px rgba(15,25,65,.10);
    border:1px solid #fff;
    transition:.25s;
    width:100%;
    min-width:0;
}

.mgcp-benefit-card:hover {
    transform:translateY(-5px);
    box-shadow:0 18px 40px rgba(15,25,65,.12);
}

.mgcp-benefit-gallery {
    border:12px solid #fff;
    border-radius:22px;
    margin:14px 14px 0;
    height:210px;
}

.mgcp-benefit-gallery .mgcp-card-slide {
    display:flex;
    align-items:center;
    justify-content:center;
    box-sizing:border-box;
    height:210px;
    padding:12px;
    background-color:#fff;
    background-image:none !important;
}

.mgcp-benefit-gallery .mgcp-card-slide img {
    display:block;
    width:auto !important;
    height:auto !important;
    max-width:100%;
    max-height:100%;
    object-fit:contain !important;
    object-position:center;
}

.mgcp-benefit-badge {
    position:absolute;
    left:14px;
    bottom:14px;
    z-index:4;
    background:#2F77A8;
    color:#fff;
    border-radius:999px;
    padding:9px 16px;
    font-size:15px;
    line-height:1;
    font-weight:900;
    box-shadow:0 10px 24px rgba(47,119,168,.32);
}

.mgcp-benefit-content {
    padding:22px;
}

.mgcp-benefit-content h3 {
    margin:0 0 16px;
    color:var(--mgcp-dark);
    font-size:24px;
    line-height:1.18;
    font-weight:900;
    text-align:center;
}

.mgcp-benefit-meta {
    display:flex;
    flex-wrap:wrap;
    gap:12px 18px;
    margin-bottom:14px;
    color:#526079;
    font-weight:800;
}

.mgcp-benefit-meta > span,
.mgcp-benefit-discount {
    display:inline-flex;
    align-items:center;
    gap:8px;
    min-width:0;
    overflow-wrap:anywhere;
}

.mgcp-benefit-meta a {
    color:#0439A4;
    text-decoration:none;
}

.mgcp-benefit-meta a:hover {
    text-decoration:underline;
}

.mgcp-benefit-discount {
    align-items:flex-start;
    color:#0F1941;
    font-size:16px;
    line-height:1.55;
    font-weight:600;
}

.mgcp-benefit-discount p {
    margin:0;
}

.mgcp-benefits-empty {
    color:#526079;
    font-weight:700;
}

@media(max-width:1024px) {
    .mgcp-benefits-grid {
        grid-template-columns:repeat(2,minmax(0,1fr));
    }
}

@media(max-width:767px) {
    .mgcp-benefits-grid {
        grid-template-columns:1fr;
        gap:18px;
    }

    .mgcp-benefit-gallery,
    .mgcp-benefit-gallery .mgcp-card-slide {
        height:190px;
    }

    .mgcp-benefit-content {
        padding:20px;
    }

    .mgcp-benefit-content h3 {
        font-size:22px;
    }
}

/* MGCP v4.9.0 - petition page */
.mgcp-petition-page {
    --petition-dark:#07162E;
    --petition-blue:#0F1941;
    --petition-green:#3C8D2F;
    --petition-soft:#F3F7F2;
    color:var(--petition-dark);
    font-family:inherit;
}

.mgcp-petition-page svg {
    width:22px;
    height:22px;
    fill:none;
    stroke:currentColor;
    stroke-width:2;
    stroke-linecap:round;
    stroke-linejoin:round;
}

.mgcp-petition-hero {
    min-height:690px;
    padding:28px clamp(22px, 6vw, 80px) 64px;
    color:#fff;
    background-size:cover;
    background-position:center;
}

.mgcp-petition-nav {
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:18px;
    max-width:1180px;
    margin:0 auto 72px;
}

.mgcp-petition-brand {
    display:flex;
    align-items:center;
    gap:12px;
    font-size:34px;
    line-height:1;
    font-weight:900;
}

.mgcp-petition-brand svg {
    width:38px;
    height:38px;
}

.mgcp-petition-share-top,
.mgcp-petition-cta,
.mgcp-petition-form-card button,
.mgcp-petition-share-strip button {
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    border:0;
    border-radius:8px;
    background:linear-gradient(135deg, #46A035 0%, #2E7D25 100%);
    color:#fff;
    text-decoration:none;
    font-weight:900;
    cursor:pointer;
    box-shadow:0 12px 28px rgba(34,103,28,.24);
}

.mgcp-petition-share-top {
    padding:13px 18px;
    font-size:16px;
}

.mgcp-petition-hero-grid {
    display:grid;
    grid-template-columns:minmax(0, 1fr) 360px;
    gap:54px;
    align-items:start;
    max-width:1180px;
    margin:0 auto;
}

.mgcp-petition-copy {
    max-width:720px;
}

.mgcp-petition-kicker {
    display:inline-flex;
    padding:9px 16px;
    margin-bottom:24px;
    border-radius:8px;
    background:var(--petition-green);
    color:#fff;
    font-size:14px;
    font-weight:900;
    text-transform:uppercase;
}

.mgcp-petition-copy h1 {
    margin:0 0 22px;
    color:#fff;
    font-size:clamp(42px, 5.2vw, 66px);
    line-height:1.08;
    letter-spacing:0;
    font-weight:900;
}

.mgcp-petition-copy p {
    margin:0 0 30px;
    max-width:620px;
    color:#fff;
    font-size:25px;
    line-height:1.32;
    font-weight:800;
}

.mgcp-petition-cta {
    min-width:360px;
    padding:22px 28px;
    font-size:26px;
    text-transform:uppercase;
}

.mgcp-petition-cta svg {
    width:28px;
    height:28px;
}

.mgcp-petition-note {
    display:flex;
    align-items:center;
    gap:10px;
    margin-top:22px;
    font-size:16px;
    font-weight:800;
}

.mgcp-petition-counter-card,
.mgcp-petition-form-card,
.mgcp-petition-panel,
.mgcp-petition-supporter-grid article,
.mgcp-petition-share-strip {
    border:1px solid rgba(15,25,65,.10);
    border-radius:8px;
    background:#fff;
    box-shadow:0 14px 34px rgba(15,25,65,.12);
}

.mgcp-petition-counter-card {
    padding:30px 30px 22px;
    color:var(--petition-dark);
}

.mgcp-petition-counter-card h2,
.mgcp-petition-form-card h2,
.mgcp-petition-panel h2,
.mgcp-petition-supporters h2 {
    margin:0 0 16px;
    color:var(--petition-blue);
    font-size:28px;
    line-height:1.15;
    font-weight:900;
}

.mgcp-petition-counter-card p,
.mgcp-petition-form-card p,
.mgcp-petition-panel p {
    color:#0F1941;
    font-size:16px;
    line-height:1.6;
}

.mgcp-petition-stat {
    display:grid;
    grid-template-columns:50px 1fr auto;
    align-items:center;
    gap:14px;
    padding:16px 0;
    border-bottom:1px solid rgba(15,25,65,.13);
}

.mgcp-petition-stat span {
    display:flex;
    align-items:center;
    justify-content:center;
    width:50px;
    height:50px;
    border-radius:50%;
    background:#E7F2E4;
    color:#2E7D25;
}

.mgcp-petition-stat:nth-of-type(3) span,
.mgcp-petition-stat:nth-of-type(4) span {
    background:#E6F2FA;
    color:#2F77A8;
}

.mgcp-petition-stat strong {
    color:var(--petition-blue);
    font-size:15px;
    font-weight:900;
}

.mgcp-petition-stat em {
    color:#2E7D25;
    font-size:28px;
    font-style:normal;
    font-weight:900;
}

.mgcp-petition-counter-card > a {
    display:inline-flex;
    margin-top:18px;
    color:var(--petition-blue);
    text-decoration:none;
    font-weight:900;
}

.mgcp-petition-body {
    display:grid;
    grid-template-columns:minmax(0, 1fr) 430px;
    gap:38px;
    align-items:start;
    max-width:1180px;
    margin:-40px auto 0;
    padding:0 clamp(18px, 4vw, 34px) 58px;
}

.mgcp-petition-main {
    display:grid;
    gap:28px;
}

.mgcp-petition-panel {
    padding:34px;
    box-shadow:none;
}

.mgcp-petition-demands {
    margin-top:30px;
    padding:26px;
    border-radius:8px;
    background:linear-gradient(135deg,#EEF6EA 0%,#FFFFFF 100%);
}

.mgcp-petition-demands h3 {
    margin:0 0 14px;
    color:#2E7D25;
    font-size:24px;
    font-weight:900;
}

.mgcp-petition-demands ol {
    display:grid;
    gap:13px;
    margin:0;
    padding:0;
    list-style:none;
    counter-reset:petition-demands;
}

.mgcp-petition-demands li {
    position:relative;
    padding-left:44px;
    color:#0F1941;
    font-size:15px;
    line-height:1.5;
    counter-increment:petition-demands;
}

.mgcp-petition-demands li:before {
    content:counter(petition-demands);
    position:absolute;
    left:0;
    top:0;
    display:grid;
    place-items:center;
    width:25px;
    height:25px;
    border-radius:50%;
    background:#3C8D2F;
    color:#fff;
    font-size:13px;
    font-weight:900;
}

.mgcp-petition-values {
    display:grid;
    grid-template-columns:repeat(4,minmax(0,1fr));
    gap:0;
    padding:22px 0;
    text-align:center;
}

.mgcp-petition-values div {
    padding:0 18px;
    border-right:1px solid rgba(15,25,65,.12);
}

.mgcp-petition-values div:last-child {
    border-right:0;
}

.mgcp-petition-values svg {
    width:44px;
    height:44px;
    margin-bottom:12px;
    color:#0F1941;
}

.mgcp-petition-values strong {
    display:block;
    margin-bottom:8px;
    color:#0F1941;
    font-weight:900;
}

.mgcp-petition-values span {
    color:#33405A;
    font-size:14px;
    line-height:1.45;
}

.mgcp-petition-quote {
    margin:0;
    padding:28px 34px;
    border-radius:8px;
    background:#EEF3FA;
    color:#0F1941;
    font-size:24px;
    line-height:1.35;
    font-weight:900;
}

.mgcp-petition-supporter-grid {
    display:grid;
    grid-template-columns:repeat(3,minmax(0,1fr));
    gap:18px;
}

.mgcp-petition-supporter-grid article {
    padding:22px;
    box-shadow:none;
}

.mgcp-petition-supporter-grid p {
    margin:0 0 22px;
    color:#0F1941;
    line-height:1.55;
}

.mgcp-petition-supporter-grid span {
    color:#526079;
    font-size:14px;
    font-weight:700;
}

.mgcp-petition-form-card {
    position:sticky;
    top:24px;
    padding:30px;
}

.mgcp-petition-form-card form {
    display:grid;
    gap:12px;
    margin-top:20px;
}

.mgcp-petition-form-card label {
    display:grid;
    gap:6px;
    color:#0F1941;
    font-size:14px;
    font-weight:800;
}

.mgcp-petition-form-card input,
.mgcp-petition-form-card select,
.mgcp-petition-form-card textarea {
    width:100%;
    border:1px solid #CBD5E1;
    border-radius:8px;
    padding:12px 14px;
    color:#0F1941;
    font-size:15px;
    box-sizing:border-box;
}

.mgcp-petition-consent {
    display:flex !important;
    grid-template-columns:none !important;
    align-items:flex-start;
    gap:10px !important;
    margin-top:6px;
    font-weight:500 !important;
    line-height:1.45;
}

.mgcp-petition-consent input {
    width:18px;
    min-width:18px;
    height:18px;
    margin-top:3px;
}

.mgcp-petition-form-card button {
    width:100%;
    min-height:56px;
    margin-top:8px;
    font-size:20px;
    text-transform:uppercase;
}

.mgcp-petition-message {
    padding:12px 14px;
    border-radius:8px;
    background:#FFF3CD;
    color:#6A4A00;
    font-weight:800;
}

.mgcp-petition-message.is-success {
    background:#E7F4E4;
    color:#22671C;
}

.mgcp-petition-safe {
    margin:14px 0 0 !important;
    color:#6B7280 !important;
    font-size:13px !important;
}

.mgcp-petition-share-strip {
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:18px;
    max-width:1180px;
    margin:0 auto 58px;
    padding:22px 28px;
    background:#EEF3FA;
    box-shadow:none;
}

.mgcp-petition-share-strip span {
    color:#0F1941;
    font-size:20px;
    font-weight:900;
}

.mgcp-petition-share-strip button {
    min-width:230px;
    padding:14px 20px;
    background:#fff;
    color:#0F1941;
    border:1px solid #0F1941;
    box-shadow:none;
}

@media(max-width:1024px) {
    .mgcp-petition-hero-grid,
    .mgcp-petition-body {
        grid-template-columns:1fr;
    }

    .mgcp-petition-counter-card,
    .mgcp-petition-form-card {
        position:relative;
        top:auto;
        max-width:none;
    }

    .mgcp-petition-body {
        margin-top:-26px;
    }
}

@media(max-width:767px) {
    .mgcp-petition-hero {
        min-height:auto;
        padding:20px 18px 48px;
    }

    .mgcp-petition-nav {
        margin-bottom:42px;
    }

    .mgcp-petition-brand {
        font-size:25px;
    }

    .mgcp-petition-share-top span {
        display:none;
    }

    .mgcp-petition-share-top {
        width:44px;
        height:44px;
        padding:0;
    }

    .mgcp-petition-copy h1 {
        font-size:34px;
    }

    .mgcp-petition-copy p {
        font-size:19px;
    }

    .mgcp-petition-cta {
        width:100%;
        min-width:0;
        padding:17px 20px;
        font-size:20px;
    }

    .mgcp-petition-body {
        padding:0 14px 40px;
    }

    .mgcp-petition-counter-card,
    .mgcp-petition-form-card,
    .mgcp-petition-panel {
        padding:22px;
    }

    .mgcp-petition-values,
    .mgcp-petition-supporter-grid {
        grid-template-columns:1fr;
        gap:16px;
    }

    .mgcp-petition-values div {
        border-right:0;
        border-bottom:1px solid rgba(15,25,65,.12);
        padding:0 0 16px;
    }

    .mgcp-petition-share-strip {
        flex-direction:column;
        align-items:stretch;
        margin:0 14px 40px;
    }

    .mgcp-petition-share-strip button {
        width:100%;
    }
}

.mgcp-poll-message {
    background:#fff;
    border:1px solid rgba(15,25,65,.08);
    border-radius:12px;
    padding:10px 12px;
    margin-bottom:16px;
    color:#0F1941;
    font-weight:700;
}

.mgcp-poll-options {
    display:grid;
    gap:10px;
    margin-bottom:16px;
}

.mgcp-poll-option {
    display:grid;
    grid-template-columns:22px 1fr;
    gap:10px;
    align-items:center;
    color:#0F1941;
    cursor:pointer;
    font-size:17px !important;
    line-height:1.3 !important;
}

.mgcp-poll-option input {
    position:absolute;
    opacity:0;
    pointer-events:none;
}

.mgcp-poll-option span {
    width:18px;
    height:18px;
    border-radius:50%;
    background:#fff;
    border:2px solid #e6eaf2;
    box-shadow:inset 0 0 0 5px #fff;
}

.mgcp-poll-option input:checked + span {
    background:#0F1941;
    border-color:#0F1941;
}

.mgcp-poll-option em {
    font-style:normal;
    font-size:17px !important;
    line-height:1.3 !important;
    font-weight:400 !important;
}

.mgcp-poll-actions {
    display:grid;
    grid-template-columns:1fr;
    gap:8px;
    margin-left:-34px;
    margin-right:-34px;
}

.mgcp-poll-results-link {
    color:#0439A4;
    text-decoration:none;
    text-align:center;
    font-size:14px;
    font-weight:500;
    padding-left:34px;
    padding-right:34px;
}

.mgcp-poll-results-link:hover,
.mgcp-poll-results-link:focus {
    color:#0F1941;
    text-decoration:underline;
}

.mgcp-poll-actions button {
    width:100%;
    min-height:40px;
    border:0;
    border-radius:8px;
    background:#0F1941;
    color:#fff;
    padding:0 24px;
    font-size:15px;
    font-weight:400;
    cursor:pointer;
    transition:.25s;
}

.mgcp-poll-actions button:hover,
.mgcp-poll-actions button:focus {
    background:#0439A4;
}

.mgcp-poll-results {
    display:grid;
    gap:10px;
}

.mgcp-poll-result-head {
    display:flex;
    justify-content:space-between;
    gap:12px;
    margin-bottom:7px;
    color:#0F1941;
    font-size:17px !important;
    line-height:1.3 !important;
    font-weight:800;
}

.mgcp-poll-result-head span,
.mgcp-poll-result-head strong {
    font-size:17px !important;
    line-height:1.3 !important;
}

.mgcp-poll-bar {
    height:12px;
    border-radius:999px;
    background:#fff;
    overflow:hidden;
}

.mgcp-poll-bar span {
    display:block;
    height:100%;
    border-radius:999px;
    background:#0F1941;
}

.mgcp-poll-total {
    margin:4px 0 0;
    color:#536078;
    font-weight:700;
}

@media(max-width:767px) {
    .mgcp-poll-card {
        padding:18px 20px 16px;
        border-radius:18px;
    }

    .mgcp-poll-actions {
        margin-left:-20px;
        margin-right:-20px;
    }

    .mgcp-poll-results-link {
        padding-left:20px;
        padding-right:20px;
    }

    .mgcp-poll-option {
        font-size:17px !important;
    }

    .mgcp-poll-option em {
        font-size:17px !important;
    }

    .mgcp-poll-result-head {
        font-size:17px !important;
    }

    .mgcp-poll-result-head span,
    .mgcp-poll-result-head strong {
        font-size:17px !important;
    }
}
