@media (max-width: 1000px) {
    .text_camper {width: 450px;}
    .textarea_camper {width: 440px;}
}

@media (min-width:1000px) and (max-width:1320px) {
    .text_camper {width: 450px;}
    .textarea_camper {width: 440px;}
}

@media (min-width:1320px) and (max-width:1640px) {
    .text_camper {width: 900px;}
    .textarea_camper {width: 890px;}
}

@media (min-width: 1640px) {
    .text_camper {width: 900px;}
    .textarea_camper {width: 890px;}
}

.text_camper {
    font-family: fonts;
    margin-left:0px;
    outline: none;
    border: 1px solid rgba(00,00,00, 0.2);
    height: 45px; /* Высота */
    padding-left: 10px; /* Поля */
    font-size: 25px; /* Размер текста */
    vertical-align: middle; /* Выравнивание по середине */
    text-align: left;
    background: #ffffff;
    border-radius: 5px;
    margin-bottom: 25px;
    margin-right: 7px;
}

.text_camper_small {
    font-family: fonts;
    margin-left:0px;
    width: 450px; /* Ширина поля с кнопкой */
    outline: none;
    border: 1px solid rgba(00,00,00, 0.2);
    height: 45px; /* Высота */
    padding-left: 10px; /* Поля */
    font-size: 25px; /* Размер текста */
    vertical-align: middle; /* Выравнивание по середине */
    text-align: left;
    background: #ffffff;
    border-radius: 5px;
    margin-bottom: 25px;
    margin-right: 7px;
}

.textarea_camper{
    font-family: fonts;
    border: none;
    border: 1px solid rgba(00,00,00, 0.2);
    height: 200px; /* Высота */
    padding: 5px 10px 5px 10px; /* Поля */
    font-size: 25px; /* Размер текста */
    line-height: 150%;
    -webkit-appearance: none;
    border-radius: 5px;
    margin-bottom: 25px;
}   