/*
Theme Name: cabrio
Author: Slava Brain
Description: Description
Version: 1.0.0
Text Domain: cabrio
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready
*/

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --white: #FBF9F8;
    --white-secondary: #F8F9FA;
    --orange: #F8602F;
    --gray: #787775;
    --gray-light: #E6E6E6;
    --red: #DD0F0F;
    --yellow: #FFBD09;
    --black: #1E1D1C;
    --black-secondary: #252525;
    --box-shadow-orange: 0px 0px 10px 0px #F75E2F80;
    --box-shadow-white: 0px 0px 10px 0px #F8F3F040;
    --box-shadow-black: 0px 0px 10px 0px #00000040;
    --transition: all .3s ease;
}

html {
    height: 100%;
    scroll-behavior: auto !important;
}

body {
    font-family: "HelveticaNeue", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 100%;
    letter-spacing: 0px;
    color: var(--black);
    overflow-x: hidden;
}

body.lock {
    overflow: hidden;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--gray-dark);
    transition: var(--transition);
    opacity: 0;
    visibility: hidden;
    z-index: 9;
}

body.overlay::before {
    transition-delay: 0.15s;
    opacity: 0.3;
    visibility: visible;
}

.container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 40px;
}

.full-width {
    margin-inline: calc((100% - 100vw) / 2) !important;
    padding-inline: max(54px, calc((100vw - 100%) / 2)) !important;
}

input,
textarea,
button {
    font-family: "HelveticaNeue", sans-serif;
}

button {
    border: none;
    cursor: pointer;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

@media (max-width: 1024px) {
    .container {
        padding: 0 32px;
    }
}

@media (max-width: 767px) {

    .container,
    .full-width {
        padding: 0 20px !important;
    }
}

/*---------- TYPOGRAPHY ----------*/

h1,
.h1,
.h1 h1,
.h1 .elementor-heading-title {
    font-family: "Unbounded", sans-serif;
    font-size: 48px;
    font-weight: 400;
    line-height: 130%;
    letter-spacing: 0px;
    text-transform: uppercase;
}

h2,
.h2,
.h2 h2,
.h2 .elementor-heading-title {
    font-family: "Unbounded", sans-serif;
    font-size: 36px;
    font-weight: 400;
    line-height: 130%;
    letter-spacing: 0px;
    text-transform: uppercase;
}

h3,
.h3,
.h3 h3,
.h3 .elementor-heading-title {
    font-family: "HelveticaNeue", sans-serif;
    font-size: 24px;
    font-weight: 400;
    line-height: 130%;
    letter-spacing: 0px;
    text-transform: none;
}

.text-1,
.btn.text-1 {
    font-family: "HelveticaNeue", sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 130%;
    letter-spacing: 0px;
}

.text-2,
.btn.text-2 {
    font-family: "HelveticaNeue", sans-serif;
    font-size: 18px;
    font-weight: 500;
    line-height: 130%;
    letter-spacing: 0px;
}

.text-3,
.btn.text-3 {
    font-family: "HelveticaNeue", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 130%;
    letter-spacing: 0px;
}

.text-4,
.btn.text-4 {
    font-family: "HelveticaNeue", sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 130%;
    letter-spacing: 0px;
}

.text-5,
.btn.text-5 {
    font-family: "HelveticaNeue", sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 130%;
    letter-spacing: 0px;
    text-decoration: none;
}

@media (max-width: 1024px) {
    h1,
    .h1,
    .h1 h1,
    .h1 .elementor-heading-title {
        font-size: 42px;
    }
}

@media (max-width: 767px) {
    h1,
    .h1,
    .h1 h1,
    .h1 .elementor-heading-title {
        font-size: 20px;
    }

    h2,
    .h2,
    .h2 h2,
    .h2 .elementor-heading-title {
        font-size: 20px;
    }

    h3,
    .h3,
    .h3 h3,
    .h3 .elementor-heading-title {
        font-size: 18px;
    }

    .text-3 {
        font-size: 14px;
    }
}

/*---------- TYPOGRAPHY END ----------*/

/*---------- COLORS ----------*/

.white {
    color: var(--white);
}

.black-bg {
    background-color: var(--black);
}

.gray {
    color: var(--gray);
}

.black-secondary {
    color: var(--black-secondary);
}

/*---------- COLORS END ----------*/

/*---------- ANIMATIONS ----------*/

/* Vertical banner line */

.features-wrapper {
    display: flex;
    align-items: flex-start;
    position: relative;
}

.features-line {
    width: 2px;
    background: var(--black-secondary);
    height: 100%;
    position: relative;
}

.features-progress {
    position: absolute;
    top: 0;
    left: 2px;
    width: 100%;
    height: 0;
    background: linear-gradient(270deg, #F8602F 0%, #EB452C 100%);
    opacity: 0;
    transition: top 0.4s, height 0.4s, opacity 0.4s ease-in-out;
}

.features-progress.visible {
    opacity: 1;
}


.features-list {
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0px;
    list-style: none;
    border-left: 2px solid var(--black-secondary);
}

.features-list .feature-item {
    margin-left: 24px;
    margin-top: 0px;
    padding: 0px;
    color: var(--gray);
}

.features-list .feature-item.active {
    color: var(--white); 
    transition: var(--transition)
}


.features-list .feature-item + li {
    padding-top: 16px;
}

.features-list .feature-item:not(:last-child) {
    padding-bottom: 16px;
    border-bottom: 1px solid var(--black-secondary);
}

/* Horizontal animation line */

.scrolling-animated-line {
  position: relative;
  height: 2px;
  background-color: #787774C4;
  width: 100%;
  overflow: hidden;
}

.scrolling-line-fill {
  background-color: #F8602F;
  height: 100%;
  width: 100%;
  transform-origin: left;
  transform: scaleX(0);
  opacity: 0;
}

/* Loader */

#loader-icon {
    display: none;
    text-align: center;
    margin-top: 20px;
}

#loader-icon svg {
    animation: rotate-spinner 1s linear infinite;
}

@keyframes rotate-spinner {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Overlay */

#global-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.4);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.overlay-spinner {
    width: 50px;
    height: 50px;
    border: 5px solid #fff;
    border-top-color: transparent;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

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


/*---------- ANIMATIONS END ----------*/


/*---------- BUTTONS ----------*/

.btn,
.button.elementor-widget-button .elementor-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 306px;
    min-height: 60px;
    padding: 12px 32px;
    font-size: 18px;
    font-weight: 400;
    line-height: 100%;
    text-decoration: none;
    color: var(--white);
    border-radius: 12px !important;
    transition: var(--transition);
}

.button.elementor-widget-button .elementor-button {
    width: 100%;
    min-width: auto !important;
    max-width: 306px;
}

.btn:disabled,
.btn.disabled,
.btn.btn-green:disabled,
.btn.btn-green.disabled,
.btn.btn-with-icon:disabled,
.btn.btn-with-icon.disabled,
.button.elementor-widget-button .elementor-button:disabled,
.button.disabled.elementor-widget-button .elementor-button,
.button.button-with-icon.elementor-widget-button .elementor-button:disabled,
.button.button-with-icon.disabled.elementor-widget-button .elementor-button {
    background: var(--gray) !important;
    cursor: default;
    pointer-events: none;
}

.btn.btn-with-icon:disabled .icon,
.btn.btn-with-icon.disabled .icon,
.button.button-with-icon.elementor-widget-button .elementor-button:disabled .elementor-button-icon,
.button.button-with-icon.disabled.elementor-widget-button .elementor-button .elementor-button-icon {
    fill: #495C62;
    color: #495C62;
}

/* Buttons - Types - Orange */

.btn.btn-orange,
.button.button-orange.elementor-widget-button .elementor-button {
    background: linear-gradient(270deg, #F8602F 0%, #EB452C 100%);
}

.btn.btn-orange:hover,
.button.button-orange.elementor-widget-button .elementor-button:hover {
    box-shadow: var(--box-shadow-orange);
}

/* Buttons - Types - white */

.btn.btn-white,
.button.button-white.elementor-widget-button .elementor-button {
    background: var(--white);
    color: var(--black-secondary);
}

.btn.btn-white:hover,
.button.button-white.elementor-widget-button .elementor-button:hover {
    box-shadow: var(--box-shadow-white);
}

/* Buttons - Types - black */

.btn.btn-black,
.button.button-black.elementor-widget-button .elementor-button {
    background: var(--black);
    color: var(--white);
}

.btn.btn-black:hover,
.button.button-black.elementor-widget-button .elementor-button:hover {
    box-shadow: var(--box-shadow-black);
}

/* Buttons - Types - Simple */
.btn.simple,
.button.simple.elementor-widget-button .elementor-button {
    position: relative;
    min-width: auto;
    min-height: auto;
    padding: 0 0 3px 0;
    text-decoration: none;
    color: var(--blue-dark);
    border: none;
    background-color: transparent !important;
}

.btn.simple::after,
.button.simple.elementor-widget-button .elementor-button::after {
    content: "";
    display: block;
    width: 0%;
    height: 1px;
    position: absolute;
    left: 50%;
    bottom: 0;
    background-color: var(--blue-dark);
    transform: translateX(-50%);
    transition: var(--transition);
    opacity: 1;
}

.btn.simple.btn-black::after,
.button.simple.button-black.elementor-widget-button .elementor-button::after {
    background-color: var(--black);
}

.btn.simple.btn-black:hover, 
.button.simple.button-black.elementor-widget-button .elementor-button:hover {
    box-shadow: none;
}

.btn.simple.reverse::after,
.button.simple.reverse.elementor-widget-button .elementor-button::after {
    width: 100%;
}

.btn.simple:hover,
.button.simple.elementor-widget-button .elementor-button:hover {
    color: var(--blue-hover);
}

.btn.simple:hover::after,
.button.simple.elementor-widget-button .elementor-button:hover::after {
    width: 100%;
    background-color: var(--blue-hover);
}

.btn.simple.reverse:hover::after,
.button.simple.reverse.elementor-widget-button .elementor-button:hover::after {
    width: 0%;
}

.btn.simple:disabled,
.btn.simple.disabled,
.button.simple.elementor-widget-button .elementor-button:disabled,
.button.simple.disabled.elementor-widget-button .elementor-button {
    color: var(--gray);
}

/* Buttons - Types - With icon */
.btn.btn-with-icon,
.button.button-with-icon.elementor-widget-button .elementor-button {
    min-width: 240px;
    min-height: 60px;
}

.button.button-with-icon.elementor-widget-button .elementor-button {
    min-width: auto !important;
}

.btn.btn-with-icon,
.button.button-with-icon.elementor-widget-button .elementor-button-content-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}

.button.button-with-icon.elementor-widget-button .elementor-button-content-wrapper {
    width: 100%;
}

.btn.btn-with-icon .title,
.button.button-with-icon.elementor-widget-button .elementor-button-text {
    display: inline-flex;
    transition: var(--transition);
}

.btn.btn-with-icon .icon,
.button.button-with-icon.elementor-widget-button .elementor-button-icon {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    margin: 0 !important;
    font-size: 16px;
    border-radius: 50%;
    transition: var(--transition);
}

.btn.btn-with-icon .icon svg,
.button.button-with-icon.elementor-widget-button .elementor-button-icon svg {
    width: 24px;
    height: 24px;
}

.btn.btn-with-icon:hover .title,
.button.button-with-icon.elementor-widget-button .elementor-button:hover .elementor-button-text {
    color: var(--green);
}

.btn.btn-with-icon:hover .icon,
.button.button-with-icon.elementor-widget-button .elementor-button:hover .elementor-button-icon {
    color: var(--white);
    background-color: var(--green);
}

/* Buttons - Size - Fit content */

.btn.btn-fit-content,
.button.button-fit-content.elementor-widget-button .elementor-button {
    padding: 20px;
    min-width: fit-content;
    width: fit-content;
}

.button.button-fit-content.elementor-widget-button .elementor-button {
    max-width: fit-content;
}

/* Buttons - Size - Small */

.btn.btn-small,
.button.button-small.elementor-widget-button .elementor-button {
    min-width: 180px;
    padding: 12px 22px;
}

.button.button-small.elementor-widget-button .elementor-button {
    max-width: 180px;
}

/* Buttons - Size - Medium */
.btn.btn-medium,
.button.button-medium.elementor-widget-button .elementor-button {
    min-width: 250px;
}

.button.button-medium.elementor-widget-button .elementor-button {
    max-width: 250px;
}

/* Buttons - Size - Wide */
.btn.btn-wide,
.button.button-wide.elementor-widget-button .elementor-button {
    min-width: 268px;
}

.button.button-wide.elementor-widget-button .elementor-button {
    max-width: 268px;
}

/* Buttons - Size - full */
.btn.btn-full,
.button.button-full.elementor-widget-button .elementor-button {
    width: 100%;
}

.button.button-full.elementor-widget-button .elementor-button {
    max-width: 100%;
}

/* Buttons - Colors */

/* White */

.btn.simple.white,
.button.simple.white.elementor-widget-button .elementor-button {
    color: var(--white);
}

.btn.simple.white::after,
.button.simple.white.elementor-widget-button .elementor-button::after {
    background-color: var(--white);
}

.btn.simple.white:hover,
.button.simple.white.elementor-widget-button .elementor-button:hover {
    color: var(--white);
}

.btn.simple.white:hover::after,
.button.simple.white.elementor-widget-button .elementor-button:hover::after {
    background-color: var(--white);
}

/* Black */

.btn.simple.black,
.button.simple.black.elementor-widget-button .elementor-button {
    color: var(--black);
}

.btn.simple.black::after,
.button.simple.black.elementor-widget-button .elementor-button::after {
    background-color: var(--black);
}

.btn.simple.black:hover,
.button.simple.black.elementor-widget-button .elementor-button:hover {
    color: var(--black);
}

.btn.simple.black:hover::after,
.button.simple.black.elementor-widget-button .elementor-button:hover::after {
    background-color: var(--black);
}

.btn.simple.reverse:hover::after,
.button.simple.reverse.elementor-widget-button .elementor-button:hover::after {
    width: 0%;
}

@media (max-width: 1359.75px) {}

@media (max-width: 1024px) {}

@media (max-width: 499.75px) {
    .btn,
    .button.elementor-widget-button .elementor-button {
        min-width: 100% !important;
    }

    .btn,
    .button.elementor-widget-button {
        width: 100%;
    }

    .btn.btn-with-icon,
    .button.button-with-icon.elementor-widget-button {
        width: 100%;
    }

    .button.button-with-icon.elementor-widget-button .elementor-button {
        max-width: 100%;
    }

    .button.button-with-icon.elementor-widget-button .elementor-button-content-wrapper {
        justify-content: center;
    }

    .btn-full,
    .button-full.elementor-widget-button .elementor-button,
    .btn-fit-content,
    .button-fit-content.elementor-widget-button .elementor-button {
        min-width: fit-content !important;
    }

    .btn.simple,
    .button.simple.elementor-widget-button .elementor-button {
        min-width: auto !important;
    }
}

/*---------- BUTTONS END ----------*/

/*---------- FORM ----------*/

.form {}

.elementor-element:has(.order-form) {
    overflow: visible !important;
}

.form-fields {
    display: flex;
    flex-wrap: wrap;
}

/* .form-fields.form-fields-with-lines:before,
.form-fields.form-fields-with-lines:after {
    content: "";
    position: absolute;
    bottom: -20%;
    width: 2px;
    height: calc(100vh + 100%);
    background-color: var(--black-secondary);
} */

.form-fields.form-fields-with-lines:before {
    left: 0px;
}

.form-fields.form-fields-with-lines:after {
    right: 0px;
}

.form-field .date-icon {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
}

.form-field svg {
    color: var(--gray);
    transition: var(--transition);
}

.form-field:hover .date-icon {
    color: var(--white);
}

.form-field {
    position: relative;
    width: 100%;
    height: 100%;
    border-top: 1px solid var(--black-secondary);
    border-bottom: 1px solid var(--black-secondary);
}

.form-field + .form-field:not(.w50) {
    border-top: 0px;
}

.form-buttons .form-field {
    border: 0px;
}

.form-field.w50 {
    width: calc(50% - 12px);
}

.form-field>label {
    position: absolute;
    top: 50%;
    left: 24px;
    color: var(--gray);
    transition: var(--transition);
    transition-duration: 0.4s;
    transform: translateY(-50%);
    white-space: nowrap;
    pointer-events: none;
    z-index: 1;
}

.form-field--textarea>label {
    top: 22px;
}

.form-field .wpcf7-form-control-wrap {
    display: flex;
}

.form-field input,
.form-field textarea,
.form-field.form-field-dropdown {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    outline: none;
    width: 100%;
    min-height: 60px;
    padding: 0 24px;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 0px;
    border: none;
    border-radius: 4px;
    background: transparent;
    transition: var(--transition);
    cursor: pointer;
}

.form-field input::-webkit-input-placeholder {
    transition: var(--transition);
}

.form-field input:-moz-placeholder {
    transition: var(--transition);
}

.form-field textarea {
    height: 110px;
    resize: none;
}

.form-field input:-webkit-autofill {
    -webkit-box-shadow: inset 0 0 0 50px var(--white) !important;
    -webkit-text-fill-color: var(--blue-dark) !important;
    color: var(--blue-dark) !important;
}

.form-field input.wpcf7-not-valid,
.form-field textarea.wpcf7-not-valid {
    color: var(--red) !important;
    background-color: var(--red-20);
}

.form-field input.wpcf7-not-valid::-webkit-input-placeholder {
    color: var(--red) !important;
}

.form-field input.wpcf7-not-valid:-moz-placeholder {
    color: var(--red) !important;
}

.form-field>label:has(+ span input.wpcf7-not-valid),
.form-field>label:has(+ span textarea.wpcf7-not-valid) {
    color: var(--red) !important;
}

.form-field--privacy {
    margin-top: 12px;
    max-width: 290px;
    width: 100%;
}

.form-field--privacy .wpcf7-list-item {
    margin: 0;
}

.form-field--privacy .wpcf7-list-item>label {
    position: relative;
    display: flex;
    font-size: 14px;
    cursor: pointer;
}

.form-field--privacy .wpcf7-list-item>label::before {
    content: '';
    display: inline-flex;
    flex-grow: 0;
    flex-shrink: 0;
    width: 16px;
    height: 16px;
    margin-right: 0.75em;
    background-color: transparent;
    border: 1px solid var(--gray);
    border-radius: 2px;
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
    transition: var(--transition);
}

.form-checkbox-list .wpcf7-list-item input:checked + .wpcf7-list-item-label {
    color: var(--white-secondary);
}

.form-field--privacy .wpcf7-list-item-label {
    align-self: flex-end;
    transition: var(--transition);
}

.form-field--privacy .wpcf7-list-item a {
    color: var(--gray);
    text-decoration: underline;
    transition: none;
}

.form-field--privacy .wpcf7-list-item a:hover {
    color: var(--white);
    transition: var(--transition);
}

.form-field--privacy input {
    display: none;
}

.form-field .wpcf7-not-valid-tip {
    display: none;
}

.form-buttons {
    display: flex;
    flex-direction: column;
}

.form-buttons.w50 {
    width: calc(50% - 12px);
}

.form-fields+.form-buttons {
    margin-top: 56px;
    padding: 0px 16px;
}

.form-button {
    position: relative;
    display: flex;
    width: 100%;
    color: var(--white);
    border: none;
    z-index: 1;
}

.form-button input[type="submit"] {
    appearance: none;
    border: none;
    cursor: pointer;
}

.form-buttons.w50 .form-button input[type="submit"],
.form-button--wide input[type="submit"] {
    width: 100%;
    min-width: 100%;
}

.form-button--search {
    display: none;
}

.form-buttons-list {
    width: 100%;
    display: flex;
    gap: 8px;
}

.form-social-icon img{
    width: 20px;
    height: 20px;
}

.wpcf7-form.submitting .form-buttons .wpcf7-spinner {
    display: block;
    visibility: visible;
}

.form-buttons .wpcf7-spinner {
    position: absolute;
    top: calc(50% - 12px);
    left: calc(50% - 12px);
    visibility: visible;
    align-self: center;
    margin-left: 5px;
}

.wpcf7-form.submitting .form-buttons .wpcf7-submit {
    opacity: 0.5;
}

.form-buttons .wpcf7-spinner, .form .wpcf7-response-output {
    display: none;
}

/* Form - Hover and focus effects */
.form-field label:hover,
.form-field>label:has(+ input:hover),
.form-field>label:has(+ input:focus),
.form-field>label:has(+ span input:hover),
.form-field>label:has(+ span input:focus),
.form-field input:hover,
.form-field input:focus,
.form-field>label:has(+ textarea:hover),
.form-field>label:has(+ textarea:focus),
.form-field>label:has(+ span textarea:hover),
.form-field>label:has(+ span textarea:focus),
.form-field textarea:hover,
.form-field textarea:focus,
.form-field.filled label,
.form-field.filled input,
.form-field.filled textarea {
    color: var(--white);
}

.form-field>input:hover,
.form-field>input:focus,
.form-field>textarea:hover,
.form-field>textarea:focus,
.form-field--select label:hover,
.form-field.filled label + input,
.form-field.filled label + textarea {
    border-color: var(--white);
}

.form-field input:hover::-webkit-input-placeholder {
    color: var(--blue-dark);
}

.form-field input:hover:-moz-placeholder {
    color: var(--blue-dark);
}

.form-field.filled>label {
    left: 40%;
    opacity: 0;
}

/* Form dropdown field */

.form-field.form-field-dropdown {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    border-bottom: 1px solid var(--black-secondary);
}

.choose-options-dropdown-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.choose-options-title {
    color: var(--gray);
    transition: var(--transition);
}

.options-count {
    margin-left: 4px;
    background: var(--white);
    padding: 8px;
    border-radius: 4px;
}

.choose-dropdown-arrow {
    transition: var(--transition);
}

.form-field.form-field-dropdown:hover .choose-options-title,
.form-field.form-field-dropdown:hover .choose-dropdown-arrow {
    color: var(--white);
}

.form-checkbox-list {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: var(--black-secondary);
  border: 1px solid var(--gray);
  padding: 24px;
  border-radius: 8px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
  z-index: 10;
  max-height: 0;
  opacity: 0;
  visibility: hidden;
  overflow: hidden;
  transform: translateY(-8px);
  transition: all 0.3s ease;
}

.choose-options-dropdown {
    width: 100%;
}

.choose-options-dropdown.open .form-checkbox-list {
  max-height: 700px;
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.form-checkbox-list .wpcf7-list-item {
    color: var(--gray);
    transition: var(--transition);
}

.form-checkbox-list .wpcf7-list-item:hover {
    color: var(--white);
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.choose-options-dropdown.open .choose-dropdown-arrow {
  transform: rotate(180deg);
}

/* Checkbox */

.form-checkbox-list .wpcf7-checkbox {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

.form-checkbox-list .wpcf7-list-item {
    margin: 0px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.wpcf7-form .form-checkbox-list .wpcf7-checkbox input[type="checkbox"] {
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
    min-width: 16px;
    width: 16px;
    height: 16px;
    min-height: 16px;
    padding: 0px;
    border: 1px solid var(--gray);
    border-radius: 4px;
    cursor: pointer;
}

.wpcf7-form .form-checkbox-list .wpcf7-checkbox input[type="checkbox"]:checked,
.form-field--privacy .wpcf7-list-item>label:has(input[type=checkbox]:checked)::before {
    background: url(/wp-content/uploads/2025/06/mark-icon.svg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 8px;
}

/* Calendar */

.flatpickr-day {
    border-radius: 12px;
}

.flatpickr-day.today {
    border-color: var(--orange);
}

.flatpickr-day.today:focus, 
.flatpickr-day.today:hover,
.flatpickr-day.inRange, 
.flatpickr-day.nextMonthDay.inRange, 
.flatpickr-day.nextMonthDay.today.inRange, 
.flatpickr-day.nextMonthDay:focus, 
.flatpickr-day.nextMonthDay:hover, 
.flatpickr-day.prevMonthDay.inRange, 
.flatpickr-day.prevMonthDay.today.inRange, 
.flatpickr-day.prevMonthDay:focus, 
.flatpickr-day.prevMonthDay:hover, 
.flatpickr-day.today.inRange, 
.flatpickr-day:focus, 
.flatpickr-day:hover,
.flatpickr-day.endRange,
.flatpickr-day.endRange.inRange, 
.flatpickr-day.endRange.nextMonthDay, 
.flatpickr-day.endRange.prevMonthDay, 
.flatpickr-day.endRange:focus, 
.flatpickr-day.endRange:hover, 
.flatpickr-day.selected, 
.flatpickr-day.selected.inRange, 
.flatpickr-day.selected.nextMonthDay, 
.flatpickr-day.selected.prevMonthDay, 
.flatpickr-day.selected:focus, 
.flatpickr-day.selected:hover, 
.flatpickr-day.startRange, 
.flatpickr-day.startRange.inRange, 
.flatpickr-day.startRange.nextMonthDay, 
.flatpickr-day.startRange.prevMonthDay, 
.flatpickr-day.startRange:focus, 
.flatpickr-day.startRange:hover {
    color: var(--white);
    background-color: var(--orange);
    border-color: var(--orange);
}

/* White form */

.white-form .form-fields {
    display: flex;
    gap: 24px;
}

.white-form .form-field {
    border-top: 0px;
    border-bottom: 0px;
}

.white-form .form-field-label {
    margin: 0px 0px 8px;
}

.white-form .form-field input, 
.white-form .form-field textarea ,
.custom-select-selected {
    min-height: 48px;
    padding: 0px 16px;
    border: 1px solid var(--gray-light);
    border-radius: 8px;
}

.white-form .form-field textarea {
    padding-top: 16px;
}

.white-form .form-field.form-field-dropdown {
    padding: 0px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.white-form .form-field label:hover,
.white-form .form-field>label:has(+ input:hover),
.white-form .form-field>label:has(+ input:focus),
.white-form .form-field>label:has(+ span input:hover),
.white-form .form-field>label:has(+ span input:focus),
.white-form .form-field input:hover,
.white-form .form-field input:focus,
.white-form .form-field>label:has(+ textarea:hover),
.white-form .form-field>label:has(+ textarea:focus),
.white-form .form-field>label:has(+ span textarea:hover),
.white-form .form-field>label:has(+ span textarea:focus),
.white-form .form-field textarea:hover,
.white-form .form-field textarea:focus,
.white-form .form-field.filled label,
.white-form .form-field.filled input,
.white-form .form-field.filled textarea {
    color: var(--gray);
}

.white-form .form-fields+.form-buttons {
    margin-top: 48px;
    padding: 0px;
}

.white-form .form-field .wpcf7-form-control-wrap {
    flex-direction: column;
    gap: 8px;
}

.white-form .form-field .wpcf7-not-valid-tip {
    display: block;
    font-size: 16px;
}

/* Bordered form */

.bordered-form .form-fields {
    display: flex;
    gap: 8px;
}

.bordered-form .form-field {
    border-top: 0px;
    border-bottom: 0px;
}

.bordered-form .form-field.w50 {
    width: calc(50% - 4px);
}

.bordered-form .form-field input, 
.bordered-form .form-field textarea ,
.custom-select-selected {
    min-height: 60px;
    padding: 0px 24px;
    border: 1px solid var(--gray);
    border-radius: 12px;
}

.bordered-form .form-fields+.form-buttons {
    margin-top: 16px;
    padding: 0px;
}

.bordered-form .form-field .wpcf7-form-control-wrap {
    flex-direction: column;
    gap: 8px;
}

.bordered-form .form-field .wpcf7-not-valid-tip {
    display: block;
    font-size: 16px;
}

.bordered-form .form-field--privacy {
    max-width: 100%;
}

.form-field--privacy .wpcf7-list-item a:hover {
    color: var(--orange);
}

/* Form - Toast */
.toast-container {
    position: fixed;
    top: 30px;
    left: 50%;
    transform: translate(-50%, 10px);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    padding: 0px 18px;
}

.toast-mess {
    width: 100%;
    padding: 14px 24px;
    color: var(--white);
    border-radius: 50px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    text-align: center;
    pointer-events: none;
}

.toast-text {
    font-size: 16px;
    font-weight: 500;
}

.toast-success {
    visibility: visible;
    background-color: #4BB543;
}
.toast-error {
    visibility: visible;
    background-color: #e74c3c;
}

.wpcf7 form.sent .wpcf7-response-output,
.wpcf7 form.invalid .wpcf7-response-output, 
.wpcf7 form.unaccepted .wpcf7-response-output, 
.wpcf7 form.payment-required .wpcf7-response-output {
    display: none;
}

/* Form - Toast - END */

@media (max-width: 1024px) {
    .form-field.filled>label {
        display: none;
    }

    .form-buttons {
        justify-content: center;
    }
}

@media (max-width: 767px) {
    .form-fields {
        gap: 16px;
    }

    .form-field>label {
        left: 16px;
    }

    .form-field input,
    .form-field textarea,
    .form-field-dropdown {
        min-height: 58px;
        padding: 0px 16px;
        font-size: 14px;
    }

    .form-button input[type="submit"] {
        min-height: 58px;
        padding: 12px 16px;
    }

    .btn,
    .button.elementor-widget-button .elementor-button {
        font-size: 14px;
    }
}

@media (max-width: 599.75px) {
    .bordered-form .form-field.w50 {
        width: 100%;
    }
}

@media (max-width: 499.75px) {
    .form-field.w50,
    .form-buttons.w50,
    .form-button {
        width: 100%;
    }
}

@media (max-width: 374px) {
    .form-social-icon.btn.btn-fit-content {
        padding: 14px;
    }
}

/*---------- FORM END ----------*/

/*---------- SLIDER ----------*/

.swiper-wrapper {
    align-items: stretch;
}

.swiper-slide {
    height: auto;
}

.swiper .swiper-controls {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    z-index: 1;
}

/* Swiper - Pagination - Bullets */
.swiper .swiper-controls[data-type="pagination"] {
    top: calc(100% - 4px);
    transform: none;
}

.swiper .swiper-pagination {
    position: relative;
}

.swiper .swiper-pagination-bullets {
    bottom: initial !important;
    margin: 40px 0px 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.swiper .swiper-pagination-bullets .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    margin: 0 !important;
    background-color: var(--gray-light);
    transition: var(--transition);
    opacity: 1;
    cursor: pointer;
}

.swiper .swiper-pagination-bullets .swiper-pagination-bullet:hover {
    background-color: var(--orange);
}

.swiper .swiper-pagination-bullets .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background-color: var(--orange);
}

/* Swiper - Navigation - Arrows */
.swiper-controls .swiper-arrow {
    border-radius: 50%;
    outline: none !important;
    cursor: pointer;
    overflow: hidden;
}

.swiper-controls .swiper-arrow .elementor-icon-wrapper {
    display: flex;
}

.swiper-controls .swiper-arrow .elementor-icon,
.swiper-controls .swiper-arrow:focus .elementor-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    font-size: 15px;
    background-color: var(--green-light);
    border: none;
    transition: var(--transition);
}

.swiper-controls .swiper-arrow .elementor-icon svg,
.swiper-controls .swiper-arrow:focus .elementor-icon svg {
    display: block;
    width: 1em;
    height: 1em;
    fill: var(--green-dark-full) !important;
    transition: var(--transition);
}

.swiper-controls .swiper-arrow.swiper-button-disabled {
    pointer-events: none;
    cursor: default;
}

.swiper-controls .swiper-arrow.swiper-button-disabled .elementor-icon,
.swiper-controls .swiper-arrow:hover.swiper-button-disabled .elementor-icon {
    color: var(--gray) !important;
}

.swiper-controls .swiper-arrow.swiper-button-disabled .elementor-icon svg {
    fill: var(--gray) !important;
}

.swiper-controls .swiper-arrow:hover .elementor-icon {
    background-color: var(--green) !important;
}

.swiper-controls .swiper-arrow:hover .elementor-icon svg {
    fill: var(--white) !important;
}

@media (max-width: 1024px) {
    .swiper.swiper-full-width {
        margin-right: calc((100% - 100vw) / 2);
        margin-left: -32px;
        padding-left: 32px;
        padding-right: 32px;
    }
}

@media (max-width: 767px) {
    .swiper .swiper-controls:not([data-type="pagination"]) {
        display: none;
    }

    .swiper .swiper-controls[data-type="pagination"] {
        top: calc(100% - 28px);
    }

    .swiper .swiper-pagination-bullets .swiper-pagination-bullet {
        width: 8px;
        height: 8px;
    }

    .swiper-controls .swiper-arrow .elementor-icon,
    .swiper-controls .swiper-arrow:focus .elementor-icon {
        width: 40px;
        height: 40px;
        font-size: 12px;
    }

    .swiper.swiper-full-width {
        margin-right: calc((100% - 100vw) / 2);
        margin-left: -20px;
        padding-left: 20px;
        padding-right: 20px;
    }
}

/*---------- SLIDER END ----------*/

/* -------- Video START --------  */

.video-container {
    position: relative;
}

.video-container:before {
    content: "";
    position: absolute;
    background: linear-gradient(180.06deg, rgba(66, 26, 9, 0) 0.05%, #250E04 88.92%);
    width: 100%;
    height: 100%;
    display: block;
    border-radius: 8px;
}

.video-container.active:before {
    display: none;
}

.video-container,
.sleep-video{
    height: 100%;
}

.sleep-video {
    border-radius: 24px;
    object-fit: cover;
    object-position: center center;
}

.custom-play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    padding: 0;
    width: 67px;
    height: 66px;
}

.custom-play-button path {
    transition: var(--transition);
}

.custom-play-button:hover path:first-child {
    fill: var(--orange);
}

.custom-play-button:hover path:last-child {
    fill: var(--white);
}

/* -------- Video END --------  */

/*---------- GLOBAL ----------*/

.grecaptcha-badge {
    display: none !important;
}

.overflow-x-hidden {
    overflow-x: hidden;
}

.full-width-section {
    margin-left: calc((100% - 100vw) / 2) !important;
    max-width: initial !important;
    width: 100vw !important;
}

.dashed-border-container {
    background-image: url("data:image/svg+xml,%3csvg width='100%25' height='100%25' xmlns='http://www.w3.org/2000/svg'%3e%3crect width='100%25' height='100%25' fill='none' rx='12' ry='12' stroke='%234C4B4BFF' stroke-width='2' stroke-dasharray='10' stroke-dashoffset='0' stroke-linecap='square'/%3e%3c/svg%3e");
        border-radius: 12px;
}

.e-con.e-parent>.e-con-inner {
    padding-inline: 40px;
}

.wpseo-breadcrumb-container {
    margin-left: calc((100% - 100vw) / 2) !important;
    max-width: initial !important;
    width: 100vw !important;
    background-color: var(--black);
}

.header-white .wpseo-breadcrumb-container,
.header-white .single-page {
    background-color: var(--white);
}

@media (max-width: 1024px ) {
    .e-con.e-parent>.e-con-inner {
        padding-inline: 32px;
    }
}

@media (max-width: 767px ) {
    div.mobile-scrolling-list .e-con-inner {
        margin-right: calc((100% - 100vw) / 2) !important;
        width: 100vw !important;
        max-width: initial !important;
        padding: 50px 20px;
        margin-left: -20px;
        display: flex;
        overflow-x: auto;
        overflow-y: hidden;
        justify-content: flex-start;
        overflow-x: auto;

        scrollbar-width: none; /* Firefox */
        -ms-overflow-style: none; /* IE и Edge */
    }

     div.mobile-scrolling-list .e-con-inner::-webkit-scrollbar {
        display: none; /* Chrome, Safari и Opera */
    }

    div.mobile-scrolling-list .e-con-inner .mobile-scrolling-item {
        min-width: 300px;
    }

    .e-con.e-parent>.e-con-inner {
        padding-inline: 20px;
    }
}


/*---------- GLOBAL END ----------*/


/*---------- BREADCRUMBS ----------*/

.breadcrumbs {
    padding: 48px 0px 56px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 2px 6px;
}

.breadcrumbs .breadcrumbs-item:first-child a {
    color: var(--white);
}

.breadcrumbs .breadcrumbs-item span,
.breadcrumbs .breadcrumbs-item a {
    color: var(--gray-light);
    font-weight: 400;
    font-size: 16px;
    line-height: 100%;
    transition: var(--transition);
}

.breadcrumbs .breadcrumbs-item a:hover {
    color: var(--white);
}

.breadcrumbs .breadcrumbs-separator {
    color: var(--white);
}

/* white theme */

.header-white .breadcrumbs .breadcrumbs-item:first-child a {
    color: var(--black-secondary);
}

.header-white .breadcrumbs .breadcrumbs-item span,
.header-white .breadcrumbs .breadcrumbs-item a {
    color: var(--gray);
    transition: var(--transition);
}

.header-white .breadcrumbs .breadcrumbs-item a:hover {
    color: var(--black-secondary);
}

.header-white .breadcrumbs .breadcrumbs-separator {
    color: var(--black-secondary);
}

@media (max-width: 1024px) {
    .breadcrumbs {
        padding: 40px 0px;
    }
}

@media (max-width: 767px) {
    .breadcrumbs {
        padding: 40px 0px 24px;
    }
}

/*---------- BREADCRUMBS END ----------*/


/*---------- TABS ----------*/

.elementor-element.tabs {
    overflow-x: auto !important;
}

.elementor-element.tabs::-webkit-scrollbar {
    width: 0;
    height: 0;
}

.elementor-element.tabs>div.elementor-element {
    display: flex;
    align-items: center;
    gap: 4px;
    min-width: max-content;
    max-width: max-content;
    margin: 0 auto;
    padding: 3px;
    list-style: none;
    border: 2px solid var(--white);
    border-radius: 36px;
    outline: none;
}

.elementor-element .tab {
    display: flex;
    outline: none;
    transition: var(--transition);
    cursor: pointer;
}

.elementor-element .tab .elementor-heading-title {
    min-width: max-content;
    padding: 16px 26px;
    color: var(--white);
    border-radius: 36px;
    outline: none;
    transition: var(--transition);
}

.elementor-element .tab:hover .elementor-heading-title {
    color: var(--green-dark-full);
    background-color: var(--green-light);
}

.elementor-element .tab.active .elementor-heading-title {
    color: var(--white);
    background-color: var(--green);
}

.elementor-element .tab-content {
    display: none !important;
}

.elementor-element .tab-content.active {
    display: block !important;
}

.elementor-element .tab-content.elementor-element.active {
    display: flex !important;
}

@media (max-width: 1024px) {
   
}

@media (max-width: 767px) {
    .elementor-element.tabs {
        width: 100vw;
        margin-inline: calc((100% - 100vw) / 2);
        padding-inline: calc((100vw - 100%) / 2);
    }

    .elementor-element.tabs>div.elementor-element {
        margin: 0;
    }
}

/*---------- TABS - END ----------*/


/*---------- POPUPS ----------*/

.mfp-bg {
    background: var(--black);
}

.mfp-container {
    padding: 36px !important;
    overflow-y: auto;
}

/* Animation - Zoom In */

.mfp-zoom-in {
    opacity: 0;
    transition: var(--transition);
}

.mfp-wrap.mfp-zoom-in {
    transform: scale(0.8);
}

.mfp-bg.mfp-zoom-in.mfp-ready {
    opacity: 0.3;
}

.mfp-wrap.mfp-zoom-in.mfp-ready {
    opacity: 1;
    transform: scale(1);
}

.mfp-zoom-in.mfp-removing {
    opacity: 0 !important;
}

.mfp-wrap.mfp-zoom-in.mfp-removing {
    transform: scale(0.8);
}

/* Animation - Zoom In - END */

/* Animation - Fade */

.mfp-fade {
    opacity: 0;
    transition: var(--transition);
}

.mfp-bg.mfp-fade.mfp-ready {
    opacity: 0.3;
}

.mfp-wrap.mfp-fade.mfp-ready {
    opacity: 1;
}

.mfp-fade.mfp-removing {
    opacity: 0 !important;
}

/* Animation - Fade - END */

.popup {
    position: relative;
    max-width: 520px;
    margin: 0 auto;
    padding: 40px;
    border-radius: 16px;
    background: var(--white-secondary);
}

.popup-title {
    max-width: 360px;
}

.popup-description {
    display: block;
    margin: 18px 0px 0px;
}

.popup-form {
    margin: 40px 0px 0px;
}

.popup-close {
    position: absolute;
    top: 34px;
    right: 34px;
    display: flex;
    width: 25px;
    height: 25px;
    cursor: pointer;
}

.popup-close svg {
    color: black;
    transition: var(--transition);
}

.popup-close svg {
    width: 100%;
    height: 100%;
    color: var(--black);
}

.popup-close:hover svg{
    color: var(--orange);
}

@media (max-width: 767px) {
    .mfp-container {
        padding: 18px !important;
    }

    .popup {
        padding: 30px;
    }

    .popup-close {
        top: 12px;
        right: 12px;
        width: 16px;
        height: 16px;
    }
}

/*---------- POPUPS END ----------*/


/*---------- HEADER ----------*/

.header {
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    z-index: 100;
    padding: 0px 0px 15px;
    background-color: var(--black);
    transition: var(--transition);
}

.header.scroll{
    box-shadow: var(--box-shadow-black);
}

.header.white-header {
    background-color: var(--white);
}

/* header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    border-bottom: 0px solid var(--gray-light);
    transition: var(--transition);
    z-index: 1001;
} */

header.scroll {
    border-bottom-width: 1px;
    box-shadow: 0px 0px 10px 0px var(--gray-dark-7);
}

body.admin-bar header {
    top: 32px;
}

header+main,
header+div[data-elementor-type="single-post"],
header+div[data-elementor-type="single-page"],
header+div[data-elementor-type="archive"] {
    margin-top: 146px;
}

header .header-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 44px;
}

header .logo {
    flex-shrink: 0;
    max-width: 188px;
    padding: 0px 0px 16px;
}

header .logo a {
    display: flex;
}

header .logo svg {
    max-width: 102px;
    width: 100%;
    height: 100%;
}

header .logo img {
    height: auto;
    width: 100%;
    max-width: 102px;
}

header .header-main {
    width: 100%;
    padding: 16px 0px 0px;
}

header .header-main .header-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding-bottom: 16px;
    margin-bottom: 16px;
    border-bottom: 1px solid var(--black-secondary);
}

header .header-main .header-top-contacts {
    display: flex;
    align-items: center;
    gap: 16px;
}

.header-buttons .btn {
    min-height: 45px;
}

.header-top-socials {
    display: flex;
    align-items: center;
    gap: 8px;
}

.header-top-icon {
    width: 45px;
    height: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--gray);
    border: 1px solid var(--gray);
    border-radius: 8px;
    transition: var(--transition);
}

.header-top-icon:hover {
    border: 1px solid;
    border-color: var(--orange);
    color: var(--orange);
    box-shadow: var(--box-shadow-orange);
}

.header-top-socials svg {
    width: 15px;
    height: 15px;
}

.header-top-socials svg path {
    transition: var(--transition);
}


header .header-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--black-secondary);
}

.menu-container {
    display: flex;
    align-items: center;
}

header .header-bottom .menu {
    display: flex;
    align-items: center;
}

header .menu .menu-wrapper {
    display: flex;
    width: 100%;
}

header .menu .menu-list {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 48px;
    width: 100%;
    list-style: none;
}

header .menu .menu-list li {
    padding: 0px 0px 16px;
}

header .menu .menu-list .menu-item-has-children li a {
    color: var(--white);
}

header .menu .menu-list ul li + li {
    margin: 8px 0px 0px;
}

header .menu .menu-list li.current_page_item>a {
    color: var(--orange);
}

header .menu .menu-list li.current_page_item>a[href^="/#"] {
    color: var(--white);
}

.header-language-slug {
    color: var(--gray);
    cursor: pointer;
}

.header-language-slug a.glink.gt-current-lang {
    font-weight: 400;
}

.header-language-slug:hover {
    color: var(--white);
}

.header-language-slug.active {
    color: var(--white);
}

/* Second lvl menu - start */

header .menu-list ul {
    position: absolute;
    top: 100%;
    z-index: 5;
    visibility: hidden;
    opacity: 0; 
    padding: 24px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    flex-direction: column;
    list-style: none;
    background-color: var(--black-secondary);
    border-radius: 8px;
    border: 1px solid var(--gray);
}

header .menu .menu-list .menu-item-has-children {
    position: relative;
    padding-right: 24px;
    cursor: pointer;
}

header .menu-item-has-children::after,
header .menu .megamenu-wrapper::after {
    content: "";
    position: absolute;
    top: calc(15% - 2px);
    right: 0px;
    display: inline-block;
    width: 9px;
    height: 9px;
    padding: 0px;
    border: solid var(--white);
    border-width: 0 2px 2px 0;
    transform: translateY(-20%) rotate(45deg);
    transition: var(--transition);
}

header .menu-item-has-children:hover::after,
header .menu .megamenu-wrapper:hover::after {
    top: calc(20% + 3px);
    transform: translateY(-20%) rotate(225deg) !important;
    border-color: var(--orange) !important;
}

header .menu-item-has-children:hover .sub-menu,
header .megamenu-wrapper:hover .megamenu-tabs {
    visibility: visible;
    opacity: 1;
}

.header-language-switcher {
    padding: 0px 0px 16px;
}

/* Second lvl menu - end */

/* Megamenu - start */

.megamenu-wrapper {
    position: relative;
    margin-right: 48px;
    padding: 0px 24px 16px 0px;
}

.megamenu-tabs {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 3;
    padding: 24px;
    width: 645px;
    display: block;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    border-radius: 12px;
    border: 1px solid var(--gray);
    background-color: var(--black-secondary);
}

.megamenu-container-list {
    display: grid;
    grid-template-columns: repeat(3, 142px);
    gap: 8px;
    justify-content: space-between;
}

.megamenu-container-list-item {
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.megamenu-container-list-item:hover {
    color: var(--orange);
}

.megamenu-container-list-item img {
    max-width: 30px;
}

#tab-car_brand .megamenu-container-list-item img {
    max-width: 16px;
}

.megamenu-container .megamenu-container-list:nth-of-type(2) li img {
    max-width: 20px;
}

.megamenu-tab-buttons {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 40px;
}

.megamenu-tab-button {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--gray);
    transition: var(--transition);
    background-color: transparent;
}

.megamenu-tab-button svg {
    transition: var(--transition);
}

.megamenu-tab-button path {
    fill: var(--gray);
    transition: var(--transition);
}

.megamenu-tab-button:hover,
.megamenu-tab-button.active {
    color: var(--white);
}

.megamenu-tab-button.active svg {
    transform: rotate(180deg);
}

.megamenu-tab-button:hover path,
.megamenu-tab-button.active path {
    fill: var(--white);
}

.megamenu-tab-content {
    display: none;
}

.megamenu-tab-content.active {
    display: block;
}

/* Megamenu end */

header .burger-icon,
.megamenu-tab-arrow,
.header-language-switcher-mob,
.header-top-phone-mob,
.header-logo-slogan .logo,
.header-bottom-socials,
.header-bottom-phone,
.menu-item-has-children .icon {
    display: none;
}

/* White header */

.header-white .header {
    background-color: var(--white);
}

.header-white .menu-item-has-children::after,
.header-white .menu .megamenu-wrapper::after {
    border-color: var(--black);
}

.header-white .menu-item-has-children ul .btn.simple.black:hover {
    color: var(--white);
}

.header-white .menu-item-has-children ul .btn.simple.black:hover::after {
    background-color: var(--orange);
}

.header-white .header-language-slug:hover,
.header-white .header-language-slug.active,
.header-white .header-language-separator {
    color: var(--black);
}

.header-white .header .header-bottom .menu {
    background-color: var(--white);
}

@media (max-width: 1199.75px) {
    header .menu-list {
        gap: 16px;
    }
}

@media (min-width: 1024px) {
    .megamenu-tab-title {
        display: none;
    }
}

@media (max-width: 1024px) {
    header+main,
    header+div[data-elementor-type="single-post"],
    header+div[data-elementor-type="single-page"],
    header+div[data-elementor-type="archive"] {
        margin-top: 83px;
    }

    header .header-main {
        padding: 16px 0px;
        display: flex;
        align-items: center;
        gap: 20px;
    }

    header .header-wrapper {
        gap: 14px;
    }

    header .header-wrapper.active {
        box-shadow: 0px 4px 4px 0px #2E3A5914;
    }

    header .header-main .header-top {
        padding: 0px;
        margin: 0px;
        width: 100%;
        gap: 14px;
        border: 0px;
    }

    .header-buttons .btn {
        min-height: 52px;
    }

    header .header-logo-slogan .logo,
    .header-bottom-phone{
        display: block;
    }

    .header-bottom-socials {
        margin: 56px 0px 0px;
        display: flex;
        flex-direction: column;
        gap: 64px;
    }

    header .header-main .header-top-contacts {
        flex-direction: row-reverse;
        gap: 8px;
    }
    
    .header-top-icon,
    .header-top-phone-mob {
        width: 40px;
        height: 40px;
    }

    .header-top-socials,
    header .header-bottom .logo,
    .header-language-switcher,
    header .header-logo-slogan p {
        display: none;
    }

    .header-language-switcher.header-language-switcher-mob {
        display: block;
        padding: 0px;
    }

    header .header-bottom {
        border: 0px;
    }

    header .header-bottom .menu {
        position: absolute;
        top: -100vh;
        left: 0;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        gap: 48px;
        align-items: flex-start;
        width: 100%;
        padding: 40px 32px;
        min-height: calc(100dvh - 154px);
        height: 100vh;
        background: #1E1D1C;
        transition: var(--transition);
        transition-duration: 0.6s;
        z-index: 3;
        overflow: auto;
    }

    .menu-container {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 48px;
    }
    

    header .header-wrapper.active .menu {
        top: 0px;
    }

    header .menu .menu-wrapper {
        flex-grow: 0;
        width: 100%;
        padding: 0px;
    }

    header .menu .menu-list {
        flex-direction: column;
        align-items: stretch;
        gap: 48px;
    }

    .menu-bottom-container,
    .header-buttons a {
        width: 100%;
    }

    /* Menu - Level 2 */
    
    header .menu-item-has-children::after, 
    header .menu .megamenu-wrapper::after {
        display: none;
    }

    header .menu .menu-list li {
        padding: 0px;
    }

    /* Menu - Level 2 - END */

    /* Menu - megamenu - START */

    .megamenu-wrapper {
        width: 100%;
        padding: 0px;
        margin-right: 0px;
        flex-grow: 0;
    }

    .megamenu-tab-content,
    .megamenu-tab-arrow {
        display: block;
    }

    .megamenu-tab-arrow {
        transition: var(--transition);
    }

    .megamenu-tab-arrow.active {
        transform: rotate(180deg);
    }

    .megamenu-tabs,
    header .menu-list ul {
        position: initial;
        display: none;
        padding: 24px 0px 0px;
        width: 100%;
        opacity: 1;
        visibility: visible;
        border: none;
        background-color: transparent;
    }

    .header-wrapper.active  .menu-item-has-children .icon {
        position: absolute;
        top: 0;
        right: 0;
        display: block;
        transition: var(--transition);
    }

    .menu-item-has-children.active .icon {
        transform: rotate(180deg);
    }

    .megamenu-container {
        display: flex;
        flex-direction: column;
        gap: 16px;
    }

    .megamenu-tab-buttons {
        display: none;
    }

    .megamenu-container-list {
        margin: 16px 0px 0px;
        display: none;
        grid-template-columns: 1fr;
    }

    .megamenu-container-list-item + .megamenu-container-list-item {
        margin: 8px 0px 0px;
    }

    .menu-has-child {
        width: fit-content;
        display: flex;
        align-items: center;
        justify-content: flex-start;
        gap: 11px;
    }

    .megamenu-arrow-icon {
        display: inline-block;
        transition: var(--transition);
    }

    .megamenu-tab-content span {
        color: var(--gray);
        transition: var(--transition);
    }

    .megamenu-tab-content.active span {
        color: var(--white);
    }

    .megamenu-tab-content.active .megamenu-arrow-icon {
        transform: rotate(180deg);
    }
    

    /* Menu - megamenu - END */

    header .burger-icon {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 52px;
        height: 52px;
        border-radius: 10px;
        background: linear-gradient(270deg, #F8602F 0%, #EB452C 100%);
        margin-left: auto;
        cursor: pointer;
        z-index: 5;
        overflow: hidden;
        transition: var(--transition);
    }

    header .burger-icon:hover {
        box-shadow: var(--box-shadow-orange);
    }

    header .burger-icon span {
        position: absolute;
        height: 1px;
        width: 27px;
        background: var(--white);
        border-radius: 30px;
        transition: var(--transition);
    }

    header .burger-icon span:nth-child(1) {
        transform: translate(0px, -10px);
        transition-delay: 0s;
    }

    header .burger-icon span:nth-child(2) {
        transition-delay: 0.2s;
    }

    header .burger-icon span:nth-child(3) {
        transform: translate(0px, 10px);
        transition-delay: 0s;
    }

    header .header-wrapper.active .burger-icon span:nth-child(1) {
        transform: rotate(45deg);
        transition-delay: 0.15s;
    }

    header .header-wrapper.active .burger-icon span:nth-child(2) {
        right: -100%;
        transition-delay: 0s;
    }

    header .header-wrapper.active .burger-icon span:nth-child(3) {
        transform: rotate(-45deg);
        transition-delay: 0.15s;
    }

    /* White header */

    .header-white .megamenu-tab-content.active span,
    .header-white .megamenu-container-list,
    .header-white .menu .menu-list .menu-item-has-children li a{
        color: var(--black-secondary);
    }

    .header-white .megamenu-tab-arrow path,
    .header-white .menu-item path{
        fill: var(--black-secondary);
    }
}

@media (max-width: 767px) {
    body.admin-bar header {
        top: 46px;
    }

    /* header+main,
    header+div[data-elementor-type="single-post"],
    header+div[data-elementor-type="archive"] {
        margin-top: 98px;
    } */

    header .header-wrapper {
        padding: 18px;
    }

    header .logo {
        max-width: 102px;
    }

    header .header-main {
        display: flex;
        align-items: center;
        justify-content: flex-end;
        gap: 8px;
    }

    header .header-main .header-top {
        padding-bottom: 0;
        margin-bottom: 0;
        border-bottom: none;
    }

    .header-top-socials {
        display: flex;
    }

    header .burger-icon {
        width: 40px;
        height: 40px;
    }

    .header-top-phone-mob {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 10px;
        background: linear-gradient(270deg, #F8602F 0%, #EB452C 100%);
        margin-left: auto;
        cursor: pointer;
        z-index: 5;
        overflow: hidden;
        transition: var(--transition);
    }

    .header-top-phone-mob:hover {
        box-shadow: var(--box-shadow-orange)
    }

    header .header-top .social-links {
        max-width: 100%;
    }

    header .header-top .header-buttons,
    .header-phone-desktop {
        display: none;
    }

    header .header-bottom .menu {
        min-height: calc(100dvh - 98px);
        padding: 40px 20px;
    }

    .header-bottom-socials {
        gap: 8px;
    }

    header .header-wrapper.active .menu {
        top: 0px;
    }
    
    .menu-item .btn.simple.black {
        justify-content: flex-start;
    }
    
    .menu-container,
    header .menu .menu-list {
        gap: 24px;
    }
}

@media (max-width: 350px) {
    .header-top-icon, 
    .header-top-phone-mob,
    header .burger-icon {
        width: 36px;
        height: 36px;
    }
}

/*---------- HEADER END ----------*/

/*---------- FOOTER ----------*/

.footer {
    background-color: var(--black-secondary);
}

footer .footer-wrapper {
    display: flex;
}

.footer-top {
    padding: 80px 180px 80px 0px;
    width: 100%;
    display: grid;
    grid-template-columns: 120px 110px 210px;
    justify-content: space-between;
    gap: 48px 0px;
}

.footer-top ul {
    list-style: none;
}

.footer-top ul li + li {
    margin: 8px 0px 0px;
}

.footer-column-title {
    margin: 0px 0px 24px;
}

.dropdown-title svg,
.footer-column-title svg,
.footer-additional-column .footer-socials-list {
    display: none;
}

.footer-column-subtitle {
    margin: 46px 0px 0px;
}

.footer-socials-list {
    margin: 24px 0px 0px;
    display: grid;
    grid-template-columns: repeat(2,24px);
    gap: 8px;
}

.footer-socials-item {
    width: 100%;
    height: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50px;
    background-color: var(--white);
    transition: var(--transition);
}

.footer-socials-item:hover {
    box-shadow: var(--box-shadow-white);
}

.footer-socials-item svg {
    width: 12px;
    height: 12px;
}

.footer-additional-column {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 32px;
}

.footer-bottom {
    padding: 80px 68px;
    margin-right: calc((100% - 100vw) / 2);
    padding-right: calc(50vw - 50%);
    background-color: #2B2B2B;
}

.footer-bottom-container {
    height: 100%;
    max-width: 318px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
}

.footer-logo-desc {
    margin: 16px 0px 0px;
}

.footer .logo {
    display: flex;
}

.footer .logo img {
    margin-left: -10px;
    max-width: 182px;
    width: 100%;
    height: 58px;
}

@media (max-width: 1279px) {
    .footer-top {
        padding: 80px 40px 80px 0px;
    }
}

@media (max-width: 1024px) {
    .footer-top {
        padding: 80px 0px;
    }

    footer .footer-wrapper {
        flex-direction: column;
    }

    .footer-bottom {
        width: 100vw;
        margin-right: auto;
        padding: 32px;
        margin-left: calc((100% - 100vw) / 2);
    }

    .footer-bottom-container {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-template-areas:
            "design logo"
            "rules logo";
        max-width: 100%;
        justify-content: space-between;
        align-items: end;
    }

    .grid-area-logo {
        grid-area: logo;
    }

    .footer-logo-desc {
        margin: 32px 0px 0px;
    }

    .grid-area-design {
        grid-area: design;
        justify-content: flex-start;
        width: fit-content;
    }

    .grid-area-rules {
        grid-area: rules;
    }
}

@media (max-width: 767px) {
    .footer-top {
        padding: 50px 0px 32px;
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .dropdown-title {
        margin: 0px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 20px;
    }

    .dropdown-title span {
        max-width: 300px;
    }
    
    .dropdown-title svg {
        display: block;
        transition: var(--transition);
    }

    .dropdown-title.active svg {
        color: var(--orange);
        transform: rotate(180deg);
    }

    .dropdown-data {
        margin: 24px 0px 0px;
    }

    .dropdown-data.open {
        max-height: 1000px; 
        opacity: 1;
    }

    .dropdown-data .btn.simple,
    .dropdown-data .button.simple.elementor-widget-button .elementor-button {
        width: fit-content;
    }

    .footer-contacts-column .footer-column-subtitle,
    .footer-contacts-column .footer-socials-list,
    .dropdown-data {
        display: none;
    }

    .footer-additional-column {
        margin: 16px 0px 0px;
    }
    
    .footer-additional-column .footer-socials-list {
        margin: 0px;
        display: grid;
        grid-template-columns: repeat(4,24px);
    }

    .footer-bottom {
        padding: 25px 20px;
    }

    .footer-bottom-container {
        grid-template-columns: 1fr;
        grid-template-areas:
        "logo"
        "design"
        "rules";
        gap: 32px;
    }

    .footer-logo-desc {
        margin: 16px 0px 0px;
    }
}

/*---------- FOOTER END ----------*/


/*---------- SINGLE BLOG PAGE ----------*/

.post-content>.elementor-widget-container {
    padding: 0 90px;
}

.post-content>.elementor-widget-container h1,
.post-content>.elementor-widget-container h2,
.post-content>.elementor-widget-container h3,
.post-content>.elementor-widget-container h4,
.post-content>.elementor-widget-container h5,
.post-content>.elementor-widget-container h6 {
    color: var(--white);
}

.post-content .wp-block-image {
    display: flex;
    height: 500px;
    margin-inline: -90px;
    border-radius: 24px;
    overflow: hidden;
}

.post-content .wp-block-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.post-content *+.wp-block-image,
.post-content .wp-block-image+* {
    margin-top: 60px;
}

.post-content a {
    position: relative;
    display: inline-flex;
    padding: 0 0 1px 0;
    color: var(--green);
    transition: var(--transition);
}

.post-content a::after {
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    position: absolute;
    left: 50%;
    bottom: 0;
    background-color: var(--green);
    transform: translateX(-50%);
    transition: var(--transition);
    opacity: 1;
}

.post-content a:hover {
    color: var(--white);
}

.post-content a:hover::after {
    width: 0%;
    background-color: var(--white);
}

@media (max-width: 1024px) {
    .post-content>.elementor-widget-container {
        padding: 0;
    }

    .post-content .wp-block-image {
        margin-inline: 0;
    }

    .post-content *+.wp-block-image,
    .post-content .wp-block-image+* {
        margin-top: 50px;
    }
}

@media (max-width: 767px) {

    .post-content *+.wp-block-image,
    .post-content .wp-block-image+* {
        margin-top: 40px;
    }
}

/*---------- SINGLE BLOG PAGE END ----------*/


/*---------- ELEMENTOR ----------*/

.elementor-element h1+*,
.elementor-element h2+*,
.elementor-element h3+*,
.elementor-element h4+*,
.elementor-element h5+*,
.elementor-element h6+* {
    margin-top: 1em;
}

.elementor-element p+* {
    margin-top: 1em;
}

.elementor-element p+h1,
.elementor-element p+h2,
.elementor-element p+h3,
.elementor-element p+h4,
.elementor-element p+h5,
.elementor-element p+h6 {
    margin-top: 1.2em;
}

.elementor-element p+ul,
.elementor-element p+ol {
    margin-top: 0.5em;
}

.elementor-element ul+*,
.elementor-element ol+* {
    margin-top: 1em;
}

.elementor-element ul+h1,
.elementor-element ul+h2,
.elementor-element ul+h3,
.elementor-element ul+h4,
.elementor-element ul+h5,
.elementor-element ul+h6,
.elementor-element ol+h1,
.elementor-element ol+h2,
.elementor-element ol+h3,
.elementor-element ol+h4,
.elementor-element ol+h5,
.elementor-element ol+h6 {
    margin-top: 1.4em;
}

.elementor-element ul>li {
    position: relative;
    list-style-type: none;
    padding-left: 1.1em;
}

.elementor-element ul>li+li {
    margin-top: 8px;
}

.elementor-element ul>li:not([class])::before {
    content: "";
    position: absolute;
    top: 3px;
    left: 1px;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background-color: var(--black);
}

.elementor-element ol {
    margin-left: 1.15em;
}

.elementor-element ol>li {
    margin-top: 8px;
}

.elementor-widget-text-editor a {
    position: relative;
    display: inline-flex;
    padding: 0 0 1px 0;
    color: var(--green);
    transition: var(--transition);
}

.elementor-widget-text-editor a::after {
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    position: absolute;
    left: 50%;
    bottom: 0;
    background-color: var(--green);
    transform: translateX(-50%);
    opacity: 1;
}

.elementor-widget-text-editor a:hover {
    color: var(--orange);
}

.elementor-widget-text-editor a:hover::after {
    width: 0%;
    background-color: var(--black);
}

.elementor-widget-icon-box a {
    position: relative;
    display: inline-flex;
}

.elementor-widget-icon-box a:hover {
    color: var(--green);
}

@media (max-width: 767.75px) {
    .elementor .elementor-hidden-mobile,
    .elementor .elementor-hidden-phone {
        display: none;
    }
}

/* Elementor - Toggler */
.elementor-widget-toggle .elementor-tab-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: row-reverse;
    transition: border-bottom 0s ease 0.35s;
}

.elementor-widget-toggle .elementor-tab-title .elementor-toggle-title {
    transition: var(--transition);
}

.elementor-widget-toggle .elementor-tab-title .elementor-toggle-icon svg {
    transition: var(--transition);
}

.elementor-widget-toggle .elementor-tab-title .elementor-toggle-icon-closed {
    transition: var(--transition);
}

.elementor-widget-toggle .elementor-tab-title.elementor-active .elementor-toggle-icon-closed {
    display: block !important;
    transform: rotate(180deg) translateY(3px);
}

.elementor-widget-toggle .elementor-tab-title.elementor-active .elementor-toggle-icon-opened {
    display: none !important;
}

/* Elementor - Accordion  */
.elementor-widget-n-accordion .e-n-accordion-item {
    background-color: var(--green-dark);
    border-radius: 20px;
}

.elementor-widget-n-accordion .e-n-accordion-item>.e-con {
    padding: 0 30px 30px !important;
    border: none !important;
    outline: none !important;
}

.elementor-widget-n-accordion .e-n-accordion-item-title {
    padding: 30px !important;
    border: none !important;
    outline: none !important;
}

.elementor-widget-n-accordion .e-n-accordion-item-title-text {
    color: var(--white);
    transition: var(--transition);
}

.elementor-widget-n-accordion .e-n-accordion-item-title:hover .e-n-accordion-item-title-text,
.elementor-widget-n-accordion .e-n-accordion-item-title[aria-expanded="true"] .e-n-accordion-item-title-text {
    color: var(--green);
}

.elementor-widget-n-accordion .e-n-accordion-item-title-icon {
    align-self: flex-start;
}

.elementor-widget-n-accordion .e-n-accordion-item-title-icon svg {
    fill: transparent !important;
    color: var(--green);
}

@media (max-width: 767px) {
    .elementor-widget-n-accordion .e-n-accordion-item>.e-con {
        padding: 0 20px 24px !important;
    }

    .elementor-widget-n-accordion .e-n-accordion-item-title {
        padding: 24px 20px !important;
    }
}

/* Elementor - Icon  */
.elementor-widget-icon .elementor-icon-wrapper {
    display: flex;
}

/* Elementor - Tabs  */
.elementor-widget-n-tabs .e-n-tabs {
    gap: 40px !important;
}

.elementor-widget-n-tabs .e-n-tabs .e-n-tabs-heading {
    align-self: center;
    display: flex;
    gap: 4px;
    padding: 3px;
    border: 2px solid var(--white);
    border-radius: 36px;
}

.elementor-widget-n-tabs .e-n-tabs .e-n-tabs-heading .e-n-tab-title {
    display: flex;
    min-width: max-content;
    padding: 16px 26px;
    color: var(--white);
    background-color: transparent;
    border-radius: 36px;
    outline: none;
}

.elementor-widget-n-tabs .e-n-tabs .e-n-tabs-heading .e-n-tab-title:hover {
    color: var(--green-dark-full) !important;
    background-color: var(--green-light) !important;
}

.elementor-widget-n-tabs .e-n-tabs .e-n-tabs-heading .e-n-tab-title[aria-selected="true"] {
    color: var(--white) !important;
    background-color: var(--green) !important;
}

/* Elementor Style - END */

/*---------- ELEMENTOR END ----------*/

/*---------- CONTACTS ----------*/

.contact-map iframe {
    border-radius: 16px;
}

@media (max-width: 767px) {
    .contact-map iframe {
        height: 400px;
    }
}

/*---------- CONTACTS END ----------*/

/*---------- Instagram START ----------*/

.zoom-instagram-widget__follow-me {
    margin-top: 15px;
    text-align: center
}

.wpzoom-instagram-widget-select-feed select {
    max-width: 100%
}

.wp-block-wpzoom-instagram-block .zoom-instagram,.zoom-instagram .zoom-instagram {
    background: none;
    padding: 0;
    border: none
}

.zoom-instagram img[src=""],.zoom-instagram img:not([src]),.wpz-insta-lightbox img[src=""],.wpz-insta-lightbox img:not([src]) {
    visibility: hidden
}

.zoom-instagram {
    font-size: 14px;
    overflow: hidden;
    display: block
}

.zoom-instagram img {
    height: auto;
    max-width: 100%
}

.zoom-instagram form[disabled] {
    pointer-events: none
}

.zoom-instagram form[disabled]:not(.loading) {
    opacity: .5
}

.zoom-instagram .zoom-instagram-widget__header {
    display: flex;
    gap: 20px;
    margin: 0 0 25px
}

.zoom-instagram .zoom-instagram-widget__header .wpz-insta-stats {
    display: flex;
    gap: 20px;
    margin: 5px 0
}

.zoom-instagram .zoom-instagram-widget__header .wpz-insta-stats .wpz-insta-posts strong,.zoom-instagram .zoom-instagram-widget__header .wpz-insta-stats .wpz-insta-followers strong,.zoom-instagram .zoom-instagram-widget__header .wpz-insta-stats .wpz-insta-following strong {
    font-weight: 600
}

.zoom-instagram .zoom-instagram-widget__header .zoom-instagram-widget__header-column-left {
    min-width: 70px
}

.zoom-instagram .zoom-instagram-widget__header .zoom-instagram-widget__header-column-left img {
    height: 70px;
    width: 70px;
    border-radius: 50%
}

.zoom-instagram .zoom-instagram-widget__header .zoom-instagram-widget__header-column-right {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left
}

.zoom-instagram .zoom-instagram-widget__header .zoom-instagram-widget__header-name {
    font-size: 14px;
    font-weight: 600;
    line-height: 1.5;
    padding: 0;
    margin: 0 0 5px;
    letter-spacing: 0
}

.zoom-instagram .zoom-instagram-widget__header .zoom-instagram-widget__header-user {
    font-weight: 600;
    font-size: 13px;
    line-height: normal;
    padding: 0;
    margin: 0
}

.zoom-instagram .zoom-instagram-widget__header .zoom-instagram-widget__header-user a {
    text-decoration: none
}

.zoom-instagram .zoom-instagram-widget__header .zoom-instagram-widget__header-user .wpz-insta-badge {
    display: inline-block;
    vertical-align: middle;
    margin-left: 5px
}

.zoom-instagram .zoom-instagram-widget__header .zoom-instagram-widget__header-bio {
    font-size: 13px;
    font-weight: normal;
    line-height: 1.6;
    padding: 0;
    margin: 6px 0 0;
    text-align: left
}

.zoom-instagram .zoom-instagram-widget__footer {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 15px;
    margin: 25px 0 0
}

.zoom-instagram .zoom-instagram-widget__footer>* {
    display: block
}

.zoom-instagram .zoom-instagram-widget__footer .wpz-insta-view-on-insta-button,.zoom-instagram .zoom-instagram-widget__footer .wpzinsta-pro-load-more input[type=submit],.zoom-instagram .zoom-instagram-widget__footer .wpzinsta-pro-load-more button[type=submit] {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    cursor: pointer;
    font-family: -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    text-transform: none;
    letter-spacing: normal;
    line-height: 18px;
    color: #fff;
    background-color: #3496ff;
    padding: 8px 12px;
    border: none;
    border-radius: 3px;
    margin: 0;
    transition: all .3s linear
}

.zoom-instagram .zoom-instagram-widget__footer .wpz-insta-view-on-insta-button:hover,.zoom-instagram .zoom-instagram-widget__footer .wpz-insta-view-on-insta-button:active,.zoom-instagram .zoom-instagram-widget__footer .wpzinsta-pro-load-more input[type=submit]:hover,.zoom-instagram .zoom-instagram-widget__footer .wpzinsta-pro-load-more input[type=submit]:active,.zoom-instagram .zoom-instagram-widget__footer .wpzinsta-pro-load-more button[type=submit]:hover,.zoom-instagram .zoom-instagram-widget__footer .wpzinsta-pro-load-more button[type=submit]:active {
    text-decoration: none;
    opacity: .8
}

.zoom-instagram .zoom-instagram-widget__footer .wpz-insta-view-on-insta-button .button-icon,.zoom-instagram .zoom-instagram-widget__footer .wpzinsta-pro-load-more input[type=submit] .button-icon,.zoom-instagram .zoom-instagram-widget__footer .wpzinsta-pro-load-more button[type=submit] .button-icon {
    height: 18px;
    width: 18px;
    transition: all .3s linear
}

.zoom-instagram .zoom-instagram-widget__footer .wpzinsta-pro-load-more button[type=submit] {
    gap: 0
}

.zoom-instagram .zoom-instagram-widget__footer .wpzinsta-pro-load-more button[type=submit]::before {
    content: "";
    background-image: url("data:image/svg+xml,%3Csvg version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' viewBox='0 0 50 50' xml:space='preserve'%3E%3Cpath fill='%23ffffff' d='M43.935,25.145c0-10.318-8.364-18.683-18.683-18.683c-10.318,0-18.683,8.365-18.683,18.683h4.068c0-8.071,6.543-14.615,14.615-14.615c8.072,0,14.615,6.543,14.615,14.615H43.935z'%3E%3CanimateTransform attributeType='xml' attributeName='transform' type='rotate' from='0 25 25' to='360 25 25' dur='0.6s' repeatCount='indefinite'/%3E%3C/path%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    height: 18px;
    width: 0;
    transition: all .3s linear
}

.zoom-instagram .wpzinsta-pro-load-more {
    margin: 0
}

.zoom-instagram .wpzinsta-pro-load-more.loading button[type=submit] {
    gap: 6px
}

.zoom-instagram .wpzinsta-pro-load-more.loading button[type=submit]::before {
    width: 18px
}

.zoom-instagram .zoom-instagram-widget__items-wrapper {
    overflow: hidden
}

.zoom-instagram .zoom-instagram-widget__items {
    list-style: none !important;
    padding: 0;
    margin: 0
}

.zoom-instagram .zoom-instagram-widget__items::before,.zoom-instagram .zoom-instagram-widget__items::after {
    display: none
}

.zoom-instagram .zoom-instagram-widget__items .zoom-instagram-widget__item .zoom-instagram-link {
    height: 100%
}

.zoom-instagram .zoom-instagram-widget__items.layout-grid .zoom-instagram-widget__item img {
    -o-object-fit: cover;
    object-fit: cover;
    width: 100%;
    aspect-ratio: 1/1;
    height: 100% !important
}

.zoom-instagram .zoom-instagram-widget__items.layout-fullwidth {
    white-space: nowrap;
    display: grid;
    grid-template-rows: auto;
    grid-auto-rows: 0
}

.zoom-instagram .zoom-instagram-widget__items.layout-fullwidth .zoom-instagram-widget__item img {
    aspect-ratio: 1;
    height: 100% !important
}

.zoom-instagram .zoom-instagram-widget__items.layout-carousel {
    display: flex;
    height: auto !important;
    overflow: visible
}

.zoom-instagram .zoom-instagram-widget__items.layout-carousel.zoom-instagram-widget__items--no-js .zoom-instagram-widget__item {
    height: auto;
    flex: auto
}

.zoom-instagram .zoom-instagram-widget__items.layout-carousel .zoom-instagram-widget__item {
    height: auto
}

.zoom-instagram .zoom-instagram-widget__items.layout-carousel .zoom-instagram-widget__item img {
    aspect-ratio: 1;
    -o-object-fit: cover;
    object-fit: cover;
    height: auto;
    width: 100%
}

.layout-legacy.zoom-instagram-widget__items {
    list-style: none !important
}

.layout-legacy.zoom-instagram-widget__items .zoom-instagram-widget__item {
    float: left;
    position: relative;
    margin-top: 0 !important;
    padding: 0
}

.layout-legacy.zoom-instagram-widget__items .zoom-instagram-widget__overlay {
    position: relative
}

.zoom-instagram-widget-user-info-middle-cell {
    padding: 0px 20px
}

.zoom-instagram-widget-user-info .zoom-instagram-widget-user-info-fullname {
    font-weight: 600;
    font-size: 16px
}

.zoom-instagram-widget-user-info .zoom-instagram-widget-user-info-names-wrapper {
    padding-right: 20px;
    word-break: break-word
}

.zoom-instagram-widget-user-info .zoom-instagram-widget-user-info-username {
    font-size: 14px;
    font-weight: 600;
    word-break: break-all
}

.zoom-instagram-widget-user-info-bio {
    text-align: left;
    font-size: 14px;
    margin: 0 0 15px
}

.zoom-instagram-widget__items .zoom-instagram-widget__item-inner-wrap {
    position: relative;
    height: 100%;
    overflow: hidden
}

.zoom-instagram-widget__items .zoom-instagram-widget__item .zoom-instagram-link {
    display: block;
    background-size: cover !important;
    background-position: center center !important;
    background-repeat: no-repeat !important
}

.zoom-instagram-widget__items .svg-icon {
    position: absolute;
    width: 20px;
    padding: 0;
    height: 20px;
    display: flex;
    top: 8px;
    right: 8px;
    z-index: 1;
    transition: opacity .25s ease-in-out;
    filter: drop-shadow(1px 2px 1px rgba(0, 0, 0, 0.07))
}

.zoom-instagram-widget__item {
    position: relative;
    transition: all .1s ease-in-out;
    list-style-type: none !important
}

.zoom-instagram-widget__item.new {
    opacity: 0;
    transform: scale(0);
    transform-origin: center;
    -webkit-animation: show 500ms linear forwards;
    animation: show 500ms linear forwards
}

.zoom-instagram-widget__item .zoom-instagram-widget__item-inner-wrap {
    position: relative;
    height: 100%;
    overflow: hidden
}

.zoom-instagram-widget__item img {
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
    height: 100%;
    transition: all .5s cubic-bezier(0.215, 0.61, 0.355, 1);
    will-change: transform;
    margin-bottom: 0 !important
}

.zoom-instagram-widget__item:hover img {
    transform: scale(1.07)
}

.widget_block .zoom-instagram-widget__items ul li.zoom-instagram-widget__item,.widget.zoom-instagram-widget ul li.zoom-instagram-widget__item,.widget.zoom-new-instagram-widget ul li.zoom-instagram-widget__item {
    padding: 0
}

.widget_block .zoom-instagram-widget__items-wrapper,.widget.zoom-new-instagram-widget .zoom-instagram-widget__items-wrapper {
    overflow: hidden
}

.widget_block .zoom-instagram-widget__items,.widget.zoom-new-instagram-widget .zoom-instagram-widget__items {
    padding: 0;
    margin: 0
}

.widget_block .zoom-instagram-widget__items::before,.widget_block .zoom-instagram-widget__items::after,.widget.zoom-new-instagram-widget .zoom-instagram-widget__items::before,.widget.zoom-new-instagram-widget .zoom-instagram-widget__items::after {
    display: none
}

.widget_block .zoom-instagram-widget__items.layout-grid .zoom-instagram-widget__item img,.widget.zoom-new-instagram-widget .zoom-instagram-widget__items.layout-grid .zoom-instagram-widget__item img {
    width: 100%;
    aspect-ratio: 1/1
}

.widget_block .zoom-instagram-widget__items.layout-fullwidth .zoom-instagram-widget__item img,.widget.zoom-new-instagram-widget .zoom-instagram-widget__items.layout-fullwidth .zoom-instagram-widget__item img {
    aspect-ratio: 1
}

.widget_block .zoom-instagram-widget__items.layout-carousel,.widget.zoom-new-instagram-widget .zoom-instagram-widget__items.layout-carousel {
    display: flex;
    height: auto
}

.widget_block .zoom-instagram-widget__items.layout-carousel .zoom-instagram-widget__item,.widget.zoom-new-instagram-widget .zoom-instagram-widget__items.layout-carousel .zoom-instagram-widget__item {
    height: auto
}

.widget_block .zoom-instagram-widget__items.layout-carousel .zoom-instagram-widget__item img,.widget.zoom-new-instagram-widget .zoom-instagram-widget__items.layout-carousel .zoom-instagram-widget__item img {
    aspect-ratio: 1;
    height: auto;
    width: 100%
}

.widget_block .zoom-instagram-widget__items .zoom-instagram-widget__item,.widget.zoom-new-instagram-widget .zoom-instagram-widget__items .zoom-instagram-widget__item {
    position: relative;
    margin: 0;
    list-style-type: none
}

.widget_block .zoom-instagram-widget__items .zoom-instagram-widget__item.new,.widget.zoom-new-instagram-widget .zoom-instagram-widget__items .zoom-instagram-widget__item.new {
    opacity: 0;
    transform: scale(0);
    transform-origin: center;
    -webkit-animation: show 500ms linear forwards;
    animation: show 500ms linear forwards
}

.widget_block .zoom-instagram-widget__items .zoom-instagram-widget__item .zoom-instagram-widget__item-inner-wrap,.widget.zoom-new-instagram-widget .zoom-instagram-widget__items .zoom-instagram-widget__item .zoom-instagram-widget__item-inner-wrap {
    position: relative;
    height: 100%;
    overflow: hidden
}

.widget_block .zoom-instagram-widget__items .zoom-instagram-widget__item img,.widget.zoom-new-instagram-widget .zoom-instagram-widget__items .zoom-instagram-widget__item img {
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
    height: 100%
}

.ig-b- {
    display: inline-block
}

a.ig-b-v-24 {
    border-color: #3897f0;
    color: #3897f0 !important;
    border-radius: 3px;
    border-style: solid;
    border-width: 1px;
    font-weight: 600 !important;
    outline: none;
    overflow: hidden;
    white-space: nowrap;
    -webkit-appearance: none;
    font-family: sans-serif;
    padding: 5px 15px;
    font-size: 14px;
    transition: all .15s ease-in-out;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-decoration: none !important
}

a.ig-b-v-24:hover {
    background: #3897f0;
    border-color: #3897f0;
    color: #fff !important
}

.zoom-instagram-widget__item .hover-controls {
    opacity: 0;
    z-index: 9;
    width: 100%;
    text-align: center;
    transition: opacity .25s ease-in-out;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative
}

.zoom-instagram-widget__item .hover-controls .zoom-instagram-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px
}

.zoom-instagram-widget__item .hover-controls .zoom-instagram-icon svg {
    width: 100%;
    height: 100%
}

.zoom-instagram-widget__item .hover-controls .zoom-instagram-icon.icon-heart-outline {
    position: relative;
    top: 1px
}

.zoom-instagram-widget__items[data-lightbox="1"] .zoom-instagram-widget__item .zoom-instagram-icon-wrap {
    pointer-events: none
}

.zoom-instagram-widget__items[data-lightbox="1"] .zoom-instagram-widget__item img {
    cursor: pointer
}

.zoom-instagram-widget__item .hover-controls~.zoom-instagram-icon-wrap {
    bottom: 10%;
    pointer-events: all
}

.zoom-instagram-widget__item .hover-layout.small .hover-controls~.zoom-instagram-icon-wrap {
    bottom: 6%
}

.zoom-instagram-widget__item .hover-layout.small .zoom-instagram-icon-wrap {
    bottom: calc(50% - 15px)
}

.zoom-instagram-widget__item .zoom-instagram-icon-wrap {
    bottom: calc(50% - 15px);
    height: 30px;
    width: 100%;
    position: absolute;
    z-index: 9;
    text-align: center
}

.zoom-instagram-widget__item:hover .hover-controls {
    opacity: 1
}

.zoom-instagram-widget__item .zoom-instagram-icon-wrap {
    opacity: 0;
    transition: opacity .25s ease-in-out
}

.zoom-instagram-widget__item .zoom-instagram-icon-wrap .zoom-svg-instagram-stroke {
    transform: scale(0.5)
}

.zoom-instagram-widget__item:hover .zoom-instagram-icon-wrap {
    opacity: 1
}

.zoom-instagram-widget__item:hover .zoom-instagram-icon-wrap .zoom-svg-instagram-stroke {
    transform: scale(0.9)
}

.zoom-instagram-widget__item .hover-controls .dashicons {
    font-size: 20px;
    width: 20px;
    height: 20px;
    color: #fff;
    vertical-align: middle
}

.zoom-instagram-widget__item .hover-controls .counter {
    padding-left: 5px;
    padding-right: 12px;
    font-weight: 500;
    color: #fff;
    font-size: 14px;
    opacity: .8;
    font-family: -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif
}

.zoom-instagram-widget__overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0
}

.zoom-instagram-widget__overlay:after {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    pointer-events: none;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity .25s ease-in-out
}

.zoom-instagram-widget__overlay:hover:after {
    opacity: .5;
    background-color: #000
}

.zoom-instagram-widget__black:after {
    background-color: #000
}

.zoom-svg-instagram-simple {
    display: inline-block;
    width: 30px;
    height: 30px;
    background: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHg9IjBweCIgeT0iMHB4IgogICAgIHdpZHRoPSI1MCIgaGVpZ2h0PSI1MCIKICAgICB2aWV3Qm94PSIwIDAgNTAgNTAiCiAgICAgc3R5bGU9ImZpbGw6I2ZmZmZmZjsiPiAgICA8cGF0aCBzdHlsZT0ibGluZS1oZWlnaHQ6bm9ybWFsO3RleHQtaW5kZW50OjA7dGV4dC1hbGlnbjpzdGFydDt0ZXh0LWRlY29yYXRpb24tbGluZTpub25lO3RleHQtZGVjb3JhdGlvbi1zdHlsZTpzb2xpZDt0ZXh0LWRlY29yYXRpb24tY29sb3I6IzAwMDt0ZXh0LXRyYW5zZm9ybTpub25lO2Jsb2NrLXByb2dyZXNzaW9uOnRiO2lzb2xhdGlvbjphdXRvO21peC1ibGVuZC1tb2RlOm5vcm1hbCIgZD0iTSAxNiAzIEMgOC44MzI0ODM5IDMgMyA4LjgzMjQ4MzkgMyAxNiBMIDMgMzQgQyAzIDQxLjE2NzUxNiA4LjgzMjQ4MzkgNDcgMTYgNDcgTCAzNCA0NyBDIDQxLjE2NzUxNiA0NyA0NyA0MS4xNjc1MTYgNDcgMzQgTCA0NyAxNiBDIDQ3IDguODMyNDgzOSA0MS4xNjc1MTYgMyAzNCAzIEwgMTYgMyB6IE0gMTYgNSBMIDM0IDUgQyA0MC4wODY0ODQgNSA0NSA5LjkxMzUxNjEgNDUgMTYgTCA0NSAzNCBDIDQ1IDQwLjA4NjQ4NCA0MC4wODY0ODQgNDUgMzQgNDUgTCAxNiA0NSBDIDkuOTEzNTE2MSA0NSA1IDQwLjA4NjQ4NCA1IDM0IEwgNSAxNiBDIDUgOS45MTM1MTYxIDkuOTEzNTE2MSA1IDE2IDUgeiBNIDM3IDExIEEgMiAyIDAgMCAwIDM1IDEzIEEgMiAyIDAgMCAwIDM3IDE1IEEgMiAyIDAgMCAwIDM5IDEzIEEgMiAyIDAgMCAwIDM3IDExIHogTSAyNSAxNCBDIDE4LjkzNjcxMiAxNCAxNCAxOC45MzY3MTIgMTQgMjUgQyAxNCAzMS4wNjMyODggMTguOTM2NzEyIDM2IDI1IDM2IEMgMzEuMDYzMjg4IDM2IDM2IDMxLjA2MzI4OCAzNiAyNSBDIDM2IDE4LjkzNjcxMiAzMS4wNjMyODggMTQgMjUgMTQgeiBNIDI1IDE2IEMgMjkuOTgyNDA3IDE2IDM0IDIwLjAxNzU5MyAzNCAyNSBDIDM0IDI5Ljk4MjQwNyAyOS45ODI0MDcgMzQgMjUgMzQgQyAyMC4wMTc1OTMgMzQgMTYgMjkuOTgyNDA3IDE2IDI1IEMgMTYgMjAuMDE3NTkzIDIwLjAxNzU5MyAxNiAyNSAxNiB6IiBmb250LXdlaWdodD0iNDAwIiBmb250LWZhbWlseT0ic2Fucy1zZXJpZiIgd2hpdGUtc3BhY2U9Im5vcm1hbCIgb3ZlcmZsb3c9InZpc2libGUiPjwvcGF0aD48L3N2Zz4=") 50% 50% no-repeat;
    background-size: 100%
}

.zoom-svg-instagram-stroke {
    display: inline-block;
    width: 30px;
    height: 30px;
    background: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHg9IjBweCIgeT0iMHB4IgogICAgIHdpZHRoPSI1MCIgaGVpZ2h0PSI1MCIKICAgICB2aWV3Qm94PSIwIDAgMjUyIDI1MiIKICAgICBzdHlsZT0iZmlsbDojMDAwMDAwOyI+PGcgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMi4zOTQsMi4zOTQpIHNjYWxlKDAuOTgxLDAuOTgxKSI+PGcgZmlsbD0ibm9uZSIgZmlsbC1ydWxlPSJub256ZXJvIiBzdHJva2U9Im5vbmUiIHN0cm9rZS13aWR0aD0ibm9uZSIgc3Ryb2tlLWxpbmVjYXA9ImJ1dHQiIHN0cm9rZS1saW5lam9pbj0ibm9uZSIgc3Ryb2tlLW1pdGVybGltaXQ9IjEwIiBzdHJva2UtZGFzaGFycmF5PSIiIHN0cm9rZS1kYXNob2Zmc2V0PSIwIiBmb250LWZhbWlseT0ibm9uZSIgZm9udC13ZWlnaHQ9Im5vbmUiIGZvbnQtc2l6ZT0ibm9uZSIgdGV4dC1hbmNob3I9Im5vbmUiIHN0eWxlPSJtaXgtYmxlbmQtbW9kZTogbm9ybWFsIj48ZyBpZD0ib3JpZ2luYWwtaWNvbiAxIiBmaWxsPSIjZmZmZmZmIiBzdHJva2U9IiNmZmZmZmYiIHN0cm9rZS13aWR0aD0iNSIgc3Ryb2tlLWxpbmVqb2luPSJyb3VuZCI+PHBhdGggZD0iTTE3MS4zNiwxNS4xMmMzNi4xMjQyOCwwIDY1LjUyLDI5LjM5NTcyIDY1LjUyLDY1LjUydjkwLjcyYzAsMzYuMTI0MjggLTI5LjM5NTcyLDY1LjUyIC02NS41Miw2NS41MmgtOTAuNzJjLTM2LjEyNDI4LDAgLTY1LjUyLC0yOS4zOTU3MiAtNjUuNTIsLTY1LjUydi05MC43MmMwLC0zNi4xMjQyOCAyOS4zOTU3MiwtNjUuNTIgNjUuNTIsLTY1LjUyek0yNS4yLDgwLjY0djkwLjcyYzAsMzAuNjc1ODggMjQuNzY0MTIsNTUuNDQgNTUuNDQsNTUuNDRoOTAuNzJjMzAuNjc1ODgsMCA1NS40NCwtMjQuNzY0MTIgNTUuNDQsLTU1LjQ0di05MC43MmMwLC0zMC42NzU4OCAtMjQuNzY0MTIsLTU1LjQ0IC01NS40NCwtNTUuNDRoLTkwLjcyYy0zMC42NzU4OCwwIC01NS40NCwyNC43NjQxMiAtNTUuNDQsNTUuNDR6TTE5Ni41Niw2NS41MmMwLDUuNTY3MDMgLTQuNTEyOTcsMTAuMDggLTEwLjA4LDEwLjA4Yy01LjU2NzAzLDAgLTEwLjA4LC00LjUxMjk3IC0xMC4wOCwtMTAuMDhjMCwtNS41NjcwMyA0LjUxMjk3LC0xMC4wOCAxMC4wOCwtMTAuMDhjNS41NjcwMywwIDEwLjA4LDQuNTEyOTcgMTAuMDgsMTAuMDh6TTE4MS40NCwxMjZjMCwzMC41NTg5NyAtMjQuODgxMDMsNTUuNDQgLTU1LjQ0LDU1LjQ0Yy0zMC41NTg5NywwIC01NS40NCwtMjQuODgxMDMgLTU1LjQ0LC01NS40NGMwLC0zMC41NTg5NyAyNC44ODEwMywtNTUuNDQgNTUuNDQsLTU1LjQ0YzMwLjU1ODk3LDAgNTUuNDQsMjQuODgxMDMgNTUuNDQsNTUuNDR6TTgwLjY0LDEyNmMwLDI1LjExMTMzIDIwLjI0ODY3LDQ1LjM2IDQ1LjM2LDQ1LjM2YzI1LjExMTMzLDAgNDUuMzYsLTIwLjI0ODY3IDQ1LjM2LC00NS4zNmMwLC0yNS4xMTEzMyAtMjAuMjQ4NjcsLTQ1LjM2IC00NS4zNiwtNDUuMzZjLTI1LjExMTMzLDAgLTQ1LjM2LDIwLjI0ODY3IC00NS4zNiw0NS4zNnoiPjwvcGF0aD48L2c+PHBhdGggZD0iTTAsMjUydi0yNTJoMjUydjI1MnoiIGZpbGw9Im5vbmUiIHN0cm9rZT0ibm9uZSIgc3Ryb2tlLXdpZHRoPSIxIiBzdHJva2UtbGluZWpvaW49Im1pdGVyIj48L3BhdGg+PGcgaWQ9Im9yaWdpbmFsLWljb24iIGZpbGw9IiNmZmZmZmYiIHN0cm9rZT0ibm9uZSIgc3Ryb2tlLXdpZHRoPSIxIiBzdHJva2UtbGluZWpvaW49Im1pdGVyIj48cGF0aCBkPSJNODAuNjQsMTUuMTJjLTM2LjEyNDI4LDAgLTY1LjUyLDI5LjM5NTcyIC02NS41Miw2NS41MnY5MC43MmMwLDM2LjEyNDI4IDI5LjM5NTcyLDY1LjUyIDY1LjUyLDY1LjUyaDkwLjcyYzM2LjEyNDI4LDAgNjUuNTIsLTI5LjM5NTcyIDY1LjUyLC02NS41MnYtOTAuNzJjMCwtMzYuMTI0MjggLTI5LjM5NTcyLC02NS41MiAtNjUuNTIsLTY1LjUyek04MC42NCwyNS4yaDkwLjcyYzMwLjY3NTg4LDAgNTUuNDQsMjQuNzY0MTIgNTUuNDQsNTUuNDR2OTAuNzJjMCwzMC42NzU4OCAtMjQuNzY0MTIsNTUuNDQgLTU1LjQ0LDU1LjQ0aC05MC43MmMtMzAuNjc1ODgsMCAtNTUuNDQsLTI0Ljc2NDEyIC01NS40NCwtNTUuNDR2LTkwLjcyYzAsLTMwLjY3NTg4IDI0Ljc2NDEyLC01NS40NCA1NS40NCwtNTUuNDR6TTE4Ni40OCw1NS40NGMtNS41NjcwMywwIC0xMC4wOCw0LjUxMjk3IC0xMC4wOCwxMC4wOGMwLDUuNTY3MDMgNC41MTI5NywxMC4wOCAxMC4wOCwxMC4wOGM1LjU2NzAzLDAgMTAuMDgsLTQuNTEyOTcgMTAuMDgsLTEwLjA4YzAsLTUuNTY3MDMgLTQuNTEyOTcsLTEwLjA4IC0xMC4wOCwtMTAuMDh6TTEyNiw3MC41NmMtMzAuNTU4OTcsMCAtNTUuNDQsMjQuODgxMDMgLTU1LjQ0LDU1LjQ0YzAsMzAuNTU4OTcgMjQuODgxMDMsNTUuNDQgNTUuNDQsNTUuNDRjMzAuNTU4OTcsMCA1NS40NCwtMjQuODgxMDMgNTUuNDQsLTU1LjQ0YzAsLTMwLjU1ODk3IC0yNC44ODEwMywtNTUuNDQgLTU1LjQ0LC01NS40NHpNMTI2LDgwLjY0YzI1LjExMTMzLDAgNDUuMzYsMjAuMjQ4NjcgNDUuMzYsNDUuMzZjMCwyNS4xMTEzMyAtMjAuMjQ4NjcsNDUuMzYgLTQ1LjM2LDQ1LjM2Yy0yNS4xMTEzMywwIC00NS4zNiwtMjAuMjQ4NjcgLTQ1LjM2LC00NS4zNmMwLC0yNS4xMTEzMyAyMC4yNDg2NywtNDUuMzYgNDUuMzYsLTQ1LjM2eiI+PC9wYXRoPjwvZz48cGF0aCBkPSJNMTI2LDI1MmMtNjkuNTg3ODgsMCAtMTI2LC01Ni40MTIxMiAtMTI2LC0xMjZ2MGMwLC02OS41ODc4OCA1Ni40MTIxMiwtMTI2IDEyNiwtMTI2djBjNjkuNTg3ODgsMCAxMjYsNTYuNDEyMTIgMTI2LDEyNnYwYzAsNjkuNTg3ODggLTU2LjQxMjEyLDEyNiAtMTI2LDEyNnoiIGZpbGw9Im5vbmUiIHN0cm9rZT0ibm9uZSIgc3Ryb2tlLXdpZHRoPSIxIiBzdHJva2UtbGluZWpvaW49Im1pdGVyIj48L3BhdGg+PHBhdGggZD0iTTEyNiwyNDYuOTZjLTY2LjgwNDM2LDAgLTEyMC45NiwtNTQuMTU1NjQgLTEyMC45NiwtMTIwLjk2djBjMCwtNjYuODA0MzYgNTQuMTU1NjQsLTEyMC45NiAxMjAuOTYsLTEyMC45NmgwYzY2LjgwNDM2LDAgMTIwLjk2LDU0LjE1NTY0IDEyMC45NiwxMjAuOTZ2MGMwLDY2LjgwNDM2IC01NC4xNTU2NCwxMjAuOTYgLTEyMC45NiwxMjAuOTZ6IiBmaWxsPSJub25lIiBzdHJva2U9Im5vbmUiIHN0cm9rZS13aWR0aD0iMSIgc3Ryb2tlLWxpbmVqb2luPSJtaXRlciI+PC9wYXRoPjxwYXRoIGQ9IiIgZmlsbD0ibm9uZSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIHN0cm9rZS1saW5lam9pbj0ibWl0ZXIiPjwvcGF0aD48cGF0aCBkPSIiIGZpbGw9Im5vbmUiIHN0cm9rZT0ibm9uZSIgc3Ryb2tlLXdpZHRoPSIxIiBzdHJva2UtbGluZWpvaW49Im1pdGVyIj48L3BhdGg+PHBhdGggZD0iIiBmaWxsPSJub25lIiBzdHJva2U9Im5vbmUiIHN0cm9rZS13aWR0aD0iMSIgc3Ryb2tlLWxpbmVqb2luPSJtaXRlciI+PC9wYXRoPjxwYXRoIGQ9IiIgZmlsbD0ibm9uZSIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIHN0cm9rZS1saW5lam9pbj0ibWl0ZXIiPjwvcGF0aD48L2c+PC9nPjwvc3ZnPg==") 50% 50% no-repeat;
    background-size: 100%;
    transition: all .5s cubic-bezier(0.215, 0.61, 0.355, 1)
}

.zoom-instagram-widget__item .hover-layout.small .hover-controls .dashicons {
    font-size: 15px;
    width: 15px;
    height: 15px
}

.zoom-instagram-widget__item .hover-layout.small .zoom-instagram-icon-wrap .zoom-svg-instagram-stroke {
    width: 18px;
    height: 18px
}

.zoom-instagram-widget__item .hover-layout.small .hover-controls .counter {
    padding-left: 5px;
    padding-right: 12px;
    font-size: 13px
}

.zoom-instagram-widget__item .hover-layout.small .hover-controls .counter:last-child {
    padding-right: 0
}

.zoom-instagram-widget-user-info {
    display: flex;
    padding: 0 0px 20px
}

.zoom-instagram-widget-user-info .zoom-instagram-widget-user-info-picture {
    flex: 1
}

.zoom-instagram-widget-user-info .zoom-instagram-widget-user-info-picture img {
    border-radius: 50%
}

.zoom-instagram-widget-user-info .zoom-instagram-widget-user-info-meta {
    display: flex;
    flex: 3;
    flex-direction: column;
    margin-left: 15px;
    text-align: left;
    justify-content: center
}

.zoom-instagram-widget-user-info .zoom-instagram-widget-user-info-about-data {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px
}

.zoom-instagram-widget-user-info .zoom-instagram-widget-user-info-stats {
    font-size: 14px;
    line-height: 1.2;
    justify-content: space-between;
    display: flex;
    text-align: center
}

.zoom-instagram-widget-user-info .zoom-instagram-widget-user-info-follow-button {
    padding: 0 24px;
    margin-top: 10px;
    background: #3897f0;
    color: #fff !important;
    font-size: 14px;
    font-weight: 600;
    line-height: 26px;
    font-family: -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Helvetica,Arial,sans-serif;
    text-transform: none;
    border-radius: 3px;
    outline: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
    border: none;
    box-shadow: none;
    text-decoration: none !important
}

.zoom-instagram-widget-user-info .zoom-instagram-widget-user-info-follow-button:hover {
    color: #fff;
    opacity: .8;
    box-shadow: none;
    border: none;
    text-decoration: none
}

.zoom-instagram-widget-user-info .zoom-instagram-widget-user-info-counts {
    font-weight: 600
}

.zoom-instagram-widget-user-info .zoom-instagram-widget-user-info-counts-subhead {
    opacity: .7;
    font-size: 14px
}

.zoom-instagram-widget__items .zoom-instagram-widget__item.media-icons-normal .svg-icon {
    opacity: 1
}

.zoom-instagram-widget__items .zoom-instagram-widget__item.media-icons-normal:hover .svg-icon {
    opacity: 0
}

.zoom-instagram-widget__items .zoom-instagram-widget__item.media-icons-hover .svg-icon {
    opacity: 0
}

.zoom-instagram-widget__items .zoom-instagram-widget__item.media-icons-hover:hover .svg-icon {
    opacity: 1
}

.zoom-instagram-widget__items .zoom-instagram-widget__item.media-icons-hover.media-icons-normal .svg-icon {
    opacity: 1
}

.zoom-instagram-widget__items .zoom-instagram-widget__item .zoom-instagram-date {
    position: absolute;
    display: flex;
    right: 10px;
    bottom: 5px;
    z-index: 1;
    font-weight: 500;
    color: #fff;
    transition: opacity .25s ease-in-out;
    -moz-transition: opacity .25s ease-in-out;
    -webkit-transition: opacity .25s ease-in-out
}

.zoom-instagram-widget__items .zoom-instagram-widget__item.date-hover .zoom-instagram-date {
    opacity: 0
}

.zoom-instagram-widget__items .zoom-instagram-widget__item.date-hover:hover .zoom-instagram-date {
    opacity: .6
}

.wpzoom-lightbox .mfp-inline-holder .mfp-content {
    max-width: none;
    height: 100%
}

.wpzoom-lightbox .mfp-container {
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px)
}

.wpz-insta-lightbox {
    pointer-events: all;
    display: flex;
    flex-direction: row;
    background-color: #fff;
    border-radius: 4px;
    max-height: 100%;
    position: relative;
    top: 50%;
    transform: translateY(-50%)
}

.wpz-insta-lightbox-wrapper {
    display: flex;
    justify-content: center;
    pointer-events: none;
    height: 80vh;
    position: relative;
    top: 50%;
    transform: translateY(-50%)
}

.wpz-insta-lightbox-wrapper .wpz-insta-lightbox .details-wrapper {
    width: 30%
}

.wpz-insta-lightbox-wrapper .wpz-insta-lightbox .details-wrapper .wpz-insta-header {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    padding: 16px;
    border-bottom: 1px solid #efefef
}

.wpz-insta-lightbox-wrapper .wpz-insta-lightbox .details-wrapper .wpz-insta-header .wpz-insta-avatar img {
    width: 42px;
    height: 42px;
    border-radius: 50%
}

.wpz-insta-lightbox-wrapper .wpz-insta-lightbox .details-wrapper .wpz-insta-header .wpz-insta-username a,.wpz-insta-lightbox-wrapper .wpz-insta-lightbox .details-wrapper .wpz-insta-header .wpz-insta-follow a {
    color: #262626;
    font-weight: 600;
    text-decoration: none;
    font-size: 14px
}

.wpz-insta-lightbox-wrapper .wpz-insta-lightbox .details-wrapper .wpz-insta-header .wpz-insta-username a:hover {
    text-decoration: underline
}

.wpz-insta-lightbox-wrapper .wpz-insta-lightbox .details-wrapper .wpz-insta-header .wpz-insta-follow a {
    color: #0095f6
}

.wpz-insta-lightbox-wrapper .wpz-insta-lightbox .details-wrapper .wpz-insta-header>div {
    margin-right: 13px;
    min-width: 42px
}

.wpz-insta-lightbox-wrapper .wpz-insta-lightbox .details-wrapper .wpz-insta-header .wpz-insta-buttons {
    display: flex
}

.wpz-insta-lightbox-wrapper .wpz-insta-lightbox .details-wrapper .wpz-insta-header .wpz-insta-buttons>div {
    padding: 5px
}

.wpz-insta-lightbox-wrapper .wpz-insta-lightbox .details-wrapper .wpz-insta-caption {
    color: #262626;
    line-height: 1.5;
    font-size: 14px;
    padding: 16px;
    font-weight: normal;
    overflow-y: scroll;
    max-height: 384px;
    border-bottom: 1px solid #efefef
}

.wpzoom-lightbox.mfp-gallery {
    z-index: 100000;
    pointer-events: none
}

.wpzoom-lightbox button.mfp-close {
    pointer-events: all;
    color: #fff;
    font-size: 50px;
    font-weight: 100;
    margin-top: 25px;
    margin-right: 15px
}

.wpzoom-lightbox .mfp-prevent-close {
    pointer-events: all
}

.wpzoom-lightbox button.mfp-close:hover {
    text-decoration: none
}

.wpz-insta-lightbox-wrapper .wpz-insta-lightbox .details-wrapper .wpz-insta-date {
    font-size: 11px;
    padding: 16px;
    color: #8e8e8e;
    flex: 1
}

.wpz-insta-lightbox-wrapper .wpz-insta-lightbox .image-wrapper {
    flex-grow: 1;
    text-align: center;
    position: relative;
    width: 100%;
    max-width: 70%;
    background: #000;
    border-radius: 4px 0 0 4px;
    overflow: hidden
}

.wpz-insta-lightbox-wrapper .wpz-insta-lightbox .image-wrapper img {
    max-height: 100%;
    max-width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    min-height: 100%;
    display: block;
    margin: 0 auto;
    padding: 0
}

.wpz-insta-lightbox-wrapper .wpz-insta-lightbox .image-wrapper .wpz-no-reel-link-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0,0,0,.2);
    display: flex;
    justify-content: center;
    align-items: center
}

.wpz-insta-lightbox-wrapper .wpz-insta-lightbox .image-wrapper .wpz-no-reel-link-wrapper .wpz-no-reel-link {
    font-size: 14px;
    padding: 10px 20px;
    color: #262626;
    background-color: rgba(255,255,255,.7);
    border-radius: 50px;
    line-height: 1.4;
    text-decoration: none;
    transition: all .2s ease
}

.wpz-insta-lightbox-wrapper .wpz-insta-lightbox .image-wrapper .wpz-no-reel-link-wrapper .wpz-no-reel-link:hover {
    background-color: rgba(255,255,255,.9)
}

.wpz-insta-lightbox-wrapper>.swiper {
    pointer-events: none;
    width: 1000px
}

.wpz-insta-lightbox-wrapper>.swiper .swiper-pagination-fraction,.wpz-insta-lightbox-wrapper>.swiper .swiper-pagination-custom,.wpz-insta-lightbox-wrapper>.swiper .swiper-horizontal>.swiper-pagination-bullets,.wpz-insta-lightbox-wrapper>.swiper .swiper-pagination-bullets.swiper-pagination-horizontal {
    bottom: 25px
}

.wpz-insta-lightbox-wrapper video {
    height: 100%;
    max-width: 100%;
    width: 100%
}

.wpz-insta-lightbox-wrapper .swiper-button-next,.wpz-insta-lightbox-wrapper .swiper-rtl .swiper-button-prev,.wpz-insta-lightbox-wrapper .swiper-button-prev,.wpz-insta-lightbox-wrapper .swiper--rtl .swiper-button-next {
    background-image: none
}

.wpz-insta-lightbox-wrapper>.swiper .swiper .swiper-button-prev,.wpz-insta-lightbox-wrapper>.swiper .swiper .swiper-button-next {
    --swiper-navigation-size: 30px;
    color: #000;
    background: #fff;
    width: var(--swiper-navigation-size);
    height: var(--swiper-navigation-size);
    border-radius: 50%
}

.wpz-insta-lightbox-wrapper>.swiper .swiper .swiper-button-prev::after,.wpz-insta-lightbox-wrapper>.swiper .swiper .swiper-button-next::after {
    font-size: 16px
}

.wpz-insta-lightbox-wrapper>.swiper>.swiper-wrapper {
    pointer-events: all
}

.wpz-insta-lightbox-wrapper>.swiper>.swiper-button-prev,.wpz-insta-lightbox-wrapper>.swiper>.swiper-button-next {
    position: fixed;
    pointer-events: all
}

.wpz-insta-lightbox-wrapper>.swiper .swiper-button-prev,.wpz-insta-lightbox-wrapper>.swiper .swiper-button-next {
    color: #fff;
    opacity: .75
}

.wpz-insta-lightbox-wrapper>.swiper .swiper-button-prev:hover,.wpz-insta-lightbox-wrapper>.swiper .swiper-button-next:hover {
    opacity: 1
}

.wpz-insta-lightbox-wrapper>.swiper .swiper-button-prev.swiper-button-disabled,.wpz-insta-lightbox-wrapper>.swiper .swiper-button-next.swiper-button-disabled {
    opacity: .25 !important
}

.wpz-insta-lightbox-wrapper .wpz-insta-lightbox .details-wrapper {
    display: flex;
    flex-direction: column;
    flex-grow: 1
}

.wpz-insta-lightbox-wrapper .wpz-insta-lightbox .details-wrapper .view-post {
    padding: 16px;
    text-decoration: none;
    font-size: 12px;
    color: #262626;
    font-weight: 400;
    line-height: 20px;
    display: flex;
    border-top: 1px solid #efefef;
    flex-wrap: wrap;
    justify-content: space-between
}

.wpz-insta-lightbox-wrapper .wpz-insta-lightbox .details-wrapper .view-post a {
    text-decoration: none;
    font-size: 12px;
    color: #262626;
    font-weight: 400;
    line-height: 20px;
    text-align: center;
    display: inline-block
}

.wpz-insta-lightbox-wrapper .wpz-insta-lightbox .details-wrapper .view-post a span {
    margin-right: 10px
}

.wpz-insta-lightbox-wrapper .wpz-insta-lightbox .details-wrapper .view-post .delimiter {
    padding: 0px 10px
}

.wp-admin .wp-block-wpzoom-instagram-block .zoom-instagram-widget__overlay,.wp-admin .zoom-instagram .zoom-instagram-widget__overlay {
    cursor: pointer
}

.wp-admin .wp-block-wpzoom-instagram-block .zoom-instagram-widget__items .zoom-instagram-widget__item .zoom-instagram-link,.wp-admin .zoom-instagram .zoom-instagram-widget__items .zoom-instagram-widget__item .zoom-instagram-link,.wp-admin .zoom-instagram .zoom-instagram-widget__header .zoom-instagram-widget__header-user a,.wp-admin .zoom-instagram .zoom-instagram-widget__footer .wpz-insta-view-on-insta-button:hover,.wp-admin .zoom-instagram .zoom-instagram-widget__footer .wpz-insta-view-on-insta-button:active,.wp-admin .zoom-instagram .zoom-instagram-widget__footer .wpzinsta-pro-load-more input[type=submit]:hover,.wp-admin .zoom-instagram .zoom-instagram-widget__footer .wpzinsta-pro-load-more input[type=submit]:active,.wp-admin .zoom-instagram .zoom-instagram-widget__footer .wpzinsta-pro-load-more button[type=submit]:hover,.wp-admin .zoom-instagram .zoom-instagram-widget__footer .wpzinsta-pro-load-more button[type=submit]:active {
    pointer-events: none
}

.wp-admin .zoom-instagram.layout-masonry .zoom-instagram-widget__items.zoom-instagram-widget__items--no-js .zoom-instagram-widget__item img,.wp-admin .zoom-instagram.layout-masonry .zoom-instagram-widget__items.zoom-instagram-widget__items--no-js .masonry-items-sizer img {
    filter: none
}

@-webkit-keyframes show {
    100% {
        transform: none;
        opacity: 1
    }
}

@keyframes show {
    100% {
        transform: none;
        opacity: 1
    }
}

:root {
    --swiper-navigation-color: white !important;
    --swiper-theme-color: white !important;
    --swiper-navigation-size: 30px
}

@media screen and (max-width: 1200px) {
    .wpz-insta-lightbox-wrapper .wpz-insta-lightbox {
        flex-wrap:wrap
    }

    .wpz-insta-lightbox-wrapper>.swiper {
        width: 86%
    }
}

@media screen and (max-width: 860px) {
    .wpz-insta-lightbox-wrapper .wpz-insta-lightbox .details-wrapper .wpz-insta-caption {
        font-size:12px;
        max-height: 134px
    }
}

@media screen and (max-width: 768px) {
    .wpz-insta-lightbox {
        flex-direction:column;
        max-height: none
    }

    .wpz-insta-lightbox-wrapper .wpz-insta-lightbox .image-wrapper img {
        max-height: 400px;
        min-width: 400px
    }

    .wpz-insta-lightbox-wrapper .wpz-insta-lightbox .image-wrapper {
        border-radius: 4px 4px 0 0;
        max-width: 100%;
        height: 65%
    }

    .wpz-insta-lightbox-wrapper .wpz-insta-lightbox .details-wrapper .wpz-insta-caption {
        max-height: 134px
    }

    .wpz-insta-lightbox-wrapper .wpz-insta-lightbox .details-wrapper {
        width: 100%;
        height: 35%
    }

    .zoom-instagram .zoom-instagram-widget__items.layout-fullwidth .zoom-instagram-widget__item {
        max-width: 160px
    }

    .zoom-instagram .zoom-instagram-widget__items.layout-fullwidth {
        grid-template-columns: repeat(6, 1fr) !important
    }
}

@media screen and (max-width: 600px) {
    .wpz-insta-lightbox-wrapper .wpz-insta-lightbox .image-wrapper img {
        min-height:280px;
        min-width: 280px
    }

    .wpz-insta-lightbox-wrapper>.swiper {
        width: 76%
    }

    .wpz-insta-lightbox-wrapper .wpz-insta-lightbox .image-wrapper {
        height: 55%
    }

    .wpz-insta-lightbox-wrapper .wpz-insta-lightbox .details-wrapper {
        height: 45%
    }

    .zoom-instagram.layout-grid.featured-layout.columns-5.featured-layout-11 .zoom-instagram-widget__item:first-child {
        grid-column: span 5 !important
    }

    .zoom-instagram.layout-grid.featured-layout.columns-6.featured-layout-16 .zoom-instagram-widget__item:first-child,.zoom-instagram.layout-grid.featured-layout.columns-6.featured-layout-17 .zoom-instagram-widget__item:nth-child(12n+1),.zoom-instagram.layout-grid.featured-layout.columns-6.featured-layout-17 .zoom-instagram-widget__item:nth-child(12n+8),.zoom-instagram.layout-grid.featured-layout.columns-6.featured-layout-18 .zoom-instagram-widget__item:nth-child(18n+1),.zoom-instagram.layout-grid.featured-layout.columns-6.featured-layout-18 .zoom-instagram-widget__item:nth-child(18n+14) {
        grid-column: span 5 !important;
        grid-row: span 5 !important
    }

    .zoom-instagram.layout-grid.featured-layout.columns-6.featured-layout-19 .zoom-instagram-widget__item:nth-child(48n+1),.zoom-instagram.layout-grid.featured-layout.columns-6.featured-layout-19 .zoom-instagram-widget__item:nth-child(48n+12),.zoom-instagram.layout-grid.featured-layout.columns-6.featured-layout-19 .zoom-instagram-widget__item:nth-child(48n+29),.zoom-instagram.layout-grid.featured-layout.columns-6.featured-layout-19 .zoom-instagram-widget__item:nth-child(48n+36) {
        grid-column: span 4 !important;
        grid-row: span 4 !important
    }

    .zoom-instagram.layout-grid.featured-layout.columns-5.featured-layout-14 .zoom-instagram-widget__item:nth-child(38n+1) {
        grid-column: span 3 !important;
        grid-row: span 3 !important
    }

    .zoom-instagram .zoom-instagram-widget__items.layout-fullwidth .zoom-instagram-widget__item {
        max-width: 130px
    }

    .zoom-instagram .zoom-instagram-widget__items.layout-fullwidth {
        grid-template-columns: repeat(4, 1fr) !important
    }
}


.zoom-instagram-widget__items .zoom-instagram-widget__item {
    min-width: 210px;
    height: 300px;
    padding: 0px;
    margin: 0px;
}

.zoom-instagram-widget__items .zoom-instagram-widget__item:nth-child(even) {
    margin: 20px 0px 0px;
}

.zoom-instagram-widget__items .zoom-instagram-widget__item,
.zoom-instagram-widget__item .zoom-instagram-widget__item-inner-wrap,
.zoom-instagram .zoom-instagram-widget__items.layout-fullwidth .zoom-instagram-widget__item img {
    border-radius: 12px;
}

@media (max-width: 1400px) {
    .zoom-instagram.layout-fullwidth.columns-3 {
        margin: 0 calc((100% - 100vw) / 2);
        padding: 0px !important;
        overflow: auto;
    }
    .zoom-instagram.layout-fullwidth.columns-3 .zoom-instagram-widget__items-wrapper {
        overflow: auto;
        width: 100vw !important;
        max-width: initial !important;
        margin-right: calc((100% - 100vw) / 2) !important;
        padding: 0px 32px !important;
    }
    .zoom-instagram-widget__items .zoom-instagram-widget__item:last-child {
        padding-right: 20px;
    }
}

@media (max-width: 600px) {
    .zoom-instagram .zoom-instagram-widget__items.layout-fullwidth {
        grid-template-columns: repeat(6,1fr) !important;
    }
}

/*---------- Instagram END ----------*/

/*---------- 404 PAGE ----------*/

.page-404 {
    padding: 0px 0px 75px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.page-404-wrapper {
    max-width: 790px;
    margin-top: 20px;
    text-align: center;
}

.page-404-number {
    font-size: 300px;
    font-weight: 600;
    line-height: 1.1em;
    letter-spacing: -2.72px;
}

.page-404-button {
    margin-top: 24px;
}

@media (max-width: 1024px) {
    .page-404-number {
        font-size: 200px;
    }
}

@media (max-width: 767px) {
    .page-404 {
        padding: 0px 0px 50px;
    }
    .page-404-number {
        font-size: min(28vw, 200px);
    }

    .page-404-button {
        margin-top: 16px;
    }
}

/*---------- 404 PAGE END ----------*/

/*---------- Floating messengers START ----------*/

.floating-messengers {
  position: fixed;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 9999;
}

.floating-messengers a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.floating-messengers a:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 18px rgba(0,0,0,0.3);
}

/* Telegram */
.floating-messengers a.telegram {
  background-color: #0088cc;
}

/* WhatsApp */
.floating-messengers a.whatsapp {
  background-color: #25D366;
}

.floating-messengers svg {
  width: 26px;
  height: 26px;
  fill: #fff;
}

.floating-messengers .telegram svg {
    margin-left: -3px;
}

/* Мобильная адаптация — виджет уезжает вниз */
@media (max-width: 768px) {
  .floating-messengers {
    top: auto;
    bottom: 20px;
    right: 10px;
    transform: none;
  }

  .floating-messengers a {
    width: 40px;
    height: 40px;
  }

  .floating-messengers svg {
    width: 20px;
    height: 20px;
  }
}

/*---------- Floating messengers END ----------*/