.contacts-map {
    margin-bottom: 20px;
    max-width: 650px;
    max-height: 300px;
    overflow: hidden;
}

.contacts-map iframe {
    max-width: 650px;
    max-height: 300px;
}

input[type="checkbox"].form-control {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    width: 18px;
    height: 18px;
    border: 2px solid #ccc;
    border-radius: 4px;
    display: inline-block;
    position: relative;
    cursor: pointer;
    vertical-align: middle;
    background-color: #fff;
    transition: all 0.2s ease;
    box-shadow: none;
    padding: 0;
    margin-right: 5px;
}

input[type="checkbox"].form-control:hover {
    border-color: #999;
}

input[type="checkbox"].form-control:checked {
    border-color: #008d99;
    background-color: #008d99;
}

input[type="checkbox"].form-control:checked::after {
    content: '';
    position: absolute;
    left: 4px;
    top: 0px;
    width: 5px;
    height: 10px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

label:has(input[type="checkbox"].form-control),
label:has(.form-control[type="checkbox"]) {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.9375rem;
    cursor: pointer;
    user-select: none;
}

.rutube-header {
    display: inline-block;
    width: 19px;
    height: 16px;
    background: url("/templates/modern/images/icons/rutube.svg") no-repeat;
    background-size: contain;
}