

a:link, 
a:visited,
a:hover,
a:active {
  color: rgb(57, 192, 255);
  background-color: transparent;
  text-decoration: none;
}

  body::before {
  content: "";
  position: fixed;
  inset: 0;
  background: url("/img/banner.png") center/cover no-repeat;
  background-size: 50%;
  opacity: 0.2;
  z-index: -1;
}
/*===== VARIABLES CSS =====*/

:root{
  --header-height: 3rem;
  --nav-width: 68px;
  --nav-width-mobile:55%;

  /*===== Colors =====*/
  --first-color:  #192132;
  --first-color-light: #ffffff;
  --white-color: #0D121C;
  /*===== Font and typography =====*/
  --body-font: 'Poppins', sans-serif;
  --normal-font-size: .6rem;
  
  /*===== z index =====*/
  --z-fixed: 10000000000;
}
   

/*===== BASE =====*/
*,::before,::after{
  box-sizing: border-box;
}


h1,
h2,
h3,
h4,
h5,
h6,
p,
li {
font-size: var(--normal-font-size);
color: #FFFFFF
}



body{
  position: relative;
  margin: var(--header-height) 0 0 0;
  padding: 0 1rem;
  font-family: var(--body-font);
  font-size: var(--normal-font-size);
  transition: .5s;
  text-decoration: none;
  background-color: #0D121C;
  overflow-x: hidden;
  overflow-y: scroll;
}

.botc .botc-list a.collapsed {
  text-decoration: none;
}
.botc .botc-list a {
  text-decoration: none;
}


/*===== HEADER =====*/
.header{
  width: 100%;
  height: var(--header-height);
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1rem;
  z-index: var(--z-fixed);
  transition: .5s;

}

.header__toggle{
  color: #e2cd12;
  font-size: 1.5rem;
  cursor: pointer;
}

.hidden{
  visibility: hidden;
}

.header__img{
  width: 35px;
  height: 35px;
  display: flex;
  justify-content: center;
  border-radius: 50%;
  overflow: hidden;
}

.header__img img{
  width: 40px;
}

/*===== NAV =====*/
.l-navbar{
  position: fixed;
  top: 0;
  left: -30%;
  width: var(--nav-width-mobile);
  height: 100%;
  background-color: var(--first-color);
  padding: .5rem 1rem 0 0;
  transition: .5s;
  z-index: var(--z-fixed);
  
}

.nav{
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
}

.nav__logo, .nav__link{
  display: grid;
  grid-template-columns: max-content max-content;
  align-items: center;
  column-gap: 1rem;
  padding: .5rem 0 .5rem 1.5rem;
}

.nav__logo {
  transform: translateX(24px);
  margin-bottom: 2rem;
  width: 50px;
}
.nav__logo img {
  width: 50px;
  margin-left: -20px;
  border-radius:50%  
}



.nav__logo-icon{
  font-size: 2.25rem;
  color: var(--white-color);
}

.nav__logo-name{
  color: #fff;
  font-weight: 700;
  font-size: 19px;
}

.nav__link{
  position: relative;
  color: #fff;
  margin-bottom: 1.5rem;
  transition: .3s;
}

.nav__link:hover{
  color: #e2cd12;
}

.nav__icon{
  font-size: 1.25rem;
}

/*Show navbar movil*/
.show{
  left: 0;
}

.wrap {
display: flex;
        justify-content: space-around;
}



/*Add padding body movil*/
.body-pd{
  padding-left: calc(var(--nav-width-mobile) + 1rem);
}

/*Active links*/
.active{
  color: #e2cd12;
}

.active::before{
  content: '';
  position: absolute;
  left: 0;
  width: 2px;
  height: 32px;
  background-color: var(--white-color);
}

/* ===== MEDIA QUERIES=====*/
@media screen and (min-width: 768px){
  body{
    margin: calc(var(--header-height) + 1rem) 0 0 0;
    padding-left: calc(var(--nav-width) + 2rem);
  }

  .header{
    height: calc(var(--header-height) + 1rem);
    padding: 0 2rem 0 calc(var(--nav-width) + 2rem);
  }

  .header__img{
    width: 40px;
    height: 40px;
  }

  .header__img img{
    width: 45px;
  }

  .l-navbar{
    left: 0;
    padding: 1rem 1rem 0 0;
    width: var(--nav-width);
  }
  
  /*Show navbar desktop*/
  .show{
    width: calc(var(--nav-width) + 156px);
  }

  /*Add padding body desktop*/
  .body-pd{
    padding-left: calc(var(--nav-width) + 188px);
    background: #0D121C;
  }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 60px 0;
  overflow: hidden;
}

.section-title {
  text-align: center;
  padding-bottom: 30px;
}

.section-title h2 {
  font-size: 24px;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
  color: #e2cd12;
}

.section-title h3 {
  font-size: 13px;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
  top: calc(65px);
  right: 65px;
}

.section-title h2::before {
  content: '';
  position: absolute;
  display: block;
  width: 120px;
  height: 1px;
  background: #ddd;
  bottom: 1px;
  left: calc(50% - 60px);
}

.section-title h2::after {
  content: '';
  position: absolute;
  display: block;
  width: 40px;
  height: 3px;
  background: #e2cd12;
  bottom: 0;
  left: calc(50% - 20px);
}

.section-title p {
  margin-bottom: 0;
  color: #fff;
}

.section-title img {
 	border-radius:50%  

}

.scrolhid {
  overflow: auto; 
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.scrolhid::-webkit-scrollbar {
  display: none;
}

::-webkit-scrollbar {
	width: 12.2px;
}

::-webkit-scrollbar-track {
	box-shadow: inset 0 0 1000px #38383b; 
}

::-webkit-scrollbar-thumb {
	background: #202225; 
	border-radius: 4px;
}
/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: rgb(84, 81, 81); 
  }



#evaler {-webkit-animation-name: txta;
  -webkit-animation-duration: 1.1s;
  animation-name: txta;
  animation-duration: 1.1s}
.evst form {
  -webkit-animation-name: txta;
  -webkit-animation-duration: 1.1s;
  animation-name: txta;
  animation-duration: 1.1s;
  
}
     input[type="text"]::placeholder {
                 
                /* Firefox, Chrome, Opera */
                text-align: center;
            }

  @-webkit-keyframes txta {
  from { opacity:0; } 
  to { opacity:1; }
  }


 input[type="submit"] {
  font-size: 1em;
  font-weight: bold;
  font-family: "Open Sans";
  color: #696666;
  border-radius: 1.5em;
  border: 0.10em solid #F9C23C;
  cursor: pointer;
}
.container {
  max-width: 800px;
  margin: 2em auto;
  padding: 1em;
  background: #111722;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  border-radius: 2vw;
  opacity: 0.9;
}





.block{
  display: inline-block;
  width: auto;
  height: auto;
  padding: 10px;
  margin:13px;
  box-shadow: 0 0 5px #9ecaed;
  min-width:320px;
  max-width:400px;
  border-radius: 16px; 
  background: var(--first-color);
  opacity: 0.9;
}


.block.public {
  box-shadow: 0 0 5px green;
}
.block.private {
  box-shadow: 0 0 5px red;
}

.block h5 {
    text-align:left;
}

.block h4 {  
    color: rgb(57, 192, 255);
}

.block span {
    color: white;
}
.block:hover {
  box-shadow: 0 0 15px #9ecaed;
}

.block.public:hover {
  box-shadow: 0 0 15px green;
}
.block.private:hover { 
  box-shadow: 0 0 15px red;

}

.image-wrapper {
  position: relative;
  width: 80px; /* fixed width to control size */
  aspect-ratio: 1 / 1; /* keep it a perfect square */
  overflow: hidden;
  border-radius: 50%;
  background: #e0e0e0;
}

.image-wrapper .skeleton {
  position: absolute;
  width: 100%;
  height: 100%;
  background: conic-gradient(#ffffff, #9b9b9b, #6e6e6e);
  animation: spin 1s linear infinite;
  background-size: 200% 100%;
  border-radius: 50%;
}

.image-wrapper img,
.image-wrapper video {
  width: 100%;
  height: 100%;
  object-fit: cover; /* this is key for proper scaling */
  display: none;
  border-radius: 50%;
}

.image-wrapper.loaded .skeleton {
  display: none;
}

.image-wrapper.loaded img,
.image-wrapper.loaded video {
  display: block;
}

@keyframes spin {
  0%   { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
.doc-name {
  text-align: center;
}