
body {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', 'Segoe UI', Tahoma, sans-serif;
}

* {
    margin: 0;
    padding: 0;
}

html {
    background: #f5f5f5;
    width: 100%;
    float: left;
}



.container {
    
    
    margin: 0 auto;
}


.maincontent {min-height: 600px; margin-top:50px}

.logo {
    float: left;
    margin: 9px 0 0 20px;
}


#logoheader a:hover {
    cursor: pointer;
}


.wrapper {
    width: 100%;

}
.body-wrap {
    background: #474747;
    width: 100%;
    float: left;
}

.inner-body {
    background: #f9f9f9;
    float: left;
    padding: 3% 3%;
    width: 95%;
}




.footer {
    width: 100%;
    text-align: center;
    color: white;
    margin-top: 20px;
    padding: 5px 0;
    float: left;
}


.footer-default {
    display: block;
}


.footer p {
    font-size: 15px;
}

.footer a, a {
    color: #C0C0C0;
    text-decoration: none;
}


.button input {
    cursor: pointer;
    background: #EB0F0F;
    border-radius: 5px;
    box-shadow: 0 5px 0 0 #8A1414;
    color: #FFFFFF;
    font-size: 18px;
    font-weight: bold;
    padding: 5px 30px;
    text-align: center;
    text-decoration: none;
}


.button-inline {
    padding: 8px 2%;
    text-align: center;
    cursor: pointer;
    background: #C0C0C0;
    border-radius: 5px;
    box-shadow: 0 5px 0 0 #45484d;
    color: #45484d;
    font-size: 18px;
    text-decoration: none;
}


body {

    display: grid;
    
    place-items: center;
}

.base-timer {
    position: relative;
    width: 150px;
    height: 150px;
}

.base-timer__svg {
    transform: scaleX(-1);
}

.base-timer__circle {
    fill: none;
    stroke: none;
}

.base-timer__path-elapsed {
    stroke-width: 7px;
    stroke: grey;
}

.base-timer__path-remaining {
    stroke-width: 7px;
    stroke-linecap: round;
    transform: rotate(90deg);
    transform-origin: center;
    transition: 1s linear all;
    fill-rule: nonzero;
    stroke: currentColor;
}

    .base-timer__path-remaining.green {
        color: rgb(65, 184, 131);
    }

    .base-timer__path-remaining.orange {
        color: orange;
    }

    .base-timer__path-remaining.red {
        color: red;
    }

.base-timer__label {
    position: absolute;
    width: 150px;
    height: 150px;
    top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
}


@media (max-width:500px) {
    .logo {
        float: left;
        margin: 10px 0 0 0px;
    }

        .logo img {
            width: 190px;
        }

    .header-right p {
        font-size: 13px;
    }


    .footer p {
        font-size: 10px;
    }
}

.ticker_bv {
    height: 50px;
    background: #474747;
    border: 2px solid gray;
    color: #63d73d;
    font-family: Consolas,'Courier New',Courier New, Courier, monospace;
    font-weight: bold;
    font-size: 24px;
}
