@import url("https://fonts.googleapis.com/css?family=Fira+Sans:400,500,600,700&subset=latin-ext");

/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/

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;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1;
  font-size: 16px;
  font-weight: 400;
  color: #6c6c6c;
  font-family: "Fira Sans", sans-serif;
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

button:focus {
  outline: 0;
}

input:focus,
textarea:focus {
  outline: 1px auto #da251c;
}

select:focus {
  outline: none;
}

input,
select,
textarea {
  color: #111 !important;
}

:focus::-webkit-input-placeholder {
  color: transparent;
}

:focus::-moz-placeholder {
  color: transparent;
}

body,
html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-family: "Fira Sans", sans-serif;
}

.site {
  width: 100%;
  padding-top: 70px;
  padding-bottom: 140px;
  background-image: url("../images/tinified/intro.jpg");
  background-size: cover;
  background-position: center center;
  background-attachment: fixed;
  position: relative;
  min-height: 100vh;
  z-index: -1;
}

.site::before {
  position: absolute;
  content: "";
  background-color: #111;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0.85;
  z-index: -1;
}

.center {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
}

.header {
  position: fixed;
  top: 0;
  width: 100%;
  background-color: #fff;
  height: 100px;
  z-index: 3;
  transition: 300ms;
  -webkit-box-shadow: 0px 1px 4px 0px rgba(17, 17, 17, 0.5);
  -moz-box-shadow: 0px 1px 4px 0px rgba(17, 17, 17, 0.5);
  box-shadow: 0px 1px 4px 0px rgba(17, 17, 17, 0.5);
}

.header__Active {
  height: 70px;
}

.headerLogo {
  position: absolute;
  z-index: 2;
}

.headerLogo a {
  display: inline-block;
  height: 100px;
  transition: 300ms;
  position: relative;
}

.header__Active .headerLogo a {
  height: 70px;
}

.headerLogo a img {
  max-height: 40px;
  transition: 300ms;
  position: relative;
  top: 50%;
  transform: translateY(-50%);
}

.header__Active .headerLogo a img {
  max-height: 30px;
}

.headerAcc ul {
  list-style: none;
  position: relative;
  float: right;
  transition: 300ms;
}

.headerAcc ul li {
  float: left;
  position: relative;
}

.headerAcc ul li::before {
  position: absolute;
  content: "";
  width: 1px;
  height: 40px;
  background-color: rgba(17, 17, 17, 0.2);
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  transition: 300ms;
}

.header__Active .headerAcc ul li::before {
  height: 30px;
}

.headerAcc ul li:last-child::before {
  display: none;
}

.headerAcc ul li a,
.headerAcc ul li .js-Modal {
  height: 100px;
  position: relative;
  transition: 300ms;
  display: inline-block;
}

.header__Active .headerAcc ul li a,
.header__Active .headerAcc ul li .js-Modal {
  height: 70px;
}

.headerAcc ul li a span,
.headerAcc ul li .js-Modal span {
  font-size: 20px;
  font-weight: 400;
  text-transform: uppercase;
  text-decoration: none;
  color: #da251c;
  transition: 300ms;
  display: inline-block;
  margin: 0 0 0 30px;
  position: relative;
  top: 50%;
  transform: translateY(-50%);
}

.header__Active .headerAcc ul li a span,
.header__Active .headerAcc ul li .js-Modal span {
  font-size: 16px;
}

.headerAcc ul li .js-Modal span {
  color: #6c6c6c;
  margin: 0 30px 0 0;
}

.headerAcc ul li a:hover span {
  color: #b1231c;
}

.headerAcc i {
  margin-left: 10px;
}

.header__Active .headerAcc i {
  margin-left: 7px;
}

.headerAcc ul li .js-Modal:hover {
  cursor: pointer;
}

.headerAcc ul li .js-Modal:hover span {
  color: #111;
}

.modalSection {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 10;
  visibility: hidden;
  opacity: 0;
  transition: 300ms;
}

.activeModal {
  visibility: visible;
  opacity: 1;
}

.modal {
  position: fixed;
  top: 200px;
  left: 50%;
  transform: translateX(-50%);
  width: 250px;
  background-color: #fff;
  padding: 30px;
  -webkit-box-shadow: 0px 0px 4px 0px rgba(17, 17, 17, 0.5);
  -moz-box-shadow: 0px 0px 4px 0px rgba(17, 17, 17, 0.5);
  box-shadow: 0px 0px 4px 0px rgba(17, 17, 17, 0.5);
}

.headerAcc ul li .modal {
  position: absolute;
  top: 100px;
  left: initial;
  transform: translateX(0);
  right: 0;
  line-height: initial;
  z-index: 10;
  text-align: left;
  display: none;
  transition: 300ms;
}

.header__Active .headerAcc ul li .modal {
  top: 70px;
}

.headerAcc ul li .modal input,
.headerAcc ul li .modal input button {
  margin-top: 0;
  margin-bottom: 20px;
}

.headerAcc ul li:first-child:hover .modal {
  display: block;
}

.modal input {
  width: 100%;
  height: 35px;
  margin-top: 5px;
  margin-bottom: 10px;
  padding-left: 10px;
  border: solid 1px rgba(17, 17, 17, 0.2);
  font-size: 14px;
}

.modal button {
  width: 100%;
  height: 35px;
  margin-top: 5px;
  margin-bottom: 15px;
  background-color: #da251c;
  border: none;
  color: #fff;
  font-size: 16px;
  text-transform: uppercase;
  transition: 300ms;
}

.modal button:hover {
  background-color: #b1231c;
  cursor: pointer;
}

.modal a,
.headerAcc ul li .modal a {
  text-decoration: none;
  color: #da251c;
  transition: 300ms;
  font-size: 13px;
  text-transform: none;
  margin: 0;
  padding: 0;
  height: auto;
}

.modal a:hover,
.headerAcc ul li .modal a:hover {
  color: #b1231c;
}

.modal i {
  color: #6c6c6c;
  transition: 300ms;
  position: absolute;
  top: 0;
  right: 0;
  padding: 10px;
}

.modal i:hover {
  color: #111;
  cursor: pointer;
}

.intro {
  width: 100%;
}

.introContent {
  width: 100%;
  text-align: center;
  color: #fff;
  padding: 130px 0 70px;
}

.introContent h1 {
  font-size: 40px;
  font-weight: 700;
  max-width: 640px;
  margin: 0 auto;
}

.introContent h3 {
  font-size: 20px;
  line-height: 1.5;
  margin: 50px auto;
  max-width: 740px;
}

.gallery {
  width: 100%;
  margin-bottom: 70px;
}

.gallerySlide {
  width: 100%;
}

.gallerySlide img {
  height: auto;
  /*max-height: 500px;*/
  max-height: calc(100vh - 70px);
  max-width: 75%;
}

.flickity-prev-next-button {
  background-color: transparent !important;
}

.flickity-prev-next-button.previous {
  left: -10px !important;
}

.flickity-prev-next-button.next {
  right: -10px !important;
}

.flickity-button-icon {
  fill: #6c6c6c !important;
}

/* Fade CSS */
.gallery .flickity-slider {
  transform: none !important;
}

.gallerySlide {
  left: 0 !important;
  opacity: 0.6;
  transition: opacity 0.3s ease-out;
  z-index: -1;
}

/*.gallerySlide {
  	left: 0 !important;
  	opacity: 0;
  	transition: opacity 0.3s ease-in-out;
  	z-index: -1;
}*/
.gallerySlide.is-selected {
  opacity: 1;
  z-index: 0;
}

/* Fade CSS */
.footer {
  z-index: 2;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 140px;
  line-height: 140px;
  background-color: #da251c;
  color: #fff;
}

.footer ul {
  list-style: none;
  display: inline-block;
}

.footer ul:first-of-type {
  float: right;
  margin-left: 20px;
}

.footer ul li {
  display: inline-block;
  margin-left: 20px;
}

.footer ul li:first-of-type {
  margin-left: 0;
}

.footer ul li a {
  text-decoration: none;
  color: #fff;
  transition: 300ms;
}

.footer ul li a:hover {
  color: #111;
}

.registration {
  width: 100%;
}

.registrationContent {
  width: 100%;
  text-align: center;
  padding: 130px 0 70px;
}

.registrationContent h1 {
  font-size: 40px;
  font-weight: 700;
  max-width: 640px;
  margin: 0 auto;
  color: #fff;
}

.registrationContent h3 {
  font-size: 20px;
  line-height: 1.5;
  margin: 50px auto;
  max-width: 740px;
  color: #fff;
}

.form {
  display: inline-block;
  width: 100%;
  position: relative;
  background-color: #f1f1f1;
  margin-bottom: 70px;
  text-align: left;
}

.formForm {
  float: right;
  width: 60%;
  padding: 50px;
  background-color: #fff;
  text-align: center;
}

.formForm input {
  width: 100%;
  height: 50px;
  margin-bottom: 20px;
  padding-left: 10px;
  border: solid 1px rgba(17, 17, 17, 0.2);
  font-size: 16px;
}

.formForm button {
  width: 100%;
  height: 50px;
  margin-bottom: 20px;
  background-color: #da251c;
  border: none;
  color: #fff;
  font-size: 20px;
  text-transform: uppercase;
  transition: 300ms;
}

.formForm button:hover {
  background-color: #b1231c;
  cursor: pointer;
}

.formForm h6 {
  font-size: 14px;
  line-height: 1.3;
}

.form .js-Modal {
  color: #da251c;
  transition: 300ms;
  margin-left: 10px;
}

.form .js-Modal:hover {
  color: #b1231c;
  cursor: pointer;
}

.half {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.half input,
.half button {
  max-width: 48%;
}

.checkbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 50px;
  margin-bottom: 20px;
}

.checkbox input {
  width: 20px;
  height: 20px;
  margin: auto 10px auto 0;
}

.checkbox span {
  width: 100%;
  text-align: left;
  font-size: 14px;
  margin: auto 0;
  line-height: 1.3;
}

.checkbox span a {
  text-decoration: none;
  color: #da251c;
  transition: 300ms;
}

.checkbox span a:hover {
  color: #b1231c;
}

.formInfo {
  float: left;
  width: 40%;
  padding: 50px;
  text-align: left;
}

.formBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  margin-bottom: 50px;
}

.formBox i {
  color: #da251c;
  font-size: 40px;
  margin: auto 15px auto 0;
}

.formBox span {
  color: #da251c;
  text-transform: uppercase;
  font-weight: 500;
  margin: auto 0;
  line-height: 1.3;
}

.formBlock {
  margin-bottom: 50px;
  text-align: justify;
}

.formBlock h4 {
  font-weight: 500;
  margin-bottom: 15px;
}

.formBlock p {
  font-size: 14px;
  line-height: 1.3;
}

.watermark {
  position: absolute;
  left: 50px;
  bottom: 50px;
  height: 40px;
  opacity: 0.2;
}

.home {
  width: 100%;
}

.homeContent {
  width: 100%;
  padding: 70px 0;
}

.headerAccount ul {
  list-style: none;
  float: right;
}

.headerAccount ul li {
  float: left;
  height: 70px;
  line-height: 70px;
  position: relative;
}

.headerAccount ul li::before {
  position: absolute;
  content: "";
  width: 1px;
  height: 30px;
  background-color: rgba(17, 17, 17, 0.2);
  top: 50%;
  transform: translateY(-50%);
  left: 0;
}

.headerAccount ul li:first-child::before {
  display: none;
}

.headerAccount ul li a {
  transition: 300ms;
  display: inline-block;
  font-weight: 400;
  text-transform: uppercase;
  text-decoration: none;
  color: #6c6c6c;
  padding: 0 30px;
}

.headerAccount ul li:last-child a {
  padding-right: 0;
}

.headerAccount ul li a.red,
.red {
  color: #da251c;
}

.headerAccount ul li a.red:hover {
  color: #b1231c;
}

.headerAccount ul li a:hover {
  color: #da251c;
}

.headerAccount ul li a i {
  margin-left: 7px;
  /*margin-right: 7px;
	position: relative;
	width: 40px;
	height: 40px;
	line-height: 40px;
	text-align: center;*/
}

/*.headerAccount ul li a i::after{
	position: absolute;
	content: '';
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	border-radius: 100%;
	border: solid 1px #6c6c6c;
	background: transparent;
}*/

/*submenu*/
.headerAccount ul li ul {
  visibility: hidden;
  opacity: 0;
  min-width: 200px;
  position: absolute;
  transition: all 0.5s ease;
  margin-top: 0px;
  left: 0;
  display: none;
  background: #fff;
  box-shadow: 0px 1px 4px 0px rgba(17, 17, 17, 0.5);
}

.headerAccount ul li ul:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -5px;
  background: #fff;
  height: 10px;
}

.headerAccount ul li:hover > ul,
.headerAccount ul li ul:hover {
  visibility: visible;
  opacity: 1;
  display: block;
}

.headerAccount ul li ul li {
  clear: both;
  width: 100%;
  height: auto;
  line-height: initial;
  padding-top: 10px;
  padding-bottom: 10px;
}

.headerAccount ul li ul li::before {
  display: none;
}

.headerAccount ul li:last-child a {
  padding: 0 30px;
}

.search {
  float: right;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  height: 30px;
  margin: 20px 0;
  background-color: #f1f1f1;
  width: 180px;
  overflow: hidden;
  border-radius: 2px;
}

.search input {
  width: 80%;
  padding-right: 10px;
  border: none;
  background-color: transparent;
  font-size: 14px;
}

.search input {
  width: 80%;
  padding-right: 10px;
  border: none;
  background-color: transparent;
  font-size: 14px;
}

.search input:focus {
  outline: none;
}

.search button {
  width: 20%;
  border: none;
  background-color: transparent;
  font-size: 14px;
  color: #6c6c6c;
  transition: 300ms;
  padding: 0 10px;
}

.search button:hover {
  cursor: pointer;
  color: #111;
}

.notification {
  width: 100%;
  background-color: #fff;
  padding: 70px 30px;
  margin-bottom: 70px;
  text-align: center;
}

.notification h4 {
  font-weight: 500;
  font-size: 20px;
  margin-bottom: 20px;
}

.notification h5 {
  font-weight: 500;
  font-size: 20px;
  margin: 50px 0 50px 0;
  color: #da251c;
  text-transform: uppercase;
}

.notification p {
  font-size: 16px;
  line-height: 1.3;
}

.notification ul {
  max-width: 80%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}

.notification li {
  list-style: none;
  padding-top: 45px;
  padding-bottom: 45px;
  border: solid 1px rgba(17, 17, 17, 0.2);
  width: 24%;
  transition: 300ms;
}

.notification li a {
  text-decoration: none;
}

.notification li i {
  display: block;
  font-size: 50px;
  color: rgba(17, 17, 17, 0.2);
  margin-bottom: 20px;
  transition: 300ms;
}

.notification li span {
  display: block;
  text-transform: uppercase;
  font-size: 20px;
  color: rgba(17, 17, 17, 0.2);
  transition: 300ms;
}

.notification li:hover {
  border-color: #da251c;
  background: #da251c;
  cursor: pointer;
}

.notification li:hover i {
  color: #ffffff;
}

.notification li:hover span {
  color: #ffffff;
}

.blocks {
  width: 100%;
  margin-bottom: 70px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.block {
  width: 48%;
  background-color: #fff;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  position: relative;
  border: solid 1px #fff;
  z-index: 1;
  text-decoration: none;
  color: #111;
  height: 250px;
  overflow: hidden;
}

.block::before {
  position: absolute;
  content: "";
  background-color: #fff;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0.6;
  z-index: -1;
  transition: 500ms;
}

.block img {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  object-fit: cover;
  z-index: -2;
  transition: 500ms;
}

.block h2 {
  text-align: center;
  padding: 30px;
  position: relative;
  top: 0;
  transform: translateY(0);
  font-size: 20px;
  transition: 500ms;
  background-color: rgba(255, 255, 255, 0.85);
}

.block h2 i {
  margin-left: 10px;
}

.block:hover::before {
  background-color: #111;
}

.block:hover img {
  transform: scale(1.1);
}

.block:hover h2 {
  color: #fff;
  background-color: rgba(255, 255, 255, 0);
  top: 50%;
  transform: translateY(-50%);
}

.contracts {
  width: 100%;
}

.contractsContent {
  width: 100%;
  padding: 70px 0;
}

.contractsList {
  width: 100%;
  margin-bottom: 70px;
  background-color: #fff;
  padding: 50px;
}

.contractsList h4 {
  font-weight: 500;
  margin-bottom: 50px;
  position: relative;
}

.contractsList h4 a {
  position: absolute;
  right: 0;
  text-decoration: none;
  color: #da251c;
  transition: 300ms;
}

.contractsList h4 a:hover {
  color: #b1231c;
}

.contractsList i {
  margin-left: 7px;
}

.contractsList ul {
  list-style: none;
  border: solid 1px rgba(17, 17, 17, 0.1);
}

.contractsList li {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  background-color: transparent;
  line-height: 50px;
  padding: 0 10px;
  transition: 150ms;
  color: #111;
  border-bottom: solid 1px rgba(17, 17, 17, 0.1);
}

.contractsList li:nth-child(2n) {
  background-color: #fafafa;
}

.contractsList li:last-child {
  border: none;
}

.contractsList li:hover {
  background-color: #f1f1f1;
}

.contractsList ul li.head {
  background-color: transparent;
  margin: 0;
  color: #6c6c6c;
}

.contractsList ul .number {
  width: 10%;
}

.contractsList ul .name {
  width: 40%;
  text-decoration: none;
  transition: 150ms;
  color: #111;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.contractsList ul .head .name {
  color: #6c6c6c !important;
}

.contractsList ul .head .authorName {
  color: #6c6c6c !important;
}

.contractsList ul .name:hover {
  color: #da251c;
}

.contractsList ul .authorName {
  width: 20%;
  text-decoration: none;
  transition: 150ms;
  color: #111;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  padding-left: 30px;
}

.contractsList ul .actions {
  width: 50%;
  padding-left: 30px;
}

.contractsList ul .contractType {
  width: 180px;
  padding-left: 0;
}

ul.actions {
  padding: 0;
  background-color: transparent;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border: none;
}

ul.actions li {
  margin: 0;
  padding: 0;
  background-color: transparent !important;
  border: none;
  width: auto;
  position: relative;
  line-height: initial;
}

ul.actions li a {
  text-decoration: none;
  text-transform: uppercase;
  color: #6c6c6c;
  font-size: 12px;
  height: 30px;
  line-height: 30px;
  width: 60px;
  text-align: center;
  position: relative;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  transition: 150ms;
  -webkit-box-shadow: 0px 1px 1px 0px rgba(17, 17, 17, 0.2);
  -moz-box-shadow: 0px 1px 1px 0px rgba(17, 17, 17, 0.2);
  box-shadow: 0px 1px 1px 0px rgba(17, 17, 17, 0.2);
  border-radius: 1px;
}

.contractsList li:hover ul.actions li a {
  color: #fff;
}

ul.actions li a::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  transition: 150ms;
  opacity: 0;
  border-radius: 1px;
}

.contractsList li:hover li a::before {
  opacity: 0.6;
}

ul.actions li a:hover::before {
  opacity: 1;
}

ul.actions li .edit::before {
  background-color: #6c6c6c;
}

ul.actions li .word::before {
  background-color: #2a5495;
}

ul.actions li .pdf::before {
  background-color: #ef6c5a;
}

ul.actions li .delete::before {
  background-color: #b1231c;
}

ul.actions li .select::before {
  background-color: #56a577;
}

.none .contractsList {
  position: relative;
}

.contractsList p {
  margin: 20px 0;
  line-height: 1.3;
  text-align: center;
}

.contractsList button {
  background-color: #da251c;
  padding: 10px 20px;
  font-size: 16px;
  color: #fff;
  transition: 300ms;
  border: none;
  text-transform: uppercase;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
}

.contractsList button:hover {
  background-color: #b1231c;
  cursor: pointer;
}

/*
.intro, .registration, .home, .contracts, .contract, .profile{
	min-height: 820px;
}
*/
.contract {
  width: 100%;
}

.contractContent {
  width: 100%;
  padding: 70px 0;
}

.contractInner {
  width: 100%;
  margin-bottom: 70px;
  background-color: #fff;
  padding: 50px;
}

.contractInner h4 {
  font-weight: 500;
  margin-bottom: 50px;
  position: relative;
}

.contractInner h4 a {
  position: absolute;
  right: 0;
  text-decoration: none;
  color: #da251c;
  transition: 300ms;
}

.contractInner h4 a:hover {
  color: #b1231c;
}

.contractInner i {
  margin-left: 7px;
}

/*.contractNew textarea{
	width: 100%;
	resize: vertical;
	min-height: 50px;
	max-height: 100px;
	padding: 10px;
	border: solid 1px rgba(17,17,17,0.2);
	font-size: 16px;
	line-height: 1.3;
}
.contractNew input{
	height: 50px;
	padding: 0 10px;
	border: solid 1px rgba(17,17,17,0.2);
	font-size: 16px;
	line-height: 1.3;
	width: 180px;
}
.contractNew select{
	height: 50px;
	padding: 0 10px;
	border: solid 1px rgba(17,17,17,0.2);
	font-size: 16px;
	line-height: 1.3;
	width: 180px;
}*/
.contractNew h5 {
  margin-top: 50px;
  margin-bottom: 20px;
}

.contractNew__Row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.contractNew select,
.contractNew input {
  width: 30%;
  height: 50px;
  background-color: transparent;
  padding: 0 10px;
  font-size: 16px;
  border: solid 1px rgba(17, 17, 17, 0.2);
}

.contractNew .rowButton {
  display: block;
  width: 30%;
  text-decoration: none;
}

.contractNew .rowButton button {
  width: 100%;
  height: 50px;
  background-color: transparent;
  font-size: 16px;
  color: #da251c;
  transition: 300ms;
  border: solid 1px rgba(17, 17, 17, 0.2);
  text-transform: uppercase;
  cursor: pointer;
}

.contractNew .rowButton:hover button {
  background-color: #da251c;
  color: #fff;
}

.contractNew .rowButton span {
  width: 100%;
  height: 50px;
  background-color: transparent;
  font-size: 16px;
  color: #da251c;
  transition: 300ms;
  border: solid 1px rgba(17, 17, 17, 0.2);
  text-transform: uppercase;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  text-align: center;
  line-height: 48px;
}

.contractNew .rowButton:hover span {
  background-color: #da251c;
  color: #fff;
}

/*.contractNew__RowBlock{
	width: 30%;
}
.contractNew__RowBlock input, .contractNew__RowBlock select {
	width: 100%;
}*/
.headline {
  text-align: center;
  width: 48%;
}

.headline h5 {
  font-weight: 500;
}

.headline input {
  text-align: center;
  padding: 10px;
  resize: none;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.5;
  border: solid 1px rgba(17, 17, 17, 0.2);
  width: 100%;
  margin: 0 !important;
}

.contractNew__Wrap {
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.article {
  margin: 50px 0;
  text-align: center;
  position: relative;
}

.article h5 {
  margin-top: 0;
}

.article textarea {
  min-height: 100px;
  max-height: 200px;
  width: 100%;
  background-color: transparent;
  padding: 10px;
  font-size: 16px;
  border: solid 1px rgba(17, 17, 17, 0.2);
  color: #6c6c6c;
  resize: vertical;
  line-height: 1.3;
}

.article .buttons {
  margin-top: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.article button {
  background-color: transparent;
  /*width: 30%;
	height: 50px;*/
  padding: 10px 20px;
  font-size: 14px;
  color: #da251c;
  transition: 300ms;
  border: solid 1px rgba(17, 17, 17, 0.2);
  text-transform: uppercase;
  cursor: pointer;
}

.article button:last-of-type {
  color: #b1231c;
}

.article button:hover {
  color: #fff;
  background-color: #da251c;
}

.article button:last-of-type:hover {
  background-color: #b1231c;
}

.article button i {
  margin-left: 7px;
}

.contractButtons {
  margin-top: 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  flex-wrap: wrap;
}

.contractButtons button {
  height: 50px;
  width: 48%;
  background-color: #6c6c6c;
  font-size: 20px;
  color: #fff;
  transition: 300ms;
  border: none;
  text-transform: uppercase;
  cursor: pointer;
}

.contractButtons button:hover {
  background-color: #111;
}

.contractButtons button.save {
  background-color: #da251c;
}

.contractButtons button.save:hover {
  background-color: #b1231c;
}

.contractNotification {
  width: 100%;
  background-color: #f1f1f1;
  padding: 20px;
  margin: 50px 0;
  text-align: center;
  line-height: 1.3;
}

.contractNotification span {
  color: #da251c;
}

.contractNew__Wrap {
  margin-top: -50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  flex-wrap: wrap;
}

.contractNew__Block {
  width: 30%;
}

.contractNew__Block--double {
  width: 48%;
}

.clanak-zakona-ugovora--wrap {
  width: 100%;
}

.clanak-zakona-ugovora {
  height: 100px !important;
}

.contractNew__Block input,
.contractNew__Block select {
  margin: 0 !important;
  width: 100% !important;
}

.contractNew__Block label {
  font-size: 10px;
  margin-top: 10px;
}

.profile {
  width: 100%;
}

.profileContent {
  width: 100%;
  padding: 130px 0 70px;
}

.profile .form {
  display: block;
  background-color: transparent;
}

.profile .formForm {
  float: none;
  width: 100%;
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.profile .formForm a {
  font-size: 14px;
  text-decoration: none;
  color: #da251c;
  transition: 300ms;
}

.profile .formForm a:hover {
  color: #b1231c;
}

.profile .contractButtons {
  margin-top: 0;
}

.contractEditor h5 {
  margin-top: 50px;
  margin-bottom: 20px;
}

.contractEditor__Row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  flex-wrap: wrap;
}

.contractEditor select {
  width: 30%;
  height: 50px;
  background-color: transparent;
  padding: 0 10px;
  font-size: 16px;
  border: solid 1px rgba(17, 17, 17, 0.2);
  /*text-transform: uppercase;*/
  color: #6c6c6c;
}

.contractEditor .select2-selection {
  height: 50px !important;
  background-color: transparent !important;
  padding: 0 10px;
  font-size: 16px;
  border: solid 1px rgba(17, 17, 17, 0.2) !important;
  color: #6c6c6c;
  border-radius: 0 !important;
}
.contractEditor
  .select2-container--default
  .select2-selection--single
  .select2-selection__rendered {
  line-height: 48px !important;
}
.contractEditor
  .select2-container--default
  .select2-selection--single
  .select2-selection__clear {
  height: 48px !important;
}
.contractEditor
  .select2-container--default
  .select2-selection--single
  .select2-selection__arrow {
  height: 48px !important;
}
.contractEditor
  .select2-container--default
  .select2-selection--single
  .select2-selection__arrow
  b {
  display: none;
}
.contractEditor
  .select2-container--default
  .select2-selection--single
  .select2-selection__arrow::before {
  border-style: solid;
  border-width: 1px 1px 0 0;
  content: "";
  display: inline-block;
  height: 4px;
  left: 8px;
  position: relative;
  top: 32%;
  transform: translateY(-50%) rotate(135deg);
  width: 4px;
}

.contractEditor .rowButton {
  display: block;
  width: 30%;
  text-decoration: none;
}

.contractEditor .rowButton button {
  width: 100%;
  height: 50px;
  background-color: transparent;
  font-size: 16px;
  color: #da251c;
  transition: 300ms;
  border: solid 1px rgba(17, 17, 17, 0.2);
  text-transform: uppercase;
  cursor: pointer;
}

.contractEditor .rowButton:hover button {
  background-color: #da251c;
  color: #fff;
}

.contractEditor .rowButton span {
  width: 100%;
  height: 50px;
  background-color: transparent;
  font-size: 16px;
  color: #da251c;
  transition: 300ms;
  border: solid 1px rgba(17, 17, 17, 0.2);
  text-transform: uppercase;
  cursor: pointer;
  display: inline-block;
  text-align: center;
  line-height: 48px;
}

.contractEditor .rowButton:hover span {
  background-color: #da251c;
  color: #fff;
}

.price {
  width: 30%;
  display: inline-block;
  position: relative;
  height: 50px;
}
.price--disabled {
  margin-top: -22px;
}
.price--disabled input[type="number"]::-webkit-outer-spin-button,
.price--disabled input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.price--disabled input[type="number"] {
  -moz-appearance: textfield;
}

.price span {
  position: absolute;
  right: 40px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 16px;
  color: #111;
}
.price--disabled span {
  right: 10px;
  top: calc(50% + 22px);
}
.price--disabled label {
  width: 100%;
  margin-bottom: 10px;
  display: block;
  font-size: 12px;
  color: #b1231c;
}
.kuna {
  transition: 300ms;
}
.euro {
  position: absolute;
  opacity: 0;
  transition: 300ms;
  color: #b1231c;
  font-weight: bold;
}
.contract-price {
  /*cursor: pointer;*/
}
.contract-price:hover .euro {
  opacity: 1;
}
.contract-price:hover .kuna {
  opacity: 1;
}
.contractEditor input {
  width: 30%;
  background-color: transparent;
  padding: 0 10px;
  height: 50px;
  font-size: 16px;
  transition: 300ms;
  border: solid 1px rgba(17, 17, 17, 0.2);
  /*text-transform: uppercase;*/
}

.contractDetails select {
  margin-bottom: 3%;
}

.contractDetails input {
  margin-bottom: 3%;
}

.price input {
  width: 100%;
  margin-bottom: 0;
}

.contractDates label {
  width: 100%;
  margin-bottom: 10px;
  display: block;
  font-size: 12px;
}

.contractDates input {
  width: 100%;
}

.contractDates__Wrap {
  width: 30%;
}

/*tablice*/
table.dataTable {
  border: solid 1px rgba(17, 17, 17, 0.1) !important;
  border-bottom: none !important;
  font-size: 13px;
  margin-bottom: 20px !important;
}

table.dataTable tr {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  background-color: transparent;
  line-height: 1.5;
  padding: 0 10px;
  transition: 150ms;
  color: #111;
  border-bottom: solid 1px rgba(17, 17, 17, 0.1);
  min-height: 50px;
}

table.dataTable th {
  line-height: 1.3;
}

table.dataTable tr.odd {
  background-color: #fafafa !important;
}

table.dataTable tr:hover {
  background-color: #f1f1f1 !important;
}

table.dataTable tr th,
table.dataTable tr td {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  padding: 5px 0 !important;
  border: none !important;
  background-color: transparent !important;
}

table.dataTable tr th:last-of-type,
table.dataTable tr td:last-of-type {
  min-width: 120px;
}

#tablicaUgovora th,
#tablicaUgovora td {
  width: calc(12.5% - 11px);
}

#tablicaUgovora th:first-of-type,
#tablicaUgovora td:first-of-type,
#tablicaUgovora th:nth-of-type(3),
#tablicaUgovora td:nth-of-type(3),
#tablicaUgovora th:nth-of-type(4),
#tablicaUgovora td:nth-of-type(4) {
  width: 8%;
}

#tablicaTipaUgovora th,
#tablicaTipaUgovora td {
  width: calc(25% - 10px);
}

#tablicaNarucitelji th,
#tablicaNarucitelji td,
#tablicaIzvrsitelja th,
#tablicaIzvrsitelja td {
  width: calc(15% - 5px);
}

#tablicaNarucitelji th:first-of-type,
#tablicaNarucitelji td:first-of-type,
#tablicaIzvrsitelja th:first-of-type,
#tablicaIzvrsitelja td:first-of-type {
  max-width: 10%;
}

#tablicaNarucitelji th:nth-of-type(4),
#tablicaNarucitelji td:nth-of-type(4),
#tablicaIzvrsitelja th:nth-of-type(4),
#tablicaIzvrsitelja td:nth-of-type(4) {
  min-width: 160px;
}

table.dataTable tr th {
  font-weight: normal !important;
  color: #6c6c6c;
}

table.dataTable tr td a {
  position: relative;
  width: 48%;
  min-width: 55px;
  max-width: 60px;
  margin: 2% 0;
  text-decoration: none;
  text-transform: uppercase;
  color: #6c6c6c;
  font-size: 12px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  z-index: 1;
  transition: 150ms;
  -webkit-box-shadow: 0px 1px 1px 0px rgba(17, 17, 17, 0.2);
  -moz-box-shadow: 0px 1px 1px 0px rgba(17, 17, 17, 0.2);
  box-shadow: 0px 1px 1px 0px rgba(17, 17, 17, 0.2);
  border-radius: 1px;
}

table.dataTable tr td a::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  transition: 150ms;
  opacity: 0;
  border-radius: 1px;
}

#tablicaUgovora a:nth-child(1)::before {
  background-color: #ef6c5a;
}

#tablicaUgovora td a:nth-child(2)::before {
  background-color: #da251c;
}

.zakljucani-gumb {
  color: #ffffff !important;
}

.zakljucani-gumb::before {
  background-color: #da251c !important;
  opacity: 1 !important;
}

#tablicaUgovora td a:nth-child(3)::before {
  background-color: #6c6c6c;
}

#tablicaUgovora td a:nth-child(4)::before {
  background-color: #b1231c;
}

#tablicaTipaUgovora a:nth-child(1)::before,
#tablicaNarucitelji a:nth-child(1)::before,
#tablicaIzvrsitelja a:nth-child(1)::before {
  background-color: #6c6c6c;
}

#tablicaTipaUgovora a:nth-child(2)::before,
#tablicaNarucitelji a:nth-child(2)::before,
#tablicaIzvrsitelja a:nth-child(2)::before {
  background-color: #b1231c;
}

table.dataTable tr:hover a {
  color: #fff;
}

table.dataTable tr:hover a::before {
  opacity: 0.6;
}

table.dataTable tr td a:hover::before {
  opacity: 1;
}

.dataTables_wrapper .dataTables_info,
.dataTables_wrapper .dataTables_paginate {
  padding: 0 !important;
  color: #6c6c6c !important;
  font-size: 13px !important;
}

.dataTables_filter {
  margin-bottom: 20px;
}

.dataTables_filter label {
  color: #6c6c6c;
  font-size: 13px;
}

.dataTables_filter input {
  padding: 0 10px;
  border: none;
  font-size: 13px;
  background-color: #f1f1f1;
  width: 180px;
  height: 30px;
  border-radius: 2px;
}

#tablicaUgovora_wrapper .paginate_button,
#tablicaTipaUgovora_wrapper .paginate_button,
#tablicaNarucitelji_wrapper .paginate_button,
#tablicaIzvrsitelja_wrapper .paginate_button {
  padding: 0 5px;
  margin: 0 5px;
  color: #6c6c6c !important;
  border: none;
  border-radius: 0;
  min-width: initial;
  background-color: none;
  background: transparent;
  transition: 150ms;
}

#tablicaUgovora_wrapper .paginate_button.previous,
#tablicaUgovora_wrapper .paginate_button.next,
#tablicaTipaUgovora_wrapper .paginate_button.previous,
#tablicaTipaUgovora_wrapper .paginate_button.next,
#tablicaNarucitelji_wrapper .paginate_button.previous,
#tablicaNarucitelji_wrapper .paginate_button.next,
#tablicaIzvrsitelja_wrapper .paginate_button.previous,
#tablicaIzvrsitelja_wrapper .paginate_button.next {
  margin: 0;
}

#tablicaUgovora_wrapper .paginate_button:hover,
#tablicaTipaUgovora_wrapper .paginate_button:hover,
#tablicaNarucitelji_wrapper .paginate_button:hover,
#tablicaIzvrsitelja_wrapper .paginate_button:hover {
  color: #111 !important;
  border: none;
  background-color: none;
  background: transparent;
}

#tablicaUgovora_wrapper .paginate_button.disabled,
#tablicaTipaUgovora_wrapper .paginate_button.disabled,
#tablicaNarucitelji_wrapper .paginate_button.disabled,
#tablicaIzvrsitelja_wrapper .paginate_button.disabled {
  color: #6c6c6c !important;
}

#tablicaUgovora_wrapper .paginate_button:active,
#tablicaTipaUgovora_wrapper .paginate_button:active,
#tablicaNarucitelji_wrapper .paginate_button:active,
#tablicaIzvrsitelja_wrapper .paginate_button:active {
  background-color: transparent;
  background: none;
  box-shadow: none;
}

#tablicaUgovora_wrapper .paginate_button:focus,
#tablicaTipaUgovora_wrapper .paginate_button:focus,
#tablicaNarucitelji_wrapper .paginate_button:focus,
#tablicaIzvrsitelja_wrapper .paginate_button:focus {
  outline: 0;
}
table.dataTable tr td a.wide {
  max-width: 100px !important;
}
#tablicaTipaUgovora tr td a.wide::before {
  background-color: #1a73e8;
}
