/* ALl Right reserved to Mr.Neeraj kumar sharma */

*,
::after,
::before {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body{
    margin: 0px;
}
.nb_row {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
}

[class^="nb_col_"] {
    position: relative;
    width: 100%;
    min-height: 1px;
}

.nb_col_w-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: none;
}

.nb_col_1 {
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
}

.nb_col_2 {
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
}

.nb_col_3 {
    flex: 0 0 25%;
    max-width: 25%;
}

.nb_col_4 {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
}

.nb_col_5 {
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
}

.nb_col_6 {
    flex: 0 0 50%;
    max-width: 50%;
}

.nb_col_7 {
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
}

.nb_col_8 {
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
}

.nb_col_9 {
    flex: 0 0 75%;
    max-width: 75%;
}

.nb_col_10 {
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
}

.nb_col_11 {
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
}

.nb_col_12 {
    flex: 0 0 100%;
    max-width: 100%;
}
.nb_o_first,
.nb_o-0 {
    order: 0;
}

.nb_o_second,
.nb_o-1 {
    order: 1;
}

.nb_o-2 {
    order: 2;
}

.nb_o-3 {
    order: 3;
}

.nb_o-4 {
    order: 4;
}

.nb_o-5 {
    order: 5;
}

.nb_o-6 {
    order: 6;
}

.nb_o-7 {
    order: 7;
}

.nb_o-8 {
    order: 8;
}

.nb_o-9 {
    order: 9;
}

.nb_o-10 {
    order: 10;
}

.nb_o-11 {
    order: 11;
}

.nb_o-12,
.nb_o_last {
    order: 12;
}

.nb_jcc {
    justify-content: center;
}

.nb_jcfe {
    justify-content: flex-end;
}

.nb_jcsb {
    justify-content: space-between;
}

.nb_jcse {
    justify-content: space-evenly;
}
.nb_w-fc {
    width: fit-content;
}
.nb_w-full {
    width: 100%;
}
.nb_h_100,.nb_h-full {
    height: 100vh;
}
.nb_aic {
    align-items: center;
}

.nb_tac {
    text-align: center;
}

.nb_tar {
    text-align: right;
}

.nb_fwb {
    font-weight: bold;
}

.nb_fss {
    font-size: small;
}

.nb_fsl {
    font-size: large;
}

.nb_fsm {
    font-size: medium;
}
li {
    list-style-type: none;
}

nav {
    display: flex;
}
.nb_cards {
    width: 95%;
    box-shadow: 0 0 10px #d2d2d2;
    border-radius: 5px;
    margin: 2.5%;
    overflow: hidden;
}

.nb_cards_img {
    width: 100%;
    height: 100%;
    overflow: hidden;

}

.nb_cards_img img {
    width: 100%;
    height: 100%;
    background-position: center;
    background-size: cover;
}

.nb_cards_title {
    /* text-align: center; */
    font-weight: bold;
    font-size: 18px;
    margin: 0.5em;
}

.nb_cards_content {
    padding: 0.5em;
    font-size: 16px;
}

table {
    width: 100%;
    border-collapse: collapse;
}

table tr th {
    background-color: #fee5cc;
    padding: 5px;
    font-size: 16px;
    font-weight: bold;
    text-transform: capitalize;
}

table tr:nth-child(even) {
    background-color: #f1efef;
}

table tr td {
    text-align: center;
    font-size: 16px;
}

table tr:hover {
    background-color: #cfc7f7;
    cursor: default;
}

.nb_bgdarkblue {
    background-color: rgb(8, 8, 107);
    color: white;
}

#nb_notifaction {
    position: fixed;
    top: 3%;
    right: -40%;
    padding: 0.5em 1.2em;
    font-size: 18px;
    border-radius: 5px;
    box-shadow: 0 0 8px rgb(70, 71, 71);
    transition: 0.5s;
    z-index: 200;
}

.nb_animation {
    animation: notification both 5s linear;
}

.nb_success {
    background-color: rgb(56, 246, 170);
}

.nb_danger {
    background-color: rgb(250, 114, 141);
}

.nb_form_box_cover {
    height: 100vh;
    padding: 1em;
}

.nb_form_box {
    box-shadow: 0 0 8px rgb(110, 110, 110);
    border-radius: 3px;
    overflow: hidden;
    /* padding: 0.5em; */
}

input[type="radio"] {
    width: 1em;
    aspect-ratio: 1/1;
    box-shadow: unset;
    margin: 0px 3px;
    cursor: pointer;
}

input[type="radio"]:focus {
    box-shadow: unset;
}

@keyframes notification {
    0% {
        right: -40%;
    }

    20% {
        right: 5%;
    }

    40% {
        right: 5%;
    }

    60% {
        right: 5%;
    }

    80% {
        right: 5%;
    }

    100% {
        right: -40%;
    }
}

.nb_btn_group {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0.5em;
    gap: 5px;
}

form {
    padding: 1em;
}

form label {
    font-weight: bold;
    padding-left: 0.5em;
    font-size: 18px;
}

form input {
    width: 100%;
    border: 1.5px solid darkblue;
    outline: none;
    padding: 5px;
    font-size: 16px;
    border-radius: 3px;
}

form input:focus {
    box-shadow: 0 0 3px darkblue;
}

.nb_input_type {
    border: 2px solid darkblue;
    border-radius: 4px;
    width: 100%;
    font-size: 18px;
    padding: 2px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: nowrap;
    margin: 0.5em 0;
}

.nb_input_type input {
    border: none;
    outline: none;
    border-radius: 0px;
    background-color: transparent;
    box-shadow: unset;
}

.nb_input_type input:focus {
    border: none;
    outline: none;
    box-shadow: none;
}

.nb_hidden {
    display: none;
}

.nb_colsection {
    display: none;
}

.nb_block {
    display: block;
}

.nb_form_btn {
    padding: 0.5em 1.5em;
    font-weight: bold;
    border: none;
    outline: none;
    font-size: 16px;
    border-radius: 3px;
    cursor: pointer;
}

.nb_cancle_btn {
    background-color: crimson;
    color: white;
}

.nb_submit_btn {
    background-color: rgb(78, 216, 251);
}

.nb_error {
    color: crimson;
    padding: 0.5em 1em;
}

.nb_my-1 {
    margin: 1em 0px;
}
.nb_my-2 {
    margin: 2em 0px;
}
.nb_mb-1 {
    margin-bottom: 1em;
}

.nb_mt-1 {
    margin-top: 1em;
}
.nb_mt-2 {
    margin-top: 2em;
}
.nb_mt-3 {
    margin-top: 3em;
}
.nb_mx-1 {
    margin: 0px 1em;
}

.nb_ml-1 {
    margin-left: 0.5em;
}

.nb_m-1 {
    margin: 1em;
}
.nb_m-0{
    margin: 0px;
}

.nb_px-1 {
    padding: 0px 1em;
}
.nb_px-2 {
    padding: 0 0.5em;
}
.nb_px-6 {
    padding: 0 3em;
}
.nb_py-2 {
    padding: 2em 0;
}
.nb_py-1 {
    padding: 1em 0;
}
.nb_p-1 {
    padding: 1em;
}
.nb_p-3 {
    padding: 3em;
}

.nb_pl-2 {
    padding-left: 2em;
}
.nb_p-0{
    padding: 0;
}
.nb_previous_btn {
    background-color: #6193ff;
}

.nb_nextbtn {
    background-color: #6193ff;
}

#nb_loading {
    display: none;
    position: fixed;
    top: 40%;
    left: 40%;
    width: 10em;
    background-color: #a3baeb;
    padding: 1em;
    text-align: center;
    border-radius: 5px;
    cursor: wait;
}

.nb_form_header {
    text-align: center;
    padding: 0.5em;
    font-size: 18px;
    font-weight: bold;
    background-color: #6193ff;
}

.nb_hamburger {
    width: fit-content;
    font-size: 22px;
    font-style: normal;
    font-weight: bold;
    cursor: pointer;
    transition: 0.2s;
}

.nb_hamburger::before {
    content: "☰";

}

.nb_cross_hamburger::before {
    content: "X";
}

.nb_eye_slace {
    content: url(svg/eye-blocked.png);
    width: 15px;
}

.nb_icon_btn {
    padding: 3px 4px;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    margin: 0 3px;
}

.nb_success_btn {
    background-color: #abe6bc;
    transition: 0.3s;
}

.nb_success_btn:hover {
    background-color: #6ac684;
}

.nb_delete_btn {
    background-color: #ffcbbd;
    transition: 0.3s;
}

.nb_delete_btn:hover {
    background-color: #fcb09a;
}

.nb_gap-5 {
    gap: 5px;
}

/* For mobile phones: */
@media only screen and (max-width: 768px) {
    .nb_sm_col {
        -ms-flex-preferred-size: 0;
        flex-basis: 0;
        -webkit-box-flex: 1;
        -ms-flex-positive: 1;
        flex-grow: 1;
        max-width: 100%;
    }

    .nb_sm_col_w-auto {
        flex: 0 0 auto;
        width: auto;
        max-width: none;
    }

    .nb_sm_col_1 {
        flex: 0 0 8.333333%;
        max-width: 8.333333%;
    }

    .nb_sm_col_2 {
        flex: 0 0 16.666667%;
        max-width: 16.666667%;
    }

    .nb_sm_col_3 {
        flex: 0 0 25%;
        max-width: 25%;
    }

    .nb_sm_col_4 {
        flex: 0 0 33.333333%;
        max-width: 33.333333%;
    }

    .nb_sm_col_5 {
        flex: 0 0 41.666667%;
        max-width: 41.666667%;
    }

    .nb_sm_col_6 {
        flex: 0 0 50%;
        max-width: 50%;
    }

    .nb_sm_col_7 {
        flex: 0 0 58.333333%;
        max-width: 58.333333%;
    }

    .nb_sm_col_8 {
        flex: 0 0 66.666667%;
        max-width: 66.666667%;
    }

    .nb_sm_col_9 {
        flex: 0 0 75%;
        max-width: 75%;
    }

    .nb_sm_col_10 {
        flex: 0 0 83.333333%;
        max-width: 83.333333%;
    }

    .nb_sm_col_11 {
        flex: 0 0 91.666667%;
        max-width: 91.666667%;
    }

    .nb_sm_col_12 {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .nb_hamburger {
        display: inline-block;
    }

    .nb_icon_btn {
        margin-bottom: 3px;
    }
}