/**********************************
RESET
**********************************/
@media screen and (-webkit-min-device-pixel-ratio: 0) and (-webkit-min-device-pixel-ratio: 0), screen and (-webkit-min-device-pixel-ratio: 0) and (min-resolution: 0.001dpcm) {
  img {
    image-rendering: -webkit-optimize-contrast !important;
  }
}
@media not all and (-webkit-min-device-pixel-ratio: 0), not all and (min-resolution: 0.001dpcm) {
  @supports (-webkit-appearance: none) and (stroke-color: transparent) {
    img {
      image-rendering: unset !important;
    }
  }
}
*, *::before, *::after {
  box-sizing: border-box;
}

body {
  line-height: 1;
}

html, body, button, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, ol, ul, li, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, font, img, ins, kbd, q, s, samp, small, strike, strong, tt, var, b, u, i, center, dl, dt, dd, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  background: transparent;
}

ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

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

:focus {
  outline: 0;
}

ins {
  text-decoration: none;
}

del {
  text-decoration: line-through;
}

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

img {
  max-width: 100%;
}

table img {
  max-width: none;
}

textarea, input, select {
  font-size: inherit;
  font-family: inherit;
  border-radius: 0;
}

/**********************************
MY CLASSES
**********************************/
.overflow {
  overflow: auto;
}

.nowrap {
  white-space: nowrap !important;
}

.break-word {
  word-break: break-word !important;
}

.pointer {
  cursor: pointer !important;
}

.rotate-180 {
  transform: rotate(180deg);
}

.no-bord {
  border: 0 !important;
}

.relative {
  position: relative !important;
}

.absolute {
  position: absolute !important;
}

.static {
  position: static !important;
}

.fixed {
  position: fixed !important;
}

.sticky {
  position: sticky !important;
}

.top {
  top: 0 !important;
}

.right {
  right: 0 !important;
}

.bottom {
  bottom: 0 !important;
}

.left {
  left: 0 !important;
}

.z-index-0 {
  z-index: 0 !important;
}

.z-index-1 {
  z-index: 1 !important;
}

.z-index-2 {
  z-index: 2 !important;
}

.z-index-3 {
  z-index: 3 !important;
}

.z-index-4 {
  z-index: 4 !important;
}

.z-index-5 {
  z-index: 5 !important;
}

.z-index-99 {
  z-index: 99 !important;
}

.z-index-999 {
  z-index: 999 !important;
}

.z-index-9999 {
  z-index: 9999 !important;
}

.z-index-99999 {
  z-index: 99999 !important;
}

.sticky-top {
  position: sticky !important;
  top: calc(60px + 5.5em);
  z-index: 1;
}

.cols:after, .clearfix:after {
  content: ".";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
}

* html .cols {
  height: 1%;
}

.f-left {
  float: left !important;
}

.f-right {
  float: right !important;
}

.format-text .f-left {
  margin-right: 1em;
  margin-bottom: 0.5em;
}

.format-text .f-right {
  margin-left: 1em;
  margin-bottom: 0.5em;
}

.format-text code {
  background-color: #eeeeee;
  padding: 0.1em 0.8em;
  display: inline-block;
  border-radius: 0.15em;
}

.format-text pre {
  border: 1px solid #bbbbbb;
  background-color: #eeeeee;
  padding: 0.8em;
  line-height: 1.8;
  display: inline-block;
  border-radius: 0.15em;
}

.t-left {
  text-align: left !important;
}

.t-center {
  text-align: center !important;
}

.t-right {
  text-align: right !important;
}
@media (min-width: 576px) {
  .t-right--s {
    text-align: right !important;
  }
}
@media (min-width: 768px) {
  .t-right--m {
    text-align: right !important;
  }
}
@media (min-width: 1090px) {
  .t-right--l {
    text-align: right !important;
  }
}
@media (min-width: 1280px) {
  .t-right--xl {
    text-align: right !important;
  }
}
@media (min-width: 1560px) {
  .t-right--xxl {
    text-align: right !important;
  }
}

.t-justify {
  text-align: justify !important;
}

.v-top, tr.v-top th, tr.v-top td {
  vertical-align: top !important;
}

.v-center, tr.v-center th, tr.v-center td {
  vertical-align: middle !important;
}

.v-bott, tr.v-bott th, tr.v-bott td {
  vertical-align: bottom !important;
}

hr {
  border: none;
  border-bottom: 1px solid #bbbbbb;
}

pre {
  background-color: #ffffff;
  color: #707070;
}

/**********************************
BORDER
**********************************/
.border1 {
  border-width: 1px;
  border-style: solid;
}

.border2 {
  border-width: 2px;
  border-style: solid;
}

.border3 {
  border-width: 3px;
  border-style: solid;
}

.border4 {
  border-width: 4px;
  border-style: solid;
}

.border5 {
  border-width: 5px;
  border-style: solid;
}

/**********************************
RADIUS
**********************************/
.radius1 {
  border-radius: 0.15em;
}

.circle {
  border-radius: 50%;
}

.circle-img {
  display: inline-block;
  background-position: center center;
  background-size: cover;
  border-radius: 50%;
}

/**********************************
SIRKY
**********************************/
.w1 {
  width: 10px !important;
}

.w2 {
  width: 20px !important;
}

.w3 {
  width: 30px !important;
}

.w4 {
  width: 40px !important;
}

.w5 {
  width: 50px !important;
}

.w6 {
  width: 60px !important;
}

.w7 {
  width: 70px !important;
}

.w8 {
  width: 80px !important;
}

.w9 {
  width: 90px !important;
}

.w10 {
  width: 100px !important;
}

.w20 {
  width: 200px !important;
}

.w30 {
  width: 300px !important;
}

.w40 {
  width: 400px !important;
}

.w50 {
  width: 500px !important;
}

.wauto {
  width: auto !important;
}

.full {
  width: 100% !important;
}

.extratiny, .w-ico {
  width: 10px;
}

/**********************************
VYSKY
**********************************/
.hgt-auto {
  height: auto !important;
}

.hgt1 {
  height: 10px !important;
}

.hgt2 {
  height: 20px !important;
}

.hgt3 {
  height: 30px !important;
}

.hgt4 {
  height: 40px !important;
}

.hgt5 {
  height: 50px !important;
}

.hgt6 {
  height: 60px !important;
}

.hgt7 {
  height: 70px !important;
}

.hgt8 {
  height: 80px !important;
}

.hgt9 {
  height: 90px !important;
}

.hgt10 {
  height: 100px !important;
}

.hgt20 {
  height: 200px !important;
}

.hgt30 {
  height: 300px !important;
}

.hgt40 {
  height: 400px !important;
}

.hgt50 {
  height: 500px !important;
}

/**********************************
ODSTINY
**********************************/
.blue {
  color: #40B4E5 !important;
}

.blue-bg, tr.blue-bg td, tr.blue-bg th {
  background-color: #40B4E5 !important;
}

.blue-border {
  border-color: #40B4E5 !important;
}

.blue-10 {
  color: #ecf8fc !important;
}

.blue-bg-10, tr.blue-bg-10 td, tr.blue-bg-10 th {
  background-color: #ecf8fc !important;
}

.blue-border-10 {
  border-color: #ecf8fc !important;
}

.blue-20 {
  color: #d9f0fa !important;
}

.blue-bg-20, tr.blue-bg-20 td, tr.blue-bg-20 th {
  background-color: #d9f0fa !important;
}

.blue-border-20 {
  border-color: #d9f0fa !important;
}

.blue-30 {
  color: #c6e9f7 !important;
}

.blue-bg-30, tr.blue-bg-30 td, tr.blue-bg-30 th {
  background-color: #c6e9f7 !important;
}

.blue-border-30 {
  border-color: #c6e9f7 !important;
}

.blue-40 {
  color: #b3e1f5 !important;
}

.blue-bg-40, tr.blue-bg-40 td, tr.blue-bg-40 th {
  background-color: #b3e1f5 !important;
}

.blue-border-40 {
  border-color: #b3e1f5 !important;
}

.blue-50 {
  color: #a0daf2 !important;
}

.blue-bg-50, tr.blue-bg-50 td, tr.blue-bg-50 th {
  background-color: #a0daf2 !important;
}

.blue-border-50 {
  border-color: #a0daf2 !important;
}

.blue-60 {
  color: #8cd2ef !important;
}

.blue-bg-60, tr.blue-bg-60 td, tr.blue-bg-60 th {
  background-color: #8cd2ef !important;
}

.blue-border-60 {
  border-color: #8cd2ef !important;
}

.blue-70 {
  color: #79cbed !important;
}

.blue-bg-70, tr.blue-bg-70 td, tr.blue-bg-70 th {
  background-color: #79cbed !important;
}

.blue-border-70 {
  border-color: #79cbed !important;
}

.blue-80 {
  color: #66c3ea !important;
}

.blue-bg-80, tr.blue-bg-80 td, tr.blue-bg-80 th {
  background-color: #66c3ea !important;
}

.blue-border-80 {
  border-color: #66c3ea !important;
}

.blue-90 {
  color: #53bce8 !important;
}

.blue-bg-90, tr.blue-bg-90 td, tr.blue-bg-90 th {
  background-color: #53bce8 !important;
}

.blue-border-90 {
  border-color: #53bce8 !important;
}

.blue-110 {
  color: #3aa2ce !important;
}

.blue-bg-110, tr.blue-bg-110 td, tr.blue-bg-110 th {
  background-color: #3aa2ce !important;
}

.blue-border-110 {
  border-color: #3aa2ce !important;
}

.blue-120 {
  color: #3390b7 !important;
}

.blue-bg-120, tr.blue-bg-120 td, tr.blue-bg-120 th {
  background-color: #3390b7 !important;
}

.blue-border-120 {
  border-color: #3390b7 !important;
}

.blue-130 {
  color: #2d7ea0 !important;
}

.blue-bg-130, tr.blue-bg-130 td, tr.blue-bg-130 th {
  background-color: #2d7ea0 !important;
}

.blue-border-130 {
  border-color: #2d7ea0 !important;
}

.blue-140 {
  color: #266c89 !important;
}

.blue-bg-140, tr.blue-bg-140 td, tr.blue-bg-140 th {
  background-color: #266c89 !important;
}

.blue-border-140 {
  border-color: #266c89 !important;
}

.blue-150 {
  color: #205a73 !important;
}

.blue-bg-150, tr.blue-bg-150 td, tr.blue-bg-150 th {
  background-color: #205a73 !important;
}

.blue-border-150 {
  border-color: #205a73 !important;
}

.blue-160 {
  color: #1a485c !important;
}

.blue-bg-160, tr.blue-bg-160 td, tr.blue-bg-160 th {
  background-color: #1a485c !important;
}

.blue-border-160 {
  border-color: #1a485c !important;
}

.blue-170 {
  color: #133645 !important;
}

.blue-bg-170, tr.blue-bg-170 td, tr.blue-bg-170 th {
  background-color: #133645 !important;
}

.blue-border-170 {
  border-color: #133645 !important;
}

.blue-180 {
  color: #0d242e !important;
}

.blue-bg-180, tr.blue-bg-180 td, tr.blue-bg-180 th {
  background-color: #0d242e !important;
}

.blue-border-180 {
  border-color: #0d242e !important;
}

.blue-190 {
  color: #061217 !important;
}

.blue-bg-190, tr.blue-bg-190 td, tr.blue-bg-190 th {
  background-color: #061217 !important;
}

.blue-border-190 {
  border-color: #061217 !important;
}

.yellow {
  color: #FFCC00 !important;
}

.yellow-bg, tr.yellow-bg td, tr.yellow-bg th {
  background-color: #FFCC00 !important;
}

.yellow-border {
  border-color: #FFCC00 !important;
}

.yellow-10 {
  color: #fffae6 !important;
}

.yellow-bg-10, tr.yellow-bg-10 td, tr.yellow-bg-10 th {
  background-color: #fffae6 !important;
}

.yellow-border-10 {
  border-color: #fffae6 !important;
}

.yellow-20 {
  color: #fff5cc !important;
}

.yellow-bg-20, tr.yellow-bg-20 td, tr.yellow-bg-20 th {
  background-color: #fff5cc !important;
}

.yellow-border-20 {
  border-color: #fff5cc !important;
}

.yellow-30 {
  color: #fff0b3 !important;
}

.yellow-bg-30, tr.yellow-bg-30 td, tr.yellow-bg-30 th {
  background-color: #fff0b3 !important;
}

.yellow-border-30 {
  border-color: #fff0b3 !important;
}

.yellow-40 {
  color: #ffeb99 !important;
}

.yellow-bg-40, tr.yellow-bg-40 td, tr.yellow-bg-40 th {
  background-color: #ffeb99 !important;
}

.yellow-border-40 {
  border-color: #ffeb99 !important;
}

.yellow-50 {
  color: #ffe680 !important;
}

.yellow-bg-50, tr.yellow-bg-50 td, tr.yellow-bg-50 th {
  background-color: #ffe680 !important;
}

.yellow-border-50 {
  border-color: #ffe680 !important;
}

.yellow-60 {
  color: #ffe066 !important;
}

.yellow-bg-60, tr.yellow-bg-60 td, tr.yellow-bg-60 th {
  background-color: #ffe066 !important;
}

.yellow-border-60 {
  border-color: #ffe066 !important;
}

.yellow-70 {
  color: #ffdb4d !important;
}

.yellow-bg-70, tr.yellow-bg-70 td, tr.yellow-bg-70 th {
  background-color: #ffdb4d !important;
}

.yellow-border-70 {
  border-color: #ffdb4d !important;
}

.yellow-80 {
  color: #ffd633 !important;
}

.yellow-bg-80, tr.yellow-bg-80 td, tr.yellow-bg-80 th {
  background-color: #ffd633 !important;
}

.yellow-border-80 {
  border-color: #ffd633 !important;
}

.yellow-90 {
  color: #ffd11a !important;
}

.yellow-bg-90, tr.yellow-bg-90 td, tr.yellow-bg-90 th {
  background-color: #ffd11a !important;
}

.yellow-border-90 {
  border-color: #ffd11a !important;
}

.yellow-110 {
  color: #e6b800 !important;
}

.yellow-bg-110, tr.yellow-bg-110 td, tr.yellow-bg-110 th {
  background-color: #e6b800 !important;
}

.yellow-border-110 {
  border-color: #e6b800 !important;
}

.yellow-120 {
  color: #cca300 !important;
}

.yellow-bg-120, tr.yellow-bg-120 td, tr.yellow-bg-120 th {
  background-color: #cca300 !important;
}

.yellow-border-120 {
  border-color: #cca300 !important;
}

.yellow-130 {
  color: #b38f00 !important;
}

.yellow-bg-130, tr.yellow-bg-130 td, tr.yellow-bg-130 th {
  background-color: #b38f00 !important;
}

.yellow-border-130 {
  border-color: #b38f00 !important;
}

.yellow-140 {
  color: #997a00 !important;
}

.yellow-bg-140, tr.yellow-bg-140 td, tr.yellow-bg-140 th {
  background-color: #997a00 !important;
}

.yellow-border-140 {
  border-color: #997a00 !important;
}

.yellow-150 {
  color: #806600 !important;
}

.yellow-bg-150, tr.yellow-bg-150 td, tr.yellow-bg-150 th {
  background-color: #806600 !important;
}

.yellow-border-150 {
  border-color: #806600 !important;
}

.yellow-160 {
  color: #665200 !important;
}

.yellow-bg-160, tr.yellow-bg-160 td, tr.yellow-bg-160 th {
  background-color: #665200 !important;
}

.yellow-border-160 {
  border-color: #665200 !important;
}

.yellow-170 {
  color: #4d3d00 !important;
}

.yellow-bg-170, tr.yellow-bg-170 td, tr.yellow-bg-170 th {
  background-color: #4d3d00 !important;
}

.yellow-border-170 {
  border-color: #4d3d00 !important;
}

.yellow-180 {
  color: #332900 !important;
}

.yellow-bg-180, tr.yellow-bg-180 td, tr.yellow-bg-180 th {
  background-color: #332900 !important;
}

.yellow-border-180 {
  border-color: #332900 !important;
}

.yellow-190 {
  color: #1a1400 !important;
}

.yellow-bg-190, tr.yellow-bg-190 td, tr.yellow-bg-190 th {
  background-color: #1a1400 !important;
}

.yellow-border-190 {
  border-color: #1a1400 !important;
}

.darkblue {
  color: #032654 !important;
}

.darkblue-bg, tr.darkblue-bg td, tr.darkblue-bg th {
  background-color: #032654 !important;
}

.darkblue-border {
  border-color: #032654 !important;
}

.darkblue-10 {
  color: #e6e9ee !important;
}

.darkblue-bg-10, tr.darkblue-bg-10 td, tr.darkblue-bg-10 th {
  background-color: #e6e9ee !important;
}

.darkblue-border-10 {
  border-color: #e6e9ee !important;
}

.darkblue-20 {
  color: #cdd4dd !important;
}

.darkblue-bg-20, tr.darkblue-bg-20 td, tr.darkblue-bg-20 th {
  background-color: #cdd4dd !important;
}

.darkblue-border-20 {
  border-color: #cdd4dd !important;
}

.darkblue-30 {
  color: #b3becc !important;
}

.darkblue-bg-30, tr.darkblue-bg-30 td, tr.darkblue-bg-30 th {
  background-color: #b3becc !important;
}

.darkblue-border-30 {
  border-color: #b3becc !important;
}

.darkblue-40 {
  color: #9aa8bb !important;
}

.darkblue-bg-40, tr.darkblue-bg-40 td, tr.darkblue-bg-40 th {
  background-color: #9aa8bb !important;
}

.darkblue-border-40 {
  border-color: #9aa8bb !important;
}

.darkblue-50 {
  color: #8193aa !important;
}

.darkblue-bg-50, tr.darkblue-bg-50 td, tr.darkblue-bg-50 th {
  background-color: #8193aa !important;
}

.darkblue-border-50 {
  border-color: #8193aa !important;
}

.darkblue-60 {
  color: #687d98 !important;
}

.darkblue-bg-60, tr.darkblue-bg-60 td, tr.darkblue-bg-60 th {
  background-color: #687d98 !important;
}

.darkblue-border-60 {
  border-color: #687d98 !important;
}

.darkblue-70 {
  color: #4f6787 !important;
}

.darkblue-bg-70, tr.darkblue-bg-70 td, tr.darkblue-bg-70 th {
  background-color: #4f6787 !important;
}

.darkblue-border-70 {
  border-color: #4f6787 !important;
}

.darkblue-80 {
  color: #355176 !important;
}

.darkblue-bg-80, tr.darkblue-bg-80 td, tr.darkblue-bg-80 th {
  background-color: #355176 !important;
}

.darkblue-border-80 {
  border-color: #355176 !important;
}

.darkblue-90 {
  color: #1c3c65 !important;
}

.darkblue-bg-90, tr.darkblue-bg-90 td, tr.darkblue-bg-90 th {
  background-color: #1c3c65 !important;
}

.darkblue-border-90 {
  border-color: #1c3c65 !important;
}

.darkblue-110 {
  color: #03224c !important;
}

.darkblue-bg-110, tr.darkblue-bg-110 td, tr.darkblue-bg-110 th {
  background-color: #03224c !important;
}

.darkblue-border-110 {
  border-color: #03224c !important;
}

.darkblue-120 {
  color: #021e43 !important;
}

.darkblue-bg-120, tr.darkblue-bg-120 td, tr.darkblue-bg-120 th {
  background-color: #021e43 !important;
}

.darkblue-border-120 {
  border-color: #021e43 !important;
}

.darkblue-130 {
  color: #021b3b !important;
}

.darkblue-bg-130, tr.darkblue-bg-130 td, tr.darkblue-bg-130 th {
  background-color: #021b3b !important;
}

.darkblue-border-130 {
  border-color: #021b3b !important;
}

.darkblue-140 {
  color: #021732 !important;
}

.darkblue-bg-140, tr.darkblue-bg-140 td, tr.darkblue-bg-140 th {
  background-color: #021732 !important;
}

.darkblue-border-140 {
  border-color: #021732 !important;
}

.darkblue-150 {
  color: #02132a !important;
}

.darkblue-bg-150, tr.darkblue-bg-150 td, tr.darkblue-bg-150 th {
  background-color: #02132a !important;
}

.darkblue-border-150 {
  border-color: #02132a !important;
}

.darkblue-160 {
  color: #010f22 !important;
}

.darkblue-bg-160, tr.darkblue-bg-160 td, tr.darkblue-bg-160 th {
  background-color: #010f22 !important;
}

.darkblue-border-160 {
  border-color: #010f22 !important;
}

.darkblue-170 {
  color: #010b19 !important;
}

.darkblue-bg-170, tr.darkblue-bg-170 td, tr.darkblue-bg-170 th {
  background-color: #010b19 !important;
}

.darkblue-border-170 {
  border-color: #010b19 !important;
}

.darkblue-180 {
  color: #010811 !important;
}

.darkblue-bg-180, tr.darkblue-bg-180 td, tr.darkblue-bg-180 th {
  background-color: #010811 !important;
}

.darkblue-border-180 {
  border-color: #010811 !important;
}

.darkblue-190 {
  color: #000408 !important;
}

.darkblue-bg-190, tr.darkblue-bg-190 td, tr.darkblue-bg-190 th {
  background-color: #000408 !important;
}

.darkblue-border-190 {
  border-color: #000408 !important;
}

.orange {
  color: #db640d !important;
}

.orange-bg, tr.orange-bg td, tr.orange-bg th {
  background-color: #db640d !important;
}

.orange-border {
  border-color: #db640d !important;
}

.orange-10 {
  color: #fbf0e7 !important;
}

.orange-bg-10, tr.orange-bg-10 td, tr.orange-bg-10 th {
  background-color: #fbf0e7 !important;
}

.orange-border-10 {
  border-color: #fbf0e7 !important;
}

.orange-20 {
  color: #f8e0cf !important;
}

.orange-bg-20, tr.orange-bg-20 td, tr.orange-bg-20 th {
  background-color: #f8e0cf !important;
}

.orange-border-20 {
  border-color: #f8e0cf !important;
}

.orange-30 {
  color: #f4d1b6 !important;
}

.orange-bg-30, tr.orange-bg-30 td, tr.orange-bg-30 th {
  background-color: #f4d1b6 !important;
}

.orange-border-30 {
  border-color: #f4d1b6 !important;
}

.orange-40 {
  color: #f1c19e !important;
}

.orange-bg-40, tr.orange-bg-40 td, tr.orange-bg-40 th {
  background-color: #f1c19e !important;
}

.orange-border-40 {
  border-color: #f1c19e !important;
}

.orange-50 {
  color: #edb286 !important;
}

.orange-bg-50, tr.orange-bg-50 td, tr.orange-bg-50 th {
  background-color: #edb286 !important;
}

.orange-border-50 {
  border-color: #edb286 !important;
}

.orange-60 {
  color: #e9a26e !important;
}

.orange-bg-60, tr.orange-bg-60 td, tr.orange-bg-60 th {
  background-color: #e9a26e !important;
}

.orange-border-60 {
  border-color: #e9a26e !important;
}

.orange-70 {
  color: #e69356 !important;
}

.orange-bg-70, tr.orange-bg-70 td, tr.orange-bg-70 th {
  background-color: #e69356 !important;
}

.orange-border-70 {
  border-color: #e69356 !important;
}

.orange-80 {
  color: #e2833d !important;
}

.orange-bg-80, tr.orange-bg-80 td, tr.orange-bg-80 th {
  background-color: #e2833d !important;
}

.orange-border-80 {
  border-color: #e2833d !important;
}

.orange-90 {
  color: #df7425 !important;
}

.orange-bg-90, tr.orange-bg-90 td, tr.orange-bg-90 th {
  background-color: #df7425 !important;
}

.orange-border-90 {
  border-color: #df7425 !important;
}

.orange-110 {
  color: #c55a0c !important;
}

.orange-bg-110, tr.orange-bg-110 td, tr.orange-bg-110 th {
  background-color: #c55a0c !important;
}

.orange-border-110 {
  border-color: #c55a0c !important;
}

.orange-120 {
  color: #af500a !important;
}

.orange-bg-120, tr.orange-bg-120 td, tr.orange-bg-120 th {
  background-color: #af500a !important;
}

.orange-border-120 {
  border-color: #af500a !important;
}

.orange-130 {
  color: #994609 !important;
}

.orange-bg-130, tr.orange-bg-130 td, tr.orange-bg-130 th {
  background-color: #994609 !important;
}

.orange-border-130 {
  border-color: #994609 !important;
}

.orange-140 {
  color: #833c08 !important;
}

.orange-bg-140, tr.orange-bg-140 td, tr.orange-bg-140 th {
  background-color: #833c08 !important;
}

.orange-border-140 {
  border-color: #833c08 !important;
}

.orange-150 {
  color: #6e3207 !important;
}

.orange-bg-150, tr.orange-bg-150 td, tr.orange-bg-150 th {
  background-color: #6e3207 !important;
}

.orange-border-150 {
  border-color: #6e3207 !important;
}

.orange-160 {
  color: #582805 !important;
}

.orange-bg-160, tr.orange-bg-160 td, tr.orange-bg-160 th {
  background-color: #582805 !important;
}

.orange-border-160 {
  border-color: #582805 !important;
}

.orange-170 {
  color: #421e04 !important;
}

.orange-bg-170, tr.orange-bg-170 td, tr.orange-bg-170 th {
  background-color: #421e04 !important;
}

.orange-border-170 {
  border-color: #421e04 !important;
}

.orange-180 {
  color: #2c1403 !important;
}

.orange-bg-180, tr.orange-bg-180 td, tr.orange-bg-180 th {
  background-color: #2c1403 !important;
}

.orange-border-180 {
  border-color: #2c1403 !important;
}

.orange-190 {
  color: #160a01 !important;
}

.orange-bg-190, tr.orange-bg-190 td, tr.orange-bg-190 th {
  background-color: #160a01 !important;
}

.orange-border-190 {
  border-color: #160a01 !important;
}

.green {
  color: #289152 !important;
}

.green-bg, tr.green-bg td, tr.green-bg th {
  background-color: #289152 !important;
}

.green-border {
  border-color: #289152 !important;
}

.green-10 {
  color: #eaf4ee !important;
}

.green-bg-10, tr.green-bg-10 td, tr.green-bg-10 th {
  background-color: #eaf4ee !important;
}

.green-border-10 {
  border-color: #eaf4ee !important;
}

.green-20 {
  color: #d4e9dc !important;
}

.green-bg-20, tr.green-bg-20 td, tr.green-bg-20 th {
  background-color: #d4e9dc !important;
}

.green-border-20 {
  border-color: #d4e9dc !important;
}

.green-30 {
  color: #bfdecb !important;
}

.green-bg-30, tr.green-bg-30 td, tr.green-bg-30 th {
  background-color: #bfdecb !important;
}

.green-border-30 {
  border-color: #bfdecb !important;
}

.green-40 {
  color: #a9d3ba !important;
}

.green-bg-40, tr.green-bg-40 td, tr.green-bg-40 th {
  background-color: #a9d3ba !important;
}

.green-border-40 {
  border-color: #a9d3ba !important;
}

.green-50 {
  color: #94c8a9 !important;
}

.green-bg-50, tr.green-bg-50 td, tr.green-bg-50 th {
  background-color: #94c8a9 !important;
}

.green-border-50 {
  border-color: #94c8a9 !important;
}

.green-60 {
  color: #7ebd97 !important;
}

.green-bg-60, tr.green-bg-60 td, tr.green-bg-60 th {
  background-color: #7ebd97 !important;
}

.green-border-60 {
  border-color: #7ebd97 !important;
}

.green-70 {
  color: #69b286 !important;
}

.green-bg-70, tr.green-bg-70 td, tr.green-bg-70 th {
  background-color: #69b286 !important;
}

.green-border-70 {
  border-color: #69b286 !important;
}

.green-80 {
  color: #53a775 !important;
}

.green-bg-80, tr.green-bg-80 td, tr.green-bg-80 th {
  background-color: #53a775 !important;
}

.green-border-80 {
  border-color: #53a775 !important;
}

.green-90 {
  color: #3e9c63 !important;
}

.green-bg-90, tr.green-bg-90 td, tr.green-bg-90 th {
  background-color: #3e9c63 !important;
}

.green-border-90 {
  border-color: #3e9c63 !important;
}

.green-110 {
  color: #24834a !important;
}

.green-bg-110, tr.green-bg-110 td, tr.green-bg-110 th {
  background-color: #24834a !important;
}

.green-border-110 {
  border-color: #24834a !important;
}

.green-120 {
  color: #207442 !important;
}

.green-bg-120, tr.green-bg-120 td, tr.green-bg-120 th {
  background-color: #207442 !important;
}

.green-border-120 {
  border-color: #207442 !important;
}

.green-130 {
  color: #1c6639 !important;
}

.green-bg-130, tr.green-bg-130 td, tr.green-bg-130 th {
  background-color: #1c6639 !important;
}

.green-border-130 {
  border-color: #1c6639 !important;
}

.green-140 {
  color: #185731 !important;
}

.green-bg-140, tr.green-bg-140 td, tr.green-bg-140 th {
  background-color: #185731 !important;
}

.green-border-140 {
  border-color: #185731 !important;
}

.green-150 {
  color: #144929 !important;
}

.green-bg-150, tr.green-bg-150 td, tr.green-bg-150 th {
  background-color: #144929 !important;
}

.green-border-150 {
  border-color: #144929 !important;
}

.green-160 {
  color: #103a21 !important;
}

.green-bg-160, tr.green-bg-160 td, tr.green-bg-160 th {
  background-color: #103a21 !important;
}

.green-border-160 {
  border-color: #103a21 !important;
}

.green-170 {
  color: #0c2c19 !important;
}

.green-bg-170, tr.green-bg-170 td, tr.green-bg-170 th {
  background-color: #0c2c19 !important;
}

.green-border-170 {
  border-color: #0c2c19 !important;
}

.green-180 {
  color: #081d10 !important;
}

.green-bg-180, tr.green-bg-180 td, tr.green-bg-180 th {
  background-color: #081d10 !important;
}

.green-border-180 {
  border-color: #081d10 !important;
}

.green-190 {
  color: #040f08 !important;
}

.green-bg-190, tr.green-bg-190 td, tr.green-bg-190 th {
  background-color: #040f08 !important;
}

.green-border-190 {
  border-color: #040f08 !important;
}

.violet {
  color: #9778D3 !important;
}

.violet-bg, tr.violet-bg td, tr.violet-bg th {
  background-color: #9778D3 !important;
}

.violet-border {
  border-color: #9778D3 !important;
}

.violet-10 {
  color: #f5f2fb !important;
}

.violet-bg-10, tr.violet-bg-10 td, tr.violet-bg-10 th {
  background-color: #f5f2fb !important;
}

.violet-border-10 {
  border-color: #f5f2fb !important;
}

.violet-20 {
  color: #eae4f6 !important;
}

.violet-bg-20, tr.violet-bg-20 td, tr.violet-bg-20 th {
  background-color: #eae4f6 !important;
}

.violet-border-20 {
  border-color: #eae4f6 !important;
}

.violet-30 {
  color: #e0d7f2 !important;
}

.violet-bg-30, tr.violet-bg-30 td, tr.violet-bg-30 th {
  background-color: #e0d7f2 !important;
}

.violet-border-30 {
  border-color: #e0d7f2 !important;
}

.violet-40 {
  color: #d5c9ed !important;
}

.violet-bg-40, tr.violet-bg-40 td, tr.violet-bg-40 th {
  background-color: #d5c9ed !important;
}

.violet-border-40 {
  border-color: #d5c9ed !important;
}

.violet-50 {
  color: #cbbce9 !important;
}

.violet-bg-50, tr.violet-bg-50 td, tr.violet-bg-50 th {
  background-color: #cbbce9 !important;
}

.violet-border-50 {
  border-color: #cbbce9 !important;
}

.violet-60 {
  color: #c1aee5 !important;
}

.violet-bg-60, tr.violet-bg-60 td, tr.violet-bg-60 th {
  background-color: #c1aee5 !important;
}

.violet-border-60 {
  border-color: #c1aee5 !important;
}

.violet-70 {
  color: #b6a1e0 !important;
}

.violet-bg-70, tr.violet-bg-70 td, tr.violet-bg-70 th {
  background-color: #b6a1e0 !important;
}

.violet-border-70 {
  border-color: #b6a1e0 !important;
}

.violet-80 {
  color: #ac93dc !important;
}

.violet-bg-80, tr.violet-bg-80 td, tr.violet-bg-80 th {
  background-color: #ac93dc !important;
}

.violet-border-80 {
  border-color: #ac93dc !important;
}

.violet-90 {
  color: #a186d7 !important;
}

.violet-bg-90, tr.violet-bg-90 td, tr.violet-bg-90 th {
  background-color: #a186d7 !important;
}

.violet-border-90 {
  border-color: #a186d7 !important;
}

.violet-110 {
  color: #886cbe !important;
}

.violet-bg-110, tr.violet-bg-110 td, tr.violet-bg-110 th {
  background-color: #886cbe !important;
}

.violet-border-110 {
  border-color: #886cbe !important;
}

.violet-120 {
  color: #7960a9 !important;
}

.violet-bg-120, tr.violet-bg-120 td, tr.violet-bg-120 th {
  background-color: #7960a9 !important;
}

.violet-border-120 {
  border-color: #7960a9 !important;
}

.violet-130 {
  color: #6a5494 !important;
}

.violet-bg-130, tr.violet-bg-130 td, tr.violet-bg-130 th {
  background-color: #6a5494 !important;
}

.violet-border-130 {
  border-color: #6a5494 !important;
}

.violet-140 {
  color: #5b487f !important;
}

.violet-bg-140, tr.violet-bg-140 td, tr.violet-bg-140 th {
  background-color: #5b487f !important;
}

.violet-border-140 {
  border-color: #5b487f !important;
}

.violet-150 {
  color: #4c3c6a !important;
}

.violet-bg-150, tr.violet-bg-150 td, tr.violet-bg-150 th {
  background-color: #4c3c6a !important;
}

.violet-border-150 {
  border-color: #4c3c6a !important;
}

.violet-160 {
  color: #3c3054 !important;
}

.violet-bg-160, tr.violet-bg-160 td, tr.violet-bg-160 th {
  background-color: #3c3054 !important;
}

.violet-border-160 {
  border-color: #3c3054 !important;
}

.violet-170 {
  color: #2d243f !important;
}

.violet-bg-170, tr.violet-bg-170 td, tr.violet-bg-170 th {
  background-color: #2d243f !important;
}

.violet-border-170 {
  border-color: #2d243f !important;
}

.violet-180 {
  color: #1e182a !important;
}

.violet-bg-180, tr.violet-bg-180 td, tr.violet-bg-180 th {
  background-color: #1e182a !important;
}

.violet-border-180 {
  border-color: #1e182a !important;
}

.violet-190 {
  color: #0f0c15 !important;
}

.violet-bg-190, tr.violet-bg-190 td, tr.violet-bg-190 th {
  background-color: #0f0c15 !important;
}

.violet-border-190 {
  border-color: #0f0c15 !important;
}

.red {
  color: #d23e30 !important;
}

.red-bg, tr.red-bg td, tr.red-bg th {
  background-color: #d23e30 !important;
}

.red-border {
  border-color: #d23e30 !important;
}

.red-10 {
  color: #fbecea !important;
}

.red-bg-10, tr.red-bg-10 td, tr.red-bg-10 th {
  background-color: #fbecea !important;
}

.red-border-10 {
  border-color: #fbecea !important;
}

.red-20 {
  color: #f6d8d6 !important;
}

.red-bg-20, tr.red-bg-20 td, tr.red-bg-20 th {
  background-color: #f6d8d6 !important;
}

.red-border-20 {
  border-color: #f6d8d6 !important;
}

.red-30 {
  color: #f2c5c1 !important;
}

.red-bg-30, tr.red-bg-30 td, tr.red-bg-30 th {
  background-color: #f2c5c1 !important;
}

.red-border-30 {
  border-color: #f2c5c1 !important;
}

.red-40 {
  color: #edb2ac !important;
}

.red-bg-40, tr.red-bg-40 td, tr.red-bg-40 th {
  background-color: #edb2ac !important;
}

.red-border-40 {
  border-color: #edb2ac !important;
}

.red-50 {
  color: #e99f98 !important;
}

.red-bg-50, tr.red-bg-50 td, tr.red-bg-50 th {
  background-color: #e99f98 !important;
}

.red-border-50 {
  border-color: #e99f98 !important;
}

.red-60 {
  color: #e48b83 !important;
}

.red-bg-60, tr.red-bg-60 td, tr.red-bg-60 th {
  background-color: #e48b83 !important;
}

.red-border-60 {
  border-color: #e48b83 !important;
}

.red-70 {
  color: #e0786e !important;
}

.red-bg-70, tr.red-bg-70 td, tr.red-bg-70 th {
  background-color: #e0786e !important;
}

.red-border-70 {
  border-color: #e0786e !important;
}

.red-80 {
  color: #db6559 !important;
}

.red-bg-80, tr.red-bg-80 td, tr.red-bg-80 th {
  background-color: #db6559 !important;
}

.red-border-80 {
  border-color: #db6559 !important;
}

.red-90 {
  color: #d75145 !important;
}

.red-bg-90, tr.red-bg-90 td, tr.red-bg-90 th {
  background-color: #d75145 !important;
}

.red-border-90 {
  border-color: #d75145 !important;
}

.red-110 {
  color: #bd382b !important;
}

.red-bg-110, tr.red-bg-110 td, tr.red-bg-110 th {
  background-color: #bd382b !important;
}

.red-border-110 {
  border-color: #bd382b !important;
}

.red-120 {
  color: #a83226 !important;
}

.red-bg-120, tr.red-bg-120 td, tr.red-bg-120 th {
  background-color: #a83226 !important;
}

.red-border-120 {
  border-color: #a83226 !important;
}

.red-130 {
  color: #932b22 !important;
}

.red-bg-130, tr.red-bg-130 td, tr.red-bg-130 th {
  background-color: #932b22 !important;
}

.red-border-130 {
  border-color: #932b22 !important;
}

.red-140 {
  color: #7e251d !important;
}

.red-bg-140, tr.red-bg-140 td, tr.red-bg-140 th {
  background-color: #7e251d !important;
}

.red-border-140 {
  border-color: #7e251d !important;
}

.red-150 {
  color: #691f18 !important;
}

.red-bg-150, tr.red-bg-150 td, tr.red-bg-150 th {
  background-color: #691f18 !important;
}

.red-border-150 {
  border-color: #691f18 !important;
}

.red-160 {
  color: #541913 !important;
}

.red-bg-160, tr.red-bg-160 td, tr.red-bg-160 th {
  background-color: #541913 !important;
}

.red-border-160 {
  border-color: #541913 !important;
}

.red-170 {
  color: #3f130e !important;
}

.red-bg-170, tr.red-bg-170 td, tr.red-bg-170 th {
  background-color: #3f130e !important;
}

.red-border-170 {
  border-color: #3f130e !important;
}

.red-180 {
  color: #2a0c0a !important;
}

.red-bg-180, tr.red-bg-180 td, tr.red-bg-180 th {
  background-color: #2a0c0a !important;
}

.red-border-180 {
  border-color: #2a0c0a !important;
}

.red-190 {
  color: #150605 !important;
}

.red-bg-190, tr.red-bg-190 td, tr.red-bg-190 th {
  background-color: #150605 !important;
}

.red-border-190 {
  border-color: #150605 !important;
}

.white {
  color: #ffffff !important;
}

.white-bg, tr.white-bg td, tr.white-bg th {
  background-color: #ffffff !important;
}

.white-border {
  border-color: #ffffff !important;
}

.white-10 {
  color: white !important;
}

.white-bg-10, tr.white-bg-10 td, tr.white-bg-10 th {
  background-color: white !important;
}

.white-border-10 {
  border-color: white !important;
}

.white-20 {
  color: white !important;
}

.white-bg-20, tr.white-bg-20 td, tr.white-bg-20 th {
  background-color: white !important;
}

.white-border-20 {
  border-color: white !important;
}

.white-30 {
  color: white !important;
}

.white-bg-30, tr.white-bg-30 td, tr.white-bg-30 th {
  background-color: white !important;
}

.white-border-30 {
  border-color: white !important;
}

.white-40 {
  color: white !important;
}

.white-bg-40, tr.white-bg-40 td, tr.white-bg-40 th {
  background-color: white !important;
}

.white-border-40 {
  border-color: white !important;
}

.white-50 {
  color: white !important;
}

.white-bg-50, tr.white-bg-50 td, tr.white-bg-50 th {
  background-color: white !important;
}

.white-border-50 {
  border-color: white !important;
}

.white-60 {
  color: white !important;
}

.white-bg-60, tr.white-bg-60 td, tr.white-bg-60 th {
  background-color: white !important;
}

.white-border-60 {
  border-color: white !important;
}

.white-70 {
  color: white !important;
}

.white-bg-70, tr.white-bg-70 td, tr.white-bg-70 th {
  background-color: white !important;
}

.white-border-70 {
  border-color: white !important;
}

.white-80 {
  color: white !important;
}

.white-bg-80, tr.white-bg-80 td, tr.white-bg-80 th {
  background-color: white !important;
}

.white-border-80 {
  border-color: white !important;
}

.white-90 {
  color: white !important;
}

.white-bg-90, tr.white-bg-90 td, tr.white-bg-90 th {
  background-color: white !important;
}

.white-border-90 {
  border-color: white !important;
}

.white-110 {
  color: #e6e6e6 !important;
}

.white-bg-110, tr.white-bg-110 td, tr.white-bg-110 th {
  background-color: #e6e6e6 !important;
}

.white-border-110 {
  border-color: #e6e6e6 !important;
}

.white-120 {
  color: #cccccc !important;
}

.white-bg-120, tr.white-bg-120 td, tr.white-bg-120 th {
  background-color: #cccccc !important;
}

.white-border-120 {
  border-color: #cccccc !important;
}

.white-130 {
  color: #b3b3b3 !important;
}

.white-bg-130, tr.white-bg-130 td, tr.white-bg-130 th {
  background-color: #b3b3b3 !important;
}

.white-border-130 {
  border-color: #b3b3b3 !important;
}

.white-140 {
  color: #999999 !important;
}

.white-bg-140, tr.white-bg-140 td, tr.white-bg-140 th {
  background-color: #999999 !important;
}

.white-border-140 {
  border-color: #999999 !important;
}

.white-150 {
  color: gray !important;
}

.white-bg-150, tr.white-bg-150 td, tr.white-bg-150 th {
  background-color: gray !important;
}

.white-border-150 {
  border-color: gray !important;
}

.white-160 {
  color: #666666 !important;
}

.white-bg-160, tr.white-bg-160 td, tr.white-bg-160 th {
  background-color: #666666 !important;
}

.white-border-160 {
  border-color: #666666 !important;
}

.white-170 {
  color: #4d4d4d !important;
}

.white-bg-170, tr.white-bg-170 td, tr.white-bg-170 th {
  background-color: #4d4d4d !important;
}

.white-border-170 {
  border-color: #4d4d4d !important;
}

.white-180 {
  color: #333333 !important;
}

.white-bg-180, tr.white-bg-180 td, tr.white-bg-180 th {
  background-color: #333333 !important;
}

.white-border-180 {
  border-color: #333333 !important;
}

.white-190 {
  color: #1a1a1a !important;
}

.white-bg-190, tr.white-bg-190 td, tr.white-bg-190 th {
  background-color: #1a1a1a !important;
}

.white-border-190 {
  border-color: #1a1a1a !important;
}

.grey {
  color: #bbbbbb !important;
}

.grey-bg, tr.grey-bg td, tr.grey-bg th {
  background-color: #bbbbbb !important;
}

.grey-border {
  border-color: #bbbbbb !important;
}

.grey-10 {
  color: #f8f8f8 !important;
}

.grey-bg-10, tr.grey-bg-10 td, tr.grey-bg-10 th {
  background-color: #f8f8f8 !important;
}

.grey-border-10 {
  border-color: #f8f8f8 !important;
}

.grey-20 {
  color: #f1f1f1 !important;
}

.grey-bg-20, tr.grey-bg-20 td, tr.grey-bg-20 th {
  background-color: #f1f1f1 !important;
}

.grey-border-20 {
  border-color: #f1f1f1 !important;
}

.grey-30 {
  color: #ebebeb !important;
}

.grey-bg-30, tr.grey-bg-30 td, tr.grey-bg-30 th {
  background-color: #ebebeb !important;
}

.grey-border-30 {
  border-color: #ebebeb !important;
}

.grey-40 {
  color: #e4e4e4 !important;
}

.grey-bg-40, tr.grey-bg-40 td, tr.grey-bg-40 th {
  background-color: #e4e4e4 !important;
}

.grey-border-40 {
  border-color: #e4e4e4 !important;
}

.grey-50 {
  color: #dddddd !important;
}

.grey-bg-50, tr.grey-bg-50 td, tr.grey-bg-50 th {
  background-color: #dddddd !important;
}

.grey-border-50 {
  border-color: #dddddd !important;
}

.grey-60 {
  color: #d6d6d6 !important;
}

.grey-bg-60, tr.grey-bg-60 td, tr.grey-bg-60 th {
  background-color: #d6d6d6 !important;
}

.grey-border-60 {
  border-color: #d6d6d6 !important;
}

.grey-70 {
  color: #cfcfcf !important;
}

.grey-bg-70, tr.grey-bg-70 td, tr.grey-bg-70 th {
  background-color: #cfcfcf !important;
}

.grey-border-70 {
  border-color: #cfcfcf !important;
}

.grey-80 {
  color: #c9c9c9 !important;
}

.grey-bg-80, tr.grey-bg-80 td, tr.grey-bg-80 th {
  background-color: #c9c9c9 !important;
}

.grey-border-80 {
  border-color: #c9c9c9 !important;
}

.grey-90 {
  color: #c2c2c2 !important;
}

.grey-bg-90, tr.grey-bg-90 td, tr.grey-bg-90 th {
  background-color: #c2c2c2 !important;
}

.grey-border-90 {
  border-color: #c2c2c2 !important;
}

.grey-110 {
  color: #a8a8a8 !important;
}

.grey-bg-110, tr.grey-bg-110 td, tr.grey-bg-110 th {
  background-color: #a8a8a8 !important;
}

.grey-border-110 {
  border-color: #a8a8a8 !important;
}

.grey-120 {
  color: #969696 !important;
}

.grey-bg-120, tr.grey-bg-120 td, tr.grey-bg-120 th {
  background-color: #969696 !important;
}

.grey-border-120 {
  border-color: #969696 !important;
}

.grey-130 {
  color: #838383 !important;
}

.grey-bg-130, tr.grey-bg-130 td, tr.grey-bg-130 th {
  background-color: #838383 !important;
}

.grey-border-130 {
  border-color: #838383 !important;
}

.grey-140 {
  color: #707070 !important;
}

.grey-bg-140, tr.grey-bg-140 td, tr.grey-bg-140 th {
  background-color: #707070 !important;
}

.grey-border-140 {
  border-color: #707070 !important;
}

.grey-150 {
  color: #5e5e5e !important;
}

.grey-bg-150, tr.grey-bg-150 td, tr.grey-bg-150 th {
  background-color: #5e5e5e !important;
}

.grey-border-150 {
  border-color: #5e5e5e !important;
}

.grey-160 {
  color: #4b4b4b !important;
}

.grey-bg-160, tr.grey-bg-160 td, tr.grey-bg-160 th {
  background-color: #4b4b4b !important;
}

.grey-border-160 {
  border-color: #4b4b4b !important;
}

.grey-170 {
  color: #383838 !important;
}

.grey-bg-170, tr.grey-bg-170 td, tr.grey-bg-170 th {
  background-color: #383838 !important;
}

.grey-border-170 {
  border-color: #383838 !important;
}

.grey-180 {
  color: #252525 !important;
}

.grey-bg-180, tr.grey-bg-180 td, tr.grey-bg-180 th {
  background-color: #252525 !important;
}

.grey-border-180 {
  border-color: #252525 !important;
}

.grey-190 {
  color: #131313 !important;
}

.grey-bg-190, tr.grey-bg-190 td, tr.grey-bg-190 th {
  background-color: #131313 !important;
}

.grey-border-190 {
  border-color: #131313 !important;
}

.dark {
  color: #707070 !important;
}

.dark-bg, tr.dark-bg td, tr.dark-bg th {
  background-color: #707070 !important;
}

.dark-border {
  border-color: #707070 !important;
}

.dark-10 {
  color: #f1f1f1 !important;
}

.dark-bg-10, tr.dark-bg-10 td, tr.dark-bg-10 th {
  background-color: #f1f1f1 !important;
}

.dark-border-10 {
  border-color: #f1f1f1 !important;
}

.dark-20 {
  color: #e2e2e2 !important;
}

.dark-bg-20, tr.dark-bg-20 td, tr.dark-bg-20 th {
  background-color: #e2e2e2 !important;
}

.dark-border-20 {
  border-color: #e2e2e2 !important;
}

.dark-30 {
  color: #d4d4d4 !important;
}

.dark-bg-30, tr.dark-bg-30 td, tr.dark-bg-30 th {
  background-color: #d4d4d4 !important;
}

.dark-border-30 {
  border-color: #d4d4d4 !important;
}

.dark-40 {
  color: #c6c6c6 !important;
}

.dark-bg-40, tr.dark-bg-40 td, tr.dark-bg-40 th {
  background-color: #c6c6c6 !important;
}

.dark-border-40 {
  border-color: #c6c6c6 !important;
}

.dark-50 {
  color: #b8b8b8 !important;
}

.dark-bg-50, tr.dark-bg-50 td, tr.dark-bg-50 th {
  background-color: #b8b8b8 !important;
}

.dark-border-50 {
  border-color: #b8b8b8 !important;
}

.dark-60 {
  color: darkgray !important;
}

.dark-bg-60, tr.dark-bg-60 td, tr.dark-bg-60 th {
  background-color: darkgray !important;
}

.dark-border-60 {
  border-color: darkgray !important;
}

.dark-70 {
  color: #9b9b9b !important;
}

.dark-bg-70, tr.dark-bg-70 td, tr.dark-bg-70 th {
  background-color: #9b9b9b !important;
}

.dark-border-70 {
  border-color: #9b9b9b !important;
}

.dark-80 {
  color: #8d8d8d !important;
}

.dark-bg-80, tr.dark-bg-80 td, tr.dark-bg-80 th {
  background-color: #8d8d8d !important;
}

.dark-border-80 {
  border-color: #8d8d8d !important;
}

.dark-90 {
  color: #7e7e7e !important;
}

.dark-bg-90, tr.dark-bg-90 td, tr.dark-bg-90 th {
  background-color: #7e7e7e !important;
}

.dark-border-90 {
  border-color: #7e7e7e !important;
}

.dark-110 {
  color: #656565 !important;
}

.dark-bg-110, tr.dark-bg-110 td, tr.dark-bg-110 th {
  background-color: #656565 !important;
}

.dark-border-110 {
  border-color: #656565 !important;
}

.dark-120 {
  color: #5a5a5a !important;
}

.dark-bg-120, tr.dark-bg-120 td, tr.dark-bg-120 th {
  background-color: #5a5a5a !important;
}

.dark-border-120 {
  border-color: #5a5a5a !important;
}

.dark-130 {
  color: #4e4e4e !important;
}

.dark-bg-130, tr.dark-bg-130 td, tr.dark-bg-130 th {
  background-color: #4e4e4e !important;
}

.dark-border-130 {
  border-color: #4e4e4e !important;
}

.dark-140 {
  color: #434343 !important;
}

.dark-bg-140, tr.dark-bg-140 td, tr.dark-bg-140 th {
  background-color: #434343 !important;
}

.dark-border-140 {
  border-color: #434343 !important;
}

.dark-150 {
  color: #383838 !important;
}

.dark-bg-150, tr.dark-bg-150 td, tr.dark-bg-150 th {
  background-color: #383838 !important;
}

.dark-border-150 {
  border-color: #383838 !important;
}

.dark-160 {
  color: #2d2d2d !important;
}

.dark-bg-160, tr.dark-bg-160 td, tr.dark-bg-160 th {
  background-color: #2d2d2d !important;
}

.dark-border-160 {
  border-color: #2d2d2d !important;
}

.dark-170 {
  color: #222222 !important;
}

.dark-bg-170, tr.dark-bg-170 td, tr.dark-bg-170 th {
  background-color: #222222 !important;
}

.dark-border-170 {
  border-color: #222222 !important;
}

.dark-180 {
  color: #161616 !important;
}

.dark-bg-180, tr.dark-bg-180 td, tr.dark-bg-180 th {
  background-color: #161616 !important;
}

.dark-border-180 {
  border-color: #161616 !important;
}

.dark-190 {
  color: #0b0b0b !important;
}

.dark-bg-190, tr.dark-bg-190 td, tr.dark-bg-190 th {
  background-color: #0b0b0b !important;
}

.dark-border-190 {
  border-color: #0b0b0b !important;
}

.darkgrey {
  color: #555 !important;
}

.darkgrey-bg, tr.darkgrey-bg td, tr.darkgrey-bg th {
  background-color: #555 !important;
}

.darkgrey-border {
  border-color: #555 !important;
}

.darkgrey-10 {
  color: #eeeeee !important;
}

.darkgrey-bg-10, tr.darkgrey-bg-10 td, tr.darkgrey-bg-10 th {
  background-color: #eeeeee !important;
}

.darkgrey-border-10 {
  border-color: #eeeeee !important;
}

.darkgrey-20 {
  color: #dddddd !important;
}

.darkgrey-bg-20, tr.darkgrey-bg-20 td, tr.darkgrey-bg-20 th {
  background-color: #dddddd !important;
}

.darkgrey-border-20 {
  border-color: #dddddd !important;
}

.darkgrey-30 {
  color: #cccccc !important;
}

.darkgrey-bg-30, tr.darkgrey-bg-30 td, tr.darkgrey-bg-30 th {
  background-color: #cccccc !important;
}

.darkgrey-border-30 {
  border-color: #cccccc !important;
}

.darkgrey-40 {
  color: #bbbbbb !important;
}

.darkgrey-bg-40, tr.darkgrey-bg-40 td, tr.darkgrey-bg-40 th {
  background-color: #bbbbbb !important;
}

.darkgrey-border-40 {
  border-color: #bbbbbb !important;
}

.darkgrey-50 {
  color: #aaaaaa !important;
}

.darkgrey-bg-50, tr.darkgrey-bg-50 td, tr.darkgrey-bg-50 th {
  background-color: #aaaaaa !important;
}

.darkgrey-border-50 {
  border-color: #aaaaaa !important;
}

.darkgrey-60 {
  color: #999999 !important;
}

.darkgrey-bg-60, tr.darkgrey-bg-60 td, tr.darkgrey-bg-60 th {
  background-color: #999999 !important;
}

.darkgrey-border-60 {
  border-color: #999999 !important;
}

.darkgrey-70 {
  color: #888888 !important;
}

.darkgrey-bg-70, tr.darkgrey-bg-70 td, tr.darkgrey-bg-70 th {
  background-color: #888888 !important;
}

.darkgrey-border-70 {
  border-color: #888888 !important;
}

.darkgrey-80 {
  color: #777777 !important;
}

.darkgrey-bg-80, tr.darkgrey-bg-80 td, tr.darkgrey-bg-80 th {
  background-color: #777777 !important;
}

.darkgrey-border-80 {
  border-color: #777777 !important;
}

.darkgrey-90 {
  color: #666666 !important;
}

.darkgrey-bg-90, tr.darkgrey-bg-90 td, tr.darkgrey-bg-90 th {
  background-color: #666666 !important;
}

.darkgrey-border-90 {
  border-color: #666666 !important;
}

.darkgrey-110 {
  color: #4d4d4d !important;
}

.darkgrey-bg-110, tr.darkgrey-bg-110 td, tr.darkgrey-bg-110 th {
  background-color: #4d4d4d !important;
}

.darkgrey-border-110 {
  border-color: #4d4d4d !important;
}

.darkgrey-120 {
  color: #444444 !important;
}

.darkgrey-bg-120, tr.darkgrey-bg-120 td, tr.darkgrey-bg-120 th {
  background-color: #444444 !important;
}

.darkgrey-border-120 {
  border-color: #444444 !important;
}

.darkgrey-130 {
  color: #3c3c3c !important;
}

.darkgrey-bg-130, tr.darkgrey-bg-130 td, tr.darkgrey-bg-130 th {
  background-color: #3c3c3c !important;
}

.darkgrey-border-130 {
  border-color: #3c3c3c !important;
}

.darkgrey-140 {
  color: #333333 !important;
}

.darkgrey-bg-140, tr.darkgrey-bg-140 td, tr.darkgrey-bg-140 th {
  background-color: #333333 !important;
}

.darkgrey-border-140 {
  border-color: #333333 !important;
}

.darkgrey-150 {
  color: #2b2b2b !important;
}

.darkgrey-bg-150, tr.darkgrey-bg-150 td, tr.darkgrey-bg-150 th {
  background-color: #2b2b2b !important;
}

.darkgrey-border-150 {
  border-color: #2b2b2b !important;
}

.darkgrey-160 {
  color: #222222 !important;
}

.darkgrey-bg-160, tr.darkgrey-bg-160 td, tr.darkgrey-bg-160 th {
  background-color: #222222 !important;
}

.darkgrey-border-160 {
  border-color: #222222 !important;
}

.darkgrey-170 {
  color: #1a1a1a !important;
}

.darkgrey-bg-170, tr.darkgrey-bg-170 td, tr.darkgrey-bg-170 th {
  background-color: #1a1a1a !important;
}

.darkgrey-border-170 {
  border-color: #1a1a1a !important;
}

.darkgrey-180 {
  color: #111111 !important;
}

.darkgrey-bg-180, tr.darkgrey-bg-180 td, tr.darkgrey-bg-180 th {
  background-color: #111111 !important;
}

.darkgrey-border-180 {
  border-color: #111111 !important;
}

.darkgrey-190 {
  color: #090909 !important;
}

.darkgrey-bg-190, tr.darkgrey-bg-190 td, tr.darkgrey-bg-190 th {
  background-color: #090909 !important;
}

.darkgrey-border-190 {
  border-color: #090909 !important;
}

.black {
  color: #000000 !important;
}

.black-bg, tr.black-bg td, tr.black-bg th {
  background-color: #000000 !important;
}

.black-border {
  border-color: #000000 !important;
}

.black-10 {
  color: #e6e6e6 !important;
}

.black-bg-10, tr.black-bg-10 td, tr.black-bg-10 th {
  background-color: #e6e6e6 !important;
}

.black-border-10 {
  border-color: #e6e6e6 !important;
}

.black-20 {
  color: #cccccc !important;
}

.black-bg-20, tr.black-bg-20 td, tr.black-bg-20 th {
  background-color: #cccccc !important;
}

.black-border-20 {
  border-color: #cccccc !important;
}

.black-30 {
  color: #b3b3b3 !important;
}

.black-bg-30, tr.black-bg-30 td, tr.black-bg-30 th {
  background-color: #b3b3b3 !important;
}

.black-border-30 {
  border-color: #b3b3b3 !important;
}

.black-40 {
  color: #999999 !important;
}

.black-bg-40, tr.black-bg-40 td, tr.black-bg-40 th {
  background-color: #999999 !important;
}

.black-border-40 {
  border-color: #999999 !important;
}

.black-50 {
  color: gray !important;
}

.black-bg-50, tr.black-bg-50 td, tr.black-bg-50 th {
  background-color: gray !important;
}

.black-border-50 {
  border-color: gray !important;
}

.black-60 {
  color: #666666 !important;
}

.black-bg-60, tr.black-bg-60 td, tr.black-bg-60 th {
  background-color: #666666 !important;
}

.black-border-60 {
  border-color: #666666 !important;
}

.black-70 {
  color: #4d4d4d !important;
}

.black-bg-70, tr.black-bg-70 td, tr.black-bg-70 th {
  background-color: #4d4d4d !important;
}

.black-border-70 {
  border-color: #4d4d4d !important;
}

.black-80 {
  color: #333333 !important;
}

.black-bg-80, tr.black-bg-80 td, tr.black-bg-80 th {
  background-color: #333333 !important;
}

.black-border-80 {
  border-color: #333333 !important;
}

.black-90 {
  color: #1a1a1a !important;
}

.black-bg-90, tr.black-bg-90 td, tr.black-bg-90 th {
  background-color: #1a1a1a !important;
}

.black-border-90 {
  border-color: #1a1a1a !important;
}

.black-110 {
  color: black !important;
}

.black-bg-110, tr.black-bg-110 td, tr.black-bg-110 th {
  background-color: black !important;
}

.black-border-110 {
  border-color: black !important;
}

.black-120 {
  color: black !important;
}

.black-bg-120, tr.black-bg-120 td, tr.black-bg-120 th {
  background-color: black !important;
}

.black-border-120 {
  border-color: black !important;
}

.black-130 {
  color: black !important;
}

.black-bg-130, tr.black-bg-130 td, tr.black-bg-130 th {
  background-color: black !important;
}

.black-border-130 {
  border-color: black !important;
}

.black-140 {
  color: black !important;
}

.black-bg-140, tr.black-bg-140 td, tr.black-bg-140 th {
  background-color: black !important;
}

.black-border-140 {
  border-color: black !important;
}

.black-150 {
  color: black !important;
}

.black-bg-150, tr.black-bg-150 td, tr.black-bg-150 th {
  background-color: black !important;
}

.black-border-150 {
  border-color: black !important;
}

.black-160 {
  color: black !important;
}

.black-bg-160, tr.black-bg-160 td, tr.black-bg-160 th {
  background-color: black !important;
}

.black-border-160 {
  border-color: black !important;
}

.black-170 {
  color: black !important;
}

.black-bg-170, tr.black-bg-170 td, tr.black-bg-170 th {
  background-color: black !important;
}

.black-border-170 {
  border-color: black !important;
}

.black-180 {
  color: black !important;
}

.black-bg-180, tr.black-bg-180 td, tr.black-bg-180 th {
  background-color: black !important;
}

.black-border-180 {
  border-color: black !important;
}

.black-190 {
  color: black !important;
}

.black-bg-190, tr.black-bg-190 td, tr.black-bg-190 th {
  background-color: black !important;
}

.black-border-190 {
  border-color: black !important;
}

/**********************************
COLORS
**********************************/
.lightblue {
  color: #f2f7fc !important;
}

.lightdarkblue {
  color: #e8eaf5 !important;
}

.lightorange {
  color: #fff6ea !important;
}

.lightgreen {
  color: #ddf1e9 !important;
}

.lightviolet {
  color: #efecf3 !important;
}

/**********************************
BG
**********************************/
.lightgreen-bg {
  background-color: #ddf1e9 !important;
}

.lightorange-bg {
  background-color: #fff6ea !important;
}

.lightblue-bg {
  background-color: #f2f7fc !important;
}

.lightdarkblue-bg {
  background-color: #e8eaf5 !important;
}

.lightviolet-bg {
  background-color: #efecf3 !important;
}

.lightgrey-bg {
  background-color: #eeeeee !important;
}

.grey-gradient-bg {
  background-color: #fafafa;
  box-shadow: inset rgba(0, 0, 0, 0.1) 0 0 10em;
}

/**********************************
FILES
**********************************/
.pdf {
  color: #EC0605;
}

.pdf .md-text-icon {
  background-color: #EC0605;
}

.jpg {
  color: #B88217;
}

.jpg .md-text-icon {
  background-color: #B88217;
}

.xls, .xlsx {
  color: #1D6C41;
}

.xls .md-text-icon, .xlsx .md-text-icon {
  background-color: #1D6C41;
}

.doc, .docx {
  color: #27508F;
}

.doc .md-text-icon, .docx .md-text-icon {
  background-color: #27508F;
}

.ai {
  color: #F29200;
}

.ai .md-text-icon {
  background-color: #F29200;
}

/**********************************
LINKS
**********************************/
a {
  text-decoration: none;
  color: #d23e30;
}

a:hover {
  text-decoration: underline;
}

/**********************************
P
**********************************/
p {
  line-height: 1.6;
  padding-bottom: 1em;
}
p:last-of-type {
  padding-bottom: 0;
}

/**********************************
UL, OL
**********************************/
ul.def, ol.def,
.format-text ul, .format-text ol {
  margin-bottom: 2em;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 0.5em;
}
@media (min-width: 1090px) {
  ul.def.col-2, ol.def.col-2,
  .format-text ul.col-2, .format-text ol.col-2 {
    flex-direction: row;
    flex-wrap: wrap;
  }
  ul.def.col-2 > *, ol.def.col-2 > *,
  .format-text ul.col-2 > *, .format-text ol.col-2 > * {
    width: calc(50% - 0.5em);
  }
}
ul.def:last-child, ol.def:last-child,
.format-text ul:last-child, .format-text ol:last-child {
  margin-bottom: 0;
}

ul.def li, ol.def li,
.format-text ul li, .format-text ol li {
  padding-left: 1em;
  position: relative;
  line-height: 1.5;
}

ul.def li::before,
.format-text ul li::before {
  content: "";
  width: 0.3em;
  height: 0.3em;
  border-radius: 50%;
  border: 1px solid #707070;
  position: absolute;
  top: 0.6em;
  left: 0.2em;
}

ol.def,
.format-text ol {
  margin-left: 2em;
}
ol.def li,
.format-text ol li {
  padding-left: 0;
}
ol.def ol,
.format-text ol ol {
  margin: 1em 0 1em 2em;
}

/**********************************
TEXT DECORATION
**********************************/
.underline {
  text-decoration: underline !important;
}

.no-underline {
  text-decoration: none !important;
}

.line-through {
  text-decoration: line-through !important;
}

:hover.hover-underline, :hover > .hover-underline {
  text-decoration: underline !important;
}

:hover.hover-no-underline, :hover > .hover-no-underline {
  text-decoration: none !important;
}

/**********************************
FONT WEIGHT
**********************************/
strong {
  font-weight: 700;
}

b {
  font-weight: 900;
}

.no-bold {
  font-weight: 400 !important;
}

.semibold {
  font-weight: 500 !important;
}

.bold {
  font-weight: 700 !important;
}

.extrabold {
  font-weight: 900 !important;
}

/**********************************
UPPER/LOWER
**********************************/
.upper {
  text-transform: uppercase !important;
}

.lower {
  text-transform: lowercase !important;
}

.no-transform {
  text-transform: none !important;
}

/**********************************
FONT SIZE
**********************************/
.small-font {
  font-size: 90%;
}

.small-font2 {
  font-size: 80%;
}

.small-font3 {
  font-size: 70%;
}

.small-font4 {
  font-size: 60%;
}

.big-font {
  font-size: 110%;
}

.big-font2 {
  font-size: 120%;
}

.big-font3 {
  font-size: 130%;
}

.big-font4 {
  font-size: 140%;
}

.big-font5 {
  font-size: 150%;
}

.big-font6 {
  font-size: 160%;
}

.big-font7 {
  font-size: 170%;
}

.big-font8 {
  font-size: 180%;
}

.big-font9 {
  font-size: 190%;
}

.big-font10 {
  font-size: 200%;
}

.font-1em {
  font-size: 1em;
}

.font-2em {
  font-size: 2em;
}

.font-3em {
  font-size: 3em;
}

.font-4em {
  font-size: 4em;
}

.font-5em {
  font-size: 5em;
}

.font-6em {
  font-size: 6em;
}

.font-7em {
  font-size: 7em;
}

.font-8em {
  font-size: 8em;
}

.font-9em {
  font-size: 9em;
}

.font-10em {
  font-size: 10em;
}

/**********************************
HEADINGS
**********************************/
h1, h2, h3, h4, h5, h6 {
  margin-bottom: 0.4em;
  margin-top: 1em;
  line-height: 1.2;
  color: #032654;
  font-family: "League Gothic", serif;
  font-weight: 500;
}
h1:first-of-type, h2:first-of-type, h3:first-of-type, h4:first-of-type, h5:first-of-type, h6:first-of-type {
  margin-top: 0;
}

h1 {
  font-size: 3em;
}

h2 {
  font-size: 2.6em;
  font-family: "League Gothic", serif;
  position: relative;
  margin-bottom: 0.8em;
}
h2::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 30px;
  height: 3px;
  background-color: #d23e30;
}
@media (min-width: 1090px) {
  h2::after {
    width: 40px;
    height: 4px;
  }
}

h3 {
  font-size: 2.1em;
  color: #d23e30;
}

h4 {
  font-size: 1.6em;
}

h5 {
  font-size: 0.9em;
}

h6 {
  font-size: 0.8em;
}

.h-ico {
  display: flex;
  align-items: center;
}
.h-ico .h-ico-ico {
  margin-right: 0.3em;
  font-size: 1.4em;
}

.h-lbord {
  position: relative;
}

.h-lbord-title {
  padding-right: 0.5em;
  display: inline-block;
  position: relative;
  padding-left: 0.5em;
  border-left: 3px solid #289152;
}

/**********************************
FORMS
**********************************/
::-moz-placeholder {
  color: #555;
  opacity: 1;
}
::placeholder, .select-placeholder {
  color: #555;
  opacity: 1;
}

label {
  font-weight: 400;
}

input, textarea, select {
  background: #ffffff;
  border: 1px solid #eeeeee;
  color: #707070;
  height: 2.5rem;
  display: inline-block;
  border-radius: 0.15em;
}
input:focus, textarea:focus, select:focus {
  border-color: #bbbbbb;
}

textarea {
  padding: 1em !important;
}

input.button, input.submit {
  -webkit-appearance: none;
  border: none;
}

.check {
  width: auto;
  border: 0;
  margin: 0 0 -1px 0;
  padding: 0;
  background: none;
}

textarea {
  overflow: auto;
  height: auto;
}

select {
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  padding-right: 25px;
  outline: 0;
  position: relative;
  width: auto;
  background: url(../img/icons/select.png) no-repeat right center white;
  transition: none;
}

select::-ms-expand { /* for IE 11 */
  display: none;
}

option {
  color: #000000;
}

/*input[type=checkbox], input[type=radio] {
    visibility: hidden;
    display: none;
}*/
input[type=file] {
  height: auto;
}

/**********************************
BUTTONS
**********************************/
button {
  font-family: "Poppins", serif;
}

.button {
  width: 100%;
  max-width: 100%;
  font-weight: 500;
  font-size: 1.8em;
  cursor: pointer;
  color: #ffffff;
  padding: 0 1em 0 1em;
  line-height: 1.5;
  display: inline-flex;
  min-height: 2.5rem;
  align-items: center;
  text-align: center;
  justify-content: center;
  transition: background-color 0.3s, color 0.3s;
  font-family: "League Gothic", serif;
  text-transform: uppercase;
}
@media (min-width: 400px) {
  .button {
    width: auto;
  }
}
.button:hover {
  background-color: #eeeeee;
  text-decoration: none;
}

.button.button--big {
  padding: 0.6em 1.3em;
  font-size: 0.9em;
  min-height: 0;
}
@media (min-width: 1090px) {
  .button.button--big {
    font-size: 1.1em;
  }
}

.button.button--small {
  padding: 0.2em 0.5em;
  font-size: 0.8em;
  min-height: 0;
}

.button--ico {
  justify-content: flex-start;
  padding-right: 1.5em;
  text-align: left;
}
.button--ico .button--ico-ico {
  margin-right: 0.5em;
  font-size: 1.5em;
}

.button--ico-r {
  justify-content: flex-start;
  padding-left: 1.5em;
  text-align: left;
}
.button--ico-r .button--ico-ico {
  margin-left: 0.5em;
  font-size: 1.5em;
}

.button--onlyico {
  justify-content: center;
}
.button--onlyico-ico {
  font-size: 1.5em;
}

.icobutton {
  display: inline-flex;
  align-items: center;
}
.icobutton-ico {
  border-radius: 0.15em;
}

.icobutton-ico:hover {
  opacity: 0.8;
}

.button--colored {
  opacity: 0.8;
  transition: opacity 0.3s;
}
.button--colored:hover {
  opacity: 1;
}

.button--transparent {
  color: #707070;
}

.button--black {
  background-color: #000000;
}
.button--black:hover {
  background-color: #262626;
}

.button--green {
  background-color: #289152;
}
.button--green:hover {
  background-color: #1d693b;
}

.button--blue {
  background-color: #40B4E5;
}
.button--blue:hover {
  background-color: #1d9ed5;
}

.button--darkblue {
  background-color: #032654;
}
.button--darkblue:hover {
  background-color: #011023;
}

.button--dark {
  background-color: #707070;
}
.button--dark:hover {
  background-color: #575757;
}

.button--darknavy {
  background-color: #333a44;
}
.button--darknavy:hover {
  background-color: #242830;
}

.button--orange {
  background-color: #db640d;
}
.button--orange:hover {
  background-color: #ab4e0a;
}

.button--violet {
  background-color: #9778D3;
}
.button--violet:hover {
  background-color: #7952c6;
}

.button--grey {
  background-color: #bbbbbb;
}
.button--grey:hover {
  background-color: #a2a2a2;
}

.button--red {
  background-color: #d23e30;
}
.button--red:hover {
  background-color: #aa3025;
}

.button--darkgrey {
  background-color: #555;
}
.button--darkgrey:hover {
  background-color: #3c3c3c;
}

.button--disabled {
  background-color: #555 !important;
  cursor: default;
}
.button--disabled:hover {
  background-color: #555 !important;
}

.sbutton {
  font-weight: 500;
  font-size: 0.9em;
  cursor: pointer;
  padding: 0.4em 0.8em 0.4em 0.8em;
  display: inline-flex;
  align-items: center;
  line-height: 1;
  border-width: 1px;
  border-style: solid;
  border-color: #000000;
  color: #000000;
  border-radius: 5px;
  transition: background-color 0.3s, color 0.3s;
}
@media (min-width: 576px) {
  .sbutton {
    width: auto;
  }
}
.sbutton .sbutton-ico {
  margin-right: 0.5em;
  font-size: 1.2em;
}
.sbutton .sbutton-ico--r {
  margin-right: 0;
  margin-left: 0.3em;
}
.sbutton:hover {
  background-color: rgba(0, 0, 0, 0.05);
  text-decoration: none;
}

.sbutton--darkblue-lightdarkblue {
  background-color: #e8eaf5;
  color: #032654;
  border-color: #032654;
}
.sbutton--darkblue-lightdarkblue:hover {
  background-color: #d6daed;
}

.sbutton--dark-dark {
  background-color: #707070;
  color: #707070;
  border-color: #707070;
}
.sbutton--dark-dark:hover {
  background-color: #636363;
}

.sbutton--darkblue-darkblue {
  background-color: #032654;
  color: #ffffff;
  border-color: #032654;
}
.sbutton--darkblue-darkblue:hover {
  background-color: #011023;
}

.sbutton--grey {
  color: #bbbbbb;
  border-color: #bbbbbb;
}
.sbutton--grey:hover {
  background-color: white;
}

.sbutton--black {
  color: #000000;
  border-color: #000000;
}
.sbutton--black:hover {
  background-color: white;
}

.sbutton--dark {
  color: #707070;
  border-color: #707070;
}
.sbutton--dark:hover {
  background-color: white;
}

.sbutton--darkgrey {
  color: #555;
  border-color: #555;
}
.sbutton--darkgrey:hover {
  background-color: white;
}

.sbutton--darkblue {
  border-color: #032654;
  color: #032654;
}
.sbutton--darkblue:hover {
  background-color: #e8eaf5;
}

.sbutton--blue {
  border-color: #40B4E5;
  color: #40B4E5;
}
.sbutton--blue:hover {
  background-color: #f2f7fc;
}

.sbutton--green {
  border-color: #289152;
  color: #289152;
}
.sbutton--green:hover {
  background-color: #ddf1e9;
}

.sbutton--orange {
  border-color: #db640d;
  color: #db640d;
}
.sbutton--orange:hover {
  background-color: #fff6ea;
}

.sbutton--violet {
  border-color: #9778D3;
  color: #9778D3;
}
.sbutton--violet:hover {
  background-color: #efecf3;
}

.sbutton--red {
  border-color: #d23e30;
  color: #d23e30;
}
.sbutton--red:hover {
  background-color: #fffbfb;
}

/**********************************
REPORTS
**********************************/
.report {
  margin-bottom: 1em;
}

.report-in {
  padding: 1em;
  margin-bottom: 0.5em;
  font-weight: 600;
  border-radius: 3px;
  display: flex;
  align-items: center;
}
.report-in .report-ico {
  margin-right: 0.5em;
}
.report-in a {
  text-decoration: underline;
  color: inherit;
}
.report-in a:hover {
  text-decoration: none;
}
.report-in.err {
  background-color: #d23e30;
  color: #ffffff;
}
.report-in.err2 {
  background-color: #fef9f9;
  color: #d23e30;
  border-bottom: 3px solid #d23e30;
}
.report-in.ok {
  background-color: #289152;
  color: #ffffff;
}
.report-in.ok2 {
  background-color: #d4f3e1;
  color: #289152;
  border-bottom: 3px solid #289152;
}
.report-in.info {
  background-color: #40B4E5;
  color: #ffffff;
}
.report-in.info2 {
  background-color: #ebf7fc;
  color: #40B4E5;
  border-bottom: 3px solid #40B4E5;
}
.report-in.wrn {
  background-color: #FFCC00;
  color: #707070;
}
.report-in.wrn2 {
  background-color: #fffae6;
  color: #FFCC00;
  border-bottom: 3px solid #FFCC00;
}

.formerror,
.form-err {
  color: #d23e30;
}
.formerror input, .formerror select, .formerror textarea,
.form-err input,
.form-err select,
.form-err textarea {
  border-color: #d23e30;
  color: #d23e30;
}

input.formerror, select.formerror, textarea.formerror,
input.form-err, select.form-err, textarea.form-err {
  border-color: #d23e30;
}

/**********************************
ICONS
**********************************/
.material-icons, .material-icons-outlined, .material-icons-round {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  font-size: 1.8em;
}

.material-icons img, .material-icons-outlined img, .material-icons-round img {
  max-height: 24px;
}

.text-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 1em;
  height: 1em;
  min-width: 24px;
  min-height: 24px;
  border-radius: 0.15em;
}

.text-icon-in {
  width: 100%;
  overflow: hidden;
  font-family: "Bebas Neue", cursive;
  font-size: max(0.8em, 18px);
  font-weight: 400;
  color: #707070;
  margin-bottom: -0.1em;
}

.md-text-icon {
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-transform: uppercase;
  font-family: "Poppins", serif;
  font-size: max(0.3em, 9px);
  font-weight: 600;
  color: #ffffff;
  background-color: #707070;
  border-radius: 0.15em;
}

.md-text-icon--top {
  top: 0;
  transform: translate(-50%, 0);
}

.md-text-icon--bottom {
  top: auto;
  bottom: 0;
  transform: translate(-50%, 0);
}

.md-text-icon--left {
  left: 0;
  transform: translate(0, -50%);
}
.md-text-icon--left.md-text-icon--top, .md-text-icon--left.md-text-icon--bottom {
  transform: translate(0, 0);
}

.md-text-icon--right {
  left: auto;
  right: 0;
  transform: translate(0, -50%);
}
.md-text-icon--right.md-text-icon--top, .md-text-icon--right.md-text-icon--bottom {
  transform: translate(0, 0);
}

.transform-icons {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 24px;
  height: 24px;
}

.transform-icons .transform-ico {
  position: absolute !important;
  top: 0;
  left: 0;
  display: block;
}

.transform-icons .transform-ico--default {
  transition: opacity 0.2s ease-in-out, transform 0.2s ease-in-out;
}

.transform-icons .transform-ico--transformed {
  transition: opacity 0.2s ease-in-out, transform 0.2s ease-in-out;
  transform: rotate(-180deg) scale(0.5);
  opacity: 0;
}

.transform-icons.act .transform-ico--default {
  transform: rotate(180deg) scale(0.5);
  opacity: 0;
}

.transform-icons.act .transform-ico--transformed {
  transform: rotate(0deg) scale(1);
  opacity: 1;
}

/**********************************
HIDDEN
**********************************/
@media (max-width: 400px) {
  .hidden-xs-smaller {
    display: none !important;
  }
}

@media (max-width: 576px) {
  .hidden-s-smaller {
    display: none !important;
  }
}

@media (max-width: 768px) {
  .hidden-m-smaller {
    display: none !important;
  }
}

@media (max-width: 1090px) {
  .hidden-l-smaller {
    display: none !important;
  }
}

@media (max-width: 1280px) {
  .hidden-xl-smaller {
    display: none !important;
  }
}

@media (max-width: 1560px) {
  .hidden-xxl-smaller {
    display: none !important;
  }
}

@media (min-width: 576px) {
  .hidden-xs-bigger {
    display: none !important;
  }
}

@media (min-width: 768px) {
  .hidden-s-bigger {
    display: none !important;
  }
}

@media (min-width: 1090px) {
  .hidden-m-bigger {
    display: none !important;
  }
}

@media (min-width: 1280px) {
  .hidden-l-bigger {
    display: none !important;
  }
}

@media (min-width: 1560px) {
  .hidden-xl-bigger {
    display: none !important;
  }
}

/**********************************
FLEX
**********************************/
.flex {
  display: flex;
  align-items: center;
}
@media (max-width: 576px) {
  .flex--s {
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 768px) {
  .flex--m {
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 1090px) {
  .flex--l {
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 1280px) {
  .flex--xl {
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 1560px) {
  .flex--xxl {
    flex-direction: column;
    align-items: flex-start;
  }
}
.flex > .col-1 {
  flex: 1;
}
.flex > .col-2 {
  flex: 2;
}

.inline-flex {
  display: inline-flex !important;
}

.flex-column {
  flex-direction: column !important;
}

.flex-row {
  flex-direction: row !important;
}

.a-stretch {
  align-items: stretch !important;
}

.a-start {
  align-items: flex-start !important;
}

.a-center {
  align-items: center !important;
}

.a-end {
  align-items: flex-end !important;
}

.j-start {
  justify-content: flex-start !important;
}

.j-center {
  justify-content: center !important;
}

.j-end {
  justify-content: flex-end !important;
}

.space-between {
  justify-content: space-between !important;
}

.space-around {
  justify-content: space-around !important;
}

.flex-true {
  flex: 1 1 auto !important;
}

.flex-false {
  flex: 0 0 auto !important;
}

.no-grow {
  flex-grow: 0 !important;
}

.no-shrink {
  flex-shrink: 0 !important;
}

.flex-wrap {
  flex-wrap: wrap !important;
}

.flex-nowrap {
  flex-wrap: nowrap !important;
}

/**********************************
SPACING
**********************************/
/*** gap ***/
.gap-0 {
  gap: 0px !important;
}

.gap-1 {
  gap: 1px !important;
}

.gap-2 {
  gap: 2px !important;
}

.gap-3 {
  gap: 3px !important;
}

.gap-4 {
  gap: 4px !important;
}

.gap-5 {
  gap: 5px !important;
}

.gap-10 {
  gap: 10px !important;
}

.gap-15 {
  gap: 15px !important;
}

.gap-20 {
  gap: 20px !important;
}

.gap-25 {
  gap: 25px !important;
}

.gap-30 {
  gap: 30px !important;
}

.gap-40 {
  gap: 40px !important;
}

.gap-50 {
  gap: 50px !important;
}

.gap-01em {
  gap: 0.1em !important;
}

.gap-02em {
  gap: 0.2em !important;
}

.gap-03em {
  gap: 0.3em !important;
}

.gap-04em {
  gap: 0.4em !important;
}

.gap-05em {
  gap: 0.5em !important;
}

.gap-06em {
  gap: 0.6em !important;
}

.gap-07em {
  gap: 0.7em !important;
}

.gap-08em {
  gap: 0.8em !important;
}

.gap-09em {
  gap: 0.9em !important;
}

.gap-1em {
  gap: 1em !important;
}

.gap-2em {
  gap: 2em !important;
}

.gap-3em {
  gap: 3em !important;
}

.gap-4em {
  gap: 4em !important;
}

.gap-5em {
  gap: 5em !important;
}

/*** xgap ***/
.xgap-0 {
  row-gap: 0px !important;
}

.xgap-1 {
  row-gap: 1px !important;
}

.xgap-2 {
  row-gap: 2px !important;
}

.xgap-3 {
  row-gap: 3px !important;
}

.xgap-4 {
  row-gap: 4px !important;
}

.xgap-5 {
  row-gap: 5px !important;
}

.xgap-10 {
  row-gap: 10px !important;
}

.xgap-15 {
  row-gap: 15px !important;
}

.xgap-20 {
  row-gap: 20px !important;
}

.xgap-25 {
  row-gap: 25px !important;
}

.xgap-30 {
  row-gap: 30px !important;
}

.xgap-40 {
  row-gap: 40px !important;
}

.xgap-50 {
  row-gap: 50px !important;
}

.xgap-01em {
  row-gap: 0.1em !important;
}

.xgap-02em {
  row-gap: 0.2em !important;
}

.xgap-03em {
  row-gap: 0.3em !important;
}

.xgap-04em {
  row-gap: 0.4em !important;
}

.xgap-05em {
  row-gap: 0.5em !important;
}

.xgap-06em {
  row-gap: 0.6em !important;
}

.xgap-07em {
  row-gap: 0.7em !important;
}

.xgap-08em {
  row-gap: 0.8em !important;
}

.xgap-09em {
  row-gap: 0.9em !important;
}

.xgap-1em {
  row-gap: 1em !important;
}

.xgap-2em {
  row-gap: 2em !important;
}

.xgap-3em {
  row-gap: 3em !important;
}

.xgap-4em {
  row-gap: 4em !important;
}

.xgap-5em {
  row-gap: 5em !important;
}

/*** ygap ***/
.ygap-0 {
  -moz-column-gap: 0px !important;
       column-gap: 0px !important;
}

.ygap-1 {
  -moz-column-gap: 1px !important;
       column-gap: 1px !important;
}

.ygap-2 {
  -moz-column-gap: 2px !important;
       column-gap: 2px !important;
}

.ygap-3 {
  -moz-column-gap: 3px !important;
       column-gap: 3px !important;
}

.ygap-4 {
  -moz-column-gap: 4px !important;
       column-gap: 4px !important;
}

.ygap-5 {
  -moz-column-gap: 5px !important;
       column-gap: 5px !important;
}

.ygap-10 {
  -moz-column-gap: 10px !important;
       column-gap: 10px !important;
}

.ygap-15 {
  -moz-column-gap: 15px !important;
       column-gap: 15px !important;
}

.ygap-20 {
  -moz-column-gap: 20px !important;
       column-gap: 20px !important;
}

.ygap-25 {
  -moz-column-gap: 25px !important;
       column-gap: 25px !important;
}

.ygap-30 {
  -moz-column-gap: 30px !important;
       column-gap: 30px !important;
}

.ygap-40 {
  -moz-column-gap: 40px !important;
       column-gap: 40px !important;
}

.ygap-50 {
  -moz-column-gap: 50px !important;
       column-gap: 50px !important;
}

.ygap-01em {
  -moz-column-gap: 0.1em !important;
       column-gap: 0.1em !important;
}

.ygap-02em {
  -moz-column-gap: 0.2em !important;
       column-gap: 0.2em !important;
}

.ygap-03em {
  -moz-column-gap: 0.3em !important;
       column-gap: 0.3em !important;
}

.ygap-04em {
  -moz-column-gap: 0.4em !important;
       column-gap: 0.4em !important;
}

.ygap-05em {
  -moz-column-gap: 0.5em !important;
       column-gap: 0.5em !important;
}

.ygap-06em {
  -moz-column-gap: 0.6em !important;
       column-gap: 0.6em !important;
}

.ygap-07em {
  -moz-column-gap: 0.7em !important;
       column-gap: 0.7em !important;
}

.ygap-08em {
  -moz-column-gap: 0.8em !important;
       column-gap: 0.8em !important;
}

.ygap-09em {
  -moz-column-gap: 0.9em !important;
       column-gap: 0.9em !important;
}

.ygap-1em {
  -moz-column-gap: 1em !important;
       column-gap: 1em !important;
}

.ygap-2em {
  -moz-column-gap: 2em !important;
       column-gap: 2em !important;
}

.ygap-3em {
  -moz-column-gap: 3em !important;
       column-gap: 3em !important;
}

.ygap-4em {
  -moz-column-gap: 4em !important;
       column-gap: 4em !important;
}

.ygap-5em {
  -moz-column-gap: 5em !important;
       column-gap: 5em !important;
}

.mg-inline-auto {
  margin-inline: auto !important;
}

.mg-block-auto {
  margin-block: auto !important;
}

/*** tmg ***/
.tmg-auto {
  margin-top: auto !important;
}

.tmg-0 {
  margin-top: 0px !important;
}

.tmg-1 {
  margin-top: 1px !important;
}

.tmg-2 {
  margin-top: 2px !important;
}

.tmg-3 {
  margin-top: 3px !important;
}

.tmg-4 {
  margin-top: 4px !important;
}

.tmg-5 {
  margin-top: 5px !important;
}

.tmg-10 {
  margin-top: 10px !important;
}

.tmg-15 {
  margin-top: 15px !important;
}

.tmg-20 {
  margin-top: 20px !important;
}

.tmg-25 {
  margin-top: 25px !important;
}

.tmg-30 {
  margin-top: 30px !important;
}

.tmg-40 {
  margin-top: 40px !important;
}

.tmg-50 {
  margin-top: 50px !important;
}

.tmg-60 {
  margin-top: 60px !important;
}

.tmg-70 {
  margin-top: 70px !important;
}

.tmg-80 {
  margin-top: 80px !important;
}

.tmg-90 {
  margin-top: 90px !important;
}

.tmg-100 {
  margin-top: 100px !important;
}

.tmg-01em {
  margin-top: 0.1em !important;
}

.tmg-02em {
  margin-top: 0.2em !important;
}

.tmg-03em {
  margin-top: 0.3em !important;
}

.tmg-04em {
  margin-top: 0.4em !important;
}

.tmg-05em {
  margin-top: 0.5em !important;
}

.tmg-06em {
  margin-top: 0.6em !important;
}

.tmg-07em {
  margin-top: 0.7em !important;
}

.tmg-08em {
  margin-top: 0.8em !important;
}

.tmg-09em {
  margin-top: 0.9em !important;
}

.tmg-1em {
  margin-top: 1em !important;
}

.tmg-2em {
  margin-top: 2em !important;
}

.tmg-3em {
  margin-top: 3em !important;
}

.tmg-4em {
  margin-top: 4em !important;
}

.tmg-5em {
  margin-top: 5em !important;
}

.tmg-6em {
  margin-top: 6em !important;
}

.tmg-7em {
  margin-top: 7em !important;
}

.tmg-8em {
  margin-top: 8em !important;
}

.tmg-9em {
  margin-top: 9em !important;
}

.tmg-10em {
  margin-top: 10em !important;
}

/*** rmg ***/
.rmg-auto {
  margin-right: auto !important;
}

.rmg-0 {
  margin-right: 0px !important;
}

.rmg-1 {
  margin-right: 1px !important;
}

.rmg-2 {
  margin-right: 2px !important;
}

.rmg-3 {
  margin-right: 3px !important;
}

.rmg-4 {
  margin-right: 4px !important;
}

.rmg-5 {
  margin-right: 5px !important;
}

.rmg-10 {
  margin-right: 10px !important;
}

.rmg-15 {
  margin-right: 15px !important;
}

.rmg-20 {
  margin-right: 20px !important;
}

.rmg-25 {
  margin-right: 25px !important;
}

.rmg-30 {
  margin-right: 30px !important;
}

.rmg-40 {
  margin-right: 40px !important;
}

.rmg-50 {
  margin-right: 50px !important;
}

.rmg-60 {
  margin-right: 60px !important;
}

.rmg-70 {
  margin-right: 70px !important;
}

.rmg-80 {
  margin-right: 80px !important;
}

.rmg-90 {
  margin-right: 90px !important;
}

.rmg-100 {
  margin-right: 100px !important;
}

.rmg-01em {
  margin-right: 0.1em !important;
}

.rmg-02em {
  margin-right: 0.2em !important;
}

.rmg-03em {
  margin-right: 0.3em !important;
}

.rmg-04em {
  margin-right: 0.4em !important;
}

.rmg-05em {
  margin-right: 0.5em !important;
}

.rmg-06em {
  margin-right: 0.6em !important;
}

.rmg-07em {
  margin-right: 0.7em !important;
}

.rmg-08em {
  margin-right: 0.8em !important;
}

.rmg-09em {
  margin-right: 0.9em !important;
}

.rmg-1em {
  margin-right: 1em !important;
}

.rmg-2em {
  margin-right: 2em !important;
}

.rmg-3em {
  margin-right: 3em !important;
}

.rmg-4em {
  margin-right: 4em !important;
}

.rmg-5em {
  margin-right: 5em !important;
}

.rmg-6em {
  margin-right: 6em !important;
}

.rmg-7em {
  margin-right: 7em !important;
}

.rmg-8em {
  margin-right: 8em !important;
}

.rmg-9em {
  margin-right: 9em !important;
}

.rmg-10em {
  margin-right: 10em !important;
}

/*** bmg ***/
.bmg-auto {
  margin-bottom: auto !important;
}

.bmg-0 {
  margin-bottom: 0px !important;
}

.bmg-1 {
  margin-bottom: 1px !important;
}

.bmg-2 {
  margin-bottom: 2px !important;
}

.bmg-3 {
  margin-bottom: 3px !important;
}

.bmg-4 {
  margin-bottom: 4px !important;
}

.bmg-5 {
  margin-bottom: 5px !important;
}

.bmg-6 {
  margin-bottom: 6px !important;
}

.bmg-7 {
  margin-bottom: 7px !important;
}

.bmg-8 {
  margin-bottom: 8px !important;
}

.bmg-9 {
  margin-bottom: 9px !important;
}

.bmg-10 {
  margin-bottom: 10px !important;
}

.bmg-15 {
  margin-bottom: 15px !important;
}

.bmg-20 {
  margin-bottom: 20px !important;
}

.bmg-25 {
  margin-bottom: 25px !important;
}

.bmg-30 {
  margin-bottom: 30px !important;
}

.bmg-40 {
  margin-bottom: 40px !important;
}

.bmg-50 {
  margin-bottom: 50px !important;
}

.bmg-60 {
  margin-bottom: 60px !important;
}

.bmg-70 {
  margin-bottom: 70px !important;
}

.bmg-80 {
  margin-bottom: 80px !important;
}

.bmg-90 {
  margin-bottom: 90px !important;
}

.bmg-100 {
  margin-bottom: 100px !important;
}

.bmg-01em {
  margin-bottom: 0.1em !important;
}

.bmg-02em {
  margin-bottom: 0.2em !important;
}

.bmg-03em {
  margin-bottom: 0.3em !important;
}

.bmg-04em {
  margin-bottom: 0.4em !important;
}

.bmg-05em {
  margin-bottom: 0.5em !important;
}

.bmg-06em {
  margin-bottom: 0.6em !important;
}

.bmg-07em {
  margin-bottom: 0.7em !important;
}

.bmg-08em {
  margin-bottom: 0.8em !important;
}

.bmg-09em {
  margin-bottom: 0.9em !important;
}

.bmg-1em {
  margin-bottom: 1em !important;
}

.bmg-2em {
  margin-bottom: 2em !important;
}

.bmg-3em {
  margin-bottom: 3em !important;
}

.bmg-4em {
  margin-bottom: 4em !important;
}

.bmg-5em {
  margin-bottom: 5em !important;
}

.bmg-6em {
  margin-bottom: 6em !important;
}

.bmg-7em {
  margin-bottom: 7em !important;
}

.bmg-8em {
  margin-bottom: 8em !important;
}

.bmg-9em {
  margin-bottom: 9em !important;
}

.bmg-10em {
  margin-bottom: 10em !important;
}

/*** lmg ***/
.lmg-auto {
  margin-left: auto !important;
}

.lmg-0 {
  margin-left: 0px !important;
}

.lmg-1 {
  margin-left: 1px !important;
}

.lmg-2 {
  margin-left: 2px !important;
}

.lmg-3 {
  margin-left: 3px !important;
}

.lmg-4 {
  margin-left: 4px !important;
}

.lmg-5 {
  margin-left: 5px !important;
}

.lmg-10 {
  margin-left: 10px !important;
}

.lmg-15 {
  margin-left: 15px !important;
}

.lmg-20 {
  margin-left: 20px !important;
}

.lmg-25 {
  margin-left: 25px !important;
}

.lmg-30 {
  margin-left: 30px !important;
}

.lmg-40 {
  margin-left: 40px !important;
}

.lmg-50 {
  margin-left: 50px !important;
}

.lmg-60 {
  margin-left: 60px !important;
}

.lmg-70 {
  margin-left: 70px !important;
}

.lmg-80 {
  margin-left: 80px !important;
}

.lmg-90 {
  margin-left: 90px !important;
}

.lmg-100 {
  margin-left: 100px !important;
}

.lmg-01em {
  margin-left: 0.1em !important;
}

.lmg-02em {
  margin-left: 0.2em !important;
}

.lmg-03em {
  margin-left: 0.3em !important;
}

.lmg-04em {
  margin-left: 0.4em !important;
}

.lmg-05em {
  margin-left: 0.5em !important;
}

.lmg-06em {
  margin-left: 0.6em !important;
}

.lmg-07em {
  margin-left: 0.7em !important;
}

.lmg-08em {
  margin-left: 0.8em !important;
}

.lmg-09em {
  margin-left: 0.9em !important;
}

.lmg-1em {
  margin-left: 1em !important;
}

.lmg-2em {
  margin-left: 2em !important;
}

.lmg-3em {
  margin-left: 3em !important;
}

.lmg-4em {
  margin-left: 4em !important;
}

.lmg-5em {
  margin-left: 5em !important;
}

.lmg-6em {
  margin-left: 6em !important;
}

.lmg-7em {
  margin-left: 7em !important;
}

.lmg-8em {
  margin-left: 8em !important;
}

.lmg-9em {
  margin-left: 9em !important;
}

.lmg-10em {
  margin-left: 10em !important;
}

/*** tpd ***/
.tpd-0 {
  padding-top: 0px !important;
}

.tpd-5 {
  padding-top: 5px !important;
}

.tpd-10 {
  padding-top: 10px !important;
}

.tpd-20 {
  padding-top: 20px !important;
}

.tpd-30 {
  padding-top: 30px !important;
}

.tpd-40 {
  padding-top: 40px !important;
}

.tpd-50 {
  padding-top: 50px !important;
}

.tpd-01em {
  padding-top: 0.1em !important;
}

.tpd-02em {
  padding-top: 0.2em !important;
}

.tpd-03em {
  padding-top: 0.3em !important;
}

.tpd-04em {
  padding-top: 0.4em !important;
}

.tpd-05em {
  padding-top: 0.5em !important;
}

.tpd-06em {
  padding-top: 0.6em !important;
}

.tpd-07em {
  padding-top: 0.7em !important;
}

.tpd-08em {
  padding-top: 0.8em !important;
}

.tpd-09em {
  padding-top: 0.9em !important;
}

.tpd-1em {
  padding-top: 1em !important;
}

/*** rpd ***/
.rpd-0 {
  padding-right: 0px !important;
}

.rpd-5 {
  padding-right: 5px !important;
}

.rpd-10 {
  padding-right: 10px !important;
}

.rpd-20 {
  padding-right: 20px !important;
}

.rpd-30 {
  padding-right: 30px !important;
}

.rpd-40 {
  padding-right: 40px !important;
}

.rpd-50 {
  padding-right: 50px !important;
}

.rpd-60 {
  padding-right: 60px !important;
}

.rpd-70 {
  padding-right: 70px !important;
}

.rpd-80 {
  padding-right: 80px !important;
}

.rpd-90 {
  padding-right: 90px !important;
}

.rpd-100 {
  padding-right: 100px !important;
}

.rpd-01em {
  padding-right: 0.1em !important;
}

.rpd-02em {
  padding-right: 0.2em !important;
}

.rpd-03em {
  padding-right: 0.3em !important;
}

.rpd-04em {
  padding-right: 0.4em !important;
}

.rpd-05em {
  padding-right: 0.5em !important;
}

.rpd-06em {
  padding-right: 0.6em !important;
}

.rpd-07em {
  padding-right: 0.7em !important;
}

.rpd-08em {
  padding-right: 0.8em !important;
}

.rpd-09em {
  padding-right: 0.9em !important;
}

.rpd-1em {
  padding-right: 1em !important;
}

/*** bpd ***/
.bpd-0 {
  padding-bottom: 0px !important;
}

.bpd-5 {
  padding-bottom: 5px !important;
}

.bpd-10 {
  padding-bottom: 10px !important;
}

.bpd-20 {
  padding-bottom: 20px !important;
}

.bpd-30 {
  padding-bottom: 30px !important;
}

.bpd-40 {
  padding-bottom: 40px !important;
}

.bpd-50 {
  padding-bottom: 50px !important;
}

.bpd-01em {
  padding-bottom: 0.1em !important;
}

.bpd-02em {
  padding-bottom: 0.2em !important;
}

.bpd-03em {
  padding-bottom: 0.3em !important;
}

.bpd-04em {
  padding-bottom: 0.4em !important;
}

.bpd-05em {
  padding-bottom: 0.5em !important;
}

.bpd-06em {
  padding-bottom: 0.6em !important;
}

.bpd-07em {
  padding-bottom: 0.7em !important;
}

.bpd-08em {
  padding-bottom: 0.8em !important;
}

.bpd-09em {
  padding-bottom: 0.9em !important;
}

.bpd-1em {
  padding-bottom: 1em !important;
}

.bpd-2em {
  padding-bottom: 2em !important;
}

.bpd-3em {
  padding-bottom: 3em !important;
}

/*** lpd ***/
.lpd-0 {
  padding-left: 0px !important;
}

.lpd-5 {
  padding-left: 5px !important;
}

.lpd-10 {
  padding-left: 10px !important;
}

.lpd-20 {
  padding-left: 20px !important;
}

.lpd-30 {
  padding-left: 30px !important;
}

.lpd-40 {
  padding-left: 40px !important;
}

.lpd-50 {
  padding-left: 50px !important;
}

.lpd-60 {
  padding-left: 60px !important;
}

.lpd-70 {
  padding-left: 70px !important;
}

.lpd-80 {
  padding-left: 80px !important;
}

.lpd-90 {
  padding-left: 90px !important;
}

.lpd-100 {
  padding-left: 100px !important;
}

.lpd-01em {
  padding-left: 0.1em !important;
}

.lpd-02em {
  padding-left: 0.2em !important;
}

.lpd-03em {
  padding-left: 0.3em !important;
}

.lpd-04em {
  padding-left: 0.4em !important;
}

.lpd-05em {
  padding-left: 0.5em !important;
}

.lpd-06em {
  padding-left: 0.6em !important;
}

.lpd-07em {
  padding-left: 0.7em !important;
}

.lpd-08em {
  padding-left: 0.8em !important;
}

.lpd-09em {
  padding-left: 0.9em !important;
}

.lpd-1em {
  padding-left: 1em !important;
}

/*** padding ***/
.padd-0 {
  padding: 0px !important;
}

.padd-1 {
  padding: 1px !important;
}

.padd-2 {
  padding: 2px !important;
}

.padd-3 {
  padding: 3px !important;
}

.padd-4 {
  padding: 4px !important;
}

.padd-5 {
  padding: 5px !important;
}

.padd-10 {
  padding: 10px !important;
}

.padd-20 {
  padding: 20px !important;
}

.padd-30 {
  padding: 30px !important;
}

.padd-40 {
  padding: 40px !important;
}

.padd-50 {
  padding: 50px !important;
}

.padd-01em {
  padding: 0.1em !important;
}

.padd-02em {
  padding: 0.2em !important;
}

.padd-03em {
  padding: 0.3em !important;
}

.padd-04em {
  padding: 0.4em !important;
}

.padd-05em {
  padding: 0.5em !important;
}

.padd-06em {
  padding: 0.6em !important;
}

.padd-07em {
  padding: 0.7em !important;
}

.padd-08em {
  padding: 0.8em !important;
}

.padd-09em {
  padding: 0.9em !important;
}

.padd-1em {
  padding: 1em !important;
}

/**********************************
LAYOUT
**********************************/
/**, *::after, *::before {
     transition: background-color .3s, border-color .3s, color .3s, opacity .3s;
}*/
html {
  overflow-y: scroll;
  height: 100%;
}

body {
  font-family: "Poppins", serif;
  color: #555;
  background: url(../img/bg.jpg) repeat-x top center;
  background-color: #f2f7fc;
  font-weight: 400;
  height: 100%;
  font-size: 0.9em;
  background-size: auto 224px;
}
@media (min-width: 1090px) {
  body {
    background-size: auto 285px;
  }
}
@media (min-width: 1280px) {
  body {
    font-size: 1em;
    background-size: auto 367px;
  }
}
@media (min-width: 1560px) {
  body {
    background-size: auto auto;
  }
}

.screen {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.page {
  padding: 1em 0;
  background: url(../img/page_bg.png) no-repeat;
  background-position: top 4px center;
  flex: 1;
}
@media (min-width: 1090px) {
  .page {
    padding: 2em 0;
    background-position: top 5px center;
  }
}
@media (min-width: 1280px) {
  .page {
    background-position: top 6px center;
  }
}
@media (min-width: 1560px) {
  .page {
    background-position: top 8px center;
  }
}

.page-in {
  padding: 1em 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  row-gap: 1em;
  -moz-column-gap: 3em;
       column-gap: 3em;
}
@media (min-width: 1090px) {
  .page-in {
    flex-direction: row;
  }
}

@media (min-width: 1090px) {
  .page-l {
    width: 65%;
    flex: 0 0 auto;
  }
}

.page-r {
  flex: 1 1 auto;
  display: none;
}
@media (min-width: 1090px) {
  .page-r {
    display: block;
  }
}

.content-width {
  margin: auto;
  width: 90%;
}
@media (min-width: 768px) {
  .content-width {
    width: 718px;
  }
}
@media (min-width: 1090px) {
  .content-width {
    width: 1040px;
  }
}
@media (min-width: 1280px) {
  .content-width {
    width: 1230px;
  }
}
@media (min-width: 1560px) {
  .content-width {
    width: 1510px;
  }
}

/**********************************
TOPBAR
**********************************/
/**********************************
HEADER
**********************************/
.head-out {
  --size-1: auto 130px;
  --size-2: auto 184px;
  --position-1: center bottom;
  --position-2: center top;
  background-image: url(../img/head_img_mobile.png), url(../img/head_bg.png);
  background-size: var(--size-1), var(--size-2);
  background-position: var(--position-1), var(--position-2);
  background-repeat: no-repeat, no-repeat;
}
@media (min-width: 400px) {
  .head-out {
    --size-1: auto 110px;
    background-image: url(../img/head_img.png), url(../img/head_bg.png);
  }
}
@media (min-width: 1090px) {
  .head-out {
    --size-1: auto 150px;
    --size-2: auto 234px;
  }
}
@media (min-width: 1280px) {
  .head-out {
    --size-1: auto 190px;
    --size-2: auto 301px;
  }
}
@media (min-width: 1560px) {
  .head-out {
    --size-1: auto 228px;
    --size-2: auto 396px;
  }
}

@media (min-width: 576px) {
  #head {
    position: relative;
  }
}

.head-in {
  display: flex;
  justify-content: space-between;
  height: 220px;
  position: relative;
}
@media (min-width: 400px) {
  .head-in {
    height: 220px;
  }
}
@media (min-width: 1090px) {
  .head-in {
    height: 280px;
  }
}
@media (min-width: 1280px) {
  .head-in {
    height: 360px;
  }
}
@media (min-width: 1560px) {
  .head-in {
    height: 475px;
  }
}

.logo {
  display: block;
  width: 160px;
  margin-right: 2em;
  position: absolute;
  top: 0;
  transition: all 0.3s, color 0.3s;
}
@media (min-width: 400px) {
  .logo {
    width: 190px;
  }
}
@media (min-width: 768px) {
  .logo {
    position: static;
  }
}
@media (min-width: 1090px) {
  .logo {
    width: 230px;
  }
}
@media (min-width: 1280px) {
  .logo {
    width: 320px;
  }
}
@media (min-width: 1560px) {
  .logo {
    width: 440px;
  }
}
.logo img {
  width: 100%;
  display: block;
}

.head-r {
  display: flex;
  align-items: flex-end;
  flex-direction: column;
  gap: 1rem;
}
@media (min-width: 768px) {
  .head-r {
    gap: 0;
  }
}

.button-predprodej {
  font-weight: 500;
  transition: background-color 0.3s, color 0.3s;
  font-family: "League Gothic", serif;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  background-color: #032654;
  color: #ffffff;
  padding: 0 0.6rem 0 0;
  z-index: 101;
  position: relative;
  top: -5px;
  font-size: 1.6em;
  height: 40px;
  transform: rotate(1deg);
}
@media (min-width: 576px) {
  .button-predprodej {
    height: 48px;
    font-size: 2em;
    padding: 0 1rem 0 0;
  }
}
@media (min-width: 768px) {
  .button-predprodej {
    font-size: 1.6em;
    padding: 0.4rem 0.6rem 0.4rem 0;
    height: auto;
  }
}
@media (min-width: 1090px) {
  .button-predprodej {
    font-size: 1.8em;
    padding: 0.5rem 0.8rem 0.5rem 0;
  }
}
@media (min-width: 1280px) {
  .button-predprodej {
    font-size: 2em;
    padding: 0.6rem 0.9rem 0.6rem 0;
  }
}
@media (min-width: 1560px) {
  .button-predprodej {
    font-size: 2.6em;
    padding: 0.75rem 1rem 0.75rem 0;
  }
}
.button-predprodej:hover {
  background-color: #d23e30;
  text-decoration: none;
}
@media (max-width: 768px) {
  .button-predprodej {
    position: absolute;
    top: 1rem;
    width: auto;
    right: 60px;
  }
}
@media (max-width: 576px) {
  .button-predprodej {
    right: 50px;
  }
}
@media (max-width: 400px) {
  .button-predprodej {
    display: none;
  }
}
.button-predprodej-ico {
  transform: translateX(-50%);
}
.button-predprodej-ico img {
  width: 20px;
}
@media (min-width: 576px) {
  .button-predprodej-ico img {
    width: 26px;
  }
}
@media (min-width: 1090px) {
  .button-predprodej-ico img {
    width: auto;
  }
}

/**********************************
MENU
**********************************/
.menu {
  display: none;
  font-size: 1.8em;
  width: 100%;
  margin-top: 180px;
  gap: 0.5em;
  z-index: 99;
  flex-direction: column;
  align-items: center;
  background-color: white;
  padding: 1.5rem 2rem;
}
@media (min-width: 400px) {
  .menu {
    margin-top: 140px;
  }
}
@media (min-width: 768px) {
  .menu {
    margin-top: 10px;
    margin-right: 0.5em;
    font-size: 1.6em;
    gap: 0.3em;
    display: flex;
    width: auto;
    position: static;
    flex-direction: row;
    padding: 0.5rem 1rem;
  }
}
@media (min-width: 1090px) {
  .menu {
    font-size: 1.8em;
    margin-top: 15px;
    gap: 0.6em;
    padding: 1rem 1.4rem;
  }
}
@media (min-width: 1280px) {
  .menu {
    margin-top: 20px;
    gap: 0.7em;
    padding: 1.2rem 1.6rem;
    margin-right: 1em;
  }
}
@media (min-width: 1560px) {
  .menu {
    margin-top: 30px;
    font-size: 2.2em;
    padding: 1.5rem 2rem;
  }
}
.menu a {
  color: #032654;
  display: flex;
  align-items: center;
  position: relative;
  font-family: "League Gothic", serif;
  text-transform: uppercase;
  padding: 0.2em 0.3em;
  transition: all 0.2s;
}
.menu a:hover {
  text-decoration: none;
  color: #d23e30;
}
.menu a.act {
  background-color: #d23e30;
  color: #ffffff;
  transform: rotate(1deg);
}
@media (max-width: 768px) {
  .menu.mobile-down {
    display: flex;
  }
}

.head-in.stuck .menu {
  margin-top: 0;
  position: static;
}

.head-in.stuck .showmenu-out {
  margin-top: 0;
  position: static;
}

/**********************************
MENU RESPONSIVE
**********************************/
.showmenu-out {
  cursor: pointer;
  width: 2.5rem;
  height: 2.5rem;
  position: absolute;
  right: 0;
  top: 1rem;
  z-index: 99;
  background-color: #d23e30;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (min-width: 576px) {
  .showmenu-out {
    width: 3rem;
    height: 3rem;
  }
}
@media (min-width: 768px) {
  .showmenu-out {
    display: none;
  }
}

.showmenu {
  color: #ffffff;
}

@media (max-width: 768px) {
  .menu-act {
    overflow: hidden;
  }
  .menu-act .head-out {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    overflow-y: scroll;
    background-color: white;
    background-image: none;
    z-index: 5;
    padding-bottom: 5%;
    height: auto;
  }
  .menu-act .head-in {
    flex-direction: column;
    align-items: flex-start;
  }
  .menu-act .head-in > * {
    width: 100%;
  }
}
@media (max-width: 768px) and (max-width: 400px) {
  .menu-act .button-predprodej {
    display: flex;
    position: absolute;
    top: 120px;
    left: 50%;
    right: auto;
    transform: translateX(-50%) rotate(1deg);
  }
}
/*
div.canvas {
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 5;
	overflow: hidden;
	visibility: hidden;
    opacity: 0;
    //transition: visibility 0s 0.3s, opacity 0.3s linear;
    background: rgba($white, 1);
}
div.canvas.act {
	visibility: visible;
    opacity: 1;
    //transition: opacity 0.3s linear;
    display: block;
    @include l {
        display: none;
    }
}*/
/**********************************
MAIN
**********************************/
/**********************************
FOOTER
**********************************/
#foot {
  margin-top: auto;
  background-color: #032654;
}

.foot-in {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  justify-content: flex-end;
  padding: 1rem 1rem 1rem 1rem;
  font-size: 0.9em;
  color: rgba(255, 255, 255, 0.3);
  gap: 0.5em;
  line-height: 1.3;
}
.foot-in a {
  color: rgba(255, 255, 255, 0.4);
}

/**********************************
FORMS
**********************************/
.submit-ico {
  position: absolute;
  left: 1.5em;
  top: 50%;
  transform: translateY(-50%);
  color: #ffffff;
  font-weight: 400;
}

.copy-ico {
  position: absolute;
  z-index: 3;
  left: -8px;
  top: -8px;
  width: 16px;
  height: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.15em;
  background-color: #000000;
  color: #ffffff;
  cursor: copy;
}
.copy-ico:hover {
  background: #db640d;
}

.copy-ico-ico {
  font-size: 10px;
}

/**********************************
FORMS
**********************************/
.form-row-out {
  position: relative;
  margin: 0 0 0.7em 0;
}
.form-row-out:last-child {
  margin-bottom: 0;
}

.form-row {
  display: flex;
  position: relative;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 0.7em;
  /* xy premisteno odsud */
}
@media (min-width: 768px) {
  .form-row {
    /* xy premisteno sem */
  }
  .form-row > * {
    flex: 1;
  }
  .form-row > *.column-1 {
    flex: 1;
  }
  .form-row > *.column-2 {
    flex: 2;
  }
  .form-row > *.column-3 {
    flex: 3;
  }
  .form-row > *.column-4 {
    flex: 4;
  }
  .form-row > *.column-5 {
    flex: 5;
  }
  .form-row > *.column-6 {
    flex: 6;
  }
  .form-row > *.column-7 {
    flex: 7;
  }
  .form-row > *.column-8 {
    flex: 8;
  }
  .form-row > *.column-9 {
    flex: 9;
  }
  .form-row > *.column-10 {
    flex: 10;
  }
  .form-row:not(.form-row--column) {
    flex-direction: row;
  }
}
.form-row input, .form-row select, .form-row textarea, .form-row label {
  width: 100%;
  min-width: 100px;
}

.form-item {
  position: relative;
}

.form-item label {
  align-items: center;
}

.form-item-report {
  position: absolute;
  padding: 0.3em;
  border-radius: 0.2em;
  left: max(16px, var(--mdc-shape-small, 4px) + 4px);
  margin-top: -5px;
  font-size: 0.9em;
  z-index: 1;
}
.form-item-report::before {
  content: "";
  position: absolute;
  left: 1em;
  top: -0.2em;
  background-color: inherit;
  width: 10px;
  height: 10px;
  transform: rotate(45deg);
}

.form-item-report-in {
  position: relative;
  display: inline-block;
}

.form-checkboxes-out .form-item-report {
  left: 2px;
}

.form-item-help {
  font-size: 0.8em;
  padding-top: 0.2em;
  line-height: 1.5;
}

.form-row-help {
  font-size: 0.8em;
  padding-top: 0.2em;
  line-height: 1.5;
}

.form-item-help-row {
  display: flex;
  flex-wrap: wrap;
}

.form-item-help-tag {
  padding: 0.4em;
  border: 1px solid #bbbbbb;
  margin: 0 0.3em 0.3em 0;
  border-radius: 0.15rem;
}

.buttons-row {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.buttons-row > * {
  width: 100%;
}
.buttons-row > * > * {
  margin-bottom: 0.5em;
  width: 100%;
}
@media (min-width: 576px) {
  .buttons-row:not(.buttons-row--col-m, .buttons-row--col-l, .buttons-row--col-xl) {
    flex-direction: row;
    justify-content: space-between;
  }
  .buttons-row:not(.buttons-row--col-m, .buttons-row--col-l, .buttons-row--col-xl) > * {
    width: auto;
  }
  .buttons-row:not(.buttons-row--col-m, .buttons-row--col-l, .buttons-row--col-xl) > * > * {
    margin-bottom: 0;
    margin-right: 0.5em;
    width: auto;
  }
  .buttons-row:not(.buttons-row--col-m, .buttons-row--col-l, .buttons-row--col-xl) > * > *:last-child {
    margin-right: 0;
  }
}
@media (min-width: 768px) {
  .buttons-row--col-m {
    flex-direction: row;
    justify-content: space-between;
  }
  .buttons-row--col-m > * {
    width: auto;
  }
  .buttons-row--col-m > * > * {
    margin-bottom: 0;
    margin-right: 0.5em;
    width: auto;
  }
  .buttons-row--col-m > * > *:last-child {
    margin-right: 0;
  }
}
@media (min-width: 1090px) {
  .buttons-row--col-l {
    flex-direction: row;
    justify-content: space-between;
  }
  .buttons-row--col-l > * {
    width: auto;
  }
  .buttons-row--col-l > * > * {
    margin-bottom: 0;
    margin-right: 0.5em;
    width: auto;
  }
  .buttons-row--col-l > * > *:last-child {
    margin-right: 0;
  }
}
@media (min-width: 1280px) {
  .buttons-row--col-xl {
    flex-direction: row;
    justify-content: space-between;
  }
  .buttons-row--col-xl > * {
    width: auto;
  }
  .buttons-row--col-xl > * > * {
    margin-bottom: 0;
    margin-right: 0.5em;
    width: auto;
  }
  .buttons-row--col-xl > * > *:last-child {
    margin-right: 0;
  }
}

.buttons-row-c {
  display: flex;
  flex-direction: column;
  flex: 1;
}
.buttons-row-c > * {
  margin-bottom: 0.5em;
  width: 100%;
}
@media (min-width: 768px) {
  .buttons-row-c {
    flex-direction: row;
    justify-content: center;
  }
  .buttons-row-c > * {
    margin-bottom: 0;
    margin-inline: 0.25em;
    width: auto;
  }
}

.buttons-row--bg {
  background: #ffffff;
  box-shadow: rgba(112, 112, 112, 0.2) 0 0 15px;
  border-radius: 0.15em;
  padding: 1em;
}

/**********************************
FORM DROPDOWN
**********************************/
.form-dropdown {
  position: absolute;
  z-index: 2;
  width: 100%;
  background-color: #ffffff;
  border: 1px solid #bbbbbb;
  box-shadow: rgba(187, 187, 187, 0.5) 0 0 5px;
  max-height: 30em;
  overflow: auto;
  display: none;
  border-radius: 0.15em;
}

.form-dropdown ul li a {
  display: block;
  padding: 0.5em 1em !important;
  border-bottom: 1px solid rgba(187, 187, 187, 0.5) !important;
  color: #707070;
  text-decoration: none;
  line-height: 1.3;
}
.form-dropdown ul li a:hover {
  background-color: #eeeeee;
}
.form-dropdown ul li a.active {
  background-color: #c8c8c8;
}

/**********************************
CHECKBOXES
**********************************/
.form-checkboxes-out {
  position: relative;
  margin: 0 0 1em 0;
}
.form-checkboxes-out:last-child {
  margin-bottom: 0;
}

.form-checkboxes {
  display: grid;
  grid-gap: 0 1em;
  grid-template-columns: repeat(1, 1fr);
}
@media (min-width: 768px) {
  .form-checkboxes {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1090px) {
  .form-checkboxes {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 1280px) {
  .form-checkboxes {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (min-width: 1560px) {
  .form-checkboxes {
    grid-template-columns: repeat(5, 1fr);
  }
}
@media (min-width: 1090px) {
  .form-checkboxes.column-1 {
    grid-template-columns: repeat(1, 1fr);
  }
  .form-checkboxes.column-2 {
    grid-template-columns: repeat(2, 1fr);
  }
  .form-checkboxes.column-3 {
    grid-template-columns: repeat(3, 1fr);
  }
  .form-checkboxes.column-4 {
    grid-template-columns: repeat(4, 1fr);
  }
  .form-checkboxes.column-5 {
    grid-template-columns: repeat(5, 1fr);
  }
  .form-checkboxes.column-6 {
    grid-template-columns: repeat(6, 1fr);
  }
  .form-checkboxes.column-7 {
    grid-template-columns: repeat(7, 1fr);
  }
  .form-checkboxes.column-8 {
    grid-template-columns: repeat(8, 1fr);
  }
  .form-checkboxes.column-9 {
    grid-template-columns: repeat(9, 1fr);
  }
  .form-checkboxes.column-10 {
    grid-template-columns: repeat(10, 1fr);
  }
}

.form-checkbox .mdc-form-field {
  align-items: flex-start;
}

.form-checkbox .mdc-checkbox {
  margin-top: -0.65em;
}

.form-checkbox label {
  font-weight: 400;
}

/**********************************
MD UPRAVY
**********************************/
.form-item--selfbutton {
  display: flex;
  align-items: center;
  width: 100%;
}

.selfbutton-label {
  align-items: center;
  padding-right: 0;
}
.selfbutton-label .mdc-notched-outline__trailing {
  border-radius: 0 !important;
}

.selfbutton-input {
  padding-right: max(16px, var(--mdc-shape-small, 4px) + 4px);
}

.selfbutton-button {
  height: 56px;
  width: auto !important;
  border-radius: 4px;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  pointer-events: auto;
}

:root {
  --mdc-theme-primary: #5a5a5a;
  --mdc-theme-secondary: #5a5a5a;
  --mdc-theme-error: #E40521;
  --mdc-typography-body2-font-family: $basicfont;
  --mdc-typography-font-family: $basicfont;
  --mdc-checkbox-disabled-color: rgba(0, 0, 0, 0.2) ;
}

.mdc-text-field--focused .mdc-floating-label--float-above,
.mdc-select:not(.mdc-select--disabled).mdc-select--focused .mdc-floating-label {
  color: #5a5a5a !important;
}

.mdc-form-field--invalid .mdc-checkbox__background {
  border-color: #E40521 !important;
}

.mdc-form-field--invalid label {
  color: #E40521 !important;
}

.mdc-text-field, .mdc-select {
  background: white !important;
}

.mdc-switch.mdc-switch--checked .mdc-switch__thumb {
  background-color: #05CE7C;
  border-color: #05CE7C;
}

.mdc-text-field--required:not(.mdc-text-field--disabled):not(.mdc-text-field--invalid):not(.mdc-select--invalid) .mdc-notched-outline__leading,
.mdc-text-field--required:not(.mdc-text-field--disabled):not(.mdc-text-field--invalid):not(.mdc-select--invalid) .mdc-notched-outline__notch,
.mdc-text-field--required:not(.mdc-text-field--disabled):not(.mdc-text-field--invalid):not(.mdc-select--invalid) .mdc-notched-outline__trailing {
  border-color: #40B4E5;
}

.mdc-text-field--required:not(.mdc-text-field--disabled):not(.mdc-text-field--invalid):not(.mdc-select--invalid):not(.mdc-text-field--focused):hover .mdc-notched-outline__leading,
.mdc-text-field--required:not(.mdc-text-field--disabled):not(.mdc-text-field--invalid):not(.mdc-select--invalid):not(.mdc-text-field--focused):hover .mdc-notched-outline__notch,
.mdc-text-field--required:not(.mdc-text-field--disabled):not(.mdc-text-field--invalid):not(.mdc-select--invalid):not(.mdc-text-field--focused):hover .mdc-notched-outline__trailing {
  border-color: #177da8;
}

.mdc-text-field .material-icons {
  font-size: 24px;
}

.mdc-text-field__affix {
  display: inline-flex;
  align-items: center;
}

.mdc-text-field__affix--suffix {
  margin-right: 0.5em;
}

.mdc-switch-out {
  height: 56px;
  display: flex;
  align-items: center;
}
.mdc-switch-out label {
  width: auto !important;
}

.mdc-switch {
  margin-right: 0.6em;
}

.mdc-text-field--textarea.mdc-text-field--outlined .mdc-text-field__input {
  margin-top: 0;
  margin-bottom: 0;
}

.mdc-list-item {
  padding: 0.5em 1em !important;
  border-bottom: 1px solid rgba(187, 187, 187, 0.5) !important;
  color: #707070;
  text-decoration: none;
  line-height: 1.3;
}

.mdc-menu-surface {
  z-index: 1;
}

.mdc-text-field__input.hidden {
  display: none;
}

input[type=file] {
  height: auto !important;
}

.mdc-smaller .mdc-select__anchor,
.mdc-smaller .mdc-text-field {
  width: auto !important;
  height: 40px !important;
}
@media (min-width: 576px) {
  .mdc-smaller .mdc-select__anchor,
  .mdc-smaller .mdc-text-field {
    width: 100% !important;
  }
}

.mdc-smaller .mdc-floating-label--float-above {
  transform: translateY(-26px) scale(0.75) !important;
}

.mdc-border {
  padding: 1em;
  border-radius: 0.2em;
  border: 1px solid rgba(0, 0, 0, 0.38);
  position: relative;
  background-color: #ffffff;
}
.mdc-border--invalid {
  border: 1px solid #E40521 !important;
}
.mdc-border--required {
  border: 1px solid #40B4E5;
}
.mdc-border--recommended {
  border: 1px solid #db640d;
}

.mdc-border-title {
  font-size: 0.8em;
  background-color: #ffffff;
  padding-inline: 0.3em;
  position: absolute;
  top: 0;
  transform: translateY(-50%);
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 90%;
  white-space: nowrap;
}

.mdc-border .form-item-report {
  margin-top: 5px !important;
}

/**********************************
TABLES
**********************************/
.table-fixed {
  table-layout: fixed;
}

.min-content {
  width: -moz-min-content;
  width: min-content;
}
@media (min-width: 768px) {
  .min-content {
    width: 1px;
    white-space: nowrap;
  }
}

.table1 {
  width: 100%;
}

.table1 td,
.table1 th {
  padding: 0.4em 0.8em;
  vertical-align: middle;
  text-align: left;
  border-bottom: 1px solid #eeeeee;
  flex: 0 1 auto;
}

.table1 tr td:first-child,
.table1 tr th:first-child {
  padding-left: 0;
}

.table1 tr td:last-child,
.table1 tr th:last-child {
  padding-right: 0;
}

.table1 thead th {
  font-weight: 400;
  font-size: 0.9em;
  border-bottom: 2px solid #eeeeee;
}

.table-overflow {
  overflow: auto;
  max-width: 100%;
}

.table-edit-icons {
  /*@include m-max {
      width: min-content;
  }*/
  width: 10px;
}

.table-edit-icons-in {
  display: flex;
}
.table-edit-icons-in > * {
  margin: 0 0.2em;
}

/**********************************
TABLE MOBILE
**********************************/
@media (max-width: 768px) {
  .table-mobile {
    width: 100%;
    table-layout: fixed;
  }
}

@media (max-width: 768px) {
  .table-mobile thead tr,
  .table-mobile .thead tr {
    border: 0;
  }
}

@media (max-width: 768px) {
  .table-mobile thead th:not(.table-mobile-visible),
  .table-mobile .thead th:not(.table-mobile-visible) {
    display: none;
  }
}

@media (max-width: 768px) {
  .table-mobile thead tr, .table-mobile thead td, .table-mobile thead th,
  .table-mobile tbody tr, .table-mobile tbody td, .table-mobile tbody th {
    display: block;
    width: 100% !important;
  }
}

@media (max-width: 768px) {
  .table-mobile tbody tr, .table-mobile tbody td, .table-mobile tbody th {
    text-align: right !important;
  }
}

@media (max-width: 768px) {
  .table-mobile tbody tr:not(.thead):not(.table-spacing):not(.table-h) {
    border-bottom: 3px solid #bbbbbb;
    background-color: transparent;
    position: relative;
    margin-bottom: 0.5em;
  }
}

@media (max-width: 768px) {
  .table-mobile tbody tr:not(.table-spacing):not(.table-h):not(.thead) td, .table-mobile tbody tr:not(.table-spacing):not(.table-h):not(.thead) th {
    padding: 0.5em 0em !important;
    border-bottom: 1px solid #e1e1e1;
    display: flex;
    justify-content: space-between;
    position: relative;
  }
  .table-mobile tbody tr:not(.table-spacing):not(.table-h):not(.thead) td[data-title]::before, .table-mobile tbody tr:not(.table-spacing):not(.table-h):not(.thead) th[data-title]::before {
    content: attr(data-title);
    display: inline-block;
    margin-right: 1em;
    font-size: 0.9em;
    font-weight: 500;
    text-align: left;
  }
}

@media (max-width: 768px) {
  .table-mobile .checkrow {
    border: 0;
    padding: 0;
    line-height: 0;
    font-size: 0;
    height: 0;
    position: static;
  }
}
@media (min-width: 768px) {
  .table-mobile .checkrow {
    width: 10px;
  }
}

@media (max-width: 768px) {
  .table-mobile .checkrow .form-item {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 1;
  }
}

@media (max-width: 768px) {
  .table-mobile .checkrow-thead {
    display: flex;
    align-items: center;
    padding: 0;
    margin-bottom: 0.5em;
  }
  .table-mobile .checkrow-thead[data-title]::after {
    content: attr(data-title);
    display: inline-block;
    margin-right: 1em;
    font-size: 0.9em;
    font-weight: 500;
    text-align: left;
  }
}

.table-mobile td.t-left-mobile, .table-mobile th.t-left-mobile {
  text-align: left !important;
}

@media (max-width: 768px) {
  .table-mobile td.th-ico-row[data-title]::before, .table-mobile th.th-ico-row[data-title]::before {
    margin-left: 32px;
  }
}

.th-ico-row .th-ico {
  display: none;
}
@media (max-width: 768px) {
  .th-ico-row .th-ico {
    display: flex;
    position: absolute;
    left: 0.1em;
    top: 0.1em;
  }
}

/**********************************
OTHERS
**********************************/
.line {
  height: 0;
  line-height: 0;
  font-size: 1em;
  border-bottom: 1px solid #cee2f3;
}

.blok {
  padding: 1.5em;
  background-color: #ffffff;
  border: 1px solid #cee2f3;
  box-shadow: #cee2f3 2px 5px 0;
}
@media (min-width: 1090px) {
  .blok {
    padding: 3em;
  }
}
.blok:not(:last-child) {
  margin-bottom: 2em;
}
.blok--orange {
  background-color: #fff6ea;
  border: 1px solid #f3d8b1;
  box-shadow: #f3d8b1 2px 5px 0;
}

.box:not(:last-child) {
  padding-bottom: 1em;
  margin-bottom: 1em;
  border-bottom: 1px solid #cee2f3;
}

.infobox {
  padding: 0.8em 1.2em;
  border: 5px solid rgba(255, 255, 255, 0.1);
  border-radius: 0.2rem;
}
.infobox-ico {
  font-size: 3em;
}

.sidebox {
  padding: 1.2em;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 0.2rem;
}

.names {
  font-size: 2.2em;
  color: #d23e30;
  font-family: "League Gothic", serif;
  text-align: center;
}
@media (min-width: 1090px) {
  .names {
    font-size: 1.6em;
  }
}
@media (min-width: 1280px) {
  .names {
    font-size: 1.6em;
  }
}
@media (min-width: 1560px) {
  .names {
    font-size: 2.2em;
  }
}

.name {
  white-space: nowrap;
}

.fname {
  color: #e48b83;
}

/**********************************
ITEMS
**********************************/
.items {
  display: grid;
  grid-gap: 5px;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
}
@media (min-width: 768px) {
  .items {
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  }
}

.item {
  background: #ffffff;
  padding: 2em;
  box-shadow: rgba(0, 0, 0, 0.1) 0 0 5px;
  color: #707070;
  display: flex;
  flex-direction: column;
}
.item:hover {
  box-shadow: #707070 0 0 5px;
  transform: scale(1.02);
}

.item-img {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2em;
  height: 8em;
}
@media (min-width: 576px) {
  .item-img {
    height: 10em;
  }
}
@media (min-width: 1090px) {
  .item-img {
    height: 13em;
  }
}
.item-img img {
  display: block;
  max-width: 100%;
  max-height: 100%;
  margin: auto;
}

.item-title {
  text-align: center;
  margin-bottom: 2em;
  font-size: 1.1em;
  line-height: 1.5;
}

.item-in {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-top: auto;
}

.item-in-r {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  text-align: right;
}

.item-price {
  margin-bottom: 1em;
  font-size: 1.5em;
  font-weight: 700;
  color: #289152;
}

.item-price-old {
  text-decoration: line-through;
  color: #289152;
  margin-bottom: 0.5em;
}

.item-sklad {
  font-size: 80%;
  margin-top: auto;
  text-transform: uppercase;
}

/**********************************
GALERIE
**********************************/
.galerie {
  display: grid;
  grid-gap: 10px;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
}
@media (min-width: 768px) {
  .galerie {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  }
}

.galerie-item {
  display: flex;
  flex-direction: column;
  gap: 1em;
  padding: 1em;
  background: rgba(187, 187, 187, 0.1);
  border-radius: 5px;
  text-align: center;
}
.galerie-item:hover {
  box-shadow: rgba(0, 0, 0, 0.3) 0 0 5px;
  background: rgba(187, 187, 187, 0.2);
}

.galerie-item-title {
  font-weight: bold;
  text-transform: uppercase;
}

.galerie-item-img {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1 1 auto;
  height: 150px;
}
@media (min-width: 768px) {
  .galerie-item-img {
    height: 200px;
  }
}
.galerie-item-img img {
  display: block;
  max-width: 100%;
  max-height: 100%;
  margin: auto;
}

/**********************************
ENDCLASSES
**********************************/
.hidden, .submithidden {
  display: none;
}

.block {
  display: block !important;
}

.inline-block {
  display: inline-block !important;
}

.inline {
  display: inline !important;
}/*# sourceMappingURL=style.css.map */