/**
* @site http://advaction.ru
* @version 1
* @author camomile <camomile@advaction.ru>
*/

/**
* Global Reset
*
* @section reset
* @link http://meyerweb.com/eric/tools/css/reset/
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	outline: none;
	font-size: 100%;
	vertical-align: baseline;
}
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;
}
:focus {
	outline: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
	empty-cells: show;
}
html, body {
	height: 100%;
}
body {
	font: 10px Arial, Tahoma, sans-serif;
	color: #464646;
	background-color: #e5e5e5;
}
input, select, textarea {
	font-family: Arial, Tahoma, sans-serif;
	font-size: 100%;
	color: #464646;
}
input {
	vertical-align: middle;
}
h1, h2, h3, h4, h5, h6 {
	font-weight: normal;
	font-family: Tahoma, Geneva, sans-serif;
}
a {
	color: #0077C0;
	cursor: pointer;
	text-decoration: none;
}
a:hover {
	color: #025c93;
}
a img {
	text-decoration: none;
}
abbr, acronym {
	color: #025c93;
	border-bottom: 1px dashed rgba(12, 79, 114, 0.2);
}

/**
* Common styles
*
* @section common styles
*/

/**
* Clearfix
*
* @section common styles
* @subsection clearfix
*/
.clearfix:after {
	content: "";
	display: block;
	height: 0;
	clear: both;
	visibility: hidden;
	font-size: 0;
}
.clearfix {
	display: block;
}

/**
* Some useful helpers
*
* @section common styles
* @subsection helper classes
*/
.clear {
	clear: both;
}
.clear-both {
	clear: both;
}
.hidden {
	display: none;
}
.important_hidden {
	display: none !important;
}
.show {
	display: block;
}
.text-overflow-ellipsis {
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
.float-left {
	float: left;
}
.float-right {
	float: right;
}
.align-left {
	text-align: left !important;
}
.align-right {
	text-align: right !important;
}
.align-center {
	text-align: center !important;
}
.vertical-align-top {
	vertical-align: top;
}
.vertical-align-middle {
	vertical-align: middle;
}
.rel {
	position: relative;
}
.link {
	color: #0077C0;
	border-bottom: 1px solid rgba(12, 79, 114, 0.2);
	cursor: pointer;
	text-decoration: none;
}
.link_no-border,
.link_no-border:hover {
	border: 0 !important;
}
.link_simple,
.link_simple:hover {
	border: 0;
	text-decoration: underline;
}
.link_black {
	color: #000;
	border-bottom: 1px solid rgba(76, 76, 76, 0.3);
}
.link_black:hover {
	color: #444;
	border-bottom: 1px solid rgba(76, 76, 76, 0.2);
}
.link_white {
	color: #fff;
	border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}
.link_white:hover {
	color: #f5f5f5;
	border-bottom: 1px solid rgba(255, 255, 255, 0.4);
}
.link_gray {
	color: #464646;
	border-bottom: 1px solid rgba(76, 76, 76, 0.2);
}
.link_gray:hover {
	color: #000;
	border-bottom: 1px solid rgba(76, 76, 76, 0.3);
}
.link_light {
	color: #888;
	border-bottom: 1px solid rgba(76, 76, 76, 0.2);
}
.link_light:hover {
	color: #777;
	border-bottom: 1px solid rgba(76, 76, 76, 0.3);
}
.link_webinar {
	position: absolute;
	right: 0;
	top: 115px;
}
.pseudo-link,
.pseudo-link:hover {
	border-bottom: 1px dotted;
	cursor: pointer;
	text-decoration: none;
	line-height: 1;
}
.pseudo-link_black {
	color: #000;
}
.pseudo-link_edit {
	color: #AAA;
}
.pseudo-link_delete {
	color: #AAA;
}
.pseudo-link__arrow {
	font-size: 13px;
}
.date {
	background: #e5e5e5;
	padding: 2px 10px;
	display: inline-block;
	font-size: 12px;
	border-radius: 5px;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	color: #555;
	margin-left: 5px;
	border: 1px solid #ccc;
}

/**
* Tooltip
*
* @section common styles
* @subsection tooltip
*/
.tooltip {
	text-decoration: none;
	position: relative;
}
.tooltip span{
	display: none;
}
.tooltip_jq_hover{
	position: relative;
}
.tooltip_span_jq_hover{
	display: block !important;
	position: absolute;
	top: -5px;
	left: 80px;
	background: #fff;
	padding: 15px;
	color: #000;
	width: 200px;
	border-radius: 5px;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	font-size: 11px;
	line-height: 1.3em;
	box-shadow: 0 0 3px #C0C0C0;
	-moz-box-shadow: 0 0 3px #C0C0C0;
	-webkit-box-shadow: 0 0 3px #C0C0C0;
	border: 1px solid #FFFFFF;
	text-align: left;
}

/**
* Lists
*
* @section common styles
* @subsection lists
*/
.hlist, .hlist li {
	margin: 0;
	padding: 0;
}
.hlist li {
	float: left;
}
.hlist .vlist li {
	clear: both;
}
.hlist li:first-child:before {
	content: "";
}
.hlist_slash li:before {
	content: "\/\a0\a0";
}
.hlist_vslash li:before {
	content: "\a0\a0|\a0\a0";
	font-size: 9px;
}

.vlist,
.vlist li {
	margin: 0 0 0.3em;
	padding: 0;
	list-style: none;
}
.vlist li:before {
	position: absolute;
	margin-left: -1.8em;
}
.content .vlist_mdash li {
	margin-left: 27px;
}
.vlist_mdash li:first-child:before {
	content: "\2014\a0";
}
.vlist_mdash li:before {
	content: "\2014\a0";
}
.content .vlist_dot li {
	list-style: disc;
	margin-left: 20px;
}

.dlist {
	overflow: hidden;
}
.dlist dt,
.dlist dd {
	margin-bottom: 5px;
}
.dlist dt {
	float: left;
	white-space: nowrap;
}
.dlist dd {
	text-align: left;
}

/**
* Forms
*
* @section common styles
* @subsection forms
*/
.b-input,
.b-textarea,
.b-select {
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	border: 1px solid #E8E8E8;
	border-radius: 3px;
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
	box-shadow: 0 0 1px rgba(0, 0, 0, 0.05);
	-moz-box-shadow: 0 0 1px rgba(0, 0, 0, 0.05);
	-webkit-box-shadow: 0 0 1px rgba(0, 0, 0, 0.05);
	padding: 5px 7px;
	font-size: 100%;
/*
	color: #929CA4;
*/
	background: #FFF;
}
.b-form .b-input,
.b-form .b-textarea,
.b-form .b-text,
.b-form .b-select {
	width: 435px;
	margin-bottom: 10px;
}
.b-form_lightbox .b-input,
.b-form_lightbox .b-textarea,
.b-form_lightbox .b-select,
.b-form_lightbox .b-form__error-common,
.b-form_lightbox .b-form__message-common {
	width: 100%;
}
.b-form_lightbox .b-form__error,
.b-form_lightbox .b-form__message {
	font-size: 100%;
	padding-left: 0;
}
.b-form_lightbox .b-form__note {
	margin-bottom: 5px;
	width: 95%;
}
.b-form .b-input_small,
.b-input_small {
	font-size: 95%;
	padding: 2px 7px;
	width: 80px;
	vertical-align: baseline;
}
.b-form .b-input_short,
.b-input_short {
	width: 80px;
	vertical-align: baseline;
}
.b-input_half {
	width: 50%;
}
.b-input_100 {
	width: 100px;
}
.b-input_200 {
	width: 200px;
}
.b-input_300 {
	width: 300px;
}
.b-input_400 {
	width: 500px;
}
.b-input_500 {
	width: 500px;
}
.b-form .b-input .b-input_300 {
	width: 300px;
}
.b-select {
	padding: 0 0 0 7px;
	height: 28px;
	line-height: 21px;
}
.b-form .b-select_format {
	margin: 0 5px 0 40px;
	float: left;
	width: 150px;
}
.b-select_campaign {
	margin: 1px 5px 0 0;
	float: left;
}
.b-select-holder {
	background: #ececec;
	padding: 10px 10px 3px;
	margin-bottom: 10px;
	display: inline-block;
	border-radius: 5px;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
}
.b-select-holder .b-select {
	padding: 1px 0 1px 7px;
	height: 21px;
}
.b-select-holder .b-select_choose {
	max-width: 400px;
	min-width: 200px;
	width: auto;
}
.b-select-holder .b-select_auto {
	width: auto;
}
.b-input:focus,
.b-textarea:focus {
	background: #F9F9F9;
}
.b-input:disabled,
.b-textarea:disabled {
	background: #f0f0f0;
}
.b-label,
.b-label_fix {
	color: #616161;
}
.b-label {
	display: block;
	line-height: 1.2em;
	padding: 3px 0;
	white-space: nowrap;
}
.b-label_fix {
	margin-left: -3px;
	padding: 0 8px 0 8px;
}
.b-label_right {
	padding-right: 0;
}
.b-label .b-label__asterisk,
.asterisk {
	color: #FF0000;
}
.b-label .b-label__quantity {
	color: #2DC8EB;
}
.b-radio,
.b-checkbox {
	margin: 0 0 5px;
	padding: 0;
	width: 15px;
}
.b-button {
	margin-top: 5px;
}
.b-form__title {
	margin: 15px 0 5px;
}
.b-form__range {
	padding: 0 5px;
}
.b-form__error-common,
.b-form__message-common {
	background: #FCCAC1 url("/i/icon_error.png") no-repeat 7px 5px;
	color: #565656;
	font-size: 12px;
	height: 40px;
	line-height: 40px;
	padding: 0 10px 0 50px;
	margin-bottom: 20px;
	border: 1px solid #EB5439;
	width: 435px;
	border-radius: 5px;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	box-shadow: inset 0 0 3px #FFF;
	-moz-box-shadow: inset 0 0 3px #FFF;
	-webkit-box-shadow: inset 0 0 3px #FFF;
	position: relative;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
}
.b-form__message-common {
	background: #effeb9 url("/i/icon_ok.png") no-repeat 7px 3px;
	border: 1px solid #98c700;
}
.b-form__error-common:after,
.b-form__message-common:after {
	content: url("/i/corner_error.png");
	position: absolute;
	left: 40px;
	top: 28px;
}
.b-form__message-common:after {
	content: url("/i/corner_ok.png");
}
.b-form__error,
.b-form__message {
	color: #b72e2e;
	display: inline-block;
	font-style: normal;
	vertical-align: top;
	padding-top: 8px;
	font-size: 12px;
	margin-left: 3px;
}
.b-form__message {
	
	color: #58b80b;
}
.b-form__error_checkbox {
	vertical-align: baseline;
	padding-top: 0;
}
.b-form__note {
	color: #999;
	font-size: 90%;
	font-style: italic;
	line-height: 1.2em;
	text-align: right;
	width: 400px;
	margin: -7px 0 10px;
	padding-left: 35px;
}
.b-form__note_button {
	margin-top: 5px;
	padding-left: 0;
	text-align: left;
}
.b-field-holder {
	margin-bottom: 7px;
}
.b-form_registration {
	margin-top: 20px;
	background: #F0F0F0;
	border-radius: 10px;
	-moz-border-radius: 10px;
	-webkit-border-radius: 10px;
	padding: 20px;
}

/**
* @section common styles
* @subsection messages
*/
.service-error,
.service-message {
	border-left: 3px solid #F00;
	color: #000;
	padding: 1%;
	margin-bottom: 10px;
}
.service-message {
	border-left: 3px solid #58b80b;
}
.service-warning, .service-info, .service-ok, .service-additional-info {
	background: none repeat scroll 0 0 #FFEEED;
	border: 1px dashed #E0B1B1;
	color: #AD7676;
	font-size: 12px;
	padding: 5px 20px;
	text-shadow: 1px 1px 1px #FFFFFF;
	width: 750px;
	margin-bottom: 15px;
}
.service-ok {
	background: none repeat scroll 0 0 #DFF7DD;
	border: 1px dashed #B9DBB6;
	color: #7EA57B;
}
.service-info {
	background: none repeat scroll 0 0 #F9F9DC;
	border: 1px dashed #D6D69E;
	color: #ADA771;
}
.service-additional-info {
	background: none repeat scroll 0 0 #CDECFA;
	border: 1px dashed #D6D69E;
	color: #0778A8;
}
.service .service__title {
	margin-bottom: 0;
	line-height: 2em;
}

/**
* @section common styles
* @subsection rubl
* @link http://www.artlebedev.ru/tools/technogrette/html/rouble/
*/
@font-face { font-family: "Rubl Sign"; src: url(http://www.artlebedev.ru/;-)/ruble.eot); }
span.rur { font-family: "Rubl Sign"; text-transform: uppercase; // text-transform: none;}
span.rur span { position: absolute; overflow: hidden; width: .45em; height: 1em; margin: .1ex 0 0 -.55em; // display: none; }
span.rur span:before { content: '\2013'; }

/**
* @section common styles
* @subsection preloader
*/
.preloader {
	display: none;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1000;
	background: #fff;
	opacity: 0.8;
	-moz-opacity: 0.8;
	filter: alpha(opacity=80);
}
.preloader__img {
	top: 50%;
	left: 50%;
	margin-left: -64px;
	position: relative;
	width: 128px;
	height: 128px;
	background: url("/i/preloader.png");

}

/**
* @section common styles
* @subsection paging
*/
.paging {
	font-size: 120%;
}
.paging a,
.paging span {
	margin: 0 5px;
	color: #606060;
}
.paging a.arrow {
	text-decoration: none;
	font-family: "Times New Roman", Times, serif;
}
.paging a.arrow_left {
	margin: 0 5px 0 0;
}
.paging a.arrow span {
	text-decoration: underline;
	font-family: Tahoma, Geneva, sans-serif;
	margin: 0;
}
.paging a.arrow_left span {
	margin: 0 0 0 3px;
}
.paging a:hover,
.paging a:hover span {
	color: #000;
}
.paging span.selected {
	background: #a2a2a2;
	color: #FFF;
	padding: 1px 4px;
	margin: 0 2px;
}

/**
* @section common styles
* @subsection filters
*/
.filter {
	background: url(/i/filter_bg.png) repeat-x 0 0;
	padding: 10px 20px 10px 30px;
	font-size: 110%;
	line-height: 1.2em;
	margin: 0 0 0 -30px;
	border-bottom: 1px solid #EEEEEE;
}
.filter_stat {
	background: none;
	margin: 0 0 20px;
	overflow: hidden;
	padding: 0 0 10px;
}

.filter_table {
	background: #F9F9F9 none;
	/*background: rgba(255, 255, 255, 0.3) none;*/
	margin: 20px 0 30px;
	overflow: hidden;
	padding: 12px 20px 4px;
	box-shadow: 0 0 6px #C0C0C0;
	border: 1px solid #FFF;
}
.filter_censor {
	margin: 20px 0 15px;
}
.filter_buttons {
	background: none;
	margin: 0;
	overflow: hidden;
	padding: 0 0 10px;
}
.filter_table .b-label {
	display: inline;
}
.filter_table .b-select {
	height: 21px;
	-webkit-border-radius: 0;
	-moz-border-radius: 0;
	border-radius: 0;
}
.filter__item {
	float: left;
	margin-right: 30px;
}
.filter__item_last {
	float: right;
	margin-right: 0;
}
.filter__item_separated {
	margin-right: 50px;
}
.filter__settings {
	margin-bottom: 10px;
}
.filter__settings li {
	margin-right: 10px;
}
.filter__settings li a {
	display: inline-block;
	padding: 4px 10px;
}
.filter__settings li .active {
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	border-radius: 5px;
	-moz-box-shadow: inset 0 0 3px #ccc;
	-webkit-box-shadow: inset 0 0 3px #ccc;
	box-shadow: inset 0 0 3px #ccc;
	text-decoration: none;
	background-color: #FFF;
}
.filter__status,
.filter__type {
	clear: both;
}
.filter__status li,
.filter__type li {
	padding-bottom: 12px;
}
.filter .filter__type__all {
	color: #717171;
}
.filter .filter__type__active {
	color: #58b80b;
}
.filter .filter__type__inactive {
	color: #b3b3b3;
}
.filter .filter__status__moderation {
	color: #00c9af;
}
.filter .filter__status__accepted {
	color: #58b80b;
}
.filter .filter__status__excluded {
	color: #b72e2e;
}
.filter .filter__status__archive {
	color: #af820a;
}
.filter__status-holder {
	float: left;
	margin-right: 30px;
}
.filter__item .b-select {
	border: 1px solid #ccc;
}
.filter h1 {
	margin-top: 10px;
}
.filter .filter__item-title {
	margin-right: 10px;
	color: #8C8C8C;
}

/**
* @section wrap
*/
.wrap {
	min-width: 980px;
	min-height: 100%;
	height: auto !important;
	height: 100%;
	position: relative;
	width: 100%;
	background: #fff url(/i/bg_inner.png) 0 0 repeat-x;
}
.wrap_public {
	background:  #fff url(/i/bg.jpg) 50% 0 no-repeat;
	margin: 0 auto;
}

/**
* @section head
*/
.head_public {
	width: 960px;
	margin: 0 auto;
	background: none;
}
.head__logo {
	display: inline-block;
	float: left;
	padding: 10px 0 10px 30px;
}
.head__logo_public {
	padding: 67px 0 55px;
	width: 267px;
	height: 84px;
}

.target_mail__logo {
	float: right;
	width: 190px;
	height: 52px;
	padding: 20px 460px 10px 30px;
}
.target_mail__logo_public {
	padding: 90px 110px 55px;
}

/**
* @section head
* @subsection user info
*/
.user-info {
	float: right;
	display: inline-block;
	font-size: 120%;
	line-height: 1.3em;
	padding: 0 10px;
	position: relative;
}
.user-info li {
	padding: 10px 10px 7px;
}
.user-info .user-info__account {
	background: #4b7cb6 url(/i/menu_item_hover.png) 0 -2px repeat-x;
	text-align: center;
	color: #FFF;
	-moz-border-radius: 0 0 5px 5px;
	-webkit-border-radius: 0 0 5px 5px;
	border-radius: 0 0 5px 5px;
}
.user-info .user-info__client {
	padding-top: 11px;
}
.user-info a {
	color: #10498C;
}
.user-info__account-balance {
	margin-bottom: 2px;
}
.user-info__account-balance span {
	font-size: 150%;
}
.user-info .user-info__account__pay {
	color: #FFF;
}

/**
* @section head
* @subsection auth and register forms
*/
.user {
	float: right;
	display: inline-block;
	margin: 80px 0 0 0;
	font-size: 135%;
	color: #5a6e7a;
	background: #FFFFFF;
	border:  1px solid #b4e3fb;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	border-radius: 5px;
	padding: 15px;
	background: -webkit-gradient(linear, left bottom, left top, color-stop(0, #FFFFFF), color-stop(0.5, #e4f4fd), color-stop(0.8, #FFFFFF) );
	background: -moz-linear-gradient(center bottom, #FFFFFF 0%, #e4f4fd 50%, #FFFFFF 80%);
	position: relative;
}
.user .separator {
	padding: 0 8px;
	color: #2DC8EB;
}
.user-entrance,
.user-register {
	z-index: 1001;
	position: relative;
	font-weight: bold;
	color: #2DC8EB;
}
.user-register {
	z-index: 901;
}
.user-entrance_hide {
	z-index: 100 !important;
}
.user__exit {
	text-decoration: none;
	border-bottom:  1px dotted #2DC8EB;
	margin-left: 20px;
	float: left;
	line-height: 1.3em;
}
.user__user {
	line-height: 1.3em;
	display: inline-block;
	float: left;
}
.user-login__form,
.user-register__form {
	position: absolute;
	display: none;
	background: #FFFFFF;
	border: 1px solid #b4e3fb;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	border-radius: 5px;
	padding: 40px 15px 12px;
	background: #FFF;
	left: -1px;
	top: -1px;
	width: auto;
	z-index: 1000;
	font-size: 90%;
	color: #929CA4;
}
.user-login__form {
	background: #FFF url("/i/login_bg.png") repeat-x 0 bottom;
}
.user-register__form {
	z-index: 900;
	left: -139px;
	width: 283px;
}
.user .b-input {
	width: 150px;
}
.user .b-form__message {
	color: #666666;
	display: block;
	font-size: 11px;
	font-style: italic;
	line-height: 1.1em;
	margin: -3px 0 5px;
	padding-left: 0;
}
.user .b-form__error {
	color: #B72E2E;
	font-style: normal;
	display: inline-block;
	font-size: 11px;
	line-height: 1.1em;
	margin: -3px 0 5px;
	padding: 0;
}
.user .b-form__note {
	width: 90%;
	font-style: normal;
}
.user .b-form__note a {
	color: #929CA4;
}
.user-login__form .b-label,
.user-login__form .b-label_fix {
	color: #929CA4;
	font-style: normal;
}
.user-login__form .b-label_fix {
	padding-right: 0;
}
.user-login__form .remember-me {
	clear: both;
	margin-top: 45px;
	margin-bottom: 3px;
}

.client-type .client-type__item {
	position: relative;
	padding: 3px 7px;
	margin-left: 5px;
	background-color: #FFF;
	margin-top: 2px;
}
.client-type .client-type__who {
	font-size: 165%;
	color: #000;
	font-family: Georgia,"Times New Roman",serif;
}
.client-type label {
	cursor: pointer;
	border-bottom: 1px dotted #929CA4;
}
.client-type .b-radio_client {
	height: 1px;
	left: 10px;
	margin: 0;
	padding: 0;
	position: absolute;
	top: 5px;
	width: 1px;
	z-index: -1;
}
.client-type .client-type__item_selected {
	color: #FFF;
	display: inline-block;
	background: #2DC8EB;
	text-decoration: none;
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
	border-radius: 3px;
}
.client-type__item_selected label {
	border-bottom: 0;
	cursor: default;
}
.user .b-input_email-reg {
	margin: 10px 0;
	width: 100%;
}

/**
* @section head
* @subsection howto
*/
.instruction {
	background: url("/i/faq_inner.png") no-repeat 0 4px;
	height: 50px;
	position: absolute;
	right: 450px;
	text-align: right;
	top: 0;
	width: 285px;
}
.instruction__link {
	line-height: 22px;
	display: inline-block;
	padding-left: 30px;
	padding-top: 7px;
	color: #464646;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
}

/**
* @section content
*/
.content {
	padding: 0 0 190px 30px;
	background: #FFF;
	/*background: #FFF url("/i/texturebg.gif") repeat 0 0;*/
}
.content_public {
	width: 855px;
	padding-left: 95px;
	margin: 0 auto;
	background: transparent none;
}

/**
* @section content
* @subsection content layout
*/
.page-holder {
	float: left;
	margin-right: -250px;
	width: 100%;
}
.page {
	padding: 20px 20px 0 0;
	font-size: 120%;
	line-height: 1.4em;
	max-width: 950px;
}
.page_wide {
	padding: 20px 20px 0 0;
	font-size: 120%;
	line-height: 1.4em;
	width: calc(100% - 30px);
	margin-right: 30px;
}
.page_left {
	margin-right: 22%;
	min-width: 670px;
}

.aside-left {
	float: left;
	position: relative;
}
.aside-right {
	margin-left: 2%;
	display: inline-block;
}

/**
* @section content
* @subsection sidebar
*/
.sidebar {
	padding-top: 20px;
	float: right;
	width: 20%;
	font-size: 120%;
	line-height: 1.2em;
	margin-right: 20px;
}
.sidebar .sidebar__item {
	margin-bottom: 30px;
}
.sidebar .sidebar__item-title {
	font-size: 14px;
	color: #FFF;
	padding: 0 15px;
	margin: 0;
	height: 33px;
	line-height: 33px;
	background: #449ED2 url("/i/title_bg.png") repeat-x 0 -1px;
	text-shadow: #666 1px 1px 1px;
	-moz-text-shadow: #666 1px 1px 1px;
	-webkit-text-shadow: #666 1px 1px 1px;
	-moz-border-radius: 5px 5px 0 0;
	-webkit-border-radius: 5px 5px 0 0;
	border-radius: 5px 5px 0 0;
	border-top: 1px solid #CCCCCC;
}
.sidebar .sidebar__item-content {
	padding: 10px 15px;
	background-color: #FFF;
	border: 1px solid #DDD;
	border-top: 0;
	-moz-border-radius: 0 0 5px 5px;
	-webkit-border-radius: 0 0 5px 5px;
	border-radius: 0 0 5px 5px;
}
.sidebar__item-content a {
	color: #000;
}

.news .news-item {
	margin: 0 0 1em;
	padding: 0 0 1em;
	border-bottom: 1px dotted #DDD;
	position: relative;
	color: #444;
	width: 100%;
}
.news_inner .news-item {
	border-bottom: 0;
}
.news .news-item_last {
	margin: 0;
	padding: 0;
	border: 0;
}
.news .news-item__date {
	color: #888;
	position: absolute;
	right: 0;
	top: 1px;
	font-size: 10px;
}
.news_inner .news-item__date {
	left: 0;
	width: 70px;
}
.news .news-item__title {
	display: block;
	margin-bottom: 7px;
	color: #000;
	padding-right: 70px;
	font-size: 110%;
	line-height: 1.4em;
}
.news_inner .news-item__title,
.news_inner .news-item__text {
	padding: 0 0 0 70px;
	margin-bottom: 0;
}
.news_inner .news-item__text {
	font-size: 12px;
}
.news_inner .news-item__text p {
	margin-bottom: 0.5em;
}

.news_all .news-item {
	background: #FFF;
	border: 1px solid #FFFFFF;
	box-shadow: 0 0 7px #C0C0C0;
	margin: 0 0 20px;
	padding: 15px 20px;
	color: #8C8C8C;
	text-shadow: 1px 1px 0 #FFFFFF;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
	width: auto;
}
.news_all .news-item:hover {
	background: #f0f0f0;
}
.news_all .news-item__date {
	background: #F1F1F1;
	-webkit-border-radius: 0 0 0 5px;
	-moz-border-radius: 0 0 0 5px;
	border-radius: 0 0 0 5px;
	font-size: 11px;
	font-style: italic;
	padding: 5px 20px;
	top: 0;
}
.news_all .news-item:hover .news-item__date {
	background: #e5e5e5;
}
.news_all .news-item__title,
.news_all .news-item__text {
	padding: 0;
	margin-bottom: 0;
}
.news_all .news-item__title {
	color: #0077C0;
	margin-bottom: 10px;
	font-size: 17px;
	margin: 0 0 10px;
}
.news_all .news-item__text {
	font-size: 13px;
	line-height: 1.4em;
}

.sidebar .news-item__title {
	font-weight: bold;
	line-height: 1.2em;
}
.show-all {
	background: url("/i/squares.gif") no-repeat left 2px;
	padding: 0 0 0 20px;
}


/**
* Common styles for articles
*
* @section content
* @subsection text
*/
.text {
	font-size: 14px;
	line-height: 1.4em;
	padding: 20px 0 0 0;
	max-width: 960px;
}
.banner-public {
	float: right;
	margin: 0 0 0 1em;
}
.content_public .text {
	padding: 0;
}
.ui-dialog .text {
	font-size: 100%;
}
.content h1 {
	font-size: 20px;
	color: #000;
	line-height: 1.2em;
	margin-bottom: 0.5em;
}
.content h1 a {
	color: #000;
}
.content_public h1 {
	font-size: 23px;
	margin-bottom: 1em;
}
.content_public h1 span,
.previous {
	color: #9c9c9c !important;
}


.text p {
	margin-bottom: 1.5em;
}

.text ol, .text ul {
	margin: 0.5em 0 2em;
}
.text ul {
	list-style: disc;
}
.text ul li {
	padding-left: 2px;
	margin-left: 3em;
}
.text li {
	margin: 0 0 7px;
}
.text ol {
	padding-left: 1.5em;
	list-style-type: decimal;
}
.text ol li {
	padding: 0 0 2px 0;
}
.text ol ol, .text ul ul, .text ol ul, .text ul ol {
	margin-bottom: 0;
	font-weight: normal;
}
.text ol ol {
	padding-left: 2em;
}

.content h2, .content h3, .content h4, .content h5, .content h6 {
	margin: 0 0 10px;
	line-height: 1em;
}
.content h2 {
	color: #000;
	font-size: 20px;
	margin: 0 0 15px;
}
.content h3 {
	color: #000;
	font-size: 18px;
	margin: 20px 0 10px;
}	
.content h4 {
	font-size: 14px;
	color: #000;
	margin-bottom: 6px;
}	
.content h5, .content h6 {
	font-size: 110%;
	font-weight: bold;
	margin-bottom: 0.5em;
}
.content h5 span {
	color: #F00;
}
.text blockquote {
	margin : 0 0 2em 4em;
	padding: 1em 0 1em 2em;
	font-style: italic;
	border-left: 3px solid #ccc;
}
.text q {
	font-style: italic;
	background: #eee;
	padding: 3px 5px;
}
.text q:before {
	content:'\00ab';
}
.text q q:before {
	content:'\201e';
}
.text q:after {
	content:'\00bb';
}
.text q q:after {
	content:'\201c';
}
.text sub {
	vertical-align:sub;
	font-size:11px;
}
.text sup {
	vertical-align:super;
	font-size:11px;
}
code {
	font-family: Consolas, monospace;
	margin: 5px 0 15px;
	padding: 5px 15px;
	background: #ECEAEA;
	border-left: 1px solid #D9D4D3;
	display: inline-block;
	clear: both;
	font-size: 11px;
	line-height: 1.4em;
	color: #464646;
}	
.text strong, .text b, .bold {
	font-weight: bold;
	color: #000;
}
.text em, .text i, .text cite {
	font-style: italic;
}
.text small {
	font-size:11px;
}	
.text table {
	margin-bottom: 1em;
	font-size: 90%;
}
.text table th {
	color: #000;
	border-bottom: 2px solid #000;
	font-weight: bold;
	padding: 5px 20px;
	text-align: left;
}
.text table td {
	border-bottom: 1px solid #F1F1F1;
	padding: 10px 20px;
	text-align: left;
	vertical-align: middle;
}
.text .b-form {
	font-size: 90%;
}

/**
* Docs
*
* @section content
* @subsection terms list
*/
.text_contract {
	font-size: 13px;
	line-height: 17px;
	padding: 0;
	color: #000;
}
.text_contract h1 {
	font-size: 22px;
	color: #000;
	line-height: 1;
	margin-bottom: 0.7em;
}
.contract-points {
	list-style: decimal;
	font-weight: bold;
}
.contract-points__agent {
	font-weight: normal;
}
.contract-points ol {
	list-style: none;
	font-weight: normal;
}
.contract-points ul {
	margin: 0;
	padding: 0.8em 0 0 2em;
}
.contract-points ul li {
	margin-left: 1em;
}
.contract-points p {
	margin: 0.8em 0 0;
	font-weight: normal;
}
.text_contract .essential-elements {
	font-weight: normal;
	width: 100%;
	line-height: 1.2em;
}
.text_contract .essential-elements th {
	font-size: 120%;
	padding: 5px;
	text-align: center;
}
.text_contract .essential-elements td {
	padding: 5px 5px 5px 0;
	border: 0;
}
.text_contract .essential-elements th.gap {
	border: 0;
}

.text_contract .contract-table {
	font-weight: normal;
	width: auto;
	line-height: 1.2em;
	margin: 10px 0;
}
.text_contract .contract-table th {
	font-size: 100%;
	padding: 5px;
	text-align: center;
	border: 1px solid #000;
	vertical-align: middle;
}
.text_contract .contract-table td {
	padding: 5px;
	border: 1px solid #000;
}


/**
* Index page
*
* @section content
* @subsection advertising campaign
*/
.adv-campaign {
	margin-bottom: 1em;
}
.content_public .adv-campaign {
	margin-left: -95px;
}
.adv-campaign__title {
	padding-left: 95px;
}
.adv-campaign__list .adv-campaign__type {
	width: 350px;
	padding: 20px 24px 20px 95px;
	list-style: none;
	margin: 0;
	font-size: 90%;
	line-height: 1.5em;
}
.adv-campaign__list .adv-campaign__target {
	background: url(/i/target.png) 20px 6px no-repeat;
}
.adv-campaign__list .adv-campaign__application {
	background: url(/i/application.png) 18px 6px no-repeat;
}
.adv-campaign__list .adv-campaign__calls {
	background: url(/i/calls.png) 10px 6px no-repeat;
}
.adv-campaign__list .adv-campaign__mobhistory {
	background: url(/i/mob_history.png) 15px 6px no-repeat;
}
.adv-campaign__list .adv-campaign__name {
	font-size: 125%;
	color: #2DC8EB;
	text-decoration: none;
}

/**
* Index page
*
* @section content
* @subsection company info
*/
.company-info {
	font-size: 1.2em;
	line-height: 1.5;
	margin-bottom: 4em;
	max-width: 960px;
}
.company-info__item {
	width: 30%;
	margin-right: 40px !important;
}
.company-info__item_last {
	margin-right: 0 !important;
}
.company-info__item .news a {
	font-weight: normal;
}
.company-info__item .news .news-item__date {
	top: 2px;
}
.news-item__date_gray {
	color: #9c9c9c;
	font-size: 90%;
	font-style: italic;
}

/**
* Index page
*
* @section content
* @subsection partners
*/
.slider {
	background: url("/i/slider_bg.png") no-repeat scroll 0 0 transparent;display: inline;float: left;height: 73px;margin: 5px 0 50px 0;position: relative;width: 854px;
}
.slider ul {
	margin: 0 30px 0;
}
.slider .slider__item {
	text-align: center; margin: 0 10px; padding: 0; height: 70px; line-height: 70px;
}
.slider .slider__item img {
	max-width: 100%;
	vertical-align: middle;
}
.jcarousel-skin-tango .jcarousel-direction-rtl {direction: rtl;}
.jcarousel-skin-tango .jcarousel-container-horizontal {width:854px;}
.jcarousel-skin-tango .jcarousel-clip-horizontal {margin: 0 70px 0;}
.jcarousel-skin-tango .jcarousel-item {margin: 0;}
.jcarousel-skin-tango .jcarousel-next-horizontal{position:absolute;top:21px;right:31px;width:29px;height:29px;cursor:pointer;background:url(/i/slide_right.png) no-repeat;}
.jcarousel-skin-tango .jcarousel-prev-horizontal {position:absolute;top:21px;left:31px;width:29px;height:29px;cursor:pointer;background:url(/i/slide_left.png) no-repeat;}

/**
* Technology page
*
* @section content
* @subsection technology list
*/
.technology-list {
	font-size: 90%;
}
.technology-list li {
	margin-bottom: 20px;
}

/**
* Contacts page
*
* @section content
* @subsection phone
*/
.phone {
	margin-bottom: 7px;
}
.phone span {
	font-size: 150%;
	line-height: 1.2em;
}

/**
* Terms page
*
* @section content
* @subsection terms list
*/
.terms-list {
	list-style: decimal;
	font-size: 90%;
	font-weight: bold;
}
.terms-list ol {
	list-style: none;
	font-weight: normal;
}
.terms-list ul {
	margin: 0;
	padding: 0.8em 0 0 2em;
}
.terms-list ul li {
	margin-left: 1em;
}
.terms-list p {
	margin: 0.8em 0 0;
	font-weight: normal;
}




/**
*  My sites page
*
* @section content
* @subsection sites
*/
.product {
	box-shadow: 0 0 2px #BBBBBB;
	-moz-box-shadow: 0 0 2px #BBBBBB;
	-webkit-box-shadow: 0 0 2px #BBBBBB;
	margin-bottom: 30px;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	border-radius: 5px;
	max-width: 880px;
}
.product .product__title-box {
	background: #449ED2 url("/i/title_bg.png") repeat-x 0 -1px;
	-moz-border-radius: 5px 5px 0 0;
	-webkit-border-radius: 5px 5px 0 0;
	border-radius: 5px 5px 0 0;
	padding: 0 20px;
	height: 33px;
	line-height: 33px;
	margin: 0;
	color: #FFF;
}
.product .product__title-box_gray {
	background: #BBB url("/i/title_bg_gray.png") repeat-x 0 -1px;
	color: #555;
}
.product .product__title {
	line-height: 34px;
	display: inline;
	margin: 0;
	color: #FFF;
	font-size: 130%;
}
.product .product__title a {
	color: #FFF;
}
.product .product__title-box_gray a,
.product .product__title-box_gray .product__title a,
.product__title-box_gray .campaign-id {
	color: #555;
}
.product .product__title-box_gray a,
.product .product__title-box_gray .product__title a {
	border-bottom: 1px solid rgba(76, 76, 76, 0.2);
}
.product .product__title-box_gray a:hover,
.product .product__title-box_gray .product__title a:hover {
	border-bottom: 1px solid rgba(76, 76, 76, 0.3);
}
.product__id {
	color: #000;
	margin-right: 15px;
}
.product__info {
	padding: 10px 20px;
	background-color: #FFF;
}
.product__info-sidebar {
	float: right;
	width: 200px;
	margin-bottom: 10px;
	text-align: right;
}
.product__info-sidebar__img {
	max-width: 100%;
	margin-bottom: 10px;
	max-height: 170px;
}
.product__info-text {
	margin: 0 220px 10px 0;
}
.product__info-text p {
	margin-bottom: 0;
}
.product__info_blocks {
	padding: 10px 20px;
}
.product__data-box {
	border: 1px dashed #bbb;
	padding: 10px 10px 5px;
	background: #FAFAFA;
	display: inline-block;
	width: 200px;
	color: #000;
	border-radius: 5px;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
}
.product__data-box_inner {
	border: 0;
	width: 96%;
	padding: 10px 2% 5px;
	background: #F1F1F1;
}
.product__data-box_inner-links {
	width: 250px;
}
.product__data dt {
	width: 130px;
}
.product__data_inner dt {
	width: 90px;
}
.product__data_inner dd {
	padding-left: 100px;
}
.product__data-price {
	font-size: 150%;
}

.tabs-box,
.product__tabs-box {
	margin: 0;
	position: relative;
}
.tabs-box_settings {
	width: 792px;
}
.tabs-box_settings_wide {
	width: 100%;
}
.product__tabs-box_total {
	margin-bottom: 20px;
	max-width: 880px;
}

.tabs li,
.product__tabs li {
	display: inline-block;
	font-family:  "Lucida Grande", "Lucida Sans Unicode", "Trebuchet MS", sans-serif;
	text-shadow: 0 1px 0 #FFFFFF;
}
.tabs li a,
.product__tabs li a {
	color: #000;
	text-decoration: none;
	padding: 0;
	margin: 6px 10px;
	border-bottom: 1px dotted #000;
	display: inline-block;
	line-height: 1em;
}
.tabs li.selected,
.product__tabs li a.selected,
.product__tabs li a.selected:hover {
	cursor: default;
	margin: 0;
	border-radius: 5px 5px 0 0;
	-moz-border-radius: 5px 5px 0 0;
	-webkit-border-radius: 5px 5px 0 0;
	background: url("/i/menu_item.png") repeat-x scroll 0 0 #eee;
	border: 1px double #DCE1E6;
	border-width: 0 1px;
}
.product__tabs li a.selected,
.product__tabs li a.selected:hover {
	padding: 6px 10px;
}
.tabs li.selected a {
	cursor: default;
	border-bottom: 0;
}
.product__tabs_total {
	display: inline-block;
}
.product__graph,
.product__tab-content,
.tab-content {
	border: 1px solid #DCE1E6;
	border-radius: 0 0 5px 5px;
	-moz-border-radius: 0 0 5px 5px;
	-webkit-border-radius: 0 0 5px 5px;
	padding: 10px;
	margin-top: -1px;
}
.tab-content {
	display: none;
}

.tabs_stat {
	font-size: 12px;
	font-family:  "Lucida Grande", "Lucida Sans Unicode", "Trebuchet MS", sans-serif;
	height: 30px;
}
.tabs_stat li {
	margin-right: 5px;
}
.tabs_stat a {
	display: inline-block;
	padding: 0 15px;
	height: 30px;
	line-height: 30px;
	text-decoration: none;
	-moz-border-radius: 5px 5px 0 0;
	-webkit-border-radius: 5px 5px 0 0;
	border-radius: 5px 5px 0 0;
	color: #404040;
	background: #E2E5EA url("/i/menu_item.png") repeat-x 0 0;
	border: 1px double #dce1e6;
	border-width: 0 1px;
}
.tabs_stat a:hover {
	opacity: 0.8;
	filter: alpha(opacity = 80);
}
.tabs_stat .tabs_stat__item-active {
	display: inline-block;
	padding: 0 15px;
	height: 30px;
	line-height: 30px;
	-moz-border-radius: 5px 5px 0 0;
	-webkit-border-radius: 5px 5px 0 0;
	border-radius: 5px 5px 0 0;
	color: #FFF;
	background: #4B7CB6 url("/i/menu_item_hover.png") repeat-x 0 0;
	border: 1px double #1e7db9;
	border-width: 0 1px;
}
.tabs_stat-content {
	border: 1px solid #DFE3E8;
	box-shadow: 0 0 85px #EFEFEF inset;
	padding: 10px 15px 20px;
}
.tabs_offers-content {
	border: 1px solid #DFE3E8;
	padding: 0px 10px 0px;
}
.tabs_filter li {
	font-family: Arial, sans-serif;
	color: #8C8C8C;
}
.tabs_filter li.selected {
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	border-radius: 5px;

}


.product__graph_partner {
	padding: 0 0 10px;
	margin: 4px 0 20px;
}
.product__details {
	float: right;
	width: 300px;
}
.product_status {
	float: right;
}
.product__options {
	float: right;
	white-space: nowrap;
	margin-left: 40px;
}
.product__options a {
	color: #FFF;
}
.product__period {
	position: absolute;
	right: 0;
	top: 0;
}
.choose-campaign {
	position: absolute;
	right: 275px;
	top: 0;
	z-index: 100;
}
.choose-campaign-link {
	border: 1px solid #E8E8E8;
	text-decoration: none;
	border-radius: 4px;
	-moz-border-radius: 4px;
	-webkit-border-radius: 4px;
	box-shadow: 0 0 3px rgba(0, 0, 0, 0.05);
	-moz-box-shadow: 0 0 3px rgba(0, 0, 0, 0.05);
	-webkit-box-shadow: 0 0 3px rgba(0, 0, 0, 0.05);
	color: #6a6a6a;
	padding: 1px 24px 1px 10px;
	background: #fafafa url(/i/expand.gif) no-repeat 127px center;
	display: inline-block;
	cursor: pointer;
}
.campaign-list {
	display: none;
	position: absolute;
	color: #a2a2a2;
	padding: 5px 11px;
	background: #FFF;
	z-index: 101;
	white-space: nowrap;
	top: 23px;
	border: 1px solid #E8E8E8;
}

.data-table {
	width: 100%;
	color: #000;
}
.data-table th,
.data-table td {
	border-bottom: 1px solid #F1F1F1;
	padding: 6px 10px 2px 5px;
	text-align: right;
	vertical-align: middle;
}
.data-table td {
	font-size: 110%;
	padding: 6px 10px 6px 5px;
}
.data-table th {
	color: #000;
	border-bottom: 1px solid #CCCCCC;
}
.data-table th span {
	font-weight: normal;
	color: #A2A2A2;
}
.data-table .data-table__section {
	text-align: left;
	font-size: 120%;
	color: #929CA4;
	/*width: 200px;*/
}
.data-table .data-table__left {
	text-align: left;
}
.data-table .data-table__right {
	text-align: right;
}
.data-table .data-table__center {
	text-align: center;
}
.data-table .data-table__noborder {
	border-bottom: 0;
}
.data-table .data-table__result {
	padding-bottom: 2px;
	background: url("/i/menu_item.png") repeat-x scroll 0 -2px #E9EBF0;
	font-size: 18px;
}
.data-table .data-table__result span {
	font-size: 12px;

}
.data-table .data-table__total {
	text-align: left;
}
.data-table .data-table__totals td {
	border-top: 2px solid #10498C;
	border-bottom: 0;
}
.data-table .data-table__name {
	color: #000;
	font-weight: bold;
	text-align: left;
}
.data-table .data-table__details {
	max-width: 200px;
	word-wrap: break-word;
}
.data-table .data-table__more {
	text-align: left;
	border-bottom: 0;
	font-size: 100%;
}
.add-more-link {
	color: #000000;
	display: inline-block;
	margin: 5px 0 0 5px;
}
.data-table .data-table__more a,
.add-more-link a {
	color: #000000;
}
.data-table .data-table__more .add-more-link {
	margin: 0;
}
.data-table .data-table__advaction,
.data-table .data-table__today,
.data-table .data-table__highlight {
	border-bottom: 2px solid #10498C;
	color: #10498C;
	text-align: center;
}
.data-table__important {
	background: #F9F9F9;
}
.data-table .data-table__weather_header {
	border-bottom: 2px solid #0E9B0D;
	color: #0E9B0D;
	text-align: center;
}
.data-table .data-table__weather {
	background: #e9fadb;
	border-bottom: 1px solid #dcf0cb;
	color: #404040;
	font-size: 90%;
	width: 270px;
	padding: 2px 0 0;
}
.data-table .data-table__attendance {
	border-bottom: 0;
}
.data-table .data-table__empty {
	border-color: #FFFFFF !important;
}
.data-table .msg td,
.data-table .msg_first td {
	border-bottom: 0;
}
.data-table .msg_hidden td {
	display: none;
}
.data-table tfoot td {
	border-bottom: 0;
	color: #000;
	font-size: 150%;
	padding-top: 10px;
}
.data-table_colored tr {
	border: 1px solid #DFE3E8;
	border-width: 0 1px;
}
.data-table_colored th {
	background: url(/i/menu_item.png) repeat-x 0 0;
}
.data-table_colored__total {
	border: 0 !important;
}
.data-table_colored__total td {
	border-bottom: 0 !important;
}
.data-table_type_text th,
.data-table_type_text td {
	text-align: left;
	font-size: 100%;
}

.data-table_products th,
.data-table_products td {
	font-size: 100%;
}
.data-table_products tr {
	border: 1px solid #F1F1F1;
	border-width: 0 1px;
}
.data-table_products th {
	border-right: 1px solid #CCCCCC;
}
.data-table_products td {
	border-right: 1px solid #F1F1F1;
}



/*.data-table_offers .offer__off td {
	background: #f7f7f7;
}*/

.offer {
	background: #f0f0f0;
	border: 1px solid #FFFFFF;
	box-shadow: 0 0 3px #C0C0C0;
	margin: 0 0 10px;
	padding: 0 10px;
	color: #8C8C8C;
	text-shadow: 1px 1px 0 #FFFFFF;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
}
.offer_head {
	background: transparent;
	border: 0;
	box-shadow: none;
	margin-bottom: 5px;
}
.offer_on {
	background: #fff;
}
.offer-table {
	width: 100%;
}
.offer-table td {
	border-right: 1px solid #EEEEEE;
	padding: 8px;
	vertical-align: top;
}
.offer-table_head td {
	color: #000;
	padding: 0 8px;
	font-weight: bold;
	border-right: 1px solid transparent;
}
.offer td:last-child {
	border-right: 0;
	padding-right: 0;
}
.offer .offer__img {
	width: 90px;
	border-right: 0;
	padding-left: 0;
}
.offer .offer__img img {
	max-width: 90px;
	box-shadow: 0 0 5px #ccc;
}
.offer .offer__title {
	font-size: 17px;
	margin-bottom: 10px;
}
.offer .offer__info {
	color: #888888;
	font-size: 12px;
	text-align: left;
}
.offer .offer__link {
	margin-bottom: 3px;
}
.offer .offer__type,
.offer .offer__price,
.offer .offer__regions,
.offer .offer__category {
	width: 75px;
	text-align: center;
}
.offer .offer__category {
	width: 100px;
}
.offer .offer__price {
	color: #000;
	font-size: 18px;
}
.offer-table_head .offer__price {
	font-size: 12px;
}
.offer .offer__price span {
	font-size: 12px;
	color: #aaa;
	font-weight: normal;
}
.offer .offer__regions,
.offer .offer__status {
	white-space: nowrap;
}
.offer .offer__status {
	color: #c0c0c0;
	width: 55px;
}
.offer .offer__status_on {
	color: #71afdf;
}
.offer-table_head .offer__status {
	color: #000;
}
.all-offers {
	padding-left: 21px;
}

/**
*  Requests page
*
* @section content
* @subsection requests
*/
.data-table_type_requests {
	width: 100%;
	margin-top: 15px;
}
.data-table_type_requests th,
.data-table_type_requests td {
	text-align: left;
	vertical-align: top;
	font-size: 100%;
	max-width: 100px;
	word-wrap: break-word;
}
.data-table_type_requests .b-textarea {
	width: 200px;
	height: 100px;
	float: left;
	margin: 5px 10px 5px 0;
}
.data-table_type_requests th.data-table__advaction {
	text-align: center;
}
.data-table_type_requests .pseudo-link {
	color: #000;
}
.data-table_type_requests .request-type {
	margin-right: 10px;
}
.data-table_type_requests .request-type_excellent {
	color: #0E9B0D;
}
.data-table_type_requests .request-type_work {
	color: #2DC8EB;
}
.data-table_type_requests .request-type_fake {
	color: #F00;
}
.data-table_type_requests .request-buttons {
	width: 200px;
}
.data-table_type_requests .data-table_type_requests__section {
	margin-top: 10px;
	width: 200px;
}
.request-form td {
	text-align: left;
}
.weather .temperature {
	font-size: 165%;
	color: #000;
	width: 46px;
}
.weather td {
	vertical-align: middle;
	border-bottom: 0;
	padding: 3px 15px;
	text-align: left;
	white-space: nowrap;
}


/**
*  Placement page
*
* @section content
* @subsection placement block
*/
.placement-block {
	font-size: 90%;
}
.placement-block__item {
	float: left;
	margin-right: 20px;
	margin-top: 0;
	clear: none;
}
.placement-block__title {
	width: 120px;
}
.placement-block__code {
	width: 600px;
}


/**
*  Rotator page
*
* @section content
* @subsection rotator block
*/
.rotator-block {
	font-size: 90%;
	width: 500px;
}
.rotator-block__item {
	margin-right: 20px;
	margin-top: 0;
	clear: none;
}
.rotator-block__title {
	width: 120px;
}
.rotator-block__code {
	width: 600px;
}
.rotator-block__note {
	color: #999;
	font-size: 90%;
	font-style: italic;
	line-height: 1.2em;
	text-align: left;
	width: 400px;
	margin: -7px 0 10px;
	padding-right: 35px;
}

/**
* FAQ
*
* @section content
* @subsection FAQ
*/
.faq-list {
	/*background: rgba(250, 250, 250, 0.5);
	border-radius: 10px;
	-moz-border-radius: 10px;
	-webkit-border-radius: 10px;*/
	padding: 17px 20px 10px 40px !important;
	border-left: 3px solid #2DC8EB;
}
.faq-list_instruction {
	padding: 20px !important;
}
.faq-list a {
	color: #000;
}
.faq-list__first {
	float: left;
	width: 50%;
}
.faq-list__second li { list-style-type: none; }
.faq-list__second {
	counter-reset: list 9;
}
.faq-list__second li:before {
	counter-increment: list;
	content: counter(list) ".\a0\a0";
}

/**
* @section content
* @subsection lightbox
*/
.ui-dialog {
	padding: 1.5em;
	border-radius: 15px;
	-moz-border-radius: 15px;
	-webkit-border-radius: 15px;
	border:  0;
}
.ui-dialog .ui-dialog-title {
	color: #000000;
	font-family: georgia;
	font-size: 200%;
	line-height: 1.1;
	font-style: italic;
	font-weight: normal;
}
.ui-dialog .ui-dialog-titlebar-close {
	height: 25px;
	margin: 0;
	padding: 0;
	position: absolute;
	right: -15px;
	top: -15px;
	width: 25px;
	border: 0;
}
.ui-widget-header .ui-icon-closethick {
	background: url("/i/close.png") no-repeat 0 0;
}
.ui-dialog .ui-dialog-titlebar-close:hover,
.ui-dialog .ui-dialog-titlebar-close:focus {
	background: none;
	border: 0;
}
.ui-dialog .ui-dialog-buttonpane {
	border-width: 0;
	padding: 0;
	margin: 0 7px 0 0;
}


/**
* Share icons
*/
#share42 {
	background: transparent;
}
#share42 a {
	opacity: 0.5;
	vertical-align: bottom;
	border-bottom: 0;
}
#share42:hover a {opacity: 0.7}
#share42 a:hover {opacity: 1}


/**
* @section foot
*/
.foot {
	position: relative;
	min-width: 980px;
	height: 135px;
	margin-top: -135px;
	font-size: 110%;
	line-height: 1.5em;
	color: #616161;
	background: #FFF;
}
.foot_public {
	background: transparent;
	width: 960px;
	margin: -135px auto 0;
}
 .foot-info {
	padding: 0 20px 0 30px;
}
.foot_public .foot-info {
	margin: 0 auto;
	padding: 0 10px 0 30px;
}
.foot-menu-holder {
	border: 1px solid #dedede;
	border-width: 1px 0;
	height: 37px;
	line-height: 37px;
	padding: 0 20px 0 30px;
	background: #F9F9F9 url("/i/footer_menu_bg.png") repeat-x 0 0;
}
.foot_public .foot-menu-holder {
	margin: 0 auto;
	padding: 0 10px 0 30px;
	border-radius: 5px;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	border-width: 1px;
}
.foot-menu {
	float: left;
	margin: 0 60px 0 0;
	color: #000;
}
.foot-networks {
	float: right;
	color: #000;
	margin-top: 7px;
	line-height: 1;
}
.foot-networks .foot-networks__item {
	margin-left: 10px;
}
.foot-menu .foot-menu__item-active {
	font-weight: bold;
}
.foot-info__item {
	float: left;
	display: inline;
	margin-right: 140px;
	padding-top: 10px;
}
.foot-info__item_last {
	float: right;
	margin-right: 0;
	text-align: right;
}
.foot-info__item_contacts {
	color: #000;
	margin-right: 0;
}
.foot-info__item__working-time {
	border-radius: 5px;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	border: 1px dashed #DEDEDE;
	padding: 10px 10px 4px 30px;
	text-align: left;
	position: relative;
}
.foot-info__item-link_contacts {
	margin-left: 15px;
}



/** Partner Path: Breadcrumbs **/
#partner_path {
	/*clear: both;*/
	display: table;
	height: 30px;
	margin: 0 0 10px;
	padding: 0;
	position: relative;
	width: 100%;
}
#partner_path div, #partner_path a {
	/*clear: right;*/
	display: block;
	float: left;
	height: 30px;
	margin: 0;
	overflow: hidden;
	padding: 0;
	position: relative;
	width: 12%;
	z-index: 0;
	text-align: center;
	border: none;
	text-decoration: none;
}
#partner_path .passed .grey_blue {
	background-image: url("/i/path/grey_corner.gif");
}
#partner_path .passed span {
	background-image: url("/i/path/grey_corner3.gif");
}
#partner_path div span, #partner_path a span {
	background: url("/i/path/white_corner.gif") no-repeat scroll right 0 rgba(0, 0, 0, 0);
	display: block;
	margin: 0;
	padding: 0;
	width: 100%;
}
#partner_path #last_status span { background-image: url(/i/path/white_corner2.gif); }
#partner_path #first_status span { border-left:#b3b3b3 solid 1px; }
#partner_path .passed p {
	background-image: url("/i/path/statusbar_bg_passed.gif");
	color: #FFFFFF;
}
#partner_path div span p, #partner_path a span p {
	background: url("/i/path/statusbar_bg.gif") repeat-x scroll 0 0 rgba(0, 0, 0, 0);
	color: #999999;
	font-size: 12px;
	height: 30px;
	line-height: 30px;
	margin: 0 11px 0 0;
	padding: 1px 3px 0 6px;
}
#partner_path .current span {
	background-image: url("/i/path/blue_corner.gif");
}
#partner_path #last_status.current .blue_white { background-image:url(/i/path/blue_corner2.gif); }
#partner_path .current p {
	background-image: url("/i/path/statusbar_bg_current.gif");
	color: #FFFFFF;
	height: 30px;
}
/** /Partner Path: Breadcrumbs **/

/** myTarget **/

.header-fix {
	height: 65px;
	position: fixed;
	top: 0;
	width: 100%;
	clear: both;
	background-color: #FFFFFF;
	box-shadow: 1px 0 5px #888;
	vertical-align: baseline;
	border: 0;
	font-size: 100%;
	z-index: 1000;
	text-align: center;
	text-transform: uppercase;
}

.header-fix .logo {
	position: absolute;
	margin-left: 5px;
	margin-top: 5px;
	float: left;
	width: 158px;
	height: 50px;
	font-size: 24px;
	font-weight: bold;
}

.header-fix .logo_mobile {
	font-size: 9px;
	color: #000000;
}

.header-fix .accounts-menu {
	position: absolute;
	top: 70px;
	left: 0px;
	background: #FFFFFF;
	border: 1px solid #f1f1f1;
	margin: 0;
	padding: 0;
	z-index: 502;
	font-size: 14px;
	text-align: left;
}

.header-fix .accounts-menu-item {
	padding: 5px 5px 5px 10px;
	cursor: pointer;
}

.header-fix .accounts-menu-item a {
	color: #000000;
}

.header-fix .accounts-menu-item:hover {
	background-color: #F1F1F1;
}

.header-fix .accounts-menu-item-disabled {
	padding: 5px 5px 5px;
	font-size: 10px;
	color: #8c8c8c;
}

.header-fix .accounts-menu-item-active {
	background-color: #F1F1F1;
}

.header-fix .accounts-menu-item img {
	margin-right: 5px;
	float: left;
}

.header-fix .profile {
	position: absolute;
	margin-right: 50px;
	margin-top: 17px;
	height: 50px;
	top: 0;
	right: 0;
	font-size: 12px;
	text-align: right;
}

.header-fix .profile .account-balance {
	color: #0077c0;
	font-weight: bold;
}

.header-fix .profile .account-balance span {
	font-size: 24px;
	height: 24px;
}

.header-fix .profile .license-expires {
	font-size: 10px;
}

.header-fix .logout {
	position: absolute;
	color: #0077c0;
	margin-top: 21px;
	height: 50px;
	top: 0;
	right: 0;
}

.header-fix .logout a {
	float: right;
}

.sidebar-fix {
	position: fixed;
	margin-left: 1010px;
	width: 200px;
}

.sidebar-extended-fix {
	position: fixed;
	right: 0px;
	width: 200px;
}

.current-account-fix {
	background: rgba(255, 255, 255, 1) url("/i/icon/key20.png") no-repeat 5px 5px;
	border: 1px solid #f1f1f1;
	box-shadow: 0 0 3px #C0C0C0;
	color: #000000;
	padding: 5px 5px 5px 30px;
	font-size: 11px;
	line-height: 20px;
	cursor: pointer;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.current-account-fix:hover {
	background-color: #F1F1F1;
}

.mytarget-accounts-menu {
	background: #FFFFFF;
	border: 1px solid #f1f1f1;
	margin: 0;
	padding: 0;
	z-index: 502;
	font-size: 11px;
	text-align: left;
	max-height: 500px;
	overflow-y: scroll;
}

.mytarget-accounts-menu a:not(.pseudo-link) {
	color: #000000;
}

.mytarget-accounts-menu-item {
	padding: 5px 5px 5px 4px;
	line-height: 14px;
	border-top: 1px solid #f1f1f1;
	cursor: pointer;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.mytarget-accounts-menu-item-active {
	background-color: #F1F1F1;
	font-weight: bold;
}

.mytarget-accounts-menu-item:hover {
	background-color: #F1F1F1;
}

.banners_count-fix {
	background: none repeat scroll 0 0 #ffffff;
	border: 1px solid #f1f1f1;
	box-shadow: 0 0 3px #c0c0c0;
	color: #8c8c8c;
	width: 200px;
	text-transform: uppercase;
	font-size: 12px;
}

.banners_count-fix-extended {
}

.banners_count-fix-header {
	padding: 5px;
	text-align: center;
	font-size: 11px;
	cursor: pointer;
	color: #000000;
	height: 20px;
	line-height: 20px;
}

.today_stat-fix {
	margin-top: 10px;
	background: none repeat scroll 0 0 #ffffff;
	border: 1px solid #f1f1f1;
	box-shadow: 0 0 3px #c0c0c0;
	color: #8c8c8c;
	width: 200px;
	text-transform: uppercase;
	font-size: 12px;
}

.today_stat-fix-extended {
}

.today_stat-fix-header {
	padding: 10px 20px 10px;
	color: #000;
	font-weight: bold;
	text-align: center;
	font-size: 14px;
	cursor: pointer;
}

.today_stat-fix-systems {
	padding: 0 10px 0;
	border-bottom: 1px solid #F1F1F1;
	color: #000;
	font-weight: bold;
	font-size: 14px;
	text-align: center;
}

.today_stat-fix-systems-item {
	padding: 5px;
	display: inline-block;
	cursor: pointer;
	font-size: 10px;
}

.today_stat-fix-systems-item:hover {
	background-color: #f1f1f1;
}

.today_stat-fix-systems-item-active {
	background-color: #f1f1f1;
}

.today_stat-fix-systems img {
	vertical-align: middle;
}

.today_stat-fix-body {
	padding: 0 10px 0;
}

.today_stat-fix-body table {
	table-layout: fixed;
	width: 100%;
}

.today_stat-fix-body table td {
	padding: 6px 0px 6px;
}

.today_stat-fix-body tr:not(:last-child) {
	border-bottom: 1px solid #F1F1F1;
}

.today_stat-fix-body-value {
	text-align: right;
	font-size: 16px;
	color: #000;
}

.support-fix {
	background: none repeat scroll 0 0 #ffffff;
	border: 1px solid #f1f1f1;
	box-shadow: 0 0 3px #c0c0c0;
	color: #8c8c8c;
	padding: 8px 10px 5px 8px;
	position: fixed;
	top: 350px;
	right: 0;
	cursor: pointer;
}

.support-dialog {
	background: none repeat scroll 0 0 #ffffff;
	border: 1px solid #f1f1f1;
	box-shadow: 0 0 3px #c0c0c0;
	color: #8c8c8c;
	padding: 10px;
	font-size: 12px;
	width: 400px;
	position: fixed;
	top: 350px;
	right: 55px;
	z-index: 2000;
}

.support-dialog h3 {
	font-size: 18px;
	color: #000000;
}

.support-dialog table td {
	padding: 5px;
	vertical-align: top;
}

.event_log-fix {
	margin-top: 10px;
	background: none repeat scroll 0 0 #ffffff;
	border: 1px solid #f1f1f1;
	box-shadow: 0 0 3px #c0c0c0;
	color: #8c8c8c;
	width: 200px;
	font-size: 12px;
}

.event_log-fix-header {
	padding: 10px 20px 10px;
	border-bottom: 1px solid #F1F1F1;
	color: #000;
	font-weight: bold;
	text-align: center;
	font-size: 14px;
	text-transform: uppercase;
	cursor: pointer;
}

.event_log-fix-body {
	padding: 0px 10px 0px;
}

.event_log-fix-item {
	padding: 10px 0px 10px;
	position: relative;
}

.event_log-fix-item:not(:last-child) {
	border-bottom: 1px solid #F1F1F1;
}

.event_log-fix-item-header {
	position: relative;
	height: 18px;
}

.event_log-fix-item-header-type {
	position: absolute;
	top: 0;
	left: 0;
	text-transform: uppercase;
	cursor: pointer;
}

.event-click_limit_start, .event-ctr_limit_start {
	color: #16bf00;
}

.event-click_limit_stop, .event-ctr_limit_stop {
	color: #f00;
}

.event_log-fix-item-header-time {
	position: absolute;
	top: 0;
	right: 0;
	font-size: 10px;
}

.event_log-fix-item-body {
	width: 250px;
	position: absolute; 
	left: -273px;
	top: 0px;
	background: #FFFFFF;
	border: 1px solid #f1f1f1;
	box-shadow: 0 0 3px #C0C0C0;
	padding: 5px 4px 5px 5px;
	font-size: 12px;
	z-index: 502;
}

.event_log-fix-item-body span {
	color: #000000;
}

.conversions-fix {
	margin-top: 10px;
	background: none repeat scroll 0 0 #ffffff;
	border: 1px solid #f1f1f1;
	box-shadow: 0 0 3px #c0c0c0;
	color: #8c8c8c;
	width: 200px;
	font-size: 12px;
}

.conversions-fix-header {
	padding: 10px 20px 10px;
	border-bottom: 1px solid #F1F1F1;
	color: #000;
	font-weight: bold;
	text-align: center;
	font-size: 14px;
	text-transform: uppercase;
	cursor: pointer;
}

.conversions-fix-body {
	padding: 0px 10px 0px;
}

.conversions-fix-item {
	padding: 5px 0px;
	position: relative;
}

.conversions-fix-item:not(:last-child) {
	border-bottom: 1px solid #F1F1F1;
}

.conversions-fix-item-header {
	position: relative;
}

.conversions-fix-item-header-info {
	font-size: 10px;
}

.conversions-fix-item-header-info-amount {
	font-size: 12px;
	color: #000000;
}

.conversions-fix-item-header-time {
	position: absolute;
	top: 0;
	right: 0;
	font-size: 10px;
}

.conversions-fix-item-body {
	width: 250px;
	position: absolute; 
	left: -273px;
	top: 0px;
	background: #FFFFFF;
	border: 1px solid #f1f1f1;
	box-shadow: 0 0 3px #C0C0C0;
	padding: 5px 4px 5px 5px;
	font-size: 12px;
	z-index: 502;
}

.conversions-fix-item-body span {
	color: #000000;
}

.maincontain {
	padding-top: 70px;
	margin: 10px auto;
	z-index: 500;
	width: 1210px;
	position: relative;
	padding-bottom: 150px;
}

.maincontain-extended { width: 100%; }
.maincontain-extended-dashboard { width: 2300px;; }

.maincontain-extended-2 { 
	width: calc(100% - 210px); 
	margin-left: 0px;
}

.maincontain h1 {
	font-size: 20px;
	color: #000;
	line-height: 1.2em;
	margin-bottom: 1em;
}

.maincontain h1 a {
	color: #000;
}

.ag-checkbox-input {
	vertical-align: unset;
}
.maincontain input[type="checkbox"]:not(.tmt):not(.onoffswitch-checkbox):not(.age-checkbox):not(#select-all-checkbox):not(.ag-checkbox-input) {
	display:none;
}

.maincontain input[type="checkbox"]:not(.tmt):not(.onoffswitch-checkbox):not(.age-checkbox):not(#select-all-checkbox) + label::before {
	display:inline-block;
	width:19px;
	height:19px;
	vertical-align:middle;
	background:url("/i/ui.png") left top no-repeat;
	cursor:pointer;
	content:"";
}

.maincontain input[type="checkbox"]:not(.tmt):not(.onoffswitch-checkbox):not(.age-checkbox):not(#select-all-checkbox) + label:not(.b-label_custom)::before {
	margin: 0 4px 5px 0;
}

.maincontain input[type="checkbox"]:not(.tmt):not(.onoffswitch-checkbox):not(.age-checkbox):not(#select-all-checkbox):checked + label::before {
	background:url("/i/ui.png") -20px top no-repeat;
}

.maincontain input[type="radio"] {
	display:none;
}

.maincontain input[type="radio"] + label::before {
	display:inline-block;
	width:19px;
	height:19px;
	margin: 0 4px 5px 0;
	vertical-align:middle;
	background:url("/i/ui.png") -39px top no-repeat;
	cursor:pointer;
	content:"";
}

.maincontain input[type="radio"]:checked + label::before {
	background:url("/i/ui.png") -59px top no-repeat;
}

ul.nav {
	padding-right: 100px;
}

li.nav-item {
	display: inline-block;
	text-align: center;
	padding: 11px 8px 12px;
	font-size: 11px;
	color: #616161;
	font-weight: bold;
	width: 60px;
}

li.nav-item-active {
	background-color: #F1F1F1;
}

li.nav-item:hover {
	background-color: #F1F1F1;
}

li.nav-item img {
	width: 24px;
	height: 24px;
}

input.btn_ok {
	cursor: pointer;
	display: inline-block;
	background: #0077c0;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	border: 1px solid #0077c0;
	border-radius: 5px;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	box-shadow: 1px 1px 1px 1px #C0C0C0;
	font-size: 12px;
	color: #ffffff;
	height: 32px;
	width: 100px;
	margin-right: 10px;
	text-transform: uppercase;
}

input.btn_ok_wide {
	cursor: pointer;
	display: inline-block;
	background: #0077c0;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	border: 1px solid #0077c0;
	border-radius: 5px;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	box-shadow: 1px 1px 1px 1px #C0C0C0;
	font-size: 12px;
	color: #ffffff;
	height: 32px;
	width: 160px;
	margin-right: 10px;
	text-transform: uppercase;
}

input.width_260 {
	width: 260px;
}

div.btn_big {
	cursor: pointer;
	display: inline-block;
	vertical-align: top;
	text-align: center;
	line-height: 32px;
	padding: 0px 6px 0px;
	background: #ffffff;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	border: 1px solid #ffffff;
	border-radius: 5px;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	box-shadow: 1px 1px 1px 1px #C0C0C0;
	font-size: 12px;
	color: #000000;
	height: 32px;
	width: 250px;
	margin-right: 10px;
	text-transform: uppercase;
}

div.btn_common {
	cursor: pointer;
	display: inline-block;
	vertical-align: top;
	text-align: center;
	line-height: 32px;
	padding: 0px 6px 0px;
	background: #ffffff;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	border: 1px solid #ffffff;
	border-radius: 5px;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	box-shadow: 1px 1px 1px 1px #C0C0C0;
	font-size: 12px;
	color: #000000;
	height: 32px;
	width: 100px;
	margin-right: 10px;
	text-transform: uppercase;
}

div.btn_common_150 {
	width: 150px;
}

div.btn_blue {
	background: #0077c0;
	border: 1px solid #0077c0;
	color: #ffffff !important;
}

.icon_16 {
	margin-right: 8px;
	cursor: pointer;
	width: 16px;
	height: 16px;
	display: inline-block;
}
.icon_16_no_btn {
	width: 16px;
	height: 16px;
	display: inline-block;
}
.icon_24 {
	margin-right: 8px;
	cursor: pointer;
	width: 24px;
	height: 24px;
	display: inline-block;
}
.campaign-main-left-buttons .icon_24 {
	margin-right: 2px;
}
.icon_32 {
	margin-right: 8px;
	cursor: pointer;
	width: 32px;
	height: 32px;
	display: inline-block;
}
.icon_top {
	vertical-align: top;
}
.icon_bottom {
	vertical-align: bottom;
}
.icon_middle {
	vertical-align: middle;
}
.icon_16:hover,
.icon_24:hover,
.icon_32:hover  {
	opacity: 0.5;
	filter: alpha(opacity = 80);
}
.icon_16_stat {
	background-image: url("/i/icon/stat16.png");
}
.icon_16_stop {
	background-image: url("/i/icon/stop16.png");
}
.icon_16_faststat {
	background-image: url("/i/icon/faststat16.png");
}
.icon_16_options {
	background-image: url("/i/icon/options16.png");
}
.icon_16_delete {
	background-image:url("/i/icon/delete16.png");
}
.icon_16_copy {
	background-image:url("/i/icon/copy16.png");
}
.icon_16_undo {
	background-image:url("/i/icon/undo16.png");
}
.icon_16_edit {
	background-image:url("/i/icon/edit16.png");
}
.icon_16_plus {
	background-image:url("/i/icon/plus16.png");
}
.icon_16_play {
	background-image:url("/i/icon/play16.png");
}
.icon_16_pause {
	background-image:url("/i/icon/pause16.png");
}
.icon_16_help {
	background-image:url("/i/icon/help16.png");
}
.icon_16_help_2 {
	background-image:url("/i/icon/help16_2.png");
}
.icon_16_red_down_arrow {
	background-image:url("/i/icon/red_down_arrow16.png");
}
.icon_16_green_up_arrow {
	background-image:url("/i/icon/green_up_arrow16.png");
}
.icon_16_good {
	background-image:url("/i/icon/good16.png");
}
.icon_16_pending {
	background-image:url("/i/icon/pending16.png");
}
.icon_16_bad {
	background-image:url("/i/icon/bad16.png");
}
.icon_16_calc {
	background-image: url("/i/icon/map16.png");
}
.icon_16_rule {
	background-image:url("/i/icon/rule16.png");
}
.icon_16_options_new {
	background-image: url("/i/icon/options_new16.png");
}
.icon_16_pencil {
	background-image: url("/i/icon/pencil16.png");
}
.icon_16_binoculars {
	background-image: url("/i/icon/binoculars16.png");
}
.icon_16_info {
    background-image: url("/i/icon/info.png");
}
.icon_16_speaker {
    background-image: url("/i/icon/speaker.png");
}
.icon_16_speaker_mute {
	background-image: url("/i/icon/speaker_mute.png");
}
.icon_16_arrow_right {
	background-image: url("/i/icon/arrow_right_16.png");
}
.icon_16_arrow_down {
	background-image: url("/i/icon/arrow_down_16.png");
}
.icon_24_faststat {
	background-image: url("/i/icon/faststat24.png");
}
.icon_24_options {
	background-image: url("/i/icon/options24.png");
}
.icon_24_question {
	background-image: url("/i/icon/question24.png");
}
.icon_24_options_new {
	background-image: url("/i/icon/options_new24.png");
}
.icon_24_abacus {
	background-image: url("/i/icon/abacus24.png");
}
.icon_24_calc {
	background-image: url("/i/icon/map24.png");
}
.icon_24_delete {
	background-image:url("/i/icon/delete24.png");
}
.icon_24_new {
	background-image:url("/i/icon/new24.png");
}
.icon_24_copy {
	background-image:url("/i/icon/copy24.png");
}
.icon_24_undo {
	background-image:url("/i/icon/undo24.png");
}
.icon_24_close {
	background-image:url("/i/icon/close24.png");
}
.icon_24_play {
	background-image:url("/i/icon/play24.png");
}
.icon_24_refresh {
	background-image:url("/i/icon/refresh24.jpg");
}
.icon_24_pause {
	background-image:url("/i/icon/pause24.png");
}
.icon_24_mass_edit {
	background-image:url("/i/icon/mass_edit24.png");
}
.icon_24_bid {
	background-image:url("/i/icon/bid24.png");
}
.icon_24_del_rules {
	background-image:url("/i/icon/del_rules24.png");
}
.icon_24_download_csv {
	background-image: url("/i/icon/download_csv24.png");
}
.icon_24_upload_csv {
	background-image: url("/i/icon/upload_csv24.png");
}
.icon_24_reports {
	background-image: url("/i/icon/reports24.png");
}
.icon_24_tag {
	background-image: url("/i/icon/tag24.png");
}
.icon_24_tag_add {
	background-image: url("/i/icon/tag_add24.png");
}
.icon_24_tag_remove {
	background-image: url("/i/icon/tag_remove24.png");
}
.icon_16_mass_campaigns_edit {
	background-image: url("/i/icon/edit-property-16.png");
}
.icon_24_mass_campaigns_edit {
	background-image: url("/i/icon/edit-property-24.png");
	background-size: contain;
}
.icon_24_profile {
	background-image: url("/i/icon/strategy32.png");
	background-size: contain;
}
.icon_24_search_words {
	background-image: url("/i/icon/search_words24.png");
}
.icon_24_arrow_right {
	background-image: url("/i/icon/arrow_right_24.png");
}
.icon_24_arrow_down {
	background-image: url("/i/icon/arrow_down_24.png");
}
.icon_24_stat {
	background-image: url("/i/icon/stat24.png");
}
.icon_24_google_sheets {
	background-image: url("/i/icon/sheets24.png");
}
.icon_24_history {
	background-image: url("/i/icon/campaign_history.png");
	background-size: contain;
}
.icon_32_close {
	background-image:url("/i/icon/close32.png");
}
.icon_32_logout {
	background-image:url("/i/icon/logout32.png");
}
.icon_32_billing {
	background-image:url("/i/icon/billing.png");
}
.icon_32_strategy {
	background-image:url("/i/icon/strategy.png");
}
.icon_32_plus_circled {
	background-image:url("/i/icon/plus_circled32.png");
}
.icon_32_eye_keyhole {
	background-image:url("/i/icon/eye_keyhole32.png");
}
.icon_32_excel_yandex {
	background-image:url("/i/icon/excel_yandex32.png");
}

.gif_loader_16 {
	background-image:url("/i/loader16.gif");
	width: 16px;
	height: 16px;
}
.gif_loader_24 {
	background-image:url("/i/loader24.gif");
	width: 24px;
	height: 24px;
}

.gif_loader_32 {
	background-image:url("/i/loader32.gif");
	width: 32px;
	height: 32px;
}

.gif_loader_64 {
	background-image:url("/i/loader32.gif");
	width: 32px;
	height: 32px;
}

.span-error {
	color: #EB5439;
	font-size: 12px;
}

.span-ok {
	color: #2bb26f;
	font-size: 12px;
}

.field_error {
	background: #FCCAC1;
	color: #565656;
	border: 1px solid #EB5439;
	border-radius: 5px;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	box-shadow: inset 0 0 3px #FFF;
	-moz-box-shadow: inset 0 0 3px #FFF;
	-webkit-box-shadow: inset 0 0 3px #FFF;
}

.billing_license {
	width: 500px;
	background: #FFFFFF;
	border: 1px solid #f1f1f1;
	box-shadow: 0 0 3px #C0C0C0;
	margin: 0 auto;
	color: #616161;
	font-size: 16px;
}

.billing_license_buy {
	padding-bottom: 20px;
}

.register {
	width: 500px;
	background: #FFFFFF;
	border: 1px solid #f1f1f1;
	box-shadow: 0 0 3px #C0C0C0;
	margin: 0 auto;
	color: #616161;
	font-size: 16px;
	padding-bottom: 20px;
}

.authorization {
	width: 500px;
	background: #FFFFFF;
	border: 1px solid #f1f1f1;
	box-shadow: 0 0 3px #C0C0C0;
	margin: 0 auto;
	color: #616161;
	font-size: 16px;
	padding-bottom: 30px;
}

.authorization-block {
	margin: 0 auto;
	width: 400px;
	text-align: center;
	padding-top: 20px;
}

.authorization-block .logo {
	margin: 0 auto;
}

.authorization-block-field {
	padding-top: 10px;
	width: 400px;
}

.authorization-block-field-radio {
	margin-left: 10px;
}

.authorization-block-field span.authorization-block-field-login {
	font-size: 28px;
	color: #000000;
	margin-top: 10px;
}

.authorization-block-field-error {
	text-align: left;
}

.authorization-block .b-label {
	font-size: 16px;
	text-align: left;
}

.authorization-block .b-input {
	font-size: 24px;
	width: 400px;
}

.authorization-block .span-error {
}

.tabs_campaigns-content {
	border: 1px solid #DFE3E8;
	padding: 0px 10px 0px;
}

.campaigns-nav {
	background: #FFFFFF;
	border: 1px solid #f1f1f1;
	box-shadow: 0 0 3px #C0C0C0;
	margin: 0 0 10px;
	color: #8C8C8C;
	width: 1000px;
	height: 30px;
	text-transform: uppercase;
}

.campaigns-nav-item {
	display: inline-block;
	height: 100%;
	text-align: center;
	vertical-align: middle;
	font-size: 12px;
	line-height: 30px;
	cursor: pointer;
}

.campaigns-nav-item-last {
	border-left: 1px solid #f1f1f1;
	float: right;
}

.campaigns-nav-item-active {
	background-color: #F1F1F1;
}

.campaigns-nav-item:hover {
	background-color: #F1F1F1;
}

.main-loader {
	display: block;
	margin-left: auto;
	margin-right: auto;
	margin-top: 10px;
	margin-bottom: 10px;
}

.campaign {
	background: #FFFFFF;
	border: 1px solid #f1f1f1;
	box-shadow: 0 0 3px #C0C0C0;
	margin: 0 0 10px;
	color: #8C8C8C;
/*
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
*/
	width: 1000px;
}

.campaign_active .campaign_start {
	display: none;
}

.campaign_blocked .campaign_stop {
	display: none;
}

.campaign-header-top {
	margin-bottom: 5px;
}

.campaign_active .campaign-header-top-buttons span {
	color: #16bf00;
}

.campaign_blocked .campaign-header-top-buttons span {
	color: #f26a21;
}

.campaign_blocked .campaign-header-top a {
	color: #8c8c8c;
}

.campaign_active.campaign_limits_blocked .campaign-header-top-limits {
	color: #f00;
}

.campaign_active.campaign_limits_blocked .campaign-header-top-name a {
	color: #f00;
}

.campaign-header-top .campaign_group_select {
	float: right;
}

.campaign_deleted .campaign-header-top a {
	color: #8c8c8c;
}

.campaign_active .campaign_restore {
	display: none;
}

.campaign_blocked .campaign_restore {
	display: none;
}

.campaign_deleted .campaign_delete {
	display: none;
}

.campaign_deleted .campaign_start {
	display: none;
}

.campaign_deleted .campaign_stop {
	display: none;
}

.campaign-header {
	padding: 15px 20px 15px;
	border-bottom: 1px solid #F1F1F1;
	position: relative;
}

.campaign-header-group-name {
	position: absolute;
	top: 5px;
	right: 10px;
	font-size: 12px;
    color: #000;
    text-transform: uppercase;
	border-bottom: 1px dotted;
	text-align: right;
	color: #0077c0;
}

.campaign-header a {
	font-size: 24px;
}

.campaign-header span {
	font-size: 12px;
}

.campaign-header-top-name {
	width: 800px;
}

.campaign-header-top-buttons {
	display: inline-block;
	float: left;
}

.campaign-header-top-limits {
	position: absolute;
	top: 30px;
	right: 10px;
	font-size: 12px;
	color: #000;
	text-transform: uppercase;
	text-align: right;
}

.campaign-header-top-buttons {
	margin-left: 20px;
	margin-top: 2px;
}

.campaign-header-top span {
	font-size: 14px;
	margin-left: 5px;
	vertical-align: middle;
	text-decoration-line: underline;
	text-decoration-style: dotted;
}

.campaign-header-bottom {
	position: relative;
}

.campaign-header-bottom-copy {
	position: absolute;
	top: 0;
	left: 130px;
	background: #FFFFFF;
	border: 1px solid #f1f1f1;
	box-shadow: 0 0 3px #C0C0C0;
	margin: 0;
	padding: 0;
	width: 300px;
	z-index: 502;
	padding: 10px 10px 10px;
	font-size: 12px;
}

.campaign-header-bottom-copy .gif_loader_32 {
	display: inline-block;
	margin-top: 10px;
}

.campaign-main {
	padding: 0px 20px 0px;
	border-bottom: 3px solid #F1F1F1;
	height: 81px;
}

.campaign-main span {
	font-size: 10px;
}

.campaign-main-notice {
	border-bottom: 3px solid #f1f1f1;
	font-size: 12px;
	padding: 15px 20px;
	color: #000;
}

.campaign-message {
	font-size: 12px;
	padding: 15px 30px;
	color: #000;
}

.renewal_license_tips {
	font-size: 16px;
	padding: 15px 30px;
	color: #000;
}

.renewal_license_tips_right {
	font-size: 16px;
	padding: 5px 10px;
	color: #000;
}


.tips-message {
	background: #ffeeed;
	border: 1px solid #ffeeed;
	box-shadow: 0 0 3px #C0C0C0;
	margin: 0 0 10px;
	color: #8C8C8C;
/*
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
*/
}
.tips-message-top {
	width: 1000px;
}

.tips-message-right {
	margin-top: 10px;
/*	position: fixed;
	margin-left: 1010px;
	top: 275px;
	width: 200px;*/
}

.campaign-main-left,
.campaign-main-right {
	vertical-align: top;
	text-transform: uppercase;
}

.campaign-main-left {
}

.campaign-main-left div:not(.campaign-change-price):not(.btn_common):not(.campaign-main-left-audience):not(.campaign-main-data-value) {
	font-size: 30px;
	color: #000000;
}

.campaign-main-left-price,
.campaign-main-left-buttons {
	display: inline-block;
	float: left;
}

.campaign-main-left-price {
	position: relative;
}

.campaign-change-price {
	position: absolute;
	top: 75px;
	left: -20px;
	background: #FFFFFF;
	border: 1px solid #f1f1f1;
	box-shadow: 0 0 3px #C0C0C0;
	margin: 0;
	padding: 10px 10px 10px;
	width: 360px;
	z-index: 500;
	border-radius: 4px;
	box-shadow: 0px 0px 5px 5px #676a6c78;
}

.campaign-main-left-price input {
	display: block;
	color: #000000;
	width: 95px;
	border: 0;
}

.campaign-main-left-buttons {
	position: relative;
}
 
.campaign-main-left-buttons a {
	margin-bottom: 10px;
}

.campaign-options-buttons {
	position: absolute;
	top: 0;
	left: 110px;
	background: #FFFFFF;
	border: 1px solid #f1f1f1;
	box-shadow: 0 0 3px #C0C0C0;
	margin: 0;
	padding: 0;
	width: 125px;
	z-index: 501;
}

.campaign-options-buttons-item {
	padding: 5px 5px 5px;
	font-size: 10px !important;
}

.campaign-options-buttons-item:hover {
	background-color: #F1F1F1;
}

.campaign-mass-edit-buttons {
	position: absolute;
	top: 0;
	left: 150px;
	background: #FFFFFF;
	border: 1px solid #f1f1f1;
	box-shadow: 0 0 3px #C0C0C0;
	margin: 0;
	padding: 0;
	width: 200px;
	z-index: 502;
	padding: 10px 10px 10px;
}

.campaign-mass-edit-buttons-item {
	font-size: 12px !important;
}

.campaign-main-left-slider-container {
	width: 250px;
}

.campaign-main-left-audience {
	color: #000000;
	position: absolute;
	top: -11px;
	right: 10px;
}

.campaign-main-data-value {
	font-size: 30px;
	text-align: center;
}

.campaign-main-right {
	position: relative;
	float: right;
}

.campaign-main-right table {
	position: absolute;
	top: 0;
	right: 0;
	font-size: 12px;
	table-layout: fixed;
	white-space: nowrap;
}

.campaign-main-right table th {
	padding: 6px 5px 6px 3px;
}

.campaign-main-right table td {
	padding: 6px 5px 6px 3px;
	border-top: 1px solid #F1F1F1;
}

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

.campaign-banners-header {
	padding: 0px 20px 0px;
	border-bottom: 3px solid #F1F1F1;
}

.campaign-banners-add {
	background: none repeat scroll 0 0 #f0f0f0;
	padding: 0 30px;
}

.campaign-banners-nav {
	vertical-align: middle;
	height: 25px;
	text-transform: uppercase;
	display: flex;
	justify-content: space-between;
}

.campaign-banners-nav-item {
	font-size: 12px;
	display: inline-block;
	text-align: center;
	padding: 6px 10px;
	width: auto;
	cursor: pointer;
}

.campaign-banners-nav-item:hover {
	background-color: #F1F1F1;
}

.banners_filter_active {
	background-color: #F1F1F1;
}

.campaign-banners {
}

.banner_moderation_status_banned {
	background-color: #FFEEED;
}

.banner_status_active .ajax-edit-banner-status.icon_16_undo {
	display: none !important;
}

.banner_status_banned .ajax-edit-banner-status.icon_16_undo {
	display: none !important;
}

.banner_status_blocked .ajax-edit-banner-status.icon_16_undo {
	display: none !important;
}

.banner_status_blocked .campaign-banners-item-header-left-title a {
	color: #8c8c8c;
}

/*
.banner_status_active .campaign-banners-item-header-right span {
	color: #16bf00;
}

.banner_status_blocked .campaign-banners-item-header-right span {
	color: #f26a21;
}

.banner_status_banned .campaign-banners-item-header-right span {
	color: #fc2c39;
}
*/

.banner_status_deleted .btn_common,
.banner_status_deleted .onoffswitch,
.banner_status_deleted .ajax-edit-banner-status.icon_16_delete {
	display: none !important;
}

.campaign-banners-item-header {
	padding: 5px 20px 5px;
	border-bottom: 1px solid #F1F1F1;
	height: 28px;
}

.campaign-banners-item-header-left, .campaign-banners-item-header-right {
	display: inline-block;
}

.campaign-banners-item-header-left {
	width: 320px;
}

.campaign-banners-item-header-left-title, .campaign-banners-item-header-left-buttons {
	display: inline-block;
	vertical-align: middle;
}

.campaign-banners-item-header-left-title {
	width: 180px;
}

.campaign-banners-item-header-left-title a {
	font-size: 12px;
	vertical-align: middle;
}

.campaign-banners-item-header-left-buttons {
	position: relative;
	width: 135px;
}

.campaign-banners-item-header-right {
	position: relative;
	width: 615px;
}

.campaign-banners-item-header-right .onoffswitch {
	display: inline-block;
	margin-right: 10px;
}

.campaign-banners-item-header-right span:not(.onoffswitch-span) {
	display: inline-block;
	font-size: 12px;
	vertical-align: middle;
	border-bottom: 1px dotted;
	text-decoration: none;
	line-height: 1;
}

.campaign-banners-item-header-right table {
	position: absolute;
	top: 0;
	right: 0;
	font-size: 12px;
	table-layout: fixed;
}

.campaign-banners-item-header-right table td {
	padding: 1px 5px 6px 3px;
	text-align: right;
}

.moderation_reason {
	position: absolute;
	top: 22px;
	left: 0;
	background: #FFFFFF;
	border: 1px solid #ff0000;
	box-shadow: 0 0 3px #ff0000;
	margin: 0 0 10px;
	color: #8C8C8C;
	width: 300px;
	font-size: 12px;
	padding: 15px 15px 15px;
	z-index: 500;
}

.moderation_reason_open {
	cursor: pointer;
}

.moderation_reason_close {
	position: absolute;
	top: 0;
	right: 0;
	margin: 0;
}

.campaign-banners-item-edit {
	padding: 0px 20px 0px;
	background: #f0f0f0;
}

.campaign-banners-item-edit-left,
.campaign-banners-item-edit-right {
	display: inline-block;
	vertical-align: top;
}

.campaign-banners-item-edit-left {
	width: 45%;
	margin: 10px 0px 10px;
}

.campaign-banners-item-edit-left a.pseudo-link {
	font-size: 90%;
	float: right;
	margin-top: 2px;
}

.campaign-banners-item-edit-left table {
	width: 100%;
	font-size: 12px;
	color: #000000;
}

.campaign-banners-item-edit-left tr > td {
	padding-bottom: 20px;
}

.campaign-banners-item-edit-left td.textalign_top {
	padding-top: 3px;
	vertical-align: top;
	width: 25%;
}

.campaign-banners-item-edit-left input {
	width: 100%;
}

.campaign-banners-item-edit-left textarea {
	width: 100%;
	height: 100px;
	resize: vertical;
}

span.note {
	font-size: 80%;
}

.campaign-banners-item-edit-left span.note {
	font-size: 90%;
	color: #8C8C8C;
}

.campaign-banners-item-edit-right {
	margin: 10px 10px 10px;
	max-width: 50%;
	overflow: scroll;
}

.campaign-banners-item-edit-right span {
	font-size: 12px;
	vertical-align: top;
}

.campaign-banners-item-edit-right-top span {
	color: #000000;
	text-decoration: underline;
}

.campaign-banners-item-edit-right-top {
	position: relative;
}

.campaign-banners-item-edit-right-middle {
	position: relative;
	width: 80%;
}

.campaign-banners-item-edit-right-bottom {
	position: relative;
	height: 215px;
}

.campaign-banners-item-edit-left td {
	position: relative;
}

.ajax-image-upload {
	position: absolute;
	top: 0;
	left: 0;
	cursor: pointer;
	opacity: 0;
}
.ajax-custom-image-upload {
	position: absolute;
	top: 0;
	left: 0;
	cursor: pointer;
	opacity: 0;
}

.ajax-video-upload,.ajax-audio-upload {
	position: absolute;
	top: 0;
	left: 0;
	cursor: pointer;
	opacity: 0;
}

.ajax-promo_image-upload {
	position: absolute;
	top: 0;
	left: 0;
	cursor: pointer;
	opacity: 0;
}

.btn-upload-image-container {
	position: relative;
	width: 250px;
	height: 32px;
	margin-top: 10px;
}

.btn-upload-html5-container {
	position: relative;
	width: 250px;
	height: 32px;
	margin-top: 10px;
}

.btn-upload-image {
	position: absolute;
	top: 0;
	left: 0;
}

.btn-upload-image-container .ajax-image-upload {
	width: 250px;
	height: 32px;
}
.btn-upload-image-container .ajax-custom-image-upload {
	width: 250px;
	height: 32px;
}
.btn-upload-image-container .ajax-audio-upload {
	width: 250px;
	height: 32px;
}

.campaign-banners-item-edit-left .ajax-image-upload {
	width: 250px;
	height: 32px;
}
.campaign-banners-item-edit-left .ajax-custom-image-upload {
	width: 250px;
	height: 32px;
}

.campaign-banners-item-edit-left .ajax-video-upload {
	width: 250px;
	height: 32px;
}

.campaign-banners-item-edit-left .ajax-promo_image-upload {
	width: 250px;
	height: 32px;
}
.campaign-banners-item-edit-left .ajax-images-upload {
	width: 250px;
	height: 32px;
}

.campaign-banners-item-preview-big_format .banner-image {
	width: 12%;
	margin-right: 5px;
}

.campaign-banners-item-preview-big_format .banner-icon {
	width: 12%;
	margin-right: 5px;
}

.campaign-banners-item-preview-big_format .banner-promo-image {
	position: absolute;
	top: 0;
	left: 0;
	width: 380px;
	height: 215px;
}

.campaign-banners-item-preview-big_format .banner-overlay-image {
	position: absolute;
	top: 0;
	left: 0;
	width: 380px;
	height: 215px;
}

.campaign-banners-item-preview-square_format .banner-overlay-image {
	position: absolute;
	top: 0;
	left: 0;
	width: 215px;
	height: 215px;
}

.campaign-banners-item-preview-big_format .ajax-image-upload {
	width: 56px;
	height: 56px;
}
.campaign-banners-item-preview-big_format .ajax-image-upload[image_type=image] {
	width: 56px;
	height: 56px;
}
.campaign-banners-item-preview-big_format .ajax-custom-image-upload {
	width: 56px;
	height: 56px;
}
.campaign-banners-item-preview-big_format .ajax-custom-image-upload[image_type=image] {
	width: 56px;
	height: 56px;
}


.campaign-banners-item-preview-big_format .ajax-promo_image-upload {
	width: 380px;
	height: 215px;
}
.campaign-banners-item-preview-big_format .ajax-image-upload {
	width: 380px;
	height: 215px;
}
.campaign-banners-item-preview-big_format .ajax-custom-image-upload {
	width: 380px;
	height: 215px;
}

.campaign-banners-item-preview-icon_square_format {
    float: left; 
    border: 1px solid #ccc;
}

.campaign-banners-item-preview-icon_square_format .title-preview{
    font-size: 12px; 
    line-height: 1.1; 
    word-break: break-word; 
    overflow-wrap: break-word; 
    word-wrap: break-word; 
    padding: 0 10px; 
    font-weight: bold;
}

.campaign-banners-item-preview-icon_square_format .text-preview{
    font-size: 10px; 
    line-height: 1.3; 
    word-break: break-word; 
    overflow-wrap: break-word; 
    word-wrap: break-word; 
}

.campaign-banners-item-preview-icon_square_format .ajax-image-upload {
	width: 215px;
	height: 215px;
}
.campaign-banners-item-preview-icon_square_format .ajax-custom-image-upload {
	width: 215px;
	height: 215px;
}

.campaign-banners-item-preview-icon_square_format .banner-image-empty {
	width: 215px;
	height: 215px;
	line-height: 215px;
}

.campaign-banners-item-preview-icon_square_format .form-add-banner-right-bottom {
    position: relative;
	max-width: 215px;
}

.campaign-banners-item-preview-icon_square_format .form-add-banner-right-bottom .loader {
	width: 215px;
	height: 215px;
}

.campaign-banners-item-preview-image_vertical_format {
}
.campaign-banners-item-preview-image_vertical_format .ajax-image-upload {
    width: 180px;
    height: 360px;
}
.campaign-banners-item-preview-image_vertical_format .ajax-custom-image-upload {
    width: 180px;
    height: 360px;
}
.campaign-banners-item-preview-image_vertical_format .banner-image-empty {
    width: 180px;
    height: 360px;
    line-height: 360px;
}
.campaign-banners-item-preview-image_vertical_format .form-add-banner-right-bottom {
    width: 180px;
    height: 360px;
}
.campaign-banners-item-preview-image_vertical_format .form-add-banner-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0,0,0,0.7);
    color: white;
}
.banner-preview-mini .campaign-banners-item-preview-image_vertical_format .form-add-banner-bottom {
    max-width: 90px;
}
.campaign-banners-item-preview-image_vertical_format .form-add-banner-bottom-title {
    background-color: rgba(252,44,56,0.8);
    padding: 8px 10px;    
}
.banner-preview-mini .campaign-banners-item-preview-image_vertical_format .form-add-banner-bottom-title {
    padding: 4px 5px;
    font-size: 0.7em;
}
.campaign-banners-item-preview-image_vertical_format .form-add-banner-bottom-text {
    padding: 8px 10px;    
}
.banner-preview-mini  .campaign-banners-item-preview-image_vertical_format .form-add-banner-bottom-text {
    padding: 4px 5px;
    font-size: 0.7em;
}
.campaign-banners-item-preview-image_vertical_format .call_to_action-button {
    background: rgba(0,0,0,0);
    border: 2px solid #fff;
    box-shadow: none;
    color: #fff;
    text-shadow: none;
    line-height: 20px;
    height: 20px;
    font-size: 10px;
    text-transform: uppercase;
    padding: 0 15px;
    margin-bottom: 10px;
    margin-top: 10px;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}
.banner-preview-mini .campaign-banners-item-preview-image_vertical_format .call_to_action-button {
    font-size: 0.7em;
    padding: 3px 5px;
    line-height: 0.8em;
    height: auto;
    margin-top: 3px;
    margin-bottom: 5px;
}
.campaign-banners-item-preview-image_vertical_format .form-add-banner-right-bottom .loader {
	width: 180px;
	height: 360px;
}

.campaign-banners-item-preview-carousel {
	background-color: white;
	width: 400px;
	min-height: 450px;
}
.campaign-banners-item-preview-carousel .campaign-banners-item-edit-right-top {
	padding-top: 15px;
	margin-left: 40px;
}
.campaign-banners-item-preview-carousel .banner-image {
	width: 12%;
	margin-right: 5px;
}
.campaign-banners-item-preview-carousel .campaign-banners-item-edit-right-middle {
	margin-left: 40px;
	margin-bottom: 7px;
}
.campaign-banners-item-preview-carousel .campaign-banners-item-edit-right-slide-middle {
	margin-bottom: 7px;
	width: 320px;
	height: 320px;
}
.campaign-banners-item-preview-carousel .campaign-banners-item-edit-right-slide-top {
	line-height: 12px;
	height: 12px;
}
.campaign-banners-item-preview-carousel .ajax-image-upload {
	width: 56px;
	height: 56px;
}
.campaign-banners-item-preview-carousel .ajax-image-upload[image_type=image] {
	width: 56px;
	height: 56px;
}
.campaign-banners-item-preview-carousel .carousel-slide-image-form .ajax-image-upload {
	width: 320px;
	height: 320px;
}
.campaign-banners-item-preview-carousel .ajax-custom-image-upload {
	width: 56px;
	height: 56px;
}
.campaign-banners-item-preview-carousel .ajax-custom-image-upload[image_type=image] {
	width: 56px;
	height: 56px;
}
.campaign-banners-item-preview-carousel .carousel-slide-image-form .ajax-custom-image-upload {
	width: 320px;
	height: 320px;
}
.campaign-banners-item-preview-carousel .banner-slide-promo-image {
	position: relative;
	width: 320px;
	height: 320px;
}
.campaign-banners-item-preview-carousel .ajax-images-upload {
	width: 320px;
	height: 320px;
	top: 15px;
}
.campaign-banners-item-preview-carousel .campaign-banners-item-edit-right-slide-bottom {
	line-height: 12px;
	height: 12px;
}
.campaign-banners-item-preview-carousel div.carousel_btn_common {
	cursor: pointer;
	display: inline-block;
	vertical-align: top;
	text-align: center;
	line-height: 28px;
	padding: 0px 6px 0px;
	background: #ffffff;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	border: 1px solid #000000;
	font-size: 12px;
	color: #000000;
	float: right;
	margin-top: 10px;
}
.campaign-banners-item-preview-carousel .carousel_slider {
	margin: 0;
	position: absolute;
	height: 320px;
	width: 30px;
	z-index: 2500;
}
.campaign-banners-item-preview-carousel .carousel_slider:hover {
	cursor: pointer;
	background-color: rgba(0, 0, 0, 0.3);
	opacity: 0.3;
}
.campaign-banners-item-preview-carousel .left_carousel_slider::before {
	border-bottom: 7px solid transparent;
	border-right: 10px solid #00abf1;
	border-top: 7px solid transparent;
	content: "";
	display: block;
	height: 0;
	position: absolute;
	width: 0;
}
.campaign-banners-item-preview-carousel .right_carousel_slider::before {
	border-bottom: 7px solid transparent;
	border-left: 10px solid #00abf1;
	border-top: 7px solid transparent;
	content: "";
	display: block;
	height: 0;
	position: absolute;
	width: 0;
}
.campaign-banners-item-preview-carousel .carousel_slider-offset::before {
	content: "";
	display: block;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
}
.campaign-banners-item-preview-carousel .banner-image-empty {
	width: 320px;
	height: 320px;
	line-height: 320px;
	top: 12px;
}
.campaign-banners-item-preview-carousel .promo_loader {
	width: 320px;
	height: 320px;
	top: 12px;
}
.campaign-banners-item-preview-carousel .loader {
	width: 44px;
	height: 44px;
    top: 15px;
}

.carousel-slides_number_buttons a {
	cursor: pointer;
	display: inline-block;
	vertical-align: top;
	text-align: center;
	line-height: 28px;
	padding: 0px 6px 0px;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	border: 1px solid #000000;
	font-size: 12px;
	color: #000000;
	margin-left: 10px;
}
.carousel-slides_number_buttons-selected  {
	background-color: #696969;
}
.carousel-slides_number_buttons a:first {
	margin-left: 0;
}
.carousel-slides_number_buttons a:hover {
	background-color: #696969;
}

.form-add-banner-preview-carousel {
	background-color: white;
	width: 400px;
	min-height: 450px;
}
.form-add-banner-preview-carousel .form-add-banner-right-top {
	padding-top: 15px;
	margin-left: 40px;
	height: 60px;
}
.form-add-banner-preview-carousel .form-add-banner-right-top span {
}
.form-add-banner-preview-carousel .banner-image {
	width: 60px;
	height: 60px;
	margin-right: 5px;
}
.form-add-banner-preview-carousel .form-add-banner-right-top .loader {
    width: 60px;
    height: 60px;
    top: 15px;
}

.form-add-banner-preview-carousel .form-add-banner-right-middle {
	margin-left: 40px;
	margin-bottom: 7px;
	margin-top: 7px;
}
.form-add-banner-preview-carousel .form-add-banner-right-slide-middle {
	margin-bottom: 10px;
	width: 320px;
	height: 320px;
}
.form-add-banner-preview-carousel .form-add-banner-right-slide-top {
	line-height: 14px;
	height: 14px;
}
.form-add-banner-preview-carousel .ajax-image-upload {
	width: 56px;
	height: 56px;
}
.form-add-banner-preview-carousel .ajax-image-upload[image_type=header_image_image] {
	width: 60px;
	height: 60px;
    top: 15px;
}
.form-add-banner-preview-carousel .ajax-custom-image-upload {
	width: 56px;
	height: 56px;
}
.form-add-banner-preview-carousel .ajax-custom-image-upload[image_type=image] {
	width: 60px;
	height: 60px;
    top: 15px;
}
.form-add-banner-preview-carousel .banner-slide-promo-image {
	position: relative;
	width: 320px;
	height: 320px;
}
.form-add-banner-preview-carousel .ajax-image-upload {
	width: 320px;
	height: 320px;
}
.form-add-banner-preview-carousel .ajax-custom-image-upload {
	width: 320px;
	height: 320px;
}
.form-add-banner-preview-carousel .form-add-banner-right-slide-bottom {
	line-height: 14px;
	height: 14px;
    margin-top: 2px;
}
.form-add-banner-preview-carousel div.carousel_btn_common {
	cursor: pointer;
	display: inline-block;
	vertical-align: top;
	text-align: center;
	line-height: 28px;
	padding: 0px 6px 0px;
	background: #ffffff;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	border: 1px solid #000000;
	font-size: 12px;
	color: #000000;
	float: right;
	margin: 10px 0;
}
.form-add-banner-preview-carousel .carousel_slider {
	margin: 0;
	position: absolute;
	height: 320px;
	width: 30px;
	z-index: 2500;
}
.form-add-banner-preview-carousel .carousel_slider:hover {
	cursor: pointer;
	background-color: rgba(0, 0, 0, 0.3);
	opacity: 0.3;
}
.form-add-banner-preview-carousel .left_carousel_slider::before {
	border-bottom: 7px solid transparent;
	border-right: 10px solid #00abf1;
	border-top: 7px solid transparent;
	content: "";
	display: block;
	height: 0;
	position: absolute;
	width: 0;
}
.form-add-banner-preview-carousel .right_carousel_slider::before {
	border-bottom: 7px solid transparent;
	border-left: 10px solid #00abf1;
	border-top: 7px solid transparent;
	content: "";
	display: block;
	height: 0;
	position: absolute;
	width: 0;
}
.form-add-banner-preview-carousel .carousel_slider-offset::before {
	content: "";
	display: block;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
}
.form-add-banner-preview-carousel .banner-image-empty {
	width: 60px;
	height: 60px;
	line-height: 60px;
	top: 15px;
}
.form-add-banner-preview-carousel .slides .banner-image-empty {
	width: 320px;
	height: 320px;
	line-height: 320px;
	top: 0px;
}
.form-add-banner-preview-carousel .promo_loader {
	width: 320px;
	height: 320px;
}

.slide {
	position: absolute;
	left: 40px;
}
.slide:first-child {
}
.slide:nth-child(2) {
	left: 370px;
}
.slide:nth-child(3) {
	left: 700px;
}
.slide:nth-child(4) {
	left: 1030px;
}
.slide:nth-child(5) {
	left: 1360px;
}
.slide:nth-child(6) {
	left: 1690px;
}

.campaign-banners-item-preview-small_format div.campaign-banners-item-edit-right-top {
	margin-bottom: 5px;
}

.campaign-banners-item-preview-small_format .banner-image {
	display: inline-block;
	width: 90px;
	height: 75px;
	margin-right: 5px;
}

.campaign-banners-item-preview-small_format .ajax-image-upload {
	width: 90px;
	height: 75px;
}
.campaign-banners-item-preview-small_format .ajax-custom-image-upload {
	width: 90px;
	height: 75px;
}

.campaign-banners-item-preview-240_400_format .banner-image {
	width: 240px;
	height: 400px;
}

.campaign-banners-item-preview-240_400_format .ajax-image-upload {
	width: 240px;
	height: 400px;
}
.campaign-banners-item-preview-240_400_format .ajax-custom-image-upload {
	width: 240px;
	height: 400px;
}

.campaign-banners-item-preview-small_format .campaign-banners-item-edit-right-middle span {
	display: inline-block;
	width: 30%;
}

.campaign-banners-item-edit-footer {
	padding: 10px 20px 10px;
	background: #f0f0f0;
}

.campaign-banners-item-edit-footer .btn_common {
	margin-top: 0px;
}

.loader {
	background-color: rgba(255, 255, 255, 0.8);
	background-image: url('/i/loader32.gif');
	background-position: center;
	background-repeat: no-repeat;
	position: absolute;
	top: 0;
	left: 0;
}

.promo_loader {
	background-color: rgba(255, 255, 255, 0.8);
	background-image: url('/i/loader32.gif');
	background-position: center;
	background-repeat: no-repeat;
	position: absolute;
	top: 0;
	left: 0;
}

.campaign-banners-item-preview-big_format .loader {
	width: 56px;
	height: 56px;
}

.campaign-banners-item-preview-big_format .promo_loader {
	width: 380px;
	height: 215px;
}

.campaign-banners-item-preview-small_format .loader {
	width: 90px;
	height: 75px;
}

.overlay {
	z-index: 1000;
}

.div-copy_banner {
	background: #FFFFFF;
	border: 1px solid #f1f1f1;
	box-shadow: 0 0 3px #C0C0C0;
	margin: 0 0 10px;
	color: #8C8C8C;
/*
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
*/
	width: 300px;
	font-size: 12px;
	padding: 10px 10px 10px;
	position: absolute;
}

.div-copy_banner .btn_ok,.btn_common {
	margin-top: 10px;
}

/* add_campaign */

.campaign-add {
	padding-bottom: 10px;
	background: #FFFFFF;
	border: 1px solid #f1f1f1;
	box-shadow: 0 0 3px #C0C0C0;
	margin: 0 0 10px;
	color: #8C8C8C;
	font-size: 12px;
/*
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
*/
	width: 1000px;
}

.campaign-add h3 {
	color: #000;
	font-size: 20px;
	margin-bottom: 4px;
}

.campaign-add h4 {
	color: #000;
	font-size: 14px;
	margin-bottom: 5px;
	font-weight: bold;
}

.campaign-add-vk table {
	margin-left: 20px;
}

.campaign-add-what-campaign-partition {
	padding-left: 30px;
}

.campaign-add-what-section {
	display: block;
	background-color: #f1f1f1;
	color: #000000;
	width: 560px;
	height: 40px;
	margin-bottom: 2px;
	line-height: 40px;
	padding-left: 20px;
	cursor: pointer;
}

.campaign-add-what-package {
	display: block;
	background-color: #f1f1f1;
	color: #000000;
	width: 560px;
	height: 40px;
	margin-bottom: 2px;
	line-height: 40px;
	padding-left: 20px;
	cursor: pointer;
}

.campaign-add-header {
	padding: 20px 30px 20px;
	border-bottom: 1px solid #F1F1F1;
	text-transform: uppercase;
}

.campaign-add-header b {
	font-size: 14px;
	margin-left: 20px;
}

.campaign-add-block {
	padding: 10px 30px 5px;
	border-bottom: 1px solid #f1f1f1;
	font-size: 14px;
}

.campaign-add-block-error {
	padding: 0 30px 0;
	font-size: 14px;
}

.campaign-add-submit {
	border-bottom: none;
	position: relative;
}

.campaign-add-footer {
}

.campaign-add-footer-submit {
	position: relative;
}

.campaign-add-footer-submit .gif_loader_32 {
	position: absolute;
	top: 20px;
	left: 230px;
}

.campaign-add-profiles {
	float: left;
}

.campaign-add-profiles-buttons {
	padding-top: 24px;
	padding-left: 30px;
}

.campaign-add-profiles-buttons .btn_common {
	float: left;
}

.mobile_targetings {
	border-bottom: 1px solid #f1f1f1;
	margin-bottom: 10px;
}

.campaign-add-targeting table {
}

.campaign-add-targeting tr {
	height: 40px;
}

.campaign-add-targeting tr > td {
	padding-bottom: 10px;
}

.campaign-add-targeting td {
	padding-top: 3px;
	vertical-align: top;
}

.campaign-add-targeting-table-left {
	vertical-align: top;
	color: #000000;
}

.campaign-add-targeting-table-right {
}

.campaign-add-targeting-table-right span.note {
	font-size: 90%;
	color: #8C8C8C;
}

.campaign-add-targeting-table-right-body {
	margin: 10px 0px 0px;
}

.campaign-add-targeting-table-right-body-scroll-box {
	height: 200px; 
	width: 400px; 
	overflow-y: scroll; 
	border: 1px solid rgb(232, 232, 232); 
	border-radius: 3px; 
	padding: 5px 7px; 
	box-sizing: border-box; 
	box-shadow: rgba(0, 0, 0, 0.0470588) 0px 0px 1px; 
	background: none 0px 0px repeat scroll rgb(255, 255, 255);
}

.campaign-add-targeting-table-right-body-scroll-box ul li ul {
	padding-left: 25px;
}

.campaign-add-interest-block {
    margin-bottom: 10px;
}

div#targeting-interests-block div.campaign-add-interest-block {
	margin-top: 10px;
}

.flex-items-container {
	width: auto;
    min-height: 30px;
    border: 1px solid rgb(232, 232, 232);
    border-radius: 3px;
    box-sizing: border-box;
    box-shadow: rgba(0, 0, 0, 0.0470588) 0px 0px 1px;
    background: none 0px 0px repeat scroll rgb(255, 255, 255);
    padding: 5px 5px 0px;
    margin-top: 5px;
	display: flex;
	flex-wrap: wrap;
}
.flex-items-container .flex-element {
	margin: 3px 8px;
}
.flex-items-container .flex-element .onoffswitch {
	display: inline-block;
}

.regions-flex-item-block {
	padding: 4px 2px;
}

.d-flex {
	display: flex;
}
.d-flex-between {
	display: flex;
	justify-content: space-between;
}
.d-flex-around {
	display: flex;
	justify-content: space-around;
}

.campaign-add-interest-interests {
    width: 400px;
    min-height: 30px;
    border: 1px solid rgb(232, 232, 232);
    border-radius: 3px;
    box-sizing: border-box;
    box-shadow: rgba(0, 0, 0, 0.0470588) 0px 0px 1px;
    background: none 0px 0px repeat scroll rgb(255, 255, 255);
    padding: 5px 5px 0px;
    margin-top: 5px;
}

.campaign-add-interest-interests-item {
    display: inline-block;
    vertical-align: top;
    text-align: center;
    line-height: 18px;
    padding: 0px 6px 0px;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    border: 1px solid #ffffff;
    border-radius: 5px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    font-size: 12px;
    height: 20px;
    margin-right: 4px;
    margin-bottom: 5px;
    background: #0077c0;
    border: 1px solid #0077c0;
    color: #ffffff;
}

.campaign-add-interest-interests-item img {
    width: 8px;
    height: 8px;
    margin-left: 4px;
    cursor: pointer;
}

.campaign-add-interest-interests-item img:hover {
    opacity: 0.5;
}

.campaign-add-interest-interests_soc_dem {
    width: 400px;
    min-height: 30px;
    border: 1px solid rgb(232, 232, 232);
    border-radius: 3px;
    box-sizing: border-box;
    box-shadow: rgba(0, 0, 0, 0.0470588) 0px 0px 1px;
    background: none 0px 0px repeat scroll rgb(255, 255, 255);
    padding: 5px 5px 0px;
    margin-top: 5px;
}

.campaign-add-interest-interests_soc_dem-item {
    display: inline-block;
    vertical-align: top;
    text-align: center;
    line-height: 18px;
    padding: 0px 6px 0px;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    border: 1px solid #ffffff;
    border-radius: 5px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    font-size: 12px;
    height: 20px;
    margin-right: 4px;
    margin-bottom: 5px;
    background: #0077c0;
    border: 1px solid #0077c0;
    color: #ffffff;
}

.campaign-add-interest-interests_soc_dem-item img {
    width: 8px;
    height: 8px;
    margin-left: 4px;
    cursor: pointer;
}

.campaign-add-interest-interests_soc_dem-item img:hover {
    opacity: 0.5;
}

.campaign-add-interest-interests_stable {
    width: 400px;
    min-height: 30px;
    border: 1px solid rgb(232, 232, 232);
    border-radius: 3px;
    box-sizing: border-box;
    box-shadow: rgba(0, 0, 0, 0.0470588) 0px 0px 1px;
    background: none 0px 0px repeat scroll rgb(255, 255, 255);
    padding: 5px 5px 0px;
    margin-top: 5px;
}

.campaign-add-interest-interests_stable-item {
    display: inline-block;
    vertical-align: top;
    text-align: center;
    line-height: 18px;
    padding: 0px 6px 0px;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    border: 1px solid #ffffff;
    border-radius: 5px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    font-size: 12px;
    height: 20px;
    margin-right: 4px;
    margin-bottom: 5px;
    background: #0077c0;
    border: 1px solid #0077c0;
    color: #ffffff;
}

.campaign-add-interest-interests_stable-item img {
    width: 8px;
    height: 8px;
    margin-left: 4px;
    cursor: pointer;
}

.campaign-add-interest-interests_stable-item img:hover {
    opacity: 0.5;
}

.campaign-add-group-block {
    margin-bottom: 10px;
}

div#targeting-groups-block div.campaign-add-group-block {
	margin-top: 10px;
}

.campaign-add-group-groups {
    width: 400px;
    min-height: 30px;
    max-height: 250px;
    overflow-y: auto;
    border: 1px solid rgb(232, 232, 232);
    border-radius: 3px;
    box-sizing: border-box;
    box-shadow: rgba(0, 0, 0, 0.0470588) 0px 0px 1px;
    background: none 0px 0px repeat scroll rgb(255, 255, 255);
    padding: 5px 5px 0px;
    margin-top: 5px;
}

.campaign-add-group-groups-item, .campaign-add-group-groups-item_not_full {
    display: inline-block;
    vertical-align: top;
    text-align: center;
    line-height: 18px;
    padding: 0px 6px 0px;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    border: 1px solid #ffffff;
    border-radius: 5px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    font-size: 12px;
    height: 20px;
    margin-right: 4px;
    margin-bottom: 5px;
    background: #0077c0;
    border: 1px solid #0077c0;
    color: #ffffff;
    overflow-x: auto;
}

.campaign-add-group-groups-item img, .campaign-add-group-groups-item_not_full img {
    width: 8px;
    height: 8px;
    margin-left: 4px;
    cursor: pointer;
}

.campaign-add-group-groups-item img:hover, .campaign-add-group-groups-item_not_full img:hover {
    opacity: 0.5;
}

input#tags_groups {
	width: 200px;
}

input#input-upload_groups {
	width: 350px;
}

.campaign-add-groups-upload-groups, .btn_upload_groups {
	display: inline-block;
}

.btn_upload_groups {
	margin-top: 18px;
	margin-left: 10px;
}

.campaign-add-groups-block {
	margin-bottom: 10px;
}

.campaign-add-geo b {
	margin-left: 20px;
}

input#tags_cities {
	width: 200px;
}

input#input-upload_cities {
	width: 350px;
}

.campaign-add-geo-upload-cities, .btn_upload_cities {
	display: inline-block;
}

.btn_upload_cities {
	margin-top: 18px;
	margin-left: 10px;
}

.campaign-add-geo-block {
	margin-bottom: 10px;
}

.campaign-add-geo-regions-block {
	float: left;
	margin-bottom: 10px;
}

.campaign-add-geo-cities-block {
	float: left;
	margin-left: 20px;
}

.campaign-add-geo-cities {
	width: 400px; 
	min-height: 30px;
	border: 1px solid rgb(232, 232, 232); 
	border-radius: 3px; 
	box-sizing: border-box; 
	box-shadow: rgba(0, 0, 0, 0.0470588) 0px 0px 1px; 
	background: none 0px 0px repeat scroll rgb(255, 255, 255);
	padding: 5px 5px 0px;
	margin-top: 5px;
}

.campaign-add-geo-cities-item,.campaign-delete-geo-cities-item {
	display: inline-block;
	vertical-align: top;
	text-align: center;
	line-height: 18px;
	padding: 0px 6px 0px;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	border: 1px solid #ffffff;
	border-radius: 5px;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	font-size: 12px;
	height: 20px;
	margin-right: 4px;
	margin-bottom: 5px;
	background: #0077c0;
	border: 1px solid #0077c0;
	color: #ffffff;
}

.campaign-add-geo-cities-item img, .campaign-delete-geo-cities-item img {
	width: 8px;
	height: 8px;
	margin-left: 4px;
	cursor: pointer;
}

.campaign-add-geo-cities-item img:hover {
	opacity: 0.5;
}

.campaign-add-geo-profiles {
	margin-top: 20px;
}

.campaign-add-geo-profiles-header {
	margin-bottom: 5px;
}

.campaign-add-time-profiles-header {
	margin-bottom: 5px;
}

.campaign-add-age-profiles-header {
	margin-bottom: 5px;
}

div#div-geo_profiles_name input {
	width: 200px;
}

.age-table tr {
	height: 30px;
}

.age-table tbody td {
	border: 1px solid #d8d8d8;
	border-collapse: collapse;
	font: 14px Arial,"Helvetica Neue",Helvetica,sans-serif;
	padding: 0;
	width: 30px;
	vertical-align: middle;
	text-align: center;
}

.age-table label {
	cursor: pointer;
}

.age-table input[type=checkbox] {
	display: none;
}

.age-table input[type=checkbox]+label {
	display: block;
	position: relative;
	width: 30px;
	height: 30px;
	line-height: 30px;
}

.age-table input[type=checkbox]:checked+label {
	background-color: #008cc3;
	color: #fff;
}

.weekDayHour label {
	cursor: pointer;
}

.weekDayHour input[type=checkbox] {
	display:none;
}
.weekDayHour input[type=checkbox]+label {
	display:block;
	position:relative;
	width: 27px;
	height: 27px;
	line-height: 27px;
}
.weekDayHour input[type=checkbox]+label:after {
	text-shadow: none;
	content:"–"
}
.weekDayHour input[type=checkbox]:checked+label {
	background-color:#008cc3;
	color:#fff
}
.weekDayHour input[type=checkbox]:checked+label.first-rule {
	background-color:#008cc3;
	color:#fff
}
.weekDayHour input[type=checkbox]:checked+label.second-rule {
	background-color:#067a12;
	color:#fff
}
.weekDayHour input[type=checkbox]:checked+label.third-rule {
	background-color:#bf6308;
	color:#fff
}
.weekDayHour input[type=checkbox]:checked+label:after {
	text-shadow: none;
	content:"+"
}

.weekdays tbody td {
	border-collapse:collapse;
	font: 13px/1.5 Arial,"Helvetica Neue",Helvetica,sans-serif;
	padding:0
}
.weekdays tbody td:first-child {
	height:21px;
	text-align:left
}
.weekdays tbody td:not(:first-child):not(:nth-child(2)):not(.hourlabels) {
	border:1px solid #d8d8d8;
	width:23px;
	height:25px;
	vertical-align:middle;
	text-align:center
}

.weekdays .hourlabels {
	padding-left: 5px;
}

.weekday-templates {
	clear:both;
	margin-bottom:30px
}
.weekday-templates li.right {
	float:right;
	margin-left:10px
}
.weekday-templates li.left {
	float:left;
	margin-right:10px
}
.weekdays {
	border-spacing:0;
	border-collapse:collapse
}
.weekdays thead th {
	font-weight:normal
}
.weekdays_hours_labels {
	width: 25px;
}
.weekdays_hours_labels-container {
	height: 30px;
    white-space: nowrap;
    transform: rotate(-90deg) translate(2px,2px);
}

.green {
	color:#2bb26f;
}
.yellow {
	color: #8a6d3b;
}
.red {
	color:#ff0000;
}
.timetable {
	width: 730px;
	border: 1px solid #e8e8e8; 
	border-radius: 3px; 
	padding: 5px 7px; 
	background: none repeat scroll 0 0 #fff; 
	box-sizing: border-box; 
	box-shadow: 0 0 1px rgba(0, 0, 0, 0.05);
}
.weekday-templates{clear:both;margin-bottom:30px}.weekday-templates li.right{float:right;margin-left:10px}.weekday-templates li.left{float:left;margin-right:10px}.weekdays{border-spacing:0;border-collapse:collapse}.weekdays thead th{font-weight:normal}
.green{color:#2bb26f}

.campaign-add-price {
	width: 600px;
}

.campaign-add-price input[name="price_per_click"],input[name="price_per_show"],input[name="budget"],input[name="clicks"],input[name="shows"],input[name="cpa"],input[name="cpc"],input[name="price"] {
	font-size: 24px;
	font-weight: bold;
	width: 75px;
	margin-bottom: 20px;
}

.campaign-add-strategies-left,.campaign-add-strategies-right {
	float: left;
}

.campaign-add-strategies-right {
	margin-left: 50px;
}

.campaign-add-strategies-options {
	border: 1px solid rgb(232, 232, 232);
	border-radius: 3px;
	box-shadow: 0 0 1px rgba(0, 0, 0, 0.047);
	padding: 5px 7px;
}

.campaign-add-title {
	border-bottom: none;
}

.table-projection {
	border: 1px solid #f1f1f1;
	color: #000000;
	text-align: left;
}

.table-projection th, .table-projection td {
	border: 1px solid #f1f1f1;
	padding: 6px 10px 6px 5px;
}

/* add_banners */

.add-banners {
	padding-bottom: 10px;
	background: #FFFFFF;
	border: 1px solid #f1f1f1;
	box-shadow: 0 0 3px #C0C0C0;
	margin: 0 0 10px;
	color: #8C8C8C;
	font-size: 12px;
/*
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
*/
	width: 1000px;
}

.add-banners-header {
	padding: 20px 30px 20px;
	text-transform: uppercase;
}

.add-banners-header b {
	font-size: 14px;
	margin-left: 20px;
}

.add-banners-nav {
	background: #FFFFFF;
	color: #8C8C8C;
	border-top: 1px solid #F1F1F1;
	border-bottom: 1px solid #F1F1F1;
	height: 30px;
	text-transform: uppercase;
	padding: 0px 30px 0px;
}

.add-banners-nav-item {
	display: inline-block;
	height: 100%;
	text-align: center;
	vertical-align: middle;
	font-size: 12px;
	line-height: 30px;
	cursor: pointer;
	width: 200px;
}

.add-banners-nav-item:first-child {
	width: 250px;
}

.add-banners-nav a .add-banners-nav-item {
	width: 220px;
	color: #8C8C8C;
}

.add-banners-nav-item:hover {
	background-color: #F1F1F1;
}

.add-banners-nav-item-active {
	background-color: #F1F1F1;
}

.add-banners-block {
	padding: 20px 30px 20px;
}

.add-banners div .gif_loader_32 {
	margin-left: 170px;
	margin-top: -30px;
	position: absolute;
}

.add-banners div .gif_loader_64 {
	margin-left: 230px;
	margin-top: -40px;
	position: absolute;
}

.add-banners .campaign-add-block-error {
	margin-left: -30px;
	margin-bottom: 10px;
}


#div-add_banners_generator_loader {
	margin-left: 0px;
	margin-top: 0px;
	position: absolute;
}

.form-add-banner {
	padding: 10px 30px 10px;
	background-color: #f0f0f0;
	box-shadow: 0 2px 5px 1px #C0C0C0;
	margin-bottom: 20px;
	position: relative;
}

.form-add-banner .icon_32_close {
	position: absolute;
	top: 5px;
	right: 0;
}

.form-add-banner-id {
	position: absolute;
	top: 5px;
	left: 5px;
	color: #000000;
	font-weight: bold;
}

.form-add-banner-left,
.form-add-banner-right,
.form-add-banner-audio {
	display: inline-block;
	vertical-align: top;
}

.form-add-banner-left {
	width: 45%;
	margin: 10px 0px 10px;
}
.form-add-banner-audio {
	width: 100%;
	margin: 10px 0px 10px;
}

.form-add-banner-left table,
.form-add-banner-audio table {
	width: 100%;
	font-size: 12px;
	color: #000000;
}

.form-add-banner-left tr > td,
.form-add-banner-audio tr > td {
	padding-bottom: 10px;
}

.form-add-banner-left td.textalign_top {
	padding-top: 3px;
	vertical-align: top;
	width: 27%;
}
.form-add-banner-audio td.selecter_audio {
}

.form-add-banner-audio td.textalign_top {
	padding-top: 3px;
	vertical-align: top;
	width: 10%;
}

.form-add-banner-left input,
.form-add-banner-audio input {
	width: 100%;
}

.form-add-banner-left textarea {
	width: 100%;
	height: 100px;
	resize: vertical;
}
.form-add-banner-audio textarea {
	width: 100%;
	height: 120px;
	resize: vertical;
}

.form-add-banner-left span.note {
	font-size: 90%;
	color: #8C8C8C;
}

.form-add-banner-left a.pseudo-link {
	font-size: 90%;
	float: right;
	margin-top: 2px;
}

.form-add-banner-right {
	margin: 10px 10px 10px;
	width: 50%;
	max-width: 50%;
}

.form-add-banner-right span {
	font-size: 12px;
	vertical-align: top;
}

.form-add-banner-right-top {
	position: relative;
    z-index: 1;
}

.form-add-banner-right-top span {
	color: #000000;
	text-decoration: underline;
    vertical-align: top;
}

.form-add-banner-right-middle {
	position: relative;
	width: 380px;
	word-wrap: break-word;
}

.form-add-banner-right-bottom {
	position: relative;
	height: 215px;
}

.form-add-banner-left td,
.form-add-banner-left td {
	position: relative;
}

.banner-image-empty {
	position: absolute;
	top: 0;
	left: 0;
	background-color: #e0e0e0;
	color: #a0a0a0;
	text-align: center;
	font-size: 10px;
}

.banners-generator-image-empty {
    background-color: #e0e0e0;
    color: #a0a0a0;
    text-align: center;
    font-size: 10px;
    width: 100px;
    height: 100px;
    line-height: 100px;
}

.form-add-banner-preview-small_format .banner-image-empty {
	width: 90px;
	height: 75px;
	line-height: 75px;
}

.form-add-banner-preview-240_400_format {
	min-height: 400px;
}
.form-add-banner-preview-1000_120_format {
	min-height: 48px;
}

.form-add-banner-preview-240_400_format .banner-image-empty {
	width: 240px;
	height: 400px;
	line-height: 400px;
}
.banner-html5-empty {
	position: absolute;
	top: 0;
	left: 0;
	background-color: #e0e0e0;
	color: #a0a0a0;
	text-align: center;
	font-size: 10px;
}

.form-add-banner-preview-240_400_format .banner-html5-empty {
	width: 240px;
	height: 400px;
	line-height: 400px;
}
.form-add-banner-preview-1000_120_format .banner-image-empty {
	width: 400px;
	height: 48px;
	line-height: 48px;
}

.form-add-banner-preview-230_150_format .banner-image-empty {
	width: 230px;
	height: 150px;
	line-height: 150px;
}


.form-add-banner-preview-big_format .banner-image-empty, .form-add-banner-preview-square_format .banner-image-empty {
	width: 60px;
	height: 60px;
	line-height: 60px;
}

.banner-promo-image-empty {
	position: absolute;
	top: 0;
	left: 0;
	background-color: #e0e0e0;
	color: #a0a0a0;
	text-align: center;
	width: 380px;
	height: 215px;
	line-height: 215px;
	font-size: 10px;
}
.banner-link_picture-image-empty, .banner-ok_post_image-image-empty {
	position: absolute;
	top: 0;
	left: 0;
	background-color: #e0e0e0;
	color: #a0a0a0;
	text-align: center;
	width: 380px;
	height: 190px;
	line-height: 190px;
	font-size: 10px;
}
.banner-ok_post_image-image-empty {
	height: 380px;
	line-height: 380px;
}

.btn-upload-image {
	position: absolute;
	top: 0;
	left: 0;
}

.form-add-banner-left .ajax-image-upload {
	width: 250px;
	height: 32px;
}
.form-add-banner-left .ajax-image-upload {
	width: 250px;
	height: 32px;
}

.form-add-banner-left .ajax-video-upload {
	width: 250px;
	height: 32px;
}

.ajax-html5-upload {
	position: absolute;
	top: 0;
	left: 0;
	cursor: pointer;
	opacity: 0;
	width: 240px;
	height: 400px;
}

.btn-html5-image {
	position: absolute;
	top: 0;
	left: 0;
}

.form-add-banner-left .ajax-html5-upload {
	width: 250px;
	height: 32px;
}

.form-add-banner-preview-big_format .banner-image, .form-add-banner-preview-square_format .banner-image {
	width: 60px;
	height: 60px;
	margin-right: 5px;
}
.form-add-banner-preview-square_format .banner-promo-image-empty {
	height: 380px;
	line-height: 380px;
}

.form-add-banner-preview-big_format .banner-icon, .form-add-banner-preview-square_format .banner-icon {
	width: 60px;
	height: 60px;
	margin-right: 5px;
}

.form-add-banner-preview-big_format .banner-promo-image {
	position: absolute;
	top: 0;
	left: 0;
	width: 380px;
	height: 215px;
}

.form-add-banner-preview-big_format .banner-link_picture-image, .form-add-banner-preview-square_format .banner-ok_post_image-image  {
	position: absolute;
	top: 0;
	left: 0;
	width: 380px;
	height: 190px;
}
.form-add-banner-preview-square_format .banner-ok_post_image-image {
	height: 380px;
}
.form-add-banner-preview-big_format .banner-ok_post_gif-image {
	position: absolute;
	top: 0;
	left: 0;
	width: 380px;
}

.form-add-banner-preview-template_video_format .banner-promo-image {
	position: absolute;
	top: 0;
	left: 0;
	width: 380px;
	height: 215px;
}

.form-add-banner-preview-big_format .banner-overlay-image {
	position: absolute;
	top: 0;
	left: 0;
	width: 380px;
	height: 215px;
}

.form-add-banner-preview-square_format .banner-overlay-image, .form-add-banner-preview-square_format .banner-promo-image {
	position: absolute;
	top: 0;
	left: 0;
	width: 380px;
	height: 380px;
}

.form-add-banner-preview-big_format .form-add-banner-right-top .ajax-image-upload {
	width: 60px;
	height: 60px;
}

.form-add-banner-preview-big_format .form-add-banner-right-bottom .ajax-image-upload {
	width: 380px;
	height: 215px;
}
.form-add-banner-preview-big_format .form-add-banner-right-top .ajax-custom-image-upload {
	width: 60px;
	height: 60px;
}

.form-add-banner-preview-big_format .form-add-banner-right-bottom .ajax-custom-image-upload {
	width: 380px;
	height: 215px;
}
.ajax-custom-image-upload,.ajax-custom-video-upload,.ajax-custom-gif-upload {
	position: absolute;
	top: 0;
	left: 0;
	cursor: pointer;
	opacity: 0;
	height: 32px;
}
.form-add-banner-preview-big_format .form-add-banner-right-bottom .ajax-custom-image-upload, .form-add-banner-preview-big_format .form-add-banner-right-bottom .ajax-custom-video-upload, .form-add-banner-preview-big_format .form-add-banner-right-bottom .ajax-custom-gif-upload {
	width: 380px;
	height: 215px;
}

.form-add-banner-preview-square_format .form-add-banner-right-bottom {
	width: 380px;
	height: 380px;
}

.form-add-banner-preview-square_format .form-add-banner-right-top .ajax-image-upload {
	width: 60px;
	height: 60px;
}
.form-add-banner-preview-square_format .form-add-banner-right-bottom .ajax-image-upload {
	width: 380px;
	height: 380px;
}
.form-add-banner-preview-square_format .form-add-banner-right-top .ajax-custom-image-upload {
	width: 60px;
	height: 60px;
}
.form-add-banner-preview-square_format .form-add-banner-right-bottom .ajax-custom-image-upload {
	width: 380px;
	height: 380px;
}

.form-add-banner-preview-square_format .form-add-banner-right-bottom .banner-template_1_picture-image-empty {
	width: 185px;
	height: 185px;
	line-height: 185px;
	background-color: #e0e0e0;
	color: #a0a0a0;
	text-align: center;
	font-size: 10px;
}
.form-add-banner-preview-square_format .form-add-banner-right-bottom .banner-template_1_picture-image {
	width: 185px;
	height: 185px;
}
.form-add-banner-preview-square_format .form-add-banner-right-bottom .ajax-custom-image-upload {
	width: 185px;
	height: 185px;
}

.form-add-banner-preview-small_format div.form-add-banner-right-top {
	margin-bottom: 5px;
}

.form-add-banner-preview-small_format .banner-image {
	display: inline-block;
	width: 90px;
	height: 75px;
	margin-right: 5px;
}

.form-add-banner-preview-small_format .ajax-image-upload {
	width: 90px;
	height: 75px;
}
.form-add-banner-preview-small_format .ajax-custom-image-upload {
	width: 90px;
	height: 75px;
}

.form-add-banner-preview-240_400_format .ajax-image-upload {
	width: 240px;
	height: 400px;
}
.form-add-banner-preview-240_400_format .ajax-custom-image-upload {
	width: 240px;
	height: 400px;
}
.form-add-banner-preview-1000_120_format .ajax-image-upload {
	width: 400px;
	height: 48px;
}
.form-add-banner-preview-1000_120_format .ajax-image-upload {
	width: 400px;
	height: 48px;
}

.form-add-banner-preview-big_format .form-add-banner-right-top {
	height: 63px;
}

.form-add-banner-preview-big_format .form-add-banner-right-top span {
	position: absolute;
	top: 0;
	left: 62px;
}

.form-add-banner-preview-small_format .form-add-banner-right-middle span {
	display: inline-block;
	width: 160px;
	word-wrap: break-word;
	vertical-align: top;
}

.form-add-banner-footer {
}

.form-add-banner-footer .btn_common {
	margin-top: 30px;
}

.form-add-banner-footer .gif_loader_32{
	margin-left: 250px;
	margin-top: -40px;
	position: absolute;
}

.loader {
	background-color: rgba(255, 255, 255, 0.8);
	background-image: url('/i/loader32.gif');
	background-position: center;
	background-repeat: no-repeat;
	position: absolute;
	top: 0;
	left: 0;
}

.form-add-banner-preview-big_format .form-add-banner-right-top .loader {
	width: 60px;
	height: 60px;
}

.form-add-banner-preview-big_format .form-add-banner-right-bottom .loader {
	width: 380px;
	height: 215px;
}

.form-add-banner-preview-square_format .form-add-banner-right-top .loader {
	width: 56px;
	height: 56px;
}
.form-add-banner-preview-square_format .form-add-banner-right-bottom .loader {
	width: 380px;
	height: 380px;
}

.form-add-banner-preview-small_format .loader {
	width: 90px;
	height: 75px;
}

.form-add-banner-new-copy {
	display: inline-block;
	float: right;
}

.add-banners-generator h3 {
	color: #000;
	font-size: 20px;
	margin-bottom: 10px;
}

.add-banners-generator-block {
	position: relative;
	margin-bottom: 30px;
}

.add-banners-generator-block-table {
	margin-top: 20px;
}

.add-banners-generator-block-table table {
	font-size: 12px;
	width: 100%;
	color: #000000;
}

.add-banners-generator-block-table table th {
	text-transform: uppercase;
	padding: 6px 10px 6px 5px;
}

.add-banners-generator-block-table table td {
	padding: 6px 10px 6px 5px;
	border-top: 1px solid #F1F1F1;
}

.add-banners-generator-block-table-images table td {
	vertical-align: top;
}

.add-banners-generator-block .gif_loader_32 {
	position: absolute;
	top: 0px;
	left: 180px;
}

.add-banners-generator-block .gif_loader_32 {
	position: absolute;
	top: 0px;
	left: 180px;
}

/** statistics **/

.input-date {
	width: 80px;
}

.statistics-nav {
	background: #FFFFFF;
	border: 1px solid #f1f1f1;
	color: #8C8C8C;
	text-transform: uppercase;
	margin-bottom: 10px;
}

.statistics-nav-day .statistics-nav-item {
	width: 130px;
}

.statistics-nav-hour .statistics-nav-item {
	width: 131px;
}
.statistics-nav-weather .statistics-nav-item {
	width: 131px;
}

.analytics-nav .statistics-nav-item {
	width: 184px;
}

.statistics-nav-item {
	display: inline-block;
	height: 100%;
	text-align: center;
	vertical-align: middle;
	font-size: 12px;
	line-height: 30px;
	cursor: pointer;
}

.statistics-nav-item-active {
	background-color: #F1F1F1;
}

.statistics-nav-item:hover {
	background-color: #F1F1F1;
}

.statistics-conversions-nav {
	background: #FFFFFF;
	border: 1px solid #f1f1f1;
	color: #8C8C8C;
	height: 30px;
	text-transform: uppercase;
	margin-bottom: 10px;
}

.statistics-conversions-nav-item {
	display: inline-block;
	height: 100%;
	text-align: center;
	vertical-align: middle;
	font-size: 12px;
	line-height: 30px;
	cursor: pointer;
	width: 150px;
	color: #8c8c8c;
}

.statistics-conversions-nav-item-active {
	color: #000000 !important;
	font-weight: bold;
	background-color: #F1F1F1;
}

.statistics-conversions-nav-item:hover {
	background-color: #F1F1F1;
}

.statistics {
	background: #FFFFFF;
	border: 1px solid #f1f1f1;
	box-shadow: 0 0 3px #C0C0C0;
	margin: 0 0 10px;
	color: #8C8C8C;
	font-size: 12px;
/*
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
*/
	width: 1000px;
}
.statistics h3 {
	color: #000;
	font-size: 20px;
	margin-bottom: 10px;
}	

.statistics-header {
	padding: 20px 30px 20px;
	border-bottom: 1px solid #F1F1F1;
	display: flex;
	justify-content: space-between;
}

.statistics-header-item {
	vertical-align: top;
	text-align: right;
}

.statistics-header-item span {
	display: block;
}

.statistics-header-item-title {
	text-transform: uppercase;
}

.statistics-header-item-value {
	margin-top: 5px;
	font-size: 16px;
	color: #000000;
}

.statistics-main {
	padding: 10px 30px 10px;
}

.statistics-main span {
	font-size: 10px;
}

.statistics-main h3 {
	color: #000;
	font-size: 20px;
	margin-top: 30px;
}	

.statistics-main-block {
	display: block;
	margin-bottom: 10px;
}

.statistics-main-block-plots {
	padding: 10px 20px 10px;
	border: 1px solid #f1f1f1;
	position: relative;
}

.statistics-plot {
	width: 890px;
	height: 250px;
}

.statistics-plot-geo-legend {
	border: 1px solid #f1f1f1;
	padding: 5px;
	position: absolute;
	top: 5px;
	right: 5px;
	height: 248px;
	overflow-y: scroll;
}

.statistics-main-block-table {
	margin-top: 30px;
}

.statistics-main-block-table table {
	font-size: 12px;
	width: 100%;
	color: #000000;
	border: 1px solid #f1f1f1;
}

.statistics-main-block-table table th {
	text-transform: uppercase;
	padding: 6px 10px 6px 5px;
	border: 1px solid #F1F1F1;
}

.statistics-main-block-table table td {
	padding: 6px 10px 6px 5px;
	border: 1px solid #F1F1F1;
}

.table-header {
	text-transform: uppercase;
	font-weight: bold;
}

.img-align-middle {
	position: absolute;
	top: 0;
	bottom: 0;
	margin: auto;
	left: 0;
	right: 18px;
	width: 14px;
	height: 14px;
}

.table_result {
	background-color: #F1F1F1;
	font-size: 14px;
	font-weight: bold;
}

.statistics-filter-checkbox {
	display: inline-block;
	padding-left: 10px;
}

.statistics-field-bad {
	background-color: #FFEEED;
}

.statistics-fields-to-delete {
	margin-left: 20px;
	width: 450px;
}

.table-analytics-counters-container {
	border-top: 0px solid #F1F1F1 !important;
}

.table-analytics-counters {
	margin-left: 10px;
}

.table-analytics-counters span {
	color: #8c8c8c;
	font-size: 10px;
}

.analytics-postback b {
	color: #000;
}

.faststat-change-price, .image_preview {
	position: absolute;
	width: 220px;
	top: 30px;
	left: 0px;
	text-align: left;
	font-weight: normal;
	background: #FFFFFF;
	border: 1px solid #f1f1f1;
	box-shadow: 0 0 3px #C0C0C0;
	margin: 0;
	padding: 10px 10px 10px;
	z-index: 500;
}

.faststat-filter.tablesorter {
	border: 1px solid #f1f1f1;
}
.faststat-filter.tablesorter th, .faststat-filter.tablesorter td {
	border: 1px solid #f1f1f1;
}

.faststat-filter.tablesorter td {
	padding: 0 5px 0;
}
.faststat-filter.tablesorter th {
	padding: 5px;
}

.faststat-filter span.note {
	font-size: 90%;
	color: #8C8C8C;
}

.faststat-filter .banner-preview {
	position: absolute;
	top: 0;
	left: 100%;
}

.table-custom {
	border: 1px solid #f1f1f1;
}
.table-custom th, .table-custom td {
	border: 1px solid #f1f1f1;
	vertical-align: middle;
}

.table-custom td {
	padding: 2px 5px 0;
	white-space: nowrap;
	vertical-align: top;
}
.table-custom th {
	padding: 5px;
}

.table-custom span.note {
	font-size: 90%;
	color: #8C8C8C;
}

.table-custom span.show-preview {
	border-bottom: 1px dotted;
}

.table-custom .banner-preview {
	position: absolute;
	top: 0;
	left: 100%;
}

.campaign-description {
	top: 0px;
	left: 0px;
}

/** texts **/

.texts {
	background: #FFFFFF;
	border: 1px solid #f1f1f1;
	box-shadow: 0 0 3px #C0C0C0;
	margin: 0 0 10px;
	color: #8C8C8C;
	text-shadow: 1px 1px 0 #FFFFFF;
	font-size: 12px;
/*
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
*/
	width: 1000px;
}

.texts h3 {
	color: #000;
	font-size: 20px;
	margin-bottom: 10px;
}	

.texts-header {
	padding: 10px 30px 10px;
	border-bottom: 1px solid #F1F1F1;
}

.texts-main {
	padding: 10px 30px 10px;
}

.texts-main span {
	font-size: 10px;
}

.texts-main-block {
	display: block;
	margin-bottom: 10px;
	font-size: 12px;
}

.texts-main-block-submit {
	margin-top: 20px;
}

.texts-main-block-table {
	margin-top: 30px;
}

.texts-main-block-table table {
	font-size: 12px;
	width: 100%;
	color: #000000;
}

.texts-main-block-table table th {
	text-transform: uppercase;
	padding: 6px 10px 6px 5px;
	width: 15%;
}

.texts-main-block-table table td {
	padding: 6px 10px 6px 5px;
	border-top: 1px solid #F1F1F1;
	width: 15%;
}

#dialog-edit_text h3 {
	font-size: 14px;
	font-weight: bold;
	margin-bottom: 10px;
}

/** images **/

.images {
	background: #FFFFFF;
	border: 1px solid #f1f1f1;
	box-shadow: 0 0 3px #C0C0C0;
	margin: 0 0 10px;
	color: #8C8C8C;
	text-shadow: 1px 1px 0 #FFFFFF;
	font-size: 12px;
/*
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
*/
	width: 1000px;
}

.images h3 {
	color: #000;
	font-size: 20px;
	margin-bottom: 10px;
}	

.images-header {
	padding: 10px 30px 10px;
	border-bottom: 1px solid #F1F1F1;
}

.images-main {
	padding: 10px 30px 10px;
}

.images-main span {
	font-size: 10px;
}

.images-main-block {
	display: block;
	margin-bottom: 10px;
}

.images-main-block-submit {
	position: relative;
	margin-top: 20px;
}

.images-main-block.gif_loader_32 {
}

.images-main-block-table {
	margin-top: 30px;
}

.images-main-block-table table {
	font-size: 12px;
	width: 100%;
	color: #000000;
}

.images-main-block-table table th {
	padding: 6px 10px 6px 5px;
	text-transform: uppercase;
}

.images-main-block-table table td {
	padding: 6px 10px 6px 5px;
	border-top: 1px solid #F1F1F1;
	vertical-align: top;
}

.publer-banner {
	float: left;
	margin-bottom: 20px;
	margin-left: 30px;
}

.publer-banner-header {
	background-color: #f0f0f0;
	box-shadow: 0 2px 5px 1px #c0c0c0;
	width: 380px;
	padding: 7px 20px 5px;
	height: 24px;
}

.publer-banner-header span.publer-banner-title {
	cursor: pointer;
	border-bottom: 1px dotted;
	line-height: 20px;
}

.publer-banner-header span.publer-banner-add_time {
	float: right;
	line-height: 22px;
	color: #000000;
}

.publer-banner-body {
	background-color: #f0f0f0;
	box-shadow: 0 2px 5px 1px #c0c0c0;
	position: relative;
	padding: 20px;
	width: 380px;
	height: 310px;
}

.publer-banner-body .icon_24_close {
	position: absolute;
	top: 7px;
	right: 0;
}

.publer-banner-body-small {
	height: 100px;
}

.publer-banner-date-block {
	margin-top: 10px;
}

span.publer-show_dates {
	cursor: pointer;
	border-bottom: 1px dotted;
	margin-left: 10px;
	color: #000000;
	font-size: 14px;
	margin-top: 5px;
}

.publer-banners-container
{
	margin-bottom: 5px;
}

.create-banner {
	padding-bottom: 10px;
	background: #FFFFFF;
	border: 1px solid #f1f1f1;
	box-shadow: 0 0 3px #C0C0C0;
	margin: 0 0 10px;
	color: #8C8C8C;
	font-size: 12px;
/*
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
*/
	width: 1000px;
}

.create-banner-header {
	padding: 20px 30px 20px;
	text-transform: uppercase;
}

.create-banner-header b {
	font-size: 14px;
	margin-left: 20px;
}

.create-banner-nav {
	background: #FFFFFF;
	color: #8C8C8C;
	border-top: 1px solid #F1F1F1;
	border-bottom: 1px solid #F1F1F1;
	height: 30px;
	text-transform: uppercase;
	padding: 0px 30px 0px;
}

.create-banner-nav-item {
	display: inline-block;
	height: 100%;
	text-align: center;
	vertical-align: middle;
	font-size: 12px;
	line-height: 30px;
	cursor: pointer;
	width: 270px;
}

.create-banner-nav-item:hover {
	background-color: #F1F1F1;
}

.create-banner-nav-item-active {
	background-color: #F1F1F1;
}

.create-banner-tab {
	padding: 20px 30px 20px;
	min-height: 450px;
}

.create-banner-tab-left, .create-banner-tab-right {
	float: left;
}

.create-banner-tab-left {
	width: 500px;
}

.create-banner-block {
	display: block;
	padding-bottom: 15px;
}

.create-banner-image-preview {
	border: 1px solid #f1f1f1;
	position: relative;
	width: 240px;
	height: 400px;
}

.create-banner-240_400 .image_preview_header {
	position: absolute;
}

.create-banner-240_400 .text_preview {
	position: absolute;
}

.create-banner-240_400 .image_preview_center {
	position: absolute;
}

.create-banner-240_400 .image_preview_footer {
	position: absolute;
}

/** audience **/

.audience-nav {
	background: #FFFFFF;
	border: 1px solid #f1f1f1;
	box-shadow: 0 0 3px #C0C0C0;
	margin: 0 0 10px;
	color: #8C8C8C;
	width: 1000px;
	height: 30px;
	text-transform: uppercase;
}

.audience-nav-item {
	display: inline-block;
	width: 115px;
	height: 100%;
	text-align: center;
	vertical-align: middle;
	font-size: 12px;
	line-height: 30px;
	cursor: pointer;
}

.audience-nav-item-active {
	background-color: #F1F1F1;
}

.audience-nav-item:hover {
	background-color: #F1F1F1;
}

.audience, group {
	background: #FFFFFF;
	border: 1px solid #f1f1f1;
	box-shadow: 0 0 3px #C0C0C0;
	margin: 0 0 10px;
	color: #8C8C8C;
	font-size: 12px;
/*
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
*/
	width: 1000px;
}

.audience-header {
	padding: 10px 30px 10px;
	border-bottom: 1px solid #F1F1F1;
}

.audience-header h3 {
	color: #000;
	font-size: 20px;
	margin-bottom: 20px;
}	

.audience-main {
}

.audience-main span {
	font-size: 10px;
}

.audience-main-block {
	padding: 20px 30px;
	display: block;
	color: #000000;
}

.audience-main-block-error {
	padding: 0 30px 0;
	font-size: 14px;
}

.audience-main-block-submit {
	border-bottom: none;
	position: relative;
	margin-top: -5px;
}
.audience-main-block-submit .gif_loader_32 {
	position: absolute;
	top: 20px;
	left: 150px;
}

.audience-main-block-table table {
	font-size: 12px;
	width: 100%;
	color: #000000;
}

.audience-main-block-table table th {
	padding: 6px 10px 6px 5px;
	text-align: left;
	text-transform: uppercase;
}
.audience-main-block-table table th:first-child {
	width: 35%;
}
.audience-main-block-table table th:nth-child(2) {
	width: 30%;
}
.audience-main-block-table table th:nth-child(3) {
	width: 20%;
}
.audience-main-block-table table td {
	padding: 6px 10px 6px 5px;
	border-top: 1px solid #F1F1F1;
}
.audience-main-block-table table td:first-child {
	width: 35%;
}
.audience-main-block-table table td:nth-child(2) {
	width: 30%;
}
.audience-main-block-table table td:nth-child(3) {
	width: 20%;
}

.audience-main-block-table table td div input {
	width: 34px;
}

.audience-add {
	padding-bottom: 10px;
	background: #FFFFFF;
	border: 1px solid #f1f1f1;
	box-shadow: 0 0 3px #C0C0C0;
	margin: 0 0 10px;
	color: #8C8C8C;
	text-shadow: 1px 1px 0 #FFFFFF;
	font-size: 12px;
/*
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
*/
	width: 1000px;
}

.audience-add-header {
	padding: 20px 30px 20px;
	border-bottom: 1px solid #F1F1F1;
	text-transform: uppercase;
}

.audience-add-header b {
	font-size: 14px;
	margin-left: 20px;
}

.audience-add-block {
	padding: 20px 30px;
	font-size: 14px;
}

.audience-add-box {
	margin-bottom: 20px;
	margin-left: 10px;
	margin-right: 10px;
	margin-top: 10px;
}
.audience-add-scroll-box {
	max-height: 400px; 
	overflow-y: scroll; 
	border: 1px solid rgb(232, 232, 232); 
	border-radius: 3px; 
	box-sizing: border-box; 
	box-shadow: rgba(0, 0, 0, 0.0470588) 0px 0px 1px; 
	background: none 0px 0px repeat scroll rgb(255, 255, 255);
}

.audience-show-block {
	background-color: #F1F1F1
}
span.audience-show-block-label {
	cursor: pointer;
	border-bottom: 1px dotted;
	margin-left: 3px;
	color: #000000;
	font-size: 14px;
	margin-top: 5px;
}
.audience-block-td {
	padding-left: 20px;
}


.audience-add-block-error {
	font-size: 14px;
}

.audience-add-submit {
	border-bottom: none;
	position: relative;
}

.audience-add-submit .gif_loader_32 {
	position: absolute;
	top: 0px;
	left: 110px;
}

.audience-header-bottom-copy {
	position: absolute;
	margin-left: 80px;
	margin-top: -20px;
	background: #FFFFFF;
	border: 1px solid #f1f1f1;
	box-shadow: 0 0 3px #C0C0C0;
	z-index: 502;
	padding: 10px 10px 10px;
	font-size: 12px;
}

.audience-header-bottom-copy .gif_loader_32 {
	display: inline-block;
	margin-top: 10px;
}

.audience-block-table table th {
	padding: 6px 10px 6px 5px;
	text-align: left;
	text-transform: uppercase;
}
.audience-block-table table td {
	padding: 6px 10px 6px 5px;
	border-top: 1px solid #F1F1F1;
}

.audience-block-table table td div input {
	width: 34px;
}

#div-add_counter_loader, #div-add_topmail_counter_loader {
	position: absolute;
	top: 0px;
	left: 120px;
}

/** billing **/

.billing {
	background: #FFFFFF;
	border: 1px solid #f1f1f1;
	box-shadow: 0 0 3px #C0C0C0;
	margin: 0 0 10px;
	color: #8C8C8C;
	font-size: 12px;
	width: 1000px;
}

.billing-header h3 {
	color: #000;
	font-size: 20px;
	margin-bottom: 10px;
	padding: 10px 30px;
}	

.billing-main {
	padding: 10px 30px;
}

.billing-main-block {
	margin-bottom: 10px;
}

/** strategy **/

.strategy {
	background: #FFFFFF;
	border: 1px solid #f1f1f1;
	box-shadow: 0 0 3px #C0C0C0;
	margin: 0 0 10px;
	color: #8C8C8C;
	font-size: 12px;
	width: 1000px;
}

.strategy h3 {
	color: #000;
	font-size: 20px;
	margin-bottom: 20px;
}	

.strategy-header {
	padding: 20px 30px 20px;
	border-bottom: 1px solid #F1F1F1;
	text-transform: uppercase;
}

.strategy-header b {
	font-size: 14px;
	margin-left: 20px;
}

.strategy-block {
	padding: 10px 30px 10px;
}

.strategy-block-edit {
	padding: 10px 30px 10px;
}

.strategy-block table {
	font-size: 12px;
	width: 100%;
	color: #000000;
}

.strategy-block table th {
	text-transform: uppercase;
	padding: 6px 10px 6px 5px;
	width: 15%;
}

.strategy-block table td {
	padding: 6px 10px 6px 5px;
	border-top: 1px solid #F1F1F1;
	width: 15%;
}

.strategy-block .btn_ok {
	margin-top: 20px;
}

.strategy-block-edit .btn_ok {
	margin-top: 20px;
}

/** iskander tabs **/

.iskander-tab-nav {
	background: #FFFFFF;
	border: 1px solid #f1f1f1;
	box-shadow: 0 0 3px #C0C0C0;
	margin: 0 0 10px;
	color: #8C8C8C;
	width: 1000px;
	height: 30px;
	text-transform: uppercase;
}

.iskander-tab-nav-item {
	display: inline-block;
	width: 16.4%;
	height: 100%;
	text-align: center;
	vertical-align: middle;
	font-size: 12px;
	line-height: 30px;
	cursor: pointer;
}

a .iskander-tab-nav-item {
	color: #8C8C8C;
}

.iskander-tab-nav-item-active {
	background-color: #F1F1F1;
	font-weight: bold;
	color: #000000 !important;
}

.iskander-tab-nav-item:hover {
	background-color: #F1F1F1;
}

.iskander-page .iskander-tab-nav {
	box-shadow: 0 0 0;
	width: 100%;
}

.iskander-tab-button {
	background: #ffffff none repeat scroll 0 0;
	border: 1px solid #f1f1f1;
	border-radius: 5px;
	box-sizing: border-box;
	color: #000000;
	cursor: pointer;
	display: inline-block;
	font-size: 12px;
	height: 32px;
	line-height: 32px;
	text-align: center;
	text-transform: uppercase;
	width: 150px;
}

.iskander-tab-button:hover {
	background: #f1f1f1 none repeat scroll 0 0;
}

.iskander-tab-button-active {
	background: #0077c0 none repeat scroll 0 0 !important;
	border: 1px solid #0077c0;
	color: #ffffff;
}

/** iskander tooltips **/

.iskander-tooltip {
	position: absolute;
	width: 300px;
	white-space: normal;
	display: none;
    font-size: 12px;
    padding: 10px;
    z-index: 1000;
	border: 1px solid transparent;
	border-radius: 4px;
	background-color: #d9edf7;
	border-color: #bce8f1;
	color: #31708f;
}

.iskander-tooltip a {
	position: absolute;
	top: 0;
	right: 0;
	margin: 0;
}

/** iskander messages **/

.iskander-message {
	position: relative;
    font-size: 12px;
    padding: 10px;
    z-index: 1000;
	border: 1px solid transparent;
	border-radius: 4px;
}

.iskander-message-green {
	background-color: #dff0d8;
	border-color: #d6e9c6;
	color: #3c763d;
}

.iskander-message-red {
	background-color: #f2dede;
	border-color: #ebccd1;
	color: #a94442;
}

.iskander-message-yellow {
	background-color: #fcf8e3;
	border-color: #faebcc;
	color: #8a6d3b;
}

.iskander-message-blue {
	background-color: #d9edf7;
	border-color: #bce8f1;
	color: #31708f;
}

/** clients **/

.iskander-page {
	background: #FFFFFF;
	border: 1px solid #f1f1f1;
	box-shadow: 0 0 3px #C0C0C0;
	margin: 0 0 10px;
	color: #8C8C8C;
	width: 1000px;
	font-size: 12px;
}

.iskander-page h3 {
	color: #000;
	font-size: 20px;
	margin-bottom: 20px;
}

.iskander-sub-header {
	color: #000;
	font-size: 20px;
	margin-bottom: 20px;
}

.iskander-page-header {
	padding: 20px 30px 20px;
	text-transform: uppercase;
	border-bottom: 1px solid #f1f1f1;
}

.iskander-page-header b {
	font-size: 14px;
	margin-left: 20px;
}

.iskander-border {
	border: 1px solid #f1f1f1;
}

.iskander-block {
	padding: 10px 30px 10px;
}

.iskander-block-item {
	margin-bottom: 10px;
}

.iskander-block-item-20 {
	margin-bottom: 20px;
}

.iskander-block-item-filter {
	display: inline-block;
	float: left;
	margin-right: 15px;
}

.iskander-item-margin {
	margin: 10px 0px 20px;
}

.iskander-page table {
	color: #000000;
}
.iskander-page table:not(.table-uncommon) {
	font-size: 12px;
	width: 100%;
}

.iskander-page table:not(.table-custom) th {
	text-transform: uppercase;
	padding: 6px 10px 6px 5px;
}

.iskander-page table:not(.table-custom) td {
	padding: 6px 10px 6px 5px;
	border-top: 1px solid #F1F1F1;
}

.iskander-textboxlist-container {
    min-height: 30px;
    border: 1px solid rgb(232, 232, 232);
    border-radius: 3px;
    box-sizing: border-box;
    box-shadow: rgba(0, 0, 0, 0.0470588) 0px 0px 1px;
    background: none 0px 0px repeat scroll rgb(255, 255, 255);
    padding: 5px 5px 0px;
}

.iskander-textboxlist-item {
    display: inline-block;
    vertical-align: top;
    text-align: center;
    line-height: 18px;
    padding: 0px 6px 0px;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    border: 1px solid #ffffff;
    border-radius: 5px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    font-size: 12px;
    height: 20px;
    margin-right: 4px;
    margin-bottom: 5px;
    background: #0077c0;
    border: 1px solid #0077c0;
    color: #ffffff;
}

.iskander-textboxlist-item span {
	font-size: 12px;
}

.iskander-textboxlist-item img {
    width: 8px;
    height: 8px;
    margin-left: 4px;
    cursor: pointer;
}

.iskander-textboxlist-item img:hover {
    opacity: 0.5;
}

.table-common {
	font-size: 12px;
	width: 100%;
	color: #000000;
}

.table-common th {
	text-transform: uppercase;
	padding: 6px 10px 6px 5px;
}

.table-common td {
	padding: 6px 10px 6px 5px;
	border-top: 1px solid #F1F1F1;
}

#div-change_balance,#div-mass_change_balance {
	background: #FFFFFF;
	border: 1px solid #f1f1f1;
	box-shadow: 0 0 3px #C0C0C0;
	margin: 0 0 10px;
	color: #8C8C8C;
/*
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
*/
	width: 300px;
	font-size: 12px;
	padding: 10px 10px 10px;
	position: absolute;
}

#div-change_balance.btn_ok,#div-change_balance.btn_common,#div-mass_change_balance.btn_ok,#div-mass_change_balance.btn_common {
	margin-top: 10px;
}

.ui-autocomplete {
	max-height: 250px;
	overflow-y: auto;
	overflow-x: hidden;
	z-index: 1501;
}
html .ui-autocomplete {
	height: auto;
}

.modify_right_block_vk {
	margin: 10px 10px 10px;
	position: absolute;
	left: 65%;
}

.campaign-banners-item-edit-left-vk,
.campaign-banners-item-edit-right-vk {
	display: inline-block;
	vertical-align: top;
}

.campaign-banners-item-edit-left-vk {
	width: 45%;
}

.campaign-banners-item-edit-left-vk input {
	width: 100%;
}

.campaign-banners-item-edit-left-vk textarea {
	width: 100%;
	height: 100px;
	resize: vertical;
}

.campaign-banners-item-edit-left-vk span.note {
	font-size: 90%;
	color: #8C8C8C;
}

.custom-combobox {
        position: relative;
        display: inline-block;
        text-align: center;
        line-height: 18px;
        font-size: 12px;
        height: 20px;
        margin-right: 4px;
        margin-bottom: 5px;
        background: #FFFFFF;
        border: 0px;
        max-width: 100%;
        min-width: 150px;
        width: auto;
        overflow: hidden;
        color: black;
}
.custom-combobox-toggle {
        position: absolute;
        top: 0;
        bottom: 0;
        margin-left: -1px;
        padding: 0;
}
.custom-combobox-input {
        line-height: 18px;
        font-size: 12px;
        height: 20px;
        margin-right: 4px;
        margin-bottom: 5px;
        background: #FFFFFF;
        border: 0px;
        width: 100%;
        color: black;
}

.font_14 {
	font-size: 14px;
}

.iskander-border-top {
	border-top: 1px solid #f1f1f1;
}

.iskander-border-bottom {
	border-bottom: 1px solid #f1f1f1;
}

.iskander-border-bottom-container > .iskander-border-bottom:last-child {
    border-bottom: 0;
}

.custom-combobox-input-pseudo {
    line-height: 18px;
    font-size: 12px;
    height: 20px;
    margin-right: 4px;
    margin-bottom: 5px;
    background: #FFFFFF;
    border: 0px;
    width: 100%;
    color: black;
    border: 0;
}

.iskander-vk-add-campaign-input-text {
    width: 400px;
    min-height: 30px;
    border: 1px solid rgb(232, 232, 232);
    border-radius: 3px;
    box-sizing: border-box;
    box-shadow: rgba(0, 0, 0, 0.0470588) 0px 0px 1px;
    background: none 0px 0px repeat scroll rgb(255, 255, 255);
    padding: 5px 5px 0px;
    margin-top: 5px;
}
.iskander-vk-add-campaign-input-text input {
    line-height: 18px;
    font-size: 12px;
    height: 20px;
    margin-right: 4px;
    margin-bottom: 5px;
    background: #FFFFFF;
    border: 0px;
    width: 100%;
    color: black;
    border: 0;
}

.form-vk-add-banner-right {
	display: inline-block;
	vertical-align: top;
}
.form-vk-add-banner-right {
	margin: 10px 10px 10px;
	width: auto;
}
.form-vk-ads_ad {
    text-align: center;
    border: 0 solid #DCE3E9;
    border-width: 1px;
    background-color: white;
	width: 120px;
}
.form-vk-ads_ad .vk-banner-image-container-text_image {
	padding-top: 9px;
    overflow: hidden;
}
.form-vk-ads_ad .vk-banner-image-empty-text_image {
	margin: 0 auto;
	background-color: #e0e0e0;
	color: #a0a0a0;
	text-align: center;
	font-size: 10px;
	width: 90px;
	height: 65px;
	line-height: 65px;
}

.form-vk-ads_ad .vk-banner-image-container-big_image {
	padding-top: 9px;
    overflow: hidden;
}
.form-vk-ads_ad .vk-banner-image-empty-big_image {
	margin: 0 auto;
	background-color: #e0e0e0;
	color: #a0a0a0;
	text-align: center;
	font-size: 10px;
	width: 90px;
	height: 120px;
	line-height: 120px;
}
.form-vk-ads_ad .vk-banner-image-container-exclusive {
	padding-top: 9px;
    overflow: hidden;
}
.form-vk-ads_ad .vk-banner-image-empty-exclusive {
	margin: 0 auto;
	background-color: #e0e0e0;
	color: #a0a0a0;
	text-align: center;
	font-size: 10px;
	width: 90px;
	height: 160px;
	line-height: 160px;
}
.form-vk-ads_ad-container {
    width: 112px;
    padding-left: 3px;
    padding-right: 3px;
    padding-top: 8px;
    padding-bottom: 11px;
    font-family: tahoma, arial, verdana, sans-serif, Lucida Sans;
}

.form-vk-ads_ad .form-vk-footer-ads_ad-text {
    word-wrap: break-word;
    padding-top: 10px;
    color: #000000;
    font-size: 11px;
}
.form-vk-ads_ad .form-vk-domain-ads_ad-text {
    color: #777777;
    font-size: 0.91em;
    padding-top: 3px;
}
.form-vk-ads_ad .form-vk-title-ads_ad-text {
    word-wrap: break-word;
    color: #36638E;
    font-weight: bold;
    font-size: 11pt;
}
.form-vk-ads_ad-container .ajax-image-upload_vk {
	position: absolute;
	cursor: pointer;
	opacity: 0;
    width: 90px;
    top: 72px;
    left: 16px;
}
.form-vk-ads_ad-container .ajax-image-upload_vk_1 {
    height: 65px;
}
.form-vk-ads_ad-container .ajax-image-upload_vk_2 {
    height: 120px;
}
.form-vk-ads_ad-container .ajax-image-upload_vk_3 {
    height: 160px;
}
.campaign-banners-item-edit-left .ajax-image-upload_vk {
	width: 250px;
	height: 32px;
}
#div-add_account {
	margin-top: 20px;
	border: 1px solid #f1f1f1; 
	box-shadow: 0 0 3px #C0C0C0; 
	color: #8C8C8C; 
	width: 230px; 
	font-size: 12px; 
	padding: 10px 10px 10px;
}
.table-scrollbox {
	width: 100%;
	overflow-x:scroll;
}

.table-scrollbox-stat {
	overflow-x:scroll;
	white-space: nowrap; 
	width: calc(100% - 47px);
	float: left;
}

.table-stat-time {
	width: auto;
	float: left;
	margin-top: 98px;
}

.table-stat-time td {
	border-left: 1px solid #f1f1f1;
	border-top: 1px solid #f1f1f1;
	border-bottom: 1px solid #f1f1f1;
}

.table-stat-block {
	display: inline-block; 
	width: auto;
	border-left: 1px solid #000000;
	border-top: 1px solid #000000;
	border-bottom: 1px solid #000000;
}
.table-stat-block {
	margin-right: -.36em;
}

.table-stat-block td, .table-stat-block th {
	white-space: nowrap;
}

.border-right {
	border-right: 1px solid #f1f1f1;
}

.border-bottom {
	border-bottom: 1px solid #f1f1f1;
}

.table-stat-block-header-main {
	border-bottom: 1px solid #f1f1f1;
}

.table-stat-block span.note {
	font-size: 10px;
	color: #8C8C8C;
}

.table-scrollbox-stat .table-stat-block:last-child {
	border-right: 1px solid #000000;
}

.table-stat-block-price {
	font-weight: bold;
	border: 0;
	border-bottom: 1px dotted;
	margin-left: 5px;
	cursor: pointer;
	width: 30px;
    height: 15px;
}
.table-stat-block .icon_16 {
	margin-right: 0px;
	margin-left: 3px;
}

.table-stat-block .delta-green {
	color: #16bf00;
}
.table-stat-block .delta-red {
	color: #ff0000;
}

.iskander-block-item-filter-scroll {
	border: 1px solid rgb(232, 232, 232);
	border-radius: 3px;
	box-shadow: 0 0 1px rgba(0, 0, 0, 0.047);
	padding: 5px 7px;
	overflow-y: scroll;
	max-height: 300px;
	margin-top: 10px;
	margin-bottom: 10px;
}
#div-change-utm_source {
	position: absolute;
	background: #FFFFFF;
	border: 1px solid #f1f1f1;
	box-shadow: 0 0 3px #C0C0C0;
	width: 360px;
	height: 100px;
	z-index: 500;
	margin: 0 0 10px;
	color: #8C8C8C;
	width: 230px;
	font-size: 12px;
	padding: 10px 10px 10px;
}

#div-change-utm_source.btn_ok,#div-change-utm_source.btn_common {
	margin-top: 10px;
}

.dotted {
	border-bottom: 1px dotted;
}

.iskander-preview-box {
	position: absolute;
	background: #fff;
	border: 1px solid #CDECFA;
	box-shadow: 0 0 3px #0778A8;
	margin: 0 0 10px;
	color: #000;
	width: 300px;
	font-size: 12px;
	padding: 15px 15px 15px;
	z-index: 500;
	display: none;
}

.banner-preview-text {
	color: #8C8C8C;
}

.div-fancybox {
	font-size: 12px;
}

div#fancy-banner_rule_edit table td:not(.google-visualization-orgchart-node) {
	padding: 2px 4px 2px 0;
}

div#div-rule_scheme {
	margin-top: 10px;
	background: rgb(255, 255, 255) none repeat scroll 0 0;
	border: 1px solid rgb(232, 232, 232);
	border-radius: 3px;
	box-shadow: 0 0 1px rgba(0, 0, 0, 0.047);
	box-sizing: border-box;
	padding: 5px;
}

.google-visualization-orgchart-table {
	margin: 0 auto;
}

.google-visualization-orgchart-node {
	border: 0 !important;
}

.table-bonuses td {
	vertical-align: middle;
}

.table-bonuses img {
	margin-top: 3px;
}

.div-social {
	margin-right: 10px;
}

.div-social td {
	padding: 0 !important;
	border: 0 !important;
}

.logo_other_systems {
	margin-right: 50px;
}

.html5-constructor-left, .html5-constructor-right {
	float: left;
}

.html5-constructor-left .textalign_top {
	padding-top: 3px;
}

.html5-constructor-left table {
	border: 0;
}

.html5-constructor-left table td {
	border: 0;
	padding-bottom: 5px;
}

.html5-constructor-left input {
	width: 200px;
}

.push-notification {
	position: relative;
    font-size: 12px;
    padding: 10px;
    z-index: 1000;
	width: 305px;
	border: 1px solid transparent;
	border-radius: 4px;
}

.push-notification-container {
	position: fixed;
	bottom: 3px;
	right: 10px;
	z-index: 2000;
}

.push-notification-green {
	margin-top: 5px;
	background-color: #dff0d8;
	border-color: #d6e9c6;
	color: #3c763d;
}

.push-notification-red {
	margin-top: 5px;
	background-color: #f2dede;
	border-color: #ebccd1;
	color: #a94442;
}

.push-notification-yellow {
	margin-top: 5px;
	background-color: #fcf8e3;
	border-color: #faebcc;
	color: #8a6d3b;
}

.push-notification-blue {
	margin-top: 5px;
	background-color: #d9edf7;
	border-color: #bce8f1;
	color: #31708f;
}

.push-notification-inner {
	max-height: 150px;
	overflow-y: scroll;
}

.tips-notification-container {
	position: fixed;
	bottom: 3px;
	right: 350px;
	z-index: 2000;
}

.ui-progressbar {
	position: relative;
}
.progress-label {
	position: absolute;
	left: 50%;
    transform: translateX(-50%);
	top: 4px;
	font-weight: bold;
	text-shadow: 1px 1px 0 #fff;
}

.rules_timetable .weekDayHour input[type=checkbox]+label {
	display:block;
	position:relative;
	width: 20px;
	height: 20px;
	line-height: 20px;
}

.rules_timetable .weekdays tbody td {
	border-collapse:collapse;
	font: 13px/1.5 Arial,"Helvetica Neue",Helvetica,sans-serif;
	padding:0
}
.rules_timetable .weekdays tbody td:first-child {
	height:20px;
	text-align:left
}
.rules_timetable .weekdays tbody td:not(:first-child):not(:nth-child(2)):not(.hourlabels) {
	border:1px solid #d8d8d8;
	width:20px;
	height:20px;
	vertical-align:middle;
	text-align:center
}

.rules_timetable .weekday-templates {
	clear:both;
	margin-bottom:30px
}
.rules_timetable .weekday-templates li.right {
	float:right;
	margin-left:10px
}
.rules_timetable .weekday-templates li.left {
	float:left;
	margin-right:10px
}
.rules_timetable .timetable {
	width: 560px;
	border: 1px solid #e8e8e8; 
	border-radius: 3px; 
	padding: 5px 7px; 
	background: none repeat scroll 0 0 #fff; 
	box-sizing: border-box; 
	box-shadow: 0 0 1px rgba(0, 0, 0, 0.05);
}
.rules_timetable .weekday-templates{clear:both;margin-bottom:30px}.weekday-templates li.right{float:right;margin-left:10px}.weekday-templates li.left{float:left;margin-right:10px}.weekdays{border-spacing:0;border-collapse:collapse}.weekdays thead th{font-weight:normal}

.iskander-dialog {
	position: fixed;
	top: 20%;
	left: 15%;
	background: #FFFFFF;
	border: 1px solid #f1f1f1;
	box-shadow: 0 0 3px #C0C0C0;
	margin: 0;
	padding: 10px 10px 10px;
	width: auto;
	z-index: 502;
	max-width: 1050px;
    overflow-y: scroll;
    max-height: 600px;
}

.iskander-h3 {
	color: #000;
	font-size: 20px;
	margin-bottom: 20px;
}

div.ag-root {
-webkit-user-select:text;
-moz-user-select:text;
-ms-user-select:text;
user-select:text;
}

#select-all-checkbox + label::before {
	content: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA4AAAAOCAYAAAAfSC3RAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAA2ZpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMy1jMDExIDY2LjE0NTY2MSwgMjAxMi8wMi8wNi0xNDo1NjoyNyAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wTU09Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9tbS8iIHhtbG5zOnN0UmVmPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvc1R5cGUvUmVzb3VyY2VSZWYjIiB4bWxuczp4bXA9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC8iIHhtcE1NOk9yaWdpbmFsRG9jdW1lbnRJRD0ieG1wLmRpZDpFQ0VGQkU3ODM4MTFFNjExQjlCQzhERUVDNkNGMzFDMyIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDo2MkU1Rjk1NDExNDExMUU2ODhEQkMyRTJGOUNGODYyQyIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDo2MkU1Rjk1MzExNDExMUU2ODhEQkMyRTJGOUNGODYyQyIgeG1wOkNyZWF0b3JUb29sPSJBZG9iZSBQaG90b3Nob3AgQ1M2IChXaW5kb3dzKSI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOjI1MkM4M0M1M0MxMUU2MTFCOUJDOERFRUM2Q0YzMUMzIiBzdFJlZjpkb2N1bWVudElEPSJ4bXAuZGlkOkVDRUZCRTc4MzgxMUU2MTFCOUJDOERFRUM2Q0YzMUMzIi8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+t+CXswAAAFBJREFUeNrsksENwDAIA023a9YGNqlItkixlAFIn1VOMv5wvACAOxOZWUwsB6Gqswp36QivJNhBRHDhI0f8j9jNrCy4O2twNMobT/7QeQUYAFaKU1yE2OfhAAAAAElFTkSuQmCC");
	cursor: pointer;
	display: inline-block;
	height: 14px;
	width: 14px;
	vertical-align: middle;
	padding-right: 9px;
}

#select-all-checkbox:checked + label::before {
	content: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA4AAAAOCAYAAAAfSC3RAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAA2ZpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMy1jMDExIDY2LjE0NTY2MSwgMjAxMi8wMi8wNi0xNDo1NjoyNyAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wTU09Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9tbS8iIHhtbG5zOnN0UmVmPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvc1R5cGUvUmVzb3VyY2VSZWYjIiB4bWxuczp4bXA9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC8iIHhtcE1NOk9yaWdpbmFsRG9jdW1lbnRJRD0ieG1wLmRpZDpFQ0VGQkU3ODM4MTFFNjExQjlCQzhERUVDNkNGMzFDMyIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDpBRkJCRDU1MTEyM0ExMUU2ODE4MUUyOTNBNTRGQkIxNyIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDpBRkJCRDU1MDEyM0ExMUU2ODE4MUUyOTNBNTRGQkIxNyIgeG1wOkNyZWF0b3JUb29sPSJBZG9iZSBQaG90b3Nob3AgQ1M2IChXaW5kb3dzKSI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOjIzMkM4M0M1M0MxMUU2MTFCOUJDOERFRUM2Q0YzMUMzIiBzdFJlZjpkb2N1bWVudElEPSJ4bXAuZGlkOkVDRUZCRTc4MzgxMUU2MTFCOUJDOERFRUM2Q0YzMUMzIi8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+riMaEQAAAL5JREFUeNqUks0JhDAQhSd7tgtLMDUIyTXF2IdNWIE3c0ruYg9LtgcPzvpEF8SfHR8MGR75hpcwRERmrjQXCyutDKUQAkuFu2AUpsyiJ1JK0UtycRgGMsbsPBFYVRVZaw/+7Zu895znOY/j+PPWT7oGp2lirTU3TbPz/4IAAGLALeic47Ztlx7RELHrusPAAwgoy7LlrOuay7I8TXIadYOLouC+7+XgBiP2lTbw0crFGAF9ANq1kS75G8xXgAEAiqu9OeWZ/voAAAAASUVORK5CYII=");
	cursor: pointer;
	display: inline-block;
	height: 14px;
	width: 14px;
	vertical-align: middle;
	padding-right: 9px;
}

.ag-header-group-cell-label {
	font-weight: bold;
	text-align: center !important;
	vertical-align: middle;
}

.ag-fresh .ag-header-group-text {
	font-size: 14px; !important;
}

#new-rule_scheme-container {
	border: 1px solid black;
	margin-left: 15px;
	width: auto;
	height: auto;
}

.iskander-dashboard-plot {
	width: 500px; 
	height: 300px; 
	position: relative;
}

.iskander-dashboard-wide-plot {
	width: 1215px; 
}

.empty-iskander-dashboard-plot {
	min-height: 300px; 
	background-color: #C0C0C0; 
	cursor: pointer;
	text-align: center;
}
.empty-iskander-dashboard-plot:after {
	color: #fff;
	content: "+";
	font-size: 60px;
	line-height: 300px;
	position: relative;
	top: 0;
}

.iskander-dashboard-plot-row {
	display: flex;
	justify-content: space-around;
	flex-wrap: wrap;
}

.iskander-dashboard-plot-row div.iskander-dashboard-plot {
	margin: 10px;
	border: 1px solid #C0C0C0;
	border-radius: 15px;
}

.dashboard-chart-type-selection {
	font-size: 14px;
	position: absolute;
	z-index: 1500; 
	color: black; 
	margin-top: 5px; 
	right: 6%; 
	background-color: white;
	border: 1px solid rgba(34, 36, 38, 0.15);
	border-radius: 4px;
	box-shadow: rgba(34, 36, 38, 0.15) 0px 2px 3px 0px;
	text-align: left;
	display: none;
}
.dashboard-chart-type-selection div {
	padding: 10px 16px;
}
.dashboard-chart-type-selection div:hover {
	background-color: rgba(0, 0, 0, 0.07);
	cursor: pointer;
}
.dashboard-chart-type-selection div.selected {
	background-color: rgba(0, 0, 0, 0.07);
	cursor: pointer;
}

.label-rotate th {
    -webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -o-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
}

.upload_local_geo_container {
    width: 450px; 
    height: 230px; 
    text-align: center; 
    position: absolute; 
    margin-top: -230px; 
    background-color: black; 
    opacity: 0.8; 
    z-index: 1500;
}
.upload_local_geo {
    text-align: center;
    font-size: 14px;
    line-height: 1.5;
    color: #fff;
    margin-top: 5px;
}
.upload_local_geo_left {
    text-align: left;
    margin-left: 10px;
    font-size: 14px;
    line-height: 1.5;
    color: #fff;
    margin-top: 5px;
}

.caret {
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 2px;
    vertical-align: middle;
    border-top: 4px dashed;
    border-top: 4px solid\9;
    border-right: 4px solid transparent;
    border-left: 4px solid transparent;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: -15px;
    z-index: 1000;
    display: none;
    float: left;
    min-width: 160px;
    padding: 5px 0;
    margin: 2px 0 0;
    font-size: 14px;
    text-align: left;
    list-style: none;
    background-color: #fff;
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
    border: 1px solid #ccc;
    border: 1px solid rgba(0,0,0,.15);
    border-radius: 4px;
    -webkit-box-shadow: 0 6px 12px rgba(0,0,0,.175);
    box-shadow: 0 6px 12px rgba(0,0,0,.175);
}

.dropdown-menu>li>a {
    display: block;
    padding: 3px 20px;
    clear: both;
    font-weight: 400;
    line-height: 1.42857143;
    white-space: nowrap;
    font-size: 12px;
}

.dropdown-menu>li>a:focus, .dropdown-menu>li>a:hover {
    color: #262626;
    text-decoration: none;
    background-color: #f5f5f5;
}

.plus-box {
}

.plus-box:before {
    text-align: center;
    content: '+';
}

.plus-box-div {
    text-align: center;
    min-height: 20px;
    padding: 19px;
    margin-bottom: 20px;
    background-color: #f5f5f5;
    border: 1px solid #e3e3e3;
    border-radius: 4px;
    -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.05);
    box-shadow: inset 0 1px 1px rgba(0,0,0,.05);
}

.upload_images_gif {
    z-index: 503px;
    margin: 25px;
    margin-left: 40px;
}

.panel {
    margin-bottom: 20px; 
    background-color: #fff; 
    border: 1px solid transparent; 
    border-radius: 4px; 
    border-color: #ddd;
}

.panel-header {
    padding: 10px 15px; 
    border-bottom: 1px solid transparent; 
    border-top-left-radius: 3px; 
    border-top-right-radius: 3px; 
    color: #333; 
    background-color: #f5f5f5; 
    border-color: #ddd;
}

.iskander-rules_neutral {
    border-left: 1px solid #ddd;
}

.iskander-rules_yes {
    border-left: 1px solid #1ab394;
}

.iskander-rules_no {
    border-left: 1px solid #ed5565;
}

.border-green {
    border: 1px solid #1ab394 !important;
}
.border-red {
    border: 1px solid #ed5565 !important;
}


.iskander-tab-button:not(.iskander-tab-button-active).first-rule {
	background: #0077c0 none repeat scroll 0 0 !important;
	border: 1px solid #0077c0;
	color: #ffffff;
    opacity: 0.2
}

.iskander-tab-button-active.first-rule {
	background: #0077c0 none repeat scroll 0 0 !important;
	border: 1px solid #0077c0;
	color: #ffffff;
}

.iskander-tab-button:not(.iskander-tab-button-active).second-rule {
	background: #067a12 none repeat scroll 0 0 !important;
	color: #ffffff;
    opacity: 0.2
}

.iskander-tab-button-active.second-rule {
	background: #067a12 none repeat scroll 0 0 !important;
	border: 1px solid #0077c0;
	color: #ffffff;
}

.iskander-tab-button:not(.iskander-tab-button-active).third-rule {
	background: #bf6308 none repeat scroll 0 0 !important;
	color: #ffffff;
    opacity: 0.2
}

.iskander-tab-button-active.third-rule {
	background: #bf6308 none repeat scroll 0 0 !important;
	border: 1px solid #0077c0;
	color: #ffffff;
}

.audience-words {
    padding: 1px 10px 1px;
    display: block;
}

.form-add-banner-preview-yandex_video_format {
    position: relative;
    overflow: hidden;
}

.form-add-banner-preview-template_video_format {
    position: relative;
    overflow: hidden;
}

.form-add-banner-preview-yandex_video_format .banner-promo-image {
	position: absolute;
	top: 0;
	left: 0;
	width: 380px;
	height: 215px;
}

.form-add-banner-preview-yandex_video_format .form-add-banner-right-bottom {
	width: 380px;
	height: 215px;
    overflow: hidden;
}
.form-add-banner-preview-template_video_format .form-add-banner-right-bottom {
	width: 380px;
	height: 215px;
    overflow: hidden;
}

.form-add-banner-preview-yandex_video_format .form-add-banner-right-bottom .ajax-image-upload {
	width: 380px;
	height: 215px;
}

.form-add-banner-preview-template_video_format .form-add-banner-right-bottom .ajax-image-upload {
	width: 380px;
	height: 215px;
}
.form-add-banner-preview-yandex_video_format .form-add-banner-right-bottom .ajax-custom-image-upload {
	width: 380px;
	height: 215px;
}

.form-add-banner-preview-template_video_format .form-add-banner-right-bottom .ajax-custom-image-upload {
	width: 380px;
	height: 215px;
}

.form-add-banner-preview-yandex_video_format .form-add-banner-right-top {
    position: absolute;
    left: -110%;
    z-index: 1000;
    width: 90%;
}

.form-add-banner-preview-template_video_format .form-add-banner-right-top {
    position: absolute;
    left: -110%;
    z-index: 1000;
    width: fit-content;
    max-width: 90%;
}

.yandex-banner-animation {
    animation-duration: 14s;
    animation-timing-function: ease-in-out;
}
.template-1-banner-animation {
    animation-duration: 5s;
    animation-timing-function: ease-in-out;
    animation-fill-mode: forwards;
}

.template-1-banner-animation.video-template-preview-slide-3-container {
	animation-duration: 7s;
}

.form-add-banner-preview-yandex_video_format .form-add-banner-right-middle {
    position: absolute;
    left: -100%;
    z-index: 1000;
}

.form-add-banner-preview-template_video_format .form-add-banner-right-middle {
    position: absolute;
    left: -110%;
    z-index: 1000;
    width: fit-content;
    max-width: 90%;
}

.form-add-banner-preview-yandex_video_format .form-add-banner-preview-square_format .form-add-banner-right-middle {
    height: 380px;
}

.yandex-banner-animation-title-1 {
    top: 76px;
}
.template-banner-animation-title-1 {
    top: 76px;
}
.yandex-banner-animation-title-2 {
    top: 112px;
}
.template-banner-animation-title-2 {
    top: 112px;
}
.yandex-banner-animation-right_static_image{
    width: 264px;
    height: 175px;
    background-color: #5095c3;
    opacity: 0.75;
    transform: rotate(-71deg);
    margin-left: 190px;
    margin-top: 33px;
    left: 25%;
    position: absolute;
}
.yandex-banner-animation-right_static_button {
    position: absolute; 
    top: 100%;
    left: 0;
}
.yandex-banner-animation-right_static_button-container {
    width: 380px; 
    height: 215px; 
    position: relative; 
    display: flex; 
    align-items: center;
    justify-content: center;
}
.yandex-banner-animation-right_static_button-button {
    padding: 5px 14px;
    font-size: 13px;
    font-family: "Droid Sans";
    background-color: #5095c3;
    color: white;
    border-radius: 0.5em;
    border: 0.05em solid transparent;
}

.yandex-banner-animation.yandex-banner-animation-title-1 {
    animation-name: yandex-banner-animation-title-1;
}
.yandex-banner-animation.yandex-banner-animation-title-2 {
    animation-name: yandex-banner-animation-title-2;
}

.template-1-banner-animation.yandex-banner-animation-slide-1-title-1, .template-1-banner-animation.yandex-banner-animation-slide-1-title-2 {
    animation-name: template-1-banner-animation-slide-1-title;
}
.template-1-banner-animation.yandex-banner-animation-slide-2-title-1, .template-1-banner-animation.yandex-banner-animation-slide-2-title-2 {
    animation-name: template-1-banner-animation-slide-1-title;
    animation-delay: 5s;
}
.template-1-banner-animation.yandex-banner-animation-slide-3-title-1, .template-1-banner-animation.yandex-banner-animation-slide-3-title-2 {
    animation-name: template-1-banner-animation-slide-1-title;
    animation-delay: 10s;
}
.template-1-banner-animation.video-template-preview-slide-1-container {
    animation-name: template-1-banner-animation-slide-1-container;
    display: block !important;
}
.template-1-banner-animation.video-template-preview-slide-2-container {
    animation-name: template-1-banner-animation-slide-2-container;
    animation-delay: 5s;
    display: block !important;
    opacity: 0;
}
.template-1-banner-animation.video-template-preview-slide-3-container {
    animation-name: template-1-banner-animation-slide-3-container;
    animation-delay: 10s;
    display: block !important;
    opacity: 0;
}
.template-1-banner-animation.yandex-banner-animation-right_static_button {
	animation-name: yandex-banner-animation-right_static_button;
	animation-delay: 10s;
}
.yandex-banner-animation-text-1 {
    top: 75px;
}
.yandex-banner-animation-text-2 {
    top:95px;
}
.yandex-banner-animation.yandex-banner-animation-text-1 {
    animation-name: yandex-banner-animation-text-1;
}
.yandex-banner-animation.yandex-banner-animation-text-2 {
    animation-name: yandex-banner-animation-text-2;
}
.yandex-banner-animation.yandex-banner-animation-right_static_image {
    animation-name: yandex-banner-animation-right_static_image;
}
.yandex-banner-animation.yandex-banner-animation-right_static_button {
    animation-name: yandex-banner-animation-right_static_button;
}

@keyframes yandex-banner-animation-title-1 {
    0% { left: -110%; opacity: 1; }
    3.4%,33% { left: 40px; opacity: 1; }
    37%,100% { left: 110%; opacity: 0; }
}
@keyframes yandex-banner-animation-title-2 {
    0%,2% { left: -110%; opacity: 1; }
    5.5%,33% { left: 40px; opacity: 1; }
    37%,100% { left: 110%; opacity: 0; }
}
@keyframes yandex-banner-animation-text-1 {
    0%,32% { left: -110%; opacity: 1; }
    36%,76% { left: 34px; opacity: 1; }
    80%,100% { left: 110%; opacity: 1; }
}
@keyframes yandex-banner-animation-text-2 {
    0%,32% { left: -110%; opacity: 1; }
    36%,76% { left: 34px; opacity: 1; }
    80%,100% { left: 110%; opacity: 1; }
}
@keyframes yandex-banner-animation-right_static_image {
    0% { opacity: 0.75; left: 25%; }
    3.4%,30% { opacity: 0.75; left: 0%; }
    32.5%,34.1% { opacity: 0; }
    34.2% { left: 43% }
    34.3% { opacity: 0.75; }
    36.7%,80% { left: 0%; }
    90%,100% { left: 100%; }
}
@keyframes yandex-banner-animation-right_static_button {
    0%,81% { top: 100%; }
    85%,100% { top: 0%; }
}
@keyframes template-1-banner-animation-slide-1-title {
    0%,10% { left: -220%; right: 0; margin-left: auto; margin-right: auto; opacity: 1; }
    20%,80% { margin-left: auto; margin-right: auto; left: 0; right: 0; opacity: 1; }
    90%,100% { left: 220%; opacity: 1; }
}
@keyframes template-1-banner-animation-slide-1-container {
    0%,94% { opacity: 1; }
    100% { opacity: 0; }
}
@keyframes template-1-banner-animation-slide-2-container {
    0%,6% { opacity: 0; }
    6%,94% { opacity: 1; }
    100% { opacity: 0; }
}
@keyframes template-1-banner-animation-slide-3-container {
    0%,6% { opacity: 0; }
    6%,100% { opacity: 1; }
}

.form-add-banner-preview-yandex_video_format .form-add-banner-right-bottom .loader {
    width: 380px;
    height: 215px;
}
.form-add-banner-preview-template_video_format .form-add-banner-right-bottom .loader {
    width: 380px;
    height: 215px;
}

.yandex-banner-animation-title-1 span {
    font-size: 24px;
    padding: 6px;
    color: #ffffff;
    text-decoration: none;
    background-color: #5095c3;
}

.template-banner-animation-title-1 span.template-color-preview-span {
    padding: 6px;
    text-decoration: none;
    background-color: #5095c3;
}
.template-banner-animation-title-2 span.template-color-preview-span {
    padding: 6px;
    text-decoration: none;
    background-color: #5095c3;
}

.form-add-banner-preview-template_video_format span {
	color: #ffffff;
	text-decoration: none;
    vertical-align: baseline;
    font-size: 24px;
}

.yandex-banner-animation-title-2 span {
    font-size: 24px;
    padding: 6px;
    color: #ffffff;
    text-decoration: none;
    background-color: #5095c3;
}

.yandex-banner-animation-text-1 span {
    font-size: 14px;
    padding: 4px;
    color: #000000;
    text-decoration: none;
    background-color: #ffffff;
}

.yandex-banner-animation-text-2 span {
    font-size: 14px;
    padding: 4px;
    color: #000000;
    text-decoration: none;
    background-color: #ffffff;
}

.iskander-overlay-box {
    position: absolute; 
    z-index: 500; 
    padding: 10px; 
	background: #fff;
	box-shadow: inset 0 0 3px #0077c0;
	-moz-box-shadow: inset 0 0 3px #0077c0;
	-webkit-box-shadow: inset 0 0 3px #0077c0;
	border-radius: 5px;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
}

.call_to_action-button-blue {
	cursor: pointer;
	display: inline-block;
	vertical-align: top;
	text-align: center;
	line-height: 28px;
	padding: 0px 6px 0px;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	font-size: 12px;
	margin: 10px 0;
	background: #0077c0;
	border: 1px solid #0077c0;
	border-radius: 5px;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	box-shadow: 1px 1px 1px 1px #C0C0C0;
	color: #ffffff;
	height: 32px;
	width: 180px;
	text-transform: uppercase;
}

.iskander-custom-modal {
    max-width: max-content !important;
}
.iskander-custom-modal__title {
	font-size: 16px;
	font-weight: bold;
	margin-bottom: 10px;
}
.iskander-custom-modal__form {
	font-size: 12px;
}

input.btn_common {
	cursor: pointer;
	display: inline-block;
	background: #ffffff;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	border: 0;
	border-radius: 5px;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	box-shadow: 1px 1px 1px 1px #C0C0C0;
	font-size: 12px;
	color: black;
	height: 32px;
	width: 100px;
	margin-right: 10px;
	margin-top: 0px;
	text-transform: uppercase;
}

.video-controls-progressBar
{
    position: relative;
    width: 100%;
    height: 10px;
    margin-top: 3px;
    background-color: #bebebf;
}
.video-controls-timeBar
{
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background-color: #a4a4a5;
}

.iskander-accordion-container-white {
    background-color: white;
}

.iskander-accordion-container .accordion-header {
    background-color: #e0e0e0; 
    padding: 10px; 
    font-size: 14px; 
    cursor: pointer;
}

.iskander-accordion-container .accordion-content {
    padding: 10px; 
    border: 1px solid #e0e0e0;
}
.yandex-banner-animation.video-controls-timeBar {
    animation-name: yandex-banner-animation-video-controls-timeBar;
    animation-duration: 14s;
    animation-timing-function: ease-in-out;
}

.template-1-banner-animation.video-controls-timeBar {
    animation-name: yandex-banner-animation-video-controls-timeBar;
    animation-duration: 17s;
    animation-timing-function: ease-in-out;
}

@keyframes yandex-banner-animation-video-controls-timeBar {
    0% { width: 0%; }
    100% { width: 100%; }
}

.yandex_banner-customization-main-container {
    margin-top: 10px;
}
.yandex_banner-customization-main-title {
    font-size: 16px; 
    color: #000000; 
    line-height: 24px;
}
.yandex_banner-customization-color-row {
    margin-top: 5px;
}
.yandex_banner-customization-color-row div {
    display: inline-block;
}
.yandex_banner-customization-color-row div:first-child {
    width: 50%;
}
.yandex_banner-customization-color-row div:nth-child(2) {
    width: 40%;
    position: relative;
}
.yandex_banner-customization-color-row div:nth-child(3) {
    width: 10%;
}
.yandex_banner-customization-color-span {
    margin: 4px; 
    padding-left: 5px;
    position: absolute;
    top: 0px;
    right: 0px;
    border-left: 1px solid #80808040;
}
.yandex_banner-customization-color-i {
    background-color: #5095c3; display: inline-block; height: 16px; vertical-align: middle; width: 16px;
    border: 1px solid #80808040;
}

.input-group-count_span {
    position: relative;
}
.input-group-count_span input, .input-group-count_span textarea {
	padding-right: 30px;
	width: 100%;
}
.input-group-count_span span {
    position: absolute;
    right: 5px; 
    top: 7px; 
    color: #8c8c8c; 
    font-size: 10px;
}
.input-group-count_span div.icon-container {
    position: absolute;
    right: 5px; 
    top: 5px; 
    color: #0077C0; 
    cursor: pointer;
    font-size: 16px;
}

.failed-input {
    border: 1px solid red;
    animation-name: failed-input-animation;
    animation-duration: 1s;
    animation-timing-function: ease-in-out;
}

@keyframes failed-input-animation {
    0% { border-color: red; }
    100% { border-color: transparent; }
}

.two-columns {
    width: 100%;
}
.two-columns:after {
    content: "";
    display: table;
    clear: both;
}

.two-columns-left {
    width: 48%;
    float: left;
}

.two-columns-right {
    width: 48%;
    float: right;
}

.three-columns {
    width: 100%;
}
.three-columns:after {
    content: "";
    display: table;
    clear: both;
}

.three-columns-left {
    width: 32%;
    float: left;
    margin-right: 1%;
}

.three-columns-center {
    width: 32%;
    float: left;
    margin-right: 1%;
}

.three-columns-right {
    width: 32%;
    float: right;
}

.four-columns {
    width: 100%;
}
.four-columns-left-left {
    width: 24%;
    float: left;
    margin-right: 1%;
}
.four-columns-left-right {
    width: 24%;
    float: left;
    margin-right: 1%;
}
.four-columns-right-left {
    width: 24%;
    float: left;
    margin-right: 1%;
}
.four-columns-right-right {
    width: 24%;
    float: right;
}
.four-columns:after {
    content: "";
    display: table;
    clear: both;
}

.remarketing-checkbox-padding {
    padding-left: 5px;
}

.iskander-tag {
	display: inline-block;
	vertical-align: top;
	text-align: center;
	line-height: 18px;
	padding: 0px 6px 0px;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	border: 1px solid #000000;
	border-radius: 5px;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	font-size: 12px;
	height: 20px;
	margin-right: 4px;
	margin-bottom: 5px;
	background: #ffffff;
	color: #000000;
    cursor: pointer;
}

.iskander-tag[state="1"] {
    background: green;
    color: #ffffff;
}

.iskander-tag[state="2"] {
    background: red;
    color: #ffffff;
}

.iskander-tag[tag-disabled="1"] {
    background: #8C8C8C8C;
	color: #ffffff;
	cursor: unset;
}

.list-group-item {
    position: relative;
    display: block;
    padding: .75rem 1.25rem;
    margin-bottom: -1px;
    background-color: #fff;
    border: 1px solid rgba(0,0,0,.125);
    cursor: pointer;
}
.list-group-item:first-child {
    border-top-left-radius: .25rem;
    border-top-right-radius: .25rem;
}
.list-group-item:last-child {
    margin-bottom: 0;
    border-bottom-right-radius: .25rem;
    border-bottom-left-radius: .25rem;
}
.list-group-item.selected {
    color: #fff;
    background-color: #0077c0;
}
.font-12 {
    font-size: 12px;
}
.font-14 {
    font-size: 14px;
}
.font-18 {
    font-size: 18px;
}
.font-24 {
    font-size: 24px;
}

input[type="checkbox"].styled-input {
    display:none;
}

input[type="checkbox"].styled-input  + label::before {
    display:inline-block;
    width:19px;
    height:19px;
    vertical-align:middle;
    background:url("/i/ui.png") left top no-repeat;
    cursor:pointer;
    content:"";
}

input[type="checkbox"].styled-input  + label::before {
    margin: 0 4px 5px 0;
}

input[type="checkbox"]:checked.styled-input  + label::before {
    background:url("/i/ui.png") -20px top no-repeat;
}

input[type="radio"].styled-input {
    display:none;
}
input[type="radio"].styled-input  + label::before {
    display:inline-block;
    width:19px;
    height:19px;
    vertical-align:middle;
    background:url("/i/ui.png")  -39px top no-repeat;
    cursor:pointer;
    content:"";
}
input[type="radio"].styled-input  + label::before {
    margin: 0 4px 5px 0;
}
input[type="radio"]:checked.styled-input  + label::before {
    background:url("/i/ui.png") -59px top no-repeat;
}

.word-break-all {
    word-break: break-all;
}

.iskander-mass-action-log {
    overflow-y: scroll;
    max-height: 350px;
	width: auto;
	max-width: 500px;
	margin-top: 10px;
	background: none repeat scroll 0 0 #ffffff;
	border: 1px solid #f1f1f1;
	box-shadow: 0 0 3px #c0c0c0;
	color: #8c8c8c;
	font-size: 12px;
	padding: 0px 10px 0px;
}

.banner-preview-mini {
	display: inline-block;
	vertical-align: top;
	padding: 10px 10px 10px;
    margin-right: 10px;
    width: auto;
}
.banner-preview-mini .square-image .banner-image {
    width: 45px;
}
.banner-preview-mini .banner-title {
    font-size: 0.7em;
    color: black;
	text-decoration: underline;
}
.banner-preview-mini .square-image .banner-title {
    vertical-align: top;
}
.banner-preview-mini .square-image .banner-title {
    max-width: 240px;
}
.banner-preview-mini .banner-text {
    font-size: 0.7em;
    word-wrap: break-word;
	display: inline-block;
	max-width: 180px;
}
.banner-preview-mini .teaser_90_75 .banner-image {
    width: 60px;
}
.banner-preview-mini .teaser_90_75 .banner-text {
    vertical-align: top;
    max-width: 90px;
}
.banner-preview-mini .banner-big-image {
    width: 180px;
}
.banner-preview-mini .carousel-slides {
    position: absolute;
    top: 0px;
}
.banner-preview-mini .carousel-slides div.carousel_btn_common {
	display: inline-block;
	vertical-align: top;
	text-align: center;
	line-height: 16px;
	padding: 0px 3px 0px;
	background: #ffffff;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	border: 1px solid #000000;
	font-size: 0.7em;
	color: #000000;
	float: right;
	margin: 5px 0;
}
.banner_slides_4-container {
    left: 0px;
    position: absolute;
}
.banner-preview-mini .carousel-slides:nth-child(2) {
    left: 190px;
}
.banner-preview-mini .carousel-slides:nth-child(3) {
    left: 380px;
}
.banner-preview-mini .carousel-slides:nth-child(4) {
    left: 570px;
}
.banner-preview-mini .carousel-slides:nth-child(5) {
    left: 760px;
}
.banner-preview-mini .carousel-slides:nth-child(6) {
    left: 950px;
}

.animation-carousel-mini-preview.banner_slides_3-container {
    animation-name: banner_slides_3-animation;
    animation-duration: 2s;
    animation-timing-function: linear;
}
.animation-carousel-mini-preview.banner_slides_4-container {
    animation-name: banner_slides_4-animation;
    animation-duration: 3s;
    animation-timing-function: linear;
}
.animation-carousel-mini-preview.banner_slides_5-container {
    animation-name: banner_slides_5-animation;
    animation-duration: 4s;
    animation-timing-function: linear;
}
.animation-carousel-mini-preview.banner_slides_6-container {
    animation-name: banner_slides_6-animation;
    animation-duration: 5s;
    animation-timing-function: linear;
}
@keyframes banner_slides_3-animation {
	0% { left: -0px; }
    10%,50% { left: -190px; }
    60%,100% { left: -380px; }
}
@keyframes banner_slides_4-animation {
    7%,33% { left: -190px; }
    40%,66% { left: -380px; }
    73%,100% { left: -570px; }
}
@keyframes banner_slides_5-animation {
    5%,25% { left: -190px; }
    30%,50% { left: -380px; }
    55%,75% { left: -570px; }
    80%,100% { left: -760px; }
}
@keyframes banner_slides_6-animation {
	4%,20% { left: -190px; }
    24%,40% { left: -380px; }
    44%,60% { left: -570px; }
    64%,80% { left: -760px; }
    84%,100% { left: -950px; }
}
.animation-premium_network-mini-preview.campaign-banners-item-preview-big_format {
    animation-name: fadeOut;
    animation-duration: 0.2s;
    animation-timing-function: linear;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
}
.animation-premium_network-mini-preview.campaign-banners-item-preview-icon_square_format {
    animation: 
        fadeIn 0.2s linear 0s 1 normal forwards,
        fadeOut 0.2s linear 1.2s 1 normal forwards;
}
.animation-premium_network-mini-preview.campaign-banners-item-preview-image_vertical_format {
    animation: 
        fadeIn 0.2s linear 1.2s 1 normal forwards;
}
@keyframes fadeIn {
    from { display: 0; }
    to { opacity: 1; }
}
@keyframes fadeOut {
    from { opacity: 1; }
    to { opacity: 0; }
}

.banner-preview-mini .icon_square-image .banner-title{
    font-size: 0.7em;
    word-break: break-word;
    overflow-wrap: break-word;
    word-wrap: break-word;
    font-weight: bold;
}

.accordion-header::before {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "\f054";
    font-size: 16px;
    vertical-align: bottom;
    margin-right: 5px;
}
.accordion-header.accordion-header-active::before {
    content: "\f078";
}
.manage-iskander-container {
    border: 3px double rgba(0,0,0,.125); 
    max-width: 100%;
}
.manage-iskander-left-column {
    width: 25%; 
    border-right: 3px double rgba(0,0,0,.125); 
    float: left;
}
.manage-iskander-right-column {
    width: calc(75% - 3px);
    float: left; 
}
.manage-iskander-left-column-block:not(:last-child) {
    border-bottom: 3px double rgba(0,0,0,.125);
}
.manage-iskander-left-column-block-title {
    color: black; 
    font-weight: bold; 
    margin-bottom: 5px; 
    padding: 0 10px; 
    margin-top: 10px;
}
.manage-iskander-left-column-block-item {
    border-top: 1px solid rgba(0,0,0,.125); 
    padding: 4px 10px;
}
.manage-iskander-left-column-block-item.active {
    background-color: #0077C0;
}
.manage-iskander-left-column-block-item.active a.pseudo-link {
    color: white;
}
.manage-iskander-left-column-block-item.active .action-icon {
    color: white;
}
.cursor-pointer {
	cursor: pointer;
}

.manage-iskander-rules-container {
    height: calc(100vh - 160px - 56px);
}
.manage-iskander-rules-container-left-column {
    height: calc(100vh - 160px - 49px - 56px);
    overflow: scroll;
}
.manage-iskander-rules-container-right-column {
    height: calc(100vh - 160px - 10px - 52px - 56px - 15px - 41px);
    overflow: scroll;
    padding: 10px 0px 0px 10px;
}
.manage-iskander-rules-container-right-column.management-mode,.manage-iskander-rules-container-right-column.modify-mode {
	height: auto;
}

.pb-0 {
    padding-bottom: 0px;
}
.iskander-inline-close-button::before {
    font-family: "Font Awesome 5 Free";
    font-weight: 600;
    content: "\f00d";
    font-size: 12px;
    margin-right: 5px;
    color: white;
}

.td-text-overflow-ellipsis-200 {
	text-overflow: ellipsis;
	white-space: nowrap;
	overflow: hidden;
	max-width: 200px;
}

.iskander-button-mini {
	cursor: pointer;
    background-color: #0077c0;
    color: white;
    border-radius: 4px;
	box-shadow: 1px 1px 2px 0px #C0C0C0;
	font-size: 11px;
}

.iskander-card .iskander-card-header {
    background-color: #e0e0e0; 
    padding: 10px; 
    font-size: 14px; 
    cursor: pointer;
}

.iskander-card.iskander-card-green .iskander-card-header,.iskander-card.iskander-card-green .iskander-card-header-icons  {
	background-color: #86dab1;
	color: green; 
}

.iskander-card .iskander-card-content {
    padding: 10px; 
    border: 1px solid #e0e0e0;
}

.iskander-card-content .dataTables_filter {
	margin-right: 20px !important;
}

/* Style the list */
ul.breadcrumb {
    list-style: none;
	display: inline-block;
}

/* Display list items side by side */
ul.breadcrumb li {
    display: inline;
}

/* Add a slash symbol (/) before/behind each list item */
ul.breadcrumb li+li:before {
    padding: 8px;
    color: black;
    content: "/\00a0";
}

/* Add a color to all links inside the list */
ul.breadcrumb li a {
    color: #0275d8;
    text-decoration: none;
}

/* Add a color on mouse-over */
ul.breadcrumb li a:hover {
    color: #01447e;
    text-decoration: underline;
}
ul.breadcrumb li a.active {
	color: #000;
}

div.btn-success {
	color: #fff; 
	background-color: #28a745;
	border-color: #28a745;
	border: 1px solid transparent;
	transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}

div.btn-success:hover {
    color: #fff;
    background-color: #218838;
	border-color: #1e7e34;
}

div.btn-success:focus {
    box-shadow: 0 0 0 0.2rem rgba(40,167,69,.5);
}

div.btn-success:active {
    color: #fff;
    background-color: #1e7e34;
    border-color: #1c7430;
}

div.btn-danger {
	color: #fff; 
	background-color: #dc3545;
	border-color: #dc3545;
	border: 1px solid transparent;
	transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}

div.btn-danger:hover {
    color: #fff;
    background-color: #c82333;
	border-color: #bd2130;
}

div.btn-danger:focus {
	box-shadow: 0 0 0 0.2rem rgba(225,83,97,.5);
}

div.btn-danger:active {
    color: #fff;
    background-color: #bd2130;
    border-color: #b21f2d;
}

/* projection plot styles begin */
.plot-price-share-projection .axis path,
.plot-price-share-projection .axis line {
  fill: none;
  stroke: #000;
  shape-rendering: crispEdges;
}

.plot-price-share-projection .grid path,
.plot-price-share-projection .grid line {
  fill: none;
  stroke: rgba(0, 0, 0, 0.25);
  shape-rendering: crispEdges;
}

.plot-price-share-projection .line {
  fill: none;
  stroke-width: 2px;
}

 /* Style the dots by assigning a fill and stroke */
 .plot-price-share-projection .dot {
    fill: #ffab00;
    stroke: #fff;
}
  
.plot-price-share-projection .focus circle {
  fill: none;
  stroke: steelblue;
}

.plot-price-share-projection .tick {
    font-size: 12px;
}
/* projection plot styles end */

.line {
	width: 100%;
	border: 1px #00000050 solid;
}

.pseudo-link[not_active="1"] {
	color: #8C8C8C;
}

.custom-autoclomplete-li {
	padding: 0 25px 0 15px;
	height: 32px;
    line-height: 32px;
}

.custom-autoclomplete-element {
	display: flex;
	justify-content: space-between;
}
.custom-autoclomplete-inline-button {
	display: inline-block;
	margin-left: 10px;
}

#table-clients td {
	padding: 5px;
}

.p-10 {
	padding: 10px;
}
.mx-10 {
	margin: 0 10px;
}
.mr-10 {
	margin-right: 10px;
}
.ml-10 {
	margin-left: 10px;
}
.mt-0 {
	margin-top: 0px;
}
.mt-10 {
	margin-top: 10px;
}
.mb-0 {
	margin-bottom: 0px;
}
.mb-10 {
	margin-bottom: 10px;
}
.w-100 {
	width: 100%;
}

#transactions-log td:nth-child(2) {
	text-align: right;
	color: #16bf00;
}
#transactions-log td:nth-child(3) {
	text-align: right;
	color: #ff6766;
}
#transactions-log td:nth-child(4) {
	font-size: 12px;
}

.filter-macros {
	margin-right: 15px;
	font-size: 14px;
	font-weight: 700;
	cursor: pointer;
}

.text-center {
	text-align: center;
}
.text-right {
	text-align: right;
}
.d-block {
	display: block;
}

.my-ag-grid-header-cell {
	vertical-align: middle; 
	white-space: nowrap; 
	font-weight: bold; 
	font-size: 12px;
}
.my-ag-grid-cell {
	padding: 0px 5px 0 !important;
	vertical-align: top; 
	white-space: nowrap !important;
	font-size: 12px;
}
.ag-theme-fresh .ag-header-cell, .ag-theme-fresh .ag-header-group-cell {
	padding: 4px 2px;
}
.ag-theme-fresh .ag-header-cell-text {
	padding-left: 2px;
}
.ag-theme-fresh .ag-header-cell:not(.ag-header-group-cell-no-group), .ag-theme-fresh .ag-header-group-cell:not(.ag-header-group-cell-no-group) {
	border-top-width: 0;
}
.ag-theme-fresh .ag-header-group-cell-with-group {
	border-bottom-width: 1px;
	text-align: center;
}
.ag-header-group-text {
	margin: auto;
}
.ag-header-select-all {
	padding: 0 10px;
}
.ag-theme-
.ag-filter-condition input[type="radio"] {
	display: inline-block;
}
.position-absolute {
	position: absolute;
}
.position-relative {
	position: relative;
}
.my-ag-grid-overlay {
    z-index: 1500;
    background: rgba(255, 255, 255, 0.8);
}
.my-ag-grid-overlay .my-loader {
    margin: auto;
}
.my-loader {
    border: 6px solid #ddd;
    border-top: 6px solid #3c8dbc;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: my-loader-spin 2s linear infinite;
}
@keyframes my-loader-spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.split_audience-checkbox-container {
	display: flex;
}
.split_audience-checkbox-label {
	width: 56px;
	height: 24px;
	margin: 1px;
	cursor: pointer;
	line-height: 24px;
}
.split_audience-checkbox-label::before {
	display: none !important;
}

.split_audience-checkbox {
	display:none;
}
.split_audience-checkbox+label {
	display:block;
	position:relative;
	text-align: center;
	background-color: #f2f2f2;
	color: #000;
}
.split_audience-checkbox:checked+label {
	background-color:#16bf00;
	color:#fff;
}
.nowrap {
	white-space: nowrap; 
}

.banner-pattern-preview {
	align-items: start;
	max-width: 1050px;
	flex-wrap: wrap;
}
.banner-pattern-preview__wrapper {
	box-shadow: 0 2px 7px 1px rgba(0,0,0,0.2);
}

.banner-pattern-preview__call-to-action {
	line-height: 30px;
	color: #333;
	padding: 0 12px;
	-webkit-border-radius: 2px;
	-moz-border-radius: 2px;
	-ms-border-radius: 2px;
	-o-border-radius: 2px;
	border-radius: 2px;
	border: 1px solid #b5b5b5;
	margin-top: 10px;
	display: inline-block;
	font-size: 11px;
	text-transform: uppercase;
}

.color-gray {
	color: #8c8c8c;
}

#modal-campaign-history-content {
	min-width: 750px;
}
.campaign-history__item {
	margin-bottom: 16px;
}
.campaign-history__item:last-child {
	margin-bottom: 0;
}

#plot-price-change-dynamics .axis path, .axis line { fill: none; stroke: #000; shape-rendering: crispEdges; }
#plot-price-change-dynamics .bar1 { fill: #a0bcc0; }
#plot-price-change-dynamics .bar2 { fill: #3295d6; }
#plot-price-change-dynamics .bar3 { fill: #2254a4; }
.d3-tip { line-height: 1; font-weight: bold; padding: 12px; background: rgba(0, 0, 0, 0.8); color: #fff; border-radius: 2px; z-index: 5000; }
.d3-tip:after { box-sizing: border-box; display: inline; font-size: 10px; width: 100%; line-height: 1; color: rgba(0, 0, 0, 0.8); content: "\25BC"; position: absolute; text-align: center; z-index: 5000; }
.d3-tip.n:after { margin: -2px 0 0 0; top: 100%; left: 0; z-index: 5000; }
#plot-price-change-dynamics .marker.price_dec .marker-bg,
#plot-price-change-dynamics .marker.price_dec path { fill:rgba(255,43,43,.8); stroke:rgba(255,43,43,.8); stroke-width:2 }
#plot-price-change-dynamics .marker.price_inc .marker-bg,
#plot-price-change-dynamics .marker.price_inc path { fill:rgba(0,153,51,.8); stroke:rgba(0,153,51,.8); stroke-width:2 }
#plot-price-change-dynamics .marker.stop .marker-bg,
#plot-price-change-dynamics .marker.stop path { fill:rgba(255,43,43,.8); stroke:rgba(255,43,43,.8); stroke-width:2 }
#plot-price-change-dynamics .marker.start .marker-bg,
#plot-price-change-dynamics .marker.start path { fill:rgba(0,153,51,.8); stroke:rgba(0,153,51,.8); stroke-width:2 }
#plot-price-change-dynamics .marker.conditions .marker-bg,
#plot-price-change-dynamics .marker.conditions path { fill:rgb(51,153,255); stroke:rgb(51,153,255); stroke-width:2 }
#plot-price-change-dynamics .marker.temperature .marker-bg,
#plot-price-change-dynamics .marker.temperature path { fill:rgb(0,128,0); stroke:rgb(0,128,0); stroke-width:2 }
#plot-price-change-dynamics .marker.pressure .marker-bg,
#plot-price-change-dynamics .marker.pressure path { fill:rgb(255,255,255); stroke:rgb(102,102,255); stroke-width:2 }
#plot-price-change-dynamics .marker path { fill:none }
#plot-price-change-dynamics .legend text,
#plot-price-change-dynamics .marker text { fill:#fff; font-size:10px }
#plot-price-change-dynamics .marker text { text-anchor:middle }
#plot-price-change-dynamics .grid path,
#plot-price-change-dynamics .grid line {
	fill: none;
	stroke: rgba(0, 0, 0, 0.25);
	shape-rendering: crispEdges;
}

.fancybox-lock body {
	overflow: unset !important;
}

#accounts-table__grid.ag-theme-fresh .ag-header-cell, #accounts-table__grid.ag-theme-fresh .ag-header-group-cell {
	padding-left: 0;
	padding-right: 0;
}

.align-right .ag-cell-wrapper {
	flex-direction: row-reverse;
}
.my-font-awesome-icon {
	vertical-align: middle;
}
.img-video_preview-container-patterns {
	position: absolute;
}

.lh-16 {
	line-height: 16px;
}
.ag-theme-fresh .ag-cell.lh-16 {
	line-height: 16px;
}
.iskander-custom-left-side-modal.modal a.close-modal {
	right: unset;
	top: 0;
    left: -15.5px;
}
.blocker.iskander-custom-left-side-modal-blocker {
	text-align: right;
	padding: 0;
}
.modal.iskander-custom-left-side-modal {
	height: 100%;
	border-radius: 0px;
}
.lowercase {
	text-transform: lowercase;
}