/* input(222,49): run-time error CSS1046: Expect comma, found '0'
input(222,53): run-time error CSS1046: Expect comma, found '/'
input(223,41): run-time error CSS1046: Expect comma, found '0'
input(223,45): run-time error CSS1046: Expect comma, found '/' */
/*#region Font Size Base*/
html, body {
    font-size: 15px !important;
}

@media (max-width: 991px) {
    html, body {
        font-size: 14px !important;
    }
}

@media (max-width: 400px) {
    html, body {
        font-size: 13px !important;
    }
}
/*#endregion Font Size Base*/

/*#region Font Family*/
@font-face {
    font-family: Avenir;
    src: url("fonts/AvenirLTStd-Book.otf?v=oKhVUhFa87FKNEYBP6H151h5Th0") format("opentype");
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: Avenir;
    src: url("fonts/AvenirLTStd-Black.otf?v=oKhVUhFa87FKNEYBP6H151h5Th0") format("opentype");
    font-weight: bold;
    font-style: normal;
}

*:not(i):not(.e-icons) {
    font-family: Avenir, "Century Gothic", Verdana, sans-serif !important;
}
/*#endregion Font Family*/

/*#region Font Size Classes*/
.text-small {
    font-size: 0.8rem !important;
}

.text-large {
    font-size: 1.5rem !important;
}
/*#endregion Font Size Classes*/

/*#region Headers*/
h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6 {
    color: var(--bs-primary);
}
/*#endregion*/

/*#region Background*/
.page-content {
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}
/*#endregion*/

/*#region Spinner*/
#LoadingSpinnerIcon {
    display: none;
}
/*#endregion Spinner*/

/*#region Custom Informative Card*/
.custom-informative-card {
    border: 0 !important;
    border-radius: 1rem !important;
    box-shadow: 0 0.5rem 1rem 0 rgba(0, 0, 0, 0.1) !important;
}

    .custom-informative-card .card-title {
        margin-bottom: 2rem;
        font-weight: 300;
        font-size: 1.5rem;
    }

@media only screen and (min-width: 576px) {
    .custom-informative-card .card-body {
        padding: 2rem;
    }
}
/*#endregion Custom Informative Card*/

/*#region Toggle Icon*/
.toggle-icon {
    color: black;
    right: 0.5rem;
    top: 0;
    position: absolute;
    z-index: 100;
    min-height: 100%;
}

    .toggle-icon:hover {
        cursor: pointer;
    }

.pointer-hover:hover {
    cursor: pointer;
}

.text-danger-hover:hover {
    color: var(--bs-danger) !important;
}
/*#endregion Toggle Icon*/

/*#region Generic Overlay*/
.overlay-loading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2051;
    background-color: rgba(0, 0, 0, 0.30);
    color: #533E85;
    font-size: 3.25rem;
    display: none;
}

.show-overlay-loading {
    display: flex !important;
    flex-flow: row wrap;
    justify-content: center;
    align-items: center;
}

.e-spinner-pane .e-spinner-inner .e-spin-bootstrap4 {
    stroke: #533E85;
}
/*#endregion*/

/*#region System Logo */
#SystemTitleTopMenu {
    width: 133px;
    height: 24px;
    background: url("../Images/Logo/Logo_With_Text_Talent_Owl_White_1057x183.png?v=i4U74pTKLJydHg3DTqSwSqeLGgI") no-repeat;
    background-size: 133px 24px;
    display: inline-block;
}
/*#endregion */

/*#region Override the fonts*/
/*Full HD Panel*/
@media (max-width:1980px) and (min-width:1920px) {
    .Fonts {
        font-size: 16px !important;
    }
}
/*Standar Computers*/
@media (max-width:1366px) {
    .Fonts {
        font-size: 14px !important;
    }
}
/*Ipad Pro*/
@media (max-width:1366px) and (min-width:1024px) {
    body {
        font-size: 14px !important;
    }

    .DropDowns {
        font-size: 11px !important;
    }

    .text-danger {
        font-size: 13px;
    }

    input.e-input, textarea.e-input, .e-input-group, .e-input-group.e-control-wrapper {
        font-size: 13px !important;
    }

    .e-dropdownbase .e-list-item {
        font-size: 13px !important;
    }
}

@media (max-width:1024px) {
    h3 {
        font-size: 20px !important;
    }

    .DropDowns {
        font-size: 11px !important;
    }

    .text-danger {
        font-size: 11px !important;
    }

    .ButtonsContainerOptions {
        font-size: 11px;
    }

    input.e-input, textarea.e-input, .e-input-group, .e-input-group.e-control-wrapper {
        font-size: 11px !important;
    }

    .e-dropdownbase .e-list-item {
        font-size: 11px !important;
    }
}
/*#endregion Override the fonts*/

/*#region Box Shadow */
.box-shadow {
    box-shadow: 0 .25rem .75rem rgba(0, 0, 0, .05);
}

.box-shadow-on-hover {
    transition: box-shadow 280ms cubic-bezier(0.4, 0, 0.2, 1);
}

    .box-shadow-on-hover:hover {
        -webkit-box-shadow: 0 0.5rem 1rem rgb(0 0 0 / 15%) !important;
        box-shadow: 0 0.5rem 1rem rgb(0 0 0 / 15%) !important;
    }
/*#endregion */
