body, .main-content {
    width: 100vw !important;
    overflow-x: hidden !important;
}

input[type="range"] {
    -webkit-appearance: none;
    height: 20px;
    background: linear-gradient(to right, #eff2f7 0%, #bec3cd 100%);
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
    outline: none;
    background-size: 100% 10px;
}

input[type="range"]:first-of-type {
}

input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    background: #306EFF;
    position: relative;
    z-index: 3;
    box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.3);
}

input[type="range"]::-webkit-slider-thumb:after {
    content: " ";
    width: 160px;
    height: 10px;
    position: absolute;
    z-index: 1;
    right: 20px;
    top: 5px;
    background: #306EFF !important;
    background: linear-gradient(to right, #f088fc 1%, #AC6CFF 70%);
}

input[type='range']:not([disabled])::-webkit-slider-thumb {
    cursor: ew-resize;
}

.form-control-range[disabled] {
    opacity: .5 !important;
}


.select-box:not(.disabled):hover {
    background-color: #eff2f7 !important;
    cursor: pointer;
}

.select-box.disabled:hover {
    cursor: not-allowed;
}

.select-box.disabled {
    opacity: .4;
}

.select-box.active {
    background-color: #eff2f7 !important;
    border-color: green;
}

.select-box.modern {
    margin-bottom: 16px !important;
    position: relative;
    box-shadow: 3px 3px 7px rgba(0, 0, 0, 0.03) !important;
    border-radius: 8px;
    padding: 16px 16px;
    transition: background-color .2s;
}

.select-box.modern .pseudo-input {
    position: absolute;
    right: 22px;
    height: 18px;
    width: 18px;
    top: 50%;
    transform: translate(0, -50%);
    border: 2px solid var(--secondary);
    border-radius: 50%;
}

.select-box.modern.active .pseudo-input {
    border: 6px solid var(--primary);
    background-color: var(--secondary);
    right: 21px;
}

.select-box.modern:not(.disabled):hover .pseudo-input {
    right: 21px;
    background-color: var(--secondary);
}

.select-box.modern.active {
    background-color: transparent !important;
    border: 2px solid var(--primary);
    padding: 15px 15px;
    box-sizing: content-box;
}

.select-box.modern h6 {
    font-family: Arial !important;
    font-weight: normal !important;
}

.select-box.modern.active h6 {
    font-weight: bold !important;
}

.select-box.modern:not(.disabled, .active):hover {
    background-color: white !important;
    cursor: pointer;
    border: 2px solid #8aadff;
    padding: 15px 15px;
}

#fullscreen-punchhole {
    position: absolute;
    top: 0;
    left: 0;
    height: 100vh;
    width: calc(100vw - 16px);
    overflow: hidden !important;
    z-index: 9999;
}

#fullscreen-punchhole .inner {
    position: relative;
    height: 10000px;
    width: 10000px;

    transform: translate(-50%, -50%);

    background-color: black;
    background: radial-gradient(circle at center, transparent 4%, black 4.5%);
    background-size: 100% 100%;
    background-position: 50% 50%;

    animation-name: punchhole_animation;
    animation-duration: 5s;
    animation-fill-mode: forwards;
    animation-timing-function: ease-in-out;
}

@keyframes punchhole_animation {

    0% {
        left: 0;
        top: 80%;
    }

    25% {
        left: 40%;
        top: 30%;
    }

    41% {
        left: 72%;
        top: 50%;
    }

    65% {
        left: 41%;
        top: 45%;
        height: 10000px;
        width: 10000px;
    }

    75% {
        left: 41%;
        top: 45%;
        height: 11000px;
        width: 11000px;
    }
    83% {
        left: 41%;
        top: 45%;
        height: 10000px;
        width: 10000px;
    }
    100% {
        left: 41%;
        top: 45%;
        height: 70000px;
        width: 70000px;
    }
}

#fullscreen-logo-overlay {
    position: absolute;
    top: 0;
    left: 0;
    height: 100vh;
    width: calc(100vw - 16px);
    background-color: #306EFF;
    text-align: center;
    overflow: hidden !important;
    z-index: 9999 !important;
}

#fullscreen-logo-overlay img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70vw;
    filter: drop-shadow(3px 3px 4px rgba(0, 0, 0, 0.5));
}

.conf {
    position: absolute;
    height: 10vh;
    width: 10vw;
}

.conf#c1 {
    top: 50vh;
    left: 6vw;
}

.conf#c2 {
    top: 17vh;
    left: 36vw;
}

.conf#c3 {
    top: 72vh;
    left: 73vw;
}

.conf#c4 {
    top: 50vh;
    left: 30vw;
}

.conf#c5 {
    top: 60vh;
    left: 85vw;
}


.codeblock {
    background-color: #2b2b2b;
    border-radius: 8px;
    box-shadow: 3px 3px 4px rgba(0, 0, 0, 0.7);
    padding: 6px 12px;
    font-family: monospace;
    font-size: .8rem;
}

.codeblock .php {
    color: #bf7231;
}

.codeblock .string {
    color: #688458;
}

.codeblock .variable {
    color: #9876aa;
}

.codeblock .character {
    color: #a9b7c5;
}

.codeblock .method {
    color: #fbc36c;
}

.codeblock .comment {
    color: #7c7c7c;
}

.codeblock ::-moz-selection { /* Code for Firefox */
    background: rgba(255, 255, 255, 0.2) !important;
}

.codeblock ::selection {
    background: rgba(255, 255, 255, 0.2) !important;
}

.codeblock .number {
    color: #616366;
}

.dropdown-menu-arrow-xl:before {
    left: 8rem;
}

.dropdown-menu-arrow.dropdown-menu-right.about:before {
    left: 7rem !important;
}

.codeblock .number-bg {
    background-color: #313335;
    margin-top: -6px;
    margin-bottom: -6px;
    border-top-left-radius: 8px;
    border-bottom-left-radius: 8px;
    padding-top: 6px;
}

.network-image {
    position: absolute;
    width: 20%;
    opacity: 1;
    top: -40px;
}

.domain-selected th, .domain-selected td {
    background-color: #a3ffb1 !important;
}

.blocked_bg {
    position: absolute;
    top: 0;
    left: 0;
    height: 100vh;
    width: 100vw;

    background-color: darkred;
}

.alert:hover {
    color: inherit !important;
}

.blocked_bg .inner {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: white;
    border-radius: 15px;
    width: 50%;
    min-height: 20%;
    padding: 20px;
    box-shadow: 12px 12px 12px rgba(0, 0, 0, 0.6);
}

.center-absolute {
    position: absolute !important;
    top: 50vh;
    left: 50vw;
    transform: translate(-50%, -50%);
}

.image-shadow {
    filter: drop-shadow(6px 6px 6px rgba(0, 0, 0, 0.6));
}

.badge-mobile {
    position: relative;
    top: -2px;
}

@media (max-width: 720px) {
    .badge-mobile {
        top: 0px;
    }
}

.dropdown-nav-services {
    margin-left: -100px !important;
}

@media (max-width: 990px) {
    .dropdown-nav-services {
        margin-left: 0px !important;
    }
}

#startpage_trustpilot_hover {
    cursor: pointer !important;
    z-index: 99999999 !important;
}

.top-alert {
    position: fixed;
    width: 80vw;
    left: 10vw;
    bottom: 24px;
    height: 64px;
    border-radius: 8px;
    border: 2px ridge white;
    background-color: white;
    box-shadow: 4px 8px 8px rgba(0, 0, 0, 0.6);
    z-index: 9999999999;
}

.pulse-effect {
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 1);
    transform: scale(1);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.7);
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 10px rgba(0, 0, 0, 0);
    }

    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
    }
}

.pointer:hover {
    cursor: pointer;
}

.alert-moder-nolink::after {
    content: '' !important;
}

.alert-moder-nolink:hover {
    color: white !important;
}

.background-cashback {
    background-image: url("../img/24fire/cashback.webp");
    background-size: contain;
    background-position: bottom right;
    background-repeat: no-repeat;
}

.navbar-germany {
    background-image: url("../img/icons/navbar/germany_navbar.png");
    background-size: cover;
    background-position: -90px 0px;
    background-repeat: no-repeat;
}

.navbar-netherlands {
    background-image: url("../img/icons/navbar/netherlands_navbar.png");
    background-size: cover;
    background-position: -90px 0px;
    background-repeat: no-repeat;
}

.dropdown-menu .list-side-group > li:hover .list-group-item, .dropdown-menu .list-side-group > li.active .list-group-item {
    z-index: 11;
    transform: scale(1.07) !important;
    background-color: #f0f0ff !important;
    box-shadow: 0 0 1.25rem rgba(31, 45, 61, 0.08);
    border-radius: 0.375rem;
}


.image-area {
    border-radius: 6px;
    height: calc(100% - 24px);
    margin: 12px;
}

.image-area#bg-kvm {
    background-image: url("../img/icons/navbar/nav-bg-kvm.jpg");
    background-size: cover;
    background-repeat: no-repeat;
}

.tabbar-shaddow {
    box-shadow: 0px -5px 3px 0px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 9999 !important;
}

/* devanagari */
@font-face {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url(../fonts/poppins.woff2) format('woff2');
    unicode-range: U+0900-097F, U+1CD0-1CF9, U+200C-200D, U+20A8, U+20B9, U+25CC, U+A830-A839, U+A8E0-A8FF;
}

/* latin-ext */
@font-face {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url(../fonts/poppins.woff2) format('woff2');
    unicode-range: U+0100-02AF, U+0304, U+0308, U+0329, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

/* latin */
@font-face {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url(../fonts/poppins.woff2) format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

.img-hover-scale:hover {
    scale: 1.1 !important;
}

.tab-active {
    color: #0a53ff;
    border-bottom: 1px solid #0a53ff;
}

.old-price {
    text-decoration: line-through;
    text-decoration-color: maroon;
    margin-top: -24px;
    display: block;
    font-size: 1.5rem;
}

.login-background {
    background-image: url(/assets/img/24fire/background-login.webp) !important;
    background-size: cover;
    background-position: 0 40%;
    background-repeat: no-repeat;
}


.outer {
    background: #b4b4b4;
    opacity: 0.9;
    width: 100%;
    margin: 10px auto 0;
    padding: 2px 10px;
    border-radius: 7px 7px 0px 0px;

    &.dark {
        background: #273138;

        .dot {
            background: #4a5c66;
        }
    }

    &.yosemite {
        background: #f6f6f6; /* Old browsers */
        background: -moz-linear-gradient(top, #f6f6f6 0%, #dadada 100%); /* FF3.6+ */
        background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #f6f6f6), color-stop(100%, #dadada)); /* Chrome,Safari4+ */
        background: -webkit-linear-gradient(top, #f6f6f6 0%, #dadada 100%); /* Chrome10+,Safari5.1+ */
        background: -o-linear-gradient(top, #f6f6f6 0%, #dadada 100%); /* Opera 11.10+ */
        background: -ms-linear-gradient(top, #f6f6f6 0%, #dadada 100%); /* IE10+ */
        background: linear-gradient(to bottom, #f6f6f6 0%, #dadada 100%); /* W3C */
        filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#f6f6f6', endColorstr='#dadada', GradientType=0); /* IE6-9 */
        border: 1px solid #d8d8d8;
        border-bottom: 1px solid #b4b4b4;
    }
}

.dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    background: #f9f9f9;
    border-radius: 50%;
    margin: 0 4px 0 0;

    &.red {
        background: #FF6057;
        border: 1px solid #E14640;
    }

    &.amber {
        background: #FFBD2E;
        border: 1px solid #DFA123;
    }

    &.green {
        background: #27C93F;
        border: 1px solid #1DAD2B;
    }
}

.dedicated-card-content {
    background-color: #f5f5f5;
    border-radius: 0 0 7px 7px;
}

.dedicated-card {
    filter: drop-shadow(2px 2px 10px rgba(0, 0, 0, 0.2));
}

.control-label {
    text-align: left !important;
    padding-bottom: 4px;
}

.progress {
    height: 5px !important;
    margin-bottom: -5px;
    position: relative;
    top: -21px;
    z-index: 999;
}

.progress-bar-danger {
    background-color: #e90f10;
}

.progress-bar-warning {
    background-color: #ffad00;
}

.progress-bar-success {
    background-color: #02b502;
}

.fa-circle {
    font-size: 6px;
}

.fa-check {
    color: #02b502;
}

.bg-orange {
    background-color: darkorange;
}

.text-orange {
    color: darkorange;
}

.text-gold {
    color: #CCA448;
}

.bg-gold {
    background-color: #CCA448;
}

.card-blackfriday {
    box-shadow: 0 0 4px #CCA448, 0 0 20px #C58E3E;
}

.card-1-jahr-ntt {
    box-shadow: 0 0 4px #306eff, 0 0 20px #306eff;
}

.card-christmas {
    box-shadow: 0 0 8px #ff4616, 0 0 30px #c73b16;
}

.countdown-holder {
    width: 48px;
    height: 48px;
    background-color: #CCA448;
    border-radius: 5px;
    text-align: center;
    margin: 0 4px;
}

.countdown-holder .time {
    display: block;
    font-size: 1.3rem;
    font-family: monospace;
}

.countdown-holder .label {
    display: block;
    font-size: 0.8rem;
    margin-top: -6px;
}

.card-primary {
    transform: scale(1.1);
}


@media (max-width: 768px) {
    .card-primary {
        transform: scale(1);
    }
}

.domain-search-input {
    background-color: rgba(31, 77, 195, 0.15);
}

.domain-search-input input::placeholder {
    color: #8492a6;
}

.tongue-navbar {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='138' height='35' viewBox='0 0 138 35'%3E%3Cpath fill='%23EFF2F7' d='M 3.15027 34.4375C 1.74207 34.6025 0.68396 34.7266 0 35L 68.9982 35C 68.9982 35 68.9998 28.6387 69 19.5132C 69 20.7261 69.0001 21.8892 69.0001 22.9956L 69.0018 35L 138 35C 137.316 34.7266 136.258 34.6025 134.85 34.4375C 131.11 33.9995 124.903 33.2729 116.678 28.6875C 111.015 25.3901 106.523 20.9771 102.07 16.6025C 93.5474 8.23096 85.1685 -1.97984e-15 69.0018 3.55056e-31C 69.0006 5.271 69 10.4292 69 15.0952C 69 10.4287 68.9994 5.27148 68.9982 3.55056e-31C 52.8314 1.97986e-15 44.4526 8.23096 35.9302 16.6025C 31.4772 20.9771 26.985 25.3901 21.3221 28.6875C 13.0974 33.2729 6.88965 33.9995 3.15027 34.4375Z'/%3E%3C/svg%3E");
}

.btn-valentine {
    color: #d1204a !important;
}

.btn-valentine:hover {
    background-color: #d1204a !important;
    color: white !important;
}

.btn-easter {
    color: #e46808 !important;
}

.btn-easter:hover {
    background-color: #e46808 !important;
    color: white !important;
}

#image-slider {
    position: relative;
}

#image-slider .control-btn {
    position: absolute;
    top: 50%;
    transform: translate(0, -50%);
    padding: 6px !important;
    height: 64px;
}

#image-slider .control-btn.prev {
    left: 6px;
}

#image-slider .control-btn.next {
    right: 6px;
}

.welcome-avatar {
    width: 100%;
    text-align: center;
    margin-top: 32px;
}

.welcome-avatar img {
    width: 60%;
    border-radius: 50%;
    border: 6px solid white;
    outline: 3px ridge var(--primary);
}

.transition-animated {
    transition: all .3s !important;
}

.btn .btn-loader {
    display: none;
}

.btn[disabled] .btn-loader {
    display: inline-block;
}