@font-face {
    font-family: 'CustomFont';
    src: url('../fonts/NotoSans-VariableFont_wdth,wght.ttf') format('truetype');
    font-weight: 100 900; 
    font-style: normal;
}

* {
    box-sizing: border-box;
    font-family: 'CustomFont', "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "Hiragino Sans", "Noto Sans CJK JP", メイリオ, sans-serif !important;
    /* font-family: "Noto Sans JP", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "Hiragino Sans", "Noto Sans CJK JP", メイリオ, sans-serif; */
}

:root {
    --primary-color: #ff008c;
    --main-header-height: 56px;
    --main-footer-height: 16px;
    --chat-gpt-input-container-height: 100px;
}


@font-face {
    font-family:'Noto Sans JP';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url("../fonts/NotoSansJP-Regular.woff2") format("woff2"),
         url("../fonts/NotoSansJP-Regular.woff") format("woff"),
         url("../fonts/NotoSansJP-Regular.otf") format("opentype");
}

@font-face {
    font-family:'Noto Sans JP';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url("../fonts/NotoSansJP-Bold.woff2") format("woff2"),
         url("../fonts/NotoSansJP-Bold.woff") format("woff"),
         url("../fonts/NotoSansJP-Bold.otf") format("opentype");
}
main {
    height: calc(100vh - var(--main-header-height) - var(--chat-gpt-input-container-height));
    overflow: hidden;
}

.chat-gpt-main {
    width: 100%;
    padding-top: 0 !important;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: rgba(0, 0, 0, 0.2) transparent;
    max-height: calc(100vh - var(--main-header-height) - var(--chat-gpt-input-container-height));
    height: calc(100vh - var(--main-header-height) - var(--chat-gpt-input-container-height));
}

.chat-gpt-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: auto;
    position: relative;
    overflow-y: auto;
    height: calc(100vh - var(--main-header-height) - var(--chat-gpt-input-container-height));
}

@media screen and (max-width: 767px) {
    .confirm-modal-content {
        max-width: 90% !important;
    }

    .chat-gpt-main {
        width: 100%;
        overflow-x: scroll;
    }
}

@media screen and (min-width: 768px) {
    .chat-gpt-container::-webkit-scrollbar {
        width: 8px;
    }

    .chat-gpt-container::-webkit-scrollbar-track {
        background: #EBEBEB;
        border-radius: 4px;
    }

    .chat-gpt-container::-webkit-scrollbar-thumb {
        background: #9C9C9C;
        border-radius: 4px;
    }
}

.chat-gpt-input-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    /* padding: 0 16px; */
    position: sticky;
    left: 0;
    bottom: 0;
}

.chat-gpt-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: auto;
}

.chat-gpt-wrap.chat-gpt-wrap--is-error {
    padding: 40px;
}

#default-server-message-1, #default-server-message-2 {
    display: none;
}

#default-server-message-1 {
    margin-bottom: 16px;
}

#default-server-message-1 span {
    font-size: 12px;
}

@media screen and (max-width: 767px) {
    #default-server-message-1 {
        margin-bottom: 12px;
        width: calc(100% - 48px);
    }
}

/* css for botTyping */

.botTyping {
    margin-top: 5px;
    background: #F0F7FF;
    color: #019FD3;
    box-shadow: 2px 3px 9px 0px #9a82847a;
    margin-left: 20px;
    padding: 15px;
    border-radius: 0 20px 20px 20px;
    max-width: 60%;
    min-width: 20%;
    word-wrap: break-word;
    border-radius: 0 20px 20px 20px;
}

.botTyping > div {
    width: 10px;
    height: 10px;
    background-color: #019FD3;
    border-radius: 100%;
    display: inline-block;
    -webkit-animation: sk-bouncedelay 1.4s infinite ease-in-out both;
    animation: sk-bouncedelay 1.4s infinite ease-in-out both;
    margin-right: 5px;
}

.botTyping .bounce1 {
    -webkit-animation-delay: -0.32s;
    animation-delay: -0.32s;
}

.botTyping .bounce2 {
    -webkit-animation-delay: -0.16s;
    animation-delay: -0.16s;
}

@-webkit-keyframes sk-bouncedelay {

    0%,
    80%,
    100% {
        -webkit-transform: scale(0)
    }

    40% {
        -webkit-transform: scale(1.0)
    }
}

@keyframes sk-bouncedelay {

    0%,
    80%,
    100% {
        -webkit-transform: scale(0);
        transform: scale(0);
    }

    40% {
        -webkit-transform: scale(1.0);
        transform: scale(1.0);
    }
}

@media screen and (min-width: 768px) {
    .chat-gpt-wrap.chat-gpt-wrap--is-error {
        min-height: calc(100vh - 202px);
        padding-top: 136px;
    }
}

.chat-gpt-inner {
    flex-grow: 1;
    width: 100%;
    max-width: 968px;
    padding: 0 16px 80px;
}

@media screen and (max-width: 767px) {
    .chat-gpt-inner {
        width: 100%;
        max-width: none;
        padding: 0 16px 44px;
    }
}

.messages-container {
    flex-grow: 1;
    padding: 8px;
    width: 100%;
    max-width: 968px;
    margin-top: var(--main-header-height);
    height: auto;
    padding-bottom: var(--main-footer-height);
}
  

.message {
    display: flex;
    align-items: flex-start;
    margin-bottom: 12px;
}
.server-message {
    flex-direction: column;
}

.message .chat-gpt-message-inner {
    margin-left: 16px;
}

@media screen and (max-width: 767px) {
    .message {
        margin-bottom: 12px;
    }

    .message .chat-gpt-message-inner {
        margin-left: 8px;
    }
}

.chat-gpt-message-inner {
    width: 100%;
    border-radius: 16px;
    padding: 20px 20px 20px 20px;
    margin: 0;
    font-size: 14px;
}

.user-message {
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    /* margin-bottom: 16px; */
}

.user-message .chat-gpt-message-inner {
    color: #fff;
    background-color: #FFF2F9;
    width: auto;
    color: #333;
}

@media screen and (max-width: 767px) {
    .chat-gpt-message-inner {
        padding: 16px 16px 16px 16px;
    }
    .server-message .chat-gpt-message-inner {
        padding: 6px 16px 6px 0px;
    }
}

.input-container {
    display: flex;
    width: 100%;
    background-color: #fff;
    padding: 12px 6px;
    align-items: center;
    justify-content: center;
}

.input-text__block {
    /* width: 100%; */
    width: calc(100% - 92px);
    max-width: 934px;
    display: flex;
    position: relative;
}

@media screen and (max-width: 767px) {
    .input-text__block {
        width: calc(100% - 14px);
    }
}

.chat-gpt-input {
    flex-grow: 1;
    font-size: 16px;
    line-height: 1.5;
    padding: 16px 70px 16px 24px;
    border-radius: 360px;
    outline: none;
    resize: none;
    overflow: hidden;
    height: 56px;
    min-height: 56px;
    max-height: 224px;
    position: relative;
    border-image-source: linear-gradient(317.48deg, #FF008C -53.67%, #FFFFFF 76.57%);
    /* background: linear-gradient(149.26deg, #FFFFFF -20.56%, #FFE8E8 370.75%); */
    box-shadow: 0px 2px 6px 0px #FF70704D;
    font-family: 'CustomFont', "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "Hiragino Sans", "Noto Sans CJK JP", メイリオ, sans-serif;
}

.chat-gpt-input__submit {
    position: absolute;
    bottom: 5px;
    right: 0;
    padding: 0 10px 0 0;
    box-sizing: content-box;
    cursor: pointer;
}
.stop-recording-button {
    bottom: 1px;
}

@media screen and (max-width: 767px) {
    .chat-gpt-input {
        padding: 16px 50px 16px 24px;
    }

    .chat-gpt-input__submit {
       padding: 0 10px 0 0;;
    }
}

.chat-user-icon {
    width: 56px;
    height: 56px;
    margin-left: 8px;
}

.chat-gpt-profile-icon,
.chat-gpt-user-icon {
    width: 64px;
    height: 64px;
    user-select: none;
}

@media screen and (max-width: 767px) {
    .chat-gpt-profile-icon,
    .chat-gpt-user-icon {
        width: 40px !important;
        height: 40px !important;
        margin-left: 6px;
    }
}

.chat-gpt-message-text {
    word-break: break-word;
    line-height: 2.5rem;
}

.chat-gpt-hdg-lv2 {
    font-size: 25px;
    font-weight: 600;
    text-align: center;
    line-height: 1.5;
    margin: 0 0 20px 0;
    color: #006497;
    margin-bottom: 5px;
}

.chat-gpt-hdg-lv3 {
    font-size: 20px;
    font-weight: 700;
    text-align: center;
    line-height: 1.5;
    margin: 0 0 16px 0;
}

@media screen and (max-width: 767px) {
    .chat-gpt-hdg-lv2 {
        font-size: 17px;
        text-align: left;
        margin: 0 0 6px 0;
    }

    .chat-gpt-hdg-lv3 {
        font-size: 14px;
    }
}

.chat-gpt-q-lst {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    margin: 0;
    border-radius: 4px;
}

.chat-gpt-q-lst li {
    font-size: 14px;
    line-height: 1.5;
    margin-top: 10px;
}

.chat-gpt-q-lst li:not(:last-child) {
    margin-right: 10px;
}

.chat-gpt-q-lst li a,
form .form-btn, .button-response  {
    display: flex;
    justify-content: center;
    align-items: center;
    color: #ff008c;
    padding: 8px 16px;
    text-decoration: none;
    background-color: #fff;
    border-radius: 9999px;
    border: 1px solid #ff008c;
    font-weight: 700;
    font-size: 14px;
    text-align: left;
    box-shadow: 0px 4px 5px 0px #0000001A;
}
.button-gray {
    background-color: white;
    border: 1px solid #8c8c8c;
    color: #8c8c8c;
    font-weight: normal;
}
.button-response span {
    display: inline-block;
    max-width: 100%;
    text-align: center;
    word-break: break-word;
}

.button-container li a:hover {
    background-color: #ff56b3;
}

.chat-gpt-q-lst li a .btn-text-container {
    display: flex;
    align-items: center;
}

.chat-gpt-q-lst li a .btn-text-container svg {
    margin-right: 5px;
}

@media screen and (max-width: 767px) {
    .chat-gpt-q-lst li {
        width: 100%;
        font-size: 14px;
    }

    .chat-gpt-q-lst li:not(:first-child) {
        margin-top: 8px;
    }

    .chat-gpt-q-lst li:not(:last-child) {
        margin-right: 0;
    }

    .chat-gpt-q-lst li a {
        padding: 7px 10px;
        justify-content: center;
    }
}

.chat-gpt-feedback {
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    margin-top: 16px;
    display: none;
}

.chat-gpt-feedback input[type=checkbox] {
    display: none;
}


.chat-gpt-feedback-like-btn span {
    background-image: url(../images/like-button.svg);
    width: 36px;
    height: 36px;
}

.chat-gpt-feedback-dislike-btn span {
    background-image: url(../images/dislike-button.svg);
    width: 36px;
    height: 36px;
}

.chat-gpt-feedback-dislike-btn input[type="checkbox"]:checked + span {
    background-image: url(../images/dislike-active-button.svg);
}

.chat-gpt-feedback-like-btn input[type="checkbox"]:checked + span{
    background-image: url(../images/like-active-button.svg);
}

.chat-gpt-feedback-like-btn,
.chat-gpt-feedback-dislike-btn,
.chat-gpt-feedback-like-btn span,
.chat-gpt-feedback-dislike-btn span {
    display: flex;
}


.chat-gpt-feedback-like-btn label,
.chat-gpt-feedback-dislike-btn label {
    cursor: pointer;
}

.chat-gpt-feedback-like-btn {
    margin-right: 8px;
}

@media screen and (min-width: 768px) {
    .chat-gpt-feedback {
        margin-top: 8px;
    }
}

/* error */
.chat-gpt-wrap.chat-gpt-wrap--is-error .chat-gpt-hdg-lv2 {
    color: #006497;
}

.chat-gpt-wrap.chat-gpt-wrap--is-error .chat-gpt-ai-img-wrap {
    text-align: center;
    margin-bottom: 16px;
}

.chat-gpt-wrap.chat-gpt-wrap--is-error .chat-gpt-ai-img-wrap img {
    width: 100px;
}

@media screen and (min-width: 768px) {
    .chat-gpt-wrap.chat-gpt-wrap--is-error .chat-gpt-ai-img-wrap img {
        width: 150px;
    }
}

@media screen and (max-width: 767px) {
    .chat-gpt-wrap.chat-gpt-wrap--is-error .chat-gpt-hdg-lv2 {
        font-size: 17px;
        text-align: center;
    }

    .chat-gpt-wrap.chat-gpt-wrap--is-error .chat-gpt-text {
        font-size: 14px;
        text-align: center;
    }
}

.chat-gpt-wrap.chat-gpt-wrap--is-error .chat-gpt-text {
    text-align: center;
    color: #373737;
}

.chat-gpt-chat-reset {
    padding: 0 8px 0 0;
    /* margin-top: 10px; */
}

.chat-gpt-chat-reset button {
    display: flex;
    flex-direction: column;
    cursor: pointer;
    align-items: center;
}

.chat-gpt-chat-reset a {
    color: #000;
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
}


.chat-gpt-chat-reset a:link,
.chat-gpt-chat-reset a:visited,
.chat-gpt-chat-reset a:hover,
.chat-gpt-chat-reset a:active {
    color: #000;
    text-decoration: none;
}

.chat-gpt-reset-text {
    font-size: 12px;
    font-weight: bold;
    line-height: 1.5;
    white-space: nowrap;
}

@media screen and (max-width: 968px) {
    .chat-gpt-chat-reset {
        left: 0;
    }
}

@media screen and (max-width: 767px) {
    .chat-gpt-chat-reset {
        top: -60px;
    }
}

.s1-lp-header {
    width: 100%;
    position: relative;
}

.s1-lp-header__inner {
    padding: 0 8px;
}

@media screen and (min-width: 768px) {
    .s1-lp-header__inner {
        padding: 8px 10px;
    }
}

.s1-lp-header-logo {
    margin-top: 8px;
    display: inline-block;
    margin-right: 11px;
}

@media screen and (min-width: 768px) {
    .s1-lp-header-logo {
        margin-top: 4px;
        max-width: 232px;
    }
}

.s1-lp-header-logo a {
    display: inline-block;
}

.s1-lp-header-logo a:hover {
    text-decoration: none;
}

.s1-lp-header-logo img {
    max-width: 100%;
}

@media screen and (min-width: 768px) {
    .s1-lp-header-logo img {
        min-width: 232px;
    }
}

.s1-lp-header-right {
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    height: 56px;
    float: right
}

.s1-lp-header-right li {
    margin-left: 10px
}

@media screen and (min-width: 768px) {
    .s1-lp-header-right li {
        margin-left: 14px
    }

    .s1-lp-header-right li.s1-lp-header-risk {
        margin-left: 24px;
    }
}

.s1-lp-header-support {
    font-size: 13px;
    line-height: 1.5;
}

.s1-lp-header-risk {
    color: #686868;
    font-size: 12px;
    font-weight: 500;
    line-height: 1.3;
}

/* ******************************
        lp-style.css
****************************** */
/*!
 * Reset Styles
 * Based on
 * http://meyerweb.com/eric/tools/css/reset/
 * v2.0 | 20110126
 * License: none (public domain)
 */
html, 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%;
    vertical-align: baseline
}

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
    display: block
}

ol, ul {
    padding-left: 16px;
}

blockquote, q {
    quotes: none
}

blockquote:before, blockquote:after, q:before, q:after {
    content: "";
    content: none
}

table {
    border-collapse: collapse;
    border-spacing: 0
}

button {
    padding: 0;
    border: 0;
    background: none
}

button::-moz-focus-inner, input::-moz-focus-inner {
    border: 0;
    padding: 0
}

a img {
    border: 0
}

@font-face {
    font-family: 'NotoSansCJKJPDemiLight';
    src: url("../font/NotoSansCJKJP-DemiLight.eot");
    src: url("../font/NotoSansCJKJP-DemiLight.eot?#iefix") format("embedded-opentype"), url("../font/NotoSansCJKJP-DemiLight.woff") format("woff"), url("../font/NotoSansCJKJP-DemiLight.ttf") format("truetype")
}

@font-face {
    font-family: "glyphs";
    src: url("/web/shared/font/glyphs.eot");
    font-weight: normal;
    font-style: normal
}

@font-face {
    font-family: "glyphs";
    src: url("/web/shared/font/glyphs.eot");
    src: url("/web/shared/font/glyphs.eot?#iefix") format("embedded-opentype"), url("/web/shared/font/glyphs.woff") format("woff"), url("/web/shared/font/glyphs.ttf") format("truetype"), url("/web/shared/font/glyphs.svg?#glyphs") format("svg");
    font-weight: normal;
    font-style: normal
}

.s-glyph {
    font-family: "glyphs";
    display: inline-block;
    vertical-align: middle;
    line-height: 1;
    font-weight: normal;
    font-style: normal;
    speak: none;
    text-decoration: inherit;
    text-transform: none;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale
}


.contents, .container, .container__inner, .s1-hdg-lv2__element, .s1-tbl--default th, .s1-tbl--stripe th, .s1-tbl--default td, .s1-tbl--stripe td, .s1-box, .s1-label, .s1-tbl--detail tr, .s1-tbl--detail .caution-list.is-type--number, .s1-tbl--detail .caution-list.is-type--number li {
    -webkit-box-sizing: border-box;
    box-sizing: border-box
}

/* .s1-lp-header__inner:after, */
.s1-lp-header-right:after, .s1-footer .contents-liner:after {
    content: "";
    display: block;
    font-size: 0;
    line-height: 0;
    clear: both
}

/*!
* Default Styles
*/
body {
    margin: 0;
    font-family: "Hiragino Kaku Gothic ProN", Meiryo, MS-PGothic, sans-serif;
    font-size: 62.5%;
    line-height: 1.4
}

@media screen and (min-width: 768px) {
    body {
        line-height: 1.6
    }
}

button, input, textarea {
    font-family: "Hiragino Kaku Gothic ProN", Meiryo, MS-PGothic, sans-serif;
    font-size: 62.5%;
    line-height: 1.4
}

@media screen and (min-width: 768px) {
    button, input, textarea {
        line-height: 1.6
    }
}

a {
    text-decoration: none
}

a:link, a:visited, a:hover, a:active {
    color: #0072BF;
}

a:hover {
    text-decoration: underline
}

b {
    font-weight: bold
}

sup {
    vertical-align: .5em
}

input.s-input-text, textarea.s-textarea {
    padding: 5px;
    background: #f0f0f0;
    border-top: 1px solid #9c9c9c;
    border-left: 1px solid #9c9c9c;
    border-right: 1px solid #f0f0f0;
    border-bottom: 1px solid #f0f0f0
}

::-webkit-input-placeholder {
    color: #999999
}

::-moz-placeholder {
    color: #999999
}

:-ms-input-placeholder {
    color: #999999
}

.placeholdersjs {
    color: #999999
}

.s-analysis-tools {
    overflow: hidden;
    height: 0
}

body, html {
    font-size: 62.5%
}

body {
    color: #333;
    background-color: #fff;
    font-family: "Hiragino Kaku Gothic ProN", Meiryo, MS-PGothic, sans-serif;
    min-width: auto
}

@media print {
    .hidden-pc {
        display: none
    }
}

.contents {
    width: 100%
}

.container {
    width: 100%;
    padding: 40px 0
}

@media screen and (min-width: 768px) {
    .container {
        padding: 60px 0
    }
}

.container__inner {
    width: 100%;
    padding: 0 20px
}

@media screen and (min-width: 768px) {
    .container__inner {
        max-width: 768px;
        margin: 0 auto
    }
}

@media screen and (min-width: 960px) {
    .container__inner {
        max-width: 960px
    }
}

.hdg_lv2 + .hdg_lv3, .hdg_lv3 + .hdg_lv4, .hdg_lv4 + .hdg_lv5 {
    margin-top: 0
}

p {
    font-size: 14px;
    font-size: 1.4rem;
    line-height: 1.5
}

@media screen and (max-width: 767px) {
    p {
        font-size: 14px;
        font-size: 1.4rem
    }
}

p + p {
    margin-top: 10px
}

p + ul {
    margin-top: 20px
}

p + h3 {
    margin-top: 20px
}

p.white {
    color: #fff
}

p a {
    text-decoration: underline
}

p a:link, p a:visited, p a:hover, p a:active {
    color: #0069bf
}

p a.cr-black {
    text-decoration: none
}

p a.cr-black:link, p a.cr-black:visited, p a.cr-black:hover, p a.cr-black:active {
    color: #333
}

p a.cr-black:hover {
    opacity: 0.7
}

p a:hover {
    text-decoration: none
}

.images {
    text-align: center;
    margin: 20px 0
}

.images img {
    max-width: 100%
}

.images:first-child {
    margin-top: 0
}

.hover-img:hover {
    opacity: 0.6
}

@media screen and (min-width: 960px) {
    .img-hover:hover {
        background: #fff;
        opacity: .7
    }
}

@media screen and (max-width: 767px) {
    img.img-pc {
        display: none
    }
}

@media screen and (min-width: 768px) {
    img.img-sp {
        display: none
    }
}

.hr-img-width {
    max-width: 100%
}

@media screen and (max-width: 767px) {
    .hi-res-img {
        max-width: 100%
    }
}

table {
    font-size: 14px;
    font-size: 1.4rem;
    width: 100%;
    border-top: 1px solid #ddd;
    border-left: 1px solid #ddd;
    background-color: #fff
}

table + table {
    margin-top: 20px
}

th, td {
    border-right: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
    padding: 5px
}

thead th {
    background-color: #FFE6F4;
    color: #000;
}

tbody th {
    background-color: #e9ebf7
}

.s1-header {
    box-shadow: 0px 3px 11px -5px rgba(0, 0, 0, 0.51);
    position: fixed;
    z-index: 9999;
    height: 56px;
    background-color: #fff;
    width: 100%;
    display: flex;
    align-items: center;
    top: 0;
}

.s1-header.border {
    box-shadow: none;
    border-bottom: 2px solid #FF008C;
}

@media screen and (min-width: 768px) {
    .s1-header {
        height: 82px
    }
}

.s1-lp-header {
    width: 100%;
    position: relative
}

.s1-lp-header__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 8px;
}

@media screen and (min-width: 768px) {
    .s1-lp-header__inner {
        max-width: 956px;
        padding: 12px 10px;
        margin: 0 auto;
    }
}

.s1-lp-header-logo {
    margin-top: 8px;
    display: inline-block
}

@media screen and (min-width: 768px) {
    .s1-lp-header-logo {
        margin-top: 4px;
        max-width: 232px
    }
}

.s1-lp-header-logo a {
    display: inline-block
}

.s1-lp-header-logo a:hover {
    text-decoration: none
}

.s1-lp-header-logo img {
    max-width: 100%
}

.s1-lp-header-right {
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    height: 56px;
    float: right
}

.s1-lp-header-right li {
    margin-left: 10px
}

@media screen and (min-width: 768px) {
    .s1-lp-header-right li {
        margin-left: 14px
    }
}

.s1-lp-header-ichiba a {
    font-size: 14px;
    font-size: 1.4rem;
    font-weight: bold;
    display: inline-block;
    padding: 4px;
    box-sizing: border-box
}

.s1-lp-header-ichiba a:link, .s1-lp-header-ichiba a:visited, .s1-lp-header-ichiba a:hover, .s1-lp-header-ichiba a:active {
    color: #333
}

.s1-lp-header-ichiba a:hover {
    text-decoration: none
}

@media screen and (min-width: 768px) {
    .s1-lp-header-ichiba a {
        font-size: 16px;
        font-size: 1.6rem
    }

    .s1-lp-header-ichiba a:hover {
        background-color: #f0f0f0
    }
}

.s1-lp-header-nav {
    margin-top: -12px
}

@media screen and (min-width: 768px) {
    .s1-lp-header-nav {
        margin-top: -10px
    }
}
.hdg-img-pc {
    height: 50px;
}

.hdg-img-sp {
    height: 32px;
}

@media screen and (max-width: 767px) {
    .hdg-img-pc {
        display: none
    }

    .hdg-img-sp {
        display: block;
        height: 40px;
    }
}

@media screen and (min-width: 768px) {
    .hdg-img-sp {
        display: none
    }

    .hdg-img-pc {
        display: block;
    }
}

.s1-lp-header-noscript-bar {
    background-color: #f99
}

.s1-lp-header-noscript-bar__inner {
    text-align: center;
    padding: 10px
}

.s1-header-nav-list {
    border-bottom: 1px solid #aaa
}

.s1-header-nav-list .s1-header-nav-list {
    border-bottom: none
}

@media screen and (min-width: 768px) {
    .s1-header-nav-list {
        border: none
    }
}

.s1-header-nav-list > li {
    font-size: 14px;
    font-size: 1.4rem;
    border-top: 1px solid #aaa
}

@media screen and (min-width: 768px) {
    .s1-header-nav-list > li {
        font-size: 22px;
        font-size: 2.2rem;
        border: none
    }
}

.s1-header-nav-list > li > a {
    display: block;
    font-weight: bold;
    text-decoration: none;
    padding: 10px 8px;
    line-height: 1.2
}

.s1-header-nav-list > li > a:link, .s1-header-nav-list > li > a:visited, .s1-header-nav-list > li > a:hover, .s1-header-nav-list > li > a:active {
    color: #000
}

.sp-nav .s1-lp-header-nav-list {
    float: left;
    margin-top: 5px
}

@media screen and (min-width: 768px) {
    .sp-nav .s1-header-nav-list {
        display: flex;
        align-items: center
    }
}

@media screen and (min-width: 768px) {
    .sp-nav .s1-header-nav-list > li {
        font-size: 16px;
        font-size: 1.6rem
    }
}

@media screen and (min-width: 768px) {
    .sp-nav .s1-header-nav-list > li > a {
        display: inline-block;
        padding: 5px 8px;
        text-align: center
    }
}

.sp-nav .s1-header-nav-list > li > a:hover {
    opacity: 0.6
}

.nav .s1-header-nav-list.active {
    left: 0;
    top: 0;
    width: 100%;
    height: 100%
}

@media screen and (min-width: 768px) {
    .contents.blur {
        filter: blur(2px)
    }
}

.s1-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9998;
    background-color: #fff;
    padding: 0;
}

.s1-footer .copyright {
    padding: 15px 10px;
    color: #686868;
    background-color: #EBEBEB;
    font-size: 12px !important;
    font-size: 1.2rem !important;
    box-sizing: border-box
}

.s1-footer .copyright p {
    font-size: 1.2rem !important;
    margin-top: 0;
}

.s1-footer .copyright .rakuten-ai-logo {
    margin-right: 5px;
    display: flex;
    color: #000;
}

.s1-footer .contents-liner {
    width: 100%;
    margin: 0 auto;
    padding: 0 5px;
    box-sizing: border-box;
    display: flex;
    flex-direction: row;
    justify-content: center;
}
.s1-footer .contents-liner p {
    display: flex;
    align-items: center;
    justify-content: center;
}

@media screen and (max-width: 767px) {
    .s1-footer .contents-liner {
        padding: 0 10px;
        flex-direction: column;
        align-items: center;
    }

    .s1-footer .copyright {
        padding: 10px 0;
    }

    .s1-footer .copyright p {
        text-align: center;
    }
}

@media screen and (min-width: 960px) {
    .s1-footer .contents-liner {
        max-width: 950px
    }
}

.section-hdg__element, .s1-hdg-lv1__element, .s1-hdg-lv2__element, .s1-hdg-lv3__element, .s1-hdg-lv4__element, .s1-sub-hdg {
    position: relative;
    width: 100%;
    font-weight: bold;
    line-height: 1.4
}

@media screen and (min-width: 768px) {
    .section-hdg__element, .s1-hdg-lv1__element, .s1-hdg-lv2__element, .s1-hdg-lv3__element, .s1-hdg-lv4__element, .s1-sub-hdg {
        line-height: 1.6
    }
}

ul {
    font-size: 14px;
    line-height: 1.4
}

@media screen and (min-width: 768px) {
    ul {
        font-size: 16px;
        line-height: 1.6
    }
}


ul {
    padding-left: 0
}

li, dt, dd {
    line-height: 1.4;
    color: #333
}

@media screen and (min-width: 768px) {
    li, dt, dd {
        line-height: 1.6
    }
}

.contents {
    width: 100%;
    background-color: #fff
}

.hdg_lv2 {
    font-size: 24px;
    font-size: 2.4rem;
    text-align: center;
    margin-bottom: 40px;
    border-bottom: 2px solid #000
}

.hdg_lv3 {
    font-size: 20px;
    font-size: 2rem;
    margin: 40px 0 10px
}

.chat-gpt-input-container .input-suggestion-container {
    display: none;
    width: 100%;
    background-color: #E5F3FF;
}

.chat-gpt-input-container .input-suggestion__block {
    max-width: 968px;
    margin: 0 auto;
    padding: 12px 16px;
}

.chat-gpt-input-container .input-suggestion {
    color: #0075DB;
    font-size: 14px;
    font-weight: bold;
    line-height: 1.5;
    display: inline-block;
    border-radius: 9999px;
    background-color: #fff;
    cursor: pointer;
    padding: 8px 16px;
}

.chat-gpt-input-container .input-suggestion:hover {
    color: #ff56b3;
}

@media screen and (max-width: 767px) {
    .chat-gpt-input-container .input-suggestion__block {
        width: calc(100% - 32px);
        padding: 10px 0;
    }

    .chat-gpt-input-container .input-suggestion {
        font-size: 14px;
        padding: 7px 10px;
    }
}

.bot-msg-content img {
    margin: 10px;
    display: block;
    margin-left: auto;
    margin-right: auto; 
}

.video-container {
    position: relative;
    overflow: hidden;
    padding-top: 56.25%; /* 16:9 Aspect Ratio */
}

.video-container iframe {
    /* width: 100% !important; */
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.chat-gpt-message-inner-card {
    background: transparent !important;
    padding: 0;
    margin: 0;
}

.product-container {
    position: relative;
}

.cards_scroller {
    overflow-x: scroll;
    overflow-y: hidden;
    display: flex;
    transition: width 0.5s ease;
    /* margin-left: 5px; */
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.cards_scroller::-webkit-scrollbar {
    display: none;  /* Hide scrollbar in WebKit browsers (Chrome, Safari) */
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.product {
    width: 260px;
    display: flex;
    flex-direction: column;
    background: #EBF7FE;
    min-width: 260px;
    max-width: 260px;
    margin-top: 10px;
    text-decoration: none !important;
    color: #000 !important;
    overflow: hidden;
    scroll-behavior: smooth;
    scroll-snap-align: center;
    word-wrap: break-word;
    padding-left: 0.75em;
    margin-right: 10px;
    border-radius: 8px;
    padding: 20px 16px;
}

.date-wrapper {
    width: 60px;
    min-width: 60px;
    max-width: 60px;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    height: 90px;
    padding: 10px 16px;
}

.date-wrapper p {
    margin-bottom: 6px !important;
}

.date-wrapper .date-label,
.date-wrapper .day-label {
    font-size: 16px;
    color: #0072BF;
    font-weight: 700;

}

.date-wrapper .day-label {
    font-weight: 400
}

.date-wrapper .date-availibility {
    
}

.product > * {
    flex: 1;
}

.product p {
    margin: 0;
    line-height: 18px;
    font-size: 12px;
    margin-bottom: 17px;
    color: #333;
}

.product-title {
    line-height: 22px;
    display: block;
    margin-bottom: 12px !important;
    font-weight: 700;
    font-size: 16px !important;
    display: flex;
    align-items: center;
}

.server-message .chat-gpt-message-inner .campaign img:not(.campaign-image) {
    width: 16px !important;
    height: 16px;
    margin: 0 0 0 5px !important;
}

.server-message .chat-gpt-message-inner .campaign .campaign-img-wrapper {
    margin: 0 0 10px 0 !important;
    background: #eee;
    height: 130px;
}

.server-message .chat-gpt-message-inner .campaign .campaign-image {
    max-width: 100%;
    margin: 0;
}

.campaign .campaign-description {
    font-size: 14px !important;
}

.shop-external-link {
    font-size: 12px;
    font-weight: 400;
    display: flex;
    align-items: center;
    color: #0072BF;
    margin-bottom: 9px;
    text-decoration: underline;
}

.server-message .chat-gpt-message-inner .shop-external-link img {
    width: 16px !important;
    height: 16px;
    margin: 0 0 0 5px;
}

.arrow-button-container {
    display: flex;
    justify-content: center;
    margin-top: 10px;
}

/* Style for the circular buttons */
.arrow-button {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: #fff; /* Button background color */
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    border: 1px solid #C5E9FE;
}

.arrow-button img {
    height: 16px;
}

/* Style for the arrow icons */
.arrow-icon {
    color: #FF008C;
    font-size: 24px; /* Adjust the icon size as needed */
}

/* Style for the left arrow button */
.arrow-button.left {
    margin-right: 10px; /* Adjust spacing between buttons */
}

.arrow-button.right {
    margin-right: 12px;
}

.scroll-buttons {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
}

.product-button {
    justify-content: center;
    height: 40px;
    min-height: 40px;
    margin-top: 0 !important;
    max-height: 40px;
    border-radius: 4px;
    border: 1px solid #0072BF80;
    color: #0072BF;
    box-shadow: none;
}

.arrow-button:disabled {
    background-color: #ebebe4;
    cursor: not-allowed;
}

.button-container {
    display: flex;
    flex-direction: column;
    margin-bottom: 10px;
    margin-top: 10px;
}

.button-container .response-menu-button {
    display: block;
    color: #fff;
    padding: 8px 16px;
    text-decoration: none;
    background-color: #0075DB;
    border-radius: 9999px;
    margin-bottom: 10px;
    width: 500px;
 }

 .horizontal-layout {
    display: flex;
    flex-direction: row;
    margin-bottom: 10px;
 }

 .vertical-layout {
    display: flex;
    flex-direction: column;
    margin-bottom: 10px;
    padding-bottom: 10px;
    user-select: none;
 }

 .form-group {
    display: flex;
    flex-direction: column;
    margin: 5px;
 }
 .form-group label { 
    margin-left: 7px;
    width: fit-content;
 }

 .form-group .form-label {
    font-size: 10px;
    font-weight: bold;
 }

 .form-group :is(input[type="text"], input[type="mail"], input[type="date"]) {
    padding: 10px;
    border: 1px solid #eee;
    margin-top: 5px;
    margin-bottom: 10px;
    margin-right: 5px;
    width: 500px;
    border-radius: 16px;
    font-size: 14px;
 }

 form .form-btn, .button-response {
    margin-top: 10px;
    cursor: pointer;
 }

 @media screen and (max-width: 767px) {
    form .form-btn, .button-response, a, p, .bot-msg-content {
        font-size: 14px !important;
        justify-content: center;
    }

    svg {
        width: 16px !important;
    }
 }

 form .form-btn-disabled, .form-btn-disabled {
    background-color: #ebebe4 !important;
    cursor: not-allowed;
    border-color: #e6e6f0 !important;
    color: #cacadb;
 }
 .form-btn-disabled {
    pointer-events: none;
    color: gray !important;
    text-decoration: none;
    cursor: default;
 }

 .chat-gpt-q-lst li a.disabled-link {
    pointer-events: none;
    color: #cacadb;
    text-decoration: none;
    border-color: #e6e6f0;
    background-color: #ebebe4;
  }
/* // changing the layout might revert later */

 .chat-gpt-profile-icon, .chat-gpt-user-icon {
    width: 48px;
    height: 48px;
 }

 .chat-gpt-user-icon {
    visibility: hidden;
 }

 .bot-icon, .user-icon {
    width: 48px;
    height: 48px;
 }

 .message, #default-server-message-1, #default-server-message-2 {
    margin-left: 8px;
}

/* .user-message {
    align-items: flex-end;
    justify-content: flex-end;
} */

.message .chat-gpt-message-inner {
    margin-left: 8px;
    margin-right: 0;
}
.chat-gpt-message {
    display: flex;
    flex-direction: column;
}
/* .chat-gpt-message a {
    text-decoration: underline;
} */

.server-message .chat-gpt-message {
    width: calc(100% - 48px);
    word-wrap: break-word;
}
.welcome {
    padding-bottom: 24px;
}
.welcome ul {
    font-size: 1.4rem;
}
.welcome p {
    line-height: 1.5;
}
.welcome .button-response {
    margin-top: 0;
}
.image-container.horizontal-layout {
    flex-wrap: wrap;
}

.image-container.horizontal-layout img {
  /* max-width: 300px; */
  width: 49%;
  object-fit: cover;
}

@media screen and (max-width: 767px) {
    .server-message .image-container.horizontal-layout img {
        width: 100% !important;
    }
}

.mixed-form {
    display: flex;
    flex-direction: column;
}

.mixed-form .form-btn {
    display: flex;
    width: 95%;
    align-self: center;
    text-align: center;
    justify-content: center;
}

.input-suggestion-container-show {
    display: block !important;
}

.btn-with-arrow {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.svg-container {
    width: 20px;
    height: 16px;
    margin-left: 10px;
}

@media screen and (max-width: 767px) {
    .server-message .chat-gpt-message-inner img {
        width: 100% !important;
    }
}

.feedback-modal,
.terms-and-condition-modal,
.information-provision-modal {
    display: flex;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    width: 100vw;
    height: 100vh;
    overflow: auto;
    background: rgba(102, 102, 102, 0.85);
    justify-content: center;
    align-items: center;
}

.terms-and-condition-modal {
    display: block;
 }

.toggle-modal,
.toggle-terms-modal,
.toggle-information-modal {
    display: none;
}

.language-info-text {
    font-size: 12px !important;
    color: #717171;
    margin-top: 4px;
    margin-bottom: 3px;
    display: flex;
}

.feedback-modal-content {
    background-color: #fefefe;
    margin: 5% auto;
    border: 1px solid #888;
    width: 95%;
    max-width: 600px;
    border-radius: 10px;
    position: relative;
}
#feedback-webview-modal .feedback-modal-content {
    height: calc(100% - 10%);
    max-width: 684px;
}

.feedback-modal-body {
    padding: 16px 24px;
}

.feedback-modal-footer {
    padding: 0 24px 24px;
}

.feedback-modal-header {
    border-bottom: 1px solid #00000014;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 17.5px 24px;
}

.feedback-modal-body-content-option {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
    height: 44px;
    min-height: 44px;
}

/* .feedback-modal-body-content-option label {
    display: flex;
    align-items: center;
    font-size: 14px;
    margin-left: 4px;
} */

.feedback-modal-body-content-option span {
    color: #DF0101;
    font-size: 12px;
    margin-left: 5px;
}

.feedback-modal-body-content-option input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin: 0;
}

#feedbackText {
    font-size: 14px;
    border-radius: 8px;
    padding: 12px;
}

#feedbackText:focus,
#feedbackText:focus-visible {
    border: 2px solid #0097e2;
    outline: 0;
}

.close-feedback-modal {
    position: absolute;
    top: -11px;
    right: -10px;
    background-color: white;
    color: black;
    padding: 0;
    cursor: pointer;
    border-radius: 50%;
    line-height: 0;
    box-shadow: 0px 1.25px 6px 0px #00000040;
}

.close-feedback-modal img {
    width: 28px;
    height: 28px;
}

.feedback-modal-content h2 {
    padding: 0;
    font-weight: 600;
    font-size: 16px;
    line-height: 20.8px;
}

@media screen and (max-width: 767px) {
    .feedback-modal-content h2 {
        font-size: 14px;
    }

    .price-simulation-modal-primary-heading,
    .price-simulation-data-modal-primary-heading {
        font-size: 16px;
    }
}

.feedback-modal-submit {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #ff008c;
    color: #fff;
    width: 100%;
    padding: 15px;
    font-size: 14px;
    cursor: pointer;
    border-radius: 8px;
}

.feedback-modal-submit-disabled {
    background: #E0E0E0;
    color: #8F8F8F;
    pointer-events: none;
    cursor: not-allowed;
    box-shadow: none;
}

.terms-and-condition-modal-content,
.information-provision-modal-content {
    width: 95%;
}

.terms-and-condition-modal-header,
.information-provision-modal-header {
    border-bottom: 0;
    padding: 27px 13px 0;
}

@media screen and (max-width: 767px) {
    .terms-and-condition-modal-header,
    .information-provision-modal-header {
        padding: 5px 13px 0;
    }
}

.terms-and-condition-modal-body,
.information-provision-modal-body,
.email-modal-body,
.price-simulation-modal-body{
    padding: 14px 13px;
}

.terms-and-condition-modal-body,
.information-provision-modal-body {
    padding-top: 0;
}

.email-modal-content {
    max-width: 330px;
}

.email-modal-header {
    border: 0;
    height: 0;
    padding: 0;
}

.email-modal-body,
.price-simulation-modal-body {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}

.email-modal-img-wrapper {
    width: 177px;
    height: 131px;
    margin-top: 40px;
    margin-bottom: 22px;
}

.email-modal-img {
    max-width: 100%;
}

.email-modal-heading {
    font-size: 16px;
    font-weight: 600;
    line-height: 20.8px;
    margin-bottom: 15px;
    text-align: center;
}

.email-modal-content {
    font-size: 14px;
    line-height: 18.2px;
    margin-bottom: 30px;
    text-align: center;
}

.confirmation-email-input {
    width: 280px;
    background-color: #F7F7F7;
    border: 1px solid #8F8F8F;
    border-radius: 10px;
    padding: 12px;
    margin-bottom: 20px;
    height: 50px;
    font-size: 14px;
}

.confirmation-email-button {
    background: #FF008C;
    color: #fff;
    border-radius: 8px;
    padding: 18px;
    text-align: center;
    width: 280px;
    font-size: 14px;
    font-weight: 600;
    line-height: 18.2px;
    height: 48px;
    cursor: pointer;
}

.confirmation-email-button:disabled {
    background: #E0E0E0;
    color: #8F8F8F;
    pointer-events: none;
    cursor: not-allowed;
    box-shadow: none;
}

#successMessage {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 13px;
    text-align: left;
    background: #333333;
    color: white;
    font-size: 14px;
    font-weight: 600;
    display: none;
}

.success-message-container {
    display: flex;
    align-items: center;
}

.success-message-container img {
    margin-right: 10px;
}

.rakuten-mobile-price-simulation-graph-container {
    border-radius: 0 0 8px 8px;
    padding: 12px 0;
    background: #fff;
    margin-bottom: 10px;
}

.rakuten-mobile-price-simulation-graph-header {
    font-size: 20px;
    background-color: #ff008c;
    width: 100%;
    border-radius: 8px 8px 0 0;
    color: #fff;
    text-align: center;
}

.rakuten-mobile-price-simulation-graph {
    display: flex;
    border: 0;
    border-left: 2px solid #CCCCD2;
    padding: 10px 0;
    flex-direction: column;
}

.price-simulation-heading {
    font-size: 16px;
    font-weight: 700;
    line-height: 21px;
    margin-bottom: 7px;
}

.price-simulation-heading span {
    color: #FF008C;
}

/* Tabbed Price Simulation Styles */
.price-simulation-tabs {
    margin-bottom: 17px;
}

.tab-buttons-container {
    display: flex;
    margin-bottom: 8px;
    gap: 12px;
    flex-wrap: wrap;
}

.price-simulation-tab-button {
    flex: none;
    border: none;
    padding: 6px 20px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    background: #F7F7F7;
    color: #626262;
    margin: 0;
    outline: none;
    border-radius: 4px;
    white-space: nowrap;
    border: 1px solid #E0E0E0;
    position: relative;
    min-width: 153px;
}

.price-simulation-tab-button span {
    display: block;
    font-size: 10px;
    font-weight: 500;
    line-height: 1;
}

.price-simulation-tab-button.active {
    background-color: #0072BF;
    color: white;
}

.price-simulation-tab-button:hover:not(.active) {
    background-color: #e8e8e8;
}

/* Mobile responsive styles for tabs */
@media screen and (max-width: 480px) {
    .tab-buttons-container {
        gap: 8px;
        padding: 0;
    }
    
    .price-simulation-tab-button {
        padding: 6px 12px;
        flex-shrink: 1;
        white-space: normal;
        text-align: center;
        max-width: calc(50% - 4px);
    }
}

@media screen and (max-width: 360px) {
    .price-simulation-tab-button {
        padding: 5px 8px;
        font-size: 12px;
        max-width: calc(50% - 3px);
    }
}

.price-simulation-disclaimer {
    margin-top: 19px;
    font-size: 10px;
    line-height: 150%;
    color: #333;
}

.other-carrier-container,
.rakuten-mobile-container {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.other-carrier-container {
    align-items: flex-start;
}

.other-carrier-price-graph, .rakuten-mobile-price-graph {
    height: 40px;
    margin-right: 5px;
}

.other-carrier-price-graph {
    background-color: #e0e0e0;
    margin-right: 10px;
    margin-bottom: 25px;
}

.rakuten-mobile-price-graph  {
    background-color: #ff008c;
    transition: width 0.5s;
}

.other-carrier-name-with-price,
.rakuten-mobile-name-with-price {
    flex-direction: column;
    display: flex;
}

.other-carrier-name,
.rakuten-mobile-name {
    font-size: 12px;
    font-weight: 700;
    line-height: 18px;
    color: #333;
}

.rakuten-mobile-name span{
    color: #FF008C;
}

.other-carrier-price,
.rakuten-mobile-price {
    font-size: 16px;
    font-weight: 700;
    line-height: 24px;
}

.rakuten-family-discount-label {
    color: #ff008c;
    font-weight: 700;
}

.family-plan-container {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    border-radius: 4px;
    margin-top: 8px;
    padding: 2px 4px;
    background-color: #ffe6f4;
    font-size: 12px;
    color: #333;
    font-weight: 700;
    width: fit-content;
    align-items: center;
}

.family-plan-container-price {
    color: #ff008c;
    font-size: 20px;
    margin-left: 3px;
}

.rakuten-mobile-important-information,
.rakuten-mobile-bandwidth-important-information,
.read-and-agree,
.information-provision-important {
    border: 0.5px solid #717171
}

@media screen and (max-width: 767px){
    .rakuten-mobile-important-information,
    .rakuten-mobile-bandwidth-important-information,
    .read-and-agree,
    .information-provision-important {
        border: 1px solid #717171;
    }
}

.rakuten-mobile-important-information {
    border-bottom: 0;
}

.read-and-agree {
    border-top : 0;
    padding: 10px;
}

.terms-and-condition-read-and-agree {
    display: flex;
    font-size: 14px;
}

.privacy-policy-container {
    margin-left: 5px;
}

.read-and-agree label {
    display: flex;
    margin-top: 8px;
}

.read-and-agree label input {
    opacity: 0;
    width: 0px;
    height: 0px;
    display: block;
    margin: 0;
}

.read-and-agree label input + span {
    line-height: 18px;
    display: inline-block;
    width: 24px;
    height: 24px;
    margin-right: -24px;
    border-radius: 4px;
    vertical-align: middle;
    text-align: center;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    position: relative;
 }

 .read-and-agree label span::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 24px;
    height: 24px;
    background: #ffffff; /* Background color */
    border-radius: 4px;
    border: 1px solid rgb(102, 102, 102);
  }
  
  /* Create the check mark */
  .read-and-agree label span::after {
    content: "";
    position: absolute;
    left: 8px;
    top: 3px;
    width: 6px;
    height: 11.5px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
  }

 .read-and-agree label input:checked + span::before {
    background-color: rgb(255, 0, 140);
    border: 1px solid rgb(255, 0, 140);
 }

 .read-and-agree label input:checked + span::after {
    display: block;
  }

 .read-and-agree label div {
    display: inline-block;
    vertical-align: top;
    padding-left: 32px;
    cursor: pointer;
    font-size: 14px;
    line-height: 19.5px;
 }

 .read-and-agree label #data-privacy-agree-checkbox-text {
    padding-left: 36px;
 }

 #terms-cancel-button,
 #terms-agree-button,
 #information-provision-cancel-button,
 #information-provision-agree-button,
 #date-time-calendar-cancel-button,
 #date-time-calendar-agree-button,
 #price-simulation-back-button,
 #price-simulation-data-back-button {
    box-shadow: 0px 4px 0px 0px #0000001A;
    padding: 12px 24px;
    width: auto;
    font-size: 16px;
    border-radius: 50px
 }

 #terms-cancel-button,
 #information-provision-cancel-button,
 #date-time-calendar-cancel-button,
 #price-simulation-back-button,
 #price-simulation-data-back-button {
    border: 1px solid #666666;
    color: #4D4D4D;
    background-color: #fff;
 }

 #terms-agree-button,
 #information-provision-agree-button,
 #date-time-calendar-agree-button,
 #price-simulation-agree-button,
 #price-simulation-data-agree-button {
    color: #fff;
 }

 #terms-agree-button:disabled,
 #date-time-calendar-agree-button.disabled,
 #price-simulation-line-selection-agree-button.disabled {
    background: #E0E0E0;
    color: #8F8F8F;
    pointer-events: none;
    cursor: not-allowed;
    box-shadow: none;
 }

 .terms-and-condition-modal .feedback-modal-footer,
 .information-provision-modal .feedback-modal-footer,
 .date-time-calendar-modal .feedback-modal-footer,
 .price-simulation-modal .feedback-modal-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 13px 18px;
 }

 .price-simulation-modal .slider-buttons,
 .price-simulation-data-modal .slider-buttons{
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 40px;
 }

 .price-simulation-modal .feedback-modal-footer  {
    padding: 13px 18px;
 }

 .date-time-calendar-modal-header,
 .date-time-calendar-modal-body {
    padding: 10px !important;
 }

 .date-time-calendar-modal-footer {
    padding: 0 10px 10px !important;
 }

 .date-time-calendar-modal-header,
 .date-time-calendar-modal-body {
    padding: 10px !important;
 }

 .date-time-calendar-modal-footer {
    padding: 0 10px 10px !important;
 }

 .special-offer-permission-text {
    font-size: 12px;
    line-height: 15.6px;
    margin-top: 7px;
 }

 .language-switcher {
    margin-right: 20px;
 }

 .language-switcher button {
    font-size: 14px;
    color: #333;
    cursor: pointer;
 }

 .language-switcher button.active {
    color: #FF008C;
 }

 .language-switcher .jp-btn {
    margin-right: 10px;
 }

 .open-email-form {
    cursor: pointer;
    width: 24px;
    height: 24px;
 }

 .settings {
    display: flex;
    align-items: center;
 }

 .open-email-form img {
    max-width: 100%;
 }

 .terms-and-condition-message {
    font-size: 12px;
    line-height: 15.6px;
    color: #717171;
    padding: 11px 19px 15px 13px;
 }

 .terms-and-condition-message a {
    font-size: 12px !important;
 }

 .hidden-checkbox {
    display: none;
}

.custom-checkbox {
    position: relative;
    width: 20px;
    height: 20px;
    margin-right: 4px;
    min-width: 20px;
}

.hidden-checkbox:checked + .custom-checkbox::before {
    background: #0097E2;
    border: 1px solid #0097E2;
}

.custom-checkbox::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 20px;
    height: 20px;
    border: 1px solid #8F8F8F;
    background: #ffffff;
    border-radius: 4px;
}

.hidden-checkbox:checked + .custom-checkbox::after {
    display: block;
}

.custom-checkbox::after {
    content: "";
    position: absolute;
    left: 7px;
    top: 2px;
    width: 6px;
    height: 11.5px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.feedback-modal-body-content-option label:not(.custom-checkbox) {
    display: flex;
    align-items: center;
    font-size: 14px;
    margin-left: 8px;
    line-height: 1.3;
}

.language-dropdown {
    position: relative;
    display: block;
    margin-top: 5px;
}

.language-dropdown img {
    margin-left: 15px;
    cursor: pointer;
}
  
.dropdown-options {
    display: none;
    position: absolute;
    top: 30px;
    right: 1px;
    background-color: #f9f9f9;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 2;
}

.dropdown-options.show {
    display: block;
}

.dropdown-options li {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    cursor: pointer;
}

.dropdown-options li.active,
.dropdown-options li:hover  {
    background: #FF008C;
    color: #fff;
}

.dropdown::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    margin-left: -10px;
    border-width: 10px;
    border-style: solid;
    border-color: transparent transparent #f9f9f9 transparent;
}

.server-message .chat-gpt-message-inner .external-link-icon {
    width: 14px !important;
    height: 12px !important;
    margin: 0 !important;
}

.external-link-btn {
    text-decoration: none;
    color: #ff008c;
    justify-content: center;
}

.external-link-btn:link, .external-link-btn:visited, .external-link-btn:hover, .external-link-btn:active {
    color: #ff008c;
    text-decoration: none;
}

.external-link-btn span {
    margin-right: 5px;
}

.chat-gpt-error-container p {
    font-weight: normal;
}

.img-wrapper {
    display: flex;
    justify-content: center;
    margin: 24px 0;
}

#notification-area {
    position: fixed;
    bottom: 0;
    right: 0;
    left: 0;
    z-index: 99999;
}

.connection-issue-wrapper {
  padding: 10px;
  background-color: #BF0000;
  color: #fff;
  text-align: center;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.notification-success {
    background-color: #23af31 !important;
}

.connection-issue-wrapper img {
    margin-right: 10px;
}

.feedback-btn {
    color: #0078B5;
    border: 1px solid #0078B5;
    padding: 3px 5px;
    font-weight: 700;
    margin-right: 11px;
    white-space: nowrap;
    font-size: 14px;
    display: none;
}

.price-image-container img {
    margin: 0;
}

.date-buttons {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    font-size: 17px;
}

.times-container {
    display: flex;
    flex-direction: column;
    max-width: 300px;
    max-height: 400px;
    overflow-y: scroll;
    margin: 10px auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

@media screen and (max-width: 767px) {
    .times-container {
        max-height: 300px;
    }
    .connection-issue-wrapper {
        font-size: 12px;
    }
}

.times-container::-webkit-scrollbar {
    display: none;  /* Hide scrollbar in WebKit browsers (Chrome, Safari) */
}

.times-container button {
    width: 60px;
    height: 60px;
    background: #EBF7FE;
    border-radius: 8px;
    color: #0072BF;
    font-weight: 700;
    font-size: 15px;
    margin-right: 10px;
    margin-bottom: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.time-button.active,
.line.active {
    border: 3px solid #0072BF;
}


.date-wrapper .circle,
.times-container .circle {
    width: 16px;
    height: 16px;
    background-image: url('../images/circle.svg'); /* Change the path to your circle image */
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    /* overwrite styles from voice-sdk.css for circle icon in date-wrapper */
    position: relative;
    top: 0;
    left: 0;
    transform: none;
}

.triangle {
    width: 16px;
    height: 16px;
    background-image: url('../images/trianlge.svg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.cross {
    width: 16px;
    height: 16px;
    background-image: url('../images/not-available.svg');
    background-repeat: no-repeat;
    background-position: center; /* Center the image within the element */
}

.time-button.disabled {
    background: #F5F5F5;
    color: #717171;
    cursor: not-allowed;
    pointer-events: none;
}

.time-button.disabled span {
    width: 16px;
    height: 16px;
    display: flex;
    align-items: center;
}

.button-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 10px;
    flex-wrap: wrap;
}

.time-label {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 5px;
}

.date-wrapper.disabled {
    background: #F5F5F5;
    color: #717171;
    cursor: not-allowed;
    pointer-events: none;
}

.date-wrapper.disabled .date-label,
.date-wrapper.disabled .day-label,
.date-wrapper.disabled .date-availibility {
    color: #717171;
}

.date-wrapper.disabled .date-label,
.date-wrapper.disabled .date-availibility {
    font-weight: 700;
}

.date-time-calendar-modal .feedback-modal-content {
    max-width: 400px;
}
.audio-visualizer {
    width: 100%;
    height: 40px;
}

.toast-notification {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px;
    border-radius: 5px;
    margin-bottom: 10px;
    font-size: 16px;
    width: calc(100% - 20px);
    opacity: 1;
    transition: opacity 1s ease-out;
}

.toast-notification.fade-out {
    opacity: 0;
}

.toast-notification.error {
    background-color: #FFF0F0;
    color: #DF0101;
}
  
.toast-notification.warning {
    background-color: #ffcc00;
    color: #333;
}

.toast-notification.success {
    background-color: #4caf50;
    color: #fff;
}

.toast-message {
    margin-left: 24px;
    flex-grow: 1;
}

.close-toast-button {
    cursor: pointer;
    color: inherit;
    line-height: normal;
}

/* Default styling for the file upload button */
.upload-button {
    background-color: #fff;
    color: #ff008c;
    padding: 6px 23px;
    font-size: 14px;
    border-radius: 8px;
    cursor: pointer;
    display: inline-block;
    margin-top: 10px;
    transition: background-color 0.3s ease;
    text-align: center;
    border-radius: 20px;
    border: 1px solid #ff008c;
    box-shadow: 0px 4px 0px 0px #0000001A;
    font-weight: 700;
}

/* Hiding the default file input */
.file-input {
    display: none;
}

/* File name display */
.file-name {
    margin-top: 10px;
    font-size: 14px;
    color: #555;
    word-wrap: break-word;
}
.disabled-link {
    pointer-events: none;
    color: #cacadb;
    text-decoration: none;
    border-color: #e6e6f0;
    background-color: #ebebe4;
}

.event {
    margin: 2rem 1rem;
}
.event .agent-joined {
    border-left: 3px solid #FF008C;
    padding: 0 1rem;
}
.event .agent-left {
    border-left: 3px solid #999195;
    padding: 0 1rem;
}
.event .agent-text {
    font-size: 14px;
    font-weight: 600;
    color: #767474;
    font-style: italic;
}
.event .system {
    border-left: 3px solid #FF008C;
    padding: 0 1rem;
}
.event .system-event-text {
    font-size: 14px;
    font-weight: 500;
    color: #a5a5a5;
    font-style: italic;
}
#feedback-webview-modal .feedback-modal-header {
    height: 4rem;
}
#feedback-webview-modal iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.confirm-modal {
    display: none; /* Hide by default */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(102, 102, 102, 0.85);
    justify-content: center;
    align-items: center;
    z-index: 9999;
}
.confirm-modal .modal-content {
    background: white;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    font-size: 18px;
    width: fit-content;
    max-width: 400px;
    min-width: 280px;
}

@media screen and (max-width: 480px) {
    .confirm-modal .modal-content {
        width: 90%;
        max-width: none;
        min-width: auto;
    }
}

.confirm-modal .modal-message {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    padding: 0 1rem 1rem 1rem;
}
.confirm-modal .modal-actions {
    display: flex;
    align-items: center;
    justify-content: center;
}

@media screen and (max-width: 480px) {
    .confirm-modal .modal-actions {
        width: 100%;
    }
    
    .confirm-modal .modal-actions .modal-btn {
        width: 100%;
        padding: 8px 19px;
    }
    .confirm-modal .modal-content {
        max-width: 50%;
    }
}

.confirm-modal .modal-actions .confirm {
    background-color: #FF008C;
    color: #fff;
}
.confirm-modal .modal-info {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: baseline;
}
.confirm-modal .modal-title {
    font-weight: 550;
    text-align: left;
}
.confirm-modal .modal-text {
    font-size: 15px;
    font-weight: 400;
    line-height: 24px;
    text-align: left;
}

.confirm-modal .modal-btn {
    margin: 10px 5px;
    padding: 8px 21px;
    cursor: pointer;
    font-size: 15px;
    border-radius: 7px;
    font-weight: 600;
    border: 1px solid var(--primary-color);
    background-color: #fff;
    border-radius: 20px;
    box-shadow: 0px 4px 5px 0px #0000001A;
    color: var(--primary-color);
}
.confirm-modal-content {
    max-width: 50%;
}
.chat-status {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px 0;
}
.chat-status .chat-status-line {
    flex-grow: 1;
    height: 2px;
    background-color: #ccc;
}
.chat-status .chat-status-text {
    padding: 0 2rem;
    color:  #656565;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.chat-status .chat-status-text-title {
    font-size: 13px;
    font-weight: bold;
}
.chat-status .chat-status-text-content {
    font-size: 11px;
    display: flex;
    align-items: center;
}

.chat-status .chat-status-text img {
    width: 13px;
    margin: 0 1px;
}

/* Chat Info tme and name */
.chat-info-time {
    font-size: 10px;
    color: #a0a0a0;
    margin: 6px 0;
}
.server-message .chat-info-time {
    float: right;
    margin: 12px 0 6px 0;
}
.chat-info {
    display: flex;
    justify-content: space-between;
    width: 100%;
    user-select: none;
}
.chat-info-name {
    font-size: 12px;
    font-weight: 700;
    color: #a0a0a0;
}
.user-message .chat-info-name {
    display: flex;
    justify-content: end;
}


.server-message span > ol, .server-message span > ul {
    list-style: inherit;
    padding: revert;
    font-size: inherit;
}
.server-message span > ol {
    list-style: decimal;
}

.toggle-container {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
}
.toggle-button {
    display: flex;
    align-items: center;
    background: #FFFFFF;
    border-radius: 25px;
    position: relative;
    width: 29rem;
    cursor: pointer;
    font-size: 12px;
    font-weight: bold;
    color: #990054;
    text-align: center;
    z-index: 0;
    border: 0.5px solid #a2a2a2;
    box-shadow: 0px 4px 5px 0px #0000001A;
    border-radius: 25px;
    /* Swipe enhancements */
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    touch-action: pan-y;
    -webkit-touch-callout: none;
}
.toggle-button .toggle-domain-text {
    flex: 1;
    padding: 7px 10px;
    z-index: 2;
}
.toggle-button input {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
    pointer-events: none;
}
.toggle-slider {
    position: absolute;
    top: 1.1px;
    left: 2px;
    width: 49.4%;
    height: calc(100% - 4px);
    background: #FFCCE8;
    border-radius: 25px;
    transition: transform 0.3s;
    margin-top: 1px;
    min-height: calc(100% - 4px);
}
.toggle-button input:checked + .toggle-slider {
    transform: translateX(100%);
}
.toggle-button .toggle-domain-text {
    cursor: pointer;
    color: #606060;
    font-weight: 300;
    font-size: 12px;
    white-space: nowrap;
    overflow: hidden;
    display: inline-block;


}
.toggle-button .active-domain {
    color: #990054;
}
.toggle-button .active-domain {
    cursor: default;
}


/* Price Simulation Modal */
.price-simulation-modal .feedback-modal-content {
    max-width: 400px;
}
#sliderValue {
    text-align: center;
    margin-bottom: 20px;
    font-size: 18px;
}

#sliderContainer,
#monthlyChargeSliderContainer {
    position: relative;
    width: 99%;
    height: 60px;
    margin: 10px auto;
    border-radius: 16px;
}

.slider-track {
    position: absolute;
    top: 40px;
    left: 0;
    right: 0;
    height: 10px;
    background: #FFF2F9;
    border-radius: 2px;
}

.slider-tick {
    position: absolute;
    top: 40px;
    width: 2px;
    height: 10px;
    background: white;
    z-index: 2;
}

/* Pink tick style */
.slider-tick.pink {
    background: #FF008C;
    height: 10px;
    top: 40px;
}

.slider-thumb,
.monthly-charge-slider-thumb {
    position: absolute;
    top: 35px;
    width: 20px;
    height: 20px;
    background: #FF008C;
    border-radius: 50%;
    cursor: pointer;
    transform: translateX(-50%);
    z-index: 3;
    border: 2px solid #fff;
}

#inputBox,
#monthlyChargeInputBox {
  width: 80px; 
  height: 40px; /* Adjusted height */
  text-align: center;
  margin: 10px;
  font-size: 16px;
  border: 1px solid #666; /* Border color matching the slider thumb */
  border-radius: 5px; /* Rounded corners */
  background-color: #fff; /* Light background */
  color: #333; /* Text color */
  outline: none; /* Remove outline on focus */
}
#inputBox:focus,
#monthlyChargeInputBox:focus {
  border-color: #0056b3; /* Darker border on focus */
}

.tick-label {
  position: absolute;
  top: 50px; /* Position below the tick */
  font-size: 12px;
  color: #333;
  text-align: center;
  transform: translateX(-50%);
}

.start-label,
.end-label {
    font-size: 14px;
    color: #686868;
}

.end-label {
  position: absolute;
}

.start-label {
  left: 0; /* Position at the start */
}
.end-label {
  right: 0; /* Position at the end */
}

.price-simulation-modal,
.price-simulation-data-modal {
    width: auto;
    height: auto;
}

.price-simulation-modal .price-simulation-modal-header,
.price-simulation-data-modal .price-simulation-data-modal-header {
    padding: 0;
    border-bottom: none;
    margin: 10px;
}

.price-simulation-modal-primary-heading,
.price-simulation-data-modal-primary-heading {
    margin-bottom: 8px;
    text-align: center;
}

.price-simulation-modal-secondary-heading,
.price-simulation-data-modal-secondary-heading {
    font-size: 11px;
    text-align: center;
}

.price-simulation-data-modal-secondary-heading {
    color: #BF0000;
}

#price-simulation-cancel-button,
#price-simulation-data-cancel-button,
.btn-family-selection {
    border: 1px solid #FF008C;
    color: #FF008C;
    background-color: #fff;
    margin-right: 14px;
    cursor: pointer;
 }

 .price-simulation-input-container,
 .monthly-charge-input-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.price-simulation-input-container span,
.monthly-charge-input-container span {
    font-size: 14px;
}

.price-simulation-data-selection-container {
    width: 100%;
}

.price-simulation-mobile-carrier-selection-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* Two columns */
    gap: 1rem;
    padding-top: 100px;
}

.carrier-card {
    width: 170px;
    min-height: 50px;
    padding: 5px;
    border-radius: 8px;
    text-align: center;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    border: 1px solid #CECED2;
    line-height: 20px;
    flex-direction: column;
}

.price-simulation-modal .slider-buttons,
.price-simulation-data-modal .slider-buttons {
    padding: 15px 5px;
}

.hide {
    display: none !important;
}

.price-simulation-family-plan-option-selection-container {
    display: flex;
    flex-direction: column;
    padding-top: 27px; 
}

.btn-family-selection {
    width: 285px;
    padding: 13px 0;
    text-align: center;
    margin-bottom: 10px;
    border-radius: 8px;
    font-size: 16px;
}

/* Bottom indicator triangle for active price simulation tab buttons only */
.price-simulation-tab-button.active::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 15px solid #0072BF;
}

.price-simulation-modal-body {
  max-height: 400px;
  overflow-y: auto;
  overflow-x: hidden;
  box-sizing: border-box; 
  -webkit-overflow-scrolling: touch;
}
@media screen and (max-width: 320px) and (max-height: 568px) {
    .price-simulation-modal-body {
        max-height: 350px;
    }

    .price-simulation-mobile-carrier-selection-container {
        padding-top: 150px;
    }
}
.feedback-container {
    display: flex;
    gap: 1rem;
    padding: 1rem 1rem 0 1rem;
}
.feedback-container .feedback-button {
    background: transparent;
    cursor: pointer;
}
.feedback-container .feedback-button img {
    width: 50px;
}
.feedback-container .feedback-button img:hover {
    transform: scale(1.1);
}
.feedback-container .feedback-button-disabled {
    cursor: not-allowed;
    opacity: 0.5;
}
.feedback-container .feedback-button-disabled img:hover {
    transform: none;
}
.loading-history {
    width: 100%;
    margin: 0 auto;
    text-align: center;
}
.loading-history #history-loder-btn {
    display: none;
}
.loading-history img {
    filter: invert(15%) sepia(100%) saturate(5000%) hue-rotate(315deg);
}
.loading-history p {
    color: #ff4040;
}
.loading-history span {
    font-size: 12px;
    font-weight: 500;
    color: #7a7a7a;
    margin-top: 10px;
}
.header-menu {
    display: flex;
    gap: 3rem;
}
.user-info {
    font-size: 14px;
    font-weight: 500;
    color: #7a7a7a;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}
.user-info a {
    font-size: 14px;
    font-weight: 500;
    color: #333;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    max-width: 100px;
    cursor: pointer;
    color: #4099C7;
}
.user-info-text {
    display: flex;
    justify-content: center;
    align-items: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 200px;
}

.user-info-text a {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 160px;
}
.user-info-text span {
    margin-left: 2px;
}

@media (max-width: 767px) {
    .user-info-text {
        justify-content: flex-start;
    }
    .user-info-text a {
        max-width: 60px;
    }
}
#hamburger-icon {
    cursor: pointer;
}
.drawer-menu {
    position: fixed;
    top: 0;
    right: 0;
    height: 100%;
    width: 22vw;
    max-width: 22vw;
    min-width: 180px;
    background: #fff;
    box-shadow: -2px 0 8px rgba(0,0,0,0.15);
    z-index: 2000;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
  }
  .drawer-menu.open {
    transform: translateX(0);
  }
  .drawer-content {
    padding: 4px 16px 16px 16px;
    height: 100%;
    display: flex;
    flex-direction: column;
  }
  .drawer-close {
    font-size: 2rem;
    cursor: pointer;
    margin: 10px 10px 0 0;
    align-self: flex-end;
    z-index: 2100;
    background: transparent;
    border: none;
    transition: left 0.3s, right 0.3s;
    position: absolute;
    right: calc(22vw + 10px);
    display: flex;
    flex-direction: column;
    display: none;
    top: 0;
}

@media (max-width: 767px) {
    .drawer-menu {
        width: 84vw;
        min-width: 120px;
        max-width: 90vw;
    }
    .drawer-close {
        right: calc(84vw + 10px);
    }
}
  .drawer-close.active {
    display: flex;
  }
  .drawer-close span {
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    position: relative;
    left: 2px;
  }
  .drawer-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .drawer-menu ul li {
    padding: 18px 0;
    border-bottom: 1px solid #E0E0E0;
    cursor: pointer;
  }
  .drawer-menu ul li a {
    color: #333;
    text-decoration: none;
    font-size: 1.1rem;
    transition: color 0.2s;
  }
  .drawer-menu ul li a:hover {
    color: var(--primary-color, #ff008c);
  }
  .drawer-menu .menu-item {
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .drawer-menu .menu-item-icon img {
    width: 20px;
    height: 20px;
    color: var(--primary-color, #ff008c);
  }
  .drawer-menu .menu-item-icon img.menu-right-icon {
    width: 16px;
    height: 16px;
  }
  .drawer-menu .menu-item-text {
    display: flex;
    flex-direction: column;
  }
  .drawer-menu .menu-item-content .menu-title {
    font-size: 1.6rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.6rem;
  }
  .drawer-menu .menu-item-content .menu-item-inner {
    display: flex;
    align-items: center;
    gap: 6px;
  }
  .drawer-menu .menu-item-content .menu-content {
    font-size: 1.2rem;
    color: #676767;
  }
  .drawer-menu .menu-item-parent > .menu-item-content {
    display: flex;
    flex-direction: column;
  }
  
  .drawer-overlay {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    width: 100vw; height: 100vh;
    background: #666;
    z-index: 1999;
    transition: opacity 0.3s;
    opacity: 0;
    pointer-events: none;
  }
  .drawer-overlay.active {
    display: block;
    opacity: .85;
    pointer-events: all;
  }
  .drawer-menu {
    /* ...existing styles... */
    z-index: 2000;
  }
  @media (max-width: 767px) {
    .drawer-menu {
      width: 84vw;
      min-width: 120px;
      max-width: 90vw;
    }
    .drawer-close {
        left: 0px;
        right: auto;
        margin: 16px 0 0 10px;
        align-self: flex-start;
    }
  }
  
  .drawer-main-menu .has-submenu {
    position: relative;
  }
  .drawer-main-menu .submenu-toggle {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .drawer-main-menu .submenu-arrow {
    font-size: 1rem;
    margin-left: 8px;
    transition: transform 0.2s;
  }
  .drawer-header {
    height: 50px;
    width: 100%;
    background: #fff;
    border-bottom: 1px solid #E0E0E0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
  }
  .drawer-header.back-button-enabled {
    cursor: pointer;
  }
  .drawer-header-title-container {
    display: flex;
    align-items: baseline;
    font-size: 1.8rem;
    font-weight: 600;
    color: #333;
    gap: 6px;
  }
  .drawer-header-title {
    position: relative;
    bottom: 2px;
  }
  .drawer-header-icon {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .drawer-header-back {
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0 10px;
  }
  .menu-item-parent {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .menu-item-icon {
    width: 18px;
    height: auto;
    justify-content: center;
    display: flex;
  }
  .drawer-main-menu .selected {
    color: #ff008c;
    padding-right: 16px;
  }

  .menu-item-content.selected  {
    justify-content: space-between;
    padding-right: 10px;
    width: 100%;
    display: flex
  }
  .menu-item-content .selected-icon {
    display: none;
    width: 19px;           /* Adjust size as needed */
    height: 19px;
  }
  .selected .selected-icon {
    display: block;
  }
  .hidden {
    display: none !important;
  }

.lines {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

.line {
    background-color: #EBF7FE;
    font-weight: 700;
    font-size: 16px;
    color: #0072BF;
    width: 46px;
    height: 42px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.price-simulation-data-modal .feedback-modal-content {
    width: 350px;
}

.chat-status-buttons {
    display: flex;
    gap: 5px;
    margin-top: 1rem;
}
.btn-sm {
    padding: 4px 10px;
    border-radius: 15px;
    border: 1px solid #ff008c;
    color: #ff008c;
    font-size: 10px;
    cursor: pointer;
    box-shadow: 0px 4px 5px 0px #0000001A;
    font-weight: 500;
    display: flex;
    align-items: center;
}

.carrier-sublabel {
    font-size: 13px;
  }

/* UQ Mobile Carrier Styling */
.uq-brand-text {
  color: #2794fc; /* UQ brand blue color */

}

.mobile-text {
  color: rgb(228, 0, 127); /* Black color for "mobile" text */
  font-size: 13px;
}

.terms-and-condition-message a {
    text-decoration: underline;
}

/* External link indicator for links with target="_blank" OR valid href (excluding links with images) */
a[target="_blank"]:not(:has(img))::after,
a[href]:not([href=""]):not([href="#"]):not(:has(img))::after {
  content: '';
  display: inline-block;
  width: 14px;
  height: 14px;
  background: url('../images/new_window_pink.svg') no-repeat center center / contain;
  margin-left: 4px;
  vertical-align: middle;
}

.new-message-indicator-button {
    position: fixed;
    bottom: calc(var(--chat-gpt-input-container-height) + 100px);
    right: 85px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 5px 12px;
    text-decoration: none;
    color: #fff;
    border-radius: 9999px;
    border: 1px solid #ff008c;
    font-weight: 700;
    font-size: 14px;
    text-align: left;
    box-shadow: 0px 4px 5px 0px #0000001A;
    background-color: #ff008c;
    gap: 0.3rem;
    cursor: pointer;
    display: none;
    opacity: 0.8;
}
.new-message-indicator-button img {
    width: 20px;
    height: 20px;
}
.new-message-indicator-button.active {
    display: flex;
}

@media (max-width: 767px) {
    .new-message-indicator-button {
        left: 50%;
        transform: translateX(-50%);   right: 20px;
        width: 40px;
        height: 40px;
        padding: 0;
        border-radius: 50%;
        justify-content: center;
        align-items: center;
        border: 1px solid #ff008c;
    }
    .new-message-indicator-button span {
        display: none;
    }
}

/* ============================================
   eKYC Inquiry Card Styles
   ============================================ */

/* === Base Container === */
.ekyc-form-container {
    background-color: #F7F7F7;
    border-radius: 8px;
    padding: 14px;
    margin-bottom: 16px;
    box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.15);
}

/* === Headers & Titles === */
.ekyc-form-header {
    margin-bottom: 24px;
}

.ekyc-form-header p {
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
    color: #333;
}

/* === Form Structure === */
.ekyc-form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
}
.ekyc-form-group.ekyc-date-of-birth-group {
    position: relative;
}

/* === Labels === */
.ekyc-form-label-container {
    display: flex;
    align-items: flex-start;
    gap: 4px;
    margin-bottom: 4px;
    flex-wrap: wrap;
}

.ekyc-required-label {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 10px;
    font-weight: 700;
    line-height: 1.2;
    color: #FF008C;
    background-color: transparent;
    padding: 0;
    white-space: nowrap;
    flex-shrink: 0;
}
.ekyc-optional-label {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 10px;
    font-weight: 700;
    line-height: 1.2;
    color: #000;
}

.ekyc-form-label {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 12px;
    font-weight: 400;
    line-height: 1.2;
    color: #333333;
    margin: 0;
    white-space: normal;
    word-wrap: break-word;
}

/* === Input Containers === */
.ekyc-input-container {
    width: 100%;
}

.ekyc-name-container {
    display: flex;
    gap: 10px;
    align-items: flex-end;
}

.ekyc-name-field {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.ekyc-date-input-container {
    position: relative;
    display: flex;
    align-items: center;
}

/* === Form Controls === */
.ekyc-input {
    width: 100%;
    height: 40px;
    padding: 16px;
    font-family: 'Noto Sans', sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.71;
    color: #333333;
    background-color: #FFFFFF;
    border: 1px solid #686868;
    border-radius: 5px;
    box-sizing: border-box;
}

.ekyc-input::placeholder {
    color: #BFBFBF;
}

.ekyc-input:focus {
    outline: none;
    border-color: #FF008C;
    box-shadow: 0 0 0 1px #FF008C;
}

.ekyc-textarea {
    min-height: 120px;
    resize: vertical;
    line-height: 1.5;
}

.ekyc-textarea:focus {
    outline: none;
    border-color: #FF008C;
    box-shadow: 0 0 0 1px #FF008C;
}

.ekyc-textarea::placeholder {
    color: #999;
}

.ekyc-date-input {
    padding-right: 48px;
}

#ekyc-date-of-birth {
    cursor: pointer;
}

/* === Icons === */
.ekyc-calendar-icon {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    cursor: pointer;
}

.ekyc-calendar-icon svg {
    width: 20px;
    height: 20px;
}

/* === Button Containers === */
.ekyc-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 32px;
    margin-bottom: 24px;
    align-items: center;
}
.ekyc-buttons button {
    min-width: 50%;
}


/* === eKYC Button Styling (Based on Figma Design) === */
.ekyc-submit-btn,
.ekyc-cancel-btn {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    padding: 8px 12px !important;
    border-radius: 50px !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    line-height: 1.5em !important;
    text-align: center !important;
    cursor: pointer !important;
    transition: all 0.2s ease !important;
    box-shadow: 0px 2px 0px 0px rgba(0, 0, 0, 0.1) !important;
    border: 1px solid !important;
    text-decoration: none !important;
    box-sizing: border-box !important;
}

/* Primary Button (Submit) - Pink Background */
.ekyc-submit-btn {
    background-color: #FF008C !important;
    color: #FFFFFF !important;
    border-color: #FF008C !important;
    font-family: 'Rakuten Sans JP', 'CustomFont', "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "Hiragino Sans", "Noto Sans CJK JP", メイリオ, sans-serif !important;
}

.ekyc-submit-btn:hover {
    background-color: #E6007A !important;
    border-color: #E6007A !important;
}

.ekyc-submit-btn:active {
    background-color: #CC0066 !important;
    border-color: #CC0066 !important;
}

/* Secondary Button (Cancel) - White Background */
.ekyc-cancel-btn {
    background-color: #FFFFFF !important;
    color: #666666 !important;
    border-color: #666666 !important;
    font-family: 'Noto Sans', 'CustomFont', "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "Hiragino Sans", "Noto Sans CJK JP", メイリオ, sans-serif !important;
    font-weight: 500 !important;
}

.ekyc-cancel-btn:hover {
    background-color: #F5F5F5 !important;
    color: #4D4D4D !important;
    border-color: #4D4D4D !important;
}

.ekyc-cancel-btn:active {
    background-color: #E6E6E6 !important;
    color: #333333 !important;
    border-color: #333333 !important;
}

/* Disabled state for submit button */
.ekyc-btn-submitting,
.ekyc-submit-btn:disabled {
    background-color: #E0E0E0 !important;
    color: #8F8F8F !important;
    border-color: #E0E0E0 !important;
    cursor: not-allowed !important;
    /* pointer-events: none !important; */
}

/* eKYC Disabled Button Styles */
.ekyc-submit-btn:disabled {
    background-color: #E0E0E0 !important;
    color: #8F8F8F !important;
    border: 1px solid #E0E0E0 !important;
    font-weight: 500 !important;
}

/* === eKYC Disabled Elements Styles === */

/* Disabled input, textarea, and select elements */
input.ekyc-disabled,
textarea.ekyc-disabled,
select.ekyc-disabled {
    background-color: #F5F5F5 !important;
    color: #8F8F8F !important;
    opacity: 0.6 !important;
}

/* Disabled button elements */
button.ekyc-disabled {
    background-color: #E0E0E0 !important;
    color: #8F8F8F !important;
    opacity: 0.6 !important;
}

/* Mobile responsive adjustments */
@media screen and (max-width: 767px) {
    .ekyc-buttons {
        gap: 10px;
        margin-top: 24px;
        margin-bottom: 20px;
    }
    
    .ekyc-submit-btn,
    .ekyc-cancel-btn {
        padding: 10px 16px !important;
        font-size: 14px !important;
        width: 100%;
    }
}

/* === Error States === */
.ekyc-error {
    display: none;
    color: #dc3545;
    font-size: 12px;
    margin-top: 4px;
    font-weight: 500;
}

/* eKYC field error messages - positioned below input containers */
.ekyc-field-error {
    display: block !important;
    color: #B3261E !important;
    font-family: 'Noto Sans JP', sans-serif !important;
    font-weight: 350 !important;
    font-size: 12px !important;
    line-height: 1.6 !important;
    text-align: left !important;
    margin-top: 4px !important;
    margin-bottom: 8px !important;
    width: 100% !important;
}

.ekyc-textarea.error,
.ekyc-input.error {
    border-color: #dc3545;
    background-color: #fff5f5;
}

/* === Calendar Dropdown === */
.ekyc-calendar-modal {
    display: none;
    z-index: 1000;
    margin-top: 0;
    padding: 0 12px;
    position:absolute;
    top:60px;
}

.ekyc-calendar-modal.hidden {
    display: none;
}

.ekyc-calendar-modal.visible {
    display: block;
}

.ekyc-calendar-overlay {
    /* Remove overlay for dropdown */
    display: none;
}

.ekyc-calendar-container {
    top: 11px;
    left: 0px;
    position: relative;
    background: #FFFFFF;
    border: 1px solid #E0E0E0;
    border-radius: 4px;
    box-shadow: 0px 4px 8px 0px rgba(94, 94, 138, 0.1);
    width: 253px;
    /* height: 284px; */
    padding: 0;
    z-index: 1;
    overflow: visible;
    margin: 0;
}

/* === Calendar Header === */
.ekyc-calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    padding: 10px 4px;
    background: #FFFFFF;
    border-bottom: 1px solid #E0E0E0;
}

/* Pointer linking the calendar to the input (top-left of header) */
.ekyc-calendar-header::after {
    content: '';
    position: absolute;
    top: -12px; /* triangle base at calendar top, apex extends up to input bottom */
    left: 24px;
    border-left: 12px solid transparent;
    border-right: 12px solid transparent;
    border-bottom: 12px solid #E0E0E0; /* outline - pointing up */
    pointer-events: none;
}

.ekyc-calendar-header::before {
    content: '';
    position: absolute;
    top: -11px; /* inner fill, 1px up from outline */
    left: 26px;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 10px solid #FFFFFF; /* fill - pointing up */
    pointer-events: none;
    z-index: 1;
}

.ekyc-calendar-nav-btn {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    padding: 0;
    border-radius: 2px;
    transition: background-color 0.2s ease;
}

.ekyc-calendar-nav-btn:hover {
    background-color: rgba(0, 0, 0, 0.04);
}

.ekyc-calendar-nav-btn svg {
    width: 16px;
    height: 16px;
    fill: #333333;
}

.ekyc-calendar-header-title {
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    flex: 1;
}

.ekyc-calendar-header-title:hover {
    opacity: 0.7;
}

.ekyc-calendar-header-title span {
    font-family: 'Rakuten Sans JP', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5;
    color: #333333;
    text-align: center;
}

/* Show underline only for months and days view */
.ekyc-calendar-header-title.view-months span,
.ekyc-calendar-header-title.view-days span {
    text-decoration: underline;
    text-underline-offset: 3px;
}

/* === Calendar Content === */
.ekyc-calendar-content {
    position: relative;
    /* height: calc(100% - 45px); */
    background: #FFFFFF;
}

/* === Calendar Month Selection === */
.ekyc-calendar-years {
    display: none;
    height: 100%;
}

.ekyc-calendar-years.visible {
    display: block;
}

.ekyc-calendar-years.hidden {
    display: none;
}

.ekyc-calendar-years-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(4, 1fr);
    gap: 1px;
    height: 192px;
    margin: 8px 0;
}

.ekyc-calendar-year-btn {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 15px;
    line-height: 1.6em;
    text-align: center;
    color: #45454A;
    border-radius: 8px;
    transition: background-color 0.2s ease;
}

.ekyc-calendar-year-btn:hover:not(.disabled):not(.selected) {
    background-color: #F5F5F5;
}

.ekyc-calendar-year-btn.selected {
    background-color: #FF008C;
    color: #FFFFFF;
    font-weight: 600;
}

.ekyc-calendar-year-btn.disabled {
    color: #E0E0E0;
    cursor: not-allowed;
}

.ekyc-calendar-months {
    display: none;
    height: 100%;
}

.ekyc-calendar-months.visible {
    display: block;
}

.ekyc-calendar-months.hidden {
    display: none;
}

.ekyc-calendar-months-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(4, 1fr);
    gap: 4px;
    height: 100%;
    padding: 8px;
}

.ekyc-calendar-month-btn {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 15px;
    line-height: 1.6;
    color: #45454A;
    border-radius: 4px;
    transition: all 0.2s ease;
    min-height: 40px;
}

.ekyc-calendar-month-btn:hover:not(.selected) {
    background-color: #F5F5F5;
}

.ekyc-calendar-month-btn.selected {
    background-color: #FF008C;
    color: #FFFFFF;
    font-weight: 600;
}

/* === Calendar Day Selection === */
.ekyc-calendar-days {
    display: block;
    height: 100%;
    background: #FFFFFF;
}

.ekyc-calendar-days.hidden {
    display: none;
}

.ekyc-calendar-weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    margin: 0;
    padding: 0;
    border-bottom: 1px solid #BFBFBF;
}

.ekyc-calendar-weekday {
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Rakuten Sans JP', sans-serif;
    font-weight: 400;
    font-size: 13px;
    line-height: 1.5;
    color: #FF33A3;
    padding: 8px 0;
    width: 35px;
    height: 32px;
}

.ekyc-calendar-dates-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    grid-template-rows: repeat(6, 1fr);
    gap: 0;
    /* height: calc(100% - 65px); */
}

.ekyc-calendar-day-btn {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Rakuten Sans JP', sans-serif;
    font-weight: 400;
    font-size: 13px;
    line-height: 1.5;
    color: #333333;
    border-radius: 4px;
    transition: all 0.2s ease;
    width: 35px;
    height: 32px;
    position: relative;
}

.ekyc-calendar-day-btn:hover:not(.disabled):not(.selected) {
    background-color: rgba(0, 0, 0, 0.04);
}

.ekyc-calendar-day-btn.disabled {
    color: #E0E0E0;
    cursor: not-allowed;
}

.ekyc-calendar-day-btn.today {
    font-weight: 400;
    color: #4D4D4D;
    background-color: rgba(255, 51, 163, 0.1);
    border-radius: 4px;
}

.ekyc-calendar-day-btn.selected {
    background-color: #FF008C;
    color: #FFFFFF;
    font-weight: 600;
    border-radius: 4px;
}

.ekyc-calendar-day-btn.other-month {
    color: #E0E0E0;
}


/* === Calendar separators === */
.ekyc-calendar-separator {
    width: 100%;
    height: 1px;
    background-color: #BFBFBF;
    margin: 0;
}

/* === Mobile Responsive === */
@media (max-width: 768px) {
    .ekyc-form-header {
        margin-bottom: 20px;
    }
    
    .ekyc-textarea {
        min-height: 100px;
    }
}

@media screen and (max-width: 767px) {
    .ekyc-form-container {
        padding: 12px;
        margin-bottom: 12px;
    }
    
    .ekyc-input,
    .ekyc-textarea {
        padding: 12px;
        font-size: 16px; /* Prevent zoom on iOS */
    }
    
    .ekyc-calendar-modal {
        left: -10px;
        right: -10px;
        margin-top: 8px;
    }
    
    .ekyc-calendar-container {
        top: 3px;
        /* width: 100%; */
        max-width: calc(100vw - 20px);
        /* margin: 0; */
    }
}

.chat-ended .ekyc-form-container input {
    pointer-events: none !important;
    opacity: 0.5 !important;
    cursor: not-allowed !important;
}

.chat-ended .ekyc-form-container textarea {
    pointer-events: none !important;
    opacity: 0.5 !important;
    cursor: not-allowed !important;
}

.chat-ended .ekyc-form-container button {
    pointer-events: none !important;
    opacity: 0.5 !important;
    cursor: not-allowed !important;
}
.chat-ended .ekyc-form-container .ekyc-calendar-icon {
    pointer-events: none !important;
    opacity: 0.5 !important;
    cursor: not-allowed !important;
}

#default-server-message-1 span,
.disclaimer-text-message {
    font-size: 12px;
    color: #676767;
    line-height: 1.4;
}

.disclaimer-text-message b {
    font-size: 12px !important;
    color: #000;
}

.disclaimer-text-message a {
    font-size: 12px !important;
}

.disclaimer-text-message {
    margin-top: 15px;
}

.secondary-button-container {
    margin: 30px 0 0;
    display: flex;
    flex-wrap: wrap;
}

.button-response.secondary-button {
    margin-right: 10px;
}

.voice-input-button-image-small {
    display: none;
}

/* Maintenance mode */

.maintenance-mode-wrapper {
    display: none;
}
.maintenance-mode .message {
    display: none !important;
}
.maintenance-mode .chat-gpt-input-container {
    display: none !important;
}
.maintenance-mode .maintenance-mode-wrapper {
    display: block;
}
.maintenance-mode-wrapper .chat-gpt-wrap {
    padding-top: 10px;
}
.maintenance-mode-wrapper .chat-gpt-hdg-lv2 {
    font-size: 25px;
}
.maintenance-mode main {
    height: 100% !important;
}
.maintenance-mode .chat-gpt-main , .maintenance-mode .chat-gpt-container {
    height: 100% !important;
    max-height: 100% !important;
}
.maintenance-mode .chat-gpt-wrap.chat-gpt-wrap--is-error {
    padding: 20px 0;
}
