#quick-counsel {
    z-index: 89;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    transform: translateY(calc(100% - 45px));
    transition: transform .6s;
}
#quick-counsel.active {
    transform: translateY(0);
}
#quick-counsel-close {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
}
#quick-counsel-close.active {
    display: block;
}
#quick-counsel .quick-handler-wrap {
    position: relative;
    z-index: 1;
    width: 235px;
    margin: 0 auto;
}
#quick-counsel .quick-handler-wrap::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 12px 12px 0 0;
    box-shadow: 2px -1px 17px 9px #00000033;
}
#quick-counsel .quick-handler {
    z-index: 1;
    position: relative;
    font-family: 'Pretendard';
    font-size: 24px;
    font-weight: 700;
    width: 100%;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px 10px 0 0;
    background-color: #CC3333;
    color: #fff;
    text-align: center;
    cursor: pointer;
    transition: background-color .3s;
}
#quick-counsel .quick-handler::after{
    content: '';
    display: inline-block;
    width: 24px;
    aspect-ratio: 1;
    pointer-events: none;
    margin-left: 15px;
    margin-right: -15px;
    background: url(/imges/quickCounsel/arrow_up.svg) no-repeat center / contain;
    transition: transform .4s;
}
#quick-counsel.active .quick-handler::after {
    transform: rotate(180deg);
}
#quick-counsel .quick-form-wrap {
    position: relative;
    z-index: auto;
    width: 100%;
    padding: 50px 10px;
    margin-top: -5px;
    box-sizing: border-box;
}
#quick-counsel .quick-form-wrap .quick-form-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(115, 8, 0, 0.45);
    box-shadow: 2px -1px 17px 9px #00000033;
    border-top: 5px solid #CC3333;
    backdrop-filter: blur(20px);
}
#quick-counsel .quick-form {
    position: relative;
    max-width: 1180px;
    margin: 0 auto;
    display: flex;
    align-items: start;
    justify-content: center;
    gap: 42px;
}
#quick-counsel .quick-form .form-title {
    font-size: 35px;
    font-weight: 700;
    color: #FFFFFF;
    line-height: 52px;
    letter-spacing: -0.05em;
    min-width: 130px;
}
#quick-counsel .form-submit button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 86px;
    font-size: 32px;
    font-weight: 700;
    color: #fff;
    background-color: #CC3333;
    border-radius: 5px;
}
#quick-counsel .form-group {
    display: flex;
    justify-content: space-between;
    gap: 42px;
    width: 100%;
}
#quick-counsel input[type=text] {
    width: 100%;
    height: 35px;
    border: 0;
    font-size: 16px;
    padding: 0 10px;
}

#quick-counsel .input-box-wrap {
    display: grid;
    grid-template-columns: 170px 190px;
	grid-template-rows: 35px 111px;
    gap: 8px 10px;
}

#quick-counsel .input-box {
    position: relative;
}
#quick-counsel .input-box .input-text,
#quick-counsel .input-box .input-placeholder {
    position: absolute;
    top: 7px;
    left: 10px;
    color: #999;
    font-size: 16px;
    pointer-events: none;
    opacity: 0;
    max-width: 90%;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

#quick-counsel .input-box .input-text {
    opacity: 1;
}

#quick-counsel .input-box .input-text.required::after,
#quick-counsel .input-box .input-placeholder.required::after {
    content: '*';
    color: #CB9F76;
    font-size: 16px;
    line-height: 12px;
    margin-left: 2px;
}

#quick-counsel .input-box input::placeholder {
    opacity: 0;
}

#quick-counsel .input-box input:placeholder-shown ~ .input-placeholder {
    opacity: 1;
}

#quick-counsel .input-box input:placeholder-shown ~ .input-text {
    opacity: 0;
}

#quick-counsel .input-box-wrap textarea {
    width: 100%;
    height: 111px;
    background-color: #FFFFFF;
	font-size: 16px;
    border: none;
    grid-column: 3 / 1;
    padding: 7px 10px;
}
#quick-counsel .input-box-wrap textarea::placeholder {
	color: #999;
	font-weight: 400;
}

#quick-counsel .date-time-box {
    display: flex;
    flex-direction: column;
    gap: 18px;
    width: 251px;
    flex-shrink: 0;
}

#quick-counsel .dropdown-container {
    position: relative;
}

#quick-counsel .dropdown-overlay {
    display: contents;
}

#quick-counsel .dropdown-container__input {
    width: 100%;
    height: 35px;
    border: none;
    border-bottom: 1px solid #CB9F76;
    background-color: transparent;
    color: #fff;
    font-size: 18px;
    line-height: 1;
    letter-spacing: -0.05em;
    padding-right: 43px;
	padding-left: 10px;
    display: flex;
    align-items: center;
    cursor: pointer;
}

#quick-counsel .dropdown-container__input span {
    color: #CB9F76;
	margin-left: 2px;
}

#quick-counsel .dropdown-container::after {
    content: '';
    position: absolute;
    right: 0;
    bottom: 6px;
    width: 26px;
    height: 26px;
	margin-right: 5px;
    pointer-events: none;
}

#quick-counsel .date-time-box .dropdown-container:nth-child(1)::after {
    background: url('/imges/quickCounsel/i_calendar.png') no-repeat center / contain;
}

#quick-counsel .date-time-box .dropdown-container:nth-child(2)::after {
    background: url('/imges/quickCounsel/i_clock.png') no-repeat center / contain;
    width: 24px;
    height: 24px;
}

#quick-counsel .dropdown-container .dropdown {
    display: none;
    position: absolute;
    bottom: calc(100% + 8px);
    left: 0;
    z-index: 11;
    background-color: #fff;
    width: 100%;
    box-shadow: 0 4px 15px 0 #00000026;
    border-radius: 3px;
}

#quick-counsel .dropdown.show {
    display: block;
}

#quick-counsel .dropdown::-webkit-scrollbar {
    width: 3px;
}

#quick-counsel .dropdown::-webkit-scrollbar-track {
    background: #D9D9D9;
}

#quick-counsel .dropdown::-webkit-scrollbar-thumb {
    background: #CC3333;
}

#quick-counsel .dropdown-container .dropdown-date {
    width: 320px;
    left: 50%;
    transform: translateX(-50%);
}

#quick-counsel .dropdown-container .dropdown-time {
    width: 320px;
    left: 50%;
    transform: translateX(-50%);
    max-height: 262px;
    overflow-y: auto;
    padding: 12px;
}

#quick-counsel .dropdown-time .rs-time-box {
    padding-top: 0;
}

#quick-counsel .dropdown-time .reservation-box .time-box-scoll {
    height: auto;
    max-height: 220px;
    margin-top: 0;
}

#quick-counsel .dropdown-time .reservation-box .time-box {
    max-width: 100%;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    list-style: none;
}
#quick-counsel .dropdown-time .reservation-box .time-box .swiper-slide {
    padding: 0;
    width: calc((100% - 30px) / 4);
}
#quick-counsel .dropdown-time .reservation-box .time-box .swiper-slide.done > span {
    background: #ececec;
    border-color: #ececec;
    color: #a7a7a7;
}
#quick-counsel .dropdown-time .swiper-slide .btn_round {
    font-size: 0.933rem;
    color: #666;
    height: 2.133rem;
    line-height: 2.133rem;
    border-color: #ccc;
    font-family: 'Campton', sans-serif;
}
#quick-counsel .dropdown-time .swiper-slide .btn_round.active {
    color: #fff;
    background-color: #a73439;
    border-color: #a73439;
}
#quick-counsel .dropdown-time .btn_round .soldout {
    top: 0;
    right: 0;
    left: auto;
    max-width: 47px;
    font-size: 0.666rem;
}
#quick-counsel .dropdown-time .result-text {
    width: 100%;
    text-align: center;
    font-size: 14px;
    color: #333;
    padding: 20px 0;
    list-style: none;
}
#quick-counsel .dropdown-date.renew_reservation {
    background-color: #fff;
    padding: 12px 10px 16px;
}
#quick-counsel .dropdown-date .swiper-datapicker {
    position: relative;
}
#quick-counsel .dropdown-date .ui-datepicker .ui-datepicker-header {
    height: 31px;
    text-align: center;
    margin-bottom: 32px;
}
#quick-counsel .dropdown-date .ui-datepicker .ui-datepicker-title {
    line-height: 31px;
    font-size: 1.533rem;
    display: inline-block;
    padding: 0;
    font-family: 'Campton', sans-serif;
    font-weight: 400;
}
#quick-counsel .dropdown-date .ui-datepicker-title .ui-datepicker-year:after {
    content: '.';
}
#quick-counsel .dropdown-date .swiper_btn_wrap {
    position: absolute;
    height: 1.5rem;
    top: 1.3rem;
    width: 100%;
    z-index: 1;
}
#quick-counsel .dropdown-date .swiper_btn_wrap .inbox {
    width: 173px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    height: 100%;
}
#quick-counsel .dropdown-date .swiper-button-next {
    background-image: url('/imges/renew_right_arrow.svg');
    border: 0;
    top: 0;
    width: 1.6rem;
    height: 1.6rem;
}
#quick-counsel .dropdown-date .swiper-button-prev {
    background-image: url('/imges/renew_left_arrow.svg');
    border: 0;
    top: 0;
    width: 1.6rem;
    height: 1.6rem;
}
#quick-counsel .dropdown-date .ui-datepicker table {
    max-width: 290px;
    margin: 0 auto;
}
#quick-counsel .dropdown-date .ui-datepicker-calendar th span {
    opacity: 1;
}
#quick-counsel .dropdown-date .ui-datepicker-calendar .ui-datepicker-week-end {
    color: #444;
}
#quick-counsel .dropdown-date .ui-datepicker-calendar .ui-datepicker-week-end:first-child {
    color: #DF3737;
}
#quick-counsel .dropdown-date .ui-datepicker-calendar .ui-datepicker-week-end:last-child {
    color: #444;
}
#quick-counsel .dropdown-date .ui-datepicker-calendar td a,
#quick-counsel .dropdown-date .ui-datepicker-calendar td span {
    font-family: 'Campton', sans-serif;
}
#quick-counsel .dropdown-date .ui-state-active,
#quick-counsel .dropdown-date .ui-state-hover {
    width: 32px;
    height: 32px;
    line-height: 32px;
}
#quick-counsel .dropdown-time .c_scroll::-webkit-scrollbar {
    width: 4px;
}
#quick-counsel .dropdown-time .c_scroll::-webkit-scrollbar-track {
    background: #eee;
}
#quick-counsel .dropdown-time .c_scroll::-webkit-scrollbar-thumb {
    background: #bbb;
    border-radius: 50em;
}

#quick-counsel .counsel-loader {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 120px;
    padding: 20px;
}

#quick-counsel .agree-box {
    width: 252px;
    color: #fff;
}

#quick-counsel .agree-box .form-submit {
    margin-top: 34px;
}

#quick-counsel .agree-box .agree-all {
    position: relative;
    padding-bottom: 10px;
    border-bottom: 1px solid #fff;
}

#quick-counsel .agree-box .agree-list {
    display: none;
    padding-top: 10px;
}

#quick-counsel .agree-box.open .agree-list {
    display: block;
}

#quick-counsel .agree-box .agree-list li {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 10px;
}

/* 약관 펼치기 버튼 */
#quick-counsel .agree-box .agree-fold-btn {
    position: absolute;
    top: 0;
    right: 0;
    width: 22px;
    height: 22px;
    padding: 0;
    border: 0;
    background: none;
    cursor: pointer;
}

#quick-counsel .agree-box .agree-fold-btn:before {
    content: '';
    position: absolute;
    top: 5px;
    left: 7px;
    width: 8px;
    height: 8px;
    border-right: 1px solid #fff;
    border-bottom: 1px solid #fff;
    transform: rotate(45deg);
}

#quick-counsel .agree-box.open .agree-fold-btn:before {
    top: 9px;
    transform: rotate(-135deg);
}

#quick-counsel .agree-box .agree-desc {
    width: 100%;
    margin-top: 6px;
    font-size: 12px;
    font-weight: 300;
    line-height: 1.5;
    word-break: keep-all;
}

#quick-counsel .agree-box .agree-list a {
    text-decoration: underline;
    margin-left: auto;
    text-underline-offset: 2px;
    white-space: nowrap;
    font-size: 12px;
    font-weight: 300;
}

#quick-counsel .custom-checkbox {
    display: flex;
    align-items: center;
    gap: 7px;
}

#quick-counsel .custom-checkbox input[type=checkbox] {
    display: none;
}

#quick-counsel .custom-checkbox .icon {
    position: relative;
    min-width: 16px;
    aspect-ratio: 1;
    background-color: #fff;
}

#quick-counsel .custom-checkbox .label-txt {
    font-size: 12px;
    font-weight: 300;
    text-indent: -32px;
    padding-left: 32px;
    margin-right: 5px;
}
#quick-counsel .agree-all .custom-checkbox .label-txt {
    font-size: 16px;
    font-weight: 500;
}

#quick-counsel .custom-checkbox input[type=checkbox]:checked ~ .icon {
    background-color: #CC3333;
}

#quick-counsel .custom-checkbox input[type=checkbox]:checked ~ .icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg width="50" height="50" viewBox="0 0 50 50" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M10 25L20 35L40 15" stroke="%23FFFFFF" stroke-width="6" stroke-linecap="round" stroke-linejoin="round"/></svg>') no-repeat center / 20px;
}

.main-renew-fix {
    z-index: 90;
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
	#quick-counsel .quick-form .form-title {
		display: none;
	}
    #quick-counsel .quick-form-wrap {
        padding: 50px 20px;
    }
	#quick-counsel .input-box-wrap {
		grid-template-columns: 130px 150px;
	}
    #quick-counsel .form-group {
        gap: 15px;
    }
    #quick-counsel .dropdown-container .dropdown-date,
    #quick-counsel .dropdown-container .dropdown-time {
        left: 0;
        transform: none;
    }
}

@media screen and (max-width: 768px) {
    #quick-counsel {
        transform: translateY(calc(100% - 35px));
    }
    #quick-counsel .quick-handler-wrap {
        width: 150px;
    }
    #quick-counsel .quick-handler {
        font-size: 17px;
        font-weight: 500;
        height: auto;
        padding: 9px 0 3px;
        border-radius: 12px 12px 0 0;
    }
    #quick-counsel .quick-handler::before {
        content: '';
        position: absolute;
        top: 5px;
        left: 50%;
        width: 39px;
        height: 3px;
        background-color: #411416;
        opacity: .4;
        transform: translateX(-50%);
    }
    #quick-counsel .quick-handler::after {
        display: none;
    }
    #quick-counsel .quick-form-wrap {
        margin-top: -2px;
        padding: 16px 10px 70px;
    }
    #quick-counsel .quick-form-wrap .quick-form-bg {
        border-top: 2px solid #CC3333;
    }
    #quick-counsel .quick-form {
        max-width: 600px;
        flex-direction: column;
        gap: 0;
    }
    #quick-counsel .quick-form .form-title {
        display: none;
    }
    #quick-counsel .agree-box .form-submit {
        width: 100%;
		margin-top: 13px;
    }
    #quick-counsel .form-submit button {
        width: 100%;
        height: 40px;
        font-size: 17px;
        border-radius: 7px;
    }
    #quick-counsel .form-group {
        flex-direction: column;
        gap: 15px;
        margin: 0 auto 8px;
    }
    #quick-counsel .date-time-box {
        width: 100%;
        min-width: 0;
        gap: 12px;
    }
    #quick-counsel .dropdown-overlay {
        display: none;
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        z-index: 20;
        background: rgba(0, 0, 0, .3);
    }
    #quick-counsel .dropdown-overlay.active {
        display: block;
    }
    #quick-counsel-close,
    #quick-counsel-close.active {
        display: none;
    }
    #quick-counsel .dropdown-container .dropdown {
        position: absolute;
        left: 50%;
        right: auto;
        top: 50%;
        bottom: auto;
        transform: translate(-50%, -50%);
        width: calc(100vw - 50px);
        max-width: 570px;
        padding: 20px 10px;
        box-shadow: 0 4px 30px rgba(0, 0, 0, .4);
        border-radius: 0;
        z-index: 21;
    }
    #quick-counsel .dropdown-container .dropdown-date,
    #quick-counsel .dropdown-container .dropdown-time {
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        width: 95%;
        max-width: 570px;
    }
    #quick-counsel .dropdown-container .dropdown-time {
        max-height: 210px;
        overflow: auto;
        padding: 20px 10px;
    }
    #quick-counsel .dropdown-container .dropdown-time::-webkit-scrollbar {
        width: 3px;
    }
    #quick-counsel .dropdown-container .dropdown-time::-webkit-scrollbar-thumb {
        background: #A73439;
    }
    #quick-counsel .dropdown-container .dropdown-time::-webkit-scrollbar-track {
        background: #D9D9D9;
    }
    #quick-counsel .dropdown-time .reservation-box .time-box-scoll {
        max-height: none;
        height: auto;
        margin-top: 0;
    }
    #quick-counsel .dropdown-date div.hasDatepicker {
        max-width: 100%;
        width: 100%;
    }
    #quick-counsel .dropdown-date .swiper-datapicker {
        position: relative;
		padding: 0 !important
    }
    #quick-counsel .dropdown-date .ui-datepicker .ui-datepicker-header {
        height: 35px;
        margin-bottom: 30px;
        text-align: center;
    }
    #quick-counsel .dropdown-date.renew_reservation .ui-datepicker .ui-datepicker-title {
        font-family: 'campton', sans-serif;
        font-weight: 400;
        font-size: 1.8rem;
        line-height: 35px;
        padding: 0;
    }
    #quick-counsel .dropdown-date .swiper_btn_wrap {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 35px;
        z-index: 1;
    }
    #quick-counsel .dropdown-date .swiper_btn_wrap .inbox {
        width: 100%;
        height: 100%;
        left: 0;
        transform: none;
        position: relative;
    }
    #quick-counsel .dropdown-date .swiper-button-prev,
    #quick-counsel .dropdown-date .swiper-button-next {
        margin-top: 0;
        top: 0;
        width: 35px;
        height: 35px;
        background: #222;
        background-image: none !important;
        border: 0;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 1;
    }
    #quick-counsel .dropdown-date .swiper-button-prev.swiper-button-disabled,
    #quick-counsel .dropdown-date .swiper-button-next.swiper-button-disabled {
        opacity: .4;
    }
    #quick-counsel .dropdown-date .swiper-button-prev {
        left: 11px;
    }
    #quick-counsel .dropdown-date .swiper-button-prev::before {
        content: '';
        width: 6px;
        height: 6px;
        border-bottom: 2px solid #fff;
        border-left: 2px solid #fff;
        margin-left: 3px;
        transform: rotate(45deg);
    }
    #quick-counsel .dropdown-date .swiper-button-next {
        right: 11px;
    }
    #quick-counsel .dropdown-date .swiper-button-next::before {
        content: '';
        width: 6px;
        height: 6px;
        border-bottom: 2px solid #fff;
        border-right: 2px solid #fff;
        margin-left: -4px;
        transform: rotate(-45deg);
    }
    #quick-counsel .dropdown-date .ui-datepicker table {
        max-width: 100%;
    }
    #quick-counsel .dropdown-date .ui-datepicker-calendar th span {
        opacity: .7;
        font-size: 12px;
    }
    #quick-counsel .dropdown-date .ui-datepicker-calendar td a,
    #quick-counsel .dropdown-date .ui-datepicker-calendar td span {
        width: 44px;
        height: 44px;
        line-height: 44px;
        font-family: 'Campton', sans-serif;
    }
    #quick-counsel .dropdown-date .ui-state-active,
    #quick-counsel .dropdown-date .ui-state-hover {
        width: 44px;
        height: 44px;
        line-height: 44px;
    }
    #quick-counsel .dropdown-date .ui-state-hover:not(.ui-state-active) {
        background: transparent;
    }
    #quick-counsel .dropdown-date .ui-datepicker-calendar .ui-datepicker-week-end:first-child {
        color: #bc3a3f;
    }
    #quick-counsel .dropdown-date .ui-datepicker-calendar .ui-datepicker-week-end:last-child {
        color: #2a3ca2;
    }
    #quick-counsel .dropdown-time .rs-time-box {
        padding-top: 0;
    }
    #quick-counsel .dropdown-time .reservation-box .time-box {
        max-width: 100%;
        margin: 0;
        padding: 0;
        display: flex;
        flex-wrap: wrap;
        gap: 0;
    }
    #quick-counsel .dropdown-time .reservation-box .time-box .swiper-slide {
		display: inline-flex;
		align-items: center;
		justify-content: center;
        width: calc(25% - 4px);
        margin: 4px 2px;
		height: 30px;
        padding: 0;
    }
    #quick-counsel .dropdown-time .swiper-slide .btn_round {
		color: #666;
		font-size: 14px;
		position: relative;
		border-radius: 15px;
		border: 1px solid #ddd;
    }
    #quick-counsel .dropdown-time .swiper-slide .btn_round.active {
        background-color: #a73439;
        color: #fff;
        font-weight: bold;
        border-color: #a73439;
    }
    #quick-counsel .dropdown-time .swiper-slide.done .btn_round {
        background: #ececec;
        color: #ababab;
        border-color: #ececec;
    }
    #quick-counsel .dropdown-time .btn_round .soldout {
        position: absolute;
        top: 8px;
        left: -4px;
        right: auto;
        max-width: none;
        padding: 1px 2px;
        border: 1px solid #a73439;
        font-size: 10px;
        color: #a73439;
        line-height: 1;
        text-shadow: 0 0 3px #ffdbdd;
        transform: rotate(-15deg);
    }
    #quick-counsel .dropdown-container::after {
        top: 9px;
        right: 14px;
        bottom: auto;
        width: 16px;
        height: 16px;
        margin-right: 0;
    }
    #quick-counsel .date-time-box .dropdown-container:nth-child(2)::after {
        width: 16px;
        height: 16px;
    }
	#quick-counsel .dropdown-container__input {
		font-size: 12px;
        padding-left: 0;
        padding-right: 45px;
	}
    #quick-counsel input[type=text] {
         width: 100%;
         height: 35px;
         border: 0;
         font-size: 12px;
         padding: 0 14px;
    }
    #quick-counsel .input-box-wrap {
        grid-template-columns: 1fr;
		grid-template-rows: 35px;
        gap: 8px;
    }
    #quick-counsel .input-box,
    #quick-counsel .input-box.type-phone {
        width: 100%;
    }
    #quick-counsel .input-box .input-text,
    #quick-counsel .input-box .input-placeholder {
        top: 9px;
		font-size: 12px;
    }
	#quick-counsel .input-box-wrap textarea {
		height: 35px;
		grid-column: auto;
	}
	#quick-counsel .input-box-wrap textarea,
	#quick-counsel .input-box-wrap textarea::placeholder {
		font-size: 12px;
	}
    #quick-counsel .agree-box {
        max-width: 100%;
		width: 100%;
    }
    #quick-counsel .agree-box .agree-list a {
        font-size: 10px;
    }
    #quick-counsel .custom-checkbox .label-txt {
        font-size: 10px;
        text-indent: -27px;
        padding-left: 27px;
    }
    #quick-counsel .agree-all .custom-checkbox .label-txt {
        font-size: 12px;
    }

    .b-nav-mode .fb_wrap {
        padding-bottom: 58px;
    }
    .b-nav-mode .pedg_fixed {
        bottom: 70px;
    }
    .b-nav-mode .branch-renew_v2 .gtop {
        bottom: 70px;
    }
}

@media screen and (max-width: 360px) {
	#quick-counsel .dropdown-date .ui-datepicker-calendar td {
		padding: 0;
		height: 38px;
	}

	#quick-counsel .dropdown-date .ui-datepicker-calendar td a,
	#quick-counsel .dropdown-date .ui-datepicker-calendar td span {
		width: 38px;
		height: 38px;
		line-height: 38px;
		margin: 1px auto;
	}
}