/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/ :root {
  scroll-behavior: smooth;
}
a {
  color: var(--color-links);
  text-decoration: none;
}
a:hover {
  color: var(--color-links-hover);
  text-decoration: none;
}
h3 {
  font-family: var(--font-primary);
  font-size: 19px;
  font-weight: 600;
}
h4 {
  font-family: var(--font-primary);
  font-size: 17px;
  font-weight: 600;
}
h5 {
  font-family: var(--font-primary);
  font-size: 15px;
  font-weight: 500;
}
h6 {
  font-family: var(--font-primary);
  font-size: 15px;
  font-weight: 400;
}
p {
  font-family: var(--font-primary);
  font-size: 15px;
  font-weight: 400;
}
body {
  background-color:white;
	margin: 0;
}
/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  overflow: hidden;
  background: var(--color-white);
  transition: all 0.6s ease-out;
  width: 100%;
  height: 100vh;
}
#preloader:before, #preloader:after {
  content: "";
  position: absolute;
  border: 4px solid var(--color-primary);
  border-radius: 50%;
  animation: animate-preloader 2s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}
#preloader:after {
  animation-delay: -0.5s;
}
@keyframes animate-preloader {
  0% {
    width: 10px;
    height: 10px;
    top: calc(50% - 5px);
    left: calc(50% - 5px);
    opacity: 1;
  }
  100% {
    width: 72px;
    height: 72px;
    top: calc(50% - 36px);
    left: calc(50% - 36px);
    opacity: 0;
  }
}
/*--------------------------------------------------------------
# Sections & Section Header
--------------------------------------------------------------*/
section {
  padding-bottom: 50px;
  ;
  overflow: hidden;
}
.section-header {
  text-align: center;
  padding-bottom: 40px;
}
.section-header h2 {
  font-size: 48px;
  font-weight: 300;
  margin-bottom: 20px;
  color: black;
}
.section-header p {
  margin: 0 auto;
  color: var(--color-secondary-light);
}
@media (min-width : 2125px) {
  .section-header p {
    max-width: 80%;
  }
}
/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 15px 0;
  background: rgba(var(--color-secondary-rgb), 0.05);
  min-height: 40px;
  margin-top: 76px;
}
.breadcrumbs h2 {
  font-size: 30px;
  font-weight: 300;
  margin: 0;
}
.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
}
.breadcrumbs ol li + li {
  padding-left: 10px;
}
.breadcrumbs ol li + li::before {
  display: inline-block;
  padding-right: 10px;
  color: var(--color-secondary-light);
  content: "/";
}
@media (max-width: 992px) {
  .breadcrumbs .d-flex {
    display: block !important;
  }
  .breadcrumbs h2 {
    margin-bottom: 10px;
    font-size: 24px;
  }
  .breadcrumbs ol {
    display: block;
  }
  .breadcrumbs ol li {
    display: inline-block;
  }
}
/*--------------------------------------------------------------
# Scroll top button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 995;
  background: var(--color-primary);
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}
.scroll-top i {
  font-size: 24px;
  color: var(--color-white);
  line-height: 0;
}
.scroll-top:hover {
  background: rgba(var(--color-primary-rgb), 0.85);
  color: var(--color-white);
}
.scroll-top.active {
  visibility: visible;
  opacity: 1;
}
/*--------------------------------------------------------------
# DESACTIVAR ANIMACIONES EN MOBILE
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}
/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
.header {
  padding: 10px 0;
  transition: all 0.5s;
  z-index: 997;
  background-color: black;
}
.header.sticked {
  background: black;
  box-shadow: 0px 2px 20px rgba(var(--color-secondary-rgb), 0.1);
}
.header .logo img {
  max-height: 40px;
  margin-right: 6px;
	margin-left: 10%;
}
.header .logo h1 {
  font-size: 18px;
  font-weight: 300;
  color: var(--color-secondary);
  font-family: var(--font-secondary);
}
.header .logo h1 span {
  color: var(--color-primary);
  font-weight: 500;
}
.header .btn-getstarted, .header .btn-getstarted:focus {
  font-size: 14px;
  color: var(--color-white);
  background: var(--color-primary);
  padding: 10px 30px;
	margin-right: 2%;
  border-radius: 4px;
  transition: 0.3s;
  font-family: var(--font-secondary);
}
.header .btn-getstarted:hover, .header .btn-getstarted:focus:hover {
  color: var(--color-white);
  background: rgba(var(--color-primary-rgb), 0.85);
}
@media (max-width: 1279px) {
  .header .btn-getstarted, .header .btn-getstarted:focus {
    margin-right: 50px;
  }
}
@media (max-width:768px) {
  .header .btn-getstarted {
    padding: 7px 20px 7px 20px;
    border-radius: 4px;
    font-size: 8px;
  }
}
/*--------------------------------------------------------------
# NAV ESCRITORIO
--------------------------------------------------------------*/
.navbar {
  padding: 0;
  position: relative;
}
.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}
.navbar li {
  position: relative;
}
.navbar > ul > li {
  white-space: nowrap;
}
.navbar a, .navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px;
  font-family: var(--font-primary);
  font-size: 16px;
  font-weight: 400;
  color: white;
  white-space: nowrap;
  transition: 0.3s;
  position: relative;
}
.navbar a i, .navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}
.navbar > ul > li > a:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: var(--color-primary);
  visibility: hidden;
  transition: all 0.3s ease-in-out 0s;
  transform: scaleX(0);
 
}
.navbar a:hover:before, .navbar li:hover > a:before, .navbar .active:before {
  visibility: visible;
  transform: scaleX(0.7);
}
.navbar a:hover, .navbar .active, .navbar .active:focus, .navbar li:hover > a {
  color: var(--color-primary);
}
.navbar .dropdown a:hover:before, .navbar .dropdown:hover > a:before, .navbar .dropdown .active:before {
  visibility: hidden;
}
.navbar .dropdown a:hover, .navbar .dropdown .active, .navbar .dropdown .active:focus, .navbar .dropdown:hover > a {
  color: var(--color-white);
  background: var(--color-secondary);
}
.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 0;
  top: 100%;
  margin: 0;
  padding: 0 0 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: var(--color-secondary);
  transition: 0.3s;
}
.navbar .dropdown ul li {
  min-width: 200px;
}
.navbar .dropdown ul a {
  padding: 10px 20px;
  font-size: 15px;
  text-transform: none;
  font-weight: 400;
  color: rgba(var(--color-white-rgb), 0.5);
}
.navbar .dropdown ul a i {
  font-size: 12px;
}
.navbar .dropdown ul a:hover, .navbar .dropdown ul .active, .navbar .dropdown ul .active:hover, .navbar .dropdown ul li:hover > a {
  color: var(--color-white);
  background: var(--color-primary);
}
.navbar .dropdown:hover > ul {
  opacity: 1;
  visibility: visible;
}
.navbar .megamenu {
  position: static;
}
.navbar .megamenu ul {
  right: 0;
  padding: 10px;
  display: flex;
}
.navbar .megamenu ul li {
  flex: 1;
}
.navbar .megamenu ul li a, .navbar .megamenu ul li:hover > a {
  color: rgba(var(--color-white-rgb), 0.5);
  background: none;
}
.navbar .megamenu ul li a:hover, .navbar .megamenu ul li .active, .navbar .megamenu ul li .active:hover {
  color: var(--color-white);
  background: var(--color-primary);
}
.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}
.navbar .dropdown .dropdown:hover > ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}
/*--------------------------------------------------------------
# NAV MOBILE
--------------------------------------------------------------*/
@media (max-width: 768px) {
  .navbar {
    position: fixed;
    top: 0;
    left: -100%;
    width: calc(100% - 70px);
    bottom: 0;
    transition: 0.3s;
    z-index: 9997;
  }
  .navbar ul {
    position: absolute;
    inset: 0;
    padding: 10px 10;
    margin: 10px;
    background: rgba(var(--color-secondary-rgb), 0.9);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
  }
  .navbar a, .navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 20px;
    font-size: 16px;
    font-weight: 500;
    color: rgba(var(--color-white-rgb), 0.7);
    white-space: nowrap;
    transition: 0.3s;
  }
  .navbar a i, .navbar a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
  }
  .navbar a:hover, .navbar .active, .navbar .active:focus, .navbar li:hover > a {
    color: var(--color-white);
  }
  .navbar .dropdown ul, .navbar .dropdown .dropdown ul {
    position: static;
    display: none;
    padding: 10px 0;
    margin: 10px 20px;
    transition: all 0.5s ease-in-out;
    border: 1px solid rgba(var(--color-secondary-light-rgb), 0.3);
  }
  .navbar .dropdown > .dropdown-active, .navbar .dropdown .dropdown > .dropdown-active {
    display: block;
  }
  .mobile-nav-toggle {
    display: block !important;
    color: var(--color-secondary);
    font-size: 28px;
    cursor: pointer;
    line-height: 0;
    transition: 0.5s;
    position: fixed;
    top: 20px;
    z-index: 9999;
    right: 20px;
  }
  .mobile-nav-toggle.bi-x {
    color: var(--color-white);
  }
  .mobile-nav-active {
    overflow: hidden;
    z-index: 9995;
    position: relative;
  }
  .mobile-nav-active .navbar {
    left: 0;
  }
  .mobile-nav-active .navbar:before {
    content: "";
    position: fixed;
    inset: 0;
    background: rgba(var(--color-secondary-rgb), 0.8);
    z-index: 9996;
  }
}
/*--------------------------------------------------------------
#Seccion mi escritorio
--------------------------------------------------------------*/
 

.tab-content {
  margin-left: 9%;
  margin-right: 9%;
  margin-top: 20px;
}
@media (max-width:768px) {
  .tab-content {
    margin-left: 5px;
    margin-right: 5px;
  }
}
.gd-academy .nav-tabs {
  border: #000000;
  background: white;
  box-shadow: 1px 1px 7px 1px rgba(0, 0, 0, 0.2);
  margin-top: 60px;
  padding: 1% 9% 1% 9%;
}
.gd-academy .nav-link {
  border: 0;
  padding: 15px 25px 15px 15px;
  color: var(--color-secondary);
  box-shadow: 0px 0px 7px rgba(var(--color-secondary-rgb), 0.38);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  transition: 0s;
  cursor: pointer;
  height: 100%;
  width: 100%;
  border-radius: 1px;
}
.gd-academy .nav-link i {
  font-size: 30px;
  line-height: 0;
}
.gd-academy .nav-link h4 {
  font-size: 14px;
  letter-spacing: 0px;
  font-weight: 400;
  margin: 10px 0 0 0;
  color: black;
}
.gd-academy .nav-link:hover {
  color:#05b9f6;
  transition: 0.5s;
}
.gd-academy .nav-link.active {
  transition: 0.3s;
  background: #05b9f6;
  border-color: var(--color-primary);
}
.gd-academy .nav-link.active h4 {
  color: var(--color-white);
}
.gd-academy .nav-link.active i {
  color: var(--color-white) !important;
}
.gd-academy .tab-pane.active {
  animation: fadeIn 0.5s ease-out;
}
.gd-academy .tab-pane h3 {
  font-weight: 600;
  font-size: 36px;
  color: var(--color-secondary);
}
.gd-academy .tab-pane ul {
  list-style: none;
  padding: 0;
}
.gd-academy .tab-pane ul li {
  padding-bottom: 10px;
}
.gd-academy .tab-pane ul i {
  font-size: 24px;
  margin-right: 4px;
  color: var(--color-primary);
}
.gd-academy .tab-pane p:last-child {
  margin-bottom: 0;
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@media (max-width:768px) {
  .gd-academy .nav-tabs {
    border: #000000;
    background: white;
    box-shadow: 1px 1px 4px 2px rgba(0, 0, 0, 0.2);
    margin-top: 60px;
    padding: 1% 7% 1% 7%;
  }
  .gd-academy .nav-link {
    border: 0;
    padding: 12px 4px;
    color: var(--color-secondary);
    box-shadow: 0px 0px 15px rgba(var(--color-secondary-rgb), 0.35);
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    transition: 0s;
    margin: 10px 0px 10px 0px;
    cursor: pointer;
    width: 100%;
  }
  .gd-academy .nav-link h4 {
    font-size: 12px;
    letter-spacing: 0px;
    font-weight: 300;
    margin: 5px 0 0 0;
    color: black;
  }
  .gd-academy .nav-link i {
    font-size: 20px;
  }
}
.gd-academy .card-perfil {
  border-radius: 10px;
  border-style: solid;
  border-color: white;
  background: white;
  box-shadow: 0px 0px 5px 3px rgba(0, 0, 0, 0.1);
}
/* TITULO DATA PERFIL */
.gd-academy .data-perfil-equipo h4, .gd-academy .data-perfil-entrega h4, .gd-academy .data-perfil-nacionalidad h4, .gd-academy .data-perfil-acento h4, .gd-academy .data-perfil-voz h4, .data-select-perfil h4 , .gd-academy .web-field h4 {
  font-size: 1em;
  letter-spacing: 0.05em;
  font-weight: 400;
  margin: 10px;
}
/*FIN TITULO DATA PERFIL */
.gd-academy .web-field input {
  border-radius: 30px;
  border-style: solid;
  border-width: thin;
  box-shadow: none;
  font-size: 14px;
  padding: 0px 15px 2px 20px;
  width: 250px;
  height: 40px;
  margin: 0 1px;
}
.gd-academy .card-perfil .boton-morado-1, .gd-academy .card-perfil .boton-morado-2 {
  border-radius: 8px;
  border-width: 2px;
  border-style: solid;
  border-color: cornflowerblue;
  padding: 5px 25px 5px 25px;
  margin: 5px;
  background-color: white;
  color: cornflowerblue;
  font-weight: 600;
}
.gd-academy .card-perfil .boton-morado-1:focus {
  border-radius: 8px;
  border-style: none;
  border-color: white;
  outline: none;
  padding: 7px 27px 7px 27px;
  margin: 5px;
  background-color: cornflowerblue;
  color: white;
  font-weight: 600;
}
.gd-academy .card-perfil .boton-morado-2:focus {
  border-radius: 8px;
  border-style: none;
  border-color: white;
  outline: none;
  padding: 7px 27px 7px 27px;
  margin: 5px;
  background-color: cornflowerblue;
  color: white;
  font-weight: 600;
}
.gd-academy .selector-nacionalidad {
  width: 300px;
  border-radius: 8px;
  border-width: 2px;
  border-style: solid;
  padding: 0px 10px 0px 10px;
  margin: 5px;
  background-color: white;
  color: cornflowerblue;
  font-weight: 600;
}
.gd-academy .selector-acento {
  width: 300px;
  border-radius: 8px;
  border-width: 2px;
  border-style: solid;
  padding: 0px 10px 0px 10px;
  margin: 5px;
  background-color: white;
  color: cornflowerblue;
  font-weight: 800;
}
.gd-academy .web-field input {
  border-radius: 8px;
  border-width: 2px;
  border-color: cornflowerblue;
  border-style: solid;
  padding: 0px 10px 0px 10px;
  margin: 5px;
  background-color: white;
  outline: none;
  font-weight: 800;
}
.gd-academy .card-perfil h3 {
  font-family: var(--font-primary);
  font-weight: 400;
  font-size: 1.2em;
  color: white;
  line-height: 10px;
}
.gd-academy .card-perfil p {
  color: white;
  margin: 20px;
  padding-bottom: 20px;
  line-height: 17px;
}
.gd-academy .upper-card {
  background: rgb(30, 210, 239);
  background: linear-gradient(90deg, rgba(30, 210, 239, 1) 0%, rgba(40, 170, 238, 1) 100%);
  border-radius: 10px;
	max-height:300px;
  margin: -3px;
}

 .upper-card::before {
  content: "";
  position: absolute;
  top: 0;
  width: 96%;
  height: 240px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0), rgba(0, 0, 0, 1));
  border-radius:10px;
	 z-index: 1;
	 
}


.foto-perfil img {
  border-radius: 10px;
  max-width: 100%;
  max-height: 240px;
  align-content: center;
  margin:0;
  border-style: none;
  box-shadow: 0px 0px 10px 2px rgba(0, 0, 0, 0.4);
	 object-fit: cover;
}


.foto-perfil:hover {
	
	filter:saturate(1.5);
	transition: 0.6s;
}

.profile-img{
	margin-left: -30px
}

.nombre {
  position:relative;
  margin-top: -30px;
  left: 55%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 18px;
  z-index: 2;
	font-weight: 400;
}



.info-user i {
	font-size: 30px;
	color: white;
	 position: absolute;
  margin-top: -40px;
  left: 40%;
  transform: translate(-50%, -50%);
  z-index: 2;
}









.gd-academy .editar-perfil {
  margin: 20px;
}
/*TABLA INBOX*/
.gd-academy .tabla-inbox {
  margin: 0px;
  background: white;
  border-collapse: separate;
  border-style: none;
  outline: none;
  border-spacing: 0px;
}
.gd-academy .tabla-inbox .fecha {
  text-align: left;
}
.gd-academy .tabla-inbox .btn {
  text-align: left;
}
.gd-academy .tabla-inbox h3 {
  text-align: center;
  font-size: 1em;
  font-weight: bold;
  margin-top: 10px;
}
.gd-academy .tabla-inbox h3::before {
  content: "";
  width: 100%;
  height: 0em;
  background: gray;
  position: absolute;
  bottom: -2px;
  left: 0;
}
.gd-academy .tabla-inbox p {
  text-align: center;
  font-size: 0.8em;
  font-weight: 400;
  margin: 0px 20px 0px 10px;
}
.gd-academy .msg-1 {
  box-shadow: 0px 0px 3px 1px rgba(0, 0, 0, 0.0);
  border-bottom-style: solid;
  border-radius: 8px;
  border-collapse: separate;
  margin-top: 10px;
}
.gd-academy .boton-leer {
  border-radius: 6px;
  padding: 6px 40px 6px 40px;
  border-style: none;
  background-color: mediumseagreen;
  color: white;
  outline: none;
}
.gd-academy .boton-leer:hover {
  border-radius: 6px;
  padding: 6px 40px 6px 40px;
  border-style: none;
  background-color: #A626AD;
  color: white;
  outline: none;
  transition: 0.6s;
}
.gd-academy .card-2 {
  border-radius: 6px;
  border-style: none;
  padding: 0px;
  box-shadow: 0px 0px 5px 2px rgba(0, 0, 0, 0.1);
  margin-bottom: 10px;
}

.card-2 .card-header {
	padding:5px;
	margin:0px;
	background: #05B9F6;
	
}


.card-2 .card-header h4 {
	margin-top: 5px;
	font-size:15px;
	font-weight:500;
    color:white;
	text-transform: uppercase;
}

@media (max-width:768px) {
  .card-2 {
    margin-top: 10px;
  }
  .tabla-inbox {
    max-width: 100%;
  }
  .tabla-inbox td, .tabla-inbox th {
    display: inline-block;
  }
}
/*LISTA DE CURSOS EN PERFIL*/
.curso-item-kind1 {
  margin-top: 15px;
  margin-left: 20px;
  margin-right: 20px;
  border-radius: 4px;
  padding: 5px;
  background:linear-gradient(135deg, #0dcf77 0%,#47f48f 100%);
  max-height: 70px;
}
.curso-item-kind1:hover {
  margin-top: 15px;
  margin-left: 20px;
  margin-right: 20px;
  border-radius: 2px;
  padding: 5px;
  filter: saturate(1.3);
  box-shadow: 0px 0px 10px 4px rgba(0, 0, 0, 0.2);
  transition: 0.5s;
}
.curso-item-kind1 .icono {
  width: 10px;
}
.curso-item-kind1 i {
  font-size: 22px;
  vertical-align: top;
  margin-right: 0px;
  padding: 0px;
  color: white;
}
.curso-item-kind1 h6 {
  text-align: justify;
  color: white;
  margin-top: 8px;
  font-size: 16px;
}
/*FIN TIP ITEM TIPO 1*/
/*TIP ITEM TIPO 2 */
.curso-item-kind2 {
  margin-top: 15px;
  margin-left: 20px;
  margin-right: 20px;
  border-radius: 4px;
  padding: 5px;
  background:linear-gradient(135deg, #209cff 0%,#68e0cf 100%);
  max-height: 70px;
}
.curso-item-kind2:hover {
  margin-top: 15px;
  margin-left: 20px;
  margin-right: 20px;
  border-radius: 6px;
  padding: 5px;
  background:linear-gradient(135deg, #209cff 0%,#68e0cf 100%);
  filter: saturate(1.3);
  box-shadow: 0px 0px 10px 4px rgba(0, 0, 0, 0.2);
  transition: 0.5s;
}
.curso-item-kind2 i {
  font-size: 22px;
  vertical-align: top;
  margin-right: 10px;
  padding: 0px;
  color: white;
}
.curso-item-kind2 h6 {
  text-align: justify;
  color: white;
  margin-top: 8px;
  font-size: 16px;
}
.curso-data .boton-general {
  margin-top: 20px;
  transition: 0.5s;
}
@media (max-width:768px) {
  /*CARDS PLAN MOBILE*/
  .curso-item-kind1 {
    margin-top: 5px;
    margin-left: 5px;
    margin-right: 5px;
    border-radius: 8px;
    padding: 5px;
    background: #00E07F;
    max-height: 70px;
  }
  .curso-item-kind1:hover {
    margin-top: 5px;
    margin-left: 5px;
    margin-right: 5px;
    border-radius: 6px;
    padding: 5px;
    background: #00E07F;
    filter: saturate(1.3);
    box-shadow: 0px 0px 10px 4px rgba(0, 0, 0, 0.2);
    transition: 0.5s;
  }
  .curso-item-kind1 .icono {
    width: 20px;
  }
  .curso-item-kind1 i {
    font-size: 18px;
    margin-right: 10px;
    padding: 0px;
    color: white;
  }
  .curso-item-kind1 h6 {
    text-align: justify;
    color: white;
    margin-top: 8px;
    font-size: 13px;
  }
  /*FIN TIP ITEM TIPO 1*/
  /*TIP ITEM TIPO 2 */
  .curso-item-kind2 {
    margin-top: 5px;
    margin-left: 5px;
    margin-right: 5px;
    border-radius: 8px;
    padding: 5px;
    background: #1ed2df;
    max-height: 70px;
  }
  .curso-item-kind2:hover {
    margin-top: 5px;
    margin-left: 5px;
    margin-right: 5px;
    border-radius: 6px;
    padding: 5px;
    background: #1ed2df;
    filter: saturate(1.3);
    box-shadow: 0px 0px 10px 4px rgba(0, 0, 0, 0.2);
    transition: 0.5s;
  }
  .curso-item-kind2 i {
    font-size: 18px;
    float: center;
    vertical-align: top;
    margin-right: 10px;
    padding: 0px;
    color: white;
  }
  .curso-item-kind2 h6 {
    text-align: justify;
    color: white;
    margin-top: 8px;
    font-size: 13px;
  }
  .plan-data .boton-general {
    margin-top: 20px;
    transition: 0.5s;
  }
}
/*FIN TABLA INBOX*/
/* MI PLAN */
.gd-academy .card-3 {
  border-radius: 10px;
  width: auto;
  border-style: solid;
  border-color: white;
  padding: 5px;

  background: white;
  margin-top: 15px;
  margin-left: 0px;
}
.gd-academy .card-3 p, .gd-academy .card-3 h5 {
  font-weight: 500;
  margin-top: 10px;
  margin-bottom: 15px;
}
.boton-general {
  border-radius: 8px;
  padding: 8px 40px 8px 40px;
  border: none;
  color: white;
  outline: none;
  background-color: var(--color-primary);
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 10px;
  transition: 0.5s;
}
.boton-general:hover {
  border-radius: 8px;
  padding: 8px 40px 8px 40px;
  border: none;
  outline: none;
  color: white;
  background-color: mediumseagreen;
  transition: 0.5s;
}
/*FIN MI PLAN*/

/*TAB 2 GRABAR DEMOS */

.t-3 {
	margin-top: 0px;
}
.card-demos {
  border-radius: 10px;
  border-style: none;
  border-color: white;
  background: white;
  box-shadow: 0px 0px 6px 1px rgba(0, 0, 0, 0.1);
  padding-left: 30px;
  padding-right: 30px;
  margin-bottom: 0px;
	
}
.card-demos .card-body h6 {
  margin-top: 30px;
  margin-bottom: 30px;
}
.card-demos .valued {
  border-radius: 8px;
  padding: 8px 60px 8px 60px;
  border: none;
  color: white;
  background-color: var(--color-primary);
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 20px;
}
.card-demos .valued:focus {
  border-radius: 8px;
  padding: 8px 60px 8px 60px;
  border: hidden;
  color: white;
  background-color: mediumseagreen;
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 20px;
  outline: none;
}
/* BOTON GRABAR */
.card-demos .valued-rec {
  border-radius: 8px;
  padding: 8px 60px 8px 60px;
  border: none;
  color: white;
  background-color: red;
  font-size: 16px;
  font-weight: 500;
}
.card-demos .valued-rec:focus {
  border-radius: 8px;
  padding: 8px 60px 8px 60px;
  border: hidden;
  color: white;
  background-color: mediumseagreen;
  font-size: 16px;
  font-weight: 500;
  outline: none;
}
.card-demos .valued-rec:disabled {
  border-radius: 8px;
  padding: 8px 60px 8px 60px;
  border: hidden;
  color: white;
  background-color: gray;
  font-size: 16px;
  font-weight: 500;
  outline: none;
}
/*FIN BOTON GRABAR*/
.card-demos .valued2 {
  border-radius: 8px;
  padding: 8px 60px 8px 60px;
  border: none;
  color: white;
  background-color: var(--color-blue);
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 10px;
}
.card-demos #btn-grabar {}
/* card progreso usuario */
.card-demos-progress {
  border-radius: 10px;
  border-style: none;
  border-color: white;
  background: linear-gradient(90deg, rgba(30, 210, 239, 0.9) 0%, rgba(40, 170, 238, 0.7) 100%);
  background-size: cover;
  box-shadow: 0px 0px 4px 4px rgba(0, 0, 0, 0.1);
  padding-left: 30px;
  padding-right: 30px;
  
}
.card-demos-progress h4, .card-demos-progress h5 {
  color: white;
}
/*GO TIPS */
.tips-grabar {
  border-radius: 10px;
  border-style: none;
  border-color: white;
  background: rgb(30, 210, 239);
  background: rgb(72, 7, 104);
  background: linear-gradient(0deg, rgba(72, 7, 104, 1) 0%, rgba(187, 15, 238, 1) 100%);
  box-shadow: 0px 0px 10px 4px rgba(0, 0, 0, 0.2);
  padding-left: 30px;
  padding-right: 30px;
	
  color: white;
}
.tips-grabar h4 {
  color: white;
}
.tips-grabar h6 {
  color: white;
}
/*TIP ITEM TIPO 1*/
.tip-item-kind1 {
  margin-top: 20px;
  border-radius: 6px;
  padding: 1rem;
  background: #3cb371;
}
.tip-item-kind1:hover {
  margin-top: 20px;
  border-radius: 6px;
  padding: 1rem;
  background: #3cb371;
  filter: saturate(1.3);
  box-shadow: 0px 0px 10px 4px rgba(0, 0, 0, 0.2);
}
.tip-item-kind1 i {
  font-size: 4rem;
  vertical-align: top;
  margin-right: 10px;
  padding: 0px;
}
.tip-item-kind1 h4 {
  font-size: 1rem
}
.tip-item-kind1 h6 {
  font-size: 0.9rem;
}
/*FIN TIP ITEM TIPO 1*/
/*TIP ITEM TIPO 2 */
.tip-item-kind2 {
  margin-top: 20px;
  border-radius: 6px;
  padding: 15px 0px 15px 0px;
  background: mediumpurple;
}
.tip-item-kind2:hover {
  margin-top: 20px;
  border-radius: 6px;
  padding: 15px 0px 15px 0px;
  background: mediumpurple;
  filter: saturate(1.3);
  box-shadow: 0px 0px 10px 4px rgba(0, 0, 0, 0.2);
}
.tip-item-kind2 i {
  font-size: 4rem;
  vertical-align: top;
  vertical-align: middle;
  padding: 0px;
}
.tip-item-kind1 h4 {
  font-size: 1rem
}
.tip-item-kind2 h6 {
  font-size: 0.9rem
}
@media (max-width:1440px) {
  .tip-item-kind1 i, .tip-item-kind1 i:hover, .tip-item-kind2 i, .tip-item-kind2 i:hover {
    font-size: 3rem;
    vertical-align: middle;
    padding: 0px;
  }
  .tip-item-kind1 h4, .tip-item-kind1 h4:hover, .tip-item-kind2 h4, .tip-item-kind2 h4:hover {
    font-size: 0.8rem
  }
  .tip-item-kind1 h6, .tip-item-kind1 h6:hover, .tip-item-kind2 h6, .tip-item-kind2 h6:hover {
    font-size: 0.7rem
  }
}
/*SECCION GRABANDO */
input[type=range] {
  -webkit-appearance: none;
  width: 100%;
  height: 15px;
  border-radius: 5px;
  background: #d3d3d3;
  outline: none;
  opacity: 0.8;
  -webkit-transition: .2s;
  transition: opacity .2s;
  margin-top: 20px;
  margin-bottom: 30px;
}
input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background: #04AA6D;
  cursor: pointer;
}
input[type=range]::-moz-range-thumb {
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background: #04AA6D;
  cursor: auto;
}
.form-texto textarea {
  resize: inherit;
  height: 200px;
  border-radius: 5px;
  width: 98%;
  border-style: none;
  outline: none;
  box-shadow: 0px 0px 5px 2px rgba(0, 0, 0, 0.3);
}
.form-texto textarea:focus {
  resize: inherit;
  height: 200px;
  border-radius: 5px;
  width: 98%;
  border-style: solid;
  border-spacing: 2px;
  border-color: mediumseagreen;
  outline: none;
  box-shadow: 0px 0px 5px 2px rgba(0, 0, 0, 0.3);
}
/*ESCUCHAR MEZCLA*/
audio {
  width: 100%;
  max-width: auto;
  margin-top: 20px;
  margin-bottom: 20px;
  border-radius: 8px;
  border: solid;
  border-color: gray;
}
audio::-webkit-media-controls-panel {
  background-color: white;
  color: black;
  border-radius: 5px;
  /* Add more styles as needed */
}
audio::-webkit-media-controls-timeline {
  width: 5px;
  font-color: black;
  font-size: 22px;
  /* Add more styles as needed */
}
audio::-webkit-media-controls-play-button {
  border-radius: 25px;
  border: solid;
  color: black;
}
.vaweform img {
  max-width: 80%;
  margin-bottom: 20px;
}
/*SECCION DEMO STUDIO */
.t-4 {
	margin-top: 10px;
}

.card-subir-demos {
  border-radius: 10px;
  width: auto;
  border-style: solid;
  border-color: white;
  padding: 10px;
  box-shadow: 0px 0px 5px 1px rgba(0, 0, 0, 0.1);
  background: white;
  
  margin-left: 0px;
}
.card-subir-demos h5 {
  margin-bottom: 30px;
}
.card-subir-demos h6 {
  text-align: left;
  margin-bottom: 20px;
  font-weight: 600;
}
.card-subir-demos p {
  line-height: 0.8em;
  font-size: 0.6em;
  font-weight: 500;
  text-align: left;
}
.dropzone {
  height: 300px;
}
.dz-default i {
  font-size: 30px;
}
#enviar-demos {
  margin-top: 20px;
}
/*LISTADO DEMOS */
.card-lista-demos {
  border-radius: 10px;
  width: auto;
  border-style: solid;
  border-color: white;
  padding: 10px;
  box-shadow: 0px 0px 4px 4px rgba(0, 0, 0, 0.1);
  background: white;
  margin-top: 10px;
  margin-left: 0px;
  vertical-align: top;
}
.card-lista-demos img {
  max-width: 60px;
  max-height: auto;
}
.tabla-demos {
  margin: 0px;
  background: white;
  border-collapse: inherit;
  border-style: none;
  outline: none;
  border-spacing: 0px;
}
.tabla-demos .boton-leer td {
  text-align: right;
}
@media (max-width:768px) {
  .tabla-demos td, .tabla-demos th {
    display: inline-block;
    width: auto;
    text-wrap: nowrap;
  }
  .tabla-demos img {
    align-content: center;
  }
  .tabla-demos p {
    padding-right: 20px;
  }
}
/*FIN LISTA DEMOS */
/*LISTADO REELS */
.card-lista-reels {
  border-radius: 10px;
  width: auto;
  border-style: none;
  border-color: white;
  padding: 20px 20px 10px 30px;
  box-shadow: 0px 0px 4px 4px rgba(0, 0, 0, 0.1);
  background: #485563; /* fallback for old browsers */
  background: -webkit-linear-gradient(to right, #29323c, #485563); /* Chrome 10-25, Safari 5.1-6 */
  background: linear-gradient(to right, #29323c, #485563); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
  margin-left: 0px;
  margin-bottom: 20px;
  vertical-align: top;
}
.card-lista-reels img {
  max-width: 60px;
  max-height: auto;
  text-align: left;
}
.card-lista-reels h4, .card-lista-reels p {
  color: white;
}
.tabla-reels {
  margin: 0px 10PX 0px 10px;
  border-collapse: inherit;
  border-style: none;
  outline: none;
  border-spacing: 0px;
}
.tabla-reels img {
  margin-left: 10px;
}
.tabla-reels button {
  margin-right: 10px;
  padding: 0px;
}
@media (max-width:768px) {
  .card-lista-reels {
    margin-top: 10px;
  }
  .tabla-reels td, .tabla-reels th {
    display: inline-block;
    width: auto;
  }
  .tabla-reels img {
    align-content: center;
  }
}
.copy-link .copiar-link h4, .copy-link .copiar-link p {
  color: black;
}
/*MODAL COMPARTIR */

.aviso-sel-profile i{
	font-size: 25px;
	color:rebeccapurple;
	margin-right: 10px;
	
	
}

.aviso-sel-profile p {
	font-size: 14px;
	font-weight: 500;
	margin-right: 10px;
}


.share-url {
  border-radius: 8px;
  border-style: solid;
  border-width: thin;
  box-shadow: none;
  font-size: 11px;
  font-color: black;
  padding: 0px 15px 2px 20px;
  width: 250px;
  height: 40px;
}
.copiar-link .boton-general {
  border-radius: 8px;
  padding: 8px 40px 8px 40px;
  border: none;
  color: white;
  outline: none;
  background-color: var(--color-primary);
  font-size: 16px;
  font-weight: 500;
  margin-top: 10px;
  transition: 0.5s;
}
.boton-general:hover {
  border-radius: 8px;
  padding: 8px 40px 8px 40px;
  border: none;
  outline: none;
  color: white;
  background-color: mediumseagreen;
  transition: 0.5s;
}
.share-iconos img {
  max-width: 30px;
  max-height: 30px;
}
.share-iconos {
  border-radius: 50%;
  padding: 15px;
  border-style: solid;
  border-color: gray;
  border-width: thin;
  margin-right: 15px;
}
.share-iconos:hover {
  border-radius: 50%;
  padding: 15px;
  border-style: solid;
  border-color: purple;
  border-width: thin;
}
.iconos {
  margin-left: 15%;
}
@media (max-width:768px) {
  .share-iconos img {
    max-width: 25px;
    max-height: 25px;
  }
  .share-iconos {
    border-radius: 50%;
    padding: 10px;
    border-style: solid;
    border-color: gray;
    border-width: thin;
    margin-right: 15px;
  }
  .share-iconos:hover {
    border-radius: 50%;
    padding: 10px;
    border-style: solid;
    border-color: purple;
    border-width: thin;
  }
  .iconos {
    margin-left: 10%;
  }
}
/*FIN MODAL COMPARTIR */

.t-2 {
	margin-top: 10px;
}

@media (max-width:768) {
	.t-2 {
		
		margin-top: 0px;
	}
}
	
	
	
.card-miscursos .card-header:first-child {
  height: 100%;
  margin-top: 0px;
  margin-bottom: 0px;
	border-radius: 3px;
	
}
/* MIS CURSOS */
.card-miscursos {
  border-radius: 6px;
  border-style: none;
  background: white;
  box-shadow: 0px 0px 4px 3px rgba(0, 0, 0, 0.1);
  padding-left: 0px;
  padding-right: 0px;
	margin-bottom: 0px;
}

.accordion-cursos {
	width: 100%;
}

.accordion-cursos .card{
	margin: 6px 0px;
}
	
.accordion-cursos .card-header  {
 border-radius: 0px;
	
}

 .card a

{
	color: white;
	font-size: 14px;
	text-transform: uppercase;
	
}





.accordion-cursos .col-lg-3 {
  display: flex;
  flex-direction: column;
}


/* botones acordion cursos*/

.boton-general {
	max-width: 60%;
	
  border-radius: 25px;
  padding: 8px 20px 8px 20px;
  border: none;
  color: white;
  outline: none;
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 10px;
  transition: 0.5s;
}
.boton-general:hover {
  border-radius: 25px;
  padding: 8px 20px 8px 20px;
  border: none;
  outline: none;
  color: white;
  background-color: mediumseagreen;
  transition: 0.5s;

}


.boton-color-1 {
	
	background: #3F79F3;
}

.boton-color-2 {
	background: black;
}



/* colores cursos */

.card-color-0 {
	color:white;
	background-color: black;
}

.card-color-1 {
	color:white;
	background: #05B9F6;
}

.card-color-2 {
	color:white;
	background-color: #0AA3D6;
}


.card-color-3 {
	color:white;
	background-color: #08D3C6;
	
}
	.card-color-4 {
		color:white;
		background-color: #5F2DA8;
		
	}

.card-color-5 {
	color:white;
	background-color: #E9C71D;
	
}

	
.lista-cursos {
	display: none;
}


/*fin colores cursos */

	

/*FIN MIS CURSOS */



/* AGREGAR CURSO */

.add-curso {
	background-color: #fafafa;
}

.cont-card .card {
	margin: 0px;
	padding: 0;
	border-style: none;
	border-radius: 3px;
	  box-shadow: 1px 1px 7px 1px rgba(0, 0, 0, 0.2);

}

.cont-card .card-header{
	
	padding: 0;
	background: white;
	border-style: none;
	border-bottom: 1px solid #000000;
}

.add-curso .header-title {
	width: 100%;
	background: #5F2DA8;
		color:white;
	padding: 6px;
	margin: 0px;
	border-radius: 3px;
}

.add-curso .header-image {
	background: white;
}

.data-nom-curso {
	margin-bottom: 15px;
}

.data-nom-curso input{
	width: 100%;
	border-radius: 4px;
	padding: 6px;
}

.data-fechas {
	margin-bottom: 15px;
}

.data-fechas h4{
	font-size: 15px;
}

.data-fechas input {
	width: 100%;
	border-radius: 4px;
	padding: 4px 10px;
}

.data-horas input {
	
	width: 100%;
	border-radius: 4px;
	padding: 4px 10px;
	
}
.data-jornadas {
	margin-top: 20px;
	margin-bottom: 20px;
}




.boton-add-jornada {
	width:47%;
	background: #3F79F3;
	color:white;
	padding: 8px 10%;
	border-radius: 4px;
	border-style: none;
	margin-right: 30px;
	
}

.boton-edit-jornada {
	width: 47%;
	background: #08DAC6;
	color:white;
	padding: 8px 10%;
	border-radius: 4px;
	border-style: none;
	
}


/* modal add jornadas */

.jornada-inicio input, .jornada-termino input{
	width: 100%;
	display: block;
	border-radius: 6px;
	margin-bottom: 10px;
	
}

.jornada-termino input {
	margin-bottom: 20px;
	
}

.data-dias-jornada .row{
width:100%;
display: flex; /* Hace que los elementos se muestren en línea */
    justify-content: space-between; /* Alinea los elementos verticalmente en el centro si es necesario */
}

.data-dias-jornada .row label {
    display: flex;
    align-items: center;
    margin-bottom: 8px; /* Puedes ajustar este valor según tus preferencias */
	font-weight: 400;
	
}

.row label input {
    margin-right: 4px; /* Espacio entre checkbox y texto */
}


.modal-jornadas .close {
    transition: transform 0.3s ease; /* Aplica una transición al hacer clic */
}

.modal-jornadas .close:hover {
    transform: scale(1.2); /* Aumenta ligeramente el tamaño al pasar el ratón sobre el botón */
}

.modal-jornadas .close:active {
    transform: scale(0.8); /* Reduce ligeramente el tamaño al hacer clic en el botón */
	transform: rotate3d(0, 1, 0.5, 3.142rad);
}


/* fin modal add jornada */


/* modal add grupo */

.modal-grupos input {
	width: 90%;
	border-radius: 6px;
	border-style: solid 1px;
}


 .input-zoom {
      display:inline-flex;
	 width: 90%;
      border: 1px solid #000000; /* Agrega un borde al contenedor */
      border-radius: 5px; /* Añade esquinas redondeadas si lo deseas */
      overflow: hidden; /* Evita que el input sobresalga del contenedor */
	 
    }

.input-zoom input, .input-zoom input:active {
 border: none; /* Quita el borde del input */
	outline: none;
      width: 100%; /* Asegura que el input ocupe todo el ancho disponible */
}


/* fin modal add grupo */

.input-zoom i {
	margin-left: auto;
	margin-right: 10px;
	font-size: 18px;
	font-weight: 600;
	color: black;
}





	.boton-add-grupo {
	width:47%;
	background: #3F79F3;
	color:white;
	padding: 8px 10%;
	border-radius: 4px;
	border-style: none;
	margin-right: 30px;
	
}

.boton-edit-grupo {
	width:47%;
	background: #08DAC6;
	color:white;
	padding: 8px 10%;
	border-radius: 4px;
	border-style: none;
	
}


.boton-cargar-prog {
	width:45%;
	background: #E9C71D;
	color:white;
	padding: 8px 10%;
	border-radius: 4px;
	border-style: none;
	margin-top: 15px;
	
}


/* card agregar alumnos */

.add-estudiantes .card {
	margin: 0px;
	padding: 0;
	border-style: none;
	border-radius: 3px;
	  box-shadow: 1px 1px 7px 1px rgba(0, 0, 0, 0.2);

}



.add-estudiantes .card-header{
	padding: 0;
	background: white;
	border-style: none;
	border-bottom: 1px solid #000000;
}

.add-estudiantes .header-title {
	width: 100%;
	background: #08DAC6;
		color:white;
	padding: 6px;
	margin: 0px;
	border-radius: 3px;
}

.add-curso .header-image {
	background: white;
}


.tabla-add-alumnos {
	
  border-collapse: collapse;
  width: 100%;
	border:0px;
	font-size: 14px;
	
}

.tabla-add-alumnos th, .tabla-add-alumnos td {
	border: 0px;
  border-bottom: 1px solid #ddd; /* Ajusta el grosor y el color del borde según tus preferencias */
  padding: 8px; /* Ajusta el espacio interno del contenido según tus preferencias */
}


.tabla-add-alumnos .nom-profe {
	
  border: 2px solid #000;
	border-radius: 25px;
  padding: 2px 10px;
}


.tabla-add-alumnos .id-grupo {
	
	 border: 2px solid #000;
	border-radius: 25px;
  padding: 2px 10px;
}

.tabla-add-alumnos .cant-alumnos {
	
	 border: 2px solid #000;
	border-radius: 25px;
  padding: 2px 10px;
}



.tabla-add-alumnos .boton-general {
	font-size: 12px;
	padding:5px 30px;
}



/*fin card asignar alumnos */


/* MODAL AGREGAR ALUMNOS */

/* Estilo para las tablas dentro del modal */
  #modal-add-alumnos .modal-body table {
    width: 100%; /* Ocupa todo el ancho disponible */
    margin-bottom: 15px; /* Añade un espacio entre las tablas */
  }

  /* Estilo adicional si es necesario para evitar que las tablas se sobrepongan */
  #modal-add-alumnos .modal-body .second-table {
    margin-top: 20px; /* Añade un margen superior para evitar la superposición */
  }

  /* Ajustes para botones y márgenes en el pie del modal */
  #modal-add-alumnos .modal-footer {
    justify-content: space-between;
  }

  #modal-add-alumnos .modal-footer button {
    margin-right: 10px;
  }


/* card 1 dentro del modal */
.all-estudiantes .card-title {
	padding: 5px;
	background: black;
	color:white;
}


.all-estudiantes .card-header img {
	padding: 0px;
	margin:0px;
	
}


 .btn-add-remove i {
	font-size: 20px;
	margin-right:10px;
}

.btn-add-remove .boton-general {
	margin: 20px;
	font-size: 14px;
	padding: 5px 30px;
	
}


.btn-add-remove .boton-general:hover {
	margin: 20px;
	font-size: 14px;
	padding: 5px 30px;
	
	filter: saturate(2);

}

/*card 2 dentro del modal */
.group-estudiantes .card-title {
	padding: 5px;
	background: #5F2DA8;
	color:white;
}


.group-estudiantes .card-header img {
	padding: 0px;
	margin:0px;
	
}




/*SECCION CONTRATOS */

.t-5 {
	margin-top:10px;
	
}

@media (max-width:768px){
	.t-5 {
		margin-top: 0px;
	}
}


.card-subir-contratos {
  border-radius: 10px;
  width: auto;
  border-style: solid;
  border-color: white;
  padding: 10px;
  box-shadow: 0px 0px 4px 4px rgba(0, 0, 0, 0.1);
  background: white;
  margin-top: 0px;
  margin-bottom: 10px;
  margin-left: 0px;
  vertical-align: top;
}



.card-subir-contratos h5 {
  margin-bottom: 30px;
}
.card-subir-contratos h6 {
  text-align: left;
  margin-bottom: 20px;
  font-weight: 600;
}
.card-subir-contratos p {
  line-height: 2px;
  font-size: 0.8em;
  font-weight: 500;
  text-align: left;
}
.dropzone {
  height: 300px;
}
.dz-default i {
  font-size: 30px;
}
.card-subir-contratos button {
  margin-top: 20px;
}
/*MIS CONTRATOS*/
.card-lista-contratos {
  border-radius: 10px;
  width: auto;
  border-style: none;
  border-color: white;
  padding: 10px;
  box-shadow: 0px 0px 4px 4px rgba(0, 0, 0, 0.1);
  background: white;
  margin-top: 0px;
  margin-left: 0px;
  vertical-align: top;
}
.card-lista-contratos img {
  max-width: 60px;
  max-height: auto;
}
.tabla-contratos {
  margin: 0px;
  background: white;
  border-collapse: inherit;
  border-style: none;
  outline: none;
  border-spacing: 0px;
}
.tabla-contratos .boton-editar {
  border-radius: 7px;
  padding: 6px 30px 6px 30px;
  border: none;
  color: white;
  outline: none;
  background-color: mediumblue;
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 10px;
}
.tabla-contratos .boton-editar:hover {
  border-radius: 7px;
  padding: 6px 30px 6px 30px;
  border: none;
  outline: none;
  color: white;
  background-color: forestgreen;
  transition: 0.3s;
}
.tabla-contratos .boton-leer {
  border-radius: 7px;
  padding: 6px 40px 6px 40px;
  border: none;
  outline: none;
  background-color: rebeccapurple;
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 10px;
}
.tabla-contratos .boton-leer:hover {
  border-radius: 7px;
  padding: 6px 40px 6px 40px;
  border: none;
  outline: none;
  color: white;
  background-color: forestgreen;
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 10px;
  transition: 0.3s;
}
/* CRM */
.nav-tabs-crm {
  border: #000000;
  background: white;
  box-shadow: 1px 1px 4px 2px rgba(0, 0, 0, 0.1);
  margin-top: 10px;
  padding-top: 0px;
  border-radius: 8px;
  vertical-align: top;
  margin-left: 15px;
  margin-right: 15px;
}
.nav-tabs-crm .nav-item {
  align-items: center;
  margin-top: 10px;
  margin-left: 10px;
  margin-right: 10px;
  margin-bottom: 10px;
  color: var(--color-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  transition: 0s;
  cursor: pointer;
  border-radius: 5px;
}
.nav-tabs-crm .nav-link h4 {
  font-size: 1px;
  letter-spacing: 0px;
  font-weight: 400;
  margin: 10px 0 0 0;
  color: black;
}
.nav-tabs-crm .nav-link:hover {
  color: white;
  transition: 0.5s;
}
.nav-tabs-crm .nav-link.active {
  transition: 0.3s;
  background: purple;
  border-color: white;
  color: white;
}
.nav-tabs-crm .nav-link.active a {
  color: var(--color-white);
}
.crm-nav .nav-link.active i {
  color: var(--color-white) !important;
}
/* CRM - DASHBOARD */



.card-dashboard {
  border-radius: 10px;
  border-style: solid;
  border-color: white;
  background: white;
  box-shadow: 0px 0px 4px 2px rgba(0, 0, 0, 0.1);
  padding-left: 0px;
  padding-right: 0px;
  margin-bottom: 0px;
  width: 100%;
}

.cont-tabla-dash {
	max-width: 100%;
  margin-left: 0px;
  margin-right: 0px;
	

	
}


.tabla-dboard {
 width: 100%;
      border-collapse: collapse;
     overflow:hidden;
      margin-top: 20px;
	 margin-left: 0px;
	
}

  


@media (max-width:768px){
	
  #dashboard{
    overflow-x: hidden; /* Ocultar overflow en dispositivos móviles */
    white-space: nowrap; /* Evitar el retorno de línea en celdas de texto largas */
  }
  
  .tabla-dboard th,
  .tabla-dboard td {
    white-space: nowrap; /* Evitar el retorno de línea en celdas de texto largas */
    max-width: 200px; /* Ajusta según sea necesario */
    overflow: hidden;
    text-overflow: ellipsis; /* Puntos suspensivos (...) para indicar texto truncado */
  }
}

#dashboard .tabla-dboard  th {
  font-size: 15px;
}
@media (max-width:1440px) {
 
	
 .tabla-dboard td{
    font-size: 0.7em; /* Ajusta según sea necesario */
    /* Otras propiedades para reducir el tamaño en dispositivos más pequeños */
  
	 
}
	.tabla-dboard th{
    font-size: 0.7em;
	
}
}

.tabla-dboard .boton-delete {
  border-style: none;
  border-radius: 6px;
  outline: none;
  background: #F70004;
  padding: 5px 10px;
  color: white;
}
.tabla-dboard .boton-delete i {
  font-size: 25px;
  font-weight: 500;
}
.tabla-dboard .boton-delete:hover {
  border-style: none;
  border-radius: 6px;
  outline: none;
  background: #F70004;
  padding: 5px 10px;
  color: white;
  filter: saturate(1.3);
  transition: 0.5;
}
.tabla-dboard .boton-edit {
  border-style: none;
  border-radius: 6px;
  outline: none;
  background: #A718DD;
  padding: 5px 10px;
  color: white;
}
.tabla-dboard .boton-edit i {
  font-size: 25px;
  font-weight: 500;
}
.tabla-dboard .boton-edit:hover {
  border-style: none;
  border-radius: 6px;
  background: #A718DD;
  padding: 5px 10px;
  color: white;
  filter: saturate(1.3);
}
.delete-edit {
  display: none;
}
/* FIN ESTILO TABLA */
.card-dashboard .add-item-btn {
  border-style: none;
  border-radius: 6px;
  outline: none;
  padding: 10px 40px 10px 40px;
  margin-right: 15px;
  color: white;
  font-weight: 500;
}
.card-dashboard .add-item-btn:hover {
  border-style: none;
  border-radius: 6px;
  padding: 10px 40px 10px 40px;
  margin-right: 15px;
  transition: 0.5;
  font-weight: 500;
  color: white;
}
/*colores botonera tabla*/
.card-dashboard .color-1 {
   background:linear-gradient(135deg, #5d9bec 0%,#0d64d7 100%);
}
.card-dashboard .color-2 {
   background:linear-gradient(135deg, #ffd97b 0%,#f6a742 100%);
}
.card-dashboard .color-3 {
  background:linear-gradient(135deg, #48cfad 0%,#19a783 100%);
}
.card-dashboard .color-4 {
   background:linear-gradient(135deg, #ab92ec 0%,#7454c3 100%);
}
.card-dashboard .add-item-btn:hover {
  background: #34C95C;
}
@media (max-width:768px) {
  .card-dashboard .add-item-btn {
    border-style: none;
    border-radius: 4px;
    outline: none;
    padding: 5px 15px 5px 15px;
    margin-right: 5px;
    color: white;
    font-weight: 500;
  }
  .card-dashboard #no-in-mobile {
    display: none;
  }
  .card-dashboard .add-item-btn:hover {
    border-style: none;
    border-radius: 6px;
    padding: 5px 15px 5px 15px;
    margin-right: 5px;
    transition: 0.5;
    font-weight: 500;
    color: white;
  }
}


	
/* CRM CALENDAR */
.card-calendario {
  border-radius: 15px;
  border-style: solid;
  border-color: white;
  background: white;
  box-shadow: 0px 0px 10px 4px rgba(0, 0, 0, 0.2);
  padding-left: 30px;
  padding-right: 30px;
  margin-bottom: 0px;
  width: auto;
  height: auto;
}
@media (max-width:768px) {
  .card-calendario {
    border-radius: 15px;
    border-style: solid;
    border-color: white;
    background: white;
    box-shadow: 0px 0px 10px 4px rgba(0, 0, 0, 0.2);
    padding-left: 10px;
    padding-right: 10px;
    margin-bottom: 0px;
    width: 100%;
    height: auto
  }
}
/* declare a 7 column grid on the table */
#calendar {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  border-radius: 10px;
}
#calendar tr, #calendar tbody {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  width: 100%;
}
caption {
  text-align: center;
  grid-column: 1 / -1;
  font-size: 130%;
  font-weight: bold;
  padding: 10px 0;
}
#calendar a {
  color: mediumseagreen;
  text-decoration: none;
}
#calendar td, #calendar th {
  padding: 5px;
  box-sizing: border-box;
  border: 1px solid #ccc;
}
#calendar .weekdays {
  background: #12C775;
}
#calendar tr {
  border-radius: 8px 8px 0 0px;
}
#calendar .weekdays th {
  text-align: center;
  text-transform: uppercase;
  line-height: 30px;
  border: none !important;
  padding: 10px 6px;
  color: #fff;
  font-size: 14px;
}
#calendar td {
  min-height: 120px;
  max-height: 120px;
  display: flex;
  flex-direction: column;
}
#calendar .days li:hover {
  background: #d3d3d3;
}
#calendar .date {
  text-align: center;
  margin-bottom: 5px;
  padding: 4px;
  background: #B4E0F0;
  color: black;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  flex: 0 0 auto;
  align-self: flex-end;
}
#calendar .date:hover {
  text-align: center;
  margin-bottom: 5px;
  padding: 4px;
  background: #2EEF68;
  color: black;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  box-shadow: 0 0px 10px 0px rgba(0, 0, 0, 0.3);
  flex: 0 0 auto;
  align-self: flex-end;
}
#calendar .event {
  flex: 0 0 auto;
  font-size: 12px;
  border-radius: 4px;
  padding: 5px;
  margin-bottom: 5px;
  line-height: 14px;
  background: #B352EC;
  border: 1px solid #b5dbdc;
  color: white;
  text-decoration: none;
}
#calendar .event:hover {
  flex: 0 0 auto;
  font-size: 12px;
  border-radius: 4px;
  padding: 5px;
  margin-bottom: 5px;
  line-height: 14px;
  background: #B352EC;
  border: 1px solid #b5dbdc;
  color: white;
  text-decoration: none;
  filter: saturate(1.4);
}
#calendar .event-desc {
  color: blanchedalmond;
  margin: 3px 0 7px 0;
  text-decoration: none;
}
#calendar .other-month {
  background: #f5f5f5;
  color: #666;
  max-height: 1
}
/* PANTALLAS MENOS A 1440*/
@media (max-width:1440px) {
  #calendar td {
    min-height: 100px;
    max-height: 100px;
    display: flex;
    flex-direction: column;
  }
  #calendar .date {
    text-align: center;
    margin-bottom: 5px;
    padding: 4px;
    background: #B4E0F0;
    color: black;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    flex: 0 0 auto;
    align-self: flex-end;
  }
  #calendar .date:hover {
    text-align: center;
    margin-bottom: 5px;
    padding: 4px;
    background: #2EEF68;
    color: black;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    box-shadow: 0 0px 10px 0px rgba(0, 0, 0, 0.3);
    flex: 0 0 auto;
    align-self: flex-end;
  }
  #calendar .event {
    flex: 0 0 auto;
    font-size: 10px;
    border-radius: 4px;
    padding: 3px;
    margin-bottom: 5px;
    line-height: 9px;
    background: #B352EC;
    border: 1px solid #b5dbdc;
    color: white;
    text-decoration: none;
  }
  #calendar .event:hover {
    flex: 0 0 auto;
    font-size: 12px;
    border-radius: 4px;
    padding: 5px;
    margin-bottom: 5px;
    line-height: 14px;
    background: #B352EC;
    border: 1px solid #b5dbdc;
    color: white;
    text-decoration: none;
    filter: saturate(1.4);
  }
  #calendar .event-desc {
    color: blanchedalmond;
    margin: 3px 0 7px 0;
    text-decoration: none;
  }
}
/* ============================
				Mobile Responsiveness
   ============================*/
@media (max-width: 768px) {
  #calendar .weekdays, #calendar .event {
    display: none;
  }
  #calendar li {
    height: auto !important;
    border: 1px solid #ededed;
    width: calc(100% / 7);
    padding: 5px;
    margin-bottom: -1px;
  }
  #calendar, #calendar tr, #calendar tbody {
    grid-template-columns: repeat (7, 1fr);
  }
  #calendar tr {
    grid-column: 1 / -1;
  }
  #calendar .date {
    align-self: center;
    font-size: 14px;
    height: 30px;
    width: 30px;
  }
  #calendar .event {
    font-size: 10px;
    padding: 3px;
    margin-bottom: 3px;
  }
}


.card-clients {
	max-width: auto;
border-radius: 10px;
  border-style: none;
  border-color: white;
  background: white;
  box-shadow: 0px 0px 6px 1px rgba(0, 0, 0, 0.1);
  padding-left: 2px;
  padding-right: 2px;
  margin-bottom: 0px;
	
}



.tabla-clientes img {
	
	max-width: 80px;
	max-height: 80px;
	border-radius: 50%;
	border-style:none;
	border-color: lightgray;
	border-width: thin;
	padding: 5px;
	background:linear-gradient(135deg, #1995fb 0%,#25ddc8 100%);
	box-shadow: 0px 0px 13px 2px rgba(0, 0, 0, 0.1);
	
}


.tabla-clientes  {
      width: 100%;
      border-collapse: collapse;
      margin-top: 20px;
	 margin-left: 0px;
    }

   #tab-clientes th, td {
      border: 1px solid #ddd;
      padding: 8px;
      text-align: left;
      vertical-align: middle; 
    }


#tab-clientes.table-hover tbody  tr:hover {
 background:linear-gradient(135deg, #69ff96 0%,#00e3ff 100%);
  color:black; /* Cambia a tu color de texto deseado */
	font-weight: 400;
	border: 1px solid #fff;
	border-radius: 15px;
	box-shadow: 0px 0px 8px 6px rgba(0, 0, 0, 0.2);
	transition: 0.3s;
	
}

 #tab-clientes table-hover tbody  td:hover {
      border: 0px solid none;

}






.cli-header .add-item-btn {
  border-style: none;
  border-radius: 6px;
  outline: none;
  padding: 10px 40px 10px 40px;
  margin-right: 15px;
  color: white;
  font-weight: 500;
}
.cli-header .add-item-btn:hover {
  border-style: none;
  border-radius: 6px;
  padding: 10px 40px 10px 40px;
  margin-right: 15px;
  transition: 0.5;
  font-weight: 500;
  color: white;
}





/*colores botonera tabla*/
.cli-header .color-1 {
  background:linear-gradient(135deg, #5d9bec 0%,#0d64d7 100%);
}
.cli-header .color-2 {
  background:linear-gradient(135deg, #ffd97b 0%,#f6a742 100%);
}
.cli-header .color-3 {
background:linear-gradient(135deg, #48cfad 0%,#19a783 100%);
}
.cli-header .color-4 {
  background:linear-gradient(135deg, #ab92ec 0%,#7454c3 100%);
}
.cli-header .add-item-btn:hover {
  background: #34C95C;
}
@media (max-width:768px) {
  .cli-header .add-item-btn {
    border-style: none;
    border-radius: 4px;
    outline: none;
    padding: 5px 15px 5px 15px;
    margin-right: 5px;
    color: white;
    font-weight: 500;
  }
  .cli-header #no-in-mobile {
    display: none;
  }
  .cli-header .add-item-btn:hover {
    border-style: none;
    border-radius: 6px;
    padding: 5px 15px 5px 15px;
    margin-right: 5px;
    transition: 0.5;
    font-weight: 500;
    color: white;
  }
}




	@media screen and (max-width: 600px) {
  #tab-clientes {
    border-spacing: 2px; /* Agrega espacio entre las celdas */
    border-collapse: separate; /* Asegura que el espacio sea visible */
  }
		


  #tab-clientes th, #tab-clientes td {
    padding: 5px; /* Ajusta el relleno para mayor separación */
    border: 0px;
    margin: 20px 0; /* Ajusta el margen para separar los grupos */
  }

  #tab-clientes {
    border: 0;
  }

  #tab-clientes, #tab-clientes tbody, #tab-clientes tr, #tab-clientes td, #tab-clientes th {
    display: block;
    width: 100%;
  }

  #tab-clientes th {
    display:none;
	 
  }

  #tab-clientes tbody tr:nth-child(even) {
    background-color: #A0E3E7;
	
  }

  #tab-clientes td {
    text-align: center;
  }

  #tab-clientes td:before {
    content: attr(data-label);
    font-weight: bold;
    display: block;
    margin-bottom: 5px;
  }
		
		
		 
   
}

  

.tabla-clientes .boton-delete {
  border-style: none;
  border-radius: 6px;
  outline: none;
  background: #F70004;
  padding: 5px 10px;
  color: white;
}
.tabla-clientes .boton-delete i {
  font-size: 25px;
  font-weight: 500;
}
.tabla-clientes .boton-delete:hover {
  border-style: none;
  border-radius: 6px;
  outline: none;
  background: #F70004;
  padding: 5px 10px;
  color: white;
  filter: saturate(1.3);
  transition: 0.5;
}
.tabla-clientes .boton-edit {
  border-style: none;
  border-radius: 6px;
  outline: none;
  background: #A718DD;
  padding: 5px 10px;
  color: white;
}
.tabla-clientes .boton-edit i {
  font-size: 25px;
  font-weight: 500;
}
.tabla-clientes .boton-edit:hover {
  border-style: none;
  border-radius: 6px;
  background: #A718DD;
  padding: 5px 10px;
  color: white;
  filter: saturate(1.3);
}
.delete-edit-cli {
  display: none;
}




/*FIN CRM CALENDAR */




/* INICIO CRM REPORTES */
.card-reportes {
 border-radius: 8px;
  border-style: solid;
  border-color: white;
  background: white;
  box-shadow: 0px 0px 4px 3px rgba(0, 0, 0, 0.1);
  padding-left: 20px;
  padding-right: 20px;
	margin-bottom: 0px;
}


.card-reportes .info-card-1,
.card-reportes .info-card-2,
.card-reportes .info-card-3 {
	border-style: none;
	border-radius: 8px;
	padding: 10px 15px 10px 15px;
	margin: 0px 15px;
	
	
}

.card-reportes .info-card-1:hover,
.card-reportes .info-card-2:hover,
.card-reportes .info-card-3:hover {
	filter: saturate(1.6);
	transition: 0.4s;
	
	
}



.card-reportes .info-card-1 h3,
.card-reportes .info-card-2 h3,
.card-reportes .info-card-3 h3 {
	font-size: 35px;
	font-weight: 600;
	color:whitesmoke;
	
}

.card-reportes .info-card-1 p, 
.card-reportes .info-card-2 p,
.card-reportes .info-card-3 p {
	font-size: 13px;
	color: whitesmoke;
	
}


.report-dinero,
.report-locus {
	border-style: none;
	padding: 20px;
	margin-right: 10px;
	border-radius: 8px;
	 box-shadow: 0px 0px 4px 3px rgba(0, 0, 0, 0.1);
}




/*TABLAS REPORTES */

.tabla-dinero,
.tabla-locus {
	width:100%;
	overflow-x: hidden;
	 border-collapse: collapse;
	
}

#report-dinero .table-hover tbody  tr:hover {
 background:linear-gradient(135deg, #69ff96 0%,#00e3ff 100%);
  color:black; /* Cambia a tu color de texto deseado */
	font-weight: 400;
	border: 1px solid #fff;
	border-radius: 15px;
	box-shadow: 0px 0px 8px 6px rgba(0, 0, 0, 0.2);
	transition: 0.3s;
	
}

 #report-dinero .table-hover tbody  td:hover {
      border: 0px solid none;

}


#report-locus .table-hover tbody  tr:hover {
 background:linear-gradient(135deg, #69ff96 0%,#00e3ff 100%);
  color:black; /* Cambia a tu color de texto deseado */
	font-weight: 400;
	border: 1px solid #fff;
	border-radius: 15px;
	box-shadow: 0px 0px 8px 6px rgba(0, 0, 0, 0.2);
	transition: 0.3s;
	
}

 #report-locus .table-hover tbody  td:hover {
      border: 0px solid none;

}




@media (max-width:1440px) {
	.tabla-locus tbody td,
	.tabla-dinero tbody td{
		font-size: 11px;
		
	}
	
	.tabla-locus tbody th,
	.tabla-dinero tbody th,
	.tabla-locus thead th,
	.tabla-dinero thead th {
		font-size: 14px;
		
	}
	
	
}






/* COLORES TABS */

.reports-col-1 {
	background:linear-gradient(135deg, #C56CD6 0%,#3425AF 100%);
}

.reports-col-2 {
	background:linear-gradient(135deg, #13f1fc 0%,#0470dc 100%);
}

.reports-col-3 {
	background:linear-gradient(135deg, #42e695 0%,#3bb2b8 100%);;
}

/* FIN CRM REPORTES */
/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.footer {
  color: var(--color-black);
  font-size: 14px;
  background-color: white;
  margin-top: -50px;
}
.footer .footer-content {
  background: var(--color-white);
  padding: 60px 0 30px 0;
}
.footer .footer-content .footer-info {
  margin-bottom: 30px;
}
.footer .footer-content .footer-info h3 {
  font-size: 28px;
  margin: 0 0 20px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-weight: 700;
  text-transform: uppercase;
}
.footer .footer-content .footer-info h3 span {
  color: var(--color-black);
}
.footer .footer-content .footer-info p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: var(--font-primary);
  color: var(--color-black);
}
.footer .footer-content h4 {
  font-size: 16px;
  font-weight: 600;
  color: var(--color-black);
  position: relative;
  padding-bottom: 12px;
  margin-bottom: 15px;
}
.footer .footer-content h4::after {
  content: "";
  position: absolute;
  display: block;
  width: 20px;
  height: 2px;
  background: var(--color-primary);
  bottom: 0;
  left: 0;
}
.footer .footer-content .footer-links {
  margin-bottom: 30px;
}
.footer .footer-content .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer .footer-content .footer-links ul i {
  padding-right: 2px;
  color: var(--color-primary);
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
}
.footer .footer-content .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}
.footer .footer-content .footer-links ul li:first-child {
  padding-top: 0;
}
.footer .footer-content .footer-links ul a {
  color: rgba(var(--color-black), 0.7);
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}
.footer .footer-content .footer-links ul a:hover {
  color: var(--color-purple);
}
.footer .footer-content .footer-newsletter form {
  margin-top: 30px;
  padding: 1px 1px;
  position: relative;
  border-radius: 25px;
}
.footer .footer-content .footer-newsletter form input[type=email] {
  border-radius: 6px;
  border-style: solid;
  border-color: (--color-black);
  padding: 4px;
  width: calc(100% - 110px);
}
.footer .footer-content .footer-newsletter form input[type=email]:focus-visible {
  outline: none;
}
.footer .footer-content .footer-newsletter form input[type=submit] {
  position: absolute;
  top: 0;
  right: -5px;
  bottom: 0;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 20px;
  background: var(--color-primary);
  color: var(--color-white);
  transition: 0.3s;
  border-radius: 6px;
}
.footer .footer-content .footer-newsletter form input[type=submit]:hover {
  background: rgba(var(--color-primary-rgb), 0.85);
}
.footer .footer-legal {
  padding: 30px 0;
  background: var(--color-black);
}
.footer .footer-legal .credits {
  padding-top: 4px;
  font-size: 13px;
  color: var(--color-white);
}
.footer .footer-legal .credits a {
  color: var(--color-primary-light);
}
.footer .footer-legal .social-links a {
  font-size: 18px;
  display: inline-block;
  background: rgba(var(--color-white-rgb), 0.1);
  color: var(--color-white);
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 4px;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}
.footer .footer-legal .social-links a:hover {
  background: var(--color-primary);
  text-decoration: none;
}
/* Class*/
.visible {
  visibility: visible !important;
}
.invisible {
  visibility: hidden !important;
}
.element {
  @include invisible(visible);
}
.element {
  @include invisible(hidden);
}


/*IFRAMES compartir demoteca*/

.iframe-contenido {
  width: 100%; /* Ajusta según tus necesidades */
  height: 500px; /* Ajusta según tus necesidades */
  border: none; /* Elimina el borde si no es necesario */
}



/* ---------------ALERTAS---------------- */
.slit-in-vertical {
  -webkit-animation: slit-in-vertical 0.45s ease-out both;
  animation: slit-in-vertical 0.45s ease-out both;
}
@-webkit-keyframes slit-in-vertical {
  0% {
    -webkit-transform: translateZ(-800px) rotateY(90deg);
    transform: translateZ(-800px) rotateY(90deg);
    opacity: 0;
  }
  54% {
    -webkit-transform: translateZ(-160px) rotateY(87deg);
    transform: translateZ(-160px) rotateY(87deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateZ(0) rotateY(0);
    transform: translateZ(0) rotateY(0);
  }
}
@keyframes slit-in-vertical {
  0% {
    -webkit-transform: translateZ(-800px) rotateY(90deg);
    transform: translateZ(-800px) rotateY(90deg);
    opacity: 0;
  }
  54% {
    -webkit-transform: translateZ(-160px) rotateY(87deg);
    transform: translateZ(-160px) rotateY(87deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateZ(0) rotateY(0);
    transform: translateZ(0) rotateY(0);
  }
}
/*---------------#region Alert--------------- */
/*---------------#region Alert--------------- */
#dialogoverlay {
  display: none;
  opacity: .8;
  position: fixed;
  top: 0px;
  left: 0px;
  background: #707070;
  width: 100%;
  z-index: 10;
}
#dialogbox {
  display: none;
  position: absolute;
  background: rgb(0, 47, 43);
  border-radius: 7px;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.575);
  transition: 0.3s;
  width: 40%;
  z-index: 10;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
}
#dialogbox:hover {
  box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.911);
}

  padding: 2px 16px;
}
.pure-material-button-contained {
  position: relative;
  display: inline-block;
  box-sizing: border-box;
  border: none;
  border-radius: 4px;
  padding: 0 16px;
  min-width: 64px;
  height: 36px;
  vertical-align: middle;
  text-align: center;
  text-overflow: ellipsis;
  text-transform: uppercase;
  color: rgb(var(--pure-material-onprimary-rgb, 255, 255, 255));
  background-color: rgb(var(--pure-material-primary-rgb, 0, 77, 70));
  /* background-color: rgb(1, 47, 61) */
  box-shadow: 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 1px 5px 0 rgba(0, 0, 0, 0.12);
  font-family: var(--pure-material-font, "Roboto", "Segoe UI", BlinkMacSystemFont, system-ui, -apple-system);
  font-size: 14px;
  font-weight: 500;
  line-height: 36px;
  overflow: hidden;
  outline: none;
  cursor: pointer;
  transition: box-shadow 0.2s;
}
.pure-material-button-contained::-moz-focus-inner {
  border: none;
}
/* ---------------Overlay--------------- */
.pure-material-button-contained::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgb(var(--pure-material-onprimary-rgb, 255, 255, 255));
  opacity: 0;
  transition: opacity 0.2s;
}
/* Ripple */
.pure-material-button-contained::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  border-radius: 50%;
  padding: 50%;
  width: 32px; /* Safari */
  height: 32px; /* Safari */
  background-color: rgb(var(--pure-material-onprimary-rgb, 255, 255, 255));
  opacity: 0;
  transform: translate(-50%, -50%) scale(1);
  transition: opacity 1s, transform 0.5s;
}
/* Hover, Focus */
.pure-material-button-contained:hover, .pure-material-button-contained:focus {
  box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.2), 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12);
}
.pure-material-button-contained:hover::before {
  opacity: 0.08;
}
.pure-material-button-contained:focus::before {
  opacity: 0.24;
}
.pure-material-button-contained:hover:focus::before {
  opacity: 0.3;
}
/* Active */
.pure-material-button-contained:active {
  box-shadow: 0 5px 5px -3px rgba(0, 0, 0, 0.2), 0 8px 10px 1px rgba(0, 0, 0, 0.14), 0 3px 14px 2px rgba(0, 0, 0, 0.12);
}
.pure-material-button-contained:active::after {
  opacity: 0.32;
  transform: translate(-50%, -50%) scale(0);
  transition: transform 0s;
}
/* Disabled */
.pure-material-button-contained:disabled {
  color: rgba(var(--pure-material-onsurface-rgb, 0, 0, 0), 0.38);
  background-color: rgba(var(--pure-material-onsurface-rgb, 0, 0, 0), 0.12);
  box-shadow: none;
  cursor: initial;
}
.pure-material-button-contained:disabled::before {
  opacity: 0;
}
.pure-material-button-contained:disabled::after {
  opacity: 0;
}
#dialogbox > div {
  background: #FFF;
  margin: 8px;
}
#dialogbox > div > #dialogboxhead {
  background: rgb(0, 77, 70);
  font-size: 19px;
  padding: 10px;
  color: rgb(255, 255, 255);
  font-family: Verdana, Geneva, Tahoma, sans-serif;
}
#dialogbox > div > #dialogboxbody {
  background: rgb(0, 47, 43);
  padding: 20px;
  color: #FFF;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
}
#dialogbox > div > #dialogboxfoot {
  background: rgb(0, 47, 43);
  padding: 10px;
  text-align: right;
}
/*#endregion Alert*/
main.modal-open > :not(.modal) {
  -webkit-filter: blur(1px);
  -moz-filter: blur(1px);
  -o-filter: blur(1px);
  -ms-filter: blur(1px);
  filter: blur(1px);
}