* {
    outline: 0 !important;
    box-sizing: border-box;
    margin: 0;
}

body {
    word-wrap: break-word;
    font-family: 'Montserrat', 'Lato', 'Roboto', sans-serif;
    font-weight: 300;
    color: #222;
    scroll-behavior: smooth;
}

.bg-content {
    min-height: 100vh;
}

.error-msg {
    font-size: 20px;
    margin-bottom: 20px;
}

.error-msg span {
    font-size: 40px;
    font-weight: 600;
}

.district-logo-container {
    width: 375px;
    position: absolute;
    top: 0;
    padding: 15px;
    left: calc(50% - 375px/2);
    z-index: 1000;
}

.light-overlay {
    position: fixed;
    top: 0;
    left: 0;
    background: #fff;
    z-index: -1;
}

.bottom-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100vw;
    min-height: 15px;
    z-index: 1000;
}

.bg-conf {
    background-image: url("../images/bg-web.jpg?v=2023");
    background-size: cover;
    background-position: bottom center;
    width: 100vw;
    /* height: 100vh; */
}

.img-fluid {
    max-width: 100%;
    height: auto;
}

.ss-logo {
    width: 400px;
}

.red-wheel {
    position: absolute;
    bottom: 3px;
    right: 4px;
    width: 59px;
}

.blue-wheel {
    position: absolute;
    bottom: 75px;
    right: 4px;
    width: 59px;
}

.green-wheel {
    position: absolute;
    bottom: 39px;
    right: 50px;
    width: 59px;
}

.rotate {
    animation: rotation 8s infinite linear;
}

.anti-rotate {
    animation: anti-rotation 8s infinite linear;
}

.countdown {
    display: flex;
    justify-content: center;
}

.countdown .c {
    display: inline-block;
    font-size: 1em;
    font-weight: 400;
    padding: 1em;
    text-transform: uppercase;
    width: 130px;
}

.countdown .c .d {
    font-size: 3.5rem;
    line-height: 3.5rem;
    font-weight: 500;
}

button {
    padding: 8px 10px;
    border-radius: 25px;
    background: linear-gradient(to right, #363fea 0%, #2889b6 100%);
    border: none;
    color: #fff;
    font-weight: 500;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.2s ease-in;
    text-transform: uppercase;
    font-size: 1em;
    min-width: 200px;
}

button:hover {
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.5);
}

.about-link{
    padding: 8px 10px;
    border-radius: 25px;
    background: linear-gradient(to right, #00ac81ef 0%, #2889b6 100%);
    border: none;
    color: #fff;
    font-weight: 500;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.2s ease-in;
    text-transform: uppercase;
    font-size: 1em;
    min-width: 200px;
    text-decoration: none;
}

.about{
    margin-top: 20px;

}

.about-link:hover {
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.5);
    color: aliceblue;

}

.file-btn {
    text-transform: none;
    background: #fdc30c;
    color: #000;
    width: 100%;
}

.custom-input {
    padding: 9px 12px;
    width: 100%;
    border: none;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
    border-radius: 25px;
    text-align: center;
    outline: none;
    background: #fff;
}

.text-left {
    text-align: left;
}

input[type="radio"] {
    margin-left: 40px;
}

.alert {
    color: #fff;
    font-weight: 500;
    margin-top: 1.5em;
    padding: 10px;
    border-radius: 6px;
}

.alert.error {
    background: #f94a4a;
}

.alert.success {
    background: #009732;
}

@media(max-width: 475px) {
    .district-logo-container {
        width: 250px;
        left: calc(50% - 250px/2);
        padding: 10px;
    }
    .ss-logo {
        max-width: 250px;
    }
    .bottom-bar {
        min-height: 10px;
    }
    .red-wheel {
        bottom: 2px;
        right: 2px;
        width: 37px;
    }
    .blue-wheel {
        bottom: 47px;
        right: 2px;
        width: 37px;
    }
    .green-wheel {
        bottom: 24px;
        right: 31px;
        width: 37px;
    }
}

@media(max-width: 768px) {
    .countdown .c {
        font-size: 0.8rem;
        padding: .75rem;
        width: 90px;
    }
    .countdown .c .d {
        font-size: 2.375rem;
        line-height: 2.375rem;
    }
}

@keyframes rotation {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(359deg);
    }
}

@keyframes anti-rotation {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(-359deg);
    }
}