.first-column {
    align-content: start !important;
}


/* TABLE */

.full-width-table {
    /* width: 100%; */
    border-collapse: separate;
    border-spacing: 0;
    border: 1px solid black;
    border-radius: 4px;
    overflow: hidden;
}

.full-width-table a {
    text-decoration: underline;
}

.full-width-table a::after {
    content: '';
    display: inline-block;
    margin-left: 8px;
    width: 14px;
    height: 14px;
    background: url('../images/icon-external-link.svg') no-repeat center;
    background-size: contain;
    vertical-align: middle;
}

.full-width-table th,
.full-width-table td {
    text-align: left;
    padding: 8px;
}

.full-width-table th {
    background-color: #f2f2f2;
}

.full-width-table tr:nth-child(even) {
    background-color: #d9d9d9;
}

.full-width-table th {
    background-color: black;
    color: #fff;
}

.rank {
    display: inline-block;
    width: 25px;
    height: 25px;
    line-height: 25px;
    border-radius: 50%;
    text-align: center;
    color: #fff;
    background-color: black;
    font-size: 16px;
}


/* END TABLE */

@media (max-width: 1024px) {
    /* MOBILE TABLE */
    .full-width-table {
        width: 100%;
        margin-top: 20px;
    }
    .full-width-table,
    .full-width-table thead,
    .full-width-table tbody,
    .full-width-table th,
    .full-width-table td,
    .full-width-table tr {
        display: block;
    }
    .full-width-table thead tr {
        position: absolute;
        top: -9999px;
        left: -9999px;
    }
    .full-width-table tr {
        border: 1px solid #ccc;
    }
    .full-width-table td {
        border: none;
        border-bottom: 1px solid #eee;
        position: relative;
        padding-left: 50%;
        text-align: right;
    }
    .full-width-table td:before {
        position: absolute;
        top: 6px;
        left: 6px;
        width: 45%;
        padding-right: 10px;
        white-space: nowrap;
        text-align: left;
        font-weight: bold;
    }
    .full-width-table a::after {
        content: none;
        background: none;
    }
    .mobile-head-names-famous-landmarks td:nth-of-type(1):before {
        content: "Rank";
    }
    .mobile-head-names-famous-landmarks td:nth-of-type(2):before {
        content: "Hotel";
    }
    .mobile-head-names-famous-landmarks td:nth-of-type(3):before {
        content: "Value for money";
    }
    /* END MOBILE TABLE */
}