@import url('https://fonts.googleapis.com/css2?family=Rubik:wght@400;500&display=swap');

* {
    -webkit-tap-highlight-color: transparent;
	outline: none;
}

html {
	width: 100%;
	height: 100%;
	background: #111;
	color: #fff;
	font-family: 'Rubik', sans-serif;
	font-size: 18px;
	font-weight: 400;
	position: relative;
}

body {
	width: 100%;
	height: 100%;
	margin: 0;
}

main {
	height: -webkit-fit-content;
	height: -moz-fit-content;
	height: fit-content;
	max-width: 1920px;
	margin: 0 auto;
	padding: 0 40px;
	padding-bottom: 45px;
	-webkit-transition: all .3s ease;
	-o-transition: all .3s ease;
	transition: all .3s ease;
}

@media (max-width: 768px) {
	html {
		font-size: 12px;
	}
	main {
		padding: 0 10px;
        padding-top: 25px;
        padding-bottom: 30px;
	}
}

@media (max-width: 1439px) {
	html {
		font-size: 14px;
	}
}

h1 {
	font-size: 72px;
	font-weight: 465;
	color: #fff;
	line-height: 1.2;
	margin: 0;
}

@media (max-width: 768px) {
	h1 {
		font-size: 32px;
		line-height: 1.5;
	}
}


h2,
.delete-domain {
	font-size: 48px;
	font-weight: 445;
	color: #fff;
	line-height: 1;
	margin: 0;
}

@media (max-width: 768px) {
	h2,
	.delete-domain {
		font-size: 23px;
	}
}

p {
	text-align: left;
	color: #fff;
	margin: 0;
}

span {
	color: #fff;
	font-size: 18px;
	letter-spacing: 0em;
	text-align: left;
}

@media (max-width: 1439px) {
	span {
		font-size: 14px;
	}
}

@media (max-width: 768px) {
	span {
		font-size: 12px;
	}
}

li {
	list-style: none;
    padding: 0;
    margin: 0;
}

/* ------------------ */

.preloader {
	position: fixed;
	left: 0;
	top: 0;
	width: 100vw;
	height: 100vh;
	z-index: 999998;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-backdrop-filter: blur(5px);
	backdrop-filter: blur(5px);
	background-color: rgba(0, 0, 0, .5);
	visibility: visible;
	opacity: 1;
	-webkit-transition: 0.3s all;
	-o-transition: 0.3s all;
	transition: 0.3s all;
}

.preloader span {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	width: 70px;
	height: 70px;
	border: 2px solid;
	border-radius: 50%;
	border-color: #fff #fff transparent;
	-webkit-animation: cssload-spin 690ms infinite linear;
	animation: cssload-spin 690ms infinite linear;
}

@-webkit-keyframes cssload-spin {
	100% {
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg);
		transform: rotate(360deg);
	}
}

@keyframes cssload-spin {
	100% {
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg);
		transform: rotate(360deg);
	}
}

.loaded .preloader {
	visibility: hidden;
	opacity: 0;
}

/* ------------------ */

header {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	height: 97px;
	max-width: 1920px;
	margin: 0 auto;
	padding: 0 40px;
}

@media (max-width: 768px) {
	header {
		padding: 0 10px;
		height: 100px;
	}
}

a {
	text-decoration: none;
	cursor: pointer;
	-webkit-transition: all .3s ease;
	-o-transition: all .3s ease;
	transition: all .3s ease;
	color: #fff;
}

.active-item {
	border-bottom: 1px solid;
}

button {
	color: #fff;
	text-decoration: none;
	border: 1px solid #fff;
	background-color: inherit;
	cursor: pointer;
	font-size: 18px;
	font-weight: 400;
	font-family: 'Rubik', sans-serif;
	-webkit-transition: all .3s ease;
	-o-transition: all .3s ease;
	transition: all .3s ease;
	border-radius: 6px;
	white-space: nowrap;
	padding: 5px 10px;
}

@media (max-width: 768px) {
	button {
		font-size: 14px;
	}
}

button:focus,
button:hover {
	border-color: #fff;
	color: #111;
	background-color: #fff;
}

.hidden {
    display: none;
}

input {
	font-family: 'Rubik', sans-serif;
	color: #fff;
	border-radius: 6px;
	background-color: inherit;
	-webkit-box-sizing: border-box;
	        box-sizing: border-box;
	border: 1px solid #888888;
	font-size: 18px;
	outline: none;
	width: 100%;
	min-width: 150px;
    height: 100%;
	-webkit-transition: all .3s ease;
	-o-transition: all .3s ease;
	transition: all .3s ease;
	padding: 5px 10px;
}

input:focus,
input:hover {
	border-color: #fff;
}

input::-webkit-search-cancel-button,
input::-webkit-search-clear-button {
	-webkit-appearance: none;
	appearance: none;
	display: none;
}

input::-webkit-input-placeholder {
	color: #888888;
}

input::-webkit-input-placeholder,
input::-moz-placeholder,
input:-ms-input-placeholder,
input::-ms-input-placeholder,
input::placeholder {
	color: #888888;
}

.header-panel nav {
	display: none;
	-webkit-transition: all .3s ease;
	-o-transition: all .3s ease;
	transition: all .3s ease;
}

.header-panel {
	position: relative;
}

@media (max-width: 768px) {
	.header-panel nav {
		position: absolute;
		bottom: -15%;
		left: 50%;
		-webkit-transform: translate(-50%);
		    -ms-transform: translate(-50%);
		        transform: translate(-50%);
	}
	input {
		font-size: 14px;
	}
}

.logo {
	max-width: 197px;
	height: 100%;
}

.overlay {
	opacity: 0;
	visibility: hidden;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
    height: 100%;
	background-color: rgba(0, 0, 0, .5);
	z-index: 20;
	-webkit-transition: all .5s ease;
	-o-transition: all .5s ease;
	transition: all .5s ease;
	-webkit-backdrop-filter: blur(5px);
	backdrop-filter: blur(5px);
}

.modal {
	opacity: 0;
	visibility: hidden;
	width: -webkit-max-content;
	width: -moz-max-content;
	width: max-content;
    height: -webkit-max-content;
    height: -moz-max-content;
    height: auto;
	min-width: 300px;
	max-width: 500px;
	font-size: 18px;
	position: fixed;
	top: 50%;
	right: 50%;
	-webkit-transform: translate(50%, -50%);
	    -ms-transform: translate(50%, -50%);
	        transform: translate(50%, -50%);
	z-index: 25;
	-webkit-box-shadow: 0px -5px 5px -5px rgba(0, 0, 0, .2);
	        box-shadow: 0px -5px 5px -5px rgba(0, 0, 0, .2);
	border: 1px solid;
	background-color: #111;
    border-radius: 6px;
	color: #fff;
	-webkit-transition: all .3s ease;
	-o-transition: all .3s ease;
	transition: all .3s ease;
}

.modal-body {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	display: -webkit-flex;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 15px;
	text-align: center;
	margin: auto;
    padding: 60px;
	width: auto;
	height: 100%;
	overflow-wrap: break-word;
	-webkit-overflow-scrolling: touch;
}

@media (max-width: 768px) {
	.modal-body {
		padding: 20px;
	}
}

.modal-title {
	max-width: 300px;
}

.modal.active,
.overlay.active {
	opacity: 1;
	visibility: visible;
}

.modal__cross {
	width: 15px;
	height: 15px;
	text-align: center;
	position: absolute;
	top: 10px;
	right: 10px;
	cursor: pointer;
	-webkit-transition: all .3s ease;
	-o-transition: all .3s ease;
	transition: all .3s ease;
}

.modal__cross path {
	cursor: pointer;
}

.modal__cross:hover {
	fill: #888888;
	color: #888888;
}

.user-body {
    width: 100%;
    height: 100%;
}

.user-top {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 0 40px;
}

.form-admin-login {
    width: 100%;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 15px;
}

.header-panel nav ul {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	gap: 15px;
	padding: 0;
}

.header-panel-login,
.header-panel-logout {
	font-family: 'Rubik', sans-serif;
	font-size: 24px;
	min-width: none;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	gap: 15px;
	width: 100%;
	width: -webkit-max-content;
	width: -moz-max-content;
	width: max-content;
	min-width: 110px;
}

.header-panel-login {
	margin-right: 20px;
}

.header-panel-logout {
	text-align: right;
	margin-left: 20px;
}

.header-panel-login, 
.no-data {
	color: #888888;
}

.header-settings {
	font-size: 0 !important;
}

.header-settings svg {
	fill: #fff;
	width: 100%;
	height: 100%;
	max-width: 20px;
	-webkit-transition: all .3s ease;
	-o-transition: all .3s ease;
	transition: all .3s ease;
}

@media (max-width: 768px) {
	.header-settings svg {
		max-width: 15px;
	}
}

.header-settings svg:hover,
.header-settings svg:focus {
	-webkit-transform: rotate(180deg);
	    -ms-transform: rotate(180deg);
	        transform: rotate(180deg);
	border: 0;
}

@media (max-width: 768px) {
	.header-panel-login,
	.header-panel-logout {
		font-size: 20px;
	}
	.header-panel-logout {
		-webkit-box-pack: end;
		    -ms-flex-pack: end;
		        justify-content: end;
	}
}

.landings-img {
	position: fixed;
	bottom: 0;
	right: 40px;
}

.landings-img img {
	width: 50px;
	height: 50px;
	-webkit-transition: all .3s ease;
	-o-transition: all .3s ease;
	transition: all .3s ease;
}

.landings-img img:hover,
.landings-img img:focus {
	filter: invert(100%);
	-webkit-filter: invert(100%);
	-moz-filter: invert(100%);
}

.domain-items {
	display: -ms-grid;
	display: grid;
	-ms-grid-columns: 1fr 10px;
	grid-template-columns: repeat(4, 1fr);
	grid-column-gap: 10px;
	grid-row-gap: 10px;
}

@media (max-width: 768px) {
	.domain-items {
		display: -ms-grid;
		display: grid;
		-ms-grid-columns: 1fr 5px;
		grid-template-columns: repeat(4, 1fr);
		grid-column-gap: 5px;
		grid-row-gap: 5px;
	}
}

.domain-item {
	position: relative;
	color: #fff;
	border: 1px solid #888888;
	border-radius: 6px;
	height: 50px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
	-webkit-box-align: start;
	    -ms-flex-align: start;
	        align-items: start;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	gap: 5%;		
	padding: 5px 10px;
	width: auto;
	overflow: auto;
	-webkit-transition: all .3s ease;
	-o-transition: all .3s ease;
	transition: all .3s ease;
	cursor: default;
}

@media (max-width: 768px) {
	.domain-items {
		-ms-grid-columns: repeat(2, 1fr);
		grid-template-columns: repeat(2, 1fr);
	}

	.domain-item {
		height: 35px;
		padding: 5px;
	}
}

.domain-item span {
	max-width: 90%;
	overflow: auto;
	-webkit-transition: all .3s ease;
	-o-transition: all .3s ease;
	transition: all .3s ease;
}

.domain-item span::-webkit-scrollbar{
	width: 0;
	height: 0;
	background-color: inherit;
}

.domain-item:hover,
.domain-item:focus {
	border: 1px solid #fff;
}

.domain-cross {
	position: absolute;
	top: 5px;
	right: 5px;
	width: 15px;
	cursor: pointer;
	fill: #fff;
	-webkit-transition: all .3s ease;
	-o-transition: all .3s ease;
	transition: all .3s ease;
}

.domain-open {
	position: absolute;
	top: 4px;
	right: 20px;
	width: 15px;
	cursor: pointer;
	-webkit-transition: all .3s ease;
	-o-transition: all .3s ease;
	transition: all .3s ease;
}

.domain-cross:hover,
.domain-open:hover {
	-webkit-transform: scale(1.3);
	    -ms-transform: scale(1.3);
	        transform: scale(1.3);
}

.stats-under-domain {
	-webkit-transition: all .3s ease;
	-o-transition: all .3s ease;
	transition: all .3s ease;
	width: 100%;
	overflow: auto;
}

.stats-under-under-domain {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: start;
	    -ms-flex-pack: start;
	        justify-content: flex-start;
	gap: 5px;
}

.stats-under-domain p {
	font-size: 11px;	
	color: #888888;
}

.stats-under-domain::-webkit-scrollbar {
	width: 0;
	height: 0;
}

@media (max-width: 768px) {
	.domain-item span {
		max-width: 75%;
		line-height: 1;
	}
}

.cloak-set,
.spam-test{
    font-size: 11px;
    cursor: pointer;
}

.table-visits,
.table-clicks,
.domain-list {
	border-radius: 6px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
	gap: 10px;
}

@media (max-width: 1439px) {
	.table-visits,
	.table-clicks,
	.domain-list {
		gap: 5px;
	}
	.table-visits,
	.table-clicks,
	.table-links,
	.table-links-history {
		min-width: 1400px;
		padding-right: 10px;
	}
}

@media (max-width: 768px) {
	.table-visits,
	.table-clicks,
	.table-links,
	.table-comments,
	.table-links-history {
		min-width: 790px;
		padding-right: 10px;
	}
}

.table-visits::-webkit-scrollbar,
.table-clicks::-webkit-scrollbar,
.domain-items::-webkit-scrollbar {
	width: 5px;
	background-color: inherit;
}

.table-visits::-webkit-scrollbar-thumb,
.table-clicks::-webkit-scrollbar-thumb,
.domain-items::-webkit-scrollbar-thumb {
	border-radius: 10px;
	background-color: #fff;
}

.table-top,
.table-item {
	display: -ms-grid;
	display: grid;
	grid-column-gap: 10px;
	grid-row-gap: 0px;
}

@media (max-width: 1439px) {
	.table-top,
	.table-item {
		grid-column-gap: 5px;
	}
}

.table-visits .table-top,
.table-visits .table-item {
	-ms-grid-columns: 0.5fr repeat(10, 1fr);
	grid-template-columns: 0.5fr repeat(10, 1fr);
}

.table-clicks .table-top,
.table-clicks .table-item {
	-ms-grid-columns: 0.5fr repeat(11, 1fr);
	grid-template-columns: 0.5fr repeat(11, 1fr);
}

.table-clicks-only {
	display: block !important;
}

.table-clicks-only .table-top,
.table-clicks-only  .table-item {
	-ms-grid-columns: 0.5fr repeat(6, 1fr) !important;
	grid-template-columns: 0.5fr repeat(6, 1fr) !important;
	
}

.table-clicks-only .table-top {
	padding-top: 45px !important;	
}

.table-clicks-only  .table-item {
	margin-top: 10px !important;
}

.table-top span,
.table-item span {
	text-align: center;
	border: 1px solid #888888;
	border-radius: 6px;
	padding: 5px 10px;
}

.table-item span {
	height: 50px;
	line-height: 1;
	overflow-y: auto;
	overflow-x: auto;
}


.table-item span:not(.item):not(.link) {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
}

.table-item .item {
	text-align: left;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: baseline;
	    -ms-flex-align: baseline;
	        align-items: baseline;
	height: 50px;
	font-size: 14px;
}

@media (max-width: 1439px) {
	.table-item span,
	.table-item .item {
		height: 30px;
	}
}

@media (max-width: 768px) {
	.table-item span,
	.table-item .item {
		height: 25px;
		font-size: 12px;
	}

	.table-top span,
	.table-item span {
		padding: 5px;
	}
}

.table-item .link {
	overflow: auto;
	text-align: left;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: baseline;
		-ms-flex-pack: baseline;
			justify-content: baseline;
}

.table-item span::-webkit-scrollbar{
	width: 5px;
	height: 5px;
	background-color: inherit;
}

.table-item span::-webkit-scrollbar-thumb {
	border-radius: 10px;
	background-color: #fff;
}

.table-settings {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
	gap: 10px;
}

.table-settings .table-top,
.table-settings .table-item {
	display: -ms-grid;
	display: grid;
	-ms-grid-columns: 1fr 10px 1fr;
	grid-template-columns: repeat(2, 1fr);
	grid-column-gap: 10px;
	grid-row-gap: 0px;	
}

@media (max-width: 768px) {
	.table-settings {
		gap: 5px;
	}
	.table-settings .table-top,
	.table-settings .table-item {
		-ms-grid-columns: repeat(1, 1fr);
		grid-template-columns: repeat(1, 1fr);
		grid-row-gap: 5px;
	}
}

.table-visits, .table-clicks, .table-links, .table-comments, .table-settings {
	display: none;
}

.table-links,
.table-links-history,
.table-comments  {
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
	gap: 10px;
}

@media (max-width: 768px) {
	.table-links,
	.table-links-history,
	.table-comments  {
		gap: 5px;
	}
}

.table-links .table-top,
.table-links .table-item {
	-ms-grid-columns: repeat(2, 0.5fr) repeat(1, 1fr) repeat(3, 0.5fr);
	grid-template-columns: repeat(2, 0.5fr) repeat(1, 1fr) repeat(3, 0.5fr);
}

.table-comments .table-top,
.table-comments .table-item {
	-ms-grid-columns: repeat(2, 0.5fr) repeat(1, 1fr) repeat(2, 0.5fr);
	grid-template-columns: repeat(2, 0.5fr) repeat(1, 1fr) repeat(2, 0.5fr);
}

.table-links-history .table-item {
	-ms-grid-columns: 0.5fr repeat(2, 1fr) 0.5fr;
	grid-template-columns: 0.5fr repeat(2, 1fr) 0.5fr;
}

.table-buttons {
	width: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	gap: 10px;
}

.table-buttons button {
	width: 100%;
}

.settings-forms {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	gap: 10px;
	color: #fff;
	width: 100%;
	height: 100%;
}

@media (max-width: 768px) {
	.settings-forms {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		    -ms-flex-direction: column;
		        flex-direction: column;
		gap: 5px;
	}
}

#settings_submit {
	width: 100%;
	margin-top: 10px;
}

#admin_form {
	position: relative;
}

.settings-form {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	gap: 20px;
	padding: 40px;
	border: 1px solid #888888;
	border-radius: 6px;
	width: 100%;
}

@media (max-width: 768px) {
	#settings_submit {
		width: 100%;
		margin-top: 5px;
	}
	.table-buttons {
		gap: 5px;
	}
	.settings-form {
		width: auto;
	}
}

.table-item .table-input {
	padding: 0;
	border: none;
	min-height: 100%;
}

.table-item .table-input input {
	text-align: center;
}

.label-form {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
	gap: 5px;
}

.delete-link,
.delete-comment {
	border: none;
	background-color: inherit;
	padding: 0;
}

.delete-link:hover,
.delete-link:focus,
.delete-comment:hover,
.delete-comment:focus {
	border: none;
	background-color: inherit;
}

.link-form .table-item,
.link-history-form .table-item,
.table-comments .table-item {
	margin-bottom: 10px ;
}

@media (max-width: 768px) {
	.link-form .table-item,
	.link-history-form .table-item {
		margin-bottom: 5px ;
	}
}

.link-form button:not(.delete-link) {
	width: 100%;
}

.red-input {
	border-color: #FF9E9E;
}

.green-input {
	border-color: #D6FF9E;
}

.red-input:focus,
.red-input:hover {
	border-color: #FF9E9E;
}

.green-input:focus,
.green-input:hover {
	border-color: #D6FF9E;
}

#password_match_message {
	position: absolute;
	left: 40px;
	bottom: 20px;
	font-size: 14px;
	-webkit-transition: all .3s ease;
	-o-transition: all .3s ease;
	transition: all .3s ease;
}

.response-message {
	width: -webkit-fit-content;
	width: -moz-fit-content;
	width: fit-content;
	display: none;
	z-index: 9999999;
	position: fixed;
	bottom: 10px;
	left: 10px;
	border-radius: 6px;
	color: #fff;
	border: 1px solid #fff;
	background-color: #111;
	text-decoration: none;
	font-size: 18px;
	font-family: 'Rubik', sans-serif;
	-webkit-transition: all .3s ease;
	-o-transition: all .3s ease;
	transition: all .3s ease;
	padding: 5px 10px;
}

.first-domain {
	position: fixed;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	    -ms-transform: translate(-50%, -50%);
	        transform: translate(-50%, -50%);
	width: 100%;
	text-align: center;
}

.first-domain button {
	width: auto;
}

.domain-block,
.domain-block-links {
	display: -webkit-box;
	display: -ms-flexbox;
	display: none;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	    -ms-flex-direction: row;
	        flex-direction: row;
	-webkit-box-align: end;
	    -ms-flex-align: end;
	        align-items: end;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
	width: 100%;
	margin-bottom: 30px;
	gap: 20px;
}

.domain-block-links-history {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	    -ms-flex-direction: row;
	        flex-direction: row;
	-webkit-box-align: end;
	    -ms-flex-align: end;
	        align-items: end;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
	width: 100%;
	margin-bottom: 30px;
	gap: 20px;
}

.domain-block h1,
.domain-block-links h1,
.domain-block-links-history h1 {
	width: auto;
	margin-bottom: -5px;
	line-height: 1.3;
}

.domain-case {
	overflow-x: auto;
	overflow-y: hidden;
	display: block;
	padding: 0;
}

.domain-case::-webkit-scrollbar {
	display: none;
}

.sorting {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	gap: 10px;
	text-align: right;
	font-size: 24px;
	white-space: nowrap;
}

#sorting {
	-ms-appearance: none;
	-moz-appearance: none;
	-webkit-appearance: none;
	appearance: none!important;
	padding: 5px;
    font-size: 18px;
	font-family: 'Rubik', sans-serif;
	background-color: #111;
	color: #fff;
	border-radius: 6px;
	border: 1px solid;
	text-align: center;
	-webkit-transition: all .3s ease;
	-o-transition: all .3s ease;
	transition: all .3s ease;
	cursor: pointer;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
}

.table-admin {
	display: none;
	text-align: center;
	border: 1px solid #888888;
	padding: 5px 10px;
	border-radius: 6px;
}

@media (max-width: 768px) {
	.sorting {
		font-size: 14px;
	}

	#sorting {
		font-size: 12px;
	}

	.admin-span {
		display: none;
	}

	.table-admin {
		display: block;
	}
}

.total-stats {
	display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    gap: 5px;
	margin-bottom: 5px;
	width: auto;
	overflow: auto;
}

.total-stats::-webkit-scrollbar {
	display: none;
}

.total-stats span {
	white-space: nowrap;
	font-size: 11px;
    color: #888888;
}

.split-test {
	white-space: nowrap;
}

.split-set,
.delete-all-history {
	color: #888888;
	cursor: pointer;
}