/* MOBILE FIRST APPROACH */

/* Element selectors */

body
{
    background-color: white;
}


html
{
  scroll-behavior: smooth;
  font-family: "Roboto Condensed", Arial, sans-serif;
}

/* Class selectors */

.btn
{
    /*background-color: #660066;*/
    background-color: rgb(254, 121, 0); /* orange */
    color: black;
}

.btn:hover
{
    background-color: rgb(254, 121, 0); /* orange */
    text-decoration: underline;
    text-decoration-color: black;
}


.btn-flat
{
    color: rgb(139, 139, 139);
}

.btn-flat:hover
{
    background-color: black;
    text-decoration: underline;
    text-decoration-color: rgb(254, 121, 0); /* orange */
}

.btn-small
{
    /*background-color: #660066;*/
    background-color: rgb(254, 121, 0); /* orange */
    color: black;
}

.btn-small:hover
{
    background-color: rgb(254, 121, 0); /* orange */
    text-decoration: underline;
    text-decoration-color: black;
}

.card-action .modal-trigger
{
   color: red !important;
}

.card-label
{
    color: rgb(254, 121, 0) !important;
}

.card-label:hover
{
    font-weight: 700;
}

.menu-button {
    margin-bottom: 5px;
}

#information
{
    padding-left: 1em;
    padding-right: 1em;
}

#cookie-consent
{
    position: fixed;
    padding: 20px;
    left: 0;
    bottom: 0;
    background-color:grey;
    color: #FFF;
    text-align: right;
    width: 100%;
    z-index: 99999;    
}

.main-logo
{
    padding-top: 19px;
    padding-bottom: 20px;
}

.land {
    cursor: not-allowed;
}

.login
{
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
    width: 90%;
    height: 2.5em;
    margin: auto;
    color: rgb(139, 139, 139);
    font-size: small;
}

.login-text
{
    text-transform: uppercase;
    cursor: pointer;
}

li.indicator
{
    color: rgb(254, 121, 0);
    background-color: rgb(254, 121, 0);
}

nav
{
    background-color: white;
}

.navbutton {
    grid-area: navbutton;
}

nav.main
{
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
    width: 90%;
    margin: auto;    
    color: rgb(51, 51, 51);
    height: 86px;
    box-shadow: none;
}

nav ul a
{
    color: black;
    font-weight: 700;
    text-transform: uppercase;
}

nav ul a:hover
{
    background-color: rgb(254, 121, 0);
}

.nav-wrapper
{
    background-color: black;    
}

.text-orange
{
    color: rgb(254, 121, 0);
}

.sector_dimmed {
    opacity: 0.7;
    cursor: pointer;
}


.tabs .indicator
{
    background-color: rgb(254, 121, 0);
}

.tabs .tab a
{
    color: black;
    font-weight: 700;
    text-transform: none;    
}

.tabs .tab a.active
{
    color: black;
}

.tabs .tab a.active:hover
{
    color: black;
}

.tabs .tab a:focus.active 
{
    background-color: white;
}

.tabs .tab a:hover
{
    color: rgb(254, 121, 0);    
}


/* Desktop screen size settings */

@media only screen and (min-width: 768px)
{
    nav.main
    {
        width: 75%;
    }
    
    .login
    {
        width: 75%;
    }
    
    .tabs .tab a
    {
        font-size: large;
    }
}
