@import "jquery-ui.css";
@import "popup.css";
@import "dropdown.css";
@import "table.css";
@import "datetimepicker.css";
@import "periodpicker.css";
@import "phone.css";

html, body, div, h1, h2, h3, h4, h5, h6, ul, ol, dl, li, dt, dd, p, blockquote, pre, form, fieldset, table, th, td {
	font-size: 100%;
	font-family: inherit;
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
* {
	margin: 0;
	padding: 0;
	border: 0; 
	font-style: normal;
	font-weight: 400;
	box-sizing: border-box;
}
html, body {
	height: 100%;
	color: #263352;
}
body {
	background-color: rgba(40, 41, 35, 1);
	margin: 0 auto;
	overflow-x: hidden;
	overflow-y: scroll;
}
body, input, textarea, button {
	font-size: 13px;
	font-family: Arial,sans-serif;
}
h2 {
	font-size: 20px;
	margin-bottom: 5px;
	opacity: 0.7;
}
/*CASTOM INPUTS*/
input[type="text"], input[type="number"], input[type="password"] {
	background-color: #fff;
	color: #000;
	display: inline-block;
	width: 100%;
	height: 25px;
	line-height: 25px;
	border: 1px solid rgba(0,0,0,0.6);
	box-shadow: 0px 1px 1px 1px rgba(0, 0, 0, 0.2) inset;
	border-radius: 2px;
	padding: 0 5px;
	float: left;
	position: relative;
}
/*ERRORS MESSAGE*/
input.err, textarea.err {
	border-color: #C50202 #FF0202 #FF0202 !important;
	background-color: rgba(197, 2, 2, 0.12);
}
input.err:hover, textarea.err:hover {
	cursor: help;
}
div span.error {
	display: inline-block;
	width: 100%;
	padding-left: 10px;
	background: rgba(209, 36, 10,0.7);
	box-sizing: border-box;
	border-radius: 3px;
	color: #fff;
	font-size: 12px;
	font-weight: bold;
	position: relative;
	margin-bottom: 7px;
}
span.error:after {
	display: block;
	position: absolute;
	content: "";
	bottom: -6px;
	width: 0px;
	height: 0px;
	border-left: 7px solid transparent;
	border-right: 6px solid transparent;
	border-top: 6px solid rgba(209, 36, 10,0.7);
}
/*ERRORS MESSAGE*/
input:disabled, textarea:disabled {
	border: none;
	color: inherit;
	background-color: transparent;
	box-shadow: none;
}
textarea {
	background-color: #fff;
	color: #000;
	display: inline-block;
	border: 1px solid rgba(0,0,0,0.6);
	width: 100%;
	box-shadow: 0px 1px 1px 1px rgba(0, 0, 0, 0.2) inset;
	border-radius: 2px;
	padding: 0 5px;
	min-height: 30px;
	resize: none;
	position: relative;
	float: left;
	transition: height 0.2s;
}
/*BUTTONS*/
button {
	display: inline-block;
	position: relative;
	background-color: #4f4a49;
	color: #fff;
	line-height: 20px;
	padding: 5px 15px;
	text-shadow: 0px -1px 0px rgba(0, 0, 0, 0.3);
	border-radius: 3px;
	font-size: 16px;
	margin: 0px;
	border: none;
}
button:hover {
	background: linear-gradient(to bottom, #4f4a49 0%,#000000 100%);
	cursor: pointer;
}

div.wrap {
	display: block;
	height: 100%;
	margin: 0 auto;
	padding: 0px;
	width: 1280px;
	position: relative;
	z-index: 1;
}
header {
	display: block;
	position: relative;
	margin: 0 -10px 0px -10px;
	box-shadow: 0px 1px 10px rgba(79,74,73,0.8);
	background-color: #4f4a49;
	height: 40px;
	z-index: 22;
}
header:before, header:after {
	display: block;
	position: absolute;
	content: "";
	border-style: solid;
	border-color: transparent;
	bottom: -10px;
} 
header:before {
	border-width: 0 10px 10px 0;
	border-right-color: #222;
	left: 0;
}
header:after {
	border-width: 0 0 10px 10px;
	border-left-color: #222;
	right: 0;
}
header > nav {
	display: inline-block;
	width: 100%;
	height: inherit;
}

header > nav ul {
	position: relative;
	float: left;
	width: 100%;
	list-style: none;
	height: inherit;
}

header > nav > ul li {
	float: left;
	position: relative;
	border-right: solid 1px rgba(0,0,0,0.2);
	z-index: 1;
	color: #fff4d6;
	perspective: 1000px;
	transition: all .25s ease-in-out;
}
header > nav > ul li.fright {
	border-left: solid 1px rgba(0,0,0,0.2);
	border-right: none;
	float: right;
}
header > nav > ul li.fright > ul {
	width: 142px;
}
header > nav > ul li#workTime {
	display: block;
	width: 100%;
	height: 120px;
	position: relative;
	text-align: center;
	padding: 10px 0px;
}
header > nav > ul li#workTime > span:before {
	content: 'Вы в работе';
	display: block;
	position: relative;
	font-size: 18px;
	font-weight: bold;
}
header > nav > ul li#workTime:after {
	content: '';
    display: inline-block;
    border: solid 30px transparent;
    border-left: solid 40px #fff4d6;
    top: 10px;
    margin-left: 30px;
    position: relative;
	animation-name: workTimeActive;
	animation-duration: 0.5s;
	animation-iteration-count: infinite;
	animation-direction: alternate;
}
@keyframes workTimeActive {
	0% {
		border-left: solid 40px #fff4d6;
	}
	100% {
		border-left: solid 40px #c0c0c0;
	}
}
header > nav > ul li#workTime[data-pause] > span:before {
	content: 'Вы на паузе';
}
header > nav > ul li#workTime[data-pause]:before {
	content: '';
	display: inline-block;
	position: absolute;
	width: 18px;
	height: 62px;
	background-color: #3e3a3a;
	z-index: 1;
	top: 30px;
	margin-left: -9px;
}
header > nav > ul li#workTime[data-pause]:after {
	width: 60px;
	height: 60px;
	background-color: #fff4d6;
	border: none;
	margin: 0px;
	animation-name: workTimePause;
	animation-duration: 0.5s;
	animation-iteration-count: infinite;
	animation-direction: alternate;
}
@keyframes workTimePause {
	0% {
		background-color: #fff4d6;
	}
	100% {
		background-color: #c0c0c0;
	}
}

header > nav a {
	display: block;
	position: relative;
	z-index: 10;
	padding: 13px 15px;
	text-decoration: none;
	color: inherit;
	line-height: 1;
	font-weight: 600;
	font-size: 14px;
	letter-spacing: -.05em;
	background: transparent;		
	transition: all .25s ease-in-out;
}
header > nav > ul > li:hover > a, header > nav > ul > li.hover > a {
	color: #fff4d6;
	text-shadow: 1px 1px 1px rgba(0,0,0,0.2);
	background-color: #3e3a3a;
}
header > nav > ul > li > ul {
	position: absolute;
	left: -1px;
	z-index: 1;
	width: 200px;
	padding: 0;
	opacity: 0;
	visibility: hidden;
	background-color: #3e3a3a;
	overflow: hidden;
	transform-origin: 50% 0%;
}
header > nav > ul > li:hover > ul, div.menu > nav > ul > li.hover > ul {
	box-shadow: 0 1px 7px rgba(0,0,0,0.5);
	opacity: 1;
	visibility: visible;
	animation-duration:.3s;
	animation-name:swingdown;
	animation-timing-function:ease;
}
header > nav > ul > li:first-child {
	border-left: 1px solid transparent;
}

header > nav > ul > li:hover, div.menu > nav > ul > li.hover {
	cursor: pointer;
}

header > nav > ul > li > ul > li {
	border-bottom: solid 1px transparent;
	border-top: solid 1px transparent;
	float: none;
}

header > nav > ul > li > ul > li > a {
	color: #ddd;
	font-weight: 400;
	padding: 13px 20px 13px 15px;
}

header > nav > ul > li > ul > li > input {
	display:block;
	float:none;
	width:100%;
}

header > nav > ul > li > ul > li:hover {
	background: rgba(0,223,252,.02);
	border-bottom: dotted 1px rgba(255,255,255,.15);
	border-top: dotted 1px rgba(255,255,255,.15);
	cursor: pointer;
}

header > nav > ul > li > ul > li:hover > a {
	color:rgba(0,223,252,1);
}
/*//////////////////////////*/
@keyframes swingdown {
	0% {
		top: 100%;
		opacity: .99999;
		transform: rotateX(90deg);
	}
	100% {
		top: 100%;
		transform: rotateX(0);
		animation-timing-function: ease-in-out;
	}
}
@keyframes swingup {
	0% {
		top: 100%;
		transform: rotateX(0);
		animation-timing-function: ease-in-out;
	}
	100% {
		top: 100%;
		opacity: .99999;
		transform: rotateX(90deg);
	}
}



@keyframes swingright {
	0% {
		top: -1px;
		left: 100%;
		transform: rotateY(0);
		animation-timing-function: ease-in-out;
	}
	100% {
		top: -1px;
		left: 100%;
		opacity: .99999;
		transform: rotateY(90deg);
	}
}

@keyframes swingleft {
	0% {
		top: -1px;
		left: 100%;
		opacity: .99999;
		transform: rotateY(90deg);
	}
	100% {
		top: -1px;
		left: 100%;
		transform: rotateY(0);
		animation-timing-function: ease-in-out;
	}
}

/*////////////////////*/
div.contents {
	display: inline-block;
	width: 100%;
	background-color: #fff;
	padding: 20px;
	box-shadow: 0px 1px 10px rgba(79,74,73,0.8);
	min-height: calc(100% - 88px);
}
div.contents.error {
	height: calc(100% - 88px);
}
div.contents > div#access_denied {
	display: inline-block;
	position: relative;
	width: 100%;
	height: 100%;
	box-shadow: 0 1px 10px rgba(79,74,73,0.8);
	background-color: #222;	
}
div.contents > div#access_denied > div#access_msg {
	display: block;
	width: 100%;
	height: 70px;
	position: absolute;
	top: calc(50% - 40px);
	text-shadow: 2px 2px 2px rgba(255, 255, 255,0.1);
	text-align: center;
	font-size: 52px;
	letter-spacing: -.04em;
	color: rgba(0,0,0,0.6);
	font-weight: bold;
}
div.main {
	display: inline-block;
	width: 100%;
	height: inherit;
}

footer {
	display: block;
	background-color: #4f4a49;
	height: 48px;
	box-shadow: 0px 1px 10px rgba(79,74,73,0.8);
	position: relative;
}

footer > time {
	display: block;
	position: absolute;
	width: auto;
	height: auto;
	left: 10px;
	top: calc(50% - 5px);
	color: #fff4d6;
	font-size: 10px;
	font-weight: bold;
}
/*MENU*/
div.menu {
	display: block;
	position: relative;
	box-shadow: 0px 1px 10px rgba(79,74,73,0.8);
	background-color: #4f4a49;
	height: 40px;
	width: 100%;
	z-index: 10;
}

div.menu > nav {
	display: inline-block;
	width: 100%;
	height: inherit;
}

div.menu > nav ul {
	position: relative;
	float: left;
	width: 100%;
	list-style: none;
}

div.menu > nav > ul li {
	float: left;
	position: relative;
	border-right: solid 1px rgba(0,0,0,0.2);
	z-index: 1;
	color: #fff4d6;
}
div.menu > nav > ul li.dropdown {
	padding: 7px 10px 7px 10px;
}
div.menu > nav a {
	display: block;
	position: relative;
	z-index: 10;
	padding: 13px 26px;
	text-decoration: none;
	color: inherit;
	line-height: 1;
	font-weight: 600;
	font-size: 14px;
	letter-spacing: -.05em;
	text-align: center;
	background: transparent;		
	transition: all .25s ease-in-out;
}
div.menu > nav a:after {
	content: attr(data-title);
	display: block;
	position: absolute;
	width: 100%;
	bottom: 3px;
	left: 0px;
	font-size: 7pt;
	text-align: center;
}
div.menu > nav > ul li.hover > a {
	color: #fff4d6;
	text-shadow: 1px 1px 1px rgba(0,0,0,0.2);
	background-color: #3e3a3a;
}
div.menu.shotitem > nav a {
	letter-spacing: -.06em;
	padding: 13px 13px;
}
div.menu > nav > ul > li > ul,
div.menu > nav > ul > li > ul > li > ul,
div.menu > nav > ul > li > ul > li > ul > li > ul {
	position: absolute;
	width: auto;
	min-width: 250px;
	left: -1px;
	top: -10000px;
	z-index: 1;
	padding: 0;
	background-color: #3e3a3a;

	transform-origin: 50% 0%;
	animation-duration: .3s;
	animation-name: swingup;
	animation-timing-function: ease;
}
div.menu > nav > ul > li > ul > li > ul,
div.menu > nav > ul > li > ul > li > ul > li > ul {
	transform-origin: 0% 50%;
	animation-duration: .3s;
	animation-name: swingright;
	animation-timing-function: ease;
}
div.menu > nav > ul > li.hover > ul {
	box-shadow: 0 1px 7px rgba(0,0,0,0.5);
	top: 100%;
	animation-duration: .3s;
	animation-name: swingdown;
	animation-timing-function: ease;
}
div.menu > nav > ul > li > ul > li:hover > ul,
div.menu > nav > ul > li > ul > li > ul > li:hover > ul {
	box-shadow: 0 1px 7px rgba(0,0,0,0.5);
	top: -1px;
	left: 100%;
	padding-left: 1px;
	animation-duration: .3s;
	animation-name: swingleft;
	animation-timing-function: ease;
}


div.menu > nav > ul li.current:after, div.menu > nav > ul li[data-type="utmf"]:after {
	border-left: 7px solid transparent;
	border-right: 7px solid transparent;
	border-top: 8px solid #3e3a3a;
	bottom: -8px;
	content: "";
	display: block;
	height: 0;
	left: 47%;
	position: absolute;
	width: 0;
}

div.menu > nav > ul > li:first-child {
	border-left: 1px solid transparent;
}

div.menu > nav > ul > li.hover, div.menu > nav > ul > li:hover {
	cursor: pointer;
}

div.menu > nav > ul > li > ul > li,
div.menu > nav > ul > li > ul > li > ul > li,
div.menu > nav > ul > li > ul > li > ul > li > ul > li {
	border-bottom: solid 1px transparent;
	border-top: solid 1px transparent;
	float: none;
}

div.menu > nav > ul > li > ul > li a {
	color: #ddd;
	font-weight: 400;
	padding: 13px 20px 13px 15px;
	text-align: left;
}

div.menu > nav > ul > li > ul > li > input {
	display:block;
	float:none;
	width:100%;
}

div.menu > nav > ul > li > ul li:hover {
	background: rgba(0,223,252,.02);
	border-bottom: dotted 1px rgba(255,255,255,.15);
	border-top: dotted 1px rgba(255,255,255,.15);
	cursor: pointer;
	z-index: 2;
}

div.menu > nav > ul > li > ul li:hover > a {
	color:rgba(0,223,252,1);
}


div.menu > nav > ul > li[data-column="2"] > ul {
	min-width: 500px;
}
div.menu > nav > ul > li[data-column="2"] > ul > li,
div.menu > nav > ul > li[data-column="3"] > ul > li,
div.menu > nav > ul > li[data-column="4"] > ul > li {
	width: 250px;
	float: left;
}

div.menu > nav > ul > li[data-column="3"] > ul {
	min-width: 750px;
}
div.menu > nav > ul > li[data-column="4"] > ul {
	min-width: 1000px;
}

/*//////////////////////////*/
div.login {
	background-image: linear-gradient(to bottom, rgba(248,248,249,1) 23%,rgba(230,231,232,1) 100%);
	border:solid 1px #cfcfcf;
	display:block;
	height:210px;
	margin:24% auto;
	padding:24px 74px;
	width:360px;
	position: fixed;
	margin-left: -180px;
	margin-top: -105px;
	left: 50%;
	top: 50%;
}
div.login div {
	display:inline-block;
	margin:15px 0 0;
	position:relative;
	width:100%;
}
div.login div input {
	color:#000!important;
	padding:0 0 0 3px;
	width:100%;
}
div.login form div span {
	display:block;
	float:left;
	height:16px;
	left:-22px;
	position:absolute;
	top:4px;
	width:16px;
	background-image:url(../images/elements.png);
	background-repeat: no-repeat;
}
div.login button {
	width: 100%;
}
div.login form div:nth-child(2) span {
	background-position: -16px -65px;
}
div.login form div:nth-child(3) span {
	background-position: -16px -82px;
}

div.wrap.login_page div.contents {
	box-shadow:none;
	display:inline-block;
	height:100%;
	padding:0;
	background-color: transparent;
}

h4.head_table {
	color:#333;
	float:left;
	font-size:24px;
}
div.menu + div.main {
	margin-top: 10px;
}
div#hntemplates {
	display: none !important;
}

.lntable .line > div span[data-action="fullinfo"],
.lntable .line > td span[data-action="fullinfo"] {
	background-image: url(../images/edit.png);
	background-repeat: no-repeat;
	background-position: 50%;
	display: block;
	height: 100%;
	width: 100%;
	min-height: 19px;
	min-width: 19px;
}
.lntable .line > div span[data-action="fullview"],
.lntable .line > td span[data-action="fullview"] {
	background-image: url(../images/search.png);
	background-repeat: no-repeat;
	background-position: 50%;
	background-size: 90%;
	display: block;
	height: 100%;
	width: 100%;
	min-height: 19px;
	min-width: 19px;
}

div.inp {
	display: inline-block;
	font-size: 14px;
	height: 16px;
	position: relative;
	text-align: center;
	padding: 0px;
	overflow: hidden;
	width: 20px;
}

div.inp > input[type="checkbox"],
div.inp > input[type="radio"] {
	display: inline-block;
	height: inherit;
	opacity: 0;
	position: relative;
	width: inherit;
	z-index: 10;
}
div.inp > input[type="checkbox"] + label,
div.inp > input[type="radio"] + label {
	display: inline;
	position: relative;
	font-size: inherit;
	line-height: inherit;
	height: inherit;
}
div.inp > input[type="checkbox"] + label:after, input[type="checkbox"] + label:before,
div.inp > input[type="radio"] + label:after, input[type="radio"] + label:before {
	height: inherit;
	position: absolute;
	vertical-align: middle;
	width: 20px;
	z-index: 5;
	perspective: 1000px;
	transition: all .25s ease-in-out;
}
div.inp > input[type="checkbox"] + label:before,
div.inp > input[type="radio"] + label:before {
	content: attr(data-on);
	left: -40px;
	background-color: rgba(118,186,0,1);
	color: #444;
}
div.inp > input[type="checkbox"] + label:after,
div.inp > input[type="radio"] + label:after {
	content: attr(data-off);
	left: -20px;
	background-color: #555;
	color: #fff4d6;
}
div.inp > input[type="checkbox"]:checked + label:before,
div.inp > input[type="radio"]:checked + label:before {
	left: -20px;
}
div.inp > input[type="checkbox"]:checked + label:after,
div.inp > input[type="radio"]:checked + label:after {
	left: 0px !important;
}

div.inp.medium {
	width: 100px;
}
div.inp.medium > input[type="checkbox"] + label:after, 
div.inp.medium > input[type="checkbox"] + label:before {
	width: 100px;
}
div.inp.medium > input[type="checkbox"] + label:before {
	left: -200px;
}
div.inp.medium > input[type="checkbox"] + label:after {
	left: -100px;
}
div.inp.medium > input[type="checkbox"]:checked + label:before {
	left: -100px;
}

div.inp.big {
	width: 200px;
}
div.inp.big > input[type="checkbox"] + label:after, 
div.inp.big > input[type="checkbox"] + label:before {
	width: 200px;
}
div.inp.big > input[type="checkbox"] + label:before {
	left: -400px;
}
div.inp.big > input[type="checkbox"] + label:after {
	left: -200px;
}
div.inp.big > input[type="checkbox"]:checked + label:before {
	left: -200px;
}
div.inp > input[type="hidden"]:disabled + input[type="radio"] + label:before,
div.inp > input[type="hidden"]:disabled + input[type="radio"] + label:after,
div.inp > input[type="hidden"]:disabled + input[type="checkbox"] + label:before,
div.inp > input[type="hidden"]:disabled + input[type="checkbox"] + label:after {
	color: #444;
	background: transparent;
}

div.trbl > input[type="checkbox"] + label:before {
	background-color: #555;
	color: #fff4d6;
}
div.trbl > input[type="checkbox"] + label:after {
	background-color: rgba(118,186,0,1);
	color: #444;
}

div.pager {
	display: inline-block;
	width: 100%;
	margin-top: 10px;
}
div.pager > div[data-action] {
	display: none;
	width: calc(50% - 5px);
	height: 40px;
	margin-top: 10px;
	background-color: #4f4a49;
	background-repeat: no-repeat;
	background-position: 50% 50%;
	transition: all .25s ease-in-out;
}
div.pager > div[data-page] {
	display: inline-block;
	width: auto;
	height: 28px;
	margin-top: 20px;
	margin-right: 5px;
	padding: 0px 5px;
	line-height: 28px;
	font-weight: bold;
	font-size: 20px;
	color: #fff;
	cursor: pointer;
	background-color: #4f4a49;
	background-repeat: no-repeat;
	background-position: 50% 50%;
	transition: all .25s ease-in-out;
}
div.pager > div[data-page].active {
	background-color: #3e3a3a;
	color: rgba(255,0,0,0.8);
}
div.pager > div[data-action="prev"] {
	float: left;
	background-image: url(../images/prevmini.png);
}
div.pager > div[data-action="next"] {
	float: right;
	background-image: url(../images/nextmini.png);
}
div.pager > div[data-action]:hover {
	cursor: pointer;
	background-color: #3e3a3a;
}

div.lastcomm, 
div.commlist {
	display: block;
	width: 100%;
	height: 100%;
	padding: 3px;
}
div.commlist {
	padding: 3px;
	border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}
div.commlist.comm_main {
	background-color: rgba(255, 0, 0, 0.2);
}
div.commlist.comm_main:after {
	content: 'Из основной CRM';
	display: block;
	position: absolute;
	top: 0px;
	right: 70px;
	font-weight: bold;
}
div.commlist:last-child {
	border-bottom: none;
}
div.lastcomm div.text, 
div.commlist div.text {
	display: inline-block;
	width: 100%;
	text-align: left;
}
div.lastcomm p, 
div.commlist p {
	display: inline-block;
	width: 100%;
}
div.lastcomm p span:first-child, 
div.commlist p span:first-child {
	display: block;
	float: left;
	color: rgba(79,74,73,0.7);
	font-size: 12px;
}
div.lastcomm p span:nth-child(2), 
div.commlist p span:nth-child(2) {
	display: block;
	float: right;
	color: rgba(79,74,73,0.7);
	font-size: 10px;
}
.tabs {
	display: inline-block;
	width: 100%;
	height: 100%;
	box-shadow: 0 1px 10px rgba(79,74,73,0.8);
}
.tabs.outshadow {
	box-shadow: none;
}
.tabs ul.tabs {
	display: block;
	width: 100%;
	height: 40px;
	list-style: none;
	border-bottom: solid 1px rgba(0,0,0,0.2);
	background-color: #4f4a49;
}
.tabs ul.tabs > li {
	display: block;
	position: relative;
	float: left;
	padding: 12px 26px;
	color: #fff4d6;
	height: inherit;
	font-size: 14px;
	font-weight: bold;
	border-right: solid 1px rgba(0,0,0,0.2);
	border-bottom: solid 1px rgba(0,0,0,0.2);
	letter-spacing: -.05em;
	cursor: pointer;
	box-sizing: border-box;
	transition: all .25s ease-in-out;
}
.tabs ul.tabs > li.active {
	text-shadow: 1px 1px 1px rgba(0,0,0,0.2);
	background-color: #3e3a3a;
}
.tabs ul.tabs > li.active:before {
	border-left: 7px solid transparent;
	border-right: 7px solid transparent;
	border-top: 8px solid #3e3a3a;
	bottom: -8px;
	content: "";
	display: block;
	height: 0;
	left: calc(50% - 4px);
	position: absolute;
	width: 0;
	z-index: 2;
}
.tabs ul.tabs > li.active:after {
	border-left: 8px solid transparent;
	border-right: 8px solid transparent;
	border-top: 9px solid rgba(50, 46, 46, 1);
	bottom: -10px;
	content: "";
	display: block;
	height: 0;
	left: calc(50% - 4.5px);
	position: absolute;
	width: 0;
	z-index: 1;
}
.tabs div.tab {
	display: none;
	float: left;
	width: 100%;
	height: calc(100% - 40px);
	max-height: calc(100% - 40px);
	overflow-x: visible;
	overflow-y: auto;
}
iframe#filesframe {
	display: none;
}
div#wasteTime {
	display: none;
	position: fixed;
	top: 0px;
	right: 0px;
    background-color: rgba(204,255,204,1);
    padding: 20px;
    color: #000;
    font-size: 24px;
    font-weight: bold;
    z-index: 99999999;
    animation-name: wasteTime;
    animation-duration: 1s;
    animation-iteration-count: infinite;
    animation-direction: alternate;
}
@keyframes wasteTime {
	0% {
		box-shadow: 0px 1px 40px rgba(79,74,73,0.8);
	}
	100% {
		box-shadow: 0px 1px 40px rgba(255, 244, 214, 0.8);
	}
}
div#workTimePause {
	background: rgba(0,0,0,0.7);
	display: none;
	height: 100%;
	left: 0;
	position: fixed;
	top: 0;
	width: 100%;
	z-index: 5;
	text-align: center;
	cursor: pointer;
}
div#workTimePause > span {
	display: block;
	font-size: 32px;
	font-weight: bold;
	color: #fff4d6;
	top: 20%;
	position: relative;
}
div#workTimePause > div.pic {
	display: block;
	width: 156px;
	height: 120px;
	position: relative;
	top: 30%;
	left: calc(50% - 78px);
}
div#workTimePause > div.pic:before,
div#workTimePause > div.pic:after {
	content: '';
	display: block;
	width: 54px;
	height: 120px;
	background-color: #fff4d6;
	position: absolute;
	top: 0px;
	left: 0px;
	animation-name: workTimePause;
	animation-duration: 0.5s;
	animation-iteration-count: infinite;
	animation-direction: alternate;
}
div#workTimePause > div.pic:after {
	left: unset;
	right: 0px;
}
div#workTimePause > div.timer {
	display: none;
	position: relative;
	top: 42%;
	font-weight: bold;
	color: #fff4d6;
}
div#workTimePause > div.timer:before {
	content: 'Оставшееся время на перерыв:';
	display: block;
	font-size: 32px;
}
div#workTimePause > div.timer > span {
	font-weight: bold;
	display: inline-block;
	position: relative;
	font-size: 72px;
}
div#workTimePause > div.timer > span:first-child {
	padding-right: 12px;
}
div#workTimePause > div.timer > span:nth-child(2) {
	padding-left: 12px;
}
div#workTimePause > div.timer > span:first-child:after {
	content: ':';
	display: block;
	position: absolute;
	top: -5px;
	right: -14px;
	animation-name: workTimePauseTime;
	animation-duration: 0.5s;
	animation-iteration-count: infinite;
	animation-direction: alternate;
}
@keyframes workTimePauseTime {
	0% {
		color: #fff4d6;
	}
	100% {
		color: transparent;
	}
}
form#edit span[data-geo] {
	display: block;
	float: left;
	width: 120px;
}