/*Bei der Eingabe der UUID soll kein Spinner angezeigt werden*/
input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[type="number"] {
    -moz-appearance: textfield;
}

.infomessage {
    margin-top: 20px;
    font-weight: bold;
}

.uuidfield {
    width: 100% !important;
    height: 60px !important;
    text-align: center !important;
    font-size: 23px !important;
    margin-top: 10px;
}

.inputfield, select {
    height: 42px !important;
    width: 100% !important;
    max-width: 400px !important;
    padding-left: 10px !important;
    margin-top: 5px !important;
    vertical-align: center !important;
}

.fieldlabel {
    font-weight: bold !important;
    padding-top: 10px !important;
    font-size: 15px;
}


.hero-spacer h1 {
    margin-bottom: 20px;
}


button, .container__buttonlink {
    margin-left: 20px;
    float: right;
    min-width: 150px;
    margin-bottom: 30px !important;
    margin-top: 30px;
}

.leftbutton {
    float: left !important;
    margin-left: 0px !important;
    margin-top: 0px !important;

    margin-right: 100%; /*Clear does not work*/
    z-index: 99;
    display:  inline-block !important;

}


@media screen and (max-width: 768px) {
    /*Validation errors for UUID on mobile devices should not be shown*/
    .validationerror-uuid {
        visibility: hidden;
        clear: both;
        display: none;
    }

    .errormessage {
        max-width: 400px;
        margin-top: 10px;
    }
}

/*Permission Table*/

.tableitemheader {
    padding-left: 30px;
    height: 50px;
    background-color: #3f4d61;
    color: white;
}

.tableitem {
    padding-left: 30px;
    height: 50px;
    background-color: #e2e2d9;
}

.permissiontable {
    width: 100%;
    padding: 20px;
    max-height: 300px;
    overflow: scroll;
    margin-top: 20px;
    margin-bottom: 20px;
}


/* Logo */
.navbar img {
    margin-top: 30px;
    margin-bottom: 20px;
}

/*DBLAP-Style Container*/
.container {
    border-color: #F1F1EC !important;
    border-width: 10px !important;
    border-style: solid !important;
    background-color: white !important;
}

.logocontainer {
    /*Remove Default-Container Style*/
    margin-top: 20px;
    border-style: none !important;
    background-color: transparent !important;
    margin-bottom: 10px;
}

.exceptionmessage {
    padding: 15px  !important;
    font-size: 18px  !important;
    padding: 0.75em;
    margin-bottom: 1em;
    background: #fee;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    border-radius: 3px;
    color: #c00;
    text-align: left;
}

.validationerror-uuid {
    margin-top: 10px;
}

.bold {
    font-weight: bold;
}

.table tbody, table thead {
    display: block;
}

.modal-dialog {
    background-color: white !important;
    padding: 20px;
}

.modal-body {
    position: relative;
    overflow-y: auto;
}

.modal-title {
    margin-bottom: 10px;
}

.containernotitle {
    margin-top: 20px;
}

/*Footer-Bereich*/

#foot {
    color: #3f4d61;
    margin-top: 1em;
    padding-bottom: 2em;
    text-align: center;
}

#footnav {
    list-style: none;
    margin-bottom: 0.25em;
}

#foot p {
    font-size: 75%;
    margin-bottom: 2px;
}

#footnav li a {
    display: inline-block;
    padding: 4px 20px;
    font-size: 75%;
}

#foot a {
    color: #1e9be3;
    -webkit-transition: all 300ms ease-out;
    -moz-transition: all 300ms ease-out;
    transition: all 300ms ease-out;
    text-decoration: none;
}

/*Links*/

a:hover, a:focus {
    color: #006dab;
    background: #bbd4db;
    outline: 0 none;
}

.panel-title {
    height: 20px;
    background-repeat: no-repeat !important;
    background-size: 100px 20px;
}


/*Container*/

@media (min-width: 768px) {
    .container, .iconcontainer {
        width: 750px !important;
    }
}

/*Workarounds*/

/*Workaround for responsive-problem in permissionlist.html*/

p:empty {
    height: 0px !important;
    margin: 0px  !important;
}

.buttondescription {
    z-index: 0 !important;
    display:  inline-block !important;

}

.buttondescription p{
    height:40px;
    display:  inline-block !important;
}

/*Otherwise some buttons are not clickable on mobile devices*/
.col-sm-6 {
    position: inherit !important;
}

/*Text-Placeholder-Style*/
/*Code from http://stackoverflow.com/questions/2610497/change-an-inputs-html5-placeholder-color-with-css*/

.uuidfield::-webkit-input-placeholder { /* Chrome */
    color: #cccccc !important;
}
.uuidfield:-ms-input-placeholder { /* IE 10+ */
    color: #cccccc !important;
}
.uuidfield::-moz-placeholder { /* Firefox 19+ */
    color: #cccccc !important;
    opacity: 1 !important;
}
.uuidfield:-moz-placeholder { /* Firefox 4 - 18 */
    color: #cccccc !important;
    opacity: 1 !important;
}