@charset "UTF-8";
.Form p,
.Form .row input {
  margin: 20px 0 0 0;
}
.Form .row {
  display: flex;
  flex-wrap: wrap;
  margin-right: -12px;
}
@media (min-width: 400px) {
  .Form .row {
    margin-right: -3vw;
  }
}
@media (min-width: 1000px) {
  .Form .row {
    margin-right: -30px;
  }
}
.Form .row input {
  flex: 1 0 250px;
  box-sizing: border-box;
  padding: 0 20px;
  line-height: 50px;
  margin-right: 12px;
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background: transparent;
  border: 1px solid #222222;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
}
@media (min-width: 400px) {
  .Form .row input {
    margin-right: 3vw;
  }
}
@media (min-width: 1000px) {
  .Form .row input {
    margin-right: 30px;
  }
}
.Form .row input:focus {
  outline: none;
  border-color: #00AEED;
}
.Form .row input[required] {
  background: url(/assets/input.mandatory.gif) right top no-repeat;
}
.Form .row input[type=submit], .Form .row input[type=button] {
  color: #00AEED;
  border-color: #00AEED;
  cursor: pointer;
}
.Form .row input[type=submit]:hover, .Form .row input[type=button]:hover {
  color: #fff;
  background: #00AEED;
}

body {
  margin: 0;
  background: #000;
  font-family: "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5em;
  color: #C3C5C8;
}
@media (min-width: 950px) {
  body {
    font-size: 14px;
  }
}

a {
  color: #00AEED;
  text-decoration: none;
}

h2 {
  font-size: 225%;
  font-weight: normal;
}

@media (min-width: 1000px) {
  h2 {
    font-size: 150%;
  }
}
h3,
.h3 {
  font-size: 150%;
  font-weight: normal;
}

p {
  margin: 1em 0;
}

sup {
  line-height: 100%;
}

header,
section,
footer {
  display: block;
  /* MSIE */
}

/*
section.border_top {
	border-top: 1px solid #00AEED;
}
section.border_bottom {
	border-bottom: 1px solid #00AEED;
}
*/
/* layout */
.Frame {
  margin: 0 auto;
  max-width: 1500px;
}
.Frame.small {
  max-width: 1000px;
}
.Frame .space {
  margin: 15px 0;
  padding-left: 12px;
  padding-right: 12px;
}
@media (min-width: 400px) {
  .Frame .space {
    padding-left: 3vw;
  }
}
@media (min-width: 1000px) {
  .Frame .space {
    padding-left: 30px;
  }
}
@media (min-width: 400px) {
  .Frame .space {
    padding-right: 3vw;
  }
}
@media (min-width: 1000px) {
  .Frame .space {
    padding-right: 30px;
  }
}
.Frame .space.margin {
  padding: 0 !important;
  margin-left: 12px;
  margin-right: 12px;
}
@media (min-width: 400px) {
  .Frame .space.margin {
    margin-left: 3vw;
  }
}
@media (min-width: 1000px) {
  .Frame .space.margin {
    margin-left: 30px;
  }
}
@media (min-width: 400px) {
  .Frame .space.margin {
    margin-right: 3vw;
  }
}
@media (min-width: 1000px) {
  .Frame .space.margin {
    margin-right: 30px;
  }
}

@media (min-width: 1000px) {
  .Frame .space {
    margin-top: 30px;
    margin-bottom: 30px;
  }

  .Frame .space.small {
    margin-top: 20px;
    margin-bottom: 20px;
  }
}
/* Blue */
.Blue {
  color: #00AEED;
}

/* Text */
.Text h2 {
  line-height: 100%;
}
.Text p {
  line-height: 160%;
}
.Text ul.timetable {
  padding-left: 0;
}
.Text .timetable li {
  display: block;
  padding-top: 30px;
  background: url(/assets/bullet-bottom.png) center 12px no-repeat;
  line-height: 120%;
  text-align: center;
}
.Text .timetable li:first-child {
  background: none;
  padding-top: 0;
}

@media (min-width: 1000px) {
  .Text .timetable {
    display: block;
    text-align: center;
  }

  .Text .timetable li {
    display: inline-block;
    vertical-align: middle;
    padding: 0 0 0 38px;
    background: url(/assets/bullet-right.png) 16px center no-repeat;
    line-height: 120%;
  }

  .Text .timetable li:first-child {
    padding-left: 0;
  }
}
/* inputs */
.Input {
  display: block;
  width: 100%;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -khtml-box-sizing: border-box;
  margin: 10px 0;
  padding: 0 20px;
  line-height: 50px;
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background: transparent;
  border: 1px solid #222;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
}
.Input:focus {
  outline: none;
  border-color: #00AEED;
}
.Input:is(a), .Input[type=submit], .Input[type=button] {
  color: #00AEED;
  border-color: #00AEED;
  cursor: pointer;
}
.Input:is(a):hover, .Input[type=submit]:hover, .Input[type=button]:hover {
  color: #fff;
  background: #00AEED;
}
.Input[required] {
  background: url(/assets/input.mandatory.gif) right top no-repeat;
}

@media (min-width: 600px) {
  .Input {
    display: inline-block;
    vertical-align: middle;
    width: auto;
    margin: 20px 1.5%;
  }
  .Input:is(a), .Inputinput[type=submit], .Inputinput[type=button] {
    padding: 0 70px;
    cursor: pointer;
  }

  /* mods */
  form.news .Input {
    width: 235px;
  }
}
/* Parallax */
.Parallax h3 {
  font-size: 115%;
  margin: 0 0 5px 0;
}

.Parallax p {
  margin: 5px 0;
}

.Parallax .slide img {
  max-width: 100%;
  margin: 20px 0;
}

@media (min-width: 1000px) {
  .Parallax h3 {
    /*border-bottom: 1px solid #00AEED;*/
  }

  .Parallax {
    position: relative;
    height: 650px;
  }

  .Parallax .slide {
    position: absolute;
    width: 100%;
  }

  .Parallax .slide div,
.Parallax .slide img {
    display: inline-block;
    vertical-align: top;
  }

  .Parallax .slide div {
    width: 52%;
    margin-right: 3%;
  }

  .Parallax .slide img {
    width: 45%;
    margin: 0;
  }

  .Parallax .slide.nr1 {
    z-index: 3;
  }

  .Parallax .slide.nr2 {
    z-index: 2;
  }

  .Parallax .slide.nr2 div {
    /*padding-top: 92px;*/
    padding-top: 20px;
  }

  .Parallax .slide.nr3 {
    z-index: 1;
  }

  .Parallax .slide.nr3 div {
    /*padding-top: 100px;*/
  }
}
/* junk */
/* Video */
.embeddedContent {
  padding-bottom: 56.25%;
  /* 16:9 */
  height: 0;
  position: relative;
}

.embeddedContent iframe {
  position: absolute;
  width: 100%;
  height: 100%;
}

/* WYSIWYG tabula */
table.Stats {
  text-align: center;
  line-height: 120%;
  color: #fff;
  width: 100%;
  min-width: 720px;
}

table.Stats td:first-child {
  border-bottom-color: #00AEED;
}

table.Stats td,
table.Stats th {
  border: 2px solid #000;
  padding: 5px;
  width: 20%;
}

table.Stats th {
  font-weight: 400;
}

table.Stats td.class1 {
  background: #d93a3a;
}

table.Stats td.class2 {
  background: #97c014;
}

table.Stats td.class3 {
  background: #4d9939;
}

/* junk */
/* Links */
.Links {
  margin-top: 1em;
}

.Links a,
.Links a.link {
  display: block;
  /*padding-left: 40px;*/
  /*margin-bottom: 25px;*/
  line-height: 25px;
  /* priekš background */
  /*background: url(/assets/intro/link.png) left center no-repeat;*/
}

.Links a.pdf {
  /*background-image: url(/assets/intro/link-pdf.png);*/
}

@media (min-width: 800px) {
  .Links {
    /*float: right;*/
    /*margin-left: 30px;*/
  }
}
.result_txt > p {
  margin-bottom: 0px;
}

@media (min-width: 800px) {
  .result_img {
    width: 35%;
    display: inline-block;
  }

  .result_txt {
    vertical-align: bottom;
    display: inline-block;
    width: 65%;
  }

  .result_txt > p {
    padding-left: 20px;
  }

  .result_img > img {
    width: 100%;
  }
}
@media (max-width: 500px) {
  .result_img > img {
    width: 100%;
  }
}
ul.Rugs {
  padding: 0;
  display: block;
  position: relative;
}

ul.Rugs li {
  float: left;
  list-style: none;
  width: 50%;
  margin: 0;
}

ul.Rugs li:before {
  display: block;
  content: "";
  padding-bottom: 123%;
}

ul.Rugs li div {
  position: absolute;
  top: 20px;
  left: 20px;
  right: 20px;
  bottom: 20px;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
}

ul.Rugs li.grid-item--width2 {
  width: 100%;
}

@media (min-width: 1000px) {
  ul.Rugs li {
    width: 33.3333%;
  }

  ul.Rugs li.grid-item--width2 {
    width: 66.6666%;
  }
}
/* info wide stretch table feature */
.stretchTables table {
  width: 100% !important;
  border: 0 !important;
}

.stretchTables table td {
  width: 1% !important;
  border: 0 !important;
}

.stretchTables table td p:first-child {
  font-size: 140%;
  color: #00AEED;
}

@media (max-width: 600px) {
  .stretchTables table td {
    display: block;
  }
}
/*
#cookieWarn {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	background: #525866;
	text-align: center;
	color: #000;
	padding: 10px 20px;
	z-index: 101;

	a:last-child {
		color: $accent;
		font-weight: 700;
	}
}
*/
.grecaptcha-badge {
  display: none;
}

section.Descr .space {
  margin: 20px 0 40px 0;
}
section.Descr h2 {
  line-height: 100%;
  font-weight: 400 !important;
  text-align: center !important;
}
section.Descr div.read_more {
  display: none;
}

#about {
  line-height: 180%;
}

#about.ru p {
  margin: 0 0 2em 0;
}

#about a {
  color: inherit;
}

@media (min-width: 400px) {
  #about.lv h2 {
    margin-bottom: 1.8em;
  }
}
#breadcrumbs {
  color: #00AEED;
}

#breadcrumbs .space {
  overflow: auto;
}

#breadcrumbs a {
  border-bottom: 1px solid #00AEED;
}

#breadcrumbs .right {
  /* float: right; */
  text-align: center;
}

#breadcrumbs .right a {
  margin: 5px 8px 0 8px;
  border: 0 solid;
  display: inline-block;
}

@media (min-width: 900px) {
  #breadcrumbs .right {
    float: right;
  }

  #breadcrumbs .right a {
    margin: 0 0 0 10px;
  }
}
/* Info wide text menu
.right {
	border-collapse: collapse;
	width: 100%;
}

.right td {
	font-size: 17px;
	border: 1px solid #212121;
	text-align: center;
	padding: 15px;
	width: 20%;
}

@media (max-width:700px) {
	.right
	.right tr,
	.right tr td {
		display: block;
		width: auto;
	}
}
*/
.columns .col {
  display: inline-block;
  vertical-align: top;
  margin: 0 0 1% 3%;
  /* priekš inline-block margin ir labāks kā padding un margin nepārklāsies */
  position: relative;
  /* šo vajag iekšējajam saturam */
}

.columns a.col {
  color: inherit;
}

.columns .col:last-child,
.columns.unequal .col {
  margin-bottom: 1%;
}

.columns img {
  max-width: 100%;
  height: auto;
  vertical-align: top;
  /* bugfix, kas noņem tukšumu zem attēla */
}

/* sizing */
.columns .col {
  width: 94%;
  /* (100% - 3%*2) / 1 */
}

@media (min-width: 450px) {
  .columns.col2 .col {
    width: 45.5%;
    /* (100% - 3%*3) / 2 */
  }
}
@media (min-width: 800px) {
  .columns.col3 .col {
    width: 29.33%;
    /* (100% - 3%*4) / 3 */
  }
}
@media (min-width: 1200px) {
  .columns.col4 .col {
    width: 21.25%;
    /* (100% - 3%*5) / 4 */
  }
}
#elevator {
  display: none;
  text-align: center;
  position: fixed;
  bottom: 20px;
  left: 50%;
  width: 200px;
  margin-left: -100px;
  z-index: 100;
}

#elevator.bounce {
  display: block;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  animation-iteration-count: 1;
  animation-fill-mode: forwards;
  -webkit-animation-name: bounce;
  animation-name: bounce;
  -webkit-transform-origin: center bottom;
  transform-origin: center bottom;
}

#elevator a[href="#prev"],
#elevator a[href="#next"] {
  display: inline-block;
  width: 50px;
  height: 50px;
  margin: 0 10px;
  background: url(/assets/elevator/up.png) center center no-repeat;
}

#elevator a[href="#next"] {
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  transform: rotate(180deg);
}

@keyframes bounce {
  from, 20%, 53%, 80%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  40%, 43% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -30px, 0);
    transform: translate3d(0, -30px, 0);
  }
  70% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -15px, 0);
    transform: translate3d(0, -15px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, -4px, 0);
    transform: translate3d(0, -4px, 0);
  }
}
#feedback {
  border-top: 1px solid #222;
}
#feedback .space {
  text-align: center;
}
#feedback .space div {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 0 0 0 15px;
}
#feedback .space div a {
  flex: 0 0 200px;
  margin: 15px 15px 0 0;
  white-space: nowrap;
}
@media (min-width: 1000px) {
  #feedback .space div {
    padding-left: 30px;
  }
  #feedback .space div a {
    margin: 30px 30px 0 0;
  }
}

footer {
  color: #98989C;
  border-top: 1px solid #222;
  margin-top: 20px;
}

footer .space {
  overflow: auto;
}

footer .block {
  margin: 0 0 20px 0;
  text-align: center;
}

footer p {
  margin: 0;
}

footer a {
  color: inherit;
}

footer .block:last-child a {
  margin: 10px 10px 10px 0;
}

@media (min-width: 1000px) {
  footer .block {
    display: inline-block;
    vertical-align: top;
    width: 25%;
    margin: 0 5% 0 0;
    text-align: left;
  }

  footer .block:first-child {
    width: 40%;
  }

  footer .block:last-child {
    vertical-align: bottom;
    margin-right: 0;
    text-align: right;
    /*
    		float: right;
    		width: 40%;
    		padding-right: 0;
    */
  }

  footer .block:last-child a {
    margin: 0 0 15px 20px;
  }
}
header {
  /* sticky */
  width: 100%;
  background: #000;
  padding: 0.1px 0;
  /* no margin collapse */
  z-index: 5;
  /* slaidera punktiem ir 3 un pin/like pogām 4 */
}
header .Frame .space {
  margin: 15px 0;
  position: relative;
  /* ikonu spaniem */
}
header h1 {
  display: inline-block;
  vertical-align: middle;
  margin: 0;
  /* 20px 0 0;*/
}
header h1 a {
  display: block;
  width: 101px;
  height: 32px;
  background: url(/assets/header/logo.png) left center no-repeat;
  background-size: 101px auto;
}
header .burger {
  float: right;
  width: 30px;
  height: 32px;
  /* 50px; /* tik pat, cik logo */
  background: url(/assets/header/burger.gif) repeat-x left center;
}
header ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
header ul li.open a {
  border-bottom: 1px solid #00AEED;
}
header ul.langs {
  float: right;
  margin: 2px 0 0 0;
  /* (32 - 27) / 2 */
  white-space: nowrap;
}
header ul.langs li {
  display: inline-block;
  margin-right: 20px;
}
header ul.items {
  display: none;
  width: 100%;
  margin: 20px 0 0 0;
}
header ul.items li a {
  color: inherit;
}
header ul.items li.open a {
  border-bottom: 1px solid #C3C5C8;
}
header ul.about {
  display: none;
  width: 100%;
  margin: 20px 0 0 0;
}
header ul.icons {
  display: none;
  width: 100%;
  margin: 20px 0 0 0;
}
header ul.icons li {
  margin-bottom: 10px;
}
header ul.icons li span {
  margin-left: 15px;
}
header ul.icons li span form {
  display: inline-block;
}
header ul.icons li span form input.Input {
  margin: 0;
  padding: 5px 10px;
  line-height: 20px;
  height: auto;
  background: url(/assets/header/find.png) right 10px center no-repeat;
}

@media (min-width: 1200px) {
  /* lielais logo (līdz ar to arī ikonas un burgeris), bet redzama tikai bumba */
  header h1 a {
    width: 48px;
    height: 48px;
    background-size: 153px 48px;
  }

  header .burger {
    height: 48px;
  }

  header ul.langs {
    margin-top: 10px;
  }

  /* pārnesam katalogu uz augšu */
  header ul.items {
    display: inline-block !important;
    /* important, lai JS toggleris nepaliktu svarīgākā pozīcijā */
    height: auto !important;
    width: auto;
    vertical-align: middle;
    margin: 0 0 0 20px;
  }
  header ul.items li {
    display: inline-block;
    margin: 0 0 0 10px;
  }
}
@media (min-width: 1300px) {
  /* pilnais logo un defaultais fonta izmērs kataloga linkiem */
  header h1 a {
    width: 153px;
  }
}
@media (min-width: 1450px) {
  /* pārnesam about uz augšu */
}
@media (min-width: 1450px) {
  /* parādam ikonas (un līdz ar to varam paslēpt burgeri) */
  header ul.icons {
    display: inline-block !important;
    /* important, lai JS toggleris nepaliktu svarīgākā pozīcijā */
    height: auto !important;
    width: auto;
    vertical-align: middle;
    float: right;
    margin: 10px 0 0 0 !important;
  }

  header ul.icons li {
    display: inline-block;
    margin-right: 10px;
  }

  header ul.icons li span {
    display: none;
    position: absolute;
    top: 70px;
    right: 20px;
    z-index: 3;
    padding: 15px 0;
    white-space: nowrap;
    min-width: 350px;
    text-align: center;
    background: rgba(0, 0, 0, 0.75);
    /*border: 1px solid #222;*/
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
  }

  header ul.icons li span form input.Input {
    display: block;
    margin: -10px;
    width: 340px;
    line-height: 30px;
  }

  header ul.langs li {
    margin-right: 10px;
  }
}
@media not all and (min-width: 1450px) {
  /* neļaujam palaist sticky mobilajā versijā */
  body > div {
    min-height: 0 !important;
  }

  header {
    position: static !important;
  }
}
/* small screen fix */
@media (min-width: 1450px) and (max-height: 740px) {
  header .Frame .space {
    margin-top: 10px;
    margin-bottom: 10px;
  }

  #breadcrumbs .Frame .space.small {
    margin-top: 0;
    margin-bottom: 10px;
  }
}
.Icon {
  display: inline-block;
  vertical-align: middle;
  width: 27px;
  height: 27px;
  background: url(/assets/icon/empty.gif) center center no-repeat;
  /* TODO: remove empty */
  background-size: 27px 27px;
}

.Icon.mail {
  background-image: url(/assets/icon/mail.png);
}

.Icon.phone {
  background-image: url(/assets/icon/phone.png);
}

.Icon.phone_back {
  background-image: url(/assets/icon/phone_back.png);
}

.Icon.find {
  background-image: url(/assets/icon/search.png);
}

.Icon.ru {
  background-image: url(/assets/icon/ru.png);
}

.Icon.lv {
  background-image: url(/assets/icon/lv.png);
}

.Icon.en {
  background-image: url(/assets/icon/en.png?2);
}

/*.Icon.like {*/
/*	display: inline-block;*/
/*	width: 24px;*/
/*	height: 24px;*/
/*	background: url(/assets/icon/like.png) center center no-repeat;*/
/*	background-size: 23px auto;*/
/*}*/
/*.Icon.like.active {*/
/*	background-image: url(/assets/icon/like_blue.png);*/
/*}*/
/*.Icon.like_dot {*/
/*	background-image: url(/assets/icon/like_dot.png);*/
/*	background-position: right center;*/
/*	width: auto;*/
/*	min-width: 27px;*/
/*	color: inherit;*/
/*}*/
/*.Icon.like_dot.active {*/
/*	background-image: url(/assets/icon/like_dot_blue.png);*/
/*}*/
/*	.Icon.like_dot div {*/
/*		display: none;*/
/*		width: 140px;*/
/*		margin-right: 45px;*/
/*		text-align: right;*/
/*		font-size: 12px;*/
/*		line-height: 120%;*/
/*	}*/
/*@media (min-width: 1500px) {*/
/*	header .Icon.like_dot:hover div {*/
/*		display: inline-block;*/
/*	}*/
/*	header .Icon.like_dot.active div {*/
/*		display: none;*/
/*	}*/
/*}*/
.Icon.close {
  background-image: url(/assets/icon/close.gif);
}

.Icon.facebook {
  background-image: url(/assets/icon/facebook.png?1);
}

.Icon.instagram {
  background-image: url(/assets/icon/instagram.png?1);
}

.Icon.pinterest {
  background-image: url(/assets/icon/pinterest.png?1);
}

/*
.Icon.twitter {
	background-image: url(/assets/icon/twitter.png);
}
*/
#intro .box {
  /*background-color: #111;*/
}

#intro.border .box {
  border: 1px solid #222;
}

/* title */
#intro .box > a h2 {
  padding: 20px;
  /*background-color: #111111;*/
  /*width: 398px;*/
  margin: 0px;
}

@media (max-width: 450px) {
  #intro .box > h2 {
    width: 99%;
  }
}
#intro .box {
  margin-bottom: 4em;
}

#intro .box > a h2 > img {
  margin-left: 10px;
}

#intro .box.open > a h2 > img {
  -moz-transform: scaleY(-1);
  -o-transform: scaleY(-1);
  -webkit-transform: scaleY(-1);
  transform: scaleY(-1);
  filter: FlipV;
  -ms-filter: "FlipV";
}

/* div.more */
#intro .box div.more {
  /*background-color: #111111;*/
  display: none;
  padding: 1px 0;
  /* izslēdzam margin-collapse, jo raustās animācijas */
}

.info_upper_left > img {
  border-radius: 400px;
}

/*
	@media (min-width:850px) {
		.info_upper_left {
			float:left;
		}

		.info_upper_right {
			margin-left: 300px;
		}
	}
*/
/* a.more */
#intro .box a.more {
  display: block;
  height: 52px;
  background: url(/assets/intro/down-circle-2.png) center center no-repeat;
  background-size: 36px 36px;
}

#intro .box.open a.more {
  /*background-image: url(/assets/intro/up-circle.png);*/
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  transform: rotate(180deg);
}

#intro .box .more a.more {
  margin-top: 25px;
}

/* TODO: remove links? */
/* links */
#intro div.links {
  margin-top: 1em;
}

#intro div.links a,
#intro div a.link {
  display: block;
  /*padding-left: 40px;*/
  margin-bottom: 25px;
  line-height: 25px;
  /* priekš background */
  /*background: url(/assets/intro/link.png) left center no-repeat;*/
}

#intro div.links a.pdf {
  /*background-image: url(/assets/intro/link-pdf.png);*/
}

@media (min-width: 800px) {
  #intro div.links {
    float: right;
    margin-left: 30px;
  }
}
/* table */
#intro table,
#intro table tr td {
  border: 0;
}

#intro table tr td {
  padding: 30px;
}

@media (max-width: 800px) {
  #intro table tr td {
    display: block;
    width: 100% !important;
    padding: 10px 0;
  }

  #intro table tr td:first-child {
    text-align: center;
  }
}
/*#news img {
	width:100%; vertical-align:top; margin-bottom:30px;
}*/
#news .open {
  margin: 60px 0 70px 0;
  /* apakšā kompensējam augšēko line-height atstarpi */
}

#news .open a {
  display: inline-block;
  height: 26px;
  padding-right: 25px;
  background: url(/assets/news/right.gif) right center no-repeat;
}

#news .hidden {
  display: none;
}

#news_more {
  margin-top: 50px;
}

/* TODO: close.gif */
.col > a.popup {
  display: block;
  height: 0;
  padding-bottom: 120%;
  position: relative;
}

.col > a.popup img {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  max-width: 100%;
  max-height: 100%;
}

#popup {
  position: fixed;
  width: 100%;
  top: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 1000;
  text-align: center;
}

#popup .frame {
  display: inline-block;
  margin: 10% 4%;
  padding: 0 30px;
  background: #000;
  /* center */
  /*position: absolute;*/
  /*top: 50%;*/
  /*left: 50%;*/
  /*transform: translate(-50%, -50%);*/
}

#popup .frame p {
  text-align: left;
}

#popup .frame p:first-child {
  text-align: right;
}

#popup .frame img {
  max-width: 100%;
  height: auto;
}

/* .Frame.small tiek izmantots mainīgajiem description tekstiem */
.Slider .preview {
  position: relative;
}

.Slider .Frame.small .space {
  /* info slider below images */
  position: relative;
  overflow: hidden;
}

.Slider .preview ul,
.Slider .Frame.small > .space > ul {
  width: 100%;
  position: relative;
  /* at start helps to size parent normally, but will be changed to absolute in JS */
  white-space: nowrap;
  margin: 0;
  padding: 0;
}

.Slider .preview ul {
  width: calc(100% + 40px);
}

.Slider .preview ul li {
  max-width: 100%;
}

.Slider .preview ul li {
  height: 0;
  padding-bottom: calc(50% - 20px);
  margin-right: 40px;
}

.Slider .preview ul li,
.Slider .Frame.small .space > ul > li {
  /* svarīgi, lai nepārklājas ar "li .Text ul.timetable li" */
  position: relative;
  /* lai punkti pozicinoētos konrētajā slaidā */
  display: inline-block;
  vertical-align: top;
  white-space: normal;
}

.Slider .Frame.small .space > ul > li {
  width: 100%;
}

.Slider .preview ul li > img {
  max-width: 100%;
  vertical-align: top;
  /* bugfix, kas noņem tukšumu zem attēla */
}

.Slider .preview ul li img[data-src] {
  display: none;
  /* nerādam vēl neielādētus attēlus */
}

.Slider .preview ul li img[data-href] {
  cursor: pointer;
}

@media (min-width: 700px) {
  .Slider .preview a[href="#prev"],
.Slider .preview a[href="#next"] {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 10%;
    min-width: 50px;
  }

  .Slider .preview a[href="#prev"] {
    left: 0;
    background: url(/assets/slider/prev.png) center center no-repeat;
  }

  .Slider .preview a[href="#next"] {
    right: 0;
    background: url(/assets/slider/next.png) center center no-repeat;
  }
}
.Slider .preview .point {
  position: absolute;
}

.Slider .preview .point .circle {
  position: absolute;
  z-index: 3;
  top: -25px;
  left: -25px;
  padding: 20px;
  cursor: pointer;
  animation: pulsate 6s ease-out infinite;
}

.Slider .preview .point .circle div {
  width: 10px;
  height: 10px;
  background: #00AEED;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
}

@media (min-width: 700px) {
  .Slider .preview .point .circle {
    top: -27px;
    left: -27px;
  }

  .Slider .preview .point .circle div {
    width: 14px;
    height: 14px;
  }
}
@keyframes pulsate {
  0% {
    transform: scale(1, 1);
    opacity: 1;
  }
  15% {
    transform: scale(1.5, 1.5);
    opacity: 0.2;
  }
  20% {
    transform: scale(1, 1);
    opacity: 1;
  }
}
.Slider .preview .point .info {
  position: absolute;
  z-index: 4;
  display: none;
  padding: 0 25px;
  background: rgba(0, 0, 0, 0.7);
  border: 1px solid #222;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  white-space: nowrap;
}

.Slider .preview .point.top .info {
  top: -10px;
}

.Slider .preview .point.right .info {
  left: 35px;
}

.Slider .preview .point.bottom .info {
  bottom: -10px;
}

.Slider .preview .point.left .info {
  right: 35px;
}

.Slider .preview .point .info a {
  color: inherit;
}

.Slider .preview [data-pin-do] {
  display: none;
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 4;
  cursor: pointer;
  /* pinterest uztaisa bez href */
}

.Slider .preview:hover ul li.active [data-pin-do] {
  display: block;
}

/*.Slider .preview a.Icon.like {*/
/*	display: none;*/
/*	position: absolute;*/
/*	top: 55px;*/
/*	left: 20px;*/
/*	z-index: 4;*/
/*}*/
/*.Slider .preview:hover ul li.active a.Icon.like {*/
/*	display: block;*/
/*}*/
.Slider .preview .over {
  position: absolute;
}

.Slider > ol {
  display: none;
}

@media (min-width: 1000px) {
  .Slider > ol {
    display: block;
    text-align: center;
    margin: 2% 0 0 0;
    padding: 0;
  }

  .Slider > ol li {
    display: inline-block;
    vertical-align: top;
    /* bugfix, kas noņem tukšumu apakšā */
  }

  .Slider > ol li a {
    display: block;
    padding: 7px;
    margin: 0 8px;
  }

  .Slider > ol li a {
    color: #555;
  }

  .Slider > ol li.active a {
    color: #00AEED;
  }
}
.Slider .Frame.small .space h2 {
  margin-top: 0;
}

.Slider .Frame.small p:first-child {
  margin-top: 0;
}

body.Overlay {
  overflow: hidden;
}

div.Overlay {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  overflow: auto;
  background: rgba(0, 0, 0, 0.7);
  z-index: 1000;
}
div.Overlay .frame {
  width: 100%;
  min-height: 100%;
  padding: 12px;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (min-width: 400px) {
  div.Overlay .frame {
    padding: 3vw;
  }
}
@media (min-width: 1000px) {
  div.Overlay .frame {
    padding: 30px;
  }
}
div.Overlay .frame .popup {
  max-width: 600px;
  overflow: hidden;
  background: #000;
  border: 1px solid #00AEED;
  position: relative;
}
div.Overlay .frame .popup a.close {
  position: absolute;
  top: 20px;
  right: 12px;
}
@media (min-width: 400px) {
  div.Overlay .frame .popup a.close {
    right: 3vw;
  }
}
@media (min-width: 1000px) {
  div.Overlay .frame .popup a.close {
    right: 30px;
  }
}
div.Overlay .frame .popup > div {
  margin: 70px 0 30px 0;
  margin-right: 12px;
  margin-left: 12px;
}
@media (min-width: 400px) {
  div.Overlay .frame .popup > div {
    margin-right: 3vw;
  }
}
@media (min-width: 1000px) {
  div.Overlay .frame .popup > div {
    margin-right: 30px;
  }
}
@media (min-width: 400px) {
  div.Overlay .frame .popup > div {
    margin-left: 3vw;
  }
}
@media (min-width: 1000px) {
  div.Overlay .frame .popup > div {
    margin-left: 30px;
  }
}

/*# sourceMappingURL=style.ru.css.map */
