/* 
    Document   : template
    Created on : 04.12.2013, 17:05:03
    Author     : 1
    Description:
        Purpose of the stylesheet follows.
*/

table {
    empty-cells: show;
}

a.brand {
    color: #111;
    text-decoration: underline;
}

#top-menu a img{
    float: left;
    width: 16px;
    height: 16px;
    vertical-align: text-top;
    margin: 2px 3px 0 0;
}
#top-menu a{
    font-size: 14px;
    text-transform: uppercase;
    color: #fff;
    text-decoration: none;
}


.#top-menu a:after, #top-menu li a:after{
    display: block;
    content: "";
    height: 2px;
    width: 0%;
    background-color: #fc0;
    transition: all .3s ease;
}

.nav-pad {
    padding: 100px 0 0 0;
}

/* Customize the navbar links to be fill the entire space of the .navbar */
.masthead .navbar .navbar-inner {
    padding: 0;
}
.masthead .navbar .nav {
    margin: 0;
    display: table;
    width: 100%;
}
.masthead .navbar .nav li {
    display: table-cell;
    width: auto;
    float: none;
}
.masthead .navbar .nav li a {
    font-weight: bold;
    text-align: center;
    /*border-left: 1px solid rgba(255,255,255,.75);*/
    border-right: 1px solid rgba(0,0,0,.1);
}
.masthead .navbar .nav li:first-child a {
    border-left: 0;
    border-radius: 3px 0 0 3px;
}
.masthead .navbar .nav li:last-child a {
    border-right: 0;
    border-radius: 0 3px 3px 0;
}

.masthead .navbar .nav > li > a {
    text-transform: uppercase;
    padding: 5px 10px 5px;
    font-size: 14px;
    /*font-weight: normal;*/
    text-decoration: none;
    /*text-shadow: 0 1px 0 #ffffff;*/
}

/* Vidjet block */

.vidjet{
    border: 1px solid #ddd;
    float:left;
    padding: 20px 0 0 0px;
    display: block;
    margin-top: 20px;
    font-size:12px;
/*    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;*/
}
.vidjet .divtext{
    position:relative;
    top: -32px;
    left: 0px;
    margin-left: 20px;
    font-size:18px;
    color:#0088cc;
    background: #f5f5f5;
    max-width: 180px;
    width: 85%;
    padding-left:8px;
}
.divtext1{
	position:relative;
	top: -32px;
	left: 10px;
	color:#0088cc;
	background: #f5f5f5;
	width: 180px;
	padding-left:8px;
}
.vidjet .info{
    position: relative;
    top: -20px;
    left: 0px;
    margin-left:20px;
    margin-right: 20px;
}

.info img{
    float:left;
    padding-right: 20px;

}
.balans-text{
    width: 53%;
    float:left;
    font-size:12px;
}
.balans-money{
    width: 37%;
    float:right;
    padding-right:20px;
    font-size:12px;
    text-align: right;
}
.info-text{
    font-size: 12px;
    color: #222;
    line-height: 22px;
}
.info-right-text{
    width: 170px;
    float:left;
}
.row .margin-null{
    margin-left:0px;
}



/* ********************** График Flot *******************************/
/* #######################################################

HOW TO CREATE AN INTERACTIVE GRAPH USING CSS3 & JQUERY [TUTORIAL]

"How to create an Interactive Graph using CSS3 & jQuery [Tutorial]" was specially made for DesignModo by our friend Valeriu Timbuc.

Links:
http://vtimbuc.net
http://designmodo.com
http://vladimirkudinov.com

######################################################## */

/* Resets */
.graph-container,
.graph-container div,
.graph-container a,
.graph-container span {
    margin: 0;
    padding: 0;
}

/* Gradinet and Rounded Corners */
.graph-container, #tooltip, .graph-info a {
    background: #ffffff;
    background: -moz-linear-gradient(top,  #ffffff 0%, #f9f9f9 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#ffffff), color-stop(100%,#f9f9f9));
    background: -webkit-linear-gradient(top,  #ffffff 0%,#f9f9f9 100%);
    background: -o-linear-gradient(top,  #ffffff 0%,#f9f9f9 100%);
    background: -ms-linear-gradient(top,  #ffffff 0%,#f9f9f9 100%);
    background: linear-gradient(to bottom,  #ffffff 0%,#f9f9f9 100%);

    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
}

/*  Graph Container */
.graph-container {
    position: relative;
    width: 600px;
    height: 350px;
    padding: 20px;

    -webkit-box-shadow: 0px 1px 2px rgba(0,0,0,.1);
    -moz-box-shadow: 0px 1px 2px rgba(0,0,0,.1);
    box-shadow: 0px 1px 2px rgba(0,0,0,.1);
}

.graph-container > div {
    position: absolute;
    width: inherit;
    height: inherit;
    top: 10px;
    left: 25px;
}

.graph-info {
    width: 690px;
    margin-bottom: 10px;
}

/* Text Styles */
#tooltip, .graph-info a {
    height: 20px;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-weight: bold;
    font-size: 12px;
    line-height: 20px;
    color: #646464;
}

.tickLabel {
    font-weight: bold;
    font-size: 12px;
    color: #666;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

/* Tooltip */
#tooltip {
    position: absolute;
    display: none;
    padding: 5px 10px;
    border: 1px solid #e1e1e1;
}

/* Links */
.graph-info a {
    position: relative;
    display: inline-block;
    float: left;
    padding: 7px 10px 5px 30px;
    margin-right: 10px;
    text-decoration: none;
    cursor: default;
}

/* Color Circle for Links */
.graph-info a:before {
    position: absolute;
    display: block;
    content: '';
    width: 8px;
    height: 8px;
    top: 13px;
    left: 13px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
}

/* Colors For each Link */
.graph-info .visitors { border-bottom: 2px solid #71c73e; }
.graph-info .returning { border-bottom: 2px solid #77b7c5; }

.graph-info .visitors:before { background: #71c73e; }
.graph-info .returning:before { background: #77b7c5; }

/* Lines & Bars Buttons */
#lines, #bars {
    width: 34px;
    height: 32px;
    padding: 0;
    margin-right: 0;
    margin-left: 10px;
    border-bottom: 2px solid #71c73e;
    float: right;
    cursor: pointer;
}

#lines.active, #bars.active {
    background: #82d344;
    background: -moz-linear-gradient(top,  #82d344 0%, #71c73e 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#82d344), color-stop(100%,#71c73e));
    background: -webkit-linear-gradient(top,  #82d344 0%,#71c73e 100%);
    background: -o-linear-gradient(top,  #82d344 0%,#71c73e 100%);
    background: -ms-linear-gradient(top,  #82d344 0%,#71c73e 100%);
    background: linear-gradient(to bottom,  #82d344 0%,#71c73e 100%);
}

#lines span, #bars span {
    display: block;
    width: 34px;
    height: 32px;
    background: url('../js/flot/img/lines.png') no-repeat 9px 12px;
}

#bars span { background: url('../js/flot/img/bars.png') no-repeat center 10px; }

#lines.active span { background-image: url('../js/flot/img/lines_active.png'); }
#bars.active span { background-image: url('../js/flot/img/bars_active.png'); }

/* Hide the First and Last Y Label */
/*.yAxis .tickLabel:first-child,
.yAxis .tickLabel:last-child { display: none; } */

/* Clear Floats */
.graph-info:before, .graph-info:after,
.graph-container:before, .graph-container:after {
    content: '';
    display: block;
    clear: both;
}
/* ********************** Конец стилей Графика Flot *******************************/




/********************  МОДАЛЬНОЕ ОКНО **********************/

.modal {
    width: 900px;
    left: 10%;
    margin-left: auto;
}

.modal-body {
    max-height: 600px;
}
/********************  КОНЕЦ МОДАЛЬНОЕ ОКНО **********************/


/******************** СТИЛИ ТАБЛИЦ ***************************/

table, tr, td{
    font-size:12px;
}

.margin-left{
    margin-left: 50px;

}

/* Таблица АДС*/

table.table-ads{
    width: 100%;
}

.table-ads td,
.table-ads th{
    border: 0;
}
.table-ads td table{
    border: 1px solid #ddd;
}

.table-ads table {
    max-width: 100%;
    background-color: transparent;
    border-collapse: collapse;
    border-spacing: 0;
}

.table-ads .table {
    width: 100%;
    margin-bottom: 20px;
}

.table-ads .table th,
.table-ads .table td {
    padding: 0px;
    line-height: 20px;
    text-align: left;
    vertical-align: top;
    border-top: 1px solid #dddddd;
}

.table-ads .table th {
    font-weight: bold;
}

.table-ads .table thead th {
    vertical-align: bottom;
    text-align: center;
}

.table-ads .table caption + thead tr:first-child th,
.table-ads .table caption + thead tr:first-child td,
.table-ads .table-ads .table colgroup + thead tr:first-child th,
.table-ads .table colgroup + thead tr:first-child td,
.table-ads .table thead:first-child tr:first-child th,
.table-ads .table thead:first-child tr:first-child td {
    border-top: 0;
}

.table-ads .table tbody + tbody {
    border-top: 2px solid #dddddd;
}

.table-ads  .table .table {
    background-color: #ffffff;
}

.table-ads .table-condensed th,
.table-ads .table-condensed td {
    padding: 4px 5px;
}





.table-ads .table-bordered {
    border: 1px solid #dddddd;
    border-collapse: separate;
    *border-collapse: collapse;
    border-left: 0;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
}

.table-ads .table-bordered th,
.table-ads .table-bordered td {
    border-left: 1px solid #dddddd;
}

.table-ads .table-bordered caption + thead tr:first-child th,
.table-ads .table-bordered caption + tbody tr:first-child th,
.table-ads .table-bordered caption + tbody tr:first-child td,
.table-ads .table-bordered colgroup + thead tr:first-child th,
.table-ads .table-bordered colgroup + tbody tr:first-child th,
.table-ads .table-bordered colgroup + tbody tr:first-child td,
.table-ads .table-bordered thead:first-child tr:first-child th,
.table-ads .table-bordered tbody:first-child tr:first-child th,
.table-ads .table-bordered tbody:first-child tr:first-child td {
    border-top: 0;
}

.table-ads .table-bordered thead:first-child tr:first-child > th:first-child,
.table-ads .table-bordered tbody:first-child tr:first-child > td:first-child {
    -webkit-border-top-left-radius: 4px;
    border-top-left-radius: 4px;
    -moz-border-radius-topleft: 4px;
}

.table-ads .table-bordered thead:first-child tr:first-child > th:last-child,
.table-ads .table-bordered tbody:first-child tr:first-child > td:last-child {
    -webkit-border-top-right-radius: 4px;
    border-top-right-radius: 4px;
    -moz-border-radius-topright: 4px;
}

.table-ads .table-bordered thead:last-child tr:last-child > th:first-child,
.table-ads .table-bordered tbody:last-child tr:last-child > td:first-child,
.table-ads .table-bordered tfoot:last-child tr:last-child > td:first-child {
    -webkit-border-bottom-left-radius: 4px;
    border-bottom-left-radius: 4px;
    -moz-border-radius-bottomleft: 4px;
}

.table-ads .table-bordered thead:last-child tr:last-child > th:last-child,
.table-ads .table-bordered tbody:last-child tr:last-child > td:last-child,
.table-ads .table-bordered tfoot:last-child tr:last-child > td:last-child {
    -webkit-border-bottom-right-radius: 4px;
    border-bottom-right-radius: 4px;
    -moz-border-radius-bottomright: 4px;
}

.table-ads .table-bordered tfoot + tbody:last-child tr:last-child td:first-child {
    -webkit-border-bottom-left-radius: 0;
    border-bottom-left-radius: 0;
    -moz-border-radius-bottomleft: 0;
}

.table-ads .table-bordered tfoot + tbody:last-child tr:last-child td:last-child {
    -webkit-border-bottom-right-radius: 0;
    border-bottom-right-radius: 0;
    -moz-border-radius-bottomright: 0;
}

.table-ads .table-bordered caption + thead tr:first-child th:first-child,
.table-ads .table-bordered caption + tbody tr:first-child td:first-child,
.table-ads .table-bordered colgroup + thead tr:first-child th:first-child,
.table-ads .table-bordered colgroup + tbody tr:first-child td:first-child {
    -webkit-border-top-left-radius: 4px;
    border-top-left-radius: 4px;
    -moz-border-radius-topleft: 4px;
}

.table-ads .table-bordered caption + thead tr:first-child th:last-child,
.table-ads .table-bordered caption + tbody tr:first-child td:last-child,
.table-ads .table-bordered colgroup + thead tr:first-child th:last-child,
.table-ads .table-bordered colgroup + tbody tr:first-child td:last-child {
    -webkit-border-top-right-radius: 4px;
    border-top-right-radius: 4px;
    -moz-border-radius-topright: 4px;
}

.required .input-xlarge {
    width: 270px;
}
/* Крнец таблицы АДС*/


input.input-smini{
    width: 20px;
}

/*     **************************************   Datepicker     ****************************************  */
#ui-datepicker-div {
    width: 90%;
    font-size: .9em;
    border-collapse: collapse;
    margin: 0 0 .4em;
}

/* end of DatePicker*/


/* Icon to counters*/
.dataTable td.water_cold {
    background-image: url('../../img/water_cold.png');
    background-repeat: no-repeat;
    background-position: center center;
    width: 35px;
}
.water_hot {
    background-image: url('../../img/water_hot2.png');
    background-repeat:no-repeat;
    background-position: center center;
    width: 35px;
}
.energy_bulb {
    background-image: url('../../img/bulbyell.png');
    background-repeat: no-repeat;
    background-position: center center;
    width: 35px;
}
.heat_icon {
    background-image: url('../../img/heat_icon.png');
    background-repeat:no-repeat;
    background-position: center center;
    width: 35px;
}

/* End of Icon to counters*/





.email_label{
    width: 130px;
    padding: 5px 15px 3px 0;
    /* color: #555; */
    text-align: right;
    float: left;
    font-size: 12px;
}
.div-row{
    margin-bottom: 10px;
}



/* Форма авторизации */


.form-signin {
    clear: both;
    max-width: 290px;
    padding: 15px 30px 25px;
    /*border: 1px solid #e7edf6;
    background-color: #e7edf6;*/
}

.form-signin input[type="text"],
.form-signin input[type="password"] {
    font-size: 16px;
    height: auto;
    margin-bottom: 10px;
    padding: 5px 9px;
}

.body-pad .form_title {
    float:left;
    font-size: 18px;
    padding: 20px 0 10px;
    margin: 0;
    color: #1650a4;
}

label.error {
    font-size: 14px;
    color:#f00;
}
.error-div{
    font-size: 14px;
    color:#f00;
}

#login_response,
#captchaResponse{
    padding: 5px 0;
    font-size: 14px;
    color:#f00;
}
.refresh-cap {
    font-size: 12px;
    text-decoration:none;
    margin: 0;
    padding: 0;
    vertical-align:top;
    position:relative;
    top:0px;
    left:5px;
}

.img-cap-border {
    border: 1px solid #cccccc;
    -webkit-border-radius: 5px;
    moz-border-radius: 5px;
    border-radius: 5px;
    -webkit-box-shadow: 0 2px 2px rgba(0,0,0,.1);
    -moz-box-shadow: 0 2px 2px rgba(0,0,0,.1);
    box-shadow: 0 2px 2px rgba(0, 0, 0, .1);
}
.load-text{
    font-size: 14px;
    color:#555;
}


/* конец Формы авторизации*/


.bad_browser {
    position: absolute;
    left: 50%;
    top: 50%;
    text-align: center;
    width: 530px;
    margin: -200px 0px 0px -250px;
    background: #FFF;
    border-bottom: 1px solid #E4E4E4;
    -webkit-box-shadow: 0 0 3px rgba(0, 0, 0, 0.15);
    -moz-box-shadow: 0 0 3px rgba(0, 0, 0, 0.15);
    box-shadow: 0 0 3px rgba(0, 0, 0, 0.15);
}


select, textarea, input[type="text"], input[type="password"], input[type="datetime"], input[type="datetime-local"], input[type="date"], input[type="month"], input[type="time"], input[type="week"], input[type="number"], input[type="email"], input[type="url"], input[type="search"], input[type="tel"], input[type="color"], .uneditable-input {

    height: auto;
}


/* для титула */

.body-pad{
    float:left;
    padding: 0 50px;
    max-width: 500px;
    width: 100%;
    min-height:90%;

}
.pay, .ads {
    float:left;
    height: 100px;
    width: 300px;
    color: #222;
    font-size:12px;
}

.pay a,
.ads a {
    color: #0088cc;
    padding: 0 0 20px 0;
    font-size: 18px;
    text-decoration: underline;
}

.pay img,
.ads img{
    width: 22px;
    height:22px;
    padding: 10px 10px;
    border:0;
}


/*table.dataTable tr.odd { background-color:  white !important; }*/
table.dataTable tr.odd { background-color: #fff7f7 !important;  }

/* ДЛя Помощи*/
.dropdown-menu > li:hover{
    background-color: #0074BE;
}
.dropdown-menu > li > a:hover, .dropdown-menu > li >a:focus{
    background: transparent;
}
.dropdown-menu li {
    display: block!important;
}

.no-bottom-margin {
    margin-bottom: 0 !important;
}

.max-w360 {
    max-width: 360px !important;
}

#k_oplate {
	width: 80px !important;
}



.form-signin_new {
    clear: both;
    max-width: 270px;
    padding: 25px 30px 25px;
    /*background-color: #e7edf6;*/
}

.form-signin_new input[type="text"]{
    clear: both !important;;
   /*border: none !important;;*/
   /*border-bottom: 1px solid rgb(59, 59, 59) !important;*/
   /*border-radius: 0px !important;*/
   font-size: 16px;
   height: auto;
   margin-bottom: 10px;
   margin-top: 5px;
   padding: 5px 9px;
   background: #ffffff !important; // желательно прописывать, так как в Chrome при сохранных данных оно может быть желтым
   outline: none !important;; // удаляет обводку в браузерах хром(желтая) и сафари(синяя)
   color: #cccccc; //цвет шрифта в обычном состоянии
}


.form-signin_new input:focus:not([type=submit]), .textarea_new:focus {
    outline: none;
    border-bottom: 1px solid #fb8c00;
}



.form-signin_fias {
    clear: both;
    max-width: 600px;
    padding: 25px 30px 25px;
}

	.modalDialog {
		/*position: fixed;*/
		font-family: Arial, Helvetica, sans-serif;
		z-index: 99999;
		-webkit-transition: opacity 400ms ease-in;
		-moz-transition: opacity 400ms ease-in;
		transition: opacity 400ms ease-in;
		display: none;
		pointer-events: none;
	}

	.modalDialog:target {
		display: block;
		pointer-events: auto;
	}

	.modalDialog > div {
		width: 400px;
		position: relative;
		/*margin: 10% auto;*/
		margin: 0px;
		padding: 5px 20px 13px 20px;
		background: #e7edf6;
		background: -moz-linear-gradient(#e7edf6, #e7edf6);
		background: -webkit-linear-gradient(#e7edf6, #e7edf6);
		background: -o-linear-gradient(#e7edf6, #e7edf6);
		border: 1px solid #e7edf6;
	}

	.close {
		background: #606061;
		color: #FFFFFF;
		line-height: 20px;
		position: absolute;
		right: -10px;
		text-align: center;
		top: -10px;
		width: 20px;
		text-decoration: none;
		font-weight: bold;
		-webkit-border-radius: 12px;
		-moz-border-radius: 12px;
		border-radius: 12px;

		-webkit-box-shadow: 0 2px 5px rgba(0,0,0,.1);
		-moz-box-shadow: 0 2px 5px rgba(0,0,0,.1);
		box-shadow: 0 2px 5px rgba(0,0,0,.1);

		opacity: 1 !important;
	}

	.close:hover { background: #0074BE; color: #FFFFFF; }




.pay__pay-button--gradient {
    position: relative;
    z-index: 1;
    color: #fff;
    color: white;
    background-image: linear-gradient(241.57deg, #00aded -8.4%, #42e3b4 29.3%, #00d900 60.42%, #faed00 85.41%);
    background-position: -180px 0;
    background-size: 170% auto;
    border: 0;
    border-radius: 8px;
    outline: none;
    transition: all 0.5s ease;
}

.pay__pay-button {
    padding: 0;
    color: inherit;
    font: inherit;
    background-color: transparent;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    line-height: 22px;
    border-radius: 15px;
    outline: none;
    color: #fff;
    max-width: 372px;
    min-width: 260px;
    margin: 20px;
}


.pay__pay-button:not([disabled]):hover {
    cursor: pointer;
    box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.5)
}

.pay__pay-button--gradient:not([disabled]):hover {
    background-position: -80px 0;
    cursor: pointer;
}

.pay-button{

    padding: 0;
    color: inherit;
    font: inherit;
    background-color: #fb894f !important;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    line-height: 22px;
    border-radius: 15px;
    outline: none;
    color: #fff;
    max-width: 372px;
    min-width: 260px ;
    margin: 20px;
    height: 63px;
    width: 270px !important;
}

.pay-button:not([disabled]):hover {
    cursor: pointer;
    box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.5)
}
