/* --------------------------------------------------------------------- */
/* ---------------------- Components : search-voyage ------------------- */
/* --------------------------------------------------------------------- */
.component-voyage-front {
    background-color: #fff;
    border-radius: 33px;
    overflow: hidden;
}

.component-voyage-front table {
    transition: all 0.2s;
    margin-bottom: 0px;
}

.component-voyage-front.table-loader table {
    opacity: 0.4;
}

.component-voyage-front table thead tr th {
    padding: 26px 20px;
    color: #ADB8CC;
    font-size: 16px;
    font-weight: 700;
    border: none;
}

.component-voyage-front table tbody tr:hover td {
    background-color: var(--main-primary-color);
    color: #fff !important;
}

.component-voyage-front table tbody tr td {
    padding: 22px 20px;
    font-size: 15px;
    line-height: 26px;
    font-weight: 500;
    border-color: #F5F6F7;
    height: 71px;
    color: #ADB8CC;
    transition: all 0.1s;
}

.component-voyage-front table tbody tr td.title {
    color: #6B7A99;
    font-size: 16px;
    font-weight: 700;
}

.component-voyage-front table tbody tr td .flex-center {
    height: 100%;
}

.component-voyage-front table tbody tr td .voyage-miniature {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    margin-right: 20px;
    flex-shrink: 0;
}

.component-voyage-front table tbody tr td a {
    color: #6B7A99;
    font-size: 16px;
    font-weight: 700;
    text-decoration: underline;
}

.component-voyage-front table tbody tr:hover td a {
    color: #fff;
}

.component-voyage-front .component-voyage-front-footer {
    display: flex;
    align-items: center;
    height: 78px;
    border-top: 1px solid #F5F6F7;
    justify-content: space-between;
    padding: 0px 35px;
}

.component-voyage-front .component-voyage-front-footer .page-link {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    border: none;
    color: #667085;
}

.component-voyage-front .component-voyage-front-footer .page-item.active .page-link, 
.component-voyage-front .component-voyage-front-footer .page-item .page-link:hover {
    width: 40px;
    height: 40px;
    font-size: 14px;
    font-weight: 500;
    border: none;
    background: #FBE6E4;
    border-radius: 8px;
    color: var(--main-primary-color);
}

.component-voyage-front .component-voyage-front-footer a.page-link[rel="next"], 
.component-voyage-front .component-voyage-front-footer a.page-link[rel="prev"], 
.component-voyage-front .component-voyage-front-footer .page-link[aria-hidden="true"] {
    display: none;
}

.component-voyage-front .component-voyage-front-footer-item.prev,
.component-voyage-front .component-voyage-front-footer-item.next {
    width: 90px;
    display: flex;
    align-items: center;
}

.component-voyage-front .component-voyage-front-footer-item.prev a,
.component-voyage-front .component-voyage-front-footer-item.next a {
    color: #667085;
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
}

.component-voyage-front .component-voyage-front-footer-item a {
    transition: all 0.2s;
}

.component-voyage-front .component-voyage-front-footer-item a:hover {
    color: var(--main-primary-color);
}

@media screen and (max-width: 1200px) {
    .component-voyage-front table tr th:not(.display-responsive),
    .component-voyage-front table tr td:not(.display-responsive) {
        display: none;
    }
}

@media screen and (max-width: 750px) {
    .component-voyage-front-footer-item ul.pagination {
        display: none;
    }
}