html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
    margin: 10px 15px 60px 15px;
    background-image: url("/images/clouds.jpg");
    /*background-size: 100% 100%;*/
    background-position-x: -130px;
    /*background-position-y: -80px;*/
    background-repeat: no-repeat;
    background-color: #01141a;
    background-attachment: fixed;


    overflow-anchor: none;
}

.form-floating > .form-control-plaintext::placeholder, .form-floating > .form-control::placeholder {
  color: var(--bs-secondary-color);
  text-align: end;
}

.form-floating > .form-control-plaintext:focus::placeholder, .form-floating > .form-control:focus::placeholder {
  text-align: start;
}

.container-no-padding-left-and-right {
    padding-left: 0;
    padding-right: 0;
}


/* --------------- Own styles --------------- */


/* Elements*/

fieldset > legend {
    color: #7f7b7b;
}

.disabled-weekday {
    border:none;
}

.appTitle {
    color: #7f7b7b;
}

.viewTitle {
    color: dodgerblue;
    font-weight: bold;
}

.borderRightTimeSlot {
    border-right: 1px solid rgb(255, 255, 255, 0.8);
}



/* Borders, opacitiy */
.opacity_07 {
    opacity: 0.7;
}

.opacity_06{
    opacity:0.6;
}

.border {
    border:solid 1px red;
}

.borderRedBold {
    border: solid 3px rgba(255, 0, 0, .6);
}

/* Text */
.bold {
    font-weight: bold;
}

.fontSize18 {
    font-size: 18px;
}

.fontSize22 {
    font-size:22px;
}



/* Button "To Top" */
#btn-back-to-top {
    padding-top: 7px;
    padding-right: 30px;
    position: fixed;
    bottom: 54px;
    right: 10px;
    height: 40px;
    width: 40px;
    display: none;
    opacity:0.8;
}

/* Button "To Bottom" */
#btn-to-bottom {
    padding-top: 7px;
    padding-right: 30px;
    position: fixed;
    bottom: 10px;
    right: 10px;
    height: 40px;
    width: 40px;
    display: none;
    opacity: 0.8;
}

.buttonRed {
    background-color: #f71104;
    color: white;
    opacity: 0.7;
}

.buttonRed:hover {
    background-color: #f71104;
    color: white;
    opacity: 0.8;
}

.buttonGreen {
    background-color: #07c11d;
    color: white;
    opacity: 0.7;
}

    .buttonGreen:hover {
        background-color: #07c11d;
        color: white;
        opacity: 0.8;
    }


.pointer {
    cursor: pointer;
}

.hidden {
    display:none;
}




/* Spacing, width, height, padding */
.width30 {
    width: 20px;
}

.width100P {
    width: 100%;
}

.height32 {
    height:32px;
}

.pT1px {
    padding-top: 1px;
}

.pT2px {
    padding-top: 2px;
}

.pB1px {
    padding-bottom: 1px;
}

.pB2px {
    padding-bottom: 2px;
}

.pB3px {
    padding-bottom: 3px;
}

.displayBlock {
    display: block;
}




/* Colors */

.colorRed {
    color: red;
}

.colorGreen {
    color: forestgreen;
}

.colorGrey {
    color: grey;
}

.colorWhite {
    color: white;
}

.colorBlack {
    color: black;
}

.colorBlue {
    color: dodgerblue;
}

.colorOrange {
    color: #ffbb00;
}

.colorYellowDark {
    color: #edc604;
}

.backgroundColorGrey {
    background-color: ghostwhite;
    opacity: 0.9;
}

.backgroundColorOrange {
    background-color: orange;
    opacity: 0.9;
}

.backgroundColorGreyOp03 {
    background-color: ghostwhite;
    opacity: 0.3;
}

.backgroundColorWhite {
    background-color: white;
    opacity: 0.9;
}

/*.nav-link {
    background-color: white;*/
    /*background-color: red;*/
    /*opacity: 0.6;
}*/

.nav-link {
    color: white;
    opacity: 0.6;
    font-weight:bold;
}

.nav-link.active {
    background-color: white;
    opacity: 1;
}

.rounded-bottom-left-1 {
    border-bottom-left-radius: 1rem;
}

.rounded-bottom-right-1 {
    border-bottom-right-radius: 1rem;
}

/*.x-nav-tabs.top > li:not(.active) a {
    background-color: red;
    color: #000;
}*/


/* bootstrap tabs */
.nav-tabs .nav-item {
    background-color: #ededed;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    
}

.nav-tabs .nav-item .nav-link {

    color: grey;
    opacity: 0.5;
}

.nav-tabs .nav-item .nav-link.active {
    color: dodgerblue;
    background-color: white;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    opacity: 1;
}