2023-05-13 16:59:09 +00:00
|
|
|
.form {
|
2022-09-09 11:53:35 +00:00
|
|
|
display: flex;
|
2023-05-13 16:59:09 +00:00
|
|
|
flex-direction: column;
|
2022-09-09 11:53:35 +00:00
|
|
|
|
2023-08-31 21:53:07 +00:00
|
|
|
@include media-breakpoint-down(xxl) {
|
2022-11-20 21:23:12 +00:00
|
|
|
margin-bottom: 2.4rem;
|
|
|
|
}
|
2023-05-13 16:59:09 +00:00
|
|
|
}
|
2022-11-20 21:23:12 +00:00
|
|
|
|
2023-05-13 16:59:09 +00:00
|
|
|
.controls {
|
|
|
|
display: flex;
|
|
|
|
width: 100%;
|
|
|
|
|
2023-08-31 21:53:07 +00:00
|
|
|
@include media-breakpoint-down(xxl) {
|
2022-10-19 22:16:17 +00:00
|
|
|
flex-direction: column;
|
|
|
|
}
|
|
|
|
|
2023-05-13 16:59:09 +00:00
|
|
|
.input {
|
2023-05-01 18:32:32 +00:00
|
|
|
@include font-size(2rem);
|
2022-09-09 11:53:35 +00:00
|
|
|
background: none;
|
|
|
|
color: #fff;
|
|
|
|
font-family: inherit;
|
2022-11-02 21:43:38 +00:00
|
|
|
margin: 0;
|
|
|
|
overflow: hidden;
|
|
|
|
text-overflow: ellipsis;
|
2023-06-16 14:47:24 +00:00
|
|
|
padding: 0.2em 0.5em;
|
2022-09-09 11:53:35 +00:00
|
|
|
width: 100%;
|
2023-05-13 16:59:09 +00:00
|
|
|
outline: none;
|
|
|
|
border: 1px solid #fff;
|
|
|
|
border-radius: 0;
|
|
|
|
height: 4rem;
|
2022-09-09 11:53:35 +00:00
|
|
|
|
2023-08-31 21:53:07 +00:00
|
|
|
@include media-breakpoint-up(xxl) {
|
2023-05-13 16:59:09 +00:00
|
|
|
border-right: none;
|
2022-09-09 11:53:35 +00:00
|
|
|
}
|
|
|
|
|
2023-08-31 21:53:07 +00:00
|
|
|
@include media-breakpoint-down(xxl) {
|
2023-05-13 16:59:09 +00:00
|
|
|
border-bottom: none;
|
|
|
|
}
|
2023-05-01 18:32:32 +00:00
|
|
|
|
2023-05-13 16:59:09 +00:00
|
|
|
&::placeholder {
|
|
|
|
color: #858585;
|
|
|
|
}
|
2022-09-09 11:53:35 +00:00
|
|
|
}
|
|
|
|
|
2022-11-02 21:43:38 +00:00
|
|
|
.button {
|
|
|
|
border-radius: 0;
|
2023-05-13 16:59:09 +00:00
|
|
|
flex-shrink: 0;
|
|
|
|
|
2023-08-31 21:53:07 +00:00
|
|
|
@include media-breakpoint-down(xxl) {
|
2023-05-13 16:59:09 +00:00
|
|
|
width: 100%;
|
|
|
|
}
|
2022-09-09 11:53:35 +00:00
|
|
|
}
|
|
|
|
}
|
2023-05-13 16:59:09 +00:00
|
|
|
|
|
|
|
.error {
|
|
|
|
position: relative;
|
|
|
|
top: 4px;
|
|
|
|
font-size: 12px;
|
|
|
|
line-height: 16px;
|
|
|
|
color: #d00820;
|
|
|
|
}
|