@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

a {
    text-decoration: none !important;
}

* {
    line-height: normal;
    list-style: none;
    box-sizing: border-box;
    font-family: "Roboto", sans-serif;
}

body {
    font-size: 16px;
    font-family: "Roboto", sans-serif;
    background: #fff;
}

:root {
    --primary: #012C63;
    --white: #fff;
    --black: #000;
    --secoundary: #9EB6CB;
}

select:focus,
input:focus,
button:focus,
textarea:focus {
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
    outline: none !important;
}

ul, ol {
    padding: 0;
    margin: 0;
}
/* signup */
.sn-back {
    background: var(--primary);
    padding: 10px 13px 12px;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    color: var(--white) !important;
    width: fit-content;
}

.sn-menu {
    justify-content: space-between;
    padding: 15px 0;
}

.sn-form {
    width: 572px;
    background: var(--secoundary);
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 0 20px 0 #0002;
    display: block;
    margin: -50px auto 50px;
    max-width: 100%;
}

.sn-q-form {
    width: 772px;
    background: var(--secoundary);
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 0 20px 0 #0002;
    display: block;
    margin: -50px auto 50px;
    max-width: 100%;
}

    .sn-form h1 {
        font-size: 40px;
        font-weight: 800;
        color: var(--white);
    }

    .sn-form form {
        display: flex;
        flex-wrap: wrap;
        gap: 13px;
    }

.inputbox {
    flex: 48%;
}

    .inputbox label {
        color: var(--white);
        font-size: 15px;
        display: block;
    }

    .inputbox input {
        background: var(--white);
        border: none;
        padding: 15px;
        border-radius: 10px;
        font-size: 15px;
        width: 100%;
    }

        .inputbox input::placeholder {
            color: #777;
        }

    .inputbox select {
        background: var(--white);
        border: none;
        padding: 15px;
        border-radius: 10px;
        font-size: 15px;
        width: 100%;
        color: #777;
        cursor: pointer;
        appearance: none;
        -webkit-appearance: none;
        background: url(img/arrow-down.svg),#fff;
        background-repeat: no-repeat;
        background-position: 94%;
    }

.inputbox2 {
    flex: 100%;
}

    .inputbox2 label {
        color: var(--white);
        font-size: 15px;
        display: block;
    }

    .inputbox2 input {
        background: var(--white);
        border: none;
        padding: 15px;
        border-radius: 10px;
        font-size: 15px;
        width: 100%;
    }

        .inputbox2 input::placeholder {
            color: #777;
        }

.chbox {
    display: flex;
    align-items: center;
    gap: 10px;
}

    .chbox label {
        display: block;
        position: relative;
        padding-left: 35px;
        cursor: pointer;
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
        margin: 0;
        font-size: 15px;
    }

    .chbox input {
        position: absolute;
        opacity: 0;
        cursor: pointer;
        height: 0;
        width: 0;
    }

.checkmark {
    position: absolute;
    top: -4px;
    left: 0;
    height: 25px;
    border: 1px solid #fff;
    border-radius: 8px;
    width: 25px;
}

.chbox input:checked ~ .checkmark {
    background-color: #2196F3;
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.chbox input:checked ~ .checkmark:after {
    display: block;
}

.chbox .checkmark:after {
    left: 9px;
    top: 5px;
    width: 6px;
    height: 10px;
    border: solid white;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.inputbox2 a {
    color: var(--primary);
}

.inputbox2 button {
    background: var(--primary);
    color: var(--primary);
    margin-top: 10px;
    width: 140px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 100px;
    color: var(--white);
    border: none;
    cursor: pointer;
    font-weight: 700;
    margin-bottom: 20px;
}

.allog {
    color: var(--white);
}

    .allog a {
        color: var(--primary);
        font-weight: 700;
    }
/* signup */





/* panel */
.panel {
    position: relative;
}

.content {
    padding-left: 250px;
    padding-bottom: 10px;
}

.p-menu {
    padding: 15px 50px;
    gap: 15px;
    background: var(--primary);
}

.profile {
    width: 50px;
    height: 50px;
    border-radius: 100px;
    border: 3px solid var(--white);
    cursor: pointer;
}

.p-profile {
    gap: 15px;
    color: var(--white);
}

    .p-profile p {
        font-size: 15px;
        cursor: pointer;
    }

.notif {
    cursor: pointer;
}

.w100 {
    width: 100%;
}

.contentbox {
    padding: 0 50px;
}

.dname {
    background: var(--secoundary);
    padding: 20px 30px;
    display: block;
    border-radius: 0 0 20px 20px;
    font-size: 30px;
    color: var(--primary);
    font-weight: 700;
}

.contentbox h1 {
    font-weight: 700;
    color: var(--primary);
    font-size: 30px;
}

.contentbox p {
    color: #777;
    font-size: 15px;
    line-height: 1.7;
    white-space: pre-line;
}

.pcbp {
    padding: 15px;
    border-radius: 16px;
    box-shadow: inset 0 0 15px 0 #0002;
}

.contentbox .p1-boxes {
    gap: 15px 0;
}

    .contentbox .p1-boxes .col-xl-3:nth-child(1) .pcbp {
        background: #DCD3FF;
    }

    .contentbox .p1-boxes .col-xl-3:nth-child(2) .pcbp {
        background: #B0FF9C;
    }

    .contentbox .p1-boxes .col-xl-3:nth-child(3) .pcbp {
        background: #FFF6A0;
    }

    .contentbox .p1-boxes .col-xl-3:nth-child(4) .pcbp {
        background: #FFC8C8;
    }

.pcbp span {
    color: var(--primary);
    font-size: 15px;
    font-weight: 500;
    display: block;
    margin-bottom: 30px;
}

.pcb {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 40px;
    color: var(--secoundary);
    font-weight: 700;
}

.tname {
    font-weight: 700;
    color: var(--primary);
    font-size: 18px;
    text-align: left;
    display: block;
    margin: 20px 0;
}

.tb-name {
    background: var(--primary);
    color: var(--white);
    font-size: 20px;
    font-weight: 700;
}

.tb-box {
    overflow: hidden;
    border-radius: 20px;
}

.bright {
    border-right: 1px solid #fff;
}

.tb-name span {
    padding: 20px 0;
    display: block;
}

.tb-value:nth-child(even) {
    background: #D9D9D9;
}

.tb-value:nth-child(odd) {
    background: #eee;
}

.tb-value span {
    padding: 20px;
    display: block;
    color: var(--primary);
    font-size: 18px;
}

.padd {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    padding: 20px 0;
}

    .padd a {
        display: flex;
        align-items: center;
        gap: 3px;
        border-radius: 100px;
        font-size: 14px;
        padding: 10px 15px;
    }

        .padd a svg {
            width: 20px;
            height: 20px;
        }

.dt {
    background: #AFAFAF;
    color: var(--white) !important;
}

.ed {
    background: var(--white);
    color: var(--secoundary) !important;
}

.dl {
    background: var(--secoundary);
    color: var(--white) !important;
}

.tb-value2 span {
    padding: 26px 0;
}

.mybutton {
    background: var(--primary);
    color: var(--white) !important;
    padding: 15px;
    font-size: 18px;
    border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 700;
    width: 100%;
    cursor: pointer;
    border: none;
}

.queform {
    border: 1px solid #D3D3D3;
    border-radius: 16px;
}

.queinpbox label {
    font-weight: 500;
    color: var(--primary);
    font-size: 20px;
    display: block;
}

.queinpbox input {
    background: #F3F3F3;
    padding: 12px 15px;
    border: none;
    font-size: 20px;
    border-radius: 10px;
    width: 100%;
}

    .queinpbox input[type='date'] {
        color: #A1A1A1;
    }

    .queinpbox input::placeholder {
        color: #A1A1A1;
    }

.queform .row {
    padding: 20px;
}

.queform select {
    padding: 12px 15px;
    border: none;
    font-size: 20px;
    border-radius: 10px;
    width: 100%;
    color: #777;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    background: url(img/arrow-down.svg),#F3F3F3;
    background-repeat: no-repeat;
    background-position: 94%;
    width: 100%;
}

.quepb {
    display: flex;
    flex-wrap: wrap;
    gap: 15px 20px;
    align-items: center;
    padding: 20px;
    border-top: 1px solid #D3D3D3;
}

    .quepb p {
        font-size: 18px;
    }

.queticks {
    display: flex;
    gap: 10px 15px;
    flex-wrap: wrap;
}

    .queticks label {
        margin: 0;
        color: #777777;
        font-size: 18px;
    }

    .queticks .checkmark {
        border: 1px solid var(--primary);
        border-radius: 4px;
        width: 20px;
        height: 20px;
        top: 0;
    }

    .queticks .chbox label {
        padding-left: 26px;
    }

    .queticks .chbox .checkmark:after {
        left: 6.5px;
        top: 2px;
    }

    .queticks .chbox input:checked ~ .checkmark {
        background: var(--primary);
    }

.acc-cards {
    background: var(--white);
    border-radius: 35px;
    overflow: hidden;
    height: 100%;
    box-shadow: rgb(0 0 0 / 10%) 0px 0px 30px 0px;
}

.acc-pname {
    padding: 15px 20px;
    text-align: center;
    font-weight: 700;
    color: var(--white);
    background: var(--secoundary);
    display: block;
    font-size: 30px;
}

.acc-cards h2 {
    font-weight: 700;
    color: var(--primary);
    font-size: 30px;
}

.acc-cards p {
    color: #4D66AE;
    font-size: 16px;
    background: var(--white);
    border-radius: 16px;
    box-shadow: 0 0 20px 0 #00000014;
    display: table;
    padding: 10px 15px;
    margin: 20px auto 0;
}

.acc-cards ul {
    margin: 30px 0;
}

    .acc-cards ul li {
        display: flex;
        gap: 10px;
        justify-content: center;
        font-size: 18px;
        align-items: center;
        color: var(--primary);
    }

        .acc-cards ul li svg {
            color: var(--secoundary);
            width: 20px;
            height: 20px;
        }

.acc-cards .mybutton {
    display: table;
    margin: 20px auto 40px;
    width: auto;
    border-radius: 100px;
    padding: 10px 30px;
}

.plan2 .acc-pname {
    background: var(--primary);
}

.plan2 {
    background: var(--secoundary);
}

    .plan2 h2 {
        color: var(--white);
    }

    .plan2 ul li {
        color: var(--white);
    }

        .plan2 ul li svG {
            color: var(--white);
        }

.acc-box2 {
    padding: 0 30px;
    position: relative;
}

.backbgw {
    position: absolute;
    width: 100%;
    left: 0;
    height: 100%;
    top: 0;
    padding: 30px 0;
    z-index: -1;
}

.backbg {
    background: #F8F8F8;
    border-radius: 35px;
    display: block;
    width: 100%;
    height: 100%;
}

.acc-box1 {
    background: #F8F8F8;
    padding: 5px 25px;
    border-radius: 10px;
    box-shadow: 0 4px 4px 0 #00000014;
    margin-bottom: 40px;
}

    .acc-box1 span {
        font-size: 20px;
    }

.acc-name {
    gap: 15px;
}

    .acc-name img {
        width: 50px;
        height: 50px;
        border-radius: 10px;
    }

    .acc-name span {
        font-size: 18px;
        font-weight: 700;
        color: var(--primary);
    }

.p5name {
    width: 16%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.tb-value5 span {
    font-weight: 700;
    white-space: pre-line;
}

.tb-result5 {
    background: #eee;
    border-radius: 0 0 20px 20px;
    overflow: hidden;
    justify-content: space-between;
}

.tp {
    background: var(--primary);
    color: var(--white);
    font-size: 20px;
    font-weight: 700;
    text-align: center;
    padding: 15px 30px;
}

.t5p {
    text-align: right;
    padding: 15px 30px;
    font-weight: 700;
    color: var(--primary);
    font-size: 20px;
}

.promobox {
    gap: 10px 15px;
    margin: 30px 0;
}

    .promobox span {
        color: var(--primary);
        font-size: 20px;
        text-align: left;
        font-weight: 700;
    }

    .promobox input {
        border: 1px solid var(--primary);
        border-radius: 10px;
        padding: 12px 15px;
        font-size: 18px;
        color: var(--primary);
        width: 300px;
        height: 51px;
    }

        .promobox input::placeholder {
            color: #ccc;
        }

    .promobox .mybutton {
        width: 100px;
        border-radius: 10px;
    }

    .promobox form {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 10px;
    }

    .promobox .mybutton {
        width: 100px;
    }

.mybutton5 {
    width: 200px !important;
    border-radius: 100px !important;
}

.tb6-textarea span {
    font-size: 15px !important;
    color: #777777 !important;
    text-align: left;
    padding: 15px;
}

.pp7box1 {
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 0 20px 0 #0001;
    margin: 40px 0;
}

.pp7title {
    color: var(--primary);
    font-weight: 700;
    font-size: 25px;
    display: block;
    margin-bottom: 20px;
}

.pp7box1 form {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.inppp7 {
    flex: 48%;
}

    .inppp7 label {
        color: var(--primary);
        font-size: 15px;
        display: block;
    }

    .inppp7 input {
        border-radius: 10px;
        padding: 15px;
        border: 1px solid #D0D0D0;
        width: 100%;
    }

.inppp7-2 {
    flex: 100%;
}

    .inppp7-2 label {
        color: var(--primary);
        font-size: 15px;
        display: block;
    }

    .inppp7-2 input {
        border-radius: 10px;
        padding: 15px;
        border: 1px solid #D0D0D0;
        width: 100%;
    }

.pp7box1 form .mybutton5 {
    margin-top: 20px;
    margin-bottom: 0 !important;
}

.p8box h2 {
    margin-bottom: 40px;
    font-size: 40px;
}

.pp8 {
    height: 90px;
}

.chartbox {
    background: #F8F8F8;
    border-radius: 20px;
    padding: 40px 20px 0;
}

    .chartbox span {
        color: var(--primary);
        font-weight: 500;
        font-size: 15px;
    }

.notifbox {
    padding: 20px 30px;
    border-radius: 15px;
    background: #EEEEEE;
    display: flex;
    font-size: 23px;
    color: var(--primary);
    font-weight: 700;
    gap: 20px;
    align-items: center;
    box-shadow: 0 4px 4px 0 #00000030;
}

    .notifbox svg {
        width: 50px;
        height: 50px;
        color: red;
    }

.w1uto {
    width: 180px !important;
}

.p9btns {
    gap: 15px;
}

.p9 {
    margin: 100px auto;
}

.resblock {
    display: none;
}

.resmenuicon {
    display: none;
    cursor: pointer;
}

.res-tbname {
    display: none;
}

.closesidebar {
    width: 100%;
    position: fixed;
    height: 100%;
    background: #0008;
    z-index: 99;
    left: 0;
    top: 0;
    visibility: hidden;
    opacity: 0;
    transition: 0.4s all;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.tb-value2p {
    display: flex;
    justify-content: center;
    align-items: center;
}

.p-name {
    position: relative;
}

.p-GeneralCode {
    position: relative;
    color: #ffffff !important;
}

.psubmenu {
    position: absolute;
    top: 180%;
    right: 0;
    display: block;
    margin: 10px auto 0;
    width: 200px;
    background: var(--white);
    box-shadow: 0 0 20px 0 #0002;
    padding: 10px;
    border-radius: 10px;
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    transition: 0.4s all;
}

    .psubmenu::after {
        content: "";
        position: absolute;
        top: -4px;
        background: var(--white);
        border-radius: 4px;
        right: 20px;
        width: 30px;
        height: 30px;
        transform: rotate(45deg);
        z-index: -1;
    }

    .psubmenu li a {
        padding: 10px;
        text-align: left;
        color: var(--primary);
        background: #9eb6cb21;
        margin-bottom: 4px;
        border-radius: 10px;
        display: block;
        transition: 0.4s all;
        display: flex;
        align-items: center;
        flex-direction: row-reverse;
        gap: 5px;
        border: 1px solid var(--secoundary);
    }

        .psubmenu li a:hover {
            color: var(--white);
            background: var(--primary);
        }

        .psubmenu li a svg {
            width: 20px;
            height: 20px;
        }

    .psubmenu li:last-child a {
        margin: 0;
    }

.cps {
    width: 100%;
    height: 100%;
    background: #0002;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    transition: 0.4s all;
}

.chacc {
    border-bottom: 1px solid var(--white);
    padding-bottom: 15px;
}

    .chacc h2 {
        color: var(--white);
        font-size: 25px;
        margin-bottom: 10px;
    }

.chaccountbg {
    flex-wrap: wrap;
    gap: 10px 25px;
}

.chaccount {
    align-items: center;
    flex-wrap: wrap;
    gap: 5px;
    flex-direction: row-reverse;
}

    .chaccount label {
        font-size: 14px;
        margin: 0;
        cursor: pointer;
    }

    .chaccount input {
        width: auto;
    }

/* footer */
.footer {
    margin-top: 30px;
    padding: 10px 0;
    border-top: 1px solid var(--secoundary);
}

    .footer p {
        text-align: left;
        font-size: 10px !important;
        color: #333 !important;
    }
/* footer */


/* sidebar */
.sidebar {
    background: var(--secoundary);
    padding: 30px 0;
    position: fixed;
    left: 0;
    top: 0;
    width: 250px;
    height: 100%;
}

    .sidebar .slogo {
        max-width: 100%;
    }

    .sidebar li {
        margin-bottom: 10px;
        padding: 0 10px 0 30px;
        font-size: 15px;
        position: relative;
    }

        .sidebar li.active::after {
            content: "";
            background: var(--white);
            border-radius: 0 10px 10px 0;
            width: 15px;
            left: 0;
            top: 0;
            position: absolute;
            height: 100%;
        }

        .sidebar li a {
            display: flex;
            align-items: center;
            gap: 10px;
            color: var(--primary);
            padding: 10px 20px;
            border-radius: 10px;
        }

.active a {
    background: var(--white);
    display: inline-flex !important;
}
/* sidebar */








@media(max-width:1250px) {
    .acc-box2 {
        padding: 0;
        gap: 30px 0;
    }
}

@media(max-width:1200px) {
    .tb-name, .tb-value span {
        font-size: 16px;
    }
}

@media(max-width:992px) {
    .resblock {
        display: block;
    }

    .resnone {
        display: none;
    }

    .sn-menu {
        justify-content: center;
    }

    .sn-form {
        margin: 20px auto 50px;
    }

    .inputbox {
        flex: 100%;
    }

    .sn-back2 {
        margin: 0 auto;
    }

    .sidebar {
        visibility: hidden;
        opacity: 0;
        left: -400px;
        z-index: 100;
        width: 320px;
    }

    .content {
        padding-left: 0;
    }

    .resmenuicon {
        display: block;
    }

    .p-menu {
        padding: 15px 20px;
    }

    .contentbox {
        padding: 0 20px;
    }

        .contentbox h1 {
            font-size: 25px;
        }

    .pcb {
        font-size: 25px;
    }

        .pcb img {
            height: 28px;
        }

    .pcbp span {
        font-size: 14px;
    }

    .tb-name {
        display: none;
    }

    .res-tb-value {
        display: flex;
        align-items: center;
        padding: 10px 20px;
        justify-content: space-between;
    }

    .tb-value {
        padding: 0;
    }

        .tb-value span {
            padding: 0;
            text-align: left;
            font-size: 20px;
        }

    .res-tb-value .res-tbname {
        color: var(--white);
        font-size: 20px;
        text-align: left;
        display: block;
    }

    .tb-value:nth-child(odd) .res-tbname {
        color: #B0B0B0;
    }

    .bright {
        border: none;
    }

    .padd {
        gap: 5px 10px;
    }

    .queform .row {
        gap: 15px 0;
    }

    .quepb p {
        text-align: left;
    }

    .acc-box1 {
        padding: 0 10px;
    }

    .acc-name img {
        width: 38px;
        height: 38px;
    }

    .acc-box1 span {
        font-size: 18px;
    }

    .p5name {
        flex: 100%;
        padding: 15px;
        border-bottom: 1px solid #C9C9C9;
    }

        .p5name:last-child {
            border: none;
        }

    .promobox {
        flex-wrap: wrap;
    }

        .promobox input {
            font-size: 14px;
            width: 224px;
        }

        .promobox form {
            flex-wrap: wrap;
            justify-content: normal;
            gap: 10px 5px;
        }

    .pp6 .p5name {
        border: none;
    }

    .tb6-textarea .res-tb-value {
        gap: 15px;
        padding: 10px 15px;
        border: 1px solid #B4B4B4;
        border-radius: 10px;
        width: 100%;
    }

    .tb6-textarea span {
        font-size: 14px !important;
    }

    .inppp7 {
        flex: 100%;
    }

    .chartp {
        gap: 30px 0;
    }

    .notifbox {
        flex-direction: column;
    }

        .notifbox p {
            line-height: 1.7;
            font-size: 20px;
            text-align: center;
        }
}

@media(max-width:380px) {
    .acc-box1 span {
        font-size: 15px;
    }
}
