
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}



body {
  min-height: 100vh;
  background: #eef5fe;
}
/* Pre css */
.flex {
  display: flex;
  align-items: center;
}
.nav_image {
  display: flex;
  min-width: 55px;
  justify-content: center;
}
.nav_image img {
  height: 35px;
  width: 35px;
  border-radius: 50%;
  object-fit: cover;
}

.logo_items {
  gap: 8px;
}
.logo_name {
  font-size: 22px;
  color: #333;
  font-weight: 500px;
  transition: all 0.7s ease;
}


/* Sidebar */
.sidebar {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 270px;
  background: #fff; 
  padding: 15px 10px;
  box-shadow: 0 0 2px rgba(0, 0, 0, 0.1);
  transition: all 0.7s ease;
}


.sidebar.close .logo_name,
.sidebar.close #lock-icon,
.sidebar.close #sidebar-close {
  opacity: 0;
  pointer-events: none;
}
#lock-icon,
#sidebar-close {
  padding: 10px;
  color: #2D79E5;
  font-size: 25px;
  cursor: pointer;
  margin-left: -4px;
  transition: all 0.7s ease;
}
#sidebar-close {
  display: none;
  color: #333;
}
.menu_container {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin-top: 40px;
  overflow-y: auto;
  height: calc(100% - 82px);
}

.menu_items>ul{
  padding-left:0px
}



.sidebar-submenu {
  display: none;
  text-decoration: none;
}

.sbmnu_item{
  padding: 7px 0px;
}
.sbmnu_item_a{
  color: #78829d;
  text-decoration: none;
}



.menu_container::-webkit-scrollbar {
  display: none;
}
.menu_title {
  position: relative;
  height: 50px;
  width: 55px;
}
.menu_title .title {
  margin-left: 15px;
  transition: all 0.7s ease;
}
.sidebar.close .title {
  opacity: 0;
}
.menu_title .line {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  height: 3px;
  width: 20px;
  border-radius: 25px;
  background: #aaa;
  transition: all 0.7s ease;
}
.menu_title .line {
  opacity: 0;
}
.sidebar.close .line {
  opacity: 1;
}
.item {
  list-style: none;
  
}
.link {
  text-decoration: none;
  border-radius: 8px;
  margin-bottom: 8px;
  color: inherit;
}

.active_link {
  text-decoration: none;
  border-radius: 8px;
  margin-bottom: 8px;
  color: #fff;
  background-color: #2D79E5;
}

.link:hover {
  color: #2D79E5;
  
}
.link span {
  white-space: nowrap;
}
.link i {
  height: 50px;
  min-width: 55px;
  display: flex;
  font-size: 22px;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
}

.sidebar_profile {
  padding-top: 15px;
  margin-top: 15px;
  gap: 15px;
  border-top: 2px solid rgba(0, 0, 0, 0.1);
}
.sidebar_profile .name {
  font-size: 18px;
  color: #333;
}
.sidebar_profile .email {
  font-size: 80%;
  color: #333;
}

/* navbartop */
.navbartop {
  max-width: 500px;
  width: 100%;
  position: fixed;
  top: 0;
  left: 60%;
  transform: translateX(-50%);
  background: #fff;
  padding: 10px 20px;
  border-radius: 0 0 15px 15px;
  justify-content: space-between;
  z-index: 3;
  opacity: .2;
}

.msgsuccess {
  max-width: 500px;
  width: 100%;
  position: fixed;
  top: 0;
  left: 60%;
  transform: translateX(-50%);
  padding: 10px 20px;
  border-radius: 0 0 8px 8px;
  text-align-last: center;
  z-index: 3;
  background-color: #50CD89;
  border: #50CD89 1px solid;
  color: #ffffff;
}

.msgsuccess:hover{
  background-color: #ffffff;
  color: #50CD89;
  border: #50CD89 1px solid;
  transition: all 0.7s ease;
}

.msgerror {
  max-width: 500px;
  width: 100%;
  position: fixed;
  top: 0;
  left: 60%;
  transform: translateX(-50%);
  padding: 10px 20px;
  border-radius: 0 0 8px 8px;
  text-align-last: center;
  z-index: 3;
  border: #dc3545 1px solid;
  background-color: #dc3545;
  color: #ffffff;
}

.msgerror:hover{
  background-color: #ffffff;
  color: #dc3545;
  border: #dc3545 1px solid;
  transition: all 0.7s ease;
}

.navbartop:hover{
  opacity: 1;
  transition: all 0.7s ease;
}

.search_box {
  height: 46px;
  max-width: 500px;
  width: 100%;
  border: 1px solid #aaa;
  outline: none;
  border-radius: 8px;
  padding: 0 15px;
  font-size: 18px;
  color: #333;
}
.navbartop img {
  height: 40px;
  width: 40px;
  margin-left: 20px;
}

#sidebar-open {
  font-size: 30px;
  color: #333;
  cursor: pointer;
  margin-right: 20px;
  display: none;
}



.sidebar.close {
  width: calc(55px + 20px);
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
}

.home-section{
  float: right;
  width: calc(100% - 270px);
  transition: all 0.7s ease;
  }


.sidebar.close ~ .home-section{
    left: 75px;
    width: calc(100% - 75px);
    transition: all 0.7s ease;
}




/* Responsive */

@media screen and (max-width: 1100px) {
  .navbartop {
    left: 65%;
  }

}

@media screen and (max-width: 800px) {
  .sidebar {
    left: 0;
    z-index: 2000;
  }
  .sidebar.close {
    left: -100%;
  }
  #sidebar-close {
    display: block;
  }
  #lock-icon {
    display: none;
  }
  .navbartop {
    left: 0;
    max-width: 100%;
    transform: translateX(0%);
  }
  #sidebar-open {
    display: block;
  }

  .home-section{
    left: 0px;
    width: calc(100% - 10px);
}


  .sidebar.close ~ .home-section{
    
    width: calc(100% - 10px);
    transition: all 0.7s ease;
  }
}

.cont{
  margin: 75px 30px 50px 30px;
}

.prg-btn-link{
  font-size: x-small;
  text-align-last: right;
}

.prg-btn-link>a{
  text-decoration: dashed;
}


.btn_icon{
  display: flex;
  font-size: 32px;
  text-decoration: none;
}


.vertical-center {
  height: 500px;
  align-content: center;
}

.inner-block-fit {
  width: fit-content;
  margin: auto;
  background: #ffffff;
  box-shadow: 0px 14px 80px rgba(34, 35, 58, 0.2);
  padding: 40px 55px 45px 55px;
  transition: all .3s;
  border-radius: 15px;
}

.inner-block {
  margin: auto;
  background: #ffffff;
  box-shadow: 0px 14px 80px rgba(34, 35, 58, 0.2);
  padding: 20px 20px;
  transition: all .3s;
  border-radius: 10px;
}

.form-group {
  margin-bottom: 1rem;
}

.comment_curvo{
  font-size: 0.8rem;
  color: #4c4c4c;
  font-style: italic;
  font-weight: lighter;
}

.tittlecard{
  font-weight: 600;
  font-size: 1rem;
   
}

.tittle_pr{
  font-size: 1.6rem;
  margin-bottom: 0;
  font-weight: 400;
  padding-bottom: 20px;
  color: #2C7AE5;
}

.contgrid{
display: grid;
grid-template: 300px 250px 200px 150px / 30% 40% 30%;
grid-gap:10px 10px;
}


.itemgrid{
background-color: black;
border:1px solid peru;
padding: 10px;
}


.primary-subtle{
  border: #9ec5fe 1px solid;
  background-color: #cfe2ff;
  padding: 1rem !important;
  border-radius: 0.5rem;
  color: #052c65;
  
}

.success-subtle{
  border: #a3cfbb 1px solid;
  background-color: #d1e7dd;
  padding: 1rem !important;
  border-radius: 0.5rem;
  color: rgb(25 135 84);
  
}

.warning-subtle{
  border: #ffe69c 1px solid;
  background-color: #fff3cd;
  padding: 1rem !important;
  border-radius: 0.5rem;
  color: rgb(255 193 7);
  
}

.danger-subtle{
  border: #f1aeb5 1px solid;
  background-color: #f8d7da;
  padding: 1rem !important;
  border-radius: 0.5rem;
  color: rgb(220 53 69);
  
}


.tox {
  box-shadow: none;
  box-sizing: content-box;
  color: #222f3e;
  cursor: auto;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  -webkit-tap-highlight-color: transparent;
  text-decoration: none;
  text-shadow: none;
  text-transform: none;
  vertical-align: initial;
  white-space: normal;
}


.section-grid{
  display: inline-flex;
  gap: 20px;
}
.tile{
  height: 7rem;
  width: 170px;
  position: relative;
}

.tile > input[type="radio"]{
  -webkit-appearance: none;
  position: relative;
  height: 100%;
  width: 100%;
  background-color: #ffffff;
  border-radius: 10px;
  cursor: pointer;
  border: 3px solid transparent;
  outline: none;
  box-shadow: 4px 4px 12px 8px rgba(2, 28, 53, 0.05);
}

.tile > input[type="radio"]:hover{
  transform: scale(1.08);
}
.tile > input[type="radio"]:checked{
  border: 3px solid #478bfb;
}

.tile > label{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  height: 80%;
  width: 100%;
  position: absolute;
  bottom: 0;
  cursor: pointer;
}


.comment1{
  color: #b4bac4;
  font-size: 0.9rem;
}

.badge-green{
  background-color: #50CC89;
  color: white;
  /* background-color: var(--bs-success-light); */
  display: inline;
  padding: 3px 10px;
  border-radius: 0.3rem;
  font-size: 0.9rem;
}

.badge-blue{
  background-color: #5992eb;
  color: white;
  /* background-color: var(--bs-success-light); */
  display: inline;
  padding: 3px 10px;
  border-radius: 0.3rem;
  font-size: 0.9rem;
}

.badge-red{
  background-color: #f8d7da;
  color: rgb(220 53 69);
  /* background-color: var(--bs-success-light); */
  display: inline;
  padding: 3px 10px;
  border-radius: 0.3rem;
  font-size: 0.9rem;
}