/* 

    Inhaltsverzeichnis Waste X App

    1. Allgemein
    2. App Bar Header
    3. Navigation
    4. Auftrag anlegen


*/


/********************
    1. Allgemein 
*********************/ 


body, html {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    max-width: 100%;
    overflow-x: hidden;
}

.app-content {
    padding: 20px;
    overflow-y: auto;
    background-color: #f4f4f4;
    margin-bottom: 100px;
}

input[type=text] {
    border-color: #ddd;
}


.btn-block {
    width: 100%;
    text-align: center;
}

.btn-icon i {
    margin-right: 10px;
}

.mr-10 {
    margin-right: 10px;
}

.mt-20 {
    margin-top: 20px;
}

.mt-50 {
    margin-top: 50px;
}

.text-center {
    text-align: center;
} 

.text-grey-small {
    font-size: 14px;
    color:#565656;
}

.text-right {
    text-align: right;
}

.button-row a,
.button-row button {
    margin: 0 5px 10px 0;
}

/********************
    2. App Bar Header 
*********************/ 

.app-bar-header {
    text-align: center;
    background-color: #fff;
    margin-bottom: 20px;
    padding: 15px 0;
}

.app-bar-header img {
    height: 45px;
}

/********************
    3. Navigation 
*********************/ 

.navbar-bottom {
    position: fixed!important;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #fff;
    box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    justify-content: center;
}

.navbar-item {
    flex: none;
    font-size: 14px;
    color: #fff!important;
}

.navbar-item i {
    font-size: 14px!important;
    color: #fff!important;
}

.navbar-menu {
    display: flex;
    flex-direction: row;
    width: 100%;
    justify-content: space-evenly;
    background-color: #00C9BD!important;
    padding: 12px 0!important;
}



.navbar-menu {
    display: flex!important;
    overflow-x: scroll;
}

.navbar-menu i {
    margin-right: 5px;
}


/********************
    4. Auftrag anlegen 
*********************/ 

.switch {
    display: none; 
}


.stellgenehmigung_switch label,
.halteverbotszone_switch label{
    cursor: pointer;
    position: relative;
    padding-left: 60px; 
    line-height: 24px;
}

.stellgenehmigung_switch label:before, 
.halteverbotszone_switch label:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 50px;
    height: 24px;
    background-color: #ccc;
    border-radius: 15px;
    transition: background-color 0.3s;
}

.stellgenehmigung_switch label:after,
.halteverbotszone_switch label:after {
    content: '';
    position: absolute;
    left: 4px;
    top: 2px;
    width: 20px;
    height: 20px;
    background-color: white;
    border-radius: 50%; 
    transition: transform 0.3s;
}

.switch:checked +  label:before {
    background-color: #3e8ed0;
}

.switch:checked +  label:after {
    transform: translateX(20px);
}

