.fg-search-form {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    background-color: #000;
    padding: 15px;
}

input[type="text"].fg-search-field,
.fg-popup-buttons input[type="time"] {
    padding: 15px 20px;
    color: #fff;
    border: 1px solid #262626;
    background-color: #262626;
    border: none;
    border-radius: 0;
    font-size: 16px;
}

.fg-popup-buttons input[type="time"] {
    width: auto;
}

.fg-search-field-wrapper {
    margin-bottom: 10px;
    width: 100%;
    position: relative;
}

input[type="button"].fg-search-submit,
input[type="submit"].fg-search-submit {
    background-color: #000;
    border: 1px solid #925c49;
    border-radius: 0;
    text-transform: uppercase;
    color: #925c49;
    padding: 15px 20px;
    font-size: 16px;
    cursor: pointer;
}

.fg-search-form input[type="button"].fg-search-submit {
    width: 110px;
}

.fg-suggestions-wrapper {
    position: absolute;
    top: -10px;
    width: 100%;
}

.fg-suggestions {
    list-style-type: none;
    padding: 0px;
    margin: 0px;
    background-color: #000;
    border: 1px solid #925c49;
    position: absolute;
    bottom: 0px;
    max-height: 245px;
    overflow: auto;
    width: 100%;
}

.fg-suggestions li {
    text-align: left;
    padding: 5px 10px;
    width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    cursor: pointer;
    font-size: 16px;
}

.fg-suggestions li:hover {
    background-color: #262626;
}

.fg-search-text-item {
    text-transform: uppercase;
}

body.home .container > div > div {
    position: static;
}

.fg-popup-wrapper {
    position: fixed;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fg-popup {
    background: #000;
    padding: 15px 30px;
}

.fg-popup-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
}

.fg-popup-buttons > div {
    margin: 10px;
}

.fg-popup-text {
    margin-bottom: 10px;
}
input::-webkit-calendar-picker-indicator {
    filter: invert(1);
}

@media screen and (min-width: 768px) {
    .fg-search-field-wrapper {
        width: 50%;
        margin-bottom: 0px;
    }

    input[type="text"].fg-search-field,
    .fg-popup-buttons input[type="time"] {
        padding: 10px 20px;
    }
}

.loader {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: block;
    margin: 15px auto;
    position: relative;
    background: #fff;
    box-shadow: -24px 0 #fff, 24px 0 #fff;
    box-sizing: border-box;
    animation: shadowPulse 2s linear infinite;
}

@keyframes shadowPulse {
    33% {
        background: #fff;
        box-shadow: -24px 0 #925c49, 24px 0 #fff;
    }
    66% {
        background: #925c49;
        box-shadow: -24px 0 #fff, 24px 0 #fff;
    }
    100% {
        background: #fff;
        box-shadow: -24px 0 #fff, 24px 0 #925c49;
    }
}
