@font-face {
    font-family: "Tagesschrift";
    src: url("../fonts/Garet-Book.ttf");
}

*, *:before, *:after {
    margin: 0;
    padding: 0;
    font-family: 'Garet Book', sans-serif;
    font-size: 1em;
    color: #444;
    font-weight: 400;
    line-height: 1.4em;
    letter-spacing: 0em;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
}

:root {
    --radius: 4px;
    --curved: 10px;
    --rounded: 50%;
    --transition: 0.8s;
    --scale: 1.1;
    --seconds: 1s;
}

.body {
    background: #112;
    margin: 0;
    padding: 0;
}

.body-index {
    background: #fff;
    margin: 0;
    padding: 0;
    overflow: hidden;
}

.body-white {
    background: #fff;
    margin: 0;
    padding: 0;
}

header {
    margin: 0;
}
main {
    margin: -5px 0 0 0;
    padding: 0;    
}
main div {
    margin: 0;
    padding: 0;        
}

a {
    text-decoration: none;
}

img {
    max-width: 100%;
    border: none;
}

.radius {
    border-radius: var(--radius);
    -webkit-border-radius: var(--radius);
    -moz-border-radius: var(--radius)
}

.pagination {
    display: inline-block;
    width: 100%;
    margin: 20px 0;
    text-align: center;
}
.pagination a {
    background: #eeeeef;
    color: #666;
    text-decoration: none;
    padding: 4px 12px;
    border: 1px solid #dddddf;
    margin: 0 3px;
    font-weight: 800;
    border-radius: var(--radius);
    -webkit-border-radius: var(--radius);
    -moz-border-radius: var(--radius)    
}
.pagination a:hover {
    border: 1px solid #bbbbbf;
    background: #eeeeef;
}
.pagination .active {
    color: #112;
    background: #bbbbbf;
    border: 1px solid #aaaaaf;
}

textarea {
    resize: none;
}
.textcode {
    width: 100%;
    height: 120px;
    font-size: 14px;
    color: #99999f;
    padding: 7px;
}

.alert {
    background: #FFECEC;
    border: 1px solid #FFBFBF;
    padding: 20px;
    text-align: left;
    display: inline-block;
    width: 100%;
    font-size: 1em;
    margin-top: 30px;
}

.t-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.t-item {
    min-height: 100px;
}

.noselect {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.bold {
    font-weight: 800;
}

.gray {
    color: #555 !important;
}
.black {
    color: #000 !important;
}
.orange {
    color: #F90 !important;
}
.green {
    color: #2A2 !important;
}

.left {
    text-align: left !important;
}
.right {
    text-align: right !important;
}
.center {
    text-align: center !important;
}
.justify {
    text-align: justify !important;
}

.pointer {
    cursor: pointer;
}

.separator {
    display: inline-block;
    width: 100%;
    margin: 20px 0px;
}
.separator-0 {
    display: inline-block;
    width: 100%;
}
.result,.resulter {
    position: fixed;
    right: 15px;
    top: 15px;
    width: 320px;
    padding: 15px;
    background: #ffffa0;
    border: 1px solid #ffff60;
    border-bottom: 3px solid #ffff60;
    border-radius: var(--radius);
    -webkit-border-radius: var(--radius);
    -moz-border-radius: var(--radius)
}

.box-inline {
    display: inline-block;
    width: 100%;
    padding: 7px;
    border: 1px solid #2a2;
    background: #fff;
    box-shadow: 1px 2px 1px #cccccf;
    text-align: center;
    margin-bottom: 0px !important;
}

.margintopbottom {
    margin: 100px auto;
}

.margin-top-0 {
    margin-top: 0px !important;
}

.margin-top-10 {
    margin-top: 10px !important;
}

.margin-top-20 {
    margin-top: 20px !important;
}

.margin-top-30 {
    margin-top: 30px !important;
}

.margin-top-40 {
    margin-top: 40px !important;
}

.margin-top-50 {
    margin-top: 50px !important;
}

.margin-top-60 {
    margin-top: 60px !important;
}

.margin-top-70 {
    margin-top: 70px !important;
}

.margin-bottom-0 {
    margin-bottom: 0px;
}

.margin-bottom-30 {
    margin-bottom: 30px;
}

.loading img {
    height: 10px;
}

.container {
    width: 100%;
    background: #112;
    padding: 7px 20px 2px 20px;
    display: inline-block;
}

.container h1 {
    margin: 10px 0;
}
.logo-menu {
    float: left;
    width: 100%;
    text-align: left;
    margin-bottom: 12px;
    padding: 20px 0 0 0;
}

.logo-menu .vip {
    display: inline-block;
    width: 100%;
    margin-top: 20px;
}

.logo-menu .a-normal {
    color: #eeeeef;
    font-weight: 500;
    margin-right: 16px;
    cursor: pointer;
    font-weight: 800;
    letter-spacing: 1px;
}

.logo-menu .a-signup {
    background: #2B2;
    color: #fff;
    font-weight: 800;
    text-decoration: none;
    padding: 10px 35px;
    font-size: 1.1em;
    border: 3px solid #2B2;
    cursor: pointer;
    border-radius: var(--radius);
    -webkit-border-radius: var(--radius);
    -moz-border-radius: var(--radius);
}

.a-logout {
    padding: 10px 20px !important;
}

.logo-menu .a-signup:hover {
    background: #4C4;
    border: 3px solid #2B2;
}

.container h1 {
    text-align: center !important;
    font-weight: 800;
    font-size: 1.1em;
    color: #eeeeef;
}

.logo-menu .vip h1 {
    text-align: right !important;
    font-size: 1em;
}

.logo-position {
    position: relative;
}
.logo-menu .ref {
    position: absolute;
    bottom: -10px;
    left: 39px;
    font-size: 11px;
    color: #aaaaaf;
}
.margin-top-b3-buttons {
    margin-top: 70px;
}

.page {
    margin: 10px;
}

.page h1 {
    font-size: 1.6em;
    font-weight: 800;
}

.page p {
    margin-top: 30px;
}

.page .page-div-input {
    margin: 7px 0px;
}

.page .margin-t-70 {
    text-align: center;
    margin: 30px auto 0px auto;
}

.page .margin-t-30 {
    margin: 30px auto 0px auto;
}

.page .content-buttons {
    width: 100%;
    margin-top: 50px;
}

.content-account {
    margin-top: 0px !important;
}

.content-account .separator div {
    margin: 20px 0;
}
.content-account .separator input[type=text],
.content-account .separator input[type=email],
.content-account .separator input[type=password] {
    width: 290px;
    box-shadow: none !important;
}

select {
    padding: 9px 7px !important;
    width: auto;
    box-shadow: none !important;    
}

.page .p {
    margin: 20px 0;
}

.note-referrals {
    display: inline-block;
    width: 100%;
    margin-top: 35px;
    font-size: 0.8em;
}

.content-buttons i {
    font-weight: 800;
}

.content {
    width: 96%;
    max-width: 1024px;
    margin: 0px auto 30px auto;
}

.content h3 {
    font-weight: 800;
    font-size: 1.3em;
    margin: 20px 0;
    color: #fc0;
}

.content ol,.content ul {
    margin: 30px 0 30px 40px;
}

.content ul li, .content ol li, .content p {
    color: #99999f;
}

.content ul li::marker {
    color: #2B2;
}

.content .p-table {
    margin-top: 20px;
}

.content b, .content u {
    color: #99999f;
    font-weight: 800;
}

.btn,.btn-light {
    background: #2B2;
    color: #fff;
    font-weight: 800;
    text-decoration: none;
    padding: 15px 50px;
    font-size: 1.1em;
    border: 3px solid #2B2;
    cursor: pointer;
}
.btn-light {
    padding: 35px 50px;
    background: #eeeeef;
    border: 3px solid #eeeeef;
    color: #44444f;
}
.btn:hover {
    background: #4C4;
    border: 3px solid #2B2;
}
.btn-light:hover {
    background: #dddddf;
    border: 3px solid #cccccf;
}
.btn-light-focus {
    background: #dddddf !important;
    border: 3px solid #cccccf !important;
    cursor: auto !important;
    padding: 25px 50px !important;
}
.btn-padding {
    padding: 35px 50px;
}
.btn-request {
    display: inline-block;
    width: 100% !important;
}
.input-url {
    width: calc(100% - 92px) !important;
    box-shadow: none !important;
}
.btn-save {
    padding: 3px 10px 5px 10px !important;
    vertical-align: bottom;
}
.btn-test {
    padding: 1px 6px 2px 6px !important;
    vertical-align: bottom;
    font-size: 11px;
}
.btn100 {
    display: inline-block;
    width: 100%;
    padding: 20px 35px;
    text-align: center;
}
.content .btn-signup {
    margin: 15px 0px 40px 0px;
}

.content .btn-signup a {
    background: #2B2;
    color: #fff;
    font-weight: 800;
    text-decoration: none;
    padding: 15px 50px;
    font-size: 1.1em;
    border: 3px solid #2B2;
    cursor: pointer;
}

.content .btn-signup a:hover {
    background: #4C4;
    border: 3px solid #2B2;
}

.content .btn-end {
    margin-top: 50px;
}

.content .table {
    display: inline-block;
    width: 100%;
    margin: 10px auto;
}
.content .table .table-line {
    display: inline-block;
    width: 100%;
}

.content .table .table-bold div {
    background: #bbbbbf;
    font-weight: 800;
    border-radius: var(--radius);
    -webkit-border-radius: var(--radius);
    -moz-border-radius: var(--radius);
    padding: 5px;
    color: #33333f;
    margin-bottom: 3px;
}

.content .table .table-line div,.content .table .table-line-blank div {
    float: left;
    width: 100%;
    text-align: center;
    font-size: 0.9em;
    padding: 5px;
}

.content .table-line div {
    background: #33333f;
    margin: 2px auto;
    border-radius: var(--radius);
    -webkit-border-radius: var(--radius);
    -moz-border-radius: var(--radius);
    color: #cccccf;
}

.content .table-line-blank-text div {
    color: #444 !important;
}

.content .table-line-blank div {
    background: transparent;
    margin: 2px auto;
    color: #cccccf;
}

.table-line-mobile {
    display: inline-block;
    width: 100%;
    margin: 0px;    
}
.table-line-mobile div {
    display: inline-block;
    width: 100%;
    margin: 0px;
    background: #bbbbbf;
    color: #444;
    padding: 5px;
    font-weight: 800;
}

.table-line-desktop {
    display: none;
}

.b2 {
    float: left;
    width: 100%;
    margin-bottom: 20px;
}

.b3-box img {
    max-height: 300px;
}

#info-popup {
    display: none;
    position: fixed;
    left: 50%;
    top: 50%;
    width: 320px;
    margin-top: -250px;
    margin-left: -160px;
    background-color: #222 !important;
    border: 2px solid #000;
    padding: 20px;
    border-radius: 5px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    box-shadow: 6px 15px 30px #000;
}

.close-popup {
    float: right;
    color: #000;
    margin-top: 9px;
}

.title-popup {
    float: left;
    text-align: left;
    color: #fc0;
    font-weight: 800;
    font-size: 1.2em;
    padding: 6px 0px 10px 0px;
}

.close-popup span {
    cursor: pointer;
    color: #999;
}

.content-popup {
    margin-top: 10px;
    padding: 10px;
    font-size: 13px;
    overflow-y: auto;
    height: 330px;
}

.fields-login {
    margin: 5px 0px 12px 0px;
}

.fields-links {
    margin-top: 15px;
}
.fields-links span {
    color: #fc0;
    font-size: 0.9em;
    font-weight: 800;
    cursor: pointer;
}

.fields-links span:hover {
    color: #fe3;
}

.fields-login span {
    color: #f90;
    font-weight: 800;
    font-size: 1.2em;
}

.input {
    padding: 7px;
    border: 1px solid #dddddf;
    background: #eeeeef;
    box-shadow: 1px 4px 8px #44444f;
}

input {
    outline: none;
}

.fixed {
    width: 100%;
}

.input-calc-captcha {
    width: 100%;
    padding-left: 70px;
}

.pos-captcha {
    position: relative;
}

.fields-login span {
    position: absolute;
    left: 12px;
    top: 5px;
}

.b3-buttons {
    float: left;
    width: 100%;
    margin-bottom: 20px;
    text-align: center;
}

.b3-btn {
    margin-bottom: 12px;
}
.b3-btn .btn,.b3-btn .btn-light {
    padding: 20px 35px;
    display: inline-block;
    width: 100%;
}

.b3-box {
    padding: 0px 20px;
    border: 1px solid #dddddf;
    background: #fff;
    box-shadow: 1px 2px 1px #dddddf;
}

footer {
    margin: 100px auto;
    text-align: center;
}
footer .copy {
    color: #777;
}
footer .copy b {
    color: #777;
    font-weight: 800;
}
footer .tos {
    list-style-type: none;
    margin: 20px 0;
}
footer .tos li {
    margin: 0 5px;
    display: inline;
}
footer .tos a {
    color: #777;
    font-size: 0.8em;
}
footer .tos a:hover {
    color: #999;
}

footer .site {
    color: #777;
    font-size: 12px;
    margin-top: -12px;
}

footer .site a {
    color: #444;
    font-size: 12px;
}

.delete {
    position: relative;
}
.delete span {
    position: absolute;
    top: 0px;
    left: 10px;
    font-size: 1.3em;
    cursor: pointer;
}
.switch-margin-left {
    margin-left: -30px;
}

.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    -webkit-transition: .4s;
    transition: .4s;
}

.slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    -webkit-transition: .4s;
    transition: .4s;
}

input:checked + .slider {
    background-color: #2a2;
}

input:focus + .slider {
    box-shadow: 0 0 1px #2a2;
}

input:checked + .slider:before {
    -webkit-transform: translateX(26px);
    -ms-transform: translateX(26px);
    transform: translateX(26px);
}

.slider.round {
    border-radius: 34px;
}

.slider.round:before {
    border-radius: 50%;
}

@media (min-width: 60em) {
    .margin-top-b3-buttons {
        margin-top: 40px;
    }
    .note-referrals {
        display: inline;
        width: auto;
        margin-top: 0px;        
    }
    .page {
        margin: 10px;
        margin-top: 40px;
    }
    .logo-menu {
        width: 48.5%;
        margin-right: 3%;
        margin-bottom: 0px;
        text-align: left;
    }
    .logo-menu:nth-of-type(2n) {
        margin-right: 0px;
        text-align: right;
    }
    .logo-menu .vip h1 {
        font-size: 1.1em;
    }
    .content .table .table-line div,.content .table .table-line-blank div {
        float: left;
        width: 24.5%;
        margin-right: 0.66%;
    }
    .content .table .table-line div:nth-of-type(4n),.content .table .table-line-blank div:nth-of-type(4n) {
        margin-right: 0px;
    }
    .table-line-mobile {
        display: none;
    }    
    .table-line-desktop {
        display: inline-block;
        width: 100%;
    }    
    .b2 {
        width: 48.5%;
        margin-right: 3%;
        margin-bottom: 0px;
    }
    .b2:nth-of-type(2n) {
        margin-right: 0px;
    }
    .b3-buttons {
        width: 31%;
        margin-right: 3.5%;
        margin-bottom: 0px;
    }
    .b3-buttons:nth-of-type(3n) {
        margin-right: 0px;
    }
    .b3-buttons .btn, .b3-buttons .btn-light {
        display: block;
        width: 100%;
        padding: 35px 0px !important;
    }
    .b3-box .btn {
        padding: 10px 0px !important;
    }
    .b3-box {
        margin-bottom: 20px !important;
    }
    .b3-btn {
        margin-bottom: 0px;
    }
    .b3-btn .btn,.b3-btn .btn-light {
        padding: 20px 50px;
        display: inline-block;
        width: 100%;
    }
    .btn100 {
        display: inline-block;
        width: auto;
    }
}