body {
    background: #111;
    color: #fff;
    font-size: 14px;
    padding-bottom: 200px;
}
h1, h2 {
    position: relative;
    text-transform: uppercase;
    font-weight: bold;
}
a {
    color: #ff421f;
}
p {
    color: #666;
}
.logo {
    height: 50px;
}
.boxes label {
    border: 1px solid #333;
    background-color: #000;
    border-radius: 4px;
    width: 100%;
    height: 60px;
    line-height: 60px;
    text-align: left;
    padding-left: 20px;
    font-weight: bold;
    text-transform: uppercase;
    color: #aaa;
    margin: 15px 0;
    position: relative;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}
.boxes label:hover {
    cursor: pointer;
    border-color: #555;
}
.boxes label::selection {
    background-color: transparent;
}
.boxes input.clear + label {
    background-color: transparent;
}
.boxes input[type="checkbox"], .boxes input[type="radio"] {
    display: none;
}
.boxes input[type="checkbox"]:checked + label, .boxes input[type="radio"]:checked + label {
    border-color: #ff421f;
    color: #fff;
    background: #ff421f;
    background: -moz-linear-gradient(-45deg, #ff421f 0%, #7a00cc 100%);
    background: -webkit-linear-gradient(-45deg, #ff421f 0%, #7a00cc 100%);
    background: linear-gradient(135deg, #ff421f 0%, #7a00cc 100%);
    filter: progid: DXImageTransform.Microsoft.gradient( startColorstr='#ff421f', endColorstr='#7a00cc', GradientType=1);
}
.boxes input[type="checkbox"]:checked + label:after, .boxes input[type="radio"]:checked + label:after {
    content: '';
    background: url('../img/tick_w.svg');
    background-size: contain;
    display: block;
    position: absolute;
    width: 30px;
    height: 30px;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
}
.btn-primary {
    background: #ff421f;
    background: -moz-linear-gradient(-45deg, #ff421f 0%, #7a00cc 100%);
    background: -webkit-linear-gradient(-45deg, #ff421f 0%, #7a00cc 100%);
    background: linear-gradient(135deg, #ff421f 0%, #7a00cc 100%);
    filter: progid: DXImageTransform.Microsoft.gradient( startColorstr='#ff421f', endColorstr='#7a00cc', GradientType=1);
    border-color: #ff421f;
    font-weight: bold;
    text-transform: uppercase;
    padding: 10px 40px;
}
.btn-primary:hover, .btn-primary:active, .btn-primary:focus {
    border-color: #ff421f !important;
    box-shadow: none !important;
    background: #7a00cc;
    background: -moz-linear-gradient(-45deg, #7a00cc 0%, #ff421f 100%);
    background: -webkit-linear-gradient(-45deg, #7a00cc 0%, #ff421f 100%);
    background: linear-gradient(135deg, #7a00cc 0%, #ff421f 100%);
    filter: progid: DXImageTransform.Microsoft.gradient( startColorstr='#7a00cc', endColorstr='#ff421f', GradientType=1);
}
.btn-primary:focus {
    outline-color: orange;
}
.number {
    color: rgba(255, 255, 255, 0.08);
    font-weight: bold;
    font-size: 150px;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}
.number::selection {
    background-color: transparent;
}
.form-control {
    background-color: #000;
    border-color: #333;
    color: #fff;
    padding: 20px;
}
.form-control:focus {
    background: #000;
    border-color: #555;
    color: #fff;
    box-shadow: none !important;
}
/*
@keyframes balettmove {
    from {
        right: -600px;
        top: -300px;
    }
    to {
        right: 0;
        top: 0;
    }
}
*/

.astro-balett {
    position: absolute;
    right: 0;
    top: 0;
    animation: balettmove 3s ease-in-out;
}
.section {
    display: none;
}
.loader {
    position: fixed;
    z-index: 999;
    left: 0;
    top: 0;
    width: 0;
    height: 3px;
    background: -moz-linear-gradient(-45deg, #ff421f 0%, #7a00cc 100%);
    background: -webkit-linear-gradient(-45deg, #ff421f 0%, #7a00cc 100%);
    background: linear-gradient(135deg, #ff421f 0%, #7a00cc 100%);
    filter: progid: DXImageTransform.Microsoft.gradient( startColorstr='#ff421f', endColorstr='#7a00cc', GradientType=1);
    -webkit-transition: all 1s ease-in-out;
    -moz-transition: all 1s ease-in-out;
    -ms-transition: all 1s ease-in-out;
    -o-transition: all 1s ease-in-out;
    transition: all 1s ease-in-out;
}
.custom-checkbox:before {
    content: '';
    width: 20px;
    height: 20px;
    background-color: #fff;
    border-radius: 50%;
    margin-right: 10px;
    display: inline-block;
    vertical-align: top;
}
.floating-clock {
    color: rgba(255, 255, 255, 0.02);
    font-weight: bold;
    font-size: 30vw;
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}
.floating-clock::selection {
    background-color: transparent;
}
input[type="checkbox"]:checked + label.custom-checkbox:before, input[type="radio"]:checked + label.custom-checkbox:before {
    background-color: #23c373;
    background-image: url('../img/tick_w.svg');
    background-size: contain;
}
@media only screen and (max-width: 1199px) {
    .boxes label {
        margin: 5px 0;
    }
}
