.dwf_table {
    display: block;
    height: calc(100% - 840px);
    width: 100%;
    overflow-x: hidden;
    overflow-y: hidden;
}

    .dwf_table .header {
        position: relative;
        display: block;
        width: 90%;
        padding: 0 0 0 10%;
        font-size: 40px;
        height: 100px;
        line-height: 100px;
        margin-bottom: 20px;
        font-weight: bold;
        color: white;
        /* background-color: #95be1f ; */
        font-family: kaleko_105_bold;
    }
    .dwf_table .row {
        position: relative;
        display: block;
        width: 90%;
        margin-left: 10%;

        font-size: 40px;
        line-height: 82px;
        height: 82px;
        color: #000000;

        font-family: kaleko_105book;
        border-bottom: 5px dotted #cccccc60;
    }

    .dwf_table .col_0 {
        display: block;
        width: 50%;
        float: left;
    }
    .dwf_table .col_1 {
        display: block;
        width: 30%;
        float: left;
    }
    .dwf_table .col_2 {
        display: block;
        width: 10%;
        float: left;
    }

.dwf_search {
    position: absolute;
    display: block;
    height: 125px;
    margin: 20px 0;
    width: 100%;
    bottom: 630px;
}

    .dwf_search input {
        width: calc(80% - 80px);
        margin-left: 10%;
        padding: 20px;
        font-size: 40px;
        border: 20px solid #3fb3e3;
        border-radius: 50px;
        text-align: center;
        text-transform: uppercase;
    }

        .dwf_search .cross {
            position: absolute;
            display: block;
            width: 85px;
            height: 85px;
            top: calc(50% - 42.5px);
            right: calc(20% - 195px);
        }

        .dwf_search .cross_image {
            position: absolute;
            display: block;
            width: 45px;
            height: 45px;
            background-image: url(cross.png);
            background-size: contain;
            top: calc(50% - 22.5px);
            right: calc(50% - 22.5px);
        }

.dwf_keyboard {
    position: absolute;
    display: block;
    height: 500px;
    background-color: #dadada;
    width: 100%;
    padding: 40px 0;
    /* top: calc(40% + 200px); */
    bottom: 0;
    
}

    .dwf_keyboard .row {
        display: block;
        margin: 0 auto;
        width: auto;
        /* height: 200px; */
        display: flex;
        align-items: center;
        justify-content: center;
        
    }
    .dwf_keyboard .row_2 {
        margin-left: -100px;
    }
    .dwf_keyboard .row_3 {
        margin-left: 200px;
    }
        .dwf_keyboard .row .letter {
            display: block;
            width: 150px;
            height: 115px;
            margin-bottom: 10px;
            margin-right: 10px;
            background-color: #f6f5f5;
            float: left;
            text-align: center;
            line-height: 120px;
            font-size: 50px;
            border: 1px solid #cececc;
            border-radius: 5px;
            color: #707173;
            font-family: Arial, Helvetica, sans-serif;
        }

        .dwf_keyboard .row .letter_SPACE {
            width: 900px;
        }
        .dwf_keyboard .row .letter_BACKSPACE {
            width: 300px;
            background-image: url(backspace.png);
            background-repeat: no-repeat;
            background-position: 50% 50%;
            background-size: 50%;
        }