@charset "UTF-8";

header {
    width: 100%;
    border-bottom: 1px solid #D9D9D9;
    position: relative;
}

.hd_active::after {
    content: "";
    height: 180px;
    width: 100%;
    position: absolute;
    top: 89px;
    background-color: #fff;
    left: 0;
    z-index: 1002;
    -webkit-box-shadow: 0px 10px 10px 0px rgba(148, 148, 148, 0.25);
    box-shadow: 0px 10px 10px 0px rgba(148, 148, 148, 0.25);
}

.header_wrap {
    border-bottom: 1px solid #D9D9D9;
    width: 100%;
    margin: 0 auto;
    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;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 20px 0;
    background-color: #fff;
    position: relative;
    z-index: 2000;
}

.nav_right {
	display: flex;
	height: 60px;
}

.loginBox {
	margin-left: 50px;
}
.header_wrap .logo_box {
    width: 237px;
    height: 48px;
}

.header_wrap .logo_box .logo {
    width: 100%;
    height: 100%;
    display: block;
    background: url(/roda/images/admin/logo.png) no-repeat center/contain;
}

.header_wrap nav {
    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;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
    max-width: 1520px;
    margin:0 auto;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

nav .nav_itemBox {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

nav .nav_itemBox .nav_item {
    margin-right: 55px;
    position: relative;
    z-index: 100;
}


nav .nav_itemBox .nav_item:last-child {
    margin-right: 0;
}

nav .nav_itemBox .nav_item>a {
    font-size: 1.125rem;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    -moz-transition: all .3s;
    transition: all .3s;
    padding: 30px 0;
}

nav .nav_itemBox .nav_item>a:hover,
nav .nav_itemBox .nav_item>a.nav_active {
    color: #894CB8;
    font-weight: 700;
}

nav .nav_itemBox .nav_item>a:hover::after,
nav .nav_itemBox .nav_item>a.nav_active::after {
    content: "";
    border-bottom: 3px solid #894CB8;
    display: block;
    position: absolute;
    bottom: -42px;
    width: 100%;
}

.nav_2depth {
    display: none;
    position: absolute;
    top: 49px;
    width: 216px;
    padding-top: 20px;
}

.nav_2dep_item {
    padding: 10px 0;
}

.nav_2dep_item:last-child {
    margin-bottom: 0;
}

.nav_2dep_item>a {
    font-size: 1rem;
    color: #8C8C8C;
}

.nav_2dep_item>a:hover,
.nav_2dep_item>a.nav_2dep_active,
.nav_2dep_item_mo>a.nav_2dep_active {
    color: #894CB8;
    font-weight: 600;
}

.loginBox a {
    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;
    border: 2px solid #894CB8;
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 16px;
    color: #894CB8;
}

.loginBox a:hover .login_icon {
    background: url(/roda/images/admin/login_icon_w.png) no-repeat center/contain;
}

.loginBox a:hover {
    background-color: #894CB8;
    color: #fff;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    -moz-transition: all .3s;
    transition: all .3s;
}

.loginBox a .login_icon {
    background: url(/roda/images/admin/login_icon.png) no-repeat center/contain;
    width: 20px;
    height: 20px;
    display: block;
    margin-right: 8px;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    -moz-transition: all .3s;
    transition: all .3s;
}

.user {
    position: relative;
    color: #858585;
    padding: 20px 0 20px 7px;
    cursor: pointer;
}

.user .name {
    display: flex;
    align-items: center;
}

.user .name .arrow {
    width: 20px;
    height: 20px;
    background: url(/roda/images/front/arrow_drop_down.png) no-repeat right center;
    display: inline-block;
    margin-left: 10px;
}

.user ul {
    position: absolute;
    top: 50px;
    left: -50px;
    width: 140px;
    height: auto;
    border: 1px solid #E6E6E6;
    border-radius: 3px;
    background: #fff;
    z-index: 9999;
    display: none;
}

.user ul li {
    border-bottom: 1px solid #E6E6E6;
    height: 40px;
    display: flex;
    align-items: center;
}

.user ul li:last-child {
    border-bottom: none;
}

.user ul a {
    border: none;
    color: #858585;
    width: 100%;
    border-radius: none;
    padding: 10px;
    display: flex;
    align-items: center;
    font-weight: 400;
}

.user ul a img {
    margin: 0 5px 0 0;
    filter: grayscale(1) opacity(0.7)
}

.user ul a:hover {
    background: none;
    color: #894CB8;
    font-weight: 500;
}

.user ul a:hover img {
    filter: none;
}

@media all and (max-width: 1279px) {
    .loginBox {
        display: none;
    }
}

.login_hamBox {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: none;
}

.hamberger-wrap {
    cursor: pointer;
}

.hamberger>span {
    display: block;
    width: 24px;
    height: 3px;
    margin-bottom: 5px;
    border-radius: 2px;
    background-color: #555555;
    -webkit-transition: opacity 0.5s, -webkit-transform 0.5s;
    transition: opacity 0.5s, -webkit-transform 0.5s;
    -o-transition: opacity 0.5s, -o-transform 0.5s;
    -moz-transition: transform 0.5s, opacity 0.5s, -moz-transform 0.5s;
    transition: transform 0.5s, opacity 0.5s;
    transition: transform 0.5s, opacity 0.5s, -webkit-transform 0.5s, -moz-transform 0.5s, -o-transform 0.5s;
}

.hamberger>span:last-child {
    margin-bottom: 0;
}

.hamberger-wrap.active span:nth-child(1) {
    -webkit-transform: translateY(8px) rotate(45deg);
    -moz-transform: translateY(8px) rotate(45deg);
    -ms-transform: translateY(8px) rotate(45deg);
    -o-transform: translateY(8px) rotate(45deg);
    transform: translateY(8px) rotate(45deg);
}

.hamberger-wrap.active span:nth-child(2) {
    opacity: 0;
}

.hamberger-wrap.active span:nth-child(3) {
    -webkit-transform: translateY(-8px) rotate(-45deg);
    -moz-transform: translateY(-8px) rotate(-45deg);
    -ms-transform: translateY(-8px) rotate(-45deg);
    -o-transform: translateY(-8px) rotate(-45deg);
    transform: translateY(-8px) rotate(-45deg);
}

.hd_top {
    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;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.header_wrap_mo .logo_box_mo {
    width: 237px;
    height: 48px;
}

.header_wrap_mo .logo_box_mo .logo {
    width: 100%;
    height: 100%;
    display: block;
    background: url(/roda/images/front/logo.png) no-repeat center/contain;
}

.gnb_box {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.loginBox_mo {
    margin-right: 20px;
    display: none;
}

.loginBox_mo a {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.login_icon_mo {
    background: url(/roda/images/front/login_icon_m.png) no-repeat center/contain;
    width: 20px;
    height: 20px;
    display: block;
    margin-left: 8px;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    -moz-transition: all .3s;
    transition: all .3s;
}

.nav_itemBox_mo {
    width: 100%;
    display: none;
    height: calc(100vh - 77px);
    position: absolute;
    top: 90px;
    left: 0;
    background-color: #fff;
    z-index: 999;
    overflow: auto;
}

.nav_item_mo {
    border-bottom: 1px solid #E7E7E7;
}

.nav_item_mo:last-child {
    border-bottom: none;
}

.nav_item_mo>a {
    font-size: 1.25rem;
    font-weight: 600;
    padding: 20px 30px;
    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;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.nav_item_mo_arrow {
    background: url(/roda/images/front/menu_arrow.png) no-repeat center/contain;
    width: 28px;
    height: 28px;
    display: block;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    -moz-transition: all .3s;
    transition: all .3s;
}

.nav_2depth_mo {
    display: none;
}

.nav_2dep_item_mo {
    background-color: #F9F9F9;
    border-bottom: 1px solid #E7E7E7;
}

.nav_2dep_item_mo:last-child {
    border-bottom: none;
}

.nav_2dep_item_mo a {
    padding: 20px 40px;
    font-size: 1.125rem;
    display: block;
}

@media all and (max-width: 1441px) {
    .header_wrap {
        max-width: 1280px;
    }
}

@media all and (max-width: 1281px) {
    .header_wrap {
        max-width: 1180px;
    }

    nav .nav_itemBox .nav_item {
        margin-right: 35px;
        position: relative;
        z-index: 99999;
    }
}


@media all and (max-width: 1279px) {
    header {
        padding: 0;
        /* height: 100vh; */
    }

    .header_wrap {
        max-width: 1520px;
        padding: 0;
        /* display: none; */
    }

    .hd_top {
        border-bottom: 1px solid #E7E7E7;
        padding: 20px 30px;
    }

    nav .nav_itemBox {
        display: none;
    }

    .login_hamBox {
        display: -webkit-box;
        display: -webkit-flex;
        display: -moz-box;
        display: -ms-flexbox;
        display: flex;
    }
}


@media all and (max-width: 885px) {

    .header_wrap .logo_box {
        width: 172px;
        height: 37px;
    }

    .header_wrap .logo_box .logo {
        width: 100%;
        height: 100%;
        display: block;
        background: url(/roda/images/admin/logo.png) no-repeat center/contain;
    }

    .nav_itemBox_mo {
        top: 78px;
    }
}



@media all and (max-width: 481px) {
	.hd_top {padding: 5px 20px;}
	
    .header_wrap .logo_box {
        width: 120px;
        height: 26px;
    }

    .header_wrap .logo_box .logo {
        width: 100%;
        height: 100%;
        display: block;
        background: url(/roda/images/admin/logo.png) no-repeat center/contain;
    }

    .loginBox_mo a {
        font-size: 0.875rem;
    }

    .nav_itemBox_mo {
        top: 68px;
        height: calc(100vh - 68px);
    }

    .nav_item_mo>a {
        font-size: 1rem;
    }

    .nav_item_mo_arrow {
        width: 18px;
        height: 18px;
    }

    .nav_2dep_item_mo a {
        padding: 20px 30px;
        font-size: 1rem;
    }


    .hamberger>span {
        display: block;
        width: 20px;
        height: 2px;
        margin-bottom: 4px;
        border-radius: 2px;
        background-color: #555555;
        -webkit-transition: opacity 0.5s, -webkit-transform 0.5s;
        transition: opacity 0.5s, -webkit-transform 0.5s;
        -o-transition: opacity 0.5s, -o-transform 0.5s;
        -moz-transition: transform 0.5s, opacity 0.5s, -moz-transform 0.5s;
        transition: transform 0.5s, opacity 0.5s;
        transition: transform 0.5s, opacity 0.5s, -webkit-transform 0.5s, -moz-transform 0.5s, -o-transform 0.5s;
    }

    .hamberger>span:last-child {
        margin-bottom: 0;
    }

    .hamberger-wrap.active span:nth-child(1) {
        -webkit-transform: translateY(6px) rotate(45deg);
        -moz-transform: translateY(6px) rotate(45deg);
        -ms-transform: translateY(6px) rotate(45deg);
        -o-transform: translateY(6px) rotate(45deg);
        transform: translateY(6px) rotate(45deg);
    }

    .hamberger-wrap.active span:nth-child(2) {
        opacity: 0;
    }

    .hamberger-wrap.active span:nth-child(3) {
        -webkit-transform: translateY(-6px) rotate(-45deg);
        -moz-transform: translateY(-6px) rotate(-45deg);
        -ms-transform: translateY(-6px) rotate(-45deg);
        -o-transform: translateY(-6px) rotate(-45deg);
        transform: translateY(-6px) rotate(-45deg);
    }
}
.loading_bar {position: fixed; width: 100%; height: calc(100vh);top:0;left: 0; background: rgba(0, 0, 0, 0.2); z-index: 1001; display: flex; align-items: center; justify-content: center; }
.loading_bar img {filter: drop-shadow(3px 3px 3px rgba(0, 0, 0, 0.3)); margin-bottom: 0px;}
