.xmt-2 {
    margin-top: 4rem !important;
}

.xmt-6 {
    margin-top: 12rem !important;
}

h2 {
    font-size: 3.8rem;
    color: #ff7d00;
}

h3 {
    font-size: 5rem !important;
}

.check-table table {
    font-size: 22px;
}

.check-table table i {
    font-size: 38px;
}

.check-table table td {
    padding-bottom: 10px;
}

.check-table h4 {
    font-size: 26px;
    padding-bottom: 20px;
    margin-left: -200px;
}

.dsl-tips h2 {
    font-size: 3rem !important;
}

body {
    background: #f3f3f3;
}

.container.bg {
    background: #ffffff;

    -webkit-box-shadow: 1px 1px 2px rgba(0,0,0,.08);
    -moz-box-shadow: 1px 1px 2px rgba(0,0,0,.08);
    box-shadow: 1px 1px 2px rgba(0,0,0,.08);
}

.container {
    padding-left: 60px;
    padding-right: 60px;


}

#faq h3 {
    font-size: 26px !important;
}

.comparisation h4 {
    font-size: 3rem;
    text-align: center;
}

.comparisation table td {
    padding-right: 20px;
}

.modal-title {
    font-size: 3rem;
    text-align: left;
    text-align: center;
}

.modal-body {
    text-align: left;
    padding-left: 20px;
    padding-right: 20px;
    text-align: center;
}

.modal.fade.in {
    display: flex !important;
    flex-direction: column;
    justify-content: center;
}



.gradient-container {
    background: rgba(242, 242, 242, 1);
    background: -moz-linear-gradient(top, rgba(242, 242, 242, 1) 0%, rgba(242, 242, 242, 1) 19%, rgba(226, 226, 226, 1) 50%, rgba(230, 230, 230, 1) 51%, rgba(255, 255, 255, 1) 84%, rgba(255, 255, 255, 1) 100%);
    background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(242, 242, 242, 1)), color-stop(19%, rgba(242, 242, 242, 1)), color-stop(50%, rgba(226, 226, 226, 1)), color-stop(51%, rgba(230, 230, 230, 1)), color-stop(84%, rgba(255, 255, 255, 1)), color-stop(100%, rgba(255, 255, 255, 1)));
    background: -webkit-linear-gradient(top, rgba(242, 242, 242, 1) 0%, rgba(242, 242, 242, 1) 19%, rgba(226, 226, 226, 1) 50%, rgba(230, 230, 230, 1) 51%, rgba(255, 255, 255, 1) 84%, rgba(255, 255, 255, 1) 100%);
    background: -o-linear-gradient(top, rgba(242, 242, 242, 1) 0%, rgba(242, 242, 242, 1) 19%, rgba(226, 226, 226, 1) 50%, rgba(230, 230, 230, 1) 51%, rgba(255, 255, 255, 1) 84%, rgba(255, 255, 255, 1) 100%);
    background: -ms-linear-gradient(top, rgba(242, 242, 242, 1) 0%, rgba(242, 242, 242, 1) 19%, rgba(226, 226, 226, 1) 50%, rgba(230, 230, 230, 1) 51%, rgba(255, 255, 255, 1) 84%, rgba(255, 255, 255, 1) 100%);
    background: linear-gradient(to bottom, rgba(242, 242, 242, 1) 0%, rgba(242, 242, 242, 1) 19%, rgba(226, 226, 226, 1) 50%, rgba(230, 230, 230, 1) 51%, rgba(255, 255, 255, 1) 84%, rgba(255, 255, 255, 1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#f2f2f2', endColorstr='#ffffff', GradientType=0);
}

@media all and (max-width: 768px) {
    #headerwrap {
        padding-top: 90px;
    }
    #headerwrap .headertext {
        font-size: 6rem !important;
        line-height: 8rem !important;
    }

}

@media all and (max-width: 512px) {
    #headerwrap {
        padding-top: 120px;
    }
    #headerwrap .headertext {
        font-size: 3.5rem !important;
        line-height: 6rem !important;
    }

    h2 {
        font-size: 2.8rem;
        color: #ff7d00;
    }

    h3 {
        font-size: 3.2rem !important;
    }

    body {
        font-size: 1.6rem;
    }

    .check-table table {
        font-size: 16px;
    }

    .check-table table i {
        font-size: 24px;
    }

    .check-table h4 {
        margin-left: 0 !important;
        margin-bottom: 25px;
    }


    .container {
        padding-left: 15px;
        padding-right: 15px;
    }
}

.loader {
    border: 16px solid #f3f3f3; /* Light grey */
    border-top: 16px solid #3498db; /* Blue */
    border-radius: 50%;
    width: 120px;
    height: 120px;
    animation: spin 2s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}


input[type=text], input[type=number], select {
    width: 100%;
    padding: 6px 20px;
    margin: 8px 0;
    display: inline-block;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}

input[type=submit], table .btn {
    width: 100%;
    background-color: #4CAF50;
    color: white;
    padding: 14px 20px;
    margin: 8px 0;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

input[type=submit]:hover {
    background-color: #45a049;
}

/* ************** Input Spinner bei Nummerneingabe deaktivieren *******/


input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    /* display: none; <- Crashes Chrome on hover */
    -webkit-appearance: none;
    margin: 0; /* <-- Apparently some margin are still there even though it's hidden */
}

input[type=number] {
    -moz-appearance: textfield; /* Firefox */
}


/****************** Checkbox-Styling *************/
/* The switch - the box around the slider */
.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
}

/* Hide default HTML checkbox */
.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

/* The slider */
.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: #2196F3;
}

input:focus + .slider {
    box-shadow: 0 0 1px #2196F3;
}

input:checked + .slider:before {
    -webkit-transform: translateX(26px);
    -ms-transform: translateX(26px);
    transform: translateX(26px);
}

/* Rounded sliders */
.slider.round {
    border-radius: 34px;
}

.slider.round:before {
    border-radius: 50%;
}





dt { float: left; padding: 4px; }

.bar {
    display: inline-block;
    margin-bottom: 10px;
    color: #fff;
    padding: 4px;
    text-align: center;
    background: -webkit-gradient(linear, left top, left bottom, from(#ff7617),  color-stop(28%, transparent), to(#ba550f));
    background-color: #ff7617;
    -webkit-box-reflect: below 0 -webkit-gradient(linear, left top, left bottom, from(rgba(0,0,0,0)),  color-stop(34%, transparent), to(rgba(0,0,0,0.25)));
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;
    -webkit-animation-name:bar;
    -webkit-animation-duration:0.5s;
    -webkit-animation-iteration-count:1;
    -webkit-animation-timing-function:ease-out;
}

dl dd {
    padding-top: 30px;
}

.description span {
}

#data-four {
    background: -webkit-gradient(linear, left top, left bottom, from(#33cc33),  color-stop(28%, transparent), to(#55aa33));
    background-color: #00cc00;
}

#data-one { -webkit-animation-name:bar-one; }
#data-two { -webkit-animation-name:bar-two; }
#data-three { -webkit-animation-name:bar-three; }
#data-four { -webkit-animation-name:bar-four; }

@-webkit-keyframes bar-one {
    0% { width:0%; }
    100% { width:75.7%; }
}

@-webkit-keyframes bar-two {
    0% { width:0%; }
    100% { width:70.9%; }
}

@-webkit-keyframes bar-three {
    0% { width:0%; }
    100% { width:78.9%; }
}

@-webkit-keyframes bar-four {
    0% { width:0%; }
    100% { width:35.7%; }
}