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_06{
    opacity:0.6;
}

.border {
    border:solid 1px red;
}



/* Text */
.bold {
    font-weight: bold;
}



/* Button "To Top" */
#btn-back-to-top {
    padding-top: 7px;
    padding-right: 30px;
    position: fixed;
    bottom: 10px;
    right: 10px;
    height: 40px;
    width: 40px;
    display: none;
    opacity:0.8;
}

.pointer {
    cursor: pointer;
}

.hiden {
    display:none;
}




/* Spacing, width */
.width30 {
    width: 20px;
}

.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;
}

.backgroundColorGrey {
    background-color: ghostwhite;
    opacity: 0.9;
}