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

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

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

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

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

.mainSlotBox {
    padding: 8px 16px;
    border-radius: 6px;
    border: 1px solid var(--black-4);
    color: var(--black-4);
    text-align: center;
}

.text-10 {
    font-size: 10px !important;
    line-height: 120%;
    color: var(--black-5);
    font-weight: 400;
}

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

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

.text24 {
    color: var(--black);
    font-size: 24px;
    font-family: var(--MintMedium);
    line-height: 120%;
    font-weight: 500;
}

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

.overf-auto {
    overflow: auto;
}

/* ------------Popup style ------------------*/
.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;
    z-index: -1;
    opacity: 0;
}

.popupWrapper.active {
    z-index: 999;
    opacity: 1;
}

.popupContainer {
    width: 600px;
    margin: auto;
    background: var(--white);
    border: 1px solid #EEE;
    border-radius: 15px;
    overflow: hidden;
    margin: auto 10px;
}

.popupHeader {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 10px 20px;
}

.popupBody {
    padding: 20px;
}

/* ------------Popup style ----------------- */

/* 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;
}

.wrap {
    flex-wrap: wrap;
}

.alignEnd {
    align-items: flex-end !important;
}

.alignStart {
    align-items: flex-start !important;
}

.textblue {
    color: var(--blue-6) !important;
}

.htextblue {
    transition: 0.4s;
}

.htextblue:hover {
    color: var(--blue-6);
}

.textcompleted {
    color: #7BC896;
}

.textcancelled {
    color: #EF5350;
}

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

.textrescheduled {
    color: #0E77D3;
}

.hide {
    display: none;
}

.italic {
    font-style: italic;
}

/* end Flex Box  */

/* Heading Start*/

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

.heading-3 {
    font-family: 'ns-semibold';
    font-size: 18px;
    line-height: 120%;
    color: var(--black-1);
}

/*End Heading Start*/

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


.bgwhitedate {
    background: var(--white);
}

/* 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: 1px solid #EEE;
    display: flex;
    justify-content: center;
    align-items: center;
}

.Imageboxall img {
    width: inherit;
    height: inherit;
    object-fit: cover;
    border-radius: 10px;
    object-position: top;
}

/* table image profile */

.profiletd {
    width: 100%;
    max-width: 42px;
    height: 42px;
    overflow: hidden;
    border: 2px solid #F5F5F5;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.4s;
    cursor: pointer;
}

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

.addSuitablecalltime .footerAdminPopup.threeButtonPopup {
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding-top: 10px;
}

.profiletd:hover {
    border-color: var(--blue-6);
}

.Namedetails {
    max-width: calc(100% - 55px);
}

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

button.borderbluebtn:hover {
    background: var(--blue-6);
    color: var(--white);
}

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

.heading24 {
    font-size: 24px;
    font-family: var(--MintRegularDisplay);
}

table .dsblock {
    display: block;
}

.flexcol {
    flex-direction: column;
    display: flex;
    gap: 10px !important;
}

.linkMentee {
    font-size: 14px;
    font-weight: 400;
    line-height: 120%;
    cursor: pointer;
}

.filterWrapCol .filtersidescreenwrap {
    display: flex;
    flex-direction: column;
}

.filterWrapCol .filterbodywrap {
    flex: 1;
}

.lmpflexWrapPopup .AgendapopupCallhistory {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.lmpflexWrapPopup .profileHistoryDeatils {
    width: 100%;
    max-width: calc(50% - 15px);
}

.lmpflexWrapPopup .HeaderCallDetailsFaq span {
    color: #737373;
}

.HeaderCallDetailsFaq .text16 {
    font-weight: 400;
    color: #737373;
    line-height: 120%;
}

.statusgreen {
    color: #7BC896;
    font-size: 14px;
    font-weight: 700;
    line-height: 120%;
}

.statusred {
    color: #EF5350;
    font-size: 14px;
    font-weight: 700;
    line-height: 120%;
}

.statusblue {
    color: #EF5350;
    font-size: 14px;
    font-weight: 700;
    line-height: 120%;
}

.statuspurple {
    color: #7757F4;
    font-size: 14px;
    font-weight: 700;
    line-height: 120%;
}

/* lmp popup view detail */
.AdallMenteeRecordWrap {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    width: 100%;
}

.AdallMenteeRecordWrap .AdAllMeRecodLeftlist ul {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.AdallMenteeRecordWrap .AdAllMeRecodLeftlist ul li {
    padding: 16px 20px;
    min-height: 49px;
    border-radius: 6px;
    color: #737373;
    border: 1px solid #F5F5F5;
    transition: 0.4s;
    font-family: var(--MintMedium);
    font-size: 14px;
    font-weight: 500;
    line-height: 120%;
    width: 100%;
    max-width: 100%;
    cursor: pointer;
}

.AdallMenteeRecordWrap .AdAllMeRecodLeftlist ul li.active {
    border: 1px solid #1C64F2;
    color: #1C64F2;
}

.AdallMenteeRecordWrap .AdAllMeRecodLeftlist {
    width: 100%;
    max-width: 230px;
}

.AdallMenteeRecordWrap .AdAllMeRecodrightData {
    width: 100%;
    max-width: calc(100% - 240px);
}

.AdallMenteeRecordWrap .ProgressQuestionCallhistory {
    animation: visibleanimate 0.6s ease-in-out;
}

.NameDetails:hover .namelink {
    color: var(--blue-6);
}

.profileHistoryDeatils .Userimg {
    transition: 0.4s;
    border: 1px solid transparent;
}

.profileHistoryDeatils .Userimg:hover {
    border: 1px solid var(--blue-6);
}

.headviewSlot .dropdownbtnshow .dropdownselect {
    margin-right: 29px;
    padding: 6px 16px;
}

.text12r {
    color: #171717;
    font-size: 14px;
    font-weight: 400;
    line-height: 120%;
}

.lmpTimeSlotCard .listSlotLmp {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: 6px;
    font-size: 14px;
    font-weight: 400;
    line-height: 120%;
}

.lmpTimeSlotCard .listSlotLmp span {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--black-5);
    display: flex;
    align-items: center;
    justify-content: center;
}

.lmpTimeSlotCard input:checked .listSlotLmp span {
    background: var(--white);
}

.editbtnViewSlot {
    border-radius: 6px;
    border: 1px solid var(--black-1);
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 190px;
    min-height: 37px;
    cursor: pointer;
    transition: 0.4s;
}

.editbtnViewSlot:hover {
    border: 1px solid var(--black-5);
}

.text14m {
    font-size: 14px;
    font-weight: 600;
    line-height: 150%;
    color: #737373;
}

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

.lmpflexview .flex {
    min-width: max-content;
}

.btnBlueSlot img {
    margin-bottom: -2px;
}

.flexcolOne {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.flexcolOne .question {
    font-size: 14px;
    font-weight: 400;
    line-height: 120%;
}

.flexcolOne .ProgressBarwrapper .rc-slider-track {
    min-height: 9px !important;
}

.loadingSnipper {
    position: absolute;
    top: 20%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.loadingSnipper span {
    border: 3px solid var(--blue-6);
    width: 20px;
    height: 20px;
    display: flex;
    border-radius: 50%;
    border-top: 0;
    border-left: 0;
    animation: 1s animationSpinner infinite linear;
}

@keyframes animationSpinner {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes visibleanimate {
    0% {
        opacity: 0;
        transform: translateY(-4px);

    }

    100% {
        opacity: 1;
        transform: translateY(0px);
    }
}

/* lmp popup view detail */





/*--------- badge ---------*/
.assignBadge {
    position: relative;
}

.assignBadge.active .badgeRibbon {
    -moz-transform: scaleX(-1);
    -o-transform: scaleX(-1);
    -webkit-transform: scaleX(-1);
    transform: scaleX(-1);
    filter: FlipH;
}

.assignBadge .badgeRibbon {
    position: absolute;
    top: -8px;
    right: 50px;
}

.assignBadge .badgeRibbon::after {
    position: absolute;
    content: "";
    width: 0;
    height: 0;
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
}

.DashboardOptionsCard.assignBadge .badgeRibbon span {
    font-size: 14px;
    width: 223px;
    padding: 9px;
    font-weight: 700;
}

.assignBadge .badgeRibbon span {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2px;
    /* background: #f6cd23; */
    font-size: 11px;
    font-weight: 600;
    line-height: 0;
    color: var(--white);
    padding: 6px;
    border-top-right-radius: 8px;
    width: 107px;
    border-radius: 0 0 30px 30px;
}

.assignBadge .badgeRibbon span::after,
.assignBadge .badgeRibbon span::before {
    position: absolute;
    content: "";
}


.assignBadge .badgeRibbon span::before {
    height: 8px;
    width: 12px;
    right: -9px;
    top: 0;
    /* background: #f6cd23; */
    border-radius: 8px 8px 0 0;
    /* background: #d59a15; */
}

.assignBadge .badgeRibbon span::after {
    height: 8px;
    width: 12px;
    left: -9px;
    top: 0;
    border-radius: 8px 8px 0 0;
    /* background: #d59a15; */
}

.assignBadge .goldBadge span {
    background: #f6cd23;
}

.assignBadge .goldBadge span::before {
    background: #d59a15;
}

.assignBadge .goldBadge span::after {
    background: #d59a15;
}

.assignBadge .bronzeBadge span {
    background: #d2a975;
}

.assignBadge .bronzeBadge span::before {
    background: #a37b46;
}

.assignBadge .bronzeBadge span::after {
    background: #a37b46;
}

.assignBadge .silverBadge span {
    background: linear-gradient(181deg, #9C9C9C -31.67%, #DEDEDE 37.03%, #AFAEAE 100%);
}

.assignBadge .silverBadge span::before {
    background: #757575;
}

.assignBadge .silverBadge span::after {
    background: #757575;
}

.assignBadge .platinum span {
    background: linear-gradient(180deg, #232323 -34.83%, #8B8B8B 43.68%, #141414 115.65%);
}

.assignBadge .platinum span::before {
    background: #212121;
}

.assignBadge .platinum span::after {
    background: #212121;
}


.feedbackProfilementee {
    display: flex;
    /* align-items: flex-start; */
    gap: 20px;
}

.feedbackProfilementee .reviewBlockrightMentee {
    width: 100%;
    max-width: 400px;
    border-radius: 10px;
    background: var(--white);
    box-shadow: 0px 0px 40px 0px rgba(0, 0, 0, 0.04);
    padding: 16px 20px;
}

.reviewBlockrightMentee .text20 {
    font-size: 16px;
    font-weight: 600;
    line-height: 120%;
    color: var(--black-1);
    margin-bottom: 16px;
}

.ratingStarTooltip .ratingProgressBlock {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.ratingProgressBlock .progressBoxstar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.ratingProgressBlock .progressBoxstar .textstar {
    color: var(--black-1);
    font-size: 12px;
    font-weight: 400;
    line-height: 120%;
}

.ratingProgressBlock .progressBoxstar .textstar.greytext {
    color: #737373;
}

.ratingProgressBlock .fillProgressBox {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    flex: 1;
    border-radius: 3px;
    border: 1px solid #E5E5E5;
    overflow: hidden;
}

.ratingProgressBlock .fillProgressBox span {
    height: 100%;
    background: #FFCD42;
    border-radius: 2px 0px 0px 2px;
    min-height: 12px;
}

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


.reviewBlockrightMentee .subjectTypereview {
    flex: 1;
}

.reviewBlockrightMentee .ratingProgressBlock .progressBoxstar .greytext {
    font-size: 13px !important;
    font-weight: 500;
    line-height: 120%;
    color: var(--black-1) !important;
}

.reviewBlockrightMentee .ratingProgressBlock .progressBoxstar .textstar {
    margin-bottom: 4px;
    font-size: 12px;
    color: #737373;
}

.reviewBlockrightMentee .ratingProgressBlock {
    gap: 12px;
    display: flex;
    flex-direction: column;
}

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

.addMentorWrapper .mulipleFormInputWrap .rmsc .dropdown-container {
    border: none !important;
}

.bodyDataForallUserdata .rmsc .dropdown-container {
    border: none !important;
}

.addProBonomentorMenu .rmsc .dropdown-container {
    border: none !important;
}

.Mndashboardtopbtn .CustomDropdownmain.active .ListthatSelected {
    right: 0;
}

.slotHeadingBlock .noteTitle {
    color: #171717;
    display: flex;
    align-items: center;
}

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

.editProfileMentor .DashboardOptionsCard.assignBadge .badgeRibbon span {
    width: 160px;
}

.editProfileMentor .profilecardswraps .CardContactWrapper {
    max-width: calc(50% - 10px);
}

.editProfileMentor .profilecardswraps {
    flex-wrap: wrap;
    gap: 10px;
}

.editProfileMentor .profilecardswraps .CardContactWrapper {
    margin: 0;
}

.Mementorswrapallcard .Mentorcardmentmain.Mecardchanger.assignBadge.active .badgeRibbon span {
    -moz-transform: scaleX(-1);
    -o-transform: scaleX(-1);
    -webkit-transform: scaleX(-1);
    transform: scaleX(-1);
    filter: FlipH;

}

.Mementorswrapallcard .Mecardchnageerclick .Mentorcardmentmain.Mecardchanger.assignBadge.active .badgeRibbon span {
    -moz-transform: unset;
    -o-transform: unset;
    -webkit-transform: unset;
    transform: unset;

}

.Mecardchnageerclick .cardbtnheader .backButtoncard {
    background: transparent !important;
    color: var(--black-1);
}

.ContainerTabForAllTabData .AdminFormContentwrapper .dropDownSlotBorder .CustomDropdownmain {
    width: 100%;
}

/* badge */

.mentorHelpSupport .CallHistoryTabledata {
    max-height: calc(100vh - 317px);
    overflow: auto;
}

.mentorHelpSupport .bodyDataForallUserdata .filterBar {
    margin-top: 0;
}

.fixgaptdMesup td .tableBox {
    align-items: center;
}

.CallHistoryTabledata .tableBox h4 a {
    color: var(--blue-7);
}

.CallHistoryTabledata .tableBox h4 {
    color: #737373;
}

.textBoldCircle {
    display: flex;
    align-items: center;
    gap: 8px;
}

.tableTdDetailsView h4 {
    display: flex;
    align-items: center;
    gap: 8px;
}

.textBoldCircle .dotsIcon {
    width: 8px;
    height: 8px;
    background: #737373;
    display: flex;
    border-radius: 50%;
}

.HeaderCallDetailsFaq button {
    gap: 6px;
    background-color: transparent;
    border-radius: 6px;
    border: 1px solid #7BC896;
    color: #7BC896;
}

.HeaderCallDetailsFaq button:hover {
    background-color: transparent;
}

.HeaderCallDetailsFaq button svg path {
    fill: #7BC896;
}

.alumniTagBlock {
    padding: 6px 12px;
    background: #EBE6FD;
    display: flex;
    align-items: center;
    justify-content: center;
    width: max-content;
    border-radius: 20px;
}

.alumniTagBlock .text2 {
    color: #7757F4;
    font-size: 11px !important;
    font-weight: 500;
    line-height: 120%;
}

.AlumniTagAdd .ratingStarTooltip {
    display: flex;
    align-items: center;
    gap: 5px;
    flex-direction: row;
}

.AlumniTagAdd .bigHide {
    display: none;
}

.Mecardchnageerclick .AlumniTagAdd .bigHide {
    display: block;
}

.fdAllquestIonBlock .questionBox {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.fdAllquestIonBlock .questionHeadingCenter {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 20px 0 5px 0;
}

.fdAllquestIonBlock .questionTop {
    padding: 15px 30px;
}

.fdAllquestIonBlock .scrollfeedBack::-webkit-scrollbar {
    width: 8px;
}

.fdAllquestIonBlock .questionBox {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.fdAllquestIonBlock .questionHeadingCenter {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 20px 0 5px 0;
}

.fdAllquestIonBlock .questionTop {
    padding: 15px 30px;
}

.fdAllquestIonBlock .scrollfeedBack::-webkit-scrollbar {
    width: 8px;
}


.radioButtonUploadResume {
    display: flex;
    align-items: center;
    gap: 28px;
}

.uploadResumeSlectWrap h3 {
    color: var(--black-1);
}

.uploadResumeSlectWrap .textgrey {
    color: #D4D4D4;
}

.uploadResumeSlectWrap .nameLink {
    color: var(--blue-6);
    font-size: 12px;
    font-weight: 400;
    line-height: 16px;
    text-decoration: underline;
}

.profileData .nameLink {
    color: var(--blue-6);
    font-size: 12px;
    font-weight: 400;
    line-height: 16px;
    text-decoration: underline;
}

.tagBlockBedge {
    border-radius: 2px;
    font-size: 10px;
    font-weight: 400;
    line-height: 120%;
    padding: 2px 4px;
    width: max-content;
}

.tagBlockBedge.blueTag {
    background: #E0EFFD;
    color: #525252;
}

.tableBox .viewTagTd {
    color: #0E77D3;
    margin-left: 10px;
    text-decoration-line: underline;
    display: block;
}

.popupContainer .closePopupIcon {
    display: flex;
    justify-content: flex-end;
}

.CommonPopupWrapper {
    padding: 20px 30px;
    position: relative;
}

.addProBonomentorMenu .dropdownselect {
    background: #F5F5F5;
}


.multipleFormInput .checkBoxCommonWrapper .MnCrlabelwrap {
    padding-left: 18px;
}

.mulipleFormInputWrap .MnCrlabelwrap.WrapCheckbox .checkmark:after {
    border: solid var(--blue-8);
    border-width: 0 1px 1px 0;
    left: 3px;
    top: 1px;
    width: 3px;
    height: 6px;
}

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

.probonoCheckBoxWrap a {
    text-decoration-line: underline;
}

.tagWrapperProduct {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px;
}

.tagWrapperProduct .tagGreyProgram {
    padding: 4px 10px;
    border-radius: 20px;
    background: #F5F5F5;
}

.addProBonomentorMenu .multipleFormInput {
    max-width: 100%;
    flex: 1;
}

.addProBonomentorMenu .dropdownselect {
    padding: 14px 16px;
    border: 1px solid transparent;
}

.addProBonomentorMenu .ListthatSelected {
    position: fixed;
    top: unset;
    left: unset;
    right: unset;
    width: auto;
}

.addProBonomentorMenu .CustomDropdownmain.active .ListthatSelected {
    transform: translateY(51px);
}

.addProBonomentorMenu .rmsc .dropdown-heading .dropdown-heading-value {
    width: 242px;
}

.addProBonomentorMenu .rmsc .options {
    max-height: 230px;
}

/* @program dropmenu */

.allProgramdropdownBlock .programListofMenu {
    display: none;
}

.allProgramdropdownBlock.active .programListofMenu {
    display: block;
    animation: programopen .3s ease-in-out
}

@keyframes programopen {
    0% {
        transform: translateY(-2px);
    }

    100% {
        transform: translateY(0px);
    }
}

.allProgramdropdownBlock .programListArrowicon {
    transition: .4s;
}

.allProgramdropdownBlock.active .programListArrowicon svg {
    transform: rotate(180deg);
}


.updateProgramPopup .allProgramdropdownBlock.active .programInputboxType {
    margin-bottom: 140px;
}

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

.addproBonoMentorPage .mulipleFormInputWrap {
    margin-top: 0;
}

.addproBonoMentorPage .addMoreBtn {
    color: var(--blue-7);
    font-size: 12px;
    display: flex;
    align-items: center;
    gap: 4px;
    font-weight: 400;
    line-height: 120%;
}

.buttonCommon svg.white path {
    fill: #fff;
}

.linkName {
    transition: .3s;
}

.linkName:hover {
    color: var(--blue-8) !important;
}

#meProfileEditBlock .CustomDropdownmain {
    width: 100%;
}


.addMoreBtn {
    display: flex;
    align-items: center;
    gap: 4px;
    color: #0E77D3;
}

.greyBoxWrapperBlock {
    border-radius: 6px;
    background: #F9FAFB;
    padding: 23px 20px;
}

.allDropMenuFull.ContainerTabForAllTabData .CustomDropdownmain {
    width: 100%;
}

.AdminFormContentwrapper {
    .manageSlotGreyBox {
        border-radius: 6px;
        background: #F5F5F5;
        padding: 8px 16px;

        p {
            font-size: 13px;
            font-style: italic;
            font-weight: 400;
            line-height: 150%;
            color: #737373;

            span {
                color: #3397EF;
            }
        }
    }
}

.bodyDataForallUserdata {
    .deletedSlotPreviously {
        display: flex;
        align-items: center;
        /* justify-content: flex-end; */
        width: 100%;
        flex: 1;
        /* justify-content: space-between; */
        /* border-bottom: 1px solid #F5F5F5; */
        gap: 4px;
        /* padding-bottom: 20px; */

        p {
            color: #737373;
            display: flex;
            align-items: center;
            gap: 2px;
            font-size: 14px;
            font-weight: 500;
            line-height: 120%;
        }

        button {
            color: #EF5350;
            font-size: 14px;
            font-weight: 600;
            line-height: 16px;
            text-decoration-line: underline;

        }
    }

    .manageSlotDeleteView {
        display: flex;
        align-items: center;
        width: 100%;

        .dropdownbtnshow {
            width: 100%;
            display: flex;
            flex: 1;
        }
    }

    @media(max-width: 767px) {
        .manageSlotDeleteView {
            flex-direction: column;
        }

        .deletedSlotPreviously p {
            flex: 1;
        }
    }
}


.resumeNameBlock {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-top: 4px;

    p {
        font-size: 13px !important;
        font-weight: 400;
        color: var(--black);
        line-height: 120%;
    }
}


.answerFaqnew .mnViewResumeBlock {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    flex: 1;
}


/* ------------- Popup Common ----------- */
.commonWrapperPopup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(1px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: -10;
    opacity: 0;
}

.commonWrapperPopup.active {
    z-index: 999;
    opacity: 1;
}

.commonPopupContainer {
    width: 100%;
    margin: auto;
    margin: 10px;
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    position: relative;
}


.bodyAddSlotNewPopup .AdminFormContentwrapper {
    margin-top: 0;
}

.bodyAddSlotNewPopup .AdminFormContentwrapper {
    max-height: calc(100vh - 225px);
}

/* ------------- Popup Common ----------- */

/* End Global use css*/

/* Dropdwon list sidebar */
.sideListDropOption {
    display: flex;
    flex-direction: column;
    padding: 0 !important;
}

.sideListDropOption .sideListOption {
    padding: 10px 17px;
}


.sideListDropOption .sideListOption {
    display: flex;
    align-items: center;
    width: 100%;
}

.sideListDropOption .sideListOption span {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.optionWraperSideList {
    margin-top: 12px;
    display: flex;
    gap: 12px;
    flex-direction: column;
}

.optionWraperSideList li {
    font-size: 13px;
    font-weight: 400;
    line-height: 120%;
    /* color: var(--white); */
    position: relative;
    font-family: var(--MintRegular);
}

.optionWraperSideList li::before {
    content: '';
    display: flex;
    height: calc(100% + 13px);
    width: 1px;
    background: var(--black);
    position: absolute;
    left: -46px;
    top: 0;
}

.optionWraperSideList li.active::after {
    content: '';
    display: flex;
    position: absolute;
    background: var(--black);
    width: 5px;
    height: 5px;
    border-radius: 50%;
    left: -48px;
    top: 5px;
}

.optionWraperSideList li:last-child:before {
    height: 100%;
}

.sideListDropOption {
    transition: .4s;
}

.sideListDropOption .optionWraperSideList {
    display: flex;
}

.sideListDropOption.active .arrowRotate {
    transform: rotate(0deg);
}

.optionWraperSideList li.active {
    font-family: var(--MintMedium);
}

.configAgendaPageTable .tabletrgray .tabletdboxmn .tableBox {
    background: rgba(0, 0, 0, 0.02);
    padding: 12px 20px;
}

.configAgendaPageTable .tabletdboxmn .tdleftdatatotal .tdtextdata:nth-child(2) h4 {
    color: var(--black-1);
}

.rc-slider-rail,
.rc-slider-step,
.rc-slider-track {
    min-height: unset !important;
}

.rc-slider-handle {
    margin-top: -8px !important;
}

.QuestionSideBardWrap .tooltip:after {

    top: 3px;
    left: 24px;
    transform: translateX(-50%) rotate(90deg);
    z-index: 999;
}

.QuestionSideBardWrap .tooltip:before {
    top: -5px;
    left: 76px;
    transform: translateX(-50%);
}

.agendaTitlebuilder p {
    font-weight: 400;
    font-family: var(--MintMedium);
    color: #262626;
}

.questionSideMenu .reactDropdownImageHide .Dropdown-option:nth-child(1)::before {
    display: none;
}

.questionSideMenu .reactDropdownImageHide .Dropdown-option:nth-child(2)::before {
    display: none;
}

.questionSideMenu .reactDropdownImageHide .Dropdown-option:nth-child(3)::before {
    display: none;
}

.questionSideMenu .reactDropdownImageHide .Dropdown-option:nth-child(4)::before {
    display: none;
}

.questionSideMenu .reactDropdownImageHide .Dropdown-option:nth-child(5)::before {
    display: none;
}

.questionSideMenu .reactDropdownImageHide .Dropdown-option {
    padding-left: 10px;
}

.borderLine {
    border-bottom: 1px solid #F5F5F5;
}

.previewQuestionPage .JnInputWrapMain .formGroups input {
    background: var(--white);
}

.preeSessionQuestionBox {
    display: flex;
    align-items: center;
    gap: 2px;

    .checkBoxCommonWrapper {
        margin-top: -6px;
    }
}

/* Dropdwon list sidebar */

.bodyDataForallUserdata.vsslotheading .CustomDropdownmain.active .ListthatSelected {
    right: 0;
    left: unset;
}

.meSession_DetailPopup .PsessionDswrap .ProgressBarwrapper {
    margin: 2px 12px;
}

.FilterBodyPasscall .mnViewResumePdf {
    display: flex;
    align-items: center;
    gap: 4px;

    span {
        display: flex;
        flex: 1;
    }
}

.blockGroupContainer {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    width: 100%;
}

.whiteBoxWrapper {
    border-radius: 10px;
    box-shadow: 0px 0px 40px 0px rgba(0, 0, 0, 0.04);
    background: var(--white);
    width: 100%;

    .headingWhitebox {
        display: flex;
        align-items: center;
        width: 100%;
        justify-content: space-between;
        padding: 20px;
        border-bottom: 1px solid #EEE;

        h3 {
            color: #171717;
            font-size: 16px;
            font-weight: 600;
            line-height: 120%;
        }

        .threeDotsGraphBox svg {
            cursor: pointer;
        }
    }

    .tableSubBoxWrap {
        display: flex;
        align-items: center;
        width: 100%;
        justify-content: space-between;
        background: #FAFAFA;
        padding: 6px 20px;

        .dropdownselect,
        .calenderdsad {
            background: var(--white);
        }
    }

    .scrollTableWhite{
        max-height: calc(100vh - 100px);
        height: 400px;
        padding-top: 0 !important;

        .stickytable thead{
            padding-top: 30px;
            top: 0px;
        }
    }

    .bodyWhiteBoxWrapper {
        padding: 20px;
    }

    .tableBox {
        align-items: center;
        gap: 3px;
    }
}

.tableBox .texttotalGrey {
    font-size: 12px;
    font-weight: 400;
    line-height: 120%;
    color: #737373;
}

.threeDotsGraphBox.inSideGraphDot {
    display: flex;
    justify-content: flex-end;
    width: 100%;
    padding: 0 20px;
    margin-top: 10px;
    cursor: pointer;
    position: relative;

    &.listActive .listGraphContentMenu {
        display: block;
    }

    .listAllMentorMentee {
        display: flex;
        align-items: center;
        gap: 8px;
        margin-right: 11px;

        li {
            color: #262626;
            font-size: 11px;
            font-weight: 400;
            line-height: 120%;
            transition: .3s;
        }

        li.active{
            color: var(--blue-7);
        }

        li:hover{
            color: var(--blue-7);
        }
    }

    .listGraphContentMenu {
        border-radius: 6px;
        border: 1px solid #E5E5E5;
        background: var(--white);
        padding: 10px;
        position: absolute;
        top: 20px;
        right: 0;
        z-index: 10;
        display: none;

        ul {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        ul li {
            color: #262626;
            font-size: 12px;
            font-weight: 400;
            line-height: 120%;
            transition: .3s;
        }

        ul li:hover {
            color: var(--blue-7);
        }
    }
}

.gifTickNowShow {
    width: 12%;}
.popupWrapper{
.newQuestionBodyBox{
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    overflow: auto;
    max-height: calc(100vh - 200px);

    .lableHeading{
        max-width: 100%;
    }

    .JnInputWrapMain .formGroups {
        display: flex;
        flex: 1;
    }

    .JnInputWrapMain .flex{
        display: flex;
        flex: 1;
        gap: 16px;
        width: 100%;
    }

    .quesDescription{
        margin-bottom: 5px;
    }

    .textAreaSingleWrap textarea{
        padding: 10px;
        color: var(--black);
        font-size: 16px;
        font-weight: 400;
        height: 100px;
        border: 1px solid #EEE;
        border-radius: 8px;
    }

    .headingwrapper{
        margin-bottom: 0;
    }

    .JnInputWrapMain {
        flex-direction: column;
        gap: 6px;
        width: 100%;
    }
}
}

@media(max-width: 767px) {
    .feedbackProfilementee{
        flex-direction: column;
    }

    .slotHeadingBlock{
        flex-wrap: wrap;
    }
    
    .AdminnewDsboard .ContainerTabForAllTabData .Addsboardmenu ul li {
        font-size: 16px;
    }

    .mulipleFormInputWrap .multipleFormInput {
        max-width: 100%;
    }

    .blockGroupContainer {
        grid-template-columns: repeat(1, 1fr);
    }
}

.textAreaBlockWrap{
    width: 100%;
    border: none;
    border: 1px solid #EEEE;
    padding: 8px 12px;
    font-size: 16px;
    font-weight: 400;
    line-height: 120%;
    outline: none;
    resize: none;
    border-radius: 8px;
}

.colGap12{
    display: flex;
    flex-direction: column;
    gap: 12px;
}