/*******************************************************************************************/
/******************************* START LAWKIT GENERAL STYLES *******************************/
/*******************************************************************************************/

:root {
  --lawkit-blue-ryb: #0d4ffb;   /* Color name: Blue (RYB) */
  --lawkit-blue-azure: #007bff; /* Color name: Azure */
  --lawkit-blue-vc: #03a9f4;    /* Color name: Vivid Cerulean */
  --lawkit-blue-sdb: #25d4fc;   /* Color name: Spiro Disco Ball */
  --lawkit-purple-msb: #7b78fc; /* Color name: Medium Slate Blue */
  --lawkit-blue-yb : #13263e;     /* Color name: Yankees Blue. For header */
}

@font-face {
  font-family: "Pluto Sans";
  src: url("../fonts/PlutoSansRegular.otf") format("opentype");
}

* {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Pluto Sans", sans-serif;
}

/*** Lawkit colors definitions ***/
.bg-lk-blue {
  background-color: var(--lawkit-blue-ryb);
}

.bg-lk-blue-alt {
  background-color: var(--lawkit-blue-azure);
}

.bg-lk-blue-o2 {
  background-color: var(--lawkit-blue-vc);
}

.bg-lk-turquoise {
  background-color: var(--lawkit-blue-sdb);
}

.bg-lk-purple {
  background-color: var(--lawkit-purple-msb);
}

/*========= HEADER =========*/

nav {
  font-family: "Pluto Sans", sans-serif;
}

nav a.nav-link span {
  color: white;
}

.hide-mobile {
  display: none;
}

.nav__ {
    background-color: var(--lawkit-blue-yb);
    height: 80px;
    color: white;
}

.nav__container {
    display: flex;
    height: 100%;
    width: 90%;
    margin: 0 auto;
    justify-content: space-between;
    align-items: center;
}

.nav__ .nav-item { list-style: none; }

.nav__label, .nav__input {
    display: none;
}

.nav__menu {
    display: grid;
    grid-auto-flow: column;
    gap: 15px;
    align-items: center;
}

#userDropdown {
  color: white;
  text-decoration: none;
  font-size: 16px;
  position: relative;
  top: 1px;
}

#userDropdown:hover {
  text-decoration: none;
  color: white;
}

.nav__menu a {
  margin-top: 0px !important;
}

.nav__item {
	font-size: 16px;
    color: white;
    text-decoration: none;
    padding: .5rem 0;
}

.nav__item:hover {
  text-decoration: none;
  color: white;
}

div.nav__icons {
  display: flex;
  align-items: center;
}

#userDdown {
  background: white;
  border: none;
  z-index: 10;
  border-radius: 10px;
}

#userDropdown:hover + #userDdown {
  font-size: 10px;
}

/* Bootstrap override */
.dropdown-toggle::after {
  border-top-color: white;
  vertical-align: middle !important;
  border-top: .4em solid var(--lawkit-blue-sdb);
  border-right: .4em solid transparent;
  border-left: .4em solid transparent;
}

.dropdown__ {
  position: relative;
  display: inline-block;
  padding: 10px 0 10px 0;
}

.dropdown-content {
  display: none;
  position: absolute;
  top: 45px;
  background-color: #f9f9f9;
  min-width: 100%;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  padding: 10px 10px;
  z-index: 1;
  border-radius: 10px;
}

.dropdown-content:after{
    content:''; /* Required to display content */
    position: absolute; /* Sets the position absolute to the top div */
    top: 0;
    left: 50%;/* position the little arrow */
    margin-left: -10px;
    margin-top:-10px; /* Set margin equal to border px */
    width: 0;
    z-index:1;
    height: 0;
    border-bottom: solid 10px #FFF; /* Creates the arrow pointing up, to change to a notch instead user border-top */
    border-left: solid 10px transparent; /* Creates triangle effect */
    border-right: solid 10px transparent; /* Creates triangle effect */
}

.dropdown-content h6 {
  color: black;
}

.show-dropdown { display: block; }

.dropdown-item.link {
  text-align: left;
  padding-left: 0!important;
  font-size: .85rem;
}

.dropdown__:hover .dropdown-content {
  display: block;
}

.vertical-divider {
  border-left: 1px solid var(--lawkit-blue-sdb);
  height: 25px;
}
#dark-mode-li, #support { font-size: 30px; color: white; }

@media(max-width:  700px) {

    .hide-mobile {
      display: block;
    }
    
    .nav__label {
        display: block;
        cursor: pointer;
    }

    .nav__menu {
        position: fixed;
        top: 0px;
        bottom: 0;
        background: rgb(19, 38, 62);
        width: 70%;
        display: flex;
        /*justify-content: space-evenly; */
        flex-direction: column;
        align-items: center;
        left: -100%;
        /*clip-path: circle(0 at center); */
        transition: all .5s ease-in-out;
        padding: 50px;
        z-index: 10;
        box-shadow: 5px 5px 35px -15px #000000;
        -webkit-box-shadow: 5px 5px 35px -15px #000000;
        box-shadow: 5px 5px 35px -15px #000000;
    }

    .nav__input:checked + .nav__menu {
        /*clip-path: circle(100% at center);*/
        left: 0;
    }

    .vertical-divider { display: none; }

    #userDdown {
      position: relative !important;
      transform: none!important;
    }

    #userDropdown {
      margin-top: 0px !important;
    }

}

#dark-mode-li, #support {
  padding-top: 15px;
}

/*========= END NEW HEADER =====*/

/*******************************************************************************************/
/******************************** END LAWKIT GENERAL STYLES ********************************/
/*******************************************************************************************/
body{
	/* font-family: "IBM Plex Sans", sans-serif; */
	font-family: "Source Sans Pro", sans-serif;
}

.user-profile > img.photo-user {
  width: 58px;
  border-radius: 50%;
  padding: .5rem 1rem;
}
.user-profile > .email-user {
  color: white;
  font-size: 15px;
}
.btn-outline-purple {
  border: 1px solid purple;
  color: purple;
}
.btn-outline-purple:hover {
  background-color: var(--indigo);
  color: white;
}
.notification_day_color.SCprefix {
	background-color: var(--primary);
}
.sidebar-item{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.mk-sticky{
	position: -moz-sticky;
	position: -webkit-sticky;
	position: sticky;
	top: 67px;
}

/*** Header menu ***/

li.nav-item { list-style: none; }
a.nav-link { margin-top: 10px; }

/* Icons at the header, elements <i> with class 'fa' */
ul.navbar-nav i.fa {
  color: white;
  font-size: 1.6rem;
  padding: 4px;
}

/* Specifically the user icon */
ul.navbar-nav i.user-icon {
    background: #4f73df;
    border-radius: 50%;
    padding: 5px;
    font-size: 1.3rem;
}

/* User's apps and account multi column dropdown */
div.dropdown-multicol2{
  width: 10em;
  padding: 10px;
}
div.dropdown-multicol2>div.dropdown-col{
  display:inline-block;
  width: 32%;
}

/*  Boostrap bs.min.css has diffrent style for this, than sb-admin.min.css.
    To avoid issues with bootstrap version, it is defined here.
*/
.dropdown .dropdown-menu {
  font-size: .85rem;
  color: #3a3b45;
}

.dropdown-multicol2 h6 {
  font-size: 1rem;
  color: #13263e;
}

.my-account-col {
  border-left: 1px solid #e5e5e5;
}

.my-account-col .dropdown-item {
  padding-left: 0px;
}

/* Suggestions modal */


/*** Responsive design ***/
/* 
  ##Device = Low Resolution Tablets, Mobiles (Landscape)
  ##Screen = B/w 481px to 767px
*/

@media (min-width: 481px) and (max-width: 767px) {
  
  /* CSS */
  div.dropdown-multicol2 {
    width: 100%;
  }
  
  .my-account-col {
    padding-top: 5px;
    border-left: none;
  }

  .my-account-col .dropdown-item {
    padding-left: 1.5rem;
  }

  .dropdown-multicol2 h6 {
    padding-left: 1.2rem;
  }

  .navbar-nav {
    flex-direction: inherit;
  }

}

/* 
  ##Device = Most of the Smartphones Mobiles (Portrait)
  ##Screen = B/w 320px to 479px
*/

@media (min-width: 320px) and (max-width: 480px) {
  
  /* CSS */
  div.dropdown-multicol2 {
    width: 100%;
  }
  
  .my-account-col {
    padding-top: 5px;
    border-left: none;
  }

  .my-account-col .dropdown-item {
    padding-left: 1.5rem;
  }
  
  .dropdown-multicol2 h6 {
    padding-left: 1.2rem;
  }

  .navbar-nav {
    flex-direction: inherit;
  }
  
}


/*** Lawkit input fields ***/

.lawkit-input {
    outline: none;
    margin: 0;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
    width: 100%;
    font-size: 14px;
    font-family: inherit;
    font-weight: 500;
    padding: 10px !important;
    height: 40px;
    border: 1px solid #e5e5e5;
    border-radius: 5px;
    color: #666;
}

.lawkit-input:focus {
  border: 1px solid #000;
}

/*** Custom buttons ***/

.lawkit-btn {
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    border-radius: 8px;
    height: auto;
    line-height: 20px;
    color: #fff;
    width: 100%;
    font-size: 14px;
    font-weight: 400;
    padding: 8px;
    text-decoration: none;
    display: inline-block;
    cursor: pointer;
    text-align: center;
    transition: all 0.3s ease 0s;
    border: none !important;
}

.lawkit-btn:hover {
    background: #fff;
    color: #172b4d;
    border: solid #e4e4e4 1px;
    text-decoration: none;
    -webkit-box-shadow: 1px 1px 10px 2px #bfbfbf;
    -moz-box-shadow: 1px 1px 10px 2px #BFBFBF;
    box-shadow: 1px 1px 10px 2px #bfbfbf;
}

.lawkit-btn:focus {
  outline: none !important;
}

.lawkit-btn-circle {
    border-radius: 50%;
    padding: 10px;
}

.lawkit-btn-circle:hover 
{
    background-color: white;
    box-shadow: 0 2px 5px rgb(0 0 0 / 45%);
}

/* END GENERAL CSS STYLES FOR LAWKIT APPS */

#userDropdown { position: relative; top: 2px;}

.navbar-toggler:not(.collapsed) > .navbar-menu-icon.x{
	display: block;
}
.navbar-toggler:not(.collapsed) > .navbar-menu-icon.menu{
	display: none;
}
.navbar-toggler{
    outline: none !important;
}
.navbar-menu-icon{
	stroke: white;
	width: 32px;
	height: 32px;
}
.navbar-menu-icon.x{
	display: none;
}
.card.no-button {
  border: none;
}
.card.no-button > .btn.focus, .btn:focus {
  box-shadow: none !important;
  text-decoration: none !important;
  color: #333;
}
.card.no-button > .btn {
  color: #333 !important;
}
.card.no-button, .btn-link {
  color: #333 !important;
}
.mkSlide.badge.custom-badge {
	background: var(--light);
	text-align: center;
	min-width: 7em;
	border: 1px solid #ccc;
	padding: .5em;
	margin: 0 .3rem;
}
	.sh-mobile{
		display: none;
	}
footer {
	background: #333;
	height: 20em;
	margin-top: 10em;
}
.large-max-width-4em{
	max-width: 4em;
}
.large-height{
	height: 26em;
}

.bg-disabled {
	background-color: rgba(0,0,0,0.1);
}
/*==================================
=            fab button            =
==================================*/
.btn-group-fab {
  position: fixed;
  width: 50px;
  height: auto;
  right: 20px; bottom: 20px;
  z-index: 1050;
}
.btn-group-fab div {
  position: relative; width: 100%;
  height: auto;
}
.btn-group-fab .btn {
	box-shadow:0 3px 1px -2px rgba(0,0,0,.2),0 2px 2px 0 rgba(0,0,0,.14),0 1px 5px 0 rgba(0,0,0,.12);
  position: absolute;
  bottom: 0;
  border-radius: 50%;
  display: block;
  margin-bottom: 4px;
  width: 50px; height: 50px;
  margin: 4px auto;
}
.btn-group-fab .btn-main {
  width: 50px; height: 50px;
  right: 50%; margin-right: -25px;
  z-index: 9;
}
.btn-group-fab .btn-sub {
  bottom: 0; z-index: 8;
  right: 50%;
  margin-right: -25px;
  -webkit-transition: all 2s;
  transition: all 0.3s;
}
.btn-group-fab.active .btn-sub:nth-child(2) {
  bottom: 60px;
}
.btn-group-fab.active .btn-sub:nth-child(3) {
  bottom: 120px;
}
.btn-group-fab.active .btn-sub:nth-child(4) {
  bottom: 180px;
}
.btn-group-fab .btn-sub:nth-child(5) {
  bottom: 210px;
}
/*=====  End of fab button  ======*/
.SCprefix {
	background: rgba(0,0,0,0.07);
	width: 1.5em;
	height: 1.5em;
	margin: 0 auto;
}
.has-event {
	background-color: var(--indigo);
	color: white;
	height: 1.5em;
	width: 1.5em;
	border-radius: 50%;
	margin: 0 auto;
}
.fill-screen th {
	max-height: 10px !important;
	text-align: center;
	height: 10px;
	padding: 0;
	border-top: 0 !important;
	border-bottom: 0 !important;
}
.btn-navigation {
	border: none;
	background: none;
	color: #043d62;
	vertical-align: -moz-middle-with-baseline;
}
div#list-info .list-group-item:last-child {
	border: 1px solid red !important;
	color: red !important;
}
.btn-indigo:hover{
	color: white !important;
	background-color: #500cbf;
}
.menu-color{
	stroke:#043d62;
}
.has-event.today {
/*	 background: rgb(255,193,7);
background: -moz-linear-gradient(180deg, rgba(255,193,7,1) 45%, rgba(102,16,242,1) 55%);
background: -webkit-linear-gradient(180deg, rgba(255,193,7,1) 45%, rgba(102,16,242,1) 55%);
background: linear-gradient(180deg, rgba(255,193,7,1) 45%, rgba(102,16,242,1) 55%);
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ffc107",endColorstr="#6610f2",GradientType=1); */
}
.effect.today {
	background: rgb(255,193,7);
	background: -moz-linear-gradient(180deg, rgba(255,193,7,1) 50%, rgba(52,58,64,1) 50%);
	background: -webkit-linear-gradient(180deg, rgba(255,193,7,1) 50%, rgba(52,58,64,1) 50%);
	background: linear-gradient(180deg, rgba(255,193,7,1) 50%, rgba(52,58,64,1) 50%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ffc107",endColorstr="#343a40",GradientType=1);
}
.w-15{
	width: 15px;
}
.container-button-fab {
  position: fixed;
  z-index: 1050;
  right: 0;
  bottom: 0;
  margin-right: 1em;
  margin-bottom: 1em;
}
.btn.fab.btn-fab-primary {
  background-color: #043d62;
  border-radius: 100%;
  height: 50px;
  width: 50px;
  color: white;
}
td.effect {
	background-color: var(--dark);
}
a.list-group-item-action > span{
	display: block;
	width: 100%;
} 
a.list-group-item-action > span:first-child{
	color: steelblue;
}
svg.feather-chevrons-right{
	-webkit-transition: all .25s ease;
	   -moz-transition: all .25s ease;
	    -ms-transition: all .25s ease;
	     -o-transition: all .25s ease;
	        transition: all .25s ease;
}
svg.feather-chevrons-right.rotate {
	transform: rotate(90deg);
}
.form-control.just-text {
	border: none;
	pointer-events: none;
	padding: 0 !important;
	margin: 0 !important;
}
.form-control.just-text:active {
  border: none;
  box-shadow: none;
}
.form-control.just-text:focus {
  box-shadow: none;
  border: none;
}
.form-control.just-text:hover{
  border: none;
  box-shadow: none;
}
.afloat {
  position: fixed;
  bottom: 0;
  z-index: 1030;
  width: 100%;
}
.afloat > div.alert {
  margin: 0;
  border: none !important;
}
.defligg-1{
	background-color: #8BC6EC;
}
.defligg{
	background-color: #8BC6EC;
background-image: linear-gradient(180deg, #8BC6EC 0%, #9599E2 100%);

}
.defdarg{
	background: #141E30;  /* fallback for old browsers */
background: -webkit-linear-gradient(to top, #243B55, #141E30);  /* Chrome 10-25, Safari 5.1-6 */
background: linear-gradient(to top, #243B55, #141E30); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
}
.black-line-white-fill{
	stroke: black;
	fill: white;
}
.svg-theme{
	stroke:#007bff;
}
.border-theme{
	border:2px solid #007bff;
}
/*=======================================
=            calendar styles            =
=======================================*/


/** COLORES **/
.surte_efecto_color {
	background-color: var(--dark);
	color: #FFF !important;
	height: 1.5em;
	width: 1.5em;
	margin: 0 auto;
	border-radius: 50%;
}
.isEndDay.has-event {
	background-color: var(--danger) !important;
}
.isFirstDay.has-event {
	background-color: var(--success);
	border-radius: 50%;
	height: 1.5em;
	width: 1.5em;
	margin: 0 auto;
	color: white;
}
.isFestive {
	background-color: darkred !important;
	height: 1.5em;
	width: 1.5em;
	border-radius: 50%;
	margin: 0 auto;
	color: white;
}
.today {
	background: var(--warning);
	border-radius: 50%;
	max-width: 1.5em;
	height: 1.5em;
	margin: 0 auto;
	color: #333;
}

/** POST **/
.notification_day_color.data-posted {
	background-color: var(--primary);
	color: white;
	height: 1.5em;
	width: 1.5em;
	border-radius: 50%;
	margin: 0 auto;
}
.data-posted.surte_efecto_color.today{
	background: var(--dark);
}

.event {
	width: 10px;
	height: 10px;
	background: var(--indigo);
	bottom: 5%;
	position: absolute;
	transform: translate(-50%,-50%);
	left: 50%;
	border-radius: 50%;
}

.has-event:hover{
	cursor: pointer;
}
.has-event .span-event {
	cursor: pointer;
	display: none;
	background: #333;
	color: white;
	position: absolute;
	top: 0.4rem;
	width: 2em;
	border-radius: 35%;
	font-weight: bold;
	text-align: center;
	font-size: 20px;
	height: 2em;
	line-height: 2em;
	transform: translate(-50%,-50%);
	left: 50%;
}

.has-event .span-event:after {
           content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: #333 transparent transparent transparent;
}

.has-event:hover > .span-event {
	display: block;
}
.span-event{
	display: none;
}

.btn-indigo {
	background-color: var(--indigo);
	color: white;
}
.feather.feather-circle.icon-calendar-info.orange {
  fill: orange;
  stroke-width: 0;
}
.feather.feather-circle.icon-calendar-info.indigo {
  fill: var(--indigo);
  stroke-width: 0;
}
.feather.feather-circle.icon-calendar-info.excluded {
  fill: rgba(0,0,0,0.2);
  stroke-width: 0;
}
.th-style-text{
	font-size: 1.5rem;
	font-weight: bold !important;
	color: #333;
}
.btn.bg-indigo {
	background-color: var(--indigo);
	color: white;
}

.chevrons-calendar{
	width:30px !important;
	height:30px !important;
}
.left-cell {
  max-width: 15%;
  width: 15%;
  background-color: var(--indigo);
}
.right-cell {
  width: 85%;
}

.table-calendar {
  width: 100%;
  height: 100%;
}
.table-calendar th, td {
  font-size: 1.3rem;
  font-weight: lighter !important;
  color: #666;
  text-align: center;
}

.table tr td {
	position: relative;
	vertical-align: middle;
	width: calc(100%/7);
	/*height: calc(100%/5); */
	height: 105px;
}
/*.events {
	position: absolute;
	background-color: #4682b433;
	z-index: 1;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	bottom: 0;
	border: 1px solid #4682b4;
}
.event{
	display: none;
}
.events:hover > .event {
	cursor: pointer;
	display: block;
	background: #333;
	color: white;
	position: absolute;
	top: -3rem;
	width: 2em;
	border-radius: 50%;
	font-weight: bold;
	text-align: center;
	font-size: 2em;
	height: 2em;
	line-height: 2em;
}*/

/*=====  End of calendar styles  ======*/
.feather-25{
	width: 25px !important;
	height: 25px !important;
}
.mx-10 {
	max-height: 10em;
	border: 1px solid #ccc;
	padding: 0.5rem;
	border-radius: 5px;
}
.oy-1 {
	overflow: hidden;
	overflow-y: scroll;
}
.mt5{
  padding-top: 5rem;
}
.width-100{
  width: 100% !important;
}
.custom-width{
	width: 100% !important;
	padding: 1% !important;
}


/*=====================================
=            notifications            =
=====================================*/
.alert-success {
	color: #fff;
	background-color: #0bac2f;
	border-color: #c3e6cb;
}
.alert-danger {
	color: #f8d7da;
	background-color: #721c24;
	border-color: #f5c6cb;
}
/*=====  End of notifications  ======*/

/*=====================================
=            calendar icon            =
=====================================*/

.calendar-icon {
  width: 60px;
  display: block;
  box-shadow: 0 .5rem 1rem rgba(0,0,0,.15) !important;
  margin-right: 1rem;
  background-color: rgba(0,0,0,0.03);
}
.calendar-icon-header {
  background: darkred;
  text-align: center;
  border-radius: 5px 5px 0 0;
}
.calendar-icon-month {
  font-size: 12px;
  color: white;
  vertical-align: middle;
}
.calendar-icon-body {
  display: block;
}
.calendar-icon-number > span {
  color: #333;
  font-weight: bold;
  font-size: 14px;
}
.calendar-icon-number {
  text-align: center;
  display: block;
  line-height:14px;
}
.calendar-icon-day {
  text-align: center;
  font-size: 10px;
}


/*=====  End of calendar icon  ======*/


/*=================================
=            timelines            =
=================================*/
ul.timeline {
    list-style-type: none;
    position: relative;
}
ul.timeline:before {
    content: ' ';
    background: #d4d9df;
    display: inline-block;
    position: absolute;
    left: 29px;
    width: 2px;
    height: 100%;
    z-index: 400;
}
ul.timeline > li {
    margin: 20px 0;
    padding-left: 20px;
}
ul.timeline > li:before {
    content: ' ';
    background: white;
    display: inline-block;
    position: absolute;
    border-radius: 50%;
    border: 3px solid #22c0e8;
    left: 20px;
    width: 20px;
    height: 20px;
    z-index: 400;
}


/*=====  End of timelines  ======*/
.dropup{
	display: none;
}
.w12rem{
	width: 1.2rem;
}
.icon-list-info {
	margin-right: 1rem;
	max-width: 1rem;
	stroke: none;
}
.svg-primary{
	fill: var(--primary);
}
.svg-warning {
	fill: var(--warning);
}
.svg-danger{
	fill: var(--danger);
}
.svg-dark-danger{
	fill: darkred;
}
.svg-dark{
	fill: var(--dark);
}
.svg-success{
	fill: var(--success);
}
.svg-purple{
	fill: var(--indigo);
}
.svg-default{
	fill: var(--gray);
}
.container-exclude {
	max-height: 400px;
	overflow: hidden;
	overflow-y: scroll;
}

.p-none{
	pointer-events: none !important;
	cursor: disabled;
}
@media (max-width: 768px) {
	.sh-mobile{
display: block !important;
	width: 100%;
	padding: 1rem;

	}
	.hom{
		display: none;
	}
	.hom-nom{
		margin: 0 !important;
	}
	.mob-view{
		padding: 0 !important;
	}
.dropup{
	display: block;
	position: fixed;
	right: 0;
	bottom: 0;
	margin-right: 1rem;
	margin-bottom: 1rem;
	z-index: 1090;
}
.btn-group-fab{
	display: none;
}

.media-mt-3 {
	margin-top: 1rem;
}
/*=======================================
=            calendar styles            =
=======================================*/

	.custom-calendar {
		height: 375px!important;
	}
	.chevrons-calendar{
		width:30px !important;
		height:30px !important;
	}
	.left-cell {
	  max-width: 15%;
	  width: 15%;
	  background-color: var(--indigo);
	}
	.right-cell {
	  width: 85%;
	}

	.table-calendar {
	  width: 100%;
	  height: 100%;
	}
	
	.SCprefix {
	  background: rgba(0,0,0,0.1);
	}
	.table-calendar{
		
	}
	.table-calendar > thead > tr > th{
		font-size: 1.5rem;
		font-weight: lighter !important;
		color: white;
		text-align: center;
		height: 60px;
	}
	.table-calendar > tbody > tr > td {
		font-weight: lighter !important;
		color: white;
		text-align: center;
		position: relative;
		width: calc(100%/7);
	}

	.table tr td{
		position: relative;
	}
/*	.events {
		position: absolute;
		background-color: #4682b433;
		z-index: 1;
		width: 100%;
		height: 100%;
		top: 0;
		left: 0;
		bottom: 0;
		border: 1px solid #4682b4;
	}*/
	/*.event{
		display: none;
	}*/
	/*.events:hover > .event {
		cursor: pointer;
		display: block;
		background: #333;
		color: white;
		position: absolute;
		top: -3rem;
		width: 2em;
		border-radius: 50%;
		font-weight: bold;
		text-align: center;
		font-size: 2em;
		height: 2em;
		line-height: 2em;
	}*/
	.today {
		background: var(--warning);
	}
	.col-md.calc-button-forms {
	width: calc(100%/5);
}
.calc-button-forms > button.btn > svg{
	
	width: 25px;
	height: 25px;
}
.media-fixed-bottom {
	bottom: 0;
	z-index: 1030;
	left: 0;
	right: 0;
	position: fixed;
	background: white;
	height: auto;
	border-top: 1px solid #ccc;
}
	.hide-on-media {
		display: none;
	}
	.show-on-media {
		display: block;
	}
	.navbar-light .navbar-toggler{
		color:rgba(0,0,0,0.9);
	}
	/*=====  End of calendar styles  ======*/
}

/* Custom calendar */

.custom-calendar {
	height: 575px !important;
}

.custom-calendar-col {
	padding: 0rem 2rem 0rem 2rem;
}

.cc-col-options {
	padding: 1rem 2rem 1rem 2rem;
}

.custom-calendar > tbody > tr > td {
	font-size: 14px;
	font-weight: 600 !important;
	color: black;
}

.custom-calendar > thead {
	color: #8e8e8e;
}

.circle-num {
    display:inline-block;
    line-height: 0px;
    border-radius: 50%;
    border: 0px;
    font-size: 25px;
    height: 2.3rem;
    width: 2.3rem;
}

.circle-num > .number-c {
  font-size: 18px;
    display:inline-block;
    
    padding-top:50%;
    padding-bottom:50%;
    
    margin-left:8px;
    margin-right:8px;
}

.info-accordion, p {
	font-size: 18px !important;
}

/* Buttons */

.custom-button {
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    border-radius: 8px;
    height: auto;
    line-height: 20px;
    color: #fff;
    width: 100%;
    font-size: 14px;
    font-weight: 400;
    padding: 8px;
    background: #03a9f4;
    border: solid #03a9f4 1px;
    text-decoration: none;
    display: inline-block;
    cursor: pointer;
    text-align: center;
    /* box-shadow: 0 4px 3px -3px gainsboro; */
    transition: all 0.3s ease 0s;
}

.custom-button:hover {
    background: #fff;
    color: #172b4d;
    border: solid #e4e4e4 1px;
    text-decoration: none;
    box-shadow: 0 4px 3px -3px gainsboro;
}


.cbutton-secondary {
  background: #fff;
  color: #172b4d;
  border: solid #e4e4e4 1px;
}

.animated-btn{
	width: 100%;
}

.animated-btn span {
  padding-left: 4px;
  max-width: 0;
  -webkit-transition: max-width 1s;
  transition: max-width 1s;
  display: inline-block;
  vertical-align: top;
  white-space: nowrap;
  overflow: hidden;
}
.animated-btn:hover span {
  max-width: 7rem;
}

.cal-error:hover span {
	max-width: 11rem;
}

.actions-btn {
	width: 100%;
    border-radius: 10px;
    border: 1px solid #efefef;
    box-shadow: 0px 7px 13px -8px #bfbfbf;
    height: 40px;
    /* background: #dadada21; */
}

a.actions-b {
	color: black;
}

/* Divider hr */
.custom-hr-divider {
    margin-top: 30px;
    margin-bottom: 30px;
}

/* Form */

.cc-options {
	font-size: 15px;
}


/* Toggle switch */
.toggle-button-cover
{
    display: table-cell;
    position: relative;
    width: 200px;
    height: 140px;
    box-sizing: border-box;
}

.button-cover
{
    height: 100px;
    margin: 20px;
    background-color: #fff;
    box-shadow: 0 10px 20px -8px #c5d6d6;
    border-radius: 4px;
}

.button-cover:before
{
    counter-increment: button-counter;
    content: counter(button-counter);
    position: absolute;
    right: 0;
    bottom: 0;
    color: #d7e3e3;
    font-size: 12px;
    line-height: 1;
    padding: 5px;
}

.button-cover, .knobs, .layer
{
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

.custom-toggle
{
    position: relative;
    /*top: 50%;*/
    width: 74px;
    height: 36px;
    /*margin: -20px auto 0 auto;*/
    overflow: hidden;
}

.custom-toggle.r, .custom-toggle.r .layer
{
    border-radius: 100px;
}

.custom-toggle.toggle2
{
    border-radius: 2px;
}

.checkbox
{
    position: relative;
    width: 100%;
    height: 100%;
    padding: 0;
    margin: 0;
    opacity: 0;
    cursor: pointer;
    z-index: 3;
}

.knobs
{
    z-index: 2;
}

.layer
{
    width: 100%;
    background-color: #ebf7fc;
    transition: 0.3s ease all;
    z-index: 1;
}

#button-11
{
    overflow: visible;
}

#button-11 .knobs
{
    perspective: 70px;
}

#button-11 .knobs:before, #button-11 .knobs:after, #button-11 .knobs span
{
    position: absolute;
    top: 4px;
    border-radius: 2px;
}

#button-11 .knobs:before, #button-11 .knobs:after
{
    width: 20px;
    height: 10px;
    color: #4e4e4e;
    font-size: 10px;
    font-weight: bold;
    text-align: center;
    line-height: 1;
    padding: 9px 4px;
}

#button-11 .knobs:before
{
    content: 'NO';
    left: 9px;
    top: 5px
}

#button-11 .knobs:after
{
    content: 'SÍ';
    right: 9px;
    top: 5px;
}

#button-11 .knobs span
{
    right: 4px;
    width: 33px;
    height: 28px;
    background-color: var(--danger);
    transform: rotateY(0);
    transform-origin: 0% 50%;
    transition: 0.6s ease all;
    z-index: 1;
}

#button-11 .checkbox:checked + .knobs span
{
    transform: rotateY(-180deg);
    background-color: var(--primary);
}

#button-11 .checkbox:checked ~ .layer
{
    background-color: #fcebeb;
}

/* Input fields */

/* Login form password field */ 
.icon-input-div > .input-group-append > .input-group-text {
    border: solid #e4e4e4 1px;
    background-color: transparent;
}

.icon-input-div > .form-control:focus {
    background-color: #fff;
    border-color: #000;
    outline: 0;
    box-shadow: none;
}

.form-control:focus {
	    box-shadow: none;
}

.std-input {
    outline: none;
    margin: 0;
    border: none;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
    width: 100%;
    font-size: 14px;
    font-family: inherit;
    padding: 10px !important;
    height: 30px;
}

.std-input-s2 {
    border: 1px solid #e5e5e5;
    padding: 9px 0;
    color: #666;
    font-weight: 500;
}

.std-input-s2:focus {
  border: 1px solid #000;
}
.std-input {
    outline: none;
    margin: 0;
    border: none;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
    width: 100%;
    font-size: 14px;
    font-family: inherit;
    padding: 10px !important;
    height: 30px;
}

.std-input-s2 {
    border: 1px solid #e5e5e5;
    padding: 9px 0;
    color: #666;
    font-weight: 500;
}

.std-input-select {
  height: 40px;
}

.custom-select:focus {
	box-shadow: none;
}

.mobile-logo {
	display: none;
}

/* Login page */
.vertical-align-container {
  position: absolute;
  width: 100%;
  height: 100%;
  display: table;
}

.vertical-align-middle {
  display: table-cell;
  vertical-align: middle; }

 #wrapper {
    height: 100%;
}

    @media screen and (min-width: 992px) {
    .auth-box { width: 65% !important; }
  }


/* Login page */

.auth-box {
    -moz-box-shadow: 1px 2px 10px 0 rgba(0, 0, 0, 0.1);
    -webkit-box-shadow: 1px 2px 10px 0 rgba(0, 0, 0, 0.1);
    box-shadow: 1px 2px 10px 0 rgba(0, 0, 0, 0.1);
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    width: 60%;
    height: 450px;
    margin: 0 auto;
    /* background-color: #fff; */
}
.auth-box:before {
    display: inline-block;
    vertical-align: middle;
    vertical-align: auto;
    zoom: 1;
    display: inline;
    content: " ";
    vertical-align: middle;
    height: 100%;
}
.auth-box .content {
    display: inline-block !important;
    vertical-align: middle;
    vertical-align: auto;
    zoom: 1;
    display: inline;
    width: 99%;
    vertical-align: middle;
}
.auth-box .left {
    float: left;
    width: 50%;
    height: 100%;
    padding: 0 30px;
    text-align: center;
    background: #fff;
}
.auth-box .left:before {
    display: inline-block;
    vertical-align: middle;
    *vertical-align: auto;
    *zoom: 1;
    *display: inline;
    content: " ";
    vertical-align: middle;
    height: 100%;
}
.auth-box .right {
    float: right;
    width: 50%;
    height: 100%;
    position: relative;
    background-repeat: no-repeat;
    background-size: cover;
}
.auth-box .right:before {
    display: inline-block;
    vertical-align: middle;
    *vertical-align: auto;
    *zoom: 1;
    *display: inline;
    content: " ";
    vertical-align: middle;
    height: 100%;
}
.auth-box .right .text {
    position: relative;
    padding: 0 30px;
    color: #fff;
}
.auth-box .right .heading {
    margin-top: 0;
    margin-bottom: 5px;
    font-size: 64px;
    font-weight: 300;
}
.auth-box .right p {
    margin: 0;
    font-size: 18px;
    font-weight: 300;
}
.auth-box .right .overlay {
    position: absolute;
    top: 0;
    display: block;
    width: 100%;
    height: 100%;
    background: rgb(179 179 179 / 18%);
}

.watermark img {
		width: 600px;
	}


@media screen and (max-width: 1279px) {
    .auth-box {
        width: 90%;
    }
    .auth-box .left {
        top: 3.3em;
    }
    .watermark {

		position: relative;
		/*top: 45%;*/
		top: -320px !important;
		left: 150px !important;
		transform: rotate(25deg);
	}

	.watermark img {
		width: 500px;
	}
}
@media screen and (max-width: 1023px) {
    .auth-box .left {
        width: 100%;
        position: inherit;
        padding: 30px;
    }
    .auth-box .right {
        display: none;
    }
    .watermark {

		position: relative;
		/*top: 45%;*/
		top: -355px;
		left: 20px;
		transform: rotate(25deg);

	}

	.watermark img {
		width: 400px;
	}
}
@media screen and (max-width: 992px) {
	.mobile-logo {
		display: inherit;
		padding-bottom: 2rem;
	}
    .auth-box {
        width: 70%;
    }

    .animated-btn {
    	background: ;
    }

    .animated-btn span {
  		max-width: 7rem !important;
	}
	.watermark {

		position: relative;
		/*top: 45%;*/
		top: -355px !important;
		left: 65px !important;
		transform: rotate(25deg);
	}

	.watermark img {
		width: 350px;
	}
}
@media screen and (max-width: 640px) {

	.dropdown-apps {
        width: 325px !important;
    }

	.mobile-logo {
		display: inherit;
		padding-bottom: 2rem;
	}
	#clavel-logo {
		width: 200px;
		height: 300px;
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            animation: fill 0.5s ease forwards 2s;
        }

    .auth-box {
        width: 90%;
    }
    .auth-box .content {
        width: 95%;
    }
}


/*.animated-logo:hover {
	transform: rotateY(180deg);
	transition: transform 0.8s;
  transform-style: preserve-3d;
} */

.hidden {
    display: none;
}

#clavel-logo {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            animation: fill 0.5s ease forwards 2s;
        }

        #clavel-logo path:nth-child(1){
            stroke-dasharray: 2523;
            stroke-dashoffset: 2523; 
            animation: line-anim 1.5s ease forwards;
        }
        #clavel-logo path:nth-child(2){
            stroke-dasharray: 1154px;
            stroke-dashoffset: 1154px;
            animation: line-anim 1.5s ease forwards 0.3s;
        }
        #clavel-logo path:nth-child(3){
            stroke-dasharray: 1099px;
            stroke-dashoffset: 1099px;
            animation: line-anim 1.5s ease forwards 0.6s;
        }
        #clavel-logo path:nth-child(4){
            stroke-dasharray: 881px;
            stroke-dashoffset: 881px;
            animation: line-anim 1.5s ease forwards 0.9s;
        }
        #clavel-logo path:nth-child(5){
            stroke-dasharray: 1184px;
            stroke-dashoffset: 1184px;
            animation: line-anim 1.5s ease forwards 1.2s;
        }
        #clavel-logo path:nth-child(6){
            stroke-dasharray: 1261px;
            stroke-dashoffset: 1261px;
            animation: line-anim 1.5s ease forwards 1.5s;
        }

        @keyframes line-anim{
            to{
                stroke-dashoffset: 0;
            }
        }

        @keyframes fill {
            from {
                fill: transparent;
            }
            to {
                fill: white;
            }
        }

#loader-container {
	background-color: black;
	height: 100%;
	width: 100%;
	position: fixed;
	--webkit-transition: all 1s ease;
	-o-transition: all 1s ease;
	transition: all 1s ease;
	z-index: 10000;
}

#loader {
	border: 16px solid #ccc;
	border-top: 
}

.bug-report img {
	filter: opacity(0.6);
}

.reset tr td {
	padding: 0;
	text-align: inherit;
	margin: 0;
	font-family: "Source Sans Pro";
	font-size: 14px;
	font-weight: 400 !important;
	color: #1f2d3d;
	text-align: center;
	padding-bottom: .45rem;
    padding-top: .45rem;
}

.reset thead th {
		font-family: "Source Sans Pro";
	text-align: center;
	text-transform: uppercase;
	border-top: 0px;
}

.reset .options {
	font-size: 20px;
	font-weight: 900;
}

a.actions{
	position: inherit;
    top: -5px;
}
a.actions:hover {
	text-decoration: none !important;
}



.notification_day_color .tooltiptext,
.surte_efecto_color .tooltiptext,
.isFestive .tooltiptext,
.today .tooltiptext {
  font-size: 13px;
    visibility: hidden;
    width: 120px;
    height: 30px;
    background-color: #333;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 14px 0;
    position: absolute;
    z-index: 1;
    bottom: 75%;
    left: 50%;
    margin-left: -60px;
    opacity: 0;
    transition: opacity 0.3s;
}

/*.has-event .tooltiptext {
	font-size: 25px;
	width: 50px;
	height: 40px;
	padding: 18px 0;
}*/

.notification_day_color .tooltiptext::after,
.surte_efecto_color .tooltiptext::after,
.isFestive .tooltiptext::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: #333 transparent transparent transparent;
}

.notification_day_color:hover .tooltiptext,
.surte_efecto_color:hover .tooltiptext,
.isFestive:hover .tooltiptext,
.today:hover .tooltiptext {
  visibility: visible;
  opacity: 1;
}

.watermark {

	position: relative;
	/*top: 45%;*/
	top: -400px;
	left: 0px;
	transform: rotate(25deg);
}

.watermark h1 {
	font-size: 4.5rem;
	color: #7b7b7b2b !important;
}

#calendar img {
	width: 10%;
}

#calendar svg {
	position: relative;
    top: -3px;
}

/* Datepicker */
.datepicker-days .table-condensed .today {
	background: #1890ff !important;
	color: white !important;
}

/* Ensemble socila share plugin override */
.share-intent {
  padding: 5px !important;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 18px;
}

/* Share and download calendar modals */
#share-calendar, #html2canvas-body-calendars {
  text-align: center;
  padding: 25px;
}