






/* utility classes  */
.preview_img{
    height: 100px;
    width: 150px;
    border-radius: 10px;
}
.text_dark{
    color: #1c1f22 !important;
}
.text_gray{
    color: gray;
}
.text_lightgray{
    color: lightgray;
}
.active_lightblue{
    background-color: rgb(76, 76, 253) !important;
    color: whitesmoke;
}
.active_lightred{
    background-color: rgb(254, 58, 58) !important;
    color: whitesmoke;
}
.active_lightgreen{
    background-color: var(--primaryColor) !important;
    color: whitesmoke;
}
.btn {
    background-color: var(--primaryColor);
    padding: 10px 20px;
    border-radius: 5px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #f4f4f5;
    text-decoration: none;
    transition: background-color 0.3s ease, box-shadow 0.3s ease, color 0.3s ease;
    cursor: pointer;
    border: none;
}

.nobg_btn {
    background-color: transparent;
    color: #2E3A46;
    font-weight: 600;
    border: 1px solid lightgray;
}

.btn:hover,
.plain_btn:hover {
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
}

.plain_btn {
    text-decoration: none;
    border: 1px solid lightgray;
    box-shadow: var(--shadow);
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: #fff;
    padding: 17px 30px;
    border-radius: 10px;
    font-size: 18px;
    cursor: pointer;
    transition: 0.6s;
}

.relative {
    position: relative;
    z-index: 9;
}

.line_height_1_5 {
    line-height: 1.5;
}
.line_height_1{
    line-height: 1;
}
.w_50 {
    width: 50%;
}
.w_80{
    width: 80%;
}
.w_90{
    width: 90%;
}
.w_70{
    width: 70%;
}
.sm_btn {
    padding: 5px 10px;
    font-size: 15px;
}

.lg_btn {
    padding: 15px 25px;
}

.fnt_600 {
    font-weight: 600 !important;
    font-family: sans-serif !important;
}

.fnt_900 {
    font-weight: 900 !important;
}
.pt_100{
    padding-top: 100px !important;
}
.m_unset{
    margin: 0 !important;
}
.mb_0 {
    margin-bottom: 0 !important;
}
.pb_0{
    padding-bottom: 0 !important;
}
.mb_10 {
    margin-bottom: 10px !important;
}
.mb_20{
    margin-bottom: 20px !important;
}
.mb_30{
    margin-bottom: 30px !important;
}
.mb_50 {
    margin-bottom: 50px !important;
}
.mb_70 {
    margin-bottom: 70px !important;
}
.mb_80 {
    margin-bottom: 80px !important;
}
.mt_200{
    margin-top: 200px !important;
}
.mt_150{
    margin-top: 150px !important;
}
.mt_100{
    margin-top: 100px !important;
}
.mt_80{
    margin-top: 80px !important;
}
.mt_70{
    margin-top: 70px !important;
}
.mt_5{
    margin-top: 5px !important;
}
.mt_10 {
    margin-top: 10px !important;
}

.mt_20 {
    margin-top: 20px !important;
}

.mt_30 {
    margin-top: 30px !important;
}
.mt__15{
    margin-top: -15px !important;
}
.mgl_auto {
    margin-left: auto !important;
}
.margin_center{
    margin:10px auto !important;
}
.justify_end {
    justify-content: flex-end;
}
.justify_between{
    justify-content: space-between;
}
.align_start{
    align-items: start !important;
}
.align_end{
    align-items: flex-end !important;
}
.fld_column{
    flex-direction: column;
}
.d_block{
    display: block;
}

.border_none {
    border: none !important;
}

.text_dark {
    color: var(--darkColor);
}
.text_blue{
    color: blue !important;
}
.fnt_20px {
    font-size: 20px !important;
}
.fnt_25px {
    font-size: 20px !important;
}
.fnt_30px {
    font-size: 30px !important;
}
.fnts_40px{
    font-size: 40px !important;
}
.fnts_50px{
    font-size: 40px !important;
}
.fnt_16px{
    font-size: 16px !important;
}
.fnt_15px{
    font-size: 15px !important;
}
.fnt_13px{
    font-size: 13px !important;
}
.fnt_14px{
    font-size: 14px !important;
}
.text_primary{
    color: var(--primaryColor) !important;
}
.desc {
    font-size: 18px;
    color: rgb(82, 82, 91);
    line-height: 1.5;
    margin: 20px 0;
}

.max_width_700px {
    max-width: 700px;
    margin: 10px auto;
}
.max_width_600px{
    max-width: 600px !important;
    min-width: unset !important;
}
.min_width_400px{
    min-width: 400px;
}
.min_width_200px{
    min-width: 200px;
}
.min_width_150px{
    min-width: 150px;
}
.min_width_100px{
    min-width: 100px;
}
.width_unset{
    width: unset !important;
}
.width_fit_content{
    width: fit-content !important;
}
.d_inline_block{
    display: inline-block !important;
}
.margin_unset{
    margin: unset !important;
}
.fnts_16 {
    font-size: 16px;
}
.fnts_15{
    font-size: 15px;
}
.fnts_w_600{
    font-weight: 600;
    font-family: sans-serif;
}
.fnts_w_500{
    font-family: sans-serif;
    font-weight: 500;
}
.row {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.col_49 {
    width: 49%;
}

.d_flex {
    display: flex;
    align-items: center;
}
.fld_col{
    flex-direction: column !important;
}
.fld_row{
    flex-direction: row !important;
}
.flex_wrap{
    flex-wrap: wrap;
}
.flex_nowrap{
    flex-wrap: nowrap;
}
.d_none {
    display: none !important;
    /* height: 0 !important;
    overflow: hidden;
    padding: 0 !important; */
}
.overflow_x_scroll{
    overflow-x: scroll;
}
.overflow_y_scroll{
    overflow-y: scroll;
}
.overflow_hidden{
    overflow: hidden;
}
.cursor_pointer{
    cursor: pointer;
}
.justify_center {
    justify-content: center;
}

.justify_start {
    justify-content: flex-start;
}
.pl_20{
    padding-left: 20px !important;
}
.pl_50{
    padding-left: 50px !important;
}
.pl_30{
    padding-left: 30px !important;
}
.pl_10{
    padding-left: 10px !important;
}
.pl_40{
    padding-left: 40px !important;
}
.w_100 {
    width: 100% !important;
}
.max_width_unset{
    max-width: unset !important;
}
.gap_30 {
    gap: 20px;
}

.gap_10 {
    gap: 10px;
}

.gap_20 {
    gap: 20px;
}

.gap_50 {
    gap: 50px;
}

.ul_list {
    display: flex;
    gap: 20px;
    list-style-type: none;
}

.ul_list a {
    text-decoration: none;
}

.text_white {
    color: white !important;
}

.text_whitesmoke {
    color: whitesmoke;
}
.bg_white{
    background-color: white !important;
    color: #1c1f22 !important;
}
.shadow{
    box-shadow: var(--shadow);
}

.text_center {
    text-align: center !important;
}

.text_left {
    text-align: left !important;
}
.text_right{
    text-align: right !important;
}
.margin_left {
    margin-left: auto !important;
}

.decoration_none {
    text-decoration: none;
}
.decoration_underline{
    text-decoration: underline;
}
.text_uppercase{
    text-transform: uppercase;
}
.text_capitalize{
    text-transform: capitalize;
}
.text_lowercase{
    text-transform: lowercase;
}
.pdr_20{
    padding-right: 20px !important;
}

.star {
    font-size: 70px;
    animation: rotate 5s linear infinite;
    position: absolute;
}

.container {
    padding-top: 100px !important;
}
.bg_none {
    background-color: transparent;
}
.bg_primary{
    background-color: var(--primaryColor);
    color: white !important;
}
.bg_red{
    background-color: red !important;
    color: #fff !important;
}
.bg_green{
    background-color: green !important;
}
.bg_dark{
    background-color: rgb(31, 28, 28) !important;
    color: white !important;
}
.bg_orange{
    background-color: orange !important;
    color: black !important;
}
.text_red{
    color: red !important;
}
.text_dark{
    color: #1c1f22;
}
.text_green{
    color: green;
}
.text_orange{
    color: orange;
}
/* card design  */
.card {
    text-align: center;
    padding: 50px 20px;
    /* width: 95%; */
    margin: 0 auto;
    background-color: whitesmoke;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.height_unset{
    height: unset !important;
}
.height_200px{
    height: 200px;
}
.decoration_line_through{
    text-decoration: line-through;
}
.tagline {
    /* color: #aab0bc; */
    color: var(--primaryColor);
    letter-spacing: .02rem;
    font-size: 15px;
    text-transform: uppercase;
    line-height: 1.35;
    word-spacing: .01rem;
    font-weight: 900 !important;
    display: block;
    font-family: sans-serif;
}

.title {
    color: #333;
    font-size: 1.8rem;
    margin: 15px auto;
    max-width: 500px;
    text-align: center;
    font-weight: 900;
    font-family: sans-serif;
    text-transform: capitalize;
}
.sub_title{
    font-size: 1.1rem;
    font-weight: 600;
    font-family: sans-serif;
    color: #333;

}
.mt_50 {
    margin-top: 50px !important;
}
.outline_primary{
    outline-color: var(--primaryColor) !important;
}
.outline_none{
    outline: none !important;
}

.card .row {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
}

.card_shape1 {
    position: absolute;
    background-image: radial-gradient(var(--primaryColor) 2px, transparent 2.5px);
    top: -2.5rem;
    left: -2rem;
    transform: translate3d(0px, 14px, 0px);
    background-size: .75rem .75rem;
    opacity: 0.5;
    height: 8rem;
    width: 8rem;
}

.card_shape2 {
    position: absolute;
    background-image: radial-gradient(var(--primaryColor) 2px, transparent 2.5px);
    bottom: -2.5rem;
    right: -2rem;
    transform: translate3d(0px, 14px, 0px);
    background-size: .75rem .75rem;
    opacity: 0.5;
    height: 8rem;
    width: 8rem;
}

.card_shape3 {
    position: absolute;
    background-image: radial-gradient(var(--primaryColor) 2px, transparent 2.5px);
    bottom: -1rem;
    right: -1.5rem;
    transform: translate3d(0px, 14px, 0px);
    background-size: .75rem .75rem;
    opacity: 0.5;
    height: 8rem;
    width: 8rem;
}

.card_shape4 {
    position: absolute;
    background-image: repeating-linear-gradient(-55deg,
            rgba(102, 16, 242, 0) 0.8px,
            /* Transparent purple */
            rgba(102, 16, 242, 1) 1.6px,
            /* Solid purple */
            rgba(102, 16, 242, 1) 3px,
            /* Solid purple */
            rgba(102, 16, 242, 0) 3.8px,
            /* Transparent purple */
            rgba(102, 16, 242, 0) 10px
            /* Repeat */
        );
    top: -2rem;
    right: 54rem;
    transform: translate3d(0px, 3px, 0px);
    background-size: .75rem .75rem;
    opacity: 0.5;
    height: 8rem;
    width: 8rem;
    border-radius: 50%;

}

.card .col {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.02);
    width: calc(20% - 10px);
    padding: 20px;
    text-align: center;
    transition: transform 0.3s;
    border: 2px solid whitesmoke;
}

.card .col:hover {
    transform: translateY(-10px);
}

.card .col img {
    width: 50px;
    height: 50px;
    margin-bottom: 20px;
}

.card .col .title {
    color: #333;
    font-size: 1.2em;
    margin-bottom: 15px;
}

.card .col .desc {
    color: #777;
    font-size: 0.9em;
    margin-bottom: 20px;
}

.card .col a {
    color: #ff6600;
    text-decoration: none;
    font-weight: bold;
}

.card .col a:hover {
    text-decoration: underline;
}

/* hover effect  */
.card .col::after,
.card .col::before {
    position: absolute;
    content: "";
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
    z-index: 0;
}

.card .col::after {
    width: 0%;
    height: 100%;
    left: 50%;
    top: 0;
    border-bottom: 2px solid var(--primaryColor);
    border-top: 2px solid var(--primaryColor);
}

.card .col::before {
    width: 100%;
    height: 0%;
    top: 50%;
    left: 0;
    border-left: 2px solid var(--primaryColor);
    border-right: 2px solid var(--primaryColor);
}

.card .col:hover::after {
    left: 0;
    width: 100%;
    border-radius: 7px;
}

.card .col:hover::before {
    top: 0;
    height: 100%;
    border-radius: 7px;
}

/* padding  */
.p_unset{
    padding: unset !important;
}
.p_5{
    padding: 5px !important;
}
.p_10{
    padding: 10px !important;
}
.p_20{
    padding: 20px;
}
.p_30{
    padding: 30px;
}
.p_50{
    padding: 50px;
}
.pt_0{
    padding-top: 0;
}
.pb_0{
    padding-bottom:0;
}

/* rounded  */
.rounded_30{
    border-radius: 30px;
}
.rounded_20{
    border-radius: 20px;
}
.rounded_10{
    border-radius: 10px;
}
.rounded_5{
    border-radius: 5px;
}



.icon-svg {
    width: 2.6rem;
    height: 2.6rem;
}

.text_yellow {
    color: #fab758 !important;
}


.object_cover{
    object-fit: cover;
}
.height_200{
    height: 200px;
}
/* toggle  */

.toggle-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 1rem 0;
}

.toggle-switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 27px;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
    position: absolute;
}

.toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: .4s;
    border-radius: 34px;
}

.toggle-slider:before {
    position: absolute;
    content: "";
    height: 22px;
    width: 22px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    top: 2px;
}

input:checked + .toggle-slider {
    background-color: var(--primaryColor); /* Purple color */
}

input:checked + .toggle-slider:before {
    transform: translateX(29px);
}

.toggle-status::before {
    /* content: "Disabled"; */
    color: #64748b;
    font-family: sans-serif;
    font-size: 14px;
    font-weight: 500;
}

input:checked ~ .toggle-status::before {
    /* content: "Enabled"; */
    color: var(--primaryColor);
}


.bgcolor_green {
    background-color: #0d8043 !important;
    color: white !important;
}



.sm-toggle-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 1rem 0;
}

.sm-toggle-switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 22px;
}

.sm-toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
    position: absolute;
}

.sm-toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: .4s;
    border-radius: 34px;
}

.sm-toggle-slider:before {
    position: absolute;
    content: "";
    height: 16px;
    width: 16px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    top: 3px;
}

input:checked + .sm-toggle-slider {
    background-color: green; /* Purple color */
}

input:checked + .sm-toggle-slider:before {
    transform: translateX(29px);
}

.sm-toggle-status::before {
    /* content: "Disabled"; */
    color: #64748b;
    font-family: sans-serif;
    font-size: 14px;
    font-weight: 500;
}

input:checked ~ .sm-toggle-status::before {
    /* content: "Enabled"; */
    color: green;
}
.pdl_10{
    padding-left: 20px !important;
}
.pdl_20{
    padding-left: 20px !important;
}
.pdl_30{
    padding-left: 20px !important;
}
.pdl_50{
    padding-left: 20px !important;
}
.pdl_100{
    padding-left: 20px !important;
}
.mgl_10{
    padding-left: 20px !important;
}
.mgl_20{
    padding-left: 20px !important;
}
.mgl_30{
    padding-left: 20px !important;
}
.mgl_50{
    padding-left: 20px !important;
}
.mgl_100{
    padding-left: 20px !important;
}
.mgr_auto{
    margin-right: auto !important;
}
.px_50{
    padding-right: 50px !important;
    padding-left: 50px !important;
}
.px_100{
    padding-right: 100px !important;
    padding-left: 100px !important;
}
.responsive_px_70{
    padding-right: 70px !important;
    padding-left: 70px !important;
}
.px_70{
    padding-right: 70px !important;
    padding-left: 70px !important;
}
.px_150{
    padding-right: 150px !important;
    padding-left: 150px !important;
}
.pr_50{
    padding-right: 50px !important;
}
.pr_100{
    padding-right: 50px !important;
}
/* btn indicators  */
.approved_btn{
    color: green;
}
.rejected_btn{
    color: red;
}
.pending_btn{
    color: orange;
}
.successful_btn{
    color: green;
}


input,select,textarea{
    outline-color: var(--primaryColor) !important;
}
input:focus,
select:focus,
textarea:focus{
    border-color: var(--primaryColor) !important;
    outline: none !important;
}
input::after,
select::after,
textarea::after{
    border-color: var(--primaryColor) !important;
    outline: none !important;
}
input::before,
select::before,
textarea::before{
    border-color: var(--primaryColor) !important;
    outline: none !important;
}
