.formInput {
    max-width: max-content;
    border: 1px solid var(--grey-3);
    background: var(--white);
    outline: none;
    border-radius: 5px;
    padding: var(--spacing-4px) var(--spacing-16px);
    font-size: 12px;
}

.multiFeild .formInput {
    width: 82px;
}
.text18{
    font-size: 18px;
    font-weight: 500;
    line-height: 120%;
    color: #171717;
    font-family: var(--MintRegular);
}

.formFlexOuter {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-direction: row;
    gap: var(--spacing-20px);
}

.formFlex {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: var(--spacing-8px);
}

.multiFeild {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: var(--spacing-8px);
}

.namelink {
    font-weight: 500;
    font-size: 16px;
    line-height: 120%;
    color: var(--black-1);
}

/* Global use css */
.mob-hide {
    display: none;
}

.bg-blue {
    background: var(--primary-7);
}

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

.text-green {
    color: var(--green-6);
}

.text-gray {
    color: var(--black-5);
}

.text2 {
    font-weight: 400;
    font-size: 12px;
    line-height: 120%;
    color: var(--black-5);
}

.text3 {
    font-weight: 400;
    font-size: 14px;
    line-height: 120%;
    color: var(--black-5);
}

.text4{
    font-size: 10px;
}

.overf-auto {
    overflow: auto;
}

/* Flex Box */

.flex {
    display: flex;
    align-items: center;
}

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

.flex-between {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.flex-evenly {
    display: flex;
    justify-content: space-evenly;
}

.items-center {
    align-items: center;
}

.f-items-center {
    display: flex;
    align-items: center;
}

.flex-col {
    display: flex;
    flex-direction: column;
}

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

.flexStart {
    justify-content: flex-start;
}

.wrap {
    flex-wrap: wrap;
}

/* end Flex Box  */

/* Heading Start*/

.heading-2 {
    font-family: var(--MintBold);
    font-size: 18px;
    line-height: 120%;
    color: var(--black-1);
}

.heading-3 {
    font-size: 18px;
    line-height: 120%;
    color: var(--black-1);
    font-weight: 500;
}

/*End Heading Start*/

/* border */
.border-btm {
    border-bottom: 1px solid #F5F5F5;
}

/* end border */

.ds-none {
    display: none;
}

.listicon {
    border-radius: 10px;
    min-width: 12px;
    min-height: 4px;
    display: flex;
}

.Imageboxall {
    max-width: 170px;
    height: 170px;
    width: 100%;
    overflow: hidden;
    border-radius: 10px;
    border: 2px solid #EEEEEE;
    padding: 2px;
}

.Imageboxall img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    object-position: center;
}

/* button */
.btnRightsidesale {
    display: flex;
    align-items: center;
    gap: 10px;
}

.btnRightsidesale button {
    padding: 10px 16px;
    font-size: 13px;
    line-height: 120%;
    font-family: var(--MintRegular);
    color: var(--black-5);
}

.btnRightsidesale button.active {
    background: var(--primary-7);
    color: var(--white);
    /* border: 1px solid var(--primary-7); */
}

/*End button */

/* search bar */
.searchbardesign {
    border: 1px solid #EEEEEE;
    border-radius: 6px;
    background: var(--white);
    padding: 10px 12px;
    flex-direction: row-reverse;
    max-width: 284px;
    width: 100%;
}

.searchbardesign.SearchBox input {
    max-width: 100%;
    width: 100%;
    color: var(--black-1);
    font-weight: 400
}

.searchbardesign svg {
    max-width: 12px;
    height: 12px;
    width: 100%;
}

.searchbardesign svg path {
    stroke: var(--black-5);
}

/*End search bar */

/* dropdown custom */
.dropdowndesign {
    background: var(--grey5);
    border: 1px solid #EEEEEE;
    border-radius: 6px;
}

.DropWrap.dropdowndesign {
    min-width: unset;
    background: var(--grey-5);
}

.DropWrap.dropdowndesign label {
    display: none;
}

.dropdowndesign .DropBoxOpt {
    padding: 8px 16px;
    min-height: 0;
    cursor: pointer;
    color: var(--black-5);

}

.dropdowndesign .DropBoxOpt {
    max-width: max-content;
    min-width: 110px;
    padding: 12px 16px;
}

.dropdowndesign select {
    -moz-appearance: none;
    -webkit-appearance: none;
}

.dropdowndesign select {
    background: url("/assets/img/arrow-down.png") no-repeat 100% 45%;
}

.dropdowndesign {
    padding-right: 7px;
}

/*end dropdown custom */

/* input date custome */
.Cudatedesign [type="date"] {
    background: url('/assets/img/calendar.png') 90% 50% no-repeat;
}

.Cudatedesign [type="date"]::-webkit-calendar-picker-indicator {
    opacity: 0;
}

.Cudatedesign input {
    padding: 8px 16px;
    background: #FFFFFF;
    border: 1px solid #EEEEEE;
    border-radius: 6px;
    padding: 12px 16px;
    outline: none;
    font-weight: 400;
    font-size: 14px;
    line-height: 120%;
    color: var(--black-5);
    cursor: pointer;
}

.Cudatedesign input{
   width: 132px !important;
   height: 42px;
}

.searchbardesign.SearchBox input {
    padding-right: 0;
}

/* End input date custome */

/* table image profile */

.capitilize {
    text-transform: capitalize;
}

.Adminprofileimageuser {
    width: 100%;
    max-width: 48px;
}

.Adminprofileimageuser img {
    border-radius: 50%;
    width: 100%;
    max-width: 48px;
    height: 48px;
    object-fit: cover;
    object-position: top;
    border: 1px solid #EEEEEE;
    padding: 3px;
}

button.borderbluebtn {
    border: 1px solid var(--primary-5);
    border-radius: 6px;
    background: var(--white);
    padding: 12px 16px;
    font-size: 14px;
    line-height: 16px;
    font-family: 'ns-semibold';
    transition: 0.4s;
    color: var(--primary-7);
}

button.borderbluebtn:hover {
    background: var(--primary-7);
    color: var(--white);
}

.popupheadingh3 {
    font-family: 'ns-semibold';
    font-size: 24px;
    color: var(--black-1);
    line-height: 120%;
    text-align: center;
}

.userpopupimg {
    width: 100%;
    max-width: 50px;
    height: 50px;
    overflow: hidden;
}

.userpopupimg img {
    object-fit: cover;
    object-position: top;
    border-radius: 50%;
    width: inherit;
    height: inherit;
}

/* End Global use css*/


/*===== All Globaly use poup =====*/
.popupContainer {
    width: 100%;
    max-width: 600px;
    margin: auto;
    background: var(--white);
    border: 1px solid #EEEEEE;
    border-radius: 15px;
    overflow: hidden;
    margin: 15px;
}

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

.popupWrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 999;
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(1px);
    display: flex;
    align-items: center;
    justify-content: center;
}

.poupviewtab {
    z-index: -1;
    opacity: 0;
    visibility: hidden;
    transition: 0.4s;
}

.poupviewtab.active {
    z-index: 999;
    opacity: 1;
    visibility: visible;
}

/*===== End All Globaly use poup =====*/
.border-btm {
    border-bottom: 1px solid #F5F5F5;
}

.Dashborder {
    border: 1px dashed #E5E5E5;
}

/* Mentor Profile warapper */
.Allcardboxwrapper {
    box-shadow: 0px 0px 40px rgba(0, 0, 0, 0.04);
    border-radius: 10px;
    background: var(--white);
    padding: 20px;
}

/* Wrapper For Global */
.ContainerTabForAllTabData {
    background: var(--white);
    box-shadow: 0px 0px 40px rgba(0, 0, 0, 0.04);
    border-radius: 10px;
    margin-top: 20px;
    width: 100%;
}

.Headingforallheader {
    padding: 29px 20px;
    width: 100%;
}

.bodyDataForallUserdata {
    padding: 20px;
    width: 100%;
}

.tabWrapper {
    display: none;
}

.tabWrapper.active {
    display: flex;
    flex-wrap: wrap;
}

/* Dashboard Card wrapper */
.Wrapperforblock {
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.04);
    border-radius: 6px;
    background: var(--white);
    padding: 20px;
}

.impRed {
    color: var(--danger-5);
}

.swiper-button-disabled svg path {
    stroke: var(--grey-2);
}

.SocialLink {
    color: var(--primary-7);
}

@media (max-width: 767px) {
    .Wrapperforblock {
        padding: 20px 15px;
    }

    .Cudatedesign input {
        padding: 12px 10px;
    }

    .searchbardesign {
        max-width: 100%;
    }

    .Allcardboxwrapper {
        padding: 20px 15px;
    }

    .bodyDataForallUserdata {
        padding: 20px 18px;
    }
}
