/*FONTS*/
@font-face {
    font-family: "Dinamit";
    src: local("../fonts/Dinamit Bold.otf");
    font-weight: bold;
}
@font-face {
    font-family: "Dinamit";
    src: local("../fonts/Dinamit Regular.otf");
    font-weight:  normal;
}
@font-face {
    font-family: "Dinamit";
    src: local("../fonts/Dinamit Medium.otf");
    font-weight: 500;
}
@font-face {
    font-family: "Dinamit";
    src: local("../fonts/Dinamit Light.otf");
    font-weight: lighter;
}


.testeo{
border: 1px solid red;
}
/*GENERAL*/
:root {
    --gray: #161c28;
    --gray-transparent-bs: rgba(22, 28, 40, 0.8);
    --light-gray-transparent-bs: rgba(0, 0, 0, 0.2);
    --light-gray-transparent-custom: rgba(200, 200, 200, 0.12);
    --white-transparent: rgba(255, 255, 255, 0.2);
    --light-gray: #c8c8c8;
    --primary-bs: #ff3085;
    --warning-transparent-bs: rgba(250, 153, 23, 0.25);
    --warning-bs: #fa9917;
    --success-transparent-bs: rgba(42, 201, 64, 0.25);
    --sucess-lighter-bs: #8ef49c;
    --blue-lighter-bs:#0057ff;
    --success-bs: #2ac940;
    --secondary-transparent-bs: rgba(240, 36, 120, 0.25);
    --secondary-bs: #f02478;
    --info-bs: #fe61a2;
    --danger-lighter-bs: #f5a86e;
    --red-transparent-bs: #e9484b4f;
    --blue-transparent-bs: #0055ff7c;
    --white: #fff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body, html {
    font-size: 14px;
    font-family: 'Dinamit', sans-serif;
}
p, span {
    color: var(--light-gray);
}
.montserrat {
    font-family: 'Montserrat', sans-serif;
}

/*Circles*/
.circle {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}
.circle-sm {
    width: 5px;
    height: 5px;
}
.circle-warning {
    background-color: var(--warning-bs);
}
.circle-primary {
    background-color: var(--primary-bs);
}
.circle-secondary {
    background-color: var(--secondary-bs);
}
.circle-success {
    background-color: var(--success-bs);
}

/*Rotate*/
.rotate-90 {
    transform: rotate(90deg);
}

/*Modal*/
.modal-bs .modal-header, .modal-bs .modal-footer {
    border-color: var(--white-transparent);
}
.modal-bs .modal-content {
    background: transparent;
    border-radius: 15px;
    overflow: hidden;
}

/*Backgrounds*/
.bg-primary-bs {
    background-color: var(--primary-bs);
}
.bg-gray {
    background-color: var(--gray);
}
.bg-gray-transparent {
    background-color: var(--gray-transparent-bs);
}
.bg-light-gray-transparent {
    background-color: var(--light-gray-transparent-bs);
}
.bg-warning-transparent {
    background-color: var(--warning-transparent-bs);
}
.bg-success-transparent {
    background-color: var(--success-transparent-bs);
}
.bg-secondary-transparent {
    background-color: var(--secondary-transparent-bs);
}
.bg-light-gray-transparent-custom {
    background-color: var(--light-gray-transparent-custom);
}
.bg-danger-transparent {
    background-color: #e9484b5f;
}

/*Texts*/
.text-primary-bs, .text-primary-bs:hover {
    color: var(--primary-bs);
}
.text-warning-bs, .text-warning-bs:hover {
    color: var(--warning-bs);
}
.text-success-bs, .text-success-bs:hover {
    color: var(--success-bs);
}
.text-secondary-bs, .text-secondary-bs:hover {
    color: var(--secondary-bs);
}
.text-light-gray-bs, .text-light-gray-bs:hover {
    color: var(--light-gray)
}

/*Form*/
.form-control {
    background-color: var(--light-gray-transparent-bs);
    color: var(--light-gray);
    border-color: var(--light-gray-transparent-custom);
    padding: 10px 15px;
}
.form-control::placeholder {
    color: var(--white);
}
::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: var(--white);
    opacity: 1; /* Firefox */
}
:-ms-input-placeholder { /* Internet Explorer 10-11 */
    color: var(--white);
}
::-ms-input-placeholder { /* Microsoft Edge */
    color: var(--white);
}
.checkbox-custom input {
    display: none;
}
.checkbox-custom label {
    cursor: pointer;
    position: relative;
    color: var(--light-gray);
    padding-left: 28px;
}
.checkbox-custom label:before,
.checkbox-custom label:after {
    content: "";
    position: absolute;
    display: inline-block;
    width: 18px;
    height: 18px;
    left: 0;
    border-radius: 5px;
}
.checkbox-custom label:before {
    border: 1px solid var(--light-gray);
}
.checkbox-custom input:checked + label::before {
    background-color: var(--primary-bs);
    border-color: var(--primary-bs);
}
.checkbox-custom label:after {
    opacity: 0;
    background: url("../../public/icons/check.png");
    background-size: 10px;
    background-color: var(--primary-bs);
    background-repeat: no-repeat;
    background-position: center;
}
.checkbox-custom input:checked + label::after {
    opacity: 1;
}
.checkbox-custom.warning input:checked + label::before {
    background-color: var(--warning-bs);
    border-color: var(--warning-bs);
}
.checkbox-custom.warning label:after {
    background-color: var(--warning-bs);
}
.checkbox-custom.success input:checked + label::before {
    background-color: var(--success-bs);
    border-color: var(--success-bs);
}
.checkbox-custom.success label:after {
    background-color: var(--success-bs);
}

/*Selected*/
.selected-custom input {
    display: none;
}
.selected-custom label {
    cursor: pointer;
    background-color: var(--light-gray);
    height: 28px;
    border-radius: 15px;
    width: 48px;
    position: relative;
}
.selected-custom label:before {
    content: "";
    position: absolute;
    left: 2px;
    top: 2px;
    height: 24px;
    width: 24px;
    border-radius: 50%;
    background-color: var(--white);
    transition: all ease 300ms;
}
.selected-custom input:checked + label {
    background-color: var(--primary-bs);
}
.selected-custom input:checked + label:before {
    left: 22px;
}

/*Border*/
.rounded-16 {
    border-radius: 16px;
}
.rounded-12 {
    border-radius: 12px;
}
.rounded-8 {
    border-radius: 8px;
}

/*Table*/
.table-dark-bs {
    color: var(--light-gray);
}
.table-dark-bs thead {
    background-color: transparent;
}
.table-dark-bs th, .table-dark-bs td  {
    padding: 15px;
    color: var(--light-gray);
}
.table-striped-bs tbody, 
.table-striped-bs thead th,
.table-striped-bs tbody tr, 
.table-striped-bs tbody td {
    border: none !important;
}
.table-striped-bs td {
    vertical-align: middle;
}
.table-striped-bs tbody tr:nth-child(2n+1) {
    background-color: var(--light-gray-transparent-bs);
}
.image-client {
    width: 70px;
    height: 42px;
}
.image-client img {
    position: absolute;
    top: 3px;
}
.image-client img:nth-child(1) {
    left: 0;
    z-index: 5;
}
.image-client img:nth-child(2) {
    left: 10px;
    z-index: 4;
}
.image-client img:nth-child(3) {
    left: 20px;
    z-index: 3;
}

/*Label*/
.label {
    font-size: 0.85rem;
    background-color: var(--light-gray-transparent-bs);
    padding: 2px 10px;
    border-radius: 11px;
}
.label-success-bs {
    color: var(--sucess-lighter-bs);
}
.label-danger-bs {
    color: var(--danger-lighter-bs);
}
.label-light-gray-bs {
    color: var(--light-gray);
}
.label-red-bs {
    color: var(--light-gray);
    background-color: var(--red-transparent-bs);
}
.label-blue-bs {
    color: var(--light-gray);
    background-color: var(--blue-transparent-bs);
}

/*Fonts*/
.fs-32 {
    font-size: 2.28rem;
}
.fs-16 {
    font-size: 1.14rem;
}
.fs-12 {
    font-size: 0.85rem;
}
.fs-7 {
    font-size: 0.625rem;
}
.fw-medium {
    font-weight: 500;
}
.fw-semibold {
    font-weight: 600;
}

/*Buttons*/
.btn-primary-bs, .btn-primary-bs:hover {
    background-color: var(--primary-bs);
    color: var(--white);
    border-color: var(--primary-bs);
}
.btn-light-gray-transparent-bs, .btn-light-gray-transparent-bs:hover {
    background-color: var(--light-gray-transparent-bs);
    color: var(--white);
    border-color: var(--light-gray-transparent-bs);
}
.btn-gray-transparent-bs, .btn-gray-transparent-bs:hover {
    background-color: var(--gray-transparent-bs);
    color: var(--white);
    border-color: var(--gray-transparent-bs);
}
.btn-light-gray-transparent-custom-bs, .btn-light-gray-transparent-custom-bs:hover {
    background-color: var(--light-gray-transparent-custom);
    color: var(--white);
    border-color: var(--light-gray-transparent-custom);
}

/*Utils*/
.mh-100vh {
    min-height: 100vh;
}
.separator {
    border-bottom: 1px solid var(--white-transparent);
}
.separator-vertical {
    border-left: 1px solid var(--white-transparent);
}
.notification {
    display: block;
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 16px;
    height: 16px;
    font-size: 12px;
    color: var(--white);
    border-radius: 50%;
    text-align: center;
    background-color: var(--primary-bs);
}
.lh-2{
    line-height: 1.2;
}
.nav-tabs-bs {
    border-bottom: 0;
}
.nav-tabs-bs .nav-link {
    font-size: 1rem;
    font-weight: 500;
    background: none;
    border: none;
    padding: 0;
    margin-right: 10px;
    color: var(--light-gray)
}
.nav-tabs-bs .nav-link.active {
    font-weight: 500;
    color: var(--white);
    background: none;
}

/*Main*/
.main-bs {
    background-image: url('../../public/images/bg-main.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

/*Sidebar*/
.sidebar-main {
    width: 280px;
}
.sidebar-main.show {
    left: 0;
}
.nav-left h3 {
    color: var(--light-gray);
}
.nav-left a {
    text-decoration: none;
    color: var(--light-gray);
    padding: .8rem 1rem;
    position: relative;
    transition: all ease 300ms;
}
.nav-left a:hover {
    background-color: var(--light-gray-transparent-custom);
}
.nav-left .active a {
    color: var(--white);
    background-color: var(--light-gray-transparent-custom);
}
.sidebar-main .grafico-logo {
    width: 100%;
    max-width: 93px;
}
.sidebar-main .notification {
    top: 20px;
    right: 10px;
}
.btn-sidebar {
    position: fixed;
    top: 30px;
    display: none;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    left: 0;
    z-index: 101;
    transition: all ease 300ms;
}
.btn-sidebar.show {
    left: 280px;
}
@media(max-width: 1024px) {
    .btn-sidebar {
        display: block;
    }
    .sidebar-main {
        position: fixed;
        left: -300px;
        transition: all ease 300ms;
        top: 0;
        height: 100vh;
        z-index: 100;
        overflow: auto;
    }
}

/*Content main*/
.content-main {
    width: 100%;
    max-width: calc(100% - 280px);
}
@media(max-width: 1024px) {
    .content-main {
        max-width: 100%;
    }
}

/*Header*/

.header-main .notification {
    top: 0;
    right: 0;
}
.search-header img {
    width: 22px;
    top: 5px;
    left: 12px;
}
.search-header input {
    background-color: var(--light-gray-transparent-custom);
    border: 0;
    padding: 0.4rem 1rem 0.4rem 3rem;
    border-radius: 1rem;
    color: var(--white)
}
.dropdown-header button {
    border-radius: 2rem;
}
.dropdown-header .dropdown-toggle::after {
    transform: rotate(180deg);
    border: 0;
    background-image: url('../../public/icons/icons-outline-arrow-up-2.svg');
    background-size: 25px;
    width: 25px;
    height: 25px;
    transition: all ease 300ms;
}
.dropdown-header .dropdown-toggle.show::after {
    transform: rotate(0deg);
}
.dropdown-header ul.dropdown-menu {
    width: 100%;
    background-color: var(--gray-transparent-bs);
}
.dropdown-header ul.dropdown-menu a {
    color: var(--light-gray);
}
.dropdown-header ul.dropdown-menu a:hover, 
.dropdown-header ul.dropdown-menu a:focus,
.dropdown-header ul.dropdown-menu a:active {
    background-color: var(--light-gray-transparent-custom);
    color: var(--light-gray);
}
.d-l-button + .language-dropdown {
    display: none;
}
.d-l-button:hover + .language-dropdown,
.language-dropdown:hover {
    display: block;
}

/*Main home*/
.card-timeline {
    height: 148px;
}

/*PROFILE*/
.photo-profile {
    border-radius: 50%;
    cursor: pointer;
    width: 128px;
    height: 128px;
}
.photo-profile::before {
    content: "";
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    background: var(--light-gray-transparent-bs);
    border-radius: 50%;
}
.photo-profile .position-absolute {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/*TIMELINE*/
.timeline-responsive {
    width: 100%;
    overflow: auto;
}
.timeline-responsive > div {
    min-width: 900px;
}
.timeline-data {
    min-height: 55px;
}
.timeline-data > div {
    border-right: 1px solid var(--white-transparent);
}
.timeline-data > div:last-child {
    border-right: none;
}
.item-timeline {
    border-bottom: 1px solid var(--white-transparent);
}

/*CALENDAR*/
.header-calendar > div:last-child {
    border-right: 0;
}
.header-calendar > div {
    padding: 20px;
    border-right: 1px solid var(--white-transparent);
    border-bottom: 1px solid var(--white-transparent);
}
span.number-special {
    font-size: 2rem;
    position: relative;
    top: 5px;
    color: #fff;
}
.number-date {
    display: inline-block;
    margin-top: 10px;
    padding: 5px;
    height: 50px;
    width: 50px;
    border-radius: 50%;
}
.number-date.active {
    background-color: var(--primary-bs);
}
.row-calendar > div:last-child {
    border-right: 0;
}
.row-calendar > div {
    height: 120px;
    border-right: 1px solid var(--white-transparent);
    border-bottom: 1px solid var(--white-transparent);
}
.hour-line > p:first-child {
    margin-top: 91px;
}
.hour-line > p {
    margin-top: 99px;
}
.event-card {
    cursor: pointer;
}
.active-date {
    padding: 2px;
    height: 28px;
    width: 28px;
    border-radius: 50%;
    background-color: var(--primary-bs);
}

/* COURS */
.Oval {
  width: 36px;
  height: 36px;
  margin: 0 8px;
  padding: 9px 15px;
  background-color: #ff3085;
  border-radius:50%;
}
.scroll-barra { 
  overflow-x: scroll;
  scrollbar-color: gray transparent;
  scrollbar-width: 8px;
  box-shadow: none;
}

.card-text-groupe {
    color:#80ADFF !important;
}

.rectangulo-btn-eleves{
    margin: 3px 8px 8px 0px;
    padding: 3px 7.6px 5px 9.4px;
    border-radius: 8px;
}

h6, small{
    color: var(--light-gray);
}

/*Form*/
.form-label, .form-select, option .form-options  {
    background-color: var(--light-gray-transparent-bs);
    color: var(--light-gray);
   
    padding: 10px 15px;
}

ul li {
    
}
