.motor-vehicle__form {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 1.5em;
    font-weight: bold;
    font-family: "Inter", Sans-serif;
}
.motor-vehicle__form.port-finder {
    grid-template-columns: repeat(1, 1fr);
    grid-gap: 1em;
}
.motor-vehicle-input {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.motor-vehicle-input label {
    text-transform: uppercase;
    letter-spacing: .1em;
    font-size: .875rem;
    font-family: "Inter", Sans-serif;
}

.motor-vehicle__form select {
    width: 100%;
    height: 45px;
    font-family: "Inter", Sans-serif;
}

.motor-vehicle__form.port-finder select {
    border-radius: 8px;
    border: 1px solid #C7C7C7;
    font-size: 18px;
    height: 56px;
    color: #D2D2D2;
}

.motor-vehicle__form select:disabled {
    background-color: #bababa78;
    color: #333;
}

.motor-vehicle__form.port-finder select:disabled {
    background-color: #fff;
    color: #D2D2D2;
}

.motor-vehicle__form.port-finder .motor-vehicle__button {
    padding-top: 4em;
    display: block;
    text-align: center;
}
.motor-vehicle__form.port-finder .motor-vehicle__button button{
    font-family: "Inter", Sans-serif;
    font-size: 20px;
    font-weight: 600;
    line-height: 32px;
    background-image: linear-gradient(110deg, #397FF7 0%, #0533FF 100%);
    border-radius: 999px 999px 999px 999px;
    padding: 10px 30px 10px 30px;
    box-shadow: 0px 4px 28.5px 0px #FFFFFF66 inset !important;
}

.response-wrapper {
    margin: 2em 0;
    font-family: "Inter", Sans-serif;
    display: none;
}

.response-wrapper ul {
    list-style: none;
    padding: 0;
}

.response-wrapper ul li {
    padding: 10px;
}

.response-wrapper ul li:nth-child(odd) {
    background-color: #020B49;
    color: #fff;
}

.response-wrapper ul li:nth-child(even) {
    background-color: #99A1B3;
}

.response-wrapper table {
    border: 1px solid #ccc;
    border-collapse: collapse;
    margin:auto;
    padding: 0;
    width: 100%; max-width:1250px;
    table-layout: fixed;
    margin-block: 40px;
}

.response-wrapper tbody {
    background: #020B49;
}

.response-wrapper .head {
    background: #fff;
}

.response-wrapper .head td {
    color: #000 !important;
    text-transform: uppercase;
    letter-spacing: .1em;
    font-size: 16px; font-weight:bold;
}

.response-wrapper table tr {
    background-color: transparent;
    border: 1px solid #ddd;
    padding: .35em;
}

.response-wrapper table th,
.response-wrapper table td {
    padding: .625em;
    text-align: left;
}

.response-wrapper table td {
    color: #fff;
}

.response-wrapper td span {
    text-transform: uppercase;
}

.response-wrapper tr:nth-child(even) {
    background: #0c2ec5;
}

.response-wrapper table td:first-child {
    text-align: left;
}
.motor-loader {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2em;
}
.motor-loader.hide {
    display: none;
}
.bg-white {
    background: #fff !important;
}
@media screen and (max-width: 767px) {
    .motor-vehicle__form {
        grid-template-columns: repeat(1, 1fr);
    }

    .response-wrapper table td {
        border-bottom: 1px solid #ddd;
        display: block;
        font-size: .8em;
        text-align: left;
    }
    .motor-vehicle__form.port-finder .motor-vehicle__button {
        padding-bottom: 1em;
    }
}
@media screen and (max-width: 1024px) {
    .motor-vehicle__form.port-finder .motor-vehicle__button {
        padding-top: 2em;
    }
    .motor-vehicle__form.port-finder .motor-vehicle__button button{
        font-size: 18px;
    }
}