/**
 * Common global things
 */
:root {
	--main-text-color:      #505050;
	--main-font-sans-serif: 'Inter', sans-serif;
	--main-font-monospace:  'JetBrains Mono', monospace;
}

html,
body {
	height:     100%;
	min-height: 100%;
}

body {
	font-family:         var(--main-font-sans-serif);
	font-size:           medium;
	font-weight:         300;
	color:               var(--main-text-color);
	line-height:         1.5;
}

@media (max-width: 576px) {
	nav > .container {
		margin-left:  0;
		margin-right: 0;
	}
}

.h1, h1 {
    color: #3278d5;
}

a {
	color: #3278d5;
}

strong,
b,
.bold {
	font-weight: 500;
}

small,
.small {
	font-size:   small;
	font-weight: 300;
}

.grey {
	color: #b0b0b0;
}

.medium {
	font-size: medium;
}

.large {
	font-size: large;
}

.x-large {
	font-size: x-large;
}

.xx-large {
	font-size: xx-large;
}

.text-underline {
	text-decoration: underline;
}

.fw-300 {
	font-weight: 300;
}

.fw-400 {
	font-weight: 400;
}

.fw-600 {
	font-weight: 600;
}

.fw-800 {
	font-weight: 800;
}

.input-group-symbol-secondary {
	color:            #aaa;
	background-color: #fff;
	border-color:     #ccc;
	font-size:        small;
}

.eu-dsgvo-disclaimer-common,
.eu-dsgvo-disclaimer-common a {
	color:     #a9a9a9;
	font-size: 0.8rem;
}

dt, dd {
	padding: 0.5rem 0;
	border-top: 1px solid #f0f0f0;
}

p:last-of-type {
	margin-bottom: 0;
}

.text-letterspacing-02 {
	font-family: var(--main-font-monospace);
	letter-spacing: 0.2rem;
}

.mail_address_blurred {
	filter: blur(4px);
	webkit-filter: blur(4px);
}

.benefit-checkmark {
	font-size:       0.9rem;
	color:           #ffffff;
	height:          1.4rem;
	width:           1.4rem;
	background:      rgba(0, 0, 0, 0.25);
	border-radius:   50%;
	display:         inline-block;
	text-align:      center;
	margin-right:    0.5rem;
}

.toggle-icon::after {
	font-family:  "Material Design Icons";
	content:      "\F0143";
	display:      inline-block;
}

.collapsed .toggle-icon::after {
	content:      "\F0140";
}

.code-sample {
	margin-right:     0.25rem;
	padding:          0.2rem 0.4rem;
	color:            var(--main-text-color);
	border:           1px solid #d0d0d0;
	background-color: #ffffff;
	border-radius:    0.25rem;
	font-family:      var(--main-font-monospace);
	line-height:      1.5rem;
}

@media (min-width: 768px) {
	.sticky-side-content {
		position: sticky;
		top: 120px;
	}
}


/**
 * BOOTSTRAP 4 OVERRIDES
 */

.form-control::-webkit-input-placeholder { opacity: 0.5; }
.form-control:-moz-placeholder { opacity: 0.5; }
.form-control::-moz-placeholder { opacity: 0.5; }
.form-control:-ms-input-placeholder { opacity: 0.5; }


kbd,
code,
.text-monospace {
	font-family: var(--main-font-monospace) !important;
	font-variant-ligatures: none;
}

code {
	color: var(--main-text-color);
}

kbd b,
code b {
	font-weight: 600;
}

.btn-secondary {
	color:            #292b2c;
	background-color: #fff;
	border-color:     #ccc;
}

.btn-secondary:hover {
  color:            #292b2c;
  background-color: #e6e6e6;
  border-color:     #adadad;
}

.btn-secondary:focus, .btn-secondary.focus {
  -webkit-box-shadow: 0 0 0 2px rgba(204, 204, 204, 0.5);
          box-shadow: 0 0 0 2px rgba(204, 204, 204, 0.5);
}

.btn-secondary.disabled, .btn-secondary:disabled {
	background-color: #fff;
	border-color:     #ccc;
	color:            #ccc;
}

.btn-secondary:active, .btn-secondary.active,
.show > .btn-secondary.dropdown-toggle {
	color:            #292b2c;
	background-color: #e6e6e6;
	background-image: none;
	border-color:     #adadad;
}

.text-info,
.text-info a {
	color: #4aafec !important;
}

.text-info-alternative,
.text-info-alternative a {
	color: #3f84dd !important;
}


.btn-info {
	background-color: #4aafec;
	border-color:     #4aafec;
}

.btn-info:hover {
	background-color: #4691ca;
	border-color:     #4487bf;
}

.btn-info.disabled, .btn-info:disabled {
	background-color: #4aafec;
	border-color:     #4aafec;
}

.btn-outline-info {
	color:        #4aafec;
	border-color: #4aafec;
}

.btn-outline-info:hover {
	background-color: #4aafec;
	border-color:     #4aafec;
}

.btn-outline-info.disabled, .btn-outline-info:disabled {
	color: #4aafec;
}

.badge-info {
	background-color: #4aafec;
}

.alert-info {
	color: #4691ca;
}

table tbody tr.nohover td,
table tbody tr.nohover td:hover {
	background: white;
}

.table-hover .table-info:hover > td,
.table-hover .table-info:hover > th,
.table-info td,
.table-info {
  background-color: #c4e3f3;
}

.table-hover .table-info:hover > td,
.table-hover .table-info:hover > th {
  background-color: #c4e3f3;
}

.table.table-border-no-top tr:first-of-type td,
.table.table-border-no-top tr:first-of-type th {
	border-top: none;
}

.badge-outline {
	background-color: transparent !important;
	border: 1px solid currentColor;
}

.badge-outline.badge-primary {
	color: #007bff;
	border-color: #007bff;
}

.badge-outline.badge-secondary {
	color: #6c757d;
	border-color: #6c757d;
}

.badge-outline.badge-success {
	color: #28a745;
	border-color: #28a745;
}

.badge-outline.badge-danger {
	color: #dc3545;
	border-color: #dc3545;
}

.badge-outline.badge-warning {
	color: #ffc107;
	border-color: #ffc107;
}

.badge-outline.badge-info {
	color: #4aafec;
	border-color: #4aafec;
}

.badge-outline.badge-light {
	color: #f8f9fa;
	border-color: #f8f9fa;
	background-color: transparent;
}

.badge-outline.badge-dark {
	color: #343a40;
	border-color: #343a40;
}


/**
 * NAVBAR
 */

nav.navbar {
	background-color:  #ffffff;
	background-image:  -moz-linear-gradient(to top, #ffffff, #f7f7f7);
	background-image:  -webkit-linear-gradient(to top, #ffffff, #f7f7f7);
	background-image:  -o-linear-gradient(to top, #ffffff, #f7f7f7);
    background-image:  linear-gradient(to top, #ffffff, #f7f7f7);
    border-bottom:     1px solid #cccccc;
    margin-bottom:     10px;
    padding-top:       1rem;
    padding-bottom:    1rem;
}

nav.navbar .navbar-brand {
	padding-right: 1rem;
}

nav.navbar .navbar-brand h1 {
	margin: 0;
}

nav.navbar .navbar-brand h1 a:hover {
	text-decoration: none;
}

nav.navbar .navbar-brand #logo {
	width:       auto;
	height:      39px;
	border:      0;
}

nav.navbar ul li.dropdown .dropdown-menu {
	border-radius: 0px;
	margin: 0;
}

nav.navbar ul li.dropdown .dropdown-menu a {
	color:           var(--main-text-color);
	line-height:     1.75;
	padding-left:    2.5rem;
	padding-right:   2.5rem;
	font-weight:     300;
}

nav.navbar ul li.dropdown .dropdown-menu a.highlight {
	font-weight:     500;
}

nav.navbar ul li.dropdown .dropdown-menu a.highlight-specialoffer {
	color:      #4cae4c;
	background: #f4f4f4;
}

nav.navbar ul li.dropdown .dropdown-menu a.dropdown-item:active {
	background: #d0d0d0;
}

nav.navbar .catsep {
	font-weight:     500;
	text-decoration: none;
	color:           #3f84dd;
	text-transform:  uppercase;
}

nav.navbar button.navbar-toggler {
	width:  3rem;
	height: 2.5rem;
	border: none;
	top:    0.75rem;
	right:  0;
}

nav.navbar .customerlogin,
nav.navbar .customerlogin a,
nav.navbar .customerlogin a:hover {
	position: absolute;
	top: 0;
	right: 0;
	width: 10rem;
	font-size: small;
	text-align: right;
	color: var(--main-text-color);
	text-decoration: none;
}

@media (max-width: 576px) {

	nav.navbar button.navbar-toggler {
		top: 0.25rem;
	}

}

@media (min-width: 992px) {

	nav.navbar ul li.dropdown {
		padding-right: 10px;
	}

	nav.navbar ul li.dropdown:last-child {
		padding-right: 0;
	}


	.navbar-light .navbar-nav .nav-link,
	nav.navbar ul li.dropdown a.nav-link {
		color:           #3f84dd;
		padding-left:    1rem;
		padding-right:   1rem;
		font-weight:     400;
	}

	nav.navbar ul li.nav-link-primary a.nav-link {
		text-transform:  uppercase;
		font-weight:     600;
	}

	nav.navbar ul li.nav-link-secondary a.nav-link {
		font-size:  0.95rem;
		margin-top: 0.05rem;
	}

	nav.navbar ul li.nav-link-tertiary a.nav-link {
		font-size:  0.75rem;
		margin-top: 0.25rem;
	}

	.navbar-light .navbar-nav .nav-link:hover,
	nav.navbar ul li.dropdown:hover a.nav-link {
		background-color: #eaf1fb;
		border-radius:    0.33rem;
		color:            #3f84dd;
	}

	.navbar-light .navbar-nav .nav-item.active .nav-link,
	nav.navbar ul li.dropdown.active a.nav-link {
		background-color: #3f84dd;
		border-radius:    0.33rem;
		color:            #ffffff;
	}

	nav.navbar ul li.dropdown a.dropdown-toggle::after{
 	   display: none;
	}

	nav.navbar ul li.dropdown:hover .dropdown-menu {
		display: block;
	}

}

nav.navbar-2 {
	margin-bottom: 0;
	border:        0;
	height:        1rem;
	align-items:   right;
	background:    #f7f7f7;
	font-size:     small;
}

nav.navbar.navbar-2 ul a.nav-link {
	color: #3f84dd;
}


/**
 * NAV-BREADCRUMS
 */

#nav-breadcrumbs {
	width:          100%;
	min-height:     30px;
	line-height:    30px;
	margin-bottom:  0.5rem;
}

#nav-breadcrumbs,
#nav-breadcrumbs a {
	font-size: small;
	color: #333;
}

#nav-breadcrumbs.dark_background,
#nav-breadcrumbs.dark_background a {
	color: #fff;
}


#nav-breadcrumbs a {
	text-decoration: none;
}

#nav-breadcrumbs a:hover {
	text-decoration: underline;
}


/**
 * SUB-NAVIGATION
 */

nav.subnavigation {
	background:       #f0f0f0;
	background-color: #ecf5fb;
	height:           3.25rem;
	z-index:          900;
}

@media only screen and (max-width: 768px) {

	nav.subnavigation {
		display: none;
	}

}

nav.subnavigation .navbar-brand img {
	height:   1.5rem;
	position: relative;
	top:      -5px;
}

nav.subnavigation li {
	margin-left:  2rem;
	margin-right: 0;
}

nav.subnavigation li {
	font-size: 1.15rem;
	font-weight: 400;
}


/**
 * GLOBAL NAVIGATION STUFF
 */

a.btn-scroll-to-top {
	position:         fixed;
	bottom:           20px;
	right:            20px;
	width:            50px;
	height:           50px;
	z-index:          1000;
	background-color: rgba(0, 0, 0, 0.35);
	border-radius:    5px;
	color:            white;
	text-align:       center;
	padding-top:      10px;
}

@media only screen and (min-width: 768px) {

	a.btn-scroll-to-top {
		display: none;
	}

}


/**
 * FOOTER
 */

#footer {
 	position:         relative;
	bottom:           0;
	left:             0;
	width:            100%;
	background-color: #bfbfbf;
	font-size:        small;
}

#footer .footer-contact a,
#footer .footer-links a {
	text-decoration: none;
	color:           var(--main-text-color);
	line-height:     1.75rem;
}

#footer .footer-links a:hover {
    text-decoration: underline;
}

#footer .footer-contact,
#footer .footer-links,
#footer .footer-remarks,
#footer .footer-awards {
	padding-top: 1rem;
}

#footer span.flag-icon {
	font-size: x-small;
}

#footer .footer-contact .footer-contact-phone,
#footer .footer-contact .footer-contact-email {
	 font-size: large;
	 font-weight: 500;
}

#footer .footer-header {
	text-transform: uppercase;
	font-weight: bold;
	color: #3278d5;
	letter-spacing: 0.1rem;
}

#footer .footer-image-socialmedia {
	height: 1rem;
	width: auto;
}


/**
 * HIDDEN POPUPS
 */

.hidden-popup-link {
	font-size: small;
	color: #a0a0a0;
	cursor: default;
}

.hidden-popup-data {
	z-index:            200;
	display:            none;
	position:           absolute;
	font-size:          medium;
	width:              40rem;
	background-color:   #ffffff;
	padding:            0.75rem 0.75rem 0 0.75rem;
	border:             1px solid #a0a0a0;
	-moz-box-shadow:    5px 5px 5px #a0a0a0;
	-webkit-box-shadow: 5px 5px 5px #a0a0a0;
	box-shadow:         5px 5px 5px #a0a0a0;
	float:              left;
}


/**
 * TABLES
 */

.table td,
.table th {
	border-bottom: 1px solid #eceeef;
}

.table.table-borderless td,
.table.table-borderless th {
	border: none;
}

.table-nonfluid {
   width: auto !important;
}

table > tbody > tr > td.table-info,
table > tbody > tr.table-info td,
table > tbody > tr > th.table-info,
table > tbody > tr.table-info th {
	background: #eaf1fb;
}

table > tbody > tr.sep td,
table > tbody > tr.sep th {
	border: none;
}

.table.table-align-middle thead tr th,
.table.table-align-middle tbody tr th,
.table.table-align-middle tbody tr td,
.table.table-align-middle tfoot tr td {
	vertical-align: middle;
}


/**
 * TABLE LIKES
 */

.table-like {
	padding-top:    1rem !important;
	padding-bottom: 1rem !important;
}

.table-like > .row {
	padding-top:    0.5rem;
	padding-bottom: 0.5rem;
}

.table-like > .row.highlight {
	background-color: #eaf1fb;
}

.table-like > .row:hover {
	background: #e8ecec;
}

.table-like > .row.highlight:hover {
	background: #cee3ff;
}

.table-like .table-like-key {
	font-weight: 500;
}


/**
 * ROWS AND COLUMNS
 */

.row-p-5 [class*=col] {
	padding: 1rem;
}


/**
 * FORMS
 */

form {
	margin-bottom: 1rem;
}

form legend.required,
form label.required {
	font-weight: 500;
}

form.form-bg {
	background-color: #c4e6ff;
	padding:          1rem 1rem 1rem 1rem;
}

form button,
form input {
	font-family: var(--main-font-sans-serif);
}


/**
 * INTL TEL INPUT
 */

.iti__flag {
	background-image: url("/images/vendor/intl-tel-input/flags.png");
}

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .iti__flag {background-image: url("/images/vendor/intl-tel-input/flags@2x.png");}
}

.form-label-group .iti input:focus::placeholder,
.form-label-group .intl-tel-input input:focus::placeholder {
	opacity: 0.5;
}


/**
 * Badges
 */

.badge-draft {
	color:            #ffffff;
    background-color: #818a91;
}

.badge-basket-count {
	top:              -0.15rem;
	position:         relative;
	padding:          0.25rem 0.3rem;
	margin-left:      0.15rem;
	border-radius:    0.25rem;
	font-size:        0.55rem;
	color:            var(--main-text-color);
	background-color: #ffda86;
}

.badge-new {
	padding:          0.25rem 0.4rem;
	border-radius:    0.25rem;
	color:            #ffffff;
	background-color: #ffda86;
}

.badge-legal_remark {
	padding:          0.25rem 0.5rem;
	border-radius:    0.2rem;
	font-size:        0.75rem;
	background-color: #d7dce1;
}

a > .badge-legal_remark {
	color: var(--main-text-color);
}

.badge-bestseller {
	padding: 0.5em;
	background: orange;
	color: white;
	font-family: helvetica;
	border-radius: 0;
	position: relative;
}

.badge-bestseller:before,
.badge-bestseller:after {
	content: "";
	position: absolute;
	right: -1.0em;
	top: 0;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 2em 1em 0 0;
	border-color: orange transparent transparent transparent;
}

.badge-hero {
	font-size: 0.85rem;
	font-weight: 500;
	padding: 0.45rem 0.9rem;
	background-color: rgba(43, 112, 224, 0.35);
	color: #2b70e0;
	border-radius: 999px;
	letter-spacing: 0.01em;
}


/**
 * Animations
 */

.bounce {
	animation: bounce 2s 4;
}

@keyframes bounce {
	0%, 20%, 50%, 80%, 100% {
		-webkit-transform: translateY(0);
		-moz-transform: translateY(0);
		-ms-transform: translateY(0);
		-o-transform: translateY(0);
		transform: translateY(0);
	}
	40% {
		-webkit-transform: translateY(-14px);
		-moz-transform: translateY(-14px);
		-ms-transform: translateY(-14px);
		-o-transform: translateY(-14px);
		transform: translateY(-14px);
	}
	60% {
		-webkit-transform: translateY(-7px);
		-moz-transform: translateY(-7px);
		-ms-transform: translateY(-7px);
		-o-transform: translateY(-7px);
		transform: translateY(-7px);
	}
}

@keyframes pulse {
	0%   { transform: scale(1); box-shadow: 0 4px 12px rgba(0,0,0,0.06); }
	50%  { transform: scale(1.03); box-shadow: 0 8px 22px rgba(0,0,0,0.12); }
	100% { transform: scale(1); box-shadow: 0 4px 12px rgba(0,0,0,0.06); }
}


/**
 * CONTENT
 */

.bg-image-full,
.bg-image-full-mt-0 {
    background: no-repeat center top scroll;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    background-size: cover;
    -o-background-size: cover;
    margin-top: -48px;
	padding-top: 3rem !important;
	padding-bottom: 3rem !important;
}

.bg-image-full-mt-0 {
	margin-top: 0;
}

#content {
	min-height: 100%;
	height: auto !important;
	height: 100%;
	margin-top: -48px;
	padding-top: 48px;
	padding-bottom: 2rem;
}

.container section {
	padding: 0.5rem 0;
}

.container section p,
.container-full section p {
	 line-height: 1.65;
}

.container-full section {
	padding: 2rem 0;
}

section form.order {
	margin: 0;
}

section.bg-alternating:nth-child(2n+2) {
	background: #f0f0f0;
}

section.product-dog {
	background: #ff8800;
	color: #ffffff;
	border-top: 10px solid #5bc0de;
}

section.new {
	background: #eaf1fb;
}

section.new h2 {
	color: #fda226;
}

section.green h2 {
	color: #ffffff;
}

section.specialoffer {
	background: #eaf1fb;
	color:      #3278d5;
}

section.webhosting-whois {
	background: #fff1c6;
}

.scroll-margin {
	scroll-margin-top: 2.5rem;
}

.scroll-margin-large {
	scroll-margin-top: 3.5rem;
}

.flag-new,
.flag-beta {
	padding:       0.20rem 0.30rem;
	font-size:     60%;
	border-radius: 3px;
	position:      relative;
	top: -0.5em;
}

.flag-new {
	color:         #ffffff;
	background:    #28a745;
}

.flag-beta {
	color:         #ffffff;
	background:    #f0ad4e;
}

section.product-feature h3 {
	margin: 1.25rem 0;
}

.product-feature-logo-fa {
	font-size:   8rem;
	color:       #ffffff;
    text-shadow: 0 0 5px #000000;
}

#content a {
	/* IMPORTANT: Setting "color: #3f84dd;" affects buttons! */
	text-decoration: none;
}

#content a:hover {
	/* IMPORTANT: Setting "text-decoration: underline;" affects buttons! */
}

a.mailto:before,
a.http:before,
a.rss:before,
a.sip:before {
	border:        0px;
	padding-left:  4px;
	padding-right: 4px;
}

a.mailto:before {
	font-family:  "Material Design Icons";
	content:      "\F01F0" " ";
}

a.http:before {
	font-family:  "Material Design Icons";
	content:      "\F03CC" " ";
}

a.rss:before {
    font-family:  "Material Design Icons";
	content:      "\F046B" " ";
}

a.sip:before {
    font-family:  "Material Design Icons";
	content:      "\F06C4" " ";
}

a.tel {
	color: var(--main-text-color);
}

.hidden {
	display: none;
}

.warning:before {
    font-family: "Material Design Icons";
	content:     "\F0026";
}

.instruction-success,
.instruction-info,
.instruction-warning,
.instruction-danger {
	margin-left:   -1rem;
	margin-top:     1rem;
	margin-bottom:  1rem;
	padding-left:   1rem;
	padding-top:    0.25rem;
	padding-bottom: 0.25rem;
}

.instruction-success {
	border-left:  2px solid #28a745;
}

.instruction-info {
	border-left:  2px solid #4aafec;
}

.instruction-warning {
	border-left:  2px solid #ffc107;
}

.instruction-danger {
	border-left:  2px solid #dc3545;
}

#content ul {
	list-style-type: square;
}

#content ul.navbar-nav,
ul.nav-tabs li {
	list-style-type: none;
}

#content ul li {
	padding:     0.25rem 0 0.25rem 0;
}

#content ul.noindention {
	 padding-left:        0;
	 list-style-position: inside;
	 margin-bottom:       0;
}

#content ul.none {
	list-style-type: none;
}

#content ul.none li {
	margin-left: -1rem;
}

#content ul.filelist {
	list-style-type: none;
}

#content ul.filelist li:before {
	content:       "";
	padding-right: 0.5rem;
}

#content ul.filelist .description {
	font-size: small;
	margin-left: 2rem;
}

#content ul.filelist li {
	list-style-type: none;
	margin:          0.5rem 0;
}

#content ul.filelist li.pdf:before {
	background:        url('/images/misc/fileformats/pdf.png') no-repeat;
	background-repeat: no-repeat;
    background-size:   20px 20px;
    padding:           0 0 0 2rem;
}

#content ul.filelist li.html:before {
	font-family:  "Material Design Icons";
	font-size:    1rem;
 	position:     relative;
	top:         -0.25rem;
	margin-right: 0.25rem;
	margin-left: -1.75rem;
}

#content ul.filelist li.html:before {
	content:      "\F0224" " ";
}

#content hr.slim {
	height:        1px;
	border:        none;
	border-bottom: 1px solid #e0e0e0;
}

#content hr.slim-dark {
	height:        1px;
	border:        none;
	border-bottom: 1px solid #a0a0a0;
}

#content .lastsearches,
#content .lastsearches a,
#content .lastsearches ul li {
	font-size: small;
	color:     #a0a0a0;
}

#content .lastsearches ul {
	padding:         0;
	margin:          0;
	float:           left;
	list-style-type: none;
}

#content .lastsearches ul li {
	padding:       0.5rem;
	margin:        0 1rem 0.5rem 0;
	background:    #f0f0f0;
	border-radius: 0.25rem;
	float:         left;
}

#content .lastsearches ul li.lastsearches-intro {
	padding:    0.5rem 0.5rem 0.5rem 0;
	background: none;
}

#content .lastsearches ul li:before {
	display: none;
}

#content code.hljs {
	padding: 1rem;
}


/**
 * PAGES
 */

/* shared: backgrounds */

#content.content-page-webhosting-whois,
#content.content-page-webhosting-domainfinder_ai,
#content.content-page-shop-checkout,
#content.content-page-shop-index {
	background-color: #f6f6f6;
}


/* shared: prices, contract things */

#content .price-setup,
#content .price-net {
	color:     #a0a0a0;
	font-size: small;
}

/* shared: prices for special offers */

#content .product-overview .product-price .product-price-specialoffer .product-price-price {
	color:       #4cae4c;
	font-size:   4rem;
	text-shadow: 0px 2px 4px #fff;
}

#content .product-overview .product-price .product-price-specialoffer .product-price-specialoffer-original,
#content .product-comparison .product-price .product-price-specialoffer .product-price-specialoffer-original {
	color:       #b0b0b0;
	font-weight: normal;
}

#content .product-overview .product-price .product-price-specialoffer .product-price-specialoffer-original .product-price-specialoffer-original-intro,
#content .product-comparison .product-price .product-price-specialoffer .product-price-specialoffer-original .product-price-specialoffer-original-intro {
	font-size:      0.9rem;
	color:          #4cae4c;
	border-top:     1px solid #c0c0c0;
	border-bottom:  1px solid #c0c0c0;
	font-weight:    500;
	letter-spacing: 0.05rem;
	padding:        0.3rem 2.0rem;
	margin:         0.5rem 0;
}


/* shared: products */

#content .product-label {
	text-align: center;
}

#content .product-label h2 {
	font-size: 1.25rem;
}

@media (max-width: 991px) {
	#content .product-label h2 {
		font-size: 1rem;
	}
}

#content .product-label a,
#content .product-label a:hover {
	color:           var(--main-text-color);
    text-decoration: none;
}

#content .product-label .product-name-short {
	display:            inline-block;
	font-size:          1.5rem;
	font-weight:        700;
	padding:            0.5rem;
	margin:             0.25rem;
	-moz-box-shadow:    1px 1px 2px var(--main-text-color);
	-webkit-box-shadow: 1px 1px 2px var(--main-text-color);
	box-shadow:         1px 1px 2px var(--main-text-color);
	text-shadow:        1px 1px 0px #ffffff;
	border-radius:      0.25rem;
	min-width:          4rem;
	background-image:   -moz-linear-gradient(to top, #ffda86, #f2b62b);
	background-image:   -webkit-linear-gradient(to top, #ffda86, #f2b62b);
	background-image:   -o-linear-gradient(to top, #ffda86, #f2b62b);
    background-image:   linear-gradient(to top, #ffda86, #f2b62b);
	background-color:   #f2b62b;
}


/* shared: product-overview */

#content .product-overview {
	margin: 2rem 0 2rem 0;
}

#content .product-overview table  {
	border-collapse: collapse;
	width: 100%;
}

#content .product-overview.product-overview-single table {
	width:  50%;
	margin: 0 auto;
}

#content .product-overview .product-price {
	margin-bottom: 1rem;
}

#content .product-overview .product-price .product-price-price {
	font-weight: 600;
	color:       #3278d5;
	font-size:   2.5rem;
}

#content .product-overview .product-price .product-price-price .price-price-decsep,
#content .product-overview .product-price .product-price-price .price-price-decimal {
	font-size: 0.6em;
	position:  relative;
	top:       -0.5em;
	left:      -0.0em;
}

#content .product-overview .product-price .product-price-period,
#content .product-overview .product-price .product-price-setup,
#content .product-overview .product-price .product-price-periodlength {
	font-size: 0.75rem;
	color: var(--main-text-color);
	font-weight: normal;
}

.product-price .product-price-period sup,
.product-price .product-price-setup sup,
.product-price .product-price-periodlength sup {
	font-size: 0.75rem;
}

#content .product-overview table td.highlight button,
#content .product-overview table td.highlight button,
#content .product-overview table td.highlight button,
#content .product-overview table td.highlight button {
	background-color: #5cb85c;
	border-color:     #4cae4c;
}

#content .product-overview .product-overview-large table tr th,
#content .product-overview .product-overview-large table tr td {
	border:         none;
	border-left:    1px solid #d3d8da;
	border-right:   1px solid #d3d8da;
	text-align:     center;
	vertical-align: middle;
}

#content .product-overview .product-overview-large table tr:nth-child(1) th,
#content .product-overview .product-overview-large table tr:nth-child(1) td {
	vertical-align: top;
}

@media (max-width: 767px) {
	#content .product-overview .product-overview-large table tr th,
	#content .product-overview .product-overview-large table tr td {
		font-size: small;
	}
}

@media (min-width: 768px) {
	#content .product-overview .product-overview-large table tr th,
	#content .product-overview .product-overview-large table tr td {
		padding:        0.5rem;
	}
}

@media (min-width: 992px) {
	#content .product-overview .product-overview-large table tr th,
	#content .product-overview .product-overview-large table tr td {
		padding:        1.25rem;
	}
}

#content .product-overview .product-overview-large table tr:nth-child(1) th,
#content .product-overview .product-overview-large table tr:nth-child(1) td {
	border-top: none;
}

#content .product-overview .product-overview-large table tr th:nth-child(1),
#content .product-overview .product-overview-large table tr td:nth-child(1) {
	border-left: none;
}

#content .product-overview .product-overview-large table th,
#content .product-overview .product-overview-large table td {
	background-color: #ffffff;
}

#content .product-overview .product-overview-large table tr:nth-child(even) th,
#content .product-overview .product-overview-large table tr:nth-child(even) td {
	background-color: #f0f0f0;
}


#content .product-overview .product-overview-large table tr td.highlight {
	background-color: #eaf1fb;
}

#content .product-overview .product-overview-large table tr:nth-child(even) td.highlight {
	background-color: #cee3ff;
}

#content .product-overview .product-overview-large table tr:nth-child(n+2) th.highlight,
#content .product-overview .product-overview-large table tr:nth-child(n+2) td.highlight {
	font-size:   1.25rem;
	font-weight: bold;
}

#content .product-overview .product-overview-large table td.highlight .price .price-price {
	color: #4cae4c;
}

#content .product-overview .product-overview-large table td.highlight button:hover,
#content .product-overview .product-overview-large table td.highlight button:hover {
	background-color: #449d44;
}

#content .product-overview .product-overview-large table tr.highlight th:nth-child(1),
#content .product-overview .product-overview-large table tr.highlight td:nth-child(1) {
	border:       2px solid #00a000;
	border-right: none;
}

#content .product-overview .product-overview-large table tr.highlight th:nth-child(n+2),
#content .product-overview .product-overview-large table tr.highlight td:nth-child(n+2) {
	border-top:    2px solid #00a000;
	border-bottom: 2px solid #00a000;
	color:         #00a000;
}

#content .product-overview .product-overview-large table tr.highlight td:nth-last-child(1) {
	border-right: 2px solid #00a000;
}

#content .product-overview .product-overview-small table tr:nth-child(1) td {
	text-align: center;
}

#content .product-overview .product-overview-small .product-label {
	text-align: center;
}
#content .product-overview .product-overview-small .product-overview-item {
	background: #f0f0f0;
	margin: 0 auto;
	margin-bottom: 1rem;
	padding: 1rem;
}

#content .product-overview .product-overview-small .product-overview-item table tr th,
#content .product-overview .product-overview-small .product-overview-item table tr td {
	padding: 1rem;
}

#content .product-overview .product-overview-feature-symbol-key {
	font-size: 2rem;
}

#content .product-overview .product-overview-feature-image-key {
	max-width: 6rem;
	height: auto;
}

#content .product-overview .product-overview-feature-image-label {
	max-width: 10rem;
	height: auto;
}

#content .product-overview-software-logo {
	width: 200px;
	height: auto;
}



/* shared: product comparison */

#content .product-comparison .section-toggleall {
	margin:     20px 0 10px 0;
	text-align: center;
}

#content .product-comparison .section-header {
	height:           2.5rem;
	margin-top:       1rem;
	background-color: #cccccc;
	vertical-align:   top;
}

#content .product-comparison .section-header-label {
	font-size:      medium;
	font-weight:    bold;
	text-align:     left;
	float:          left;
	margin:         0.6rem;
}

#content .product-comparison .section-toggleall:hover,
#content .product-comparison .section-header:hover {
	cursor: pointer;
}

#content .product-comparison table {
	width:        100%;
	min-width:    100%;
	table-layout: fixed;
}

#content .product-comparison table tr th,
#content .product-comparison table tr td {
	border-left:      1px solid #d3d8da;
	border-right:     1px solid #d3d8da;
	vertical-align:   middle;
	background-color: #ffffff;
}

#content .product-comparison table tr:first-child th,
#content .product-comparison table tr:first-child td {
	border-top: none;
}

#content .product-comparison table.product-comparison-data-basic tr:first-child th,
#content .product-comparison table.product-comparison-data-basic tr:first-child td {
	vertical-align: bottom;
}

#content .product-comparison table tr:last-child th,
#content .product-comparison table tr:last-child td {
	border-bottom: none;
}

#content .product-comparison table tr:nth-child(even) th,
#content .product-comparison table tr:nth-child(even) td {
	background-color: #f0f0f0;
}

#content .product-comparison table tr th:nth-child(1),
#content .product-comparison table tr td:nth-child(1) {
	font-weight: bold;
	border-left: none;
}

#content .product-comparison table tr th:nth-child(n+2),
#content .product-comparison table tr td:nth-child(n+2) {
	text-align:     center;
}

#content .product-comparison table tr th:last-child,
#content .product-comparison table tr td:last-child {
	border-right: none;
}

#content .product-comparison table tr th:nth-child(1),
#content .product-comparison table tr td:nth-child(1) {
    width: 20%;
}

#content .product-comparison table tr th,
#content .product-comparison table tr td {
    width: 16%;
}

#content.content-page-webhosting-comparison .product-comparison table tr th,
#content.content-page-webhosting-comparison .product-comparison table tr td {
	width: 20%;
}

#content .product-comparison table tr th.span-all-data,
#content .product-comparison table tr td.span-all-data {
    width: 80%;
}


/* shared: nav-quicklinks */

#content .nav-quicklinks ul {
	list-style-type: none;
	margin:          0;
	padding:         1rem 0 0 0;
}


/* shared: large urls */

.uri-large {
	text-align: center;
}

.uri-large a {
	background: #f0f0f0;
	display:    inline-block;
	font-size:  xx-large;
	padding:    1rem;
}

.uri-large .protocol {
	color: #c0c0c0;
}


/* shared: main product category features */

.main-features {
	font-size: 1rem;
}

.main-features small {
	font-size: 0.7rem;
}

#content .main-features ul {
	list-style: none;
	padding-left: 1.5rem;
}

#content .main-features ul li:before {
  content:     "\F012C";
  font-family: "Material Design Icons";
  display:     inline-block;
  margin-left: -1.5em;
  width:       1.3em;
  color:       #77DB98;
}


/* shared: reviews */

#content .customer_review {
	xposition: relative;
}

#content .customer_review_card {
	background-color: rgba(0, 182, 251, 0.65);
	border-radius: 15px;
}

#content .customer_review_card_title {
	font-size: 2rem;
	font-size: 2vh;
}

#content .customer_review_card_user {
	font-size: 1.25rem;
	color: #ffffff;
}


/* shared: carousel */

.carousel-control-dark .carousel-control-prev-icon,
.carousel-control-dark .carousel-control-next-icon {
	filter: invert(100%);
}

.carousel-indicator-dark .carousel-indicators li {
	background-color: var(--main-text-color);
}


/** shared: accordions */

.accordion .accordion-btn-chevron .mdi-chevron-up {
  display: none;
}

.accordion .accordion-btn-chevron:not(.collapsed) .mdi-chevron-up {
  display: inline-block;
}

.accordion 	.accordion-btn-chevron:not(.collapsed) .mdi-chevron-down {
  display: none;
}


/* shared: AI cards */

.ai-card {
	background: #fff;
	border-radius: 12px;
	border: 1px solid rgba(0,0,0,0.08);
	border: 1px solid #dcdcdc;
	box-shadow: 0 12px 40px rgba(0,0,0,0.08);
	padding: 1.25rem;
}

.ai-card button {
	border: none;
	border-radius: 999px;
	padding: 0.5rem 1.6rem;
	font-weight: 600;
}

.ai-card textarea {
	border-radius: 12px;
	resize: none;
	border: 1px solid #e5e7eb;
}

.ai-card textarea:hover,
.ai-card textarea:focus,
.ai-card textarea:active {
	box-shadow: none !important;
	outline: none !important;
}

.ai-card textarea::placeholder {
	color: rgba(0,0,0,0.45);
	font-weight: 400;
	font-size: 0.95rem;
}

.ai-card .dropdown-menu {
	padding: 12px;
}

.ai-card .ai-dropdown .ai-dropdown-btn {
	border-radius: 999px;
	border: 1px solid rgba(0,0,0,0.08);
	background: #fff;
	font-weight: 500;
	font-size: 0.85em;
	padding: 0.4rem 0.9rem;
}

.ai-card .ai-dropdown .ai-dropdown-btn:focus,
.ai-card .ai-dropdown .ai-dropdown-btn:active {
	box-shadow: none !important;
}

.ai-card .ai-dropdown-item {
	border-radius: 8px;
	padding: 8px 12px;
}

.ai-card .ai-dropdown-item:not(:first-child) {
	margin-top: 6px;
}

.ai-card .ai-dropdown-item:hover {
	background: #f3f4f6;
}

.ai-card .ai-dropdown-item-title {
	font-weight: 500;
	line-height: 1.2;
}

.ai-card .ai-dropdown-item-sub {
	display: block;
	font-size: 0.75rem;
	color: rgba(0,0,0,0.5);
	line-height: 1.2;
	padding-top: 0.6em;
}


/* home */

#content .home-headline {
	margin-bottom: 2rem;
}

#content .home-headline h2 {
	font-size:   2.75rem;
	font-weight: 400;
}

#content .home-headline .home-headline-sub {
	font-size: 1.25rem;
}


/* contact-* */

#content .statusmessage {
	color:            #ffffff;
	background-color: var(--main-text-color);
	padding:          10px;
	margin-top:       10px;
	border-left:      5px solid #f5c6cb;
}

#content .statusmessage-maintainance,
#content .statusmessage-notice {
	color:            var(--main-text-color);
	background-color: #ffffff;
	padding:          10px;
	margin-top:       10px;
	border:           1px solid #e0e0e0;
	border-left:      5px solid #bee5eb;
}


/* company-about */

.letter {
	border:             1px solid #e0e0e0;
	padding:            10px 20px 10px 20px;
	margin:             20px 20px 40px 20px;
	-moz-box-shadow:    5px 5px 5px #b0b0b0;
	-webkit-box-shadow: 5px 5px 5px #b0b0b0;
	box-shadow:         5px 5px 5px #b0b0b0;
}


/* company-partner */

img.company-partner {
	width: 100%;
	max-width: 150px;
	margin: 1rem 0;
}


img.company-reference {
	width: 100%;
	max-width: 250px;
	margin: 1rem 0;
}

.body-page-company-partner-success_stories .card-img-top {
	object-fit: cover;
	height: 220px;
}

.company-success_story-cite-box {
	background-color: #1f2933;
}

.company-success_story-cite-box-avatar {
	width:        56px;
	height:       56px;
	object-fit:   cover;
	margin-right: 1rem;
}


/* company-anniversary and others */

#content ul.company-anniversary-thankyoulist li {
	padding-bottom: 1rem;
}

#content ul.company-anniversary-thankyoulist .company-anniversary-thankyoulist-name {
	font-weight:    800;
	font-size:      large;
	letter-spacing: 0.05rem;
	padding-left:   0.25rem;
	padding-right:  0.25rem;
}


/* eu_dsgvo-data_processing_contract */

.dataprocessingcontract-comparison-table th:nth-child(3),
.dataprocessingcontract-comparison-table td:nth-child(3) {
	 opacity: 0.5;
}

.dataprocessingcontract-signing-form {
	border: 1px solid #e0e0e0;
	padding: 1rem;
}


/* service-faq */

#content ul.faq-categories li,
#content ul.faq-entries li,
#content #lastentries ul.lastsearches li {
	list-style-type: none;
}

#content ul.faq-categories li:before,
#content ul.faq-entries li:before,
#content #lastentries ul.lastsearches li:before {
	font-size:    1rem;
 	position:     relative;
	top:          0rem;
	margin-right: 0.5rem;
	margin-left: -1.5rem;
}

#content #lastentries ul.lastsearches li:before {
	font-size:    0.75rem;
}

#content ul.faq-categories li:before {
	font-family:  "Material Design Icons";
	content:      "\F0256" " ";
}

#content ul.faq-entries li:before,
#content #lastentries ul.lastsearches li:before {
	font-family:  "Material Design Icons";
	content:      "\F0186" " ";
}

#content #faq-breadcrumbs,
#content #faq-breadcrumbs a {
	font-size: small;
	color:     var(--main-text-color);
}

#content #faq-breadcrumbs a {
	text-decoration: none;
}

#content #faq-breadcrumbs a:hover {
	text-decoration: underline;
}

#content #faq-entry-content {
	margin-top:    1rem;
	margin-bottom: 2rem;
}

#content #faq-entry-tags {
	font-size:     small;
	margin-top:    1rem;
	margin-bottom: 1rem;
	clear:         both;
}

#content .faq-entry-tags-tag {
	float:            left;
	background-color: #f0f0f0;
	padding:          0.25rem;
	margin-right:     0.5rem;
	margin-bottom:    0.25rem;
	border-radius:    0.25rem;
}

#content #faq-last {
	margin: 1rem 0 1rem 0;
}

#lastentries .lastentries-intro {
	font-size: small;
	color:     #a0a0a0;
}


/* customerlogin-index */

#content ul.customerlogin li:nth-child(n+2) {
	padding-top:     3rem;
}

#content ul.customerlogin li a.sample:hover {
	text-decoration: none;
}

#content ul.customerlogin li a .name {
	font-size:   large;
	font-weight: bold;
}

#content ul.customerlogin li a .description {
	font-size:  small;
}


/* shop-* */

#content #basket {
	margin-top: 1rem;
}

#content #basket .basket-item .grey,
#content #basket .basket-total .grey {
	color: #a0a0a0;
}

#content #basket .basket-item .basket-item-availability .badge {
	font-size:     0.75rem;
	margin-right:  1rem;
}

#content #basket .basket-item-title {
	color:       #3278d5;
	font-size:   1.5rem;
	font-weight: 500;
}

#content #basket .basket-item-description-short,
#content #basket .basket-item-contract-terms {
	font-size:   0.75rem;
}

#content #basket .basket-item-description-short-title,
#content #basket .basket-item-contract-terms-title {
	font-size:      0.9rem;
	font-weight:    600;
	padding-bottom: 0.5rem;
}

#content #basket .basket-item-contract-terms table td {
	padding-bottom: 0.25rem;
}

#content #basket .basket-item-contract-terms table td {
	vertical-align: top;
}

#content #basket .basket-item-config-description {
	font-size:   0.75rem;
}

#content #basket .basket-total {
	padding: 1.25rem;
	margin:  1.5rem 0;
}

#content #basket .basket-total-item {
	padding-bottom: 0.75rem;
}

#content .shop-product-orderlink {
	position: relative;
}

#content .shop-product-contract-option-index {
	font-size: 1.5rem;
	font-weight: normal;
}

#content .shop-product-contract-option-startat {
	font-size: x-small;
	color:     #a0a0a0;
}

#content table.product-config-description td,
#content table.product-legal-description td {
	border:     none;
}

#content table#basket {
	width: 100%;
}

#content table#basket {
	border-collapse: separate;
	border-spacing: 0 10px;
}

#content table#basket > tbody > tr > th {
	color:            #ffffff;
	background-color: var(--main-text-color);
}

#content table#basket > tbody > tr > td {
	background-color: #ebf4ff;
}

#content table#basket > tbody > tr > td {
	border-top:    1px solid #ffffff;
	border-bottom: 1px solid #ffffff;
}

#content table#basket > tbody > tr.table-danger > td {
	background-color: #f7ccd0;
}

#content table#basket > tbody > tr#total > td {
	border-top: 2px solid #ffffff;
}

#content table#basket > tbody > tr > th:nth-child(2),
#content table#basket > tbody > tr > th:nth-child(3),
#content table#basket > tbody > tr > td:nth-child(2),
#content table#basket > tbody > tr > td:nth-child(3) {
	text-align: right;
	width:      10rem;
}

#content #shop-edit > .row  {
	border-bottom: 1px solid #e0e0e0;
}

#content #shop-edit > .row:last-of-type  {
	border-bottom: none;
}

#content #shop-edit > .row > div[class*=col] {
	padding: 1rem;
}

#content #shop-edit > .row.product > div {
	background: #f0f0f0;
}

#content #shop-edit > .row.count  {
	border-bottom: 2px solid var(--main-text-color);
}

#content .shop-product-error {
	background: #dc3545;
	color: white;
}

#content .shop-product-error p.text-danger {
	color: white !important;
	padding: 0.5rem;
}

#content .shop-product-name-long {
	font-weight: bold;
	font-size:   x-large;
}

#content .shop-product-name-long-addon {
	font-size:   small;
	font-weight: bold;
}

#content .shop-product-description-short,
#content .shop-product-config-description,
#content .shop-product-config-description table tr td,
#content .shop-product-legal-description,
#content .shop-product-legal-description table tr td,
#content .shop-product-trailer {
	font-size: small;
}

#content .shop-product-config-description table tr td,
#content .shop-product-legal-description table tr td {
	padding: 0.25rem 0.25rem 0.25rem 0;
}

#content .shop-product-description-short-header,
#content .shop-product-config-description-header,
#content .shop-product-legal-description-header {
	font-size:   medium;
	font-weight: bold;
}

#content .shop-product-config-description-table th,
#content .shop-product-config-description-table td {
	border: none;
}

#content ol.shop-config-webhosting-domains {
	margin:  0;
}


/* shop-fanshop */

#content form.fanshop-order fieldset {
	padding-bottom: 1rem;
}

#content form.fanshop-order fieldset legend {
	font-weight: bold;
}

#content #fanshop-productlist {
	float:      right;
	text-align: center;
	width:      350px;
}

#content .fanshop-product-price {
	color:         #b12704;
	font-weight:   bold;
}


/* shop-checkout */

#content table.shop-checkout-progressbar {
	width:           100%;
	border-collapse: collapse;
	margin:          2rem 0 2rem 0;
}

#content table.shop-checkout-progressbar tr td {
	border:     0;
	margin:     0;
	padding:    0;
	width:      25%;
	border-top: 2px solid #d0d0d0;
	color:      #d0d0d0;
	padding:    0.5rem 0 0 0;
}

#content table.shop-checkout-progressbar tr td.active {
	border-top:  2px solid #3f84dd;
	color:       #3f84dd;
	font-weight: bold;
}

#content .shop-checkout-blacklisted-pdf {
	font-size: x-large;
	font-weight: bold;
}

#content .shop-checkout-inputproperties {
	background-color:   #ebf4ff;
	padding:            1rem;
	width:              100%;
	display:            inline-block;
	margin:             1rem 0 1rem 0;
}

#content .shop-checkout-inputproperties > .row {
	padding-top: 0.5rem;
	padding-bottom: 0.5rem;
}

#content .shop-checkout-inputproperties .shop-checkout-inputproperties-separator {
	border-top:    1px solid #c0c0c0;
	padding-top:   1rem;
	margin-bottom: 1rem;
}

#content .shop-checkout-orderconfirminfo {
	background-color: #cee3ff;
	padding:          1rem;
}

#content .shop-checkout-inputproperties .row .has-danger input {
	color:        #dc3545;
	border-color: #dc3545;
}

#content .shop-checkout-inputproperties .row .has-danger label {
	color: #dc3545;
}

/* webhosting-index */

.body-page-webhosting-index .product-highlight-separator {
	margin:     2rem 0 1rem 0;
	border-top: 1px solid #e0e0e0;
}

.body-page-webhosting-index .section_customer_review {
	position: relative;
}

.body-page-webhosting-index .section_customer_review::after {
	content:           "";
	background-image:  url(/images/pages/webhosting/misc/customer-review.webp);
	background-repeat: repeat-x;
	opacity:           0.20;
	top:               0;
	left:              0;
	bottom:            0;
	right:             0;
	position:          absolute;
	z-index:           -1;
}

.body-page-webhosting-index .ai-domain-finder-widget {
	position:      fixed;
	bottom:        20px;
	right:         20px;
	z-index:       1050;
	border:        1px solid #dee2e6;
	border-radius: 10px;
	padding:       15px 20px;
	display:       flex;
	align-items:   center;
	box-shadow:    0 2px 8px rgba(0,0,0,0.08);
	background:    linear-gradient(135deg, #ffffff 0%, #eaf2ff, 100%);
	border:        1px solid rgba(0, 123, 255, 0.25);
	animation:     pulse 0.6s ease 2;
}

.body-page-webhosting-index .ai-domain-finder-widget-label {
    font-size:   14px;
    white-space: nowrap;
}


/* webhosting-whois */

#content .webhosting-whois-form {
	margin:     1.5rem 0;
	padding:    0;
	background: #add3fa;
}

form.webhosting-whois-form select option {
	padding: 0.25rem 0.25rem;
}

#content .webhosting-whois-lastsearches {
	margin: 1rem 0 1rem 0;
}

#content .webhosting-whois-item {
	padding:        0;
	vertical-align: middle;
	line-height:    2.5rem;
}

#content .webhosting-whois-item-card {
	border-color:     #f8f9fa;
	border-left:      10px solid #f8f9fa;
	background-color: #ffffff;
	min-height:       7rem;
}

#content .webhosting-whois-item-card .card-body {
	display: grid;
    align-content: center;
}

#content .webhosting-whois-item-card-highlight {
	background-color: #E8F2FF;
}

#content .webhosting-whois-item-card-free {
	border-left: 10px solid #28a745;
	border-left-color:      #28a745;
}

#content .webhosting-whois-item-card-registered {
	border-left: 10px solid #ffc107;
	border-left-color:      #ffc107;
}

#content .webhosting-whois-item-card-is_premium {
	border-left: 10px solid #dc3545;
	border-left-color:      #dc3545;
}

#content .webhosting-whois-item-domain {
	letter-spacing: 0.05rem;
	font-size: large;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 0px;
}

#content .webhosting-whois-item-domain-name-tld {
	font-weight: 600;
	font-size: 110%;
}

#content .webhosting-whois-item-domain-dot {
	color: #a0a0a0;
}

#content .webhosting-whois-item-status-free .badge {
	color:           #28a745;
	background-color: #ffffff;
	border: 1px solid #28a745;
}

#content .webhosting-whois-item-status-registered .badge {
	color:            #ffc107;
	background-color: #ffffff;
	border: 1px solid #ffc107;
}

#content .webhosting-whois-item-costs,
#content .webhosting-whois-item-status,
#content .webhosting-whois-item-status-registered {
	line-height: 1.5rem;
}

#content .webhosting-whois-stickybar-bottom {
	position:         -webkit-sticky;
	position:         sticky;
	bottom:           0;
	background-color: #d0d0d0;
	padding:          1rem;
	z-index:          800;
	text-align:       right;
	border-top:       10px solid #f6f6f6;
}

#content .webhosting-whois-domainfinder_ai-hint {
	margin-top:      12px;
	font-size:       0.9rem;
	font-weight:     600;
	color:           #555;
	display:         flex;
	justify-content: center;
	align-items:     center;
}

#content .webhosting-whois-domainfinder_ai-hint.hidden {
    display: none;
}

#content .webhosting-whois-domainfinder_ai-hint a {
	margin-left: 4px;
}

#content .webhosting-whois-domainfinder_ai-hint-content {
	padding:       0.5rem 1rem;
	border-radius: 10rem;
}


/* webhosting-domainfinder_ai */

#content.content-page-webhosting-domainfinder_ai p.lead,
#content.content-page-webhosting-domainfinder_ai li {
	font-weight: 500;
}

#content.content-page-webhosting-domainfinder_ai .white-glow {
	text-shadow: 0 0 10px rgba(255, 255, 255, 0.8), 0 0 4px rgba(255, 255, 255, 0.8);
}

.webhosting-domainfinder-ai .card {
    border-radius: 10px;
    border: none;
    border: 1px solid rgba(0, 0, 0, 0.05);
	box-shadow: 0 20px 40px rgba(0,0,0,0.08) !important;
}

.webhosting-domainfinder-ai .card-body {
	padding: 2rem;
}

.webhosting-domainfinder-ai .icon {
	width: 44px;
	height: 44px;
	background-color: #2b70e0;
	color: #ffffff;
	border-radius: 10px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 22px;
	line-height: 1;
}

.webhosting-domainfinder-ai button[type="submit"] {
	background: linear-gradient( 135deg, #3f84dd 0%, #2f6fc6 100%);
	color: #ffffff;
}

.webhosting-domainfinder-ai button[type="submit"] {
    padding: 10px;
}

.webhosting-domainfinder-ai button[type="submit"]:hover {
	opacity: 0.95;
}

.webhosting-domainfinder-ai-compact .card-body {
	padding: 1.25rem;
}

.webhosting-domainfinder-ai-compact .webhosting-domainfinder-ai-compact-d_none {
	display: none;
}

.webhosting-domainfinder-ai-result .thinking {
	font-size: 1.25rem;
	color: #666;
	display: flex;
	align-items: center;
	gap: 8px;
}

.webhosting-domainfinder-ai-result .thinking .thinking-bullet {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: #999;
	animation: webhosting-domainfinder-ai-result-thinking-bullet-pulse 1.2s ease-in-out infinite;
}

@keyframes webhosting-domainfinder-ai-result-thinking-bullet-pulse {
	0% {
		transform: scale(1);
		opacity: .4;
	}
	50% {
		transform: scale(1.5);
		opacity: 1;
	}
	100% {
		transform: scale(1);
		opacity: .4;
	}
}

.webhosting-domainfinder-ai-result-slot {
	position: relative;
	min-height: 6rem;
	overflow: hidden;
}

.webhosting-domainfinder-ai-result-skeleton {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
}

.webhosting-domainfinder-ai-result-skeleton::after {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(
		90deg,
		rgba(225,225,225,0) 0%,
		rgba(245,245,245,0.9) 50%,
		rgba(225,225,225,0) 100%
	);
	transform: translateX(-100%);
	animation: webhosting-domainfinder-ai-result-skeleton-shimmer 1.4s infinite;
}

@keyframes webhosting-domainfinder-ai-result-skeleton-shimmer {
	100% {
		transform: translateX(100%);
	}
}

.webhosting-domainfinder-ai-result-domain .webhosting-whois-item-domain .badge-ai {
	font-weight: normal;
	font-size: 0.75rem;
	background-color: #efefef;
	border-color: #666;
	padding: 0.25rem;
}


/* webhosting-phpinfo */

#content .webhosting-phpinfo-replacement {
	border-radius: 5px;
	padding: 0.15rem;
}

#content .webhosting-phpinfo-replacement-removed {
	background-color: orange;
}

#content .webhosting-phpinfo-replacement-optimalrights {
	background-color: #5cb85c;
	color:            #ffffff;
}

#content .webhosting-phpinfo-replacement-packagedependency {
	background-color: #4aafec;
}

#content .webhosting-phpinfo {
	width:            100%;
	margin:           0 auto;
	background-color: #ebebeb;
	padding:          2rem;
}

#content .webhosting-phpinfo h1 {
	color: black;
}

#content .webhosting-phpinfo h1 {
	font-size: 150%;
}

#content .webhosting-phpinfo h2 {
	font-size: 125%;
}

#content .webhosting-phpinfo table {
	border-collapse: collapse;
	width:           100%;
	margin:          1em auto;
	box-shadow:      1px 2px 3px #ccc;
}

#content .webhosting-phpinfo table th,
#content .webhosting-phpinfo table td {
	border:         1px solid #000000;
	font-size:      0.9rem;
	vertical-align: baseline;
	padding:        4px 5px;
}

#content .webhosting-phpinfo .p {text-align: left;}
#content .webhosting-phpinfo .e {background-color: #ccccff; font-weight: bold; color: #000000; width: 300px;}
#content .webhosting-phpinfo .h {background-color: #9999cc; font-weight: bold; color: #000000;}
#content .webhosting-phpinfo .v {background-color: #cccccc; color: #000000;}
#content .webhosting-phpinfo .vr {background-color: #cccccc; text-align: right; color: #000000;}
#content .webhosting-phpinfo a:link {color: #000099; text-decoration: none; background-color: #ffffff;}
#content .webhosting-phpinfo a:hover {text-decoration: underline;}
#content .webhosting-phpinfo .center {text-align: center;}
#content .webhosting-phpinfo .center table { margin-left: auto; margin-right: auto; text-align: left;}
#content .webhosting-phpinfo .center th { text-align: center !important; }
#content .webhosting-phpinfo img {float: right; border: 0px;}
#content .webhosting-phpinfo hr {
	height:        1px;
	border:        none;
	border-bottom: 1px solid #e0e0e0;
}


/* rootserver-comparison */

#content .product-comparison .rootserver-dists {
	font-size: small;
	text-align: left;
}


/* rootserver-remnants */

#content .product-rootserver-remnant {
	background: #f0f0f0;
	padding:    2rem 2rem 1rem 2rem;
	margin-top: 1rem;
}

#content .product-rootserver-remnant table td {
	line-height: 3rem;
	font-size:   large;
}

#content .product-rootserver-remnant table td:nth-child(1) {
	width:      3rem;
	text-align: center;
}

#content .product-rootserver-remnant table td:nth-child(2) {
	width: 20em;
}

#content .product-rootserver-remnant .availability {
	color:         #4cae4c;
	font-weight:   bold;
}

#content .product-rootserver-remnant .price .price-price {
	font-weight: bold;
	color:       #3278d5;
	font-size:   2.5rem;
}


/**  Page: company-awards */

.body-page-company-awards img.award {
	max-width: 250px;
}


/** page: faq+blog */

#content .faq-entry img,
#content .blog-entry img {
	max-width: 100%;
}


/* special offers */

#content .product-overview.product-overview-cmp-webhosting .specialoffer-product-header {
	height:   6rem;
	color:    #3278d5;
	position: relative;
}

@media (max-width: 991px) {
	#content .product-overview.product-overview-cmp-webhosting .specialoffer-product-header {
		height:   2rem;
	}
}

#content .product-overview.product-overview-cmp-webhosting .specialoffer-product-header .specialoffer-product-header-bestseller {
	color: #ffda86;
	font-weight: bold;
	letter-spacing: 2px;
	background: #2e6da4;
	background: #4cae4c;
	#background: #ffda86;
	#color: #ffffff;
	position: relative;
	top: -20px;
	margin-left: -20px;
	margin-right: -20px;
	padding: 8px 20px;
	font-size: 1.15rem;
}

#content .product-overview.product-overview-cmp-webhosting .specialoffer-product-header .specialoffer-product-header-bestseller-3 {
	color: #ffda86;
	color: #F5C916;
	font-weight: bold;
	letter-spacing: 1.5px;
	background: #2e6da4;
	#background: #4cae4c;
	#background: #ffda86;
	#color: #ffffff;
	position: relative;
	top: -20px;
	margin-left: -20px;
	margin-right: -20px;
	padding: 8px 0;
	font-size: 1.0rem;
}

#content .product-overview.product-overview-cmp-webhosting .specialoffer-product-header .specialoffer-product-content .specialoffer-product-content-timeleft,
#content .product-overview.product-overview-cmp-webhosting .specialoffer-product-header .specialoffer-product-content .specialoffer-product-content-expirationdate {
	font-size:   small;
	font-weight: normal;
}

#content .product-overview.product-overview-cmp-webhosting .specialoffer-product-header .specialoffer-product-content .specialoffer-product-content-discount {
	font-size: xx-large;
	font-weight: bold;
}

#content .product-overview.product-overview-cmp-webhosting .specialoffer-product-header .specialoffer-product-content .specialoffer-product-content-discount-green {
	color: #4cae4c;
}

#content .product-overview.product-overview-cmp-webhosting .specialoffer-product-header .specialoffer-product-jetzt_zugreifen {
	background-image:    url(/images/misc/campaigns/jetzt_zugreifen.png);
	background-size:     6rem;
	background-repeat:   no-repeat;
	background-position: 50% 50%;
	width:               100%;
	height:              6em;
	position:            absolute;
	top:                -4.5em;
	left:               -7.5em;
}

#content .product-overview.product-overview-cmp-webhosting .product-overview-large table tr:nth-child(1) td.highlight {
	border-top:        2px solid #2e6da4;
}

#content .product-overview.product-overview-cmp-webhosting .product-overview-large table td.highlight {
	border-left:       2px solid #2e6da4;
	border-right:      2px solid #2e6da4;
}

#content .product-overview.product-overview-cmp-webhosting .product-overview-large table tr:last-child td.highlight {
	border-bottom:     2px solid #2e6da4;
}

#content .product-overview.product-overview-cmp-webhosting .product-overview-large .product-label-headline {
	/*height: 8rem;*/
	height: 3rem;
}

#content .product-overview.product-overview-cmp-webhosting .product-overview-large .product-price .product-price-specialoffer-original,
#content .product-overview.product-overview-cmp-webhosting .product-overview-large .product-price .product-price-specialoffer-no-original {
	/*height: 3.5rem;*/
	height:     1.5rem;
	margin-top: 1.5rem;
}

#content .product-overview.product-overview-cmp-webhosting .product-overview-large .product-price .product-price-price {
	line-height: 5.5rem;
	height:      5.5rem;
}

#content .product-comparison .specialoffer-product-header {
	display: none;
}


/**
 * Webhostlist widget overrides
 */

#WHLWidget { position:relative; width:180px; font:normal 11px Arial,Tahoma,"Bitstream Vera Sans",sans-serif;
             color:#2c2c2c; overflow:hidden; background-color:#FFFFFF;
             border: #C21828 solid 1px;
             margin:0; padding:0; text-align:left;     -moz-border-radius:10px;
    -webkit-border-radius: 10px;
    -khtml-border-radius: 10px;
    border-radius: 10px;}
#WHLWidget a { margin:0; padding:0; border:none; font-weight:normal; text-decoration:none; outline:none; color:#2c2c2c; }
#WHLWidget a:hover { border:none; font-weight:normal; text-decoration:underline; background-color:transparent; color:#2c2c2c; }
#WHLWidget a:visited { border:none; font-weight:normal; color:#2c2c2c; }

#WHLWidget img { border: none; }

#WHLWidget .whlWData { padding-bottom: 9px;}

#WHLWidget .whlWBrand { background-color: #C21828; color: #FFFFFF;
    font-size: 17px;
    letter-spacing: -1px; padding-left: 8px; height: 25px; padding-top: 3px;
    -webkit-border-top-left-radius: 9px;
    -webkit-border-top-right-radius: 9px;
    }
#WHLWidget .whlWBrand a, #WHLWidget .whlWBrand a:hover,#WHLWidget .whlWBrand  a:visited { color:#fff;}

#WHLWidget .whlWReviews { width:162px; padding-left: 8px; padding-right: 8px; padding-top: 8px;}
#WHLWidget .whlWReviews .whlWH12 { font-size:12px; color:#09532d;}
#WHLWidget .whlWReviews .whlWH18 { font:bold 14px Arial,Tahoma,"Bitstream Vera Sans",sans-serif; color:#2c2c2c;}


#WHLWidget .label {
    border-radius: 3px 3px 3px 3px;
    padding: 1px 4px 2px;
    background-color: #999999;
    color: #FFFFFF;
    font-size: 10.998px;
    font-weight: bold;
    line-height: 14px;
    text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
    vertical-align: baseline;
    white-space: nowrap;
}

#WHLWidget .label-success {
    background-color: #468847;
}

#WHLWidget .progress {
    background-color: #F7F7F7;
    background-image: -moz-linear-gradient(center top , #F5F5F5, #F9F9F9);
    background-repeat: repeat-x;
    border-radius: 4px 4px 4px 4px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1) inset;
    height: 18px;
    margin-bottom: 18px;
    overflow: hidden;
    width: 80%;
}

#WHLWidget .progress-success .bar {
    background-color: #5EB95E;
    background-image: -moz-linear-gradient(center top , #62C462, #57A957);
    background-repeat: repeat-x;
}

#WHLWidget .progress .bar {
    -moz-box-sizing: border-box;
    background-color: #5EB95E;
    background-image: -moz-linear-gradient(center top , #62C462, #57A957);
    background-repeat: repeat-x;
    box-shadow: 0 -1px 0 rgba(0, 0, 0, 0.15) inset;
    color: #FFFFFF;
    font-size: 12px;
    height: 18px;
    text-align: center;
    text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
    transition: width 0.6s ease 0s;
    width: 0;
}

#WHLWidget .whlWR {padding-top: 15px;}


/**
 * Fixes for bootstrap-select to work with bootstrap v4
 */

.dropdown-toggle.btn-default {
	color: #292b2c;
	background-color: #fff;
	border-color: #ccc;
}

.bootstrap-select.show>.dropdown-menu>.dropdown-menu {
	display: block;
}

.bootstrap-select > .dropdown-menu > .dropdown-menu li.hidden{
	display:none;
}

.bootstrap-select > .dropdown-menu > .dropdown-menu li a{
	display: block;
	width: 100%;
	padding: 3px 1.5rem;
	clear: both;
	font-weight: 400;
	color: #292b2c;
	text-align: inherit;
	white-space: nowrap;
	background: 0 0;
	border: 0;
}

.dropdown-menu > li.active > a {
	color: #fff !important;
	background-color: #337ab7 !important;
	color: red;
}

.bootstrap-select .check-mark::after {
  content: "";
}

.bootstrap-select button {
	overflow: hidden;
	text-overflow: ellipsis;
}

.bootstrap-select.btn-group .dropdown-toggle .filter-option {
	display: inline !important;
}

.bootstrap-select.btn-group .dropdown-menu.inner {
	display: block;
}

.has-danger .bootstrap-select button {
	border: 1px solid #d9534f;
}

.dropdown-menu.open li:hover{
	background: #eaeaea;
}


/**
 * Exit intent modal
 */

#modal-exitintent .modal-content {
	background-image: url("/images/pages/webhosting/bg_exitintent_modal.jpg");
    background-size: cover;
}


/**
 * mdi icons overrides
 */

.mdi.md-18 { font-size: 18px; }
.mdi.md-24 { font-size: 24px; }
.mdi.md-36 { font-size: 36px; }
.mdi.md-48 { font-size: 48px; }


/**
 * Testing: New product table stuff
 */

.product-overview-new {
	width: 100%;
	margin-top: 1rem;
}

.product-overview-new .product-overview-product {
	border: 1px solid #efefef;
	padding: 0.75rem 0.75rem;
	width: 16rem;
	margin-left: 20px;
}

.product-overview-new .product-overview-product .product-overview-product-badge {
	position: absolute;
	top: -33px;
	left: -1px;
	background: #4cae4c;
	text-align: center;
	padding: 0.25rem 0;
	color: #ffffff;
	text-transform:  uppercase;
	font-weight: bold;
	letter-spacing: 1px;
	width: 16rem;
}

.product-overview-new .product-overview-product .product-overview-product-badge-bestseller {
	background-color: #002F36 !important;
	color: white;
}

.product-overview-new .product-overview-product .product-overview-product-header {
	height: 25rem;
}

.product-overview-new .product-overview-product .product-overview-product-header h2 {
	font-weight: normal;
	font-size: 1.25rem;
}

.product-overview-new .product-overview-product .product-overview-product-header-product-name {
	font-weight: bold;
	font-size: 3rem;
}

.product-overview-new .product-overview-product .product-overview-product-header-summary {
	font-size: 1rem;
	color: var(--main-text-color);
	margin-top: 1rem;
}

.product-overview-new .product-overview-product .product-overview-product-header-price {
	height: 11rem;
	display: table-cell;
    vertical-align: bottom;
}

.product-overview-new .product-overview-product .product-overview-product-header-price .product-price {
	font-size: 2rem;
	font-weight: bold;
}

.product-overview-new .product-overview-product .product-overview-product-header-price .product-price-price {
	line-height: 1rem;
}

.product-overview-new .product-overview-product .product-overview-product-header-price .product-price-specialoffer-original {
	font-size: 1rem;
	color: #d0d0d0;
	font-weight: normal;
	margin-bottom: 1rem;
}

.product-overview-new .product-overview-product .product-overview-product-header-price .product-price-period,
.product-overview-new .product-overview-product .product-overview-product-header-price .product-price-setup,
.product-overview-new .product-overview-product .product-overview-product-header-price .product-price-periodlength {
	font-size: 0.75rem;
	color: var(--main-text-color);
	font-weight: normal;
}

.product-overview-new .product-overview-product .product-overview-product-header-price .product-price-period {
	margin-top: 1rem;
}

.product-overview-new .product-overview-product .product-overview-product-header-order {
	margin-top: 1.25rem;
}

.product-overview-new .product-overview-product .product-overview-product-header-order .btn {
	margin-top: 1.5rem;
	font-size:  1.3rem;
	display:    block;
	width:      100%;
}

.product-overview-new .product-overview-product .product-overview-product-content {
	padding-top: 0.5rem;
}

.product-overview-new .product-overview-product .product-overview-product-content-data-item,
.product-overview-new .product-overview-product .product-overview-product-content-data-item-double {
	margin-top: 0.75rem;
}

.product-overview-new .product-overview-product .product-overview-product-content-data-item {
	height: 2rem;
}

.product-overview-new .product-overview-product .product-overview-product-content-data-item-double {
	height: 3.5rem;
}


.product-overview-new .product-overview-product-highlight {
	border: 1px solid #2e6da4;
	background: #eaf1fb;
}

.product-overview-new .product-overview-product-highlight button {
	background-color: #5cb85c;
	border-color:     #4cae4c;
}

.product-overview-new .product-overview-product-highlight .product-overview-product-header-price .product-price-price {
	color: #4cae4c;
	font-size: 3rem;
}
