@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,300;1,400;1,500;1,600;1,700;1,800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Golos+Text:wght@400..900&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');
/* Variable */


/* @import "admin-theme.css";
@import "member-theme.css";  */

body {
    font-family: var(--opneSans);
    background-color: var(--bgBody);
    color: var(--textDefault);
    height: 100vh;
    /* line-height: 17px; */
    overflow-x: hidden;
    scrollbar-width: thin;
    scrollbar-color: var(--bgLightGrey-10) white;
}

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--bgWhite);
}

::-webkit-scrollbar-thumb {
    background-color: var(--bgLightGrey-10);
    border-radius: 10px;
    border: 3px solid var(--bgWhite);
}

.montserrat {
    font-family: var(--montserrat);
}


/* text colors */

.textMain {
    color: var(--bgMain) !important;
    font-family: var(--montserrat);
}
.textMember {
    color: var(--bgMember) !important;
    font-family: var(--montserrat);
}

.textPrimary {
    color: var(--bgPrimary);
}

.textPrimaryLight {
    color: var(--bgPrimaryLight);
}

.textPrimaryLight-2 {
    color: var(--bgPrimaryLight-2);
}

.textLink {
    color: var(--bgLink);
}

.textBlue {
    color: var(--bgBlue);
}

.textVendor {
    color: var(--bgVendor);
}

.bgVendor {
    background-color: var(--bgVendor);
}

.textLightGrey-10 {
    color: var(--bgLightGrey-10);
}

.textLightGrey-20 {
    color: var(--bgLightGrey-20);
}

.textLightGrey-30 {
    color: var(--bgLightGrey-30);
}

.textDarkGrey-1 {
    color: var(--bgDarkGrey-1);
}

.textDarkGrey {
    color: var(--bgDarkGrey);
}

.textHoverBlue {
    color: var(--bgHoverBlue);
}

.textSuccess {
    color: var(--bgSuccess);
}

.textError {
    color: var(--bgError);
}
.textEvent{
    color: var(--bgUpEvent);
}
.textWarning {
    color: var(--bgWarning);
}

.textInfo {
    color: var(--bgInfo) !;
}

.wordBreak {
    word-break: break-all;
}

.text-transform-none {
    text-transform: none !important;
}

/* Backgrounds colors */

.bgLightGrey {
    background-color: var(--bgLightGrey);
}

.bgLightGrey-20 {
    background-color: var(--bgLightGrey-20);
}

.bgHoverBlue {
    background-color: var(--bgHoverBlue);
}

.bgPrimaryLight {
    background-color: var(--bgPrimaryLight);
}

.bgPrimary {
    background-color: var(--bgPrimary);
}

.bgBtnGrey {
    background-color: var(--btnGrey);
}


/* borders */

.borderLight {
    border: 1px solid var(--lightBorder);
}

.borderMain {
    border: 1px solid var(--bgMain);
}

.borderBlue {
    border: 1px solid var(--bgHoverBlue);
}

.borderPrimary {
    border: 1px solid var(--bgPrimary);
}

.borderLightGrey {
    border: 1px solid var(--bgLightGrey-10);
}

.borderLightGrey-20 {
    border: 1px solid var(--bgLightGrey-20);
}

.borderLightGreyDashed-20 {
    border: 1px dashed var(--bgLightGrey-20);
}

.borderDashed {
    /* border: 1px dashed var(--bgPrimary); */
    border: 1px dashed #6c6c6c;
    border-radius: 14px;
    background: var(--bgBody);
}
.borderDashed .list-group-item {
    background-color: var(--bgBeige);
}
.brTopPrimaryDashed {
    border-top: 1px dashed var(--bgPrimary);
}

.borderBottomMain {
    border-bottom: 1px solid var(--bgMain);
}

.addMore {
    border-bottom: 1px solid var(--bgPrimary);
}

.addMore:hover {
    border-bottom: 1px solid var(--bgMain);
}

.rounded-14 {
    border-radius: 14px;
}

.cursorPointer {
    cursor: pointer;
}

.transform-0 {
    transform: rotate(0deg) !important;
}

.roundedTopRight-10,
.roundedBottomRight-10 {
    border-top-right-radius: 10px !important;
    border-bottom-right-radius: 10px !important;
}


/* tramsition */

.transition {
    transition: var(--transition);
}

.w-95{
    width: 95%;
}
/* error */

.invalid-feedback,
.error {
    color: var(--bgError);
    /* font-size: var(--xxSmall); */
    padding-left: 7px;
    font-size: 13px;
    font-family: "Golos Text", sans-serif;
}

.form-control.is-invalid,
.was-validated .form-control:invalid {
    color: var(--bgError);
    border-color: var(--bgError) !important;
    background-image: none;
}


/* reset */

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--montserrat);
}

p,
.p,
h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 {
    margin-bottom: 0;
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
    color: var(--bgLink);
    transition: var(--transition);
    font-size: var(--small);
    font-weight: var(--light);
}

a:hover {
    color: var(--bgLink);
}

hr {
    color: var(--bgLightGrey-30);
}

.liBullet {
    list-style: disc !important;
}


/* buttons */

.btn-check:checked+.btn,
.btn.active,
.btn.show,
.btn:first-child:active,
:not(.btn-check)+.btn:active {
    border-color: transparent
}

.btn {
    transition: var(--transition);
    /* width: 50%; */
    border-radius: 8px;
    font-size: var(--medium);
    font-weight: var(--bold);
    font-family: var(--inter);
    padding: 0.375rem 1.25rem ;
}

.btn:disabled {
    pointer-events: visible;
    cursor: not-allowed;
    background-color: var(--bgLightGrey-10);
    border: 0;
    color: white;
    opacity: 1;
}

.btn:hover {
    background-color: var(--bgPrimary);
    color: var(--bgWhite);
}

.btnPrimary {
    background-color: var(--bgDark2);
    color: var(--bgWhite);
    /* box-shadow: var(--buttonShadow); */
    transition: var(--transition);
    line-height: 26px;
}

.btnSecondry {
    
    color: var(--bgDark2);
    /* box-shadow: var(--buttonShadow); */
    transition: var(--transition);
    line-height: 26px;
background-color: rgba(198, 0, 66, 0.2);

}

.rButton {
    background-color: var(--bgError);
    color: white;
    box-shadow: var(--buttonShadow);
    transition: var(--transition);
    line-height: 26px;
}

.btnPrimary-sm {
    padding: 5px 24px;
    font-size: var(--xxxSmall);
    font-family: var(--montserrat);
    line-height: normal;
    box-shadow: none;
}

.btnMain {
    background-color: var(--bgMain);
    color: white;
    box-shadow: var(--buttonShadow);
    transition: var(--transition);
}

.squareUpBtn {
    max-width: 500px;
    width: 100%;
    border: 2px solid black;
    border-radius: 0;
    padding: 10px 0;
    border-radius: 5px;
    font-size: 20px;
    font-weight: var(--semiBold);
}

.squareUpBtn:hover {
    color: white;
}

.btnHoverBlue {
    background-color: var(--bgHoverBlue);
    color: white;
    box-shadow: var(--buttonShadow);
    transition: var(--transition);
    line-height: 26px;
}

.btnHoverBlue:hover {
    background-color: var(--bgPrimary);
    color: white;
}

.btnGrey {
    background-color: var(--btnGrey);
    color: var(--bgPrimary);
    transition: var(--transition);
}

.btnCancel {
    /* background-color: var(--btnGrey);
    color: var(--bgPrimary);
    transition: var(--transition);
    line-height: 26px; */

    color: var(--bgDark2);
    /* box-shadow: var(--buttonShadow); */
    transition: var(--transition);
    line-height: 26px;
background-color: rgba(198, 0, 66, 0.2);

}

.btnWarning {
    background-color: var(--bgWarning);
    color: black;
    transition: var(--transition);
}

.btnWarning:hover {
    background-color: var(--bgWarning);
    color: white;
}

.btnVendor {
    color: var(--bgVendor);
    transition: var(--transition);
}

.btnPrimary:hover,
.btnGrey:hover,
.btnCancel:hover {
    background-color: var(--bgHoverBlue);
    color: white;
}

.sBtn {
    border: 1px solid var(--bgLightGrey-30);
    padding: 10px;
    border-radius: 14px;
    font-weight: var(--semiBold);
    display: flex;
    align-items: center;
    gap: 10px;
}

.sBtn.gBtn {
    color: #4286F5;
}

.sBtn.gBtn:hover {
    border: 1px solid #4286F5;
}

.sBtn.aBtn {
    color: var(--bgBlack);
}

.sBtn.aBtn:hover {
    border: 1px solid var(--bgBlack);
}

.btnVendor:hover {
    color: white;
    background-color: var(--bgVendor);
}

.removeButton {
    background-color: var(--bgError);
    color: white;
    border-radius: 50rem;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: var(--transition);
}

.removeButtonLg {
    width: 50px;
    height: 50px;
}

.removeButton:hover {
    color: white;
    background-color: var(--bgError);
}

.addBtn {
    background-color: var(--bgMain);
    color: white;
    border-radius: 50rem;
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: var(--transition);
    border: 0;
}

.dBtn {
    background-color: var(--bgLightGrey-20);
    cursor: not-allowed !important;
}

.dBtn:hover {
    background-color: var(--bgLightGrey-20);
}

.addBtn:hover {
    background-color: var(--bgHoverBlue);
    color: white;
}

.backBtn {
    color: var(--bgHoverBlue);
    font-size: var(--small);
    font-weight: var(--bold);
    font-family: var(--montserrat);
    transition: var(--transition);
}

.backBtn img {
    width: 20px;
}

.backBtn:hover {
    color: var(--bgMain);
}

.clearBtn {
    color: var(--bgError);
    /* color: white; */
    transition: var(--transition);
    border-radius: 50rem;
    border: 2px solid var(--bgError);
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.clearBtn:hover {
    background-color: var(--bgError);
    color: white;
}

.disableClickEvent {
    pointer-events: none;
    touch-action: none;
}

/* font size */

.fs-10 {
    font-size: 10px;
}

.fs-11 {
    font-size: 11px;
}

.fs-12 {
    font-size: var(--xxSmall);
}

.fs-14 {
    font-size: var(--small);
}

.fs-16 {
    font-size: var(--medium);
}

.fs-18 {
    font-size: var(--large);
}

.fs-20 {
    font-size: var(--semiLarge);
}

.fs-24 {
    font-size: var(--xlarge);
}

.fs-32 {
    font-size: var(--xxlarge);
}


/* font wieghts */

.fw-100 {
    font-weight: 100;
}

.fw-200 {
    font-weight: 200;
}

.fw-300 {
    font-weight: 300;
}

.fw-400 {
    font-weight: var(--semiLight);
}

.fw-500 {
    font-weight: var(--light);
}

.fw-600 {
    font-weight: var(--semiBold);
}

.fw-700 {
    font-weight: var(--bold);
}

.objContain {
    object-fit: contain;
}

/* headings */

.heading {
    color: var(--bgDarkGrey);
    font-family: var(--inter);
    font-weight: var(--exbold);
    /* margin-bottom: 16px; */
    font-size: var(--semiLarge);
    /* font-size: clamp(var(--xxxSmall),1vw,var(--medium)); */
    text-transform: capitalize;
}

.lhNormal {
    line-height: normal;
}

/* .vender .heading{
    color: var(--bgSuccess);
}
.admin .heading{
    color: var(--bgPrimary);
} */


/* wrappers */

.contentBox {
    /* background-color: white;
    border-radius: 10px; */
    /* padding: 20px; */
    margin-bottom: 16px;
    
}

.listHeader {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    flex-wrap: wrap;
}

.mt-24 {
    margin-top: 24px;
}

/* ===== Scrollbar CSS ===== */


/* Firefox */

.memberBox {
    scrollbar-width: thin;
    scrollbar-color: var(--bgLightGrey-10) white;
}


/* Chrome, Edge, and Safari */

.memberBox::-webkit-scrollbar {
    width: 10px;
}

.memberBox::-webkit-scrollbar-track {
    background: var(--bgWhite);
}

.memberBox::-webkit-scrollbar-thumb {
    background-color: var(--bgLightGrey-10);
    border-radius: 10px;
    border: 3px solid var(--bgWhite);
}


/* Warning active inactive*/

.roundedSmall {
    width: 20px;
    height: 20px;
    border-radius: 50rem;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid var(--bgError);
    color: var(--bgError);
}


/* Breadcrumb */

ul.breadcrumb {
    list-style: none;
}

ul.breadcrumb li {
    display: inline;
    font-size: var(--Small);
    color: #313131;
    font-weight: var(--semiBold);
}

ul.breadcrumb li+li:before {
    padding: 0 5px;
    color: var(--bgLightGrey-10);
    content: "\00bb";
    font-family: 'FontAwesome';
    font-size: 8px;
    position: relative;
    top: 0;
}

ul.breadcrumb li a {
    color: var(--bgLightGrey-10);
    font-weight: var(--semiBold);
    text-decoration: none;
    font-size: var(--Small);
}

ul.breadcrumb li a:hover {
    color: var(--bgLink);
}

.editIconRounded {
    width: 35px;
    height: 35px;
    background-color: var(--bgPrimary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
/* Loader */

.loading {
    align-items: center;
    display: flex;
    justify-content: center;
    height: 100%;
    width: 100%;
}

.loading__dot {
    animation: dot ease-in-out 1s infinite;
    background-color: var(--bgLightGrey-10);
    display: inline-block;
    height: 10px;
    margin: 10px;
    width: 10px;
    border-radius: 50rem;
}

.loading__dot:nth-of-type(2) {
    animation-delay: 0.2s;
}

.loading__dot:nth-of-type(3) {
    animation-delay: 0.3s;
}

#wsd_widgets_action {
    display: none;
}

@keyframes dot {
    0% {
        background-color: var(--bgLightGrey-10);
        transform: scale(1);
    }

    50% {
        background-color: var(--bgPrimary);
        transform: scale(1.3);
    }

    100% {
        background-color: var(--bgLightGrey-10);
        transform: scale(1);
    }
}


.listHeader2 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0;
    flex-wrap: wrap;
}

.heading2 {
    color: var(--bgUpEvent);
    font-family: var(--montserrat);
    font-weight: var(--bold);
    font-size: var(--medium);
    text-transform: capitalize;
}

.tab-section {
    margin-top: 3rem;
}
/* .opportunityDetails  .autocomplete-dropdown {
    display: block !important;
  z-index: 9999 !important;
  } */
.nav-tabs.custom-tabs{
    border-bottom: 1px solid var(--bgLightGrey-15);
    margin-left: 15px;
}
.nav-tabs.custom-tabs .nav-link {
    border-top: 1px solid var(--bgLightGrey-15);
    border-bottom: 1px solid var(--bgLightGrey-15);
    border-right: 1px solid var(--bgLightGrey-15);
    border-left: 1px solid var(--bgLightGrey-15);
    margin-right: 13px;
    padding: 12px 43px;
    width: 170px;
    text-align: center;
    font-weight: var(--heading5);
    color: var(--bgDarkGrey-1);
    font-size: var(--xxSmall);
    border-bottom: none;
    font-family: var(--montserrat) !important;
}
.nav-tabs.custom-tabs.opportunityTabs .nav-link{
    width: 150px;
}

.nav-tabs.custom-tabs .nav-link.active {
    color: var(--bgPrimary);
    border-top: 2px solid var(--bgPrimary);
    border-right: 2px solid var(--bgPrimary);
    border-left: 2px solid var(--bgPrimary);
}

.custom-content .tab-pane {
    padding: 0;
}

.manageLeadList tbody td {
    padding: 10px 5px !important;
    font-size: var(--xxxSmall) !important;
}

.manageLeadList thead th {
    color: var(--bgDarkGrey-1) !important;
    padding: 10px 5px !important;
}

.hot-text {
    color: var(--bgWarning) !important;
    font-weight: var(--bold) !important;
}

.cold-text {
    color: var(--bgSuccess) !important;
    font-weight: var(--bold) !important;
}

.cls-name h6 {
    color: var(--bgPrimary) !important;
    font-size: var(--xxxSmall);
    margin-left: 5px;
}

.cls-name {
    display: flex;
    justify-content: flex-start;
    vertical-align: middle;
    align-items: center;
    margin-top: 10px !important;
    border-top: 0 !important;
}

.badge-costom {
    background-color: var(--bgHoverBlue);
    color: var(--bgWhite) !important;
    font-size: var(--xxSmall);

}

#mngldlist_length {
    display: none !important;
}

.dataTables_wrapper .dataTables_paginate span .paginate_button.current,
.dataTables_wrapper .dataTables_paginate span .paginate_button.current:hover {
    display: flex;
    justify-content: center;
    vertical-align: middle;
    align-items: center;
}

.dataTables_wrapper .dataTables_paginate span .paginate_button {
    margin: 0 !important;
}

.dataTables_wrapper .dataTables_paginate span .paginate_button.current,
.dataTables_wrapper .dataTables_paginate span .paginate_button.current:hover {
    /* background-color: var(--bgLink); */
    background-color: var(--bgBlack);
}

.bolded-pagination-text {
    font-weight: var(--bold);
}

.smb-btn {
    padding: 7px 6rem !important;
}

.lead-control::-webkit-input-placeholder {
    /* WebKit, Blink, Edge */
    color: var(--bgLightGrey-20) !important;
}

.lead-control:-moz-placeholder {
    /* Mozilla Firefox 4 to 18 */
    color: var(--bgLightGrey-20) !important;
    opacity: 1;
}

.lead-control::-moz-placeholder {
    /* Mozilla Firefox 19+ */
    color: var(--bgLightGrey-20) !important;
    opacity: 1;
}

.lead-control:-ms-input-placeholder {
    /* Internet Explorer 10-11 */
    color: var(--bgLightGrey-20) !important;
}

input[type="date"].lead-calender:before {
    position: absolute;
    top: 6%;
    font-size: 22px;
    right: 2.5%;
}

input[type="date"].lead-clock:before {
    position: absolute;
    top: 6%;
    font-size: 22px;
    right: 2.5%;
}

.form-set
{
   font-size: var(--xxxsmall)!important;
}

.lead-control {
    font-size: var(--xxxsmall) !important;
}
.lead-control::-webkit-input-placeholder {
    font-size: var(--xxxsmall) !important;
}

.lead-control:-moz-placeholder {
    font-size: var(--xxxsmall) !important;
}

.lead-control::-moz-placeholder {
    font-size: var(--xxxsmall) !important;
}

.lead-control:-ms-input-placeholder {
    /* Internet Explorer 10-11 */
    font-size: var(--xxxsmall) !important;
}


.lead-control {
    font-weight: var(--light);
    /* height: 39px!important; */
}

/* .multi-cats .select2-container--default .select2-selection--multiple
{
    height: 39px!important;
    min-height: 39px;
} */

/* .ml-select .form-select, .ml-select .form-control, .ml-select .select2-container .select2-selection--single
{
    height: 39px!important; 
} */

.ml-select .select2-container--default .select2-selection--single .select2-selection__rendered
{
    font-size: var(--xxxsmall)!important;
}

/* .ml-select .select2-container--default .select2-selection--multiple
{
    min-height: 39px!important;
    height: 39px!important;
} */
.select-ht
{
    height: 39px!important;
    font-size: var(--xxxsmall)!important;
}

.multi-cats .select2-container--default .select2-selection--multiple .select2-selection__choice
{
   margin-top: 8px;
}
.gap {
    padding: 0 27px 10px 14px;
}

.gap2 {
    padding-left: 5px;
}

.back-link {
    padding-top: 10px;
    padding-left: 25px;
    margin-bottom: 5px;
}

.profile-icon,
.profile-text {
    text-align: center;
}

.profile-icon img {
    width: 55px;
    height: 55px;
    border-radius: 50%;
}

.profile-text h5 {
    font-size: var(--xxSmall);
    color: var(--bgMember);
    margin-top: 1px;
}

.profile-text h5.user-name {
    font-weight: var(--bold);
}

.profile-text h5.comp-name {
    font-weight: var(--semiBold);
}

.social-links ul {
    display: flex;
    justify-content: center;
}

.social-links {
    padding: 10px 50px 10px 50px;
}

.social-links ul li {
    padding: 5px;
    text-align: center;
}

.social-links ul li img {
    width: 30px;
    height: 30px;
    max-width: 30px;
    cursor: pointer;
}

.social-links ul {
    padding-left: 0;
    margin-bottom: 0;
}

.social-links ul li span {
    font-size: var(--xxxSmall);
    color: var(--bgDarkGrey-1);
    font-weight: var(--semiBold);
    font-family: var(--montserrat) !important;
}

.btn-custom {
    background-color: var(--bgPrimary);
    border: 1px solid var(--bgPrimary);
    color: white;
    border-radius: 8px;
    font-family: var(--montserrat);
    font-size: var(--xxxSmall);
    padding: 10px;
}

.btn_1 {
    width: 73%;
    padding-left: 5px;
}

.btn_2 {
    width: 27%;
    padding-left: 0;
    padding-right: 5px;
}

.activity {
    font-size: var(--xxxSmall);
    color: var(--bgDarkGrey-1);
    font-weight: var(--semiBold);
}

.activity i {
    color: var(--bgPrimary);
    font-size: 6px;
    position: relative;
    top: -1px;
}

.nav-tabs.custom-profile-tabs li {
    width: 50%;
}

.nav-tabs.custom-profile-tabs .nav-link.active {
    color: var(--bgDarkGrey-1);
    font-size: var(--xxxSmall);
    font-weight: var(--semiBold);
    border-top: none;
    border-right: none;
    border-left: none;
    border-bottom: 3px solid var(--bgDark) !important;
}

.nav-tabs.custom-profile-tabs {
    border-bottom: none;
}

.nav-tabs.custom-profile-tabs .nav-link {
    color: var(--bgDarkGrey-1);
    font-size: var(--xxxSmall);
    font-weight: var(--semiBold);
    text-align: center;
    border-top: none;
    font-family: var(--montserrat) !important;
    border-right: none;
    border-left: none;
    border-bottom: 1.5px solid var(--bgLightGrey-15) !important;
}

.content-list {
    padding: 10px;
}

.content-list ul {
    padding-left: 0;
}

.content-list ul li h6 {
    color: var(--bgPrimary);
    /* font-size: var(--xxxSmall); */
    font-weight: var(--semiBold);
    margin-bottom: 4px;
    font-family: var(--montserrat);
}

.content-list ul li h5 {
    color: var(--bgDarkGrey-1);
    font-size: var(--medium);
    font-weight: var(--semiBold);
    font-family: var(--montserrat);
    word-break: break-word;
}

.content-list ul li {
    margin-bottom: 13px;
}

.nav-tabs.lead-right-tab {
    border-bottom: 0;
}

.nav-tabs.lead-right-tab .nav-link {
    color: var(--bgDarkGrey-1);
    font-size: var(--xxxSmall);
    font-weight: var(--bold);
    text-align: center;
    border: 1px solid var(--bgPrimaryLight-2) !important;
    border-radius: 0;
    width: 93px;
    font-family: var(--montserrat) !important;
}

.nav-tabs.lead-right-tab .nav-item:first-child .nav-link {
    border-radius: 4px 0px 0px 0px;
}

.nav-tabs.lead-right-tab .nav-item:last-child .nav-link {
    border-radius: 0px 4px 0px 0px;
}

.nav-tabs.lead-right-tab .nav-link.active {
    color: var(--bgWhite);
    font-size: var(--xxxSmall);
    font-weight: var(--bold);
    border: 1px solid var(--bgPrimaryLight-2) !important;
    border-radius: 0;
    background-color: var(--bgPrimary);
}

.activity-control {
    height: 31px !important;
    font-size: var(--xxSmall) !important;
    border-radius: 5px;
    border: 1px solid var(--bgLightGrey-20);
    font-family: var(--montserrat) !important;
}
/* 
.activity-control::-webkit-input-placeholder {
    font-size: var(--xxxSmall) !important;
    color: var(--bgDarkGrey-1) !important;
    font-weight: var(--semiBold);
    font-family: var(--montserrat) !important;
}

.activity-control:-moz-placeholder {
    color: var(--bgDarkGrey-1) !important;
    font-size: var(--xxxSmall) !important;
    font-weight: var(--semiBold);
    font-family: var(--montserrat) !important;
}

.activity-control::-moz-placeholder {
    color: var(--bgDarkGrey-1) !important;
    font-size: var(--xxxSmall) !important;
    font-weight: var(--semiBold);
    font-family: var(--montserrat) !important;
}

.activity-control:-ms-input-placeholder {
    font-size: var(--xxxSmall) !important;
    color: var(--bgDarkGrey-1) !important;
    font-weight: var(--semiBold);
    font-family: var(--montserrat) !important;
} */

.activity-group-text {
    background-color: var(--bgWhite);
    border-left: none;
    border: 1px solid var(--bgLightGrey-20);
    border-radius: 5px;
    font-family: var(--montserrat) !important;
}

.activity-group-text i {
    color: var(--bgPrimary) !important;
}

.activity-group-text img {
    width: 14px;
}

.activity-btn {
    background-color: var(--bgPrimary);
    border: 1px solid var(--bgPrimary) !important;
    color: var(--bgWhite);
    border-radius: 10px;
    font-size: var(--xxSmall);
    border-radius: 20px;
    padding: 6px 16px;
    font-family: var(--montserrat) !important;
}

.w-dth-fixed {
    width: 155px;
}

.card-heading {
    /* font-size: var(--xxSmall); */
    padding: 5px 0;
    /* font-family: var(--montserrat) !important; */
    font-weight: var(--bold);
}

.card-heading-color1 {
    color: var(--bgHoverBlue);
}

.card-heading-color2 {
    color: var(--bgLightGrey-10);
}

.lead-card-header h6 {
    /* font-size: var(--xxxSmall); */
    padding: 5px 0;
    /* font-family: var(--montserrat) !important; */
    font-weight: var(--bold);
    /* color: var(--bgLightGrey-10); */
}

.lead-card-header img {
    /* width: 13px; */
    margin-right: 10px;
}

.lead-card-header {
    background-color: var(--bgPrimaryLight-3);
    padding: 6px 10px;
    border-bottom: none;
}

.lead-card-body {
    background-color: var(--bgWhite);
    padding: 6px 10px;
}

.lead-card {
    border: 1px solid var(--bgLightGrey-20);
    -moz-box-shadow: 1px 1px 5px var(--bgLightGrey-20);
    -webkit-box-shadow: 1px 1px 5px var(--bgLightGrey-20);
    box-shadow: 1px 1px 5px var(--bgLightGrey-20);
    margin: 10px 0;
    padding-bottom: 20px;
}

.lead-card-header p {
    /* font-size: var(--xxxSmall); */
    padding: 5px 0;
    /* font-family: var(--montserrat) !important; */
    font-weight: var(--semiBold);
    /* color: var(--bgLightGrey-10); */
}

.card-body-text1,
.card-body-text2,
.card-body-text3 {
    /* font-size: var(--xxxSmall); */
    font-family: var(--montserrat);
    color: var(--bgLightGrey-10) !important;
}

.text-bold {
    font-weight: var(--bold);
}

.text-light {
    font-weight: var(--regular);
}

.card-body-text3.text-medium {
    font-weight: var(--semiBold);
}

.card-body-text1 span {
    color: var(--bgMain);
}

.card-body-text2 span {
    color: var(--bgMain);
}

.email-user {
    display: flex;
}

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

.profle img {
    width: 30px;
    height: 30px;
    object-fit: contain;
    border-radius: 50%;
}

.user-dt {
    padding-left: 10px;

}

.reply-forward {
    display: flex;
    justify-content: flex-end;
    padding-right: 10px;
}

.reply-forward img {
    width: 14px;
    cursor: pointer;
    margin-left: 12px;
}

.log-list {
    display: flex;
}

.log-dt {
    padding-left: 20px;
}

.log-dt-text1,
.log-dt-text2 {
    font-size: var(--xxxSmall);
    font-family: var(--montserrat) !important;
}

.log-dt-text1 {
    color: var(--bgDark);
    font-weight: var(--bold);
}

.log-dt-text1 span.text1-log {
    color: var(--bgPrimaryLight-2);
}

.log-dt-text1 span.text2-log {
    font-weight: var(--semiBold);
}

.log-dt-text2 {
    color: var(--bgLightGrey-15) !important;
    font-weight: var(--regular);
}

.log-step {
    width: 35px;
    height: 35px;
    background-color: var(--bgPrimaryLight-2);
    border-radius: 50%;
    position: relative;
    z-index: 1;
}

.logs ul li {
    padding-top: 40px;
    position: relative;
}

.logs ul li::before {
    content: "";
    width: 0.5px;
    height: 100px;
    position: absolute;
    top: 0;
    z-index: 0;
    left: 3%;
    background-color: var(--bgLightGrey-15);
}

.logs h5 {
    font-size: var(--xxSmall);
    padding: 13px 0;
    font-family: var(--montserrat) !important;
    font-weight: var(--bold);
    color: var(--bgUpEvent);
    padding-left: 37px;
}

.logs {
    padding-bottom: 60px;
}

.logs ul {
    padding-left: 1.5rem;
}

.history-tbl body,
td,
tfoot,
th,
thead,
tr {
    font-family: var(--montserrat) !important;
}

.history-tbl thead tr th {
    color: var(--bgDarkGrey);
    text-align: left;
    font-size: var(--xxSmall);
    font-weight: var(--semiBold);
    padding: 11px 5px !important;
}

.history-tbl td {
    color: var(--textDefault);
    font-weight: var(--semiBold);
    font-size: var(--xxxSmall);
}

.history-tbl tbody tr {
    position: relative;
}

/* .history-tbl tbody tr:hover::after
{
    content: "";
    width: 3px;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-color: var(--bgMember);
} */

.history-tbl tbody td {
    padding: 23px 5px !important;
    font-size: var(--xxxSmall) !important;
}

.uploading-stat {
    border-bottom: 1px solid var(--bgLightGrey-20);
}

.file-text {
    color: var(--bgDarkGrey-1);
    font-weight: var(--semiBold);
    font-size: var(--xxSmall);
    padding: 6px 0px;
}

.file-progress {
    border: 1px solid var(--bgLightGrey-20);
    background-color: var(--bgWhite);
    border-radius: 2px !important;
    height: 9px !important;
    width: 110px;
    position: relative;
    top: 5px;
}

.file-progress .progress-bar {
    background-color: var(--bgPrimary);
}

.progessing {
    display: flex;
    position: relative;
}

.cancel-upload {
    width: 8px;
    cursor: pointer;
    position: absolute;
    top: 4.7px;
    /* margin-left: 17px; */
    right: 11%;
}

.uploading-area h2 {
    color: var(--bgDarkGrey-1);
    font-weight: var(--semiBold);
    font-size: var(--xxxSmall);
    text-transform: math-auto;
}

.uploading-area {
    border-style: dashed;
    border-color: var(--bgPrimaryLight-2);
    border-radius: 5px;
    padding: 10px 28px;
    display: flex;
    vertical-align: middle;
    align-items: center;
    border-width: 1.4px;
    margin-top: 10px;
    cursor: pointer;
}

.upld-text {
    display: flex;
    vertical-align: middle;
    align-items: center;
}

.upload-file-label {
    width: 100%;
    margin-bottom: 0 !important;
}

.btn-upload {
    background-color: var(--bgPrimary);
    border: 1px solid var(--bgPrimary) !important;
    color: white;
    border-radius: 10px;
    font-family: var(--montserrat) !important;
    font-size: var(--xxxSmall);
    padding: 6px 9px;
    text-align: center;
    text-transform: capitalize;
    width: 90%;
    display: inline-block;
}

.lead-card-activity {
    border-style: dashed;
    border-color: var(--bgPrimaryLight-2);
    border-radius: 5px;
    margin-top: 5px;
    padding-bottom: 20px;
}

.act-select {
    max-width: 200px;
    height: 35px !important;
    /* font-size: var(--xxxSmall) !important; */
    border-radius: 5px !important;
}

.act-select option {
    font-weight: var(--semiBold);
    line-height: 3;
}

.action-form {
    display: flex;
    padding: 7px 10px;
}

.action-label {
    font-size: var(--xxxxxSmall) !important;
    color: var(--bgDarkGrey-1);
    margin-right: 10px;
    margin-bottom: 0 !important;
    position: relative !important;
    top: 3px;
}

/* .collapse
{
  transition: all 1s; 
} */

textarea.activity-controls {
    height: inherit !important;
}

input[type="text"].activity-controls,
input[type="date"].activity-controls,
select.activity-controls,
input[type="time"].activity-controls, .activity-controls {
    /* height: 33px !important; */
    position: relative;
    /* font-size: var(--xxxSmall) !important; */
}

input[type="time"]::before {
   /*background: none; */
  display: block;
  font-family: "FontAwesome";
  position: absolute;
  top: 50%;
  right: 10px;
  font-size: 20px;
  color: var(--bgLightGrey-10);
  transform: translate(0, -50%);
  
    
    text-align: right;
    content: "\f017";
   
}

input[type="time"]::-webkit-calendar-picker-indicator {
    background: none;
}

input[type="time"] {
    position: relative;
}
input[type="time"]::-webkit-calendar-picker-indicator, input[type="date"]::-webkit-calendar-picker-indicator {
    display: block;
    top: 0;
    right: 0;
    height: 100%;
    width: 100%;
    position: absolute;
    background: transparent;
}
.content-activities {
    padding: 0px 46px 0 46px;
}

.activity-label {
    margin-bottom: 5px;
    font-size: var(--xxxxxSmall) !important
}
/* 
.activity-controls::-webkit-input-placeholder {
    color: var(--bgLightGrey-20) !important;
    font-size: var(--xxxSmall) !important;
}

.activity-controls:-moz-placeholder {
    color: var(--bgLightGrey-20) !important;
    opacity: 1;
    font-size: var(--xxxSmall) !important;
}

.activity-controls::-moz-placeholder {
    color: var(--bgLightGrey-20) !important;
    opacity: 1;
    font-size: var(--xxxSmall) !important;
}

.activity-controls:-ms-input-placeholder {
    color: var(--bgLightGrey-20) !important;
    font-size: var(--xxxSmall) !important;
} */

input[type="date"].activity-controls.lead-calender:before {
    position: absolute;
    top: 9%;
    font-size: 18px;
    right: 2.5%;
}

input[type="date"].activity-controls.lead-clock:before {
    position: absolute;
    top: 9%;
    font-size: 18px;
    right: 2.5%;
}

.activity-group {
    margin-bottom: 10px;
}

label,
.activity-controls,
select {
    font-family: var(--montserrat) !important;
}

.activity-label {
    text-transform: capitalize !important;
    /* font-size: var(--xxxSmall)!important; */
}

select.activity-controls2 {
    height: 33px !important;
    position: relative;
    font-size: var(--xxxSmall) !important;
}

.user-dt2 {
    display: flex;
    justify-content: start;
    vertical-align: middle;
    align-items: center;
    padding-left: 10px;
}

.emailto-select span.select2-selection.select2-selection--multiple {
    border: none !important;
}

.emailto-select .select2-container .select2-selection--multiple .select2-selection__rendered {
    width: 100%;
    white-space: nowrap;
    display: block;
    padding-left: 0;
    list-style-type: none;
    list-style-position: outside;
    margin-top: -4px;
    margin-left: -10px;
}

.emailto-select .select2-container--default .select2-selection--multiple .select2-selection__choice {
    background-color: var(--lightBorder);
    border: none;
    border-radius: 50rem;
    padding-left: 0;
    padding: 0;
    /* margin-right: 5px; */
    float: left;
    margin-right: 0;
}

.multi-cats .select2-container--default .select2-selection--multiple .select2-selection__choice {
    background-color: var(--lightBorder);
    border: none;
    border-radius: 50rem;
    padding-left: 0;
    padding: 0;
    /* margin-right: 5px; */
    float: left;
    margin-right: 0;
}

.multi-cats .select2-container--default .select2-selection--multiple .select2-selection__choice__display
{
    color: var(--bgDarkGrey-1);
    font-size: var(--xxxSmall);
    padding-left: 13px;
    padding-right: 27px;
    min-height: 24px;
    font-weight: var(--semiBold);
}

.emailto-select .select2-container--default .select2-selection--multiple .select2-selection__choice__display {
    color: var(--bgDarkGrey-1);
    font-size: var(--xxxSmall);
    padding-left: 13px;
    padding-right: 27px;
    min-height: 24px;
    font-weight: var(--semiBold);
    white-space: nowrap;
}
.multi-cats .select2-search__field
{
    padding: 8px !important;
    height: 21px !important;
}
.multi-cats .select2-container--default .select2-selection--multiple .select2-selection__choice__display {
    color: var(--bgPrimary);
    font-size: var(--xxxSmall);
    background-color: var(--lightBorder);
    padding-left: 13px;
    padding-right: 27px;
    min-height: 24px;
    font-weight: var(--semiBold);
    white-space: nowrap;
}

.emailto-select .select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
    color: var(--bgLightGrey-10);
    padding: 0 9px;
    border-right: 0;
    font-size: 16px;
    position: absolute;
    top: 0px;
    right: 0;
    left: inherit;
    height: 15px;
}

.multi-cats .select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
    color: var(--bgLightGrey-10);
    padding: 0 9px;
    border-right: 0;
    font-size: 16px;
    position: absolute;
    top: 0px;
    right: 0;
    left: inherit;
    height: 15px;
}

.emailto-select .select2-container .select2-search--inline .select2-search__field {
    margin-top: 0;
}

.card-body-text1 span.text-gray {
    color: var(--bgLightGrey-10) !important;
    cursor: pointer;
}

.border-gray {
    border-bottom: 1px solid var(--bgLightGrey-20);
    padding-bottom: 14px
}

.emailto-select .select2-container--default .select2-selection--multiple {
    min-height: 32px;
    padding-bottom: 0;
}

.subject-controls {
    height: 33px !important;
    position: relative;
    font-size: var(--xxxSmall) !important;
    font-weight: var(--semiBold);
    border: 1px solid #fff;
    margin-top: 10px;
}

.subject-controls:focus
{
    border: none!important;
}

.subject-fm-group
{
    margin-left: -10px;
}

.message-controls {
    height: inherit !important;
    font-size: var(--xxxSmall) !important;
    font-weight: var(--semiBold);
    border: 1px solid #fff;
    margin-top: 10px;
    resize: none!important;
}

.message-controls:focus
{
    border: none!important;
}

.image-upload-pregressor
{
    background-color: var(--bgPrimaryLight-3);
    border-radius: 0;
    padding: 2px 7px;
    margin-top: 10px;
}

.file-progress2 {
    border: 1px solid var(--bgLightGrey-20);
    background-color: var(--bgWhite);
    height: 5px !important;
    width: 80px;
    position: relative;
    top: 8px;
    border: 0;
    border-radius: 0;
}

.file-progress2 .progress-bar {
    background-color: var(--bgPrimary);
}

.send-btn
{
    background-color: var(--bgPrimary);
    border: 1px solid var(--bgPrimary) !important;
    color: var(--bgWhite);
    border-radius: 10px;
    font-size: var(--xxxSmall);
    border-radius: 9px;
    padding: 6px 30px;
    font-family: var(--montserrat) !important;
}
.space-30
{
    padding: 50px;
}

 label.form-label{
    text-transform: capitalize!important;
}
/* 
input[type="text"].lead-control.lead-calender:before {
    background: none;
    display: block;
    font-family: "FontAwesome"!important;
    content: "\f073"!important;
    width: 15px!important;
    height: 20px!important;
    position: absolute!important;
    top: 27%!important;
    right: 5%!important;
    color: var(--bgLightGrey-20);
}
input[type="text"].lead-clock:before {
    background: none;
    display: block;
    font-family: "FontAwesome";
    content: "\f073";
    width: 15px;
    height: 20px;
    position: absolute;
    top: 27%;
    right: 5%;
    color: var(--bgLightGrey-20);
} */

/* ============================ text editor for email template start =============================*/

.editor-elements
{
    display: inline-flex;
}
.editor-elements .elements
{
    padding: 3px;
    width: 18px;
    height: 18px;
    display: flex;
    justify-content: center;
    vertical-align: middle;
    justify-content: center;
}
.editor-elements .elements img
{
    width: 10px;
    height: 10px;
}
.editor-elements .elements i
{
    font-size: 12px;
    cursor: pointer;
}
.leadDetails .profilePic {
    background-color: var(--bgLightGrey-30);
    width: 60px;
    height: 60px;
}
/* ============================ text editor for email template end =============================*/
.err_div{
    position: absolute;
    max-height: 67px;
}
.common-error {
    margin-top: -34px;
}

.loginRightContent {
    background: var(--bgPrimary);
    padding: 16px;
    border-radius: 16px;
    min-height: 50vh;
}

.loginRightContent .form-control {
background: rgba(255, 255, 255, 0.2);
border: none;
height: 70px;
color: var(--bgWhite);
font-size: 20px;
}
.loginRightContent .inputBox .form-label {
    color: #fff;
    font-size: 18px;
    transform: translate(0, 0) !important;
    top: 18px !important;
    border-left: solid 2px #fff;
    background: #fff;
    height: 35px;
    padding: 0;

}
.loginRightContent .form-control:focus,  .loginRightContent .form-select:focus  {
    box-shadow: none;
    border: none;
    color: #fff;
}

  .loginRightContent  .form-control:-ms-input-placeholder {
    /* Internet Explorer 10-11 */
    font-size: 20px;
    color: #fff;
  }
  
  .loginRightContent .form-control::placeholder {
    color: var(--bgLightGrey-10);
    font-size: 20px;
    color: #fff;
  }
  .forgotLink {
    margin-top: 150px;
   
  }
  .forgotLink a{

    color: #fff;
    font-size: 14px;
    font-weight: 600;
    border-bottom: solid 1px #fff;
  }
  .forgotLink a:hover {
    color: #f2ff71;
  }

  .loginBtn {
    background: url(../img/button-bg-vrctor.svg) no-repeat center center;
    height: 60px;
    border: none;
    background-size: 100% 100%;
    color: #BCBCBC;
    font-family: "Golos Text", sans-serif;
    font-size: 24px;
    font-weight: 500;
  }
  .loginBtn:hover {
    background: url(../img/button-bg-vrctor-hover.svg) no-repeat center center; 
    color: #000;
    background-size: 100% 100%;
}

.forgotHeading {
    font-size: 20px;
    margin: 10px 0 20px;
    color: #fff;
    text-transform: uppercase;
}

.loginRightContent .error, .loginRightContent .invalid-feedback {
    background: url(../img/error-icon.svg) no-repeat left center;
    padding: 2px 0px 2px 16px !important;
    background-size: auto 14px;
    font-family: "Golos Text", sans-serif;
}

/* topheader */
.headBg {
    background: var(--bgPrimary);
}

.borderBox {
    border: solid 1px var(--bgLightGrey-40);
    padding: 24px;
    border-radius: 16px;
}
.heading2 {
    font-family: var(--inter);
    font-size: var(--medium);
    font-weight: var(--bold);
    color: var(--bgBlack);
}
.col5 {
    height: 100px;
    width: calc(100% / 5);
    box-sizing: border-box;
   display: flex;
   height: 100%;
}
.coutBox {
    background: var(--bgPrimary);
    color: var(--bgWhite);
    padding: 10px;
    border-radius: 8px;
    height: 100%;
    flex: 0 0 100%;
    display: flex;
    flex-direction: column;
    min-height: 100px;
}
.coutBox h5 {
    font-family: var(--inter);
    font-size: var(--medium);
    font-weight: var(--bold);
    margin: 0 0  auto;
}
.coutBox h5 span {
    font-size: var(--xxxSmall);
    font-weight: var(--semiBold);
}
.coutBox .countnum {
    font-family: var(--inter);
    font-size: var(--xxLarge);
    font-weight: var(--bold);
    line-height: normal;
}

.dashboardUpcomingGames .col5{
    width: calc(100% / 4);
}
.dashboardUpcomingGames .coutBox {
    background: #107872;
}
.dashboardUpcomingGames .coutBox h5 {
    font-family: var(--opneSans);
    font-size: var(--xlarge);
    font-weight: var(--semiBold);
    margin: 0 0 5px;
}

.dashboardUpcomingGames .coutBox p {
margin: 0 0 20px;
font-family: var(--opneSans);
    font-size: var(--medium);
    font-weight: var(--semiLight);
}

.dashboardUpcomingGames .coutBox .countnum {
    font-family: var(--opneSans);
    font-size: var(--xxLarge);
    font-weight: var(--light);
    line-height: normal;
}

.textInfo {
    font-family: var(--inter);
    font-size: var(--xlarge);
    font-weight: var(--bold);
    color: var(--bgBlack);
}
.textInfo  .d-flex {
    margin: 5px 0;
}
.contentTopNav ul {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    border-bottom: solid 1px var(--bgLightGrey-40);
}
.contentTopNav ul li {


}
.contentTopNav ul li a{
    font-family: var(--inter);
    font-weight: var(--bold);
    font-size: var(--small);
    color: var(--bgDark2);
    padding: 10px ;
    display: block;
    border-bottom: solid 4px transparent;
}
.contentTopNav ul li a:hover, .contentTopNav ul li a.currentPage {
border-color: #000;
}

.bgBeige{
    background: var(--bgBeige);
}
.borRadius10 {

    border-radius: 10px;
}
.rgtLinks {
    min-height: 300px;
    padding: 16px;
}
.rgtLinks .links a{
    border-bottom: solid 1px #C0C0C0;
    padding: 10px 0;
    display: block;
    font-family: var(--inter);
    font-weight: var(--light);
    font-size: var(--medium);
    color: var(--bgDark2);
}
.rgtLinks .links:last-child a {
    border: none;
}
.rgtLinks .links a:hover {
    color: var(--bgBlack);
}   
.rgtLinks .form-check-input:checked[type=radio] {
background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='2' fill='%23000'/%3e%3c/svg%3e");
border-color: #aaa;
}
.w90  {
    width: 90px;
}
.heading3 {
    font-family: var(--inter);
    font-weight: var(--light);
    font-size: var(--semiLarge);
    color: var(--bgBlack);
    margin: 0 0 16px;
}
.activityLogRow {
    font-family: var(--inter);
    font-weight: var(--light);
    font-size: var(--semiLarge);
    color: var(--bgDark3);
    margin:0 0 16px 0;
}
.activityLogRow  .logTime {
    font-weight: var(--semiLight);
    font-style: italic;
    color: #868686;
}
.activityLogRow .userPic{
height: 71px;
width: 71px;
background: #D9D9D9;
border-radius: 100%;
}
.settingsContent label {
    width: auto !important;
}
.seprater {
    background: var(--bgLightGrey-40);
    height: 1px;
    margin: 16px 0;
}
.w150 {
    width: 150px;
}
.w200 {
    width: 200px;
}
.innerContent .searchField  .form-control{
background: url(../img/icons/icon-search.svg) no-repeat var(--bgBody);
height: 40px;
border: solid 1px var(--bgLightGrey-40);
color: #C1B9B9;
min-height: 40px;
background-position: calc(100% - 8px) center;
padding-right: 42px;
}
.tblStyle table td, .tblStyle table th {
    text-align: left;
    font-family: var(--inter) !important;
    font-weight: var(--light);
    font-size: var(--small);
    padding: 12px;
}
.tblStyle table th {
color: #777;
}
.tblStyle table td {
    color: var(--bgDark3);
    }

.actionBtns {
    display: flex;
    gap: 4px;
    /* justify-content: end; */
}
.actionBtns a.ectionLink  {
    border: solid 1px var(--bgLightGrey-40);
    height: 36px;
    width: 36px;
    border-radius: 8px;
    display: flex;
    flex: 0 0 36px;
    justify-content: center;
    align-items: center;
    color: var(--bgDark2);
    white-space: nowrap;
}
.actionBtns a.ectionLink:hover {
    background: var(--bgDark2);
    color: var(--bgWhite);
}
.actionBtns a.ectionLink:hover svg path {
    fill:var(--bgWhite);
}
.actionBtns .dropdown-menu{
background: var(--bgBody);
box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.12);
border-radius: 12px;
border: none;
padding: 0;
overflow: hidden;
}
.actionBtns .dropdown-menu .dropdown-item {
    color: var(--bgDark3);
    font-family: var(--inter);
    font-weight: var(--light);
    font-size: var(--small);
    padding: 10px;
    padding: 10px;
    display: flex;
    align-items: center;
    gap: 5px;
} 
.actionBtns .dropdown-menu a img {
    width:18px;
}
.actionBtns .dropdown-menu .dropdown-item  svg {
    width: 16px;
}
.actionBtns .dropdown-menu .dropdown-item svg path  {
    fill: #000;
}
.actionBtns .dropdown-menu .dropdown-item:focus, .actionBtns .dropdown-menu .dropdown-item:hover  {
background: #eeebcc ;
}
.table-risponsive .form-check-input {
    width: 24px;
    height: 24px;
    margin-right: 8px;
    border: 2px solid #E8E8EA;
    background: transparent;
    border-radius: 8px !important;
}
.table-risponsive .form-check-input:checked[type="checkbox"] {
    background-image: url(../img/tick.png);
    background-color: transparent;
    background-size: 70%;
    background-repeat: no-repeat;
    background-position: center center;
}

.ticketingAccordion .accordion-item{
background: var(--bgBeige);
border-radius: 8px !important;
color: var(--bgDark3);
margin: 0 0 20px 0;
border: none;
padding: 16px;
}
.ticketingAccordion .accordion-item .accordion-header .subName{
    font-family: var(--inter);
    font-weight: var(--light);
    font-size: var(--semiLarge);
} 
.ticketingAccordion .accordion-item .accordion-body {
    padding-left: 0;
    padding-right: 0;
}
.ticketingAccordion .accordion-item .form-control, .innerContent .form-control.borInput {
    height: 40px;
    border: solid 1px #BEBEBE;
    color: var(--bgDark3);
    min-height: 40px;
    background: transparent;
}
.ticketingAccordion .accordion-item textarea.form-control {
height: 110px;
}

.ticketingAccordion .accordion-item .editSubject {
    cursor: pointer;
    display: inline-flex;
    width: 30px;
    height: 30px;
    align-items: center;
    justify-content: center;
    border: solid 1px transparent;
    border-radius: 8px;
}
.ticketingAccordion .accordion-item .editSubject:hover {
    border: solid 1px var(--bgLightGrey-40);
    background: var(--bgDark2);
}

.ticketingAccordion .accordion-item .editSubject:hover svg path{
fill: var(--bgWhite);
}

.ticketingAccordion .qstName, .ticketingAccordion .form-label, .innerContent .settingsContent label, .innerContent.manageLive .form-label{
    font-family: var(--inter) !important;
    font-weight: var(--light);
    font-size: var(--medium);
}
.subTitle {
    font-family: var(--inter);
    font-weight: var(--light);
    font-size: var(--semiLarge);
    color: var(--bgDark3);  
}

.borBox {
    border: solid 1px var(--bgLightGrey-40);
    border-radius: 8px;
    padding: 16px;
}
.checkBoxLabel {
    color: #1025C1;
    font-family: var(--inter);
    font-weight: var(--light);
    font-size: var(--semiLarge);
    margin: 0 0 5px;
}
.innerContent .permissionsCheckbox label {
    font-weight: var(--semiLight);
    font-size: var(--small);
}
.checkBoxContainer {
    margin: 0 0 20px;
}
.permissionsCheckbox .form-check-input{
height: 16px;
width: 16px;
border: none;
background: #D9D9D9;
border-radius: 1px;
}
.settingsContent .form-group {
    margin: 0 0 16px;
}

.permissionsCheckbox .form-check-input:checked[type="checkbox"] {
    background-image: url(../img/tick.png);
    background-color: #D9D9D9;
    background-size: 70%;
    background-repeat: no-repeat;
    background-position: center center;
} 

.tabFormNav {
   border: none !important;
   margin: 0 0 30px;
}
.tabFormNav  .nav-item {
    flex: 0 0 50%;
}
.tabFormNav  .nav-item  a {
    background: transparent;
    border: none;
    border-bottom: solid 2px #D9D9D9;
    border-radius: 0;
    font-family: var(--inter);
    font-weight: var(--bold);
    font-size: var(--small);
    color: #D9D9D9;
    padding: 5px 0;
}

.tabFormNav .nav-item.show .nav-link, .tabFormNav .nav-link.active {
    background: transparent;
    border-color: #000;
    color: #000;
}

.tabContentForm .subTitle {
font-weight: var(--exbold);
}
.tabContentForm .form-group  {
    margin:   0 0 20px;
}
.tabContentForm .form-check {
    margin: 5px 0 0 ;
}
.tabContentForm .form-label, .tabContentForm .form-check-label {
    font-family: var(--inter) !important;
    font-weight: var(--bold); 
    font-size: var(--medium);
   
}
.tabContentForm .form-check-input {
height: 24px;
width: 24px;
border-radius: 8px;
border:solid 1px #AAAAAA;
background: transparent;
margin-top: 2px;
}
.tabContentForm .form-check-input:checked[type="checkbox"] {
    background-image: url(../img/icons/radio-check.svg);
    background-color: #000;
    background-size: 70%;
    background-repeat: no-repeat;
    background-position: center center;
} 
.tabContentForm .form-check-input[type="radio"] {
/* background: #AAAAAA; */
border-radius: 100%;
}
.tabContentForm .form-check-input:checked[type=radio] {
background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='2' fill='%23000'/%3e%3c/svg%3e");
}
.ticketingAccordion .accordion-item .form-control.readOnly, .innerContent .form-control.borInput.readOnly {
background: #E9E7C9 !important;
}
.innerContent .form-control.disabled {
background: #F2F1DE;
}
.slectLang { 
    font-family: var(--inter) !important;
    font-weight: var(--bold); 
    font-size: var(--medium);
    color: var(--bgDark3);

}
.innerContent .tabContentForm .form-select {
    background: rgba(16, 37, 193, 0.7);
    height: 30px;
    color: var(--bgBody);
    background-image: url(../img/icons/select-whitw-arrow.svg);
    min-height: 30px;
    background-repeat: no-repeat;
    background-position: calc(100% - 10px) center;
    border-radius: 4px;
    padding: 0 30px 0 20px;
}

.qustionList span {
    font-family: var(--inter) !important;
    font-weight: var(--light); 
    font-size: var(--medium);
    color: #333;
}

/* Custom Radio Button Styles */
.custom-radio-container {
    margin-bottom: 20px;
}

.custom-radio-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    margin-bottom: 10px;
    font-family: var(--inter) !important;
    font-weight: var(--bold) !important;
    font-size: var(--medium) !important;

}

.custom-radio-label input[type="radio"] {
    margin-right: 5px;
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.radio-input-group {
    margin-left: 0;
    display: block;
}

.radio-input-group.show {
    display: block;
}

.radio-input-group .form-control {
    height: 40px;
    border: solid 1px #BEBEBE !important;
    color: var(--bgDark3);
    min-height: 40px;
    background: transparent;
    font-family: var(--inter);
    font-size: var(--medium);
}

.radio-input-group .form-control.confirmed {
    border: 1px solid var(--bgSuccess);
}

/* Confirmation Popup Styles */
.confirmation-popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9999;
    align-items: center;
    justify-content: center;
}

.confirmation-popup.show {
    display: flex;
}

.confirmation-content {
    background: var(--bgBody);
    padding: 24px;
    border-radius: 12px;
    max-width: 400px;
    width: 100%;
}

.confirmation-title {
    font-family: var(--inter);
    font-size: var(--semiLarge);
    font-weight: var(--bold);
    color: var(--bgDark2);
    margin-bottom: 16px;
}

.confirmation-message {
    font-family: var(--inter);
    font-size: var(--medium);
    color: var(--bgDark3);
    margin-bottom: 24px;
}

.confirmation-buttons {
    display: flex;
    gap: 12px;
    /* justify-content: flex-end; */
    justify-content: flex-end;
}

.confirmation-btn {
    padding: 8px 24px;
    border-radius: 8px;
    font-family: var(--inter);
    font-size: var(--small);
    cursor: pointer;
}

.confirmation-btn.cancel {
    /* background: #F5F5F5;
    color: var(--bgDark3);
    border: 1px solid var(--bgLightGrey-40); */
    background: transparent;
    color: #4B50F6;
    border: 1px solid #4B50F6;
    font-weight: var(--semiBold);
}
.confirmation-btn.cancel:hover {
   background: #4B50F6;
   color:var(--bgWhite) 
}
.confirmation-btn.confirm {
    background: var(--bgPrimary);
    color: var(--bgWhite);
    border: 1px solid var(--bgPrimary);
    font-weight: var(--semiBold);
} 
.confirmation-btn.confirm:hover {
    background: transparent;
    color: var(--bgPrimary);
}

.custom-radio-container.confirmed .form-control{
    
    border: 1px solid var(--bgSuccess) !important;
}

.radio-input-group .form-control.confirmed {
    border: 1px solid var(--bgSuccess);
} 

.save-btn.disabled {
    background: #989898;
    color: var(--bgWhite);
}

.stepsWrapper{
    display: flex;
    justify-content: space-around;
}
.stepBox{
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

.dot{
    width: 20px;
    height: 20px;
    background-color: #8B8B8B;
    margin: auto;
    margin-bottom: 20px;
    position: relative;
    border-radius: 100px;
}
.stepsWrapper{
position: relative;
}
.stepsWrapper::before{
position: absolute;
content: "";
width: 80%;
background-color: #9B9B9B;
height: 2px;
top: 10px;
}
.active .dot{
    background-color: #538A4C;
}
.current.dot {
    background-color: black;
}
.stepBox .btnPrimary{
    background-color: #8B8B8B; 
    border: none;
    font-weight: var(--light);
}
.stepBox.active .btnPrimary, .stepBox.active.current .btnPrimary{
    background-color: #538A4C; 
}
.stepBox.current .btnPrimary{
    background-color: #000; 
}
.btnPrimary.fontWeightLight  {
    font-weight: var(--light);
}
.topRgtText .txtBox{
white-space: nowrap;
}
.totalCount {
    font-family: var(--inter);
    font-size: var(--xxLarge);
    font-weight: var(--bold);
   color: var(--bgDark2);
}

.boxBlack {
    background: var(--bgDark2);
    color: var(--bgWhite);
    border-radius: 8px;
    padding: 15px 10px;
    text-align: center;
    
   
}
.boxBlack .d-flex div {
text-align: left;
padding: 0 10px;
}
.boxBlack .d-flex div div {
padding: 0;
}
.boxBlack label {
    font-family: var(--inter) !important;
    font-size: var(--medium);
    font-weight: var(--bold);
    color: var(--bgWhite);
    line-height: normal;
    margin: 0;
}
.boxBlack .totalCount {
color: var(--bgWhite);
text-align: center;
}
.qstnOutOff {
    font-family: var(--inter) !important;
    font-size: var(--xlarge);
    font-weight: var(--bold);
    color: #333;
}

.btnPrimary.bg666 {
background: #666;
}
 .innerContent .correctAnswer .form-control.borInput {
border-color: #538A4C;
}
#sortableContainer .borBox{
margin: 0 0 16px;
}
.borBox.dragging {
    opacity: 0.5;
    border: 1px dashed #000;
  }
  #sortableContainer .borBox .editBtn{
    cursor: pointer;
    display: inline-flex;
    width: 30px;
    height: 30px;
    align-items: center;
    justify-content: center;
    border: solid 1px transparent;
    border-radius: 8px;
  }
  #sortableContainer .borBox .editBtn:hover {
    border: solid 1px var(--bgLightGrey-40);
    background: var(--bgDark2);
}
#sortableContainer .borBox .editBtn:hover svg path {
    fill: var(--bgWhite);
}
.tblStyle  .status-txt.textGreen {
color: #007771;
}
.tblStyle  .status-txt.textOrange {
color: #FF5600;
}
.userDtailsBox {
    position: relative;
}
.userDtailsBox  .seprater{
    background: #BABABA;
    width: 1px;
    height: 100%;
    margin: 0 auto;
}
.userDtailsBox h3{
    color: var(--bgDark3);
    font-family: var(--inter) !important;
    font-size: var(--semiLarge);
    font-weight: var(--bold);
}
.userDtailsBox .txtRow {
    color: var(--bgDark3);
    font-family: var(--inter) !important;
    font-size: var(--semiLarge);
    font-weight: var(--light);
    margin: 10px 0;
}
.userDtailsBox .txtRow  span  {
    font-weight: var(--bold);
}
.settingsContent .comment-textField.form-group {
    margin: 0;
}

.comment-textField {
    position: relative;
} 
.comment-textField .form-control  {
    padding-right: 120px;
    padding-left: 16px;
    font-family: var(--inter) !important;
    font-size: var(--semiLarge);
    font-weight: var(--light);
}

.comment-textField input.form-control::-webkit-input-placeholder {
    /* WebKit, Blink, Edge */
    font-family: var(--inter) !important;
    font-size: var(--semiLarge);
    font-weight: var(--light);
}

.comment-textField input.form-control:-moz-placeholder {
    /* Mozilla Firefox 4 to 18 */
    font-family: var(--inter) !important;
    font-size: var(--semiLarge);
    font-weight: var(--light);
}

.comment-textField input.form-control::-moz-placeholder {
    /* Mozilla Firefox 19+ */
    font-family: var(--inter) !important;
    font-size: var(--semiLarge);
    font-weight: var(--light);
}

.comment-textField input.form-control:-ms-input-placeholder {
    /* Internet Explorer 10-11 */
    font-family: var(--inter) !important;
    font-size: var(--semiLarge);
    font-weight: var(--light);
}

.comment-textField .btnPrimary{
position: absolute;
top: 50%;
right: 15px;
transform:translate(0, -50%)
}
.userPic {
    height: 71px;
    width: 71px;
    background: #D9D9D9;
    border-radius: 100%;
    flex: 0 0 71px;
}
.userPic span {
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--inter) !important;
    font-size: var(--semiLarge);
    font-weight: var(--light);
    color: var(--bgDark3);
    height: 100%;
}
.commentTextBox {
    margin: 16px 0;
}
.commentText {
    background: #F5F2D580;
    border-radius: 8px;
    padding: 16px;
    color: var(--bgDark3);
    font-family: var(--inter) !important;
    font-size: var(--semiLarge);
    font-weight: var(--light);
}
.ticketsView .form-group  label {
    margin: 0;
    color: var(--bgBlack);
}
.ticketsView {
    font-family: var(--inter) !important;
    font-weight: var(--semiBold);
    font-size: var(--medium);
    color: var(--bgDark3);
}
.notificationEdit{
    position: relative;
}
.notificationEdit .form-control {
    padding-right:10px;
}
.notificationEdit span {
position: absolute;
top: 50%;
right: 15px;
transform:translate(0, -50%);
cursor:pointer;
}
.notificationsContent .actionBtns  .btnPrimary{
    padding: 0.275rem 1.25rem;
    font-weight: var(--light);
}
.innerContent .form-select.filterSelect {
    height: 40px;
    border: solid 1px #BEBEBE;
    color: var(--bgDark3);
    min-height: 40px;
    background-color: transparent;
}
.questionText  {
    font-family: var(--inter) !important;
    font-weight: var(--semiLight);
    font-size: var(--medium);
    color: var(--bgDark3);
}
.accordianActionBtn .deleteBtn{
    cursor: pointer;
    display: inline-flex;
    width: 30px;
    height: 30px;
    align-items: center;
    justify-content: center;
    border: solid 1px transparent;
    border-radius: 8px;
}
.accordianActionBtn .deleteBtn:hover {
    border: solid 1px var(--bgLightGrey-40);
    background: var(--bgDark2);
}
.accordianActionBtn .deleteBtn:hover svg path {
    fill: var(--bgWhite);
}

/* loader css changes  */
.loadingoverlay {
    /* change color here */
    color: var(--bgPrimary);
  }
  .loadingoverlay,
  .loadingoverlay:after {
    box-sizing: border-box;
  }
  .loadingoverlay {
    display: inline-block;
    width: 80px;
    height: 80px;
    background-image: none !important;
    background-color: rgba(255, 255, 255, 0.6) !important;
  }
  .loadingoverlay:after {
    content: " ";
    display: block;
    width: 64px;
    height: 64px;
    margin: 8px;
    border-radius: 50%;
    border: 6.4px solid currentColor;
    border-color: currentColor transparent currentColor currentColor;
    animation: loader-ring 1.5s linear infinite;
  }
  @keyframes loader-ring {
    0% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(360deg);
    }
  }
  .modal-content {
    background-color: var(--bgBody);
  }
  .modal-title {
    color: var(--bgBlack);
  }
  .modal-header, .modal-footer {
    border-color: var(--bgLightGrey-40);
  }
  
  .modal-body .form-control{
    height: 40px;
    border: solid 1px #BEBEBE;
    color: var(--bgDark2);
    min-height: 40px;
    background: transparent;
    font-size: var(--medium);
    border-radius: 8px;
    font-family: var(--inter) !important;
    position: relative;
  }
  .modal-body .form-label{
    font-family: var(--inter) !important;
    font-weight: var(--light);
    font-size: var(--medium);
    color: var(--bgDark3);
  }
  
/* loader css changes  /end  */

/* .stepBox {
    width: 100%;
    text-align: center;
}
.stepDots {
    text-align: center;
    position: relative;
}
.stepDots span{
    height: 20px;
    width: 20px;
    background: #538A4C;
    border-radius: 100px;
    display: block;
    position: relative;
    margin: 0 auto;
}

.stepDots::after, .stepDots::before {
    width: 50%;
    height: 2px;
    background: #000;
    content: "";
    top: 50%;
    position: absolute;
    transform: translate(0, -50%);
}
.stepDots::after { 
right: 0;
}
.stepDots::before {
    left: 0;
} */