/* Darkmode Transition */
html.theme-transitioning * {
    transition: 
        background-color 0.3s ease, 
        color 0.3s ease, 
        border-color 0.3s ease,
        box-shadow 0.3s ease,
        fill 0.3s ease,
        stroke 0.3s ease !important;
}

html.theme-transitioning *::before,
html.theme-transitioning *::after {
    transition: 
        background-color 0.3s ease, 
        color 0.3s ease, 
        border-color 0.3s ease,
        box-shadow 0.3s ease !important;
}
/* Dark Mode Transition*/

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%;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-left {
    flex: 1;
    text-align: left;
}

.footer-center {
    flex: 1;
    text-align: center;
}

.footer-right {
    flex: 1;
    text-align: right;
}

.wrapper {
}

.content-wrapper {
    padding-top: 6rem;
    padding-bottom: 7.5rem;
}

.header {
    width: 100%;
    position: fixed;
}

.footer {
    width: 100%;
    padding: 0.5rem;
    bottom: 0;
    position: fixed;
}

.content {
    padding-left: 2rem;
    padding-right: 2rem;
}

.hidden {
    visibility: hidden;
    display: none;
}

.text-pom {
    color: #c0392b !important;
}

    .text-pom::after {
        content: "\a";
        white-space: pre;
    }

    .text-pom.hidden {
        height: 0px;
        visibility: hidden;
        display: none;
    }