* {
    font-family: "Segoe UI";
    font-size:inherit;
    z-index: 1;
}


html, body {
    height: 100%;
    font-size:16px;
}

body {
    display: flex;
    flex-direction: column;
}

h1, h2, h3, h4 {
    color: #2e2e2e;
}

h1 {
    font-size: 25px;
    padding: 20px 0 8px;
}

h2 {
    font-size: 18px;
    padding: 8px 0;
}

h3 {
    font-size: 18px;
    padding: 8px 0;
}

p {
    margin: 10px 0;
    text-align:justify;
}

li {
    margin-left:40px;
    list-style-type:disc;
}

.img-container{
    margin-top:20px;
    border-radius:8px;
    border:1px solid #888;
}

.img-container img {
    border-radius:8px;
}



.navbar{
    background-color: #2f3338;
    color: rgba(255, 255, 255, .55);
    z-index: 3;
}

.body {
    flex-grow: 1;
    z-index:2;
}

.footer {
    padding:20px 0;
    background-color: #2f3338;
    text-align:center;
}




.nav-container {
    max-width:900px;
    margin: auto;
}

.body-container {
    display:flex;
    justify-content:center;
    flex-direction:column;
    max-width:900px;
    margin: auto;
    padding-bottom:20px;
    z-index:2;
}

.footer-container {
    display:flex;
    justify-content:center;
    max-width:900px;
    margin: auto;
}

.container-small{
    display:inline-block;
    margin:auto;
}









.navbar-header {
    padding-top:10px;
    text-align:center;
}

.navbar-body {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    flex-direction: row;
}


.nav-link {
    display: inline-block;
    margin: 8px 0;
    padding: 6px 15px 8px;
    border-radius: 3px;
    color: rgba(255, 255, 255, .55);
    text-decoration: none;
    transition: color .15s ease-in-out;
    transition: background .15s ease-in-out;
}


.nav-link:hover, .nav-link-current {
    background-color: rgba(0, 0, 0, .25);
    color: rgba(255, 255, 255, .75);
}

.navbar-header-link {
    display: inline-block;
    padding: 3px 15px;
    border-radius: 3px;
    color: rgba(255, 255, 255, .55);
    text-decoration: none;
    transition: color .15s ease-in-out;
    transition: background .15s ease-in-out;
}

.navbar-header-link:hover {
    color: rgba(255, 255, 255, .75);
}





.footer a {
    display: inline-block;
    padding: 8px;
    color: rgba(255, 255, 255, .55);
    text-decoration: none;
    transition: color .15s ease-in-out;
}

.footer a:hover {
    color: rgba(255, 255, 255, .75);
}








.alert {
    width: 100%;
    margin: 10px 0px;
    padding: 10px 20px;
    border-radius: 5px;
    border: 1px solid transparent;
}

.alert-success {
    color: #155724;
    background-color: #d4edda;
    border-color: #c3e6cb;
}

.alert-danger {
    color: #721c24;
    background-color: #f8d7da;
    border-color: #f5c6cb;
}








.table {
    margin: 15px 0;
}

.table td {
    padding: 4px 8px;
    border-bottom: 1px solid #cccccc;
    vertical-align: middle;
}

.table tr:last-child td {
    border-bottom: none;
}











.form-label {
    display: block;
}

.form-control {
    padding: 5px 8px;
    margin: 5px 0;
    width: 250px;
    color: #212529;
    background-color: #fff;
    border: 1px solid #ced4da;
    border-radius: 4px;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

.form-control[type=checkbox], .form-control[type=radio] {
    width: auto;
    margin: 0 10px 0 0 !important;
}

.form-control[type=color] {
    padding: 0 3px;
    margin: 5px 0;
    width: 100px;
}

.form-control[disabled=disabled] {
    background-color:#ebebeb;
}

.form-error {
    margin-bottom: 10px;
    margin-left: 5px;
    color: #b92735;
    font-size: 12px;
}

.form-legend {
    display: block;
    font-size: 0.8em;
}

.name-field {
    display:none;
}

.contact-message {
    width:400px;
    height:200px
}

.inline-form {
    display:inline;
    margin-right:10px;
}



.inline-form input, .inline-form select{
    margin-right:10px;
}
.inline-form input[type=submit]{
    position:relative;
    top:-2px;
}










.btn {
    display: inline-block;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
    text-align: center;
    text-decoration: none;
    vertical-align: middle;
    cursor: pointer;
    background-color: transparent;
    border: 1px solid transparent;
    margin: 3px 0;
    padding: 2px 6px;
    font-size: 1rem;
    border-radius: .25rem;
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

.btn:hover {
    color: #212529
}

.btn-primary {
    color: #fff;
    background-color: #3d8bff;
    border-color: #3d8bff;
}

.btn-primary:hover {
    color: #fff;
    background-color: #0a55c5;
    border-color: #0b51bb;
}

.btn-disabled {
    color: #fff;
    background-color: #858585;
    border-color: #858585;
    cursor: default;
}

.btn-disabled:hover {
    color: #fff;
    background-color: #858585;
    border-color: #858585;
}

.btn-danger {
    color: #fff;
    background-color: #dc3545;
    border-color: #dc3545;
}

.btn-danger:hover {
    color: #fff;
    background-color: #bb2d3b;
    border-color: #b02a37;
}

.btn-success {
    color: #fff;
    background-color: #55c23a;
    border-color: #55c23a;
}

.btn-success:hover {
    color: #fff;
    background-color: #447e36;
    border-color: #447e36;
}

.btn-warning {
    color: #fff;
    background-color: #ffc107;
    border-color: #ffc107;
}

.btn-warning:hover {
    color: #fff;
    background-color: #ffca2c;
    border-color: #ffc720;
}

.btn-switch{
    display: inline-block;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
    text-align: center;
    text-decoration: none;
    vertical-align: middle;
    cursor: pointer;
    background-color: #2a2e31;
    border-radius: 6px;
    margin: 3px 0;
    padding: 2px 6px;
    width:100px;
    font-size: 1rem;
    color:#fff;
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

.btn-switch-left{
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

.btn-switch-middle{
    border-left:1px solid #636363;
    border-right:1px solid #636363;
    border-radius: 0;
}

.btn-switch-right{
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

.btn-switch-active{
    background-color: #3d8bff;
}

.btn-switch-not-active:hover{
    background-color: #505050;

}

.img-btn {
    line-height: 1;
    padding: 2px;
    margin-right:8px;
    width: 28px;
    height: 28px;
}

.img-btn img {
    width: 24px;
    height: 24px;
}










.wrapper{
    opacity:0.9;
    color:#000;
    padding:2px 5px;
    font-weight:bold;
}

.wrapper:hover{
    opacity:0.6;
    cursor:pointer;
}

.wrapper-secondary{
    opacity:0.7;
}

/*
.wrapper-primary:after{
    display:inline-block;
    width:20px;
    height:20px;
    position:relative;
    top:6px;
    content:'';
    background-image:url('../img/feather/chevron-down.svg');
    background-size: contain;
}

.wrapper-secondary:after{
    display:inline-block;
    width:20px;
    height:20px;
    position:relative;
    top:6px;
    content:'';
    background-image:url('../img/feather/chevron-up.svg');
    background-size: contain;
}

*/






.explain {
    margin: 20px 0;
    padding: 5px 10px;
    background-color: #f1f1f1;
    border: 1px solid #a5a5a5;
    border-radius: 5px;
    width: 100%;
}

.explain-title {
    font-weight: bold;
    color: #3d3d3d;
}

.explain p {
    margin: 0;
    padding: 4px 0;
    font-size: 0.8em;
}




.actionCard{
    padding:10px 0;
    border-bottom:1px solid #dadada;
}

.actionCard-disabled{
    background-color:#f1f1f1;
}

.actionCard-header{
    display:flex;
}

.actionCard-title{
    flex-grow:1;
    display:flex;
    align-items:center;
}

.actionCard-action{
    display:flex;
    align-items:center;
}
.actionCard-primaryAction, .actionCard-secondaryAction{
    margin-left:10px;
}

.actionCard-secondaryAction, .actionCard-hiddenContent{
    display:none;
}

.actionCard-visibleContent{
    margin-bottom:10px;
}

.actionCard-hiddenContent{
    padding:0 20px;
    border:1px solid #ddd;
    border-radius:8px;
    background-color:rgba(238, 238, 238, 0.233);
}








.role-badge {
    display: inline-block;
    border-radius: 5px;
    color: #ffffff;
    padding: 2px 8px 4px 8px;
    font-size: 0.7em;
    background-color:#fff;
    font-weight:bold;
}

.role-badge-not-acces {
    color: #ff3232;
}

.role-badge-acces {
    color: #5583d8;
}

.role-badge-manage {
    color: #50aa39;
}

.role-badge-admin {
    color: #9e258a;
}





.operator-color {
    width:20px;
    height:20px;
    position:relative;
    top:3px;
    left:10px;
    border-radius:12px;
}




.selectDate-form {
    text-align:center;
    padding-top:10px;
    display: flex;
    justify-content: center;
}

.selectDate-links-group {
    text-align:center;
    padding-top:5px;
    padding-bottom:10px;
    display: flex;
    justify-content: center;
}
.selectDate-links-group a {
    margin-left:5px;
    margin-right:5px;
}







.planning-slot {
    display: inline-block;
    margin: 1px;
    margin-right:2px;
    padding: 5px 6px;
    border-radius: 4px;
    background-color: #ccd8ff;
}

.planning-hour {
    display: inline-block;
    width: 47px;
    padding: 2px 3px;
    font-size:0.9em;
}

.planning-hour::placeholder {
    color: rgb(199, 199, 199);
    font-size:0.8em;
}









.change-details {
    display: flex;
    align-items: center;
    text-align:center;
    cursor: pointer;
    color: #888;
    font-size:0.8em;
}


.changes-months-list {
    display:flex;
    flex-flow: wrap;
    justify-content:center;
}

.changes-months-list-element {
    margin: 3px;
    width: 130px;
}


.operator-link {
    color:#000;
    text-decoration:none;
}

.operator-link:hover {
    color:#3b4254;
    text-decoration:underline;
}


.operator-hours-count {
    display:inline-block;
    margin-left:5px;
}


.color-picker-group {
    display:flex;
    justify-content: center;
}

.color-picker-button {
    width:18px;
    height:18px;
    margin-left:2px;
    border-radius:4px;
    cursor:pointer;
}

.operator-avatar-group {
    display:flex;
}

.operator-avatar {
    display:flex;
    align-items: center;
    flex-direction: column;
    margin:4px;
    width:100px;
    height:80px;
    border-radius:10px;
    cursor:pointer;
}

.avatar-name {
    margin:15px 0;
    color:#fff;
    font-weight:bold;
    text-shadow: 0 0 5px #000;
    font-size:0.9em;
}


.planning-plus-description {
    margin:10px 20px;
    padding:20px;
    border:1px solid #226326;
    border-radius:5px;
    background-color:#ecfff0;
}

.planning-plus-description li {
    list-style-type: none;
    line-height:1.5em;
}

.planning-plus-description li:before {
    content: "\2714";
    color:green;
    padding-right:8px;
}


.img-plans {
    margin-top:10px;
    margin-bottom:30px;
    box-shadow: 0px 0px 8px rgba(0, 0, 0, .25);
    border-radius:8px;
}