@import url('https://fonts.googleapis.com/css2?family=Mitr:wght@200;300;400;500;600;700&display=swap');

@keyframes pulse {
    0% { 
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(246, 86, 147, 0.7);
    }
    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(246, 86, 147, 0);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(246, 86, 147, 0);
    }
}

@keyframes pulseUpgrade {
    0% { 
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 198, 0, 0.7);
    }
    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(255, 198, 0, 0);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 198, 0, 0);
    }
}

@keyframes bounce {
    0% {
      transform: translateY(0)
    }
  
    50% {
      transform: translateY(-30px)
    }
  
    100% {
      transform: translateY(0)
    }
}

@keyframes bounce2 {
	0%, 20%, 50%, 80%, 100% {transform: translateY(0);}
	40% {transform: translateY(-30px);}
	60% {transform: translateY(-15px);}
}

@keyframes shake-crazy {
    0% { transform: translate(0); }
    10% { transform: translate(-2px, -2px) rotate(-1deg); }
    20% { transform: translate(-3px, 0px) rotate(1deg); }
    30% { transform: translate(3px, 2px) rotate(0deg); }
    40% { transform: translate(1px, -1px) rotate(1deg); }
    50% { transform: translate(-1px, 2px) rotate(-1deg); }
    60% { transform: translate(-3px, 1px) rotate(0deg); }
    70% { transform: translate(3px, 1px) rotate(-1deg); }
    80% { transform: translate(-1px, -1px) rotate(1deg); }
    90% { transform: translate(1px, 2px) rotate(0deg); }
    100% { transform: translate(0); }
}

body {
    margin: 0;
    padding: 0;
    font-family: "Mitr", sans-serif;
    position: relative;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    font-weight: 300;
    color: #232069 !important;
}

button {
    color: #232069 !important; 
}

.page-wrapper {
    display: flex;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    overflow: hidden;
    height: 100vh;
    background-color: #d0d0d0;
}

.page-center-content {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: center;
}

.subscription-contain {
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: 2rem;
}

.subscription-contain-left {
    width: 35%;
}

.subscription-contain-left:hover {
    animation: pulseUpgrade 1.5s infinite;
}

.subscription-contain-right {
    width: 65%;
}

.subscription-content-text > img {
    width: 15px;
    height: 15px;
}

.subscription-content-image {
    display: flex;
    width: 100%;
    height: 100%;
    border-radius: 35px;
    overflow: hidden;
}

.subscription-content-image > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.subscription-contain-right-image {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    width: 55%;
}

.subscription-image-list {
    width: calc(33.33% - (1rem * 2) / 3);
    border-radius: 46px;
    overflow: hidden;
}

.subscription-contain-content {
    display: flex;
    position: relative;
    background-color: #2320695c;
    padding: 1rem;
    gap: 1rem;
}

.subscription-wrapper {
    width: 75%;
    margin-bottom: 60px;
}

.subscription-contain-right-text {
    display: flex;
    width: 45%;
}

.subscription-image-list > img {
    width: 100%;
}

.subscription-contain-title {
    background-color: #ffc600;
    padding: 1rem;
    border-radius: 35px 35px 0 0;
    position: relative;
}

.subscription-contain-title > span {
    font-size: 17px;
    font-weight: 400;
    color: #232069;
}

.subscription-contain-left .subscription-contain-title::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 35px;
    background-color: #ffc600;
    bottom: -31px;
    left: 0;
}

.subscription-content {
    position: relative;
    height: calc(100% - 60px);
}

.subscription-contain > div {
    border: 4px solid #ffc600;
    border-radius: 40px;
    cursor: pointer;
    position: relative;
}

.subscription-wrapper-title {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-bottom: 30px;
}

.subscription-wrapper-title > span {
    color: #fff;
    font-size: 30px;
    font-weight: 400;
}

.subscription-content-text > span {
    color: #bfbebe;
    font-weight: 300;
    font-size: 15px;
    width: calc(100% - 30px);
    line-height: 1.1;
    padding: 5px;
    border-right: 1px solid #bfbebe;
}

.subscription-content-text {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid #bfbebe;
    align-items: center;
}

.subscription-content-text-image {
    display: flex;
    width: 30px;
    align-items: center;
    justify-content: center;
}

.subscription-content-text-image > img {
    width: 15px;
}

.subscription-content .subscription-content-list {
    position: absolute;
    z-index: 9;
    bottom: 0px;
    width: 100%;
    padding: 20px;
}

.kuju-logo-wrapper {
    position: fixed;
    bottom: 15px;
    width: 100%;
    left: 0;
    z-index: 999999;
}

.kuju-logo {
    display: flex;
    align-items: center;
    justify-content: center;
}

.kuju-logo > a {
    display: flex;
    width: 75px;
}

.kuju-logo > a > img {
    width: 100%;
}

.subscription-contain-left > a {
    text-decoration: none !important;
}

#msform {
    text-align: center;
    position: relative;
    border: 4px solid #ffc600;
    border-radius: 40px;
    overflow: hidden;
    cursor: pointer;
}

/*Hide all except first fieldset*/
#msform fieldset:not(:first-of-type) {
    display: none;
}

/*inputs*/
#msform input, #msform textarea {
    padding: 15px;
    border: 1px solid #ccc;
    border-radius: 0px;
    margin-bottom: 10px;
    width: 100%;
    box-sizing: border-box;
    font-family: montserrat;
    color: #2C3E50;
    font-size: 13px;
}

#msform input:focus, #msform textarea:focus {
    -moz-box-shadow: none !important;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
    border: 1px solid #ee0979;
    outline-width: 0;
    transition: All 0.5s ease-in;
    -webkit-transition: All 0.5s ease-in;
    -moz-transition: All 0.5s ease-in;
    -o-transition: All 0.5s ease-in;
}

/*buttons*/
#msform .action-button {
    width: 100px;
    background: #ee0979;
    font-weight: bold;
    color: white;
    border: 0 none;
    border-radius: 25px;
    cursor: pointer;
    padding: 10px 5px;
    margin: 10px 5px;
}

#msform .action-button:hover, #msform .action-button:focus {
    box-shadow: 0 0 0 2px white, 0 0 0 3px #ee0979;
}

#msform .action-button-previous {
    width: 100px;
    background: #C5C5F1;
    font-weight: bold;
    color: white;
    border: 0 none;
    border-radius: 25px;
    cursor: pointer;
    padding: 10px 5px;
    margin: 10px 5px;
}

#msform .action-button-previous:hover, #msform .action-button-previous:focus {
    box-shadow: 0 0 0 2px white, 0 0 0 3px #C5C5F1;
}

/*headings*/
.fs-title {
    font-size: 20px;
    color: #fff;
    margin-bottom: 10px;
    font-weight: 400;
}

.fs-subtitle {
    font-weight: 300;
    font-size: 13px;
    color: #bfbebe;
    margin-bottom: 20px;
}

.page-form-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60%;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 40px;
}

.page-form-wrapper .row {
    width: 100%;
}

.page-form-wrapper .row .fieldset-wrapper {
    display: block;
    position: relative;
    background-color: #2320695c;
    padding: 1rem;
}

.select-list {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2rem;
}

.selecet-content {
    width: calc(33.33% - (3rem *2) / 3);
    padding: 1rem;
    background-color: #ffc600;
    border-radius: 35px;
    transition: .2s ease-in-out;
}

.selecet-content.selected {
    background-color: #96f786;
}

.selecet-image {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: center;
}

.selecet-image > img {
    object-fit: contain;
    width: 70px;
}

.selecet-text {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.selecet-text > span {
    display: flex;
    font-weight: 200;
    font-size: 15px;
}

.subscription-contain-right .subscription-contain-title {
    background-color: #f65693;
}

.subscription-contain-right {
    border-color: #f65693 !important;
}

.fieldset-wrapper fieldset:nth-child(3) .select-list .selecet-content {
    width: calc(20% - (1.5rem * 4) / 5);
}

.fieldset-wrapper fieldset:nth-child(3) .select-list {
    gap: 1.5rem;
}

.fieldset-wrapper fieldset:nth-child(3) .select-list .selecet-content .selecet-image > img {
    width: 40px;
}

.fieldset-wrapper fieldset:nth-child(3) .select-list .selecet-content .selecet-text > span {
    font-size: 11px;
    line-height: 1;
    display: block;
    width: 100%;
}

.action-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 130px;
    padding: 0.7rem;
    border-radius: 70px;
    gap: 10px;
    border: none;
    outline: none;
    box-shadow: none;
    background-color: #ffc600;
}

.action-button > span {
    font-weight: 400;
}

.step-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.selecet-content.select-validate {
    animation: pulse 1.5s infinite;
    background-color: #f65693c4;
}

.loading-content {
    position: fixed;
    bottom: 120px;
    width: 75%;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.loading-container-wrap {
    width: 100%;
}

.loading-container-wrap .progress-bar {
    border-radius: 75px;
    padding: 0.3rem;
}

.loading-container-wrap .progress-bar::before {
    content: "";
    position: absolute;
    left: 50%;
    width: calc(100% - (1.2rem));
    height: 4px;
    background-color: #c49d1f;
    transform: translateX(-50%);
    border-radius: 70px;
    z-index: 1;
}

.loading-container-wrap .progress-bar .progress {
    z-index: 2;
    background-color: #ffc600;
    height: 4px;
    border-radius: 75px;
}

.loading-logo {
    width: 150px;
}

.loading-logo > img {
    width: 100%;
}

.loading-text {
    margin: 30px 0;
    color: #fff;
    font-size: 20px;
    font-weight: 300;
    margin-top: 10px;
}

.chat-wrapper {
    display: flex;
    width: 55%;
    margin-bottom: 30px;
}

.chat-contain {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.chat-contain-text {
    display: flex;
    width: 100%;
    gap: 30px;
    align-items: stretch;
}

.chat-text-content {
    width: calc(50% - (30px) / 2);
    border: 4px solid #ffc600;
    border-radius: 25px;
    overflow: hidden;
}

.chat-contain-image {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: center;
    margin-bottom: 50px;
}

.chat-character {
    width: 250px;
    position: relative;
    animation: bounce 2s linear infinite alternate;
}

.chat-character > img {
    width: 100%;
}

.chat-text {
    background-color: #2320695c;
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    height: calc(100% - 50px);
    min-height: 110px;
}

.chat-text > span {
    color: #fff;
    font-size: 19px;
    font-weight: 400;
    width: 80%;
    text-align: center;
}

.chat-text-content .subscription-contain-title {
    border-radius: 20px 20px 0 0;
    height: 50px;
    transition: all 0.8s ease;
}

.chat-text-content {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
    cursor: pointer;
}

.chat-text-content.show {
    opacity: 1;
    transform: translateY(0);
}

.chat-text-content.clicked,
.chat-text-content:hover {
    border-color: #96f786 !important;
    transform: scale(1.05);
    transition: all 0.3s ease;
}

.chat-text-content.clicked .subscription-contain-title,
.chat-text-content:hover .subscription-contain-title {
    background-color: #96f786;
    transition: all 0.3s ease;
}

.chat-text-content.fade-out {
    opacity: 0;
    transform: translateY(-30px);
    transition: all 0.6s ease;
}

.upgrade-wrapper {
    position: fixed;
    z-index: 9999;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    top: -100%;
    width: 100%;
    height: 100%;
    transition: .5s ease-in-out;
}

.upgrade-wrapper.active {
    opacity: 1;
    visibility: visible;
    top: 0;
    animation: bounce2 2s ease 1;
    /* animation-delay: 1.2s; */
}

.chat-text-content.show:hover {
    transform: scale(1.05);
}

.upgrade-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 60px;
    transform: scale(0.85);
    gap: 20px;
}

.upgrade-content .subscription-contain-right {
    width: 50%;
    border: 4px solid #ffc600 !important;
    border-radius: 40px;
}

.upgrade-wrapper-title > span {
    color: #fff;
    font-size: 25px;
    font-weight: 400;
    display: flex;
    text-align: center;
    line-height: 1;
}

.upgrade-wrapper-title > p {
    font-weight: 300;
    font-size: 14px;
    color: #bfbebe;
    margin: 10px;
    display: flex;
    text-align: center;
    align-items: center;
    justify-content: center;
}

.upgrade-button > button {
    background-color: #f65693;
    border: none;
    border-radius: 70px;
    width: 200px;
    padding: 13px;
    font-size: 20px;
    animation: pulseUpgrade 1.5s infinite;
    color: #232069;
}

.upgrade-content .subscription-contain-title {
    background-color: #ffc600;
}

.youtube-gif {
    position: fixed;
    bottom: 0px;
    right: 20px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.youtube-gif-image {
    display: flex;
    width: 80px;
}

.youtube-gif-image > img {
    width: 100%;
}

.youtube-gif-text {
    background-color: #ffc600;
    width: 190px;
    padding: 20px;
    text-align: center;
    border-radius: 35px;
    position: relative;
}

.youtube-gif-text > span {
    font-size: 11px;
    font-weight: 400;
    line-height: 1.4;
    display: block;
}

.youtube-gif-text > span > a {
    color: #cd1313;
    text-decoration: none;
}

.youtube-gif-text::before {
    content: "";
    position: absolute;
    border-color: #ffc600 transparent transparent transparent;
    border-style: solid;
    border-width: 12px;
    width: 0px;
    height: 0px;
    bottom: -20px;
    right: 30px;
}

.try-free-button {
    position: absolute;
    background-color: #ffc600;
    color: #333;
    border: none;
    padding: 0;
    width: 130px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    box-shadow: 0 4px 12px rgba(255, 193, 7, 0.3);
    transition: all 0.3s ease;
    overflow: hidden;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 50% 85%, 0 100%);
    border-radius: 8px;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
}

.button-content {
    position: relative;
    z-index: 2;
    padding: 20px 15px;
    line-height: 1.3;
    font-size: 17px;
    font-weight: 500;
}

.subscription-contain-right .try-free-button {
    background-color: #f65693;
}

.shake-crazy {
    animation: shake-crazy 0.8s ease-in-out;
}

.special-kids {
    position: fixed;
    top: 10px;
    right: 10px;
    background-color: #ffc600;
    border-radius: 20px;
    padding: 0.5rem;
    cursor: pointer;
}

.special-kids-image {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
}

.special-kids-image > img {
    width: 100%;
}

img#mouth {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    bottom: -9px;
}

.chat-contain-start-text > span {
    color: #fff;
    font-size: 25px;
    font-weight: 400;
}

.chat-contain-start-input {
    width: 60%;
    background-color: #2320695c;
    border-radius: 35px;
    border: 4px solid #ffc600;
}

.chat-contain-start-input > input {
    width: 100%;
    background-color: transparent;
    border: none;
    font-size: 18px;
    font-weight: 400;
    color: #fff;
    text-align: center;
    outline: 0;
    padding: 1.5rem;
}

.chat-contain-start-input > input::placeholder {
    font-size: 18px;
    font-weight: 400;
    font-weight: 400;
    color: #bfbebe;
    text-align: center;
}

.chat-contain-start {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 20px;
    position: absolute;
    top: 50%;
}

.chat-contain-start-button > button {
    display: flex;
    background-color: #ffc600;
    border-radius: 75px;
    border: none;
    outline: 0;
    width: 180px;
    padding: 1rem;
    align-items: center;
    justify-content: center;
}

.special-kids-popup {
    position: fixed;
    inset: 0;
    z-index: 99;
    background-color: #232069;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: scale(0.7);
    transition: .3s ease-in-out;
    opacity: 0;
    visibility: hidden;
}

.special-kids-popup.active {
    transform: scale(1);
    opacity: 1;
    visibility: visible;
}

.mode-text > span {
    font-size: 18px;
    color: #fff;
    font-weight: 400;
}

.mode-text > p {
    font-size: 13px;
    font-weight: 300;
    color: #bfbebe;
}

.mode-text > button {
    background-color: transparent;
    border: none;
    outline: 0;
    color: #f65693 !important;
    font-weight: 300;
    font-size: 12px;
    padding: 0;
    text-decoration: underline;
}

.special-kids-mode-wrapper {
    display: flex;
    gap: 5rem;
    width: 70%;
}

.mode-content {
    width: calc(50% - (5rem) / 2);
    display: flex;
    align-items: center;
    gap: 1rem;
    cursor: pointer;
}

.special-kids-popup-content {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.mode-image {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #ffc600;
    min-width: 65px;
    min-height: 65px;
    border-radius: 15px;
    transition: .25s ease-in-out;
}

.mode-text {
    width: calc(100% - 65px);
}

.mode-content:hover .mode-image {
    background-color: #96f786;
}

.mode-wrapper-title {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-bottom: 60px;
}

.mode-wrapper-title > span {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 35px;
    color: #fff;
    font-weight: 300;
}

.special-kids-popup-remove {
    position: fixed;
    top: 25px;
    right: 25px;
    cursor: pointer;
}

.special-kids-popup-remove > i {
    color: #fff;
    font-size: 25px;
}

.mode-image > img {
    width: 45px;
}

.header-logo {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 200px;
}

.header-logo > img {
    width: 100%;
}



@media screen and (min-width: 2500px){
    .page-form-wrapper {
        width: 30%;
        transform: scale(1.7);
    }

    .chat-wrapper {
        width: 30%;
        transform: scale(1.7);
    }

    .upgrade-content {
        transform: scale(1.4);
    }

    .subscription-wrapper {
        width: 35%;
        transform: scale(1.5);
    }
}

@media screen and (max-width: 1400px){
     .select-list {
        overflow: auto;
    }
}

@media screen and (max-width: 1200px){
    .subscription-wrapper {
        width: 95%;
    }

    .fieldset-wrapper fieldset:nth-child(3) .select-list .selecet-content {
        width: calc(25% - (1.5rem * 3) / 4);
    }

    .upgrade-content .subscription-contain-right {
        width: 80%;
    }

    .upgrade-wrapper {
        overflow: auto;
        align-items: flex-start;
    }
}

@media screen and (max-width: 993px){
    .subscription-contain {
        flex-direction: column;
        align-items: center;
        gap: 6rem;
    }
    
    .kuju-logo-wrapper {
        position: absolute;
        bottom: 15px;
    }

    .subscription-contain-left {
        width: 45%;
    }
    
    .subscription-contain-right {
        width: 95%;
    }

    .fieldset-wrapper fieldset:nth-child(3) .select-list .selecet-content {
        width: calc(33.33% - (1.5rem * 3) / 4);
    }    

    .chat-wrapper {
        width: 80%;
    }

    .header-logo {
        width: 130px;
    }
}

@media screen and (max-width: 769px) {
    .selecet-content {
        width: calc(50% - (1rem) / 2);
    }

    .select-list {
        gap: 1rem;
    }

    .upgrade-content {
        transform: unset;
        margin: 10px;
    }
    
    .upgrade-content .subscription-contain-right {
        width: 95%;
    }
    
    .upgrade-wrapper {
        align-items: flex-start;
        overflow: auto;
        padding-bottom: 100px;
        padding-top: 30px;
    }
}

@media screen and (max-width: 680px){
    .subscription-contain-content {
        flex-direction: column;
    }
    
    .subscription-contain-right-image {
        width: 100%;
    }
    
    .subscription-contain-right-text {
        width: 100%;
    }
    
    .subscription-content-list {
        width: 100%;
    }

    .subscription-contain-left {
        width: 95%;
    }

    .fieldset-wrapper fieldset:nth-child(3) .select-list .selecet-content {
        width: calc(50% - (1.5rem * 2) / 3);
    }
    
    .kuju-logo > a {
        width: 55px;
    }

    .chat-wrapper {
        width: 95%;
    }

    .youtube-gif {
        display: none;
    }
}

@media screen and (max-width: 553px) {
    .page-form-wrapper {
        width: 95%;
        margin-bottom: 0px;
    }

    .selecet-content {
        width: 100%;
    }

    .fieldset-wrapper fieldset:nth-child(3) .select-list .selecet-content {
        width: 100%;
    }

    .fs-title {
        font-size: 18px;
    }
    
    .fs-subtitle {
        font-size: 11px;
    }

    #chat-responses {
        flex-direction: column;
    }
    
    .chat-text-content {
        width: 100%;
    }

    .chat-character {
        width: 150px;
    }
    
    .chat-contain-image {
        margin-bottom: 20px;
    }
    
    .chat-text-content .subscription-contain-title {
        height: 35px;
    }
    
    .chat-text {
        height: calc(100% - 35px);
        min-height: 100px;
    }
    
    .chat-text > span {
        font-size: 16px;
    }
    
    .chat-wrapper {
        margin-bottom: 50px;
    }

    .loading-content {
        width: 95%;
    }
    
    .loading-text {
        font-size: 17px;
    }
    
    .loading-logo {
        width: 100px;
    }
    
    .special-kids {
        position: absolute;
    }

    .chat-contain-start {
        top: 40%;
    }

    .chat-contain-start-input {
        width: 85%;
    }

    .special-kids-mode-wrapper {
        flex-direction: column;
        width: 85%;
    }
    
    .mode-content {
        width: 100%;
    }
}