/**
 * common
 *
 * @author	DKone <bookingtime GmbH>
 */
@charset "UTF-8";



/*
	++++++++++++++
	++          ++
	++  common  ++
	++          ++
	++++++++++++++
*/
* {
    outline:0 !important;
}
html {
    -webkit-font-smoothing:antialiased;
}
body {
    text-rendering:optimizeLegibility;
}
html, body {
    height:100%;
}
a:focus {
    outline:0;
}
b {
    font-weight:600;
}
.btn {
    border-radius:2px;
    box-shadow:none;
}
.btn-primary, .btn-primary:hover, .btn-primary:focus, .btn-primary:active, .btn-primary.focus, .btn-primary.active {
    border-color:#1d90cb;
    background-color:#1d90cb;
    background-image:-webkit-linear-gradient(#1d90cb,#0e86c4);
    background-image:-moz-linear-gradient(#1d90cb,#0e86c4);
    background-image:-o-linear-gradient(#1d90cb,#0e86c4);
    background-image:-ms-linear-gradient(#1d90cb,#0e86c4);
    background-image:linear-gradient(#1d90cb,#0e86c4);
    box-shadow:none;
}
.btn-default, .btn-default:hover, .btn-default:focus, .btn-default:active, .btn-default.active {
    box-shadow:none;
}
.btn-success, .btn-success:hover, .btn-success:focus, .btn-success:active, .btn-success.active {
    border-color:#39ac32;
    background-color:#39ac32;
    box-shadow:none;
}
.btn-danger, .btn-danger:hover, .btn-danger:focus, .btn-danger:active, .btn-danger.active {
    border-color:#c8102e;
    background-color:#c8102e;
    box-shadow:none;
}
.btn:hover {
    opacity:0.9;
}
.text-primary {
    color:#1d90cb;
}
.text-success {
    color:#39ac32;
}
.text-danger {
    color:#c8102e;
}
.alert {
    margin-bottom:0;
    border-radius:2px;
}
.panel {
    border-radius:2px;
    box-shadow:none;
}
.panel-heading {
    border-top-left-radius:2px;
    border-top-right-radius:2px;
}
.pagination > .active > a, .pagination > .active > a:focus, .pagination > .active > a:hover, .pagination > .active > span, .pagination > .active > span:focus, .pagination > .active > span:hover {border-color:#1d90cb;background-color:#1d90cb;}
.table > tbody > tr > td, .table > tbody > tr > th, .table > tfoot > tr > td, .table > tfoot > tr > th, .table > thead > tr > td, .table > thead > tr > th {padding:12px 15px;vertical-align:middle;}