﻿html {
    font-size: 22px;
}    
label {
    font-weight:600;
}
input {
    font-weight:600;
}
body {
    background-color: gray;
}
h1 {
    text-align:center;
}
input[type=checkbox], input[type=radio] {
    width: 24px;
    height: 24px;
    margin: 5px;
    border-radius: 4px;
    outline: none;
    cursor: pointer;
}
.cbBox {
    display: block;
    position: relative;
    padding-left: 35px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 18px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.cbBox input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 25px;
    width: 25px;
    background-color: gray;
    border-radius: 3px;
}

.cbBox:hover input ~ .checkmark {
    background-color: darkgray;
}

.cbBox input:checked ~ .checkmark {
    background-color: lightgray;
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.cbBox input:checked ~ .checkmark:after {
    display: block;
}

.cbBox .checkmark:after {
    left: 9px;
    top: 3px;
    width: 10px;
    height: 15px;
    border: solid black;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

hr {
    height: 5px;
    border: 0;
    width: 95%;
    background-color: white;
}

.btn-BOSS {
    background-color:white;
    color:black;
}

.banner {
    color: orange;
    font-size: 30px;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    padding-top: 10px;
    padding-bottom: 10px;
}

.poweredBy {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    text-align: center;
    font-size:14px;
}

.loader {
    border: 16px solid #f3f3f3;
    border-radius: 50%;
    border-top: 16px solid blue;
    border-right: 16px solid green;
    border-bottom: 16px solid red;
    width: 60px;
    height: 60px;
    -webkit-animation: spin 2s linear infinite;
    animation: spin 2s linear infinite;
}

@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
    }
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}