@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');

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

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

body::-webkit-scrollbar-track {
    background: #ffffff;
}

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

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


/* text colors */

.textMain {
    /* color: var(--bgMain) !important; */
    color: var(--bgPrimary) !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);
}

.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);
}

.textWarning {
    color: var(--bgWarning);
}

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

.wordBreak {
    word-break: break-all;
}
/* 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-radius: 14px;
}

.brTopPrimaryDashed {
    border-top: 1px dashed var(--bgPrimary);
}

.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);
}


/* error */

.invalid-feedback,
.error {
    color: var(--bgError);
    font-size: var(--xxSmall);
    padding-left: 7px;
}

.helper-block2 span.invalid.error {
    position: absolute;
    bottom: -39px;
    padding: 0;
}

.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); */
    color: var(--bgPrimary);
    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: 50rem;
    font-size: var(--small);
    font-weight: var(--semiBold);
}
.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);
}
.btnPrimary {
    background-color: var(--bgPrimary);
    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);
}

.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;
}

.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); */
    background-color: var(--bgHoverBlue);
    
    color: white;
}
.sBtn{
    border: 1px solid #dddddd;
    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: #000000;
}
.sBtn.aBtn:hover{
    border: 1px solid #000000;
}
.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: 100%;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: var(--transition);
    border: 0;
}

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

.backBtn {
    color: var(--bgHoverBlue);
    font-size: var(--xSmall);
    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;
}


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


/* headings */

.heading {
    /* color: var(--bgMain); */
    color: var(--bgPrimary);
    font-family: var(--montserrat);
    font-weight: var(--bold);
    /* margin-bottom: 16px; */
    /* font-size: var(--medium); */
    font-size: clamp(var(--xxxSmall),1vw,var(--medium));
    text-transform: capitalize;
}


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


/* ===== 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: #ffffff;
}

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


/* 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(--xxSmall);
    /* color: #313131; */
    color: var(--bgPrimary);
    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(--xxSmall);
}

ul.breadcrumb li a:hover {
    /* color: var(--bgMain); */
    color: var(--bgHoverBlue);
}


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

@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);
    }
}

