@charset "UTF-8";
/*===== GOOGLE FONTS =====*/
@import url("https://fonts.googleapis.com/css2?family=Nunito:wght@400;600;700&display=swap");
/*===== VARIABLES CSS =====*/
:root {
  --header-height: 3rem;
  --nav-width: 68px;
  /*===== Colors =====*/
  --first-color: #2378d9;
  --first-color-light: #cdd4e2;
  --white-color: #F7F6FB;
  --hover-color: #fdbb50;
  --header-bg-color: #1cb3e4;
  /*===== Font and typography =====*/
  --body-font: 'Nunito', sans-serif;
  --normal-font-size: 1rem;
  /*===== z index =====*/
  --z-fixed: 100;


  /* --clr-primary: red; */
}


body {
  position: relative;
  margin: var(--header-height) 0 0 0;
  padding: 0 1rem;
  font-family: var(--body-font);
  font-size: var(--normal-font-size);
  -webkit-transition: .5s;
  transition: .5s;
}

a {
  text-decoration: none;
  color: inherit;
}

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

.header .header-menu ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 60px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.header .header-menu ul li a {
  background-color: #fff;
  color: #1cb3e4;
  display: block;
  margin: 0 10px;
  font-size: 18px;
  text-decoration: none;
  width: 34px;
  height: 34px;
  line-height: 35px;
  text-align: center;
  border-radius: 50%;
  overflow: hidden;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.header .header-menu ul li a:hover {
  background-color: #4ccee8;
  color: #fff;
}

.header__toggle {
  color: var(--first-color);
  font-size: 1.5rem;
  cursor: pointer;
}

.header__img {
  width: 35px;
  height: 35px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          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);
  height: 100vh;
  padding: .5rem 0.5rem 0 0;
  -webkit-transition: .5s;
  transition: .5s;
  z-index: var(--z-fixed);
}

.nav {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  overflow: hidden;
  overflow-y: auto;
}

.nav::-webkit-scrollbar {
  width: 3px;
  background-color: #2f353f;
}

.nav::-webkit-scrollbar-thumb {
  background-color: #444e5d;
}

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

.nav__logo {
  margin-bottom: 2rem;
}

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

.nav__logo-name {
  color: var(--white-color);
  font-weight: 500;
  margin-left: 0.1rem;
}

.nav__link {
  position: relative;
  margin-bottom: 0.25rem;
  -webkit-transition: .3s;
  transition: .3s;
}

.nav__link:hover {
  color: var(--hover-color) !important;
}

.nav__icon {
  font-size: 1.3rem;
}

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

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

/*Active links*/
.nav__list a.active {
  color: var(--hover-color);
}

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

section.content {
  margin-top: 100px;
  min-height: 80vh;
}

/* ===== MEDIA QUERIES=====*/
@media screen and (min-width: 576px) {
  body {
    margin: calc(var(--header-height) + 1rem) 0 0 0;
    padding-left: calc(var(--nav-width) + 1rem);
  }
  .header {
    height: calc(var(--header-height) + 1rem);
    padding: 0 2rem 0 calc(var(--nav-width) + 1rem);
  }
  .header__img {
    width: 40px;
    height: 40px;
  }
  .header__img img {
    width: 45px;
  }
  .l-navbar {
    left: 0;
    padding: 1rem 0.5rem 0 0;
  }
  /*Show navbar desktop*/
  .show {
    width: calc(var(--nav-width) + 156px);
  }
  /*Add padding body desktop*/
  .body-pd {
    padding-left: calc(var(--nav-width) + 175px);
  }
}

/* FLEXBOX
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.card-150 {
  width: 150px;
  height: 60px;
}

.card-200 {
  width: 200px;
}

/* ICONS
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.card-100 {
  width: 100px;
  height: 100%;
}

.card-100-200 {
  width: 100px;
  height: 200px;
}

.card-icon {
  width: 137px;
  height: 100%;
}

.card-icons {
  padding: 1rem;
  margin-right: 10px;
  background-color: rgb(241, 241, 241);
  border-radius: 5px;
}

.card-icons span {
    white-space: nowrap;
    overflow: hidden;
    width: 100%;
    text-overflow: ellipsis;
    text-align: center;
}

.pointer {
  cursor: pointer;
}

.copied {
  position: fixed;
  bottom: 20px;
  left: 50%;
  -webkit-transform: translate(-50%, 50px);
          transform: translate(-50%, 50px);
  color: #fff;
  background-color: #000;
  padding: 15px 40px;
  min-width: 340px;
  text-align: center;
  opacity: 0;
  pointer-events: none;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

/* 404 page
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.container404 {
  width: 80%;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  text-align: center;
  color: #343434;
}

.container404 h1 {
  font-size: 160px;
  margin: 0;
  font-weight: 900;
  letter-spacing: 20px;
  background: url(../img/bg.jpg) center no-repeat;
  -webkit-text-fill-color: transparent;
  background-clip: border-box;
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}

.container404 a {
  text-decoration: none;
  background: #e55039aa;
  color: #fff;
  padding: 12px 24px;
  display: inline-block;
  border-radius: 25px;
  font-size: 14px;
  text-transform: uppercase;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.container404 a:hover {
  background: #e55039;
}

/* TABLE */
tbody.button-table td:last-child {
  /* text-align: right; */
  width: 30%;
}


/* SEARCH BAR */ 
.search-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50%;

  border: 1px solid hsl(0, 0%, 70%);
  border-radius: 4px;

  transition: all 0.3s;
}

.search-bar:focus-within {
  border-color: hsl(214, 100%, 80%);
  box-shadow: 0 0 10px -2px hsl(214, 100%, 60%);
}

.search-bar i {
  transition: all 0.3s;
}

.search-bar:focus-within i {
  color: hsl(214, 100%, 60%);
}

#search {
  width: 100%;
  font-family: 'Poppins', sans-serif;

  border: none;
}

#search::placeholder {
  font-size: 1rem;
}

.search-bar i {
  margin-right: .75rem;
  font-size: 1.25rem;
}


code {
    font-size: 1em;
    font-weight: 400;
    color: #d63384;
    word-wrap: break-word;
}