.expand {
    display: none;
}

.expand-icon {
    max-width: 30px;
    padding: 3px;
    
    display: block;
    margin-left: auto;

    cursor: pointer;
}

.nav {
  cursor: pointer;
}

.sub-nav {
  cursor: pointer;
}


@media screen and (max-width: 500px) {

    .collapsible {
        overflow: hidden;
        max-height: 0px;

        transition: max-height .5s ease-in-out;
        transition-delay: 0s;
    }
    
    .header {
        grid-template-rows: 1fr auto auto;
        max-height: 500px;
    }

    .expand {
        display: block;
        grid-row-start: 2;
        grid-row-end: 3;
        user-select: none;

        margin-top: 20px;
    }

    .nav-bar {
        grid-row-start: 3;
        grid-row-end: 4;
        
        overflow: hidden;
        max-height: 0px;

        transition: max-height .5s ease-in-out;
    }

}


.header {
    background-color: #f1c401;
    z-index: 2;
}

.sub-navbar {
  user-select: none;
  cursor: pointer;
}

.no-touch {
  pointer-events: none;
  touch-action: none;
}

@media screen and (max-width:500px){
    
    .header {
        padding: 0px;
        margin: 0px;
        padding-top: 10px;
    }

    .comp-title {
        color: #34495e;
    }

    .nav-bar {
        background-color: #34495e;
        grid-template-columns: 1.5fr 1fr 1fr 1fr;
    }

}

.collapsible {
    background-color: #34495e;
}

.nav:hover .sub-navbar {
    background-color: #3498db;
}

.footer {
    background-color: #34495e;
}

.copyright {
    background-color: #34495e;
}

body {
    background-color: #34495e;
}

.expand {
    background-color: #34495e;
    margin-bottom: 0px;

    padding-top: 5px;
    padding-bottom: 5px;
}

.expand-icon {
    margin-right: 5px;
}

.sub-nav:hover {
    color: #3498db;
}

.current {
    color: #3498db;
}

.hide {
    display: none;
}

.hidden {
    opacity: 0;
    pointer-events: none;
}

.loading {
    position: fixed;
    top: 0px;
    left: 0px;
    background-color: rgba(0,0,0,0.8);
    background-color: #34495e;

    width: 100%;
    height: 100%;
    max-width: 100%;

    z-index: 100;


    transition: opacity 0.3s ease-in-out;

    display: block;
}

.load-cont {
    
    margin: 0;
    position: absolute;
    top: 40%;
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);

    left: 51%;
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
}

.lds-ellipsis {
    display: inline-block;
    position: relative;
    width: 80px;
    height: 80px;
  }
  .lds-ellipsis div {
    position: absolute;
    top: 33px;
    width: 13px;
    height: 13px;
    border-radius: 50%;
    background: #fff;
    animation-timing-function: cubic-bezier(0, 1, 1, 0);
  }
  .lds-ellipsis div:nth-child(1) {
    left: 8px;
    animation: lds-ellipsis1 0.6s infinite;
  }
  .lds-ellipsis div:nth-child(2) {
    left: 8px;
    animation: lds-ellipsis2 0.6s infinite;
  }
  .lds-ellipsis div:nth-child(3) {
    left: 32px;
    animation: lds-ellipsis2 0.6s infinite;
  }
  .lds-ellipsis div:nth-child(4) {
    left: 56px;
    animation: lds-ellipsis3 0.6s infinite;
  }
  @keyframes lds-ellipsis1 {
    0% {
      transform: scale(0);
    }
    100% {
      transform: scale(1);
    }
  }
  @keyframes lds-ellipsis3 {
    0% {
      transform: scale(1);
    }
    100% {
      transform: scale(0);
    }
  }
  @keyframes lds-ellipsis2 {
    0% {
      transform: translate(0, 0);
    }
    100% {
      transform: translate(24px, 0);
    }
  }