@keyframes placeHolderShimmer {
    0% {
        background-position: -468px 0;
    }
    100% {
        background-position: 468px 0;
    }
}

.animated-background {
    animation-delay: 1000ms;
    animation-duration: 1s;
    animation-name: f4ek4deu-B;
    height: 40px;
    width: 40px;
    opacity: 0.25;
    animation-timing-function: steps(10, end);
    background-color: #e4e6eb;
    animation-iteration-count: infinite;
    animation-direction: alternate;
}

@-webkit-keyframes f4ek4deu-B {
    0% {
        opacity: 0.25;
    }

    100% {
        opacity: 1;
    }
}

@keyframes f4ek4deu-B {
    0% {
        opacity: 0.25;
    }

    100% {
        opacity: 1;
    }
}

.hotel-item.animated {
    cursor: pointer;
    color: #888;
    border-radius: 8px;
    display: flex;
    background-color: #fff;
    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);
    }

    .img {
        width: 33.3%;
        height: 100%;
    }

    .desc1 {
        width: 80%;
        height: 20px;
        margin: 15px;
        border-radius: 24px;
    }

    .desc2 {
        width: 39%;
        height: 20px;
        margin: 15px;
        border-radius: 24px;
    }

    .desc3 {
        width: 80%;
        height: 20px;
        margin: 15px;
        border-radius: 24px;
    }

    .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;

        .preco {
            width: 100%;
            height: 20px;
            margin: 15px;
            border-radius: 24px;
        }

        .btn {
            width: 100%;
            height: 40px;
            margin: 15px;
            border-radius: 24px;
        }
    }
}

.aereo-item.loading {
    background: #fff;
    width: 100%;
    border-radius: 4px;
    margin-bottom: 20px;
    border-radius: 8px;
    -webkit-box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    transition-property: all;
    transition-duration: 0.4s;
    transition-timing-function: ease;
    transition-delay: 0s;

    .conteudo {
        display: flex;

        .voo-list {
            position: relative;
            box-sizing: border-box;
            width: 100%;

            .voo-item {
                padding: 10px 24px;
                display: flex;
                border: 1px solid transparent;
                align-items: center;

                .desc1 {
                    border-radius: 24px;
                    padding: 0 10px;
                    max-width: 121px;
                    height: 29px;
                    flex: 1;
                }

                .desc2 {
                    border-radius: 24px;
                    padding: 0 10px;
                    height: 20px;
                    margin-left: 20px;
                    flex: 1;
                }
            }
        }

        .voo-preco-box {
            position: relative;
            box-sizing: border-box;
            width: 30%;
            border-left: 1px solid #dadce0;
            padding: 15px 18px;
            display: flex;
            flex-direction: column;
            text-align: center;

            .preco {
                border-radius: 24px;
                height: 20px;
                width: 100%;
            }

            .btn {
                border-radius: 24px;
                height: 40px;
                margin-top: 32px;
                width: 100%;
            }
        }
    }
}
