@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Rammetto+One&family=Sniglet:wght@400;800&display=swap');

.fw-semibold {
    font-weight: 600;
}

body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

:root {
    --primary: rgba(15, 40, 62, 1);
    --secondary: rgba(34, 42, 46, 1);
    --gray: rgba(102, 102, 102, 0.35);
    --btns: rgba(28, 131, 216, 1);
    --input: rgba(102, 102, 102, 0.35);
    --eye: rgba(34, 42, 46, 0.8);
    --green-dark: rgba(5, 89, 30, 1);
    --blue: rgba(17, 49, 77, 1);
}

h1,
h2,
h3,
h4,
h5,
h6,
.main-btn,
.question-block h5 {
    font-family: "Rammetto One", sans-serif;
    color: var(--primary);
}

h2,
h3,
h1 {
    opacity: 0;
    animation: fadeIn 2s ease forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

.question-box input,
.question-box,
.result-value {
    font-family: "Rammetto One", sans-serif;
}

p,
label,
a {
    color: var(--secondary);
}

.speacial-name,
label,
.Sniglet {
    font-family: "Sniglet", system-ui;
    font-weight: 400;
}

.field {
    border-radius: .7rem !important;
    padding: .8rem 1rem;
    border-color: var(--input) !important;
}

.checkbox {
    border-color: var(--input) !important;
}

.main-btn {
    background: radial-gradient(ellipse at 35% 30%,
            rgba(255, 255, 255, 1) -80%,
            rgba(255, 255, 255, 0) 40%),
        rgba(28, 131, 216, 1);
    color: rgba(255, 255, 255, 0.9);
    font-weight: bold;
    padding: .9rem 4.5rem;
    border: none;
    border-radius: 3rem;
    cursor: pointer;
    font-size: 1rem;
    box-shadow:
        4px 18px 42px rgba(0, 0, 0, 0.29),
        inset -3px -4px 7px rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.25);
    border: .4rem solid transparent;
}

.main-btn:hover {
    transform: translateY(-3px);
    background: radial-gradient(ellipse at 35% 30%,
            rgba(255, 255, 255, 1) -80%,
            rgba(255, 255, 255, 0) 40%),
        rgba(28, 131, 216, 1);
    border: .4rem solid rgb(28 132 218);
    color: rgba(255, 255, 255, 0.9);
}

.blue-btn {
    background: radial-gradient(ellipse at 35% 30%,
            rgba(255, 255, 255, 1) -80%,
            rgba(255, 255, 255, 0) 40%),
        rgba(28, 131, 216, 1);
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    padding: .7rem 1.5rem;
    border: none;
    border-radius: 3rem;
    cursor: pointer;
    font-size: .95rem;
    box-shadow:
        4px 18px 42px rgba(0, 0, 0, 0.29),
        inset -3px -4px 7px rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.25);
    font-family: "Poppins", sans-serif;
    border: .4rem solid transparent;
}

.orange-btn {
    background: radial-gradient(ellipse at 35% 30%,
            rgba(255, 255, 255, 1) -80%,
            rgba(255, 255, 255, 0) 40%),
        rgba(255, 128, 0, 1);
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    padding: .7rem 1.5rem;
    border: none;
    border-radius: 3rem;
    cursor: pointer;
    font-size: .95rem;
    box-shadow:
        4px 18px 42px rgba(0, 0, 0, 0.29),
        inset -3px -4px 7px rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.25);
    font-family: "Poppins", sans-serif;
    border: .4rem solid transparent;
}

.back-btn {
    background: radial-gradient(ellipse at 35% 30%,
            rgba(255, 255, 255, 1) -80%,
            rgba(255, 255, 255, 0) 40%),
        rgba(28, 131, 216, 1);
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    padding: .7rem 1.5rem;
    border: none;
    border-radius: .8rem;
    cursor: pointer;
    font-size: 1rem;
    box-shadow:
        4px 18px 42px rgba(0, 0, 0, 0.29),
        inset -3px -4px 7px rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.25);
    font-family: "Poppins", sans-serif;
    border: .4rem solid transparent;
}

/* .main-btn:hover {
    background-color: transparent !important;
} */

.emoji-box {
    border-radius: 1rem;
    height: 6rem;
    overflow-y: scroll;
}

.girl {
    width: 16%;
    bottom: 0;
    right: 0;
}

.show-hide {
    color: var(--eye);
}

a.theme_btn_blue_cus,
button.theme_btn_blue_cus {
    background: #FFA347;
    color: white;
    padding: 6px 15px;
    border-radius: 100px !important;
    text-align: center;
    width: auto;
    border: none;
}

.btn-main {
    background-color: var(--primary);
    color: #fff;
    border: 1px solid var(--primary);
}

.btn-white {
    background-color: #fff;
    color: var(--primary);
    border: 1px solid var(--primary);
}

.btn-main:hover {
    background-color: transparent;
    color: var(--primary);
    border: 1px solid var(--primary);
}

.btn-white:hover {
    background-color: var(--primary);
    color: #fff;
    border: 1px solid var(--primary);
}

.btn-main,
.btn-white {
    font-size: 1rem;
    padding: .7rem 1rem;
    border-radius: .8rem;
}

.main-container,
.main-container-sec {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 100vh;
}

.main-card {
    border-radius: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-radius: 1.5rem;
}

.form-floating {
    position: relative;
}

.form-floating .form-control {
    border-bottom: 1px solid var(--gray);
}

.form-floating .form-control:focus {
    border-color: var(--primary);
    box-shadow: none;
}

input:-webkit-autofill {
    -webkit-box-shadow: 0 0 0 1000px white inset !important;
    -webkit-text-fill-color: #000 !important;
}

.link {
    color: var(--primary);
    font-size: .9rem;
}

.password-toggle-icon {
    /* position: absolute;
    top: 50%; */
    right: 1rem;
    /* transform: translateY(-50%); */
    cursor: pointer;
    color: var(--eye);
    font-size: 1rem;
}

.main-card-sec {
    background-color: rgba(255, 255, 255, 1);
    border-radius: 1.5rem;
}

.main-card-sec input {
    background-color: #00000000;
}

.iti__flag-container .iti__selected-flag {
    background-color: #ffffff !important;
}

.iti__flag-container .iti__selected-flag:hover {
    background-color: #ffffff !important;
}

/* Hide arrows in input number for WebKit browsers */
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Firefox */
input[type=number] {
    -moz-appearance: textfield;
}

/*tel country field*/

.country-tel-field .iti.iti--allow-dropdown {
    width: 100%;
}

.country-tel-field .iti__country-list {
    z-index: 10;
}

.otp-input-container {
    display: flex;
    gap: 1.8rem;
    justify-content: center;
}

.otp-input {
    width: 2.4rem;
    height: 3.4rem;
    text-align: center;
    font-size: 24px;
    border: 0;
    border-bottom: 2px solid #ccc;
    border-radius: 0;
}

.otp-input:focus {
    border-color: #007bff;
    outline: none;
}

.profile-img-top {
    width: 2rem;
    height: 2rem;
}

#dropdownUser.dropdown-toggle::after {
    border-top: .3em solid #ffffff !important;
}

.overlay-text {
    color: white;
    font-size: 1rem;
    margin: 0;
}

footer.footer {
    background-color: var(--primary);
    margin-top: 0;
}

.footer-menu {
    gap: 4rem;
}

.footer-menu a {
    color: white;
    font-weight: 400;
    font-family: 'poppins';
}

.main_navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: absolute;
    width: 100%;
    background-color: transparent;
    z-index: 1;
    background: linear-gradient(to bottom, #092f52 0%, rgba(9, 47, 82, 0.7) 40%, rgba(9, 47, 82, 0) 100%);
}

.navLinks a {
    border: .3rem solid transparent;
    background: radial-gradient(ellipse at 35% 30%, rgba(255, 255, 255, 1) -80%, rgba(255, 255, 255, 0) 40%), rgba(28, 131, 216, 1);
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    padding: .7rem 1.5rem;
    border-radius: 3rem;
    cursor: pointer;
    font-size: .9rem;
    box-shadow: 4px 18px 42px rgba(0, 0, 0, 0.29), inset -3px -4px 7px rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.25);
    font-family: "Poppins", sans-serif;
}

.navLinks a:hover {
    border-color: rgba(255, 255, 255, 1);
}

.profile-dropdown {
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 5rem;
    padding: .5rem 1rem 0.5rem .5rem;
}

.border-hr {
    border-color: rgba(207, 211, 215, 1);
    opacity: 1;
}

.main_nav-links {
    display: flex;
    gap: 5rem;
}

.main_nav-links a.mainlink {
    text-decoration: none;
    color: white;
    font-weight: 500;
    font-size: 1rem;
    transition: color 0.3s;
}

.main_.nav-links.active a.active {
    color: rgba(42, 127, 214, 1);
}

.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 25px;
    height: 20px;
    cursor: pointer;
    z-index: 1001;
}

.hamburger span {
    display: block;
    height: 3px;
    background: #333;
    border-radius: 2px;
    transition: all 0.4s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translateY(8px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translateY(-8px);
}

.logo_welcome img {
    width: 7.5rem;
}

img.about_us_img_team {
    border-radius: 1rem;
}

.container {
    max-width: 1250px;
}

body {
    background-color: #fff !important;
}

.text-end {
    text-align: end;
}

.banner-sec-hero {
    background: url(../images/welcome-images/bg-image-wel.jpg) center center / cover no-repeat;
    width: 100%;
    height: 85%;
    display: flex;
    justify-content: left;
    align-items: end;
    padding-bottom: 6rem;
}

section.welcome_main {
    background-color: rgba(245, 248, 251, 1) !important;
}


/*Home page*/

/*Banner*/
section.banner-top-main {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    padding: 12% 5%;
}

section.banner-top-main h2.right_main_heading {
    color: white;
    font-size: 75px;
    font-weight: 600;
}

section.banner-top-main h3.right_sub_heading {
    font-size: 50px;
    color: white;
}


section.banner-top-main h3.right_sub_heading span {

    color: #F9840E;
}

section.banner-top-main p {
    color: white;
    line-height: 1.8;
    margin-top: 25px;
    margin-bottom: 40px;
}


section.banner-top-main a.theme_btn_blue_cus {
    background-color: #FFA347;
    padding: 10px 50px;
}


/*Second Section*/

section.second-form-section {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    padding: 8% 5% 0;
}

.form_shadow_box {
    box-shadow:
        0px 3.24px 51.84px rgba(0, 0, 0, 0.1),
        inset 7.29px 8.1px 14.58px rgba(0, 0, 0, 0.25);
    background-color: white;
    padding: 2rem 1.4rem;
    border-radius: 2rem;
    width: 80%;
    margin: 0 auto;
    border: .4rem solid rgba(255, 255, 255, 1);
}

.form_shadow_box .btn-year.active {
    background-color: var(--green-dark);
    color: #fff;
}

.form_shadow_box .btn-year {
    transition: all 0.2s ease;
    /* border: .3rem solid transparent; */
    background: radial-gradient(ellipse at 35% 30%, rgba(255, 255, 255, 1) -80%, rgba(255, 255, 255, 0) 40%), rgba(26, 204, 80, 1);
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    padding: .8rem 4rem;
    border-radius: 3rem;
    cursor: pointer;
    font-size: .95rem;
    box-shadow: 4px 18px 42px rgba(0, 0, 0, 0.29), inset -3px -4px 7px rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.25);
    font-family: "Poppins", sans-serif;
}


.form_shadow_box .subject-btn {
    padding: 20px;
    border-radius: 8px;
    border: 2px solid transparent;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-weight: 600;
    color: black;
    background-color: #f2f5f6;
    width: 120px;
    text-align: center;
    margin-right: 15px;
}

.form_shadow_box .subject-btn.active {
    background-color: #360F3E;
    color: #fff;
}

.form_shadow_box span.subject_icon {
    display: block;
    margin-bottom: 10px;
}

.form_shadow_box .subject-btn.inactive {
    background-color: #f1f1f1;
    color: #000;
    border-color: #ccc;
}

.form_shadow_box .category-select {
    min-width: 120px;
    border-radius: 6px;
    border: 1px solid #ccc;
    padding: 8px 12px;
}

.form_shadow_box .generate-btn {
    background-color: #360F3E;
    color: white;
    padding: 10px 25px;
    border: none;
    border-radius: 25px;
    margin-top: 15px;
}


.form_shadow_box label.option-btn.category-btn {
    transition: all 0.2s ease;
    background: radial-gradient(ellipse at 35% 30%, rgba(255, 255, 255, 1) -80%, rgba(255, 255, 255, 0) 40%), rgba(12, 184, 196, 1);
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    padding: .8rem 4rem;
    border-radius: 3rem;
    cursor: pointer;
    font-size: .95rem;
    box-shadow: 4px 18px 42px rgba(0, 0, 0, 0.29), inset -3px -4px 7px rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.25);
    font-family: "Poppins", sans-serif;
}

.form_shadow_box label.option-btn.category-btn.active {
    background-color: rgba(0, 61, 75, 1);
    color: #fff;
}



section.third-form-section {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    padding: 5% 5%;
}

section.third-form-section h2 {
    padding: 0px 0px 30px;
    border-radius: 20px;
    width: 85%;
    margin: 0 auto;
}

section.third-form-section span.badge.bg-primary {
    background-color: #360f3e ! IMPORTANT;
    padding: 4px 15px;
}

section.third-form-section table#data_table td {
    padding: 20px 10px;
}

.special-main {
    background-image: url('https://img.freepik.com/free-vector/space-background-with-flat-design_23-2148200954.jpg');
    background-size: cover;
}

.special-head {
    background-color: rgba(242, 245, 246, 1);
    border-radius: 1rem;
    padding: 1rem;
}

.main-home,
.main-home-test,
.main-head,
.top-head-test,
.main-time-table,
.main-calculator {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.main-home {
    padding: 9rem 0 0 0;
    /* height: 100vh;
    overflow-y: scroll; */
}

.main-home-test {
    padding: 9rem 0 0 0;
}

.main-head {
    padding: 0 0 10rem 0;
}

.top-head-test {
    padding: 5rem 0 8rem 0;
}

.top-head-test {
    background-position: bottom !important;
}

.main-time-table {
    padding: 10rem 0 0 0;
}

.main-calculator {
    padding: 10rem 0 8rem 0;
}

.top-head-test h2,
.time-tables-inner h2 {
    font-family: "Rammetto One", cursive;
    font-weight: 400;
    line-height: 1.2;
    color: rgba(232, 114, 30, 1);
    -webkit-text-stroke: 4px rgba(255, 255, 255, 1);
    text-shadow: 2.88px 12.96px 30.24px rgba(0, 0, 0, 0.29);
    position: relative;
}

.top-head h1 {
    font-family: "Rammetto One", cursive;
    font-weight: 400;
    line-height: 1.2;
    color: rgba(232, 114, 30, 1);
    -webkit-text-stroke: 2px rgba(255, 255, 255, 1);
    text-shadow: 2.88px 12.96px 30.24px rgba(0, 0, 0, 0.29);
    position: relative;
}

.top-head h1 {
    font-size: 3.7rem;
}

.top-head-test h2 {
    font-size: 4rem;
}

.time-tables-inner h2 {
    font-size: 4.3rem;
}

.top-head h1::after {
    content: "Learn with AI";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    color: transparent;
    -webkit-text-stroke: 0;
    text-shadow: -6.48px 2.88px 14.4px rgba(255, 255, 255, 0.12);
    pointer-events: none;
}

.list ul li {
    color: rgba(255, 255, 255, 1);
    font-size: 1.28rem;
}

.main-home ul {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.main-home ul li {
    margin: 1rem 0;
    text-align: left;
}

.yellow-btn {
    border: .4rem solid transparent;
    background: radial-gradient(ellipse at 35% 30%, rgba(255, 255, 255, 1) -80%, rgba(255, 255, 255, 0) 40%), rgba(232, 171, 30, 1);
    color: rgba(15, 40, 62, 1);
    font-weight: 600;
    padding: .8rem 2.5rem;
    border-radius: 3rem;
    cursor: pointer;
    font-size: .9rem;
    box-shadow: 4px 18px 42px rgba(0, 0, 0, 0.5), inset -3px -4px 7px rgba(255, 255, 255, 0.15);
    transition: all 0.3s ease;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.25);
    font-family: "Rammetto One", sans-serif;
}

.yellow-btn:hover {
    color: rgba(15, 40, 62, 1);
    transform: translateY(-3px);
    border: .4rem solid rgb(221 164 34);
    background: radial-gradient(ellipse at 35% 30%, rgba(255, 255, 255, 1) -80%, rgba(255, 255, 255, 0) 40%), rgba(232, 171, 30, 1);
}

.blue-head {
    border: .4rem solid transparent;
    background: radial-gradient(ellipse at 35% 30%, rgba(255, 255, 255, 1) -80%, rgba(255, 255, 255, 0) 40%), rgba(28, 131, 216, 1);
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    padding: .8rem 2.5rem;
    border-radius: 3rem;
    cursor: pointer;
    font-size: .9rem;
    box-shadow: 4px 18px 42px rgba(0, 0, 0, 0.5), inset -3px -4px 7px rgba(255, 255, 255, 0.15);
    transition: all 0.3s ease;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.25);
    font-family: "Rammetto One", sans-serif;
}

.blue-head:hover {
    color: rgb(255, 255, 255);
    transform: translateY(-3px);
    border: .4rem solid rgb(21, 119, 199);
    background: radial-gradient(ellipse at 35% 30%, rgba(255, 255, 255, 1) -80%, rgba(255, 255, 255, 0) 40%), rgba(28, 131, 216, 1);
}

/* Test Section */
.test-section {
    padding: 5rem 0;
    color: #fff;
    text-align: center;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.test-section-inner {
    background: rgba(15, 58, 85, 1);
    border-radius: 2rem;
    padding: 1.5rem;
    margin: 0 10rem;
    border: 6px solid white;
}

.test-box h3 {
    font-family: "Rammetto One", cursive;
    color: rgba(232, 171, 30, 1);
    margin-bottom: 1rem;
    font-size: 2.2rem;
}

.test-box-contact h3 {
    font-family: "Rammetto One", cursive;
    color: rgba(232, 171, 30, 1);
    margin-bottom: 1rem;
    font-size: 3rem;
}

/* Contact Section */
.contact-section {
    padding: 10rem 0;
    text-align: center;
    color: #fff;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.contact-section h2 {
    font-family: "Rammetto One", cursive;
    color: #ff9f00;
    margin-bottom: 2rem;
}

.form-control {
    border-radius: .5rem;
}

.submit-btn {
    background: rgba(232, 171, 30, 1);
    border-radius: 3rem;
    padding: .6rem 2rem;
    border: none;
    font-weight: 600;
    color: #fff;
    box-shadow: 4px 18px 42px rgba(0, 0, 0, 0.29);
    transition: all 0.3s ease;
}

.submit-btn:hover {
    transform: translateY(-2px);
}

.list-item {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    margin-bottom: 1rem;
}

.list-item .icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    margin-top: 4px;
}

.top-head-col {
    padding: 3rem 0 1rem 0;
}

.test-row-second {
    background-color: #045A62;
    padding: 2rem;
    border-radius: 1.5rem;
}

.contact-form {
    max-width: 60%;
    margin: auto;
}

div#practiceSection {
    background-color: #11314D;
    padding: 3rem 0;
}

div#subject-section {
    background-color: rgba(32, 67, 98, 1);
}

.ques-ans-form .ans {
    border-radius: .7rem;
}

.question-block {
    position: relative;
    border: 4px solid transparent;
    border-radius: 2rem !important;
    background: linear-gradient(rgba(17, 49, 77, 1), rgba(17, 49, 77, 1)) padding-box,
        linear-gradient(90deg, rgba(21, 199, 178, 1), rgba(104, 54, 255, 1)) border-box;
}

.time-tables-card {
    background-color: var(--blue);
    padding: 5rem 0;
}

.time-tables-card input[type="checkbox"]:checked+.blue-btn {
    background-color: rgba(8, 56, 96, 1);
    color: #fff;
    border: .4rem solid rgba(8, 56, 96, 1);
}

.time-tables-card input[type="radio"]:checked+.blue-btn {
    background-color: rgba(8, 56, 96, 1);
    color: #fff;
    border: .4rem solid rgba(8, 56, 96, 1);
}

.times-table-buttons .time-tables-col {
    margin-bottom: .8rem;
}

.play-btn {
    width: 40%;
}

/* Profile Pages css */
#profileUpdate span.profile-name {
    font-weight: 400;
    color: #FFFFFF;
    font-size: 1.2rem;
}

#profileUpdate .profile-container {
    max-width: 80%;
    margin: 0 auto;
    padding-top: 9rem;
}

#profileUpdate .title {
    text-align: center;
    margin-bottom: 1.1rem;
    font-size: 2rem;
    font-weight: 400;
    color: white;
}

#profileUpdate .tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 3rem;
}

#profileUpdate .tab {
    background: #FFFFFF;
    border: none;
    color: #3E4A56;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    padding: .7rem 5rem;
    border-radius: 3.5rem;
    box-shadow: inset -3px -3px 6px rgba(255, 255, 255, 0.7),
        inset 3px 3px 6px rgba(0, 0, 0, 0.15);
    cursor: pointer;
    transition: all 0.3s ease;
    margin: 0 .6rem;
}

#profileUpdate .tab.active {
    background: linear-gradient(180deg, #E8AB1E, #D89A0F);
    border: none;
    color: #0F283E;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    padding: .7rem 5rem;
    border-radius: 3.5rem;
    box-shadow: inset -3px -3px 6px rgba(255, 255, 255, 0.4),
        inset 3px 3px 6px rgba(0, 0, 0, 0.25);
    cursor: pointer;
    transition: all 0.3s ease;
}

#profileUpdate .tab-content {
    display: none;
    margin-top: 1rem;
}

#profileUpdate .tab-content.active {
    display: block;
}

#profileUpdate .profile-card {
    background: #142B4C;
    padding: 2rem;
    margin-bottom: 2rem;
    /* border-radius: 12px; */
}

#profileUpdate .avatar-section {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
    gap: 1.4rem;
}

#profileUpdate .avatar {
    width: 7.5rem;
    height: 7.5rem;
    border-radius: 50%;
    margin-right: 1.1rem;
}

#profileUpdate .special-id {
    font-size: 1rem;
    margin-right: auto;
    font-weight: 400;
    color: #949697;
}

#profileUpdate .btn-change-avatar {
    background: #007BFF;
    border: none;
    padding: .7rem 1rem;
    border-radius: .5rem;
    cursor: pointer;
    color: #fff;
    display: flex;
    gap: .8rem;
    align-items: center;
}

#profileUpdate .personal-details h2 {
    margin-bottom: 1.1rem;
    font-size: 1.2rem;
}

#profileUpdate .form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 1rem;
}

#profileUpdate .form-group label {
    margin-bottom: .5rem;
}

#profileUpdate .form-group input {
    padding: .7rem;
    border-radius: .6rem;
    border: none;
    font-size: 1rem;
}

#profileUpdate .password-group input {
    flex: 1;
    margin-right: .7rem;
}

#profileUpdate .btn-change-password {
    background: transparent;
    border: none;
    color: #F6A623;
    cursor: pointer;
    font-weight: 600;
}

#profileUpdate .btn-save {
    background: linear-gradient(180deg, #F6C645, #E6A91B);
    border: none;
    color: #0F283E;
    font-family: "Rammetto One", sans-serif;
    font-size: 1rem;
    font-weight: 700;
    padding: 12px 70px;
    border-radius: 50px;
    position: relative;
    box-shadow: inset -3px -3px 6px rgba(255, 255, 255, 0.5),
        inset 3px 3px 6px rgba(0, 0, 0, 0.25);
    cursor: pointer;
    transition: all 0.3s ease;
    overflow: hidden;
}

/* Hover effect */
#profileUpdate .btn-save:hover {
    background: linear-gradient(to bottom, #E8AB1E, #FFD84D);
    transform: translateY(-2px);
    box-shadow: 0px 6px 10px rgba(0, 0, 0, 0.4);
}

#profileUpdate button.btn-change-avatar {
    background: #1C83D8;
    border-radius: 3rem;
    padding: 0.8rem 1.5rem;
    margin-top: 0.6rem;
}

/* Personal Details Card */
#profileUpdate .personal-details {
    background: #0F2C4F;
    padding: 30px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    color: #fff;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.3);
}

#profileUpdate .personal-details h2 {
    font-size: 2rem;
    font-weight: 400;
    margin-bottom: 25px;
    color: #fff;
}

/* Form Layout */
#profileUpdate .form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
    /* width: 48%; */
}

#profileUpdate .form-group label {
    margin-bottom: 6px;
    font-size: 1rem;
    font-weight: 400;
    color: #FFFFFF;
}

#profileUpdate .form-group input {
    padding: 12px;
    border-radius: 8px;
    border: none;
    font-size: 1rem;
    background: #1A3B63;
    color: #fff;
}

#profileUpdate .form-group input:focus {
    outline: 2px solid #E8AB1E;
}

/* Two-column layout */
#profileUpdate .personal-details form {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

/* Password field container */
#profileUpdate .password-field {
    display: flex;
    align-items: center;
    background: #1A3B63;
    border-radius: 8px;
    padding: 0 10px;
    height: 45px;
}

/* Password input */
#profileUpdate .password-field input {
    flex: 1;
    border: none;
    background: transparent;
    color: #fff;
    font-size: 1rem;
    padding: 10px;
}

#profileUpdate .password-field input:focus {
    outline: none;
}

/* Change button inside the field */
#profileUpdate .btn-change-password {
    background: transparent;
    border: none;
    color: #F6A623;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

#profileUpdate .btn-change-password:hover {
    color: #FFD84D;
}

#profileUpdate .filters-section {
    /* background-color: #0b3555; dark blue background */
    border-radius: 10px;
    color: #fff;
}

#profileUpdate .filters-section .form-label {
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 5px;
    color: #fff;
}

#profileUpdate .filters-section .form-select,
#profileUpdate .filters-section .form-control {
    border-radius: 8px;
    padding: 8px 12px;
    font-size: 1rem;
}

#profileUpdate .custom-table {
    border-collapse: separate;
    border-spacing: 0;
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
}

#profileUpdate .custom-table thead th {
    background-color: #21b4b0;
    /* teal header */
    color: #fff;
    font-weight: 600;
    padding: 1rem;
}

#profileUpdate .custom-table th,
#profileUpdate .custom-table td {
    padding: 12px;
    vertical-align: middle;
}

#profileUpdate .btn-view {
    background-color: #007bff !important;
    color: #fff !important;
    border-radius: 6px !important;
    padding: 6px 14px !important;
    border: none !important;
    font-size: 1rem !important;
    /* display: flex !important; */
    align-items: center !important;
    gap: 6px !important;
    justify-content: center !important;
}

#profileUpdate hr {
    color: #1C83D8;
}

#profileUpdate .btn-view:hover {
    background-color: #0056b3;
    color: #fff;
}

#profileUpdate td {
    padding: 1rem .5rem !important;
}

#profileUpdate .performance-container {
    background-color: #11314D;
    /* border-radius: 12px; */
    padding: 1rem 1rem 4rem;
    color: #fff;
}

#profileUpdate .performance-tabs {
    display: flex;
    background-color: #183F62;
    border-radius: 8px;
    padding: 1.5rem;
    gap: 0;
    justify-content: space-between;
}

#profileUpdate .perf-tab {
    flex: 1;
    padding: 16px 29px;
    border: none;
    border-radius: 18px;
    background: #234766;
    color: #93B1CA;
    font-weight: 500;
    cursor: pointer;
    margin: 0 8px;
    width: 100%;
}

#profileUpdate .perf-tab.active {
    background: linear-gradient(180deg, #4ba8ff, #1d7cd3);
    color: #fff;
    font-weight: 600;
    font-size: 1rem;
    border: none;
    border-radius: 18px;
    padding: 15px 40px;
    width: 100%;
    cursor: pointer;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
    text-align: center;
    transition: all 0.3s ease;
}

#profileUpdate .chart-card {
    background: #fff;
    border-radius: 12px;
    padding: 15px;
    color: #000;
    height: 23rem;
}

.progress-dots .correct {
    background: radial-gradient(circle, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 60%, rgba(255, 255, 255, 0) 100%), rgba(45, 202, 80, 1);
}

.progress-dots .wrong {
    background: radial-gradient(circle, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 60%, rgba(255, 255, 255, 0) 100%), rgba(227, 29, 29, 1);
}

.quiz-box {
    position: relative;
    border: 8px solid transparent;
    border-radius: 2rem !important;
    background: linear-gradient(rgba(33, 163, 242, 1), rgba(14, 92, 204, 1)) padding-box, linear-gradient(90deg, rgba(32, 240, 240, 1), rgba(10, 56, 119, 1)) border-box;
}

.question-box input,
.question-box {
    background-color: rgba(8, 24, 54, 1);
    border: 0;
    font-size: 1.75rem !important;
    color: rgba(255, 255, 255, 1) !important;
    border-radius: 1rem;
    padding: 1rem 0;
}

.question-box input:focus {
    background-color: rgba(8, 24, 54, 1);
    ;
}

.btn-warning-custom,
.btn-danger-custom,
.btn-success-custom {
    transition: all 0.2s ease;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    padding: .6rem 4rem;
    border-radius: 3rem;
    cursor: pointer;
    font-size: 2rem;
    box-shadow: 4px 18px 42px rgba(0, 0, 0, 0.29), inset -3px -4px 7px rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.25);
    font-family: "Poppins", sans-serif;
    border: .4rem solid transparent;
    justify-content: center;
    display: flex;
}

.btn-warning-custom:hover {
    background: rgb(222 114 5) !important;
}

.btn-danger-custom:hover {
    background: rgb(197 19 12) !important;
}

.btn-success-custom:hover {
    background: rgb(0 144 32) !important;
}

.btn-warning-custom {
    background: radial-gradient(ellipse at 35% 30%, rgba(255, 255, 255, 1) -80%, rgba(255, 255, 255, 0) 40%), rgba(249, 132, 14, 1);
}

.btn-danger-custom {
    background: radial-gradient(ellipse at 35% 30%, rgba(255, 255, 255, 1) -80%, rgba(255, 255, 255, 0) 40%), rgba(219, 25, 17, 1);
}

.btn-success-custom {
    background: radial-gradient(ellipse at 35% 30%, rgba(255, 255, 255, 1) -80%, rgba(255, 255, 255, 0) 40%), rgba(12, 161, 45, 1);
}

span#timer {
    font-size: 1.3rem;
}

.timer {
    box-shadow:
        4px 18px 42px rgba(0, 0, 0, 0.2),
        inset -3px -4px 7px rgba(0, 0, 0, 0.15);
}

.btn-close-custom {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    font-size: 1.5rem;
    font-weight: bold;
    color: rgba(255, 255, 255, 0.8);
    background: radial-gradient(circle at 30% 30%,
            rgba(255, 255, 255, 0.4) 0%,
            rgba(236, 14, 82, 1) 40%);
    box-shadow:
        2px 5px 15px rgba(0, 0, 0, 0.28),
        inset -1.5px -2px 3px rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    transition: transform 0.2s ease;
    top: 1rem;
}

.btn-close-custom:hover {
    transform: scale(1.05);
}

#resultModal .modal-content {
    background: #fff;
    border-radius: 1rem;
    padding: 1rem;
}

#resultModal .result-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    border-radius: 1rem !important;
    background: radial-gradient(ellipse at 30% 20%,
            rgba(255, 255, 255, 0.15) 0%,
            rgba(255, 255, 255, 0) 40%),
        rgba(17, 49, 77, 1);
    box-shadow:
        4px 18px 42px rgba(0, 0, 0, 0.2),
        inset 3px 6px 14px rgba(0, 0, 0, 0.46);
    color: #fff;
    font-family: "Poppins", sans-serif;
    font-weight: 500;
}

#resultModal .result-value {
    background: rgba(255, 255, 255, 0.14);
    padding: 0.5rem 1rem;
    border-radius: 0.75rem;
    font-weight: 700;
    font-size: 1.25rem;
}

#resultModal .modal-content {
    box-shadow: 0px 3.24px 51.84px rgba(0, 0, 0, 0.1), inset 7.29px 8.1px 14.58px rgba(0, 0, 0, 0.25) !important;
    background-color: white !important;
    padding: 2rem 1.4rem !important;
    border-radius: 2rem !important;
    margin: 0 auto !important;
    border: .4rem solid rgba(255, 255, 255, 1) !important;
}

#resultModal .modal-dialog {
    transform: none;
    max-width: 40% !important;
}

canvas.confetti-canvas {
    z-index: 1111;
    pointer-events: none;
    position: fixed !important;
    top: 0;
    left: 0;
}

#resultModal .result-box-single {
    padding: 1rem 1.5rem;
    border-radius: 1rem !important;
    background: radial-gradient(ellipse at 30% 20%,
            rgba(255, 255, 255, 0.15) 0%,
            rgba(255, 255, 255, 0) 40%),
        rgba(17, 71, 77, 1);
    box-shadow:
        4px 18px 42px rgba(0, 0, 0, 0.2),
        inset 3px 6px 14px rgba(0, 0, 0, 0.46);
    color: #fff;
    font-family: "Poppins", sans-serif;
    font-weight: 500;
}

/* img.total-numbers-icon {
    width: 14%;
} */

.subjects-icon {
    max-width: 50%;
}

.clouds {
    margin-top: -9rem;
    width: 100%;
    overflow-x: hidden;
}

img#selected-avatar {
    width: 7rem;
    height: 7rem;
}

.hamburger {
    display: none;
    cursor: pointer;
    flex-direction: column;
    justify-content: space-between;
    width: 25px;
    height: 20px;
}

.hamburger span {
    display: block;
    height: 3px;
    background: #fff;
    border-radius: 2px;
    transition: 0.3s;
}

.icon {
    width: 70%;
}

.icon.icon-below {
    width: 85%;
}

li.nav-item {
    width: 49%;
}

.home-btn {
    width: 70% ! IMPORTANT;
}

.custom-modal {
    box-shadow: 0px 3.24px 51.84px rgba(0, 0, 0, 0.1), inset 7.29px 8.1px 14.58px rgba(0, 0, 0, 0.25) !important;
    background-color: white !important;
    padding: 2rem 1.4rem !important;
    border-radius: 2rem !important;
    margin: 0 auto !important;
    border: .4rem solid rgba(255, 255, 255, 1) !important;
}

.custom-modal-dialog {
    max-width: 35%;
}

img.timer-icon {
    width: 2rem;
}

/* .singletime {
    height: 8rem;
    overflow-y: scroll;
    margin-bottom: 2rem;
} */

.speech-bubble {
    position: absolute;
    background: #fff;
    border: 5px solid rgba(232, 171, 30, 1);
    border-radius: 1.4rem;
    padding: 1.5rem 1.6rem;
    width: 28rem;
    font-size: 1.5rem;
    color: #222;
    line-height: 1.6;
    opacity: 0;
    transform: scale(0.5);
    animation: popIn 1.2s ease forwards;
    font-family: "Sniglet", system-ui;
    right: 4rem;
    top: 13rem;
    box-shadow: 0 0 24px rgba(249, 132, 14, 0.5);
    border-radius: 20px;
    stroke-dasharray: 800;
    stroke-dashoffset: 800;
    animation: borderDraw 2s ease forwards, popIn 1.2s ease forwards;
}

.speech-bubble::after {
    content: "";
    position: absolute;
    bottom: -20px;
    right: 40px;
    border-width: 20px 20px 0;
    border-style: solid;
    border-color: #fff transparent transparent transparent;
}

.speech-bubble::before {
    content: "";
    position: absolute;
    bottom: -26px;
    right: 38px;
    border-width: 26px 22px 0;
    border-style: solid;
    border-color: rgba(232, 171, 30, 1) transparent transparent transparent;
}

@keyframes popIn {
    0% {
        opacity: 0;
        transform: scale(0.5);
    }

    60% {
        opacity: 1;
        transform: scale(1.05);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes borderDraw {
    from {
        border-color: transparent;
    }

    to {
        border-color: rgba(232, 171, 30, 1);
    }
}

#starsOverlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}

.star {
    position: absolute;
    width: 0.7rem;
    height: 0.7rem;
    background: rgb(232, 171, 30);
    opacity: 0.9;
    animation: twinkle 0.3s infinite ease-in-out alternate;
    clip-path: polygon(50% 0%,
            61% 35%,
            98% 35%,
            68% 57%,
            79% 91%,
            50% 70%,
            21% 91%,
            32% 57%,
            2% 35%,
            39% 35%);
}

@keyframes twinkle {
    from {
        opacity: 0.3;
    }

    to {
        opacity: 1;
    }
}

.falling-star {
    position: absolute;
    width: 0.7rem;
    height: 0.7rem;
    background: white;
    opacity: 0.9;
    animation: fall 4s linear forwards;
    clip-path: polygon(50% 0%,
            61% 35%,
            98% 35%,
            68% 57%,
            79% 91%,
            50% 70%,
            21% 91%,
            32% 57%,
            2% 35%,
            39% 35%);
}

@keyframes fall {
    0% {
        transform: translate(0, 0);
        opacity: 1;
    }

    100% {
        transform: translate(-100px, 600px);
        opacity: 0;
    }
}

/* .hen-container {
    height: 80px;
    position: relative;
} */
#hen {
    /* transform: scaleX(-1); */
    width: 2.5rem;
    transition: left 0.5s, transform 0.5s;
    top: .3rem
}

.progress-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    min-height: 50px;
}

.egg {
    width: 1rem;
    height: 1.5rem;
    background: #fff8dc;
    border-radius: 50% 50% 45% 45% / 60% 60% 40% 40%;
    margin: 4px;
    box-shadow: inset -2px -3px 6px rgba(0, 0, 0, 0.2),
        0 2px 6px rgba(0, 0, 0, 0.3);
    transition: background 0.3s ease, transform 0.3s ease, opacity 0.5s ease;
    position: relative;
    opacity: 0;
    z-index: 0;
}

.egg.correct {
    background: #6ecf68;
}

.egg.wrong {
    background: #e74c3c;
}

#hen {
    z-index: 5;
    position: absolute;
}

.phone-number-code .iti__selected-flag {
    border-radius: 1rem;
}

.dropdown-menu li a {
    font-weight: 600 !important;
    cursor: pointer;
}

.navLinks .dropdown-item:focus,
.dropdown-item:hover {
    color: #ffffff;
    background-color: #1c83d8;
    border-radius: 0.3rem;
}

.second-sec .form_shadow_box {
    background-color: rgba(17, 49, 77, 1);
    border: 0;
    box-shadow: none;
    color: #fff;
    width: 100%;
    padding: 0;
}

div#year-container,
div#category-section,
.heading-qa,
.subjects {
    width: 90%;
    margin: auto;
}

div#subject-section {
    width: 100%;
    margin: auto;
    padding: 1.5rem;
}

.subjects-icon {
    width: 23% !important;
    height: auto !important;
    object-fit: cover !important;
}

img.logo-subject {
    width: 4rem;
}

img.footer-center {
    width: 2.5rem;
}

#close-avatar-grid {
    position: absolute;
    top: -1rem;
    right: -.7rem;
    background: #fff;
    border: none;
    border-radius: 50%;
    width: 2rem;
    height: 2rem;
    font-size: 20px;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease;
}

.hen-menu img {
    width: 4rem;
    border-radius: 50%;
    height: 4rem;
    object-fit: cover;
}

.level-box {
    background: #1a3b6329 !important;
    border-radius: 1rem;
    padding: 1rem;
    height: 9rem;
    overflow-y: scroll;
    border: 1px solid #1a3b63;
}

.icons-avatars,
.avatar-wrapper,
.number-round {
    width: 3rem;
    height: 3rem;
}

.bubble-area {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    align-items: center;
    gap: 0;
    padding: 0;
    margin-top: -4rem;
}

.bubble {
    object-fit: cover;
    position: relative;
    width: 11rem;
    /* height: 8rem; */
    border-radius: 46% 54% 50% 50% / 60% 40% 60% 40%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
    font-size: 1.1rem;
    overflow: hidden;
    backdrop-filter: blur(4px);
    animation: morph 5s ease-in-out infinite alternate;
    isolation: isolate;
}

.bubble::after {
    content: "";
    position: absolute;
    top: 12%;
    left: 18%;
    width: 45%;
    height: 45%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.9), transparent 70%);
    filter: blur(12px);
    opacity: 0.5;
    mix-blend-mode: lighten;
}

@keyframes morph {
    0% {
        border-radius: 46% 54% 50% 50% / 60% 40% 60% 40%;
    }

    50% {
        border-radius: 55% 45% 52% 48% / 40% 65% 35% 60%;
    }

    100% {
        border-radius: 46% 54% 50% 50% / 60% 40% 60% 40%;
    }
}

.buble-below {
    margin-top: -2rem;
}

.level-container {
    background: linear-gradient(180deg, #194C5B 0%, #033C55 100%);
    border: 2px solid #23527B;
    box-shadow:
        0px 4px 64px rgba(0, 0, 0, 0.1),
        inset 9px 10px 18px rgba(0, 0, 0, 0.25);
    padding: 1.2rem;
    box-sizing: border-box;
    border-radius: 2rem;
    padding: 2.5rem;
    margin: 3rem auto;
    position: relative;
}

.level-heading {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 40px;
}

.progress-line {
    position: relative;
    top: 0;
    height: 0.9rem;
    background-color: #286A80;
    border-radius: 0.7rem;
    z-index: 1;
    margin: 0 9.1rem;
    overflow: hidden;
}

.progress-line-active {
    background: linear-gradient(90deg, #ffd66b, #e6a100);
    height: 0.9rem;
    border-radius: 0.7rem;
    position: absolute;
    top: 0;
    left: -0rem;
    z-index: 2;
    transition: width 0.6s ease;
}

.progress-wrapper {
    position: absolute;
    top: 56%;
    left: 0;
    right: 0;
    z-index: 1;
}


.level-steps {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 3;
}

.level {
    text-align: center;
    color: white;
}

.level .circle {
    width: 7rem;
    height: 7rem;
    border-radius: 50%;
    background: #053e55;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
    position: relative;
    transition: 0.3s;
}

.level.active .circle {
    background: linear-gradient(180deg, #ffe08c, #f5b300);
    box-shadow: 0 0 15px rgba(255, 212, 73, 0.6);
}

.level img {
    width: 6.5rem;
    height: 6.5rem;
    opacity: 0.3;
    transition: opacity 0.3s;
    border-radius: 50%;
}

.level.active img {
    opacity: 1;
}

.level.locked img {
    filter: grayscale(100%);
    opacity: 0.2;
}

.lock-icon {
    position: absolute;
    font-size: 1.5rem;
    color: white;
    opacity: 0.8;
}

.level-title {
    font-weight: 600;
    font-size: 1.3rem;
    margin-top: 5px;
    font-family: "Sniglet", system-ui;
}

img.egg-img {
    width: 1.5rem;
    height: 2rem;
    margin-top: -.2rem;
    margin-left: -.3rem;
}

.choose-avatar1 {
    display: none !important;
}

.sec1 {
    order: 1;
}

.sec2 {
    order: 3;
}

.sec3 {
    order: 2;
}