/* desktop search row only */
#search-form-desk {
    display: flex;
    justify-content: center;
}

#search-form-desk > div {
    display: inline-flex !important;
    align-items: center !important;
    gap: 20px !important;
    flex-wrap: nowrap !important;
}

/* keep select width stable */
#search-form-desk .select2-container {
    min-width: 280px !important;
    width: 280px !important;
    margin: 0 !important;
}

/* GO button wrapper */
#search-form-desk .eat-button {
    display: inline-flex !important;
    align-items: center !important;
    margin: 0 !important;
}

/* GO button */
.go {
    height: 42px !important;
    min-height: 42px !important;
    max-height: 42px !important;
    min-width: 90px !important;
    padding: 0 20px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    line-height: 1 !important;
    border-radius: 25px !important;
    margin: 0 !important;
    box-sizing: border-box !important;
}

/* make select2 height consistent */
.select2-container--default .select2-selection--multiple {
    min-height: 42px !important;
}

/* GO button alignment */
.go {
    height: 42px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 0 18px !important;
    border-radius: 25px !important;
    line-height: 1 !important;
}

.select2-results__option {
    color: #000;
    text-shadow: none;
}

.select2-container--default .select2-selection--multiple {
    background-color: #fff;
    border: 1px solid #aaa;
    border-radius: 25px;
    cursor: text;
    min-width: 270px;
    max-width: 350px;
    min-height: 38px;
    padding: 2px 10px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.select2-container--default .select2-selection__rendered {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin: 0;
    padding: 0;
    width: 100%;
}

.select2-container .select2-search--inline .select2-search__field {
    margin-top: -16px;
    margin-left: 8px;
    margin-bottom: 0;
    padding: 0;
    border: none;
    height: 26px;
    line-height: 26px;
    display: inline-block;
    background: transparent;
}

.select2-container--default .select2-selection__choice {
    background-color: coral;
    border: 1px solid #fff;
    border-radius: 14px;
    margin: 4px 5px 4px 0;
    padding: 3px 10px;
    color: #fff;
}

.select2-container--default .select2-selection__choice__remove,
.select2-container--default .select2-selection__choice__remove:hover,
.select2-container--default .select2-selection__choice__remove::before {
    color: #fff;
}

.select2-container--default .select2-results__option--highlighted[aria-selected] {
    background-color: coral;
    color: #fff;
}

html {
    box-sizing: border-box;
}

*,
*:before,
*:after {
    box-sizing: inherit;
}

body {
    max-width: 960px;
    min-height: 100vh;
    margin: 0 auto;
    padding: 0 15px;
    color: #231f20;
    font-family: 'Helvetica Neue', 'Segoe UI', Arial, sans-serif;
    line-height: 1.25;
}

a {
    background-color: transparent;
    color: coral;
    text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
p,
ul {
    padding: 0;
    margin: 0;
    font-weight: 400;
}

h4 {
    line-height: 1.2;
    text-decoration: none;
}

a h4 {
    color: #000;
    text-decoration: none;
}

a:hover h4 {
    color: coral;
    text-decoration: none;
}

svg:not(:root) {
    overflow: hidden;
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #e6e6e6;
}

.header a,
.header a:hover,
.header a:focus,
.header a:active,
.header a:visited,
.header a *,
.header a:hover * {
    text-decoration: none;

    box-shadow: none;
}

.logo {
    width: 150px;
}

.figure-logo {
    max-width: 150px;
    max-height: 55px;
}

.release-notes {
    font-size: 14px;
}

.main {
    padding: 40px 0;
    text-align: center;
    margin-top: 30px;
}

.main-text {
    max-width: 400px;
    margin: 5px auto;
}

.main-text h1 {
    font-size: 58px;
    color: #fff;
}

.main-text p {
    margin: 15px auto 0;
}

.footer {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    border-top: 1px solid #e6e6e6;
    padding: 10px;
}

.option {
    display: block;
    padding: 10px 10px 10px 34px;
    position: relative;
    text-decoration: none;
}

.option svg {
    width: 24px;
    height: 24px;
    fill: gray;
    border: 1px solid #d9d9d9;
    padding: 5px;
    border-radius: 100%;
    top: 10px;
    inset-inline-start: 0;
    position: absolute;
}

.option h2 {
    font-size: 19px;
    text-decoration: none;
}

.option p {
    padding-top: 3px;
    color: #231f20;
    font-size: 15px;
    font-weight: 300;
}

.go {
    background-color: #000;
    text-decoration: none;
}

.go:hover {
    background: rgba(0, 0, 0, 0.5) !important;
    border-style: solid;
    border-color: coral;
}

nav a,
nav a:hover,
nav a:focus,
nav a:active,
nav a:visited,
nav a *,
nav a:hover * {
    text-decoration: none;

    box-shadow: none;
}

@media (max-width: 996px) {
    body {
        max-width: 780px;
    }
}

@media (max-width: 767px) {
    .option {
        flex: 0 0 50%;
    }
}

@media (max-width: 599px) {
    .main {
        padding: 20px 0;
    }

    .footer {
        display: block;
        width: 300px;
        margin: 0 auto;
    }
}