body {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  padding: 10px 20px;
  margin-bottom: 40px;
}

p {
    font-size: 1.2rem;
}

p.home {
    font-size: 1.4rem;
    line-height: inherit;
    text-align: justify;
}

a {
  color: var(--bs-primary);
  cursor: pointer;
}

pre {
    overflow-x: auto;
    white-space: pre-wrap;
    word-wrap: break-word;
    background-color: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 0.25rem;
    position: relative;
}

pre.get-started {
    padding: 2px;
    font-size: 1.2rem;
}

footer {
    position: fixed;
    bottom: 0;
    width: calc(100% - 40px);
    white-space: nowrap;
    line-height: 40px; /*  60px; */
    color: white; 
}

div.page-font-size, ul.page-font-size, ol.page-font-size,
dl.page-font-size, table.page-font-size {
    font-size: 1.2rem;
}

.max-width-15 {
    max-width: 15rem;
}

.max-width-18 {
    max-width: 18rem;
}

.max-width-25 {
    max-width: 25rem;
}

/* checkbox and radio buttons cursor
-------------------------------------------------- */
.form-check-input, .form-check-input ~ .form-check-label, .pencil, .cancel, .update {
    cursor: pointer;
}
    .form-check-input[disabled] ~ .form-check-label {
        cursor: default;
    }

.form-switch.switch-big .form-check-input {
    width: 3em;
    margin-left: -2.5em;
    height: 1.5em;
}

.form-switch.switch-big .form-check-label {
    margin-top: 0.25rem;
    margin-left: 0.5rem;
}

input[type="password"]::-ms-reveal {
  display: none;
}

button.toggle-password {
  position: absolute;
  top: 3px;
  right: 10px;
  z-index: 9;
  width: 28px;
  height: 30px;
  background: 0;
  border: 0;
}

button.toggle-password:active,
button.toggle-password:focus,
button#\.toggle-password:hover {
  cursor: pointer;
}

button.toggle-password:focus {
  outline: none !important;
}

.input-password {
  padding-right: calc(1.5em + 0.75rem);
  background-repeat: no-repeat;
  background-position: right calc(0.375em + 0.1875rem) center;
  background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}

.invalid.password_requirement {
    color: orange;
}

.valid.password_requirement {
    color: green;
}

.highlight_background {
    background-color: #FEF6D5;
}

/* Modals - Message Generator */
.shrink-max250 {
    overflow: hidden;
    transition: max-height 0.5s ease-out;
    max-height: 250px;
    height: auto;
}

.shrink-max300 {
    overflow: hidden;
    transition: max-height 0.5s ease-out;
    max-height: 300px;
    height: auto;
}

.shrink-max350 {
    overflow: hidden;
    transition: max-height 0.5s ease-out;
    max-height: 350px;
    height: auto;
}

.shrunk {
    max-height: 0;
}

#CookieConsent {
    font-size: 1.2rem;
    box-shadow: 0 20px 20px rgba(0,0,0,.15);
    position: fixed;
    width: auto;
    top: auto;
    bottom: 55px;
    left: 5px;
    right: 5px;
    z-index: 20;
}

@media (min-width: 768px) {
    #CookieConsent {
        max-width: 400px;
        left: auto;
        right: 15px;
    }
}

/* A Dark Overlay that sits between the main page and the modal so the Modal pops out */
.popup-position{
    display:none;
    position: fixed;
    top: 0;
    left: 0;
    background-color: rgba(0,0,0,0.7);
    width: 100%;
    height: 100%;
    z-index: 2;
}

/* The Modal Wrapper    */
#popup-wrapper{
  text-align: left;
}

/* The Modal Container */
#popup-container{
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    width: 300px;
    margin: 70px auto;    
}