@media only screen and (max-width:1460px) {
    .container,
    .card,
    .warning-container {
        width: 90% !important;
        font-size: 20px;
    }
    .header-mobile {
        margin-bottom: 30px !important;
    }
}

@media only screen and (max-width:920px) {
    .container {
        width: 60%;
        grid-template-columns: 1fr !important;
        grid-template-rows: 0.5fr 0.5fr 0.5fr !important;
        gap: 20px 0px !important;
        grid-template-areas: "Left" "Right" "Extras" !important;
    }
}

* {
    color: black;
}

.header-mobile {
    display: none;
    text-align: center;
    grid-template-columns: 1fr !important;
    grid-template-rows: 1fr !important;
    gap: 0px 0px !important;
    grid-template-areas: "." !important;
}

input:focus {
    outline: none !important;
    border: 2px solid black;
}

input {
    border: 2px solid black;
}

.return_link {
    color: red;
    font-weight: bold;
}

select>option:disabled {
    color: #fc1735;
}

.label_sort {
    padding-right: 2%;
}

.container {
    width: 60%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 0px 50px;
    grid-template-areas: "Left Right" "Extras Extras";
}

.warning-container {
    width: 60%;
    margin: 0 auto;
}

.Extras {
    grid-area: Extras;
}

.Left {
    grid-area: Left;
}

.Right {
    grid-area: Right;
}

.custom-select {
    width: 100%;
}

.form-file-input {
    width: 100%;
    height: 100%;
}

.form-file-input>label {
    display: inline-block;
    margin-bottom: 6px;
}

.form-file-input>input {
    margin-bottom: 6px;
    border: 2px solid black;
    width: 100%;
    padding: 10px;
    background-color: white;
    -webkit-box-sizing: border-box;
    /* Safari/Chrome, other WebKit */
    -moz-box-sizing: border-box;
    /* Firefox, other Gecko */
    box-sizing: border-box;
    /* Opera/IE 8+ */
}

.form-type-input>label {
    display: inline-block;
}

.form-type-input>select {
    display: inline-block;
    margin-top: 10px;
    border: 2px solid black;
    width: 100%;
    padding: 10px;
    background-color: white;
    font-size: 15px;
}

#filters>input {
    margin-top: 4px;
    margin-bottom: 4px;
    width: 100%;
    padding: 10px;
    -webkit-box-sizing: border-box;
    /* Safari/Chrome, other WebKit */
    -moz-box-sizing: border-box;
    /* Firefox, other Gecko */
    box-sizing: border-box;
    /* Opera/IE 8+ */
    font-size: 20px;
}

#filters>div {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr;
    gap: 0px 0px;
}

.form-text-input>label {
    display: inline-block;
    margin-bottom: 6px;
}

.form-text-input>input {
    width: 100%;
    padding: 10px;
    -webkit-box-sizing: border-box;
    /* Safari/Chrome, other WebKit */
    -moz-box-sizing: border-box;
    /* Firefox, other Gecko */
    box-sizing: border-box;
    /* Opera/IE 8+ */
    font-size: 15px;
}