:root {
    --background-color-main: #f5f6fa;
    --background-color-header: rgb(242, 243, 248);
    --background-color-scrollbar-track: white;
    --background-color-scrollbar-thumb: white;
    --background-color-notif-card: white;
    --background-color-notif-card-close: rgb(104, 104, 104);
    --background-color-float-menu: white;
    --background-color-btn-menu-option-hover: rgb(230, 230, 230);
    --color-text-light: black;

    --background-color-main-dark: #222222;
    --background-color-header-dark: #2e2e2e;
    --background-color-scrollbar-track-dark: #3a3a3a;
    --background-color-scrollbar-thumb-dark: #5a5a5a;
    --background-color-notif-card-dark: #3a3a3a;
    --background-color-notif-card-close-dark: #6a6a6a;
    --background-color-float-menu-dark: #3a3a3a;
    --background-color-btn-menu-option-hover-dark: #4a4a4a;
    --color-text-dark: white;

}

span,
div,
b,
p,
a,
button {
    color: var(--color-text-light);
}

.btnContactanos {
    color: white !important;
    cursor: pointer;
}


.ag-theme-alpine {
    /* customise with CSS variables */
    outline: 1px;
    outline-color: white !important;
    border-color: white !important;
}

div.ag-root .ag-cell-focus {
    -webkit-user-select: text;
    -moz-user-select: text;
    -ms-user-select: text;
    user-select: text;
}

/* .ag-header-cell-label {
    justify-content: center;
} */


.hidden {
    display: none !important;
}

.row {
    width: 100%;
    left: 0;
    margin-left: 0;
    margin-right: 0;
}

.mainBody {
    position: relative;
    /* height: 100%; */
    overflow-y: hidden;
    padding-left: 0 !important;
    padding-right: 0 !important;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 30px 60px -12px inset, rgba(0, 0, 0, 0.3) 0px 18px 36px -18px inset;

}

.mainHeader {
    background-color: rgb(242, 243, 248);
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    top: 0;
    left: 0;
    min-height: 60px;
    height: auto;
    width: 100%;
    z-index: 997;
}

/* Content */

.contentTitle {
    font-weight: bold;
    color: rgb(34, 34, 34);
    font-size: 25px;

}

.mainContent {
    max-height: 85vh;
    overflow-y: scroll;
}

.mainBody section {
    overflow: scroll !important;
}

.mainBody section::-webkit-scrollbar {
    width: 0.3px;
}

.mainBody section::-webkit-scrollbar-track {
    background: white;
    border-radius: 2px;
}

.mainBody section::-webkit-scrollbar-thumb {
    background-color: white;
    border-radius: 2px;
    border: 1px solid white;
}

.mainBody section::-webkit-scrollbar-thumb:hover {
    background-color: white;
}

/* Para Firefox */
.mainBody section {

    scrollbar-color: white;
}

/* End Content */

.mdlsa {
    margin-top: 40px;
}

body {
    background-color: white;
}

/* Para Chrome, Safari y Edge */


button:focus {
    outline: 0 !important;
    box-shadow: none !important;
}

.Loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: white;
    z-index: 997;
    transition: all 1s;
    opacity: 1;
}

.hidingLoader {
    opacity: 0;
    z-index: -1;
}

.loaderHidden {
    display: none !important;
}

.boxes {
    border-radius: 15px;
    background-color: white;
    padding: 12px;
    border: 0.5px solid rgba(213, 213, 213, 0.345);
    text-wrap: pretty;
    margin-bottom: 8px;
}

.notifBox {
    position: fixed;
    top: 0;
    left: 0;
    width: 300px;
    padding: 5px;
    flex-wrap: wrap;
    display: flex;
    gap: 7px;
    z-index: 1001;
}

.NotifCard {
    background-color: white;
    border-radius: 7px;
    overflow: hidden;
    transition: all 1s;
    width: 300px;
    min-height: 50px;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.NotifCardBody {
    font-size: smaller;
    font-weight: bold;
    width: 90%;
    padding: 5px;
}

.NotifCardClose {
    font-weight: bold;
    width: 10%;
    cursor: pointer;
    background-color: rgb(104, 104, 104);
    color: white;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;

}

/* Float Menu */

.optionsFloatMenu {
    margin-top: 4px;
    position: fixed;
    border-radius: 5px;
    background-color: white;
    padding: 10px;
    z-index: 996;
    width: 220px;
    max-width: 220px;
    min-width: 220px;
    overflow: hidden;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}



.btnMenuOption {
    /* text-wrap: pretty; */
    overflow: hidden;
    text-overflow: ellipsis;

}

.btnMenuOption:hover {
    /* background-color: rgb(230, 230, 230); */
    text-wrap: pretty;

}

/* Float Menu */


/* header */

/* Others */
.thisIsABtn {
    cursor: pointer;
    user-select: none;
}

.btnAddNewCliente {
    margin-top: 10px;
    margin-bottom: -30px;
}

.waitScreen {
    position: fixed;
    width: 100dvw;
    height: 100dvh;
    z-index: 997;
    background-color: rgba(255, 255, 255, 0.8);
}

.verPoliza {
    cursor: pointer;
}