/* Fonts */
/*
font-family: 'Roboto Condensed', sans-serif;
*/
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
    margin:0;
    padding:0;
    border:0;
    outline:0;
    font-size:100%;
    vertical-align:baseline;
    background:transparent;
}
article,aside,details,figcaption,figure,
footer,header,hgroup,menu,nav,section {
    display:block;
}
ul {
    list-style:none;
}
blockquote, q {
    quotes:none;
}
blockquote:before, blockquote:after,
q:before, q:after {
    content:'';
    content:none;
}
a {
    margin:0;
    padding:0;
    font-size:100%;
    vertical-align:baseline;
    background:transparent;
}
ins {
    background-color:#ff9;
    color:#000;
    text-decoration:none;
}
mark {
    background-color:#ff9;
    color:#000;
    font-style:italic;
    font-weight:bold;
}
del {
    text-decoration: line-through;
}
abbr[title], dfn[title] {
    border-bottom:1px dotted;
    cursor:help;
}
table {
    border-collapse:collapse;
    border-spacing:0;
}
hr {
    display:block;
    height:1px;
    border:0;
    border-top:1px solid #cccccc;
    margin:1em 0;
    padding:0;
}
input, select {
    vertical-align:middle;
}
* {
	box-sizing: border-box;
}
html {
	height: 100%;
}
body {
    margin: 0;
    padding: 0;
    border: 0;
	color: #ffffff;
	font-size: 16px;
	font-weight: normal;
	line-height: 24px;
	text-align: left;
	font-family: 'Roboto Condensed', sans-serif;
	overflow: hidden;
	overflow-y: scroll;
	background:#131313;
}
:active, :hover, :focus {
    outline: 0!important;
    outline-offset: 0!important;
}
/* Links */
a, a:hover {
	color: #d77410;
    text-decoration: underline;
}
/* Form */
.form-group {
    margin-bottom: 16px;
    position: relative;
}
.form-group .input {
    position: relative;
}
.form-group label {
    display: inline-block;
    margin-bottom: 8px;
	font-size: 18px;
    line-height: 18px;
    color: #ffffff;
    font-weight: bold;
}
.was-validated .form-control:valid, .form-control.is-valid {
    border-color: #2e8b04!important;
	padding-right: 60px;
	background-repeat: no-repeat;
    background-position: center right calc(40px / 2);
    background-size: calc(40px / 2) calc(40px / 2);
    background-image: url(../../images/icons/form/valid.png);
}
.was-validated .form-control:invalid, .form-control.is-invalid {
    border-color: #dc3545!important;
    padding-right: 60px;
	background-repeat: no-repeat;
    background-position: center right calc(40px / 2);
    background-size: calc(40px / 2) calc(40px / 2);
    background-image: url(../../images/icons/form/invalid.png);
}

.valid-feedback {
    display: none;
    width: 100%;
    margin-top: 0.25rem;
    font-size: .875em;
    color: #2e8b04;
}
.invalid-feedback {
    display: none;
    width: 100%;
    margin-top: 0.25rem;
    font-size: .875em;
    color: #dc3545;
}
.valid-tooltip {
	position: absolute;
    top: 2px;
    right: 0;
    z-index: 5;
    display: none;
    max-width: 100%;
    padding: 2px 6px;
    font-size: 12px;
    line-height: 14px;
    color: #fff;
    background-color: rgb(46 139 4 / 70%);
    border-radius: 4px;
}
.invalid-tooltip {
	position: absolute;
    top: 2px;
    right: 0;
    z-index: 5;
    display: none;
    max-width: 100%;
    padding: 2px 6px;
    font-size: 12px;
    line-height: 14px;
    color: #fff;
    background-color: rgb(211 0 23 / 70%);
    border-radius: 4px;
}

.is-valid~.valid-feedback, .is-valid~.valid-tooltip, .was-validated :valid~.valid-feedback, .was-validated :valid~.valid-tooltip {
    display: block;
}
.is-invalid~.invalid-feedback, .is-invalid~.invalid-tooltip, .was-validated :invalid~.invalid-feedback, .was-validated :invalid~.invalid-tooltip {
    display: block;
}

/* Lazy */
.lazy.loading, .lazy.error {
	background-image: url(../../images/placeholders/loading.svg);
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-size: 200px!important;
}
.lazy-background.loader {
	background-image: url(../../images/placeholders/loading.svg);
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-size: 200px!important;
}
/* Container */
.container {
	width: 100%;
	padding-right: 15px;
	padding-left: 15px;
	margin-right: auto;
	margin-left: auto;
}
@media (min-width: 576px) {
	.container {
		max-width: 576px;
	}
}

@media (min-width: 768px) {
	.container {
		max-width: 768px;
	}
}

@media (min-width: 992px) {
	.container {
		max-width: 992px;
		padding-right: 0px;
		padding-left: 0px;
	}
}

@media (min-width: 1200px) {
	.container {
		max-width: 1200px;
		padding-right: 0px;
		padding-left: 0px;
	}
}
/* Hidden */
.overflow-hidden, .modal-open {
    padding-right: 6px!important;
	overflow: hidden;
}
@media (max-width: 992px) {
	.overflow-hidden, .modal-open {
	    padding-right: 0px!important;
	}
}
/* Modal */
.modal {
	width: 100%;
    height: 100%;
    display: none;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1070;
}
.modal.show {
	display: flex!important;
}
.modal .modal-content {
    min-width: 550px;
    max-width: 600px;
    min-height: 300px;
    max-height: 600px;
    border-radius: 10px;
    background: #0f0f0f;
    position: relative;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    -webkit-box-shadow: 0 0 50px rgba(0,0,0,1)!important;
    -moz-box-shadow: 0 0 50px rgba(0,0,0,1)!important;
    box-shadow: 0 0 50px rgba rgba(0,0,0,1)!important;
}
.modal .modal-content h5 {
	padding: 20px 35px;
	font-size: 25px;
    line-height: 28px;
    font-weight: bold;
    text-transform: uppercase;
    text-align: center;
    color: #ffffff;
    border-bottom: 2px solid #262626;
    background-image: url(../../images/plates/lenta_3.jpg);
    background-repeat: repeat;
    background-position: bottom;
}
.modal .modal-content .modal-body {
	padding: 20px 35px;
	font-size: 18px;
    line-height: normal;
    text-align: center;
	color: #adadad;
	display: flex;
    justify-content: center;
    align-items: center;
    flex: 1 1 100%;
}
.modal .modal-content .modal-footer {
    padding: 0 35px 35px 35px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.modal .modal-content .modal-footer .btn {
    margin-right: 20px;
}
.modal .modal-content .modal-footer .btn:last-child {
    margin-right: 0px;
}
/** Modal select language **/
.modal.modal-select-language .modal-body {
    padding-top: 40px;
    padding-bottom: 40px;
}
.modal .modal-content .modal-lang-list {
	width: 100%;
	max-width: 350px;
	display: flex;
	flex-wrap: wrap;
}
.modal .modal-content .modal-lang-list .modal-lang-item {
	padding: 10px 20px;
	-ms-flex: 0 0 calc(100%/2);
    flex: 0 0 calc(100%/2);
    width: calc(100%/2);
}
.modal .modal-content .modal-lang-list .modal-lang-item a {
	width: 100%;
	min-height: 30px;
	padding-left: 50px;
    display: flex;
    align-items: center;
    color: #ffffff;
    font-size: 18px;
    line-height: 22px;
    text-decoration: none;
    background-repeat: no-repeat;
    background-position: left;
    background-size: 30px;
}
.modal .modal-content .modal-lang-list .modal-lang-item a:hover {
	font-weight: bold;
}
.modal .modal-content .modal-lang-list .modal-lang-item .en {
    background-image: url(../../images/icons/lang/en.png);
}
.modal .modal-content .modal-lang-list .modal-lang-item .de {
    background-image: url(../../images/icons/lang/de.png);
}
.modal .modal-content .modal-lang-list .modal-lang-item .fr {
    background-image: url(../../images/icons/lang/fr.png);
}
.modal .modal-content .modal-lang-list .modal-lang-item .ru {
    background-image: url(../../images/icons/lang/ru.png);
}
@media (max-width: 576px) {
	.modal .modal-content {
	    min-width: 300px;
	    margin: 0 20px;
	}
	.modal .modal-content .modal-lang-list {
		max-width: 350px;
		flex-direction: column;
	}
	.modal .modal-content .modal-lang-list .modal-lang-item {
		-ms-flex: 0 0 100%;
   		flex: 0 0 100%;
    	width: 100%;
	}
	.modal .modal-content .modal-lang-list .modal-lang-item a {
		justify-content: space-between;
	}
	.modal .modal-content .modal-footer {
	    flex-direction: column;
	}
	.modal .modal-content .modal-footer .btn {
	    margin-right: 0px;
	    margin-bottom: 20px;
	}
	.modal .modal-content .modal-footer .btn:last-child {
	    margin-right: 0px;
	    margin-bottom: 0px;
	}
}
/* Buttons */
button {
	border-left: none;
	border-right: none;
}
.btn {
	min-width: 230px;
	padding: 10px 8px;
	display: inline-block;
	font-size: 16px;
    line-height: 20px;
    font-weight: bold;
	text-transform: uppercase;
	text-decoration: none;
	text-align: center;
	vertical-align: middle;
	border-radius: 10px;
    border-width: 3px;
	border-style: solid;
	font-family: 'Roboto Condensed', sans-serif;
	-moz-transition: all 0.3s ease-out 0ms;
    -o-transition: all 0.3s ease-out 0ms;
    -webkit-transition: all 0.3s ease-out 0ms;
    transition: all 0.3s ease-out 0ms;
}
.btn:hover, .btn:focus, .btn:active {
    line-height: 20px;
    font-weight: bold;
	text-decoration: none;
	cursor: pointer;
}
.btn.btn-gray {
	color: #000000;
	background: #9c9c9c;
    border-color: #9c9c9c;
}
.btn.btn-gray:hover {
	color: #ffffff;
	background-color: #d30017;
    border-color: #d30017;
}
.btn.btn-red {
	color: #ffffff;
	background: #d30017;
    border-color: #d30017;
}
.btn.btn-red:hover {
	color: #ffffff;
	background: #ff001c;
    border-color: #ff001c;
}
.btn.btn-white-line {
	color: #ffffff;
	background-color: rgba(255, 255, 255, 0);
    border-color: #ffffff;
}
.btn.btn-white-line:hover {
	background-color: rgba(255, 255, 255, 0);
    border-color: #ffffff;
}
.btn.disabled, .btn:disabled {
	color: #000000;
	background: #424242;
    border-color: #424242;
	cursor: auto;
	opacity: 0.65;
}
.btn.disabled:hover, .btn:disabled:hover {
	color: #000000;
	background: #424242;
    border-color: #424242;
	cursor: auto;
}
a.btn.disabled, fieldset:disabled a.btn {
    pointer-events: none;
}
/* Fancybox */
.fancybox-infobar {
	display: none!important;
}
.fancybox-button.disabled {
	display: none!important;
}
.fancybox-button svg {
	display: none!important;
}
.fancybox-button--close {
	background-image: url(../../images/icons/lightgallery/close.png)!important;
	background-repeat: no-repeat!important;
    background-position: center!important;
}
.fancybox-button--arrow_left {
	background-image: url(../../images/icons/lightgallery/left.png)!important;
	background-repeat: no-repeat!important;
    background-position: center!important;
}
.fancybox-button--arrow_right {
	background-image: url(../../images/icons/lightgallery/right.png)!important;
	background-repeat: no-repeat!important;
    background-position: center!important;
}
/* Title */
.pagetitle {
	padding: 16px 30px;
    font-size: 42px;
    line-height: 48px;
    color: #ffffff;
    text-transform: uppercase;
    font-weight: bold;
    border-bottom: 2px solid #262626;
    background-image: url(../../images/plates/lenta.jpg);
    background-repeat: repeat-x;
    background-position: bottom;
}
@media (max-width: 992px) {
	.pagetitle {
		padding: 16px 0px;
		text-align: center;
		font-size: 40px;
    	line-height: 44px;
	}
}
@media (max-width: 576px) {
	.pagetitle {
		text-align: center;
		font-size: 36px;
    	line-height: 40px;
	}
}
@media (max-width: 320px) {
	.pagetitle {
		text-align: center;
		font-size: 28px;
    	line-height: 32px;
	}
}
/* Header */
.header {
	width: 100%;
	height: 60px;
	position: sticky;
    top: 0;
	background:#000000;
    z-index: 1020;
	display: flex;
    justify-content: start;
    align-items: center;
	flex: none;
}
.header .inner {
	width: 100%;
    height: 100%;
	padding-right: 24px;
    padding-left: 30px;
	display: flex;
	justify-content: flex-start;
	align-items: center;
}
.header .inner .logo {
	width: 290px;
	height: 100%;
	display: flex;
	justify-content: flex-start;
	align-items: center;
}
.header .inner .logo a {
	display: flex;
}
.header .inner .navigation {
	height: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-grow: 1;
}
.header .inner .navigation ul {
	height: 100%;
	margin-bottom: 0;
	display: flex;
	justify-content: flex-start;
	align-items: center;
}
.header .inner .navigation .menu {
	padding: 0 15px 0 40px;
}
.header .inner .navigation ul .item {
	display: flex;
	justify-content: flex-start;
	align-items: center;
}
.header .inner .navigation ul .separator {
	width: 1px;
    height: 10px;
    margin: 0px 15px;
    background: #505050;
}
.header .inner .navigation .item a {
	width: 100%;
    height: 100%;
	display: block;
	font-size: 16px;
	line-height: 16px;
	color: #adadad;
	font-weight: normal;
	text-transform: uppercase;
	text-decoration: none;
	-moz-transition: color 0.3s ease-out 0ms;
    -o-transition: color 0.3s ease-out 0ms;
    -webkit-transition: color 0.3s ease-out 0ms;
    transition: color 0.3s ease-out 0ms;
}
.header .inner .navigation .item a:hover {
	color: #ffffff;
	cursor: pointer;
}
.header .inner .navigation .item.active a {
	color: #ffffff;
	font-weight: bold;
}
.header .inner .navigation .panel .item {
	font-size: 16px;
    line-height: 16px;
    color: #adadad;
    font-weight: normal;
    text-transform: uppercase;
    text-decoration: none;
    -moz-transition: color 0.3s ease-out 0ms;
    -o-transition: color 0.3s ease-out 0ms;
    -webkit-transition: color 0.3s ease-out 0ms;
    transition: color 0.3s ease-out 0ms;
}
.header .inner .navigation .panel .item:last-child {
	margin-right: 0px;
}
.header .inner .navigation .panel .item.language {
	margin-left: 15px;
}
.header .inner .navigation .panel .item.admin-link {
	margin-right: 15px;
}
.header .inner .navigation .panel .item.registration {
	margin-right: 15px;
}
.header .inner .navigation .panel .item.balans a {
	background-image: url(../../images/icons/header/addcredits.png);
}
.header .inner .navigation .panel .item.subscription a {
	background-image: url(../../images/icons/header/addsubscription.png);
}
.header .inner .navigation .panel .item.balans a, .header .inner .navigation .panel .item.subscription a {
	width: 26px;
    height: 26px;
	margin-left: 15px;
	border-radius: 5px;
	flex: 0 0 26px;
	background-color: #d30017;
	background-repeat: no-repeat;
    background-position: center;
	-moz-transition: color,background 0.3s ease-out 0ms;
    -o-transition: color,background 0.3s ease-out 0ms;
    -webkit-transition: color,background 0.3s ease-out 0ms;
    transition: color,background 0.3s ease-out 0ms;
}
.header .inner .navigation .panel .item.balans a:hover, .header .inner .navigation .panel .item.subscription a:hover {
	background-color: #ff001c;
}

.header .inner .navigation .panel .item.add-asset a,
.header .inner .navigation .panel .item.registration a {
	padding: 5px 10px;
	font-size: 16px;
    line-height: 16px;
	font-weight: bold;
	color: #ffffff;
    background: #d30017;
    border-radius: 10px;
	-moz-transition: color,background 0.3s ease-out 0ms;
    -o-transition: color,background 0.3s ease-out 0ms;
    -webkit-transition: color,background 0.3s ease-out 0ms;
    transition: color,background 0.3s ease-out 0ms;
}
.header .inner .navigation .panel .item.add-asset a:hover,
.header .inner .navigation .panel .item.registration a:hover {
	background: #ff001c;
}
.header .inner .navigation .panel .item.language a {
	width: 30px;
	height: 30px;
	background-repeat: no-repeat;
    background-position: center;
}
.header .inner .navigation .panel .item.language .en {
	background-image: url(../../images/icons/lang/en.png);
}
.header .inner .navigation .panel .item.language .de {
    background-image: url(../../images/icons/lang/de.png);
}
.header .inner .navigation .panel .item.language .fr {
    background-image: url(../../images/icons/lang/fr.png);
}
.header .inner .navigation .panel .item.language .ru {
	background-image: url(../../images/icons/lang/ru.png);
}
.header .inner .mobile-panel {
	width: 30px;
	height: 100%;
	display: none;
	opacity: 0;
}
.header .inner .mobile-sidebar {
	margin-right: auto;
}
.header .inner .mobile-sidebar .sidebar-icon {
	background-image: url(../../images/icons/header/sidebar-open.png);
}
.header .inner .mobile-sidebar .active {
	background-image: url(../../images/icons/header/sidebar-close.png)!important;
}
.header .inner .mobile-menu {
	margin-left: auto;
}
.header .inner .mobile-menu .menu-icon {
	background-image: url(../../images/icons/header/menu-open.png);
}
.header .inner .mobile-menu .active {
	background-image: url(../../images/icons/header/menu-close.png)!important;
}
.header .inner .mobile-panel .toggler {
	width: 30px;
	height: 30px;
	background-repeat: no-repeat;
    background-position: center;
}
.header .inner .mobile-panel .hide {
	display: none;
	opacity: 0;
}
@media (max-width: 1280px) {
	.header .inner .navigation .panel .balans, .header .inner .navigation .panel .subscription {
		display: none!important;
	}
}
@media (max-width: 992px) {
	.header .inner {
		padding-left: 30px!important;
		padding-right: 30px!important;
	}
	.header .inner .logo {
		height: 100%;
		display: flex;
		justify-content: center;
		align-items: center;
		flex-grow: 1;
	}
	.header .inner .navigation {
		display: none;
		opacity: 0;
	}
	.header .inner .mobile-panel {
		display: flex;
		display: -ms-flexbox;
		display: -webkit-flex;
		-ms-flex-align: center;
		align-items: center;
		opacity: 1;
	}
	.header .inner .navigation.show {
		width: 100%;
		height: 100%;
		padding: 40px;
		position: fixed;
		top: 60px;
		left: 0;
		right: 0;
		bottom: 0;
		display: flex!important;
		justify-content: flex-start;
		align-items: center;
		flex-direction: column;
		opacity: 1!important;
		background: #000000;
		overflow-x: hidden;
		overflow-y: scroll;
	}
	.header .inner .navigation ul {
		width: 100%;
		height: auto!important;
		padding: 0!important;
		display: flex;
		justify-content: center;
		align-items: center;
		flex-direction: column;
		flex-grow: 0!important;
	}
	.header .inner .navigation ul .separator {
		display: none!important;
	}
	.header .inner .navigation ul li {
		min-width: 150px!important;
		padding: 15px 10px;
		margin-right: 0px!important;
		text-align: center;
		border-bottom: 1px solid #505050;
		display: flex!important;
		justify-content: center!important;
		align-items: center!important;
	}
	.header .inner .navigation .panel li:last-child {
		margin-bottom: 0px;
		border-bottom: none;
	}
	.header .inner .navigation ul li a {
		padding: 0;
	}
	.header .inner .navigation .panel .item {
		margin-left: 0px!important;
		margin-right: 0px!important;
	}
	.header .inner .navigation .panel .item.registration a {
		padding: 0;
		font-size: 16px;
		line-height: 16px;
		color: #adadad;
		font-weight: normal;
		text-transform: uppercase;
		text-decoration: none;
		background: 000000;
	}
}
/* Footer */
.footer {
	width: 100%;
	height: 60px;
	flex: none;
	background: #000000;
}
.footer nav {
	width: 100%;
	height: 100%;
	padding-right: 24px;
    padding-left: 30px;
	display: flex;
	justify-content: space-between;
    align-items: center;
}
.footer nav ul {
	display: flex;
	justify-content: flex-start;
	align-items: center;
}
.footer nav ul li {
	font-size: 16px;
	line-height: 16px;
	color: #adadad;
	display: flex;
	justify-content: flex-start;
	align-items: center;
}
.footer nav ul .separator {
    width: 1px;
    height: 10px;
    margin: 0px 15px;
    background: #505050;
}
.footer nav ul li a {
	font-size: 16px;
	line-height: 16px;
	text-decoration: none;
	color: #adadad;
	-moz-transition: color 0.1s ease-out 0ms;
	-o-transition: color 0.1s ease-out 0ms;
	-webkit-transition: color 0.1s ease-out 0ms;
	transition: color 0.1s ease-out 0ms;
}
.footer nav ul li a:hover, .footer nav ul li a:focus, .footer nav ul li a:active {
	color: #ffffff;
}
.footer nav .mobile-show {
	display: none;
	opacity: 0;
}
@media (max-width: 992px) {
	.footer nav .mobile-hide {
		display: none;
		opacity: 0;
	}
	.footer nav .mobile-show {
		display: block;
		opacity: 1;
	}
	.footer nav ul .separator {
		display: none;
		opacity: 0;
	}
}
/* Pagination */
.pagination {
	min-width: 50px;
}
.pagination a {
	width: 45px;
    height: 45px;
    border-radius: 5px;
	padding: 5px 8px;
    margin-right: 5px;
    font-size: 16px;
    color: #adadad;
	text-decoration: none;
	display: flex;
	display: -ms-flexbox;
	display: -webkit-flex;
	justify-content: center;
    align-items: center;
	background: #202020;
	-moz-transition: color,font,background 0.1s ease-out 0ms;
    -o-transition: color,font,background 0.1s ease-out 0ms;
    -webkit-transition: color,font,background 0.1s ease-out 0ms;
    transition: color,font,background 0.1s ease-out 0ms;
}
.pagination a:hover {
	color: #ffffff;
	font-weight: bold;
	text-decoration: none;
	background: #292929;
}
.pagination span {
	width: 45px;
    height: 45px;
    border-radius: 5px;
	padding: 5px 8px;
    margin-right: 5px;
    font-size: 16px;
    color: #adadad;
	display: flex;
	display: -ms-flexbox;
	display: -webkit-flex;
	justify-content: center;
    align-items: center;
	background: #121212;
	-moz-transition: color,background 0.1s ease-out 0ms;
    -o-transition: color,background 0.1s ease-out 0ms;
    -webkit-transition: color,background 0.1s ease-out 0ms;
    transition: color,background 0.1s ease-out 0ms;
}
.pagination span b {
	font-weight: bold;
}
/* Tooltip */
.tooltip {
	position: absolute;
	z-index: 1010;
	display: block;
	margin: 0;
	font-style: normal;
	font-weight: 400;
	line-height: 1.5;
	text-align: left;
	text-align: start;
	text-decoration: none;
	text-shadow: none;
	text-transform: none;
	letter-spacing: normal;
	word-break: normal;
	word-spacing: normal;
	white-space: normal;
	line-break: auto;
	font-size: 14px;
	word-wrap: break-word;
	opacity: 0;
}
.tooltip.show {
	opacity: 0.9;
}
.tooltip .arrow {
	position: absolute;
	display: block;
	width: 12px;
	height: 8px;
}
.tooltip .arrow::before {
	position: absolute;
	content: "";
	border-color: transparent;
	border-style: solid;
}
.tooltip-inner {
	max-width: 200px;
	padding: 4px 8px;
	color: #ffffff;
	text-align: center;
	background-color: #000000;
	border-radius: 4px;
}
/* Cookies alert */
.cookies_message_alert.show {
	display: block;
}
.cookies_message_alert {
	display:none;
	padding: 25px 35px;
	position: fixed;
    bottom: 20px;
    right: 24px;
    width: 400px;
	border-radius: 10px;
	background: #0f0f0f;
	z-index: 1070;
	-webkit-box-shadow: 0 0 50px rgba(0,0,0,1)!important;
	-moz-box-shadow: 0 0 50px rgba(0,0,0,1)!important;
	box-shadow: 0 0 50px rgba rgba(0,0,0,1)!important;
}
.cookies_message_alert .cookies_message_inner {
	position: relative;
}
.cookies_message_alert .cookies_message_head {
	display: flex;
	-ms-flex-pack: start;
    justify-content: start;
	-ms-flex-align: center;
    align-items: center;
	margin-bottom: 20px;
}
.cookies_message_alert .cookies_message_title {
	padding-right: 30px;
	font-size: 26px;
	line-height: 26px;
    font-weight: bold;
	text-transform: uppercase;
    color: #ffffff;
}
.cookies_message_alert .cookies_message_description {
	font-size: 16px;
	color: #adadad;
}
.cookies_message_alert .cookies_message_bottom {
	display: flex;
	-ms-flex-pack: start;
    justify-content: start;
	-ms-flex-align: center;
    align-items: center;
	margin-top: 20px;
}
.cookies_message_alert .btn_success {
	width: 120px;
	font-size: 16px;
	line-height: 20px;
	font-weight: bold;
	text-align: center;
	color: #ffffff;
    border: none;
    background: #d30017;
    padding: 10px 8px;
	margin-left: auto;
	border-radius: 10px;
    text-transform: uppercase;
	-moz-transition: color 0.1s ease-out 0ms;
    -o-transition: color 0.1s ease-out 0ms;
    -webkit-transition: color 0.1s ease-out 0ms;
    transition: color 0.1s ease-out 0ms;
}
.cookies_message_alert .btn_success:hover {
	color: #ffffff;
	cursor: pointer;
}
.cookies_message_alert a {
	font-size: 18px;
	color: #d77410;
}
.cookies_message_alert a:hover {
	color: #d77410;
}
.cookies_message_alert .cookies_message_close {
	width: 30px;
	height: 30px;
	position: absolute;
	top: -5px;
	right: -10px;
	display: flex;
	-ms-flex-pack: center;
    justify-content: center;
	-ms-flex-align: center;
    align-items: center;
}
.cookies_message_alert .cookies_message_close img {
	width: 20px;
	height: 20px;
	filter: brightness(50%);
	-webkit-filter: brightness(50%);
	-moz-transition: transition 0.1s ease-out 0ms;
    -o-transition: transition 0.1s ease-out 0ms;
    -webkit-transition: transition 0.1s ease-out 0ms;
    transition: transition 0.1s ease-out 0ms;
}
.cookies_message_alert .cookies_message_close:hover {
	cursor: pointer;
}
.cookies_message_alert .cookies_message_close:hover img {
	cursor: pointer;
	filter: brightness(100%);
	-webkit-filter: brightness(100%);
}
@media (max-width: 576px) {
	.cookies_message_alert.show {
		display: none;
	}
	.cookies_message_alert {
		width: 100%;
		right: -30px;
		left: 0px;
	}
}

.modal.modal-adblock-detected .modal-body {
	flex-direction: column;
	gap: 20px;
}
.modal.modal-adblock-detected .modal-body img {
	width: 80px;
	height: auto;
	aspect-ratio: 1/1;
}

.modal.modal-form-add-asset .modal-body {
	padding: 10px 25px;
    margin: 10px;
}
.modal.modal-form-add-asset .modal-content {
	max-height: 100%;
}
.modal.modal-form-add-asset .modal-footer {
	padding-top: 10px;
}
.modal.modal-form-add-asset form .form-body{
	display: block;
	overflow-y: auto;
}
.modal.modal-form-add-asset form .form-group {
	width: 100%;
	text-align: left;
}
.modal.modal-form-add-asset form .form-group .input {
	position: relative;
	text-align: left;
}
.modal.modal-form-add-asset form .form-group .input .select2 {
	width: 100%!important;
	min-width: 100px;
}
.modal.modal-form-add-asset form .select2-container--default .select2-results__option--highlighted[aria-selected] {
	display: block!important;
}

.modal.modal-form-add-asset form .form-group .single-select-control select.select2.select2-single {
	display: block!important;
	width: 100%!important;
    min-width: 100px;
    height: 50px!important;
    padding: 15px!important;
    position: relative!important;
    font-size: 16px;
    line-height: 20px;
    font-weight: normal;
    color: #666666;
    background-color: #000000;
    border-radius: 4px;
	border-width: 2px!important;
	border-style: solid!important;
    border-color: #2c2c2c;
    font-family: 'Roboto Condensed', sans-serif;
	clip-path: none!important;
}
.modal.modal-form-add-asset form .form-group .single-select-control span.select2.select2-container {
	position: absolute;
    top: 2px;
    left: 2px;
    right: 2px;
    bottom: 2px;
}
.modal.modal-form-add-asset form .form-group .single-select-control .select2-selection {
    border: none;
    height: auto;
    width: calc(100% - 4px);
}
.modal.modal-form-add-asset form .form-group .single-select-control:hover select.select2, 
.modal.modal-form-add-asset form .form-group .single-select-control:focus select.select2, 
.modal.modal-form-add-asset form .form-group .single-select-control:active select.select2 {
    border-width: 2px;
    border-style: solid;
    border-color: #464646;
}
.single-select-control .valid-tooltip,
.single-select-control .invalid-tooltip {
	top: -25px;
}

.modal.modal-form-add-asset form .form-group textarea {
	resize: none!important;
}

.modal.modal-form-add-asset form .form-group .custom-file {
	position: relative;
}
.modal.modal-form-add-asset form .form-group label.custom-file-label {
	position: absolute;
    top: 2px;
    left: 2px;
    right: 2px;
    bottom: 2px;
	width: calc(100% - 60px);
    padding: 13px;
    margin-bottom: 0;
    font-size: 16px;
    line-height: 20px;
    font-weight: normal;
    color: #666666;
    background-color: #000000;
}
.form-group .custom-file:hover input.custom-file-input {
	cursor: pointer;
	border: 2px solid #464646;
}
.form-group .custom-file:hover label.custom-file-label {
	cursor: pointer;
}
