@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800&display=swap');

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
  }
  
  html {
    font-size: 62.5%;
  }
  
  body {
    min-height: 100vh;
    display:flex;
    flex-direction: column;
    font-size: var(--medium);
  }

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


.container {
    max-width: 1100px;
    margin: 0 auto;
}

.active {
    border-bottom: solid 1px rgb(68,80,169); 
}

.active_icone {
    color: rgb(68,80,169);
}

.logo img {
    max-width: 100px;
    margin: 3%;
}

footer .logo img {
    max-width: 75px;
}

header {
    width: 100%;
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-bottom: solid 1px rgba(108, 122, 137, 0.5);
}

#menu-open {
    border: none;
    background: none;
    cursor: pointer;
    flex-direction: column;
    align-items: center;
    font-size: 3rem;

    position: absolute;
    top:15px;
    right: 15px;

    display: none;
}

div.menu {
    flex-grow: 1;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.menu__primary, .menu__secondary {
    display: flex;
    align-items: center;
}

.menu__primary a {
    margin: 0 10px;
    font-size: var(--medium);
}

.menu__secondary a, .menu__secondary button {
    margin: 0 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: var(--medium);
}

.menu__secondary button {
    border: none;
    background: none;
    cursor: pointer;
}

.menu__secondary i {
    font-size: 3.5rem;
}

.welcome {
    position: absolute;
    bottom: 0;
    right: 0;
}

div.main {
    flex-grow: 1;
}

.title {
    margin: 45px 0px;
    font-weight: 600;
    font-size: var(--xlarge);
}

.subtitle {
    margin: 30px 0;
    font-weight: 500;
    font-size: var(--large);
}

.subsubtitle {
    font-size: var(--medium);
    margin: 15px 0px;
    font-weight: 400;    
}

.button {
    padding: 0.5rem 1rem;
    font-size: var(--medium);
    line-height: 1.5;
    border-radius: 0.5rem;
    border: none;
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
}

.button > i {
    font-size: 1.5rem;
}



.blue {
    background-color: #2A81CB;
    border-color: #3274A3;
}
.red {
    background-color:#dc143c ;
    border: solid 1px #b23849; 
}
.green {
    background-color: #2AAD27;
    border: solid 1px #1d791b;
}
.gray {
    background-color: #7B7B7B;
    border-color: #484848;
}



footer {
    margin-top: 40px !important;
    display: flex;
    align-items: center;
    text-align: center;
}

.notif {
    position: absolute;
    z-index: 999;
    top: 20px;
    right: 20px;
}

.notif__box {
    min-width: 250px;
    color: white;
    border-radius: 5px;
    padding: 20px ;
    transition: all 5s ease-out;
}

.notif__box .close {
   position: absolute;
   top: 0;
   right: 0;
   z-index: 999;
   transform: translate(50%,-50%);

   background: none;
   border: none;
   cursor: pointer;
}

.close i {
    color:white;
    border-radius: 50%;
    padding: 2px;
    font-size: 2rem;
}

.notif__box.danger {
    background-color:#dc143c ;
}

.notif__box.success {
    background-color:#56ae57 ;
}

.notif__box.danger .close i {
    background-color:  #b23849; 
}

.notif__box.success .close i {
    background-color:  #2e5c2e; 
}

.hidden {
    display: none;
  }

.shadow {
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

  


