@charset "utf-8";

.msg-box {
    display: none;
    width: 100%;
    position: fixed;
    bottom: -100px;
    right: 0;
    padding: 20px;
    box-sizing: border-box;
    background: #3f3f3fdd;
    color: #ecf0f1;
    z-index: 999999;
    transition: all 0.4s ease-in-out;
}

.msg-box .msg-text {
    display: inline-block;
    width: calc(100% - 120px);
    vertical-align: middle;
    padding: 5px 0;
}

.msg-box .msg-close {
    float: left;
    display: inline-block;
    vertical-align: middle;
    padding: 5px 20px;
    border-radius: 5px;
    cursor: pointer;
    color: #e74c3c;
}

.msg-box .msg-close:active,
.msg-box .msg-close:hover {
    background: #e74c3c;
    color: #ecf0f1;
}

.black {
    display: none;
    position: fixed;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.35);
    top: 0;
    right: 0;
    z-index: 10;
}

.black2 {
    display: none;
    position: fixed;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.70);
    top: 0;
    right: 0;
    z-index: 10;
}

.light {
    display: none;
    position: fixed;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.20);
    top: 0;
    right: 0;
    z-index: 10;
}
.white {
    display: none;
    position: fixed;
    width: 100%;
    height: 100vh;
    background: rgba(255, 255, 255, 0.95);
    top: 0;
    right: 0;
    z-index: 10;
}

.alert {
    border-radius: 15px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.35);
    margin: auto;
    box-sizing: border-box;
    background: var(--white);
    display: none;
    position: fixed;
    top: 25px;
    right: 0;
    left: 0;
    z-index: 20;
    padding: 0;
    width: calc(100% - 20px);
    max-width: 350px;
    opacity: 0.0;
    transition: all 0.2s ease-in-out;
    overflow: hidden;
}

.alert .label {
    display: block;
    margin-top: 10px;
}

.alert a {
    display: block;
    color: #e74c3c;
}

.alert input,
.alert select,
.alert textarea {
    width: 100%;
    box-sizing: border-box;
    display: block;
    background: #ffffff;
}

.alert textarea {
    max-width: 100%;
    min-width: 100%;
    height: 90px;
    min-height: 90px;
    max-height: 120px;
    box-sizing: border-box;
    resize: none;
}

.alert .title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 5px 15px;
    font-weight: 800;
    font-size: 14pt;
    text-align: right;
    border-bottom: 1px solid var(--gray_200);
}

.alert .title i {
    float: left;
    padding: 5px;
    cursor: pointer;
    color: var(--red--500);
}

.alert .text {
    margin: 10px 0 25px 0;
    padding: 0 15px;
    text-align: justify;
    font-size: 10pt;
    font-weight: normal;
}

.alert .text .sub_title {
    display: block;
    font-weight: 800;
    margin-bottom: 15px;
    color: var(--dark-500);
}

.alert .text ul {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.alert .text ul li {
    color: var(--gray_500);
}

.alert .positive-btn,
.alert .negative-btn {
    text-align: center;
    border-top: solid 1px var(--gray_200);
    padding: 8px 0;
    font-size: 12pt;
    cursor: pointer;
    font-weight: bold;
}

.alert .positive-btn {
    color: var(--blue_500);
}

.alert .negative-btn {
    color: var(--red--500);
}

.calendar_holder {
    display: block;
    border-radius: 5px;
    border: solid 1px #676662;
    overflow: hidden;
}

.calendar_title,
.calendar_list,
.calendar_row {
    text-align: center;
}

.calendar_title span,
.calendar_list span,
.calendar_row span {
    display: block;
    float: right;
    padding: 2px 0;
    box-sizing: border-box;
    border: solid 1px #676662;
    width: calc(100% / 7);
    height: 28px;
}

.calendar_title span {
    background: #67666299;
}

.calendar_list span {
    padding: 10px 0 !important;
    height: 44px !important;
    width: calc(100% / 3) !important;
}

.calendar_row span,
.calendar_list span {
    cursor: pointer;
}

.calendar_row span:hover,
.calendar_list span:hover {
    background: #e67e2233;
}

.calendar_row .selected_date {
    color: #e67e22;
    border: solid 1px #e67e22;
    background: transparent !important;
    cursor: context-menu;
}

.calendar_row .empty {
    cursor: context-menu;
}

.calendar_row .empty:hover {
    background: transparent !important;
}

.calender_month {
    text-align: center;
}

.calender_month i {
    padding: 10px 8px;
    cursor: pointer;
}

.calender_month i:hover {
    color: #e67e22;
}

.calender_month .right {
    float: right;
}

.calender_month .left {
    float: left;
}

.calender_month span {
    display: inline-block;
    padding: 5px 0;
    cursor: pointer;
}

.calender_month span:hover {
    color: #e67e22;
}

.welcome_alert {
    position: fixed;
    right: 0;
    left: 0;
    bottom: 0;
    top: 0;
    height: fit-content;
    width: 600px;
    margin: auto;
    background: var(--white);
    box-shadow: var(--b_shadow_primary);
    z-index: 100;
    overflow: hidden;
    scale: 1;
    padding: 2px;
    box-sizing: border-box;
}

.welcome_alert .alert_img {
    width: 100%;
}

.welcome_alert .alert_img img {
    width: 100%;
    object-fit: contain;
}

.welcome_alert .alert_detail {
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #FFFFFFee;
}

.welcome_alert .alert_detail .detail {
    display: flex;
    flex-direction: column;
    width: 75%;
}

.welcome_alert .alert_detail .title {
    font-family: var(--font_head);
    font-size: var(--font_l);
    color: var(--dark-500);
    font-weight: 800;
}

.welcome_alert .alert_detail .text {
    color: var(--dark-500);
    text-align: right;
    font-size: var(--font_m);
    font-weight: unset;
}

.welcome_alert .alert_btn_negative {
    position: absolute;
    left: 10px;
    top: 10px;
    padding: 5px;
    color: var(--red--500);
    font-size: 26px;
    text-shadow: 0 0 2px var(--dark-100);
    cursor: pointer;
}

.welcome_alert .form {
    position: relative;
    z-index: 1;
    margin: auto;
    background: var(--white);
}

.welcome_alert .form .panel_holder_title {
    text-align: center;
    color: var(--dark-700);
    font-size: var(--font_x1);
}

.welcome_alert .form .sub_title {
    color: var(--red--500);
}

/*************************************/

.site_chat_btn {
    position: fixed;
    right: 16px;
    bottom: 85px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    background: #e43212;
    border: 3px solid #f34616;
    box-shadow: inset 0 0 5px rgba(54, 54, 54, 0.35), 0 0 5px rgba(50, 50, 50, 0.35);
    display: none;
    place-items: center;
    z-index: 9;
}

.site_chat_btn i {
    color: #ffffff;
    font-size: 18px;
}

.site_chat_btn .btn_img {
    width: 30px;
    height: 30px;
    filter: brightness(1000%);
}

.chat_holder {
    position: fixed;
    right: -100%;
    bottom: 75px;
    width: 350px;
    height: 600px;
    border-radius: var(--radius_25);
    border: 1px solid var(--red--500);
    background: var(--white);
    z-index: 10;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}

.chat_holder .chat_header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 65px;
    padding: 20px 10px;
    box-sizing: border-box;
    background: var(--red--500);
    color: var(--white);
    font-size: var(--font_l);
    z-index: 1;
}

.chat_holder .chat_header .title {
    display: flex;
    align-items: center;
    gap: 10px;
}

.chat_holder .chat_header .btn_img {
    filter: brightness(1000%);
}

.chat_holder .chat_article {
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 5px;
    width: 100%;
    height: calc(100% - 120px);
    padding: 20px 10px;
    box-sizing: border-box;
    position: relative;
}

.chat_holder .chat_article .chat_faq_holder {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 5px;
    position: absolute;
    right: 0;
    left: 0;
    margin: auto;
    top: 50px;
    padding: 10px;
    box-sizing: border-box;
}

.chat_holder .chat_article .description_chat {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 5px;
    position: absolute;
    right: 0;
    left: 0;
    margin: auto;
    padding: 10px;
    box-sizing: border-box;
    top: 100%;
}

.chat_holder .chat_article .big_title {
    color: var(--dark);
    font-size: 12pt;
    font-weight: 900;
    font-family: var(--font_head);
}

.chat_holder .chat_article .title {
    font-weight: 400;
    margin-bottom: var(--margin_l);
    text-align: justify;
    color: var(--dark-500);
}

.chat_holder .chat_article .faq_list {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.chat_holder .chat_article .faq_list .item {
    width: 100%;
    display: flex;
    flex-direction: column;
    padding: 10px;
    box-sizing: border-box;
    border-radius: var(--radius_10);
    border: 1px solid var(--gray_300);
}

.chat_holder .chat_article .faq_list .item .item_header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chat_holder .chat_article .faq_list .item .item_header .text {
    font-weight: 500;
    width: calc(100% - 25px);
    text-align: justify;
    color: var(--dark-500);
}

.chat_holder .chat_article .faq_list .item .item_header .btn_img {
    width: 12px;
}

.chat_holder .chat_article .faq_list .item:hover .item_header .text {
    color: var(--red--500);
}

.chat_holder .chat_article .faq_list .item:hover .item_header .btn_img {
    filter: invert(30%) sepia(51%) saturate(8646%) hue-rotate(346deg) brightness(104%) contrast(97%);
}

.chat_holder .chat_article .faq_list .item .inner_post_text {
    color: var(--dark-300);
    margin-bottom: 0;
    border-top: 1px solid transparent;
    margin-top: 0;
    scale: 0;
    height: 0;
    overflow: hidden;
    font-weight: 400;
}

.chat_holder .chat_article .faq_list .item .text_show {
    border-top: 1px solid var(--gray_200);
    margin-top: 5px;
    scale: 1;
    height: auto;
}

.chat_holder .chat_footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 10px;
    box-sizing: border-box;
    gap: 2px;
    position: relative;
    z-index: 1;
    background: var(--white);
}

.chat_holder .chat_footer textarea {
    max-width: calc(100% - 92px);
    min-width: calc(100% - 92px);
    resize: none;
    height: 35px;
    min-height: 35px;
    width: unset;
    margin: 0;
    color: var(--gray_700);
}

.chat_holder .chat_footer textarea:focus {
    height: auto;
    max-height: 100px;
}

.chat_holder .chat_footer:focus {
    height: 110px;
}

.chat_holder .chat_footer .chat_action {
    display: flex;
    align-items: center;
    gap: 10px;
}

.chat_holder .chat_footer .btn_primary {
    width: 40px;
    margin: 0;
}
