@import "korolev.css";

* {
	padding: 0;
	margin: 0;
	word-wrap: break-word;
	box-sizing: border-box;
}

html, body {
	font-family: 'Graphik LCG', sans-serif;
	min-height: 100%;
	width: 100%;
	font-size: 16px;
	color: #fff;
	background-color: #1a1b26;
}

body {
	position: relative;
}

a {
	text-decoration: none;
	color: rgba(255,255,255,0.5);
}

a:hover {
	color: #fff;
}

select,
input[type="checkbox"],
input[type="radio"],
input[type="submit"],
input[type="button"],
button,
.btn {
	cursor: pointer;
}

img {
	max-width: 100%;
	height: auto;
}

p {
	margin: 0 0 10px;
	display: block;
}

hr {
	margin: 20px 0;
}

.block {
	display: block;
	width: 100%;
}

.text-bold {
	font-weight: bold;
}

.text-left {
	text-align: left;
}

.text-right {
	text-align: right;
}

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

.text-upper {
	text-transform: uppercase;
}

.btn {
	display: inline-block;
	height: 54px;
	line-height: 54px;
	text-align: center;
	padding: 0 25px;
	font-size: 16px;
	outline: none;
	border: 0;
	cursor: pointer;
	font-weight: 500;
	background: linear-gradient(90deg, #f42e2e 0%, #b235d5 100%);
	transition: all 450ms cubic-bezier(0.23, 1, 0.32, 1) 0ms;
	border-radius: 7px;
	font-family: 'Graphik LCG', sans-serif;
	color: #fff;
	position: relative;
}

.btn:hover {
	box-shadow: 0 0 10px rgba(237, 151, 255, 0.6);
}

.btn.btn-clear {
	background: none;
	box-shadow: none;
	border: none;
	color: #BDBDBD;
}

.btn.btn-clear:hover {
	box-shadow: none;
}

.btn.btn-clear:active,
.btn.btn-clear.active{
	background: rgba(0,0,0,0.2);
}

.btn .bx {
	position: relative;
	top: -1px;
}

.a-alert {
	position: fixed;
	bottom: 0;
	display: block;
	z-index: 9999;
	width: 580px;
	left: calc(50% - 290px);
}

.a-alert .alert-id {
	display: none;
	margin-bottom: 20px;
	background-color: #272838;
	color: #7b7d95;
	border-radius: 7px;
	padding: 25px 35px;
	box-shadow: rgba(0, 0, 0, 0.12) 0 1px 6px, rgba(0, 0, 0, 0.12) 0 1px 4px;
	position: relative;
}

.a-alert .alert-id > .footer-block {
	padding-top: 8px;
	text-align: right;
}

.a-alert .alert-id .close {
	position: absolute;
	right: 16px;
	top: 8px;
	background: none;
	border: none;
	line-height: 20px;
	height: 20px;
	width: 20px;
	text-align: center;
}

.a-alert > .alert {

}

.col-black {
	color: #000;
}

.col-deep-purple {
	color: #4CAF50;
}

.col-pink {
	color: #ed97ff;
}

.input-block {
	position: relative;
}

.input-block > label {
	display: block;
	width: 100%;
	height: 28px;
	line-height: 28px;
	text-align: center;
	font-size: 14px;
	color: #BDBDBD;
	cursor: pointer;
	margin-bottom: 4px;
	white-space: nowrap;
	text-overflow: ellipsis;
	overflow: hidden;
}

.input-block > input,
.input-block > select,
.input-block > textarea{
	display: block;
	width: 100%;
	padding: 10px 15px;
	text-align: center;
	border: 1px solid rgb(211, 217, 222);
	outline: none;
	background-color: #fff;
	font-size: 14px;
	transition: all 450ms cubic-bezier(0.23, 1, 0.32, 1) 0ms;
	border-radius: 4px;
}

.input-block > textarea {
	min-height: 144px;
	max-width: 100%;
	min-width: 100%;
}

.input-block > .help-block {
	position: absolute;
	display: none;
	top: 100%;
	line-height: 20px;
	height: 20px;
	left: 0;
	width: 100%;
	text-align: center;
	font-size: 12px;
	color: #C8E6C9;
}

.input-block:hover > .help-block {
	display: block;
}

.window {
	display: block;
	border-radius: 4px;
	background-color: #272838;
	padding: 20px;
	box-shadow: 20px 20px 30px rgba(0, 0, 0, 0.15);
}

.label {
	border-radius: 4px;
	background-color: #ccc;
	color: #333;
	padding: 0 5px;
}

.label.label-danger {
	color: #fff;
	background: linear-gradient(to top right, #ffca28, #ffb300, #ffa000, #ffca28);
}

.container {
	width: 1330px;
	display: block;
	margin-left: auto;
	margin-right: auto;
	padding-right: 25px;
	padding-left: 25px;
}

body > .container {
	min-height: calc(100vh - 105px - 313px);
	padding-top: 114px;
}

.double-block {
	display: grid;
	grid-gap: 20px;
	grid-template-columns: repeat(2, 1fr);
}

.row-2,
.row-3,
.row-4,
.row-5,
.row-6 {
	display: grid;
	grid-gap: 20px;
	grid-template-columns: repeat(2, 1fr);
}

.row-3 {
	grid-template-columns: repeat(3, 1fr);
}

.row-4 {
	grid-template-columns: repeat(4, 1fr);
}

.row-5 {
	grid-template-columns: repeat(5, 1fr);
}

.row-6 {
	grid-template-columns: repeat(6, 1fr);
}

body > .header {
	min-height: 114px;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 5;
}

.navbar {
	position: relative;
}

.navbar > .girland {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100px;
	background-position: top left;
	background-repeat: repeat-x;
	background-image: url("../img/wire.png");
	z-index: -1;
}

.navbar > .girland:after,
.navbar > .girland:before {
	content: "";
	display: block;
	width: 2px;
	height: 12px;
	position: absolute;
	left: 0;
	top: 0;
	background-color: #868686;
}

.navbar > .girland:after {
	left: auto;
	right: 0;
}

.navbar > .girland > ul > li {
	list-style: none;
	display: block;
	width: 20px;
	height: 20px;
	border-radius: 50%;
	background-color: #00E676;
	position: absolute;
	top: 21px;
	left: 33px;
	-webkit-box-shadow: 0 0 20px 0 rgba(0, 230, 118, 1), 0 0 20px 0 rgba(0, 230, 118, 1);
	-moz-box-shadow: 0 0 20px 0 rgba(0, 230, 118, 1), 0 0 20px 0 rgba(0, 230, 118, 1);
	box-shadow: 0 0 20px 0 rgba(0, 230, 118, 1), 0 0 20px 0 rgba(0, 230, 118, 1);
	opacity: 0.5;
}

.navbar > .girland > ul > li:nth-child(2) {
	background-color: #3D5AFE;
	width: 24px;
	height: 24px;
	top: 40px;
	left: 184px;
	-webkit-box-shadow: 0 0 20px 0 rgba(61, 90, 254, 1), 0 0 20px 0 rgba(61, 90, 254, 1);
	-moz-box-shadow: 0 0 20px 0 rgba(61, 90, 254, 1), 0 0 20px 0 rgba(61, 90, 254, 1);
	box-shadow: 0 0 20px 0 rgba(61, 90, 254, 1), 0 0 20px 0 rgba(61, 90, 254, 1);
}

.navbar > .girland > ul > li:nth-child(3) {
	background-color: #ffc400;
	left: 340px;
	top: 20px;
	-webkit-box-shadow: 0 0 20px 0 rgba(255, 196, 0, 1), 0 0 20px 0 rgba(255, 193, 7, 1);
	-moz-box-shadow: 0 0 20px 0 rgba(255, 196, 0, 1), 0 0 20px 0 rgba(255, 196, 0, 1);
	box-shadow: 0 0 20px 0 rgba(255, 196, 0, 1), 0 0 20px 0 rgba(255, 196, 0, 1);
}

.navbar > .girland > ul > li:nth-child(4) {
	background-color: #6200ea;
	left: 424px;
	top: 20px;
	-webkit-box-shadow: 0 0 20px 0 rgba(98, 0, 234, 1), 0 0 20px 0 rgba(98, 0, 234, 1);
	-moz-box-shadow: 0 0 20px 0 rgba(98, 0, 234, 1), 0 0 20px 0 rgba(98, 0, 234, 1);
	box-shadow: 0 0 20px 0 rgba(98, 0, 234, 1), 0 0 20px 0 rgba(98, 0, 234, 1);
}

.navbar > .girland > ul > li:nth-child(5) {
	background-color: #FF1744;
	width: 24px;
	height: 24px;
	top: 40px;
	left: 576px;
	-webkit-box-shadow: 0 0 20px 0 rgba(255, 23, 68, 1), 0 0 20px 0 rgba(255, 23, 68, 1);
	-moz-box-shadow: 0 0 20px 0 rgba(255, 23, 68, 1), 0 0 20px 0 rgba(255, 23, 68, 1);
	box-shadow: 0 0 20px 0 rgba(255, 23, 68, 1), 0 0 20px 0 rgba(255, 23, 68, 1);
}

.navbar > .girland > ul > li:nth-child(6) {
	background-color: #1de9b6;
	left: 732px;
	top: 20px;
	-webkit-box-shadow: 0 0 20px 0 rgba(29, 233, 182, 1), 0 0 20px 0 rgba(29, 233, 182, 1);
	-moz-box-shadow: 0 0 20px 0 rgba(29, 233, 182, 1), 0 0 20px 0 rgba(29, 233, 182, 1);
	box-shadow: 0 0 20px 0 rgba(29, 233, 182, 1), 0 0 20px 0 rgba(29, 233, 182, 1);
}

.navbar > .girland > ul > li:nth-child(7) {
	background-color: #c6ff00;
	left: 816px;
	top: 20px;
	-webkit-box-shadow: 0 0 20px 0 rgba(198, 255, 0, 1), 0 0 20px 0 rgba(198, 255, 0, 1);
	-moz-box-shadow: 0 0 20px 0 rgba(198, 255, 0, 1), 0 0 20px 0 rgba(198, 255, 0, 1);
	box-shadow: 0 0 20px 0 rgba(198, 255, 0, 1), 0 0 20px 0 rgba(198, 255, 0, 1);
}

.navbar > .girland > ul > li:nth-child(8) {
	background-color: #00b0ff;
	width: 24px;
	height: 24px;
	top: 40px;
	left: 968px;
	-webkit-box-shadow: 0 0 20px 0 rgb(0, 176, 255), 0 0 20px 0 rgb(0, 176, 255);
	-moz-box-shadow: 0 0 20px 0 rgb(0, 176, 255), 0 0 20px 0 rgb(0, 176, 255);
	box-shadow: 0 0 20px 0 rgb(0, 176, 255), 0 0 20px 0 rgb(0, 176, 255);
}

.navbar > .girland > ul > li:nth-child(9) {
	background-color: #d500f9;
	left: 1124px;
	top: 20px;
	-webkit-box-shadow: 0 0 20px 0 rgb(213, 0, 249), 0 0 20px 0 rgb(213, 0, 249);
	-moz-box-shadow: 0 0 20px 0 rgb(213, 0, 249), 0 0 20px 0 rgb(213, 0, 249);
	box-shadow: 0 0 20px 0 rgb(213, 0, 249), 0 0 20px 0 rgb(213, 0, 249);
}

@keyframes girland {
	to {
		-webkit-box-shadow: 0 0 0 0 transparent;
		-moz-box-shadow: 0 0 0 0 transparent;
		box-shadow: 0 0 0 0 transparent;
		opacity: 0.4;
	}
}

@-webkit-keyframes girland {
	to {
		-webkit-box-shadow: 0 0 0 0 transparent;
		-moz-box-shadow: 0 0 0 0 transparent;
		box-shadow: 0 0 0 0 transparent;
		opacity: 0.4;
	}
}

.navbar > .girland > ul > li {
	-webkit-animation: girland 0.6s ease-in infinite alternate;
	-moz-animation: girland 0.6s ease-in infinite alternate;
	-ms-animation: girland 0.6s ease-in infinite alternate;
	-o-animation: girland 0.6s ease-in infinite alternate;
	animation: girland 0.6s ease-in infinite alternate;
}

.navbar > .girland > ul > li:nth-child(2),
.navbar > .girland > ul > li:nth-child(4),
.navbar > .girland > ul > li:nth-child(6),
.navbar > .girland > ul > li:nth-child(8){
	animation-delay: 0.6s;
}

.navbar .navbar-mobile {
	position: absolute;
	top: 0;
	right: 0;
	line-height: 100px;
	height: 100px;
	width: 100px;
	display: none;
	text-align: center;
	z-index: 1;
	color: #fff;
	font-size: 20px;
}

.navbar > .navbar-wrapper {
	display: grid;
	grid-gap: 37px;
	grid-template-columns: 85px auto auto;
	align-items: start;
	padding: 30px 0;
	min-height: 114px;
}

.navbar > .navbar-wrapper > .block-left > ul,
.navbar > .navbar-wrapper > .block-center > ul,
.navbar > .navbar-wrapper > .block-right > ul {
	font-size: 0;
}

.navbar > .navbar-wrapper > .block-left > ul > li,
.navbar > .navbar-wrapper > .block-center > ul > li,
.navbar > .navbar-wrapper > .block-right > ul > li {
	list-style: none;
	font-size: 18px;
	font-weight: 400;
	display: inline-block;
	vertical-align: middle;
	position: relative;
	padding-right: 29px;
}

.navbar > .navbar-wrapper > .block-left > ul > li:last-child,
.navbar > .navbar-wrapper > .block-center > ul > li:last-child,
.navbar > .navbar-wrapper > .block-right > ul > li:last-child {
	padding: 0;
}

.navbar > .navbar-wrapper > .block-left > ul > li > a,
.navbar > .navbar-wrapper > .block-center > ul > li > a,
.navbar > .navbar-wrapper > .block-right > ul > li > a {
	display: block;
	width: 100%;
	color: #7b7d95;
	position: relative;
	transition: all 450ms cubic-bezier(0.23, 1, 0.32, 1) 0ms;
	line-height: 54px;
}

.navbar > .navbar-wrapper > .block-left > ul > li > a:hover,
.navbar > .navbar-wrapper > .block-center > ul > li > a:hover,
.navbar > .navbar-wrapper > .block-right > ul > li > a:hover,
.navbar > .navbar-wrapper > .block-left > ul > li.active > a,
.navbar > .navbar-wrapper > .block-center > ul > li.active > a,
.navbar > .navbar-wrapper > .block-right > ul > li.active > a {
	color: #f6f7f8;
}

.navbar > .navbar-wrapper > .block-left > ul > li > a > .fa,
.navbar > .navbar-wrapper > .block-center > ul > li > a > .fa,
.navbar > .navbar-wrapper > .block-right > ul > li > a > .fa {
	margin-left: 3px;
	position: relative;
	top: -1px;
}

.navbar > .navbar-wrapper > .block-right {
	text-align: right;
}

.navbar > .navbar-wrapper > .block-right .btn {
	min-width: 200px;
}

.navbar > .navbar-wrapper > .block-right .btn .bx {
	margin-right: 11px;
	font-size: 24px;
	vertical-align: middle;
}



.watermark {
	font-weight: 900;
	font-size: 72px;
	position: absolute;
	color: rgba(255,255,255,0.02);
	bottom: -23px;
	left: 0;
	line-height: normal;
	pointer-events: none;
	user-select: none;
	overflow: hidden;
}




.logo {
	height: 54px;
	display: block;
	width: 100%;
	font-family: "Korolev Heavy Italic", sans-serif;
	transition: all 450ms cubic-bezier(0.23, 1, 0.32, 1) 0ms;
	font-size: 28px;
	color: #fff;
	opacity: 0.9;
	text-transform: uppercase;
	text-align: center;
	line-height: 24px;
}

.logo:hover {
	opacity: 1;
}

.logo > .top,
.logo > .bottom {
	display: block;
}

.logo > .top {
	background: #ffa726;
	background: -webkit-linear-gradient(to right, #ffa726 0%, #ff9800 100%);
	background: -moz-linear-gradient(to right, #ffa726 0%, #ff9800 100%);
	background: linear-gradient(to right, #ffa726 0%, #ff9800 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.logo > .bottom {
	background: #ffee58;
	background: -webkit-linear-gradient(to right, #ffee58 0%, #ffeb3b 100%);
	background: -moz-linear-gradient(to right, #ffee58 0%, #ffeb3b 100%);
	background: linear-gradient(to right, #ffee58 0%, #ffeb3b 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}





.tabs .tab-links {
	font-size: 0;
}

.tabs .tab-links > li {
	list-style: none;
	font-size: 16px;
	display: inline-block;
	vertical-align: top;
	padding-right: 25px;
}

.tabs .tab-links > li:last-child {
	padding: 0;
}

.tabs .tab-links > li > a {
	display: block;
	width: 100%;
	padding: 24px 0;
	color: #4b4c63;
	font-weight: 600;
	transition: all 450ms cubic-bezier(0.23, 1, 0.32, 1) 0ms;
	text-transform: uppercase;
	border-bottom: 3px solid transparent;
	position: relative;
}

.tabs .tab-links > li.active > a {
	border-bottom: 3px solid #e476fb;
	color: #fff;
}

.tabs > .tab-list > .tab-id {
	display: none;
	padding-top: 20px;
}

.tabs > .tab-list > .tab-id.active {
	display: block;
}

footer {
	padding: 65px 0;
}

footer a {
	color: #ed97ff;
	transition: all 450ms cubic-bezier(0.23, 1, 0.32, 1) 0ms;
}

footer a:hover {
	color: #fff;
}

footer .footer-wrapper > .footer-grid {
	display: grid;
	grid-gap: 20px;
	grid-template-columns: repeat(4, 1fr);
	align-items: start;
}

footer .footer-wrapper > .footer-grid > .footer-grid-block {
	position: relative;
	padding: 17px 0 13px 0;
}

footer .footer-wrapper > .footer-grid > .footer-grid-block > .block-icon {
	position: absolute;
	background: linear-gradient(#e476fb, #7343df);
	opacity: 0.1;
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	font-size: 120px;
	right: -10px;
	top: -30px;
}

footer .footer-wrapper > .footer-grid > .footer-grid-block > .block-value {
	font-weight: 600;
	font-size: 36px;
	color: #e476fb;
	line-height: 1;
}

footer .footer-wrapper > .footer-grid > .footer-grid-block > .block-name {
	font-size: 18px;
	color: #7b7d95;
	padding-top: 13px;
	text-transform: uppercase;
}

footer .footer-wrapper > .footer-info {
	color: #7b7d95;
	font-size: 12px;
	padding-top: 40px;
}

footer .footer-wrapper > .footer-menu {
	font-size: 12px;
	padding-top: 19px;
	color: #7b7d95;
}

footer .footer-wrapper > .footer-menu > li {
	list-style: none;
}

footer .footer-copyright {
	padding: 10px 0;
	color: #b1b6b8;
	font-size: 12px;
}

footer .developer {
	display: inline-block;
	width: 48px;
	height: 48px;
	background: url("../img/qexy.png") no-repeat center;
	background-size: contain;
	opacity: 0.1;
	transition: all 450ms cubic-bezier(0.23, 1, 0.32, 1) 0ms;
}

footer .developer:hover {
	opacity: 1;
}

.modal {
	position: fixed;
	display: none;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	z-index: 20;
	background-color: rgba(0,0,0,0.5);
	padding: 20px;
	cursor: pointer;
}

.modal > .wrapper {
	display: grid;
	width: 620px;
	margin: auto;
	align-items: center;
	grid-template-columns: 100%;
	padding: 0 20px;
	height: calc(100vh - 40px);
	overflow: auto;
}

.modal > .wrapper > .modal-content {
	cursor: auto;
	background-color: #272838;
	color: #7b7d95;
	box-shadow: 20px 20px 30px rgba(0, 0, 0, 0.15);
	border-radius: 15px;
	position: relative;
}

.modal > .wrapper > .modal-content .btn-modal-close {
	position: absolute;
	top: 40px;
	right: 45px;
	z-index: 1;
	background: none;
	border: 0;
	outline: none;
	color: #1a1b26;
	font-size: 30px;
	line-height: 30px;
	height: 30px;
	width: 30px;
	text-align: center;
}

.modal > .wrapper > .modal-content > .modal-header {
	color: #f6f7f8;
	padding: 45px 75px 45px 45px;
	border-radius: 15px 15px 0 0;
	font-weight: bold;
	font-size: 24px;
}

.modal > .wrapper > .modal-content > .modal-footer {
	padding: 0 45px 45px 45px;
	text-align: right;
}

.modal > .wrapper > .modal-content > .modal-body {
	padding: 0 45px 45px 45px;
}

.modal > .wrapper > .modal-content > .modal-body input {
	height: 60px;
	line-height: 60px;
}

.modal > .wrapper {
	scrollbar-width: thin;
}

.modal > .wrapper::-webkit-scrollbar{
	width: 8px;
	height: 8px;
	background-color: #E0E0E0;
	border-radius: 2px;
	left: 5px;
}

.modal > .wrapper::-webkit-scrollbar-track{
	border-radius: 2px;
}

.modal > .wrapper::-webkit-scrollbar-thumb{
	background-color: #616161;
	border-radius: 2px;
}

.modal[data-id="restores"] > .wrapper,
.modal[data-id="restores-alert"] > .wrapper,
.modal[data-id="donate"] > .wrapper {
	width: 800px;
}

.modal[data-id="restores"] .restores > .restore-id.restore-header {
	font-weight: bold;
	text-transform: uppercase;
	font-size: 12px;
	color: #616161;
}

.modal[data-id="restores"] .restores > .restore-none {
	text-align: center;
	padding: 40px;
	color: #BDBDBD;
	text-transform: uppercase;
}

.modal[data-id="restores"] .restores > .restore-id {
	display: grid;
	grid-gap: 8px;
	grid-template-columns: 80px repeat(3, 1fr);
	align-items: center;
}

.modal[data-id="restores"] .restores > .restore-id > div {
	padding: 8px 0;
}

.modal[data-id="restores"] .restores > .restore-id > .login,
.modal[data-id="restores"] .restores > .restore-id > .password {
	text-align: center;
}

.modal[data-id="restores"] .restores > .restore-id > .date {
	text-align: right;
}

.p-0 { padding: 0; }
.p-4 { padding: 4px; }
.p-8 { padding: 8px; }
.p-12 { padding: 12px; }
.p-16 { padding: 16px; }
.p-20 { padding: 20px; }
.p-24 { padding: 24px; }
.p-28 { padding: 28px; }
.p-32 { padding: 32px; }
.p-36 { padding: 36px; }
.p-40 { padding: 40px; }

.pl-0 { padding-left: 0; }
.pl-4 { padding-left: 4px; }
.pl-8 { padding-left: 8px; }
.pl-12 { padding-left: 12px; }
.pl-16 { padding-left: 16px; }
.pl-20 { padding-left: 20px; }
.pl-24 { padding-left: 24px; }
.pl-28 { padding-left: 28px; }
.pl-32 { padding-left: 32px; }
.pl-36 { padding-left: 36px; }
.pl-40 { padding-left: 40px; }

.pr-0 { padding-right: 0; }
.pr-4 { padding-right: 4px; }
.pr-8 { padding-right: 8px; }
.pr-12 { padding-right: 12px; }
.pr-16 { padding-right: 16px; }
.pr-20 { padding-right: 20px; }
.pr-24 { padding-right: 24px; }
.pr-28 { padding-right: 28px; }
.pr-32 { padding-right: 32px; }
.pr-36 { padding-right: 36px; }
.pr-40 { padding-right: 40px; }

.pt-0 { padding-top: 0; }
.pt-4 { padding-top: 4px; }
.pt-8 { padding-top: 8px; }
.pt-12 { padding-top: 12px; }
.pt-16 { padding-top: 16px; }
.pt-20 { padding-top: 20px; }
.pt-24 { padding-top: 24px; }
.pt-28 { padding-top: 28px; }
.pt-32 { padding-top: 32px; }
.pt-36 { padding-top: 36px; }
.pt-40 { padding-top: 40px; }

.pb-0 { padding-bottom: 0; }
.pb-4 { padding-bottom: 4px; }
.pb-8 { padding-bottom: 8px; }
.pb-12 { padding-bottom: 12px; }
.pb-16 { padding-bottom: 16px; }
.pb-20 { padding-bottom: 20px; }
.pb-24 { padding-bottom: 24px; }
.pb-28 { padding-bottom: 28px; }
.pb-30 { padding-bottom: 30px; }
.pb-32 { padding-bottom: 32px; }
.pb-36 { padding-bottom: 36px; }
.pb-40 { padding-bottom: 40px; }

.pagination > li {
	list-style: none;
	display: inline-block;
	vertical-align: top;
}

.pagination > li > a {
	display: block;
	width: 100%;
	line-height: 36px;
	height: 36px;
	padding: 0 16px;
	border-radius: 16px;
	background-color: #81C784;
	color: #E8F5E9;
	transition: all 450ms cubic-bezier(0.23, 1, 0.32, 1) 0ms;
}

.pagination > li > a:hover {
	background-color: #66BB6A;
}

.pagination > li.active > a {
	background-color: #4CAF50;
}

.tabs-alt > .nav-tabs > li {
	display: inline-block;
	vertical-align: top;
	list-style: none;
}

.tabs-alt > .nav-tabs > li > a {
	display: block;
	width: 100%;
	padding: 8px 16px;
	text-align: center;
	border-radius: 20px;
	transition: all 450ms cubic-bezier(0.23, 1, 0.32, 1) 0ms;
}

.tabs-alt > .nav-tabs > li > a:hover {
	background-color: #81C784;
	color: #E8F5E9;
}

.tabs-alt > .nav-tabs > li.active > a {
	background-color: #4CAF50;
	color: #E8F5E9;
}

.tabs-alt > .tab-content {
	padding-top: 20px;
}

.tabs-alt > .tab-content > .tab-pane {
	display: none;
}

.tabs-alt > .tab-content > .tab-pane.active {
	display: block;
}

.panel {
	background-color: #272838;
	color: #7b7d95;
	padding: 20px 25px;
	border-radius: 15px;
	box-shadow: 10px 10px 20px rgba(0, 0, 0, 0.15);
}

.bx {
	vertical-align: middle;
}

/* dd + */
.dd {
	position: relative;
}

.dd {
	position: absolute;
	display: none;
	top: calc(100% - 4px);
	right: 12px;
	width: 220px;
	background-color: #272838;
	color: #fff;
	box-shadow: 0 6px 12px rgba(0,0,0,0.175);
	border-radius: 7px;
	z-index: 1;
	padding: 5px 0;
	text-align: left;
	margin-top: 8px;
}

.dd.active {
	display: block;
}

.dd > ul > li {
	list-style: none;
	display: block;
	font-size: 14px;
}

.dd > ul > li > a {
	list-style: none;
	display: block;
	width: 100%;
	line-height: 1.428571429;
	padding: 10px 15px;
	color: #a7a7ad;
}

.dd > ul > li > a:hover,
.dd > ul > li.active > a {
	background-color: rgba(255,255,255,0.1);
}

.dd-trigger .bx {
}
/* dd - */