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-bottom: 60px;
}

.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;
}





@media (max-width: 480px) {
    h1 {
        font-size: 2em;
    }

    p {
        font-size: 1em;
    }

    .countdown div {
        padding: 0.75em;
    }

        .countdown div span {
            font-size: 1.3em;
        }
}
.paginate {
    list-style-type: none;
}

    .paginate li {
        float: left;
        width: 50px;
        height: 50px;
        padding: 15px;
        margin: 1px;
        text-align: center;
        color: #003567;
        border: 1px solid black;
        border-width: 1px 1px 1px 1px;
        cursor: pointer;
        border-radius: 40px;
        font-size: 12px;
        font-weight: bold;
    }

        .paginate li:hover {
            background-color: lightgray
        }

.next {
    width: 60px !important;
    border-radius: 0 5px 5px 0 !important;
}

.next-deactive {
    width: 60px !important;
    border-radius: 0 5px 5px 0 !important;
    background-color: lightgray;
    cursor: not-allowed !important;
    color: white !important
}

.prev {
    border-width: 1px !important;
    width: 60px !important;
    border-radius: 5px 0 0 5px
}

.prev-deactive {
    border-width: 1px !important;
    width: 60px !important;
    border-radius: 5px 0 0 5px;
    background-color: lightgray;
    cursor: not-allowed !important;
    color: white !important
}

.pageActive {
    background-color: #003567;
    color: white !important;
}