section{
    max-width : 1200px;
    margin : 10px auto;
}

form{
    background-color : #eaeaea;
    padding : 15px 15px 18px 15px;
    border : 5px solid #dcdada
   /*  margin :0 100px 0 100px; */
}

.title{
    font-weight : 700;
    padding : 10px 0;
    font-size : 13px;
}

.input-wrap{
    display : flex;
    align-items : center;
    justify-content: space-between;
}

.justify-start{
    justify-content : flex-start;
}

input[type="text"], input[type="date"]{
	height : 40px;
	padding : 0 12px;
    border : 1px solid #e5e5e5;
}



.select-wrap{
    position : relative;
}

.select-display{
    height : 40px;
    width : 100%;
    border : 1px solid #e5e5e5;
    border-radius : 1px;
    background-color : #fff;
    background-image : url('/images/icons/select.png');
    background-size : 10px;
    background-repeat : no-repeat;
    background-position : right 12px center;
    padding : 0 12px;
    line-height : 40px;
    color : #909090;
    font-size : 13px;
}

.select-display.on{
    color : #000;
}

select{
    opacity : 0;
    width : 100%;
    height : 40px;
    position : absolute;
    margin-top : -40px;
}


.checkbox-wrap{
    display : flex;
    align-items: center;
    justify-content: flex-start;
}

.checkbox-wrap label{
    color : #6d6d6d;
    font-size : 13px;
    display : flex;
    align-items: center;
    margin-right : 4px;
}

.checkbox-wrap label:before{
    /* border : 1px solid #909090; */
    /* border-radius : 2px; */
    width : 14px;
    height : 14px;
    display : block;
    content : '';
    margin-right : 6px;
    
        cursor: pointer; 
    /* padding-left: 23px; */ 
    background-repeat: no-repeat;
    background-image: url('/images/icons/checker-off.svg');
}

.checkbox-wrap input[type='checkbox']:checked + label:before{
	/* border : 1px solid #ffffff;
    background-color : #ffffff; */
    background-image: url('/images/icons/checker-on.svg');
    /* background-image : url('/images/icons/checked.png'); */
    background-size : 14px;
    background-repeat : no-repeat;
}

.checkbox-wrap input[type='checkbox']{
    width : 0;
    height : 0;
    opacity : 0;
    position : absolute;
}


.radio-wrap{
    display : flex;
    align-items: center;
    justify-content: flex-start;
}

.radio-wrap label{
    color : #6d6d6d;
    font-size : 13px;
    display : flex;
    align-items: center;
    margin-right : 4px;
}

.radio-wrap label:before{
    border : 1px solid #909090;
    border-radius : 50%;
    width : 13px;
    height : 13px;
    display : block;
    content : '';
    margin-right : 4px;
}

.radio-wrap input[type='radio']:checked + label:before{
    background-color : #909090;
}

.radio-wrap input[type='radio']{
    width : 0;
    height : 0;
    opacity : 0;
    position : absolute;
}

textarea{
    width : 100%;
    height : 100px;
	padding : 12px;
    border-radius : 1px;
    border: 1px solid #e5e5e5;
    background-color : #fff;
}

button{
    background-color : #333;
    color : #fff;
    border-radius : 3px;
    height : 56px;
    width : 100%;
}


/* width */

.r-1{
    width : 100%;
}

.r-2{
    width : 50%;
}

.r-3{
    width : 33%;
}

.r-4{
    width : 25%;
}

.r-5{
    width : 20%;
}


/* margin */

.mr-0{
    margin-right : 0;
}

.mr-10{
    margin-right : 10px;
}

.mr-20{
    margin-right : 20px;
}




/* more */
.more {
    font-size : 12px;
    border : 1px solid #666 ;
    color : #888;
    padding : 2px 5px;
    margin-left : 14px;
    cursor : pointer;
}

.flexwrap-wrap{
    flex-wrap : wrap;
}

.privacy-agree-form{
    margin-top : 16px;
    margin-bottom : 30px;
    width : 100%;
    font-size : 13px;
    background-color : #fff;
    padding : 20px;
    border : 1px solid #ccc;
    border-radius : 2px;
    height: 100px;
    outline:none;
}

div.privacy-agree-form{
    overflow-y : scroll;
}
