/* форма обратнйо связи */
.j-form {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.j-form textarea {
    max-width: 100%;
    min-width: 100%;
}

.j-form-input {
    width: 100%;
    border: 1px solid #D7D7D7;
    padding: 8px;
    box-sizing: border-box;
    font-size: 16px;
    border-radius: 2px;
    margin: 6px 0px;
}

.j-form-input:focus,
.j-form-texarea:focus,
.j-form-select:focus {
    outline: none;
    border: 1px solid #fab702;
}

.j-form-texarea {
    width: 100%;
    height: auto;
    margin-bottom: 8px;
    border: 1px solid #d6d6d6;
    padding: 5px 10px;
    box-sizing: border-box;
    border-radius: 4px;
    max-width: 100%;
    min-width: 100%;
}

.j-form-select {
    width: 100%;
    height: auto;
    margin-bottom: 8px;
    border: 1px solid #d6d6d6;
    padding: 5px 10px;
    box-sizing: border-box;
    border-radius: 4px;
    color: #757575;
}

.j-form-file {
    width: 100%;
    height: auto;
    margin-bottom: 8px;
    color: #757575;
}

.j-form-buttons {
    display: flex;
    width: 100%;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    border: none;
    margin: 14px 0px;
    justify-content: center;
}

.j-form-send {
    padding: 8px;
    background-color: #fab702;
    color: #fff;
    font-size: 16px;
    cursor: pointer;
    width: 100%;
}

.j-form-send[disabled] {
    background-color: #7a9b98;
}

.j-form-send:hover {
    background-color: #009D91;
}

.j-form-send[disabled]:hover {
    background-color: #7a9b98;
    cursor: unset;
}

.j-form-policy {
    display: flex;
    border: none;
    margin: 0;
    padding: 0;
    width: 100%;
    justify-content: center;
    margin: 0px;
    align-items: center;
}

.j-form-policy input {
    display: none;
}

.j-form-chek-policy {
    width: 14px;
    height: 14px;
    border: 1px solid #fab702;
    border-radius: 2px;
    margin-right: 8px;
    border-radius: 2px;
    background-color: #fff;
    margin-right: 8px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1px;
    transition: 0.5s;
}

.j-form-chek-policy:before {
    content: '';
}

.j-form-policy input:checked+.j-form-chek-policy {
    background-color: #fab702;
}

.j-form-policy input:checked+.j-form-chek-policy:before {
    content: '\2713';
    color: #fff;
    font-size: 12px;
    font-weight: 600;
}

.j-form-label-policy {
    cursor: pointer;
    -moz-user-select: none;
    -khtml-user-select: none;
    -webkit-user-select: none;
    user-select: none;
    letter-spacing: 0px;
    font-size: 14px;
}

.j-form-info {
    background: #fff;
    width: 100%;
    padding: 8px;
    border: 1px solid #D7D7D7;
    border-radius: 2px;
    box-sizing: border-box;
    color: #fff;
    display: none;
    margin-top: 12px;
}