@viewport {
    width: device-width ;
    zoom: 1.0 ;
} 

@-ms-viewport {
    width: device-width ;
} 

@media screen and (max-width: 639px) {
    .change-alignment {
        display: flex;
        flex-direction: column;
    }
    .content {
        display: none;
    }
    .table-content {
        display: none;
    }

    #btn-index {
        height: 100px !important;
        font-size: 1.2rem !important;
    }
}

@media screen and (min-width: 640px) {
    .change-alignment {
        display: none;
    }
    .content {
        display: block;
    }
    .table-content {
        display: block;
    }
}

/* Miligram overrides */
body {
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 400;
}

.top-nav-links,
.side-nav,
h1, h2, h3, h4, h5, h6 {
    font-family: "Raleway", sans-serif;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 400;
    color: #fff;
}

a {
    color:#2f85ae;
    -webkit-transition:all 0.2s linear;
    transition:all 0.2s linear;
}

a:hover,
a:focus,
a:active  {
    color:#2a6496;
    -webkit-transition:all 0.2s easeout;
    transition:all 0.2s ease-out;
}

.side-nav a,
.top-nav-links a,
th a,
.actions a {
    color: #FFF;
}

.side-nav a:hover,
.side-nav a:focus,
.actions a:hover,
.actions a:focus {
    color:#2f85ae;
}

/* Utility */
.table-responsive {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

/* Main */
body {
    background: lightgrey;
}
.content {
    padding: 2rem;
    margin-bottom: 10px;
    background: #404040;
    border-radius: 3rem;
    /* Thanks Stripe */
    box-shadow: 0 7px 14px 0 rgba(60, 66, 87, 0.1),
        0 3px 6px 0 rgba(0, 0, 0, 0.07);
}

.table-content {
    padding: 2rem;
    background: #ffffff;
    border-radius: 0.4rem;
    /* Thanks Stripe */
    box-shadow: 0 7px 14px 0 rgba(60, 66, 87, 0.1),
        0 3px 6px 0 rgba(0, 0, 0, 0.07);
}

#table tbody tr:first-child td .fa-sort-up {
    display: none;
}

#table tbody tr:last-child td .fa-sort-down {
    display: none;
}

.actions a {
    font-weight: bold;
    padding: 0 0.4rem;
}
th {
    white-space: nowrap;
}

@media screen and (min-width: 1025px) {
    .container {
        max-width: 175.0rem !important;
    }
}

/* Nav bar */
.top-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 100%;
    padding: 2rem;
    margin: 0 auto 2rem;
    background-color: #404040;
}


.retouren-header{
    margin: 0 auto 30px auto!important;
    width: 500px;
    position: relative;
    max-width: 500px;
    left: 50%;
    transform: translateX(-50%);
}

.top-nav-title a {
    font-size: 2.4rem;
    color: #d33c43;
}

/*.top-nav-title strong {
    display:none; 
}*/

.top-nav-title span {
    color: #404041;
}
.top-nav-links a {
    margin: 0 3.5rem;
}
.top-nav-title a,
.top-nav-links a {
    font-weight: bold;
}

.side-nav-item {
    display: block;
    padding: 0.5rem 0;
}

/* View action */
.view.content .text {
    margin-top: 1.2rem;
}
.related {
    margin-top: 2rem;
}

/* Flash messages */
.message {
    padding: 1rem;

    background: #eff8ff;
    color: #2779bd;

    border-color: #6cb2eb;
    border-width: 1px;
    border-style: solid;
    border-radius: 4px;
    margin-bottom: 2rem;
}
.message.hidden {
    display: none;
}
.message.success {
    background: #e3fcec;
    color: #1f9d55;
    border-color: #51d88a;
}
.message.error {
    background: #fcebea;
    color: #cc1f1a;
    border-color: #ef5753;
}

/* Forms */
.input.radio,
.input.checkbox {
    margin-bottom: 2.0rem;
}
.input.radio input,
.input.checkbox input {
    margin: 0;
}
.input.radio label,
.input.checkbox label {
    margin: 0;
    display: flex;
    align-items: center;
}
.input.radio label > input,
.input.checkbox label > input {
    margin-right: 1.0rem;
}
.input.radio label:first-of-type {
    margin-bottom: 2.0rem;
}

/* Paginator */
.paginator {
    text-align: right;
}
.pagination {
    display: flex;
    justify-content: center;
    list-style: none;
    padding: 0;
    margin: 0 0 1rem;
}
.pagination li {
    margin: 0 0.5rem;
}
.prev.disabled a,
.next.disabled a {
    cursor: not-allowed;
    color: #606c76;
}
.asc:after {
    content: " \2193";
}
.desc:after {
    content: " \2191";
}

/* Error */
.error-container {
    align-items: center;
    display: flex;
    flex-direction: column;
    height: 100vh;
    justify-content: center;
}

/* Login */
.login-background {
    width: 980px;
    height: 494px;
    background-image: url("/img/bg.jpg");
    background-position: center center;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50px;
}

.login-container {
    width: 500px;
    height: 325px;
    background-color: #585858;
    padding: 20px;
    border: 2px solid black;
    border-radius: 20px;
}

.login-container label,legend,input,.message {
    font-size: 1.5rem !important;
    margin-bottom: 1.0rem !important;
}

.login-container fieldset {
    margin-bottom: 1.0rem !important;
}

.login-container input[type="submit"] {
    height: 60px !important;
    width: 450px !important;
}

/* Home */
#firma {
    width: 250px;
}

#standort {
    width: 250px;
}

.button:focus, .button:hover, button:focus, button:hover, input[type='button']:focus, input[type='button']:hover, input[type='reset']:focus, input[type='reset']:hover, input[type='submit']:focus, input[type='submit']:hover {
    background-color: #bb0510;
    border-color: #606c76;
    color: #fff;
    outline: 0;
}

#btn-index {
    height: 80px;
    font-size: 2.0rem;
    margin: 20px auto;
    display: block;
    max-width: 660px;
    min-width: 450px;
    border-radius: 50px;
}

#btn-cancel {
    background-color: black;
}

.btn-retoure {
    width: 100%;
    padding: 20px;
    height: auto;
    font-size: 18px;
}

#btn-accept {
    background-color: darkgreen;
}

#btn-decline {
    background-color: red;
}

#btn-unknown {
    background-color: blue;
}

#btn-switch {
    background-color: blue;
}

#btn-delete {
    background-color: black;
}

@media screen and (max-width: 760px) {
    .top-nav {
        margin: 0 auto;
    }
    .side-nav {
        margin-bottom: 1rem;
    }
    .heading {
        margin-bottom: 1rem;
    }
    .side-nav-item {
        display: inline;
        margin: 0 1.5rem 0 0;
    }
    .asc:after {
        content: " \2192";
    }
    .desc:after {
        content: " \2190";
    }
    .order-table table, td, th {
        font-size: 0.8em !important;
    }
}

* {
    max-width: 100%;
}


.button, button, input[type='button'], input[type='reset'], input[type='submit'] {
    background-color: #7e7a7a;
    border: 0.1rem solid #d33c43;
    border-radius: .4rem;
    color: #fff;
    cursor: pointer;
    display: inline-block;
    font-size: 1.1rem;
    font-weight: 700;
    height: 3.8rem;
    letter-spacing: .1rem;
    line-height: 3.8rem;
    padding: 0 3.0rem;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    white-space: nowrap;
    transition: all 200ms ease-in-out;
}


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


    .content {
        border-radius: 1rem;
    }

    #btn-index {
        height: 80px;
        font-size: 2.0rem;
        margin: 20px auto;
        display: block;
        max-width: 100%;
        width: 100%;
        min-width: unset;
        border-radius: 50px;
        box-shadow: 0 7px 14px 0 rgb(60 66 87 / 10%), 0 3px 6px 0 rgb(0 0 0 / 7%);
        height: 66px !important;
        border-radius: 11px;
        margin: 7px auto;
    }

    .retouren-header {
        max-width: 100%;
    }

    .top-nav-links a {
        margin: 0 3.5rem 0 0;
    }

    header {
        margin-bottom: 30px !important;
    }

    .top-nav-title a, .top-nav-links a {
        font-weight: normal;
        text-transform: uppercase;
        text-decoration: none;
        font-size: 14px;
    }

}

body {
    color: #ffffff !important;

}

input[type='email'], input[type='number'], input[type='password'], input[type='search'], input[type='tel'], input[type='text'], input[type='url'], input[type='color'], input[type='date'], input[type='month'], input[type='week'], input[type='datetime'], input[type='datetime-local'], input:not([type]), textarea, select, #username  {
    color: white!important;
    background-color: #272727!important;
}

.table-content {
    padding: 2rem;
    background: #404040;
    color:#fff;
}

table.dataTable tbody tr {
    background-color: #272727;
}

.dataTables_wrapper .dataTables_length, .dataTables_wrapper .dataTables_filter, .dataTables_wrapper .dataTables_info, .dataTables_wrapper .dataTables_processing, .dataTables_wrapper .dataTables_paginate {
    color: #fff;
}

.content.login-page{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 80vh;
    flex-direction: column;
    box-shadow: none;
    background: #d3d3d3;
}

.logo-img {
    width: 530px;
    left: 50%;
    max-width: 90%;
    position: relative;
    transform: translateX(-50%);
}