/* 글자 자르기 */
.ellipsis { 
/* 한 줄 자르기 */ 
	/* display: inline-block;  */
	width : 100%;
	white-space: nowrap; 
	overflow: hidden; 
	text-overflow: ellipsis; 
}

.ellipsis-2 { 
      overflow: hidden;
      text-overflow: ellipsis;
      -webkit-line-clamp: 2; 
      -webkit-box-orient: vertical;
}
.ellipsis-3 { 
     overflow: hidden;
     text-overflow: ellipsis;
     -webkit-line-clamp: 3; 
     -webkit-box-orient: vertical;
}

.window_small .title_pop {
    font-size: 22px;
    margin-bottom: 20px;
    text-align: left;
}

.window_small .blue_btn {
    padding: 7px 7px 8px 8px;
    width: 160px;
    background-color: #1f4fc1;
    border-radius: 6px;
    color: #fff;
    font-size: 16px;
    margin: 0 auto;
    margin-bottom: 10px;
    position: absolute;
    left: 50px;
    top: 145px;
}

.window_small .glay_btn {
    padding: 7px 30px 8px 30px;
    width: 120px;
    background-color: #393939;
    border-radius: 6px;
    color: #fff;
    font-size: 16px;
    margin: 0 auto;
    margin-bottom: 10px;
    position: absolute;
    right: 50px;
    top: 145px;
}

.window_small .roundBox2 {
    width: 100%;
    height: auto;
    background-color: #fff;
    border-radius: 8px;
    padding: 1%;
}

.window_small .roundBox2 .title_s {
    font-size: 17px;
    padding: 10px;
    height: auto;
}


.window_small {
    height: auto;
    width: 100%;
    background-color: #e2e2e2;
    padding: 20px;
    border-radius: 5px;
}

.window_small .title_s {
    width: 100%;
    min-height: 40px;
}

.btnZone {
    width: 100%;
    margin: 0 auto;
    text-align: center;
    margin-top: 30px;
}

.close2 img{
	position: absolute;
    top: 15px;
    right: 20px;
}    
