.dwdest_table {
    display: block;
    height: 100%;
    width: 100%;
    overflow-x: hidden;
    overflow-y: scroll;
}

    .dwdest_table .headerDestination,
    .dwdest_table .headerRoute {
        font-family: kaleko_105book;
        font-size: 47px;
        line-height: 50px;
        color: #3fb3e3;
    }

    .dwdest_table .headerDestination {
        position: absolute;
        left: 8%;
        top: 0px;
    }
    .dwdest_table .headerRoute {
        position: absolute;
        left: 85%;
        top: 0px;
    }

    .dwdest_table .destinations {
        top: 60px;
        position: absolute;
        display: block;
        height: calc(100% - 60px);
        width: 100%;
        
    }

        .dwdest_table .destinations .dwdest_row {
            width: 100%;
            height: 50px;
            display: block;
            background-color: #eaf7fc;
            position: relative;
        }

        .dwdest_table .destinations .dwdest_row.row_odd {
            background-color: #ccecf7; 
        }
            
            .dwdest_table .destinations .dwdest_row .letter {
                font-family: kaleko_105_bold;
                display: block;
                position: absolute;
                left: 0px;
                width: 7%;
                height: 50px;
                line-height: 50px;
                font-size: 190px;
                color: #3fb3e3;
                background-color: white;
                padding: 8px 0 12px 0;
            }
            .dwdest_table .destinations .dwdest_row .destination {
                font-family: kaleko_105book;
                display: block;
                position: absolute;
                left: 7%;
                height: 50px;
                line-height: 50px;
                width: 50%;
                font-size: 190px;
                color: #000;
                /* padding-left: 20px; */
                padding: 15px 0 5px 20px;
            }
            .dwdest_table .destinations .dwdest_row .route {
                display: block;
                position: absolute;
                left: 84%;
                width: 16%;
                height: 50px;
                background-color: #d7f0f9;
                color: #000;
                padding: 15px 0;

                
            }
            
            
            .dwdest_table .destinations .dwdest_row.row_odd .route {
                background-color: #a5def3;

            }
            .dwdest_table .destinations .dwdest_row .route.arrow_left .routeimage {
                background-image: url(arrow_left.svg);
                background-repeat: no-repeat;
                background-position: center center;
                background-size: contain;
            }
            .dwdest_table .destinations .dwdest_row .route.arrow_right  .routeimage{
                background-image: url(arrow_right.svg);
                background-repeat: no-repeat;
                background-position: center center;
                background-size: contain;
                
            }