/* by Naitus */
.only-desktop {
	display: block;
}

.h-fix-select {
  height:auto;
  min-height: 24px;
}

.focus-td input:focus{
	background: gray;
	padding: 7px;
	color: #FFF;
}

.cke_tpl_preview_img img{
	border-radius: 0 !important;
}
.focus-td input:active{
	background: gray;
}

/* cradas por siae */
.nota_azul   {color:black;  }
.nota_roja   {color:#FF0000;}
.alumno_sele {color:#FF0000;}
.alto_fila   {height: 6px; font-size: 10px;}
		
.fija_thead{
	position: sticky;
	top: 0;
	z-index: 10;
	background-color: #ffffff;
}

.fija-table-responsive{
	height:600px;
	overflow:scroll;
}

/* cradas por siae */

body {
	font-family: var(--main-font);
}

button:focus:not(:focus-visible) {
	box-shadow: none;
}

.central-content {
	position: relative;
	height: auto;
	padding: 0 0 20px 0;
}

.--home-bg {
	background-image: url("../img/bg-home.jpg");
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
	position: relative;
	width: 100vw;
	height: 100vh;
	overflow-x: hidden;
}

.--home-bg::before {
	content: "";
	width: 100%;
	height: 100vh;
	position: fixed;
	top: 0;
	left: 0;
	background-color: rgba(0, 44, 143, 0.85);
	z-index: -1;
}

/* header */
.no-logged .logo {
	width: 145px;
	height: 60px;
}

.no-logged nav {
	height: 60px;
	display: flex;
	margin: 0 auto;
	align-items: center;
	width: auto;
	position: relative;
}

.no-logged ul {
	display: flex;
	padding: 0;
	list-style: none;
	margin: 0 auto;
}

.no-logged ul li {
	margin: 0 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease;
}

.no-logged ul li:hover {
	color: #fff;
	background-color: rgba(0, 93, 250, 0.7);
	border-radius: 8px;
	transition: all 0.3s ease;
}

.no-logged ul li.current {
	background-color: rgba(0, 93, 250, 0.7);
	border-radius: 8px;
}

.no-logged ul li a {
	text-decoration: none;
	font-family: var(--main-font);
	font-size: 12px;
	color: #fff;
	text-transform: uppercase;
	font-weight: 700;
	letter-spacing: 0.04em;
	position: relative;
	top: 1px;
	padding: 10px 20px;
}

.no-logged ul li a:hover {
	color: #fff;
}

.header-button-menu {
	background-color: transparent;
	border: 0px;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	display: none;
}

/* home no logged */

.home-card {
	border: 2px solid #ffffff;
	border-radius: 8px;
	display: flex;
	flex-direction: column;
	text-align: center;
	min-height: 265px;
	padding: 20px;
	transition: all 0.3s ease;
}

.home-card:hover {
	background-color: var(--modern-blue);
	transition: all 0.3s ease;
	box-shadow: inset 0px 4px 30px rgba(0, 0, 0, 0.5);
}

.home-card a {
	text-decoration: none;
}

.home-card img {
	height: 93px;
	width: auto;
}

.footer--no-logged {
	padding-bottom: 10px;
	margin-top: 40px;
}

.footer {
	width: 100%;
	position: fixed;
	bottom: 0;
}

/* logged */
.header-logged__head {
	padding: 20px;
	display: flex;
	align-items: center;
	z-index: 20;
}

.header-logged__head .logo {
	width: 37px;
	height: 37px;
}

.header-logged__head--mobile h4 {
	display: none;
}

.logo-school {
	display: flex;
	margin-left: 16px;
	padding: 0 16px;
	border-left: 1px solid var(--separator-grey);
}

.logo-school img {
	margin-right: 16px;
}

.account-menu {
	display: flex;
	align-items: center;
	margin: auto 24px auto auto;
	position: relative;
}

.account-menu__avatar {
	border-radius: 100%;
	margin-right: 16px;
	width: 48px;
	height: 48px;
	min-width: 48px;
	min-height: 48px;
}

.account-menu i {
	margin-left: 8px;
	transform: rotate(90deg);
}

.account-menu button {
	font-family: var(--main-font);
	font-weight: 700;
	font-size: 14px;
	letter-spacing: 0.04em;
	height: 48px;
}

.account-menu button i {
	transition: all 0.2s ease;
}

.account-menu ul {
	display: none;
	position: absolute;
	top: 47px;
	right: 0;
	background-color: #fff;
	width: calc(100% - 64px);
	list-style: none;
	padding: 0;
	margin: 0;
	z-index: 2;
	box-shadow: 0px 30px 31px -17px rgba(0, 0, 0, 0.15);
}

.account-menu ul li {
	border-bottom: 1px solid var(--separator-grey);
}

.account-menu ul li:last-child {
	border: 0px;
}

.account-menu ul li a {
	display: flex;
	align-items: center;
	font-family: var(--main-font);
	font-size: 12px;
	font-weight: 400;
	color: #323232;
	text-decoration: none;
	padding: 0 12px;
	height: 48px;
	width: 100%;
	transition: all 0.2s ease;
}

.account-menu ul li:last-child a {
	color: var(--red);
}

.account-menu ul li a:hover {
	color: #fff;
	background-color: var(--modern-blue);
	transition: all 0.2s ease;
}

.account-menu ul li:last-child a:hover {
	color: #fff;
	background-color: var(--red);
	transition: all 0.2s ease;
}

.header-logged__menu {
	background-color: var(--main-menu);
}

.header-logged__menu nav {
	display: flex;
	justify-content: center;
	overflow: hidden;
}

.header-logged__menu nav ul {
	display: flex;
	margin: 0;
	padding: 0;
	list-style: none;
}
.slide {
	top: 0 !important;
	transition: top .5s ease-in-out !important;
}

.header-logged__menu ul li {
	margin: 0 6px;
	font-family: var(--main-font);
	font-weight: 700;
	font-size: 12px;
	letter-spacing: 0.04em;
	transition: all 0.2s ease;
}

.header-logged__menu nav ul li:hover {
	background-color: var(--modern-blue);
}

.header-logged__menu nav ul a:hover {
	color: white !important;
}

.header-logged__menu ul li i {
	display: none;
}

.header-logged__menu ul li.current {
	background-color: var(--modern-blue);
	border-radius: 0 0 8px 8px;
}

.header-logged__menu ul li:hover {
	background-color: var(--modern-blue);
	border-radius: 0 0 8px 8px;
	transition: all 0.2s ease;
}

.header-logged__menu ul li a {
	display: block;
	padding: 17px 15px;
	height: 50px;
	width: 100%;
	text-decoration: none;
	color: #fff;
}

.header-logged__menu--mobile {
	display: none;
}

.account-menu__button.show i {
	transform: rotate(-90deg);
	transition: all 0.2s ease;
}

.header-button-menu__logged {
	display: none;
	align-items: center;
	justify-content: flex-start;
	position: absolute;
	width: 48px;
	min-width: 48px;
	height: 48px;
	min-height: 48px;
	background-color: transparent;
	border: 0px;
	padding: 0;
}

.header-logged__menu ul li ul {
	display: none;
}

footer {
	margin-top: 40px;
}

.footer__site-map {
	display: none;
	overflow: hidden;
}

.footer__site-map p {
	font-family: var(--main-font);
	font-size: 12px;
	color: #fff;
}

.footer__site-map ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.footer__site-map ul li a {
	font-size: 12px;
	font-weight: 400;
	text-decoration: none;
	color: #fff;
	transition: all 0.3s ease;
}

.footer__site-map ul li a:hover {
	color: var(--modern-blue);
	transition: all 0.3s ease;
}

.footer__site-map ul li {
	position: relative;
}

.footer__site-map ul li.current a {
	font-weight: 700;
}

.footer__site-map ul li.current::before {
	content: "";
	width: 2px;
	height: 13px;
	background-color: var(--modern-blue);
	position: absolute;
	top: 50%;
	margin-top: -5px;
	left: -10px;
}

.footer__credits {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding-bottom: 10px;
	padding-top: 15px;
}

.footer__credits .copyrights {
	font-family: var(--main-font);
	font-weight: 700;
	font-size: 14px;
	letter-spacing: 0.04em;
	color: #fff;
	margin: 0;
}

.footer__credits ul {
	display: flex;
	margin: 0;
	padding: 0;
	list-style: none;
}

.footer__credits ul li {
	margin-left: 35px;
}

.footer__credits ul li a {
	font-family: var(--main-font);
	font-size: 10px;
	font-weight: 400;
	letter-spacing: 0.04em;
	color: #fff;
	text-decoration: none;
}

.button__site-map {
	position: absolute;
	top: -26px;
	left: calc(50% - 100px);
	width: 200px;
	height: 30px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 8px 8px 0 0;
	background-color: var(--dark-grey);
}

.button__site-map button {
	color: #fff;
	font-family: var(--main-font);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.04em;
	background-color: transparent;
	border: 0px;
	width: 100%;
	height: 100%;
	padding: 0;
}

.float-menu {
	position: absolute;
	top: 8px;
	left: 0;
	width: 44px;
}

.float-menu ul {
	display: block;
	margin: 0;
	padding: 0;
	list-style: none;
	border-radius: 0 8px 8px 0;
	overflow: hidden;
}

.float-menu ul li {
	background-color: #000;
}

.float-menu ul li a {
	display: flex;
	align-items: center;
}

.float-menu ul li a span {
	width: 44px;
	height: 44px;
	min-width: 44px;
	min-height: 44px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.float-menu ul li a span img {
	width: 24px;
	height: 24px;
}

.subheader-home {
	display: flex;
	padding-top: 10px;
	padding-bottom: 30px;
}

.logo-responsive {
	display: none;
}

.welcome {
	margin: auto 0 auto auto;
	text-align: center;
}

.search-home {
	display: flex;
	justify-content: flex-end;
	align-items: center;
}

.search-home input,
.search-calendar input {
	width: 40%;
	border-top: 0px;
	border-right: 0px;
	border-left: 0px;
	border-bottom: 1px solid var(--dark-grey);
	margin: 0;
	padding: 0;
	height: 36px;
	font-family: var(--main-font);
}

.search-home input::placeholder,
.search-calendar input::placeholder {
	font-size: 14px;
	letter-spacing: 0.04em;
}

.search-home input:focus-visible,
.search-calendar input:focus-visible {
	outline: 0px;
}

.search-home button,
.search-calendar button {
	background-color: transparent;
	height: 36px;
	width: 36px;
	min-width: 36px;
	min-height: 36px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-top: 0px;
	border-right: 0px;
	border-left: 0px;
	border-bottom: 1px solid var(--dark-grey);
}

.grey-container {
	border-radius: 8px;
	padding: 16px;
	background-color: var(--light-grey);
}

.grey-container__head {
	display: flex;
	align-items: center;
	margin-bottom: 16px;
}

.grey-container__head .actions {
	display: flex;
	align-items: center;
	margin: auto 0 auto auto;
}

.grey-container__head .actions button {
	width: 32px;
	height: 32px;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: var(--modern-blue);
	border: 0px;
	border-radius: 8px;
	margin-left: 12px;
	transition: 0.3s ease;
}

.grey-container__head .actions button:hover {
	background-color: #000;
	transition: 0.3s ease;
}

.grey-container__head .actions button img {
	width: 18px;
	height: auto;
}

.table {
	font-family: var(--main-font);
}

.table tbody tr:last-child td {
	border-bottom: 0px !important;
}

/* DIEGO */
.card-background-section {
	background-color: var(--light-grey);
	border-radius: 8px;
}

.input--custom--bottom-line select,
input {
	background-color: transparent;
	border: none;
	border-bottom: 1px solid var(--dark-grey);
	width: 100%;
}

.input--custom--bottom-line select,
input:focus-visible {
	outline: none;
}

.input--custom--bottom-line-none select {
	background-color: transparent;
	border: none;
	width: 100%;
	border-bottom: transparent !important;
}

/*Daniel-classbook-styles*/

/*Calendar*/

.months-container {
	position: relative;
	height: 100%;
}
.container-absolute {
	position: absolute;
	top: 0;
	right: 10px;
	height: inherit;
}
.calendar-container {
	position: relative;
	background-color: white;
	border-bottom: 1px solid var(--modern-blue);
}

#calendario {
    font-family: var(--main-font);
}

#fila0 {
    height: 60px;
}
#fila1, #fila2, #fila3, #fila4, #fila5, #fila6 {
    height: 35px;
}

.calendar-width {
	width: 100%;
	margin: 0 auto;
	justify-content: center;
}
.input-ejemplo {
	width: 100%;
	height: 30px;
	border-radius: 8px;
	background-color: white;
	border: 1px solid #f2f2f2;
	padding: 0!important;
}

.input-day {
	width: 100%;
	height: 68px;
	border-radius: 8px;
	background-color: white;
	border: 1px solid #f2f2f2;
	padding: 0!important;
}

.page-item a {
		display: inline-block;
 }

.date-container {
	background-color: #dcdcdc;
	max-width: 400px;
	min-width: 380px;
}

.date-container-item {
	padding: 8px 16px;
	margin: 0 4px;
	color: #5f5e5e;
	font-weight: 600;
	cursor: pointer;
}

.date-container-item:hover {
	background-color: var(--modern-blue);
	color: white;
}

.selected {
	background-color: var(--modern-blue) !important;
	color: white;
}

.filtros {
	max-width: 320px;
	min-width: 300px;	
	padding: 5px;
	background-color: white;
	height: auto;
	margin: 10px 0;
	border: 1px solid #f2f2f2;
}

.responsive-calendar {
	width: 100%;
	display: none;
	justify-content:space-around;
	border-top-left-radius: 8px;
	border-top-right-radius: 8px;
	padding: 10px;
}

.cross-item {
	position: absolute;
	right: 0;
	padding: 2px 10px;
}

.calendar-item {
	max-width: 320px;
	min-width: 300px;	
	padding: 5px;
	background-color: white;
	height: auto;
	border: 1px solid #f2f2f2;
}

.similar-h {
	height: 30px;
}

.similar-h-day {
	height: 68px;
	color: #BFBFBF;
}


.number-container div {
	color: #bfbfbf;
}

.col-1 {
	width: 6% !important;
}
.month-container {
	width: 42px !important;
	background-color: #c4c4c4;
}

.rows-container {
	padding: 10px;
}

.event-day {
	width: 60%;
	height: 50%;
	background-color: var(--damascus);
	border-radius: 8px;
	color: white;
	padding: 5px;
	text-align: center;
}

.event-content {
	display: inline-block;
	width: 100%;
	height: 100%;
	font-size: 14px;
}

.event-week-content {
	display: inline-block;
	width: 100%;
	height: 100%;
	font-size: 14px;
}
.event-month {
	width: auto;
	height: auto;
	background-color: var(--damascus);
	border-radius: 8px;
	color: white;
	padding: 5px;
	text-align: center;
}

.event-week {
	width: 100%;
	height: auto;
	background-color: var(--damascus);
	border-radius: 8px;
	color: white;
	padding: 5px;
	text-align: center;
}

.drag-container {
	z-index: 8;
}

.search-calendar {
	display: flex;
	flex-direction: column;
}

.search-calendar input {
	width: 75%;
}

.course-calendar {
	width: 60%;
}

.color-green {
	accent-color: green;
}
.color-purple {
	accent-color: purple;
}
.color-orange {
	accent-color: orange;
}
.color-blue {
	accent-color: blue;
}
.color-damascus {
	accent-color: rgb(107, 68, 67);
}
.color-red {
	accent-color: red;
}

.cal-header {
	width: 100%;
}

.calendar-table {
		width: 100%;
    border-collapse: separate;
    border-spacing: 15px 15px;
}
.container-responsive {
	position: relative;
}

.buttons-container {
	display: none;
	flex-direction: column;
	position: absolute;
	bottom: 15px;
	right: 35px;
	margin: 0 !important;
	width: 0;
	height: auto;
}

.semester-container {
	position: fixed;
	bottom: 20px;
	right: 65px;
}

.filter-btn {
	display: none;
}

.weekday-container {
	width: 124px;
	height: 68px ;
	padding: 10px 12px;
	text-align: center;
	border-radius: 8px;
	background-color: #f2f2f2;
}

.month-view {
	height: 40px !important;
}

.time-column {
	width: 40px;
	height: 68px;
	color: #BFBFBF;
	background-color: white !important;	
}
.calendar-cell {
	width: 120px;
	height: 68px;
	text-align: center;
	vertical-align: top;
	border-radius: 8px;
	color:black;
	background-color: white !important;	
	border: 1px solid #F2F2F2;
}




.month-day-container td {
	width: 130px;
	height: 100px;
	border-radius: 10px;
}

.calendar-day-short {
	display:none;
}

.position-calendar {
	width: 100%;
	display: flex;
	justify-content: space-evenly;
	text-align: center;
	margin-bottom: 10px;
}

.sticky-top {
	top: 90px;
}


/*End-Calendar*/

.input--custom--bottom-no-line select {
	background-color: transparent;
	border: none;
	border-bottom: none !important;
}
.input--custom--bottom-no-line input {
	background-color: transparent;
	border: none;
	border-bottom: none !important;
}

/*Adjust with of table-cell*/

.adjust {
	width: 1% !important;
	white-space: nowrap !important;
}

.fix-width {
	width: 15% !important;
	white-space: nowrap !important;
}

.fix-width-10 {
	width: 10% !important;
	white-space: nowrap !important;
}

/*input-select-circle*/

.circle {
	width: 17px;
	height: 17px;
	margin: 0.5rem;
	border-radius: 50%;
}
/*sidebar-menu-transitions*/

#home {
	display: block;
	transition: width 0.3s ease-in-out;
	width: 44px;
}

.home:hover {
	width: 10rem !important;
}
.home li a {
	text-decoration: none;
	color: #fff !important;
}

.hidden {
	display: none !important;
}
.adjust-menu {
	position: absolute;
	top: 145px;
	width: 44px;
	z-index: 10;
}
.adjust-menu.fix {
	position: absolute;
	top: 10px;
	width: 44px;
	z-index: 10;
}
.margin-adjust {
	margin-left: 55px;
	margin-right: 20px;
	min-height: 265px;
}

.side-nav {
	position: relative;
	transition: 0.5s;
	width: 44px !important;
	color: #fff;
	line-height: 44px;
	text-align: center;
}
.side-nav:hover {
	width: 10rem !important;
}

.micro-nav li p:hover {
	background-color: var(--modern-blue);
}

.side-nav li a {
	width: 10rem;
	text-decoration: none;
	color: #fff !important;
}

.side-nav li a p:hover {
	border-bottom: 1px solid #fff !important;
}

.margin-menu {
	margin: 1px 0;
}

.margin-menu > p {
	height: 44px;
	cursor: pointer;
}

/*Menu-inside-sidebar*/

.micro-nav {
	height: 0px !important;
	opacity: 0 !important;
	border-radius: 5px !important;
	transition: opacity 1s ease-out !important;
	transition: 0.5s;
	width: 44px !important;
	line-height: 44px;
	text-align: center;
}

.micro-nav li p {
	background-color: var(--support-blue);
	color: #fff;
}
.micro-nav li p a {
	width: inherit;
	height: inherit;
	display: block;
	text-decoration: none;
	color: inherit;
}

.toggle {
	transition: opacity 0.8s ease-out !important;
	opacity: 1 !important;
	height: auto !important;
}

.show {
	left: 0 !important;
	transition: 0.3s;
}

.show-shield {
	display: inline-block !important;
}

/*end-menu-transitions*/

/*utilities*/
.border-secondary {
	border-color: rgb(180, 179, 179) !important;
}

.font-adjust {
	font-size: 11px !important;
}

.fix-height {
	height: 20rem;
}

/*Card-Styles*/
.blue-flag-container,
.green-flag-container,
.damascus-flag-container,
.orange-flag-container,
.purple-flag-container,
.violet-flag-container {
	border-radius: 8px;
	padding: 16px;
	background-color: var(--light-grey);
}

.h-normal i {
	display: none;
}

.drag-icon {
	cursor: move !important;
	cursor: -webkit-grabbing !important;
}

.drag-img {
	width: 26px;
	height: 15px;
	background-image: url("../img/black-drag.svg");
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
}

/*Circle-Colors-Menu*/

.colors-menu {
	display: flex;
	flex-direction: column;
	margin: auto 24px auto auto;
	align-items: center;
	position: relative;
}

.options {
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 5px;
	padding: 5px;
	width: 25px;
	height: 25px;
	border-radius: 50%;
	color: white;
	cursor: pointer;
}

/*Vertical Menu*/

.reveal {
	height: 0;
	display: none;
}

.vertical-menu {
	position: relative;
}

.vertical-menu div:first-child img {
	cursor: pointer;
}

.menuContainer {
	width: 200px;
	height: 90px;
	position: absolute;
	right: 0;
	top: 37px;
	background-color: transparent;
	z-index: 5;
}

.optionsContainer {
	width: 100%;
	list-style: none;
	padding: 5px;
	border-bottom-right-radius: 5px;
	border-bottom-left-radius: 5px;
	background-color: white;
}

.export {
	padding: 5px;
}

.tabs-container {
	height: 50px;
	align-items: flex-end;
}

.tab-item {
	width: 210px;
	height: 48px;
	background-color: black;
	text-transform: uppercase;
	display: flex;
	justify-content: center;
	align-items: center;
	border-top-right-radius: 8px;
	border-top-left-radius: 8px;
	margin-right: 2px;
	font-family: "red hat display";
	font-weight: 600;
	cursor: pointer;
}

.tab-item.current {
	background-color: var(--modern-blue);
	align-self: flex-start;
}

.tab-item:hover {
	background-color: var(--modern-blue);
	align-self: flex-start;
}

.button-files-container input[type="file"]::file-selector-button {
	background-color: var(--modern-blue);
	color: white;
	height: 45px;
	width: 185px;
	border-radius: 8px;
	border: none;
	margin-right: 25px;
	cursor: pointer;
	font-weight: 600;
}

.keep-width {
	min-width: 147px;
	max-width: 147px;
}


.adjust-height {
	height: 500px;
}

/*Dropdown-Menu*/

.dropdown-container {
	width: 180px;
	position: relative;
}


.current-month {
    background-color: #F8F9FA;
    color: var(--modern-blue);
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
}
#current-month {
	color: var(--modern-blue);
}

.dropdown-calendar {
	width: 115px;
    height: 35px;
	position: relative;
}
.calendar-input {
    border: none;
    text-align: center;
    padding: 0;
}

.selector {
	border-bottom: 1px solid gray;
	cursor: pointer;
}

.rotate {
	transform: rotate(-180deg);
	transition: 0.3s;
}

.drop-icon {
	transition: 0.3s;
}

.dropdown-button {
	width: inherit;
}

#checkbox-drop {
	width: inherit;
}

.dropContainer {
	width: inherit;
	height: 150px;
	overflow-y: scroll;
	position: absolute;
	right: 0;
	top: 55px;
	background-color: transparent;
	z-index: 5;
	border-bottom-right-radius: 5px;
	border-bottom-left-radius: 5px;
}

.dropContainer-email {
	width: inherit;
	height: 150px;
	overflow-y: scroll;
	position: absolute;
	right: 0;
	top: 30px;
	background-color: transparent;
	z-index: 5;
	border-bottom-right-radius: 5px;
	border-bottom-left-radius: 5px;
}
.dropContainer-asistence {
	width: inherit;
	height: 120px;
	position: absolute;
	right: 0;
	top: 55px;
	background-color: transparent;
	z-index: 5;
	border-bottom-right-radius: 5px;
	border-bottom-left-radius: 5px;
}

.dropContainer-month {
	width: 100%;
	height: 100px;
	position: absolute;
    overflow-y: scroll;
	right: 0px;
	top: 40px;
	background-color: transparent;
	z-index: 5;
}

.drop-title {
	padding: 0 5px;
}
.drop-options {
	width: 100%;
	height: 30px;
	display: flex;
	align-items: center;
	padding: 0 5px;
	cursor: pointer;
	border-bottom: 1px solid rgb(177, 175, 175);
	text-decoration: none;
}
.drop-options-no-border {
	width: 100%;
	height: 30px;
	display: flex;
	align-items: center;
	padding: 0 5px;
	cursor: pointer;
	text-decoration: none;
    font-weight: normal;
}

.no-drop-options {
	width: 100%;
	height: 30px;
	display: flex;
	align-items: center;
	padding: 0 5px;
	cursor: pointer;
	border-bottom: 1px solid rgb(177, 175, 175);
}

.no-drop-options input {
	width: auto !important;
}
.no-drop-options span {
	cursor: pointer;
}

.drop-options:hover, .drop-options-no-border:hover {
	color: white;
	background-color: var(--modern-blue);
    transition: 0.5s;
}
.no-drop-options:hover {
	color: white;
	background-color: var(--modern-blue);
}

.drop-options-container {
	width: 100%;
	list-style: none;
	border-bottom-right-radius: 5px;
	border-bottom-left-radius: 5px;
	background-color: rgb(245, 245, 245);
}





/*FAMILIA*/

.tab-short {
	display: none;
}

.student-img {
	position: relative;
}

.pencil {
	position: absolute;
	top: -8px;
	right: -12px;
	cursor: pointer;
}
.assign-button {
	width: 175px;
	height: 44px;
	padding: 0;
	margin-top: 10px;
}

.input-empty {
	width: 60px;
	height: 21px;
}

.checkbox-lg {
	width: 3em !important;
	height: 16px !important;
}

.reminder {
	border: 1px solid var(--modern-blue);
	height: 58px;
	border-radius: 8px;
	background-color: white;
}

.reminder.red {
	border: 1px solid red;
}

.reminder-item {
	width: 350px;
	height: 30px;
	padding-right: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 10px;
}

.reminder-item p {
	font-weight: bold;
	font-size: 14px;
}

.reminder-item span {
	font-weight: normal;
}

.reminder-item img {
	width: 24px;
	height: 24px;
	margin: 0 10px;
}

#checkAll {
	width: 65px !important;
}

.login-img-container img {
	width: 66px;
	height: 80px;
}

.login-input-container {
	padding: 25px 60px;
}

#buttonPass {
	position: absolute;
	right: 0;
}

tr:nth-child(2n){
	background-color: #F8F9FA !important;
}

.table-bordered tbody tr:hover{
	background-color: #EFF5FF!important;
	border: .5px solid var(--modern-blue);
}
.col-lg-5.fit {
	width: 39.66% !important;
}
.col-lg-2.fit {
	width: 15% !important;
}

.validation-container {
	font-family: var(--main-font) !important;
}

.promote-button button {
	width: 173px !important;
	height: 44px;
}

tr td div img {
	border-radius: 50%;
}
.min-width {
	min-width: 50px !important;
}

.min-height {
	min-height: 100vh;
}

.container-row {
	width: 100%;
	height: auto;
	background-color: white;
	margin: 15px 0;
	padding: 20px 0;
}


.select-bold select {
	font-weight: bold !important;
	color: black;
	width: 65% !important;

}
.cuestionario-container {
	background-color: white;
	margin: 8px 24px;
	border-radius: 8px;
	padding: 20px 0;
}

.cuestionario-container .row {
	padding: 8px 24px;
	margin: unset;
}

.mini-icon {
	object-fit: contain !important;
	width: 20px !important;
	height: 20px !important;
}

.email-container {
	width: 100%;
	height: auto;
}

.email-container div {
	width: 100%;
	height: 500px;
}
.postulacion-footer {
	position: absolute;
	bottom: 0;
	padding: 20px 0;
}
.toggle-row {
	display: none !important;
}
.breadcrumb-buttons {
	display: flex;
}

.adjust-display.fix {
	display: none;
}
#secretary-post .pagination {
	margin-bottom: 0;
}

#secretary-post .page-item {
	width: 25px;
	height: 25px;
	padding: 0;
	margin: 0 3px;
	
}

#secretary-post .page-link {
	width: 100%;
	height: 100%;
	padding: 0;
	text-align: center;
	margin-left: 5px;
	border-radius: 6px !important;
	color: black;
}

#secretary-post .page-item:not(:first-child) .page-link {
	margin-left: 2px;
}

/* final styles*/

.filters-container {
	flex-wrap: wrap;
	gap: 3.125rem;
}

.border-radius-8 {
	border-radius: 8px;
}
.border-radius-8-top {
	border-radius: 8px 8px 0px 0px;
}

.custom-table-card .no-border {
	border-style: none;
}
.colum-small-table {
	width: 25px;
}

.no-border {
	border-style: unset;
	border-width: unset;
}

.border-bottom-black {
	border-bottom: 1px solid black;
}

.border-bottom-grey {
	border-bottom: 1px solid var(--separator-grey);
}
.border-top-grey {
	border-top: 1px solid var(--separator-grey);
}
.border-left-grey {
	border-left: 1px solid var(--separator-grey);
}

.border-right-grey {
	border-right: 1px solid var(--separator-grey);
}

.custom-radio {
	border: 1px solid var(--dark-grey);
	border-radius: 16px;
	min-width: 14px;
}

.custom-text-area {
	border: unset;
	border-bottom: 1px solid var(--dark-grey);
}

.custom-text-area:focus-visible {
	outline: none;
	border-bottom: 1px solid var(--modern-blue);
}

.custom-switch:checked {
	background-image: url("../img/check-ico.svg") !important;
	background-color: var(--separator-grey) !important;
	border-color: var(--separator-grey) !important;
}

.position-close-button {
	position: absolute;
	top: 2px;
	right: 1px;
}
/* DIEGO */



/*APODERADOS*/

.students-container {
	display: flex;
	flex-direction: column;
	background-color: #F2F2F2;
}

.student-card {
	width: 95%;
	display: flex;
	justify-content: space-between;
	align-items: center;
	background-color: white;
	margin: .8px 0px;
	border-radius: 8px;
}

.student-img-container {
	width: 85px;
	height: 85px;
}
.student-img-container img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.student-content-container {
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 0 25px;
}

.student-content-container p:first-child {
	font-size: 20px !important;
}
.student-logo-container {
	width: 46.25px;
	height: 74px;
	display: flex;
	align-items: center;
}

.student-logo-container img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.table-1 {
	width: 60% !important;
}
.table-2 {
	width: 35% !important;
}

.table-1, .table-2 {
	margin: 0 10px;
}




.card-seduc {
	width: 300px;
	max-width: 300px;
	border: none;
	margin: 0 5px 55px 5px;
	border-radius: 5px;
	cursor: pointer;
	box-shadow: 0px 5px 8px rgb(0 0 0 / 7%);

}


.card-img-top {
	width: 100%;
	height: 150px;
	object-fit: cover;
	
}

.categories {
	padding: 5px 15px;
}
.cat-item {
	width: 75px;
	height: auto;
	border-radius: 8px;
	color: white;
	text-align: center;
}
.cat-item p {
	font-size: 10px !important;
}
.card-body h5 {
	color: var(--modern-blue);
}


.card-img-top-portafolio {
	width: 100%;
	height: 150px;
	object-fit: cover;
}
.card-img-top-portafolio.view {
	width: 64px;
	height: 64px;
	border-radius: 8px;
}
.card-p-text {
	line-height: 120%;
	padding-bottom: 3px;
}
.card-footer {
	border: none;
	background-color: #F8F9FA;
}
.card-footer.view {
	display: none;
	
}

.card-seduc.view {
	width: 100%;
	max-width: 100%;
	display: flex;
	align-items: center;
}
.select2-container--default .select2-selection--multiple {
	border: none !important;
	border-bottom: 1px solid black !important;
	border-radius: 0 !important;

}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
	background-color: white !important;
	color: blue !important;
	border: none !important;
	cursor: pointer !important;
}


.select2-container--default .select2-selection--multiple .select2-selection__choice {
	background-color: white !important;
	border-radius: 8px !important;
	border: 1px solid var(--modern-blue) !important;
	color: var(--modern-blue) !important;
	font-weight: bold !important;
	font-size: 14px !important;
}

.detail-wrapper {
	width: 100%;
	height: auto;
}

.image-container  {
	width: 300px;
	height: 280px;
}

.image-container img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 12px;
}

.content-container {
	width: 600px;
	height: auto;
}