:root {
    --primary: #00be71;
    --primary-100: #E9F7F7;
    --dark: #00532f;
    --black: #111111;
    --gray: #f8f3f2;
    --mentor: #0c6291;
    --partner: #f6ae2d;
    --founder: #57a509;
    --alumni: #ca2e55;
    --university: #9a6bff;
    --gray-blue: #92a3a4;
    --dark-gray: #a4aaaa;
    --bordeaux: #561c1b;
    --light-blue: #e9f7f7;
    --mentor-light: #f3f7fa;
    --image-shadow: drop-shadow(0px 16px 24px rgba(9, 51, 52, 0.25));
    --form-check-input-checked-bg-color: #252b36;
}

@font-face {
    font-family: 'summernote';
    font-style: normal;
    font-weight: normal;
    src: url("/assets/backend/css/icons/summernote/summernote.eot");
    src: url("/assets/backend/css/icons/summernote/summernote.eot") format("embedded-opentype"), url("/assets/backend/css/icons/summernote/summernote.woff") format("woff"), url("/assets/backend/css/icons/summernote/summernote.ttf") format("truetype");
}


html {
    overflow: inherit;
}

body {
    overflow: auto;
    font-family: "Open Sans", sans-serif;
    font-weight: 500;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    color: var(--black);
}

body.security-body {
    background: var(--primary-100);
}

.text-underline {
    text-decoration: underline;
}

a {
    color: var(--primary);
    overflow-wrap: anywhere;
}

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

.btn-primary {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
    font-weight: 600;
}

.btn-primary:hover, .btn-primary:focus, .btn-primary:active, .btn-primary:not(:disabled):not(.disabled):active {
    color: #fff;
    background: var(--dark);
    border-color: var(--dark);
}

.bg-primary-100 {
    background: var(--primary-100) !important;
}

.bg-dark {
    color: white;
}

.bg-secondary {
    background-color: var(--dark) !important;
    color: white;
}

.navbar-dark {
    background-color: var(--dark) !important;
}

.badge-pending {
    color: black;
    background-color: var(--yellow);
}

.badge-accepted, .badge-active {
    color: white;
    background-color: var(--green);
}

.badge-unaccepted, .badge-disabled {
    color: white;
    background-color: var(--alumni);
}

.tag-mentor {
    color: #0C6291;
    background-color: #CEE0E9 !important;
    font-weight: 600 !important;
}

.tag-mentee {
    color: #3FB9BE;
    background-color: #D5F2F2 !important;
    font-weight: 600 !important;
}

.tag-alumno {
    color: #CA2E55;
    background: #F4D5DD !important;
    font-weight: 600 !important;
}

#delete-button {
    color: var(--alumni);
}

.expiration {
    border: 1px solid #ddd;
}
.expiration input {
    border: 0;
    height: auto !important;
    text-align: center;
    outline: 0; /* remove if you want input highlight */
}

.card-body .datatable-footer {
    padding-top: 2rem;
}

.outline-warning {
    border: 2px solid var(--primary);
}


/*** NAVBAR ***/
.dropdown-user .navbar-nav-link {
    padding-top: 0;
    padding-bottom: 0;
}

.navbar-brand  {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    margin-top: auto;
    margin-bottom: auto;
}

.navbar-nav-link {
    padding: 0.5rem 1rem;
    font-weight: 600;
}

.nav-item.active {
    background-color: rgba(0,0,0,.04);
}

.navbar-light .active>.navbar-nav-link {
    background-color: transparent;
}

.nav-item i {
    margin-right: 0.25rem;
}


.dropdown-item.active {
    background-color: var(--dark);
}

.breadcrumb-item {
    padding: 0.25rem 0;
}

/* -------------------------------- *
ALERT
* ---------------------------------- */
.alert {
    position: absolute;
    z-index: 9;
    width: 100%;
}


/* ------------------------------------------------------------------------------------------------------------------- *
 * SPINNER
 * ------------------------------------------------------------------------------------------------------------------- */
.lds-ellipsis { display: inline-block; position: relative; width: 64px; height: 64px; }
.lds-ellipsis div { position: absolute; top: 27px; width: 11px; height: 11px; border-radius: 50%; background: #ffffff; animation-timing-function: cubic-bezier(0, 1, 1, 0); }
.lds-ellipsis div:nth-child(1) { left: 6px; animation: lds-ellipsis1 0.6s infinite; }
.lds-ellipsis div:nth-child(2) { left: 6px; animation: lds-ellipsis2 0.6s infinite; }
.lds-ellipsis div:nth-child(3) { left: 26px; animation: lds-ellipsis2 0.6s infinite; }
.lds-ellipsis div:nth-child(4) { left: 45px; animation: lds-ellipsis3 0.6s infinite; }
@keyframes lds-ellipsis1 {
    0% { transform: scale(0); }
    100% { transform: scale(1); }
}
@keyframes lds-ellipsis3 {
    0% { transform: scale(1); }
    100% { transform: scale(0); }
}
@keyframes lds-ellipsis2 {
    0% { transform: translate(0, 0); }
    100% { transform: translate(19px, 0); }
}
/* ------------------------------------------------------------------------------------------------------------------- */


/* ------------------------------------------------------------------------------------------------------------------- *
 * FORM GROUP
 * ------------------------------------------------------------------------------------------------------------------- */
fieldset {
    display: block !important;
    margin: 0 0 1.5rem 0 !important;
}

.form-group {
    margin-bottom: 20px;
    position: relative;
}

.form-group.form-group-condensed, .form-group.form-group-radio, .custom-file {
    margin-top: 8px;
}

.custom-file {
    margin-bottom: 1rem;
}

.form-group.form-group-condensed label, .radio-label {
    margin: 0;
    padding: 0 5px 0 1px;
    font-size: 12px;
    position: absolute;
    top: -10px;
    left: 5px;
    background: #ffffff;
    z-index: 4;
}

.multiselect-item.dropdown-item.form-check {
    padding-bottom: 3px;
    padding-top: 3px;
}

.btn-light:hover {
    background-color: white;
}

.multiselect.btn-light:not(:disabled):not(.disabled).active,
.multiselect.btn-light:not(:disabled):not(.disabled):active,
.show>.multiselect.btn-light,
.multiselect.btn-light.focus,
.multiselect.btn-light:focus {
    background-color: white !important;
}

.form-check-label {
    position: relative !important;
    cursor: pointer;
    padding: unset !important;
    font-size: inherit !important;
    top: unset !important;
    left: unset !important;
    background: transparent !important;
}

.form-check-label input[type="checkbox"] {
    height: auto !important;
    margin-right: 6px;
}

#input-file-custom {
    background: transparent!important;
    top: -15px!important;
}

.form-group.form-group-condensed .help-block {
    margin-top: 3px;
    margin-bottom: 0;
}

.form-group.form-group-condensed input {
    height: 37px;
    padding: 8px 10px 5px;
}

.form-group.form-group-condensed .bootstrap-tagsinput > input {
    height: 28px;
}


.form-group.form-group-condensed .select2-selection--multiple .select2-selection__rendered {
    padding: 4px !important;
}

li.select2-results__option:has(> div.disabled) {
    pointer-events: none;
}

div.disabled {
    opacity: 0.5;
}

.custom-input {
    background-color: #294653;
    color: #fff;
    cursor: default;
    float: left;
    margin-right: .125rem;
    margin-top: .125rem;
    padding: .3125rem .875rem;
    white-space: normal;
    word-break: break-all;
    border-radius: .25rem;
    transition: color ease-in-out .15s,background-color ease-in-out .15s;
}
.custom-list {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    list-style: none;
    margin: 0;
    padding: 0 3px 0 3px;
    width: 100%;
}

.custom-label {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1;
    height: calc(1.5715em + .875rem + 2px);
    overflow: hidden;
    font-weight: 400;
    line-height: 1.5715;
    color: #333;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: .25rem;
    padding: 0 !important;
    margin: 0 !important;
}


/* ------------------------------------------------------------------------------------------------------------------- *
 * HELP BLOCK
 * ------------------------------------------------------------------------------------------------------------------- */
.form-group .help {
    position: absolute;
    top: 10px;
    right: 10px;
    color: #696969;
    font-size: 11px;
    opacity: 0;
}
/* ------------------------------------------------------------------------------------------------------------------- */

.btn-labeled-left>b {
    height: 100%;
}

.datatable-header, .dataTables_filter {
    text-align: left;
}

.dataTables_filter {
    margin-bottom: 0 !important;
}

.dataTables_filter input {
    width: 11rem;
}

.dataTables_filter input[type="search"] {
    width: 300px !important;
}

@media (max-width: 768px) {
    .dataTables_filter input[type="search"] {
        margin-bottom: 1.25rem;
    }

    .dataTables_filter>label:after {
        margin-top: -1rem;
    }
}

.sidebar-component {
    display: block !important;
}

@media (min-width: 1200px) {

    .sidebar-component {
        position: sticky;
    }
}
@media (min-width: 576px) and (max-width: 1199px) {
    .sidebar-content .card {
        display: flex;
        flex-direction: row;
    }
}



.legend {
    font-size: 12px;
    font-weight: 300;
    background: var(--light);
    border-radius: 5px;
    padding: 5px;
    width: fit-content;
}

.legend i {
    font-size: 12px;
}


/* ------------------------------------------------------------------------------------------------------------------- *
 * DATATABLES
 * ------------------------------------------------------------------------------------------------------------------- */

.dataTables_filter > label.no-icon:after {
    display: none;
    content: unset!important;
}

.dataTables_info {
    padding: 0 20px;
}

.dataTables_paginate {
    padding: 0 20px;
}

.dataTables_length {
    padding: 0 20px 0 0;
}

.datatable-header {
    padding-left: 1.25rem !important;
}

.dataTables_paginate .paginate_button.current, .dataTables_paginate .paginate_button.current:focus, .dataTables_paginate .paginate_button.current:hover {
    color: #fff;
    background-color: var(--dark);
}

.footable.breakpoint>tbody>tr .footable-first-visible .footable-toggle {
    display: none;
}
/* ------------------------------------------------------------------------------------------------------------------- */




/* ------------------------------------------------------------------------------------------------------------------- *
 * BUTTONS
 * ------------------------------------------------------------------------------------------------------------------- */
.default-cursor {
    cursor: default!important
}



/**** CARD ****/
.card-header {
    border-bottom: none;
}


.card-header .card-title {
    padding: 1rem 0;
    color: var(--black);
    font-weight: 600;
}


/*** TABLE ****/

table td, .table th {
    padding: 0.5rem 1rem !important;
}



/**** TABS ****/
.tab-pane {
    pointer-events: auto !important;
}

@media (max-width: 768px) {

    .sidebar-component {
        display: block;
    }
}



/* ------------------------------------------------------------------------------------------------------------------- *
 * PROFILE
 * ------------------------------------------------------------------------------------------------------------------- */
.profile-img {
    border-radius: 5px;
    width: 150px;
    height: 150px;
    object-fit: contain;
}


/* ------------------------------------------------------------------------------------------------------------------- *
 * SUMMERNOTE
 * ------------------------------------------------------------------------------------------------------------------- */

.note-editable {
    font-family: "Open Sans", sans-serif;
    font-weight: 500;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    color: var(--black);
}

.note-editable .h1,
.note-editable .h2,
.note-editable .h3,
.note-editable .h4,
.note-editable .h5,
.note-editable .h6,
.note-editable h1,
.note-editable h2,
.note-editable h3,
.note-editable h4,
.note-editable h5,
.note-editable h6 {
    font-weight: 700;
    line-height: 1.2 !important;
}

.note-editable h1 {
    font-size: 40px !important;
}

.note-editable h2 {
    font-size: 32px !important;
}

.note-editable h3 {
    font-size: 24px !important;
}

.note-editable h4 {
    font-size: 21px !important;
}

.note-editable h5 {
    font-size: 18px !important;
}

.note-color .dropdown-menu.show {
    display: flex;
}

.note-color .dropdown-menu .note-palette {
    display: inline-block;
    width: 10rem;
    margin: 0.4375rem 0.875rem;
}

.note-color .dropdown-menu .note-palette .note-palette-title {
    font-weight: 500;
}

.note-color .dropdown-menu .note-palette .note-color-reset, .note-color .dropdown-menu .note-palette .note-color-select {
    margin-top: 0.625rem;
    width: 100%;
    padding: 0.3125rem 0.75rem;
    margin-bottom: 0.875rem;
}

.note-color .note-color-row {
    font-size: 0;
}

.note-color .note-palette div .note-color-btn {
    padding: 0;
    margin: 0;
    border: 1px solid #fff;
    width: 1.25rem;
    height: 1.25rem;
}

.note-color .dropdown-menu .note-palette .note-color-reset, .note-color .dropdown-menu .note-palette .note-color-select {
    margin-top: 0.625rem;
    width: 100%;
    padding: 0.3125rem 0.75rem;
    margin-bottom: 0.875rem;
}


.note-color .dropdown-menu .note-color-select-btn {
    display: none;
}

.note-color .dropdown-menu .note-holder-custom .note-color-btn {
    border: 1px solid #ddd;
}

.note-color .note-palette div .note-color-btn {
    padding: 0;
    margin: 0;
    border: 1px solid #fff;
    width: 1.25rem;
    height: 1.25rem;
}

.note-para .dropdown-menu {
    padding: 0.5rem;
    white-space: nowrap;
}

.note-para .dropdown-menu>div:first-child {
    margin-right: 0.625rem;
}

/** EVENT **/
#subtitle + .note-editor .note-editable {
    height: 3rem !important;
}



