
.tours-new .tour-new-loader:first-of-type {
    height: 113px;
}

.tours--loader > * {
    visibility: hidden;
}

.tour-new.tours--loader {
    height: 92px;
    border-radius: 4px;
    margin-bottom: 5px;
    border: none !important;
}

.tours-head {
    font-size: 15px;
    font-weight: bold;
    background: #eeeeee;
    border-radius: 4px;
    padding: 6px 10px;
    margin-bottom: 10px;
}

.tours--loader {
    background-color: #f3f3f3;
    -webkit-animation: tourNewLoader 5s infinite;
    animation: tourNewLoader 5s infinite;
}

@-webkit-keyframes tourNewLoader {
    0% {
        background-color: #f3f3f3;
    }
    50% {
        background-color: #cccccc;
    }
    100% {
        background-color: #f3f3f3;
    }
}

@keyframes tourNewLoader {
    0% {
        background-color: #f3f3f3;
    }
    50% {
        background-color: #cccccc;
    }
    100% {
        background-color: #f3f3f3;
    }
}
