@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400&display=swap');
 
*{
    margin: 0;
    padding: 0;
    font-family: 'Poppins', 'Segoe UI', sans-serif;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body{
    height: auto;
    min-height: 100vh;
}

#preloader{
    background: #000000 url(imgs/loader.gif) no-repeat center center;
    background-size: 15%;
    height: 100vh;
    width: 100%;
    position: fixed;
    opacity: .8;
    z-index: 999;
}

.home{
    background-size: cover;
    object-fit: contain;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.home:nth-child(1){
    max-width: 100%;
    max-height: 100vh;
    animation-duration: 20s;
    animation-name: sliding1;
    animation-iteration-count: infinite;
    animation-direction: normal;
    padding-bottom: 20px;
    background-size: cover;
    object-fit: cover;
    background-position: 50%;
}

@keyframes sliding1 {
    0%{
        background-image: url('imgs/IMG-20230209-WA0017.jpg');
    }

    25%{
        background-image: url('imgs/20230704_171550.jpg');
    }

    50%{
        background-image: url('imgs/20230126_175638.jpg');
    }

    75%{
        background-image: url('imgs/20230126_175615.jpg');
    }

    100%{
        background-image: url('imgs/IMG-20230211-WA0008.jpg');
    }
}

.nav{
    width: 100%;
    height: auto;
    padding: 0 30px;
    background: transparent;
    backdrop-filter: blur(2em);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.4);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 80;
}

.nav .links{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
}

.nav .links img{
    width: 55px;
    height: 40px;
    border-radius: 3px;
    cursor: pointer;
}

.nav .links .more_menu{
    width: 30px;
    height: 30px;
    border-radius: 50px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
    background: #fff;
    padding-right: 7px;
    cursor: pointer;
    transition: .3s;
    box-shadow: 0 2px 5px rgba(255, 255, 255, 0.4);
    z-index: 999;
}

.nav .links .more_menu:hover{
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.8);
}

.nav .links .more_menu span{
    width: 18px;
    height: 2px;
    margin: 1px 0;
    background: rgb(0, 0, 0);
    transition: .3s;
}

.nav .links .more_menu span:nth-child(2){
    width: 14px;
}

.nav .links .more_menu:hover span:nth-child(2){
    width: 18px;
}

.buble{
    width: 0;
    height: 0;
    background: rgb(255, 255, 255);

    position: absolute;
    top: 0;
    right: 0;
    transition: .4s;
    z-index: 99;
    opacity: .9;

    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
    text-align: right;
    padding-right: 30px;
    overflow: hidden;
}

.buble .buble_p{
    width: 15%;
    line-height: 10px;
    border-right: 1px solid rgb(0, 0, 0);
    cursor: pointer;
    margin: 3px 0;
    padding-right: 5px;
    transition: .1s;
}

.buble .buble_p:hover{
    border-right: 4px solid #f1cc54;
}

.buble .buble_p p{
    font-size: 12px;
    font-weight: 600;
    color: rgb(0, 0, 0);
    margin: 20px 0;
    font-weight: 400;
    text-transform: uppercase;
    transition: .3s;
}

.buble .buble_p:hover p{
    color: #f1cc54;
}

.nav_contacts{
    position: absolute;
    left: -100%;
    bottom: 13%;
    display: flex;
    flex-direction: column;
    transition: .9s;
}

.nav_contacts i{
    width: 20px;
}

.nav_contacts a{
    text-align: left;
    z-index: 11;
    color: rgb(0, 0, 0);
    margin: 10px 0;
    font-size: 13px;
    font-weight: 400;
    line-height: 20px;
    letter-spacing: 1px;
    text-decoration: none;
}

.nav_contacts .social_media{
    margin-top: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav_contacts .social_media a{
    font-size: 22px;
    margin-bottom: 5px;
    height: 40px;
    transition: .1s;

    width: 40px;
    height: 40px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgb(209, 206, 206);
    border: 2px solid rgb(209, 206, 206);
}

.nav_contacts .social_media a:hover{
    color: green;
    background: rgb(209, 206, 206);
}

.nav_contacts .social_media a:nth-child(2):hover{
    color: blue;
    background: rgb(209, 206, 206);
}

.nav_contacts .social_media a:nth-child(3):hover{
    color: rgb(245, 70, 70);
    background: rgb(209, 206, 206);
}

.home:nth-child(2){
    background-image: url('imgs/20230704_171754.jpg');
}

.home:nth-child(3){
    background-image: url('imgs/laptop-1205256.jpg');
}

.home:nth-child(4){
    max-width: 100%;
    max-height: 100vh;
    animation-duration: 20s;
    animation-name: sliding;
    animation-iteration-count: infinite;
    animation-direction: alternate;
    padding-bottom: 20px;
    background-size: cover;
    object-fit: cover;
    background-position: 50%;
}

@keyframes sliding {
    0%{
        background-image: url('imgs/IMG-20230209-WA0017.jpg');
    }

    25%{
        background-image: url('imgs/IMG-20230211-WA0006.jpg');
    }

    50%{
        background-image: url('imgs/IMG-20230211-WA0016.jpg');
    }

    75%{
        background-image: url('imgs/20230126_175638.jpg');
    }

    100%{
        background-image: url('imgs/IMG-20230211-WA0008.jpg');
    }
}

.home:nth-child(4){
    background-image: url('imgs/IMG-20230211-WA0001.jpg');
}

.home:nth-child(5){
    background-image: url('imgs/question-mark-1872665.jpg');
    height: auto;
}

.home:nth-child(6){
    background: #f8f5f5;
    height: auto;
    padding: 30px 0;
}

html{
    scroll-snap-type: y proximity;
}

:is(.home:last-child, #appfooter){
    background: #000;
    width: 100%;
    height: 9vh;
    position: relative;
    bottom: 0;

    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

:is(.home:last-child, #appfooter) p{
    color: #fff;
    font-size: 10px;
    font-weight: 200;
    letter-spacing: 2px;
    margin: 0 10px;
    cursor: pointer;
}

.home:nth-child(2) .join{
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: left;
    align-items: flex-end;
    padding-bottom: 20px;
}

.home:nth-child(2) .join .join_p{
    margin-right: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;
    background: #000;
    opacity: .8;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.8);
    width: auto;
    height: auto;
    padding: 25px;
}

.home:nth-child(2) .join .join_p p{
    font-size: 35px;
    color: rgb(255, 255, 255);
    letter-spacing: 2px;
    font-weight: 400;
    text-align: left;
}

.home:nth-child(2) .join .join_p p:nth-child(1){
    text-transform: uppercase;
}

.home:nth-child(2) .join .join_p p:nth-child(2){
    font-size: 15px;
    letter-spacing: 7px;
}

.but_txt_align{
    display: flex;
    align-items: center;
    padding: 20px 5px;
}

.but_txt_align h6{
    font-size: 14px;
    color: rgb(255, 255, 255);
    letter-spacing: 0;
    font-weight: 400;
    text-align: left;
    margin: 0 15px;
    line-height: 20px;
}

:is(.home:nth-child(2) .join .join_p, .vehicles .text, .home:nth-child(5) .branches .singles, .contact_us, .navi, .logout) button{
    width: 150px;
    height: 50px;
    outline: none;
    border: none;
    border-radius: 5px;
    background: #0cb436;
    color: #000;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-top: 5%;
    cursor: pointer;
    transition: .3s;
}

.join .banking .details{
    margin-left: 30px;
}

.join .banking .details img{
    width: 520px;
    height: 400px;
    box-shadow: 0 2px 5px rgba(253, 253, 253, 0.2);
}

.front_anime{
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: end;
    text-align: center;
}

.front_anime .anime_1{
    width: auto;
    padding: 10px;
    background: #000;
    opacity: .7;
}

.front_anime .anime_1 p{
    font-size: 60px;
    color: rgb(255, 255, 255);
    letter-spacing: 10px;
    font-weight: 400;
    text-transform: uppercase;
}

.front_anime .anime_1 p:nth-child(2){
    font-size: 20px;
    font-weight: 400;
    letter-spacing: 4px;
    text-transform: capitalize;
}

.home:nth-child(3){
    display: flex;
    height: auto;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.home:nth-child(3) .service_heading{
    width: 100%;
    height: 20%;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 30%;
    z-index: 50;
}

.home:nth-child(3) .service_heading h1{
    color: #ffffff;
    font-size: 40px;
    font-weight: 400;
    letter-spacing: 3px;
    margin: 0;
    text-transform: uppercase;
}

.home:nth-child(3) .services{
    width: 100%;
    height: 100%;
    padding: 0 20px;
    display: flex;
    align-items: baseline;
    justify-content: center;
}

.home:nth-child(3) .services .service_box{
    width: 300px;
    height: auto;
    padding: 30px 50px;
    background: #f1cc54;
    margin: 100px 10px;
    text-align: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.8);
}

.home:nth-child(3) .services .service_box p{
    color: rgb(255, 255, 255);
    font-size: 18px;
    font-weight: 400;
    letter-spacing: 0;
    animation-duration: 3s;
    animation-name: zoomer;
    animation-iteration-count: infinite;
    animation-direction: alternate;
}

.serve{
    width: 600px;
    height: auto;
    padding: 10px 8px;
    background: #f1cc54;
    margin-bottom: -35px;
}

#serve1{
    width: auto;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    padding: 10px;
    margin: -35px 0 10px 0;
}

.serve h6{
    color: rgb(0, 0, 0);
    font-size: 18px;
    font-weight: 400;
    letter-spacing: 0;
    margin: 5px 0;
}

.serve p{
    color: rgb(255, 255, 255);
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0;
    margin: 5px 0 5px 7px;
}

.serve .view_all{
    width: 100%;
    padding: 5px;
    text-align: right;
    cursor: pointer;
    font-size: 12px;
    font-style: italic;
    z-index: 99;
}

.home:nth-child(3) .services .service_box:nth-child(2) p{
    animation-duration: 3s;
}

.home:nth-child(3) .services .service_box:nth-child(3) p{
    animation-duration: 5s;
}

.home:nth-child(3) .services .service_box:nth-child(4) p{
    animation-duration: 7s;
}

@keyframes zoomer {
    0%{
        transform: scale(50%);
    }

    50%{
        transform: scale(90%);
    }

    100%{
        transform: scale(120%);
    }
}

.vehicles{
    width: 100%;
    height: 100%;
    padding: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 100px;
    z-index: 1;
}

.vehicles .text{
    position: inherit;
    width: 600px;
    height: auto;
    padding: 40px 10px;
    margin-bottom: -50px;
    line-height: 30px;
    border-radius: 0;
    background: #000;
    opacity: .8;
}

.vehicles .text p{
    color: rgb(255, 255, 255);
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0;
    margin: 10px 0;
}

.vehicles .text p:nth-child(1){
    text-transform: uppercase;
    font-size: 2rem;
    padding-bottom: 5px;
    border-bottom: 1px solid #fff;
}

.vehicles .text p:nth-child(2){
    margin-left: 15px;
}

:is(.vehicles .text, .home:nth-child(2) .join .join_p, .home:nth-child(5) .branches .singles, .home:nth-child(5) .subscribe, .contact_us, .sign .create form, .navi, .logout) button:hover{
    letter-spacing: 0;
}

.home:nth-child(5) .contact_us{
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 80px;
    padding-bottom: 15px;

}

.home:nth-child(5) .contact_us form{
    width: auto;
    height: auto;
    background: transparent;
    backdrop-filter: blur(2em);
    border-radius: 5px;
    z-index: 1;
    margin-bottom: -40px;
    padding: 0 10px;
    padding-bottom: 20px;
    border-bottom: 2px solid #f1cc54;
    box-shadow: 0 2px 5px rgba(255, 255, 255, 0.2);
}

.home:nth-child(5) .contact_us form h1{
    color: #f1cc54;
    font-size: 40px;
    font-weight: 400;
    letter-spacing: 3px;
    margin: 0;
    text-transform: uppercase;
    padding: 10px;
}

.home:nth-child(5) .contact_us form .inputs{
    width: auto;
    display: flex;
    align-items: center;
    margin: 25px 0;
}

.home:nth-child(5) .contact_us form .inputs i{
    color: #f1cc54;
    font-size: 20px;
    width: 40px;
    padding: 10px;
    text-align: center;
}

.home:nth-child(5) .contact_us form .inputs .input_text{
    width: 500px;
    border: none;
    outline: none;
    border-bottom: 1px solid #fff;
    font-size: 14px;
    color: #fff;
    letter-spacing: 2px;
    padding: 4px;
    margin: 0 5px;
    background: transparent;
}


.home:nth-child(5) .contact_us form .inputs .input_text:focus{
    border-bottom: 1px solid #f1cc54;
}

::placeholder{
    color: #cac6c6;
}

.home:nth-child(5) .branches{
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 20px;
}

.home:nth-child(5) .branches .singles{
    width: 20%;
    height: auto;
    background: transparent;
    backdrop-filter: blur(4rem);
    margin: 40px 10px;
    padding: 10px;
    opacity: .5;
    box-shadow: 0 2px 5px rgba(255, 255, 255, 0.6);
    overflow: hidden;
}

.home:nth-child(5) .branches .singles h1{
    font-size: 20px;
    font-weight: 400;
    letter-spacing: 6px;
    text-align: center;
    color: #fff;
    margin: 5px 0;
    text-transform: uppercase;
    border-bottom: 1px solid #000;
}

.home:nth-child(5) .branches .singles p{
    color: rgb(255, 255, 255);
    font-size: 14px;
    font-weight: 400;
    line-height: 30px;
    margin: 5px 0;
}

.home:nth-child(5) .branches .singles button{
    width: 100%;
    height: auto;
    outline: none;
    border: 1px solid #f1cc54;
    border-radius: 5px;
    background: #f1cc54;
    color: #000;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-top: 0;
    padding: 10px;
    cursor: pointer;
    transition: .3s;
}

.home:nth-child(5) .subscribe{
    width: 100%;
    height: auto;
    background: #fff;
    padding: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.home:nth-child(5) .subscribe form{
    display: flex;
    flex-direction: column;
}

.home:nth-child(5) .subscribe .inputs{
    border: 2px solid #f1cc54;
    border-radius: 50px;
    padding: 0 5px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.home:nth-child(5) .subscribe h2{
    font-size: 20px;
    font-weight: 400;
    letter-spacing: 0;
    text-align: left;
    margin: 10px 0;
    text-transform: none;
}

.home:nth-child(5) .subscribe i{
    color: #f1cc54;
}

.home:nth-child(5) .subscribe button i{
    color: #fff;
}

.home:nth-child(5) .subscribe .input_text{
    width: 350px;
    outline: none;
    font-size: 15px;
    border: none;
    font-weight: 400;
    color: #000000;
    letter-spacing: 2px;
    padding: 10px;
    margin: 10px 0 10px 0;
    background: transparent;
}

.home:nth-child(5) .subscribe button{
    width: 150px;
    height: auto;
    outline: none;
    border-radius: 50px;
    background: #f1cc54;
    border: 2px solid #f1cc54;
    color: #ffffff;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: none;
    margin: 0;
    padding: 14px 7px;
    cursor: pointer;
    transition: .3s;
}

.faqs{
    width: 100%;
    height: 70vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.faqs h1{
    color: #ffffff;
    font-size: 40px;
    font-weight: 400;
    letter-spacing: 3px;
    padding: 20PX 10PX;
    background: #f1cc54;
    margin-bottom: 40px;
    text-transform: uppercase;
}

.faqs .questions{
    width: 600px;
    height: 60px;
    background: #000;
    opacity: .9;
    padding: 40px 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid #fff;
}

.faqs .questions p{
    color: #fff;
}

.faqs .questions .more{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    padding: 5px;
    width: 40px;
    height: 40px;
    border-radius: 50px;
}

.faqs .questions .more span{
    background-color: #fff;
    width: 20px;
    height: 2px;
    margin: 1px 0;
}

.faqs .questions .more span:nth-child(2){
    transform: rotate(90deg);
    margin-top: -3px;
}

.section{
    background-image: url('imgs/qr_bg_3D.png');
    background-size: cover;
    object-fit: cover;
}

.section1{
    background: url(imgs/qr_bg_3D.png) no-repeat center center;
    background-size: cover;
    background-attachment: fixed;
    opacity: 0.8;
}

.section2{
    background-image: url('imgs/qr_bg_3D.png');
    background-size: cover;
    object-fit: cover;
}

.sections{
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.sections .items{
    height: 30px;
    padding: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.gallery{
    width: 100%;
    height: auto;
    padding: 20px 0 5px 0;
    overflow: hidden;
}

.gallery .gallery_heading{
    width: 100%;
    height: auto;
    padding: 20px 0;
    display: flex;
    border-bottom: 1px solid #f1cc54;
    justify-content: right;
    align-items: end;
}

.gallery .gallery_heading h1{
    color: #000000;
    font-size: 35px;
    font-weight: 400;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.gallery .pictures{
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.gallery .pictures .pic_box{
    width: 410px;
    height: 220px;
    background: #fff;
    margin: 3px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    cursor: pointer;
}

.gallery .pictures .pic_box:hover{
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
}

.gallery .pictures .pic_box img{
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    transition: .8s;
    transform: scale(95%);
    object-fit: cover;
    background-size: cover;
}

.gallery .pictures .pic_box img:hover{
    transform: scale(103%);
}

.sign{
    width: 100%;
    height: auto;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 60px 0;
}

.sign .heading{
    width: 100%;
    height: auto;
    padding: 10px 0;
    padding-right: 10px;
    display: flex;
    flex-direction: column;
    justify-content: right;
    align-items: end;
    text-align: right;
}

.sign .heading h1{
    color: #fff;
    font-size: 3em;
    font-weight: 600;
    text-transform: uppercase;
}

.sign .heading p{
    font-size: 14px;
    background: #fff;
    padding: 10px;
    border-bottom: 2px solid #55ee7b;
}

.sign .create{
    padding: 20px 0;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.sign .create p{
    font-size: 15px;
    color: #0cb436;
}

.sign .create form{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;
    background: #fff;
    border-radius: 10px;
    width: 50%;
    height: auto;
    padding: 30px 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.7);
}

.sign .create form h1{
    color: #22e653;
    font-size: 3em;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-top: -20px;
    margin-bottom: 10px;
    padding-bottom: 5px;
}

.sign .create form .inputs{
    width: 100%;
    display: flex;
    align-items: center;
    margin: 15px 0;
    border-radius: 4px;
    border: 2px solid #0ee745;
}

.sign .create form .inputs i{
    color: #1bf852;
    font-size: 20px;
    width: 40px;
    padding: 10px;
    text-align: center;
}

:is(.sign .create form .inputs) select, .input_text{
    width: 100%;
    border: none;
    outline: none;
    font-size: 14px;
    color: #000000;
    letter-spacing: 2px;
    padding: 10px 2px;
    margin: 0 10px;
    background: transparent;
}

:is(.sign .create form .inputs) select, .input_text:focus{
    border-bottom: none;
}

.sign .create form button{
    width: 100%;
    height: auto;
    outline: none;
    border-radius: 4px;
    background: linear-gradient(to right, #1bf852, #62ff89);
    border: none;
    color: #262424;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin: 0;
    padding: 14px 7px;
    cursor: pointer;
    transition: .3s;
}

.sign .create form .help{
    width: 100%;
    height: auto;
    padding: 10px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.sign .create form .help p{
    font-size: 14px;
    font-weight: 400;
    color: #000;
    cursor: pointer;
    padding: 5px 0;
}

.products{
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    background-image: url('imgs/laptop-1205256.jpg');
    background-size: cover;
    object-fit: cover;
    padding-top: 30px;
}

.products h6{
    padding: 20px;
    font-size: 20px;
    color: #ffffff;
    font-weight: 400;
    text-transform: uppercase;
}

.products .more_info{
    width: 80%;
    height: auto;
    padding: 20px 10px;
    margin: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.6);
    background: #f1cc54;
    opacity: .9;
}

.products .more_info .packs{
    width: 100%;
    height: auto;
    padding: 10px;
    background: #facf44;
    display: flex;
    justify-content: space-between;
    margin: 5px 0;
}

.products .more_info:nth-child(5){
    width: 99%;
    background: #ffffff;
}

.products .more_info:nth-child(5) h6{
    color: #000;
}

.products .more_info .packs:nth-child(odd){
    background: #ffde66;
}

.products .more_info p{
    font-size: 14px;
    font-weight: 100;
    letter-spacing: 1px;
}

.products .more_info .packs:nth-child(2) p{
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.products .more_info .packs p{
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: none;
    width: 100%;
}

.join_now{
    position: fixed;
    bottom: 50%;
    right: 0;
    outline: none;
    border: none;
    color: #000000;
    width: 100px;
    height: auto;
    letter-spacing: 1px;
    font-size: 12px;
    font-weight: 400;
    padding: 10px;
    border-radius: 3px;
    background: #ffffff;
    z-index: 10;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.4);
    transition: .3s;
}

.join_now:hover{
    background: #f3d77a;
    color: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.6);
}

.join_now1{
    position: fixed;
    bottom: 42%;
    right: 0;
    outline: none;
    border: none;
    color: #000000;
    width: 100px;
    height: auto;
    letter-spacing: 1px;
    font-size: 12px;
    font-weight: 400;
    padding: 10px;
    border-radius: 3px;
    background: #fff;
    z-index: 10;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    transition: .3s;
}

.join_now1:hover{
    background: #0ee745;
    color: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.7);
}

.join_now2{
    position: fixed;
    bottom: 58%;
    right: 0;
    outline: none;
    border: none;
    color: #000000;
    width: 100px;
    height: auto;
    letter-spacing: 1px;
    font-size: 12px;
    font-weight: 400;
    padding: 10px;
    border-radius: 3px;
    background: #ffffff;
    z-index: 10;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.4);
    transition: .3s;
}

.join_now2:hover{
    background: #f3d77a;
    color: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.6);
}

.apply ::-webkit-scrollbar{
    width: 0;
}

.apply{
    width: 100%;
    height: auto;
    padding: auto 0;
    display: flex;
    flex-direction: column;
    overflow-x: auto;
    overflow-y: hidden;
    justify-content: center;
    align-items: center;
    margin-bottom: 10%;
    z-index: -10 !important;
}

.apply .wrapper{
    width: 70%;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.9);
}

.apply .wrapper .header{
    width: 100%;
    height: auto;
    padding: 15px 5px;
    background: #37cc5c;
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 1 !important;
}

.apply .wrapper .header p{
    font-size: 15px;
    text-transform: capitalize;
    color: #fff;
    letter-spacing: 1px;
    text-align: right;
}

.apply .wrapper .items{
    width: 100%;
    background: #fff;
    height: auto;
    display: flex;
    border-radius: 5px;
    justify-content: left;
    align-items: center;
    margin: 3px 0;
    padding-left: 10px;
    cursor: pointer;
}

.apply .wrapper .items:nth-child(even){
    background: #f3f3f3;
}

.apply .wrapper .items .box{
    width: 35px;
    height: 35px;
    border-radius: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.apply .wrapper .items .box i{
    color: #09cf3b;
    text-align: center;
}

.apply .wrapper .items .box input{
    text-align: center;
    font-size: 1em;
}

.apply .wrapper .items p{
    font-size: 15px;
    text-transform: capitalize;
    color: #000;
    letter-spacing: 1px;
    text-align: left !important;
}

.apply .wrapper .items .details{
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: start;
    padding: 0;
}

.apply form{
    width: 99%;
    height: 100%;
    background: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    background-color: rgba(0, 0, 0, 0.5);
}

.apply form input , select{
    border-bottom: 2px solid #0ee745 !important;
    color: #000 !important;
    width: 100%;
}

.apply form button{
    background: #fff !important;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.6) !important;
}

.apply .input_text{
    width: 95% !important;
    border: none;
    outline: none;
    border-bottom: 2px solid #16ce44;
    text-transform: capitalize;
    font-size: 14px;
    color: #000;
    letter-spacing: 2px;
    padding: 4px;
    margin: 5px 15px 20px 15px;
    background: transparent;
}

.apply .wrapper .filler{
    width: 75%;
    background: #fff;
    padding: 0 0 10px 0;
    border-radius: 5px;
    margin-top: 10%;
    z-index: 10;
    overflow: hidden;
}

.apply .members{
    width: 600px;
    margin: 5px 0;
    padding: 10px 5px;
    display: flex;
    flex-direction: column;
    align-items: left;
}

.apply .members .input_text{
    width: 95%;
    font-size: 13px;
    letter-spacing: 0;
}

.apply .swipe{
    font-style: italic;
    font-size: 14px;
    margin: 5px 0 5px 0;
    padding: 10px 15px;
    cursor: pointer;
    background: #1bf852;
    color: #fff;
    border-radius: 5px;
    transition: .3s ease-in;
}

.apply .swipe:hover{
    color: #000;
    background: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
}

.apply .swipe i{
    font-size: 20px;
    margin-left: 10px;
}

.apply .navi{
    position: fixed;
    right: 1%;
    bottom: 3%;
    width: 100%;
    height: auto;
    display: flex;
    justify-content: space-between;
    padding: 20px;
    z-index: 10;
}

.tick{
    width: 100%;
    display: flex;
    justify-content: right;
}

.apply form .plan .plan_box .tick i{
    color: rgb(37, 223, 37);
    font-size: 20px;
    padding: 0 7px;
}

.apply .labels{
    margin-left: 20px;
    font-size: 13px;
}

.apply #mid{
    background: #f1cc54;
    color: #fff;
    padding: 5px 10px;
    letter-spacing: 1px; 
    font-size: 14px; 
    border-radius: 5px; 
    font-style: none;
}

.about_plans{
    width: 100%;
    height: auto;
    padding: 30px 0 0 0;
    transition: .3s;
}

.about_plans p{
    font-size: 12px;
    color: #020202;
    letter-spacing: 1px;
    font-weight: 400;
    margin-left: 5px;
    width: 250px;
    padding: 20px 10px;
    background: #ffffff;
    border-left: 4px solid #f1cc54;
    cursor: pointer;
}

.about_plans p:hover{
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.confirm{
    width: 100%;
    height: 100vh;
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.5);
}

.confirm .confirm_box{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 500px;
    height: auto;
    border-left: 3px solid #06ad30;
    border-radius: 5px;
    background: #fff;
    padding: 40px 60px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.6);
}

.confirm .confirm_box p{
    font-size: 13px;
    font-weight: 400;
    color: #000;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.confirm .confirm_box h3{
    font-size: 25px;
    font-weight: 400;
    color: orangered;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.confirm .confirm_box .actions button{
    width: auto;
    height: auto;
    padding: 15px 35px;
    outline: none;
    border: none;
    font-size: 14px;
    letter-spacing: 2px;
    cursor: pointer;
    margin: 0 10px;
    background: #fff;
    color: #16ce44;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.4);
}

.confirm .confirm_box .actions button:nth-child(1){
    color: rgb(226, 40, 40);
}

.confirm .confirm_box .actions button:hover{
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.6);
    background: #16ce44;
    color: #fff; 
}

.confirm .confirm_box .actions button:nth-child(1):hover{
    background: rgb(226, 40, 40);
    color: #fff;
}

.msg{
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 2%;
    left: 0;
    z-index: 999;
}

.msg p{
    font-size: 13px;
    font-weight: 400;
    color: #fff;
    padding: 15px 10px;
    letter-spacing: 0;
    border-radius: 4px;
    width: auto;
    display: flex;
    text-align: center;
    justify-content: space-between;
    background: rgb(241, 94, 94);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.7);
}

.profile{
    width: 100%;
    display: flex;
    flex-direction: column;
    margin-bottom: 15px;
}

.logout{
    width: 100%;
    height: auto;
    padding: 3% 20px 2% 20px;
    display: flex;
    justify-content: right;
}

.profile .top_divs{
    width: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 1% 20px 3% 20px;
}

.profile .top_divs .new_member{
    width: 220px;
    height: auto;
    text-align: center;
    padding: 20px 5px;
    border-left: 3px solid #f1cc54;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    transition: .3s;
    
    background: transparent;
    backdrop-filter: blur(1em);
    cursor: pointer;
}

.profile .top_divs .new_member:hover{
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.4);
    background: #f1cc54;
    border-left: 3px solid #000000;
}

.profile .top_divs .new_member p{
    font-size: 13px;
    letter-spacing: 0;
    font-weight: 400;
    color: #020202;
    text-transform: uppercase;
}

.panels{
    width: 100%;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    padding: 10px 5px;
    margin: 10px 0;
    background: transparent;
    backdrop-filter: blur(2em);
    padding: 4px 0;
}

.panels .heading{
    width: 100%;
    padding: 5px;
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.panels .heading p{
    font-size: 13px;
    letter-spacing: 1px;
    font-weight: 400;
    color: #ffffff;
    text-transform: capitalize;
}

.panels .dummies{
    width: 100%;
    display: flex;
    flex-direction: column;
}

.panels .dummies form{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    margin: 3px 0;
    background: #fddc6f;
}
.panels .dummies form:nth-child(even){
    background: #fde79c;
}

.panels .dummies form .pro_txt{
    width: 300px;
    border: none;
    outline: none;
    font-size: 12px;
    letter-spacing: 0;
    font-weight: 400;
    color: #020202;
    text-transform: capitalize;
    margin: 0 1px;
    background: transparent;
}

 .panels .dummies form:nth-child(2) .pro_txt{
    font-weight: 400;
    font-size: 12px;
    text-transform: capitalize;
}

.panels .dummies form:nth-child(3) .pro_txt{
    font-weight: 400;
    font-size: 12px;
    text-transform: capitalize;
}

.panels .dummies form .pro_txt::placeholder{
    color: #000;
}

.panels .dummies form button{
    width: auto;
    height: auto;
    background: transparent;
    outline: none;
    border: none;
    color: rgb(238, 49, 49);
    font-size: 20px;
    margin: 0 3px;
    cursor: pointer;
}

#myform {
    width: auto;
    height: auto !important;
    align-items: start;
    background: #fff;
    border-radius: 5px;
}

#app_pro .input_text{
    color: #000;
}

.billing{
    width: 100%;
    display: flex;
    flex-direction: column;
    padding: 5px 20px;
    background: transparent;
    backdrop-filter: blur(1em);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.billing p{
    font-size: 13px;
    letter-spacing: 0;
    font-weight: 400;
    color: #fff;
    margin: 5px 0;
}

#main_width{
    width: 350px;
    padding-right: 2px;
}

.container {
    position: relative;
    width: 100%;
    min-height: 100vh;
    overflow: hidden;
}

.container::before {
    content: "";
    background: url(imgs/qr_bg_3D.png) no-repeat center center;
    background-size: cover;
    background-attachment: fixed;
    opacity: 0.8; /* Adjust the opacity value as needed */
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1; /* Ensure the background image is behind the content */
}


.container .heading{
    width: 100%;
    height: auto;
    padding: 5px 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    background: #22e653;
    opacity: .9;
    position: relative;
    top: 0;
    left: 0;
}

.container .heading h1{
    font-size: 20px;
    color: #000;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 7px;
}

.container .heading p{
    font-size: 13px;
    color: #000000;
    font-weight: 400;
    font-style: italic;
    text-transform: capitalize;
    letter-spacing: 2px;
    padding: 8px 5px;
}

.transact_btn{
    width: auto;
    height: auto;
    padding: 4px 25px;
    margin-top: 5px;
    outline: none;
    border: none;
    background: #0ee745;
    color: #fff;
    font-size: 15px;
    border-radius: 3px;
    text-transform: uppercase;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.4);
    cursor: pointer;
}

.decide{
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 9999;
}

.decide form{
    width: 60%;
    padding: 20px 10px;
    background: #fff;
    border-radius: 4px;
}

.decide form h1{
    font-size: 3em;
    text-transform: uppercase;
    color: #28a05c;
    border-bottom: 2px solid rgb(193, 191, 191);
}

.decide form .items{
    margin-top: 10px;
    border: none;
}

.decide form .items button{
    width: auto;
    height: auto;
    padding: 10px 25px;
    outline: none;
    border: 2px solid #2dbd51;
    background: #f1efef;
    font-size: 13px;
    border-radius: 3px;
    text-transform: uppercase;
    margin: 5px 3px 10px 3px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    cursor: pointer;
    transition: .3s;
}

.decide form .items button:hover{
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
    background: #2dbd51;
    color: #fff;
}

.container .heading button{
    width: auto;
    height: auto;
    padding: 10px 25px;
    outline: none;
    border: none;
    background: #f1efef;
    font-size: 13px;
    border-radius: 3px;
    text-transform: uppercase;
    margin: 5px 0 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.4);
    cursor: pointer;
}

.container .main_panel{
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.container .main_panel .container_items{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.container .main_panel .items{
    width: 45%;
    height: 135px;
    margin: 10px 15px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.9);
    background:#fff;
    display: flex;
    align-items: center;
    justify-content: space-between !important;
    padding: 10px 20px;
    border-radius: 3px;
    cursor: pointer;
    overflow: hidden;
    transition: .3s;
    border-left: 3px solid #ffffff;
}

.container .main_panel .items:hover{
    box-shadow: rgba(0, 0, 0, 0.15) 0px 15px 25px, rgba(0, 0, 0, 0.05) 0px 5px 10px;
    border-left: 3px solid #16ce44;
}

.container .main_panel .items p{
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    transition: .3s;
    color: #06b614;
    text-transform: uppercase;
}

.container .main_panel .items i{
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 1px;
    transition: .3s;
    color: #06b614;
    text-transform: uppercase;
}

.container .main_panel .items:hover p{
    font-size: 15px;
}

.container .main_panel .items .total{
    display: flex;
    flex-direction: column;
    text-align: center;
}

.container .main_panel .items .total p{
    font-size: 11px;
    font-weight: 400;
    transition: .3s;
    color: #000000;
    text-transform: uppercase;
}

.container .main_panel .items .total p:nth-child(1){
    border-bottom: 1px solid #000;
}

.container .main_panel .admin{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.container .main_panel .admin .items{
    width: 45%;
    height: 150px;
}

.container .main_panel .admin p{
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 2px;
}

.container .main_panel .mass_imports{
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.container .main_panel .mass_imports button{
    width: 350px;
    height: auto;
    padding: 60px;
    font-size: 12px;
    border: 2px solid #0ee745;
    background: #0ee745;
    color: #fff;
    margin: 0 15px;
    border-radius: 4px;
    cursor: pointer;
    outline: none;
    transition: .6s;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.container .main_panel .mass_imports button:hover{
    border: 2px solid #0ee745;;
    background: transparent;
    color: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.6);
}

.container .main_panel .main_item{
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.3);
}

.container .main_panel .main_item form{
    width: 60%;
    height: auto;
    padding: 15px 5px;
    background: #fff;
    border-radius: 4px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.9);
}

.container .main_panel .main_item form p{
    font-size: 14px;
    color: #06ad30;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.container .main_panel .main_item form .btns{
    display: flex;
    justify-content: space-between;
}

.container .main_panel .main_item form .btns button{
    width: auto;
    height: auto;
    padding: 10px 30px;
    font-size: 13px;
    border: none;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.4);
    background: #fff;
    margin: 25px 0;
    cursor: pointer;
    outline: none;
    transition: .9s;
}

.container .main_panel .main_item form .btns button:hover{
    color: #06ad30;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.9);
}

.admin_acc{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.admin_acc form{
    width: 100%;
    display: flex;
    flex-direction: row !important;
    background: #30c956 !important;
    margin: 5px 0;
}

.admin_acc form:nth-child(even){
    background: #72ff96 !important;
}

.admin_acc form input{
    width: 40% !important;
    margin: 10px 5px;
    font-size: 11px;
    letter-spacing: 0;
    color: #000;
    border-bottom: 1px solid #fff;
}

.admin_acc form input:focus{
    border-bottom: 2px solid #c0d4c6;
}

.admin_acc form .controls{
    width: auto;
    padding: 10px;
    display: flex;
}

.admin_acc form .controls button{
    background: #fff !important;
    margin: 0 5px;
    color: #029927;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 13px;
    outline: none;
    border: none;
    cursor: pointer;
    transition: .3s;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
}

.admin_acc form .controls button:hover{
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.9);
}

.unset p{
    font-size: 13px;
    text-transform: capitalize;
    letter-spacing: 0;
    font-weight: 400;

    position: absolute;
    right: 1%;
    top: 5.5%;
    width: auto;
    height: auto;
    border-radius: 5px;
    padding: 10px 8px;
    background: #fff;
    color: #000;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.container .member_panel{
    width: 100%;
    height: max-content;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    padding: auto;
}

.container .member_panel .items{
    width: 99%;
    height: auto;
    margin: 6px 0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    background: #fff;
    border-radius: 3px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding: 10px 5px;
    cursor: pointer;
    overflow: hidden;
    transition: .3s;
}

.container .member_panel .items:hover{
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.9);
}

.container .member_panel .items .seperator{
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;

}

.container .member_panel .items p i{
    width: 20px;
}

.container .member_panel .items p{
    margin: 2px;
    text-align: start;
    font-size: 14px;
    font-weight: 400;
}

.container .member_panel .search{
    width: 100%;
    height: auto;
    padding: 20px 5px;
}

.container .member_panel .search form{
    width: 600px;
    padding: 5px;
    background: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.4);
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 3px;
}

.container .member_panel .search form .input_txt::placeholder{
    color: #008120;
}

.container .member_panel .search form .input_txt{
    width: 390px;
    height: auto;
    padding: 10px 4px;
    color: #008120;
    outline: none;
    border: none;
    text-transform: capitalize;
    border-bottom: 2px solid #1bf852 !important;
    background: transparent;
}

.container .member_panel .search form .input_txt:focus{
    border-bottom: 2px solid #09cf3b;
}

.container .member_panel .search form button{
    width: auto;
    height: auto;
    padding: 10px 25px;
    outline: none;
    border: 2px solid #1bf852;
    background: #1bf852;
    color: #fff;
    font-size: 13px;
    border-radius: 3px;
    text-transform: uppercase;
    margin: 5px 0 10px;
    cursor: pointer;
}

.container .member_panel p{
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0;
    text-transform: capitalize;
    color: #fff;
}

.container .file{
    width: 100%;
    height: 50px;
    padding: 10px;
    margin-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 10;
}

.container .file span{
    width: 500px;
    height: 3px;
    background: #09cf3b;
}

.container .file button{
    width: 60px;
    min-width: 60px;
    height: 60px;
    border: none;
    outline: none;
    border-radius: 50px;
    background: #12e447;
    border: 2px solid #12e447;
    color: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.4);
    font-size: 15px;
    text-align: center;
    transition: .3s;
    cursor: pointer;
}

.container .file button:hover{
    background: #fff;
    color: #06ad30;
    scale: 110%;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.7);
}

.container .file_fields{
    width: 100%;
    min-height: 10vh;
    display: flex;
    justify-content: center;
}

.container .file_fields form{
    width: 90%;
    height: auto !important;
    background: #fff;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
    margin: 20px 0;
    z-index: 2;
    overflow: hidden;
}

.container .file_fields form button{
    position: fixed;
    right: 2%;
    bottom: 3%;
    width: 60px;
    height: 60px;
    border-radius: 50px;
    outline: none;
    background: #09cf3b;
    border: 2px solid #09cf3b;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.7);
    color: #fff;
    font-size: 18px;
    text-transform: uppercase;
    cursor: pointer;
    transition: .3s ease-in;
}

.container .file_fields form button:hover{
    background: #fff;
    color: #09cf3b;
    font-size: 13px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.7);
}

.container .file_fields form .devider{
    width: 100%;
    display: flex;
    flex-direction: column;
}

.container .file_fields form .devider .heading{
    width: 100%;
    background: #0ee745;
    border-radius: 5px;
}

.container .file_fields form .devider .heading h3{
    font-size: 18px;
    color: #fff;
    text-transform: uppercase;
}

.container .file_fields form .devider .items{
    width: 100%;
    padding: 10px;
    display: flex;
}

.container .file_fields form .devider .doc_links{
    width: 100%;
    padding: 10px;
    display: flex;
    flex-direction: column;
}

.container .file_fields form .devider .items .cols{
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: start;
    margin: 0 20px;
}

.container .file_fields form .devider .items .cols p{
    font-size: 13px;
    color: #06ad30;
    text-transform: capitalize;
    font-weight: 500;
    margin-top: 10px;
}

:is(.container .file_fields form .devider .items .cols) input, select{
    width: 100%;
    font-size: 13px;
    padding: 5px;
    text-transform: capitalize;
    outline: none;
    border: none;
    border-bottom: 2px solid #0ee745;
}

.container .file_fields form .devider .items .cols textarea{
    width: 100%;
    height: 100px;
    font-size: 13px;
    padding: 5px;
    text-transform: capitalize;
    outline: none;
    border: 2px solid #0ee745;
}

.container .saved_files{
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin: 2% 0 10% 0;
}

.container .saved_files .files{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.container .saved_files .files .items{
    width: 99%;
    display: flex;
    background: #fff;
    justify-content: space-between;
    align-items: center;
    border-radius: 5px;
    margin: 3px 0;
    padding: 10px 5px;
    cursor: pointer;
    transition: .1s;
}

.container .saved_files .files .items:hover{
    box-shadow: rgba(0, 0, 0, 0.15) 0px 15px 25px, rgba(0, 0, 0, 0.05) 0px 5px 10px;
    border-left: 5px solid #06ad30;
}

.container .saved_files .files .items .btns{
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 90px;
}

.container .saved_files .files .items .btns p{
    width: 30px;
    height: 30px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin: 0 5px;
    padding: 10px 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.7)
}

.container .saved_files .files .items p{
    font-size: 10px;
    text-transform: capitalize;
    width: 100px;
}

.container .saved_files .files .items p:nth-last-child(1){
    width: 20px;
    font-size: 20px;
    cursor: pointer;
}

.file_more{
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 55;
}

.file_more form{
    background: #fff !important;
    width: 60%;
}

.file_more form .heading{
    width: 100%;
    background: #06ad30;
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.file_more form .heading p{
    font-size: 14px;
    text-transform: uppercase;
    color: #fff;
    font-weight: 600;
    letter-spacing: 2px;
}

.file_more form .heading button{
    width: 30px;
    height: 30px;
    border-radius: 4px;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    border: none;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.4);
}

.file_more form button{
    font-size: 15px;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 2px;
    border-radius: 4px;
    padding: 15px 40px;
    margin: 0 30px;
    border: 2px solid #30c956;
    cursor: pointer;
    background: #30c956;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.4);
}

.file_more form button:hover{
    color: #30c956;
    background: #fff;
}

.file_more form .btns{
    width: 100%;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.not_found{
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 10px;
    margin-bottom: 20px;
}

.not_found i{
    font-size: 5em;
    color: rgb(0, 68, 255);
}

.not_found p{
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 1px;
    margin-bottom: 10px;
    font-style: italic;
    color: #fff;
}

#member_panel{
    height: auto;
}

.edit_menu{
    width: 100%;
    height: auto;
}

.edit_menu .main_member{
    width: 100%;
    height: auto;
    padding: 10px 0;
}

.edit_menu .main_member p{
    font-size: 15px;
    font-weight: 400;
    padding: 5px 20px;
}

.edit_menu .main_member .info{
    width: 100%;
    height: auto;
    display: flex;
    justify-content: space-between;
    align-items: start;
    padding: 20px;
    background: #f1efef;
    opacity: .9;
    box-shadow: rgba(0, 0, 0, 0.15) 0px 15px 25px, rgba(0, 0, 0, 0.05) 0px 5px 10px;
}

.edit_menu .main_member .info p{
    font-size: 12px;
    font-weight: 400;
    padding: 5px 20px;
    color: #8d8585;
}

.edit_menu .main_member .info p:nth-child(2){
    cursor: pointer;
    border-bottom: 1px solid #f1cc54;
}

.edit_menu .member_edits{
    width: 100%;
    height: auto;
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: auto;
}

.edit_menu .items{
    height: 500px;
}

.edit_menu .items .items_header{
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.edit_menu .items .items_header h6{
    font-size: 12px;
    font-weight: 400;
    color: #fff;
}

.edit_menu .account_info{
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.edit_menu .account_info form .input_text::placeholder{
    color: #f3f0f0;
}

.edit_menu .account_info form .input_text{
    width: 100%;
    border: none;
    outline: none;
    border-bottom: 2px solid #c79a07;
    font-size: 14px;
    color: #fff;
    text-transform: capitalize;
    letter-spacing: 2px;
    padding: 4px;
    margin: 1px 0 16px 0;
    background: transparent;
}

.edit_menu .items form .input_text::placeholder{
    color: #eeeeee;
}

.edit_menu .items form .input_text{
    width: 100%;
    border: none;
    outline: none;
    border-bottom: 1px solid #c79a07;
    font-size: 14px;
    color: #ffffff;
    text-transform: capitalize;
    letter-spacing: 2px;
    padding: 4px;
    margin: 3px 3px 3px 3px;
    background: transparent;
}

.edit_menu form button{
    width: 150px;
    height: auto;
    padding: 10px 25px;
    outline: none;
    border: none;
    color: #fff;
    background: #facf44;
    letter-spacing: 2px;
    text-transform: capitalize;
    font-size: 13px;
    border-radius: 3px;
    margin: 5px 0 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    cursor: pointer;
}

.extended{
    width: 100%;
    height: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 20px;
    position: relative;
    top: 6%;
    right: 1%;
}

.extended button{
    width: 200px;
    height: auto;
    padding: 5px 20px;
    margin: 0 10px;
    outline: none;
    font-size: 12px;
    border: none;
    color: #c2bbbb;
    background: #f1cc54;
    cursor: pointer;
    transition: .3s ease-in-out;
}

.extended button:hover{
    background: #fff;
    scale: 110%;
    color: #06b614;
}

.children{
    width: 100%;
    height: auto;
    padding: 10% 0;
}

.children .heading{
    width: 100%;
    background: #fff;
    padding: 5px 20px;
    display: flex;
    justify-content: space-between;
    cursor: pointer;
}

.children .heading p{
    font-size: 20px;
    letter-spacing: 2px;
    font-style: italic;
    color: #a8a8a8;
    border-left: none;
}

.chil_data{
    width: 100%;
    height: auto;
}

.pay{
    z-index: -100 !important;
}

.payment_history{
    width: 100%;
    height: auto;
    margin-top: 1%;
    display: flex;
    flex-direction: column;
    box-shadow: rgba(0, 0, 0, 0.15) 0px 15px 25px, rgba(0, 0, 0, 0.05) 0px 5px 10px;
}

.payment_history .header{
    width: 99%;
    height: auto;
    padding: 10px;
    border-radius: 5px;
    background: #0ee745;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.payment_history .header h6{
    font-size: 15px;
    letter-spacing: 2px;
    font-weight: 500;
    text-transform: uppercase;
    color: #fff;
}

.payment_history .header p{
    font-size: 18px;
    letter-spacing: 2px;
    font-weight: 400;
    color: #fff;
    font-style: italic;
}

.payment_history .header button{
    display: none;
    width: auto;
    height: auto;
    padding: 10px 25px;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 500;
    font-style: italic;
    border: none;
    outline: none;
    background: #fff;
    box-shadow: rgba(0, 0, 0, 0.15) 0px 15px 25px, rgba(0, 0, 0, 0.05) 0px 5px 10px;
    cursor: pointer;
}

.payment_history .history{
    width: 100%;
    height: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.payment_history #history1{
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/* Container styling */
.payment_history .history .history_overflow {
    width: 100%;
    height: auto;
    display: flex;
    padding: 5px;
    flex-direction: row !important;
    overflow-x: auto;
    align-items: center;
}

/* Scrollbar track */
.payment_history .history .history_overflow::-webkit-scrollbar {
    width: 10px; /* Set the width of the scrollbar */
}

/* Handle */
.payment_history .history .history_overflow::-webkit-scrollbar-thumb {
    background: linear-gradient(45deg, #ffffff, #1fb62e); /* Gradient for the handle */
    border-radius: 50px;
}

/* Handle on hover */
.payment_history .history .history_overflow::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(45deg, #ffffff, #0ee745); /* Darker gradient on hover */
    cursor: pointer;
}

/* Track */
.payment_history .history .history_overflow::-webkit-scrollbar-track {
    background: linear-gradient(90deg, #f1f1f1, #e1e1e1); /* Gradient for the track */
}

/* Track on hover */
.payment_history .history .history_overflow::-webkit-scrollbar-track:hover {
    background: linear-gradient(90deg, #d9d9d9, #c9c9c9); /* Slightly darker gradient on hover */
}


.payment_history .history .history_items{
    width: 280px;
    min-width: 280px;
    height: auto;
    padding: 5px;
    display: flex;
    flex-direction: column;
    border-radius: 4px;
    text-align: left;
    background: #fff;
    justify-content: space-between;
    margin: 0 2px;
    cursor: pointer;
    transition: .1s;
}

.payment_history .history #history1{
    width: 100%;
    height: auto;
    padding: 5px;
    display: flex;
    flex-direction: column;
    border-radius: 4px;
    text-align: left;
    background: #fff;
    justify-content: space-between;
    margin: 10px 5px;
    cursor: pointer;
    transition: .1s;
}

.payment_history .history .history_items:hover{
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.9);
}

.payment_history .history .history_items p{
    font-size: 12px;
    font-weight: 500;
    color: rgb(31, 128, 55);
    margin-bottom: 3px;
}

.history_items form{
    width: 100%;
    height: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.history_items form p{
    font-size: 9px;
    margin: 0 2px;
}

.history_items form .input_text{
    border: none;
    outline: none;
    border-bottom: 1px solid #06ad30;
    font-size: 11px;
    text-transform: capitalize;
    overflow: hidden;
    color: #000;
    letter-spacing: 0;
    padding: 1px;
    margin: 0 3px;
    background: transparent;
}

.history_items form .input_text::placeholder{
    color: #000;
}

.history_items form button{
    width: auto;
    height: auto;
    background: transparent;
    outline: none;
    border: none;
    color: rgb(243, 189, 41);
    font-size: 15px;
    margin: 0 3px;
    cursor: pointer;
}

.history_items form button:nth-child(2){
    color: rgb(22, 199, 22);
}

.history_items form button:nth-child(3){
    color: rgb(224, 18, 18);
}

.history_items .edit_btns{
    width: 100%;
    height: auto;
    display: flex;
    justify-content: right;
    border-top: 1px solid #06ad30;
}

.history_items .edit_btns button{
    width: auto;
    height: auto;
    outline: none;
    border: none;
    background: #fff;
    color: #09cf3b;
    padding: 5px 10px;
    margin: 0 10px;
    border-radius: 5px;
    font-size: 14px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    cursor: pointer;
    transition: .3s;
}

.history_items .edit_btns button:hover{
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.9);
}

.history .sort{
    width: 100%;
    height: 100vh;
    display: none;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.5);
}

.history .sort form{
    width: 45%;
    height: auto;
    display: flex;
    flex-direction: column;
    padding: 15px 10px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.9);
}

.history .sort form p{
    font-size: 12px;
    color: #09cf3b;
    letter-spacing: 1px;
    margin-bottom: 2px;
}

.history .sort form select{
    width: 100%;
    background: none;
    border: none;
    outline: none;
    cursor: pointer;
}

.history .sort form h6{
    font-size: 12px;
    color: #09cf3b;
    letter-spacing: 1px;
    margin-bottom: 2px;
    text-transform: capitalize;
}

.history .sort form .btns{
    width: 100%;
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}

.history .sort form .btns button{
    width: auto;
    height: auto;
    outline: none;
    border: 2px solid #09cf3b;
    background: #fff;
    color: #09cf3b;
    padding: 5px 10px;
    margin: 0 10px;
    border-radius: 5px;
    font-size: 14px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    cursor: pointer;
}

.history .sort form .btns button:hover{
    border: 2px solid #09cf3b;
    background: #09cf3b;
    color: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.9);
}

#slip i{
    width: 10px;
    max-width: 10px;
    font-size: 18px;
    color: rgb(22, 199, 22);
    margin-right: 10px;
}

.slip-con{
    width: 100%;
    height: 100vh;
    min-height: 100vh;
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
    background-color: rgba(0, 0, 0, 0.5);
}

.slip-con .slip{
    width: 400px;
    height: fit-content;
    height: auto;
    min-height: 450px;
    background: #fff;
    border-radius: 5px;
    box-shadow: rgba(0, 0, 0, 0.15) 0px 15px 25px, rgba(0, 0, 0, 0.05) 0px 5px 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.slip-con .slip .letter-head{
    width: 100%;
    height: auto;
    border-bottom: 2px dotted #00ff00;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 10px 5px;
    margin-bottom: 10px;
}

.slip-con .slip .letter-head .letter_details{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.slip-con .slip .letter-head .letter_details h3{
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    color: brown;
    border-left: 2px solid brown;
    padding-left: 2px;
}

.slip-con .slip .letter-head .letter_details p{
    font-size: 11px;
    text-transform: capitalize;
    font-style: italic;
}

.slip-con .slip .letter-head .letter_details:nth-child(3) p{
    font-size: 11px;
}

.slip-con .slip .letter-items{
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 6px 5px;
    margin-bottom: 3px;
}

.slip-con .slip .letter-items .detailed{
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-bottom: 1px solid #00ff00;
}

.slip-con .slip .letter-items .letter_details{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.slip-con .slip .letter-items .letter_details input{
    font-size: 11px;
    text-transform: capitalize;
    margin: 5px 0;
    padding: 0;
}

.slip-con .slip-btns{
    width: 400px;
    height: auto;
    display: flex;
    padding: 10px;
    justify-content: space-between;
    background: #fff;
    border-top: 2px dotted #1bf852;
    border-radius: 5px;
}

.slip-con .slip-btns button{
    width: auto;
    height: auto;
    padding: 10px 40px;
    font-size: 17px;
    text-transform: uppercase;
    font-weight: 500;
    color: 000;
    background: rgb(243, 103, 103);
    outline: none;
    border: none;
    cursor: pointer;
    transition: .3s;
}

.slip-con .slip-btns button:hover{
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.6);
}

.slip-con .slip-btns button:nth-child(1){
    color: #000;
    background: #6afa82;
}

#addext{
    cursor: pointer;
    font-size: 20px;
}

.proof{
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    padding-top: 5%;
}

.proof .upload{
    width: 400px;
    height: auto;
    display: flex;
    flex-direction: column;
    padding-bottom: 20px;
    margin-bottom: 10px;
    background: transparent;
    backdrop-filter: blur(30px);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.proof .upload .heading{
    width: 100%;
    height: auto;
    padding: 10px 20px;
    background: #f3d77a;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.proof .upload .heading p{
    font-size: 13px;
    color: #000;
}

.proof .upload .heading i{
    font-size: 18px;
    color: #000;
    cursor: pointer;
}

.proof .upload form{
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.proof .upload form input{
    width: 95%;
    font-size: 13px;
    outline: none;
    border: none;
    color: #000;
    border-bottom: 2px solid #35f355;
    background: transparent;
    padding: 4px;
    margin: 10px 0;
}

.proof .upload form .square{
    width: 200px;
    height: 150px;
    border: 2px dotted #ddd4d4;
    margin: 10px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    cursor: pointer;

    object-fit: cover;
    background-size: cover;
    background-repeat: no-repeat;
}

.proof .upload form .square i{
    font-size: 35px;
    color: #f1cc54;
}

.proof .upload form .square p{
    font-size: 13px;
    font-style: italic;
    margin-top: 10px;
}

.proof .upload form .submit{
    width: 100%;
    height: auto;
    padding: 10px 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.proof .upload form .submit button{
    width: 200px;
    height: auto;
    padding: 13px 20px;
    margin: 0 10px;
    outline: none;
    font-size: 12px;
    text-transform: uppercase;
    border: none;
    color: #ffffff;
    background: #f1cc54;
    cursor: pointer;
}

.horizontal{
    width: 100%;
    height: auto;
    padding: 20px 20px;
    display: flex;
    flex-direction: row;
    overflow-x: auto;
}

.horizontal::-webkit-scrollbar {
    display: none;
}

.horizontal a{
    text-decoration: none;
    color: unset;
}

.horizontal .items{
    width: 250px;
    min-width: 220px;
    height: 80px;
    padding: 10px;
    margin: 0 10px;
    background: #ffffff;
    border-radius: 5px;
    display: flex;
    border-left: 4px solid #f1cc54;
    flex-direction: column;
    justify-content: center;
    box-shadow: rgba(0, 0, 0, 0.15) 0px 15px 25px, rgba(0, 0, 0, 0.05) 0px 5px 10px;
}

.horizontal .items p{
    font-size: 12px;
    margin: 5px 0;
    text-transform: capitalize;
}

.custom-shape-divider-top-1675699607 {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.custom-shape-divider-top-1675699607 svg {
    position: relative;
    display: block;
    width: calc(179% + 1.3px);
    height: 217px;
    transform: rotateY(180deg);
}

.custom-shape-divider-top-1675699607 .shape-fill {
    fill: #facf44;
}

#shot_line{
    min-width: 20px;
}

.bio{
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    overflow-x: hidden;
}

.bio .heading{
    width: 100%;
    height: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 5px;
    background: #09cf3b;
    border-top-right-radius: 5px;
    border-top-left-radius: 5px;
}

.bio .heading p{
    font-size: 14px;
    color: #fff;
    font-style: italic;
    letter-spacing: 0;
    font-weight: 400;
    text-transform: none;
    margin: 0 3px;
    cursor: pointer;
}

.bio .bio_items{
    width: 100%;
    height: 80px;
    padding: 3px 3px;
}

.bio .bio_items form{
    width: 100%;
    height: 100%;
    padding: 5px;
    border-radius: 5px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    background: #ececec;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    cursor: pointer;
}

.bio .bio_items form:hover{
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    background: #ffffff;
    border-left: none;
}

.bio .bio_items form .input_text{
    width: 60px;
    outline: none;
    border: none;
    font-size: 10px;
    margin: 0;
    background: transparent;
    border-bottom: 2px solid #0ee745;
}

.bio .bio_items form .input_text:focus{
    border-bottom: 2px solid #09cf3b;
}

.bio .bio_items form .input_text::placeholder{
    color: #000;
}

.bio .bio_items form p{
    font-size: 12px;
    letter-spacing: 0;
    margin: 5px 2px;
    padding-right: 5px;
    letter-spacing: 2px;
    font-weight: 400;
    text-transform: capitalize;
    display: flex;
    align-items: center;
    width: 110px;
}

.bio .bio_items form a{
    font-size: 12px;
    text-decoration: none;
    letter-spacing: 0;
    margin: 5px 2px;
    padding-right: 5px;
    letter-spacing: 2px;
    font-weight: 400;
    text-transform: capitalize;
    display: flex;
    align-items: center;
    width: 30px;
}

.bio .bio_items form:hover p{
    transition: .1s;
}

.bio .bio_items form button{
    width: 25px;
    height: 25px;
    border-radius: 50px;
    background: transparent;
    color: #0ee745;
    outline: none;
    border: none;
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 400;
    cursor: pointer;
    transition: .3s;
}

.checker{
    cursor: pointer;
    margin-right: 10px;
    color: #0ee745;
}

.bio_event{
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 99;
    display: none;
    justify-content: center;
    align-items: center;
}

.bio_event .events{
    width: 700px;
    height: auto;
    background: #fff;
    border-radius: 5px;
}

.bio_event .events form .names{
    width: 300px;
    outline: none;
    border: none;
    font-size: 14px;
    color: #0fbd3a;
    letter-spacing: 2px;
    text-transform: capitalize;
    font-weight: 600;
    margin: 20px 0;
    padding: 5px 2px;
    background: transparent;
    border-left: 2px solid #0fbd3a;
}

.bio_event .events form{
    width: 100%;
    height: 350px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.bio_event .events form p{
    width: 300px;
    text-align: left;
    font-style: italic;
    font-size: 13px;
    font-weight: 600;
    color: #0ee745;
    letter-spacing: 1px;
}

.bio_event .events form .input_text{
    width: 300px;
    outline: none;
    border: none;
    font-size: 13px;
    letter-spacing: 1px;
    margin-bottom: 15px;
    padding: 5px 2px;
    background: transparent;
    border-bottom: 2px solid #0ee745;
}

.bio_event .events form .input_text::placeholder{
    color: #000;
}

.bio_event .events form button{
    width: 300px;
    height: auto;
    border-radius: 50px;
    background: transparent;
    color: #000;
    outline: none;
    border: 2px solid #0ee745;
    text-transform: uppercase;
    padding: 8px 10px;
    font-size: 12px;
    font-weight: 400;
    cursor: pointer;
    transition: .3s;
}

.bio_event .events form button:hover{
    letter-spacing: 1px;
    background: #0ee745;
    color: #fff;
}

.bin{
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    background: #000;
    opacity: .9;
    z-index: 99;
    display: none;
    justify-content: center;
    align-items: center;
}

.bin .scroller{
    width: 75%;
    height: 380px;
    background: #f1efef;
    border-radius: 5px;
}

.bin .scroller .del_items{
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    overflow-x: auto;
}

.bin .scroller .del_items .documents{
    min-width: 280px;
    height: 70px;
    background: #f1cc54;
    border-radius: 5px;
    border-left: 3PX solid #f1cc54;
    margin: 2px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.bin .scroller .del_items .documents p{
    font-size: 12px;
    text-decoration: none;
    color: #000000;
    margin-top: 10px;
}

.bin .scroller .del_items a{
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    text-decoration: none;
}

.del_items::-webkit-scrollbar{
    width: 0;
}

.group{
    width: 100%;
    min-height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99999 !important;
    background-color: rgba(0, 0, 0, 0.6);
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow-y: auto;
}

.group form {
    width: 60%;
    max-height: 95vh;
    overflow-y: auto;
    background: #fff;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.group form::-webkit-scrollbar {
    width: 12px; /* Set the width of the scrollbar */
}

.group form::-webkit-scrollbar-thumb {
    background: linear-gradient(to bottom, #fff, #42fa42); /* Set the gradient color for the thumb */
    border-radius: 10px; /* Set border radius for the thumb */
}

.group form::-webkit-scrollbar-track {
    background: #f1f1f1; /* Set the background color for the track */
    border-radius: 10px; /* Set border radius for the track */
}


.group form .header{
    width: 100%;
    padding: 10px;
    background: #09cf3b;
}

.group form .header h3{
    font-size: 18px;
    color: #fff;
    letter-spacing: 1px;
    font-weight: 600;
    text-transform: uppercase;
}

.group form h1{
    width: 97%;
    font-size: 18px;
    color: #fff;
    background: #06b614;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 6px 4px;
    margin: 10px 0 0 15px;
    border-bottom: 1px solid gray;
}

.group form p{
    font-size: 13px;
    color: #000;
    margin: 10px 0 0 15px;
}

.group form input{
    width: 97%;
    font-size: 12px;
    font-style: italic;
    color: #000;
    padding: 1px;
    margin-left: 15px;
}

.group form select{
    width: 97%;
    font-size: 12px;
    font-style: italic;
    color: #000;
    padding: 1px;
    border: none;
    outline: none;
    margin-left: 15px;
}

.group form textarea{
    width: 97%;
    height: 80px;
    font-size: 12px;
    font-style: italic;
    color: #000;
    outline: none;
    padding: 1px;
    padding: 2px;
    margin-left: 15px;
    border: 2px solid #22e653;
}

.group form .controls{
    width: 100%;
    padding: 20px;
    display: flex;
    justify-content: space-between;
}

.group form .controls button{
    background: #09cf3b;
    margin: 0 10px;
    color: #fff;
    padding: 10px 15px;
    border-radius: 5px;
    outline: none;
    border: none;
    cursor: pointer;
    transition: .3s;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
}

.group form .controls button:hover{
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.9);
}

.new_design{
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 2%;
}

.new_design .long_horizontal{
    width: 99%;
    height: auto;
    min-height: 60px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    background: #fff;
    border-radius: 5px;
    padding: 5px 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.new_design .long_horizontal h5{
    font-size: 15px;
    font-weight: 500;
    color: #000000;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.new_design .long_horizontal .view_more{
    width: auto;
    height: auto;
}

.new_design .long_horizontal .view_more button{
    width: auto;
    height: auto;
    font-size: 14px;
    margin: 1px 0;
    padding: 7px;
    border: 2px solid #16ce44;
    outline: none;
    border-radius: 5px;
    background: transparent;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: .3s;
}

.new_design .long_horizontal .view_more button:hover{
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    background: #16ce44;
    color: #fff;
}

.new_design .long_horizontal .finger_tips{
    width: 100%;
    height: auto;
    position: fixed;
    top: -30%;
    left: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    background: #fff;
    z-index: 1;
    padding: 8px 1px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.9);
    transition: .3s;
}

.new_design .long_horizontal .finger_tips button{
    width: 150px;
    height: auto;
    font-size: 12px;
    margin: 10px;
    padding: 10px 5px;
    border: 1px solid #fff;
    outline: none;
    border-radius: 3px;
    background: transparent;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    transition: .3s;
}

.new_design .long_horizontal .finger_tips button:hover{
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.6);
    background: #fff;
    color: #16ce44;
}

.notes{
    width: 100%;
    height: 110vh;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99999 !important;
    background-color: rgba(0, 0, 0, 0.6);
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.notes form{
    width: 50%;
    background: #fff;
    border-radius: 3px;
    padding: 20px 10px;
}

.notes form h1{
    font-size: 2em;
    text-transform: uppercase;
    color: #2dbd51;
    letter-spacing: 1px;
    font-weight: 600;
    padding-left: 5px;
    margin-bottom: 15px;
    border-left: 5px solid #2dbd51;
}

.notes form input{
    border: 2px solid #0fbd3a;
    padding: 10px 4px;
}

.notes form textarea{
    width: 100%;
    height: 110px;
    outline: none;
    border: 2px solid #09cf3b;
    padding: 4px;
}

.notes form input p{
    font-size: 14px;
    text-transform: capitalize;
    letter-spacing: 1px;
    font-weight: 600;
}

.notes form .btns{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 5px;
}

.notes form .btns button{
    width: auto;
    height: auto;
    padding: 10px 20px;
    outline: none;
    border: none;
    background: #0ee745;
    color: #000;
    border-radius: 5px;
    text-transform: uppercase;
    font-size: 12px;
    cursor: pointer;
    transition: .3s;
}

.notes .items{
    width: 100%;
    display: flex;
    padding: 20px 5px;
}

.notes .items .my_note{
    width: 100%;
    overflow-x: scroll;
    padding: 5px;
    display: flex;
    flex-direction: row;
}

.notes .items form{
    width: 200px;
    background: #fff;
    border-radius: 3px;
    padding: 20px 10px;
    margin: 3px;
}

.notes .items form h5{
    font-size: 1em;
    text-transform: uppercase;
    color: #2dbd51;
    letter-spacing: 1px;
    font-weight: 600;
    padding-left: 5px;
    margin-bottom: 15px;
    border-left: 5px solid #2dbd51;
}

.notes .items form input{
    border: 2px solid #0fbd3a;
    padding: 4px;
    font-size: 13px;
}

.notes .items form textarea{
    width: 100%;
    height: 70px;
    outline: none;
    border: 2px solid #09cf3b;
    padding: 4px;
    font-size: 13px;
}

.notes form input p{
    font-size: 14px;
    text-transform: capitalize;
    letter-spacing: 1px;
    font-weight: 600;
}

.notes .items form .btns{
    width: 100%;
}

.notes .items form .btns button{
    width: auto;
    height: auto;
    padding: 10px;
    outline: none;
    border: none;
    margin: 0 3px;
    background: #0ee745;
    color: #000;
    border-radius: 3px;
    text-transform: uppercase;
    font-size: 12px;
    cursor: pointer;
    transition: .3s;
}

.new_design .personal_items{
    width: 100%;
    height: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 5px 0;
}

.new_design .personal_items .personal_main{
    width: 69%;
    height: 520px;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #fff;
    border-radius: 5px;
    margin-left: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.new_design .personal_items .personal_main .heading{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.new_design .personal_items .personal_main .heading h5{
    font-size: 18px;
    font-weight: 400;
    color: #000;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.new_design .personal_items .personal_main .details{
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    border-radius: 5px;
    margin-left: 8px;
    padding: 10px 15px;
}

.new_design .personal_items .personal_main .details h6{
    background: transparent;
    font-size: 14px;
    text-transform: uppercase;
    color: #2dbd51;
    letter-spacing: 1px;
    margin: 7px 0;
    border-bottom: 2px solid #1bf852;
}

.new_design .personal_items .personal_main .details p{
    background: transparent;
    font-size: 13px;
    color: #000;
    letter-spacing: 0;
    padding-left: 10px;
    text-transform: capitalize;
    margin-top: 2px;
}

.new_design .personal_items .personal_main .main_edits{
    width: 100%;
    min-height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99999 !important;
    background-color: rgba(0, 0, 0, 0.6);
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow-y: auto;
}

.new_design .personal_items .personal_main .main_edits form{
    width: 65%;
    max-height: 100vh; /* Set a maximum height for the form */
    overflow-y: auto; /* Enable vertical scrolling if needed */
    background: #fff;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.9);
    padding-bottom: 10px;
}

.new_design .personal_items .personal_main .main_edits form .heading i{
    font-size: 20px;
    color: #fff;
    cursor: pointer;
}

.new_design .personal_items .personal_main .main_edits form .inputs{
    margin: 0 30px;
    padding: 3px;
}

.new_design .personal_items .personal_main .main_edits form .inputs p{
    color: #0fbd3a;
    font-size: 11px;
    margin-top: 7px;
}

.new_design .personal_items .personal_main .main_edits form .inputs input{
    width: 100%;
    font-style: italic;
    font-size: 11px;
    padding: 1px !important;
    text-transform: capitalize;
}

.new_design .personal_items .personal_main .main_edits form .inputs select{
    width: 100%;
    font-style: italic;
    text-transform: capitalize;
    border: none;
    outline: none;
    font-size: 11px;
}

.new_design .personal_items .personal_main .main_edits form .main_submit{
    width: 100%;
    height: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 2px 0;
    padding: 0 10px;
}

.new_design .personal_items .personal_main .main_edits form .main_submit button{
    width: auto;
    height: auto;
    padding: 10px 70px;
    outline: none;
    border: none;
    background: #0ee745;
    color: #000;
    letter-spacing: 1px;
    border-radius: 5px;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: .3s;
}

.new_design .personal_items .personal_main .main_edits form .main_submit button:hover{
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.6);
}

.new_design .personal_items .personal_main .main_edits form a{
    color: #35b354;
    text-decoration: none;
}

.new_design .personal_items .personal_main .main_edits form .docs{
    width: 100%;
    height: auto;
    padding: 4px 2px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.new_design .personal_items .personal_main .main_edits form .docs .items{
    width: auto;
    height: auto;
    display: flex;
    padding: 5px;
    margin: 0 5px;
    border-radius: 3px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    cursor: pointer;
    transition: .3s;
}

.new_design .personal_items .personal_main .main_edits form .docs .items:hover{
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.6);
}

.main .message_panel{
    width: 100%;
    display: flex;
    align-items: center;
    overflow-x: scroll;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.6);
}

.main .recent_msg{
    font-size: 15px;
    letter-spacing: 1px;
    font-weight: 600;
    border-bottom: 1px solid #09cf3b;
    color: #fff;
    text-transform: uppercase;
    padding: 5px 0;
    margin-bottom: 10px;
}

.main .message_panel .history_items{
    width: 400px;
    min-width: 400px;
    max-width: fit-content;
    height: auto;
    padding: 20px 5px;
    margin: 5px;
    background: #fff;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.6);
}

.main .message_panel .history_items p{
    font-size: 11px;
    color: #12e447;
    margin: 0;
    padding: 5px;
    font-weight: 400;
    text-transform: capitalize;
}

.container .saved_quotes {
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    display: none;
    flex-wrap: wrap;
    align-items: center;
    justify-content: left;
    background-color: rgba(0, 0, 0, 0.4);
}

.container .saved_quotes .items{
    width: 300px;
    height: auto;
    padding: 10px 5px;
    margin: 5px;
    display: flex;
    flex-direction: column;
    align-items: start;
    background: #fff;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.6);
}

.container .saved_quotes .items p{
    font-size: 13px;
    color: #12e447;
    padding: 5px;
    font-weight: 400;
    text-transform: capitalize;
}

.container .saved_quotes .items form{
    display: flex;
    justify-content: space-between;
    width: 100%;
    padding: 0 5px;
}

.container .saved_quotes .items form button{
    width: auto;
    height: auto;
    padding: 5px 15px;
    outline: none;
    border: none;
    background: #fff;
    color: #0ee745;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 400;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.4);
    transition: .3s;
}

:is(.container .saved_quotes, .saved ) #close_quote{
    position: fixed;
    bottom: 2%;
    right: 1%;
    width: auto;
    height: auto;
    padding: 5px 15px;
    outline: none;
    border: none;
    background: #fff;
    color: #0ee745;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 400;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.4);
    transition: .3s;
}

.new_design .personal_items .shorts{
    width: 31%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0 8px;
}

.new_design .personal_items .shorts .heading{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.new_design .personal_items .shorts .shorts_items{
    width: 100%;
    height: 255px;
    display: flex;
    flex-direction: column;
    background: #fff;
    border-radius: 3px 2px;
    margin: 5px 0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.new_design .personal_items .shorts .shorts_items h5{
    font-size: 16px;
    font-weight: 400;
    color: #000;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.new_design .personal_items .shorts .shorts_items .details{
    height: 100%;
    padding: 8px;
}

.new_design .personal_items .shorts .shorts_items .details p{
    background: transparent;
    font-size: 13px;
    color: #000;
    letter-spacing: 0;
    padding-left: 10px;
    text-transform: capitalize;
}

.new_design .personal_items .shorts .shorts_items:nth-child(3) .details{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.new_design .short_horizontal{
    width: 99%;
    height: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    margin-top: 8px;
    background: #fff;
    border-radius: 5px;
}

.new_design .short_horizontal .items:nth-child(2){
    text-align: right;
}

.new_design .short_horizontal .items p{
    margin-bottom: 2px;
    letter-spacing: 0;
    text-transform: capitalize;
    font-size: 13px;
    color: #000;
}

.new_design .short_horizontal .items button{
    width: auto;
    height: auto;
    padding: 15px;
    outline: none;
    border: none;
    background: #fff;
    color: #0ee745;
    border-radius: 2px;
    font-size: 16px;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.4);
    transition: .3s;
}

.new_design .short_horizontal .items button:hover{
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.8);
    background: #0ee745;
    color: #fff;
}

.main_panel{
    display: flex;
    width: 100%;
    height: 100vh;
}

.side_panel{
    width: 250px;
    height: 100vh;
    overflow: hidden;
    background: linear-gradient(to bottom,#09cf3b ,#0ee745);
    z-index: 2;
    display: none;
    overflow: hidden;
    position: absolute;
    top: 0;
    left: 0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.side_panel .heading{
    width: 100%;
    height: 70px;
    padding: 20px 5px;
    background: #0cb436;
    border-left: 3px solid #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px dotted #000;
}

.side_panel .heading p{
    font-size: 18px;
    line-height: 1;
    color: #fff;
    text-transform: uppercase;
}

.side_panel .heading span{
    width: 30px;
    height: 30px;
    border-radius: 50px;
    border: 1px solid #fff;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.4);
}

.side_panel .heading span i{
    font: 22px;
    color: #fff;
}

.side_panel .nevigate{
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
}

.side_panel .navigate p {
    line-height: 2.4;
    font-size: 12px;
    letter-spacing: 2px;
    padding: 10px 5px;
    text-transform: uppercase;
    color: #fff;
    border-bottom: 1px dotted #fff;
    display: flex;
    align-items: center;
    position: relative;
    cursor: pointer;
}
  
.side_panel .navigate p:hover {
    letter-spacing: 4px;
    transition: all .3s ease-in-out;
    border-left: 3px solid #fff;
}
  
.side_panel .navigate p:hover:before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    z-index: -1;
    animation: slide-out 0.3s ease-in-out forwards;
}
  
.side_panel .navigate p:hover span {
    animation: slide-in 0.3s ease-in-out forwards 0.3s;
}
  
.side_panel .navigate p:hover span:before {
    content: attr(data-text);
    position: absolute;
    left: 0;
    top: 0;
    overflow: hidden;
    white-space: nowrap;
    width: 0;
    height: 100%;
    color: #fff;
    animation: slide-text 0.3s ease-in-out forwards 0.3s;
}
  
@keyframes slide-out {
    0% {
      transform: translateX(0);
      opacity: 1;
    }
    100% {
      transform: translateX(100%);
      opacity: 0;
    }
}
  
@keyframes slide-in {
    0% {
      transform: translateX(-100%);
      opacity: 0;
    }
    100% {
      transform: translateX(0);
      opacity: 1;
    }
}
  
@keyframes slide-text {
    0% {
      width: 0;
    }
    100% {
      width: 100%;
    }
}  
  
.side_panel .navigate p i{
    font-size: 20px;
    padding-right: 20px;
}

.main{
    width: 100%;
    height: auto;
    padding: 5px 0;
    overflow-x: hidden;
    background-repeat: no-repeat;
    background-size: cover;
    object-fit: cover;
}

.main .mains{
    width: 100%;
    border-radius: 5px;
    margin: 0;
}

.main .mains .heading{
    width: 100%;
    height: auto;
    padding: 20px 8px 20px 50px;
    background: #09cf3b;
}

.main .mains .heading p{
    font-size: 25px;
    font-weight: 400;
    text-transform: uppercase;
    color: #fff;
    letter-spacing: 2px;
    line-height: 1;
    border-left: 2px solid #fff;
    padding: 10px 2px;
}

.main .branches{
    width: 100%;
    height: auto;
    padding: 10px 5px;
    display: flex;
    flex-direction: row;
    overflow-x: auto;
}

.main .branches::-webkit-scrollbar {
    display: none;
}

.main .branches form{
    width: auto !important;
    height: auto;
    padding: 10px 15px !important;
    background: #fff !important;
    margin: 0 10px;
}

.main .branches form .controls button{
    background: #09cf3b;
    margin: 0 10px;
    color: #fff;
    padding: 5px 15px;
    border-radius: 5px;
    outline: none;
    border: none;
    cursor: pointer;
    transition: .3s;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
}

.admin_acc form .controls button:hover{
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.9);
}

.menu_bar {
    position: absolute;
    left: 10px;
    top: 30px;
    z-index: 99;
    width: 30px;
    height: 30px;
    border-radius: 50px;
    background: #09cf3b;
    cursor: pointer;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.4);
}

.menu_bar i{
    color: #fff;
}

.main .mains .contents{
    width: 100%;
    height: auto;
    padding: 5px;
    margin: 30px 0;
    display: flex;
    justify-content: right;
}

.main .mains .contents p{
    width: 400px;
    font-size: 13px;
    height: auto;
    color: #fff;
    border-left: 2px solid #fff;
    padding: 2px;
}

.main .mains{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.main .mains .contents button{
    width: auto;
    height: auto;
    padding: 5px 10px;
    margin: 0 5px;
    outline: none;
    border: none;
    background: #fff;
    color: #000;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 400;
    cursor: pointer;
    transition: .3s;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.main .mains .contents button:hover{
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.6);
}

.main .mains form{
    width: 100%;
    height: auto;
    padding: 5px 0;
    background: transparent;
    border-radius: 5px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.main .mains form .inputs{
    width: 100%;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.6);
    padding:  5px 10px;
    border-radius: 5px;
    background: #fff;
}

.main .mains form .inputs input{
    width: 100% !important;
}

.main .mains form .inputs select{
    width: 100% !important;
}

.main .mains form .inputs .inptus_con{
    width: 100%;
    margin-bottom: 5px;
    padding: 5px 0;
    border-radius: 5px;
    transition: .3s;
}

.main .mains form .inputs .close_form{
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 5px;
    border-bottom: 1px solid #ddd4d4;
}

.main .mains form .inputs .close_form p{
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 2px;
    list-style: 1;
    text-transform: uppercase;
}

.main .mains form .inputs .close_form i{
    width: 30px;
    height: 30px;
    padding: 10px;
    font-size: 12px;
    background: #fff;
    border-radius: 50px;
    cursor: pointer;
}

.main .mains form .inputs .inptus_con p{
    font-weight: 400;
    letter-spacing: 1px;
    font-size: 14px;
    color: #029927;
    margin-top: 5px;
}

.main .mains form .inputs .inptus_con .input_text{
    width: 600px;
    border: none;
    outline: none;
    color: #12e447;
    font-weight: 400;
    letter-spacing: 1px;
    color: #000;
    text-transform: capitalize;
    border-bottom: 2px solid #12e447;
    background: transparent;
}

.main .mains form .inputs .inptus_con .input_text:focus{
    border-bottom:2px solid rgb(77, 240, 117);
}

.main .mains form .inputs .inptus_con .input_text::placeholder{
    color: #000;
}

.main .mains form .inputs button{
    width: auto;
    border: none;
    outline: none;
    background: #12e447;
    color: #fff;
    padding: 10px;
    margin-top: 10px;
    border-radius: 5px;
    font-size: 15px;
    letter-spacing: 2px;
    font-weight: 500;
    cursor: pointer;
    transition: .3s;
}

.main .mains form .inputs button:hover{
    letter-spacing: 4px;
}

.main .users{
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    padding: 0 5px;
}

.main .users table{
    width: 100%;
    height: auto;
    margin-top: 20px;
}

.main .users table tr th{
    background: rgb(70, 245, 113);
    font-size: 15px;
    font-weight: 400;
    text-align: left;
    padding: 10px 5px;
}

.main .users table tr td{
    background: #57bd71;
    font-size: 14px;
    letter-spacing: 1px;
    color: #fff;
    padding: 0 5px;
    text-transform: capitalize;
    width: auto !important;
}

.main .users table tr td input{
    width: 100%;
    border: none;
    outline: none;
    text-transform: capitalize;
    background: transparent;
    padding: 5px 2px;
    font-size: 12px;
    border-bottom: 1px solid #0ee745;
}

.main .users table tr td form{
    display: flex;
    flex-direction: row;
}

.main .users table tr td form .inputs{
    display: flex;
    flex-direction: column;
}

.main .users table tr td button{
    width: 40px;
    height: 40px;
    font-size: 18px;
    color: red;
    border-radius: 50px;
    border: none;
    outline: none;
    padding: 5px;
    margin: 0 5px;
    cursor: pointer;
    text-align: center;
}

.main .users table tr td button:nth-child(2){
    color: #00ff00;
}

.main .mains .search{
    width: 100%;
    height: auto;
    padding: 20px;
}

.main .mains .search form{
    width: 600px;
    padding: 5px;
    background: transparent;
    backdrop-filter: blur(2em);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.4);
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    border-radius: 5px;
}

.main .mains .search form .input_txt::placeholder{
    color: #008120
}

.main .mains .search form .input_txt{
    width: 390px;
    height: auto;
    padding:10px 4px;
    color: #008120;
    outline: none;
    border: none;
    text-transform: capitalize;
    border-bottom: 2px solid #1bf852;
    background: transparent;
}

.main .mains .search form .input_txt:focus{
    border-bottom: 2px solid #09cf3b;
}

.main .mains .search form button{
    width: auto;
    height: auto;
    padding: 10px 25px;
    outline: none;
    border: 2px solid #1bf852;
    background: #1bf852;
    color: #fff;
    font-size: 13px;
    border-radius: 3px;
    text-transform: uppercase;
    margin: 5px 0 10px;
    cursor: pointer;
}

.more_ctrl{
    width: 100%;
    height: 100vh;
    display: none;
    justify-content: center;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.3);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999999 !important;
}

.more_ctrl .items{
    width: 600px;
    height: auto;
    max-height: 90%;
    background: #fff;
    padding: 5px 15px;
    border-radius: 5px;
    overflow-y: scroll;
}

.more_ctrl .items h3{
    font-size: 14px;
    color: #0cb436;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.more_ctrl .items p{
    margin-top: 10px;
    font-size: 14px;
}

.more_ctrl .items select{
    width: 100%;
    font-size: 13px;
}

.main .logs_users{
    width: 100%;
    height: auto;
    padding: 10px 0;
    display: flex;
    align-items: center;
    overflow-y: hidden;
    overflow-x: auto;
}

.main .logs_users .items{
    width: fit-content !important;
    height: auto;
    padding: 8px;
    margin: 0 3px;
    border-radius: 3px;
    background: #fff !important;
    border-bottom: 4px solid #fff;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    text-align: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 1);
    transition: .3s;
}

.main .logs_users .items:nth-child(even){
    background: #06ad30;
}

.main .logs_users .items:hover{
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.9);
    border-bottom: 4px solid #0ee745;
}

.main .logs_users .items p{
    font-size: 11px;
    width: auto;
}

.main .logs_data{
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow-y: auto;
    overflow-x: hidden;
}

.main .logs_data .line{
    width: 100%;
    height: auto;
    display: flex;
    padding-left: 20px;
}

.main .logs_data .line span{
    width: 3px;
    height: 1px;
    background: #a88100;
}

.main .logs_data .items{
    width: 100%;
    height: auto;
    margin-top: 5px;
    padding: 10px 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;

    background: #fff;
    border-radius: 5px;
}

.main .logs_data .items:nth-child(even){
    background: #faf6f6;
}

.main .logs_data .items p{
    font-size: 11px;
    color: #000;
    font-weight: 400;
    margin: 1px;
    width: auto;
}

.main .logs_data .no_logs{
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 10%;
}

.main .logs_data .no_logs p{
    font-size: 13px;
    font-weight: 400;
    font-style: italic;
    color: #000;
    background: #fff;
    padding: 40px 20px;
    border-radius: 5px;
}

.main .employees{
    width: 100%;
    height: 100vh;
    background: transparent;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 0;
    left: 0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.6);
}

.main .employees form{
    width: 70%;
    height: 450px;
    display: flex;
    flex-direction: column;
    background: #f3f0f0;
    border-radius: 10px;
}

.main .employees form .all_info{
    display: flex;
}

.main .employees form .all_info .info{
    width: 100%;
    height: 180px;
    padding: 10px 5px;
    display: flex;
    flex-direction: column;
    border-left: 2px solid red;
}

.main .dates{
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 7%;
}

.main .dates form{
    width: 60%;
    background: #fff;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.6);
    padding: 30px 10px;
}

.main .dates form p{
    margin-bottom: 10px;
    color: #2dbd51;
}

.main .dates form .input_text{
    width: 100%;
    margin: 5px 0;
}

.main .dates form button{
    width: 150px;
    height: auto;
    border: none;
    outline: none;
    border: 2px solid #35f355;
    padding: 10px;
    margin: 10px 20px 0 20px;
    background: transparent;
    border-radius: 4px;
    font-size: 15px;
    text-transform: capitalize;
    color: #000;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: .3s;
    float: right;
}

.main .dates form button:hover{
    background: #35f355;
    color: #fff;
}

.main .reports{
    width: 100%;
    height: auto;
    min-height: 50vh;
    padding: 10px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.main .reports .cubes{
    width: 300px;
    height: 100px;
    background: #fff;
    border-radius: 4px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.6);
    padding: 10px;
    margin: 0 10px;
    cursor: pointer;
}

.pay-con{
    width: 100%;
    height: 100vh;
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.6);
}

.pay-con .title{
    width: 50%;
    height: auto;
    margin-top: -20px;
}

.pay-con .title p{
    font-size: 30px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #fff;
    font-weight: 600;
}

.pay-con form{
    width: 50%;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;
    margin: 5px 0;
    padding: 15px 0;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.6);
}

.pay-con form .items{
    width: 100%;
    height: auto;
    padding: 0 10px;
    margin-bottom: 25px;
}

.pay-con form .items p{
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 1px;
    color: #000;
}

.pay-con form .items p i{
    font-size: 15px;
    margin-bottom: 5px;
    margin-right: 7px;
    color: #06b614;
}

:is(.pay-con form .items) select, input{
    width: 100%;
    height: auto;
    border: none;
    outline: none;
    background: transparent;
    border-bottom: 2px solid #21fd58;
    font-size: 14px;
    padding: 4px;
    transition: .3s;
}

:is(.pay-con form .items) select, input:focus{
    border-bottom: 2px solid #029927;
}

.pay-con form .items button{
    width: 150px;
    height: auto;
    border: none;
    outline: none;
    padding: 10px;
    margin: 10px 20px;
    background: rgb(250, 65, 65);
    font-size: 15px;
    text-transform: capitalize;
    color: #000;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: .3s;
}

.pay-con form .items button:nth-child(1){
    background: #35f355;
}

.pay-con form .items button:hover{
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.6);
    color: #fff;
}

.pay-con form .confirm_pay{
    width: 100%;
    height: 100vh;
    position: fixed;
    background-color: rgba(0, 0, 0, 0.5);
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    top: 0;
    left: 0;
    transition: .3s;
}

.pay-con form .confirm_pay .confirm_box{
    width: 600px;
    height: auto;
    background: #fff;
    border-radius: 5px;
    padding: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.6);
}

.pay-con form .confirm_pay .confirm_box I{
    font-size: 40px;
    color: orangered;
}

.pay-con form .confirm_pay .confirm_box h6{
    font-size: 18px;
    letter-spacing: 1px;
    font-weight: 500;
    text-align: center;
    border-bottom: 1px solid orangered;
    padding: 10px 0;
    margin-bottom: 10px;
}

.pay-con form .confirm_pay .confirm_box p{
    font-size: 15px;
    font-weight: 500;
    text-transform: capitalize;
}

.pay-con form .confirm_pay .confirm_box .confirm_btns{
    margin: 10px 0;
}

.pay-con form .confirm_pay .confirm_box .confirm_btns i{
    font-size: 18px;
}

.pay-con form .confirm_pay .confirm_box .confirm_btns button{
    width: 150px;
    color: #000;
    font-size: 14px;
    background: transparent;
    border: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    outline: none;
    padding: 10px;
    margin: 0 10px;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.4);
}

.pay-con form .confirm_pay .confirm_box .confirm_btns button:hover:nth-child(1){
    background: rgb(247, 112, 112);
    color: #000 !important;
}

.pay-con form .confirm_pay .confirm_box .confirm_btns button:hover:nth-child(2){
    background: rgb(151, 250, 112);
    color: #000 !important;
}

.all_payments{
    width: 100%;
    height: 100vh;
    position: fixed;
    background-color: rgba(0, 0, 0, 0.4);
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    top: 0;
    left: 0;
    transition: .3s;
    z-index: 3;
}

.all_payments .heading{
    display: flex;
    width: 90%;
    flex-direction: row;
    justify-content: space-between;
    background: #fff;
    opacity: 1;
}

.all_payments .heading p{
    text-transform: capitalize;
    font-style: italic;
    font-size: 13px;
    color: #000;
}

.all_payments .heading .pri{
    display: flex;
}

.all_payments .heading .pri button{
    width: auto;
    height: auto;
    outline: none;
    border: none;
    padding: 3px 15px;
    font-size: 15px;
    cursor: pointer;
    color: #000;
    text-align: center;
    text-transform: capitalize;
    margin: 0 10px;
}

.all_payments .heading .pri  button:hover{
    background: #22e653;
    color: #fff;
}

.all_payments .items{
    width: 90%;
    height: auto;
    padding: 10px;
    background: #6bdf88;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.all_payments .items:nth-child(even){
    background: #5eff86;
}

.all_payments .items p{
    font-size: 12px;
    font-style: italic;
    color: #000;
    margin: 0;
    padding: 0;
}

.reports{
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.reports form{
    width: 70%;
    height: auto;
    background: #fff;
    border-radius: 5px;
    padding: 20px 15px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.reports form h6{
    font-size: 15px;
    letter-spacing: 1px;
    font-weight: 600;
    text-transform: uppercase;
    border-bottom: 2px solid #09cf3b;
}

.reports form .inptus_con{
    width: 100%;
    margin: 20px 0;
}

.reports form .inptus_con .input_text{
    width: 80%;
}

.reports form button{
    width: auto;
    height: auto;
    border: none;
    outline: none;
    color: #fff;
    background: #0ee745;
    border-radius: 5px;
    padding: 15px 30px;
    font-size: 15px;
    letter-spacing: 1px;
    cursor: pointer;
    transition: .3s;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.reports form button:hover{
    color: #0ee745;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.7);
    background: transparent;
    letter-spacing: 0;
}

.edit_rec{
    width: 100%;
    height: 100vh;
    position: fixed !important;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.5);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
}

.edit_rec form{
    width: 70%;
    height: auto;
    background: #fff;
    padding: 10px 15px;
    border-radius: 5px;
}

.edit_rec form h3{
    font-size: 17px;
    color: #0cb436;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 20px;
    border-bottom: 2px solid #0cb436;
}

.edit_rec form p{
    font-size: 13px;
    color: #0cb436;
    letter-spacing: 1px;
    font-weight: 400;
    text-transform: capitalize;
}

.edit_rec form input{
    width: 100%;
    height: auto;
    border: none;
    outline: none;
    background: transparent;
    border-bottom: 2px solid #21fd58;
    text-transform: capitalize !important;
    font-size: 14px;
    margin-bottom: 10px;
    padding: 4px;
    transition: .3s;
}

.edit_rec form select{
    width: 100%;
    height: auto;
    border: none;
    outline: none;
    background: transparent;
    border-bottom: 2px solid #21fd58;
    font-size: 14px;
    margin-bottom: 5px;
    padding: 4px;
    transition: .3s;
}

.edit_rec form input:focus{
    border-bottom: 2px solid #029927;
}

.edit_rec form .btns{
    width: 100%;
    height: auto;
    padding: 5px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 10px 0;
}

.edit_rec form .btns button{
    width: auto;
    height: auto;
    border: none;
    outline: none;
    color: #fff;
    background: #0ee745;
    border-radius: 5px;
    padding: 10px 20px;
    font-size: 14px;
    letter-spacing: 1px;
    cursor: pointer;
    transition: .3s;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.edit_rec form .btns button:hover{
    color: #0ee745;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.7);
    background: transparent;
    letter-spacing: 0;
}

.old_rec{
    width: 100%;
    height: 100vh;
    position: fixed !important;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.5);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.7);
    display: none;
    align-items: center;
    z-index: 2;
}

.old_rec .old_items{
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    flex-direction: column;
}

.old_rec .old_items .header{
    width: 95%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 4px;
    border-top-right-radius: 5px;
    border-top-left-radius: 5px;
    background: #2dbd51;
}

.old_rec .old_items .header p{
    font-size: 14px;
}

.old_rec .old_items .header button{
    width: auto;
    height: auto;
    border: none;
    outline: none;
    color: #0ee745;
    background: #fff;
    border-radius: 5px;
    padding: 7px 20px;
    font-size: 14px;
    letter-spacing: 1px;
    cursor: pointer;
    transition: .3s;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.old_rec .old_items .header button:hover{
    color: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.7);
    background: transparent;
    letter-spacing: 0;
}

.old_rec .old_items .items{
    width: 95%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 4px;
    background: #fff;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
}

.old_rec .items p{
    font-size: 12px;
}

.import{
    width: 100%;
    height: 100vh;
    position: fixed !important;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.5);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.7);
    display: none;
    align-items: center;
    justify-content: center;
}

.import form{
    width: 50%;
    height: auto;
    background: #fff;
    padding: 20px 15px;
    border-radius: 5px;
}

:is(.import form) select, input{
    width: 100%;
    height: auto;
    border: none;
    outline: none;
    background: transparent;
    border-bottom: 2px solid #21fd58;
    font-size: 13px;
    margin-bottom: 7px;
    padding: 3px;
    transition: .3s;
}

.import form p{
    font-size: 13px;
    margin: 0;
}

.import form .items button{
    width: auto;
    height: auto;
    padding: 10px 15px;
    outline: none;
    border: none;
    background: #fff;
    color: #0ee745;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 400;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.4);
    transition: .3s;
}

.import form .items button:hover{
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.8);
    background: #0ee745;
    color: #fff;
}

/* Define a CSS class for the red border */
.error-border {
    border-bottom: 2px solid red;
}

.recent{
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    margin: 20px 0;
    padding: 10px;
}

.recent .db_products{
    width: 99%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #48be7b;
    padding: 3px 5px;
    margin: 2px 0;
}

.recent .db_products:nth-child(even){
    background: #28a05c;
}

.recent .db_products p{
    font-size: 12px;
    letter-spacing: 1px;
    color: #30533f;
    border-bottom: none;
    margin: 15px 5px;
    width: auto;
}

.recent .db_products form{
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fff;
}

.recent .db_products button{
    width: auto;
    height: auto;
    outline: none;
    border: none;
    font-weight: 400;
    letter-spacing: 1px;
    background: #e6a748;
    padding: 10px 10px;
    margin: 0 2px;
    font-size: 12px;
    color: #ffffff;
    cursor: pointer;
}

#top_text{
    width: 100%;
    height: auto;
    padding: 15px 5px 30px 25px;
    position: fixed;
    background: #e6a748;
    z-index: 10;
}

.top_text{
    width: 100%;
    height: auto;
    padding: 5px 5px 15px 25px;
    border-bottom: 1px solid #3d9c66;
    background: transparent;
    backdrop-filter: blur(10em);
    display: flex;
    flex-direction: column;
}

.top_text .more{
    margin-top: 15px;
}

.top_text .more button{
    width: auto;
    padding: 7px;
    font-size: 10px;
    background: transparent;
    border: none;
    background: linear-gradient(to right, #3c7454,#3d9c66);
    border-radius: 1px;
    margin: 0 5px;
    letter-spacing: 4px;
    color: #ffffff;
    text-transform: uppercase;
    font-weight: 600;
    outline: none;
    cursor: pointer;
    transition: .3s;
    z-index: 11;
}

.top_text .more button:hover{
    background: linear-gradient(to right, #3d9c66,#3c7454);
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.2);
}

:is(#top_text, .top_text) h1{
    font-size: 1em;
    letter-spacing: 15px;
    color: #30533f;
    text-transform: uppercase;
}

:is(#top_text, .top_text) p{
    font-size: 15px;
    letter-spacing: 15px;
    color: #3d9c66;
    border-left: 5px solid #3d9c66;
    padding: 10px 5px;
    margin-left: 6px;
    text-transform: uppercase;
}

.banking_items{
    width: 100%;
    height: 100vh;
    position: fixed !important;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.5);
    display: none;
    align-items: center;
    justify-content: center;
}

.banking_items form{
    width: 500px !important;
    height: auto;
    background: #fff !important;
    padding: 5px 10px !important;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.7);
    align-items: start;
}

.banking_items form h6{
    width: 100%;
    font-size: 15px;
    color: #0fbd3a;
    text-transform: uppercase;
    margin: 10px 2px;
    padding: 3px;
    letter-spacing: 1px;
    border-bottom: 1px solid #0fbd3a;
}

.banking_items form .inptus_con{
    width: 95%;
}

.banking_items form input{
    width: 100%;
    text-transform: capitalize;
}

.banking_items form .controls{
    width: 100%;
    padding: 10px;
    display: flex;
    justify-content: space-between;
}

.banking_items form .controls button{
    background: #fff;
    margin: 0 10px;
    color: #029927;
    padding: 10px 15px;
    border-radius: 5px;
    outline: none;
    border: none;
    cursor: pointer;
    transition: .3s;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.4);
}

.banking_items .controls button:hover{
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.7);
    color: #fff;
    background: #029927;
}

.mains .bank_h1{
    width: 100%;
    font-size: 18px;
    color: #fff;
    font-weight: 600;
    text-transform: uppercase;
    margin: 10px 2px;
    padding: 3px;
    letter-spacing: 1px;
    border-bottom: 2px solid #0fbd3a;
}

.db_banks{
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: start;
    justify-content: left;
}

.db_banks .items{
    width: auto;
    height: auto;
    background: #fff;
    border-radius: 4px;
    padding: 15px 20px;
    margin: 15px 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.7);
}

.db_banks .items p{
    font-size: 13px;
    color: #0ee745;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 25px;
}

.db_banks .items .btns{
    width: 100%;
    height: auto;
    display: flex;
    justify-content: space-between;
    padding: 0 5px;
    margin-top: 10px;
    border-top: 2px solid #0cb436;
}

.db_banks .items .btns button{
    background: #fff;
    color: #029927;
    padding: 10px 15px;
    border-radius: 5px;
    outline: none;
    border: none;
    cursor: pointer;
    margin-top: 5px;
    transition: .3s;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.4);
}

.db_banks .items .btns button:hover{
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.7);
    color: #fff;
    background: #029927;
}

.work_space{
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.work_space h1{
    font-size: 30px;
    color: #0ee745;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
    margin: 20px 0;
}

.work_space .quote{
    width: 98%;
    background: #fff;
    border-radius: 5px;
}

.work_space .quote form{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 10px;
}

.work_space .quote form:nth-child(1){
    border-bottom: 2px solid #06b614;
    background: #f1f0eb;
    border-radius: 5px;
}

.work_space .quote form:nth-child(even){
    background: #5eff86;
    border-radius: 5px;
}

.work_space .quote form p{
    font-size: 16px;
    color: #029927;
    text-transform: capitalize;
}

.work_space .quote form .btns{
    width: auto;
    display: flex;
}

.work_space .quote form .btns button{
    width: 40px;
    height: 40px;
    padding: 5px;
    font-size: 18px;
    text-align: center;
    background: transparent;
    border: none;
    background: linear-gradient(to right, #3c7454,#3d9c66);
    border-radius: 50px;
    margin: 0 20px;
    letter-spacing: 4px;
    color: #ffffff;
    text-transform: uppercase;
    font-weight: 600;
    outline: none;
    cursor: pointer;
    transition: .3s;
}

.work_space .quote form button:hover{
    background: linear-gradient(to right, #3d9c66,#3c7454);
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.2);
}

.work_space .quote .total_price{
    width: 90%;
    height: auto;
    padding: 20px 0;
    display: flex;
    flex-direction: row-reverse;
}

.work_space .quote .total_price p{
    font-size: 25px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #09cf3b;
    border-top: 2px solid #09cf3b;
    border-bottom: 2px solid #09cf3b;
}

.work_space .quote .total_price button{
    width: auto;
    padding: 5px;
    font-size: 18px;
    text-align: center;
    background: transparent;
    border: none;
    background: linear-gradient(to right, #3c7454,#3d9c66);
    border-radius: 5px;
    margin: 0 20px;
    letter-spacing: 4px;
    color: #ffffff;
    text-transform: uppercase;
    font-weight: 600;
    outline: none;
    cursor: pointer;
    transition: .6s;
}

.work_space .quote .total_price button:hover{
    background: linear-gradient(to right, #3d9c66,#3c7454);
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.2);
}

.work_space .additional{
    width: 100%;
    height: 100vh;
    display: none;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.5);
}

.work_space .additional .form{
    width: 600px;
    background: #fff;
    padding: 10px;
    border-radius: 5px;
}

.work_space .additional .form .header_side p{
    font-size: 16px;
    color: #029927;
    text-transform: capitalize;
}

.work_space .additional .btns{
    width: 100%;
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
    padding: 10px;
}

.work_space .additional .btns button{
    width: auto;
    height: auto;
    border: none;
    outline: none;
    color: #fff;
    background: #0ee745;
    border-radius: 5px;
    padding: 10px 20px;
    font-size: 14px;
    letter-spacing: 1px;
    cursor: pointer;
    transition: .3s;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.work_space .additional .btns button:hover{
    color: #0ee745;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.7);
    background: transparent;
    letter-spacing: 0;
}

.cashup_details{
    width: 100%;
    height: auto;
    min-height: 80vh;
    display: flex;
    padding: 30px 0;
    align-items: center;
    justify-content: center;
}

.cashup_details form{
    width: 80%;
    background: #fff;
    padding: 20px 10px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
}

.cashup_details form .item{
    width: 100%;
    display: flex;
    align-items: center;
    flex-direction: row;
}

.cashup_details form .item input{
    margin: 0 20px;
}

.cashup_details form textarea{
    width: 100%;
    font-size: 12px;
    font-style: italic;
    color: #000;
    background: transparent;
    height: 70px;
    outline: none;
    padding: 2px;
    border: 2px solid #22e653;
}

.cashup_details form h2{
    font-size: 20px;
    font-weight: 400;
    letter-spacing: 0;
    text-align: left;
    margin: 10px 0;
    color: #0fbd3a;
    text-transform: none;
}

.cashup_details form span{
    display: none;
    width: 50%;
    padding: 10px;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: transparent;
    backdrop-filter: blur(3em);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.8);
    border-radius: 5px;
}

.cashup_details form .btns{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding: 15px 0;
    margin: 20px 0;
    border-top: 2px dotted #0ee745;
}

.cashup_details form .btns p{
    color: grey;
    font-size: 12px;
    font-weight: 400;
    text-transform: uppercase;
}

.cashup_details form button{
    width: 150px;
    height: auto;
    border: none;
    outline: none;
    border: 2px solid #35f355;
    padding: 10px;
    margin: 10px 20px 0 20px;
    background: transparent;
    border-radius: 4px;
    font-size: 15px;
    text-transform: capitalize;
    color: #000;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: .3s;
}

.cashup_details form button:hover{
    background: #35f355;
    color: #fff;
}

.cashup_details .saved{
    width: 100%;
    height: 100vh;
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.5);
    overflow-y: scroll;
}

.cashup_details .saved form{
    width: 99%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2px 3px;
    background: #fff;
    border-radius: 0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.4);
}

.cashup_details .saved form:nth-child(even){
    background: #f1efef;
}

.cashup_details .saved form p{
    font-size: 11px;
    margin: 1px 0;
    color: #000;
}

.cashup_details .saved form .btn{
    display: flex;
    padding: 0;
}

.cashup_details .saved form .btn button{
    width: auto;
    padding: 4px;
    margin: 0 2px;
    border: none;
    background: #21fd58;
}

.cashup_details .saved form .btn button:nth-child(2){
    background: red;
}

:is(.payments_results, .payments_results1){
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    padding: 10px 0;
    padding-top: 5%;
    background-color: rgba(0, 0, 0, 0.5);
    overflow-y: scroll;
    display: none;
    flex-direction: column !important;
    align-items: center;
}

:is(.payments_results, .payments_results1) .blocks{
    width: 100%;
    height: auto;
    padding: 10px;
    border-radius: 5px;
    background: #fff !important;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    text-align: left;
    margin: 5px 0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.4);
}

:is(.payments_results, .payments_results1) .blocks p{
    font-size: 11px;
    font-weight: 400;
    margin: 0 4px;
}

:is(.payments_results, .payments_results1) button{
    position: fixed;
    right: 0;
    bottom: 0;
    height: auto;
    border: none;
    outline: none;
    border: 2px solid #35f355;
    padding: 10px;
    background: #fff;
    border-radius: 4px;
    font-size: 15px;
    text-transform: capitalize;
    color: #000;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: .3s;
}

.permission {
    width: 100%;
    display: flex;
    justify-content: center; /* Centers the form horizontally */
    align-items:center; /* Aligns the form to the top */
    height: 100vh; /* Ensures the container takes the full height of the viewport */
    overflow: hidden; /* Ensures the form container doesn't clip its children */
    position: fixed;
    background-color: rgba(0, 0, 0, 0.5);
    top: 0;
    overflow-y: scroll !important;
}

.permission.show {
    display: flex;
}

.permission form {
    width: 80% !important;
    max-height: 95vh !important;
    background: #fff !important;
    display: flex;
    flex-direction: column; /* Ensures that the contents are aligned vertically */
    padding: 0 !important;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
    overflow-y: scroll; /* Allows vertical scrolling */
    overflow-x: hidden; /* Prevents horizontal scrolling */
    position: relative; /* Ensures the form is positioned relative to its container */
}

.permission form .header{
    width: 100%;
    padding: 3px;
    background: #029927;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2px;
}

.permission form .header p{
    font-size: 12px;
    font-weight: 600;
    color: #fff;
    text-transform: uppercase;
}

.permission form .item{
    width: 100%;
    padding: 0 10px;
    display: flex;
}

.permission form .item .cols{
    width: 50%;
    margin: 2px;
}

.permission form .item .cols p{
    font-size: 10px;
}

.permission form .item .cols select{
    font-size: 10px;
    padding: 0;
}

.permission form button{
    position: fixed;
    right: 2%;
    bottom: 3%;
    width: 70px;
    height: 70px;
    border-radius: 50px;
    outline: none;
    background: #09cf3b;
    border: 2px solid #09cf3b;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    color: #fff;
    font-size: 18px;
    text-transform: uppercase;
    cursor: pointer;
    transition: .3s ease-in;
}

.permission form button:hover{
    background: #fff;
    color: #09cf3b;
    font-size: 13px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.7);
}

.holder{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px 0;
}

.holder .details{
    width: 95%;
    background: #fff;
    border-radius: 4px;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.4);
}

.holder .details p{
    font-size: 12px;
    color: #000;
    font-weight: 400;
    text-transform: capitalize;
    letter-spacing: 1px;
}

.my_orders{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: right;
    padding: 20px;
}

.my_orders h1{
    width: 100%;
    border-bottom: 1px solid #fff;
    font-size: 40px;
    font-weight: 600;
    letter-spacing: 0;
    text-align: left;
    margin: 10px 0;
    color: #0fbd3a;
    text-transform: none;
}

.my_orders .order_columns{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
}

.my_orders .orders{
    width: 300px;
    min-width: 30%;
    background: #fff;
    border-radius: 4px;
    padding: 10px;
    margin: 5px;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: space-between;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.4);
}

.my_orders .orders span{
    width: 100%;
    height: 1px;
    background: gray;
    margin-bottom: 5px;
}

.my_orders .orders h6{
    font-size: 14px;
    text-transform: capitalize;
    color: #28a05c;
    letter-spacing: 2px;
}

.my_orders .orders p{
    font-size: 13px;
    text-transform: capitalize;
}

.fun_files{
    width: 100%;
    padding: 5px 10px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}

.fun_files a{
    font-size: 13px;
    color: #0cb436;
    margin: 5px;
}

.del_btn{
    position: unset !important;
    width: 25px !important;
    height: 20px !important;
    border-radius: 2px !important;
    outline: none;
    border: none !important;
    color: #fff !important;
    background: rgb(238, 49, 49) !important;
    text-transform: uppercase;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.4);
    cursor: pointer;
}

.del_btn:hover{
    padding: unset !important;
    margin: unset !important
}

.del_btn i{
    font-size: 11px !important;
}

@media (max-width: 768px){

    .bin .scroller{
        width: 90%;
    }

    .join_now{
        font-size: 9px;
        width: 70px;
        bottom: 49%;
    }

    .join_now1{
        font-size: 9px;
        width: 70px;
    }

    .join_now2{
        font-size: 9px;
        width: 70px;
        bottom: 56%;
    }

    .front_anime .anime_1 p{
    font-size: 40px;
    letter-spacing: 5px;
    }

    .front_anime .anime_1 p:nth-child(2){
        font-size: 15px;
        letter-spacing: 2px;
    }

    .buble .buble_p{
        width: auto;
        padding: 0 5px;
    }

    .nav_contacts i{
        width: 12px;
    }
    
    .nav_contacts a{
        margin: 1px 0;
        font-size: 12px;
        letter-spacing: 0;
    }

    .home:nth-child(2) .join .join_p p{
        font-size: 18px;
        letter-spacing: 2px;
    }

    .home:nth-child(2) .join .join_p p:nth-child(2){
        font-size: 11px;
        letter-spacing: 1;
    }

    .but_txt_align h6{
        font-size: 12px;
        margin: 0 5px;
        line-height: 15px;
    }

    :is(.home:nth-child(2) .join .join_p, .vehicles .text, .home:nth-child(5) .branches .singles, .contact_us, .logout) button{
        width: 125px;
        height: 40px;
        font-size: 11px;
    }

    .home:nth-child(3) .service_heading h1{
        font-size: 25px;
        letter-spacing: 2px;
    }

    .home:nth-child(3) .services .service_box{
        width: 300px;
        padding: 15px 10px;
        margin: 70px 4px;
    }

    .home:nth-child(3) .services .service_box p{
        font-size: 14px;
    }

    .vehicles{
        padding-left: 10px;
    }

    .vehicles .text{
        width: auto;
        padding: 20px 10px;
        margin-bottom: -200px;
    }

    .home:nth-child(5) .contact_us form{
        width: 80%;
    }

    .home:nth-child(5) .contact_us form h1{
        font-size: 25px;
        letter-spacing: 1px;
        padding: 5px;
    }

    .home:nth-child(5) .contact_us form .inputs .input_text{
        width: 90%;
        font-size: 12px;
    }

    .home:nth-child(5) .branches .singles{
        width: auto;
        margin: 40px 4px;
        padding: 5px 10px;
    }

    .home:nth-child(5) .branches .singles h1{
        font-size: 12px;
        letter-spacing: 2px;
        margin: 3px 0;
    }

    .home:nth-child(5) .branches .singles p{
        font-size: 12px;
        font-weight: 400;
        margin: 2px 0;
    }

    .home:nth-child(5) .subscribe h2{
        font-size: 14px;
        text-align: center;
        margin: 10px 0;
    }

    .home:nth-child(5) .subscribe .input_text{
        width: 230px;
        font-size: 13px;
        letter-spacing: 1px;
        padding: 5px;
        margin: 10px 0 10px 0;
    }

    .home:nth-child(5) .subscribe button{
        width: auto;
        font-size: 12px;
        letter-spacing: 0;
        padding: 7px 7px;
    }

    .apply .wrapper{
        width: 100%;
    }

    .apply form .plan .plan_box{
        width: 100px;
        margin: 5px 2px;
    }

    .serve{
        width: auto;
        margin: 0 10px;
        margin-bottom: -35px;
    }

    .serve h6{
        font-size: 15px;
    }
    
    .serve p{
        font-size: 12px;
    }

    .apply .members{
        width: 400px;
    }

    .products h6{
        padding: 15px;
        font-size: 12px;
    }

    .products .more_info p{
        font-size: 12px;
        letter-spacing: 0;
    }

    .products .more_info .packs:nth-child(2) p{
        font-size: 13px;
        font-weight: 600;
        letter-spacing: 1px;
    }

    .products .more_info .packs p{
        font-size: 11px;
        letter-spacing: 0;
    }

    .msg p{
        font-size: 12px;
        padding: 15px 3%;
        opacity: 1;
    }

    .sign .heading h1{
        font-size: 20px;
        letter-spacing: 2px;
    }

    .sign .heading p{
        font-size: 13px;
    }

    .sign .create form{
        width: 70%;
        padding: 30px 10px;
    }

    .sign .create form h1{
        font-size: 20px;
        letter-spacing: 2px;
        margin-top: -10px;
        border: none;
    }
    
    .sign .create form .inputs .input_text{
        font-size: 13px;
    }

    .sign .create form .inputs i{
        font-size: 14px;
        width: 35px;
    }

    .profile .top_divs{
        margin: 0 20px 1% 20px;
    }

    .profile .top_divs .new_member{
        width: 120px;
        padding: 15px 4px;
    }

    .profile .top_divs .new_member p{
        font-size: 10px;
        letter-spacing: 0;
    }

    .profile .panels .heading p{
        font-size: 12px;
    }

    .profile .panels .dummies form{
        padding: 10px 0;
    }

    .profile .panels .dummies form .pro_txt{
        width: 230px;
        font-size: 9px;
    }

    .profile .panels .dummies form:nth-child(2) .pro_txt{
        font-size: 10px;
    }
    
    .profile .panels .dummies form:nth-child(3) .pro_txt{
        font-size: 10px;
    }

    .gallery .gallery_heading{
        padding: 10px 0;
    }

    .gallery .gallery_heading h1{
        font-size: 25px;
    }

    .logout{
        margin-top: 3%;
    }

    .container .heading h1{
        font-size: 15px;
        letter-spacing: 2px;
        margin-bottom: 5px;
    }

    .container .heading button{
        padding: 5px 15px;
        font-size: 12px;
        border-radius: 3px;
        margin: 1px 0 4px;
    }

    .container .heading p{
        font-size: 12px;
        letter-spacing: 1px;
        padding: 2px 3px;
        border-left: 2px solid #fff;
    }

    .container .member_panel{
        height: auto;
    }

    .container .member_panel .items{
        margin: 4px;
        padding: 1px;
    }

    .container .member_panel .items p{
        margin-bottom: 5px;
        font-size: 12px;
    }

    .container .member_panel .search{
        padding: 10px ;
    }

    .container .member_panel .search form{
        width: 400px;
    }

    .container .member_panel .search form .input_txt{
        width: 270px;
        font-size: 12px;
        padding: 5px 2px;
        border-bottom: 1px solid #fff;
    }

    .container .member_panel .search form button{
        padding: 5px 15px;
        border: 1px solid #1bf852;
        font-size: 13px;
        margin: 5px;
    }

    .main .mains .search form{
        width: 400px;
    }

    .main .mains .search form .input_txt{
        width: 270px;
        font-size: 12px;
        padding: 5px 2px;
        border-bottom: 1px solid #fff;
    }

    .main .mains .search form button{
        padding: 5px 15px;
        border: 1px solid #1bf852;
        font-size: 13px;
        margin: 5px;
    }

    .container .main_panel .items{
        width: 300px;
        margin: 0 10px;
        margin-top: 3%;
        padding: 6px 20px;
    }

    .container .main_panel .admin .items{
        width: 300px;
        height: 130px;
    }
    
    .container .main_panel .admin p{
        font-size: 12px;
    }

    .container .main_panel .items p{
        font-size: 11px;
    }
    
    .container .main_panel .items:hover p{
        font-size: 13px;
    }
    
    .container .main_panel .items .total p{
        font-size: 11px;
    }

    .edit_menu .main_member .info{
        padding: 5px;
    }

    .edit_menu .main_member .info p{
        font-size: 11px;
        padding: 5px 15px;
        text-align: center;
    }

    .edit_menu .items form .input_text{
        width: 95%;
        font-size: 13px;
    }

    .extended{
        bottom: 16%;
    }

    #addext{
        padding: 10px 30px;
        font-size: 14px;
    }

    .history_items form .input_text{
        font-size: 11px;
        padding: 3px;
        margin: 0 4px;
    }

    #slip i{
        font-size: 16px;
        margin-left: 2px;
    }

    .bio_event .events{
        width: 90%;
    }

    .main .logs_users .items{
        padding: 5px 5px;
        margin: 0 4px;
    }
    
    .main .logs_users .items p{
        font-size: 10px;
    }

    .main .logs_data .items{
        padding: 10px 2px;
    }

    .main .logs_data .items p{
        font-size: 10px;
    }

    .main .logs_data .no_logs p{
        font-size: 11px;
        padding: 10px 5px;
    }

    .menu_bar {
        left: 8px;
        top: 20px;
    }

    .main .mains .heading{
        padding: 10px 8px 10px 40px;
    }
    
    .main .mains .heading p{
        font-size: 18px;
    }

    .pay-con .title{
        width: 100%;
        height: auto;
        margin-top: 0;
    }

    .pay-con .title p{
        font-size: 20px;
        letter-spacing: 1px;
        padding-left: 10px;
    }

    .pay-con form{
        width: 90%;
    }

    .pay-con form .items{
        margin-bottom: 18px;
    }
    
    .pay-con form .items p{
        font-size: 14px;
        margin-bottom: 5px;
    }

    .pay-con form .items button{
        width: 120px;
        padding: 10px;
        margin-top: 10px;
        font-size: 14px;
    }

    .pay-con form .confirm_pay .confirm_box h6{
        font-size: 14px;
        margin-bottom: 6px;
    }

    .pay-con form .confirm_pay .confirm_box{
        width: 85%;
        padding: 50px;
    }

    .pay-con form .confirm_pay .confirm_box .confirm_btns button{
        width: 100px;
        font-size: 12px;
        padding: 6px 30px;
        margin: 0 10px;
    }

    .new_design .long_horizontal .finger_tips{
        margin-bottom: -35%;
    }

    .new_design .long_horizontal .finger_tips button{
        margin: 5px;
    }

    .new_design .long_horizontal{
        padding: 0 10px;
        height: 40px;
    }

    .new_design .long_horizontal h5{
        font-size: 12px;
    }

    .new_design .short_horizontal .items p{
        font-size: 12px;
    }
    
    .new_design .short_horizontal .items button{
        padding: 10px;
    }

    .new_design .personal_items .personal_main{
        width: 58%;
        margin-left: 4px;
    }

    .new_design .personal_items .personal_main .heading h5{
        font-size: 14px;
    }

    .new_design .personal_items .personal_main .details{
        margin-left: 4px;
        padding: 10px 5px;
    }

    .new_design .personal_items .personal_main .details h6{
        font-size: 13px;
        letter-spacing: 2px;
        margin: 7px 0;
    }
    
    .new_design .personal_items .personal_main .details p{
        font-size: 13px;
        letter-spacing: 0;
        padding-left: 7px;
    }

    .new_design .personal_items .shorts{
        width: 45%;
        padding: 0 4px;
    }

    .new_design .personal_items .shorts .shorts_items h5{
        font-size: 14px;
    }

    .new_design .personal_items .shorts .shorts_items .details p{
        font-size: 12px;
        letter-spacing: 0;
        padding-left: 2px;
    }

    .new_design .personal_items .personal_main .main_edits form{
        width: 95%;
        padding-bottom: 0;
    }

    .new_design .personal_items .personal_main .main_edits form .inputs input{
        padding: 2px;
    }

    .new_design .personal_items .personal_main .main_edits form .main_submit button{
        padding: 10px 50px;
        font-size: 12px;
    }

    .all_payments .items{
        width: 99%;
        padding: 5px;
    }

    .all_payments .heading{
        width: 99%;
    }

    .import form{
        width: 90%;
        padding: 15px 10px;
    }

    :is(.import form) select, input{
        font-size: 12px;
        margin-bottom: 10px;
        padding: 2px;
    }

    .import form p{
        font-size: 11px;
    }

    .edit_rec form{
        width: 90%;
        padding: 15px;
    }
    
    .edit_rec form h3{
        font-size: 15px;
    }
    
    .edit_rec form p{
        font-size: 13px;
        letter-spacing: 0;
    }
    
    .edit_rec form input{
        font-size: 13px;
        margin-bottom: 5px;
        padding: 3px;
    }
    
    .edit_rec form select{
        font-size: 13px;
        margin-bottom: 5px;
        padding: 3px;
    }

    .new_design .long_horizontal .view_more button{
        font-size: 12px;
    }

    .main .reports{
        width: 100%;
        padding: 10px 0;
    }

    .reports form{
        width: 95%;
        padding: 20px 15px;
    }

    .reports form h6{
        font-size: 13px;
        letter-spacing: 0;
    }
    
    .reports form .inptus_con{
        width: 100%;
        margin: 10px 0;
    }
    
    .reports form .inptus_con p{
        font-size: 13px;
    }
    
    .reports form .inptus_con .input_text{
        width: 90%;
        font-size: 13px;
    }

    .reports form button{
        padding: 10px 20px;
        font-size: 13px;
    }

    .main .recent_msg{
        font-size: 13px;
        padding: 5px 0;
        margin-bottom: 0;
    }

    .main .mains form .inputs{
        width: 90%;
    }
    
    .main .mains form .inputs .inptus_con{
        width: 100%;
        margin-bottom: 3px;
    }

    .main .mains form .inputs .inptus_con .input_text{
        width: 100%;
        letter-spacing: 1px;
        font-size: 11px;
    }

    .admin_acc form input{
        width: 30% !important;
        margin: 10px 2px;
        font-size: 10px;
    }

    .admin_acc form .controls button{
        margin: 0 3px;
        padding: 5px 10px;
        font-size: 11px;
    }

    .mains .bank_h1{
        font-size: 14px;
        margin: 5px 2px;
        padding: 3px;
        letter-spacing: 1px;
    }

    .banking_items form{
        width: 90% !important;
        height: auto;
        background: #fff !important;
        padding: 5px 10px !important;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.7);
        align-items: start;
    }

    .banking_items form h6{
        width: 100%;
        font-size: 15px;
        color: #0fbd3a;
        text-transform: uppercase;
        margin: 10px 2px;
        padding: 3px;
        letter-spacing: 1px;
        border-bottom: 1px solid #0fbd3a;
    }

    .more_ctrl .items{
        width: 90%;
    }
    
    .more_ctrl .items h3{
        font-size: 13px;
    }
    
    .more_ctrl .items p{
        margin-top: 10px;
        font-size: 12px;
    }
    
    .more_ctrl .items select{
        width: 100%;
        font-size: 12px;
    }

    .cashup_details form{
        font-size: 11px;
        margin: 0 10px;
    }

    .cashup_details form .item input{
        margin: 0 10px;
        font-size: 11px;
    }

    .cashup_details form select{
        font-size: 11px;
    }
    
    .cashup_details form textarea{
        font-size: 11px;
    }

    .cashup_details form button{
        width: 130px;
        padding: 10px;
        margin: 0;
        font-size: 13px;
    }

    .cashup_details form span{
        width: 90%;
    }

    .cashup_details form span input{
        margin: 0 10px;
        font-size: 11px;
    }

    .cashup_details .saved form p{
        font-size: 10px;
    }

    .notes{
        height: fit-content;
    }

    .notes form{
        width: 80%;
    }

    .notes form input{
        padding: 4px;
    }
    
    .notes form textarea{
        width: 100%;
        height: 70px;
        outline: none;
        border: 2px solid #09cf3b;
        padding: 4px;
    }

    .notes .items .my_note form{
        width: 250px;
        min-width: 250px !important;
    }

    .notes .items .my_note form input{
        padding: 4px;
    }
    
    .notes .items .my_note form textarea{
        height: 70px;
        padding: 4px;
    }

    .container .saved_files .files .items p{
        font-size: 9px;
    }
    
    .container .saved_files .files .items p:nth-last-child(1){
        font-size: 17px;
    }
    
    .container .file_fields form{
        width: 99%;
        margin: 15px 0;
    }
    
    .container .file_fields form button{
        width: 40px;
        height: 40px;
        font-size: 14px;
    }
    
    .container .file_fields form .devider .heading h3{
        font-size: 15px;
    }
    
    .container .file_fields form .devider .items .cols p{
        font-size: 11px;
    }
    
    :is(.container .file_fields form .devider .items .cols) input, select{
        font-size: 11px;
    }
    
    .container .file_fields form .devider .items .cols textarea{
        font-size: 11px;
        height: 50px;
    }

    .container .file button{
        width: 50px;
        min-width: 50px;
        height: 50px;
    }

    .permission form {
        width: 95% !important;
    }
    
    .permission form .header p{
        font-size: 11px;
    }
    
    .permission form .item{
        padding: 0 6px;
    }
    
    .permission form button{
        width: 50px;
        height: 50px;
        font-size: 14px;
    }

    .file_more form{
        width: 90%;
    }
    
    .file_more form .heading p{
        font-size: 13px;
    }
    
    .file_more form .heading button{
        font-size: 14px;
    }
    
    .file_more form button{
        font-size: 12px;
        letter-spacing: 1px;
        padding: 15px 25px;
        margin: 0 20px;
    }

    .decide form{
        width: 90%;
    }
    
    .decide form h1{
        font-size: 2em;
    }

    .history_items form .input_text{
        width: 100% !important;
        font-size: 13px;
        margin: 2px 0;
        padding: 2px;
    }

    .history_items form .spaner{
        width: 100% !important;
        display: flex !important;
        flex-direction: row !important; 
        justify-content: space-between !important;
    }

    .history_items form button{
        font-size: 25px !important;
        margin: 0 2px;
    }
}

@media (max-width: 425px){

    .custom-shape-divider-top-1675699607 {
        display: none;
    }
    .home:nth-child(1){
        height: 70vh;
    }

    .home:nth-child(3) .services{
        height: auto;
        padding: 10px;
    }

    .serve{
        margin-bottom: 0;
        margin-top: 20px;
    }

    #serve1{
        margin: 0 0 10px 0;
    }

    .nav{
        padding: 0 10px;
    }

    .nav_contacts{
        display: none;
    }

    .front_anime .anime_1 p{
        font-size: 25px;
        letter-spacing: 5px;
    }

    .front_anime .anime_1 p:nth-child(2){
        font-size: 10px;
        letter-spacing: 0;
    }

    .home:nth-child(2) .join .join_p{
        padding: 15px 10px;
    }

    .home:nth-child(2) .join .join_p p{
        font-size: 14px;
        letter-spacing: 1px;
    }

    .home:nth-child(2) .join .join_p p:nth-child(2){
        font-size: 11px;
        letter-spacing: 0;
    }

    .but_txt_align h6{
        font-size: 10px;
        margin: 0 5px;
        line-height: 15px;
    }

    .home:nth-child(3) .service_heading h1{
        font-size: 18px;
        letter-spacing: 1px;
    }

    .home:nth-child(3) .services{
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding: 5px;
    }

    .home:nth-child(3) .services .service_box{
        width: 95%;
        padding: 30px 10px;
        margin: 10px 0;
    }

    .home:nth-child(5) .contact_us form{
        width: 99%;
        margin-bottom: -5px;
    }

    .home:nth-child(5) .contact_us form h1{
        font-size: 18px;
    }

    .home:nth-child(5) .contact_us form .inputs .input_text{
        width: 95%;
        font-size: 10px;
    }

    .home:nth-child(5) .branches .singles{
        width: 90%;
        margin: 5px 0 15px 0;
        padding: 5px 10px;
    }

    .gallery .gallery_heading{
        padding: 5px 0;
    }

    .gallery .gallery_heading h1{
        font-size: 20px;
    }
    
    .gallery .pictures .pic_box{
        min-width: 320px;
        height: 210px;
        margin: 3px 0;
    }

    .home:nth-child(5) .subscribe{
        width: 100%;
        padding: 10px 0;
    }

    .home:nth-child(5) .subscribe form{
        width: 98%;
    }

    .home:nth-child(5) .subscribe .inputs{
        border: 1px solid #f1cc54;
        padding: 0 4px;
    }

    .home:nth-child(5) .subscribe i{
        font-size: 9px;
    }

    .home:nth-child(5) .subscribe button i{
        font-size: 9px;
    }

    .home:nth-child(5) .subscribe .input_text{
        width: 60%;
        font-size: 9px;
        letter-spacing: 0;
        padding: 4px;
    }

    .home:nth-child(5) .subscribe button{
        width: auto;
        font-size: 11px;
        padding: 4px 5px;
    }

    :is(.home:last-child, #appfooter){
        flex-direction: column;
        height: auto;
        padding: 5px 0;
    }
    
    :is(.home:last-child, #appfooter) p{
        font-size: 7px;
        margin: 3px 0;
    }

    .about_plans{
        padding: 10px 0 0 0;
    }

    .about_plans p{
        font-size: 10px;
        letter-spacing: 1px;
        font-weight: 400;
        margin-left: 10px;
        width: 94%;
        padding: 10px 5px;
    }

    .apply .members{
        width: 310px;
    }

    .apply{
        padding-top: 17%;
        width: 100%;
    }

    .apply .filler{
        width: 99% !important;
        display: flex;
        flex-direction: column;
        justify-content: left;
        align-items: start;
    }

    .apply .header p{
        font-size: 14px;
        letter-spacing: 1px;
    }
    
    .apply form .plan{
        flex-direction: column ;
        margin: 5px 0;
    }

    .apply form .plan .plan_box{
        margin: 15px 10px;
        padding: 10px 0;
        width: 280px;
        border-bottom: none;
        border-left: 2px solid #f1cc54;
    }

    .apply form .plan .plan_box p{
        font-size: 13px;
    }

    .apply .labels{
        margin-left: 15px;
        font-size: 12px;
        display: flex;
        justify-content: left;
        align-items: start;
    }

    .apply .input_text{
        font-size: 12px;
        color: #000;
        letter-spacing: 1px;
        padding: 2px 4px;
    }

    .apply .swipe{
        font-size: 14px;
        margin: 15px 0 5px 0;
    }
    
    .apply .navi{
        padding: 15px 5px;
    }

    .notes form{
        width: 95%;
    }

    .notes form .btns button{
        padding: 10px 20px;
        letter-spacing: unset;
        font-size: 12px;
    }

    .products .more_info{
        width: 95%;
        padding: 20px 10px;
        margin: 10px;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    }

    .products h6{
        padding: 10px;
        font-size: 11px;
    }

    .products .more_info p{
        font-size: 11px;
    }

    .products .more_info .packs:nth-child(2) p{
        font-size: 11px;
        font-weight: 600;
        letter-spacing: 0;
    }

    .products .more_info .packs p{
        font-size: 9px;
        padding: 0 2px;
    }

    .msg p{
        font-size: 10px;
        padding: 5px 2%;
    }

    .sign .heading h1{
        font-size: 25px;
        letter-spacing: 1px;
    }

    .sign .heading p{
        font-size: 11px;
    }

    .sign .create form{
        width: 98%;
    }

    .sign .create form h1{
        font-size: 25px;
    }
    
    .sign .create form .inputs .input_text{
        letter-spacing: 0;
    }

    .sign .create form button{
        font-size: 13px;
        letter-spacing: 0;
        padding: 8px 7px;
    }

    .sign .create form .help p{
        font-size: 13px;
    }

    .profile .top_divs{
        width: 100%;
        flex-direction: column;
        justify-content: space-between;
        margin: 0;
    }

    .profile .panels .heading p{
        font-size: 10px;
        padding: 0 4px;
    }

    .profile .top_divs .new_member{
        width: 95%;
        margin: 5px 0;
    }

    .profile{
        width: 100%;
        display: flex;
        flex-direction: column;
        margin-top: -16%;
        margin-bottom: 15px;
    }

    .logout{
        margin-top: 5%;
    }

    .billing p{
        font-size: 10px;
        letter-spacing: 0;
        margin: 3px 0;
    }
    
    #main_width{
        min-width: 145px;
        word-wrap: break-word;
    }

    #ident{
        min-width: 90px;
    }

    .container .member_panel .items{
        margin: 4px 0;
    }

    .container .member_panel .items p{
        margin: 2px;
        font-size: 11px;
    }

    .container .member_panel .items p i{
        width: 10px;
    }

    .container .member_panel .search{
        padding: 10px;
    }

    .container .member_panel .search form{
        width: 100%;
    }

    .container .member_panel .search form .input_txt{
        width: 80%;
        font-size: 11px;
        padding: 2px ;
    }

    .container .member_panel .search form button{
        padding: 4px;
        font-size: 9px;
        margin: 5px;
    }

    .container .member_panel .search{
        padding: 5px;
    }

    .main .mains .search form{
        width: 100%;
    }

    .main .mains .search form .input_txt{
        width: 80%;
        font-size: 9px;
        padding: 2px ;
    }

    .main .mains .search form button{
        padding: 4px;
        font-size: 9px;
        margin: 5px;
    }

    .container .main_panel .container_items{
        flex-direction: column;
    }

    .container .main_panel .items{
        width: 95%;
        height: 70px;
        margin: 10px 0;
        padding: 6px 20px;
    }

    .container .main_panel .admin{
        flex-direction: column;
    }

    .container .main_panel .admin .items{
        width: 95%;
        height: 120px;
    }

    .edit_menu .main_member .info p{
        font-size: 10px;
        padding: 5px;
    }

    .edit_menu .items form .input_text{
        font-size: 12px;
        letter-spacing: 1px;
    }

    .edit_menu form button{
        width: 120px;
        padding: 10px;
        letter-spacing: 2px;
        font-size: 12px;
    }

    .payment_history .header h6{
        font-size: 10px;
        letter-spacing: 0;
    }

    .payment_history .header{
        padding: 7px 5px;
    }

    .history_items{
        width: 100% !important;
    }

    .history_items form{
        width: 100% !important;
        display: flex;
        flex-direction: column;   /* stack top → bottom */
        align-items: flex-start;  /* do NOT stretch horizontally */
        gap: 4px;
    }

    :is(.home:nth-child(2) .join .join_p, .vehicles .text, .home:nth-child(5) .branches .singles, .contact_us, .navi, .logout) button{
        width: auto;
        height: auto;
        padding: 10px;
        font-size: 11px;
        font-weight: 400;
        letter-spacing: 0;
    }

    .payment_history .history .history_items{
        width: 100%;
        padding: 2px 10px;
        margin: 5px;
    }

    .payment_history .history .history_items p{
        font-size: 10px;
        letter-spacing: 0;
    }

    .all_payments .heading p{
        font-size: 11px;
    }

    .payment_history .header button{
        padding: 7px 10px;
        font-size: 12px;
    }

    .banking_items form{
        width: 90% !important;
    }

    #slip i{
        font-size: 13px;
    }
    
    .proof .upload{
        width: 90%;
    }

    .bio .bio_items form .input_text{
        font-size: 10px;
        border-bottom: 1px solid #f5dc8c;
    }
    
    .bio .bio_items form p{
        font-size: 9px;
        letter-spacing: 0;
        margin: 5px 0;
    }
    
    .bio .bio_items form button{
        padding: 5px 4px;
        font-size: 10px;
    }

    .bio .heading p{
        font-size: 10px;
        letter-spacing: 0;
    }
    
    .bio .heading p i{
        font-size: 12px;
    }

    .bin .scroller{
        width: 99%;
        height: 300px;
    }

    .bio_event .events{
        width: 95%;
    }

    .bio_event .events form p{
        width: 250px;
    }

    .bio_event .events form .input_text{
        width: 250px;
        font-size: 11px;
        letter-spacing: 1px;
        margin: 13px 0;
        padding: 5px 2px;
    }

    .bio_event .events form .names{
        width: 250px;
        font-size: 11px;
        letter-spacing: 1px;
        margin: 13px 0;
        padding: 5px 2px;
    }

    .bio_event .events form button{
        width: 250px;
        padding: 8px 100px;
        letter-spacing: 3px;
        font-size: 10px;
    }

    .group form {
        width: 99%;
    }
    
    .main .logs_users .items p{
        font-size: 11px;
        text-align: center;
    }

    .main .logs_data .items p{
        font-size: 7.5px;
    }

    .main .logs_data .no_logs p{
        font-size: 10px;
    }

    .menu_bar {
        left: 8px;
        top: 14px;
    }

    .main .mains .heading{
        padding: 8px 8px 8px 40px;
    }
    
    .main .mains .heading p{
        font-size: 15px;
    }

    .pay-con form{
        width: 98%;
    }

    .pay-con form .items button{
        width: 110px;
        padding: 10px;
        font-size: 13px;
        margin-bottom: -10px;
    }

    .pay-con form .items p{
        font-size: 12px;
        font-weight: 500;
        margin-bottom: 1px;
    }
    
    .pay-con form .confirm_pay .confirm_box{
        width: 95%;
        padding: 20px 50px;
    }

    .pay-con form .confirm_pay .confirm_box h6{
        width: 100%;
        font-size: 10px;
    }

    .pay-con form .confirm_pay .confirm_box p{
        font-size: 12px;
    }

    :is(.pay-con form .items) select, input{
        font-size: 12px;
        padding: 2px;
    }

    .pay-con form .confirm_pay .confirm_box .confirm_btns button{
        width: 80px;
        font-size: 12px;
        padding: 3px 8px;
        margin: 0 3px;
    }

    .new_design .long_horizontal{
        padding: 5px 2px;
    }

    .new_design .long_horizontal h5{
        font-weight: 400;
        font-size: 9px;
        letter-spacing: 0;
    }

    .new_design .long_horizontal .finger_tips button{
        font-size: 10px;
        margin: 2px;
    }

    .new_design .short_horizontal{
        padding: 5px 2px;
    }

    .new_design .short_horizontal .items p{
        font-size: 10px;
        letter-spacing: 0;
    }
    
    .new_design .short_horizontal .items button{
        font-size: 16px;
    }

    .new_design .personal_items{
        flex-direction: column;
        margin: 5px 0;
    }

    .new_design .personal_items .personal_main{
        width: 99%;
        height: auto;
        margin-left: 0;
    }

    .new_design .personal_items .personal_main .main_edits form{
        width: 95%;
    }

    .new_design .personal_items .personal_main .main_edits form .inputs input{
        padding: 1px;
    }

    .new_design .personal_items .personal_main .main_edits form .main_submit button{
        padding: 10px 40px;
        font-size: 11px;
    }

    .new_design .personal_items .shorts{
        width: 100%;
        height: auto;
        padding: 0 4px;
        margin: 0;
    }

    .new_design .personal_items .shorts .shorts_items:nth-child(2){
        width: 100%;
        height: auto!important;
        margin: 5px 0;
    }

    .all_payments .heading .pri button{
        width: 70px;
        font-size: 10px;
        padding: 2px 7px;
        margin: 4px;
    }

    .all_payments .items p{
        font-size: 10px;
    }

    .slip-con .slip{
        width: 99%;
        height: auto;
        min-height: 80vh;
    }

    .slip-con .slip .letter-head .letter_details h3{
        font-size: 13px;
        font-weight: 500;
    }
    
    .slip-con .slip .letter-head .letter_details p{
        font-size: 9px;
    }
    
    .slip-con .slip .letter-head .letter_details:nth-child(3) p{
        font-size: 10px;
    }

    .slip-con .slip-btns{
        width: 90%;
    }

    .slip-con .slip-btns button{
        padding: 10px 30px;
        font-size: 14px;
        font-weight: 400;
    }
    
    .import form{
        width: 99%;
    }

    :is(.import form) select, input{
        font-size: 10px;
        margin-bottom: 7px;
    }

    .import form p{
        font-size: 10px;
    }

    .import form .items button{
        padding: 7px 10px;
        font-size: 11px;
    }

    .edit_rec form{
        width: 99%;
    }
    
    .edit_rec form h3{
        font-size: 14px;
    }
    
    .edit_rec form p{
        font-size: 11px;
    }
    
    .edit_rec form input{
        font-size: 11px;
    }
    
    .edit_rec form select{
        font-size: 11px;
    }

    .edit_rec form .btns{
        margin: 5px 0;
    }

    .edit_rec form .btns button{
        padding: 10px 20px;
        font-size: 12px;
        letter-spacing: 0;
    }

    .reports form{
        width: 99% !important;
        padding: 20px 5px;
        margin: 0;
    }

    .reports form h6{
        font-size: 11px;
    }
    
    .reports form .inptus_con{
        width: 100%;
        margin: 10px 0;
    }

    .reports form .inptus_con p{
        font-size: 11px;
    }
    
    .reports form .inptus_con .input_text{
        width: 99%;
        font-size: 11px;
    }
    
    .reports form button{
        font-size: 12px;
    }

    .main .mains form .inputs{
        width: 99%;
    }

    .main .mains form .inputs .inptus_con p{
        font-size: 12px;
    }

    .admin_acc form input{
        width: 30% !important;
        margin: 5px 2px;
        font-size: 9px;
    }

    .admin_acc form .controls button{
        margin: 0 3px;
        padding: 5px 10px;
        font-size: 10px;
    }

    .mains .bank_h1{
        font-size: 10px;
    }

    .more_ctrl .items{
        width: 99%;
    }
    
    .more_ctrl .items p{
        font-size: 10px;
    }
    
    .more_ctrl .items select{
        font-size: 10px;
    }

    .cashup_details form{
        width: 99%;
        margin: 0;
    }

    .cashup_details form .item input{
        margin: 0 5px;
        font-size: 10px;
    }

    .cashup_details form select{
        font-size: 10px;
    }
    
    .cashup_details form textarea{
        font-size: 10px;
        height: 50px;
    }

    .cashup_details form button{
        font-size: 11px;
    }

    .cashup_details form span{
        width: 99%;
    }

    .cashup_details form span p{
        font-size: 9px;
    }

    .cashup_details .saved form p{
        font-size: 9px;
        margin: 0 1px;
    }

    .container .saved_files .files .items{
        width: 100%;
        padding: 5px 2px;
    }

    .container .saved_files .files .items p{
        font-size: 9px;
    }
    
    .container .saved_files .files .items p:nth-last-child(1){
        font-size: 14px;
    }

    .container .saved_files .files .items .btns p{
        width: 20px;
        height: 20px;
        font-size: 12px;
        background: #fff;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        margin: 0 5px;
        padding: 10px 10px;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.7)
    }

    :is(.container .file_fields form .devider .items .cols) input, select{
        font-size: 10px;
    }
    
    .container .file_fields form .devider .items .cols textarea{
        font-size: 10px;
    }

    .container .file_fields form .devider .items{
        flex-direction: column;
    }

    .container .file_fields form .devider .items .cols{
        width: 90%;
    }

    .container .file button{
        width: 40px;
        min-width: 40px;
        height: 40px;
        font-size: 14px;
    }

    .container .file_fields form button{
        width: 30px;
        height: 30px;
        font-size: 13px;
        bottom: 1%;
    }

    .file_more form{
        width: 98%;
    }
    
    .file_more form .heading p{
        font-size: 12px;
    }
    
    .file_more form .heading button{
        font-size: 12px;
    }
    
    .file_more form button{
        font-size: 11px;
        letter-spacing: unset;
        padding: 10px 20px;
        margin: 0 15px;
    }

    .decide form{
        width: 98%;
    }
    
    .decide form h1{
        font-size: 2em;
    }

    .decide form .items{
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
    }
}