section {
    min-width: 100%;
    height: 100vh;
    overflow: hidden;
    display: flex;
    justify-content: space-between;
}
section .lefeimg {
    width: 64%;
    background-color: #ff8aa3;
    padding: 3% 5% 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: url(/Static/img/tower.svg) 0 60% / 520px repeat-x #f5f5f5;
    animation: movebg 8s linear infinite;
    
}
section .lefeimg ul {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
section .lefeimg ul:last-child {
    height: 10%;
}
section .lefeimg .title p {
    font-size: calc(1rem + 0.88vw);
    color: #000;
    font-weight: 500;
}
section .lefeimg .title h1 {
    font-size: calc(1rem + 3vw);
    font-weight: 900;
    background: linear-gradient(to right top, #8538ff, #4eeaff);
    color: transparent;
    -webkit-background-clip: text;
}

/* 주사위 */
section .lefeimg .diceWrap {
    width: 500px;
    display: flex;
    align-items: center;
    margin: 5% auto;
}
section .lefeimg .diceWrap>.dice{
    width: 300px;
    height: 370px;
    position: relative;
    margin: 20% auto;
}
.shadow {
    position: absolute;
    width: calc(100% - 90px);
    height: 20px;
    left: 30%;
    bottom: 20px;
    border-radius: 100%;
    background-color: rgba(0, 0, 0, 0.2);
    
}
section .lefeimg .diceWrap>ul>.ball {
    width: calc(100% - 90px);
    position: absolute;
    top: 40px;
    left: 30%;
}

/* 오른쪽 주사위 */
section .lefeimg .diceWrap>.dice.d02 .ball {
    width: calc(100% - 120px);
    position: absolute;
    top: 40px;
    left: 0;
    animation: bounce 1.33s infinite;
}
.dice.d02 .shadow {
    width: calc(100% - 120px);
    animation: shadow 1.33s infinite;
    left: 0;
}


/* 애니메이션 */
.dice.d01 .shadow {animation: shadow 1.3s infinite;}
section .lefeimg .diceWrap>.dice.d01 .ball {
    animation: bounce 1.3s infinite;
}


/* ================ 주사위 =====================*/
 @keyframes bounce {
     0% {
         top: 40px;
     }

     50% {
         top: 120px;
         height: 40px;
     }

     95% {
         top: 40px;
     }

     100% {
         top: 40px;
     }
 }
   @keyframes shadow {
       0% {
           transform: scale(0.1);
           background-color: rgba(0, 0, 0, 0.1);
       }

       50% {
           transform: scale(1);
           background-color: rgba(0, 0, 0, 0.2);
       }

       55% {
           transform: scale(1);
           background-color: rgba(0, 0, 0, 0.2);
       }

       65% {
           transform: scale(0.5);
           background-color: rgba(0, 0, 0, 0.15);
       }

       95% {
           transform: scale(0.1);
           background-color: rgba(0, 0, 0, 0.1);
       }

       100% {
           transform: scale(0.1);
           background-color: rgba(0, 0, 0, 0.1);
       }
   }

   /* 배경 */
        @keyframes movebg {
            0% {background-position: 0 60%;}
            100% {background-position: -520px 60%;}
        }
/* ==================== // 애니메이션 ======================== */
/* 입장하기 버튼 css -> button.css */
/* =================== 오른쪽 끝 ===================== */

/* ================== 왼쪽 =================== */
.login {
    width: 36%;
    padding: 0 5%;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    position: relative;
}

.login .L_title > li:first-child {
    width: calc(100% / 5);
    overflow: hidden;
}

.login .L_title>li:last-child {
    font-size: calc(1rem + 0.8vw);
    font-weight: 800;
    margin-top: 20px;
}

/* login input */
.login_form>li {
    margin-bottom: 24px;
}

.form p {
    font-size: clamp(1rem,2vw,0.8rem);
    margin-bottom: 8px;
}
.form input {
    width: 100%;
    padding: 14px;
    border-radius: 10px;
    border: 1px solid #d3d2d2;
    outline: none;
}
.form input:focus {
    outline: 1.5px solid #8538ff;
}
.form input::placeholder {
    color: #d3d2d2;
}


section .login .logo {
    width: 30%;
    margin: 0 auto 24px;
}
.login ul:last-child li {
    text-align: center;
    color: #757575;
}

/* 수업리스트 만들기 */
.listWrap {
    position: absolute;
    top: 0;
    right: 0;
    width: 36%;
    height: 100%;
    padding: 3%;
    background-color: #fff;
    z-index: 2;
    display: none;
}

.listWrap .L_title {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.listWrap .L_title li:first-child {
    font-size: calc(1rem + 0.8vw);
    font-weight: 700;
}

.listWrapDisplay {
    position: absolute;
    top: 0;
    right: 0;
    width: 36%;
    height: 100%;
    padding: 3%;
    background-color: #fff;
    z-index: 2;
}
.listWrapDisplay .L_title {
    width: 92%; /*L_title내부 요소간 간격조정을 위해*/
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-left: 2.5%;
}
.listWrapDisplay .L_title li:first-child {
    font-size: calc(1rem + 0.8vw);
    font-weight: 700;
}
/* 수업만들기버튼 css -> button.css */

/* list */
.list {
    height: calc(100% - 60px);
    overflow-y: auto;
    margin-top: 5%;
    padding: 10px 24px 10px 10px;
}
/* 스크롤 커스텀 */
.list::-webkit-scrollbar {
    width: 16px;
    /* background-color: #f5f5f5; */
}

/*마우스 호버 or 스크롤할때 -> 스크롤바표시 */
/*.list:hover::-webkit-scrollbar,*/
.list:active::-webkit-scrollbar {
    width: 16px; /* 원래 스크롤바 너비로 복원 */
}

.list::-webkit-scrollbar-track {
    background-color: transparent;
    border-radius: 100px;
    margin: 10px 0px;
}

.list::-webkit-scrollbar-thumb {
    border-radius: 100px;
    background-color: #b0b0b0;
    border: 6px solid transparent;
    background-clip: content-box;
}

/* 리스트 폼*/
.list .list_fom {
    width: 100%;
    height: 170px;
    border-radius: 10px;
    border: 1px solid hsla(0, 0%, 0%, .08);
    background-color: transparent;
    padding: 3%;
    text-align: center;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
   /* box-shadow: rgba(0, 0, 0, 0.1) 3px 3px 3px 3px;*/
}

.list .list_fom:hover{
    cursor: pointer;
    box-shadow: 0 0 3px 1.3px rgba(0, 0, 0, 0.1);
}

.list .listNone span {
    display: block;
    width: 48px;
    height: 48px;
    margin: 0 auto;
    overflow: hidden;
    margin-bottom: 16px;
}

/* list_ON*/
.list .list_ON {
    justify-content: space-between;
}
.list .list_ON .listcon_tit {
    text-align: left;
}
.list .list_ON .listcon_tit > li:first-child {
    font-size: calc(1rem + 0.3vw);
    font-weight: 600;
    margin-bottom: 8px;
}
.list .list_ON .listcon_tit > li:last-child {
    display: flex;
}
.list .list_ON .listcon_tit > li:last-child p {
    width: 83px; /*날짜와 메모사이 간격 줄이기*/
    font-weight: 600;
}
.list .list_ON .listcon_tit>li:last-child span {
    width: calc(100% - 85px);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.list .list_ON .listcon_btn {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
}
.list .list_ON .listcon_btn .frame {
    width: 35%;
}

/* 아이콘 버튼 */
.list .list_ON .listcon_btn .ico_btn {
    width: 23%; /*아이콘 요소간 간격 줄이기*/
    display: flex;
    justify-content: space-evenly;
}
span.icon {
    width: 35px;
    height: 35px;
    padding: 5px;
    
}

/*아이콘hover시 라운드스퀘어의 회색백그라운드 설정*/
.icon.revise.modify-btn:hover,
.icon.delete.delete-btn:hover {
    background-color: #e5e4e4;
    border-radius: 10px;
    cursor: pointer;
}


/* popup */
#popup_bg {
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    position: absolute;
    top: 0;
    left: 0;
    z-index: 999;
    display: none;
}
.login_form.list_popup {
    width: 500px;
    padding: 2.5%;
    background-color: #fff;
    border-radius: 15px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    box-shadow: 5px 10px 10px 1px rgba(0, 0, 0, .3);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    display: none;
}
.login_form.list_popup ul:first-child {
    display: flex;
    justify-content: space-between;
}
span.icon.close {
    margin-right: 0;
    margin-bottom: 24px;
}

/* delete_alert */
.alert {
    width: 300px;
    padding: 30px;
    border-radius: 10px;
    background-color: #fff;
    border: 1px solid #d3d2d2;
    box-shadow: 5px 10px 10px 1px rgba(0, 0, 0, .3);
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1000;
    display: none;
}
.alert p {
    font-size: clamp(1rem, 2vw, 0.8rem);
    font-weight: 600;
    line-height: 24px;
}
.alert ul {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 8px;
}
.alert ul li {
    width: 48%;
}
.alert ul .custom-btn {
    box-shadow: none;
}
.alert ul .typeB {
    border: 1px solid #d3d2d2;
}
.alert ul .typeB:hover {
    border: 1.5px solid #503af6;
    color: #503af6;
}

.copy_alert .complete_btn {
    width: 100%;
}