
#menu_top .rcnt{
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    display: flex;
    align-items: center;
    padding-right: 20px;
    z-index: 50;
}

#menu_top .rcnt .utils {
    display: flex;
    margin-right: -7px;
}

#menu_top .rcnt .utils .is_basket {
    display: none;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background-color: #1D3126;
    position: absolute;
    top: 13px;
    right: 10px;
    font-size: 11px;
    text-align: center;
    line-height: 16px;
    color: #fff;
    animation: showOpacity 1s forwards;
}

#menu_top .rcnt .utils .is_basket.active {
    display: block;
}

#menu_top .container{
    display: flex;
}

#menuToggle
{
    display: none;
    flex-direction: column;
    justify-content: center;
    top: 50px;
    left: 50px;
    width: 60px;
    padding: 15px;
    z-index: 1;

    -webkit-user-select: none;
    user-select: none;
}

#menuToggle a
{
    text-decoration: none;
    color: #232323;

    transition: color 0.3s ease;
}

#menuToggle a:hover
{
    color: tomato;
}


#menuToggle input
{
    display: block;
    width: 34px;
    position: absolute;

    cursor: pointer;

    opacity: 0; /* hide this */
    z-index: 2; /* and place it over the hamburger */

    -webkit-touch-callout: none;
}

/*
 * Just a quick hamburger
 */

#menuToggle span
{
    display: block;
    width: 34px;
    height: 2px;
    margin-bottom: 5px;
    position: relative;

    background: #66625c;
    border-radius: 3px;

    z-index: 1;

    transform-origin: 4px 0px;

    transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
    background 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
    opacity 0.55s ease;
}

#menuToggle span:first-child
{
    transform-origin: 0% 0%;
}

#menuToggle span:nth-last-child(2)
{
    transform-origin: 0% 100%;
}

/*
 * Transform all the slices of hamburger
 * into a crossmark.
 */
#menuToggle input:checked ~ span
{
    opacity: 1;
    transform: rotate(43.5deg) translate(2px, -3.5px);
}

/*
 * But let's hide the middle one.
 */
#menuToggle input:checked ~ span:nth-last-child(3)
{
    opacity: 0;
    transform: rotate(0deg) scale(0.2, 0.2);
}

/*
 * Ohyeah and the last one should go the other direction
 */
#menuToggle input:checked ~ span:nth-last-child(2)
{
    transform: rotate(-45deg) translate(0, 7px);
}

/*
 * Make this absolute positioned
 * at the top left of the screen
 */
#menu
{
    position: absolute;
    width: 100%;
    margin: -135px 0 0 -15px;
    padding-top: 194px;
    list-style-type: none;
    -webkit-font-smoothing: antialiased;
    /* to stop flickering of text in safari */
    transform-origin: 0% 0%;
    transform: translate(-100%, 0);

    transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0);
}

/*
 * And let's slide it in from the left
 */
#menuToggle input:checked ~ ul
{
    transform: none;
}

#snb ul li{
    display: contents ;
}
#menu #menu_data{
    background-color: #ededed;
    position: absolute;
    left: 0;
    width: 60%;
    height: 100vh;
}
#menu #menu_data .has-sub{
    width: 100%;
    border-bottom: 1px solid #e5e5e5;
}

#menu #menu_data .has-sub.open{
    background-color: #66625c;
}

#menu #menu_data .has-sub a{
    display: flex !important;
    padding-left: 50px;
    font-size: 18px;
    color: #66625c;
}

#menu #menu_data .has-sub.open a{
    color: #FFFFFF;
}

#menu #menu_data > li.has-sub  > a::after {
    position: absolute;
    right: 18px;
    display: block;
    width: 11px;
    content: url(/iris/img/cd-icons_brown.svg);
    -webkit-transform: rotate(-90deg);
    -moz-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    -o-transform: rotate(-90deg);
    transform: rotate(-90deg);
    -webkit-transition-duration: 0.4s; /* Safari */
    transition-duration: 0.4s;
}
#menu #menu_data > li.has-sub.open > a::after {
    content: url(/iris/img/cd-icon_white.svg);
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    /*color: #237bd3;*/
    -webkit-transition-duration: 0.4s; /* Safari */
    transition-duration: 0.4s;
}

#menu #menu_data > li.has-sub.open > ul > li{
    width: 100%;
    background-color: #FFFFFF;
}

#menu #menu_data > li.has-sub ul li a{
    font-size: 15px;
    padding-left: 70px;
    width: 100%;
    color: #66625c;
}

#menu #menu_data > li.has-sub.open ul li a{
    color: #66625c;
}

#menu_top .rcnt{
    display: none;
}


/* 툴바 */
.toolbar {
    display: block;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 65px;
    background-color: #fff;
    border-top: 1px solid #E8E8E8;
    transition: All .2s ease-out;
    -webkit-transition: All .2s ease-out;
    -moz-transition: All .2s ease-out;
    -o-transition: All .2s ease-out;
    z-index: 151;
}

.toolbar.hide {
    bottom: -65px;
}

.toolbar ul {
    display: flex;
    width: 100%;
    height: 100%;
    justify-content: space-around;
    align-items: center;
}

.toolbar ul li {
    text-align: center;
    flex: 40px 0 0;
}

.toolbar ul li i {
    display: block;
    margin: 0 auto;
    width: 24px;
    height: 24px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}

.toolbar ul li i.ico_map {
    background-image: url(/iris/img/ico-tool-map.svg);
}

.toolbar ul li i.ico_reservation {
    background-image: url(/iris/img/ico-tool-calendar.svg);
}

.toolbar ul li i.ico_home {
    background-image: url(/iris/img/ico-tool-home.svg);
}

.toolbar ul li i.ico_package {
    background-image: url(/iris/img/ico-tool-basket.svg);
}

.toolbar ul li i.ico_profile {
    background-image: url(/iris/img/ico-tool-profile.svg);
}

.toolbar ul li.active i.ico_map {
    background-image: url(/iris/img/ico-tool-map-active.svg);
}

.toolbar ul li.active i.ico_reservation {
    background-image: url(/iris/img/ico-tool-calendar-active.svg);
}

.toolbar ul li.active i.ico_home {
    background-image: url(/iris/img/ico-tool-home-active.svg);
}

.toolbar ul li.active i.ico_package {
    background-image: url(/iris/img/ico-tool-basket-active.svg);
}

.toolbar ul li.active i.ico_profile {
    background-image: url(/iris/img/ico-tool-profile-active.svg);
}

.toolbar ul li span {
    font-size: 11px;
    color: #000000;
    line-height: 16px;
}
nav ul li.login_btn_box{
    margin-left: 80px;
}

/*메뉴*/
#main_cover {
    opacity: 0;
    pointer-events: none;
    transition: All .3s ease-in-out;
    -webkit-transition: All .3s ease-in-out;
    -moz-transition: All .3s ease-in-out;
    -o-transition: All .3s ease-in-out;
    overflow-y: hidden;

}

#con_box_main_full02.open #main_cover {
    position: absolute;
    opacity: 1;
    pointer-events: visible;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.7);
    z-index: 999;
    transition: All .3s ease-in-out;
    -webkit-transition: All .3s ease-in-out;
    -moz-transition: All .3s ease-in-out;
    -o-transition: All .3s ease-in-out;
}

#menuToggle #menu #menu_data .has-sub ul li a{
    padding-top: 20px;
    height: 60px;
}