.quantidade-encontrado {
    font-size: 15px;
    margin-bottom: 10px;
    display: flex;
    margin-top: 29px;
    flex-direction: row;
    justify-content: space-between;

    span {
        color: #444;

        &.btn-close {
            display: none;
            i {
                font-size: 25px;
                cursor: pointer;
            }
        }
    }
}

.submenu {
    border-top: 1px solid #cccccc;
    background-color: #ffffff;
    box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.08), 0 2px 4px -1px rgba(0, 0, 0, 0.01);

    ul {
        display: flex;
        align-items: center;
        min-height: 68px;

        .search-item {
            box-sizing: border-box;
            color: #666666;
            font-size: 14px;
            white-space: nowrap;

            .item-container {
                height: auto;
                margin-right: 0;
                padding-right: 0;
                border: none;
            }

            .data-container {
                margin-right: 4px;

                ~ .data-container {
                    margin-right: 0;
                    margin-left: 4px;
                }
            }

            span.item-container {
                display: inline-flex;
                align-items: center;
                margin-right: 12px;
                padding-right: 12px;
                border-right: 1px solid #cccccc;
                text-overflow: ellipsis;
                white-space: nowrap;
                overflow: hidden;

                i {
                    margin-right: 8px;
                    color: var(--azul-1);
                    font-size: 16px;
                }

                span {
                    display: inline-block;
                    text-overflow: ellipsis;
                    white-space: nowrap;
                    overflow: hidden;
                    max-width: 215px;
                }
            }

            a.btn-alterar-busca {
                display: inline-block;
                border: 1px solid var(--azul-1);
                border-radius: 24px;
                background: transparent;
                color: var(--azul-1);
                height: 36px;
                padding: 0 16px;
                font-size: 14px;
                line-height: 36px;
                text-align: center;
                cursor: pointer;
                transition: background 0.3s;

                i {
                    margin-right: 10px;
                }

                &:hover {
                    background: var(--azul-1);
                    color: #fff;
                }
            }
        }
    }
}

// .main form {
//     padding: 16px 16px 20px;
//     background: #ffffff;
//     color: #888;
//     border-radius: 8px;
//     box-shadow: 0 4px 8px rgba(243, 243, 243, 0.2);
//     margin-top: 29px;

//     h5 {
//         margin-bottom: 20px;
//     }

//     .form-group {
//         flex: 1;
//         flex-direction: column;
//         position: relative;

//         label {
//             font-weight: 100;
//         }

//         i {
//             position: absolute;
//             top: 47%;
//             left: 7px;
//             font-size: 12px;
//         }
//     }

//     .datas {
//         display: flex;

//         .form-group:first-child {
//             margin-right: 5px;
//         }

//         i {
//             top: 30%;
//         }
//     }

//     input {
//         width: 100%;
//         height: 40px;
//         color: #888;
//         border: 1px solid #ccc;
//         border-radius: 7px;
//         padding: 0 15px;
//         font-size: 14px;
//         margin-bottom: 8px;
//         background: #fff;
//         padding-left: 23px;

//         &::placeholder {
//             color: #e5e5e5;
//         }
//     }

//     .fake-input {
//         width: 100%;
//         height: 40px;
//         color: #e5e5e5;
//         border: 1px solid var(--azul-1);
//         border-radius: 7px;
//         padding: 0 15px;
//         font-size: 14px;
//         margin-bottom: 8px;
//         background: rgba(0, 0, 0, 0.3);
//         span {
//             color: #e5e5e5;
//         }
//         i {
//             color: #e5e5e5;
//         }
//     }

//     .input-icon {
//         position: relative;

//         i {
//             color: #e5e5e5;
//             position: absolute;
//             z-index: 1;
//             font-size: 18px;
//             top: 11px;
//             left: 15px;
//         }
//     }

//     .nrCupom {
//         background: none;
//         border: none;
//         border-radius: 3px;
//         color: #e5e5e5;
//         cursor: pointer;
//         font-size: 0.75rem;
//         height: 40px;
//         padding: 0 10px 0 50px;
//         position: relative;
//         width: 100%;
//         z-index: 1;
//         -webkit-transition: all 0.4s ease;
//         -o-transition: all 0.4s ease;
//         transition: all 0.4s ease;
//         -webkit-transition-property: all;
//         -o-transition-property: all;
//         transition-property: all;
//         -webkit-transition-duration: 0.4s;
//         -o-transition-duration: 0.4s;
//         transition-duration: 0.4s;
//         -webkit-transition-timing-function: ease;
//         -o-transition-timing-function: ease;
//         transition-timing-function: ease;
//         -webkit-transition-delay: 0s;
//         -o-transition-delay: 0s;
//         transition-delay: 0s;

//         &::placeholder {
//             color: #e5e5e5;
//         }
//         &:focus,
//         &.ativo {
//             background: rgba(0, 0, 0, 0.3);
//             font-size: 0.9375rem;
//             cursor: auto;
//         }

//         &:before {
//             font-family: "Font Awesome 5 Free";
//             content: "\f3ff";
//             font-size: 12px;
//             font-weight: 900;
//             position: absolute;
//             left: 16px;
//             top: 0;
//             z-index: 10;
//             transform: rotate(90deg);
//         }
//     }

//     .button {
//         margin-top: 10px;
//         background: #1250a2;
//     }
// }

.dropdown-filtro {
    margin-top: 10px;

    .filtro {
        padding: 20px 8px;
        border-top: 1px solid #ccc;

        span.titulo {
            font-size: 16px;
            font-weight: 600;
            display: flex;
            justify-content: space-between;
            // cursor: pointer;
        }

        ul li {
            margin-top: 8px;
            display: flex;
            flex-direction: column;

            div + span {
                text-align: right;
                color: var(--azul-1);
                text-decoration: underline;
                padding-top: 10px;
                font-size: 12px;
                cursor: pointer;
            }

            label {
                position: relative;
                padding-left: 35px;
                margin-bottom: 0;
                cursor: pointer;
                -webkit-user-select: none;
                -moz-user-select: none;
                -ms-user-select: none;
                user-select: none;
                justify-content: space-between;
                width: 100%;
                min-height: 29px;
                display: block;
                padding: 4px 45px 3px 28px;

                i {
                    color: #ffc400;

                    &.disabled {
                        color: #ccc;
                    }
                }

                input {
                    position: absolute;
                    opacity: 0;
                    cursor: pointer;
                    height: 0;
                    width: 0;

                    &:checked ~ .checkmark {
                        background-color: var(--azul-1);

                        &:after {
                            display: block;
                        }
                    }
                }

                .checkmark {
                    position: absolute;
                    top: 4px;
                    left: 0;
                    transition: color 0.2s, border-color 0.2s;
                    border-radius: 6px;
                    display: inline-block;
                    width: 20px;
                    height: 20px;
                    margin-top: -1px;
                    border: 1px solid #cccccc;
                    background-color: #fff;
                    color: #fff;
                    text-align: center;
                    line-height: 18px;
                    cursor: pointer;
                    vertical-align: middle;

                    &:after {
                        content: "";
                        position: absolute;
                        display: none;
                        left: 6px;
                        top: 4px;
                        width: 5px;
                        height: 10px;
                        border: 1px solid white;
                        border-width: 0 3px 3px 0;
                        -webkit-transform: rotate(45deg);
                        -ms-transform: rotate(45deg);
                        transform: rotate(45deg);
                    }
                }

                .total {
                    float: right;
                    background: #fff;
                    display: inline-block;
                    position: absolute;
                    top: 0;
                    right: 0;
                    box-sizing: border-box;
                    width: 40px;
                    height: 28px;
                    border: 1px solid #cccccc;
                    border-radius: 4px;
                    color: #666666;
                    font-size: 12px;
                    text-align: center;
                    line-height: 28px;
                    pointer-events: none;
                }
            }
        }
    }
}

.ordenacao {
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 5px 10px;
    background: #fff;
    height: 40px;
    align-items: center;
    margin-top: 29px;
    margin-bottom: 20px;
    border-radius: 8px;
    color: #444;

    div {
        display: flex;
        justify-content: center;
        align-items: center;

        .btn-abre-filtro {
            display: none;
            color: var(--azul-1);
            font-weight: bold;
        }
    }
    p {
        margin-right: 13px;
        color: #888;
    }

    select {
        border: 1px solid #f1f1f1;
        border-radius: 8px;
        padding: 4px 5px;
        color: #888;
    }
}

.hotelList {
    .hotel-item {
        cursor: pointer;
        color: #888;
        border-radius: 8px;
        display: flex;
        background-color: #ffffff;
        transition: box-shadow 0.2s ease-out;
        height: 220px;
        margin: 0;
        margin-bottom: 20px;

        &:hover {
            box-shadow: 0 12px 20px rgba(68, 68, 68, 0.2);
        }

        .hotel-imagem {
            padding: 0;
            max-height: 220px;

            img {
                display: block;
                height: 100%;
                width: 100%;
                border-radius: 8px 0 0 8px;
            }
        }

        .hotel-descricao {
            box-sizing: border-box;
            padding: 16px;
            position: relative;

            h3 {
                position: relative;
                letter-spacing: 0;
                vertical-align: middle;
                display: inline-block;
                // white-space: nowrap;
                height: auto;
                word-wrap: break-word;
                max-width: 100%;

                text-overflow: ellipsis;
                overflow: hidden;
                line-height: normal;
                font-size: 22px;
                color: #444;

                i {
                    color: $base-color;
                }
            }

            p {
                font-size: 12px;
                color: #888;
                margin-top: 8px;
                margin-bottom: 12px;

                i {
                    color: var(--azul-1);
                    margin-right: 8px;
                    top: -1px;
                    position: relative;
                }
            }

            .stars i {
                color: #ffc400;
            }

            ul {
                margin-top: 12px;
            }

            .promos {
                position: absolute;
                bottom: 16px;
                right: 20px;

                i {
                    padding: 7px;
                    color: #ccc;

                    &.circle {
                        border: 1px solid #ccc;
                        border-radius: 50%;
                    }
                }
            }
        }

        .price-box {
            height: 100%;
            position: relative;
            box-sizing: border-box;
            width: 210px;
            display: flex;
            flex-direction: column;
            align-items: center;
            padding-top: 24px;
            border-left: 1px solid #f1f1f1;
            color: #888;

            .price-container {
                display: flex;
                flex-direction: column;
                align-items: center;
                justify-content: center;

                span:first-child {
                    margin-bottom: 10px;
                }

                .depor {
                    text-decoration: line-through;
                }

                .price {
                    font-size: 23px;
                    font-weight: bold;
                    color: #444;

                    span {
                        font-size: 14px;
                    }
                }
            }
        }
    }
}
