/* here you can put your own css to customize and override the theme */
fieldset.scheduler-border {
    border: 1px groove #ddd !important;
    padding: 0 1.4em 1.4em 1.4em !important;
    margin: 0 0 1.5em 0 !important;
    -webkit-box-shadow: 0px 0px 0px 0px #000;
    box-shadow: 0px 0px 0px 0px #000;
}

legend.scheduler-border {
    font-size: 1.2em !important;
    font-weight: bold !important;
    text-align: left !important;
    width: inherit;
    /* Or auto */
    padding: 0 10px;
    /* To give a bit of padding on the left and right */
    border-bottom: none;
    margin-left: auto;
    margin-right: auto;
}

.nome-aluno {
    font-size: 12px;
    height: 30px;
    line-height: 30px;
    padding-top: 4px;
    padding-bottom: 4px;
}

.font-td-aluno {
    font-size: 12px;
}

:root {
    --fixed-menu-height: 60px;
    /* altura do menu fixo */
}

/* classe aplicada quando fica fixo */
.sticky-helper-fixed {
    position: fixed !important;
    z-index: 20000;
    margin: 0;
    box-sizing: border-box;
    right: auto;
}

body.modal-open .sticky-helper-fixed {
    position: static !important;
    z-index: auto !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
}

.btn-bloqueado .btn {
    opacity: .45;
    filter: grayscale(1);
}

.btn-bloqueado .btn:hover {
    opacity: .45;
}

.scroller {
    position: relative;
}

/* ===== HEADER COM 1 LINHA ===== */
.tbSticky1 thead th {
    position: sticky;
    top: 0;
    z-index: 10;
    background: #fff;
}

/* ===== HEADER COM 2 LINHAS ===== */
.tbSticky2 thead tr:first-child th {
    position: sticky;
    top: 0;
    z-index: 10;
    background: #fff;
}

/* segunda linha cola logo abaixo da primeira */
.tbSticky2 thead tr:nth-child(2) th {
    position: sticky;
    top: 34px;
    /* altura da 1ª linha */
    z-index: 11;
    background: #fff;
}



/*.FixedHeader_Cloned thead th {
    background: #fff;  ou a cor que você quer 
    color: #000;       texto visível 
    z-index: 9999 !important;  forçar sobreposição 
    opacity: 1 !important;     tirar efeito fosco 
}*/