﻿/**
* Fonty
*/
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;700&display=swap');

/**
* Základní nastavení
*/
body {
	font-family: 'Inter', sans-serif;
	background-color: #FFFFFF;
	line-height: 28px;
}

/**
* Ikony
*/
.glyphicon,
.fa,
.ion {
	color: #444444;
	min-width: 20px;
}

.ion-log-in,
.ion-log-out {
	font-size: 130%;
}

/**
* Nadpisy
*/
h1, .h1 {
	margin-top: 20px;
	padding-bottom: 13px;
	border-bottom: 1px solid #DDDDDD;
}

h2 .glyphicon,
h2 .fa,
h2 .ion {
	min-width: 30px;
}

h2 .btn,
.h2 .btn {
	margin-top: -5px;
	height: 35px;
}

/**
* Odkazy
*/
a,
p a,
table a {
	color: #673281;
}

a:hover,
p a:hover,
table a:hover {
	color: #855B9A;
	text-decoration: underline;
}

a[href^="tel:"],
a[href^="tel:"]:hover,
a[href^="mailto:"],
a[href^="mailto:"]:hover{
    color: #333333;
    text-decoration: none;
}

/**
* Odstavce
*/
p .glyphicon,
p .fa,
p .ion {
	min-width: 0;
}

/**
* Texty
*/
.text-break {
    word-break: break-all;
}

.text-bold {
	font-weight: 600;
}

/**
* Seznamy
*/
.list-check,
.list-plus,
.list-minus {
	list-style: none;
	padding: 0;
}

.list-check.small,
.list-plus.small,
.list-minus.small {
	list-style: none;
	padding: 0;
	margin: 0;
}

.list-check li,
.list-plus li,
.list-minus li {
	padding-left: 25px;
	/*line-height: 25px;*/
}

.list-check.small li,
.list-plus.small li,
.list-minus.small li {
	/*line-height: normal;*/
}

.list-check li:before,
.list-plus li:before,
.list-minus li:before {
	display: inline-block;
	font-family: FontAwesome;
	font-size: 125%;
	min-width: 25px;
	margin-left: -24px;
}

.list-check li:before {
	content: '\f00c';
}

.list-plus li:before {
	content: '\f067';
}

.list-minus li:before {
	content: '\f068';
}

.list-blue li:before {
	color: #428BCA;
}

.list-green li:before {
	color: #70B222;
}

.list-red li:before {
	color: #D9534F;
}

.list-lines li {
	padding: 5px 0;
	border-bottom: 1px solid #d0d0d0;
}

.list-lines li:last-of-type {
	border-bottom: none;
}

/**
* Tabulky
*/
.table a {
    display: inline-block;
}

.table a .glyphicon,
.table a .fa,
.table a .ion {
    display: inline-block;
	color: #888;
    font-size: 110%;
}

.table a:hover .glyphicon,
.table a:hover .fa,
.table a:hover .ion {
	color: #444;
}

.table-controls {
	margin-bottom: 10px;
}

.table-controls .form-inline {
	margin: 0;
}

/**
* Formuláře
*/
form .contact-new {
	padding: 10px 15px;
	margin-bottom: 10px;
	background-color: #EEEEEE;
	border-radius: 5px;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
}

form textarea {
    word-break: break-all;
}

.form-control {
	height: 40px;
	/*font-size: 14px;*/
}

.checkbox,
.radio {
	margin: 0 0 10px 0;
}

.checkbox + .checkbox,
.radio + .radio {
	margin-top: -5px;
}

.checkbox > .checkbox-checked input,
.checkbox > .checkbox-unchecked input {
	display: none;
}

.checkbox > .checkbox-checked,
.checkbox > .checkbox-unchecked {
	padding: 0;
}

.checkbox > .checkbox-checked:before,
.checkbox > .checkbox-unchecked:before {
	font-family: "FontAwesome";
	font-size: 16px;
	color: #333333;
	display: inline-block;
	vertical-align: middle;
}

.checkbox > .checkbox-checked:before {
	content: "\f046";
	letter-spacing: 8px;
}

.checkbox > .checkbox-unchecked:before {
	content: "\f096";
	letter-spacing: 10px;
}

/**
* Tlačítka
*/
.btn {
	text-transform: uppercase;
	height: 40px;
	line-height: inherit;
	font-size: 14px;
	padding: 6px 12px 6px 12px;
}

.btn-primary .glyphicon,
.btn-primary .fa,
.btn-primary .ion {
	color: #FFFFFF;
	min-width: 0;
	margin-right: 5px;
}

.btn-primary {
	background-color: #673281;
	border: 1px solid #552A6A;
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active,
.btn-primary.active {
	background-color: #855B9A;
	border: 1px solid #753396;
}

.order .btn-xs {
	height: auto;
	padding: 1px 5px;
	font-size: 12px;
}

/**
* Štítky
*/
.label-primary {
	background-color: #673281;
}

/**
* Ukazatele průběhu
*/
.progress {
    height: 6px;
    margin: 0 0 8px;
}

/**
* Hlavička
*/
.header {
	margin-top: 20px;
	margin-bottom: 10px;
	line-height: 21px;
}

.header .logo {
	float: left;
}

.header .slogan {
	float: left;
	font-weight: 400;
	line-height: 21px;
	text-transform: uppercase;
	margin-left: 5px;
	padding-left: 15px;
	border-left: 1px solid #DDDDDD;
}

.header .item {
	float: right;
}

.header .pipe {
	float: right;
	margin: 0 15px;
	min-height: 42px;
	border-right: 1px solid #DDDDDD;
}

/**
* Hlavní navigace - základ
*/
.nav-main {
	background: transparent;
	border-radius: 3px;
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
}

@media (max-width: 767px) {
	.nav-main {
		background-color: transparent;
	}
}

.nav-main .navbar-header {
	padding: 10px 0;
}

.nav-main .navbar-brand {
	padding: 5px 0;
}

.nav-main .navbar-brand,
.nav-main .navbar-brand:hover {
	color: #FFFFFF;
}

.nav-main .navbar-toggle {
	margin-right: 0;
}

.nav-main .navbar-toggle,
.nav-main .navbar-toggle.collapsed:hover {
	background-color: #855B9A;
}

.nav-main .navbar-toggle.collapsed {
	background-color: #673281;
}

.nav-main .navbar-toggle > .icon-bar {
	background-color: #FFFFFF;
}

.nav-main .navbar-collapse {
	margin: 0;
	padding: 0;
	max-height: none;
	border: 0;
	box-shadow: 0 1px 0 rgba(255, 255, 255, 0.2) inset;
}

/**
* Hlavní navigace - lišta
*/
.nav-main .nav-base ul {
	display: flex;
	gap: 20px;
	margin: 0;
	padding: 0;
}

.nav-main .nav-base li {
	float: none;
	text-align: center;
}

.nav-main .nav-base li a,
.nav-main .nav-base li a:hover,
.nav-main .nav-base li a:focus,
.nav-main .nav-base li a.active,
.nav-main .nav-base li a.in-path {
	display: flex;
	align-items: center;
	justify-content: center;
	color: #FFFFFF;
	text-decoration: none;
	padding: 5px 8px;
	font-size: 16px;
}

/*
.nav-main .nav-base li a:hover,
.nav-main .nav-base li a.active,
.nav-main .nav-base li a.in-path {
	background-image: url("../img/general/nav-main-base-active.png");
	background-repeat: no-repeat;
	background-position: center bottom;
}
*/

.nav-main .nav-base li a.active,
.nav-main .nav-base li a.in-path {
	font-weight: 600;
	background: rgba(255, 255, 255, 0.15);
	border-radius: 6px;
}

.nav-main .nav-base .glyphicon,
.nav-main .nav-base .fa,
.nav-main .nav-base .ion {
	display: inline-block;
	width: auto;
	font-size: 25px;
	margin: 0 6px 0 0;
	color: #FFFFFF;
}

.nav-main .nav-base li.has-dropdown {
	position: relative;
}

.nav-main .nav-base li.has-dropdown > .link > a::after {
	content: '\f0d7';
	font-family: 'Font Awesome 7 Free';
	font-weight: 900;
	margin-left: 5px;
	opacity: 0.7;
}

/** dropdown */
.nav-main .nav-base .nav-dropdown {
	display: none;
	position: absolute;
	top: 100%;
	left: 0;
	min-width: 200px;
	background: #2a1040;
	z-index: 1000;
	padding: 0;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5), 0 2px 8px rgba(0, 0, 0, 0.4);
	list-style: none;
	margin: 0;
	border-radius: 8px;
	overflow: hidden;
}

.nav-main .nav-base li.has-dropdown:hover > .nav-dropdown {
	display: block;
}

.nav-main .nav-base .nav-dropdown li {
	flex: none;
	display: block;
}

.nav-main .nav-base .nav-dropdown li .link {
	display: block;
}

.nav-main .nav-base .nav-dropdown li a,
.nav-main .nav-base .nav-dropdown li a:hover,
.nav-main .nav-base .nav-dropdown li a:focus {
	display: block;
	padding: 9px 18px;
	white-space: nowrap;
	background-image: none;
	background-color: transparent;
	text-align: left;
}

.nav-main .nav-base .nav-dropdown li a:hover {
	font-weight: 600;
	background-color: rgba(255, 255, 255, 0.08);
}

/**
* Hlavní navigace - rozbalovací
*/
.nav-main .nav-tree ul {
	list-style: none;
}

.nav-main .nav-tree ul > li a {
	display: block;
	height: 40px;
	line-height: 40px;
	overflow: hidden;
	color: #FFFFFF;
	text-decoration: none;
}

.nav-main .nav-tree ul > li a.active {
	font-weight: 700;
}

.nav-main .nav-tree ul ul > li {
	background-image: url("../img/general/nav-main-tree-line.png");
	background-repeat: repeat-y;
}

.nav-main .nav-tree ul ul > li.last {
	background-image: url("../img/general/nav-main-tree-last.png");
	background-repeat: no-repeat;
}

.nav-main .nav-tree ul ul > li .link {
	display: block;
	background-image: url("../img/general/nav-main-tree-node.png");
	background-repeat: no-repeat;
}

.nav-main .nav-tree ul ul > li.last > .link {
	display: block;
	background-image: url("../img/general/nav-main-tree-last.png");
	background-repeat: no-repeat;
}

.nav-main .nav-tree > ul {
	margin: 0;
}

.nav-main .nav-tree > ul > li {
	border-bottom: 1px solid #855B9A;
}

.nav-main .nav-tree > ul > li.last {
	border-bottom: 0;
}

.nav-main .nav-tree ul > li a {
	padding-left: 20px;
}

.nav-main .nav-tree ul ul > li a {
	text-transform: none;
}

.nav-main .nav-tree .glyphicon,
.nav-main .nav-tree .fa,
.nav-main .nav-tree .ion {
	color: #FFFFFF;
}

/**
* Hlavní navigace - mobilní dropdown (nav-map)
*/
.nav-main .nav-map ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.nav-main .nav-map > ul > li {
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-main .nav-map > ul > li:last-child {
	border-bottom: none;
}

.nav-main .nav-map .nav-map-row {
	display: flex;
	align-items: stretch;
}

.nav-main .nav-map .nav-map-row > a {
	flex: 1;
	display: block;
	padding: 12px 15px;
	color: #fff;
	text-decoration: none;
	font-size: 15px;
}

.nav-main .nav-map .nav-map-row > a:hover,
.nav-main .nav-map .nav-map-row > a:focus {
	color: #fff;
	text-decoration: none;
}

.nav-main .nav-map .nav-map-row > a.in-path,
.nav-main .nav-map .nav-map-row > a.active {
	color: #fff;
	font-weight: 600;
}

.nav-main .nav-map .nav-map-toggle {
	background: none;
	border: none;
	color: rgba(255, 255, 255, 0.7);
	padding: 0 16px;
	cursor: pointer;
}

.nav-main .nav-map .nav-map-toggle i {
	display: inline-block;
	transition: transform 0.2s;
}

.nav-main .nav-map li.has-children.open > .nav-map-row .nav-map-toggle i {
	transform: rotate(180deg);
}

.nav-main .nav-map .nav-map-sub {
	display: none;
	list-style: none;
	margin: 0 0 4px 15px;
	padding: 0;
	border-left: 2px solid rgba(255, 255, 255, 0.25);
}

.nav-main .nav-map .nav-map-sub a {
	display: block;
	padding: 8px 15px;
	color: rgba(255, 255, 255, 0.8);
	text-decoration: none;
	font-size: 14px;
}

.nav-main .nav-map .nav-map-sub a:hover,
.nav-main .nav-map .nav-map-sub a:focus,
.nav-main .nav-map .nav-map-sub a.active {
	color: #fff;
	text-decoration: none;
	background: none;
}

.nav-main .nav-map .nav-map-sub a.active {
	font-weight: 600;
}

.nav-main .nav-map-footer {
	border-top: 1px solid rgba(255, 255, 255, 0.2);
	margin-top: 8px;
	padding: 4px 0 8px;
	display: flex;
	align-items: center;
}

.nav-main .nav-map-footer > a.nav-map-footer-link {
	flex: 1;
	display: block;
	padding: 10px 15px;
	color: rgba(255, 255, 255, 0.8) !important;
	text-decoration: none !important;
	font-size: 15px;
}

.nav-main .nav-map-footer > a.nav-map-footer-link:hover,
.nav-main .nav-map-footer > a.nav-map-footer-link:focus {
	color: #fff !important;
}

.nav-main .nav-map-footer > a.nav-map-footer-link .fa-solid {
	width: 18px;
	opacity: 0.7;
}

.nav-main .nav-map-footer .nav-map-footer-currency {
	display: inline-flex;
	align-items: center;
	margin-right: 15px;
	background: rgba(0, 0, 0, 0.2);
	border-radius: 20px;
	padding: 3px;
	flex-shrink: 0;
}

.nav-main .nav-map-footer .nav-map-currency-btn {
	display: block;
	padding: 5px 14px;
	border-radius: 16px;
	color: rgba(255, 255, 255, 0.55) !important;
	text-decoration: none !important;
	font-size: 13px;
	font-weight: 500;
	transition: color 0.15s;
}

.nav-main .nav-map-footer .nav-map-currency-btn.active {
	background: rgba(255, 255, 255, 0.2);
	color: #fff !important;
	font-weight: 600;
}

.nav-main .nav-map-footer .nav-map-currency-sep {
	display: none;
}

/**
* Horní navigace
*/
.nav-top .nav-base {
	display: table;
	width: 100%;
	background-color: #F9F9F9;
	overflow: hidden;
}

.nav-top .nav-base ul {
	display: table-row;
	margin: 0;
	padding: 0;
	background-image: url("../img/general/nav-top-bottom.png");
	background-repeat: repeat-x;
	background-position: center bottom;
}

.nav-top .nav-base li {
	display: table-cell;
	float: none;
	text-align: center;
}

.nav-top .nav-base li a,
.nav-top .nav-base li a:hover,
.nav-top .nav-base li a:focus,
.nav-top .nav-base li a.active,
.nav-top .nav-base li a.in-path{
	display: block;
	color: #333;
	text-decoration: none;
	padding: 10px 0;
}

.nav-top .nav-base li a:hover,
.nav-top .nav-base li a.active,
.nav-top .nav-base li a.in-path {
	background-image: url("../img/general/nav-top-active.png");
	background-repeat: no-repeat;
	background-position: center bottom;
}

.nav-top .nav-base li a.active,
.nav-top .nav-base li a.in-path {
	font-weight: 600;
}

/**
* Postraní navigace
*/
.nav-side .nav-base,
.nav-side .nav-tree {
	margin: 20px 0 10px;
	padding: 0;
	background-color: #F9F9F9;
	border: 1px solid #DDDDDD;
	border-radius: 3px;
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
}

.nav-side .nav-base .glyphicon,
.nav-side .nav-tree .glyphicon,
.nav-side .nav-base .fa,
.nav-side .nav-tree .fa,
.nav-side .nav-base .ion,
.nav-side .nav-tree .ion {
	color: #444444;
}

.nav-side .nav-base ul,
.nav-side .nav-tree ul {
	list-style: none;
	padding: 0;
	margin-left: 20px;
}

.nav-side .nav-base ul > li a,
.nav-side .nav-tree ul > li a {
	display: block;
	height: 40px;
	line-height: 40px;
	overflow: hidden;
	color: #000000;
	text-decoration: none;
}

.nav-side .nav-base ul > li a:hover,
.nav-side .nav-base ul > li a.active,
.nav-side .nav-tree ul > li a:hover,
.nav-side .nav-tree ul > li a.active {
	background-image: url("../img/general/nav-side-active.png");
	background-repeat: no-repeat;
	background-position: right center;
	margin-right: -1px;
	font-weight: 600;
}

.nav-side .nav-tree ul ul > li {
	background-image: url("../img/general/nav-side-tree-line.png");
	background-repeat: repeat-y;
}

.nav-side .nav-tree ul ul > li.last {
	background-image: url("../img/general/nav-side-tree-last.png");
	background-repeat: no-repeat;
}

.nav-side .nav-tree ul ul > li .link {
	display: block;
	background-image: url("../img/general/nav-side-tree-node.png");
	background-repeat: no-repeat;
}

.nav-side .nav-tree ul ul > li.last > .link {
	display: block;
	background-image: url("../img/general/nav-side-tree-last.png");
	background-repeat: no-repeat;
}

.nav-side .nav-base > ul,
.nav-side .nav-tree > ul {
	margin: 0;
}

.nav-side .nav-base > ul > li,
.nav-side .nav-tree > ul > li {
	border-bottom: 1px solid #DDDDDD;
}

.nav-side .nav-base > ul> li.last,
.nav-side .nav-tree > ul > li.last {
	border-bottom: 0;
}

.nav-side .nav-base ul > li a,
.nav-side .nav-tree ul > li a {
	padding-left: 15px;
}

/**
* Drobečková navigace
*/
.breadcrumb {
	margin-top: 20px;
	margin-bottom: 0;
	font-size: 12px;
	line-height: 20px;
}

.breadcrumb .nav {
	display: inline-block;
}

.breadcrumb .fa,
.breadcrumb .ion,
.breadcrumb .glyphicon {
	min-width: 16px;
	color: #444444;
}

/**
* Záložková navigace
*/
.nav-tabs {
	margin-bottom: 15px;
}

/**
* Panely
*/
.panel-future {
	margin-top: 10px;
	background-color: #DDDDDD;
	transform: rotate(1.5deg);
}

.panel-future .panel-body,
.panel-future .table {
	transform: rotate(-1.5deg);
	border: 1px solid #DDDDDD;
}

.panel-future .panel-body,
.panel-future .table,
.panel-default .panel-body {
	background-color: #F9F9F9;
	border-collapse: inherit;
	border-radius: 3px;
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
}

.panel-tariff.active .panel-body {
	background-color: #673281;
	border: 2px solid #673281;
	color: #ffffff;
	margin: -1px;
}

.panel-tariff.active .panel-body a {
	color: #c0c0c0;
}

.panel-tariff.active .panel-body a:hover,
.panel-tariff.active .panel-body a:active,
.panel-tariff.active .panel-body a:focus {
	color: #e0e0e0;
}

.panel-tariff .price-container {
	margin: 10px 0;
}

.panel-tariff .list-tariff li {
	padding: 5px 0;
	border-bottom: 1px solid #d0d0d0;
}

.panel-tariff .list-tariff li:last-of-type {
	border-bottom: none;
}

/**
* Modální okna
*/
.modal {
	padding: 0;
	text-align: center;
}

.modal:before {
	display: inline-block;
	vertical-align: middle;
	height: 100%;
	margin-right: -4px;
	content: '';
}

.modal-dialog {
	display: inline-block;
	vertical-align: middle;
	text-align: left;
}

.modal-backdrop {
	background-color: rgba(255, 255, 255, 0.8);
}

.modal-body {
	margin: 0;
	padding: 15px 15px 5px 15px;
}

.modal-footer form {
	margin: 0;
}

/**
* Stránkování
*/
.pagination-container {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 10px;
	flex-wrap: wrap;
	gap: 8px;
}

.pagination-container .pagination-info {
	margin: 0;
}

.pagination-container .pagination {
	margin: 0;
}

.pagination-container .pagination li > a,
.pagination-container .pagination li > span {
	padding: 8px;
	font-size: 14px;
	line-height: 1.5;
	color: #673281;
}

.pagination-container .pagination .fa {
	min-width: 0;
	color: inherit;
}

.pagination-container .pagination li > a:hover,
.pagination-container .pagination li > a:focus {
	color: #552A6A;
}

.pagination-container .pagination .active a,
.pagination-container .pagination .active a:hover,
.pagination-container .pagination .active a:focus {
	background-color: #673281;
	border-color: #552A6A;
	color: #fff;
}

@media (max-width: 767px) {
	.pagination-container {
		flex-direction: column;
		align-items: center;
	}
}

/**
* Patička
*/
.footer {
	padding: 10px 0 0;
	margin: 10px 0 0;
	border-top: 1px solid #EEEEEE;
}

.footer a .glyphicon,
.footer a .fa,
.footer a .ion {
	font-size: 25px;
    margin-left: 2px;
	color: #AAAAAA;
}

.footer a:hover .glyphicon,
.footer a:hover .fa,
.footer a:hover .ion {
	color: #444444;
}

.footer a .fa-facebook-square,
.footer a:hover .fa-facebook-square {
	color: #3B5998;
}

.footer a .fa-twitter-square,
.footer a:hover .fa-twitter-square {
	color: #55ACEE;
}

.footer a .fa-rss-square,
.footer a:hover .fa-rss-square {
    color: #FF9900;
}

/**
* Ceny
*/
.price-container {
	margin-bottom: 10px;
}

.price-container .price-amount {
	display: inline-block;
	font-size: 26px;
	font-weight: 600;
	margin: 0 5px;
}

/**
* Slider
*/
.slider {
	height: 250px;
	padding: 0;
	overflow: hidden;
}

/**
* Novinky
*/
.news h3 {
	width: auto;
}

.news .panel-body {
    padding-top: 0;
    padding-bottom: 0;
}

.news .news-item {
	background: #fff;
	border: 1px solid #d9cee3;
	border-radius: 10px;
	padding: 24px 28px;
	margin-bottom: 20px;
	box-shadow: 0 4px 16px rgba(103, 50, 129, 0.12);
}

.news .news-published {
	font-size: 13px;
	color: #888;
	margin-bottom: 8px;
}

.news .news-published i {
	color: #673281;
	margin-right: 4px;
}

.news .news-title {
	font-size: 18px;
	font-weight: 700;
	color: #222;
	margin: 0 0 10px;
}

.news .news-body {
	font-size: 14px;
	color: #444;
	line-height: 1.75;
	margin: 0;
}

.news .news-delimiter {
	display: none;
}

/**
* Sociální sítě
*/
.social {
    margin-bottom: 10px;
}

.social .fb-like-box,
.social .fb-like-box span,
.social .fb-like-box.fb_iframe_widget span iframe {
    width: 100% !important;
}

.social a .glyphicon,
.social a .fa,
.social a .ion {
	font-size: 28px;
    margin: 0 5px;
	color: #AAAAAA;
}

.social a:hover .glyphicon,
.social a:hover .fa,
.social a:hover .ion {
	color: #444444;
}

.social a .fa-facebook-square,
.social a:hover .fa-facebook-square {
	color: #3B5998;
}

.social a .fa-twitter-square,
.social a:hover .fa-twitter-square {
	color: #55ACEE;
}

.social a .fa-rss-square,
.social a:hover .fa-rss-square {
    color: #FF9900;
}

/**
* Proč zvolit NETIO
*/
.list-why li{
    margin-top: 10px;
}

/**
* Objednávka
*/
.order .steps {
	font-family: 'Open Sans', sans-serif;
	font-size: 17px;
}

.order .steps .fa-stack {
	font-size: 80%;
}

.order .steps .fa-stack-1x {
	font-family: 'Open Sans', sans-serif;
	color: #FFF;
}

.order .steps table tr td {
	padding: 15px 10px 10px;
}

.order .contact {
	min-height: 140px;
}

/**
* Reference
*/
.references .h4 {
	display: block;
	margin-top: 0;
	margin-bottom: 15px;
	color: #2A7BA0;
}

.references	.referent {
	margin: 0;
	padding: 10px 0 0 0;
	text-align: center;
	font-style: italic;
	border-top: 1px solid #E0E0E0;
}

/**
* Kontakt
*/
.contact .support {
	padding: 20px 10px;
	margin-top: 20px;
	margin-bottom: 20px;
	font-size: 20px;
	background-color: #F9F9F9;
	border: 1px solid #EEEEEE;
}

.contact .support table {
	margin: 0;
}

.contact .map {
	padding: 5px;
	margin: 0 0 20px;
	background-color: #F9F9F9;
	border: 1px solid #EEEEEE;
}

.contact .map .canvas {
	width: 100%;
	height: 180px;
	border: 1px solid #EEEEEE;
}

.sidebar .contact {
	margin: -1px 0 10px 0;
}

/**
* Kofigurátor virtuálních serverů OpenVZ
*/
.configurator-container .sliders {
	display: none;
}

.configurator-container .inputs {
	display: block;
}

.configurator-container .info {
	margin-top: 2px;
}

.configurator-container .configurator {
    position: relative;
    padding: 0 30px;
    margin: 0 0 10px;
    background: #FFFFFF;
    border: 1px solid #DDDDDD;
}

.configurator-container .configurator .ui-slider-handle {
    z-index: 2;
    width: 60px;
    margin: 0 0 0 -30px;
    text-align: center;
    text-decoration: none;
    color: #FFFFFF;
    background-color: #673281;
}

.configurator-container .configurator,
.configurator-container .configurator .ui-slider-handle {
	border-radius: 3px;
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
}

.configurator-container .configurator .ui-slider,
.configurator-container .configurator .ui-slider-handle {
    display: block;
    position: relative;
    height: 31px;
    line-height: 31px;
}

.configurator-container .configurator .cpu-min,
.configurator-container .configurator .cpu-max,
.configurator-container .configurator .ram-min,
.configurator-container .configurator .ram-max,
.configurator-container .configurator .hdd-min,
.configurator-container .configurator .hdd-max {
    position: absolute;
    height: 31px;
    line-height: 31px;
    top: 0;
    color: #BBBBBB;
}

.configurator-container .configurator .cpu-min,
.configurator-container .configurator .ram-min,
.configurator-container .configurator .hdd-min {
    left: 10px;
}

.configurator-container .configurator .cpu-max,
.configurator-container .configurator .ram-max,
.configurator-container .configurator .hdd-max {
    right: 10px;
}

.configurator-container .btn-group {
	margin: 0 0 10px;
}

.configurator-container .price {
	margin-top: 20px;
}

.configurator-container .price .price-without-vat {
	font-weight: 300;
    font-size: 30px;
}

.configurator-container .price .price-without-vat .price-info {
	display: inline-block;
	font-weight: 400;
	font-size: 13px;
	line-height: 13px;
}

.configurator-container .price .price-with-vat {
	margin-top: 9px;
	font-size: 13px;
	line-height: 13px;
}

.configurator-container .tooltip-info {
	margin-right: 0;
}

.configurator-container .configurations-toggle {
	display: none;
}

.configurator-container .panel {
	margin-top: 10px;
	margin-bottom: 10px;
}

.configurator-container .panel .panel-heading {
	padding: 0;
}

.configurator-container .panel .panel-heading a,
.configurator-container .panel .panel-heading a:hover {
	display: block;
	padding: 10px;
	text-decoration: none;
}

.configurator-container .panel .panel-heading a:hover .underline {
	text-decoration: underline;
}

.configurator-container .panel .panel-heading a:after {
    font-family: 'Glyphicons Halflings';
    content: "\e113";
    float: right;
    color: grey;
}

.configurator-container .panel .panel-heading a.collapsed:after {
    content: "\e114";
}

/**
* Kofigurátor virtuálních serverů KVM
*/
.configurator-kvm .irs--round.irs-with-grid {
	height: 75px;
}

.configurator-kvm .irs--round .irs-from,
.configurator-kvm .irs--round .irs-to,
.configurator-kvm .irs--round .irs-single,
.configurator-kvm .irs--round .irs-bar {
	background-color: #673281;
}

.configurator-kvm .irs--round .irs-from,
.configurator-kvm .irs--round .irs-to,
.configurator-kvm .irs--round .irs-single,
.configurator-kvm .irs--round .irs-min,
.configurator-kvm .irs--round .irs-max {
	padding: 4px;
	font-size: 13px;
}

.configurator-kvm .irs--round .irs-single:before {
	border-top-color: #fff;
}

.configurator-kvm .irs--round .irs-line,
.configurator-kvm .irs--round .irs-bar {
	height: 10px;
}

.configurator-kvm .irs--round .irs-handle {
	top: 29px;
	border: 4px solid #673281;
	cursor: pointer;
	box-shadow: none;
}

.configurator-kvm .panel-default .panel-body {
	background-color: #fff;
}

.configurator-kvm .ram-size-warning,
.configurator-kvm .sale-code-warning {
	display: block;
	margin-top: 10px;
	color: #CC0000;
}

.configurator-kvm .payment-period-warning {
	display: block;
	padding: 8px;
	background: #fff8e1;
	border-radius: 4px;
	font-size: 13px;
	color: #856404;
	text-align: center;
	margin-top: 10px;
}

.configurator-kvm .bootstrap-select .btn {
	text-transform: inherit;
}

.configurator-kvm .bootstrap-select:not([class*="col-"]):not([class*="form-control"]):not(.input-group-btn) {
	width: 80px;
}

.configurator-kvm .summary {
	line-height: 30px;
}

.configurator-kvm .summary table td {
	border-bottom: 1px solid #EEE;
}

.configurator-kvm .price {
	text-align: center;
}

.configurator-kvm .price .price-month,
.configurator-kvm .price .price-period,
.configurator-kvm .price .price-sale,
.configurator-kvm .price .price-total,
.configurator-kvm .price .price-total-with-vat{
	display: inline-block;
	font-size: 26px;
	font-weight: 600;
}

.configurator-kvm .price .sale {
	color: #CC0000;
}

.configurator-kvm .cpu-type-button,
.configurator-kvm .disk-type-button {
	text-transform: inherit;
	padding: 6px 2px;
}

.configurator-kvm .cpu-type-button:last-child,
.configurator-kvm .disk-type-button:last-child {
	margin-bottom: 10px;
}

.configurator-kvm input[type=radio] {
	display: none;
}

.configurator-kvm input[type='radio'] + label:before,
.configurator-kvm input[type='radio']:checked + label:before{
	font-family: FontAwesome;
	font-size: 26px;
	margin-right: 5px;
	color: #753396;
	display: inline-block;
	vertical-align: middle;
}

.configurator-kvm input[type='radio'] + label,
.configurator-kvm input[type='radio']:checked + label{
	margin: 0;
}

.configurator-kvm input[type='radio']:checked + label {
	color: #753396;
}

.configurator-kvm input[type=radio] + label:before {
	content: "\f10c";
}

.configurator-kvm input[type=radio]:checked + label:before {
	content: "\f192";
}

@media (min-width: 992px) {
	.configurator-kvm [class*="col-"] {
		height: 100%;
	}

	.configurator-kvm.row-flex {
		display: flex;
		flex-wrap: wrap;
	}

	.configurator-kvm .sticky {
		position: -webkit-sticky;
		position: sticky;
		top: 0;
	}
}

.configurator-kvm-price-bar {
	position: fixed;
	z-index: 1000;
	left: 0;
	right: 0;
	bottom: 0;
	padding: 10px;
	background-color: #673281;
	border-top: 1px solid #552A6A;
	color: #FFF;
}

/**
* Kofigurátor multihostingu
*/
.configurator-multihosting .sale-code-warning {
	display: block;
	margin-top: 10px;
	color: #CC0000;
}

.configurator-multihosting input[type=radio] {
	display: none;
}

.configurator-multihosting select {
	display: none;
}

.configurator-multihosting input[type='radio'] + label:before,
.configurator-multihosting input[type='radio']:checked + label:before {
	font-family: FontAwesome;
	font-size: 26px;
	margin-right: 5px;
	color: #753396;
	display: inline-block;
	vertical-align: middle;
}

.configurator-multihosting input[type='radio'] + label,
.configurator-multihosting input[type='radio']:checked + label {
	margin: 0;
}

.configurator-multihosting input[type='radio']:checked + label {
	color: #753396;
}

.configurator-multihosting input[type=radio] + label:before {
	content: "\f10c";
}

.configurator-multihosting input[type=radio]:checked + label:before {
	content: "\f192";
}

/**
* ACE editor
*/
#ace-editor{
	display: none;
	width: 100%;
	height: 600px;
}

.ace-editor{
	display: block;
	width: 100%;
	height: 600px;
}

/**
* Krokovač
*/
.steps {
	padding-bottom: 10px;
	margin-bottom: 10px;
	border-bottom: 1px solid #DDDDDD;
}

.steps .nav-pills > li.active > a,
.steps .nav-pills > li.active > a:focus,
.steps .nav-pills > li.active > a:hover {
	background-color: #673281;
}

.steps .steps-heading {
	display: block;
	font-size: 125%;
}

.steps .steps-description {
	display: block;
}

/**
* Cookies
*/
.eu-cookies {
	position: relative;
	left: 0;
	top: 0;
	width: 100%;
	min-width: 340px;
	padding: 10px 0;
	z-index: 1000;
	background-color: #F9F9F9;
	border-bottom: 1px solid #B0B4B8;
	text-align: center;
}

/**
* Lines
*/
.line-up {
	border-top: 1px solid #ddd;
	margin-top: 25px;
	padding-top: 15px;
}

/**
* ns-container-header
*/
.ns-container-header {
	background: #fff;
	border-bottom: 1px solid #ede8f2;
	padding: 6px 0;
}

.ns-container-header .header {
	display: flex;
	align-items: center;
	margin: 0;
}

.ns-container-header .logo {
	height: 36px;
}

.ns-container-header .header-right {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 6px;
	height: 100%;
}

.ns-container-header .header-btn {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 13px;
	color: #444;
	text-decoration: none;
	padding: 8px 14px;
	border-radius: 8px;
	border: 1px solid transparent;
}

.ns-container-header .header-btn:hover {
	background: #f8f4fc;
	border-color: #ede8f2;
	color: #673281;
}

.ns-container-header .header-btn .fa {
	font-size: 16px;
	color: #673281;
}

.ns-container-header .header-btn-label {
	font-size: 13px;
	color: #555;
}

.ns-container-header .header-pipe {
	width: 1px;
	height: 24px;
	background: #ede8f2;
}

.ns-container-header .header-currency-toggle {
	display: inline-flex;
	align-items: center;
	background: #f0eaf6;
	border-radius: 20px;
	padding: 3px;
}

.ns-container-header .header-currency-btn {
	display: block;
	padding: 4px 10px;
	border-radius: 16px;
	color: rgba(103, 50, 129, 0.45) !important;
	text-decoration: none !important;
	font-size: 12px;
	font-weight: 500;
	transition: color 0.15s;
}

.ns-container-header .header-currency-btn.active {
	background: #fff;
	color: #673281 !important;
	font-weight: 600;
	box-shadow: 0 1px 3px rgba(103, 50, 129, 0.15);
}

.ns-container-header .header-cart-icon {
	position: relative;
	display: inline-block;
}

.ns-container-header .header-cart-icon:has(.header-cart-count) {
	margin-right: 4px;
}

.ns-container-header .header-cart-count {
	position: absolute;
	top: -6px;
	right: -8px;
	background: #673281;
	color: #fff;
	font-size: 9px;
	font-weight: 700;
	padding: 1px 4px;
	border-radius: 20px;
	line-height: 1.4;
}

/**
* ns-container-nav
*/
.ns-container-nav {
	border-bottom: 1px solid #000;
	background: linear-gradient(90deg, #2a1040 0%, #673281 100%);
	position: sticky;
	top: 0;
	z-index: 1000;
}


.ns-container-nav .navbar-cart-mobile {
	float: right;
	padding: 13px 15px 13px 10px;
	color: rgba(255,255,255,1);
	text-decoration: none;
	font-size: 18px;
	line-height: 24px;
}

.ns-container-nav .navbar-cart-mobile:hover .fa {
	color: #fff;
}

.ns-container-nav .navbar-cart-icon {
	position: relative;
	display: inline-block;
}

.ns-container-nav .navbar-cart-icon .fa {
	color: rgba(255,255,255,1);
}

.ns-container-nav .navbar-cart-count {
	position: absolute;
	top: -6px;
	right: -8px;
	background: #fff;
	color: #673281;
	font-size: 9px;
	font-weight: 700;
	padding: 1px 4px;
	border-radius: 20px;
	line-height: 1.4;
}

.ns-container-nav .nav-base {
	margin-left: auto;
}

.ns-container-nav .ns-nav-logo {
	display: flex;
	align-items: center;
	flex-shrink: 0;
	padding: 18px 32px 18px 0;
}

.ns-container-nav .ns-nav-logo img {
	height: 46px;
	width: auto;
}

.ns-container-nav-top {
	background-color: #F9F9F9;
	background-image: url("../img/general/nav-top-bottom.png");
	background-repeat: repeat-x;
	background-position: center bottom;
}

@media (max-width: 767px) {
	.ns-container-nav {
		position: fixed;
		top: 0;
		left: 0;
		right: 0;
		width: 100%;
		z-index: 1000;
		background: linear-gradient(90deg, #2a1040 0%, #673281 100%);
	}

	body {
		padding-top: 70px;
	}

	html {
		scroll-padding-top: 70px;
	}
}

@media (min-width: 768px) {
	.ns-container-nav .ns-nav-desktop {
		display: flex !important;
		align-items: center;
	}
}

/**
* ns-container-flash
*/
.ns-container-flash {
	background: #fff;
}

.ns-container-flash .alert {
	margin-top: 16px;
}

/**
* ns-container-content
*/
.ns-container-content {
	background: #fff;
	padding: 28px 0 48px;
}

/**
* ns-container-hero
*/
.ns-container-hero {
	padding: 80px 0;
	border-bottom: 1px solid #ede8f2;
	position: relative;
	overflow: hidden;
}

.ns-container-hero #hero-canvas {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	pointer-events: none;
	opacity: 0.7;
	z-index: 0;
}

.ns-container-hero > * {
	position: relative;
	z-index: 1;
}

.ns-container-hero .hero-row {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
}

.ns-container-hero h1 {
	font-size: 40px;
	font-weight: 700;
	color: #1d1d1f;
	line-height: 1.2;
	margin: 0 0 60px;
	border-bottom: none;
	padding-bottom: 0;
	display: block;
	width: auto;
}

.ns-container-hero .hero-lead {
	color: #444;
	font-size: 20px;
	line-height: 1.7;
	margin-bottom: 0;
	max-width: 480px;
}

.ns-container-hero .hero-badge {
	display: inline;
	background: rgba(103, 50, 129, 0.1);
	color: #673281;
	font-weight: 600;
	padding: 2px 6px;
	border-radius: 4px;
}

.ns-container-hero .hero-btns {
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
	margin-top: 60px;
}

.ns-container-hero .btn-hero-primary {
	background: #673281;
	color: #fff;
	padding: 13px 26px;
	border-radius: 8px;
	font-size: 14px;
	font-weight: 600;
	text-decoration: none;
	display: inline-block;
}

.ns-container-hero .btn-hero-primary:hover {
	background: #2a1040;
	color: #fff;
}

.ns-container-hero .btn-hero-secondary {
	background: #fff;
	color: #333;
	padding: 13px 26px;
	border-radius: 8px;
	font-size: 14px;
	font-weight: 500;
	border: 1px solid #ddd;
	text-decoration: none;
	display: inline-block;
}

.ns-container-hero .btn-hero-secondary:hover {
	border-color: #673281;
	color: #673281;
}

.ns-container-hero .hero-image {
	margin: 0 auto;
	max-height: 480px;
}

.ns-container-hero .ns-error-code {
	font-size: 120px;
	font-weight: 700;
	line-height: 1;
	margin-bottom: 8px;
	background: linear-gradient(135deg, #673281, #9b6cb8);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

@media (max-width: 991px) {
	.ns-container-hero .hero-image {
		margin: 50px 0 0 0;
		/*max-width: 480px;*/
	}

	.ns-container-hero h1 {
		font-size: 30px;
		margin-bottom: 40px;
	}

	.ns-container-hero .hero-btns {
		margin-top: 40px;
	}
}

@media (max-width: 767px) {
	.ns-container-hero {
		padding: 50px 0;
	}

	.ns-container-hero h1 {
		font-size: 30px;
		text-align: center;
		margin-bottom: 40px;
	}

	.ns-container-hero .hero-lead {
		text-align: center;
	}

	.ns-container-hero .hero-image {
		margin: 50px 0 0 0;
		max-width: 480px;
		width: 100%
	}

	.ns-container-hero .hero-btns {
		flex-direction: column;
		margin-top: 40px;
	}

	.ns-container-hero .btn-hero-primary,
	.ns-container-hero .btn-hero-secondary {
		text-align: center;
	}
}

/**
* ns-container-intro
*/
.ns-container-intro {
	background: #ffffff;
	padding: 56px 0 40px;
}

.ns-container-intro .ns-intro-title {
	font-size: 32px;
	font-weight: 700;
	color: #0f0f14;
	letter-spacing: -0.5px;
	line-height: 1.2;
	margin: 0 0 16px;
	border: none;
	padding: 0;
	display: block;
	width: 100%;
}

.ns-container-intro .ns-intro-desc {
	font-size: 15px;
	color: #0f0f14;
	line-height: 1.8;
	margin-bottom: 25px;
}

.ns-container-intro .ns-intro-btns {
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
	margin-top: 20px;
}

@media (max-width: 767px) {
	.ns-container-intro {
		padding: 36px 0 20px;
	}

	.ns-container-intro .ns-intro-title {
		font-size: 24px;
	}
}

/**
* ns-container-benefit
*/
.ns-container-benefit {
	background: #f7f7f7;
	border-top: none;
	border-bottom: none;
}

.ns-container-benefit .ns-benefit {
	padding: 36px 0;
}

.ns-container-benefit .ns-benefit-head {
	display: flex;
	align-items: center;
	gap: 14px;
	margin-bottom: 10px;
}

.ns-container-benefit .ns-benefit-title {
	font-size: 15px;
	font-weight: 600;
	color: #1d1d1f;
}

.ns-container-benefit .ns-benefit-desc {
	font-size: 14px;
	color: #444;
	line-height: 1.65;
}

.ns-container-benefit .ns-benefit-head i {
	font-size: 20px;
	width: 46px;
	height: 46px;
	border-radius: 12px;
	background: linear-gradient(145deg, #673281, #9b6cb8);
	color: #fff;
	-webkit-text-fill-color: #fff;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}


@media (max-width: 767px) {
	.ns-container-benefit .ns-benefit {
		padding: 22px 0;
		border-bottom: 1px solid #f0f0f0;
	}

	.ns-container-benefit .ns-benefit-desc {
		font-size: 13px;
	}

	.ns-container-benefit .col-xs-12:last-child .ns-benefit {
		border-bottom: none;
	}
}

/**
* ns-container-section
*/
.ns-container-section {
	padding: 56px 0;
}

.ns-container-section.bg-white {
	background: #ffffff;
}

.ns-container-section.bg-gray {
	background: #f7f7f7;
}

.ns-container-section .ns-section-head {
	margin-bottom: 36px;
	text-align: center;
}

.ns-container-section .ns-section-eyebrow {
	font-size: 11px;
	color: #673281;
	letter-spacing: .1em;
	text-transform: uppercase;
	font-weight: 600;
	margin-bottom: 10px;
	display: block;
}

.ns-container-section .ns-section-title {
	font-size: 24px;
	font-weight: 700;
	color: #0f0f14;
	letter-spacing: -0.4px;
	line-height: 1.3;
	margin: 0;
}

.ns-container-section .ns-section-more {
	margin-top: 24px;
	text-align: center;
}

.ns-container-section .ns-section-note {
	font-size: 14px;
	color: #555;
	line-height: 1.75;
	text-align: center;
	margin-bottom: 24px;
}

@media (max-width: 767px) {
	.ns-container-section {
		padding: 36px 0;
	}

	.ns-container-section .ns-section-title {
		font-size: 20px;
	}
}

/**
* ns-container-why
*/
.ns-container-why {
	background: #f7f7f7;
	padding: 50px 0 40px;
	overflow: hidden;
}

.ns-container-why .why-title {
	font-size: 24px;
	font-weight: 700;
	color: #0f0f14;
	text-align: center;
	letter-spacing: -0.4px;
	margin: 0 0 32px;
	padding-bottom: 0;
	border-bottom: none;
	display: block;
}

.ns-container-why .why-col {
	margin-bottom: 4px;
}

.ns-container-why .why-card {
	display: flex;
	gap: 12px;
	align-items: flex-start;
	padding: 12px 0;
}

.ns-container-why .why-check {
	color: #673281;
	font-size: 16px;
	font-weight: 700;
	flex-shrink: 0;
	margin-top: 1px;
	line-height: 1.4;
}

.ns-container-why .why-card-title {
	font-size: 14px;
	font-weight: 600;
	color: #222;
	margin-bottom: 4px;
}

.ns-container-why .why-card-desc {
	font-size: 14px;
	color: #222;
	line-height: 1.6;
}

/**
* ns-container-news
*/
.ns-container-news {
	background: #fff;
	padding: 50px 0 40px;
}

.ns-container-news .news-title {
	font-size: 24px;
	font-weight: 700;
	color: #0f0f14;
	text-align: center;
	letter-spacing: -0.4px;
	margin: 0 0 32px;
	display: block;
}

.ns-container-news .news-card {
	margin-bottom: 16px;
}

.ns-container-news .news-card-title {
	font-size: 15px;
	font-weight: 600;
	color: #222;
	margin: 0 0 8px;
}

.ns-container-news .news-card-body {
	color: #666;
	margin: 0 0 12px;
	line-height: 1.7;
}

.ns-container-news .news-card-link {
	color: #673281;
	text-decoration: none;
	font-weight: 600;
}

.ns-container-news .news-card-link:hover {
	text-decoration: underline;
}

/**
* ns-container-footer
*/
.ns-container-footer {
	background: #2a1040;
	padding: 48px 0 0;
}

.ns-container-footer .footer-heading {
	font-size: 20px;
	font-weight: 700;
	color: #fff;
	line-height: 1.3;
	margin: 0 0 10px;
	border: none;
	padding: 0;
}

.ns-container-footer .footer-desc {
	color: rgba(255,255,255,0.7);
	font-size: 13px;
	line-height: 1.7;
	margin: 0 0 20px;
}

.ns-container-footer .footer-cta {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	gap: 8px;
	align-items: flex-start;
}

.ns-container-footer .footer-cta-btn {
	display: inline-block;
	background: #673281;
	color: #fff;
	padding: 8px 16px;
	border-radius: 4px;
	font-size: 13px;
	font-weight: 600;
	text-decoration: none;
}

.ns-container-footer .footer-cta-btn:hover {
	background: #855b9a;
	color: #fff;
}

.ns-container-footer .footer-cta-btn-outline {
	display: inline-block;
	border: 1px solid rgba(255,255,255,0.2);
	color: rgba(255,255,255,0.8);
	padding: 8px 16px;
	border-radius: 4px;
	font-size: 13px;
	text-decoration: none;
}

.ns-container-footer .footer-cta-btn-outline:hover {
	border-color: rgba(255,255,255,0.5);
	color: #fff;
}

.ns-container-footer .footer-col h4 {
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 1.5px;
	text-transform: uppercase;
	color: rgba(255,255,255,0.35);
	margin: 0 0 10px;
	line-height: 1.8;
	padding: 0;
}

.ns-container-footer .footer-col-h4-mt {
	margin-top: 24px;
}

.ns-container-footer .footer-col ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.ns-container-footer .footer-col ul li {
	margin-bottom: 10px;
	line-height: 1.8;
}

.ns-container-footer .footer-col ul li a {
	color: rgba(255,255,255,0.6);
	font-size: 13px;
	text-decoration: none;
}

.ns-container-footer .footer-col ul li a:hover {
	color: #fff;
}

.ns-container-footer .footer-contact {
	list-style: none;
	padding: 0;
	margin: 0;
}

.ns-container-footer .footer-contact li {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	color: rgba(255,255,255,0.6);
	font-size: 13px;
	margin-bottom: 12px;
	line-height: 1.5;
}

.ns-container-footer .footer-contact li .fa,
.ns-container-footer .footer-contact li .fa-solid {
	color: rgba(255,255,255,0.6);
	font-size: 14px;
	width: 14px;
	min-width: auto;
	text-align: center;
	flex-shrink: 0;
	line-height: 1.5;
	margin-top: 2px;
}

.ns-container-footer .footer-contact a {
	color: rgba(255,255,255,0.6);
	text-decoration: none;
}

.ns-container-footer .footer-contact a:hover {
	color: #fff;
}

.ns-container-footer .footer-socials {
	display: flex;
	gap: 10px;
}

.ns-container-footer .footer-socials a {
	width: 32px;
	height: 32px;
	border-radius: 6px;
	border: 1px solid rgba(255,255,255,0.15);
	display: flex;
	align-items: center;
	justify-content: center;
	color: rgba(255,255,255,0.8);
	font-size: 14px;
	text-decoration: none;
}

.ns-container-footer .footer-socials a:hover {
	border-color: rgba(255,255,255,0.4);
	color: #fff;
}

.ns-container-footer .footer-socials a .fa,
.ns-container-footer .footer-socials a .fa-solid,
.ns-container-footer .footer-socials a .fa-brands {
	min-width: auto;
	color: rgba(255,255,255,0.8);
}

.ns-container-footer .footer-socials a:hover .fa,
.ns-container-footer .footer-socials a:hover .fa-solid,
.ns-container-footer .footer-socials a:hover .fa-brands {
	color: #fff;
}

.ns-container-footer .footer-socials-col .footer-socials {
	flex-direction: column;
	margin-top: 0;
}

.ns-container-footer .footer-xs-row {
	border-top: 1px solid rgba(255,255,255,0.08);
	padding-top: 24px;
	margin-bottom: 0;
}

.ns-container-footer .footer-bottom {
	border-top: 1px solid rgba(255,255,255,0.08);
	padding: 16px 0;
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 8px;
}

.ns-container-footer .footer-bottom span {
	color: rgba(255,255,255,0.3);
	font-size: 12px;
	white-space: nowrap;
}

.ns-container-footer .footer-bottom a {
	color: rgba(255,255,255,0.3);
	font-size: 12px;
	text-decoration: none;
	margin-left: 16px;
	white-space: nowrap;
}

.ns-container-footer .footer-bottom a:hover {
	color: rgba(255,255,255,0.7);
}

.ns-container-footer .footer-cta-col,
.ns-container-footer .footer-col {
	padding-top: 0;
	padding-bottom: 32px;
}

@media (max-width: 991px) {
	.ns-container-footer .footer-cta-col {
		border-bottom: 1px solid rgba(255,255,255,0.08);
		padding-bottom: 32px;
		margin-bottom: 32px;
	}
}

@media (max-width: 767px) {
	.ns-container-footer .footer-cta {
		justify-content: center;
	}

	.ns-container-footer .footer-cta-col {
		border-bottom: 1px solid rgba(255,255,255,0.08);
		padding-bottom: 32px;
		margin-bottom: 32px;
		text-align: center;
	}

	.ns-container-footer .footer-col {
		padding-bottom: 24px;
		margin-bottom: 0;
	}

	.ns-container-footer .footer-bottom {
		flex-direction: column;
		align-items: center;
		text-align: center;
	}

	.ns-container-footer .footer-bottom div {
		margin-top: 4px;
	}

	.ns-container-footer .footer-bottom a {
		margin-left: 8px;
		margin-right: 8px;
	}
}

/**
* ns-item
*/
.ns-item {
	background: #ffffff;
	border: 1px solid #d9cee3;
	border-radius: 10px;
	height: 100%;
	margin-bottom: 24px;
	box-shadow: 0 4px 16px rgba(103, 50, 129, 0.12);
}

.ns-item .ns-item-body {
	padding: 24px;
	display: flex;
	flex-direction: column;
	height: 100%;
}

.ns-item .ns-item-head {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 12px;
}

.ns-item .ns-item-head .fa-solid,
.ns-item .ns-item-head .fa-regular,
.ns-item .ns-item-head .fa-brands {
	font-size: 28px;
	background: linear-gradient(135deg, #673281, #9b6cb8);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	flex-shrink: 0;
}

.ns-item .ns-item-title {
	font-size: 18px;
	font-weight: 700;
	color: #0f0f14;
	line-height: 1.3;
}

.ns-item .ns-item-desc {
	font-size: 14px;
	color: #0f0f14;
	line-height: 1.65;
	flex: 1;
	margin: 0 0 16px;
}

.ns-item .ns-item-bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding-top: 12px;
	border-top: 1px solid #f0ebf5;
	margin-top: auto;
}

.ns-item .ns-item-price {
	display: flex;
	align-items: baseline;
	gap: 4px;
}

.ns-item .ns-item-price-prefix,
.ns-item .ns-item-price-currency {
	font-size: 11px;
	color: #aaaaaa;
}

.ns-item .ns-item-price-amount {
	font-size: 22px;
	font-weight: 700;
	color: #0f0f14;
	line-height: 1;
}

.ns-item .ns-item-link {
	font-size: 13px;
	color: #673281;
	font-weight: 600;
	text-decoration: none;
	border: 1px solid #673281;
	padding: 5px 14px;
	border-radius: 6px;
	display: inline-block;
	transition: background 0.15s, color 0.15s;
}

.ns-item .ns-item-link:hover,
.ns-item .ns-item-link:focus,
.ns-item.ns-item-tariff:hover .ns-item-link,
.ns-item.ns-item-tariff.active .ns-item-link {
	background: #673281;
	color: #ffffff;
	text-decoration: none;
}

.ns-item .ns-item-rating {
	display: flex;
	align-items: center;
	justify-content: space-between;
	border-top: 1px solid #f0e8f5;
	padding-top: 10px;
	margin-top: 4px;
	margin-bottom: 12px;
}

.ns-item .ns-item-rating .ns-item-rating-label {
	font-size: 12px;
	color: #888;
}

.ns-item .ns-item-rating .ns-item-rating-stars {
	display: flex;
	align-items: center;
	gap: 3px;
}

.ns-item .ns-item-rating .ns-item-rating-stars i {
	color: #f5a623;
	font-size: 13px;
}

.ns-item .ns-item-rating .ns-item-rating-stars .ns-item-rating-score {
	margin-left: 5px;
	font-size: 13px;
	font-weight: 600;
	color: #444;
}

.ns-item .ns-item-rating .ns-item-rating-none {
	font-size: 12px;
	color: #aaa;
}

.ns-item-check {
	list-style: none;
	padding: 0;
	margin: 0 0 8px;
}

.ns-item-check li {
	font-size: 15px;
	color: #444;
	line-height: 1.6;
	padding: 8px 0 8px 20px;
	position: relative;
	border-bottom: 1px solid #f0f0f0;
}

.ns-item-check li:last-child {
	border-bottom: none;
}

.ns-item-check li::before {
	content: '✓';
	position: absolute;
	left: 0;
	color: #673281;
	font-weight: 700;
}

/**
* ns-item-tariff
*/
.ns-item.ns-item-tariff {
	text-align: center;
	cursor: pointer;
	transition: border-color 0.15s, box-shadow 0.15s, background 0.15s;
}

.ns-item.ns-item-tariff:hover {
	border-color: #673281;
}

.ns-item.ns-item-tariff .ns-item-title {
	font-size: 22px;
	font-weight: 700;
	margin-bottom: 16px;
}

.ns-item.ns-item-tariff .ns-item-specs {
	list-style: none;
	padding: 0;
	margin: 0;
}

.ns-item.ns-item-tariff .ns-item-specs li {
	font-size: 15px;
	color: #0f0f14;
	line-height: 1.55;
	border-bottom: 1px solid #eeeeee;
	padding: 8px 0;
}

.ns-item.ns-item-tariff .ns-item-specs li:last-child {
	border-bottom: none;
}

.ns-item.ns-item-tariff .ns-item-specs .ns-disk-badge {
	display: inline;
	font-size: 12px;
	font-weight: 700;
	padding: 3px 7px;
	border-radius: 3px;
	color: #fff;
	vertical-align: middle;
	position: relative;
	top: -2px;
}

.ns-item.ns-item-tariff .ns-item-specs .ns-disk-badge-nvme {
	background: linear-gradient(135deg, #f39c12, #e67e22);
}

.ns-item.ns-item-tariff .ns-item-specs .ns-disk-badge-ssd {
	background: linear-gradient(135deg, #3498db, #2980b9);
}

.ns-item.ns-item-tariff .ns-item-specs .ns-disk-badge-hdd {
	background: linear-gradient(135deg, #bdc3c7, #95a5a6);
}

.ns-item.ns-item-tariff .ns-item-bottom {
	justify-content: center;
	flex-direction: column;
	align-items: center;
	gap: 12px;
}

.ns-item.ns-item-tariff.active {
	border-color: #673281;
	box-shadow: 0 0 0 3px #ede8f2;
	background: #f8f4fc;
}

.ns-item.ns-item-tariff .ns-pkg-tier-icon {
	margin-bottom: 12px;
}

.ns-item.ns-item-tariff .ns-pkg-tier-icon i {
	display: inline-block;
	font-size: 26px;
	line-height: 1.2;
	color: #673281;
	background: linear-gradient(135deg, #673281, #9b6cb8);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
}

/**
* ns-features-card
*/
.ns-features-card {
	background: #ffffff;
	border: 1px solid #ede8f2;
	border-radius: 10px;
	padding: 20px 24px;
	margin-bottom: 24px;
}

.ns-features-card .ns-features-card-head {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 12px;
}

.ns-features-card .ns-features-card-head i {
	font-size: 20px;
	color: #673281;
}

.ns-features-card .ns-features-card-head h2 {
	font-size: 15px;
	font-weight: 700;
	color: #0f0f14;
	margin: 0;
	border: none;
	padding: 0;
}

.ns-features-card .ns-features-list {
	list-style: none;
	padding: 0;
	margin: 0;
}

.ns-features-card .ns-features-list li {
	font-size: 14px;
	color: #0f0f14;
	padding: 3px 0 3px 18px;
	position: relative;
	line-height: 1.55;
}

.ns-features-card .ns-features-list li::before {
	content: '\2713';
	position: absolute;
	left: 0;
	color: #673281;
	font-weight: 700;
	font-size: 12px;
}

/**
* ns-highlight-card
*/
.ns-highlight-card {
	background: #f8f4fc;
	border: 1px solid #d9cee3;
	border-radius: 10px;
	padding: 36px 40px;
	margin-bottom: 25px;
}

.ns-highlight-card h2 {
	font-size: 20px;
	font-weight: 700;
	color: #333;
	margin: 0 0 12px;
	border: none;
	padding: 0;
	display: block;
	width: 100%;
	line-height: 1.3;
}

.ns-highlight-card p {
	font-size: 14px;
	color: #555;
	line-height: 1.75;
	margin-bottom: 0;
}

.ns-highlight-card .help-block {
	color: #c0392b;
}

.ns-highlight-card .form-control {
	background: #fff;
	border-color: #d9cee3;
	color: #333;
}

.ns-highlight-card .form-control::placeholder {
	color: #aaa;
}

.ns-highlight-card form {
	margin-top: 16px;
}

.ns-highlight-card .ns-highlight-btns {
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
	margin-top: 20px;
}

.ns-highlight-card.ns-highlight-inline {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
}

.ns-highlight-card.ns-highlight-inline .ns-highlight-content {
	flex: 1;
}

.ns-highlight-card.ns-highlight-inline .ns-highlight-btns {
	flex-shrink: 0;
	margin-top: 0;
}

.ns-highlight-card .ns-btn-light {
	display: inline-block;
	padding: 5px 14px;
	border-radius: 6px;
	font-size: 13px;
	font-weight: 600;
	text-decoration: none;
	border: 1.5px solid #673281;
	color: #ffffff;
	background: #673281;
}

.ns-highlight-card .ns-btn-light:hover,
.ns-highlight-card .ns-btn-light:focus {
	background: #552A6A;
	border-color: #552A6A;
	color: #ffffff;
	text-decoration: none;
}

@media (max-width: 767px) {
	.ns-highlight-card {
		padding: 24px;
	}

	.ns-highlight-card.ns-highlight-inline {
		flex-direction: column;
		align-items: flex-start;
	}
}

/**
* ns-callout-card
*/
.ns-callout-card {
	margin-top: 32px;
	background: #2a1040;
	border-radius: 10px;
	padding: 36px 40px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 32px;
	flex-wrap: wrap;
}

.ns-callout-card .ns-callout-text {
	flex: 1;
}

.ns-callout-card .ns-callout-title {
	font-size: 20px;
	font-weight: 700;
	color: #ffffff;
	letter-spacing: -0.4px;
	line-height: 1.3;
	margin: 0 0 12px;
	border: none;
	padding: 0;
	display: block;
	width: 100%;
}

.ns-callout-card .ns-callout-desc {
	font-size: 14px;
	color: rgba(255, 255, 255, 0.75);
	line-height: 1.75;
	margin: 0;
}

.ns-callout-card .ns-callout-btn {
	flex-shrink: 0;
}

.ns-callout-card .ns-btn-dark {
	display: inline-block;
	padding: 5px 14px;
	border-radius: 6px;
	font-size: 13px;
	font-weight: 600;
	text-decoration: none;
	border: 1.5px solid #ffffff;
	color: #673281;
	background: #ffffff;
}

.ns-callout-card .ns-btn-dark:hover,
.ns-callout-card .ns-btn-dark:focus {
	background: #f0e8f7;
	color: #552A6A;
	border-color: #f0e8f7;
	text-decoration: none;
}

@media (max-width: 767px) {
	.ns-callout-card {
		padding: 24px;
		flex-direction: column;
		align-items: flex-start;
	}
}

/**
* ns-btn-primary
*/
.ns-btn-primary {
	display: inline-block;
	padding: 5px 14px;
	border-radius: 6px;
	font-size: 13px;
	font-weight: 600;
	text-decoration: none;
	border: 2px solid #552A6A;
	color: #ffffff;
	background: #673281;
	cursor: pointer;
}

.ns-btn-primary:hover,
.ns-btn-primary:focus {
	background: #552A6A;
	border-color: #552A6A;
	color: #ffffff;
	text-decoration: none;
}

/**
* ns-status-card
*/
.ns-status-card {
	padding: 16px 20px;
	border: 1px solid #ccc;
	border-left: 4px solid #ccc;
	border-radius: 4px;
	box-shadow: 0 4px 16px rgba(103, 50, 129, 0.12);
	background: #f9f9f9;
	margin-bottom: 20px;
}

.ns-status-card .ns-status-card-title {
	font-size: 16px;
	font-weight: 600;
	margin: 0 0 4px 0;
}

.ns-status-card .ns-status-card-desc {
	font-size: 14px;
	color: #222;
	margin: 0;
}

.ns-status-card.info {
	border-color: #31708f;
	background: #d9edf7;
}

.ns-status-card.info .ns-status-card-title {
	color: #31708f;
}

.ns-status-card.success {
	border-color: #3c763d;
	background: #dff0d8;
}

.ns-status-card.success .ns-status-card-title {
	color: #3c763d;
}

.ns-status-card.warning {
	border-color: #8a6d3b;
	background: #fcf8e3;
}

.ns-status-card.warning .ns-status-card-title {
	color: #8a6d3b;
}

.ns-status-card.danger {
	border-color: #a94442;
	background: #f2dede;
}

.ns-status-card.danger .ns-status-card-title {
	color: #a94442;
}

.ns-status-card.primary {
	border-color: #673281;
	background: #f8f4fc;
}

.ns-status-card.primary .ns-status-card-title {
	color: #673281;
}

.ns-status-card.primary .row {
	display: flex;
	align-items: center;
}

.ns-status-card.primary .row > [class*="col-"] {
	float: none;
}

@media (max-width: 767px) {
	.ns-status-card.primary .row {
		flex-direction: column;
		align-items: flex-start;
	}

	.ns-status-card.primary .row > [class*="col-"] {
		width: 100%;
	}

	.ns-status-card.primary .row > [class*="col-"].text-right {
		text-align: left;
		margin-top: 12px;
	}
}

/**
* ns-table
*/
.ns-table {
	font-size: 14px;
}

.ns-table > thead > tr > th {
	padding: 14px 16px;
	font-weight: 600;
	color: #333;
	background: #f5f5f5;
	border-bottom: 1px solid #ddd;
}

.ns-table > tbody > tr > td {
	padding: 14px 16px;
	border-top: none;
	border-bottom: 1px solid #eee;
	background: #fff;
}

.ns-table > tbody > tr:last-child > td {
	border-bottom: none;
}

.ns-table.ns-table-fixed {
	table-layout: fixed;
}

/**
* ns-panel
*/
.ns-panel {
	background: #fff;
	border: 1px solid #d9cee3;
	border-radius: 8px;
	padding: 24px;
	margin-bottom: 20px;
	box-shadow: 0 4px 16px rgba(103, 50, 129, 0.12);
}

.ns-panel h3 {
	font-size: 16px;
	font-weight: 600;
	color: #333;
	margin: 0 0 16px 0;
	padding-bottom: 12px;
	border-bottom: 1px solid #ede8f2;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.ns-panel h3 i:first-child {
	color: #673281;
	margin-right: 8px;
}

.ns-panel-btn-sm {
	display: inline-block;
	padding: 5px 14px;
	border-radius: 4px;
	font-size: 13px;
	font-weight: 500;
	color: #673281;
	border: 1px solid #673281;
	text-decoration: none;
	transition: background 0.15s;
	white-space: nowrap;
	margin: -6px 0;
}

.ns-panel-btn-sm:hover,
.ns-panel-btn-sm:focus {
	background: #f8f4fc;
	color: #552A6A;
	text-decoration: none;
}

/**
* ns-panel-radio-group
*/
.ns-panel .ns-panel-radio-group {
	display: flex;
	flex-wrap: wrap;
	text-align: center;
	margin-bottom: 8px;
}

.ns-panel .ns-panel-radio-group .ns-panel-radio-option {
	flex: auto;
}

@media (max-width: 767px) {
	.ns-panel .ns-panel-radio-group .ns-panel-radio-option {
		flex: none !important;
		width: 100%;
		text-align: left !important;
		padding: 2px 0;
	}
}

/**
* ns-panel-toggle
*/
.ns-panel-toggle .ns-panel-toggle-heading {
	border-bottom: none;
	padding-bottom: 0;
	margin-bottom: 0;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.ns-panel-toggle.open .ns-panel-toggle-heading {
	border-bottom: 1px solid #ede8f2;
	padding-bottom: 12px;
	margin-bottom: 0;
}

.ns-panel-toggle .ns-panel-toggle-heading i:first-child {
	color: #673281;
	margin-right: 8px;
}

.ns-panel-toggle .ns-panel-toggle-chevron {
	color: #673281;
	font-size: 13px;
	transition: transform 0.2s ease;
	flex-shrink: 0;
}

.ns-panel-toggle.open .ns-panel-toggle-chevron {
	transform: rotate(180deg);
}

.ns-panel-toggle .ns-panel-toggle-section {
	padding: 16px 0;
	border-bottom: 1px solid #ede8f2;
}

.ns-panel-toggle .ns-panel-toggle-section:last-child {
	border-bottom: none;
	padding-bottom: 0;
}

.ns-panel-toggle .ns-panel-toggle-section-title {
	font-size: 14px;
	font-weight: 600;
	color: #333;
	margin-bottom: 12px;
}

.ns-panel-toggle .ns-panel-toggle-section-desc {
	font-size: 13px;
	color: #333;
	margin: 10px 0 0;
}

/**
* ns-panel-flush
*/
.ns-panel-flush {
	padding: 0;
	overflow: hidden;
}
.ns-panel-flush .table {
	margin-bottom: 0;
}

/**
* ns-contact-list
*/
.ns-contact-list {
	margin-top: 30px;
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.ns-contact-list .ns-contact-item {
	display: flex;
	align-items: flex-start;
	gap: 16px;
}

.ns-contact-list .ns-contact-icon {
	font-size: 20px;
	color: #673281;
	margin-top: 2px;
	flex-shrink: 0;
	width: 24px;
	text-align: center;
}

.ns-contact-list .ns-contact-label {
	font-size: 12px;
	color: #888;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	margin-bottom: 2px;
}

.ns-contact-list .ns-contact-value {
	font-size: 16px;
	font-weight: 600;
	color: #222;
	text-decoration: none;
}

.ns-contact-list a.ns-contact-value:hover {
	color: #673281;
}

/**
* ns-sticky-wrap
*/
.ns-sticky-wrap {
	display: flex;
	flex-wrap: wrap;
}

.ns-sticky-wrap > [class*="col-"] {
	float: none;
	height: auto;
}

.ns-sticky-wrap .ns-sticky {
	position: sticky;
	top: 103px;
}

/**
* ns-summary
*/
.ns-summary .ns-summary-header {
	margin-bottom: 2px;
}

.ns-summary .ns-summary-header-icon {
	color: #673281;
	font-size: 16px;
	min-width: unset;
	margin-right: 6px;
}

.ns-summary .ns-summary-pkg-name {
	font-size: 18px;
	font-weight: 700;
	color: #222;
}

.ns-summary .ns-summary-pkg-badge {
	display: block;
	font-size: 12px;
	font-weight: 600;
	line-height: 1;
	color: #1a7a3c;
	background: #eafaf1;
	border: 1px solid #a9dfbf;
	border-radius: 5px;
	padding: 10px;
	margin-top: 5px;
	text-align: center;
}

.ns-summary .ns-summary-config-title {
	font-size: 11px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	color: #aaa;
	margin: 10px 0 6px;
}

.ns-summary .ns-summary-rows {
	display: flex;
	flex-direction: column;
	gap: 0;
	margin-bottom: 4px;
}

.ns-summary .ns-summary-rows + .ns-summary-rows {
	margin-top: 12px;
	padding-top: 12px;
	border-top: 1px solid #ede8f2;
}

.ns-summary .ns-summary-rows.ns-summary-coupon {
	margin-top: 8px;
}

.ns-summary .ns-summary-row {
	display: flex;
	justify-content: space-between;
	padding: 5px 0;
	font-size: 14px;
	color: #444;
	border-bottom: none;
}

.ns-summary .ns-summary-row:last-child {
	border-bottom: none;
}

.ns-summary .ns-summary-row > span:first-child > i {
	color: #673281;
	font-size: 12px;
	min-width: 16px;
	margin-right: 2px;
}

.ns-summary .ns-summary-total {
	font-weight: 700;
	font-size: 15px;
	color: #222;
}

.ns-summary .ns-summary-row + .ns-summary-total {
	border-top: 1px solid #d9cee3;
	padding-top: 10px;
	margin-top: 4px;
}

.ns-summary .ns-summary-row-discount {
	color: #c0392b;
}

.ns-summary .ns-summary-strikethrough {
	text-decoration: line-through;
	color: #bbb;
}

.ns-summary .ns-summary-price-block {
	margin-top: 14px;
	padding-top: 14px;
	border-top: 1px solid #ede8f2;
}

.ns-summary .ns-summary-price-row {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	gap: 8px;
}

.ns-summary .ns-summary-price-label {
	font-size: 13px;
	color: #888;
	padding-top: 10px;
	flex-shrink: 0;
}

.ns-summary .ns-summary-price-right {
	text-align: right;
}

.ns-summary .ns-summary-price-main {
	display: flex;
	align-items: baseline;
	justify-content: flex-end;
	gap: 4px;
	line-height: 1;
}

.ns-summary .ns-summary-price-main .price-month-with-sale {
	font-size: 30px;
	font-weight: 700;
	color: #222;
	line-height: 1;
}

.ns-summary .ns-summary-price-currency {
	font-size: 14px;
	color: #555;
	font-weight: 600;
}

.ns-summary .ns-summary-price-vat {
	font-size: 12px;
	color: #aaa;
	margin-top: 3px;
}

.ns-summary .ns-summary-btns {
	margin-top: 16px;
	padding-top: 0;
	border-top: none;
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.ns-summary .ns-summary-footer {
	margin-top: 12px;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 5px;
	font-size: 11px;
	color: #aaa;
	flex-wrap: wrap;
	line-height: 1.4;
}

.ns-summary .ns-summary-footer i {
	color: #855B9A;
	min-width: unset;
	font-size: 11px;
}

.ns-summary .ns-summary-submit {
	display: block;
	width: 100%;
	padding: 10px 16px;
	border-radius: 6px;
	font-size: 14px;
	font-weight: 600;
	line-height: 1.4;
	text-align: center;
	cursor: pointer;
	border: 2px solid #552A6A;
	background: #673281;
	color: #fff;
	-webkit-appearance: none;
	appearance: none;
	text-decoration: none;
}

.ns-summary .ns-summary-submit:hover,
.ns-summary .ns-summary-submit:focus {
	background: #552A6A;
	border-color: #552A6A;
	color: #fff;
	text-decoration: none;
}

.ns-summary .ns-summary-submit-order {
	background: #fff;
	color: #673281;
	border-color: #673281;
}

.ns-summary .ns-summary-submit-order:hover,
.ns-summary .ns-summary-submit-order:focus {
	background: #f8f4fc;
	color: #673281;
}

/*
* ns-article
*/
.ns-article-row {
	display: flex;
	flex-wrap: wrap;
	row-gap: 20px;
}

.ns-article-card {
	background: #ffffff;
	border: 1px solid #ede8f2;
	border-radius: 10px;
	padding: 28px 32px;
	height: 100%;
}

.ns-article-card .ns-article-heading {
	font-size: 20px;
	font-weight: 700;
	color: #222;
	margin-top: 0;
	margin-bottom: 16px;
	padding-bottom: 12px;
	border-bottom: 2px solid #f0e8f7;
}

.ns-article-card .ns-article-text {
	font-size: 15px;
	color: #333;
	line-height: 1.75;
	margin-bottom: 12px;
}

.ns-article-card .ns-article-list {
	list-style: none;
	padding: 0;
	margin: 0;
}

.ns-article-card .ns-article-list li {
	font-size: 15px;
	color: #444;
	line-height: 1.6;
	padding: 6px 0 6px 22px;
	position: relative;
	border-bottom: 1px solid #ede8f2;
}

.ns-article-card .ns-article-list li:last-child {
	border-bottom: none;
}

.ns-article-card .ns-article-list li::before {
	content: '\2713';
	position: absolute;
	left: 0;
	color: #673281;
	font-weight: 700;
}

/*
* ns-faq-item
*/
.ns-faq-item {
	border-bottom: 1px solid #ede8f2;
	padding: 22px 0;
}

.ns-faq-item:last-child {
	border-bottom: none;
}

.ns-faq-item .ns-faq-question {
	font-size: 16px;
	font-weight: 700;
	color: #673281;
	margin-bottom: 0;
	cursor: pointer;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 12px;
	user-select: none;
}

.ns-faq-item .ns-faq-question .ns-faq-chevron {
	font-size: 13px;
	flex-shrink: 0;
	transition: transform 0.25s ease;
}

.ns-faq-item.open .ns-faq-question .ns-faq-chevron {
	transform: rotate(180deg);
}

.ns-faq-item .ns-faq-answer {
	font-size: 15px;
	color: #444;
	line-height: 1.75;
	display: none;
	padding-top: 12px;
}

.ns-faq-item .ns-faq-answer code {
	font-family: monospace;
	font-size: 12px;
	background: #f0e8f5;
	color: #3d1a5c;
	padding: 1px 4px;
	border-radius: 3px;
}

.ns-faq-item .ns-faq-answer a {
	color: #673281;
	font-weight: 600;
	text-decoration: none;
}

/**
* ns-cart-empty
*/
.ns-cart-empty {
	text-align: center;
	padding: 36px 32px;
}

.ns-cart-empty .ns-cart-empty-icon {
	font-size: 40px;
	color: #673281;
	margin-bottom: 16px;
	display: inline-block;
}

.ns-cart-empty h2 {
	margin: 0 0 8px;
	font-size: 22px;
	color: #333;
	border: none;
	padding: 0;
}

.ns-cart-empty p {
	color: #888;
	margin: 0;
}

/*
* ns-cart-contact-info
*/
.ns-cart-contact-info p {
	line-height: 1.8;
	margin: 0 0 10px 0;
}

.ns-cart-contact-info p:last-child {
	margin-bottom: 0;
}

/*
* ns-cart-contact
*/
.ns-cart-contact {
	display: block;
	padding: 12px 16px;
	margin-bottom: 10px;
	cursor: pointer;
	transition: border-color 0.15s, box-shadow 0.15s;
	text-decoration: none;
	color: #333;
}

.ns-cart-contact:hover {
	border-color: #855B9A;
	box-shadow: 0 4px 16px rgba(103, 50, 129, 0.18);
	color: #333;
	text-decoration: none;
}

.ns-cart-contact.active {
	border-color: #673281;
}

.ns-cart-contact:last-child {
	margin-bottom: 0;
}

.ns-cart-contact .ns-cart-contact-address {
	color: #888;
	font-size: 13px;
}

/*
* ns-cart-mobile
*/
@media (max-width: 767px) {
	.ns-cart-mobile .ns-cart-mobile-row {
		padding: 12px 0;
		border-bottom: 1px solid #ede8f2;
	}

	.ns-cart-mobile .ns-cart-mobile-row:last-child {
		border-bottom: none;
		padding-bottom: 0;
	}

	.ns-cart-mobile .ns-cart-mobile-row-sub {
		position: relative;
	}

	.ns-cart-mobile .ns-cart-mobile-row-sub .ns-cart-mobile-name::before {
		content: '⤷';
		color: #b09cc0;
		position: absolute;
		left: -16px;
		top: 10px;
	}

	.ns-cart-mobile .ns-cart-mobile-name {
		font-weight: 600;
		color: #222;
		font-size: 14px;
		display: flex;
		justify-content: space-between;
		align-items: center;
		margin-bottom: 8px;
	}

	.ns-cart-mobile .ns-cart-mobile-meta {
		display: flex;
		font-size: 13px;
	}

	.ns-cart-mobile .ns-cart-mobile-meta > span {
		flex: 1;
		text-align: center;
	}

	.ns-cart-mobile .ns-cart-mobile-meta > span:first-child {
		text-align: left;
	}

	.ns-cart-mobile .ns-cart-mobile-meta > span:last-child {
		text-align: right;
	}

	.ns-cart-mobile .ns-cart-mobile-label {
		font-size: 11px;
		display: block;
		color: #555;
	}
}

/*
* ns-cart-terms
*/
.ns-cart-terms p {
	margin-bottom: 15px;
}

@media (max-width: 767px) {
	.ns-cart-terms .ns-btn-primary {
		display: block;
		width: 100%;
		text-align: center;
	}
}

@media (min-width: 768px) {
	.ns-cart-terms p {
		margin: 0;
	}

	.ns-cart-terms .row {
		display: flex;
		align-items: center;
	}

	.ns-cart-terms .row > [class*="col-"] {
		float: none;
	}
}

/*
* ns-cart-required
*/
.ns-cart-required {
	color: #c0392b;
	font-size: 16px;
}

/*
* ns-cart-admin
*/
.ns-cart-admin {
	margin-top: 20px;
}

/**
* ns-sign-links
*/
.ns-sign-links {
	display: flex;
	gap: 12px;
	margin-top: 12px;
	margin-bottom: 32px;
	flex-wrap: wrap;
}

.ns-sign-links .ns-sign-link {
	flex: 1;
	display: block;
	padding: 14px 16px;
	background: #fff;
	border: 1px solid #d9cee3;
	border-radius: 8px;
	box-shadow: 0 4px 16px rgba(103, 50, 129, 0.12);
	color: #673281;
	font-weight: 600;
	font-size: 14px;
	text-align: center;
	text-decoration: none;
	transition: box-shadow 0.15s, background 0.15s;
}

.ns-sign-links .ns-sign-link:hover {
	background: #f8f4fc;
	box-shadow: 0 6px 20px rgba(103, 50, 129, 0.18);
	color: #673281;
	text-decoration: none;
}

.ns-sign-links .ns-sign-link .fa-solid {
	color: #673281;
	margin-right: 6px;
}

/*
* ns-packages-row
*/
.ns-packages-row {
	padding-top: 24px;
}

.ns-packages-row .ns-pkg-col {
	position: relative;
	min-height: 1px;
	padding-left: 15px;
	padding-right: 15px;
	width: 100%;
	float: left;
}

.ns-packages-row .ns-package-card {
	cursor: pointer;
	transition: border-color 0.15s, box-shadow 0.15s, background 0.15s;
}

.ns-packages-row .ns-package-card:hover,
.ns-packages-row .ns-package-card.ns-package-active {
	border-color: #673281;
}

.ns-packages-row .ns-package-card.ns-package-active {
	background: #f8f4fc;
}

.ns-packages-row .ns-pkg-tier-icon {
	margin-bottom: 12px;
}

.ns-packages-row .ns-pkg-tier-icon i {
	display: inline-block;
	font-size: 26px;
	line-height: 1.2;
	color: #673281;
	background: linear-gradient(135deg, #673281, #9b6cb8);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
}

.ns-packages-row .ns-pkg-period {
	font-size: 13px;
	color: #888;
	margin-left: 2px;
}

.ns-packages-row .ns-package-popular {
	border-color: #673281;
	box-shadow: 0 6px 24px rgba(103, 50, 129, 0.22);
	position: relative;
}

.ns-packages-row .ns-pkg-sticker {
	position: absolute;
	top: -18px;
	left: 50%;
	transform: translateX(-50%);
	background: #673281;
	color: #fff;
	font-size: 11px;
	font-weight: 700;
	padding: 2px 10px;
	border-radius: 20px;
	white-space: nowrap;
	letter-spacing: 0.03em;
}

@media (min-width: 768px) {
	.ns-packages-row .ns-pkg-col {
		width: 50%;
	}
}

@media (min-width: 992px) {
	.ns-packages-row .ns-pkg-col {
		width: 33.3333%;
	}
}

@media (min-width: 1200px) {
	.ns-packages-row .ns-pkg-col {
		width: 20%;
	}
}

/**
* ns-dc-content
*/
.ns-dc-content p {
	font-size: 15px;
	line-height: 1.8;
	color: #444;
	margin-bottom: 0;
}

.ns-dc-content h2 {
	font-weight: 700;
	margin-top: 0;
	margin-bottom: 16px;
}

/**
* Cookie Consent
*/
#cc-main .cm {
	border: 1px solid #ddd;
	box-shadow: 0 16px 56px rgba(0, 0, 0, 0.32) !important;
}

#cc-main .cm__title,
#cc-main .cm .cm__title {
	padding: 2rem 2rem 0.6rem 2rem !important;
}

#cc-main .cm__desc,
#cc-main .cm .cm__desc {
	padding: 0 2rem 2rem 2rem !important;
}

#cc-main .cm__btns,
#cc-main .cm .cm__btns,
#cc-main .cm__links,
#cc-main .cm .cm__links {
	padding: 1rem 2rem 2rem 2rem !important;
}
