.social-intro {
    display: flex;
    gap: 8px;
    a {
        width: 40px;
        height: 40px;
        font-size: 20px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        border: 1px solid #DADADA;
        color: var(--color1);
        transition: 0.4s;
        &:hover {
            color: var(--color2);
            border-color: var(--color2);
        }
    }
}
.contact-info {
    margin-top: clamp(24px, 3vw, 48px);
    gap: clamp(12px, 2vw, 20px);
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    & li {
        display: flex;
        align-items: center;
        position: relative;
        justify-content: space-between;
        flex-direction: column;
        border-radius: 24px;
        padding: 16px;
        background: var(--nature2);
        gap: 16px;
        font-size: 16px;
        color: var(--gray);
        font-family: var(--Medium);
        text-align: center;
        .wrapper-calls {
            display: flex;
            gap: 10px;
            flex-direction: row-reverse;
            a {
                position: relative;
                padding-right: 10px;
                &:before {
                    content: '';
                    width: 6px;
                    height: 1px;
                    background: black;
                    position: absolute;
                    right: -3px;
                    top: 50%;
                    transform: translateY(-50%);
                }
            }
            a:nth-last-child(1):before {
                content: none;
            }
        }
        & p {
            display: flex;
            align-items: center;
            flex-direction: column;
            gap: 8px;
            font-size: 18px;
            color: var(--black);
        }
        span {
            color: var(--gray);
            line-height: 32px;
        }
        a {
            color: var(--gray);
            transition: 0.4s;
            line-height: 32px;
            &:hover {
                color: var(--color1);
            }
        }
        & i {
            width: 48px;
            height: 48px;
            flex: 0 0 48px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: var(--white);
            border-radius: 50%;
            font-size: 24px;
            color: var(--color2);
        }
    }
}
.websima-map {
    height: 232px !important;
    border-radius: 32px !important;
}
.contact-dir-button {
    position: absolute;
    bottom: 24px;
    top: auto;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 8px;
    background: var(--nature2);
    border-radius: 32px;
    height: fit-content;
    & a {
        width: 40px;
        height: 40px;
        flex: 0 0 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: white;
        border-radius: 50%;
        transition: 0.4s;
        &:hover {
            background: var(--color1);
        }
    }
}
@media only screen and (min-width: 768px) {
    .contact-dir-button {
        flex-direction: column;
        left: 32px;
        top: 50%;
        transform: translateY(-50%);
    }
    .contact-info li {
        flex-direction: row;
        p {
            flex-direction: row;
        }
    }
}
/** Form **/
.websima-contact-form {
    position: relative;
    margin-block: clamp(24px, 2vw, 32px) 88px;
}
.acf-form {
    margin-top: clamp(70px, 6vw, 86px);
    & .acf-form-fields {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        row-gap: clamp(24px, 4vw, 64px);
        & .acf-field-textarea {
            width: 100%;
        }
    }
    .acf-field {
        border: 0 !important;
        padding: 0 !important;
        width: calc(50% - 16px);
        & .acf-label {
            margin-bottom: 16px !important;
            font-size: clamp(16px, 2vw, 18px);
            font-family: var(--Medium);
            color: var(--black);
            z-index: 1;
            line-height: 1;
            height: 24px;
        }
    }
}
/** Map **/
#contact-tab {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: clamp(32px, 3vw, 40px);
    gap: 12px;
    background: var(--nature);
    width: fit-content;
    margin-inline: auto;
    border-radius: 32px;
    padding: 8px;
    overflow: auto;
    max-width: -webkit-fill-available;
    .contact-item {
        transition: 0.4s;
        a {
            min-width: 120px;
            display: flex;
            align-items: center;
            justify-content: center;
            min-height: 40px;
            background: var(--gray2);
            color: var(--black);
            border-radius: 12px;
            transition: 0.4s;
            border-radius: 32px;
            padding: 4px 16px;
            background: var(--nature2);
        }
        &:hover a,
        &.active a {
            background: var(--color2);
            color: white;
        }
    }
}
.title-map {
    font-size: 18px;
    margin-bottom: 1.5rem;
}
.leaflet-marker-icon.leaflet-zoom-animated.leaflet-interactive {
    width: clamp(70px, 6vw, 86px) !important;
    height: auto !important;
}
.mapp-container .mapp-footer .triggers.left {
    display: none;
}
/** Form **/
.acf-form-submit {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-top: clamp(24px, 3vw, 40px);
    justify-content: center;
}
.acf-loading, .acf-spinner {
    position: absolute;
    right: calc(50% + 5rem);
    transform: translateX(50%);
}
.acf-notice.-error {
    background: var(--danger) !important;
    border: 0 !important;
    margin-bottom: 64px;
    border-radius: 12px;
    min-height: 40px;
    display: flex;
    align-items: center;
    & p {
        font-size: 13px;
        line-height: 1.5;
        margin: .5em 0;
        text-shadow: none;
        color: white;
    }
}
@media only screen and (min-width: 768px) {
    .contact-info {
        grid-template-columns: repeat(2, 1fr);
        & li.address {
            grid-column: span 2;
        }
    }
    #contact-tab {
        justify-content: center;
        position: absolute;
        z-index: 1;
        right: 50%;
        transform: translateX(50%);
        top: 292px;
        max-width: fit-content;
    }
    .websima-map {
        height: 326px !important;
    }
}
/** Form **/
.acf-field .acf-notice.-error {
    position: absolute;
    bottom: -38px;
    line-height: 1 !important;
    border: 0 !important;
    background: none !important;
    color: var(--danger) !important;
    font-size: clamp(14px, 2vw, 16px) !important;
    margin: 0;
    padding: 0;
    padding-right: 8px;
    &:before {
        content: "\e927";
        font-family: 'icomoon';
        margin-left: 4px;
        font-size: 18px;
    }
}
.acf-notice p {
    margin: 0 !important;
}
.acf-notice .acf-notice-dismiss {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1px 0 0 2px;
}
@media only screen and (max-width: 768px) {
    .acf-field {
        width: 100%;
    }
    .acf-field .acf-notice.-error {
        bottom: -35px;
    }
    #contacts-tab {
        justify-content: start;
        overflow-x: scroll;
    }
}
.websima-contact-form .updated {
    margin-bottom: 4rem;
    background: green;
    color: white;
    border-radius: 1.5rem;
    min-height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}
/** Form **/
.websima-single-form .acf-field {
    position: relative;
    width: 100%;
    border: 0 !important;
    padding: 0 !important;
}
.acf-table {
    border: 1px solid #6666661A !important;
}
.text-cform .acf-input {
    display: flex;
}
.acf-form-submit .c-btn {
    justify-content: center;
}
.websima-form-wrap .updated {
    background: var(--color1);
    color: white;
    min-height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.acf-notice .acf-notice-dismiss {
    top: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2px 0 0 1px;
}
.acf-input .acf-notice.-error p {
    color: var(--danger) !important;
}
@media only screen and (max-width: 768px) {
    .acf-field {
        width: 100% !important;
    }
    .acf-fields {
        row-gap: 28px;
    }
    .tab-content .row {
        gap: 24px;
    }
    #contacts-tab {
        margin: 32px 0 16px;
    }
    textarea::placeholder,
    input::placeholder {
        font-size: 14px;
    }
}
/* Form Builder  */
.acf-repeater .acf-row,
.acf-repeater .acf-row-handle.order,
.acf-repeater .acf-row-handle.remove {
    background: white !important;
}
.acf-row-handle.remove {
    position: absolute !important;
    left: 20px;
    top: 20px;
    width: 100px !important;
    padding: 0 !important;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 0 !important;
    gap: 8px;
}
.acf-repeater .acf-row {
    display: flex;
    /*flex-wrap: wrap;*/
    width: 100%;
    position: relative;
    flex: 0 0 100%;
    padding-top: 66px;
    padding-right: 16px;
}
tbody.ui-sortable {
    display: flex;
    flex-direction: column;
}
.acf-repeater > table {
    background: white !important;
    display: flex;
    flex-direction: column;
}
.acf-table > tbody > tr > td {
    margin: 0 !important;
}
.select2.select2-container {
    width: 100% !important;
}
.acf-repeater .acf-row-handle .acf-icon {
    margin: 0 !important;
    width: 30px;
    height: 30px;
    display: flex !important;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 50%;
    background: var(--color1);
    color: white;
    transition: 0.4s;
    position: unset !important;
}
.acf-repeater .acf-row-handle .acf-icon:hover {
    background: var(--color2) !important;
    color: white !important;
}
.acf-icon.-duplicate:before, .acf-icon.-duplicate:after {
    content: "";
    display: block;
    box-sizing: border-box;
    width: 12px !important;
    height: 12px !important;
    position: absolute;
    top: 55% !important;
    left: 48% !important;
    transform: translate(-50%, -50%);
}
.select2-container--default .select2-selection--single {
    background-color: #fff;
    border: 1px solid #6666661A !important;
    border-radius: 1rem !important;
    min-height: 59px;
    display: flex !important;
    align-items: center;
}
.select2-container--default .select2-selection--single span {
    width: 100%;
    min-height: 59px;
    display: flex;
    align-items: center;
}
.select2-dropdown {
    border: 1px solid #6666661A !important;
}
.select2-selection__rendered {
    display: flex !important;
}
.acf-repeater.-empty > table > thead > tr > th:not(:first-child) {
    width: 50%;
}
td.acf-row-handle.order.ui-sortable-handle {
    width: 32px;
    background: var(--color2) !important;
    color: white;
    height: 59px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 32px;
    border-radius: 8px;
}
.acf-field-products {
    flex: 0 0 65%;
}
.acf-button.button.button-primary.button-large {
    width: 10rem;
}
.acf-repeater label {
    font-size: 12px;
}
@media only screen and (max-width: 768px) {
    .acf-field-products {
        flex: 0 0 calc(100% - 32px)
    }
    .acf-field-number {
        padding-right: 0px;
    }
    .acf-repeater .acf-row {
        flex-wrap: wrap;
        padding-left: 1rem;
    }
    .acf-field-products .acf-input {
        padding-right: 10px;
    }
}
.s-contact #message {
    display: flex;
    align-items: center;
    justify-content: center;
    background: green;
    color: white;
    min-height: 48px;
    border-radius: 12px;
}
.social-tab {
    display: flex;
    align-items: center;
    position: relative;
    justify-content: space-between;
    flex-direction: column;
    border-radius: 24px;
    padding: 16px;
    background: var(--nature2);
    gap: 16px;
    font-size: 16px;
    color: var(--gray);
    font-family: var(--Medium);
    text-align: center;
    margin-top: clamp(12px, 2vw, 20px);
    p {
        display: flex;
        align-items: center;
        flex-direction: column;
        gap: 8px;
        font-size: 18px;
        color: var(--black);
        & i {
            width: 48px;
            height: 48px;
            flex: 0 0 48px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: var(--white);
            border-radius: 50%;
            font-size: 24px;
            color: var(--color2);
        }
    }
}
@media only screen and (min-width: 768px) {
    .social-tab {
        flex-direction: row;
        p {
            flex-direction: row;
        }
    }
}