* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
    font-size: 14px;
}

.appContainer {
    margin: 0 auto;
    width: 100%;
    /* max-width: 500px; */
    height: 100%;
    padding-top: 20px;
    padding: 12px;
    position: relative;
    /* min-height: 100vh; */
}

.mobiel .row1 {
    font-weight: 500;
    font-size: 16px;
    color: #333333;
    line-height: 20px;
    text-align: center;
    font-style: normal;
    margin-bottom: 16px;
}

.mobiel .row2 {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 14px;
}

.row2 input {
    display: block;
    width: 68%;
    height: 36px;
    background: #DBF2EB;
    border-radius: 10px;
    border: none;
    outline: none;
    padding: 10px;
    width: 100%;

}

.row2 .search {
    width: 29%;
    height: 36px;
    background: #02B17B;
    border-radius: 10px;
    font-weight: 500;
    font-size: 14px;
    color: #FFFFFF;
    text-align: center;
    line-height: 36px;
}

.mobiel .row3 {
    width: 100%;
    background: #F5F5F5;
    border-radius: 15px;
    padding: 14px;
    padding-top: 20px;
    font-size: 12px;
    color: #999999;
}

.row3r1 {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 10px;
}

.row3r1 .span1 {
    width: 67px;
    height: 1px;
    border: 1px solid #CFCFCF;
}

.row3r1 .span2 {
    font-weight: 500;
    font-size: 14px;
    color: #333333;
    line-height: 20px;
    margin: 0px 10px;
}

.row3Content {
    display: flex;
    flex-wrap: wrap;
}

.row3Child {
    width: 33%;
    text-align: center;
    margin-bottom: 10px;
}

/* Responsive rules */
@media (min-width: 750px) {
    .appContainer {
        margin-top: 100px;
        width: 70%;
        /* height: 794px; */
        min-height: 500px;
        padding: 60px;
        height: auto;
        background: #FFFFFF;
        box-shadow: 0px 4px 8px 0px rgba(0,0,0,0.07);
        border-radius: 20px;
    }
    .pcpcrow1{
        display: block;
        position: fixed;
        left: 0px;
        top: 0px;
        width: 100vw;
        height: 307px;
        background: #D7F2E9;
        z-index: -1;
    }
    .mobiel {
        display: none;
    }

    .pc {
        margin: 0 auto;
        max-width: 1000px;
        display: block;
    }

    .pc .row1 {
        font-weight: 600;
        font-size: 24px;
        text-align: center;
        margin-bottom: 24px;
    }

    .pc .row2 {
        display: flex;
        gap: 12px;
        margin-bottom: 18px;
    }

    .pc .row2 input {
        max-width: 480px;
        margin: 0 auto;
        height: 42px;
        font-size: 16px;
    }

    .pc .row3 {
        margin: 0 auto;
        max-width: 95%;
        background: #F5F5F5;
        border-radius: 15px;
        padding-top: 20px;
        font-size: 12px;
        color: #999999;
        padding: 16px;
        /* max-height: 500px;
        overflow-y: scroll; */
    }

    .pc .row3Content .row3Child {
        width: 20%;
    }
    .row1Span{
        font-weight: 600;
        font-size: 24px;
        color: #02B17B;
        display: inline-block;
    }
}
@media (max-width: 1000px){
    
    .pc .row3Content .row3Child {
        width: 33%;
    }
}
@media (max-width: 749px) {
    .mobiel {
        display: block;
    }
    .pcpcrow1{
        display: none;
    }
    .pc {
        display: none;
    }
}