.tours-table {
    padding-right: 10%;
    padding-left: 10%;
}

.tours-table table {
    border-collapse: separate;
    border-color: transparent;
    border-spacing: 0 10px;
}

.tours-table tr {
    transition: .3s all;
}

.tours-table tr:nth-child(even) {
    background-color: rgba(89, 201, 235, 0.05);
}

.tours-table tr:hover {
    background-color: rgba(89, 201, 235, 0.22);
}

.tours-table td {
    border-color: transparent;
    font-size: 0.9em;
}

.tours-table .tour-columns {
    font-size: 0.8em;
    font-weight: bold;
    color: #5e5e5e;
    background-color: rgba(89, 201, 235, 0.22);
}

.tours-table td:not(.tour-title) {
    text-align: center;
}

.tours-table td:not(.tour-title) > p {
    margin-bottom: 0;
}

.tours-table .tour-title a {
    font-size: 1em;
    font-weight: bold;
    color: #37a4c5;
    text-decoration: none;
    transition: .5s all;
}

.tours-table tr:hover .tour-title a {
    color: #ef5945;
}

.tours-table .tour-title p {
    margin-bottom: 5px;
}

.tours-table .tour-title .tour-route {
    font-size: 0.8em;
}

.tours-table .tour-priсe {
    white-space: nowrap;
}

.tours-table .tour-drive p,
.tours-table .tour-price p {
    font-size: 0.9em;
}

.tours-table .tour-date p {
    font-size: 11pt;
}

.tours-table .tour-order div {
    font-size: 0.9em;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100px;
    height: 28px;
    color: white;
    background-color: #37a4c5;
    text-align: center;
    text-decoration: none;
    border-radius: 5px;
    transition: .5s all;
    cursor: pointer;
}

.tours-table .tour-order div:hover {
    background-color: #18738e;
}

/** Columns widths configuration **/

.tours-table .tour-title {
    width: 46%;
}

.tours-table .tour-days {
    width: 4%;
}

.tours-table .tour-drive {
    width: 7%;
}

.tours-table .tour-date {
    width: 28%;
}

.tours-table .tour-price {
    width: 5%;
}

.tours-table .tour-order {
    width: 10%;
}



/** Specific styles for "Tours timeline" table **/

.tours-table.tours-timeline-table table {
    border-spacing: 0 5px;
}

.tours-table.tours-timeline-table .tour-title p {
    margin-bottom: 0;
}

.tours-table.tours-timeline-table .tour-date {
    width: 19%;
}

.tours-table.tours-timeline-table .tour-route {
    width: 31%;
}

.tours-table.tours-timeline-table tr:not(.tour-columns) td {
    font-size: 0.8em;

    line-height: 0.9;

    padding-top: 3px;
    padding-bottom: 3px;
}

/** Country tours table (case with multiple country tables on one page) **/

.country-table-title h2 {
    font-size: 1.5em;

    margin-bottom: 0;
}


/** Just for season table **/

tr.season-year-heading td {
    font-size: 13pt !important;
    font-weight: bold !important;
    line-height: normal !important;

    padding-top: 7px !important;
    padding-bottom: 7px !important;

    background-color: rgba(89, 201, 235, 0.22);
}


/** For excursions table **/

.excursions-table td.tour-title {
    padding-left: 20px;
}