
/*------------------------------------*\
    RESPONSIVE
\*------------------------------------*/
/*
@media only screen and (min-width:320px) {

}
@media only screen and (min-width:480px) {

}
@media only screen and (min-width:768px) {

}
@media only screen and (min-width:1024px) {

}
@media only screen and (min-width:1140px) {

}
@media only screen and (min-width:1280px) {

}
@media only screen and (-webkit-min-device-pixel-ratio:1.5),
	   only screen and (min-resolution:144dpi) {

}
*/
/* Extra small devices (mobile, 500px and up) */
/* Small devices (tablets, 768px and up) */
/* Medium devices (desktops, 992px and up) */
/* Large devices (large desktops, 1200px and up) */
/* global box-sizing */
*,
*:after,
*:before {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* html element 62.5% font-size for REM use */
html {
  font-size: 62.5%;
  height: 100%;
}

body {
  font-family: 'Oxygen', sans-serif;
  color: #444;
  background-color: #f1f1f1;
  position: relative;
  margin: 0;
  padding-bottom: 141px;
  min-height: 100%;
}

/* Extra small devices (mobile, 500px and up) */
@media (max-width: 679px) {
  body {
    padding-bottom: 181px;
  }
}

h1, h2, h3, h4, h5 {
  font-family: 'Oswald', sans-serif;
}

/* clear */
.clear:before,
.clear:after {
  content: ' ';
  display: table;
}

.clear:after {
  clear: both;
}

.clear {
  *zoom: 1;
}

.hide {
  display: none;
}

img {
  max-width: 100%;
  vertical-align: bottom;
}

a {
  color: #444;
  text-decoration: none;
}

a:hover {
  color: #444;
}

a:focus {
  outline: 0;
}

a:hover,
a:active {
  outline: 0;
}

input:focus {
  outline: 0;
  border: 1px solid #04A4CC;
}

p a {
  text-decoration: underline;
}

@font-face {
  font-family: 'Font-Name';
  src: url("fonts/font-name.eot");
  src: url("fonts/font-name.eot?#iefix") format("embedded-opentype"), url("fonts/font-name.woff") format("woff"), url("fonts/font-name.ttf") format("truetype"), url("fonts/font-name.svg#font-name") format("svg");
  font-weight: normal;
  font-style: normal;
}

/*------------------------------------*\
    MISC
\*------------------------------------*/
::-moz-selection {
  background: #04A4CC;
  color: #FFF;
  text-shadow: none;
}
::selection {
  background: #04A4CC;
  color: #FFF;
  text-shadow: none;
}

::-webkit-selection {
  background: #04A4CC;
  color: #FFF;
  text-shadow: none;
}

::-moz-selection {
  background: #04A4CC;
  color: #FFF;
  text-shadow: none;
}

/*------------------------------------*\
    WORDPRESS CORE
\*------------------------------------*/
.alignnone {
  margin: 5px 20px 20px 0;
}

.aligncenter,
div.aligncenter {
  display: block;
  margin: 5px auto 5px auto;
}

.alignright {
  float: right;
  margin: 5px 0 20px 20px;
}

.alignleft {
  float: left;
  margin: 5px 20px 20px 0;
}

a img.alignright {
  float: right;
  margin: 5px 0 20px 20px;
}

a img.alignnone {
  margin: 5px 20px 20px 0;
}

a img.alignleft {
  float: left;
  margin: 5px 20px 20px 0;
}

a img.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.wp-caption {
  background: #FFF;
  border: 1px solid #F0F0F0;
  max-width: 96%;
  padding: 5px 3px 10px;
  text-align: center;
}

.wp-caption.alignnone {
  margin: 5px 20px 20px 0;
}

.wp-caption.alignleft {
  margin: 5px 20px 20px 0;
}

.wp-caption.alignright {
  margin: 5px 0 20px 20px;
}

.wp-caption img {
  border: 0 none;
  height: auto;
  margin: 0;
  max-width: 98.5%;
  padding: 0;
  width: auto;
}

.wp-caption .wp-caption-text,
.gallery-caption {
  font-size: 11px;
  line-height: 17px;
  margin: 0;
  padding: 0 4px 5px;
}

/*------------------------------------*\
    PRINT
\*------------------------------------*/
@media print {
  * {
    background: transparent !important;
    color: #000 !important;
    -webkit-box-shadow: none !important;
            box-shadow: none !important;
    text-shadow: none !important;
  }
  a,
  a:visited {
    text-decoration: underline;
  }
  a[href]:after {
    content: " (" attr(href) ")";
  }
  abbr[title]:after {
    content: " (" attr(title) ")";
  }
  .ir a:after,
  a[href^="javascript:"]:after,
  a[href^="#"]:after {
    content: "";
  }
  pre, blockquote {
    border: 1px solid #999;
    page-break-inside: avoid;
  }
  thead {
    display: table-header-group;
  }
  tr, img {
    page-break-inside: avoid;
  }
  img {
    max-width: 100% !important;
  }
  @page {
    margin: 0.5cm;
  }
  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3;
  }
  h2,
  h3 {
    page-break-after: avoid;
  }
}

.green-btn {
  background-color: #21b573;
  -webkit-transition-property: background-color;
  transition-property: background-color;
  -webkit-transition-duration: 0.3s;
          transition-duration: 0.3s;
  -webkit-transition-timing-function: linear;
          transition-timing-function: linear;
  -webkit-transition-delay: 0s;
          transition-delay: 0s;
  cursor: pointer;
  text-decoration: none;
}

.green-btn:hover {
  background-color: #1a8c59;
}

.red-btn {
  padding: 5px 10px;
  color: #d90606;
  font-weight: normal;
  -webkit-transition-property: background-color;
  transition-property: background-color;
  -webkit-transition-duration: 0.3s;
          transition-duration: 0.3s;
  -webkit-transition-timing-function: linear;
          transition-timing-function: linear;
  -webkit-transition-delay: 0s;
          transition-delay: 0s;
  cursor: pointer;
  text-decoration: underline;
}

.red-btn:hover {
  color: #a70505;
}

.red-btn:before {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  background-color: #d90606;
  vertical-align: top;
  margin-right: 10px;
  margin-top: 5px;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-transition-duration: 0.3s;
          transition-duration: 0.3s;
  -webkit-transition-timing-function: linear;
          transition-timing-function: linear;
  -webkit-transition-delay: 0s;
          transition-delay: 0s;
}

.red-btn:hover:before {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}

.form-messages {
  padding: 10px 0px;
}

.form-messages .message {
  padding: 10px;
  font-weight: bold;
  margin-bottom: 2px;
  color: white;
}

@media (max-width: 768px) {
  .form-messages .message {
    padding-right: 30%;
  }
}

.form-messages .message.error {
  background: #ee0000;
  background: -webkit-gradient(linear, left top, right top, color-stop(40%, #ee0000), to(white));
  background: linear-gradient(90deg, #ee0000 40%, white 100%);
}

.form-messages .message.info {
  background: #008bee;
  background: -webkit-gradient(linear, left top, right top, color-stop(40%, #008bee), to(white));
  background: linear-gradient(90deg, #008bee 40%, white 100%);
}

.form-messages .message.success {
  background: #2bb403;
  background: -webkit-gradient(linear, left top, right top, color-stop(40%, #2bb403), to(white));
  background: linear-gradient(90deg, #2bb403 40%, white 100%);
}

.form-line {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.form-line .form-part {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.form-line .form-part:not(.horizontal-center) input {
  width: 90%;
}

@media (max-width: 768px) {
  .form-line .form-part:not(.horizontal-center) input {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .form-line {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.form-part {
  margin-bottom: 10px;
  padding: 5px;
}

.form-part.error label {
  color: red;
}

.form-part.error label:after {
  margin-left: 5px;
  font-family: 'FontAwesome';
  content: '\f071';
}

.form-part.error input {
  border-color: red;
}

.form-part.error textarea {
  border-color: red;
}

.form-part label {
  display: block;
  padding-bottom: 5px;
}

.form-part label.inline {
  display: inline-block;
  padding-bottom: 0px;
}

.form-part input[type="text"] {
  padding: 5px;
  font-size: 16px;
}

.form-part textarea {
  width: 100%;
  padding: 5px;
  font-size: 16px;
  border: 1px solid black;
}

.form-part select {
  padding: 5px;
  font-size: 16px;
}

.form-part input {
  border-radius: 0px;
  border: 1px solid black;
}

.form-part .input-75 {
  width: 75%;
}

@media (max-width: 768px) {
  .form-part .input-75 {
    width: 100%;
  }
}

.form-part .input-35 {
  width: 35%;
}

.form-part .check {
  font-size: 14px;
  margin-left: 10px;
}

.form-part.horizontal-center {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.form-part button.submit-btn {
  border: 0px solid white;
  padding: 15px;
  width: 100%;
  color: white;
  font-weight: bold;
  margin-top: 20px;
}

.banner-bg {
  width: 100%;
  height: 500px;
  background-image: url(./img/banner-woman2.jpg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 10px;
}

.banner-text-box {
  background-color: rgba(255, 255, 255, 0.5);
  color: black;
  width: 50%;
  padding: 20px;
  margin-top: 20px;
}

.banner-text-box h1 {
  margin-top: 0px;
  font-size: 36px;
  color: #444;
}

.banner-text-box p {
  margin-top: 0px;
  margin-bottom: 15px;
  font-size: 26px;
  color: #444;
  font-weight: bold;
  font-family: 'Oswald', sans-serif;
}

.banner-text-box .site-name {
  margin-top: 15px;
  font-size: 32px;
  font-family: 'Oswald', sans-serif;
  color: #444;
}

.banner-text-box .site-name span.red {
  color: #d90606;
  padding-left: 10px;
}

/* Extra small devices (mobile, 500px and up) */
@media (max-width: 679px) {
  .banner-bg {
    height: auto;
  }
  .banner {
    margin-bottom: 20px;
  }
  .banner-text-box h1 {
    font-size: 30px;
  }
  .banner-text-box {
    width: 100%;
  }
}

/* Small devices (tablets, 768px and up) */
@media (min-width: 680px) and (max-width: 991px) {
  .banner-text-box {
    width: 100%;
  }
}

/* Medium devices (desktops, 992px and up) */
/* Large devices (large desktops, 1200px and up) */
@media (min-width: 1240px) {
  .banner-text-box {
    max-height: 500px;
    overflow: hidden;
  }
}

.header-bg {
  background-color: #d90606;
}

.header {
  padding: 10px 0px;
  background-color: #d90606;
  margin-bottom: 0px;
}

/* logo */
.logo-box {
  width: 10%;
  float: left;
}

.logo-img {
  width: 100px;
}

/* nav */
.nav-box {
  width: 90%;
  float: left;
}

.nav ul {
  margin: 0;
  padding: 0;
  line-height: 100px;
  margin-left: 20px;
}

.nav ul li {
  display: inline-block;
  vertical-align: top;
  margin-left: 20px;
}

.nav ul li a {
  color: white;
  font-size: 14px;
  font-weight: bold;
}

.nav ul li a:before {
  content: "";
  width: 10px;
  height: 10px;
  background-color: white;
  display: inline-block;
  margin-right: 10px;
  -webkit-transition-property: transform;
  -webkit-transition-duration: 0.3s;
  -webkit-transition-timing-function: linear;
  -webkit-transition-delay: 0s;
  /* Standard syntax */
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  transition-duration: 0.3s;
  transition-timing-function: linear;
  transition-delay: 0s;
}

.nav ul li a:hover:before {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}

/* Extra small devices (mobile, 500px and up) */
@media (max-width: 679px) {
  .logo-box {
    width: 100%;
    padding: 10px 0px;
    text-align: center;
  }
  .nav-box {
    width: 100%;
  }
  .nav ul {
    line-height: 40px;
    margin-left: 0px;
  }
}

/* Small devices (tablets, 768px and up) */
@media (min-width: 680px) and (max-width: 991px) {
  .logo-box {
    margin-top: 15px;
  }
  .nav ul {
    line-height: 50px;
  }
}

/* Medium devices (desktops, 992px and up) */
.wrapper {
  width: 1200px;
  margin: 0 auto;
  position: relative;
}

/* Extra small devices (mobile, 500px and up) */
@media (max-width: 679px) {
  .wrapper {
    width: 90%;
  }
}

/* Small devices (tablets, 768px and up) */
@media (min-width: 680px) and (max-width: 991px) {
  .wrapper {
    width: 720px;
  }
}

/* Medium devices (desktops, 992px and up) */
@media (min-width: 992px) and (max-width: 1240px) {
  .wrapper {
    width: 960px;
  }
}

/* Large devices (large desktops, 1200px and up) */
.footer-bg {
  position: absolute;
  right: 0;
  left: 0;
  bottom: 0;
  padding: 1rem;
  background-color: #797979;
  text-align: center;
}

.footer {
  color: #222;
  font-size: 12px;
}

.footer h4 {
  color: #222;
  margin: 10px 0px;
}

.footer-logo-box {
  width: 150px;
  height: 40px;
  display: inline-block;
  vertical-align: top;
  margin-right: 20px;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}

.footer-logo-box.mikrotik {
  background-image: url(./img/mikrotik_logo.svg);
}

.footer-logo-box.hp {
  margin-top: 5px;
  background-image: url(./img/hp_logo.svg);
}

.footer-logo-box.aerial {
  width: 40px;
  background-image: url(./img/logo1Aerial.svg);
}

.section.page {
  display: inline-block;
  vertical-align: top;
  margin-bottom: 20px;
  margin-right: 20px;
}

.section.page.nosidebar {
  width: 100%;
}

.section.page h1 {
  font-size: 36px;
}

.section.page h2 {
  font-size: 30px;
}

.section.page h2.line, .section.page h1.line {
  font-size: 30px;
  color: #d90606;
  border-bottom: 1px solid #d90606;
}

.section.page h2.no-fault, .section.page h2.no-article {
  font-family: 'Oxygen', sans-serif;
  font-size: 18px;
  font-weight: normal;
}

.section.page h3 {
  font-size: 24px;
}

.section.page h4 {
  font-size: 20px;
}

.section.page h5 {
  font-size: 18px;
}

.section.page {
  font-size: 16px;
}

.section.page.basic {
  width: 100%;
  padding: 15px;
  margin-top: 10px;
  background-color: white;
  -webkit-box-shadow: 0px 2px 5px grey;
          box-shadow: 0px 2px 5px grey;
}

.whiteBoxContent, .white-box-content {
  padding: 15px;
  margin-top: 20px;
  background-color: white;
  -webkit-box-shadow: 0px 2px 5px grey;
          box-shadow: 0px 2px 5px grey;
}

.whiteBoxContent h1:first-child, .white-box-content h1:first-child {
  margin-top: 0px;
}

.whiteBoxContent > h2:first-child, .white-box-content > h2:first-child {
  margin-top: 0px;
}

.whiteBoxContent ul.text, .whiteBoxContent p.text, .white-box-content ul.text, .white-box-content p.text {
  width: 90%;
}

.section.page.basic h1:first-child {
  margin-top: 0px;
}

.section.page p {
  font-size: 16px;
}

.section.page ul {
  font-size: 16px;
  list-style-type: square;
}

.contentText ul {
  max-width: 80%;
}

.icons-box {
  text-align: center;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 0px solid silver;
}

.icon-box {
  display: inline-block;
  vertical-align: top;
  text-align: center;
  width: 200px;
  border: 0px solid silver;
  margin: 0px 10px;
}

.icon-box .icon {
  font-size: 100px;
  color: #d90606;
}

.icon-box .icon-text h4 {
  margin: 5px;
  text-transform: uppercase;
}

/* Extra small devices (mobile, 500px and up) */
@media (max-width: 679px) {
  .icon-box {
    width: 120px;
    margin: 15px;
  }
}

/* Small devices (tablets, 768px and up) */
@media (min-width: 680px) and (max-width: 991px) {
  .icon-box {
    width: 140px;
  }
}

/* Medium devices (desktops, 992px and up) */
/* Large devices (large desktops, 1200px and up) */
.section.homepage {
  width: 100%;
  display: block;
}

.section.homepage .article-bg:nth-child(even) {
  background-color: #d90606;
}

.section.homepage .article-bg:nth-child(even) article {
  color: #fff;
}

.section.homepage .article-bg:nth-child(odd) article {
  color: #444;
}

.section.homepage article {
  padding: 15px 0px;
  text-align: center;
}

.section.homepage article:nth-child(odd) {
  color: #444;
}

.section.homepage article:nth-child(even) {
  color: white;
}

.section.homepage article i.fa {
  text-align: center;
  font-size: 60px;
}

.section.homepage article h2 {
  text-align: center;
  font-size: 40px;
  margin-top: 0px;
  margin-bottom: 15px;
}

.section.homepage article p i.fa {
  font-size: 12px;
  vertical-align: middle;
}

.section.homepage article p {
  font-size: 18px;
  line-height: 18px;
}

.section.homepage article .homepage-info-box {
  display: inline-block;
  font-size: 18px;
  margin: 5px;
}

.section.homepage article .homepage-info-box:before {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  opacity: 0.5;
  margin-right: 10px;
  vertical-align: middle;
}

.section.homepage article:nth-child(odd) .homepage-info-box:before {
  background-color: #444;
}

.section.homepage article:nth-child(even) .homepage-info-box:before {
  background-color: white;
}

.section.homepage article p:first-of-type {
  padding-bottom: 15px;
}

.section.homepage article a.more-info {
  font-size: 16px;
}

.section.homepage .article-bg:nth-child(even) article a.more-info {
  color: white;
}

.section.homepage article a.more-info:before {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  background-color: #444;
  vertical-align: top;
  margin-right: 10px;
  margin-top: 5px;
  -webkit-transition-property: transform;
  -webkit-transition-duration: 0.3s;
  -webkit-transition-timing-function: linear;
  -webkit-transition-delay: 0s;
  /* Standard syntax */
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  transition-duration: 0.3s;
  transition-timing-function: linear;
  transition-delay: 0s;
}

.section.homepage .article-bg:nth-child(even) article a.more-info:before {
  background-color: white;
}

.section.homepage article a.more-info:hover:before {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}

.section.homepage .fb_iframe_widget {
  background-color: white;
  padding: 10px;
  border-radius: 5px;
  margin-bottom: 15px;
}

.small-fb-like {
  display: none;
}

.normal-fb-like {
  display: block;
}

/* Extra small devices (mobile, 500px and up) */
@media (max-width: 679px) {
  .section.homepage .fb_iframe_widget {
    background-color: transparent;
  }
  .small-fb-like {
    display: block;
  }
  .normal-fb-like {
    display: none;
  }
}

/* Small devices (tablets, 768px and up) */
@media (min-width: 680px) and (max-width: 991px) {
  .banner-text-box {
    width: 100%;
  }
}

/* Medium devices (desktops, 992px and up) */
/* Large devices (large desktops, 1200px and up) */
@media (min-width: 1240px) {
  .banner-text-box {
    max-height: 500px;
    overflow: hidden;
  }
}

.tarify-internet-box article {
  width: 215px;
  display: inline-block;
  vertical-align: top;
  margin-right: 15px;
  border: 0px solid red;
  text-align: center;
}

.tarify-internet-box article h2 {
  font-size: 24px !important;
  padding: 5px 0px;
  margin: 0px;
  background-color: #d90606;
  text-align: center;
  color: white;
}

.tarify-internet-box ul {
  list-style-type: none !important;
  padding: 0px;
  margin: 0px;
  font-size: 12px;
  height: 320px;
}

.tarify-internet-box ul li {
  padding: 5px 0px;
}

.tarify-internet-box ul li:nth-child(even) {
  background-color: #797979;
  color: white;
  font-weight: bold;
}

.tarify-internet-box ul li:last-child {
  font-size: 16px;
}

.tarify-internet-box article a.buy {
  display: block;
  padding: 5px 0px;
  color: white;
  font-weight: bold;
}

.tarify-firemni-box article a.buy {
  display: block;
  padding: 5px 0px;
  color: white;
  font-weight: bold;
  text-align: center;
  width: 150px;
}

/* Extra small devices (mobile, 500px and up) */
@media (max-width: 679px) {
  .tarify-internet-box article {
    width: 100%;
    height: auto;
    display: block;
    margin-bottom: 25px;
    padding-bottom: 10px;
    border-bottom: 1px solid grey;
  }
  .tarify-internet-box ul {
    margin: 10px 0px;
    height: auto;
    min-height: 145px;
    display: block;
    clear: both;
  }
  .tarify-internet-box ul li {
    width: 100%;
    float: none;
    display: inline-block;
    border-bottom: 1px solid #797979;
  }
  .tarify-internet-box article a.buy {
    width: 100%;
    margin-left: 0;
    padding: 8px;
  }
}

/* Small devices (tablets, 768px and up) */
@media (min-width: 680px) and (max-width: 991px) {
  .tarify-internet-box article {
    width: 100%;
    height: auto;
    display: block;
  }
  .tarify-internet-box ul {
    margin: 10px 0px;
    height: auto;
    min-height: 145px;
    display: block;
    clear: both;
  }
  .tarify-internet-box ul li {
    width: 49%;
    float: left;
    display: inline-block;
    border-bottom: 1px solid #797979;
  }
  .tarify-internet-box article a.buy {
    width: 49%;
    margin-left: 49%;
    padding: 8px;
  }
}

/* Medium devices (desktops, 992px and up) */
@media (min-width: 992px) and (max-width: 1240px) {
  .tarify-internet-box article {
    width: 167px;
  }
}

@media only screen and (min-width: 992px) {
  .tarify-internet-box article {
    border: 1px solid #f9f9f9;
    -webkit-box-shadow: 0px 2px 3px silver;
            box-shadow: 0px 2px 3px silver;
    padding: 5px;
    margin-bottom: 10px;
  }
}

.tarify-internet-box.televize article h2 {
  margin-bottom: 5px;
}

.tarify-internet-box.televize ul {
  height: auto;
}

.tarify-internet-box.televize ul.info li {
  background-color: #797979;
  color: white;
  font-weight: bold;
  margin-bottom: 5px;
}

.tarify-internet-box.televize ul.items {
  height: 219px;
}

.tarify-internet-box.televize ul.items-hide {
  margin-top: 5px;
  display: none;
}

.tarify-internet-box.televize .more-items-blank {
  height: 30px;
}

.tarify-internet-box.televize ul.items li:first-child {
  color: black;
  background-color: white;
  margin-bottom: 5px;
  border-left: 0px solid white;
}

.tarify-internet-box.televize ul.items li,
.tarify-internet-box.televize ul.items-hide li {
  font-weight: normal;
  font-size: 14px;
  color: black;
  background-color: #b8b8b8;
  margin-bottom: 5px;
  border-left: 2px solid #797979;
}

.faults-box article {
  margin-bottom: 20px;
}

.fault-info-box {
  width: 120px;
  display: inline-block;
  vertical-align: top;
  text-align: center;
  margin-right: 15px;
}

.fault-info-box.green .fault-icon,
.fault-info-box.green .fault-status,
.fault-info-box.green .fault-date {
  background-color: green;
}

.fault-info-box.red .fault-icon,
.fault-info-box.red .fault-status,
.fault-info-box.red .fault-date {
  background-color: red;
}

.fault-icon {
  padding: 5px 0px;
}

.fault-info-box i {
  font-size: 18px;
  color: white;
}

.fault-info-box .fault-status {
  font-size: 14px;
  padding: 5px 0px;
  color: white;
  font-weight: bold;
  margin-top: 2px;
}

.fault-info-box .fault-date {
  font-size: 12px;
  padding: 5px 0px;
  color: white;
  font-weight: bold;
  margin-top: 2px;
}

.fault-text {
  width: 800px;
  display: inline-block;
  vertical-align: top;
}

.fault-text h3 {
  font-size: 18px !important;
  margin: 0px;
}

.fault-text p {
  font-size: 14px !important;
  margin: 0px;
  margin-top: 5px;
}

.news-box article {
  margin-bottom: 20px;
}

.news-date {
  width: 120px;
  display: inline-block;
  vertical-align: top;
  font-size: 12px;
  padding: 5px 0px;
  color: white;
  font-weight: bold;
  margin-top: 2px;
  text-align: center;
  background-color: #444;
  margin-right: 15px;
}

.news-text {
  width: 800px;
  display: inline-block;
  vertical-align: top;
}

.news-text h3 {
  font-size: 18px !important;
  margin: 0px;
}

.news-text p {
  font-size: 14px !important;
  margin: 0px;
  margin-top: 5px;
}

/* Extra small devices (mobile, 500px and up) */
@media (max-width: 679px) {
  .news-text {
    width: 100%;
  }
}

/* Small devices (tablets, 768px and up) */
@media (min-width: 680px) and (max-width: 991px) {
  .news-text {
    width: 100%;
  }
}

/* Medium devices (desktops, 992px and up) */
/* Large devices (large desktops, 1200px and up) */
.contact-box {
  margin-top: 20px;
  max-width: 800px;
}

.contact-form textarea {
  width: 95%;
  height: 150px;
}

.contact-form button.submit-btn {
  width: 95%;
}

@media (max-width: 768px) {
  .contact-form button.submit-btn, .contact-form textarea {
    width: 100%;
  }
}

.sidebar {
  display: inline-block;
  vertical-align: top;
  width: 200px;
  border: 0px solid #797979;
  padding: 10px;
  margin-bottom: 20px;
}

.demand .info-line {
  padding: 10px 0px;
}

.demand .columns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  /* Small devices (tablets, 768px and up) */
}

@media (max-width: 991px) {
  .demand .columns {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.demand .columns .column {
  width: 33%;
  /* Small devices (tablets, 768px and up) */
}

.demand .columns .column .title {
  padding: 5px;
  font-size: 12px;
  font-weight: bold;
  border-bottom: 3px solid #d90606;
  margin-bottom: 10px;
}

@media (max-width: 991px) {
  .demand .columns .column {
    width: 100%;
  }
}

.demand-success {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 30px;
  background: #2bb403;
  background: -webkit-gradient(linear, left top, right top, color-stop(40%, #2bb403), to(white));
  background: linear-gradient(90deg, #2bb403 40%, white 100%);
  color: white;
  padding: 20px;
}

@media (max-width: 991px) {
  .demand-success {
    background: -webkit-gradient(linear, left top, right top, color-stop(100%, #2bb403), color-stop(0%, white));
    background: linear-gradient(90deg, #2bb403 100%, white 0%);
  }
}

.demand-success i {
  font-size: 80px;
  margin-right: 20px;
}

.sledovaniTvPlugin-container {
  margin-top: 20px;
  padding: 15px 0px;
  background-color: white;
  -webkit-box-shadow: 0px 2px 5px grey;
          box-shadow: 0px 2px 5px grey;
}

.sledovaniTvPlugin-container .custom-order-btn {
  margin-top: 10px;
  background-color: #21b573;
  -webkit-transition-property: background-color;
  transition-property: background-color;
  -webkit-transition-duration: 0.3s;
          transition-duration: 0.3s;
  -webkit-transition-timing-function: linear;
          transition-timing-function: linear;
  -webkit-transition-delay: 0s;
          transition-delay: 0s;
  cursor: pointer;
  text-decoration: none;
  border-color: #21b573 !important;
}

.sledovaniTvPlugin-container .custom-order-btn:hover {
  background-color: #1a8c59;
}
