#page-wrapper {
  min-height: 100%;
  width: 100%;
  overflow: auto;
  position: relative;
}
body a {
  color: #496368;
  text-decoration: underline;
}
body a:hover {
  text-decoration: none;
  color: #3399ff;
}
body h1,
body h2 {
  margin-top: 50px;
  font-weight: 700;
  color: #3399ff;
  margin-bottom: 35px;
}
body h1.thin,
body h2.thin {
  font-weight: 500;
  color: #496368;
}
body h1 {
  font-size: 32pt;
}
body h2 {
  font-weight: 500;
  color: #496368;
}
body .cont-flex {
  display: flex;
}
@media (max-width: 600px) {
  body .cont-flex {
    width: 100%;
  }
}
@media (min-width: 601px) {
  body .cont-flex {
    width: 100%;
  }
}
@media (min-width: 768px) {
  body .cont-flex {
    width: 750px;
  }
}
@media (min-width: 992px) {
  body .cont-flex {
    width: 970px;
  }
}
@media (min-width: 1200px) {
  body .cont-flex {
    width: 1040px;
  }
}
body .btn-basic {
  display: inline-flex;
  padding: 15px 20px;
  font-size: 16px;
  font-weight: normal;
  line-height: 1.42857143;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  touch-action: manipulation;
  cursor: pointer;
  user-select: none;
  border: none;
  text-decoration: none;
  justify-content: center;
}
body .btn-basic:hover {
  text-decoration: none;
}
body .btn-basic > img {
  max-height: 22px;
  margin-right: 10px;
}
body .btn-basic.btn-main {
  text-transform: uppercase;
  color: #ffffff;
  background-color: #ff7483;
}
body .btn-basic.btn-main.red {
  background-color: #ff7483;
}
body .btn-basic.btn-main.red:hover {
  background-color: #ff4156;
}
body .btn-basic.btn-main.yellow {
  background-color: #fbc703;
}
body .btn-basic.btn-main.yellow:hover {
  background-color: #c99f02;
}
body .btn-basic.btn-main.orange {
  background-color: #faa323;
}
body .btn-basic.btn-main.orange:hover {
  background-color: #b36c04;
}
body .btn-basic.btn-main.blue {
  background-color: #258cfa;
}
body .btn-basic.btn-main.blue:hover {
  background-color: #045ab5;
}
body .btn-basic.btn-main:hover {
  background-color: #ff4156;
}
body .btn-basic.btn-send {
  text-transform: uppercase;
  color: #ffffff;
  background-color: #258cfa;
}
body .btn-basic.btn-send:hover {
  background-color: #052b54;
}
body .btn-basic.btn-flat {
  text-transform: uppercase;
  color: #496368;
  background-color: transparent;
  border: 1px solid #258cfa;
}
body .btn-basic.btn-flat:hover {
  background-color: transparent;
  border: 1px solid #052b54;
}
body .btn-basic.btn-fb-messanger {
  text-transform: uppercase;
  color: #ffffff;
  background-color: #3b5998;
}
body .btn-basic.btn-fb-messanger:hover {
  background-color: #96abd6;
}
body .btn-basic.disabled {
  background-color: lightgray;
  pointer-events: none;
}
body .btn-basic.disabled:hover {
  background-color: lightgray;
}
body .textedit {
  padding: 13px 16px;
  border: 1px solid #258cfa;
  font-family: 'Nunito', 'Roboto', sans-serif;
  color: #496368;
  outline: 0;
}
body .textedit.area {
  height: 150px;
}
body .textedit:focus,
body .textedit:hover {
  border-color: #052b54;
}
body .textedit.form-i {
  width: 100%;
}
body ul.blue-dots {
  padding: 0;
}
body ul.blue-dots > li {
  list-style: none;
  font-size: 16px;
  margin-bottom: 5px;
  position: relative;
  padding-left: 22px;
}
body ul.blue-dots > li strong {
  color: #258cfa;
}
body ul.blue-dots > li::before {
  content: "• ";
  margin-right: 3px;
  color: #258cfa;
  position: absolute;
  left: 7px;
  top: -1px;
}
body .spinner {
  width: 50px;
  height: 40px;
  text-align: center;
  font-size: 10px;
}
body .spinner > div {
  background-color: #ffffff;
  height: 100%;
  width: 9%;
  display: inline-block;
  -webkit-animation: sk-stretchdelay 1.2s infinite ease-in-out;
  animation: sk-stretchdelay 1.2s infinite ease-in-out;
}
body .spinner .rect2 {
  -webkit-animation-delay: -1.1s;
  animation-delay: -1.1s;
}
body .spinner .rect3 {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
body .spinner .rect4 {
  -webkit-animation-delay: -0.9s;
  animation-delay: -0.9s;
}
body .spinner .rect5 {
  -webkit-animation-delay: -0.8s;
  animation-delay: -0.8s;
}
@-webkit-keyframes sk-stretchdelay {
  0%,
  40%,
  100% {
    -webkit-transform: scaleY(0.4);
  }
  20% {
    -webkit-transform: scaleY(1);
  }
}
@keyframes sk-stretchdelay {
  0%,
  40%,
  100% {
    transform: scaleY(0.4);
    -webkit-transform: scaleY(0.4);
  }
  20% {
    transform: scaleY(1);
    -webkit-transform: scaleY(1);
  }
}
.blinking-cursor {
  font-weight: 100;
  font-size: 30px;
  color: #2E3D48;
  -webkit-animation: 1s blink step-end infinite;
  -moz-animation: 1s blink step-end infinite;
  -ms-animation: 1s blink step-end infinite;
  -o-animation: 1s blink step-end infinite;
  animation: 1s blink step-end infinite;
}
@keyframes blink-caret {
  from,
  to {
    border-color: transparent;
  }
  50% {
    border-color: darkgrey;
  }
}
@keyframes blink {
  from,
  to {
    color: transparent;
  }
  50% {
    color: black;
  }
}
@-moz-keyframes blink {
  from,
  to {
    color: transparent;
  }
  50% {
    color: black;
  }
}
@-webkit-keyframes blink {
  from,
  to {
    color: transparent;
  }
  50% {
    color: black;
  }
}
@-ms-keyframes blink {
  from,
  to {
    color: transparent;
  }
  50% {
    color: black;
  }
}
@-o-keyframes blink {
  from,
  to {
    color: transparent;
  }
  50% {
    color: black;
  }
}
.modal {
  display: none;
  /* Hidden by default */
  position: fixed;
  /* Stay in place */
  z-index: 1;
  /* Sit on top */
  left: 0;
  top: 0;
  width: 100%;
  /* Full width */
  height: 100%;
  /* Full height */
  overflow: auto;
  /* Enable scroll if needed */
  background-color: #000000;
  /* Fallback color */
  background-color: rgba(0, 0, 0, 0.4);
  /* Black w/ opacity */
}
/* Modal Content/Box */
.mmodal-content {
  font-family: 'Nunito', 'Roboto', sans-serif;
  background-color: #fefefe;
  margin: 15% auto;
  /* 15% from the top and centered */
  padding: 20px;
  border: 1px solid #888;
  width: 80%;
  /* Could be more or less, depending on screen size */
}
/* The Close Button */
.close-modal {
  color: white;
  float: right;
  font-size: 28px;
  font-weight: bold;
}
.close-modal:hover,
.close-modal:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}
/* Modal Header */
.mmodal-header {
  padding: 2px 16px;
  background-color: #258cfa;
  color: white;
}
.mmodal-header > h2 {
  color: white;
  margin: 10px 0;
  font-size: 20px;
}
/* Modal Body */
.mmodal-body {
  padding: 16px;
}
/* Modal Footer */
.mmodal-footer {
  padding: 16px;
  padding-top: 0;
  color: white;
}
/* Modal Content */
.mmodal-content {
  position: relative;
  background-color: #fefefe;
  margin: auto;
  padding: 0;
  border: 1px solid #888;
  width: 80%;
  max-width: 1100px;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  animation-name: animatetop;
  animation-duration: 0.4s;
}
/* Add Animation */
@keyframes animatetop {
  from {
    top: -300px;
    opacity: 0;
  }
  to {
    top: 0;
    opacity: 1;
  }
}
body .form-controls .form-control-cont {
  display: flex;
  flex-direction: column;
  margin-bottom: 10px;
}
body .form-controls .form-control-cont.lines {
  flex-direction: row;
}
body .form-controls .form-control-cont.lines > .form-control-cont {
  width: 100%;
  padding-left: 10px;
  margin-bottom: 0;
}
body .form-controls .form-control-cont.lines > .form-control-cont:first-child {
  padding-left: 0;
}
body .form-controls .form-control-cont.login_line_with_btn_check > .row-form > .right {
  display: flex;
  justify-content: space-between;
}
body .form-controls .form-control-cont.login_line_with_btn_check > .row-form > .right .checkbox-label {
  padding-top: 0;
  padding-left: 28px;
}
body .form-controls .form-control-cont:not(.checkbox) + .checkbox {
  margin-top: 20px;
}
body .form-controls .form-control-cont.checkbox + .form-control-cont:not(.checkbox) {
  margin-top: 20px;
}
body .form-controls .form-control-cont.checkbox {
  margin-bottom: 0;
}
body .form-controls .form-control-cont.checkbox:first-child {
  margin-top: 20px;
}
body .form-controls .form-control-cont.checkbox:last-child {
  margin-bottom: 20px;
}
body .form-controls .form-control-cont.readonly .textedit {
  border-color: #496368;
}
body .form-controls .form-control-cont.readonly .textedit:hover {
  border-color: #496368;
}
body .form-controls .form-control-cont.not-valid .textedit {
  border-color: #bd0000;
}
body .form-controls .form-control-cont.not-valid .textedit:hover {
  border-color: #ff5757;
}
body .form-controls .form-control-cont.not-valid > .validate-line {
  display: block;
}
body .form-controls .form-control-cont.not-valid > .row-form > .right .checkbox-label::before {
  color: #bd0000;
  border-color: #bd0000;
}
body .form-controls .form-control-cont.not-valid > .row-form > .right .checkbox-label:hover::before {
  color: #570000;
  border-color: #570000;
}
body .form-controls .form-control-cont > .validate-line {
  display: none;
  padding: 10px 0;
  margin-left: 84px;
  color: #bd0000;
  font-weight: 700;
}
body .form-controls .form-control-cont > .validate-line.no-caption {
  margin-left: 0;
}
body .form-controls .form-control-cont > .row-form > .left {
  width: 100px;
  display: flex;
  justify-content: flex-start;
  /*height: 48px;*/
  font-weight: 700;
  font-size: 16px;
}
body .form-controls .form-control-cont > .row-form > .left > span {
  color: #258cfa;
  align-self: center;
}
body .form-controls .form-control-cont > .row-form > .right {
  width: 100%;
  position: relative;
}
body .form-controls .form-control-cont > .row-form > .right input[type=checkbox] {
  width: 0;
  height: 0;
  opacity: 0;
  position: absolute;
}
body .form-controls .form-control-cont > .row-form > .right input[type=checkbox][data-value=true] + .checkbox-label::before {
  content: "\f00c";
}
body .form-controls .form-control-cont > .row-form > .right .checkbox-label {
  position: relative;
  padding: 10px 0;
  padding-left: 35px;
  display: inline-block;
}
body .form-controls .form-control-cont > .row-form > .right .checkbox-label:hover::before {
  border-color: #052b54;
  color: #052b54;
}
body .form-controls .form-control-cont > .row-form > .right .checkbox-label::before {
  font-family: FontAwesome;
  content: "";
  width: 20px;
  height: 20px;
  border: 1px solid #258cfa;
  position: absolute;
  left: 0;
  color: #258cfa;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}
body .not-found {
  font-family: 'Nunito', 'Roboto', sans-serif;
  margin-top: 40px;
}
body .not-found > .left {
  margin: 0 100px;
}
body .not-found > .left > img {
  max-height: 550px;
}
body .not-found > .right {
  max-width: 330px;
}
body .not-found > .right > .top h1 {
  margin-bottom: 30px;
}
body .not-found > .right > .top > span {
  font-size: 16px;
}
body .not-found > .right > .bottom {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  width: 220px;
}
body .not-found > .right > .bottom > div {
  width: 100%;
  text-align: center;
  margin: 15px 0;
  font-size: 16px;
}
body .not-found > .right > .bottom > a {
  justify-content: center;
  width: 100%;
}
body .not-found > .right .btn-flat {
  color: #258cfa;
}
/* mobile */
@media (max-width: 600px) {
  body .not-found {
    font-family: 'Nunito', 'Roboto', sans-serif;
    margin: 40px 0;
  }
  body .not-found > .left {
    margin: 0;
  }
  body .not-found > .left > img {
    max-height: 550px;
    max-width: 90%;
  }
}
body .aquarow.price-list-aqua {
  margin-top: 30px;
  align-items: center;
}
body .aquarow.price-list-aqua > .cont-flex {
  justify-content: center;
}
body .aquarow.price-list-aqua > .cont-flex .left {
  padding: 0 60px;
}
body .aquarow.price-list-aqua > .cont-flex .left > img {
  max-width: 160px;
  max-height: 240px;
}
body .aquarow.price-list-aqua > .cont-flex .right h2 {
  font-size: 32pt;
  color: white;
  font-weight: 700;
}
body .aquarow.price-list-aqua > .cont-flex .right > a {
  margin-top: 30px;
  display: inline-flex;
}
body .price-list {
  font-family: 'Nunito', 'Roboto', sans-serif;
}
body .price-list .img-block {
  width: 250px;
  position: relative;
}
body .price-list .img-block > img {
  max-width: 100%;
}
body .price-list .img-block > .text-block {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: white;
}
body .price-list .img-block > .text-block > div {
  text-align: center;
  height: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  font-weight: 700;
}
body .price-list .img-block > .text-block > div > .no_dph {
  font-size: 14px;
}
body .price-list .img-block > .text-block > div:first-child {
  padding-top: 35px;
}
body .price-list .img-block > .text-block > div:last-child {
  font-weight: 300;
  display: flex;
  flex-direction: column;
  align-items: center;
}
body .price-list .tab-content {
  padding-top: 0;
}
body .price-list h1 {
  font-size: 32pt;
  color: #258cfa;
  font-weight: 700;
  margin-top: 50px;
  margin-bottom: 15px;
}
body .price-list h2 {
  font-weight: 600;
  margin-top: 15px;
  margin-bottom: 35px;
  font-size: 30px;
}
body .price-list h5 {
  font-weight: 700;
  font-size: 19px;
  margin-bottom: 40px;
}
body .price-list .price-list-top-block {
  background-color: #2cab9e;
  width: 100%;
  padding: 30px 0;
}
body .price-list .price-list-top-block > img {
  max-width: 70px;
  max-height: 60px;
}
body .price-list .price-list-top-block > h2 {
  color: white;
  margin: 0;
  margin-left: 20px;
  align-self: center;
}
body .price-list .bottom-subline {
  padding: 20px 0;
  margin-top: 100px;
  border-top: 1px solid #6fcbc9;
}
body .price-list .more-information-button {
  display: inline-block;
  margin: 25px 0;
}
body .price-list .bottom-block > div {
  width: 50%;
}
body .price-list .bottom-block > .right img {
  max-width: 510px;
}
body .price-list .bottom-block > .left {
  font-size: 16px;
}
body .price-list .line {
  min-height: 315px;
}
body .price-list .line .block {
  display: inline-block;
  padding: 20px 0;
  width: 350px;
  min-height: 315px;
  font-family: 'Nunito', 'Roboto', sans-serif;
  color: #496368;
  font-size: 16px;
  margin-right: 40px;
}
body .price-list .line .block.sline {
  margin-right: 20px;
  width: 250px;
}
body .price-list .line .block > .btn-basic {
  margin-top: 25px;
  width: 100%;
}
body .price-list .line .block:last-child {
  margin-right: 0;
}
body .price-list .line .block p {
  margin-bottom: 40px;
}
body .price-list .line .block p:last-child {
  margin-bottom: 0;
}
body .price-list .line .block.blue {
  width: 240px;
  padding: 20px;
  color: #ffffff;
  background-color: #258cfa;
}
body .price-list .line .block .img {
  margin-top: 10px;
  max-height: 48px;
  display: flex;
}
body .price-list .line .block .img > img {
  max-height: 48px;
}
body .price-list .line .block .sub-line {
  margin-top: 20px;
  border-bottom: 1px solid #bddcfd;
}
body .price-list .line .block .sub-line:first-line {
  margin-top: 0;
}
body .price-list .line .block .sub-line.w-line {
  border-bottom: 0;
}
body .price-list .line .block .sub-line > .left {
  width: 100%;
  flex: 2 2 auto;
}
body .price-list .line .block .sub-line > .right {
  white-space: nowrap;
  flex: 1 1 auto;
  text-align: right;
}
body .price-list .line .block .sub-line ul.blue-dots > li {
  font-size: 14px;
  line-height: 17px;
}
.contact-form {
  width: 100%;
  padding-top: 17pt;
  margin-top: 20pt;
}
.contact-form .contact-line {
  display: flex;
}
.contact-form .contact-line.heading {
  text-align: center;
  justify-content: center;
}
.contact-form .contact-line.heading h2 {
  font-size: 36px;
  font-weight: 700;
  color: #258cfa;
}
.contact-form .contact-line.heading img {
  margin-right: 20px;
}
.contact-form .contact-line.send-button {
  text-align: right;
  padding-bottom: 20px;
  justify-content: flex-end;
}
.contact-form .input {
  margin-bottom: 20px;
  margin-right: 20px;
  display: inline-block;
  background-color: white;
  border: 1px solid #e0ebf9;
  padding: 14px 10px;
  min-width: calc(50% - 20px);
}
.contact-form .input:last-child {
  min-width: 50%;
}
.contact-form .input.single-line {
  width: 100%;
  margin-right: 0;
}
.contact-form .input.has-error {
  border: 1px solid #c04025;
}
.contact-form .input > input,
.contact-form .input > textarea {
  width: 100%;
  outline: none;
  min-width: 269px;
  border: none;
  color: #3b3b3b;
  resize: none;
}
.contact-form .input > textarea {
  height: 150px;
}
.contact-form .alert .error-line {
  display: inline-block;
  margin-bottom: 5px;
}
.contact-form .alert .error-line .error-line::before {
  content: "- ";
}
#carousel-top {
  min-height: 488px;
  background: #fff;
  transition: height 0.3s ease;
}
#carousel-top .carousel-item .carousel-item-content .left {
  max-width: 550px;
  padding-left: 20px;
}
#carousel-top .carousel-item .carousel-item-content .right {
  align-items: center;
  flex-basis: 50%;
}
#carousel-top .carousel-item .carousel-item-content .right > img,
#carousel-top .carousel-item .carousel-item-content .right > video {
  max-width: 100%;
  max-height: 100%;
  max-height: 360px;
}
.carousel-flex {
  position: relative;
  overflow: hidden;
}
.carousel-flex .main-carousel-btn {
  text-transform: uppercase;
  font-size: 16px;
  color: #ffffff;
  background-color: #ff7483;
  padding: 15px 20px;
}
.carousel-flex .carousel-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  overflow: hidden;
}
.carousel-flex .carousel-content .carousel-item {
  display: none;
  justify-content: center;
}
.carousel-flex .carousel-content .carousel-item.active,
.carousel-flex .carousel-content .carousel-item.pre-active {
  display: flex;
}
.carousel-flex .carousel-content .carousel-item.pre-active {
  position: absolute;
  top: 0;
}
.carousel-flex .carousel-content .carousel-item .carousel-item-content {
  color: #496368;
}
.carousel-flex .carousel-content .carousel-item .carousel-item-content h1 {
  font-family: 'Nunito', 'Roboto', sans-serif;
  font-size: 32pt;
  font-weight: 700;
  color: #496368;
}
.carousel-flex .carousel-content .carousel-item .carousel-item-content p {
  font-size: 13pt;
  font-weight: normal;
  margin-bottom: 40px;
}
.carousel-flex .carousel-content .carousel-item .carousel-item-content.reference p {
  font-size: 11pt;
  margin-bottom: 10px;
}
.carousel-flex .carousel-control {
  display: flex;
  justify-content: center;
}
.carousel-flex .carousel-control > .glyphicon {
  align-self: center;
  color: #496368;
  text-shadow: none;
}
@keyframes longSlideInLeft {
  from {
    transform: translate3d(-200%, 0, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
.longSlideInLeft {
  animation-name: longSlideInLeft;
}
@keyframes longSlideOutRight {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(200%, 0, 0);
  }
}
.longSlideOutRight {
  animation-name: longSlideOutRight;
}
@keyframes longSlideOutLeft {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(-200%, 0, 0);
  }
}
.longSlideOutLeft {
  animation-name: longSlideOutLeft;
}
@keyframes longSlideInRight {
  from {
    transform: translate3d(200%, 0, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
.longSlideInRight {
  animation-name: longSlideInRight;
}
body .navbar-default {
  background-color: transparent;
  color: #496368;
  display: flex;
  justify-content: center;
}
body .navbar-default.navbar {
  border-top: 0;
}
body .navbar-default .hamburger-label {
  font-weight: 600;
  display: inline-block;
  margin: 0 5px;
  vertical-align: middle;
  text-transform: uppercase;
  align-self: center;
}
body .navbar-default .navbar-toggle {
  border: none;
  display: none;
  justify-content: center;
}
body .navbar-default .navbar-toggle:hover,
body .navbar-default .navbar-toggle:focus {
  background-color: transparent;
}
body .navbar-default .navbar-collapse {
  padding-right: 0;
}
body .navbar-default .navbar-brand {
  padding: 5px 15px;
}
body .navbar-default .navbar-brand img {
  height: 100%;
  max-height: 100%;
  max-width: 300px;
}
body .navbar-default .navbar-nav {
  margin-top: 6px;
}
body .navbar-default .navbar-nav > li#loggedBtn {
  display: inline-flex;
}
body .navbar-default .navbar-nav > li#loggedBtn a {
  padding-right: 0;
}
body .navbar-default .navbar-nav > li#loggedBtn a + a {
  padding-left: 0;
}
body .navbar-default .navbar-nav > li.separator {
  padding: 0 12px;
}
body .navbar-default .navbar-nav > li.separator > span {
  line-height: 45px;
  font-weight: 600;
  font-size: 16px;
}
body .navbar-default .navbar-nav > li.active > a {
  color: #258cfa;
  background-color: transparent;
}
body .navbar-default .navbar-nav > li.active > a:hover {
  background-color: inherit;
  color: #258cfa;
}
body .navbar-default .navbar-nav > li.active > a > .login-btn {
  color: #258cfa;
  border-color: #258cfa;
}
body .navbar-default .navbar-nav > li > a {
  text-decoration: none;
  text-transform: none;
  font-family: 'Nunito', 'Roboto', sans-serif;
  font-weight: 600;
  font-size: 13pt;
}
body .navbar-default .navbar-nav > li > a:hover {
  color: #258cfa;
}
body .navbar-default .navbar-nav > li > a > .login-btn {
  color: #496368;
  max-width: 260px;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
body .navbar-default .navbar-nav > li > a > .login-btn:hover {
  color: #258cfa;
  border-color: #258cfa;
  /*background-color: @base-font-color;
                            color: @base-font-color-light;*/
}
body .navbar-default .navbar-nav > li > a > .login-btn.logout {
  padding: 0 8px;
  border-left: 0;
}
@media (min-width: 768px) {
  body .navbar-default .navbar-nav > li > a {
    padding-top: 3px;
    padding-bottom: 3px;
    line-height: 45px;
    padding-left: 17px;
    padding-right: 17px;
  }
}
#cookies-toolbar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 10px;
  background-color: white;
  -webkit-box-shadow: 0px 10px 40px 0px rgba(0, 0, 0, 0.59);
  -moz-box-shadow: 0px 10px 40px 0px rgba(0, 0, 0, 0.59);
  box-shadow: 0px 10px 40px 0px rgba(0, 0, 0, 0.59);
  z-index: 999999;
  font-size: 17px;
  display: flex;
  justify-content: center;
}
#topline {
  position: relative;
  height: 35px;
  color: #258cfa;
  font-family: 'Nunito', 'Roboto', sans-serif;
  display: flex;
  justify-content: center;
}
#topline a {
  text-decoration: none;
}
#topline a:hover {
  text-decoration: underline;
}
#topline > .cont-flex {
  height: 100%;
  /*width: 1170px;*/
  /*width: 1055px;*/
}
#topline > .cont-flex .topline_text {
  height: 100%;
  width: 100%;
  align-self: center;
  font-size: 16px;
  font-weight: 600;
  display: flex;
  justify-content: flex-end;
}
#topline > .cont-flex .topline_text > div {
  position: relative;
  display: inline-flex;
  margin-left: 20px;
  align-self: center;
  top: 10px;
}
#topline > .cont-flex .topline_text > div.separator {
  font-weight: 600;
}
#topline > .cont-flex .topline_text > div > * {
  color: #258cfa;
  align-self: center;
}
#topline > .cont-flex .topline_text > div > i.fa + * {
  margin-left: 6px;
}
#topline > .cont-flex .topline_text > div img {
  max-width: 18px;
  max-height: 18px;
}
#topline > .cont-flex .topline_text > div.phone-top img + span {
  margin-left: 3px;
}
#topline > .cont-flex .topline_text > div.fb-top a {
  display: inline-flex;
  justify-content: center;
}
#topline > .cont-flex .topline_text > div.fb-top a > * {
  align-self: center;
}
#topline > .cont-flex .topline_text > div img + span {
  margin-left: 6px;
}
#topline > .cont-flex .topline_text > div a:hover {
  text-decoration: none;
}
#topline > .cont-flex .topline_divider {
  padding-right: 10px;
  padding-left: 14px;
}
#topline > .cont-flex .topline_fb a {
  color: #258cfa;
}
/*.exit-intent-popup {
    display: none;
    position: absolute;
    //display: flex;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 5;
    justify-content: center;
    align-items: center;

    > .overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: @base-blue-color;
        opacity: .6;
    }

    > .popup {
        display: inline-flex;
        border: 1px solid #6fcbc9;
        background-color: white;
        position: relative;
        z-index: 2;
        padding: 40px 60px;

        > .close-btn {
            width: 25px;
            height: 25px;
            position: absolute;
            right: 5px;
            top: 15px;
            cursor: pointer;
            opacity: .6;
        }

        > .left {
            > img {
                max-width: 210px;
            }
        }

        > .right {
            > h1 {
                margin-top: 20px;
            }
            max-width: 410px;
        }
    }
}*/
body #carousel-top .carousel-control.left,
body #carousel-top .carousel-control.right {
  display: none;
}
body .rating-h1 {
  text-align: center;
  margin-bottom: 50px;
}
body .fb-ratings {
  display: flex;
  flex-wrap: wrap;
}
body .fb-ratings .fb-rating {
  width: 50%;
  display: flex;
  flex-direction: column;
  margin-bottom: 50px;
}
body .fb-ratings .fb-rating:nth-child(even) {
  padding-left: 30px;
}
body .fb-ratings .fb-rating > .top {
  display: flex;
  justify-content: space-between;
  padding-bottom: 20px;
  text-decoration: none;
}
body .fb-ratings .fb-rating > .top:hover {
  color: inherit;
}
body .fb-ratings .fb-rating > .top > .name {
  font-weight: 800;
  display: flex;
  align-items: center;
}
body .fb-ratings .fb-rating > .top > .name > .photo {
  overflow: hidden;
  width: 60px;
  height: 60px;
  margin-right: 20px;
}
body .fb-ratings .fb-rating > .top > .name > .photo > img {
  border-radius: 50%;
  width: 100%;
  max-height: 100%;
}
body .fb-ratings .fb-rating > .top > .rating {
  display: flex;
  align-items: center;
}
body .fb-ratings .fb-rating > .top > .rating::after {
  display: inline-block;
  content: " ";
  background-image: url(/images/fb_icon.png);
  width: 31px;
  height: 31px;
}
body .fb-ratings .fb-rating > .top > .rating > .rating-star {
  height: 31px;
  width: 155px;
  background-image: url(/images/star.png);
  background-repeat: repeat-x;
  background-position-y: center;
  margin-right: 5px;
}
body .button-banner .box-l {
  width: 160px;
  height: 160px;
  margin: 5px;
  background-size: 100%;
  font-size: 16px;
  color: #fff;
}
body .button-banner .box-l > div {
  position: relative;
  display: flex;
  height: 100%;
  text-align: center;
  font-family: 'Nunito', 'Roboto', sans-serif;
  font-weight: 600;
  overflow: hidden;
}
body .button-banner .box-l > div div {
  position: absolute;
  height: 100%;
  width: 100%;
  transition: top 0.365s ease-out;
  left: 0;
}
body .button-banner .box-l > div .icon {
  background-repeat: no-repeat;
  background-position: center;
  background-size: 54px;
  z-index: 1;
  top: -160px;
}
body .button-banner .box-l > div .text {
  top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
body .button-banner .box-l > div:hover .icon {
  top: 0;
}
body .button-banner .box-l > div:hover .text {
  top: 160px;
}
body .button-banner .box-l.yellow {
  background-image: url(/images/asistent.jpg);
}
body .button-banner .box-l.yellow .icon {
  background-image: url(/images/assistant-white.png);
  background-color: #fcb117;
}
body .button-banner .box-l.blue {
  background-image: url(/images/pricelist/personal/cestovani.jpg);
}
body .button-banner .box-l.blue .icon {
  background-image: url(/images/globe-white.png);
  background-color: #258cfa;
}
body .button-banner .box-l.red {
  background-image: url(/images/kuryr.jpg);
}
body .button-banner .box-l.red .icon {
  background-image: url(/images/box-white.png);
  background-color: #ff7483;
}
body .button-banner .box-l.dark {
  background-image: url(/images/zamestnanci.jpg);
}
body .button-banner .box-l.dark .icon {
  background-image: url(/images/benefit-plus-white.png);
  background-color: #274567;
}
body .carousel .carousel-inner {
  height: 100%;
}
body .carousel .carousel-inner .carousel-caption > .left {
  flex: 100%;
  width: 550px;
}
body .carousel .carousel-inner .carousel-caption > .right {
  width: 100%;
}
body .carousel .carousel-inner .carousel-caption > .right > * {
  align-self: center;
}
body .aquarow {
  width: 100%;
  min-height: 310px;
  background-color: #258cfa;
  color: #ffffff;
  font-family: 'Nunito', 'Roboto', sans-serif;
  display: flex;
  justify-content: center;
}
body .aquarow .cont-flex {
  min-height: 310px;
  display: flex;
  justify-content: space-around;
}
body .aquarow .cont-flex .aqua-section {
  width: 205px;
  display: flex;
  flex-direction: column;
  align-self: center;
}
body .aquarow .cont-flex .aqua-section.separator {
  width: 70px;
  align-self: flex-start;
  margin-top: 76px;
}
body .aquarow .cont-flex .aqua-section.separator .arrow {
  align-self: center;
  font-size: 22px;
}
body .aquarow .cont-flex .aqua-section > div {
  padding: 0 10px;
}
body .aquarow .cont-flex .aqua-section > .top {
  font-size: 22pt;
}
body .aquarow .cont-flex .aqua-section > .bottom {
  padding-top: 25px;
  font-size: 16px;
}
body #tips {
  height: 310px;
  background: #fff;
}
body #tips > .container {
  display: flex;
  justify-content: center;
  align-self: center;
  height: 100%;
}
body #tips > .container > .left {
  align-self: center;
  padding-right: 50px;
}
body #tips > .container > .left img {
  max-width: 219px;
}
body #tips > .container > .right {
  display: flex;
  flex-direction: column;
  font-family: 'Nunito', 'Roboto', sans-serif;
  padding-left: 50px;
  padding-top: 55px;
  overflow: hidden;
  min-width: 520px;
}
body #tips > .container > .right > h2 {
  font-size: 35px;
  color: #496368;
  font-weight: 600;
  margin-bottom: 0;
}
body #tips > .container > .right > .text {
  font-size: 35px;
  color: #258cfa;
  font-weight: 700;
  position: relative;
}
body #tips > .container > .right > .text > .inner-text {
  /*position: absolute;*/
  display: none;
  /*width: 100%;*/
  width: auto;
  white-space: nowrap;
  overflow: hidden;
  border-right: 0.1em solid darkgrey;
  animation: blink-caret 0.75s step-end infinite;
}
body #tips > .container > .right > .text > .inner-text.fadeOutDown {
  position: absolute;
  animation: fadeOutDown 0.75s both;
}
body #tips > .container > .right > .text > .inner-text.active {
  /*display: inline-flex;*/
  display: block;
}
body #tips > .container > .right > .text > .inner-text.active.type {
  padding-right: 5px;
  animation: type 3s steps(58, end), blink-caret 0.75s step-end infinite;
}
body #tips > .container > .right h1#data-carousel-text {
  margin: 0;
  padding: 0 2px;
  font-size: 35px;
  color: #258cfa;
  font-weight: 700;
  white-space: nowrap;
  overflow: hidden;
  position: relative;
}
body #tips > .container > .right h1#data-carousel-text span {
  margin-left: 3px;
  color: darkgray;
  border-right: 0.05em solid;
  animation: caret 1s steps(1) infinite;
}
body #tips > .container > .right > a {
  align-self: flex-end;
  color: #496368;
  margin-top: 80px;
}
body #chatblock {
  padding: 60px 0;
  background-color: #bddcfd;
}
body #chatblock > .container {
  display: flex;
  justify-content: center;
}
body #chatblock > .container > .left {
  display: flex;
  flex-direction: column;
  width: 460px;
}
body #chatblock > .container > .right {
  display: flex;
  justify-content: center;
  padding: 100px;
}
body #chatblock > .container > .right > img {
  align-self: center;
  max-width: 134px;
}
body .counter-container > .container {
  display: flex;
  justify-content: center;
  font-family: 'Nunito', 'Roboto', sans-serif;
  color: #258cfa;
}
body .counter-container > .container > .counter-block {
  font-size: 28px;
  font-weight: 600;
  padding: 50px 30px 40px 30px;
}
body .counter-container > .container > .counter-block > .counter {
  font-size: 29px;
  font-weight: 800;
}
body .counter-container > .container > .counter-block.user {
  font-weight: 700;
  font-size: 35px;
}
body .counter-container > .container > .counter-block.user > .counter {
  font-weight: 700;
  font-size: 35px;
}
body #references-carousel .reference_carousel .container {
  font-family: 'Nunito', 'Roboto', sans-serif;
  display: flex;
  width: 615px;
  padding: 10px;
}
body #references-carousel .reference_carousel .container .left {
  width: 140px;
  height: 140px;
  overflow: hidden;
  /*background-color: @base-font-color;*/
}
body #references-carousel .reference_carousel .container .left > img {
  position: relative;
  max-height: 150px;
}
body #references-carousel .reference_carousel .container .right {
  min-height: 140px;
  padding-left: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex: 1;
  font-size: 16px;
}
body #references-carousel .reference_carousel .container .right > .top {
  position: relative;
  overflow: hidden;
  max-height: 170px;
  min-height: 120px;
}
body #references-carousel .reference_carousel .container .right > .top::after {
  content: "";
  text-align: right;
  position: absolute;
  bottom: 0;
  right: 0;
  width: 30%;
  height: 19px;
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.01) 1%, #ffffff 85%, #ffffff 100%);
}
body #try-it-free-btn-section .container {
  display: flex;
  justify-content: center;
  padding-bottom: 100px;
  padding-top: 30px;
}
body .chatsection {
  width: 460px;
  display: flex;
  flex-direction: column;
  padding: 0 20px;
}
body .chatsection.full-w {
  width: 670px;
  align-items: center;
}
body .chatsection.no-home .chatwindow {
  margin-bottom: 13px;
  align-self: flex-start;
}
body .chatsection.no-home .chatwindow.me {
  align-self: flex-end;
}
body .chatsection .onelinesection {
  display: flex;
  justify-content: center;
  padding: 25px 0;
}
body .chatsection .onelinesection .chatwindow {
  margin-right: 23px;
}
body .chatsection .onelinesection .chatwindow:last-child {
  margin-left: 0;
}
body .chatsection .chatwindow {
  font-family: 'Nunito', 'Roboto', sans-serif;
  position: relative;
  padding: 20px 25px;
  background-color: #ffffff;
  color: #496368;
  font-size: 12pt;
  max-width: 400px;
}
body .chatsection .chatwindow .last {
  margin-bottom: 0;
}
body .chatsection .chatwindow::before {
  font-family: 'Glyphicons Halflings';
  content: "\e072";
  font-size: 24px;
  position: absolute;
  display: block;
  top: 10px;
}
body .chatsection .chatwindow:not(.me)::before {
  transform: rotate(180deg);
  color: #ffffff;
  left: -19px;
}
body .chatsection .chatwindow.me {
  background-color: #258cfa;
  color: #ffffff;
}
body .chatsection .chatwindow.me::before {
  color: #258cfa;
  right: -19px;
}
body .chatsection .chatwindow.blue {
  background-color: #274567;
  color: white;
}
body .chatsection .chatwindow.blue::before {
  color: #274567;
}
body .chatsection .chatwindow.yellow {
  background-color: #faa323;
  color: white;
}
body .chatsection .chatwindow.yellow::before {
  color: #faa323;
}
body .chatsection .chatwindow.red {
  background-color: #ff7483;
  color: white;
}
body .chatsection .chatwindow.red::before {
  color: #ff7483;
}
body #timi-comm-section {
  display: flex;
  justify-content: center;
  padding-bottom: 100px;
}
body #timi-comm-section .timi-comm a {
  display: inline-flex;
  align-items: center;
  padding: 0 23px;
}
body #timi-comm-section .timi-comm a.hn > img {
  max-width: 274px;
}
body #timi-comm-section .timi-comm a.idnes > img {
  max-width: 124px;
}
body #timi-comm-section .timi-comm a.lidovky > img {
  max-width: 155px;
}
body #timi-comm-section .timi-comm a.internety > img {
  max-width: 250px;
}
body .full-line {
  width: 100%;
  display: flex;
  justify-content: center;
}
body .full-line.reference {
  height: 430px;
  margin-top: -60px;
}
body .full-line.reference > .middle-body {
  width: 1200px;
  max-width: 100%;
}
body .full-line.reference > .middle-body > .pre-content {
  display: flex;
  width: 100%;
  overflow: hidden;
}
body .full-line.reference > .middle-body > .pre-content > .content {
  display: flex;
  justify-content: flex-start;
  overflow: hidden;
  width: 1785px;
  height: 415px;
  position: relative;
  left: 20px;
}
body .ref-dot-cont {
  display: none;
  width: 100%;
  margin-top: 0;
  justify-content: center;
}
body .ref-dot-cont .ref-dot {
  cursor: pointer;
  width: 15px;
  height: 15px;
  margin: 2pt;
  border-radius: 50%;
  border: 2px solid #5a5a5a;
}
body .ref-dot-cont .ref-dot.active {
  border-color: #258cfa;
}
body .d-line {
  width: 100%;
  margin-bottom: 0;
  margin-top: 0;
  height: 1px;
  display: flex;
  justify-content: center;
}
body .d-line .d-line .d-line-short {
  height: 3pt;
  width: 30pt;
}
body .box-viewer {
  display: flex;
  margin-top: 35px;
  position: relative;
  right: 0;
  transition: right ease 0.365s;
}
body .box-viewer * {
  transition: all ease 0.125s;
}
body .box-viewer .reference-box {
  display: flex;
  align-items: center;
  width: 430px;
  height: 323px;
  position: relative;
  background-color: #000;
  color: #2c2c2c;
  font-size: 11pt;
  margin: 20px 10px;
  cursor: pointer;
  transition: all 0.365 ease-out;
}
body .box-viewer .reference-box > img {
  display: none;
  max-width: 100%;
  max-height: 100%;
}
body .box-viewer .reference-box iframe {
  max-width: 100%;
  max-height: 100%;
}
body .box-viewer .reference-box.active + .no-active {
  display: block;
}
body .box-viewer .reference-box.no-active {
  /*display: none;*/
  opacity: 0.5;
  width: 340px;
  height: 255px;
  align-self: center;
}
body .box-viewer .reference-box.no-active::after {
  font-family: 'Glyphicons Halflings';
  content: "";
  color: white;
  position: absolute;
  font-size: 72px;
  color: #fef9f9;
  top: 70px;
  left: 140px;
  opacity: 0.8;
}
body .box-viewer .reference-box.no-active > img {
  display: block;
}
body .box-viewer .reference-box.no-active iframe {
  display: none;
}
body .box-viewer .reference-box.no-active.prev {
  display: block;
}
body .box-viewer .reference-box.no-active.empty {
  background-color: transparent;
  box-shadow: none;
  /*display: none;*/
}
body .box-viewer .reference-box.no-active.empty.prev {
  display: block;
}
body .box-viewer .reference-box.no-active > .logo {
  width: 60px;
  height: 60px;
  left: calc(50%-30px);
  top: -30px;
}
body .box-viewer .reference-box.no-active > .logo > img {
  max-width: 45px;
  max-height: 45px;
}
body .box-viewer .reference-box.no-active > .text {
  font-size: 10pt;
  max-height: 197px;
  padding: 44px 20px;
}
@keyframes type {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}
@keyframes caret {
  50% {
    border-color: transparent;
  }
}
#page-wrapper {
  padding-bottom: 355px;
}
body #footer {
  padding-top: 60px;
  background-color: #052b54;
  font-size: 20px;
  font-family: 'Nunito', 'Roboto', sans-serif;
  font-weight: 600;
  color: #ffffff;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
}
body #footer span.sm {
  font-size: 17px;
  font-weight: 500;
}
body #footer span.sm a {
  color: #ffffff;
  text-decoration: none;
}
body #footer span.sm a:hover {
  text-decoration: underline;
}
body #footer .left,
body #footer .right {
  padding-right: 50px;
  min-width: 150px;
  height: 200px;
}
body #footer .left .menu-item a,
body #footer .left .menu-item a:hover,
body #footer .left .menu-item a:focus {
  color: #ffffff;
}
body #footer .left .menu-item a {
  text-decoration: none;
}
body #footer .left .menu-item a:hover {
  text-decoration: underline;
}
body #footer .bottom {
  padding: 15px 0;
  color: #ffffff;
}
body #footer .bottom.logos-group a {
  display: inline-block;
  margin-right: 30px;
}
body #footer .bottom.logos-group a img {
  height: 30px;
}
body #footer .bottom .copyright {
  font-size: 16px;
  padding: 10px 60px;
  border-top: 1px solid #ffffff;
}
body .example-block-full {
  margin-top: 25px;
}
body .example-block-full .example-block {
  font-family: 'Nunito', 'Roboto', sans-serif;
  /*ul {
                padding: 30px 0;

                > li {
                    list-style: none;
                    font-size: @base-font-size;
                    margin-bottom: 5px;

                    &::before {
                        content: "• ";
                        margin-right: 3px;
                        color: @base-blue-color;
                    }
                }
            }*/
}
body .example-block-full .example-block.top > .container > .left {
  padding-right: 120px;
}
body .example-block-full .example-block.top > .container > .right > img {
  max-width: 470px;
}
body .example-block-full .example-block.bottom > .container > .left > img {
  max-width: 440px;
  padding-right: 20px;
}
body .example-block-full .example-block.bottom > .container > .right {
  padding-right: 120px;
}
body .example-block-full .example-block h2 {
  font-size: 35px;
  color: #258cfa;
  font-weight: 700;
  text-transform: none;
}
body .example-block-full .example-block h3 {
  color: #496368;
  font-weight: 500;
  font-size: 30px;
  margin-bottom: 30px;
}
body .example-block-full .example-block h5 {
  color: #496368;
  font-weight: 700;
  font-size: 18px;
  margin: 0;
}
body .example-block-full .example-block strong {
  color: #258cfa;
}
body .example-block-full .example-block ul {
  padding: 30px 0;
}
body .example-block-full .example-block.chat {
  padding-bottom: 80px;
}
body .example-block-full .example-block.chat .chatwindow:not(.me) {
  background-color: #bddcfd;
}
body .example-block-full .example-block.chat .chatwindow:not(.me):not(.me)::before {
  color: #bddcfd;
}
body #faq {
  font-family: 'Nunito', 'Roboto', sans-serif;
}
body #faq .right {
  position: relative;
  width: 300pt;
}
body #faq .right > .question-section {
  position: absolute;
  min-height: 480pt;
  width: 300pt;
  background-color: #bddcfd;
  padding: 35px 20px;
  /*margin-top: 130px;*/
  display: inline-block;
}
body #faq .right > .question-section h5 {
  font-size: 16pt;
  font-weight: 800;
  margin-bottom: 35px;
}
body #faq .right > .question-section > a {
  width: 100%;
  margin-top: 5px;
  display: inline-block;
  font-size: 13pt;
  color: #496368;
  text-decoration: underline;
}
body #faq .right > .question-section > a:hover,
body #faq .right > .question-section > a.selected {
  text-decoration: none;
  color: #258cfa;
  font-weight: 700;
}
body #faq .left {
  width: 100%;
}
body #faq .left h1 {
  font-size: 32pt;
  color: #258cfa;
  font-weight: 700;
  margin-bottom: 50px;
  margin-top: 50px;
}
body #faq .left h2 {
  font-weight: 600;
  margin-top: 60px;
  margin-bottom: 35px;
}
.answer-section:first-child body #faq .left h2 {
  margin-top: 0;
}
body #faq .left .answer-section > .answer-subsection {
  width: 480pt;
  font-size: 13pt;
  font-weight: 300;
}
body #faq .left .answer-section > .answer-subsection a {
  font-size: 13pt;
  color: #496368;
  text-decoration: underline;
}
body #faq .left .answer-section > .answer-subsection a:hover {
  text-decoration: none;
  color: #258cfa;
}
body #registration-page {
  font-family: 'Nunito', 'Roboto', sans-serif;
  padding-bottom: 100px;
  max-width: 100%;
}
body #registration-page h1 {
  font-weight: 700;
  color: #258cfa;
  margin-bottom: 35px;
}
body #registration-page h3 {
  font-size: 20pt;
  color: #496368;
  margin-bottom: 50px;
  margin-top: 30px;
}
body #registration-page h4 {
  margin: 25px 0;
  font-weight: 700;
  color: #496368;
}
body #registration-page > .container > .left {
  width: 540px;
  flex: 100%;
}
body #registration-page > .container > .left .btn-facebook,
body #registration-page > .container > .left .btn-google {
  padding: 8px 20px;
}
body #registration-page > .container > .left .btn-facebook > *,
body #registration-page > .container > .left .btn-google > * {
  align-self: center;
}
body #registration-page > .container > .right {
  width: 100%;
  padding-left: 90px;
}
body #registration-page > .container > .right > .image-center img {
  margin-top: 70px;
  max-width: 160px;
}
body #registration-page > .container > .right > .texts {
  width: 380px;
}
body #blog {
  font-family: 'Nunito', 'Roboto', sans-serif;
}
body #blog h2 {
  margin-top: 70px;
  margin-left: 10px;
  margin-bottom: 35px;
}
body #blog .blog-blocks {
  flex-wrap: wrap;
}
body #blog .blog-blocks .blog-block {
  width: 220px;
  height: 385px;
  margin: 10px;
}
body #blog .blog-blocks .blog-block.timi {
  border-color: transparent;
}
body #blog .blog-blocks .blog-block.timi > .top {
  display: flex;
  justify-content: center;
  margin: 20px 0;
  flex: 1;
}
body #blog .blog-blocks .blog-block.timi > .top video,
body #blog .blog-blocks .blog-block.timi > .top img.no-video {
  max-width: 132px;
  max-height: 133px;
}
body #blog .blog-blocks .blog-block.timi > .bottom {
  height: 210px;
  padding-bottom: 55px;
}
body #blog .blog-blocks .blog-block.timi > .bottom > .name {
  padding: 0 10px;
  font-size: 16px;
  text-align: center;
}
body #blog .blog-blocks .blog-block > a {
  display: flex;
  flex-direction: column;
  color: inherit;
  text-decoration: none;
  height: 100%;
}
body #blog .blog-blocks .blog-block > a:hover {
  color: inherit;
  text-decoration: none;
}
body #blog .blog-blocks .blog-block > a > .top {
  height: 215px;
  width: 100%;
  /*background-color: #ebebeb;*/
  margin-bottom: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
}
body #blog .blog-blocks .blog-block > a > .top img {
  max-width: 218px;
  max-height: 215px;
}
body #blog .blog-blocks .blog-block > a > .bottom {
  flex: 1;
  height: 100%;
  padding: 25px 0;
}
body #blog .blog-blocks .blog-block > a > .bottom > .name {
  font-weight: 700;
  max-height: 80px;
  overflow: hidden;
  height: 100%;
  font-size: 15px;
  position: relative;
}
body #blog .blog-blocks .blog-block > a > .bottom > .name::after {
  content: "";
  text-align: right;
  position: absolute;
  bottom: 0;
  right: 0;
  width: 70%;
  height: 19px;
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.01) 1%, #ffffff 85%, #ffffff 100%);
}
@media (max-width: 600px) {
  body #blog .blog-blocks .blog-block {
    width: 100%;
  }
}
body #blog-article {
  font-family: 'Nunito', 'Roboto', sans-serif;
}
body #blog-article .contact-form .contact-line.heading h2 {
  font-size: 30px;
}
body #blog-article .cont-flex > .left {
  min-width: 470px;
  padding-right: 15px;
}
body #blog-article .cont-flex > .left .article {
  margin: 30px 0;
  font-size: 16px;
}
body #blog-article .cont-flex > .left .shared-section {
  margin-bottom: 100px;
}
body #blog-article .cont-flex > .left .shared-section img {
  max-height: 36px;
}
body #blog-article .cont-flex > .left .shared-section > a {
  margin-right: 50px;
}
body #blog-article .cont-flex > .left .shared-section > a.facebook {
  margin-right: 55px;
}
body #blog-article .cont-flex > .left .shared-section > a.google {
  margin-right: 40px;
}
body #blog-article .cont-flex > .left .pre-contact-form {
  font-size: 16px;
  font-weight: 700;
}
body #blog-article .cont-flex > .right {
  max-width: 300px;
  flex-wrap: wrap;
}
body #blog-article .cont-flex > .right .left-container {
  width: 300px;
  border-top: 1px solid #258cfa;
  display: flex;
  flex-direction: column;
  margin-top: 50px;
}
body #blog-article .cont-flex > .right .left-container h2 {
  color: #496368;
  font-weight: 500;
}
body #blog-article .cont-flex > .right .left-container h3 {
  text-transform: uppercase;
  color: #258cfa;
  font-weight: 700;
  text-align: center;
  margin-bottom: 5px;
}
body #blog-article .cont-flex > .right .left-container > .left-c-secion {
  width: 100%;
  display: inline-flex;
  justify-content: center;
  padding: 0 40px;
}
body #blog-article .cont-flex > .right .left-container > .left-c-secion > * {
  display: inline-block;
  max-width: 100%;
}
body #blog-article .cont-flex > .right .left-container > .left-c-secion > video,
body #blog-article .cont-flex > .right .left-container > .left-c-secion > img.no-video {
  max-width: 300px;
  max-height: 165px;
}
body #blog-article .cont-flex > .right .left-container > .left-c-secion.bottom {
  height: 210px;
  /*padding-bottom: 45px;*/
  justify-content: space-between;
}
body #blog-article .cont-flex > .right .left-container > .left-c-secion.bottom > .name {
  padding: 0 10px;
  font-size: 16px;
  text-align: center;
}
body #blog-article .cont-flex > .right .left-container > .left-c-secion.reg-advantage {
  margin-bottom: 20px;
}
body #blog-article .cont-flex > .right .left-container > .left-c-secion.reg-advantage > * {
  align-self: center;
}
body #blog-article .cont-flex > .right .left-container > .left-c-secion.reg-advantage > .reg-advantage {
  color: #258cfa;
  font-size: 18px;
  font-weight: 700;
}
body #blog-article .cont-flex > .right .left-container > .left-c-secion.reg-advantage > img {
  margin: 10px 0;
}
body #blog-article .cont-flex > .right .left-container > .left-c-secion.list {
  padding: 0;
}
body #blog-article .cont-flex > .right .left-container > .left-c-secion.list strong {
  color: #496368;
}
body #blog-article .cont-flex > .right .left-container > .left-c-secion.list > a {
  display: inline-flex;
}
body #our-story {
  font-family: 'Nunito', 'Roboto', sans-serif;
  font-weight: 300;
}
body #our-story .story-text {
  font-size: 16px;
}
body #our-story .story-text strong {
  color: #496368;
}
body #our-story .story-img {
  padding: 0 75px;
}
body #our-story .story-img img {
  max-width: 423px;
}
body #our-story .story-timeline .timeline-year-btn {
  align-items: center;
  margin-left: -1px;
}
body #our-story .story-timeline .timeline-year-btn > * {
  display: inline-block;
}
body #our-story .story-timeline .timeline-year-btn > .year-btn {
  pointer-events: none;
  font-weight: 600;
  text-transform: none;
}
body #our-story .story-timeline .timeline-year-btn > .ti-line-vert {
  width: 1px;
  height: 25px;
  background-color: #258cfa;
}
body #our-story .story-timeline .timeline-item {
  display: flex;
  max-width: 500px;
  flex-direction: column;
}
body #our-story .story-timeline .timeline-item.empty {
  width: 100%;
  height: 165px;
}
body #our-story .story-timeline .timeline-item > .ti-line {
  align-self: flex-end;
  height: 1px;
  background-color: #258cfa;
  width: 390px;
}
body #our-story .story-timeline .timeline-item > .ti-block {
  padding-top: 25px;
  display: flex;
  padding-bottom: 30px;
}
body #our-story .story-timeline .timeline-item > .ti-block > .ti-text {
  width: 50%;
  font-size: 16px;
  padding-top: 25px;
}
body #our-story .story-timeline .timeline-item > .ti-block > .ti-text h2 {
  color: #496368;
  margin: 0;
  font-weight: 500;
}
body #our-story .story-timeline .timeline-item > .ti-block > .ti-img {
  width: 50%;
  padding: 25px;
  padding-top: 0;
}
body #our-story .story-timeline .timeline-item > .ti-block > .ti-img > img {
  max-width: 100%;
}
body #our-story .story-timeline > .story-timeline-block {
  justify-content: center;
}
body #our-story .story-timeline > .story-timeline-block > .left {
  width: 500px;
  border-right: 1px solid #258cfa;
}
body #our-story .story-timeline > .story-timeline-block > .right {
  width: 500px;
}
body #our-story .story-timeline > .story-timeline-block > .right > .timeline-item > .ti-line {
  align-self: flex-start;
}
body #our-story .story-timeline > .story-timeline-block > .right > .timeline-item > .ti-block > .ti-text {
  order: 2;
}
body #our-story .story-timeline > .story-timeline-block > .right > .timeline-item > .ti-block > .ti-img {
  order: 1;
}
body #profil {
  font-family: 'Nunito', 'Roboto', sans-serif;
}
body #profil .nav-tabs {
  border-color: #258cfa;
  color: #496368;
  padding-left: 25px;
  position: relative;
}
body #profil .nav-tabs > li {
  text-align: center;
  margin-bottom: -1px;
}
body #profil .nav-tabs > li:not(.individual).active > a {
  border-color: #258cfa;
  border-bottom-color: transparent;
  border-left: 0;
  font-weight: 700;
  border-bottom: 0;
}
body #profil .nav-tabs > li:not(.individual).active > a:hover,
body #profil .nav-tabs > li:not(.individual).active > a:focus {
  border: 1px solid #258cfa;
  border-left: 0;
  border-bottom: 0;
}
body #profil .nav-tabs > li:not(.individual):first-child > a {
  border-left: 1px solid #258cfa;
}
body #profil .nav-tabs > li:not(.individual):first-child > a:hover,
body #profil .nav-tabs > li:not(.individual):first-child > a:focus {
  border-left: 1px solid #258cfa;
}
body #profil .nav-tabs > li:not(.individual) > a {
  border-radius: 0;
  border: 1px solid #258cfa;
  border-bottom: 0;
  margin-right: 0;
  border-left: 0;
  min-width: 125px;
}
body #profil .nav-tabs > li:not(.individual) > a:hover {
  border-color: #258cfa;
  background-color: #258cfa;
  color: #ffffff;
}
body #profil .nav-tabs > li#new-task {
  position: absolute;
  right: 25px;
  bottom: 1px;
}
body #profil .nav-tabs > li#new-task > a {
  border-radius: 0;
  border: none;
}
body #profil .nav-tabs > li#new-task > a:hover {
  color: #ffffff;
}
body #profil #ucet .profile-form h2 {
  margin-top: 10px;
  margin-bottom: 30px;
  color: #496368;
  font-weight: 500;
}
body #profil #ucet .profile-form > .left {
  width: 50%;
}
body #profil #ucet .profile-form > .right {
  padding-left: 50px;
}
body #profil #ucet .profile-form > .right > .price-section {
  margin-bottom: 60px;
}
body #profil #ucet .profile-form > .right > .circle-section {
  margin-top: 70px;
}
body #profil #ucet .profile-form > .right > .circle-section > .circle-block img {
  background-image: url(/images/done-circle-grey.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100%;
  width: 65px;
  height: 65px;
}
body #profil #ucet .profile-form > .right > .circle-section > .circle-block .left {
  margin-left: 20px;
  margin-bottom: 40px;
  color: #496368;
}
body #profil #ucet .profile-form > .right > .circle-section > .circle-block .left > .top {
  font-weight: 700;
  font-size: 22px;
}
body #profil #ucet .profile-form > .right > .circle-section > .circle-block .left > .bottom {
  font-size: 18px;
}
body #profil #ucet .profile-form > .right > .circle-section > .circle-block.active img {
  background-image: url(/images/drawn-icon_done-circle.png);
}
body #profil #ucet .profile-form > .right > .circle-section > .circle-block.active .left {
  color: #258cfa;
}
body #profil #ucet .profile-form > .right > .circle-section > .circle-block.active .left > .bottom {
  color: #496368;
}
body #profil #discount .take-task {
  margin-bottom: 30px;
}
body #profil #discount .take-task h2 {
  font-weight: 500;
  color: #496368;
}
body #profil #discount .take-task > .left {
  width: 50%;
}
body #profil #discount .take-task > .left h2 {
  margin-top: 15px;
}
body #profil #discount .take-task > .left > span {
  color: #496368;
}
body #profil #discount .take-task > .right {
  margin-top: 20px;
  width: 50%;
}
body #profil #discount .take-task > .right > img {
  max-width: 100%;
  max-height: 100%;
}
body #profil #discount .promo-progress {
  margin-bottom: 30px;
}
body #profil #discount .promo-progress .week-block {
  display: flex;
  width: 18%;
  max-width: 18%;
  min-width: 18%;
  font-size: 16px;
  font-weight: 700;
}
body #profil #discount .promo-progress > .top {
  display: flex;
  height: 36px;
  margin-bottom: 10px;
}
body #profil #discount .promo-progress > .top > .week-block {
  justify-content: center;
  align-self: center;
}
body #profil #discount .promo-progress > .middle {
  display: flex;
}
body #profil #discount .promo-progress > .middle > .week-block {
  position: relative;
  justify-content: center;
  /*> .right {
                            border-right: 4px solid @base-font-color;
                        }*/
}
body #profil #discount .promo-progress > .middle > .week-block > div {
  position: relative;
  height: 20px;
  width: 50%;
}
body #profil #discount .promo-progress > .middle > .week-block > div::after {
  content: " ";
  height: 3px;
  width: 100%;
  top: -4px;
  position: relative;
  display: inline-block;
  background-color: #496368;
}
body #profil #discount .promo-progress > .middle > .week-block > .left {
  border-left: 3px solid #496368;
}
body #profil #discount .promo-progress > .middle > .week-block.blue > div {
  background-color: #258cfa;
}
body #profil #discount .promo-progress > .middle > .week-block.blue > div::after {
  content: none;
}
body #profil #discount .promo-progress > .middle > .week-block.blue > .left {
  border-color: white;
}
body #profil #discount .promo-progress > .middle > .week-block.blue.end {
  justify-content: flex-start;
  /*width: 60px;*/
  max-width: 20px;
  min-width: 20px;
  width: 20px;
}
body #profil #discount .promo-progress > .middle > .week-block.blue.end > .right {
  font-family: 'Glyphicons Halflings';
  font-style: normal;
  font-weight: normal;
  line-height: 1;
  background-color: transparent;
  display: flex;
  /*&::before {
                                        content: " ";
                                        display: inline-block;
                                        height: 100%;
                                        width: 50%;
                                        background-color: @base-blue-color;
                                    }*/
}
body #profil #discount .promo-progress > .middle > .week-block.blue.end > .right::after {
  width: 50%;
  height: 100%;
  content: "";
  background-color: transparent;
  font-size: 24px;
  position: relative;
  left: -6px;
  top: -2px;
  color: #258cfa;
}
body #profil #discount .promo-progress > .middle > .week-block.half-blue {
  /*> .left {
                                background-color: @base-blue-color;

                                &::after {
                                    content: none;
                                }
                            }*/
}
body #profil #discount .promo-progress > .middle > .week-block.half-blue > .right {
  background-color: #258cfa;
}
body #profil #discount .promo-progress > .middle > .week-block.half-blue > .right::after {
  content: none;
}
body #profil #discount .promo-progress > .middle > .week-block > .img {
  position: relative;
  height: 1px;
  width: 1px;
}
body #profil #discount .promo-progress > .middle > .week-block > .img > img {
  position: absolute;
  width: 45px;
  height: 45px;
  z-index: 1;
  top: -13px;
  left: -23px;
}
body #profil #discount .promo-progress > .middle > .week-block > img {
  position: absolute;
  width: 45px;
  height: 45px;
  z-index: 1;
  top: -14px;
  left: 38px;
  transform: translateX(50%);
}
body #profil #discount .promo-progress > .bottom {
  display: flex;
  margin-top: 25px;
}
body #profil #discount .promo-progress > .bottom > .week-block {
  padding: 0 10px;
  display: block;
  text-align: center;
  justify-content: center;
}
body #profil #discount .promo-progress > .bottom > .week-block strong.blue {
  color: #258cfa;
}
body #profil #promo .how-this-works {
  padding-top: 70px;
  padding-bottom: 70px;
}
body #profil #promo .how-this-works h2 {
  font-weight: 600;
  margin-top: 40px;
  margin-bottom: 30px;
  font-size: 30px;
  color: #496368;
}
body #profil #promo .how-this-works > .blocks > .block {
  padding-right: 25px;
  border-top: 3px solid #258cfa;
  width: 230px;
}
body #profil #promo .how-this-works > .blocks > .block:last-child {
  border-top: 0;
}
body #profil #promo .how-this-works > .blocks > .block > img.logo {
  width: 50px;
  height: 50px;
  position: relative;
  top: -25px;
}
body #profil #promo .how-this-works > .blocks > .block > h5 {
  font-size: 17px;
  font-weight: 700;
  color: #258cfa;
  margin-top: -15px;
  margin-bottom: 30px;
}
body #profil #promo .how-this-works > .blocks > .block > span {
  font-size: 16px;
  color: #496368;
}
body #profil #promo .promo-top-title h2 {
  font-weight: 600;
  margin-top: 40px;
  margin-bottom: 30px;
  font-size: 30px;
  color: #496368;
}
body #profil #promo .promo-top-title > div {
  width: 50%;
}
body #profil #promo .promo-top-title > .left h2 {
  font-weight: 500;
  color: #496368;
}
body #profil #promo .promo-top-title > .right h2 {
  font-weight: 700;
  color: #258cfa;
}
body #profil #promo .promo-top-title > .right h2 + h2 {
  margin-left: 35px;
}
body #profil #promo .promo-link-section > .left {
  margin-right: 10px;
}
body #profil #promo .promo-link-section > .left > a:first-child {
  margin-bottom: 10px;
}
body #profil #promo .promo-link-section > .right {
  width: 100%;
}
body #profil #promo .promo-link-section > .right #promo_link_cont {
  width: 100%;
}
body #profil #promo .promo-link-section > .right #promo_link_cont .left > span {
  font-size: 18px;
  font-weight: 700;
  color: #496368;
}
body #profil #ukoly #list thead tr {
  background-color: #258cfa;
  color: #ffffff;
}
body #profil #ukoly .table > thead,
body #profil #ukoly .table > tbody,
body #profil #ukoly .table > tfoot {
  border-bottom: 1px solid #258cfa;
}
body #profil #ukoly .table > thead > tr > th,
body #profil #ukoly .table > tbody > tr > th,
body #profil #ukoly .table > tfoot > tr > th {
  font-weight: 700;
}
body #profil #ukoly .table > thead > tr > td,
body #profil #ukoly .table > tbody > tr > td,
body #profil #ukoly .table > tfoot > tr > td,
body #profil #ukoly .table > thead > tr > th,
body #profil #ukoly .table > tbody > tr > th,
body #profil #ukoly .table > tfoot > tr > th {
  border-top: 1px solid #258cfa;
}
body #profil #ukoly .table > thead > tr > td.price:not(.no-value)::after,
body #profil #ukoly .table > tbody > tr > td.price:not(.no-value)::after,
body #profil #ukoly .table > tfoot > tr > td.price:not(.no-value)::after,
body #profil #ukoly .table > thead > tr > th.price:not(.no-value)::after,
body #profil #ukoly .table > tbody > tr > th.price:not(.no-value)::after,
body #profil #ukoly .table > tfoot > tr > th.price:not(.no-value)::after {
  content: attr(data-format-after-css);
}
body #profil #ukoly .table > thead > tr > td.price.discount,
body #profil #ukoly .table > tbody > tr > td.price.discount,
body #profil #ukoly .table > tfoot > tr > td.price.discount,
body #profil #ukoly .table > thead > tr > th.price.discount,
body #profil #ukoly .table > tbody > tr > th.price.discount,
body #profil #ukoly .table > tfoot > tr > th.price.discount {
  font-weight: 700;
}
body #profil #ukoly .table > thead > tr > td:not(.no-rating) > div,
body #profil #ukoly .table > tbody > tr > td:not(.no-rating) > div,
body #profil #ukoly .table > tfoot > tr > td:not(.no-rating) > div,
body #profil #ukoly .table > thead > tr > th:not(.no-rating) > div,
body #profil #ukoly .table > tbody > tr > th:not(.no-rating) > div,
body #profil #ukoly .table > tfoot > tr > th:not(.no-rating) > div {
  pointer-events: none;
}
body #profil #ukoly .table > thead > tr > td.name,
body #profil #ukoly .table > tbody > tr > td.name,
body #profil #ukoly .table > tfoot > tr > td.name,
body #profil #ukoly .table > thead > tr > th.name,
body #profil #ukoly .table > tbody > tr > th.name,
body #profil #ukoly .table > tfoot > tr > th.name {
  font-weight: 700;
}
body #profil #ukoly .table > thead > tr > td > .rating,
body #profil #ukoly .table > tbody > tr > td > .rating,
body #profil #ukoly .table > tfoot > tr > td > .rating,
body #profil #ukoly .table > thead > tr > th > .rating,
body #profil #ukoly .table > tbody > tr > th > .rating,
body #profil #ukoly .table > tfoot > tr > th > .rating {
  cursor: pointer;
  padding: 5px 10px;
  width: 43px;
  height: 43px;
  display: inline-block;
  background: no-repeat center center;
  background-size: contain;
  background-image: url("/images/cube_grey.png");
}
body #profil #ukoly .table > thead > tr > td > .rating.terrible,
body #profil #ukoly .table > tbody > tr > td > .rating.terrible,
body #profil #ukoly .table > tfoot > tr > td > .rating.terrible,
body #profil #ukoly .table > thead > tr > th > .rating.terrible,
body #profil #ukoly .table > tbody > tr > th > .rating.terrible,
body #profil #ukoly .table > tfoot > tr > th > .rating.terrible {
  background-image: url("/images/laugh-neutral-sad_sad.png");
}
body #profil #ukoly .table > thead > tr > td > .rating.its-fine,
body #profil #ukoly .table > tbody > tr > td > .rating.its-fine,
body #profil #ukoly .table > tfoot > tr > td > .rating.its-fine,
body #profil #ukoly .table > thead > tr > th > .rating.its-fine,
body #profil #ukoly .table > tbody > tr > th > .rating.its-fine,
body #profil #ukoly .table > tfoot > tr > th > .rating.its-fine {
  background-image: url("/images/laugh-neutral-sad_neutral.png");
}
body #profil #ukoly .table > thead > tr > td > .rating.awesome,
body #profil #ukoly .table > tbody > tr > td > .rating.awesome,
body #profil #ukoly .table > tfoot > tr > td > .rating.awesome,
body #profil #ukoly .table > thead > tr > th > .rating.awesome,
body #profil #ukoly .table > tbody > tr > th > .rating.awesome,
body #profil #ukoly .table > tfoot > tr > th > .rating.awesome {
  background-image: url("/images/laugh-neutral-sad_laugh.png");
}
body #profil #ukoly .table > thead > tr > td > .rating.dark,
body #profil #ukoly .table > tbody > tr > td > .rating.dark,
body #profil #ukoly .table > tfoot > tr > td > .rating.dark,
body #profil #ukoly .table > thead > tr > th > .rating.dark,
body #profil #ukoly .table > tbody > tr > th > .rating.dark,
body #profil #ukoly .table > tfoot > tr > th > .rating.dark {
  background-image: url("/images/cube_grey.png");
}
body #profil #ukoly .table > thead > tr > td.rate-1 > .its-fine,
body #profil #ukoly .table > tbody > tr > td.rate-1 > .its-fine,
body #profil #ukoly .table > tfoot > tr > td.rate-1 > .its-fine,
body #profil #ukoly .table > thead > tr > th.rate-1 > .its-fine,
body #profil #ukoly .table > tbody > tr > th.rate-1 > .its-fine,
body #profil #ukoly .table > tfoot > tr > th.rate-1 > .its-fine,
body #profil #ukoly .table > thead > tr > td.rate-1 > .awesome,
body #profil #ukoly .table > tbody > tr > td.rate-1 > .awesome,
body #profil #ukoly .table > tfoot > tr > td.rate-1 > .awesome,
body #profil #ukoly .table > thead > tr > th.rate-1 > .awesome,
body #profil #ukoly .table > tbody > tr > th.rate-1 > .awesome,
body #profil #ukoly .table > tfoot > tr > th.rate-1 > .awesome {
  background-image: url("/images/cube_grey.png");
}
body #profil #ukoly .table > thead > tr > td.rate-2 > .terrible,
body #profil #ukoly .table > tbody > tr > td.rate-2 > .terrible,
body #profil #ukoly .table > tfoot > tr > td.rate-2 > .terrible,
body #profil #ukoly .table > thead > tr > th.rate-2 > .terrible,
body #profil #ukoly .table > tbody > tr > th.rate-2 > .terrible,
body #profil #ukoly .table > tfoot > tr > th.rate-2 > .terrible,
body #profil #ukoly .table > thead > tr > td.rate-2 > .awesome,
body #profil #ukoly .table > tbody > tr > td.rate-2 > .awesome,
body #profil #ukoly .table > tfoot > tr > td.rate-2 > .awesome,
body #profil #ukoly .table > thead > tr > th.rate-2 > .awesome,
body #profil #ukoly .table > tbody > tr > th.rate-2 > .awesome,
body #profil #ukoly .table > tfoot > tr > th.rate-2 > .awesome {
  background-image: url("/images/cube_grey.png");
}
body #profil #ukoly .table > thead > tr > td.rate-3 > .terrible,
body #profil #ukoly .table > tbody > tr > td.rate-3 > .terrible,
body #profil #ukoly .table > tfoot > tr > td.rate-3 > .terrible,
body #profil #ukoly .table > thead > tr > th.rate-3 > .terrible,
body #profil #ukoly .table > tbody > tr > th.rate-3 > .terrible,
body #profil #ukoly .table > tfoot > tr > th.rate-3 > .terrible,
body #profil #ukoly .table > thead > tr > td.rate-3 > .its-fine,
body #profil #ukoly .table > tbody > tr > td.rate-3 > .its-fine,
body #profil #ukoly .table > tfoot > tr > td.rate-3 > .its-fine,
body #profil #ukoly .table > thead > tr > th.rate-3 > .its-fine,
body #profil #ukoly .table > tbody > tr > th.rate-3 > .its-fine,
body #profil #ukoly .table > tfoot > tr > th.rate-3 > .its-fine {
  background-image: url("/images/cube_grey.png");
}
body #profil #credit_count {
  font-size: 35px;
  font-weight: 700;
  margin-left: 20px;
}
body #profil .info-bar {
  max-width: 470px;
}
body #profil .info-bar > .left {
  padding-right: 20px;
}
body #profil .info-bar > .left > img {
  max-height: 48px;
}
body #profil .info-bar > .right {
  font-size: 16px;
}
body #profil .how-pay-info h2 {
  font-weight: 600;
  margin-top: 45px;
  margin-bottom: 0;
  font-size: 30px;
  color: #496368;
}
body #profil .how-pay-info h5 {
  font-weight: 700;
  font-size: 19px;
  margin-bottom: 40px;
}
body #profil .how-pay-info .line {
  min-height: 315px;
}
body #profil .how-pay-info .line .block {
  display: inline-block;
  padding: 20px 0;
  width: 230px;
  min-height: 315px;
  font-family: 'Nunito', 'Roboto', sans-serif;
  color: #496368;
  font-size: 16px;
  margin-right: 40px;
}
body #profil .how-pay-info .line .block.sline {
  margin-right: 20px;
  width: 250px;
}
body #profil .how-pay-info .line .block:last-child {
  margin-right: 0;
}
body #profil .how-pay-info .line .block p {
  margin-bottom: 40px;
}
body #profil .how-pay-info .line .block p:last-child {
  margin-bottom: 0;
}
body #profil .how-pay-info .line .block.blue {
  width: 240px;
  padding: 20px;
  color: #ffffff;
  background-color: #258cfa;
}
body #profil .how-pay-info .line .block .img {
  margin-top: 10px;
  max-height: 48px;
  display: flex;
}
body #profil .how-pay-info .line .block .img > img {
  max-height: 48px;
}
body #profil .how-pay-info .line .block .sub-line {
  margin-top: 20px;
  border-bottom: 1px solid #258cfa;
}
body #profil .how-pay-info .line .block .sub-line:first-line {
  margin-top: 0;
}
body #profil .how-pay-info .line .block .sub-line > .left {
  width: 100%;
  flex: 2 2 auto;
}
body #profil .how-pay-info .line .block .sub-line > .right {
  white-space: nowrap;
  flex: 1 1 auto;
  text-align: right;
}
body #contact-page {
  font-family: 'Nunito', 'Roboto', sans-serif;
}
body #contact-page > .cont-flex > .left {
  width: 70%;
  padding-right: 40px;
}
body #contact-page > .cont-flex > .left > h2 {
  color: #496368;
  font-weight: 400;
  margin-bottom: 40px;
}
body #contact-page > .cont-flex > .left > .contact-rings {
  width: 100%;
  flex-wrap: wrap;
  align-items: center;
}
body #contact-page > .cont-flex > .left > .contact-rings > .contact-ring {
  padding: 20px 0;
  max-width: 180px;
  width: 180px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  text-decoration: none;
}
body #contact-page > .cont-flex > .left > .contact-rings > .contact-ring:hover .text:not(.color) {
  color: #496368;
  text-decoration: underline;
}
body #contact-page > .cont-flex > .left > .contact-rings > .contact-ring > .ring {
  background-color: #258cfa;
  border-radius: 50%;
  width: 120px;
  height: 120px;
  padding: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
}
body #contact-page > .cont-flex > .left > .contact-rings > .contact-ring > .ring > img {
  max-height: 60px;
  max-width: 60px;
}
body #contact-page > .cont-flex > .left > .contact-rings > .contact-ring > .text {
  margin-top: 5px;
  font-size: 20px;
  height: auto;
}
body #contact-page > .cont-flex > .left > .contact-rings > .contact-ring > .text.color {
  height: 80px;
  font-weight: 600;
  color: #258cfa;
}
body #contact-page > .cont-flex > .right {
  width: 50%;
  padding-top: 120px;
  padding-left: 40px;
}
body #contact-page > .cont-flex > .right h3 {
  color: #258cfa;
  font-weight: 600;
  font-size: 20px;
}
body #contact-page > .cont-flex > .right #contact-form-content {
  width: 100%;
}
body #contact-page > .cont-flex > .right #contact-form-content .heading {
  display: none;
}
body #contact-page > .cont-flex > .bottom > h2 {
  color: #496368;
  font-weight: 500;
}
body #contact-page > .cont-flex > .bottom > .timici {
  flex-wrap: wrap;
}
body #contact-page > .cont-flex > .bottom > .timici > .timik {
  width: 50%;
  padding: 15px;
}
body #contact-page > .cont-flex > .bottom > .timici > .timik > .left {
  width: 150px;
  padding-right: 10px;
}
body #contact-page > .cont-flex > .bottom > .timici > .timik > .left > span {
  font-size: 16px;
  font-weight: 700;
  margin-top: 10px;
  display: inline-block;
  width: 170px;
}
body #contact-page > .cont-flex > .bottom > .timici > .timik > .left > img {
  max-width: 140px;
  max-height: 140px;
}
body #contact-page > .cont-flex > .bottom > .timici > .timik > .right > .chatsection {
  width: auto;
  padding-right: 0;
}
body #contact-page > .cont-flex > .bottom > .timici > .timik > .right > .chatsection .chatwindow {
  border: 1px solid #258cfa;
}
body #contact-page > .cont-flex > .bottom > .timici > .timik > .right > .chatsection .chatwindow::before {
  color: #258cfa;
  left: -20px;
}
body #contact-page > .cont-flex > .bottom > .timici > .timik > .right > .chatsection .chatwindow::after {
  font-family: 'Glyphicons Halflings';
  content: "";
  font-size: 22px;
  position: absolute;
  display: block;
  top: 11px;
  transform: rotate(180deg);
  color: #fff;
  left: -18px;
}
.virtual-pages h1 {
  color: #496368;
}
.virtual-pages h2 {
  margin-top: 30px;
}
.virtual-pages .ul-block {
  min-width: 215px;
}
.virtual-pages .ul-block h4 {
  font-size: 18px;
  font-weight: 800;
}
.virtual-pages .ul-block > ul.blue-dots {
  margin-left: -7px;
}
.virtual-pages .icons-list {
  margin-top: 50px;
  margin-bottom: 75px;
  justify-content: space-between;
}
.virtual-pages .icons-list > .one-icon {
  display: flex;
  max-width: 150px;
  flex-direction: column;
}
.virtual-pages .icons-list > .one-icon > .text {
  font-size: 18px;
  font-weight: 800;
  color: #496368;
}
.virtual-pages .icons-list > .one-icon > .icon {
  width: 47px;
  height: 47px;
  margin: 10px 0;
}
.virtual-pages .icons-list > .one-icon > .icon > img {
  max-width: 100%;
  max-height: 100%;
}
.virtual-pages .blue-line-under {
  width: 100%;
  height: 1px;
  background-color: #6fcbc9;
  margin-bottom: 50px;
}
.virtual-pages .nav-tabs {
  border-color: #6fcbc9 !important;
}
.virtual-pages .nav-tabs.no-border > li:not(.individual).active > a {
  border: 0;
}
.virtual-pages .nav-tabs.no-border > li:not(.individual).active > a:hover,
.virtual-pages .nav-tabs.no-border > li:not(.individual).active > a:focus {
  border: 0;
}
.virtual-pages .nav-tabs.no-border > li:not(.individual) > a {
  margin-right: 0;
  border: 0;
}
.virtual-pages .nav-tabs > li#new-task {
  position: absolute;
  right: 25px;
  bottom: 1px;
}
.virtual-pages .nav-tabs > li#new-task > a {
  border-radius: 0;
  border: none;
}
.virtual-pages .nav-tabs > li#new-task > a:hover {
  color: #ffffff;
}
.virtual-pages .nav-tabs > li:not(.individual).active > a {
  font-weight: 700;
}
.virtual-pages .nav-tabs > li:not(.individual) > a {
  border-radius: 0;
  min-width: 125px;
}
.tab-new-pages ul.blue-dots.red > li::before,
.colored ul.blue-dots.red > li::before {
  color: #ff7483;
}
.tab-new-pages[data-color='red'] .nav-tabs > li#new-task > a,
.colored[data-color='red'] .nav-tabs > li#new-task > a {
  background-color: #ff7483;
}
.tab-new-pages[data-color='red'] ul.blue-dots > li::before,
.colored[data-color='red'] ul.blue-dots > li::before {
  color: #ff7483;
}
.tab-new-pages .nav-tabs.no-border > li > a,
.colored .nav-tabs.no-border > li > a {
  border-color: transparent;
}
.tab-new-pages .nav-tabs > li[data-color='red'] > a,
.colored .nav-tabs > li[data-color='red'] > a {
  border-color: #ff7483;
}
.tab-new-pages .nav-tabs > li[data-color='red'] > a:hover,
.colored .nav-tabs > li[data-color='red'] > a:hover {
  background: transparent;
  color: #ff7483;
  font-weight: 700;
}
.tab-new-pages .nav-tabs > li[data-color='red'].active > a,
.colored .nav-tabs > li[data-color='red'].active > a {
  color: #ff7483;
  font-weight: 700;
}
.tab-new-pages ul.blue-dots.light-blue > li::before,
.colored ul.blue-dots.light-blue > li::before {
  color: #258cfa;
}
.tab-new-pages[data-color='light-blue'] .nav-tabs > li#new-task > a,
.colored[data-color='light-blue'] .nav-tabs > li#new-task > a {
  background-color: #258cfa;
}
.tab-new-pages[data-color='light-blue'] ul.blue-dots > li::before,
.colored[data-color='light-blue'] ul.blue-dots > li::before {
  color: #258cfa;
}
.tab-new-pages .nav-tabs.no-border > li > a,
.colored .nav-tabs.no-border > li > a {
  border-color: transparent;
}
.tab-new-pages .nav-tabs > li[data-color='light-blue'] > a,
.colored .nav-tabs > li[data-color='light-blue'] > a {
  border-color: #258cfa;
}
.tab-new-pages .nav-tabs > li[data-color='light-blue'] > a:hover,
.colored .nav-tabs > li[data-color='light-blue'] > a:hover {
  background: transparent;
  color: #258cfa;
  font-weight: 700;
}
.tab-new-pages .nav-tabs > li[data-color='light-blue'].active > a,
.colored .nav-tabs > li[data-color='light-blue'].active > a {
  color: #258cfa;
  font-weight: 700;
}
.tab-new-pages ul.blue-dots.blue > li::before,
.colored ul.blue-dots.blue > li::before {
  color: #052b54;
}
.tab-new-pages[data-color='blue'] .nav-tabs > li#new-task > a,
.colored[data-color='blue'] .nav-tabs > li#new-task > a {
  background-color: #052b54;
}
.tab-new-pages[data-color='blue'] ul.blue-dots > li::before,
.colored[data-color='blue'] ul.blue-dots > li::before {
  color: #052b54;
}
.tab-new-pages .nav-tabs.no-border > li > a,
.colored .nav-tabs.no-border > li > a {
  border-color: transparent;
}
.tab-new-pages .nav-tabs > li[data-color='blue'] > a,
.colored .nav-tabs > li[data-color='blue'] > a {
  border-color: #052b54;
}
.tab-new-pages .nav-tabs > li[data-color='blue'] > a:hover,
.colored .nav-tabs > li[data-color='blue'] > a:hover {
  background: transparent;
  color: #052b54;
  font-weight: 700;
}
.tab-new-pages .nav-tabs > li[data-color='blue'].active > a,
.colored .nav-tabs > li[data-color='blue'].active > a {
  color: #052b54;
  font-weight: 700;
}
.tab-new-pages ul.blue-dots.yellow > li::before,
.colored ul.blue-dots.yellow > li::before {
  color: #faa323;
}
.tab-new-pages[data-color='yellow'] .nav-tabs > li#new-task > a,
.colored[data-color='yellow'] .nav-tabs > li#new-task > a {
  background-color: #faa323;
}
.tab-new-pages[data-color='yellow'] ul.blue-dots > li::before,
.colored[data-color='yellow'] ul.blue-dots > li::before {
  color: #faa323;
}
.tab-new-pages .nav-tabs.no-border > li > a,
.colored .nav-tabs.no-border > li > a {
  border-color: transparent;
}
.tab-new-pages .nav-tabs > li[data-color='yellow'] > a,
.colored .nav-tabs > li[data-color='yellow'] > a {
  border-color: #faa323;
}
.tab-new-pages .nav-tabs > li[data-color='yellow'] > a:hover,
.colored .nav-tabs > li[data-color='yellow'] > a:hover {
  background: transparent;
  color: #faa323;
  font-weight: 700;
}
.tab-new-pages .nav-tabs > li[data-color='yellow'].active > a,
.colored .nav-tabs > li[data-color='yellow'].active > a {
  color: #faa323;
  font-weight: 700;
}
.tab-new-pages .nav-tabs,
.colored .nav-tabs {
  border-color: transparent;
  color: #496368;
  position: relative;
}
.tab-new-pages .nav-tabs.no-border > li,
.colored .nav-tabs.no-border > li {
  margin-bottom: 10px;
}
.tab-new-pages .nav-tabs.no-border > li:first-child > a,
.colored .nav-tabs.no-border > li:first-child > a {
  padding-left: 0;
}
.tab-new-pages .nav-tabs.no-border > li:not(.individual).active > a,
.colored .nav-tabs.no-border > li:not(.individual).active > a {
  border: 0;
}
.tab-new-pages .nav-tabs.no-border > li:not(.individual).active > a:hover,
.colored .nav-tabs.no-border > li:not(.individual).active > a:hover,
.tab-new-pages .nav-tabs.no-border > li:not(.individual).active > a:focus,
.colored .nav-tabs.no-border > li:not(.individual).active > a:focus {
  border: 0;
}
.tab-new-pages .nav-tabs.no-border > li:not(.individual) > a,
.colored .nav-tabs.no-border > li:not(.individual) > a {
  margin-right: 2px;
  border: 0;
}
.tab-new-pages .nav-tabs > li,
.colored .nav-tabs > li {
  text-align: center;
  font-size: 18px;
}
.tab-new-pages .nav-tabs > li.separator > span,
.colored .nav-tabs > li.separator > span {
  position: relative;
  top: 10px;
  margin: 0 17px;
}
.tab-new-pages .nav-tabs > li:not(.individual).active > a,
.colored .nav-tabs > li:not(.individual).active > a {
  font-weight: 700;
}
.tab-new-pages .nav-tabs > li:not(.individual) > a,
.colored .nav-tabs > li:not(.individual) > a {
  border-radius: 0;
  margin-right: -1px;
}
.zam-photo-container > .zam-photo-section {
  font-size: 28px;
  color: #258cfa;
  font-weight: 500;
}
.zam-photo-container > .zam-photo-section img {
  max-width: 450px;
}
.zam-photo-container > .zam-photo-section:first-child {
  margin: 40px 0;
}
.zam-photo-container > .zam-photo-section:first-child img {
  margin-left: 20px;
}
.zam-photo-container > .zam-photo-section:last-child {
  margin-bottom: 60px;
}
.zam-photo-container > .zam-photo-section:last-child img {
  margin-right: 20px;
}
.benefity-section-parent {
  width: 100%;
}
.benefity-section-parent h3 {
  margin-top: 0;
  font-weight: 600;
  font-size: 18px;
}
.benefity-section-parent > h2 {
  margin-bottom: 60px;
}
.benefity-section-parent div > .benefity-section:last-child {
  margin-left: 170px;
}
.benefity-section-parent div > .benefity-section .big-button {
  width: 300px;
  height: 100px;
  color: #258cfa;
  border: 3px solid #258cfa;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
  text-decoration: none;
  font-weight: 600;
}
.benefity-section-parent div > .benefity-section .big-button:hover {
  background-color: #258cfa;
  color: white;
}
.benefity-section-parent div > .benefity-section .big-row {
  display: flex;
  padding: 10px 0;
}
.benefity-section-parent div > .benefity-section .big-row > .big-text {
  margin-right: 25px;
  font-size: 36px;
  font-weight: bold;
  color: #258cfa;
}
.benefity-section-parent div > .benefity-section .big-row > .text {
  font-size: 16px;
}
/* mobile */
@media (max-width: 600px) {
  body #faq .right {
    display: none;
  }
  body #faq .right > .question-section {
    display: none;
  }
  body #faq .left .answer-section > .answer-subsection {
    width: 100%;
  }
}
/* Tablet */
@media (min-width: 600px) and (max-width: 1199px) {
  body #faq .right {
    display: none;
  }
  body #faq .right > .question-section {
    display: none;
  }
  body #faq .left .answer-section > .answer-subsection {
    width: 100%;
  }
}
/* mobile */
@media (max-width: 600px) {
  body #contact-page {
    padding: 0 10px;
  }
  body #contact-page > .cont-flex > .left {
    width: 100%;
    padding-right: 0;
    padding: 0 10px;
  }
  body #contact-page > .cont-flex > .right {
    width: 100%;
    padding: 20px 10px;
  }
  body #contact-page > .cont-flex > .bottom > .timici > .timik {
    flex-direction: column;
    width: 100%;
    padding: 10px;
    text-align: center;
    justify-content: center;
    align-items: center;
  }
  body #contact-page > .cont-flex > .bottom > .timici > .timik > .left {
    padding: 0;
    width: 100%;
  }
  body #contact-page > .cont-flex > .bottom > .timici > .timik > .left > span {
    width: 100%;
  }
  body #contact-page > .cont-flex > .bottom > .timici > .timik > .right > .chatsection {
    padding: 0;
    padding-top: 20px;
  }
  body #contact-page > .cont-flex > .bottom > .timici > .timik > .right > .chatsection > .chatwindow::before {
    transform: rotate(150deg);
    color: #258cfa;
    left: calc(50% - 19px);
    top: -22px;
  }
  body #contact-page > .cont-flex > .bottom > .timici > .timik > .right > .chatsection > .chatwindow::after {
    font-family: 'Glyphicons Halflings';
    content: "";
    font-size: 22px;
    position: absolute;
    display: block;
    top: -19px;
    transform: rotate(150deg);
    color: #fff;
    left: calc(50% - 18px);
  }
}
/* Tablet */
@media (min-width: 600px) and (max-width: 1199px) {
  body #contact-page > .cont-flex {
    padding: 0 10px;
  }
  body #contact-page > .cont-flex > .left {
    padding-right: 15px;
  }
  body #contact-page > .cont-flex > .right {
    padding-left: 10px;
  }
}
/* mobile */
@media (max-width: 600px) {
  body #profil {
    padding: 0 10px;
  }
  body #profil .nav-tabs {
    padding: 0 10px;
  }
  body #profil .nav-tabs > li {
    margin-bottom: -1px;
    margin-left: -1px;
    border-left: 1px solid #258cfa;
    padding: 0;
  }
  body #profil .nav-tabs > li.individual > a {
    padding: 10px 7px;
  }
  body #profil .nav-tabs > li > a {
    padding: 10px 0;
  }
  body #profil .nav-tabs > li:not(.individual):first-child > a {
    border-left: 0;
  }
  body #profil .nav-tabs > li#new-task {
    position: static;
  }
  body #profil #ucet > .profile-form > .left {
    width: 100%;
  }
  body #profil #ucet > .profile-form > .right {
    padding: 0;
  }
  body #profil #informace > h3 {
    text-align: center;
  }
  body #profil #informace .how-pay-info > h2 {
    text-align: center;
  }
  body #profil #informace .how-pay-info .line .block {
    width: 100%;
    margin-right: 0;
    display: flex;
    align-items: center;
    align-content: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
  }
  body #profil #ukoly .table > tbody > tr > td.rate-td {
    display: flex;
    justify-content: center;
    flex-direction: column;
  }
  body #profil #ukoly .table > tbody > tr > td.rate-td.rate-1 > .its-fine,
  body #profil #ukoly .table > tbody > tr > td.rate-td.rate-1 > .awesome {
    display: none;
  }
  body #profil #ukoly .table > tbody > tr > td.rate-td.rate-2 > .terrible,
  body #profil #ukoly .table > tbody > tr > td.rate-td.rate-2 > .awesome {
    display: none;
  }
  body #profil #ukoly .table > tbody > tr > td.rate-td.rate-3 > .terrible,
  body #profil #ukoly .table > tbody > tr > td.rate-td.rate-3 > .its-fine {
    display: none;
  }
  body #profil #ukoly .table > thead > tr > th:last-child {
    word-break: break-all;
  }
  body #profil #ukoly .row {
    margin: 0;
  }
  body #profil #ukoly .row > .col-sm-12 {
    padding: 0;
  }
  body #profil #promo .promo-top-title > div {
    width: 100%;
  }
  body #profil #promo .promo-top-title > .right h2 {
    margin-top: 0;
    margin-bottom: 10px;
  }
  body #profil #promo .promo-top-title > .right h2 + h2 {
    margin: 0;
    margin-bottom: 20px;
  }
  body #profil #promo .how-this-works > h2 {
    text-align: center;
    margin-bottom: 60px;
  }
  body #profil #promo .how-this-works > .blocks {
    align-items: center;
  }
  body #profil #promo .how-this-works > .blocks > .block {
    border-left: 3px solid #258cfa;
    border-top: 0;
    padding: 0;
    margin-left: 25px;
    margin-top: -25px;
  }
  body #profil #promo .how-this-works > .blocks > .block > img.logo {
    top: auto;
    left: -25px;
  }
  body #profil #promo .how-this-works > .blocks > .block > h5 {
    margin-bottom: 20px;
    margin-top: -10px;
  }
  body #profil #promo .how-this-works > .blocks > .block > h5,
  body #profil #promo .how-this-works > .blocks > .block > span {
    position: relative;
    top: -25px;
    padding-left: 30px;
  }
  body #profil #promo .how-this-works > .blocks > .block > span {
    display: inline-block;
    margin-bottom: 20px;
  }
  body #profil #promo .how-this-works > .blocks > .block:last-child {
    border-left: none;
  }
  body #profil #promo #promo_link_cont {
    margin-top: 20px;
  }
  body #profil #discount > .take-task > .left,
  body #profil #discount > .take-task > .right {
    width: 100%;
  }
  body #profil #discount .promo-progress {
    height: 860px;
  }
  body #profil #discount .promo-progress .week-block {
    height: 18%;
    max-height: 18%;
    min-width: 0;
    max-width: none;
    width: auto;
    flex: 1;
  }
  body #profil #discount .promo-progress > .top {
    /*margin-top: 48px;*/
    align-items: center;
    height: 100%;
    width: calc(50% - 30px);
    max-width: calc(50% - 30px);
  }
  body #profil #discount .promo-progress > .top > .week-block {
    align-items: center;
    height: 18%;
    max-height: 18%;
  }
  body #profil #discount .promo-progress > .bottom {
    /*margin-top: 48px;*/
    margin-top: 0;
    width: calc(50% - 30px);
    max-width: calc(50% - 30px);
  }
  body #profil #discount .promo-progress > .bottom > .week-block {
    align-items: center;
    display: flex;
    justify-content: center;
  }
  body #profil #discount .promo-progress > .bottom > .week-block.long {
    font-size: 14px;
  }
  body #profil #discount .promo-progress > .middle > .week-block {
    flex-direction: column;
    width: 40px;
    max-width: 40px;
  }
  body #profil #discount .promo-progress > .middle > .week-block > img {
    top: 35px;
    top: calc(18%  - 112px);
    left: -13px;
    transform: none;
  }
  body #profil #discount .promo-progress > .middle > .week-block > .img {
    position: relative;
    height: 1px;
    width: 1px;
    flex: 0;
  }
  body #profil #discount .promo-progress > .middle > .week-block > .img > img {
    position: absolute;
    width: 45px;
    height: 45px;
    z-index: 1;
    top: -23px;
    left: -13px;
    /*transform: translateY(50%);*/
  }
  body #profil #discount .promo-progress > .middle > .week-block > div {
    width: 20px;
    height: 50%;
    flex: 1;
  }
  body #profil #discount .promo-progress > .middle > .week-block > div:not(.img)::after {
    height: 100%;
    width: 3px;
    left: 8px;
    top: 0;
    position: absolute;
  }
  body #profil #discount .promo-progress > .middle > .week-block > div.left {
    border-left: none;
    border-top: 3px solid #496368;
  }
  body #profil #discount .promo-progress > .middle > .week-block.blue.end > .right::before {
    width: 100%;
    height: 30px;
  }
  body #profil #discount .promo-progress > .middle > .week-block.blue.end > .right::after {
    left: -4px;
    top: -10px;
    width: 100%;
    height: 30px;
    transform: rotate(90deg);
    font-size: 23px;
  }
}
/* Tablet */
.contact-form {
  padding: 0;
}
.contact-form .contact-line {
  flex-direction: column;
}
.contact-form .input {
  margin-right: 0;
}
.contact-form .input > input,
.contact-form .input > textarea {
  width: 100%;
}
#topline_xs {
  position: relative;
  height: 60px;
  background: #eeeeee;
}
#topline_xs img {
  max-width: 18px;
  max-height: 18px;
}
/* mobile */
@media (max-width: 600px) {
  #topline {
    height: 70px;
  }
  #topline > .cont-flex .topline_text {
    flex-wrap: wrap;
    justify-content: space-around;
  }
  #topline > .cont-flex .topline_text > div {
    margin-left: 5px;
  }
  #topline > .cont-flex .topline_text > .openhours-top {
    width: 100%;
    justify-content: center;
  }
}
/* Tablet */
@media (min-width: 600px) and (max-width: 1199px) {
  #topline > .cont-flex .topline_text > div {
    /*margin-left: 5px;*/
  }
}
/* mobile */
@media (max-width: 600px) {
  body .fb-ratings .fb-rating {
    width: 100%;
  }
  body .fb-ratings .fb-rating:nth-child(even) {
    padding-left: 0;
  }
  body .button-banner {
    width: 100%;
    margin-top: 30px;
    align-items: center;
  }
  body #timi-comm-section .timi-comm a {
    padding: 20px;
  }
  body #timi-comm-section .timi-comm a.hn > img {
    max-width: 274px;
  }
  body #timi-comm-section .timi-comm a.idnes > img {
    max-width: 124px;
  }
  body #timi-comm-section .timi-comm a.lidovky > img {
    max-width: 155px;
  }
  body #timi-comm-section .timi-comm a.internety > img {
    max-width: 250px;
  }
  body .ref-dot-cont {
    display: flex;
  }
  body .ref-dot-cont .ref-dot {
    width: 25px;
    height: 25px;
    margin: 5px 10px;
  }
  body .d-line {
    margin-bottom: 0;
  }
  body .full-line.reference {
    height: 400px;
    margin-top: 0;
  }
  body .full-line.reference > .middle-body > .pre-content > .content {
    left: -5px;
    height: 345px;
  }
  body .box-viewer {
    display: flex;
    position: relative;
    right: 0;
    transition: right ease 0.365s;
    margin-top: 0;
  }
  body .box-viewer .reference-box {
    width: 480px;
    height: 280px;
  }
  body .box-viewer .reference-box.empty {
    display: none;
  }
  body .box-viewer .reference-box.active + .no-active {
    display: block;
  }
  body #carousel-top {
    min-height: 338px;
  }
  body #carousel-top .carousel .carousel-caption {
    max-width: 100%;
  }
  body #carousel-top.carousel-flex .carousel-content .carousel-item .carousel-item-content h1 {
    font-size: 24pt;
  }
  body .aquarow {
    padding: 15px;
  }
  body .aquarow .cont-flex {
    flex-direction: column;
  }
  body .aquarow .cont-flex .aqua-section {
    width: 100%;
    height: auto;
  }
  body .aquarow .cont-flex .aqua-section.separator {
    margin: 23px 0;
    width: 100%;
    height: auto;
  }
  body .aquarow .cont-flex .aqua-section.separator .arrow::before {
    display: inline-block;
    transform: rotate(90deg);
  }
  body .aquarow .cont-flex .aqua-section > .top {
    text-align: center;
  }
  body .aquarow .cont-flex .aqua-section > .top br {
    display: none;
  }
  body .aquarow .cont-flex .aqua-section > .bottom {
    text-align: center;
  }
  body #chatblock > .container > .right {
    display: none;
  }
  body #tips {
    height: auto;
  }
  body #tips > .container {
    flex-wrap: wrap;
  }
  body #tips > .container > .right {
    padding-left: 0;
    min-width: 100%;
    width: 100%;
    padding-top: 5px;
    padding-bottom: 40px;
  }
  body #tips > .container > .right > h2 {
    font-size: 25px;
  }
  body #tips > .container > .right > .text {
    font-size: 25px;
  }
  body #tips > .container > .left {
    margin-top: 40px;
    /*display: none;*/
  }
  body .counter-container.bottom {
    padding-top: 20px;
  }
  body .counter-container.bottom .counter-block {
    padding: 0;
    max-width: 50%;
    text-align: center;
  }
  body .counter-container.bottom .counter-block > .counter {
    display: block;
    align-self: center;
    text-align: center;
  }
  body #try-it-free-btn-section .container {
    padding-top: 60px;
  }
  body .chatsection .onelinesection {
    display: flex;
    justify-content: center;
    padding-bottom: 0;
    flex-direction: column-reverse;
  }
  body .chatsection .onelinesection .chatwindow {
    margin-right: 0;
    margin-bottom: 25px;
  }
  body .chatsection .onelinesection .chatwindow:last-child {
    margin-left: 0;
  }
  body .counter-container > .container > .counter-block.user {
    padding-bottom: 10px;
  }
}
/* Tablet */
@media (min-width: 600px) and (max-width: 1199px) {
  body #tips {
    height: auto;
  }
  body #tips > .container {
    width: 100%;
  }
  body #tips > .container::after,
  body #tips > .container::before {
    content: none;
  }
  body #tips > .container > .left {
    padding: 40px;
  }
  body #tips > .container > .left img {
    width: 100%;
    max-width: 219px;
  }
}
/* mobile */
@media (max-width: 600px) {
  body #carousel-top .carousel-item .carousel-item-content .left {
    max-width: 550px;
    padding-left: 20px;
  }
  body #carousel-top .carousel-item .carousel-item-content .right {
    display: none;
  }
  body #references-carousel .reference_carousel .container {
    width: 100%;
  }
  body #references-carousel .reference_carousel .container .left {
    width: 60px;
    height: 60px;
  }
  body #references-carousel .reference_carousel .container .left > img {
    /*max-height: 70px;*/
    max-height: 105%;
  }
  body #references-carousel .reference_carousel .container .right {
    padding-left: 10px;
  }
  body #references-carousel .reference_carousel .container .right > .top {
    max-height: none;
  }
}
/* Tablet */
/* mobile */
@media (max-width: 600px) {
  body .navbar-default .navbar-header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    flex-direction: row-reverse;
    align-items: center;
  }
  body .navbar-default .navbar-header::before,
  body .navbar-default .navbar-header::after {
    content: none;
  }
  body .navbar-default .navbar-toggle {
    display: inline-flex;
  }
}
/* Tablet */
/* mobile */
@media (max-width: 600px) {
  #page-wrapper {
    padding-bottom: 830px;
  }
  body #footer {
    text-align: center;
  }
  body #footer .left,
  body #footer .right {
    justify-content: center;
    height: auto;
    padding-right: 0;
    padding-top: 20px;
  }
  body #footer .left .bottom.logos-group,
  body #footer .right .bottom.logos-group {
    margin-top: 15px;
  }
  body #footer .left .bottom.logos-group a:last-child,
  body #footer .right .bottom.logos-group a:last-child {
    margin: 0;
  }
}
/* Tablet */
/* mobile */
@media (max-width: 600px) {
  body .example-block-full .example-block.top > .container > .left {
    padding-right: 0;
  }
  body .example-block-full .example-block.top > .container > .right {
    display: none;
    flex-basis: 60%;
  }
  body .example-block-full .example-block.top > .container > .right > img {
    max-width: 100%;
  }
  body .example-block-full .example-block.bottom > .container > .left {
    flex-basis: 60%;
    display: none;
  }
  body .example-block-full .example-block.bottom > .container > .left > img {
    max-width: 100%;
  }
  body .example-block-full .example-block.bottom > .container > .right {
    padding-right: 0;
  }
  body .example-block-full .example-block.chat .chatsection {
    width: auto;
  }
}
/* Tablet */
@media (min-width: 600px) and (max-width: 1199px) {
  body .example-block-full .example-block.top > .container > .left {
    padding-right: 0;
  }
  body .example-block-full .example-block.top > .container > .right {
    flex-basis: 60%;
  }
  body .example-block-full .example-block.top > .container > .right > img {
    max-width: 100%;
  }
  body .example-block-full .example-block.bottom > .container > .left {
    flex-basis: 60%;
  }
  body .example-block-full .example-block.bottom > .container > .left > img {
    max-width: 100%;
  }
  body .example-block-full .example-block.bottom > .container > .right {
    padding-right: 0;
  }
  body .example-block-full .example-block.chat .chatsection {
    width: auto;
  }
}
/* mobile */
@media (max-width: 600px) {
  body #our-story .story-img {
    display: none;
  }
  body #our-story > .cont-flex > .top {
    padding: 0 10px;
  }
  body #our-story > .cont-flex > h1 {
    padding: 0 10px;
  }
  body #our-story .story-timeline .story-timeline-block {
    flex-direction: column;
  }
  body #our-story .story-timeline .story-timeline-block > .left {
    max-width: 100%;
    width: auto;
    border-right: none;
  }
  body #our-story .story-timeline .story-timeline-block > .right {
    width: auto;
    max-width: 100%;
    border-left: none;
  }
  body #our-story .story-timeline .timeline-item {
    text-align: center;
  }
  body #our-story .story-timeline .timeline-item > .ti-block {
    flex-direction: column;
  }
  body #our-story .story-timeline .timeline-item > .ti-block > .ti-text {
    width: auto;
  }
  body #our-story .story-timeline .timeline-item > .ti-block > .ti-img {
    align-self: center;
    flex-basis: 80%;
    padding: 5px;
  }
  body #our-story .story-timeline .timeline-item > .ti-line {
    width: 100%;
  }
  body #our-story .timeline-year-btn {
    margin-left: -1px;
  }
}
/* Tablet */
@media (min-width: 600px) and (max-width: 1199px) {
  body #our-story .story-img {
    display: flex;
    justify-content: center;
    flex-basis: 200%;
    padding: 0 40px;
  }
  body #our-story .story-img > img {
    align-self: center;
    max-width: 100%;
  }
  body #our-story .story-timeline-block > .left {
    max-width: 100%;
  }
  body #our-story .story-timeline-block > .right {
    max-width: 100%;
  }
  body #our-story .story-timeline .timeline-item > .ti-block > .ti-text {
    width: auto;
  }
  body #our-story .story-timeline .timeline-item > .ti-block > .ti-img {
    flex-basis: 80%;
    padding: 5px;
  }
  body #our-story .story-timeline .timeline-item > .ti-line {
    width: 100%;
  }
  body #our-story .timeline-year-btn {
    margin-left: -1px;
  }
}
/* mobile */
@media (max-width: 600px) {
  body .price-list .line {
    justify-content: center;
  }
  body .price-list .line .block {
    margin-right: 0;
    width: 100%;
  }
  body .price-list .line .block.blue {
    width: 100%;
  }
  body .price-list .line .block.sline {
    margin-right: 0;
    width: 100%;
  }
  body .price-list .img-block {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  body .price-list .bottom-block > div {
    width: auto;
    max-width: 100%;
  }
  body .price-list .bottom-block > .right {
    flex-basis: 60%;
  }
  body .price-list .bottom-block > .right img {
    max-width: 100%;
  }
  body .price-list .bottom-block > .left {
    margin-bottom: 60px;
  }
}
/* Tablet */
@media (min-width: 600px) and (max-width: 1199px) {
  body .price-list .bottom-block > .right {
    flex-basis: 60%;
  }
  body .price-list .bottom-block > .right img {
    max-width: 100%;
  }
}
/* mobile */
@media (max-width: 600px) {
  .grecaptcha-badge {
    display: none;
  }
  body #registration-page > .container {
    flex-direction: column;
  }
  body #registration-page > .container > .right {
    flex-direction: column-reverse;
    padding-left: 0;
  }
  body #registration-page > .container > .right > .texts {
    width: 100%;
  }
  body #registration-page > .container > .right > .image-center {
    align-self: center;
  }
  body #registration-page > .container > .left {
    width: 100%;
    flex: 1;
  }
  body #registration-page > .container .lost-password a {
    display: inline-block;
    padding: 10px 0;
  }
  body .form-controls .form-control-cont.login_line_with_btn_check > .row-form > .right {
    flex-wrap: wrap-reverse;
  }
}
/* Tablet */
@media (min-width: 600px) and (max-width: 1199px) {
  body #registration-page > .container > .right {
    flex-direction: column-reverse;
    padding-left: 40px;
  }
  body #registration-page > .container > .right > .image-center {
    align-self: center;
  }
  body #registration-page > .container > .right > .texts {
    width: auto;
  }
  body .form-controls .form-control-cont.login_line_with_btn_check > .row-form > .right {
    flex-wrap: wrap-reverse;
  }
}
/* mobile */
@media (max-width: 600px) {
  body #blog-article {
    padding: 0 10px;
  }
  body #blog-article .cont-flex > .left {
    width: 100%;
    min-width: 0;
    padding-right: 0;
  }
  body #blog-article .cont-flex > .left .shared-section {
    display: flex;
    justify-content: center;
    margin-bottom: 50px;
  }
  body #blog-article .cont-flex > .left .shared-section > a {
    margin-right: 30px;
  }
  body #blog-article .cont-flex > .left .shared-section > a.facebook {
    margin-right: 35px;
  }
  body #blog-article .cont-flex > .left .shared-section > a.google {
    margin-right: 20px;
  }
  body #blog-article .cont-flex > .left .try-free-btn-section {
    display: flex;
    justify-content: center;
  }
  body #blog-article .cont-flex > .right {
    width: 100%;
    max-width: 100%;
  }
}
/* Tablet */
/* mobile */
@media (max-width: 600px) {
  .virtual-pages {
    padding: 0 10px;
  }
  .virtual-pages .icons-list > .one-icon {
    display: flex;
    max-width: none;
    flex-wrap: wrap;
    align-items: center;
  }
  .virtual-pages .icons-list > .one-icon > .text {
    font-size: 18px;
    font-weight: 800;
  }
  .virtual-pages .nav-tabs {
    display: flex;
    flex-direction: column;
  }
  .virtual-pages .nav-tabs li.separator {
    display: none;
  }
  .virtual-pages .nav-tabs #new-task {
    position: static!important;
    display: inline-flex;
    align-self: center;
  }
  .virtual-pages .zam-photo-container > .zam-photo-section {
    flex-direction: column;
  }
  .virtual-pages .zam-photo-container > .zam-photo-section img {
    max-width: 100%;
  }
  .virtual-pages .zam-photo-container > .zam-photo-section:first-child {
    margin: 40px 0;
    flex-direction: column-reverse;
  }
  .virtual-pages .zam-photo-container > .zam-photo-section:first-child img {
    margin-left: 0;
  }
  .virtual-pages .zam-photo-container > .zam-photo-section:last-child {
    margin-bottom: 60px;
  }
  .virtual-pages .zam-photo-container > .zam-photo-section:last-child img {
    margin-right: 0;
  }
  .benefity-section-parent div > .benefity-section:first-child {
    justify-content: center;
  }
  .benefity-section-parent div > .benefity-section:last-child {
    margin-left: auto;
  }
  .benefity-section-parent div > .benefity-section .big-button {
    max-width: 300px;
  }
  .benefity-section-parent div > .benefity-section .big-row {
    display: flex;
    padding: 10px 0;
  }
  .benefity-section-parent div > .benefity-section .big-row > .big-text {
    margin-right: 5px;
    min-width: 100px;
  }
  .benefity-section-parent div > .benefity-section .big-row > .text {
    font-size: 16px;
  }
}
/* Tablet */
html,
body {
  margin: 0;
  width: 100%;
  height: 100%;
  font-weight: 300;
}
[data-waypoint='true'] {
  opacity: 0;
}
body {
  font-size: 16px;
  font-family: 'Nunito', 'Roboto', sans-serif;
  color: #496368;
}
.use-nunito {
  font-family: 'Nunito', 'Roboto', sans-serif;
}
.flex {
  display: flex;
}
.flex-b {
  display: inline-flex;
}
.f-jc-start {
  justify-content: flex-start;
}
.f-jc-end {
  justify-content: flex-end;
}
.f-jc-center {
  justify-content: center;
}
.f-jc-sa {
  justify-content: space-around;
}
.f-jc-sb {
  justify-content: space-between;
}
.f-ai-start {
  align-items: flex-start;
}
.f-ai-end {
  align-items: flex-end;
}
.f-ai-center {
  align-items: center;
}
.f-ai-sa {
  align-items: space-around;
}
.f-ai-sb {
  align-items: space-between;
}
.f-column {
  flex-direction: column;
}
.f-row {
  flex-direction: row;
}
.f-column-r {
  flex-direction: column-reverse;
}
.f-row-r {
  flex-direction: row-reverse;
}
.f-as-center {
  align-self: center;
}
.f-as-start {
  align-self: flex-start;
}
.f-as-end {
  align-self: flex-end;
}
.f-f-eq {
  flex: 1;
}
/* mobile */
@media (max-width: 600px) {
  .mobile-flex {
    display: flex;
  }
  .mobile-flex-b {
    display: inline-flex;
  }
  .mobile-f-jc-start {
    justify-content: flex-start;
  }
  .mobile-f-jc-end {
    justify-content: flex-end;
  }
  .mobile-f-jc-center {
    justify-content: center;
  }
  .mobile-f-jc-sa {
    justify-content: space-around;
  }
  .mobile-f-jc-sb {
    justify-content: space-between;
  }
  .mobile-f-ai-start {
    align-items: flex-start;
  }
  .mobile-f-ai-end {
    align-items: flex-end;
  }
  .mobile-f-ai-center {
    align-items: center;
  }
  .mobile-f-ai-sa {
    align-items: space-around;
  }
  .mobile-f-ai-sb {
    align-items: space-between;
  }
  .mobile-f-column {
    flex-direction: column;
  }
  .mobile-f-row {
    flex-direction: row;
  }
  .mobile-f-column-r {
    flex-direction: column-reverse;
  }
  .mobile-f-row-r {
    flex-direction: row-reverse;
  }
  .mobile-f-as-center {
    align-self: center;
  }
  .mobile-f-as-start {
    align-self: flex-start;
  }
  .mobile-f-as-end {
    align-self: flex-end;
  }
  .mobile-f-f-eq {
    flex: 1;
  }
}
@media (min-width: 600px) and (max-width: 1199px) {
  .tablet-flex {
    display: flex;
  }
  .tablet-flex-b {
    display: inline-flex;
  }
  .tablet-f-jc-start {
    justify-content: flex-start;
  }
  .tablet-f-jc-end {
    justify-content: flex-end;
  }
  .tablet-f-jc-center {
    justify-content: center;
  }
  .tablet-f-jc-sa {
    justify-content: space-around;
  }
  .tablet-f-jc-sb {
    justify-content: space-between;
  }
  .tablet-f-ai-start {
    align-items: flex-start;
  }
  .tablet-f-ai-end {
    align-items: flex-end;
  }
  .tablet-f-ai-center {
    align-items: center;
  }
  .tablet-f-ai-sa {
    align-items: space-around;
  }
  .tablet-f-ai-sb {
    align-items: space-between;
  }
  .tablet-f-column {
    flex-direction: column;
  }
  .tablet-f-row {
    flex-direction: row;
  }
  .tablet-f-column-r {
    flex-direction: column-reverse;
  }
  .tablet-f-row-r {
    flex-direction: row-reverse;
  }
  .tablet-f-as-center {
    align-self: center;
  }
  .tablet-f-as-start {
    align-self: flex-start;
  }
  .tablet-f-as-end {
    align-self: flex-end;
  }
}
