html{
    overflow: auto;
    height: 100%;
}

body{
    margin: 0;
    height: 100%;
}

#list-container {
    background-color: white;
    box-shadow: 0 0 35px rgba(3,3,3,0.4);
    border: unset;
    border-radius: 7px;
    padding: 2px;
    height: auto;
    max-width: 520px;
    margin: 0 auto;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial;
}

.list-item {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    color: #333;
    user-select: none;
    position: relative;
    cursor: pointer;
    padding: 8px;
    margin: 10px;
    /* margin-bottom: 20px; */
    cursor: pointer;
    min-height: 36px;   
}

.list-icon{
    float: left;
    font-size: 1.5rem;
    text-align: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    line-height: 1.8;
    color: #636363;
}

.list-icon-default{
    border: 4px solid rgb(227, 227, 227);
    background-color: rgb(242, 242, 242);
    box-shadow: 0 0 8px rgba(0,0,0,0.4);
}

.list-item-sel{
    color: #eb008c !important;
    /*border-bottom: 1px solid #eb008c !important;*/
}

.list-icon-complete{
    color: rgb(88, 129, 25);
    border: 4px solid greenyellow;
    background-color: white;
    box-shadow: 0 0 10px 5px rgba(127, 255, 66, 0.4);
}

.list-icon-incomplete{
    color: rgb(155, 101, 0);
    border: 4px solid orange;
    background-color: white;
    box-shadow: 0 0 10px 5px rgba(255, 169, 27, 0.4); 
}

.list-sectright {
    display: inline-block;
    font-size: 1rem;
    width: 100%;
}

.list-sectright p {
    margin-top: 5px;
    margin-bottom: 12px;
}

#listbtn {
    z-index: 900;
    cursor: pointer;
    position: absolute;
    background-color: whitesmoke;
    height: 64px;
    width: 64px;
    border-radius: 6px 0px 0px 0px;
    right: 0px;
    bottom: 0px;
    padding: 13px;
}

.menubtn{
    height: 100%;
    width: 100%;
}

#logo{
    position: absolute;
    top: 5px;
    left: 5px;
    background-image: url(../img/oylogo.png);
    background-repeat: no-repeat;
    width: 20%;
    background-size: contain;
    height: 200px;
    min-width: 130px;
    max-width: 220px;
}

.vn-player .vn-cnt-place {
    position: absolute;
    z-index: 1000;
    display: none;
    background: rgba(45,45,45,.90);
    color: #fff;
    box-shadow: 2px 2px 50px 5px rgba(0,0,0,.3);
    transition: all 1s cubic-bezier(0,.1,.4,1);
}

.vn-player .vn-cnt-place a{
    text-decoration: underline;
}

/**
* Modal
**/
#modal{
    display: none;
    cursor: pointer;
    position: fixed;
    z-index: 998;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow-y: auto;
    background-color: rgba(0,0,0,0.4);
}

#modal *{
    box-sizing: content-box !important;
}

#modalwin {
    display: block;
    margin: 2% auto;
    width: 94%;
    overflow-y: hidden;
}

#modalfooter {
    text-align: center;
}

input.btn-dp {
    margin-top: 40px;
    cursor: pointer;
    background-color: #01ACF1;
    color: white;
    padding: 13px 25px 13px 25px;
    border: unset;
    font-size: 1rem;
    border-radius: 7px;
    margin-bottom: 7px;
}

.list-pctbox {
    width: 100%;
    height: 18px;
}

@media screen and (min-width: 767px){

    #list-main{
        padding: 10px; 
    }   

    #list-container {
        /*box-shadow: 0 0 35px rgba(3,3,3,0.4);
        border: 6px outset;
        border-radius: 12px;*/
        height: auto;
        width: 100vw;
        max-width: 520px;
        margin: 0 auto;
        margin-bottom: 25px;
        padding: 22px;
    }

    input.btn-dp {
        cursor: pointer;
        background-color: #01ACF1;
        color: white;
        padding: 13px 25px 13px 25px;
        border: unset;
        font-size: 1rem;
        margin-top: 40px;
        border-radius: 7px;
    }

    .list-item {
        -webkit-touch-callout: none;
        -webkit-user-select: none;
        -khtml-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        color: #333;
        user-select: none;
        position: relative;
        cursor: pointer;
        padding: 8px;
        margin: 10px;
        margin-bottom: 20px;
        cursor: pointer;
        min-height: 36px;   
    }

    .list-sectright {
        float: left;
        font-size: 1.1rem;
    }

    .list-sectright p {
        margin-top: unset;
        margin-bottom: unset;
    }

    #listbtn {
        z-index: 900;
        cursor: pointer;
        position: absolute;
        background-color: whitesmoke;
        height: 64px;
        width: 64px;
        border-radius: 6px 0px 0px 0px;
        right: 0px;
        bottom: 0px;
        padding: 13px;
    }

}