@import url('https://fonts.googleapis.com/css2?family=Anton&family=Fjalla+One&family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&display=swap');

body {
    margin: 0;
    padding: 0;
    border: none;
    background-color: white;
    color: black;
    position: relative;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-size: 14px;
    font-style: normal;
}

:root {
    --text-blue: #0a058b;
    --navy-blue: #03a9f5;
    --border-color-blue: #384265;
}

.text-blue {
    color: var(--text-blue);
    font-size: 28px;
    font-weight: 900;
}

.text-blue-small {
    color: var(--text-blue);
}

.simpletext {
    width: 80%;
    margin: auto;
    letter-spacing: 0.1em;
}

.font-s-10 {
    font-size: 10px;
}

.font-s-11 {
    font-size: 11px;
}

.font-s-12 {
    font-size: 12px;
}

.font-s-13 {
    font-size: 13px;
}

.font-s-14 {
    font-size: 14px;
}

.font-s-15 {
    font-size: 15px;
}

.font-s-16 {
    font-size: 16px;
}

.font-s-17 {
    font-size: 17px;
}

.font-s-18 {
    font-size: 18px;
}

.font-s-19 {
    font-size: 19px;
}

.font-s-20 {
    font-size: 20px;
}

.font-s-21 {
    font-size: 21px;
}

.font-s-22 {
    font-size: 22px;
}

.font-s-23 {
    font-size: 23px;
}

.font-s-24 {
    font-size: 24px;
}

.font-s-25 {
    font-size: 25px;
}

.font-s-26 {
    font-size: 26px;
}

.font-s-27 {
    font-size: 27px;
}

.font-s-28 {
    font-size: 28px;
}

.font-w-400 {
    font-weight: 400;
}

.font-w-500 {
    font-weight: 500;
}

.font-w-600 {
    font-weight: 600;
}

.font-w-700 {
    font-weight: 700;
}

.font-w-800 {
    font-weight: 800;
}

.font-w-900 {
    font-weight: 900;
}

.custome-input {
    background-color: rgb(238 236 253);
    display: block;
    width: 100%;
    border-radius: 8px;
    border: none;
    outline: none;
    border: 1px solid rgb(238 236 253);
    padding: 8px 10px;
}

.custome-input:focus {
    outline: none;
    border: 1px solid var(--text-blue);
    background-color: rgb(234, 231, 255);
}

.forminput {
    position: relative;
}

.input-icon {
    position: absolute;
    top: 6px;
    right: 15px;
    color: rgb(211, 211, 211);
    font-size: 20px;
}

.custome-input:focus+.input-icon {
    color: var(--text-blue);
}

.checkbox-wrap {
    font-family: sans-serif;
    font-size: 14px;
    margin-top: 10px;
}

.custom-checkbox {
    display: flex;
    align-items: center;
    cursor: pointer;
    position: relative;
    user-select: none;
    padding-left: 20px;
    line-height: 1.5;
    color: #333;
    padding-top: 1.2px;
}

/* Hide default checkbox */
.custom-checkbox input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

/* Custom checkmark box */
.custom-checkbox .checkmark {
    position: absolute;
    left: 0;
    top: 2px;
    height: 18px;
    width: 18px;
    background-color: #eee;
    border-radius: 4px;
    transition: all 0.2s ease-in-out;
    border: 1px solid #ccc;
}

/* On checked */
.custom-checkbox input:checked~.checkmark {
    background-color: #007bff;
    border-color: #007bff;
}

/* Checkmark icon */
.custom-checkbox .checkmark::after {
    content: "";
    position: absolute;
    display: none;
}

.custom-checkbox input:checked~.checkmark::after {
    display: block;
}

.custom-checkbox .checkmark::after {
    left: 6px;
    top: 2px;
    width: 4px;
    height: 9px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.link-text {
    text-decoration: none;
    color: var(--text-blue);
}

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

.submitbutton {
    width: 100%;
    background-color: var(--text-blue);
    color: white;
    text-align: center;
    border: none;
    border-radius: 10px;
    padding: 6px 0px;
    display: block;
    outline: none;

}

.submitbutton:hover {
    border: none;
    outline: none;
    background-color: var(--navy-blue);
}

.submitbuttons {
    width: 100%;
    background-color: var(--navy-blue);
    color: white;
    text-align: center;
    border: none;
    border-radius: 10px;
    padding: 6px 0px;
    display: block;
    outline: none;

}

.submitbuttons:hover {
    border: none;
    outline: none;
    background-color: var(--text-blue);
}

.mt-top--2 {
    margin-top: -3px;
}

.sada-link {
    text-decoration: none;
    color: black;
}

.profile-image {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    /* border: 1px solid black; */
    background-color: bisque;
}

.profile-image img {
    width: 100%;
    height: 100%;
    border-radius: 50%;

}



.maincard {
    background-color: rgb(249 249 249);
    padding: 10px 10px;
    border-radius: 8px;
    margin-top: 15px;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
}

.text-uppecase {
    text-transform: uppercase;
}

.dashboard-main-button {
    background-color: rgb(235, 235, 235);
    border-radius: 25px;
    text-align: center;
    padding: 2px 0px;
    width: 100%;
    margin: auto;
}

.slidecontainer {
    height: 140px;
}

.carousel-inner img {
    height: 100%;
    border-radius: 8px;
}

.pb-25 {
    padding-bottom: 45px;
    margin-bottom: 45px;
}

.profile-image-card {
    width: 50px;
    height: 50px;
    border-radius: 8px;
}

.profile-image-card img {
    width: 100%;
    height: 100%;
    border-radius: 8px;

}

.image-card {
    background-color: rgb(252 252 252);
    padding: 14px 10px;
    border-radius: 8px;
    margin-top: 15px;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
}

.link-card {
    background-color: rgb(252 252 252);
    padding: 6px 10px;
    border-radius: 8px;
    margin-top: 10px;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
}

.bg-blue {
    background-color: var(--text-blue);
    color: white;
}

.pt-05 {
    padding-top: 1px;
}

.footersection {
    position: fixed;
    width: 100%;
    bottom: 0px;
    background-color: var(--text-blue);
    padding: 15px 10px;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}

.icon-footer {
    background-color: rgb(49 41 197 / 36%);
    width: 40px;
    height: 40px;
    border-radius: 8px;
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 6px;
}

.icon-footer svg {
    stroke: #ffffff;
    /* default white */
    transition: stroke 0.3s ease, background-color 0.3s ease;
}

.icon-footer.active {
    background-color: rgb(255, 255, 255);
    width: 40px;
    height: 40px;
    border-radius: 8px;
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 6px;
    position: relative;
}

.icon-footer.active svg {
    stroke: #3129c5;
    /* your desired blue */
}

.icon-footer svg .st0 {
    fill: #ffffff;
    transition: fill 0.3s ease;
}

.icon-footer.active svg .st0 {
    fill: #3129c5;
    /* Blue when active */
}

.icon-footer .svgicon {
    fill: #ffffff;
    stroke: #ffffff;
    transition: fill 0.3s ease, stroke 0.3s ease;
}

.icon-footer.active .svgicon {
    fill: #3129c5;
    /* blue icon */
    stroke: #3129c5;
    /* blue outline */
}

.pb-25 {
    padding-bottom: 65px;
    margin-bottom: 65px;
}

.planCVard {
    background-color: rgb(249, 249, 249);
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
    padding: 10px 8px;
    position: relative;
}

.circleimage {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    position: absolute;
    top: -25px;
    right: 25px;
}

.circleimage img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
}

.header {
    background-color: rgb(249, 249, 249);
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
    width: 100%;
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
    position: fixed;
    top: 0px;
    padding: 8px 4px;
    margin-bottom: 20px;
}

.planCVard img {
    width: 100%;
    border-radius: 8px;

}

.modelBottom {
    width: 100%;
    position: fixed;
    z-index: 9;
    bottom: -350px;
    /* Hidden initially below the screen */
    height: 350px;
    background-color: rgb(250, 250, 250);
    border-top-left-radius: 16px;
    border-top-right-radius: 16px;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
    transition: bottom 0.4s ease-in-out;
}

.modelBottom.active {
    bottom: 0;
    /* Slides up into view */
}
.numeric-keypad {
    display: grid;
    grid-template-columns: repeat(3, 100px);
    grid-gap: 10px;
    position: fixed;
    bottom: 92px;
    justify-content: center;
    left: 0;
    right: 0;
    margin: 0 auto;
}
.key {
    padding: 8px;
    background-color: #f2f2f2;
    border: 1px solid #ccc;
    text-align: center;
    font-size: 22px;
    cursor: pointer;
    border-radius: 8px;
    user-select: none;
    transition: background-color 0.2s;
}
.key:hover {
    background-color: #ddd;
}
   .inviteimagebg {
        border-bottom-left-radius: 14px;
        border-bottom-right-radius: 14px;
    }

    .inviteimage img {
        width: 85%;
        margin: auto;
    }
    .submitbutton i.fa-whatsapp {
    color: #25D366; /* WhatsApp green */
    font-size: 20px;
}
   .qr-code img{
        display: block;
        width: 100%;
        margin: auto;
        border: 5px;
    }
    .qr-code{
        background-color: white;
        padding: 6px;
        border-radius: 8px;
         width: 50%;
        margin: auto;
        box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
        margin-top: 25px;
    }
   
    
    .rgb-color{
        background-color: rgb(249,249,249, green, blue);
    }
 .buttontext {
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    padding: 6px 4px;
    border-radius: 25px;
    background-color: rgb(206, 206, 206);
    cursor: pointer;
}

.buttontext.active {
    background-color: var(--text-blue);
    color: white !important;
}
.tonpro-image{
        width: 100%;
    }
    .tonpro-image img{
        width: 100%;
    }
    .bordertophr{
        position: relative;
        top: -15px;
        height: 1px;
        background-color: rgb(233, 233, 233);
        box-shadow: 4px 0px 8px black;
    }