.mobile {
    width: 100%;
    background-color: transparent;
    height: 65px;
}
  
  
#menuToggle {
    display: flex;
    flex-direction: column;
    position: relative;
    top: 25px;
    left: 25px;
    width: 35px;
    z-index: 1;
    -webkit-user-select: none;
    user-select: none;
}
  
#menuToggle input {
    display: flex;
    width: 40px;
    height: 32px;
    position: absolute;
    cursor: pointer;
    opacity: 0;
    z-index: 2;
}
  
#menuToggle span {
    display: flex;
    width: 29px;
    height: 2px;
    margin-bottom: 5px;
    position: relative;
    background: #ffffff;
    border-radius: 3px;
    z-index: 1;
    transform-origin: 5px 0px;
    transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
                background 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
                opacity 0.55s ease;
}
  
#menuToggle span:first-child {
    transform-origin: 0% 0%;
}
  
#menuToggle span:nth-last-child(2) {
    transform-origin: 0% 100%;
}
  
#menuToggle input:checked ~ span {
    opacity: 1;
    transform: rotate(45deg) translate(-3px, -1px);
    background: #fff;
}

#menuToggle input:checked ~ span:nth-last-child(3) {
    opacity: 0;
    transform: rotate(0deg) scale(0.2, 0.2);
}
  
#menuToggle input:checked ~ span:nth-last-child(2) {
    transform: rotate(-45deg) translate(0, -1px);
}

  
#menu {
    position: absolute;
    width: 255px;
    height: 105vh;
    margin: -50px 0 0 -50px;
    padding: 35px;
    padding-top: 90px;
    background-color: gray;
    -webkit-font-smoothing: antialiased;
    transform-origin: 0% 0%;
    transform: translate(-100%, 0);
    transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0);
    overflow-y: scroll;
}
  
#menu li {
    padding: 10px 0px;
    transition-delay: 2s;
    list-style: none;
}
  
#menuToggle input:checked ~ ul {
    transform: none;
}

#menu li a{
    text-decoration: none;
    color: #fff;
}

#menu li .associa, #menu li .associa-pague{
    background-color: #05AA9D;
    padding: 3px;
    border-radius: 5px;
}





  
.dropdown-mobile{
    float: left;
    overflow: hidden;
}
  
  /* Dropdown button */
.dropdown-mobile .dropbtn-mobile {
    font-size: 1.6rem;
    border: none;
    outline: none;
    color: white;
    padding: 10px 16px 14px 0px;
    background-color: inherit;
    font-family: inherit; /* Important for vertical align on mobile phones */
    margin: 0; /* Important for vertical align on mobile phones */
    cursor: pointer;
}
  
  /* Add a color background color to navbar links on hover */
.navbar a:hover, .dropdown-mobile:hover .dropbtn-mobile {
    /*background-color: #FFF;*/
    color: #fff;
    
    transition: 0.1s linear;
}
  
  /* Dropdown content (hidden by default) */
.dropdown-content-mobile {
    display: none;
    /*position: absolute;*/
    /*background-color: #f9f9f9;*/
    min-width: 131px;
    transition: 0.1s linear;
    /*box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);*/
    z-index: 1;
}
  
.dropdown-content-mobile a {
    float: none;
    color: #fff;
    padding: 5px 10px;
    margin: 5px 0px;
    text-decoration: none;
    display: block;
    text-align: left;
    transition: 0.1s linear;
    width: auto;
    
}
  
  /* Add a grey background color to dropdown links on hover */
.dropdown-content-mobile a:hover {
    background-color: #ddd;
    transition: 0.1s linear;
}
  
  /* Show the dropdown menu on hover */
.dropdown-mobile:hover .dropdown-content-mobile {
    display: block;
    transition: 0.1s linear;
}


#associa{
    padding: 6px;
    border: 1px solid #fff;
    border-radius: 30px;
}

.redes-mobile{
    width: auto;
}

.redes-mobile ul{
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.redes-mobile ul li{
    list-style: none;
}
.redes-mobile ul li a{
    text-decoration: none;
    color: #FFF;
    box-sizing: initial;
    padding: 10px;
    font-size: 2.3rem;
}

