.map_container {
    height: 80vh;
    margin-bottom: 70px;
}
.map_container .world-map__world {
    height: 100%;
    text-align: center;
}
.world-map {
    height: 100%;
}
.world-map .world-map__world svg {
    height: 100%;
}
.world-map .world-map__world path {
    transition: opacity 250ms, transform 250ms, top 250ms, left 250ms;
    fill: #666;
    transform-origin: 50% 50%;
}
.world-map .world-map__world path:hover {
    fill: #008cc1;
    cursor: pointer;
}

/* ========================================
   TRAVEL DESIGN STUDIO - CONTACT FORM 7
======================================== */

.tds-contact-form {
    width: 100%;
}


/* GRID
---------------------------------------- */

.tds-form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 40px;
    row-gap: 35px;
}


/* CAMPI
---------------------------------------- */

.tds-form-field {
    margin-bottom: 35px;
}

.tds-form-grid .tds-form-field {
    margin-bottom: 0;
}

.tds-form-field label {
    display: block;
    margin-bottom: 10px;

    font-family: inherit;
    font-size: 13px;
    font-weight: 500;
    line-height: 1.4;

    text-transform: uppercase;
    letter-spacing: 0.08em;
}


/* INPUT
---------------------------------------- */

.tds-contact-form input[type="text"],
.tds-contact-form input[type="email"],
.tds-contact-form input[type="tel"],
.tds-contact-form textarea {

    width: 100%;
    box-sizing: border-box;

    padding: 11px 0 13px;

    font-family: inherit;
    font-size: 17px;
    line-height: 1.5;

    color: inherit;
    background: transparent;

    border: 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.25);

    border-radius: 0;
    box-shadow: none;

    outline: none;

    transition:
        border-color 0.25s ease,
        background-color 0.25s ease;
}


/* FOCUS
---------------------------------------- */

.tds-contact-form input[type="text"]:focus,
.tds-contact-form input[type="email"]:focus,
.tds-contact-form input[type="tel"]:focus,
.tds-contact-form textarea:focus {

    border-bottom-color: currentColor;
    background: transparent;
}


/* TEXTAREA
---------------------------------------- */

.tds-contact-form textarea {
    min-height: 140px;
    resize: vertical;
}


/* MESSAGGIO
---------------------------------------- */

.tds-form-message {
    margin-top: 40px;
}


/* PRIVACY
---------------------------------------- */

.tds-form-privacy {
    margin-top: 5px;
    margin-bottom: 35px;

    font-size: 13px;
    line-height: 1.6;
}

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

.tds-form-privacy label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.tds-form-privacy input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin: 2px 8px 0 0;

    flex: 0 0 auto;

    accent-color: #222;
}

.tds-form-privacy a {
    color: inherit;
    text-decoration: underline;
    text-underline-offset: 3px;
}


/* PULSANTE
---------------------------------------- */

.tds-form-submit {
    margin-top: 10px;
}

.tds-contact-form input[type="submit"] {

    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 52px;

    padding: 0 34px;

    font-family: inherit;
    font-size: 13px;
    font-weight: 500;
    line-height: 1;

    text-transform: uppercase;
    letter-spacing: 0.08em;

    color: #fff;
    background: #222;

    border: 1px solid #222;
    border-radius: 0;

    cursor: pointer;

    transition:
        color 0.25s ease,
        background-color 0.25s ease;
}

.tds-contact-form input[type="submit"]:hover {
    color: #222;
    background: transparent;
}


/* CF7 VALIDAZIONE
---------------------------------------- */

.tds-contact-form .wpcf7-not-valid {
    border-bottom-color: #b3261e !important;
}

.tds-contact-form .wpcf7-not-valid-tip {
    margin-top: 7px;

    font-size: 12px;
    line-height: 1.4;
}


/* MESSAGGIO CF7
---------------------------------------- */

.tds-contact-form ~ .wpcf7-response-output,
.wpcf7 form .wpcf7-response-output {
    margin: 30px 0 0;
    padding: 15px 20px;

    font-size: 14px;

    border-width: 1px;
}


/* SPINNER
---------------------------------------- */

.tds-contact-form .wpcf7-spinner {
    margin: 0 0 0 15px;
}


/* MOBILE
---------------------------------------- */

@media (max-width: 767px) {

    .tds-form-grid {
        grid-template-columns: 1fr;
        row-gap: 28px;
    }

    .tds-form-message {
        margin-top: 28px;
    }

    .tds-contact-form input[type="submit"] {
        width: 100%;
    }

}