/* 
---------------------------------------------
variables
---------------------------------------------
*/

:root {
    --bgcolor-web: #fbfbfb; /*BG for Web Background*/
    --txcolor-web: #333;
    --acolor-web: #f50000;

    --bgcolor-box: #fff; /*BG for sections*/
    --txcolor-box: #333;
    --hoverbgcolor-box: #eadede;
    --hovertxcolor-box: #333;
    --bordercolor-box: #bababa;

    --bgcolor-input: #fbfbfb;
    --txcolor-input: #333;
    --bordercolor-input: #333;

    --txcolor-placeholder: #666;

    --bgcolor-button1: #1f2122;
    --txcolor-button1: #ffffff;
    --hoverbgcolor-button1: #2a2d2e;
    --hovertxcolor-button1: #ffffff;
    --activebgcolor-button1: #e75e8d;
    --activetxcolor-button1: #ffffff;
    --button1-activehoverbgcolor: #bc436d;
    --activehovertxcolor-button1: #ffffff;

    --bgcolor-header: #fbfbfb;
    --txcolor-header: #333;

    --bgcolor-footer: #fbfbfb;
    --txcolor-footer: #333;

    --bgcolor-mobilefooter: #fbfbfb;
    --txcolor-mobilefooter: #333;

    --bgcolor-c-tag: #ecedef;
    --txcolor-c-tag: #333;
    --bordercolor-c-tag: #d8d8d8;
    --bgcolor-c-tag-active: #3223b3;
    --txcolor-c-tag-active: #fff;

    --bgcolor-plan-card: #949df7;
    --txcolor-plan-card: #fff;

    --chatbutton-bgcolor: #fff;
    --chatbutton-txcolor: #333;
    --chatbutton-active-bgcolor: #0024a9;
    --chatbutton-active-txcolor: #fff;

    --headertab-height: 50px;
    --headertab-bgcolor: #1f2122;
    --headertab-txcolor: #ffffff;
    --headertab-hover-bgcolor: #2a2d2e;
    --headertab-hover-txcolor: #ffffff;
    --headertab-active-bgcolor: #e75e8d;
    --headertab-active-txcolor: #ffffff;

    --search-pagination-bgcolor:#f00;
    --search-pagination-txcolor:#fff;

    --heightheader: 70px;
    --heightfooter: 60px;

    --fs-6-size: 1rem;
    --fs-7-size: 0.8rem;
    --fs-8-size: 0.7rem;

    --border-radius-normal: 5px;
    --border-radius-strong: 15px;
    --border-radius-full: 100%;

    --bgcolor-offcanvas: #fff;
    --txcolor-offcanvas: #333;

    --bgcolor-modal: #fff;
    --txcolor-modal: #333;
}

::selection {
    background-color: #db6f10;
    color: #fff;
}

/* Dark */
@media (prefers-color-scheme: dark) {
    :root {
        --bgcolor-web: #000; /*BG for Web Background*/
        --txcolor-web: #e5e5e5;
        --acolor-web: #f50000;

        --bgcolor-box: #191919; /*BG for sections*/
        --txcolor-box: #e5e5e5;
        --bordercolor-box: #e5e5e5;
        --hoverbgcolor-box: #2a2d2e;
        --hovertxcolor-box: #ffffff;

        --bgcolor-input: #000;
        --txcolor-input: #e5e5e5;
        --bordercolor-input: #e5e5e5;
        --txcolor-placeholder: #e5e5e5;

        --bgcolor-header: #000;
        --txcolor-header: #e5e5e5;

        --bgcolor-footer: #000;
        --txcolor-footer: #e5e5e5;

        --bgcolor-mobilefooter: #000;
        --txcolor-mobilefooter: #e5e5e5;

        --bgcolor-offcanvas: #000;
        --txcolor-offcanvas: #e5e5e5;

        --bgcolor-plan-card: #24274c;
        --txcolor-plan-card: #e5e5e5;

        --bgcolor-modal: #222;
        --txcolor-modal: #e5e5e5;

        --chatbutton-active-bgcolor: #0024a9;
        --chatbutton-active-txcolor: #fff;
    }
}

/* 
---------------------------------------------
reset
---------------------------------------------
*/

* {
    box-sizing: border-box;
}

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
font,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
figure,
header,
nav,
section,
article,
aside,
footer,
figcaption {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
}

html,
body {
    color: var(--txcolor-web);
    background-color: var(--bgcolor-web);
    /*
  font-family: Helvetica Neue,Arial,Hiragino Kaku Gothic ProN,Hiragino Sans,Meiryo,sans-serif;
  */
    font-family: "Roobert", "Inter", "Helvetica Neue", Helvetica, Arial,
        sans-serif;
    font-weight: 400;
    font-size: 16px;
    -ms-text-size-adjust: 100%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    /*  word-break: break-all; */

    scroll-padding-top: calc(var(--heightheader) + 5px);
    scroll-behavior: smooth;
}

body {
    overflow-x: hidden;
}

header,
nav,
section,
article,
aside,
footer,
hgroup {
    display: block;
}

main {
    min-height: calc(100vh - var(--heightheader) - var(--heightfooter));
}

a {
    color: inherit;
    text-decoration: none;
    -webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}
a:hover {
    color: inherit;
    opacity: 0.8;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    line-height: 100%;
}

ul,
li {
    list-style: none;
}

label {
    display: block;
}

input[type="text"],
input[type="search"],
input[type="email"],
textarea {
    display: block;
    background-color: var(--bgcolor-input);
    color: var(--txcolor-input);
    border: 1px solid var(--bordercolor-input);
    width: 100%;
    padding: 15px;
    resize: none;
    border-radius: var(--border-radius-normal);
    line-height: 1.5rem;
}

input[type="search"]::-webkit-search-cancel-button {
    -webkit-appearance: searchfield-cancel-button;
    cursor: pointer;
    padding: 3px;
}

::placeholder {
    color: var(--txcolor-placeholder);
}

img {
    width: 100%;
    overflow: hidden;
}

/* 
---------------------------------------------
Bootstrap Restyle
--------------------------------------------- 
*/

#offcanvasfilter {
    background-color: var(--bgcolor-offcanvas);
    color: var(--txcolor-offcanvas);
}

.modal-content {
    color: var(--txcolor-modal);
    background-color: var(--bgcolor-modal);
}

.c-modal-animation1 .modal-dialog {
    transform: scale(0.7);
    transition: transform 0.2s ease-in-out;
}
.c-modal-animation1.show .modal-dialog {
    transform: scale(1);
}

.accordion-item {
    background-color: unset;
    border: none;
}

.accordion-button {
    background-color: unset;
    padding: unset;
}
.accordion-button:not(.collapsed) {
    color: unset;
    background-color: unset;
    box-shadow: unset;
}

.accordion-body {
    padding: unset;
}

.toast {
    background-color: #fff;
    color: #000;
    width: 100%;
    max-width: 600px;
}

/*
Custom Definition
*/
.fs-6 {
    font-size: var(--fs-6-size) !important;
}
.fs-7 {
    font-size: var(--fs-7-size) !important;
}
.fs-8 {
    font-size: var(--fs-8-size) !important;
}

/*
---------------------------------------------
Range Slider Restyle
--------------------------------------------- 
*/

.rs-parent {
    padding: 0 15px;
}

.rs-container * {
    box-sizing: border-box;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.rs-container {
    position: relative;
    height: 45px;
}

.rs-container .rs-bg,
.rs-container .rs-selected {
    background-color: #eee;
    border: 1px solid #ededed;
    height: 10px;
    left: 0;
    position: absolute;
    top: 5px;
    width: 100%;
    border-radius: var(--border-radius-normal);
}

.rs-container .rs-selected {
    background-color: #00b3bc;
    border: 1px solid #00969b;
    transition: all 0.2s linear;
    width: 0;
}

.rs-container.disabled .rs-selected {
    background-color: #ccc;
    border-color: #bbb;
}

.rs-container .rs-pointer {
    background-color: #fff;
    border: 1px solid #bbb;
    border-radius: var(--border-radius-normal);
    cursor: pointer;
    height: 20px;
    left: -10px;
    position: absolute;
    top: 0;
    transition: all 0.2s linear;
    width: 30px;
}

.rs-container.disabled .rs-pointer {
    border-color: #ccc;
    cursor: default;
}

.rs-container .rs-pointer::after,
.rs-container .rs-pointer::before {
    content: "";
    position: absolute;
    width: 1px;
    height: 9px;
    background-color: #ddd;
    left: 12px;
    top: 5px;
}

.rs-container .rs-pointer::after {
    left: auto;
    right: 12px;
}

.rs-container.sliding .rs-pointer,
.rs-container.sliding .rs-selected {
    transition: none;
}

.rs-container .rs-scale {
    left: 0;
    position: absolute;
    top: 5px;
    white-space: nowrap;
    line-height: 100%;
}

.rs-container .rs-scale span {
    float: left;
    position: relative;
}

.rs-container .rs-scale span::before {
    background-color: #ededed;
    content: "";
    height: 8px;
    left: 0;
    position: absolute;
    top: 10px;
    width: 1px;
}

.rs-container.rs-noscale span::before {
    display: none;
}

.rs-container .rs-scale span:last-of-type {
    margin-left: -1px;
    width: 0 !important;
}
.rs-container.rs-noscale span:first-child::before,
.rs-container.rs-noscale span:last-child::before {
    display: block;
}

.rs-container .rs-scale span ins {
    display: inline-block;
    margin-top: 20px;
    text-decoration: none;
    line-height: 100%;
}

.rs-tooltip {
    color: #333;
    width: auto;
    min-width: 60px;
    height: 30px;
    background-color: #fff;
    border: 1px solid #00969b;
    border-radius: var(--border-radius-normal);
    position: absolute;
    transform: translate(-50%, -35px);
    left: 13px;
    text-align: center;
    padding: 6px 10px 0;
}

.rs-container.disabled .rs-tooltip {
    border-color: #ccc;
    color: #999;
}

/* 
---------------------------------------------
Swiper Restyle
--------------------------------------------- 
*/
.swiper-main img {
    aspect-ratio: 16 / 8;
    object-fit: cover;
    cursor: pointer;
    border-radius: 15px;
}

.swiper-thumbs .swiper-slide img {
    border-radius: 15px;
    aspect-ratio: 8 / 8;
    object-fit: cover;
    cursor: pointer;
}

.swiper-button-next,
.swiper-rtl .swiper-button-prev {
    right: var(--swiper-navigation-sides-offset, 0px) !important;
}
.swiper-button-prev,
.swiper-rtl .swiper-button-next {
    left: var(--swiper-navigation-sides-offset, 0px) !important;
}
.swiper-button-next,
.swiper-button-prev {
    top: 0 !important;
    width: unset !important;
    height: 100% !important;
    margin-top: 0 !important;
    z-index: 11 !important;
    cursor: pointer !important;
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: var(--fs-6-size) !important;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgb(167 167 167 / 30%);
    color: #fff;
    font-weight: bold;
}

.swiper-button-next:hover:after,
.swiper-button-prev:hover:after {
    background-color: rgba(128, 128, 128, 0.3);
}

.swiper-thumbs .swiper-slide {
    opacity: 0.4;
}
.swiper-thumbs .swiper-slide-thumb-active {
    opacity: 1;
}

/* 
---------------------------------------------
Common Styles
--------------------------------------------- 
*/

.c-label-area {
    font-weight: bold;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.c-preview-pic {
    height: 300px;
    background-size: cover;
    background-position: center center;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 15px;
}

.c-preview-pic:hover {
    opacity: 0.8;
    cursor: pointer;
}

.c-tx-warning {
    color: #f00;
}

.c-section-box1 {
    padding: 20px;
    background-color: var(--bgcolor-box);
    border-radius: 15px;
    box-shadow: 0 4px 12px rgba(13, 35, 67, 0.04);
}

.c-section-division1 {
    border-top: 2px solid;
    margin: 30px 0;
}

.c-section-heading1 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}

.c-button1 {
    cursor: pointer;
    text-align: center;
    color: var(--txcolor-button1);
    background-color: var(--bgcolor-button1);
    padding: 12px 30px;
    display: inline-block;
    border: 1px solid transparent;
    border-radius: var(--border-radius-normal);
}

.c-button1.active {
    color: var(--activetxcolor-button1);
    background-color: var(--activebgcolor-button1);
}

.c-button1:hover {
    color: var(--hovertxcolor-button1);
    background-color: var(--hoverbgcolor-button1);
    opacity: 1;
}

.c-button1.active:hover {
    color: var(--activehovertxcolor-button1);
    background-color: var(--button1-activehoverbgcolor);
}

.c-button1[disabled] {
    opacity: 0.6;
}

.c-modal-close {
    background-color: #ddd;
    border-radius: var(--border-radius-full);
    margin: calc(-0.5 * var(--bs-modal-header-padding-y))
        calc(-0.5 * var(--bs-modal-header-padding-x))
        calc(-0.5 * var(--bs-modal-header-padding-y)) auto;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: #666;
}

.c-modal-close:hover {
    cursor: pointer;
    opacity: 0.8;
}

.c-pointer {
    cursor: pointer;
}

/* Maps */
#c-area-autocomplete {
    width: calc(100% - 10px * 2);
    position: absolute;
    z-index: 9999;
    top: 10px;
    right: 10px;
    display: flex;
    align-items: center;
    justify-content: end;
    height: 45px;
}

#c-autocomplete-input {
    height: 100%;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    padding: 10px;
}

#c-autocomplete-button,
#c-autocomplete-button-hide {
    cursor: pointer;
    height: 100%;
    background-color: #001760;
    width: 50px;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #000;
}

#c-autocomplete-button-hide {
    border-left: 0;
}

/* Notice Area. (Counter and etc) */
.c-notice-area {
    display: flex;
    justify-content: flex-end;
}

/* tag */
.c-tag input[type="checkbox"] {
    display: none;
}

/* headertab */

.c-headertab-menu {
    display: flex;
    align-items: center;
    justify-content: center;
    height: var(--headertab-height);
}

.c-headertab-menu .tab {
    background-color: var(--headertab-bgcolor);
    color: var(--headertab-txcolor);
    flex: 1;
    text-align: center;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.c-headertab-menu .tab:hover {
    background-color: var(--headertab-hover-bgcolor);
    color: var(--headertab-hover-txcolor);
}

.c-headertab-menu .active {
    background-color: var(--headertab-active-bgcolor);
    color: var(--headertab-active-txcolor);
}

/* Loading Plan Card */
.c-plan-card-loading {
    position: relative;
    overflow: hidden;
}

.c-plan-card-loading:hover {
    cursor: pointer;
}

.c-plan-card-loading .picture,
.c-plan-card-loading .title,
.c-plan-card-loading .information {
    background-color: #ccc;
    border-radius: var(--border-radius-normal);
    position: relative;
    overflow: hidden;
}

.c-plan-card-loading .picture::before,
.c-plan-card-loading .title::before,
.c-plan-card-loading .information::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: linear-gradient(
        to right,
        transparent,
        rgba(255, 255, 255, 0.6),
        transparent
    );
    animation: c-shine 1.5s infinite ease-in-out;
}

.c-plan-card-loading .picture {
    aspect-ratio: 16/8;
}

.c-plan-card-loading .title {
    width: 80%;
    height: 1.2rem;
    margin: 10px 0 10px 0;
}

.c-plan-card-loading .information {
    width: 40%;
    height: 1.2rem;
}

.c-plan-card-loading.list {
    display: flex;
    gap: 15px;
    align-items: center;
}

.c-plan-card-loading.list .picture {
    height: 80px;
}

@keyframes c-shine {
    0% {
        left: -100%;
    }

    100% {
        left: 100%;
    }
}



.c-action-loading {
    display: inline-block;
    margin-right:0.25rem;
    animation: spin 1s linear infinite;
  }

@keyframes spin {
    0% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(360deg);
    }
  }
  


/* 
---------------------------------------------
Header Style
--------------------------------------------- 
*/

header {
    color: var(--txcolor-header);
    background-color: var(--bgcolor-header);
    /* border-bottom: 1px solid #e3e3e3;*/
    box-shadow: 0 1px #0000001a;
    height: var(--heightheader);
    display: flex;
    justify-content: center;
    align-items: center;
}


header .left-area {
    display: flex;
    align-items: center;
    justify-content: start;
    font-weight: 600;
}

header .left-area .link-logo img {
    width: auto;
    height: 40px;
}

header .right-area {
    font-weight: 600;
    text-transform: uppercase;
}

header .left-area .link:hover,
header .center-area .link:hover,
header .right-area .link:hover {
    color: var(--acolor-web);
}

header .left-area .box,
header .right-area .box {
    display: flex;
    gap: 5px;
    justify-content: center;
    align-items: center;
    height: var(--heightheader);
}

header .right-area .icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.link:hover .c-button1 {
    color: #fff;
    background-color:#f00;
    opacity: 1;
}

header #count-schedules {
    position: absolute;
    right: -10px;
    top: -10px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: var(--border-radius-normal);
    min-width: 32px;
    padding: 0 5px;
    width: auto;
    background-color: #15803d;
    color: #fff;
}

header #count-notifications {
    position: absolute;
    right: -6px;
    top: -3px;
    background-color: #f00;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 12px;
    height: 12px;
    border-radius: var(--border-radius-full);
    border: 2px solid #fff;
    color: #fff;
    font-weight: 600;
}

/* 
---------------------------------------------
Footer Style
--------------------------------------------- 
*/

footer {
    color: var(--txcolor-footer);
    background-color: var(--bgcolor-footer);
}

footer .logo img {
    max-width: 150px;
}

footer #footer-area-language .c-button1.active{
    background-color:var(--bgcolor-button1);
    color:var(--txcolor-button1);
}

footer #footer-area-language .option-language.active:before{
content:'●';
}
/* 
---------------------------------------------
Footer-Mobile
--------------------------------------------- 
*/
#mobile-footer {
    color: var(--txcolor-mobilefooter);
    background-color: var(--bgcolor-mobilefooter);
    border-top: 1px solid #e3e3e3;
    height: var(--heightfooter);
}

#mobile-footer .area-buttons-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

#mobile-footer .area-buttons-footer .link {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    height: 100%;
}

#mobile-footer .area-buttons-footer .link:hover {
    background-color: #e5e5e5;
}

#mobile-footer .area-buttons-footer .icon {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

#mobile-footer .area-buttons-footer #count-schedules-mobile {
    position: absolute;
    right: -10px;
    top: -10px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: var(--border-radius-normal);
    min-width: 32px;
    padding: 0 5px;
    width: auto;
    background-color: #15803d;
    color: #fff;
}

#mobile-footer .area-buttons-footer #count-notifications-mobile {
    position: absolute;
    right: -6px;
    top: -3px;
    background-color: #f00;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 12px;
    height: 12px;
    border-radius: var(--border-radius-full);
    border: 2px solid #fff;
    color: #fff;
    font-weight: 600;
}

/* 
---------------------------------------------
Menu-Mobile
--------------------------------------------- 
*/
#menu-mobile {
    background-color: #fff;
    text-transform: uppercase;
}

/* 
---------------------------------------------
Modal-Language
--------------------------------------------- 
*/

/* 
---------------------------------------------
Multipic uploader Style
--------------------------------------------- 
*/

#multipicform #imagecontainer {
    margin-bottom: 10px;
    gap: 15px;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
}

#multipicform .preview-image,
#multipicform #drop-zone {
    border: 1px solid var(--bordercolor-box);
    position: relative;
    aspect-ratio: 16 / 16;
    background-position: center center;
    background-size: cover;
    overflow: hidden;
}


#multipicform .preview-image {
    cursor: grab;
}

#multipicform #drop-zone {
    cursor: pointer;
}

#multipicform #drop-zone:hover,
#multipicform #drop-zone.dragover {
    background-color: #f0f0f0;
}

#multipicform #drop-zone .areatext {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 2px;
    height: 100%;
    width: 100%;
    padding: 10px;
    font-size: var(--fs-7-size);
}

#multipicform .order-number {
    position: absolute;
    bottom: 0px;
    left: 0px;
    background-color: var(--bgcolor-box);
    color: var(--txcolor-box);
    font-size: var(--fs-8-size);
    padding: 1px 5px;
    display: none;
}

#multipicform .remove-button {
    position: absolute;
    top: 2px;
    right: 2px;
    font-weight: bold;
    font-size: var(--fs-8-size);
    cursor: pointer;
    background-color: rgb(0, 0, 0, 0.5);
    color: #fff;
    border-radius: var(--border-radius-full);
    width: 25%;
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

#multipicform .remove-button:hover {
    background-color: #ff0000;
}


#multipicform .dragging {
    width:98%;
}

/* 
---------------------------------------------
External Pages
--------------------------------------------- 
*/

#topbanner .main-background {
    background-size: cover;
    background-position: center center;
    padding: 80px 30px;
    border-radius: var(--border-radius-strong);
}

#topbanner h6 {
    color: #fff;
}

#topbanner h4 em {
    font-style: normal;
    color: #ec6090;
}

/* 
---------------------------------------------
Login Page
--------------------------------------------- 
*/

#page-login .or-frame {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    display: flex;
    width: 100%;
}

#page-login .or-frame .text {
    padding-right: 16px;
    padding-left: 16px;
    line-height: 100%;
    text-align: center;
    background-color: var(--bgcolor-box);
}

#page-login .or-frame .line {
    -webkit-box-flex: 1;
    -webkit-flex-grow: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    height: 1px;
    background-color: #000;
}

/* 
---------------------------------------------
Plan Detail Page
--------------------------------------------- 
*/
#page-plandetail {
    & #plan-left-area {
        position: sticky;
        top: 76px;
    }

    & #area_schedules .schedule-slots {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        grid-gap: 10px;
    }

    & #area_schedules .schedule-slot {
        border-radius: var(--border-radius-normal);
        overflow: hidden;
        padding: 10px 10px;
        border: 1px solid;
    }

    & #area_schedules .slot-get {
        cursor: pointer;
    }

    & #your-schedules .pic-plan {
        width: 50px;
    }

    & #area_description .description {
        background-color: var(--bgcolor-box);
        color: var(--txcolor-box);
        border-radius: var(--border-radius-strong);
        padding: 20px;
    }

    & #area_description .expandable:hover {
        background-color: var(--hoverbgcolor-box);
        color: var(--hovertxcolor-box);
        cursor: pointer;
    }

    & #area_description .expandable #hide {
        display: -webkit-box;
        -webkit-line-clamp: 5;
        line-clamp: 5;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    & #area_tags .tag {
        background-color: #ffd413;
        padding: 4px 8px;
        border-radius: var(--border-radius-normal);
        font-weight: bold;
    }

    & #area_question .question-area {
        background-color: var(--bgcolor-box);
        color: var(--txcolor-box);
        padding: 20px;
        border-radius: var(--border-radius-strong);
    }

    & #area_question .delete-button-question,
    & #area_question .button-report {
        padding: 2px 5px;
        background-color: var(--bgcolor-button1);
        color: var(--txcolor-button1);
        border-radius: var(--border-radius-normal);
    }

    & #area_question .delete-button-question:hover,
    & #area_question .button-report:hover {
        cursor: pointer;
    }

    & #area-user .pic-user {
        width: 50px;
    }

    & .plan-card {
        display: block;
        border-radius: var(--border-radius-normal);
        overflow: hidden;
        padding: 8px;
        background-color: var(--bgcolor-box);
        color: var(--txcolor-box);

        & .plan-pic {
            aspect-ratio: 16 / 8;
            background-position: center center;
            background-size: cover;
            display: flex;
            overflow: hidden;
            border-radius: var(--border-radius-normal);
        }

        & .information {
            display: flex;
            gap: 3px;
            align-items: center;
            justify-content: space-between;
            border-top: 1px solid #bebebe;
            padding-top: 8px;
            margin-top: 10px;
        }

        & .information .cost,
        & .information .duration,
        & .information .distance {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 5px;
            width: 100%;
            background-color: var(--bgcolor-plan-card);
            color: var(--txcolor-plan-card);
            padding: 8px 2px;
            border-radius: var(--border-radius-normal);
            font-size: var(--fs-6-size);
        }

        & .schedules {
            gap: 3px;
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            margin: 0 0 10px 0;
        }

        & .schedules .each {
            background-color: #007d15;
            padding: 2px 4px;
            color: #fff;
            border-radius: var(--border-radius-normal);
            font-size: var(--fs-7-size);
        }

        & .user {
            display: flex;
            gap: 3px;
            margin-top: -34px;
            align-items: end;
        }

        & .user-pic {
            height: 50px;
            width: 50px;
            border-radius: var(--border-radius-full);
            object-fit: cover;
            border: 3px solid var(--bgcolor-box);
        }

        & .user-info {
            display: flex;
            gap: 5px;
        }

        & .title .title-text {
            display: -webkit-box;
            -webkit-line-clamp: 2;
            line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
            text-overflow: ellipsis;
            line-height: 1.5rem;
            height: calc(1.5rem * 2);
        }
    }
}

/* 
---------------------------------------------
User Detail Page
--------------------------------------------- 
*/

#page-userdetail {
    & .plan-card {
        display: block;
        border-radius: var(--border-radius-normal);
        overflow: hidden;
        padding: 8px;
        background-color: var(--bgcolor-box);
        color: var(--txcolor-box);

        & .plan-pic {
            aspect-ratio: 16 / 8;
            background-position: center center;
            background-size: cover;
            display: flex;
            overflow: hidden;
            border-radius: var(--border-radius-normal);
        }

        & .information {
            display: flex;
            gap: 3px;
            align-items: center;
            justify-content: space-between;
            border-top: 1px solid #bebebe;
            padding-top: 8px;
            margin-top: 10px;
        }

        & .information .cost,
        & .information .duration,
        & .information .distance {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 5px;
            width: 100%;
            background-color: var(--bgcolor-plan-card);
            color: var(--txcolor-plan-card);
            padding: 8px 2px;
            border-radius: var(--border-radius-normal);
            font-size: var(--fs-6-size);
        }

        & .schedules {
            gap: 3px;
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            margin: 0 0 10px 0;
        }

        & .schedules .each {
            background-color: #007d15;
            padding: 2px 4px;
            color: #fff;
            border-radius: var(--border-radius-normal);
            font-size: var(--fs-7-size);
        }

        & .title .title-text {
            display: -webkit-box;
            -webkit-line-clamp: 2;
            line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
            text-overflow: ellipsis;
            line-height: 1.5rem;
            height: calc(1.5rem * 2);
        }
    }
}
/* 
---------------------------------------------
Search Page
--------------------------------------------- 
*/
#page-search {

    & .offcanvas-body {
        padding-top: 0;
    }
    
    & #mobile-button-filter {
        padding: 8px 33px 8px 15px;
        border: 1px solid #dadada;
        border-radius: var(--border-radius-normal);
        display: flex;
        align-items: center;
        gap: 7px;
        width: max-content;
    }
    
    & .division-top {
        display: flex;
        justify-content: space-between;
        align-items: center;
        height: 42px;
    }
    
    & #remove-filter {
        padding: 0px 10px;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    & .box-filter {
        display: flex;
        justify-content: start;
        align-items: center;
        border: 1px solid var(--bordercolor-box);
        gap: 8px;
        border-radius: var(--border-radius-normal);
        background-color: var(--bgcolor-box);
        color: var(--txcolor-box);
    }
    
    & .checkbox_icon {
        position: relative;
        width: 20px;
        height: 20px;
        appearance: none;
        background-color: #ffffff;
        border: solid 2px #808080;
        border-radius: var(--border-radius-normal);
        box-shadow: 0 0 0 0 transparent;
        transition-duration: 0.2s;
        transition-property: background-color, border, box-shadow, color;
    
        &:checked {
            background-color: #3223b3;
            border-color: #3223b3;
        }
    
        &:hover:enabled {
            border-color: #3223b3;
            box-shadow: 0 0 0 4px #d2ceff;
        }
    
        &::before {
            position: absolute;
            inset: 0;
            display: block;
            width: 100%;
            height: 100%;
            content: "";
            opacity: 0;
            mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512'%3E%3Cpath d='M438.6 105.4c12.5 12.5 12.5 32.8 0 45.3l-256 256c-12.5 12.5-32.8 12.5-45.3 0l-128-128c-12.5-12.5-12.5-32.8 0-45.3s32.8-12.5 45.3 0L160 338.7 393.4 105.4c12.5-12.5 32.8-12.5 45.3 0z'/%3E%3C/svg%3E");
            mask-repeat: no-repeat;
            mask-size: contain;
            background-color: #ffffff;
            transition: opacity 0.2s;
        }
    
        &:checked::before {
            opacity: 1;
        }
    }
    
    & #tags-container,
    & #selected-tags-container {
        display: flex;
        flex-wrap: wrap;
        gap: 5px;
        min-height: 35px;
    }
    
    & .c-tag {
        cursor: pointer;
        padding: 7px 10px;
        display: flex;
        justify-content: center;
        align-items: center;
        border: 1px solid var(--bordercolor-c-tag);
        gap: 5px;
        border-radius: var(--border-radius-normal);
        background-color: var(--bgcolor-c-tag);
        color: var(--txcolor-c-tag);
        font-size: var(--fs-7-size);
    }
    
    & #selected-tags-container .c-tag {
        background-color: var(--bgcolor-c-tag-active);
        color: var(--txcolor-c-tag-active);
    }
    
    & .filters .division {
        border-bottom: 1px solid;
    }
    
    & .rs-container .rs-scale span ins {
        font-size: 0;
    }
    
    & #pagination .available {
        background-color: var(--search-pagination-bgcolor);
        color: var(--search-pagination-txcolor);
        display: block;
        padding: 10px 32px;
        border-radius: var(--border-radius-normal);
    }
    
    & .plan-card {
        display: block;
        border-radius: var(--border-radius-normal);
        overflow: hidden;
        padding: 8px;
        background-color: var(--bgcolor-box);
        color: var(--txcolor-box);
    
        & .plan-pic {
            aspect-ratio: 16 / 8;
            background-position: center center;
            background-size: cover;
            display: flex;
            overflow: hidden;
            border-radius: var(--border-radius-normal);
        }
    
        & .information {
            display: flex;
            gap: 3px;
            align-items: center;
            justify-content: space-between;
            border-top: 1px solid #bebebe;
            padding-top: 8px;
            margin-top: 10px;
        }
    
        & .information .cost,
        & .information .duration,
        & .information .distance {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 5px;
            width: 100%;
            background-color: var(--bgcolor-plan-card);
            color: var(--txcolor-plan-card);
            padding: 8px 2px;
            border-radius: var(--border-radius-normal);
            font-size: var(--fs-6-size);
        }
    
        & .schedules {
            gap: 3px;
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            margin: 0 0 10px 0;
        }
    
        & .schedules .each {
            background-color: #007d15;
            padding: 2px 4px;
            color: #fff;
            border-radius: var(--border-radius-normal);
            font-size: var(--fs-7-size);
        }
    
        & .user {
            display: flex;
            gap: 3px;
            margin-top: -34px;
            align-items: end;
        }
    
        & .user-pic {
            height: 50px;
            width: 50px;
            border-radius: var(--border-radius-full);
            object-fit: cover;
            border: 3px solid var(--bgcolor-box);
        }
    
        & .user-info {
            display: flex;
            gap: 5px;
        }
    
        & .title .title-text {
            display: -webkit-box;
            -webkit-line-clamp: 2;
            line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
            text-overflow: ellipsis;
            line-height: 1.5rem;
            height: calc(1.5rem * 2);
        }
    }
}

/* 
---------------------------------------------
Settings Page
--------------------------------------------- 
*/

#mypage-menu .menu {
    background-color: var(--bgcolor-box);
    color: var(--txcolor-box);
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    border-radius: var(--border-radius-normal);
    height: 60px;
    padding: 0 10px;
}

#mypage-menu .menu .text span {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.5;
}

/* 
---------------------------------------------
Settings Page
--------------------------------------------- 
*/

#page-mypage .myself-area {
    display: flex;
    align-items: center;
    gap: 15px;
}

#page-mypage .myself-area .pic {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: var(--border-radius-full);
}

/* 
---------------------------------------------
Settings Page
--------------------------------------------- 
*/

#page-mypage-profile #area-additionals .area-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#mypage-profile-area .profile-detail {
    display: flex;
    align-items: center;
    gap: 30px;
}

#mypage-profile-area .profile-detail .profilepicture {
    width: 80px;
    height: 80px;
    background-size: cover;
    background-position: center center;
    border-radius: var(--border-radius-strong);
}

#mypage-profile-area .profile-detail .name {
    display: block;
}
#mypage-profile-area .profile-detail .introduction {
    display: block;
}

/* 
---------------------------------------------
Myplans Page
--------------------------------------------- 
*/

#page-myplans .status {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#page-myplans .plan-card {
    display: flex;
    border-radius: var(--border-radius-normal);
    overflow: hidden;
    background-color: var(--bgcolor-box);
    color: var(--txcolor-box);
    justify-content: space-between;
    align-items: stretch;
}

#page-myplans .plan-card .area-date {
    display: flex;
    flex: 5;
}

#page-myplans .plan-card .area-date:hover {
    opacity: 0.5;
}

#page-myplans .plan-card .plan-pic img {
    width: 100px;
    height: 100%;
    object-fit: cover;
}

#page-myplans .plan-card .plan-detail {
    width: 100%;
}

#page-myplans .plan-card .area-edit {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
    background-color: rgb(0, 134, 40);
    color: #fff;
}

/* 
---------------------------------------------
Favorite page
--------------------------------------------- 
*/


#page-mypage-favorite #plans-favorite {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

#page-mypage-favorite .plan-card {
    background-color: var(--bgcolor-box);
    color: var(--txcolor-box);
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid;
    border-radius: var(--border-radius-normal);
    padding: 15px;
}

#page-mypage-favorite .plan-card .pic-plan {
    width: 100px;
    height: 100px;
    object-fit: cover;
}




/* 
---------------------------------------------
Follow page
--------------------------------------------- 
*/

#page-mypage-follow #users-follow {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

#page-mypage-follow .user-card {
    background-color: var(--bgcolor-box);
    color: var(--txcolor-box);
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid;
    border-radius: var(--border-radius-normal);
    padding: 15px;
}

#page-mypage-follow .user-card .pic-plan {
    width: 100px;
    height: 100px;
    object-fit: cover;
}


/* 
---------------------------------------------
Settings Language Page
--------------------------------------------- 
*/

/* 
---------------------------------------------
Plan Create page
--------------------------------------------- 
*/

#page-create-plan .rs-container .rs-scale span ins {
    font-size: 0;
}

#page-create-plan #tags-container,
#page-create-plan #selected-tags-container {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    min-height: 35px;
}

#page-create-plan .c-tag {
    cursor: pointer;
    padding: 7px 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid var(--bordercolor-c-tag);
    gap: 5px;
    border-radius: var(--border-radius-normal);
    background-color: var(--bgcolor-c-tag);
    color: var(--txcolor-c-tag);
    font-size: var(--fs-7-size);
}
#page-create-plan #selected-tags-container .c-tag {
    background-color: var(--bgcolor-c-tag-active);
    color: var(--txcolor-c-tag-active);
}

/* 
---------------------------------------------
Plan Edit page
--------------------------------------------- 
*/
#page-edit-plan .rs-container .rs-scale span ins {
    font-size: 0;
}

#page-edit-plan .tabs-nav .active {
    background-color: #000;
    color: #fff;
}

#page-edit-plan #tags-container,
#page-edit-plan #selected-tags-container {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    min-height: 35px;
}

#page-edit-plan .c-tag {
    cursor: pointer;
    padding: 7px 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid var(--bordercolor-c-tag);
    gap: 5px;
    border-radius: var(--border-radius-normal);
    background-color: var(--bgcolor-c-tag);
    color: var(--txcolor-c-tag);
    font-size: var(--fs-7-size);
}
#page-edit-plan #selected-tags-container .c-tag {
    background-color: var(--bgcolor-c-tag-active);
    color: var(--txcolor-c-tag-active);
}

/* 
---------------------------------------------
Schedule Detail Page
--------------------------------------------- 
*/

#page-schedule-detail #screen-chat {
    max-width: unset;
}

#page-schedule-detail #area-detail {
    height: calc(100vh - var(--heightheader));
    overflow-y: scroll;
}
#page-schedule-detail #box-messages {
    height: calc(100vh - var(--heightheader) - var(--heightfooter));
    overflow-y: scroll;
    padding: 10px 10px 50px 10px;
    background-color: var(--bgcolor-web);
    color: var(--txcolor-web);
}

#page-schedule-detail #box-send {
    height: var(--heightfooter);
    display: flex;
    border-top: 1px solid #ccc;
    padding: 5px;
    overflow: hidden;
    background-color: var(--bgcolor-web);
    gap: 5px;
}

#page-schedule-detail #message-input {
    background-color: var(--bgcolor-input);
    color: var(--txcolor-input);
    border-radius: var(--border-radius-normal);
    border: none;
    padding: 8px 15px;
}

#page-schedule-detail #additional-menu-button {
    width: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--chatbutton-active-bgcolor);
    color: var(--chatbutton-active-txcolor);
    border-radius: var(--border-radius-full);
}

#page-schedule-detail #send-message {
    width: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--chatbutton-bgcolor);
    color: var(--chatbutton-txcolor);
    border-radius: var(--border-radius-full);
}

#page-schedule-detail #send-message.active {
    background-color: var(--chatbutton-active-bgcolor);
    color: var(--chatbutton-active-txcolor);
}

#page-schedule-detail #message-input:focus-visible {
    outline: none;
}

#page-schedule-detail .box-message {
    display: flex;
    margin: 0 0 15px 0;
}

#page-schedule-detail .sender-system {
    justify-content: center;
}

#page-schedule-detail .sender-me {
    justify-content: flex-end;
}

#page-schedule-detail .box-each {
    display: flex;
    gap: 10px;
    max-width: 80%;
}

#page-schedule-detail .sender-system .box-each {
    max-width: 70%;
    width: 70%;
}

#page-schedule-detail .box-frame {
    width: 100%;
}

#page-schedule-detail .user-info {
    display: flex;
    gap: 6px;
}

#page-schedule-detail .sender-system .user-info {
    justify-content: center;
}

#page-schedule-detail .sender-me .user-info {
    justify-content: flex-end;
}

#page-schedule-detail .box-icon img {
    width: 30px;
    height: 30px;
    border-radius: var(--border-radius-full);
    object-fit: cover;
}

#page-schedule-detail .box-content {
    padding: 8px;
    border-radius: var(--border-radius-normal);
}

#page-schedule-detail .sender-system .box-content {
    background-color: #030fae;
    color: #fff;
}

#page-schedule-detail .sender-me .box-content {
    background-color: #ccf7ff;
    border-bottom-right-radius: 0;
}

#page-schedule-detail .sender-other .box-content {
    background-color: #f1f1f1;
    border-top-left-radius: 0;
}

#page-schedule-detail #scroll-to-bottom {
    position: fixed;
    bottom: calc(var(--heightfooter) + 10px);
    right: 50%;
    display: block;
    z-index: 99999;
    background-color: #001760;
    color: #fff;
    padding: 3px;
    border-radius: var(--border-radius-normal);
    min-width: 30px;
    text-align: center;
}

/* 
---------------------------------------------
Schedules Page
--------------------------------------------- 
*/

#page-schedule-add .select-day-box,
#page-schedule-add .select-time-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 20px 0;
}

#page-schedule-add #select-day-previous.inactive,
#page-schedule-add #select-day-next.inactive,
#page-schedule-add #select-time-previous.inactive,
#page-schedule-add #select-time-next.inactive {
    opacity: 0.5;
}

#page-schedule-add #select-day .empty,
#page-schedule-add #select-time .empty {
    opacity: 0.5;
}

#page-schedule-add #select-day .select-day-item,
#page-schedule-add #select-time .select-time-item {
    display: none;
}

#page-schedule-add #select-day .active,
#page-schedule-add #select-time .active {
    display: block;
}

#page-schedule-add #select-day-index .select-day-item,
#page-schedule-add #select-time-index .select-time-item {
    text-align: center;
    padding: 10px 0;
}

#page-schedule-add #select-day-index .select-day-item:hover,
#page-schedule-add #select-time-index .select-time-item:hover {
    cursor: pointer;
    background-color: #eee;
}

#page-schedule-add #select-day-index .active,
#page-schedule-add #select-time-index .active {
    background-color: #ff8181;
}

#page-schedule-add #select-day-index .empty,
#page-schedule-add #select-time-index .empty {
    opacity: 0.5;
}

#page-schedules .title-day-status {
    background-color: rgb(13, 0, 151);
    color: #fff;
    padding: 2px 5px;
    border-radius: var(--border-radius-normal);
}

#page-schedules .title-day {
    background-color: #000;
    color: #fff;
    display: inline-block;
    padding: 3px 5px;
    border-radius: var(--border-radius-normal);
}

#page-schedules .area-plans {
    padding: 16px;
    background-image: linear-gradient(
        0deg,
        rgba(0, 0, 0, 0.19) 0%,
        rgba(0, 0, 0, 0.43) 100%
    );
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 16px;
}

#page-schedules .button-delete {
    background-color: #f00;
    color: #fff;
    padding: 2px 5px;
    display: inline-block;
}

#page-schedules .plan-card-schedule {
    display: flex;
    gap: 10px;
    padding: 10px;
    background-color: var(--bgcolor-box);
    border-radius: var(--border-radius-normal);
    box-shadow: 0 1px 2px #ccc;
}

#page-schedules .plan-card-schedule .area-pics {
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 1;
}

#page-schedules .plan-card-schedule .area-pics .area-pic-plan,
#page-schedules .plan-card-schedule .area-pics .area-pic-user {
    width: 50%;
    height: 100%;
}

#page-schedules .plan-card-schedule .area-pics .pic-plan,
#page-schedules .plan-card-schedule .area-pics .pic-user {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#page-schedules .plan-card-schedule .area-info {
    flex: 4;
}

#page-schedules .plan-card-schedule .main-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#page-schedules .plan-card-schedule .main-info .right {
    display: flex;
}

#page-schedules .plan-card-schedule .main-info .message {
    display: flex;
    align-items: center;
    border-radius: var(--border-radius-normal);
}

#page-schedules .plan-card-schedule .main-info .message .message-icon {
    padding: 0px 20px;
    background-image: radial-gradient(
        circle at top left,
        #85a805 10%,
        #6a8704 80%
    );
    display: flex;
    align-items: center;
    justify-content: center;
    height: 38px;
    color: #dfe3e6;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}

#page-schedules .plan-card-schedule .main-info .message .text {
    padding: 0px 20px;
    background-color: radial-gradient(ellipse at top left, #42454c99, #25282e66);
    display: flex;
    align-items: center;
    justify-content: center;
    height: 38px;
    color: #dfe3e6;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}

#page-schedules .plan-card-schedule .main-info .time {
    padding: 0px 20px;
    background-image: radial-gradient(
        circle at top left,
        #85a805 10%,
        #6a8704 80%
    );
    display: flex;
    align-items: center;
    justify-content: center;
    height: 38px;
    color: #dfe3e6;
    border-radius: var(--border-radius-normal);
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}
/* 
---------------------------------------------
Notifications Page
--------------------------------------------- 
*/

#page-notifications #notifications {
    background-color: var(--bgcolor-box);
    color: var(--txcolor-box);
}

#page-notifications .box-notification {
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid var(--bgcolor-web);
}

#page-notifications .box-notification:hover {
    background-color: var(--hoverbgcolor-box);
    color: var(--hovertxcolor-box);
}

#page-notifications .read {
    margin-left: auto;
}

#page-notifications .new-notif .read:before {
    content: '●';
}

/* 
---------------------------------------------
Responsive Style
--------------------------------------------- 
*/

@media (max-width: 575.98px) {
}

@media (max-width: 767.98px) {
}

@media (max-width: 991.98px) {
    .px-less-lg-0 {
        padding-right: 0 !important;
        padding-left: 0 !important;
    }

    #page-plandetail #area-pic {
        position: unset;
        top: unset;
    }

    /*lg breakpoint*/
    #page-search #offcanvasfilter {
        width: 70%;
    }

    #page-notifications .col-notif {
        padding: 0;
    }

    #page-notifications .col-notif .c-section-box1 {
        border-radius: 0;
    }

    #page-schedule-detail #area-detail {
        height: calc(
            100vh - var(--heightheader) -
                var(--headertab-height)
        );
    }
    #page-schedule-detail #box-messages {
        height: calc(
            100vh - var(--heightheader) - var(--heightfooter) -
                var(--headertab-height)
        );
    }
}

@media (max-width: 1199.98px) {
}
