/**
 * Created by PhpStorm.
 * Date         : 2019-09-30
 * Developer    : SeHwan Hwang
 * Description  : style.css
 * ¨Ï 2019. WebPlanet Co. All Rights Reserved.
 */

/**
 * Created by PhpStorm.
 * Date         : 2019-06-13
 * Developer    : SeHwan Hwang
 * Description  : style.css
 * ¨Ï 2019. WebPlanet Co. All Rights Reserved.
 */

section {
    padding: 10px 10px 0 10px;
}

.monthGrp {}
.monthGrp ul {overflow: hidden; font-size: 24px;}
.monthGrp ul li {float: left; padding: 0 10px;}
.monthGrp ul li span {font-weight: bold;}

.monthgrpbox{border: 1px solid #afaeae;padding: 5px;font-size: 13px;border-radius: 5px;min-width: 12px;text-align: center;}
.monthgrpyear {padding-top: 5px;padding-bottom: 5px;font-size: 17px;}
.monthgrptoday {background-color: #fff9e7;}
.dayColor1 {background-color: #f9f9f9;}


.calendar {
    width: 100%;
    border-top: 1px solid #ccc;
    /*border-left: 1px solid #ccc;*/
    box-sizing: border-box;
}


.dayWeek {
    width: 100%;
    border-bottom: 1px solid #ccc;
    box-sizing: border-box;
    overflow: hidden;
    background-color: #f1f1f1;
}
.sun {color: rgba(199,15,18,1.00);}
.sat {color: #0488E8;}
.dayWeek .dayWeekTxt {
    width: 14.28571%;   /* 100/7 = 14.28571..... */
    float: left;
    text-align: left;
    /*border-right: 1px solid #cccccc;*/
    box-sizing: border-box;
    padding: 10px;
    font-size: 13px;
   

}

.dayWeek .dayWeekTxt:last-child {/*border-right: 1px solid #cccccc;*/}

.weekGrp {
    width: 100%;
}

.weekGrp>div {
    position: relative;
}

.weekGrp .dayGrp {
    width: 100%;
    overflow: hidden;
    position: absolute; top: 0; right: 0; left: 0; bottom: 0;
    border-bottom: 1px solid #cccccc;
    box-sizing: border-box;
}

.weekGrp .dayGrp .day {
    width: 14.28571%;   /* 100/7 = 14.28571..... */
    height: 100%;
    float: left;
    /*border-right: 1px solid #cccccc;*/
    box-sizing: border-box;
}

.weekGrp .dayGrp .day .dayTxt {
    text-align: left;
    padding-top: 10px;
    padding-left: 10px;
    font-size: 16px;
    font-weight: 800;
    /*color: #464646;*/
}

.weekGrp .scheduleGrp {
    width: 100%;
    overflow: hidden;
    padding-top: 19px;  /* ÀÏÀÚ ³ôÀÌ¸¸Å­ */
}

.weekGrp .scheduleGrp .schedule {
    width: 14.28571%;   /* 100/7 = 14.28571..... */
    float: left;
    height: 0px;
    padding-bottom: 10%;    /* ´Þ·Â ³ôÀÌ */
    padding-top: 15px;
}

.weekGrp .scheduleGrp .schedule .scheduleTxtGrp {
    width: 100%;
    position: relative;
    cursor: pointer;
}

@media screen and (max-width: 650px) {
    .weekGrp .scheduleTxt {
        background-color: rgba(202, 205, 206, 0.72);
        margin-bottom: 2px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
        border-radius: 4px;
        padding-top: 4px;
        padding-bottom: 4px;
        font-size: 11px;
        color: white;
    }
}

@media screen and (min-width:651px){
    .weekGrp .scheduleTxt {
        background-color: rgba(202, 205, 206, 0.72);
        margin-bottom: 2px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
        border-radius: 4px;
        /*padding-top: 8px;*/
        /*padding-bottom: 8px;*/
        padding: 4px 0;
        font-size: 13px;
        color: #6f6f6f;
    }
}
.scheduleTxt {width: 1%;}
.scedule0 {width: 0%;}

.scedule1f {width: 100%;}
.scedule2f {width: 200%;}
.scedule3f {width: 300%;}
.scedule4f {width: 400%;}
.scedule5f {width: 500%;}
.scedule6f {width: 600%;}
.scedule7f {width: 700%;}

.scedule1e {width: 95%;}
.scedule2e {width: 195%;}
.scedule3e {width: 295%;}
.scedule4e {width: 395%;}
.scedule5e {width: 495%;}
.scedule6e {width: 595%;}
.scedule7e {width: 695%;}

.sceduleModalGrp {
    display: none;
    opacity: 0;
    position: fixed;
    top: 0; left: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.4);
    transition: all 0.3s ease-in-out;
}
.sceduleModal {
    display: none;
    background-color: #fefefe;
    margin: 20% auto;
    padding: 5px;
    border: 1px solid #888;
    width: 200px;
    max-height: 400px;
    overflow: auto;
    border-radius: 10px;
}

.sceduleModal .date {
    text-align: center;
    padding: 5px 0;
    font-weight: bold;
}

.sceduleModal .closeBtn {
    float: right;
    font-weight: bold;
    cursor: pointer;
}

/*¹Ìµð¾î Äõ¸®*/
/*´Þ·Â³ôÀÌ*/
@media screen and (max-width: 1100px) {
    .weekGrp .scheduleGrp .schedule { padding-bottom: 15%; }
}
@media screen and (max-width: 750px) {
    .weekGrp .scheduleGrp .schedule { padding-bottom: 20%; }
}
@media screen and (max-width: 550px) {
    .weekGrp .scheduleGrp .schedule { padding-bottom: 30%; }
}