@charset "utf-8";

#floating_footer {
	display: none;
	position: sticky;
	position: -webkit-sticky;
	width: 100%;
  	bottom: 0; /* required */
	background-color: #fff;
	border-top: solid 1px #ddd;
	z-index: 10;
}
.floating_footer_wrap {
	width: 100%;
	display: flex;
	justify-content: space-around;
	padding: 1px 15px;
}
.floating_footer_item {
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: end;
	align-items: center;
	padding: 6px 0;
	cursor: pointer;
}
.platform_icon {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 25px;
	height: 25px;
	border-radius: 50%;
	margin-bottom: 3px;
	background-color: #000;
}
.platform_icon > img {
	width: 12px;
}
.floating_footer_item > img {
	width: 25px;
	height: 25px;
	margin-bottom: 3px;
}
.floating_footer_item > img:last-child {
	width: 30px;
	height: 30px;
}
.login_footer_member {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    color: #fff;
    font-size: 12px;
    border-radius: 50%;
    margin-bottom: 3px;
}
.login_footer_member.direct {
    background-color: #f05a28;
}
.login_footer_member.naver {
    background-color: #1ec800;
}
.login_footer_member.kakao {
    background-color: #f1d021;
}
#tutoring.floating_footer_item.active::before {
	content: '';
    display: block;
    position: absolute;
    top: 2px;
    right: 5px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #FC3D46;
}
#counseling.floating_footer_item.active::before {
	content: '';
    display: block;
    position: absolute;
    top: 2px;
    right: 5px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #3281f9;
}
#footer {
	margin-top: auto;
	width: 100%;	
    color: #999;
    background-color: #303030;
}
.footer-wrap {
	position: relative;
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	   -moz-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	   -moz-box-orient: vertical;
	   -moz-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
	width: 100%;
	height: 100%;
	padding: 10px 0 20px 0;
}
.footer-inner {
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	width: 100%;
	padding-top: 10px;
}
.footer-text-wrap {
	/*margin: 0 auto;*/
}
.footer-text {
    color: #999;
    font-size: 14px;
}
.footer-logo-wrap {
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	   -moz-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
    margin: 16px 0;
}
.footer-logo-wrap > img {
    width: 120px;
}

.footer-link-wrap {
	position: relative;
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-webkit-justify-content: space-between;
	   -moz-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
	width: 100%;
	padding-bottom: 10px;	
}
.footer-link-wrap::before {
	content: '';
	display: block;
	position: absolute;
	width: 100%;
	height: 1px;
    left: 0;
	bottom: 0;
	background: #555;
	overflow: hidden;
}
.footer-link-wrap li {
	-webkit-box-flex: 1;
	-webkit-flex: auto;
	   -moz-box-flex: 1;
	    -ms-flex: auto;
	        flex: auto;
}
.footer-link-wrap a {
	color: #999;
}

.footer_social_link_wrap {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    padding-top: 4px;
}
.footer_social_link {
    color: #999;
    margin-right: 12px;
}
.footer_social_link > img {
    width: 100%;
}

@media screen and (max-width: 768px) {
	#floating_footer {
		display: block;
	}
}

@media screen and (max-width: 600px) {
    .footer-inner {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
           -moz-box-orient: vertical;
           -moz-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
    }
    .footer-logo {
        height: 40px;
    }
    .footer-text-wrap {
        font-size: 10px;
    }
    .footer-link-wrap {
        flex-wrap: wrap;
    }
    .footer-link-wrap a {
        font-size: 10px;
    }
    .footer-text {
        font-size: 11px;
        font-weight: 300;
        margin-top: 0;
    } }