

.kontakt_container {
    padding: 30px 15px 90px 15px;
    display: flex;
    @media (min-width: 1300px) {
        padding: 30px 0 90px 0;
    }
}
.content {
    display: flex;
    flex-direction: column-reverse;
    gap: 30px;
    width: auto;
    border-right: unset;
    padding-right: unset;
    @media (min-width: 768px) {
        flex-direction: column;
        width: 70%;
        padding-right: 30px;
        border-right: 1px solid var(--grey-100);
    }
}
.maps_container {
    display: flex;
    gap: 15px;
    flex-direction: column;
    @media (min-width: 480px) {
        flex-direction: row;
        align-items: flex-start;
    }
}
.map {
    display: flex;
    flex-direction: column;
    gap: 10px;
    justify-content: center;
    iframe {
        border: 0;
        max-width: 600px;
        max-height: 700px;
        height: 100%;
        width: 100%;
    }
}

.mobile_contacts {
    display: flex;
    flex-direction: column;
    gap: 15px;
    @media (min-width: 768px) {
        display: none;
    }
}
.contacts {
    width: 30%;
    display: none;
    flex-direction: column;
    gap: 30px;
    padding-left: 30px;
    @media (min-width: 768px) {
        display: flex;
    }
}
.contact_item {
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.kontakt_form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.inputs_container {
    display: flex;
    gap: 15px;
    flex-direction: column;
    @media (min-width: 480px) {
        flex-direction: row;
    }
}
.error_message {
    color: red;
    font-size: 12px;
    margin-top: 5px;
}
.input_error_container {
    display: flex;
    flex-direction: column;
    flex: 1;
}
.kontakt_input_container {
    display: flex;
    max-width: 400px;
    width: 100%;
}
.kontakt_button_container {
    display: flex;
    flex-direction: column;
    gap: 5px;
    button {
        max-width: 300px;
        width: 100%;
    }
}
.kontakt-message {
    font-size: 15px;
    margin-top: 10px;
}
.kontakt-message.success {
    color: green;
}
.kontakt-message.error {
    color: red;
}
.checkbox {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: sans-serif;
    font-size: 14px;
    color: #555;
    cursor: pointer;
}

.checkbox input {
    display: none;
}

.checkmark {
    width: 18px;
    height: 18px;
    border: 2px solid var(--orange-700); /* оранжевая рамка */
    border-radius: 4px;
    position: relative;
    flex-shrink: 0;
}

/* галочка */
.checkmark::after {
    content: "";
    position: absolute;
    left: 4px;
    top: 0px;
    width: 5px;
    height: 10px;
    border: solid var(--orange-700);
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
    opacity: 0;
}

/* состояние checked */
.checkbox input:checked + .checkmark::after {
    opacity: 1;
}