@media (max-width: 768px) {
    .date-card input:focus {
        border: none;
        outline: none;
    }
}

/*Changes */

* {
    font-family: 'Kufam', sans-serif;
}

.form-control:hover,
.form-select:hover {
    border: 1px solid rgba(255, 175, 26, 0.5);
}

.form-control:focus,
.form-select:focus {
    border-color: #ffaf1a;
    box-shadow: 0px 1px 1px rgba(0, 0, 0, 0.075) inset, 0px 0px 8px rgba(255, 175, 26, 0.5);
}

/*Changes */



.degrade {
    height: 10px;
    background: linear-gradient(to right, red, yellow);
}

#map {
    height: 50vh;
    /* width: 100%; */
}


.nav-item:hover {
    /*transform: scale(1.2)*/
}

.link-group:hover {
    background-color: orange;
}

.nav-link, .nav-link:hover {
    color: #fff;
    font-size: 16px;
}

.nav-icon {
    color: #fff;
}

/* Outros */
.form-wrapper {
    display: flex;
    justify-content: space-between;
}

.link-group {
    display: flex;
    align-items: center;
    color: #0088cc;
    gap: 10px;
    padding: 10px;
}

.location-card {
    background-color: #b7aa92;
    padding: 5px 35px;
    display: flex;
    justify-content: space-between;
}

    .location-card input {
        border: none;
        width: 80%;
        height: 40px;
        background-color: transparent;
    }

        .location-card input:focus {
            border: none;
            outline: none;
        }

.separador {
    width: 1px;
    background-color: #000;
}


.date-card {
    background-color: #b7aa92;
    padding: 5px 35px;
    display: flex;
    justify-content: space-between;
    /* width: 40%; */
}

    .date-card input {
        border: none;
        width: 80%;
        height: 40px;
        background-color: transparent;
    }

        .date-card input:focus {
            border: none;
            outline: none;
        }



/* Eu quero */

.custom-menu-selector {
    /* padding: 30px; */
    border-right: 1px solid #0088cc;
    ;
}

    .custom-menu-selector:last-of-type {
        border: none;
    }

    .custom-menu-selector img {
        width: 50px;
    }

    .custom-menu-selector h3 {
        font-size: 20px;
        font-weight: 500;
        color: #0088cc;
    }


.card-float-button-left {
    position: absolute;
    top: 45%;
    color: #0088cc;
}

.card-float-button-right {
    position: absolute;
    top: 45%;
    right: 20px;
    color: #0088cc;
}

.search-btn {
    color: #fff;
    background-color: red;
    border: none;
    border-radius: 10px;
    padding: 0 30px;
}

.stepper-line {
    border-bottom: 1px dashed #000;
}

.detail-line {
    height: 1px;
    width: 100%;
    background-color: #ccc;
    position: relative;
}

    .detail-line::before {
        content: '';
        position: absolute;
        background-color: red;
        width: 10px;
        height: 10px;
        border-radius: 50%;
        bottom: -4px;
    }

    .detail-line::after {
        content: '';
        position: absolute;
        background-color: red;
        width: 10px;
        height: 10px;
        border-radius: 50%;
        bottom: -4px;
        right: 0;
    }

    .detail-line > div {
        background-color: red;
        width: 10px;
        height: 10px;
        border-radius: 50%;
        align-self: center;
    }


.detail-info-description span {
    font-size: 11px;
    font-weight: bold;
}



/*News*/

.menu-fixado {
    background-color: #ffd900;
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
    transition:all 500ms ease-in;
}

.widhtAnimation {
    animation-name: widhtAnimation;
    animation-duration: 4s;
}

#logo{
    transition:all 300ms ease-in;
}

@keyframes widhtAnimation {
    from {
        width: 100px;
    }

    to {
        width: 60px;
    }
}
