.bodinote-background {
   -webkit-box-pack: center !important;
   justify-content: center !important;
   background: #ebebeb;
}

.bodinote-contents-A {
   background: #f9f8ff;
   max-width: 428px;
}

.bodinote-contents-A-grdt {
   background: linear-gradient(180deg, #f9f8ff 100%, #ffffff 100%);
   max-width: 428px;
}
.bodinote-contents-A-purple {
   background: #f9f8ff;
   box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
   max-width: 428px;
}

.bodinote-contents-B {
   -webkit-box-pack: center !important;
   justify-content: center !important;
   /* background: #ebebeb; */
}

.bodinote-content-A {
   min-height: 100vh;
   display: flex;
   /* LOGO.HTML도 같이 해야 됨 */
   /* padding: 2rem 1.5rem 0 1.5rem; */
   padding: 30px 1.5rem 0 1.5rem;
}

.bodinote-content-B {
   width: 100% !important;
}

.bodinote-content-C {
   -webkit-box-orient: vertical !important;
   -webkit-box-direction: normal !important;
   -ms-flex-direction: column !important;
   flex-direction: column !important;
   display: flex;
   height: 100% !important;
}

.bodinote-content {
   min-height: 100vh;
   /* margin-bottom: auto !important;
   min-height: 635px; */
   z-index: 1;
}

.navbar_overlay {
   position: fixed;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   background-color: rgba(0, 0, 0, 0.5);
   z-index: 998;
   opacity: 0;
   pointer-events: none;
   transition: opacity 0.1s ease;
}

.navbar_burger {
   /* position: fixed; */
   top: 1rem;
   right: 1rem;
   cursor: pointer;
   color: #000;
}

.navbar_burger_back {
   /* position: fixed; */
   top: 1.5rem;
   /* right: 1.5rem; */
   cursor: pointer;
   color: #fff;
}

.navbar_menu {
   opacity: 0;
   position: absolute;
   /* position: fixed; */
   top: 0;
   right: 0;
   width: 0px;
   /* height: 100%; */
   min-height: 100%;
   max-height: max-content;
   background-color: #fff;
   /* padding: 0 2rem; */
   /* display: flex; */
   flex-direction: column;
   justify-content: center;
   align-items: flex-start;
   transform: translateX(100%);
   z-index: 999;
   color: #000;
   transition: transform 0.3s ease, opacity 1s, width 0.3s;
}

.navbar_menu.active {
   padding: 0 2rem;
   width: 100%;
   opacity: 1;
   position: absolute;
   transform: translateX(0);
}

.navbar_overlay.active {
   opacity: 1;
   pointer-events: auto;
}

.navbar_menu a {
   position: relative;
   font-size: 1.5rem;
   margin-left: 1rem;
   margin-bottom: 3rem;
   text-decoration: none;
}
/*  */

.bottom_navbar_menu {
   /* position: fixed;
   bottom: 0; */
   opacity: 0;
   width: 100%;
   max-height: 0;
   background-color: #f9f8ff;
   color: #000;
   transition: opacity 1s, max-height 0.3s ease;
}

.bottom_navbar_menu.active {
   opacity: 1;
   max-height: 1000px;
}
