.cc-gmap iframe {
    width: 100%;
    height: 450px;
    border: none;
    filter: grayscale(100%);
}


/* FORM */
.cc-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.cc-field {
    box-sizing: border-box;
    width: 100% !important;
}

.cc-field label {
    display: block;
    font-weight: 500;
    margin-bottom: 6px;
}

.cc-field input,
.cc-field textarea {
    width: 100%;
    padding: 15px;
    font-size: 1em;
    border-radius: 8px;
    background: #f0f0f0;
    border: 1px transparent solid;
    transition: box-shadow 0.2s;
    margin: 0 0 2% 0;
    font-family: 'Neue Frutiger', Outfit, Inter, poppins;
    resize: none;
}

.cc-field input:focus,
.cc-field textarea:focus {
  outline: none;
  background: #f3f4ff;
  color: #6469aa;
}

/* honeypot */
#cc-contact-form input[name="company"] {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* správy */
.cc-form-msg {
    margin-top: 10px;
    font-size: 14px;
}

.cc-form-msg.success {
    color: green;
    font-size: 1.05rem;
    width: 100%;
}

.cc-form-msg.error {
    color: red;
}


.cc-box-contact {
  display: flex;
  justify-content: normal;
  align-items: normal;
  gap: 15px;
  box-sizing: border-box;
}

.cc-box-contact div {
  box-sizing: border-box;
  width: 50%;
}

.cc-box-contact strong {
  font-size: 1.3rem !important;
}

.cc-box-contact svg {
  vertical-align: middle;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .cc-gmap iframe {
        height: 300px;
    }

    .cc-box-contact {
      display: block;
    }

    .cc-box-contact div, .cta-btn {
      width: 100%;
    }

}
