/*  */
/* USAGE MEDIA QUERIES
  div {
    height: 390px;

    @include breakpoint(mobile) {
      margin-bottom: 15px;
    }
  }
*/
/* -------------------------------------------------------------
  Sass CSS3 Mixins! The Cross-Browser CSS3 Sass Library
  By: Matthieu Aussaguel, http://www.mynameismatthieu.com, @matthieu_tweets

  List of CSS3 Sass Mixins File to be @imported and @included as you need

  The purpose of this library is to facilitate the use of CSS3 on different browsers avoiding HARD TO READ and NEVER
  ENDING css files

  note: All CSS3 Properties are being supported by Safari 5
  more info: http://www.findmebyip.com/litmus/#css3-properties

------------------------------------------------------------- */
@media (max-width: 767px) {
  .articleNew .articleBodyContent .txtDesc table {
    font-size: 10px;
    line-height: normal;
  }
}
@media (max-width: 767px) {
  .articleNew .articleBodyContent .txtDesc table td {
    padding: 3px 5px;
    /* These are technically the same, but use both */
    overflow-wrap: break-word;
    word-wrap: break-word;
    -ms-word-break: break-all;
    /* This is the dangerous one in WebKit, as it breaks things wherever */
    word-break: break-all;
    /* Instead use this non-standard one: */
    word-break: break-word;
    /* Adds a hyphen where the word breaks, if supported (No Blink) */
    -ms-hyphens: auto;
    -moz-hyphens: auto;
    -webkit-hyphens: auto;
    hyphens: auto;
  }
}
@media (max-width: 767px) {
  .articleNew .articleBodyContent .txtDesc table td a {
    font-size: 10px;
    line-height: normal;
  }
}

.articleNew .articleBodyContent .featuredTable {
  font-size: 15px;
  line-height: 20px;
  width: 100%;
  color: #444;
  margin-top: 25px;
}
.articleNew .articleBodyContent .featuredTable.withBorder tbody tr:last-of-type td {
  border-bottom: 2px solid #f0f0f0;
}
.articleNew .articleBodyContent .featuredTable.withBorder tbody td.newPrice {
  border-bottom: 2px solid #f1e7d0;
}
.articleNew .articleBodyContent .featuredTable td, .articleNew .articleBodyContent .featuredTable th {
  padding: 23px 5px;
  vertical-align: middle;
}
.articleNew .articleBodyContent .featuredTable thead tr th {
  background-color: #3f79a6;
  color: #fff;
  text-align: center;
  font-weight: 600;
}
.articleNew .articleBodyContent .featuredTable thead tr th:not(:last-of-type) {
  border-right: 2px solid #5899cb;
}
.articleNew .articleBodyContent .featuredTable thead td.large {
  min-width: 135px;
}
@media (max-width: 767px) {
  .articleNew .articleBodyContent .featuredTable thead td.large {
    min-width: initial;
  }
}
.articleNew .articleBodyContent .featuredTable thead tr.highlight {
  text-align: center;
}
.articleNew .articleBodyContent .featuredTable thead tr.highlight td {
  background-color: #cbdff9;
}
.articleNew .articleBodyContent .featuredTable thead tr.highlight td:not(:last-of-type) {
  border-right: 2px solid #fff;
}
.articleNew .articleBodyContent .featuredTable tbody td {
  padding: 18px 5px;
  text-align: center;
  font-weight: 600;
  border-right: none;
  border-left: none;
}
.articleNew .articleBodyContent .featuredTable tbody td:first-of-type {
  text-align: left;
  padding-left: 15px;
}
.articleNew .articleBodyContent .featuredTable tbody td:not(.newPrice) {
  border-bottom: 2px solid #f0f0f0;
}
.articleNew .articleBodyContent .featuredTable tbody td.newPrice {
  background-color: #fff8e7;
  border: none;
}
.articleNew .articleBodyContent .featuredTable tbody td.normalW {
  font-weight: 400;
}
.articleNew .articleBodyContent .featuredTable tbody td.center {
  text-align: center;
}
.articleNew .articleBodyContent .featuredTable tbody td span {
  font-weight: 400;
}
.articleNew .articleBodyContent .featuredTable tbody tr:hover td {
  background-color: #cbdff9;
}
.articleNew .articleBodyContent .featuredTable tbody tr:last-of-type td {
  border-bottom: none;
}

table.styleDefault {
  font-family: Arial, Helvetica, sans-serif;
  color: #666;
  font-size: 12px;
  text-shadow: 1px 1px 0px #fff;
  background: #eaebec;
  margin: 20px 0;
  border: #ccc 1px solid;
  width: 100%;
  letter-spacing: normal;
  line-height: normal;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  border-radius: 3px;
  -moz-box-shadow: 0 1px 2px #d1d1d1;
  -webkit-box-shadow: 0 1px 2px #d1d1d1;
  box-shadow: 0 1px 2px #d1d1d1;
}
table.styleDefault th {
  padding: 21px 25px 22px 25px;
  border-top: 1px solid #fafafa;
  border-bottom: 1px solid #e0e0e0;
  background: #ededed;
  background: -webkit-gradient(linear, left top, left bottom, from(#ededed), to(#ebebeb));
  background: -moz-linear-gradient(top, #ededed, #ebebeb);
}
table.styleDefault th:first-child {
  text-align: left;
  padding-left: 20px;
}
table.styleDefault tr {
  text-align: center;
  padding-left: 20px;
}
table.styleDefault tr:first-child th:first-child {
  -moz-border-radius-topleft: 3px;
  -webkit-border-top-left-radius: 3px;
  border-top-left-radius: 3px;
}
table.styleDefault tr:first-child th:last-child {
  -moz-border-radius-topright: 3px;
  -webkit-border-top-right-radius: 3px;
  border-top-right-radius: 3px;
}
table.styleDefault tr td {
  padding: 10px;
  border-top: 1px solid #ffffff;
  border-bottom: 1px solid #e0e0e0;
  border-left: 1px solid #e0e0e0;
  background: #fafafa;
  background: -webkit-gradient(linear, left top, left bottom, from(#fbfbfb), to(#fafafa));
  background: -moz-linear-gradient(top, #fbfbfb, #fafafa);
}
table.styleDefault tr td:first-child {
  text-align: left;
  padding-left: 20px;
  border-left: 0;
}
table.styleDefault tr td a {
  font-size: 12px !important;
}
table.styleDefault tr td p {
  margin: 0;
}
table.styleDefault tr.even td {
  background: #f6f6f6;
  background: -webkit-gradient(linear, left top, left bottom, from(#f8f8f8), to(#f6f6f6));
  background: -moz-linear-gradient(top, #f8f8f8, #f6f6f6);
}
table.styleDefault tr:last-child td {
  border-bottom: 0;
}
table.styleDefault tr:last-child td:first-child {
  -moz-border-radius-bottomleft: 3px;
  -webkit-border-bottom-left-radius: 3px;
  border-bottom-left-radius: 3px;
}
table.styleDefault tr:hover td {
  background: #f2f2f2;
  background: -webkit-gradient(linear, left top, left bottom, from(#f2f2f2), to(#f0f0f0));
  background: -moz-linear-gradient(top, #f2f2f2, #f0f0f0);
}

/*# sourceMappingURL=style-wroclaw30-tables.css.map */
