/* CSS Document */
/***
PANEL LATERAL
***/
/*
.panel-left, .panel-right {
	transition: transform 500ms ease;
	flex: 0 0 100%;
	width: 100%;
	position: absolute;
	top: 0;
	bottom: 0;
}

.panel-left {
	left: 0;
	transform: translateX(-100%);
}

.panel-right {
	right: 0;
	transform: translateX(0%);
}
 */ 
/**
 * Menú configuración de la app, perfil...
 **/
header .dropdown{
	right: 0px;
	position: fixed;
	left: calc(100% - 250px);
	max-height: calc(100% - 40px);
	top: 42.5px;
 }
 

 header .user-tools > button:hover{
	color:var(--dark);
 }
 header .dropdown > li > button:hover {
	background-color: var(--primary);
	color:var(--light);

}
main .main-menu .list-menu{}
main .main-menu .list-menu > li{
	min-width: 50%;
	max-width: 50%;
	padding:5px;
	text-align: center;
}
main .main-menu .list-menu > li > a{
	border-radius: 5px;    
	padding: 10px;
	font-size: 18px;
	font-weight: 600;
	box-shadow: 0 1.6px 3.6px 0 rgb(0 0 0 / 13%), 0 0.3px 0.9px 0 rgb(0 0 0 / 11%);
  	box-sizing: border-box;
	line-height: 16px;
}
main .main-menu .list-menu > li > a .icon > span{
	width: 35px;
	height: 35px;
}
main .main-menu .list-menu > li:nth-child(odd) > a{
	border-right: 4px solid var(--light);
}
main .main-menu .list-menu > li:nth-child(odd) > a:hover{
	border-color: var(--tertiary);
}
main .main-menu .list-menu > li:nth-child(even) > a{
	border-left: 4px solid var(--cuaternary);
}
main .main-menu .list-menu > li:nth-child(even) > a:hover{
	border-color: var(--red);
}
main .schedules > .content-schedule {
	min-width: 300px;
}
main h3 {
	margin: 10px;
}
main .schedules > .content-schedule .widget-schedule .table {
	overflow: hidden;
	border-radius: 10px;
	box-shadow: 0 1.6px 3.6px 0 rgb(0 0 0 / 13%), 0 0.3px 0.9px 0 rgb(0 0 0 / 11%);
}
.day-list > li{
	padding: 8px 5px;
}
.recoveries-list > li{
	min-width: 300px;
	width: 33.33%;
}
.recoveries-list > li:nth-child(even),
.day-teams-list > li:nth-child(even),
.day-list > li:nth-child(even){
	background-color: var(--light);
}
.recoveries-list > li:nth-child(odd),
.day-teams-list > li:nth-child(odd),
.day-list > li:nth-child(odd){
	background-color: var(--white);
}
.day-list .number-day{
	font-size: 24px;
	font-weight: 500;
	width: 35px;
	height: 35px;
	min-width: 35px;
	min-height: 35px;
	border-radius: 100%;
	text-align: center;
	display: flex;
	align-items: center;
	justify-content: center;
}
.day-list .text-day{
	font-size: 11px;
  	text-transform: uppercase;
}
.day-list .day-teams-list > li {
	border-radius: 100px;
	margin: 2.5px 2.5px 2.5px 5px;
	padding: 0 10px;
	overflow: hidden;
}
/***
MENÚ
***/
button.opennav {
	cursor: pointer;
    position: relative;
    width: 30px;
    height: 25px;
	margin: 5px 10px;
}
button.opennav > span,
button.opennav > span:after,
button.opennav > span:before {
  transition: all 500ms ease-in-out;
  border-radius: 1px;
  top: 2.5px;
  height:2px;
  width: 30px;
  position: absolute;
  background-color: var(--light);
  display: block;
  content: "";
}
button.opennav > span:before {
  top: 8px;
}
button.opennav > span:after {
 top: 16px;
}
button.opennav:hover > span,
button.opennav:hover > span:after,
button.opennav:hover > span:before,
button.opennav.active > span,
button.opennav.active > span:after,
button.opennav.active > span:before{
	/*background-color:var(--dark);*/
}
button.opennav.active > span {
  background-color: transparent !important;
}

button.opennav.active > span:before,
button.opennav.active > span:after {
  top:8px;
  /*background: #d80027;*/
}
button.opennav.active > span:after {
  transform: rotate(-45deg);
}

button.opennav.active > span:before {
  transform: rotate(45deg);
}
#menu::-webkit-scrollbar {
	display:none;
	width: 0;
}
#menu p{
	margin:0;
}
#menu{
	scrollbar-width:none;
    position: relative;
    overflow-y: auto;
	box-sizing:border-box;
	height: 100%;
	display: flex;
	flex-direction: column;
}#menu p{
	text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}
ul.menu-global{
	scrollbar-width:none;
}
ul.menu-global,
ul.menu-global ul{
	list-style: none;	
	padding:0;
	margin:0;
}ul.menu-global > li{
	text-align: left;
    position: relative;
}
ul.menu-global > li > a{
	position: sticky;
	top: 0;
    z-index: 2;
	background-color: var(--primary);
	color: var(--light);
}
ul.menu-global > li:hover > a,
ul.menu-global > li.active > a{
	background-color: var(--dark);
}
ul.menu-global > li ul > li{
	background-color: var(--light);
}
ul.menu-global > li ul > li > a{
	box-shadow: var(--box-shadow-dark);
}
ul.menu-global > li ul > li.active > a,
ul.menu-global > li ul > li:hover > a {
	color: var(--dark);
}
ul.menu-global > li > a,
ul.menu-global > li ul > li a{
    font-weight: bold;
	padding: 2.5px;
    display: flex;
    justify-content: left;
    align-items: center;
    text-decoration: none;	
}
ul.menu-global > li ul > li > a{
    font-weight: normal;
	font-size:16px;
}
ul.menu-global > li > ul > li > ul{
	display:none;
	position: relative;
	padding-left: 15px;
}
.menu-global > li > a > .icon{
	margin: 0 5px;
}
.menu-global > li > ul .icon > span{
	margin: 7.5px 10.5px;
}
.btn-exit{
	background-color: var(--cuaternary);
  	color: var(--primary);
	display: flex;
	justify-content: left;
	align-items: center;
	text-decoration: none;
	font-weight: normal;
	font-size: 16px;
	z-index: 2;
	width: 100%;
}.btn-exit > .icon{
	margin: 2.5px 10px !important;
}
.btn-exit:hover{
	background-color: var(--red);
	color:var(--light);
}
/***
WINDOWS MODAL
***/
div#windows{
    z-index:998;
	position:unset;
}
div#windows > .container{
	z-index: 3;
	position:absolute;
	min-height:50%;
	/*border: 1px solid rgba(0,0,0,0.3);*/
	overflow: unset !important;
}
div#windows > .container,
div#windows > .container > .body{
	display:-ms-flex;
	display:flex;
	-ms-flex-direction:column;
	flex-direction:column;
	border-radius: 10px;
}
div#windows > .container > .body{
	flex:1;
    font-size: 18px;
    overflow-y: auto;
    overflow-x: hidden;
	border-radius: 0px 0px 10px 10px;
}
div#windows > .container > .header{
	display:-ms-flex;
    display:flex;
	align-items: center;
    max-height: 40px;
    overflow: hidden;
	box-shadow: 0 4px 2px -2px rgba(0,0,0,0.3);
	z-index:2;
	border-radius: 10px 10px 0px 0px;
}
div#windows > .container > .header > .info{
	font-weight: 600;
    text-transform: uppercase;
    font-size: 18px;
    color:currentColor;
	flex:1;
	display:-ms-flex;
    display: flex;
    justify-content:start;
    align-items: center;
    text-align: left;
	white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
	cursor: move;
}
div#windows > .container > .header > .info > p{
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
	margin:0px 0px 0px 12.5px;
}
div#windows > .container > .header >.icon{  
	border-right: 2px solid rgba(255,255,255,0.5);
	cursor: pointer;
}
div#windows > .container > .header > .windows-actions{
	display:flex;
}
div#windows > .container > .header > .windows-actions > a{
	cursor:pointer;
	padding: 10px 16px;
	display: flex;
	justify-content: center;
	align-items: center;
}
div#windows > .container > .header > .windows-actions > a.close-window{
}div#windows > .container > .header > .windows-actions > a.close-window:hover{
	background-color: var(--red);
}
div#windows > .container > .header > .windows-actions > a.minimize-window:hover,
div#windows > .container > .header > .windows-actions > a.expand-window:hover{
	background-color: var(--dark);
}

div#windows > .container > .header{
	background-color: var(--primary);
	color:var(--light);
}
div#windows > .container > .body{
	background-color: var(--smoke);
}
