html {
    font-size: 14px;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

html {
    position: relative;
    min-height: 100%;
}

body {
    margin-bottom: 60px;
}

/* Bootstrap Overrides */

@media (min-width: 1200px) {
    .container-xl, .container-lg, .container-md, .container-sm, .container {
        max-width: 960px;
    }
}

@media (min-width: 1400px) {
    .container-xxl, .container-xl, .container-lg, .container-md, .container-sm, .container {
        max-width: 960px;
    }
}

.container-sm-fixed {
    width: 100%;
    padding-right: var(--bs-gutter-x, 0.75rem);
    padding-left: var(--bs-gutter-x, 0.75rem);
    margin-right: auto;
    margin-left: auto;
}

@media (min-width: 576px) {
    .container-sm-fixed {
        max-width: 540px;
    }
}

.form-check-lg {
    height: 2em;
    width: 2em;
}

.btn-primary {
    background-color: #00606b;
    border-color: #00606b;
}

    .btn-primary:hover {
        background-color: #008b98;
        border-color: #006f7a;
    }

.required:after {
    content: " *";
    font-weight: bold;
    color: red;
}

.validation-summary-valid {
    display: none;
}

/*---------------*/
/*Countdown timer*/
/*---------------*/
.timer, .timer-done, .timer-loop {
    font-size: 30px;
    color: black;
    font-weight: bold;
    padding: 10px;
    position: fixed;
    right: 50px;
    bottom: 100px;
}

.jst-hours {
    float: left;
}

.jst-minutes {
    float: left;
}

.jst-seconds {
    float: left;
}

.jst-clearDiv {
    clear: both;
}

.jst-timeout {
    color: red;
}

