#delivery .services-buttons {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
}
#delivery .services-buttons input[type="radio"] + label {
    text-align: center;
    padding: 5px;
}
#delivery .services-buttons input[type="radio"] + label:hover,
#delivery .services-buttons input[type="radio"]:checked + label
{
    color: #fff;
    background-color: #98a5b1;
    border-color: #98a5b1;
}
#delivery .services-buttons input[type="radio"] + label.btn-lg {
    height: 60px;
    line-height: 48px;
    font-weight: 600;
}
#delivery .services-buttons input[type="radio"] + label.btn-lg:hover,
#delivery .services-buttons input[type="radio"]:checked + label.btn-lg
{
    color: #fec02f;
    background-color: transparent;
    border-color: #fec02f;
    border-width: 2px;
    line-height: 46px;
}
#delivery .types-block {
    margin-bottom: 1.5rem;
}
#delivery.compact .types-block {
    margin-bottom: 2rem;
}

#delivery input[type="text"].delivery-control,
#delivery select.delivery-control {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    height: 50px;
    border: none;
    border-radius: 0;
    border-bottom: 1px solid #ebebeb;
    font-size: 16px;
    margin-bottom: 20px;
    padding: 5px 0 0 0;
    display: block;
    width: 100%;
    background-color: transparent;
    -webkit-transition: all 0.25s ease;
    -moz-transition: all 0.25s ease;
    -o-transition: all 0.25s ease;
    transition: all 0.25s ease;
    position: relative;
    z-index: 1;
}
#delivery.compact input[type="text"].delivery-control,
#delivery.compact select.delivery-control {
    height: 40px;
    margin-bottom: 5px;
}
#delivery input[type="text"].delivery-control:focus,
#delivery select.delivery-control:focus {
    outline: none;
    border-color: inherit;
    -webkit-box-shadow: none;
    box-shadow: none;
    border-bottom: 1px solid #999999;
}
#delivery select.delivery-control option {
    background-color: transparent;
}
#delivery input[type="text"].delivery-control::placeholder {
    color: #444;
}
#delivery input[type="text"] + .suggestions {
    z-index: 3;
    background-color: rgba(255, 255, 255, 0.9);
    left: 15px;
    right: 15px;
    padding: 0.375rem 0.75rem;
    border-radius: 5px;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 1.25rem 0px;
    position: absolute;
    display: none;
    max-height: 240px;
    overflow-y: scroll;
    margin-top: 0;
}
#delivery .suggestions p {
    margin-bottom: 1.25em;
    line-height: 1.25em;
    padding-left: 2px;
    padding-right: 2px;
}
#delivery .suggestions p:last-child {
    margin-bottom: 0;
}
#delivery .suggestions p a {
    color: #333;
    text-decoration: none;
    cursor: pointer;
}
#delivery .suggestions p small {
    color: #777;
}
#delivery .form-group {
    position: relative;
}
#delivery .form-group label {
    font-size: inherit;
}
#delivery .form-group input + small,
#delivery .form-group select + small,
#delivery .form-group input[data-autocomplete] + div.suggestions + small
{
    position: absolute;
    left: 15px;
    opacity: 0.75;
    font-weight: 300;
    -webkit-transition: all 0.25s ease;
    -moz-transition: all 0.25s ease;
    -o-transition: all 0.25s ease;
    transition: all 0.25s ease;

    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    z-index: 0;
}
#delivery .form-group input:placeholder-shown + small,
#delivery .form-group select:invalid + small,
#delivery .form-group input[data-autocomplete]:placeholder-shown + div.suggestions + small
{
    top: 11px;
    font-size: 1.15em;
}
#delivery .form-group input:not(:placeholder-shown) + small,
#delivery .form-group input:focus + small,
#delivery .form-group select:not(:invalid) + small,
#delivery .form-group select:focus + small,
#delivery .form-group input[data-autocomplete]:not(:placeholder-shown) + div.suggestions + small,
#delivery .form-group input[data-autocomplete]:focus + div.suggestions + small
{
    position: absolute;
    top: -10px;
    font-size: 14px;
}
/*
#delivery.compact .form-group input:not(:placeholder-shown) + small,
#delivery.compact .form-group input:focus + small,
#delivery.compact .form-group select:not(:invalid) + small,
#delivery.compact .form-group select:focus + small,
#delivery.compact .form-group input[data-autocomplete]:not(:placeholder-shown) + div.suggestions + small,
#delivery.compact .form-group input[data-autocomplete]:focus + div.suggestions + small
{
    top: -3px;
}
*/
#delivery div.types-block label {
    font-weight: 400;
    cursor: pointer;
}

#delivery input[type="text"].delivery-control.has-error,
#delivery select.delivery-control.has-error {
    color: #ea2825;
    border-bottom-color: #ea2825;
}
#delivery input[type="text"].delivery-control.has-error + div.suggestions + small,
#delivery select.delivery-control.has-error + div.suggestions + small {
    color: #ea2825;
}



@media only screen and (min-width: 576px) {
    #delivery .services-buttons {
        grid-template-columns: 1fr 1fr;
    }
}

@media only screen and (min-width: 922px) {
    #delivery .services-buttons {
        grid-template-columns: 1fr 1fr 1fr;
    }
    #delivery .services-buttons.delivery-buttons {
        grid-template-columns: 1fr 1fr;
    }
}