/* Google Font Link */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap');
*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins" , sans-serif;
}

.sidebar{
  position: fixed;
  left: 0;
  top: 0;
  height: 100%;
  width: 78px;
  background: #11101D;
  padding: 6px 14px;
  z-index: 99;
  transition: all 0.5s ease;
}
.sidebar.open{
  width: 250px;
}
.sidebar .logo-details{
  height: 60px;
  display: flex;
  align-items: center;
  position: relative;
}
.sidebar .logo-details .icon{
  opacity: 0;
  transition: all 0.5s ease;
}
.sidebar .logo-details .logo_name{
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  opacity: 0;
  transition: all 0.5s ease;
}
.sidebar.open .logo-details .icon,
.sidebar.open .logo-details .logo_name{
  opacity: 1;
}
.sidebar .logo-details #btn{
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  font-size: 22px;
  transition: all 0.4s ease;
  font-size: 23px;
  text-align: center;
  cursor: pointer;
  transition: all 0.5s ease;
}
.sidebar.open .logo-details #btn{
  text-align: right;
}
.sidebar i{
  color: #fff;
  height: 60px;
  min-width: 50px;
  font-size: 28px;
  text-align: center;
  line-height: 60px;
}
.sidebar .nav-list{
  margin-top: 20px;
  height: 100%;
}
.sidebar li{
  position: relative;
  margin: 8px 0;
  list-style: none;
}
.sidebar li .tooltip{
  position: absolute;
  top: -20px;
  left: calc(100% + 15px);
  z-index: 3;
  background: #fff;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
  padding: 6px 12px;
  border-radius: 4px;
  font-size: 15px;
  font-weight: 400;
  opacity: 0;
  white-space: nowrap;
  pointer-events: none;
  transition: 0s;
}
.sidebar li:hover .tooltip{
  opacity: 1;
  pointer-events: auto;
  transition: all 0.4s ease;
  top: 50%;
  transform: translateY(-50%);
}
.sidebar.open li .tooltip{
  display: none;
}
.sidebar input{
  font-size: 15px;
  color: #FFF;
  font-weight: 400;
  outline: none;
  height: 50px;
  width: 100%;
  width: 50px;
  border: none;
  border-radius: 12px;
  transition: all 0.5s ease;
  background: #1d1b31;
}
.sidebar.open input{
  padding: 0 20px 0 50px;
  width: 100%;
}
.sidebar .bx-search{
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  font-size: 22px;
  background: #1d1b31;
  color: #FFF;
}
.sidebar.open .bx-search:hover{
  background: #1d1b31;
  color: #FFF;
}
.sidebar .bx-search:hover{
  background: #FFF;
  color: #11101d;
}
.sidebar li .side-link{
  display: flex;
  height: 100%;
  width: 100%;
  border-radius: 12px;
  align-items: center;
  text-decoration: none;
  transition: all 0.4s ease;
  background: #11101D;
}
.sidebar li .side-link:hover{
  background: #FFF;
}
.sidebar li .side-link .links_name{
  color: #fff;
  font-size: 15px;
  font-weight: 400;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: 0.4s;
}
.sidebar.open li .side-link .links_name{
  opacity: 1;
  pointer-events: auto;
}
.sidebar li .side-link:hover .links_name,
.sidebar li .side-link:hover i{
  transition: all 0.5s ease;
  color: #11101D;
}
.sidebar li i{
  height: 50px;
  line-height: 50px;
  font-size: 18px;
  border-radius: 12px;
}
.sidebar li.profile{
  position: fixed;
  height: 60px;
  width: 78px;
  left: 0;
  bottom: -8px;
  padding: 10px 14px;
  background: #1d1b31;
  transition: all 0.5s ease;
  overflow: hidden;
}
.sidebar.open li.profile{
  width: 250px;
}
.sidebar li .profile-details{
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
}
.sidebar li img{
  height: 45px;
  width: 45px;
  object-fit: cover;
  border-radius: 6px;
  margin-right: 10px;
}
.sidebar li.profile .name,
.sidebar li.profile .job{
  font-size: 15px;
  font-weight: 400;
  color: #fff;
  white-space: nowrap;
}
.sidebar li.profile .job{
  font-size: 12px;
}
.sidebar .profile #log_out{
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  background: #1d1b31;
  width: 100%;
  height: 60px;
  line-height: 60px;
  border-radius: 0px;
  transition: all 0.5s ease;
}
.sidebar.open .profile #log_out{
  width: 50px;
  background: none;
}
.home-section{
  position: relative;
  min-height: 100vh;
  top: 0;
  left: 78px;
  width: calc(100% - 78px);
  transition: all 0.5s ease;
  /*z-index: 2;*/
}
.sidebar.open ~ .home-section{
  left: 250px;
  width: calc(100% - 250px);
}
.home-section .text{
  display: inline-block;
  color: #11101d;
  font-size: 25px;
  font-weight: 500;
  margin: 18px
}
@media (max-width: 420px) {
  .sidebar li .tooltip{
    display: none;
  }
}

/* login form */
.absolute-bottom-left {
	position: absolute;
	left: 0;
	bottom: 0;
}

.background-walk-y {
	background-repeat: no-repeat;
	background-position: 0 0%;
	-webkit-animation-name: backgroundWalkY;
			animation-name: backgroundWalkY;
	-webkit-animation-duration: 70s;
			animation-duration: 70s;
	-webkit-animation-iteration-count: infinite;
			animation-iteration-count: infinite;
	-webkit-animation-direction: alternate;
			animation-direction: alternate;
	-webkit-animation-fill-mode: forwards;
			animation-fill-mode: forwards;
	-webkit-animation-timing-function: linear;
			animation-timing-function: linear;
	background-size: 100%; 
}

@media (max-width: 1199.98px) {
	.background-walk-y {
		background-size: cover; } 
}

.background-walk-x {
	background-repeat: no-repeat;
	background-position: 0 0%;
	-webkit-animation-name: backgroundWalkX;
			animation-name: backgroundWalkX;
	-webkit-animation-duration: 70s;
			animation-duration: 70s;
	-webkit-animation-iteration-count: infinite;
			animation-iteration-count: infinite;
	-webkit-animation-direction: alternate;
			animation-direction: alternate;
	-webkit-animation-fill-mode: forwards;
			animation-fill-mode: forwards;
	-webkit-animation-timing-function: linear;
			animation-timing-function: linear; 
}

@-webkit-keyframes backgroundWalkY {
	0% {
	background-position: 0 0%; }
	100% {
	background-position: 0 100%; } 
}

@keyframes backgroundWalkY {
	0% {
	background-position: 0 0%; }
	100% {
	background-position: 0 100%; } 
}

@-webkit-keyframes backgroundWalkX {
	0% {
	background-position: 0 0%; }
	100% {
	background-position: 100% 0; } 
}

@keyframes backgroundWalkX {
	0% {
	background-position: 0 0%; }
	100% {
	background-position: 100% 0; } 
}

.overlay-gradient-bottom:after {
	content: ' ';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: false;
	background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 65%, rgba(0, 0, 0, 0.65) 100%);
	z-index: 1; 
}

.overlay-gradient-top:after {
	content: ' ';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: false;
	background-image: linear-gradient(to top, rgba(0, 0, 0, 0) 65%, rgba(0, 0, 0, 0.65) 100%);
	z-index: 1; 
} 

.index-2{
    z-index: 2;
}

/* Sweetalert */
.swal2-actions button {margin: 0 5px;}

.thumb-sm{
    height: 36px !important;
    width: 36px !important;
    font-size: 12px;
    font-weight: 700;
}

/* timeline */
.timeline {
    list-style-type: none;
    position: relative;
}

.timeline:before {
    background: #dee2e6;
    left: 9px;
    width: 2px;
    height: 100%;
}

.timeline-item:before, .timeline:before {
    content: " ";
    display: inline-block;
    position: absolute;
    z-index: 1;
}

.timeline-item:before {
    background: #fff;
    border-radius: 50%;
    border: 3px solid #3b7ddd;
    left: 0;
    width: 20px;
    height: 20px;
}

/* modales */
.select2-container {
    width: 100% !important;
    padding: 0;
}

/* select2 multiple*/
.select2-container--default .select2-selection--multiple {
    font-size: 12px;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice{
    background-color:#3498db;
    border: solid 1px#3498db;
    color: #fff;
}
.select2-container--default .select2-selection--multiple .select2-selection__choice__remove{
    color: #fff;
    border-right: solid 1px #3498db;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover{
    background-color: #3498db;
    color: #c9e9ff;
}

.select2-container--default.select2-container--focus .select2-selection--multiple, .select2-container--default .select2-selection--multiple{
    border: 1px solid #ced4da;
}

/* drop zone */
.fileuploader-input {
    display: block;
    padding: 50px;
    min-height: 100%;
    background: #FAFAFB;
    text-align: center;
    border: 2px dotted #dededf;
    border-radius: 10px;
}

.fileuploader-input .dz-message {
    display: block;
    padding: 0 0 12px;
    margin-right: 0;
    background: none;
    font-weight: 400;
    font-size: 24px;
    border: 0;
    border-radius: 0;
    box-shadow: none;
}

.fileuploader-input .fileuploader-input-button {
    padding: 0;
    background: none;
    font-weight: 400;
    box-shadow: none;
    border-radius: 0;
}

.fileuploader-input .fileuploader-input-button {
    color: #006EFF;
}

.fileuploader-input .dz-message:before {
    display: block;
    width: 40px;
    height: 48px;
    margin: 0 auto 20px;
    background-image: url(../assets/images/icons/files.svg);
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-size: contain;
    content: "";
    z-index: 1;
}

.fileuploader-input .dz-preview {
    min-height: auto;
}

/*imagen gallery*/
.imagenes-check
{
    right: 10px;
    top:10px;
}
/*cursor*/
.hand{
    cursor: pointer;
}

.icon-width{width: 25px;}