/* font */
@import url(//spoqa.github.io/spoqa-han-sans/css/SpoqaHanSansNeo.css);
* {
    font-family: "Spoqa Han Sans Neo", sans-serif;
}

/* default */
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, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
    display: block;
}
body {
    line-height: 1;
}
ol, ul {
    list-style: none;
}
blockquote, q {
    quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
    content: '';
    content: none;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}
a {
    text-decoration-skip-ink: none;
    text-decoration: none;
    font-weight: inherit;
    color: inherit;
}
button {
    padding: 0;
    border: 0;
    background: none;
    line-height: 1;
    font: inherit;
    cursor: pointer;
}
/* colored */
:root {
    --main_color: #25665E;
    --gray-1: #D1D1D1;
    --gray-2: #9B9B9B;
    --gray-3: #757575;
    --text-color: #333;
}

.layout-w1400 {
    width: 1400px;
}
.layout-w1000 {
    width: 1000px;
}

/* header */
header {
    position: relative;

    font-family: "Spoqa Han Sans Neo", sans-serif;
}
header .header-inner {
    position: fixed;
    z-index: 100;

    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    height: 150px;
    border-bottom: 1px solid var(--gray-1);
    background-color: #FFF;
    box-sizing: border-box;
}
header .header-inner .header-inner-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-shrink: 0;
    width: 100%;
    max-width: 1400px;
    height: 100%;
    box-sizing: border-box;
}

/* Show gnb */
header .header-inner:hover .hidden-gnb-area {
    display: flex;
}

header .header-inner .hidden-gnb-area {
    width: 100%;
    max-width: 100%;
    height: 100%;
    /*display: flex;*/
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    margin-top: 1px;
    background-color: #FFF;
    border-bottom: 1px solid var(--gray-1);
    padding: 10px 0;

    display: none;
}
header .header-inner .hidden-gnb-area .hidden-gnb-wrap {
    display: flex;
    width: 100%;
    max-width: 1400px;
}

header .header-inner .hidden-gnb-area .hidden-img-wrap {
    opacity: 0;
    pointer-events: none;
}

header .header-inner ul.hidden-gnb {
    margin-left: 100px;
}
header .header-inner ul.hidden-gnb li {
    margin: 25px 0;
}

header .header-inner ul.hidden-gnb li a {
    font-weight: 500;
    font-size: 1.125rem;
    color: var(--main_color);
}
header .header-inner ul.hidden-gnb li a:hover {
    text-decoration: underline;
}

header .nav-wrap {
    display: flex;
    align-items: center;
}
header h1 {
    width: 150px;
    height: 50px;
}
header h1 img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
header ul.gnb {
    position: relative;
    display: flex;
    margin-left: 100px;
}
header ul.gnb li {
    margin-right: 80px;
}
header ul.gnb li a {
    font-weight: 700;
    font-size: 1.125rem;
    color: var(--main_color);
}


header .header-inner .gnb-btn-area {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 170px;
    height: 40px;
    background-color: var(--main_color);
    border-radius: 20px;
}
header .header-inner .gnb-btn-area a {
    font-weight: 500;
    font-size: 0.875rem;
    color: #FFF;
}
header .header-inner .gnb-btn-area a:hover {
    text-decoration: underline;
}

header .header-inner .gnb-btn-area .divided-bar {
    width: 1px;
    height: 18px;
    background-color: #FFF;
    margin: 0 15px;
}

header .header-inner .gnb-mobile {
    display: none;
}
/*---------------------*/

/*----------------------*/

/* footer */
footer {
    font-family: 'Spoqa Han Sans Neo', 'sans-serif';
    display: flex;
    justify-content: center;
}
footer .footer-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    font-size: 1rem;
}

footer .footer-policy-area {
    display: flex;
    justify-content: center;
    width: 100%;
    border-top: 1px solid var(--gray-1);
    border-bottom: 1px solid var(--gray-1);
    padding: 0 15px;
    box-sizing: border-box;
}

footer ul {
    display: flex;

    margin: 20px 0;
}
footer ul li {}
footer ul li.footer-line {
    width: 1px;
    height: 10px;
    background-color: var(--gray-1);
    margin: 0 15px;
}
footer ul li a {
    font-weight: 400;
    font-size: 0.875rem;
}
footer ul li a.policy-colored {
    font-weight: 500;
    color: var(--main_color);
}
footer ul li a:hover {
    text-decoration: underline;
}

footer .footer-info-area {
    width: 100%;
    max-width: 1400px;
    margin: 40px 0 50px 0;
    padding: 0 15px;
    box-sizing: border-box;
}
footer .footer-info-wrap {
    display: flex;
    align-items: center;
}
footer .footer-info-wrap:first-child {
    margin-bottom: 15px;
}
footer .footer-info-wrap h6 {
    font-weight: 400;
    font-size: 0.875rem;
    color: #333;
}
footer .footer-info-wrap .footer-line {
    width: 1px;
    height: 10px;
    background-color: var(--gray-1);
    margin: 0 15px;
}

/* main */
.mental-layout {
    padding-top: 150px;
}

section {
    display: flex;
    justify-content: center;
}

/* sc1 */
section.sc1 {}
.sc1 .mental-main-area {
    position: relative;
}
.sc1 .mental-main-img-wrap {
    width: 100%;
    height: 600px;
    box-sizing: border-box;
    overflow: hidden;
}
.sc1 .mental-main-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sc1 .mental-main-text-wrap {
    position: absolute;
    left: 65px;
    top: 80px;
    color: #FFF;
}
.sc1 h2 {
    font-weight: 700;
    font-size: 3.75rem;
    line-height: 80px;
}
.sc1 .mental-main-text-wrap p {
    font-weight: 400;
    font-size: 1.25rem;
    line-height: 34px;
    margin-top: 25px;
}

.sc1 .mental-main-url-wrap {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 380px;
    height: 150px;
    background-color: var(--main_color);
    color: #FFF;
    box-sizing: border-box;
}
.sc1 .mental-main-url-wrap a {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    height: 100%;
    padding: 40px;
    box-sizing: border-box;
}
.sc1 .mental-main-url-wrap a:hover span,
.sc1 .mental-main-url-wrap a:hover .go-wrap strong {
    text-decoration: underline;
}

.sc1 .mental-main-url-wrap a span {
    display: inline-block;
    font-weight: 400;
    font-size: 1rem;
    margin-bottom: 15px;
}

.sc1 .mental-main-url-wrap a .go-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-sizing: border-box;
}

.sc1 .mental-main-url-wrap a strong {
    font-weight: 700;
    font-size: 2rem;
}
.sc1 .mental-main-url-wrap a img {
    width: 35px;
    height: 30px;
    object-fit: contain;
}

/* sc2 */
section.sc2 {
    color: #333;
}
.sc2 .mental-contents-area {
    display: flex;
    justify-content: space-between;
    margin-top: 80px;
    width: 100%;
    max-width: 1400px;
    box-sizing: border-box;
}
.sc2 .mental-news-area {}
.sc2 .news-title-wrap {
    display: flex;
    justify-content: space-between;
    border-bottom: 2px solid var(--main_color);
    padding-bottom: 15px;
}
.sc2 .news-title-wrap h3 {
    font-weight: 500;
    font-size: 1.875rem;
}

.sc2 .news-title-wrap .news-title-list {
    display: flex;
    align-items: center;
}

.sc2 .news-title-wrap ul {
    display: flex;
    align-items: center;
    margin-right: 30px;
}
.sc2 .news-title-wrap ul li {}
.sc2 .news-title-wrap ul li.li-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background-color: var(--gray-1);
    margin: 0 9px;
}
.sc2 .news-title-wrap ul li a {
    font-weight: 500;
    font-size: 1.125rem;
    color: var(--gray-3);
}
.sc2 .news-title-wrap ul li a:hover,
.sc2 .news-title-wrap ul li a:focus,
.sc2 .news-title-wrap ul li a:active {
    color: var(--main_color);
}
.sc2 .news-title-wrap ul li a.list-active {
    color: var(--main_color);
}

.sc2 .news-title-wrap a.news-more {
    width: 22px;
    height: 22px;
}
.sc2 .news-title-wrap a.news-more img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.sc2 .news-article-wrap {
    display: flex;
    margin-top: 15px;
}
.sc2 .news-article-wrap a {
    width: 255px;
    height: 240px;
    box-sizing: border-box;
    background-color: #FFF;
    border: 1px solid transparent;
    transition: 0.2s;
}
.sc2 .news-article-wrap a:hover {
    border: 1px solid var(--main_color);
}

.sc2 .news-article-wrap article {
    display: block;
    width: 100%;
    height: 100%;
    padding: 40px 20px;
    box-sizing: border-box;
    line-height: 20px;
}
.sc2 .news-article-wrap article h4,
.sc2 .news-article-wrap article p {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.sc2 .news-article-wrap article h4 {
    -webkit-line-clamp: 1;
    font-weight: 500;
    font-size: 1rem;
}
.sc2 .news-article-wrap article .main-news-text {
    font-weight: 400;
    font-size: 0.875rem;
    color: var(--gray-3);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin: 40px 0;
}
.sc2 .news-article-wrap article em {
    font-weight: 500;
    font-size: 0.875rem;
    color: var(--gray-2);
}

.sc2 .mental-event-area {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 600px;

    height: 310px;
    border: 2px solid var(--main_color);
    box-sizing: border-box;
    color: #333;
}
.sc2 .event-img-wrap {}
.sc2 .event-img-wrap img {
    width: 205px;
    max-width: 100%;
    height: 180px;
    object-fit: contain;
}

.sc2 .mental-event-info {
    display: flex;
    flex-direction: column;
    margin-left: 50px;
    text-align: center;
}
.sc2 .mental-event-info strong {
    display: inline-block;
    font-weight: 500;
    font-size: 2.5rem;
    line-height: 55px;
}
.sc2 .mental-event-info button {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 230px;
    height: 50px;
    background-color: var(--main_color);
    color: #FFF;
    border-radius: 10px;
    font-weight: 500;
    font-size: 1rem;
    padding: 0 15px;
    box-sizing: border-box;
    margin-top: 25px;
}
.sc2 .mental-event-info button img {
    width: 18px;
    height: 15px;
    object-fit: contain;
}

/* sc3 */
section.sc3 {
    margin: 80px 0 120px 0;
}

.sc3 .mental-info-area {
    display: flex;
    justify-content: space-between;
    width: 100%;
    max-width: 1400px;

    background-color: var(--main_color);
    padding: 30px 80px;
    box-sizing: border-box;
}

.sc3 .info-title-area {}
.sc3 .info-title-area strong {
    font-weight: 500;
    font-size: 2rem;
    line-height: 50px;
    color: #FFF;
}

.sc3 .info-icon-area {
    display: flex;
    align-items: center;
}
.sc3 .info-icon-area .info-icon-wrap {
    text-align: center;
}
.sc3 .info-icon-area .info-icon-wrap img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}
.sc3 .info-icon-area .info-icon-wrap h5 {
    font-weight: 500;
    font-size: 1.125rem;
    color: #FFF;
    margin-top: 15px;
}

.sc3 .info-icon-area .info-icon-line {
    width: 1px;
    height: 100px;
    background-color: #FFF;
    margin: 0 50px;
}



/* preparing.html */
section.sc-prep {
    display: flex;
    flex-direction: column;
    align-items: center;
    box-sizing: border-box;
}

.sc-prep .nav-wrap {
    display: flex;
    justify-content: center;
    width: 100%;
    border-bottom: 1px solid var(--gray-1);
}
.sc-prep ul.mental-nav {
    display: flex;
    width: 100%;
    max-width: 1400px;
    padding: 15px;
    box-sizing: border-box;
}
.sc-prep ul.mental-nav li {
    font-weight: 500;
    font-size: 0.875rem;
    color: var(--gray-3);
}
.sc-prep ul.mental-nav li.li-colored {
    color: var(--main_color);
}
.sc-prep ul.mental-nav li img {
    width: 4px;
    height: 8px;
    object-fit: contain;
    margin: 0 25px;
}

.sc-prep .preparing-wrap {
    max-width: 1400px;
    text-align: center;
    padding: 120px 0;
    box-sizing: border-box;
}
.sc-prep h2 {
    font-weight: 400;
    font-size: 2.5rem;
    color: #333;
}
.sc-prep .preparing-wrap img {
    width: 350px;
    height: 283px;
    object-fit: contain;
    margin-top: 60px;
}

.section-wrap {
    width: 100%;
    max-width: 1400px;
}
.section-wrap h2 {
    font-size: 2.75rem;
    font-weight: 500;
    margin: 60px 0 100px 0;
}


.medical-wrap {
    width: 100%;
    max-width: 1400px;
}
.medical-wrap h2 {
    font-size: 2.75rem;
    font-weight: 500;
    margin: 60px 0 100px 0;
}

/* reserve */
.reserve-list-area {
    display: flex;
    flex-direction: column;
    width: 100%;
    margin-bottom: 70px;
}

.all-reserved-area {
    display: flex;
    flex-direction: column;
    padding-bottom: 25px;
    border-bottom: 2px solid #333;
}
.all-reserved-area p {
    font-size: 1.3rem;
    font-weight: 500;
    color: #333;
}
.all-reserved-area p strong {
    font-weight: 700;
    color: var(--main_color);
}

.all-reserved-area span {
    display: flex;
    align-items: center;
    font-size: 0.875rem;
    font-weight: 400;
    color: var(--gray-2);
    margin-top: 10px;
}
.all-reserved-area span img {
    width: 16px;
    height: 16px;
    object-fit: contain;
    margin-right: 5px;
}

.reserve-list {
    display: flex;
    flex-direction: column;
    width: 100%;
}
.reserve-list section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 9rem;
    box-sizing: border-box;
    border-bottom: 1px solid var(--gray-1);
}

.reserve-list section .reserve-list-doc-wrap {
    display: flex;
    align-items: center;
    width: 100%;
    box-sizing: border-box;
}
.reserve-list-img-area {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    margin-right: 25px;
}
.reserve-list-img-area img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.reserve-list-text-area {}
.reserve-list-text-area h3 {
    font-size: 1.125rem;
    font-weight: 500;
    color: #333;
}
.reserve-list-text-area span {
    display: inline-block;
    font-size: 0.85rem;
    color: var(--gray-3);
    margin: 7px 0 12px 0;
}
.reserve-list-text-area p {
    font-size: 1rem;
    color: #333;
    line-height: 22px;
    white-space: normal;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.reserve-list-btn-area {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    width: 150px;
    height: 40px;
    background-color: var(--main_color);
    border-radius: 30px;
    margin-left: 15px;
}
.reserve-list-btn-area button {
    width: 100%;
    height: 100%;
    color: #FFF;
}


.counseling-times-area {
    /*display: flex;*/
    /*justify-content: center;*/
    /*align-items: center;*/
    /*flex-shrink: 0;*/
    display:inline-block;
    width: 100px;
    height: 40px;
    background-color: #FFFFFF;
    border-radius: 30px;
    margin-left: 15px;
    margin-bottom: 15px;
    border: 2px solid var(--main_color);
}
.counseling-times-area button {
    width: 100%;
    height: 100%;
    color: var(--main_color);
}

.counseling-times-area:hover {
    background-color: var(--main_color);
}
.counseling-times-area button:hover {
    color: #FFF;
}

.counseling-times-area .selected {
    color: #FFF;
    background-color: var(--main_color);
}

.m_show {
    display:none;
}
.m_hidden {

}


.section-wrap table {
    width: 100%;
    color: #333;
}
.section-wrap table tr {
    height: 50px;
    line-height: 50px;
    border-bottom: 1px solid var(--gray-1);
}
.section-wrap table tr.title-tr {
    height: 40px;
    line-height: 40px;
}

.section-wrap table tr th {
    font-weight: 500;
}
.section-wrap table tr td {
    text-align: start;

}
.section-wrap table tr td:nth-child(2) {
    text-align: start;
}

.section-wrap table tr th:nth-child(1) {
    width: 5%;
}
.section-wrap table tr th:nth-child(2) {
    width: 85%;
}
.section-wrap table tr th:nth-child(3) {
    width: 10%;
}

.section-wrap table tr td a {
    width: 100%;
    white-space: normal;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 50px;
}
.section-wrap table tr td a:hover {
    text-decoration: underline;
}
.section-wrap table tr td a span {
    margin-left: 7px;
}

/*------------------------*/

.news-paging-area {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin: 50px 0 70px 0;
}
.news-paging-area ul {
    display: flex;
    justify-content: center;
    align-items: center;
}
.news-paging-area ul li {
    font-weight: 500;
    font-size: 1rem;
    color: #333;
    margin-right: 25px;
}
.news-paging-area ul li:first-child {
    margin-right: 20px;
}
.news-paging-area ul li.active-page {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: var(--main_color);
    color: #FFF;
}
.news-paging-area ul li:last-child {
    margin: 0;
}

.news-paging-area ul li a {}

.news-paging-area button {}
.news-paging-area button img {}

.news-paging-area button.paging-arrow-left-btn {
    margin-right: 20px;
}
.news-paging-area button.paging-arrow-right-btn {
    margin-left: 20px;
}

/* news_detail */
.news-detail-wrap {
    color: #333;
}

.news-detail-before {
    margin: 50px 0 40px 0;
}
.news-detail-before a {
    display: flex;
    align-items: center;
    font-weight: 500;
    font-size: 0.875rem;
}
.news-detail-before img {
    width: 24px;
    height: 24px;
    object-fit: contain;
    margin-right: 10px;
}

.detail-title-area {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-bottom: 65px;

    border-bottom: 1px solid var(--gray-1);
}
.detail-title-area h3 {
    width: 100%;
    max-width: 800px;
    font-weight: 500;
    font-size: 1.75rem;
    text-align: center;
}
.detail-title-area strong {
    font-weight: 700;
    font-size: 0.875rem;
    color: var(--gray-3);
    margin-top: 20px;
}

.news-detail-wrap article {
    margin: 60px 0 80px 0;
}
.news-detail-wrap article p {
    font-weight: 400;
    font-size: 1rem;
    line-height: 28px;
}

ul.news-detail-btn-view {}

ul.news-detail-btn-view li {
    border-bottom: 1px solid var(--gray-1);
}
ul.news-detail-btn-view li:first-child {
    border-top: 1px solid var(--gray-1);
}

ul.news-detail-btn-view li a {
    display: flex;
    align-items: center;
    padding: 26px 0;
    font-weight: 500;
    font-size: 0.875rem;
}
ul.news-detail-btn-view li a span {
    display: inline-block;
    margin-right: 75px;
}
ul.news-detail-btn-view li a p {}
ul.news-detail-btn-view li a span.detail-view-before-span,
ul.news-detail-btn-view li a p.detail-view-before-p {
    color: var(--gray-2);
}

.news-detail-btn-area {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 60px 0 80px 0;

}
.news-detail-btn-area button {
    width: 200px;
    height: 50px;
    border: 1px solid var(--gray-3);
    border-radius: 30px;
    font-weight: 500;
    font-size: 1rem;
    color: #333;
}
.news-detail-btn-area button:hover {
    border: 1px solid var(--main_color);
    color: var(--main_color);
}

/* login */
.bg-wrap {
    position: relative;
}
.bg-wrap::before {
    content: "";
    background-image: url("/application/views/dist/img/mental_therapy/img_leaves.jpg");
    background-repeat: no-repeat;

    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100vh;
    z-index: 10;
}

section.mental-login {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, 25%);
    width: 540px;
    height: 630px;
    z-index: 10;
    border-radius: 30px;
    overflow: hidden;
}
section.mental-login::before {
    content: "";
    background-color: #FFF;
    opacity: 0.7;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 15;
}

section.mental-login .mental-login-contents {
    position: absolute;
    width: 100%;
    max-width: 410px;
    height: 100%;
    box-sizing: border-box;
    z-index: 20;
}

.login-detail-before {
    position: absolute;
    left: 0;
    top: 0;
    z-index: 15;
    margin-top: 30px;
}
.login-detail-before a {
    display: flex;
    align-items: center;
    font-weight: 500;
    font-size: 0.875rem;
    color: #333;
}
.login-detail-before a img {
    width: 26px;
    height: 26px;
    object-fit: contain;
    margin-right: 10px;
}

section.mental-login h2 {
    font-weight: 700;
    font-size: 2.5rem;
    color: var(--main_color);
    margin-top: 100px;
}

section.mental-login .login-input-container {
    width: 410px;
    max-width: 410px;
    margin-top: 75px;
    box-sizing: border-box;
}
section.mental-login .login-input-wrap {
    box-sizing: border-box;
    width: 100%;
}
section.mental-login .login-input-wrap:first-child {
    margin-bottom: 20px;
}
section.mental-login .login-input-wrap p {
    font-weight: 400;
    font-size: 1rem;
    color: var(--gray-3);
}
section.mental-login .login-input-wrap input {
    width: 100%;
    height: 40px;
    border: 1px solid #FFF;
    border-radius: 10px;
    box-sizing: border-box;
    margin-top: 10px;
    transition: 0.15s;
    padding: 0 10px;
}
section.mental-login .login-input-wrap input:hover,
section.mental-login .login-input-wrap input:active,
section.mental-login .login-input-wrap input:focus {
    border: 1px solid var(--main_color);
    outline: none;
}

section.mental-login .login-input-wrap a {
    display: block;
    width: 100%;
    font-weight: 400;
    font-size: 1rem;
    color: var(--main_color);
    text-align: end;
    margin-top: 10px;
}
section.mental-login .login-input-wrap a:hover {
    text-decoration: underline;
}

section.mental-login .mental-login-btn {
    width: 100%;
    height: 55px;
    margin-top: 50px;
}
section.mental-login .mental-login-btn button {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    background-color: var(--main_color);
    border-radius: 35px;
    font-weight: 700;
    font-size: 1.25rem;
    color: #FFF;
}

section.mental-login strong {
    display: block;
    font-size: 1rem;
    margin-top: 15px;
    color: var(--gray-3);
}
section.mental-login strong a {
    font-weight: 600;
    color: var(--main_color);
    margin-left: 5px;
}
section.mental-login strong a:hover {
    text-decoration: underline;
}

/* deepcheck */
.deepcheck-layout {
    display: flex;
    justify-content: center;
    color: #333;
}

section.deepcheck-area {
    display: flex;
    align-items: center;
    flex-direction: column;
    width: 100%;
    max-width: 1400px;
}

.dc-title-area {
    margin: 60px 0 80px 0;
}
.dc-title-area h2 {
    font-size: 2rem;
    font-weight: 700;
}

article.deepcheck-article {
    width: 100%;
    max-width: 500px;
    padding: 50px 30px;
    box-sizing: border-box;
    border-radius: 20px;
    background-color: #FAFAFA;
    margin-bottom: 60px;
}

.deepcheck-opinion-area {
    margin-bottom: 40px;
}
.deepcheck-opinion-area p {
    font-weight: 400;
    font-size: 1.1rem;
    line-height: 1.2;
}
.deepcheck-opinion-area strong {
    display: block;
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--main_color);
    padding: 15px 0;
}
.deepcheck-opinion-area p.deepcheck-text {
    display: flex;
    font-weight: 400;
    font-size: 0.875rem;
    color: var(--gray-2);
    line-height: 20px;
}
.deepcheck-opinion-area p.deepcheck-text img {
    margin-right: 7px;
    width: 14px;
    height: 14px;
    object-fit: contain;
}

.deepcheck-opinion-area .deepcheck-opinion-btn {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 50px;
    background-color: var(--main_color);
    border-radius: 12px;
    margin-top: 40px;
}
.deepcheck-opinion-area .deepcheck-opinion-btn button {
    width: 100%;
    height: 100%;
    color: #FFF;
    font-weight: 500;
    font-size: 1rem;
}

/* ---- */

.deepcheck-choose-area {
    margin-top: 50px;
}
.deepcheck-choose-area .input-area {}
.deepcheck-choose-area .input-area label {
    font-weight: 500;
    font-size: 1rem;
    color: var(--gray-3);
}

.deepcheck-choose-area .input-box {
    display: flex;
    margin-top: 8px;
}
.deepcheck-choose-area .input-check {
    display: flex;
    justify-content: space-between;
    width: 100%;
    margin-bottom: 30px;
}
.deepcheck-choose-area .input-check:last-child {
    margin-bottom: 0;
}

.deepcheck-choose-area .input-check input[type="radio"] {
    display: none;
}
.deepcheck-choose-area .input-check input[type="radio"]+label {
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    height: 48px;
    width: 100%;
    border: 1px solid var(--gray-1);
    background-color: #FFF;
    border-radius: 12px;
    transition: 0.15s;
}
.deepcheck-choose-area .input-check input[type="radio"]+label:hover,
.deepcheck-choose-area .input-check input[type="radio"]+label:focus,
.deepcheck-choose-area .input-check input[type="radio"]+label:active {
    background-color: var(--main_color);
    border: 1px solid var(--main_color);
    color: #FFF;
}
.deepcheck-choose-area .input-check input[type="radio"]:checked+label {
    background-color: var(--main_color);
    color: #FFF;
}

.deepcheck-choose-area .input-check label {
    margin-right: 10px;
}
.deepcheck-choose-area .input-check label.last-label {
    margin-right: 0;
}

.deepcheck-choose-area .input-check select {
    width: 100%;
    height: 48px;
    border: 1px solid var(--gray-1);
    background-color: #FFF;
    border-radius: 12px;
    padding: 0 15px;
    box-sizing: border-box;
    font-weight: 500;
    font-size: 1rem;
    color: var(--gray-3);
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}
.deepcheck-choose-area .input-check select:focus {
    outline: none;
}
.deepcheck-choose-area .input-check select option {
    font-weight: 500;
}

/* ---- */

.deepcheck-contents-area {
    width: 100%;
    /*margin-top: 50px;*/
}
.deepcheck-contents-area p {
    line-height: 22px;
}

.deepcheck-contents-area .deepcheck-contents {
    border: 1px solid var(--gray-1);
    border-radius: 12px;
    background-color: #FFF;
    padding: 15px;
    box-sizing: border-box;
}
.deepcheck-contents-area .input-check {
    display: flex;
    align-items: center;
    font-weight: 400;
    font-size: 1.1rem;
    padding: 12px 0;
}
.deepcheck-contents-area .input-check input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-right: 7px;
    accent-color: var(--main_color);
}

.deepcheck-contents-area .input-check select {
    width: 100%;
    height: 48px;
    border: 1px solid var(--gray-1);
    background-color: #FFF;
    border-radius: 12px;
    padding: 0 15px;
    box-sizing: border-box;
    font-weight: 500;
    font-size: 1rem;
    color: var(--gray-3);
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.deepcheck-contents-area .deepcheck-opinion-btn {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 50px;
    background-color: var(--main_color);
    border-radius: 12px;
    margin-top: 40px;
    margin-bottom: 40px;
}
.deepcheck-contents-area .deepcheck-opinion-btn button {
    width: 100%;
    height: 100%;
    color: #FFF;
    font-weight: 500;
    font-size: 1rem;
}
.deepcheck-contents-area label {
    line-height: 22px;
}

.deepcheck-contents-area input[type="password"] {
    width: 100%;
    height: 48px;
    border: 1px solid var(--gray-1);
    border-radius: 12px;
    background-color: #FFF;
    margin: 15px 0;
    padding: 0 15px;
    box-sizing: border-box;
    color: var(--gray-3);
}
.deepcheck-contents-area input[type="password"]:focus,
.deepcheck-contents-area input[type="password"]:active,
.deepcheck-contents-area input[type="password"]:hover {
    outline: none;
}

.deepcheck-contents-area .empty {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 50px;
}
.deepcheck-contents-area .empty img {
    max-width: 150px;
    max-height: 150px;
    object-fit: contain;
    margin-bottom: 20px;
}
.deepcheck-contents-area .empty p {
    font-weight: 500;
    font-size: 1.125rem;
}

ul.selfcheck-list {}
ul.selfcheck-list li {
    margin-bottom: 15px;
}
ul.selfcheck-list li button {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    background-color: #FFF;
    border-radius: 12px;
    border: 1px solid var(--gray-1);
    transition: 0.15s;
}
ul.selfcheck-list li button:hover {
    background-color: var(--main_color);
    color: #FFF;
}

ul.selfcheck-list .check-btn-left {
    display: flex;
    align-items: center;
}
ul.selfcheck-list li button figure {
    max-width: 100px;
    max-height: 100px;
    margin-right: 15px;
    padding: 10px;
    box-sizing: border-box;
}
ul.selfcheck-list li button figure img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
ul.selfcheck-list li button h4.check-btn-title {
    font-weight: 700;
    font-size: 1.125rem;
    margin: 0;
}
ul.selfcheck-list li button:hover h4 {
    color: #FFF;
}

ul.selfcheck-list .check-btn-right {
    border: 1px solid var(--gray-1);
    padding: 10px 15px;
    box-sizing: border-box;
    margin-right: 10px;
    border-radius: 5px;
}
ul.selfcheck-list li button strong {
    font-weight: 700;
    font-size: 1rem;
    color: var(--main_color);
}
ul.selfcheck-list li button:hover strong {
    color: #FFF;
}

.recommend .recommend-btn {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 50px;
    background-color: #88c7c1;
    border-radius: 12px;
    margin-top: 40px;
}
.recommend .recommend-btn button {
    width: 100%;
    height: 100%;
    color: var(--main_color);
    font-weight: 500;
    font-size: 1rem;
}


.mental-health-category {
    margin-bottom: 20px;
}
.mental-health-category span {
    display: inline-block;
    border: 1px solid var(--gray-1);
    font-weight: 500;
    font-size: 1.125rem;
    color: #333;
    cursor: pointer;
    padding: 10px 18px;
    box-sizing: border-box;
    border-radius: 7px;
    transition: 0.15s;
    margin-right: 5px;
    margin-bottom: 10px;
}
.mental-health-category span:hover,
.mental-health-category span:focus,
.mental-health-category span:active,
.mental-health-category span:checked {
    border: 1px solid var(--main_color);
    background-color: var(--main_color);
    color: #FFF;
}

/* medical_03_calendar */
.reserve-wrap {
    color: #333;
}
.reserved-doctor-profile {}
.reserved-doc {
    display: flex;
    align-items: center;
    background-color: #FAFAFA;
    border-radius: 12px;
    box-sizing: border-box;
}
.reserved-doc img {
    width: 120px;
    height: 150px;
    object-fit: contain;
    padding: 10px;
    box-sizing: border-box;
}

.reserved-doc-text {
    margin-left: 10px;
}
.reserved-doc em {
    display: block;
    font-weight: 500;
    font-size: 1.125rem;
    color: var(--gray-3);
}
.reserved-doc h3 {
    font-weight: 400;
    font-size: 1.25rem;
    margin-top: 10px;
}
.reserved-doc h3 strong {
    font-weight: 600;
    color: var(--main_color);
}

.reserved-calender-area {
    margin-bottom: 70px;
}
.reserved-calender-area .reserved-calender-text-wrap {
    margin-bottom: 10px;
}
.reserved-calender-area .reserved-calender-text-wrap p {
    display: flex;
    align-items: center;
    font-weight: 400;
    font-size: 1rem;
    color: var(--gray-2);
    margin-top: 5px;
}
.reserved-calender-area .reserved-calender-text-wrap p.calender-text-after {
    margin-top: 20px;
}

.reserved-calender-area .reserved-calender-text-wrap p span {
    display: inline-block;
    margin-right: 5px;
}
.reserved-calender-area .reserved-calender-text-wrap p span img {}

.deepcheck-contents-area .reserved-btn {
    display: flex;
    justify-content: space-between;
    width: 100%;
    background-color: #FFF;
}
.deepcheck-contents-area .reserved-btn button {
    background-color: var(--main_color);
    border-radius: 12px;
    margin-right: 10px;
}
.deepcheck-contents-area .reserved-btn button:last-child {
    margin-right: 0;
}

/* medical calendar default */
.medical-calendar-wrap table {
    table-layout: fixed;
    width: 100%;
}

.medical-calendar-wrap table tr:nth-of-type(1) th {
    padding: 1.5rem 0;
    border: none;
    text-align: center;
    vertical-align: middle;
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--main_color);
}

.medical-calendar-wrap table tr:nth-of-type(1) th:nth-of-type(1) a, .medical-calendar-wrap table tr:nth-of-type(1) th:nth-of-type(3) a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin: 0 auto;
    min-width: 1.875rem;
    width: 1.875rem;
    height: 1.875rem;
    border-radius: 0.625rem;
    background-color: var(--btn-action-bg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 1.1rem;
    -webkit-box-shadow: 0 3px 4px 0 rgba(0, 0, 0, 0.1);
    box-shadow: 0 3px 4px 0 rgba(0, 0, 0, 0.1);
    font-size: 0;
    -webkit-transition: all .3s;
    transition: all .3s;
}

.medical-calendar-wrap table tr:nth-of-type(1) th:nth-of-type(1) a:hover, .medical-calendar-wrap table tr:nth-of-type(1) th:nth-of-type(3) a:hover {
    background-color: var(--main_color);
}

.medical-calendar-wrap table tr:nth-of-type(1) th:nth-of-type(1) a {
    background-image: url("/application/views/dist/img/mental_therapy/paging-arrow-left.svg");
}
.medical-calendar-wrap table tr:nth-of-type(1) th:nth-of-type(1) a:hover {
    background-image: url("/application/views/dist/img/mental_therapy/paging-arrow-left.svg");
}
.medical-calendar-wrap table tr:nth-of-type(1) th:nth-of-type(3) a {
    background-image: url("/application/views/dist/img/mental_therapy/paging-arrow-right.svg");
}
.medical-calendar-wrap table tr:nth-of-type(1) th:nth-of-type(3) a:hover {
    background-image: url("/application/views/dist/img/mental_therapy/paging-arrow-right.svg");
}

.medical-calendar-wrap table tr:nth-of-type(2) td {
    padding: 0.8rem;
    border-top: none;
    border-right: none;
    border-left: none;
    text-align: center;
    vertical-align: middle;
    font-size: 1rem;
    color: var(--main_color);
}

.medical-calendar-wrap table tr td {
    padding: 5px;
    height: 70px;
    border: 1px solid #ddd;
    font-size: 0.875rem;
    color: #333333;
    overflow: hidden;
}
.medical-calendar-wrap table tr td:first-child {
    border-left: none;
}
.medical-calendar-wrap table tr td:last-child {
    border-right: none;
}
/*.medical-calendar-wrap table tr td a {*/
/*    position: relative;*/
/*    display: block;*/
/*    font-weight: 700;*/
/*    color: var(--main_color);*/
/*}*/
/*.medical-calendar-wrap table tr td a::before {*/
/*    content: '';*/
/*    display: -webkit-inline-box;*/
/*    display: -ms-inline-flexbox;*/
/*    display: inline-flex;*/
/*    margin-right: 5px;*/
/*    margin-bottom: 2px;*/
/*    width: 18px;*/
/*    height: 18px;*/
/*    object-fit: contain;*/
/*    vertical-align: middle;*/
/*    background-image: url("/application/views/dist/img/mental_therapy/calendar_clock.svg");*/
/*    background-repeat: no-repeat;*/
/*    background-position: center;*/
/*}*/
/*.medical-calendar-wrap table tr td a::after {*/
/*    content: '';*/
/*    position: absolute;*/
/*    bottom: -5px;*/
/*    display: block;*/
/*    width: 38px;*/
/*    height: 3px;*/
/*    border-radius: 5px;*/
/*    background-color: var(--main_color);*/
/*}*/

ul.medical-list {}
ul.medical-list li {
    width: 100%;
    margin-bottom: 20px;
    border-radius: 15px;
    overflow: hidden;
}

ul.medical-list li button {
    display: flex;
    align-items: center;

    width: 100%;
    background-color: #FAFAFA;
}
ul.medical-list li button figure {
    width: 130px;
    height: 130px;
    padding: 15px;
    box-sizing: border-box;
}
ul.medical-list li button figure img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

ul.medical-list li button p {
    display: flex;
    flex-direction: column;
    align-items: start;

    margin-left: 15px;
}
ul.medical-list li button p span {
    font-weight: 400;
    font-size: 1rem;
    color: var(--gray-3);
    margin-bottom: 3px;
}
ul.medical-list li button p strong {
    font-weight: 500;
    color: #333;
}
ul.medical-list li button p em {
    font-weight: 500;
    font-size: 1rem;
    color: var(--main_color);
    margin-top: 12px;
}

ul.medical-list li button p span,
ul.medical-list li button p strong,
ul.medical-list li button p em {
    display: block;
}

/* medical_04_reserve */
.medical-form-wrap {
    color: #333;
    margin-bottom: 60px;
}
.medical-form-title-area {
    margin-bottom: 50px;
}
.medical-form-title-area h3 {
    font-weight: 500;
    font-size: 1.4rem;
    margin-bottom: 10px;
}
.medical-form-title-area p {
    font-weight: 500;
    font-size: 1.125rem;
    color: var(--gray-2);
}

.oneline-check {}
.oneline-check input[type="checkbox"] {}
.oneline-check label {}

.deepcheck-contents-area2 {
    margin-top: 0;
}
.deepcheck-contents-area h4 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 20px;
    margin-top: 40px;
    color: var(--main_color);
}
.deepcheck-contents-area input[type="text"],
.deepcheck-contents-area input[type="number"] {
    width: 100%;
    height: 48px;
    border-radius: 12px;
    background-color: #FFF;
    color: #333;
    border: 1px solid var(--gray-1);
    padding: 0 10px;
    box-sizing: border-box;
    margin-bottom: 10px;
    outline: none;
    transition: 0.15s;
}
.deepcheck-contents-area input[type="text"]:hover,
.deepcheck-contents-area input[type="text"]:focus,
.deepcheck-contents-area input[type="text"]:active,
.deepcheck-contents-area input[type="number"]:hover,
.deepcheck-contents-area input[type="number"]:focus,
.deepcheck-contents-area input[type="number"]:active {
    border: 1px solid var(--main_color);
}

.deepcheck-contents-area label {
    font-weight: 500;
    font-size: 1rem;
    color: var(--gray-3);
}

.deepcheck-contents-area textarea {
    width: 100%;
    height: 6rem;
    border: 1px solid var(--gray-1);
    border-radius: 12px;
    line-height: 1.4;
    padding: 10px;
    box-sizing: border-box;
    outline: none;
    resize: none;
    transition: 0.15s;
}
.deepcheck-contents-area textarea:hover,
.deepcheck-contents-area textarea:focus,
.deepcheck-contents-area textarea:active {
    border: 1px solid var(--main_color);
}

.deepcheck-choose-area2 {
    margin-top: 0;
}

.medical-form-area {
    background-color: #FAFAFA;
    padding: 40px;
    box-sizing: border-box;
    border-radius: 20px;
}
.medical-form-area form {}
.medical-form-area form input[type="hidden"] {
    width: 100%;
    height: 48px;
}

/* medical_05_reserveview */
.reserve-finished-area {
    color: #333;
    margin: 60px 0;
}

section.reserve-finish {
    display: flex;
    flex-direction: column;
    background-color: #FAFAFA;
    border-radius: 20px;
    padding: 50px;
    box-sizing: border-box;
}

.reserve-finish-upper-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #FFF;
    padding: 30px;
    box-sizing: border-box;
    border-radius: 20px;
    margin-bottom: 40px;
}
.reserve-finish-upper-wrap figure {
    width: 120px;
    height: 120px;
}
.reserve-finish-upper-wrap figure img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.reserve-finish-upper-wrap h2 {
    font-weight: 500;
    font-size: 2.15rem;
    margin: 50px 0;
}

section.reserve-finish p {
    font-weight: 400;
    font-size: 1.125rem;
    line-height: 24px;
    margin-bottom: 15px;
}
section.reserve-finish p.lower-p {
    margin-top: 30px;
}
section.reserve-finish p strong {
    font-weight: 700;
    color: var(--main_color);
}
section.reserve-finish h3 {
    font-weight: 400;
    font-size: 1.125rem;
    line-height: 24px;
}
section.reserve-finish h3 span {
    font-weight: 500;
}

/* deepcheck_03_intro */
section.selfcheck-area {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 500px;
    background-color: #FAFAFA;
    padding: 50px;
    box-sizing: border-box;
    border-radius: 20px;
    margin: 60px 0;
}

.sc-title-area {}
.sc-title-area h2 {
    color: var(--main_color);
}
section.selfcheck-area h2 {
    font-weight: 700;
    font-size: 2rem;
    color: var(--main_color);
    margin-bottom: 20px;
}

article.selfcheck {}
article.selfcheck .selfcheck-contents {
    display: flex;
    flex-direction: column;
    align-items: center;
}
article.selfcheck .selfcheck-contents figure {
    width: 250px;
    height: 250px;
    margin-bottom: 50px;
}
article.selfcheck .selfcheck-contents figure img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
article.selfcheck .selfcheck-contents p {
    font-weight: 400;
    font-size: 1rem;
    line-height: 24px;
}

/* question board */
.questionForm {
    width: 100%;

}

.question-progress {
    margin-bottom: 30px;
    width: 100%;
}

.question-list > div.question_board {
    background-color: #FFF;
    width: 100%;
}
.question-list > div .question-text {
    width: 100%;
}

/* deepcheck graph */
.deepcheck-graph-layout {}

section.deepcheck-graph {
    margin: 100px 0;
}
section.deepcheck-graph h2 {
    font-weight: 700;
    font-size: 2rem;
    margin-bottom: 20px;
}
section.deepcheck-graph h3 {
    margin-left: 0;
}
.graph-opinion-text {
    border: 1px solid var(--main_color);
}
ul.graph-list {
    background-color: #FFF;
}
ul.graph-list li {}

/* deepcheck_05_result */
article.selfcheck-result {
    display: flex;
    flex-direction: column;
    align-items: center;
}
article.selfcheck-result figure {
    width: 160px;
    height: 160px;
    margin-bottom: 50px;
}
article.selfcheck-result figure img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.cont-result {}
.cont-result h3 {
    font-weight: 700;
    font-size: 1.4rem;
    margin-bottom: 30px;
}

.cont-result h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--gray-3);
}
.cont-result h4 strong {
    color: var(--main_color);
}

.cont-result p {
    font-weight: 400;
    font-size: 1rem;
    line-height: 28px;
    margin: 20px 0 35px 0;
}
.cont-result em {
    font-weight: 500;
    font-size: 0.85rem;
    line-height: 22px;
    color: var(--gray-2);
}

/* mypage */
.mypage-layout {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
section.mypage-area {
    width: 100%;
    max-width: 920px;
    display: flex;
    align-items: center;
    margin-top: 60px;
}

/*------------------*/

.setting-list {
    background-color: #F8FDFE;
}

.setting-list li:nth-of-type(n + 2) {
    border-top: 1px solid var(--form-disabled-bg);
}

.setting-list li a, .setting-list li button {
    padding: 0;
    border: none;
    font-weight: 500;
}

.mypage .toolbar-top #btn_setting {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
}

@media screen and (max-width: 768px) {
    .mypage .toolbar-top #btn_setting {
        margin-right: 2rem;
    }
}

.mypage .toolbar-top #btn_searchview {
    display: none;
}

@media screen and (max-width: 768px) {
    .mypage .toolbar-top #btn_searchview {
        display: -webkit-box !important;
        display: -ms-flexbox !important;
        display: flex !important;
        margin-right: 2rem;
    }

    .mypage #searchBox {
        display: none;
    }
}

.mypage .input-box .icon, .mypage .input-box input {
    height: 50px !important;
}

.mypage .board-text-list img {
    margin-right: 0.5rem;
    width: 32px !important;
    height: auto;
}

.mypage .board-text-list p::before {
    display: none;
}

/*------------------*/


nav.bottom-nav {
    display: none;
}
ul.board-text-list {
    background-color: #FFF;
}
ul.setting-list {
    background-color: #FFF;
}
.contents-list-silder {
    background-color: #FFF;
}
.contents-list-silder li.swiper-slide {
    background-color: #FFF;
}

/*button.btn-gnb-toggle {*/
/*    display: none;*/
/*}*/

.btn-gnb-toggle {
    display: none;
    margin: 0;
    padding: 0;
    width: 0;
    height: 0;
}

.btn-action {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    min-width: 1.875rem;
    width: 1.875rem;
    height: 1.875rem;
    border: none;
    border-radius: 0.625rem;
    background-color: var(--btn-action-bg);
    -webkit-box-shadow: 0 3px 4px 0 rgba(0, 0, 0, 0.1);
    box-shadow: 0 3px 4px 0 rgba(0, 0, 0, 0.1);
}


.medical-calendar-wrap table tr td span {
    cursor: pointer;
}

.selectable_day {
    position: relative;
    display: block;
    font-weight: 700;
    color: var(--main_color);
}
.selectable_day::before {
    content: '';
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    margin-right: 5px;
    margin-bottom: 2px;
    width: 18px;
    height: 18px;
    object-fit: contain;
    vertical-align: middle;
    background-image: url("/application/views/dist/img/mental_therapy/calendar_clock.svg");
    background-repeat: no-repeat;
    background-position: center;
}
.selectable_day::after {
    content: '';
    position: absolute;
    bottom: -5px;
    display: block;
    width: 38px;
    height: 3px;
    border-radius: 5px;
    background-color: var(--main_color);
}

.c_curday {
    color: var(--main_color) !important;
    font-weight: 700;
    border-radius: 0.5rem;
}

.c_selday {
    padding: 4px;
    border-radius: 0.5rem;
    background: #0c8a60;
    color: #ffffff !important;
}

.selected_day {
    padding: 4px;
    border-radius: 0.5rem;
    background: #0c8a60;
    color: #ffffff !important;
}
/*.selected_day::before {*/
/*    content: '';*/
/*    display: -webkit-inline-box;*/
/*    display: -ms-inline-flexbox;*/
/*    display: inline-flex;*/
/*    margin-right: 5px;*/
/*    margin-bottom: 2px;*/
/*    width: 18px;*/
/*    height: 18px;*/
/*    object-fit: contain;*/
/*    vertical-align: middle;*/
/*    background-image: url("/application/views/dist/img/mental_therapy/calendar_clock.svg");*/
/*    background-repeat: no-repeat;*/
/*    background-position: center;*/
/*}*/


