
/* route's card */

.cardroute {
    background-color: #fff;
    border: solid 1px #e5e5e5;
    border-radius: 8px;
    overflow: hidden;
    margin: 0 0 20px;
    cursor:pointer;
}

.cardroute .card-header {
    height: 155px;
    border-bottom: 4px solid #fbc031;
    overflow: hidden;
}

.cardroute .card-header img {
    width: 100%;
    min-height: 100%;
}

.cardroute .card-content {
    padding: 20px 20px 0;
    text-align: left;
}

.cardroute .user {
    margin: 0 0 10px;
    min-height: 50px;
}

.cardroute .user img {
    float: left;
    margin: 0 10px 0 0;
}

.cardroute .user .title {
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}

.cardroute .name {
    color: #808080;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}

.cardroute .name a {
    color: #808080;
    border-bottom: none;
}

.cardroute .name a:hover {
    color: #404040;
    border-bottom: 1px dotted;
    text-decoration: none;
}

.cardroute .card-content p {
    color: #999;
    height: 88px;
    overflow: hidden;
    font-size: inherit;
    line-height: inherit;
}

.cardroute .card-content a {
    color: #999;
}


.cardroute .card-content a:hover {
    color: #999;
    text-decoration: none;
}

.cardroute .actions {
    padding: 0 20px 20px;
}

.cardroute .actions ul {
    list-style: none;
    margin: 0;
    padding: 0;
    text-align: left;
    font-size: 14px;
}

.cardroute .actions ul li {
    display: inline-block;
    margin: 0 10px 0 0;
}

.cardroute .actions ul.pull-right {
    position: absolute;
    right: 30px;
}

.cardroute .actions a {
    color: #808080;
    font-weight: 300;
}

.cardroute .actions a:hover {
    color: #404040;
}

.cardroute .actions a.rating {
    color: #4c86e5;
}

.cardroute .actions a.rating i {
    color: #fff;
    text-shadow: 1px 0 0 #4c86e5, -1px 0 0 #4c86e5, 0 1px 0 #4c86e5, 0 -1px 0 #4c86e5;
    -webkit-transition: color 0.2s;
    -moz-transition: color 0.2s;
    -ms-transition: color 0.2s;
    -o-transition: color 0.2s;
    transition: color 0.2s;
}

.cardroute .actions a.rating:hover i {
    color: #4c86e5;

}

.cardroute .actions i {
    vertical-align: middle;
}


@media screen and (max-width: 1170px) {
    .cardroute .card-content p {
        height: 110px;
    }
}

@media screen and (max-width: 992px) {
    .cardroute .card-content p {
        height: 66px;
    }
}

@media screen and (max-width: 767px) {
    .cardroute .card-content p {
        height: auto;
    }
}