@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap');

/*
Morado: #5a4fa1
Rosa: #cc328d
*/


*, button:focus, :focus{
  outline: none;
}

body {
  background: #eee;
  font-family: "Lato", sans-serif;
  margin: 0;
  overflow-x: hidden;
  color: #545353;
  font-weight: 300;
}
html {
  position: relative;
  min-height: 100%;
  background: #fff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
a,
a:hover,
a:focus,
a.btn:hover,
a.nav-link:hover {
  text-decoration: none;
  transition: all .15s ease-in-out;
  -moz-transition: all .15s ease-in-out;
  -webkit-transition: all .15s ease-in-out;
  color: #5a4fa1;
}

a.arrow_back,
a.arrow_back:hover{
  color: #455a64;
}

input:focus,
textarea:focus,
.form-control:focus,
.form-select:focus,
input:active,
textarea:active,
.form-control:active{
  box-shadow: none!important;
  background-color: inherit;
  color: inherit;
}
.form-control:focus, .form-select:focus{
  border-color: #cc328d!important;
}
.form-group{
	position: relative;
}
textarea {
  resize: none;
}
.btn_brand{
  background-color: #5a4fa1;
  color: #fff;
  border-radius: 0 26px 0 0;
  -webkit-box-shadow: -0.314px 8.995px 6.51px 0.49px rgba(0, 0, 0, 0.11);
-moz-box-shadow: -0.314px 8.995px 6.51px 0.49px rgba(0, 0, 0, 0.11);
  box-shadow: -0.314px 8.995px 6.51px 0.49px rgba(0, 0, 0, 0.11);
  min-width: 105px;
  margin-right: 15px;
  border: 0;
}
.btn_brand:hover{
  background-color: #6f68af;
  color: #fff!important;
}
.btn_brand.__cancel{
  background-color: #757575;
  color: #fff!important;
}
.btn.btn_brand:focus,
.btn.btn_brand:active{
	-webkit-box-shadow: -0.314px 8.995px 6.51px 0.49px rgba(0, 0, 0, 0.11);
-moz-box-shadow: -0.314px 8.995px 6.51px 0.49px rgba(0, 0, 0, 0.11);
  box-shadow: -0.314px 8.995px 6.51px 0.49px rgba(0, 0, 0, 0.11);
  color: #fff;
  background-color: #5a4fa1;
}
.btn_brand.__cancel:hover,
.btn.btn_brand.__cancel:focus,
.btn.btn_brand.__cancel:active{
  background-color: #bcbcbc;
  color: #fff!important;
}

/*Custom-select*/
.content_select select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  width: 125px;
  padding-right: 20px;
  cursor: pointer;
}
/* Eliminamos la fecha que por defecto aparece en el desplegable */
.content_select select::-ms-expand {
  display: none;
}
.content_select{
  position: relative;
}
.content_select i{
  position: absolute;
  right: 5px;
  top: 8px;
  color: #b7b7b7;
  font-size: 10px;
}
/*select.form-control:focus{
  background-color: #fff;
}*/

h1,
h2,
h3,
h4,
h5,
h6 {
  color: #455a64;
  font-family: "Lato", sans-serif;
  font-weight: 400;
}
h1 {
  line-height: 40px;
  font-size: 36px;}
h2 {
  line-height: 36px;
  font-size: 24px; }
h3 {
  line-height: 30px;
  font-size: 21px; }
h4 {
  line-height: 22px;
  font-size: 18px; }
h5 {
  line-height: 18px;
  font-size: 16px;
  font-weight: 400; }
h6 {
  line-height: 16px;
  font-size: 14px;
  font-weight: 400;
}

.box {
  border-radius: 4px;
  padding: 10px; }

.no-wrap td,
.no-wrap th {
  white-space: nowrap; }

ol li {
  margin: 5px 0;
}

.hide { display: none; }

#main-wrapper {
  width: 100%;
  overflow: hidden;
  min-height: 100vh;
}
.page-wrapper {
  background: transparent;
  padding: 165px 0 20px;
  position: relative;
}
.page-wrapper:not(.calendar_front) {
  /*padding-top: 125px;*/
}

/*Off Canvas*/
.right-side-panel.OffCanvass{
  width: 560px;
  max-width: 90%;
  padding: 0;
  background: #fff;
  position: fixed;
  transform: translateX(650px);
  top: 0;
  right: 0;
  height: 100%;
  overflow: hidden;
  overflow-y: scroll;
  z-index: 200;
  transition: all .5s;
  -moz-transition: all .5s;
  -webkit-transition: all .5s;
  box-shadow: 0 0 10px -5px rgba(0,0,0,.2), 0 0 24px 2px rgba(0,0,0,.14), 0 0 30px 5px rgba(0,0,0,.12);
  -moz-box-shadow: 0 0 10px -5px rgba(0,0,0,.2), 0 0 24px 2px rgba(0,0,0,.14), 0 0 30px 5px rgba(0,0,0,.12);
  -webkit-box-shadow: 0 0 10px -5px rgba(0,0,0,.2), 0 0 24px 2px rgba(0,0,0,.14), 0 0 30px 5px rgba(0,0,0,.12);
}
.right-side-panel.OffCanvass.__in{
  transform: translateX(0);
  transition: all .5s;
  -moz-transition: all .5s;
  -webkit-transition: all .5s;
}
body.offcanvasIn{
  max-height: 100vh;
  overflow: hidden;
  transition: all .5s;
  -moz-transition: all .5s;
  -webkit-transition: all .5s;
}
body .capa_overlay{
  transition: all .25s;
  -moz-transition: all .25s;
  -webkit-transition: all .25s;
  background: rgba(0, 0, 0, 0.45);
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  z-index: 70;
  left: 0;
  visibility: hidden;
}
body.offcanvasIn .capa_overlay{
  transition: all .25s;
  -moz-transition: all .25s;
  -webkit-transition: all .25s;
  visibility: visible;
}
.OffCanvass .offcanvas_head{
  transform: translateX(650px);
  transition: all .5s;
  -moz-transition: all .5s;
  -webkit-transition: all .5s;
}
.OffCanvass.__in .offcanvas_head{
  transform: translateX(0);
  width: 100%;
  padding: 30px 30px 12px;
  background-color: transparent;
  border-radius: 0;
  transition: all .5s;
  -moz-transition: all .5s;
  -webkit-transition: all .5s;
}
.OffCanvass.__in .offcanvas_head::after{
	content: "";
	height: 2px;
	width: 30%;
	position: absolute;
	bottom: 0;
	left: 0;
	background-color: #5a4fa1;
}
.OffCanvass .close_offcanvas{
  cursor: pointer;
  position: absolute;
  top: 20px;
  right: 15px;
  z-index: 50;
  width: 20px;
}
.offcanvas_head .title,
.offcanvas_body .title{
  margin-bottom: 0;
  font-size: 20px;
  text-transform: uppercase;
  font-weight: 500;
  color: #5a4fa1;
}
.offcanvas_body{
  padding: 22px 30px 50px;
  min-height: 93%;
  position: relative;
}
.OffCanvass .form_action{
  position: absolute;
  bottom: 0;
  left: 0;
}
.OffCanvass .form-control{
  color: #5a4fa1;
}
.offcanvas_body label{
  font-size: 15px;
}


/*CUSTOM Checkbox*/
/* Remove default checkbox */
[type="checkbox"]:not(:checked),
[type="checkbox"]:checked {
  position: absolute;
  z-index: 20;
  height: 25px;
  width: 20px;
  cursor: pointer;
  /*left: -9999px;*/
  opacity: 0;
}
[type="checkbox"] + label {
  position: relative;
  padding-left: 26px;
  cursor: pointer;
  display: inline-block;
  height: 25px;
  /*line-height: 25px;*/
  font-size: 1rem;
  -webkit-user-select: none;
  /* webkit (safari, chrome) browsers */
  -moz-user-select: none;
  /* mozilla browsers */
  -khtml-user-select: none;
  /* webkit (konqueror) browsers */
  -ms-user-select: none;
  /* IE10+ */
}

[type="checkbox"].filled-in + label:after {
  border-radius: 2px;
}
[type="checkbox"].filled-in + label:before,
[type="checkbox"].filled-in + label:after {
  content: '';
  left: 0;
  position: absolute;
  transition: border .25s, background-color .25s, width .20s .1s, height .20s .1s, top .20s .1s, left .20s .1s;
  z-index: 1;
}
[type="checkbox"].filled-in:not(:checked) + label:before {
  width: 0;
  height: 0;
  border: 3px solid transparent;
  left: 6px;
  top: 10px;
  -webkit-transform: rotateZ(37deg);
  transform: rotateZ(37deg);
  -webkit-transform-origin: 20% 40%;
  transform-origin: 100% 100%;
}
[type="checkbox"].filled-in:not(:checked) + label:after {
  height: 20px;
  width: 20px;
  background-color: transparent;
  border: 1px solid #76afc2;
  top: 0px;
  z-index: 0;
}
[type="checkbox"].filled-in:checked + label:before {
  top: 0;
  left: 1px;
  width: 8px;
  height: 13px;
  border-top: 2px solid transparent;
  border-left: 2px solid transparent;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  -webkit-transform: rotateZ(37deg);
  transform: rotateZ(37deg);
  -webkit-transform-origin: 100% 100%;
  transform-origin: 100% 100%;
}
[type="checkbox"].filled-in:checked + label:after {
  top: 0;
  width: 20px;
  height: 20px;
  border: 2px solid #5a4fa1;
  background-color: #5a4fa1;
  z-index: 0;
}
[type="checkbox"].filled-in:disabled:not(:checked) + label:before {
  background-color: transparent;
  border: 2px solid transparent;
}
[type="checkbox"].filled-in:disabled:not(:checked) + label:after {
  border-color: transparent;
  background-color: #BDBDBD;
}
[type="checkbox"].filled-in:disabled:checked + label:before {
  background-color: transparent;
}
[type="checkbox"].filled-in:disabled:checked + label:after {
  background-color: #BDBDBD;
  border-color: #BDBDBD;
}
.input-group.__for_check{
	display: inline-block;
	margin-right: 25px;
	width: auto;
}


/* Boton Switch */
.switch,
.switch * {
  -webkit-user-select: none;
  -moz-user-select: none;
  -khtml-user-select: none;
  -ms-user-select: none;
}
.switch{
  display: inline-block;
}
.switch label {
  cursor: pointer;
  margin: 0;
}
.switch label input[type=checkbox] {
  opacity: 0;
  width: 0;
  height: 0;
}
.switch label input[type=checkbox]:checked + .lever {
  background-color: #e0e0e0;
}
.switch label input[type=checkbox]:checked + .lever:after {
  background-color: #282658;
  left: 24px;
}
.switch label .lever {
  content: "";
  display: inline-block;
  position: relative;
  width: 40px;
  height: 15px;
  background-color: #818181;
  border-radius: 15px;
  margin-right: 10px;
  -webkit-transition: background 0.3s ease;
  -o-transition: background 0.3s ease;
  transition: background 0.3s ease;
  vertical-align: middle;
  margin: 0 16px;
}
.switch label .lever:after {
  content: "";
  position: absolute;
  display: inline-block;
  width: 21px;
  height: 21px;
  background-color: #F1F1F1;
  border-radius: 21px;
  -webkit-box-shadow: 0 1px 3px 1px rgba(0, 0, 0, 0.4);
  box-shadow: 0 1px 3px 1px rgba(0, 0, 0, 0.4);
  left: -5px;
  top: -3px;
  -webkit-transition: left 0.3s ease, background .3s ease, -webkit-box-shadow 0.1s ease;
  transition: left 0.3s ease, background .3s ease, -webkit-box-shadow 0.1s ease;
  -o-transition: left 0.3s ease, background .3s ease, box-shadow 0.1s ease;
  transition: left 0.3s ease, background .3s ease, box-shadow 0.1s ease;
  transition: left 0.3s ease, background .3s ease, box-shadow 0.1s ease, -webkit-box-shadow 0.1s ease;
}
input[type=checkbox]:checked:not(:disabled) ~ .lever:active::after,
input[type=checkbox]:checked:not(:disabled).tabbed:focus ~ .lever::after {
  -webkit-box-shadow: 0 1px 3px 1px rgba(0, 0, 0, 0.4), 0 0 0 15px rgba(38, 166, 154, 0.1);
  box-shadow: 0 1px 3px 1px rgba(0, 0, 0, 0.4), 0 0 0 15px rgba(38, 166, 154, 0.1);
}
input[type=checkbox]:not(:disabled) ~ .lever:active:after,
input[type=checkbox]:not(:disabled).tabbed:focus ~ .lever::after {
  -webkit-box-shadow: 0 1px 3px 1px rgba(0, 0, 0, 0.4), 0 0 0 15px rgba(0, 0, 0, 0.08);
  box-shadow: 0 1px 3px 1px rgba(0, 0, 0, 0.4), 0 0 0 15px rgba(0, 0, 0, 0.08);
}
.switch input[type=checkbox][disabled] + .lever {
  cursor: default;
}
.switch label input[type=checkbox][disabled] + .lever:after,
.switch label input[type=checkbox][disabled]:checked + .lever:after {
  background-color: #BDBDBD;
}


/*******************
Labels
*******************/
.label {
  padding: 3px 10px;
  line-height: 13px;
  color: #ffffff;
  font-weight: 300;
  border-radius: 5px;
  font-size: 75%;
  display: inline-block;
}
.label.statu.__cancelado {
  background-color: #F44336;
}
.label.statu.__pagado {
  background-color: #00C853;
}
.label.statu.__enviado {
  background-color: #CDDC39;
}
.label.__edit {
  background-color: #1976D2;
}

/*Badge*/
.badge { font-weight: 400; }



/*******************
Registro & Login
*****************/
#login.page_registro{
  max-height: 100vh;
  overflow: hidden;
  color: #fff;
  display: flex;
  width: 100vw;/*medida que quieras*/
  height: 100vh;/*medida que quieras*/
  justify-content: center;
  align-items: center;
}
#login .logo_deco,
#login .logo{
  max-width: 175px;
  margin-bottom: 35px;
}
#login .part_bienvenido{
  width: 50%;
  max-width: 50%;
  flex: 0 1 50%;
  background: #5B4FA1;
  background: linear-gradient(180deg, rgba(91, 79, 161, 1) 0%, rgba(203, 51, 142, 1) 100%);
  height: 100%;
  text-align: center;
  padding: 2.95rem 3.25rem;
}
#login .part_form{
  width: 50%;
  max-width: 50%;
  flex: 0 1 50%;
  height: 100%;
  text-align: center;
  padding: 2.95rem 3.25rem;
  background: #fff;
}
.part_bienvenido h1{
  font-size: 74px;
  color: #fff;
  margin-bottom: 2px;
  font-weight: 900;
  line-height: 1;
}
.part_bienvenido h3{
  font-size: 58px;
  color: #fff;
  font-weight: 600;
  line-height: unset;
}
#login form{
	width: 495px;
	max-width: 100%;
	margin: 0 auto;
}
#login .form-control{
  height: 72px;
  border: 2px solid #5a4fa1;
  border-left: 28px solid #5a4fa1;
  color: #5a4fa1;
  padding: 1.75rem .75rem .675rem 1.1rem;
  line-height: 1;
  font-size: 18px;
  font-weight: 500;
}
#login .form-control + label{
	position: absolute;
    color: #5a4fa1;
    top: 1.025rem;
    left: 2.75rem;
    font-size: 14px;
    font-weight: 400;
}
#s_pass_regi{
  font-style: italic;
  color: #BDBDBD;
  padding-left: 10px;
}
.reco_pass{
  text-align: right;
}
#recover_pass a{
  color: #5a4fa1;
  font-weight: 400;
  font-style: italic;
}
#btn_login{
  display: block;
  width: auto;
  background-color: #cc328d;
  color: #fff;
  text-transform: capitalize;
  font-weight: 500;
  padding: .475rem .875rem;
  border: 0;
}



/*******************
Menu Topbar & Sub
******************/
.is_logo{
  width: 72px;
}
.notif_img{
  width: 25px;
}
.topbar {
  position: fixed;
  width: 100%;
  z-index: 50; 
  background-color: #EEEEEE;
  min-height: 60px;
  padding: 0;
  color: #5a4fa1;
}
.topbar .navbar-menu {
  width: 100%;
}
.topbar .navbar-menu > .navbar-nav {
 justify-content: right;
 padding-right: 15px;
}
.topbar .navbar-header {
  padding-left: 15px;
}
.topbar .navbar-header .navbar-brand {
  padding-bottom: 0px;
}
.topbar .dropdown-toggle::after {
  display: none;
}
.topbar .navbar-nav > .nav-item > .nav-link {
  padding: 0 15px;
  font-size: 17px;
}
.topbar .navbar-nav > .nav-item.show {
  background: rgba(0, 0, 0, 0.05);
}

/*Profile icon*/
.topbar .round{
  line-height: 40px;
  color: #fff;
  width: 40px;
  height: 40px;
  display: inline-block;
  font-weight: 400;
  text-align: center;
  border-radius: 50%;
  background: #55c8e1;
}
.topbar .dropdown-menu {
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.05);
  -webkit-box-shadow: 0 3px 12px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: 0 3px 12px rgba(0, 0, 0, 0.05);
  border-color: rgba(120, 130, 140, 0.13);
  background: #e9edf2;
}
.topbar ul.dropdown-user {
  padding: 0px;
  min-width: 270px;
}
.topbar ul.dropdown-user li {
  list-style: none;
  padding: 0px;
  margin: 0px;
}
.topbar ul.dropdown-user li .dw-user-box {
  padding: 10px 15px;
}
.topbar ul.dropdown-user li .dw-user-box .u-text {
  display: inline-block;
  padding-left: 10px;
}
.topbar ul.dropdown-user li .dw-user-box .u-text h4 {
  margin: 0px;
  font-size: 15px;
}
.topbar ul.dropdown-user li .dw-user-box .u-text p {
  margin-bottom: 2px;
  font-size: 12px;
}
.topbar ul.dropdown-user li.divider {
  height: 1px;
  margin: 9px 0;
  overflow: hidden;
  background-color: rgba(120, 130, 140, 0.3);
}
.topbar ul.dropdown-user li a {
  padding: 6px 14px;
  display: block;
  color: #5a4fa1;
}
.topbar ul.dropdown-user li a:hover {
  color: #cc328d;
}
.ti-power-off{
  font-weight: 600;
}
.where_is_menu{
  color: #5a4fa1;
  font-size: 20px;
  padding: 5px 20px;
  border-left: 2px solid #5a4fa1;
  margin-left: 8px;
  font-weight: 400;
}

/*Notify widgets*/
/*.notify {
  position: relative;
  top: -28px;
  right: -7px;
}
.notify .heartbit {
  position: absolute;
  top: -20px;
  right: -4px;
  height: 25px;
  width: 25px;
  z-index: 10;
  border: 5px solid #ef5350;
  border-radius: 70px;
  -moz-animation: heartbit 1s ease-out;
  -moz-animation-iteration-count: infinite;
  -o-animation: heartbit 1s ease-out;
  -o-animation-iteration-count: infinite;
  -webkit-animation: heartbit 1s ease-out;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}
.notify .point {
  width: 6px;
  height: 6px;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  border-radius: 30px;
  background-color: #ef5350;
  position: absolute;
  right: 6px;
  top: -10px;
}

@-moz-keyframes heartbit {
  0% {
    -moz-transform: scale(0);
    opacity: 0.0; }
  25% {
    -moz-transform: scale(0.1);
    opacity: 0.1; }
  50% {
    -moz-transform: scale(0.5);
    opacity: 0.3; }
  75% {
    -moz-transform: scale(0.8);
    opacity: 0.5; }
  100% {
    -moz-transform: scale(1);
    opacity: 0.0;
  }

}
@-webkit-keyframes heartbit {
  0% {
    -webkit-transform: scale(0);
    opacity: 0.0; }
  25% {
    -webkit-transform: scale(0.1);
    opacity: 0.1; }
  50% {
    -webkit-transform: scale(0.5);
    opacity: 0.3; }
  75% {
    -webkit-transform: scale(0.8);
    opacity: 0.5; }
  100% {
    -webkit-transform: scale(1);
    opacity: 0.0;
  }
}*/
/*Submenu*/
.submenu{
  position: relative;
  width: 100%;
  height: auto;
  top: 0px;
  z-index: 20;
  background: #fff;
  -webkit-box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
  position: fixed;
  padding-top: 84px
}
.submenu ul{
  width: 100%;
  justify-content: space-around;
}
.submenu ul li a{
  color: #455a64;
  font-size: 17px;
  font-weight: 400;
  padding: 2px 10px;
}
.submenu ul li.active a,
.submenu ul li a.__active,
.submenu ul li a:hover{
  color: #cc328d;
}
.submenu ul li a i{
  margin-right: 5px;
}



/********
Cards 
*********/
.card {
  position: relative;
}
.card_inner {
  border: 0px;
  border-radius: 2px;
  box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.1);
  padding: 2.325rem;
  background-color: #fff;
}
.card_inner.__lateral {
  padding: .925rem;
}
.dash_init .card_inner{
  padding: 1.825rem 1.375rem;
} 
.card_inner .card_title{
  text-transform: uppercase;
  color: #5a4fa1;
}
.card_inner .card_title > span{
  border-bottom: 2px solid #5a4fa1;
  font-weight: 700;
}
.card_inner .card_title > select{
  display: inline-block;
  width: 20%;
  max-width: 20%;
  float: right;
  font-size: 14px;
}
.actions_card{
  display: flex;
  display: -ms-flexbox;
  justify-content: space-between;
  align-items: center;
  margin-top: 15px;
}
.btn_card{
  color: #fff;
  background-color: #282658;
  padding: .25rem;
  border-radius: .35rem;
  font-size: 13px;
}
.btn_card:hover{
  color: #fff;
}
.info_card .btn_card{
  display: inline-block;
  margin-top: 10px;
}
.icon-cruz{
  color: #d32f2f;
  cursor: pointer;
}

.cancelar_tick{
  position: absolute;
  bottom: 0;
  right: 0;
  font-size: 12px;
}
.mes_list,
.is_title{
  color: #282658;
  text-transform: uppercase;
  margin-bottom: 30px;
}
.btn_back{
  text-transform: uppercase;
  margin-bottom: 30px;
  font-size: 16px;
}
.btn_back a{
  color: #282658;
}

/*Cambiar contraseña*/
.change_my_pass .form-control{
  font-weight: 300px;
  border-radius: 0;
}
.change_my_pass .card{
  padding: 1.25rem;
}
#reset_pass{
  background-color: #1976D2;
  color: #fff;
  font-weight: 300;
  border-radius: 0;
  margin-top: 20px;
}
/*Ajustes para notif*/
.config_notif .card_container{
  margin-bottom: 50px;
  background-color: #E0E0E0;
}
.config_notif .card_container .is_title{
  margin-bottom: 5px;
}
.config_notif .text_help{
  color: #BDBDBD;
  font-style: italic;
  display: block;
  margin-bottom: 30px;
}


/*******************
Tables
*******************/
.vm.table td,
.vm.table th {
  vertical-align: middle;
}
.no-th-brd.table th,
.no-th-brd.table tr,
.no-th-brd.table td {
  border: 0px;
}

.table thead th{
  border: 0;
  border-bottom: 2px solid #5a4fa1;
  font-weight: 600;
  /*background-color: #5a4fa1;*/
  color: #5a4fa1;
  font-size: 16px;
}

.table th,
.table td{
  border:0;
  font-weight: 300;
  padding: 0.645rem 0.5rem;
  text-align: center;
  font-size: 15px;
}
/*.table tr:nth-child(even) > td{
  background-color: #eee;
}*/
.table tr > td{
  cursor: pointer;
  border-bottom: 1px solid #5a4fa1;
}
.table tr > td > a > .ic_act{
	color: #212529;
}
.pagination .page-item.active > .page-link{
	background-color: #678391;
	border-color: #678391;
}

.table_encabe{
  display: flex;
  display: -ms-flexbox;
  justify-content: space-between;
  align-items: center;
}
#btn_download{
  float: right;
  font-size: 25px;
  color: #5a4fa1;
  cursor: pointer;
}
.BtnIcon{
  font-size: 17px;
}
.BtnIcon.__cadena{
  color: #212529;
}
.BtnIcon.__notas{
  color: #5a4fa1;
}
.BtnIcon.__borrar{
  color: #e04f5f;
}
.icon__borrar{
  width: 16px;
}


/****Filtro de listado****/
.top_table {
  margin-bottom: 35px;
}
.top_table form{
  display: flex;
  justify-content: space-between;
  align-content: center;
}
.top_table form .form-control {
  margin: 0 5px;
}
.top_table form button.form-control {
  width: 100px;
  background: #1976D2;
  color: #fff;
}

/*Buscador*/
.buscador{
  text-align: right;
  position: relative;
}
.buscador .form-control{
  width: 250px;
  max-width: 100%;
  display: inline-block;
  white-space: nowrap;
  border: 1px solid #cc328d;
  background-color: transparent;
  border-radius: 0;
  padding-left: 32px;
}
.buscador > i{
  position: absolute;
  top: 11px;
  left: 8px;
}

/*Iconos de tablas*/
.table > tbody > tr > td.pg-actions > div.td_actions{
	display: flex;
	display: -ms-flexbox;
	justify-content: center;
	align-items: center;
}
.table > tbody > tr > td.pg-actions > div > a.btn_icon > img{
	margin-right: 7px;
}
.table > tbody > tr > td.pg-actions > div > a.btn_icon:last-of-type > img{
	margin-right: 0;
}

/*************
Form Material
***************/
.form_skill_style .form-control{
  height: 72px;
  border: 2px solid #5a4fa1;
  border-left: 18px solid #5a4fa1;
  color: #5a4fa1;
  /*padding: 1.75rem .75rem .675rem 1.1rem;*/
  padding: 1.75rem .75rem .675rem 17.5px;
  line-height: 1.2;
  font-size: 18px;
  font-weight: 500;
}
.form_skill_style textarea.form-control{
  height: auto;
  padding-top: 2.25rem;
}
.form_skill_style select.form-control{
  font-size: 16px;
}
.form_skill_style .form-control + label{
	position: absolute;
    color: #5a4fa1;
    top: 1rem;
    left: 2.95rem;
    font-size: 14px;
    font-weight: 400;
}
.form_skill_style .subtit{
	font-size: 14px;
    font-weight: 400;
    color: #5a4fa1;
}


/*Error validation*/
.form-material .form-control.is-invalid,
.form-material .form-control.focus.is-invalid,
.form-material .form-control:focus.is-invalid {
  background-image: -webkit-gradient(linear, left top, left bottom, from(#dc3545), to(#dc3545)), -webkit-gradient(linear, left top, left bottom, from(#dc3545), to(#dc3545));
  background-image: -webkit-linear-gradient(#dc3545, #dc3545), -webkit-linear-gradient(#dc3545, #dc3545);
  background-image: -o-linear-gradient(#dc3545, #dc3545), -o-linear-gradient(#dc3545, #dc3545);
  background-image: linear-gradient(#dc3545, #dc3545), linear-gradient(#dc3545, #dc3545);
}
.form_error{
  color: #F44336;
  font-style: italic;
  font-size: 14px;
}

/*******************
Form Pickers
******************/
.asColorPicker-dropdown {
  max-width: 260px; }

.asColorPicker-trigger {
  position: absolute;
  top: 0;
  right: -35px;
  height: 38px;
  width: 37px;
  border: 0; }

.asColorPicker-clear {
  display: none;
  position: absolute;
  top: 5px;
  right: 10px;
  text-decoration: none; }

.daterangepicker td.active,
.daterangepicker td.active:hover {
  background-color: #398bf7; }

.datepicker table tr td.today,
.datepicker table tr td.today.disabled,
.datepicker table tr td.today.disabled:hover,
.datepicker table tr td.today:hover {
  background: #398bf7;
  color: #ffffff; }

.datepicker td,
.datepicker th {
  padding: 5px 10px; }


/*============================================================== 
Select2
============================================================== */
.select2.select2-container--default{
	margin-bottom: .5rem;
}
.select2.select2-container--default .select2-selection--single{
	height: auto;
  width: 100%;
  max-width: 100%;
  border: none;
  background-color: #cc328d;
  padding: .375rem .575rem;
  font-size: 13px;
  border-radius: .375rem;
}
.select2.select2-container--default .select2-selection--single .select2-selection__rendered {
	line-height: 1.2;
	font-weight: 500;
    color: #fff;
    padding-left: 0;
}
.select2-container--default .select2-selection--single .select2-selection__arrow {
	visibility: hidden;
}

.select2-container--default .select2-search__field,
.select2-container--default .select2-results__option{
	font-size: 13px;
}

/*.select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
  float: right;
  color: #ffffff;
  margin-right: 0px;
  margin-left: 4px; }

.select2-container--default .select2-selection--multiple .select2-selection__choice {
  background: #398bf7;
  color: #ffffff;
  border-color: #398bf7; }*/



/*******************
Table-Data Table
******************/
/*.dataTables_wrapper {
  padding-top: 10px; }

.dt-buttons {
  display: inline-block;
  padding-top: 5px;
  margin-bottom: 15px; }
  .dt-buttons .dt-button {
    padding: 5px 15px;
    border-radius: 4px;
    background: #398bf7;
    color: #ffffff;
    margin-right: 3px; }
    .dt-buttons .dt-button:hover {
      background: #2f3d4a; }

.dataTables_info,
.dataTables_length {
  display: inline-block; }

.dataTables_length {
  margin-top: 10px; }
  .dataTables_length select {
    border: 0;
    background-image: -webkit-gradient(linear, left top, left bottom, from(#398bf7), to(#398bf7)), -webkit-gradient(linear, left top, left bottom, from(#b1b8bb), to(#b1b8bb));
    background-image: -webkit-linear-gradient(#398bf7, #398bf7), -webkit-linear-gradient(#b1b8bb, #b1b8bb);
    background-image: -o-linear-gradient(#398bf7, #398bf7), -o-linear-gradient(#b1b8bb, #b1b8bb);
    background-image: linear-gradient(#398bf7, #398bf7), linear-gradient(#b1b8bb, #b1b8bb);
    background-size: 0 2px, 100% 1px;
    background-repeat: no-repeat;
    background-position: center bottom, center calc(100% - 1px);
    background-color: transparent;
    -webkit-transition: background 0s ease-out;
    -o-transition: background 0s ease-out;
    transition: background 0s ease-out;
    padding-bottom: 5px; }
    .dataTables_length select:focus {
      outline: none;
      background-image: -webkit-gradient(linear, left top, left bottom, from(#398bf7), to(#398bf7)), -webkit-gradient(linear, left top, left bottom, from(#b1b8bb), to(#b1b8bb));
      background-image: -webkit-linear-gradient(#398bf7, #398bf7), -webkit-linear-gradient(#b1b8bb, #b1b8bb);
      background-image: -o-linear-gradient(#398bf7, #398bf7), -o-linear-gradient(#b1b8bb, #b1b8bb);
      background-image: linear-gradient(#398bf7, #398bf7), linear-gradient(#b1b8bb, #b1b8bb);
      background-size: 100% 2px, 100% 1px;
      -webkit-box-shadow: none;
      box-shadow: none;
      -webkit-transition-duration: 0.3s;
      -o-transition-duration: 0.3s;
      transition-duration: 0.3s; }

.dataTables_filter {
  float: right;
  margin-top: 10px; }
  .dataTables_filter input {
    border: 0;
    background-image: -webkit-gradient(linear, left top, left bottom, from(#398bf7), to(#398bf7)), -webkit-gradient(linear, left top, left bottom, from(#b1b8bb), to(#b1b8bb));
    background-image: -webkit-linear-gradient(#398bf7, #398bf7), -webkit-linear-gradient(#b1b8bb, #b1b8bb);
    background-image: -o-linear-gradient(#398bf7, #398bf7), -o-linear-gradient(#b1b8bb, #b1b8bb);
    background-image: linear-gradient(#398bf7, #398bf7), linear-gradient(#b1b8bb, #b1b8bb);
    background-size: 0 2px, 100% 1px;
    background-repeat: no-repeat;
    background-position: center bottom, center calc(100% - 1px);
    background-color: transparent;
    -webkit-transition: background 0s ease-out;
    -o-transition: background 0s ease-out;
    transition: background 0s ease-out;
    float: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    border-radius: 0;
    margin-left: 10px; }
    .dataTables_filter input:focus {
      outline: none;
      background-image: -webkit-gradient(linear, left top, left bottom, from(#398bf7), to(#398bf7)), -webkit-gradient(linear, left top, left bottom, from(#b1b8bb), to(#b1b8bb));
      background-image: -webkit-linear-gradient(#398bf7, #398bf7), -webkit-linear-gradient(#b1b8bb, #b1b8bb);
      background-image: -o-linear-gradient(#398bf7, #398bf7), -o-linear-gradient(#b1b8bb, #b1b8bb);
      background-image: linear-gradient(#398bf7, #398bf7), linear-gradient(#b1b8bb, #b1b8bb);
      background-size: 100% 2px, 100% 1px;
      -webkit-box-shadow: none;
      box-shadow: none;
      -webkit-transition-duration: 0.3s;
      -o-transition-duration: 0.3s;
      transition-duration: 0.3s; }

table.dataTable thead .sorting,
table.dataTable thead .sorting_asc,
table.dataTable thead .sorting_desc,
table.dataTable thead .sorting_asc_disabled,
table.dataTable thead .sorting_desc_disabled {
  background: transparent; }

.dataTables_wrapper .dataTables_paginate {
  float: right;
  text-align: right;
  padding-top: 0.25em; }

.dataTables_wrapper .dataTables_paginate .paginate_button {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  display: inline-block;
  min-width: 1.5em;
  padding: 0.5em 1em;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  *cursor: hand;
  color: #67757c;
  border: 1px solid #ddd; }

.dataTables_wrapper .dataTables_paginate .paginate_button.current,
.dataTables_wrapper .dataTables_paginate .paginate_button.current:hover {
  color: #ffffff !important;
  border: 1px solid #398bf7;
  background-color: #398bf7; }

.dataTables_wrapper .dataTables_paginate .paginate_button.disabled,
.dataTables_wrapper .dataTables_paginate .paginate_button.disabled:hover,
.dataTables_wrapper .dataTables_paginate .paginate_button.disabled:active {
  cursor: default;
  color: #67757c;
  border: 1px solid #ddd;
  background: transparent;
  -webkit-box-shadow: none;
  box-shadow: none; }

.dataTables_wrapper .dataTables_paginate .paginate_button:hover {
  color: white;
  border: 1px solid #398bf7;
  background-color: #398bf7; }

.dataTables_wrapper .dataTables_paginate .paginate_button:active {
  outline: none;
  background-color: #67757c; }

.dataTables_wrapper .dataTables_paginate .ellipsis {
  padding: 0 1em; }
*/


/************************ADMIN*******************/
body.app{
  background-size: cover;
  background-position: center;
}

.auxiliares_page .menu_card_inner.__is_active{
  background-color: #6f68af;
}
.auxiliares_page .menu_card_inner.__is_active span{
  color: #fff;
  font-weight: 400;
}



/***Project Builder***/
.essential_project, .tarea_is_bonus{
  font-weight: 400;
  color: #FFC400;
}
.list_sesion {
  display: flex;
  display: -ms-flexbox;
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap;
}
.list_sesion .item_sesion{
  padding: .375rem .575rem;
  width: 7.25%;
  max-width: 7.25%;
  align-items: flex-start;
  cursor: pointer;
}
.list_sesion .item_sesion > h4{
  font-size: 16.5px;
}
.list_sesion .item_sesion.medio{
  border: 4px #FFC107 solid;
}
.list_sesion .item_sesion.completo{
  border: 4px #4CAF50 solid;
}
.preview_sesion .card_lib{
  background-color: #fff;
  border-radius: .375rem;
  border: 1px solid #e0e0e0;
  padding: .475rem .875rem;
  max-width: 75%;
  margin-top: 28px;
}
.preview_sesion .det_prew_sesion{
  display: flex;
  display: -ms-flexbox;
  justify-content: space-between;
  align-items: flex-start;
  margin-top: 14px;
}
.preview_sesion .det_prew_sesion > .situacion_sesion{
  width: 35%;
  max-width: 35%;
  padding: 0 .875rem;
}
.preview_sesion .det_prew_sesion > .desc_sesion{
  width: 50%;
  max-width: 50%;
  padding: 0 .875rem;
}
.preview_sesion .det_prew_sesion > .herramientas_sesion{
  width: 15%;
  max-width: 15%;
  padding: 0 .875rem;
}
.preview_sesion .portada_sesion{
  display: flex;
  display: -ms-flexbox;
  align-items: center;
  margin-bottom: 14px;
}
.preview_sesion .portada_sesion > h4{
  margin-left: 14px;
}
.preview_sesion .portada_sesion > .input_files_preview{
  margin-left: 0;
}
.preview_sesion .herramientas_sesion > p:not(:first-child){
  margin-bottom: 1px;
}
.form_page.__sesion select.form-control{
  font-size: 15px;
}
.btn_plus{
  background-color: #cc328d;
  display: block;
  width: 20px;
  height: 20px;
  line-height: 20px;
  font-size: 12px;
  text-align: center;
  color: #fff;
  border-radius: 50%;
  margin-bottom: 20px;
  cursor: pointer;
}
.form_page.__proyecto .card_lib,
.form_page.__sesion .card_lib,
.form_tarea_page .card_lib{
  background-color: #eee;
  border-radius: .375rem;
  border: 1px solid #e0e0e0;
  padding: .475rem .875rem;
}
.form_page.__proyecto .card_lib:last-of-type,
.form_page.__sesion .card_lib:last-of-type,
.form_tarea_page .card_lib:last-of-type{
  border-right: 0;
}
.card_lib .card_lib_inner{
  display: flex;
  display: -ms-flexbox;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: nowrap;
}
.card_lib .card_lib_inner > .arbol_lib:not(:last-child){
  margin-right: 8px;
}
.card_lib.__rubricas .card_lib_inner > .arbol_lib{
  width: 25%;
  max-width: 25%;
}
.form_page.__proyecto .group_select_lib,
.form_page.__sesion .group_select_lib,
.form_tarea_page .group_select_lib{
  position: relative;
  display: flex;
  display: -ms-flexbox;
  align-items: flex-start;
}
.form_page.__proyecto .card_lib .input_lib,
.form_page.__sesion .card_lib .input_lib,
.form_tarea_page .card_lib .input_lib{
  height: auto;
  width: 100%;
  max-width: 100%;
  border: none;
  color: #fff;
  background-color: #cc328d;
  padding: .375rem .575rem;
  font-size: 13px;
}
.form_page.__proyecto .group_select_lib > i,
.form_page.__sesion .group_select_lib > i,
.form_tarea_page .group_select_lib > i,
.form_page.__sesion .card_lib.__rubricas .card_lib_inner > i{
  margin-left: 8px;
  opacity: 0;
  cursor: pointer;
}
.form_page.__proyecto .group_select_lib:hover > i,
.form_page.__sesion .group_select_lib:hover > i,
.form_tarea_page .group_select_lib:hover > i,
.form_page.__sesion .card_lib.__rubricas .card_lib_inner:hover > i{
  margin-left: 8px;
  opacity: 1;
}
.card_lib.__rubricas > .separ_criterio:last-child{
  display: none;
}
.form_page.__proyecto .dropify-wrapper,
.form_page.__sesion .dropify-wrapper,
.form_tarea_page .dropify-wrapper{
  height: 72px;
}
.form_page.__proyecto .dropify-wrapper + label,
.form_page.__sesion .dropify-wrapper + label,
.form_tarea_page .dropify-wrapper + label{
  color: #5a4fa1;
  font-size: 15px;
  font-weight: 400;
}
.form_page.__proyecto .dropify-wrapper > .dropify-message > p:not(.dropify-error),
.form_page.__sesion .dropify-wrapper > .dropify-message > p:not(.dropify-error),
.form_tarea_page .dropify-wrapper > .dropify-message > p:not(.dropify-error){
  display: none;
}
#editor_instrucciones, #editor_desafio{
  height: 420px;
}
#editor_alternativas {
  height: 120px;
}
.ql-snow.ql-toolbar button, .ql-snow .ql-toolbar button{
  width: auto!important;
}
.input_files{
  border: none;
  border-radius: .375rem;
  color: #fff;
  font-weight: 500;
  background-color: #cc328d;
  padding: .475rem .75rem;
  font-size: 15px;
}
.input_files_preview{
  border: 2px solid #5a4fa1;
  border-radius: 100%;
  display: inline-block;
  margin-left: 20px;
  vertical-align: middle;
  width: 90px;
  height: 90px;
  overflow: hidden;
}
.input_files_preview > .el_file{
  width: 100%;
  max-width: 100%;
  height: 100%;
  object-fit: cover;
}
.el_file_pdf{
  width: auto;
  display: inline-block;
  background-color: #fff;
  border: 2px solid #5a4fa1;
  color: #5a4fa1;
  font-weight: 500;
  padding: .375rem .575rem;
  font-size: 13px;
  border-radius: .375rem;
  margin-left: 8px;
  line-height: 1;
}
.dinamic_rubrica > i{
  position: absolute;
  top: 7px;
  right: 5px;
  cursor: pointer;
}
.form_skill_style .dinamic_rubrica .form-control + label {
  left: 35px;
}
.form_skill_style .card_lib.__rubricas textarea.form-control{
  font-size: 12px;
  line-height: 1.2;
}
.btn_mas_edu > i{
  display: inline-block;
}
.btn_mas_edu[aria-expanded="false"] > i{
  transform: rotate(0deg);
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  transition: transform 0.3s ease;
  -webkit-transition: transform 0.3s ease;
  -moz-transition: transform 0.3s ease;
}
.btn_mas_edu[aria-expanded="true"] > i{
  transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  transition: transform 0.3s ease;
  -webkit-transition: transform 0.3s ease;
  -moz-transition: transform 0.3s ease;
}
.check_tarea_ok{
	color: #76FF03;
}
.a_revisar{
  color: #F44336;
  font-style: italic;
}