/*fixní výška grid-template-rows: 80px 80px auto;*/ 

html {height: 100%;}

body {width: 100vw; height: 100%; padding: 0; margin: 0; overflow-x: hidden; background: var(--lightGrey);}


h2 {margin: 0; padding: 0 0 2rem 0; font: 500 1.4rem Figtree; letter-spacing: 0.08em; color: #444;}
  h2.centered {text-align: center;}
h3 {margin: 0; padding-bottom: 1rem; font: 600 1rem Figtree; letter-spacing: 0.08em; color: var(--synove);}
h4 {margin: 0; padding: 2rem 0 0.5rem 0; font: 600 0.85rem Figtree; letter-spacing: 0.15em; color: #333;}
h4.thin {font: 400 0.85em Figtree;}
h4.regular {font: 400 0.85em Figtree; letter-spacing: 0;}
p {margin: 0; padding: 0; font: 400 0.85em/1.6rem Figtree; color: var(--darkGrey);}
ul {margin: 0; padding-left: 1rem;}
li {margin: 0; padding: 0 0 0.4rem 0.5rem; font: 400 0.85rem Figtree; color: var(--darkGrey);}

@media only screen and (max-width: 960px) {
  h2 {font-size: 1.2rem; padding-bottom: 2rem;}
}

@media only screen and (max-width: 1024px) {
  h3 {font: 600 0.9rem Figtree;}
  h4.thin {font: 500 0.75em Figtree;}
}

:root {
  --white: #fff;
  --lightGrey: #fafafa;
  --brightGrey: #eee;
  --grey: #999;
  --mediumGrey: #666;
  --darkGrey: #444;
  --pomegranate: #c0392b;
  --vermilion: #e34234;
  --aquamarine: #62c5af;
  --orange400: #FFA726;
  --red: #da291c;

  --synove: #da291c;
  --drevovyroba: #c7cd3f;
  --strojirny: #00428d;
  --polytrade: #b0003e;

  --einsify: #3c68ff; /*#2c66af*/

  --navHeight: 70px;
  --navHeightFloating: 84px;
  --navFloatingMargin: 1.5rem;
  --navFloatingDoubleMargin: calc(var(--navFloatingMargin) * 2);
}

.redColor {color: var(--red);}
.greyColor {color: var(--grey);}

.clear {clear: both;}


@media only screen and (max-width: 600px) {
  .noPhone {
    display: none;
  }
}

@media only screen and (min-width: 600px) {
  .onlyPhone {
    display: none;
  }
}


.sui_pageContainer {
  position: relative;
  min-height: 100vh;
  overflow: auto;
}

/* sui základní modifiers */
.sui_block--rounded, .sui_element--rounded {border-radius: 8px;}
.sui_block--shadow, .sui_element--shadow, .sui_block--shadow--no-hover {box-shadow: rgba(0, 0, 0, 0.06) 0px 2px 4px, rgba(0, 0, 0, 0.05) 0px 0.5px 1px; z-index: 2; transition: box-shadow 0.3s ease;}
  .sui_block--shadow:hover, .sui_element--shadow:hover {box-shadow:rgba(0, 0, 0, 0.22) 0px 19px 43px, rgba(0, 0, 0, 0.18) 0px 4px 11px;}


.sui_block--card {
  background: var(--white);
  border-radius: 16px;
  grid-auto-rows: auto;
}


/* sui základní blocks */
.gC {
  display: grid;
  column-gap: 1rem;
  row-gap: 2rem;
  grid-auto-rows: max-content;
}

  @media only screen and (max-width: 1024px) {
    .gC {
      row-gap: 1rem;
    }
  }

  .gC.nrg {
    row-gap: 0;
  }

  .gC.rg-1 {
    row-gap: 1rem;
  }


.gC-2 {
  grid-template-columns: repeat(2, 1fr);
  column-gap: 1.5rem;
}

.gC-3 {
  grid-template-columns: repeat(3, 1fr);
  column-gap: 1.5rem;
}

.gC-4 {
  grid-template-columns: repeat(4, 1fr);
  column-gap: 1.5rem;
}

  @media only screen and (max-width: 1024px) {
    .gC-4 {grid-template-columns: repeat(2, 1fr); column-gap: 1rem;}
  }




.gC-5 { 
  grid-template-columns: repeat(5, 1fr);
}

.gC-6 { 
  grid-template-columns: repeat(6, 1fr);
}

.gC-8 {
  grid-template-columns: repeat(8, 1fr);
}

.gC-10 {

  grid-template-columns: repeat(10, 1fr);
}

.gC-12 {
  grid-template-columns: repeat(12, 1fr);
}



.rw {
	grid-column: 1 / -1;
}

  .rblank {
    grid-column: 1 / -1;
  }

  @media only screen and (max-width: 1024px) {
    .rblank {
      display: none;
    }
  }

  .rspan-2 {
    grid-column: span 2; 
  }

  .rspan-3 {
    grid-column: span 3; 
  }
    
    @media only screen and (max-width: 1024px) {
      .rspan-3 {
        grid-column: 1 / -1;
      }
    }


.rc-6of10 {
  grid-column: 3/span 6; 
}

.rc-8 {
	grid-column: 3 / span 8;
}

.rc-8-10 {
  grid-column: 2 / span 8;
}

.rc-10 { 
  grid-column: 2 / span 10;
}

  @media only screen and (max-width: 1600px) {
    .rc-10 { 
      grid-column: 1 / span 12;
    }
  }


.blank40 {
  height: 40px;
}


.sui_grid__card {
  padding: 1.5rem;
  border-radius: 5px;
  background: #fff;
}

  @media only screen and (max-width: 1024px) {
    .sui_grid__card {
      padding: 0.75rem;
    }
  }

/* sui elements */
.sui_btn {
  margin: 1.5rem 0 0 1.5rem;
  border: 0;
  text-transform: uppercase;
  outline: none;
  text-decoration: none;
  cursor: pointer;
}

/*velikost*/
.sui_btn.tiny {
  padding: 10px 16px;
  font: 500 0.75em Figtree;
}

.sui_btn.small {
  padding: 16px 25px 14px 25px;
  font: 400 0.85em Figtree;
}

  @media only screen and (max-width: 1280px) {
    .sui_btn.small {
      padding: 13px 25px 11px 25px;
      font: 400 0.75em Figtree;
    }
  }

.sui_btn.medium {
  padding: 17px 30px 15px 30px;
  font: 400 0.85em Figtree;
}



/*tvar*/
.sui_btn.tiny.sharp, .sui_btn.small.sharp, .sui_btn.medium.sharp {
  border-radius: 0px;
}

.sui_btn.tiny.regular, .sui_btn.small.regular, .sui_btn.medium.regular {
  border-radius: 6px;
}

.sui_btn.tiny.rounded, .sui_btn.small.rounded, .sui_btn.medium.rounded {
  border-radius: 30px;
}




/*typ fluent, MD, změní barvu při hover - zatmaví se a při kliku víc...pak ještě call to action jako v alphě...klikací ;)*/
.sui_btn.fluent {
  opacity: 0.75;
  transition: all 0.3s;
}

  .sui_btn.fluent:hover {
    transform: scale(1.025);
  }

  .sui_btn.fluent:active {
    opacity: 1.0;
  }

/*barva*/
.sui_btn.grey {
  background: #607D8B;
  color: #fff;
}

  .sui_btn.fluent.grey {
    box-shadow: 10px 16px 40px 0px rgba(96,125,139,0.46);
  }

  .sui_btn.fluent.grey:hover {
    box-shadow: 10px 16px 40px 0px rgba(96,125,139,0.46);
    opacity: 0.85;
  }

  .sui_btn.fluent.grey:active {
    opacity: 1.0;
  }


.sui_btn.pomegranate2 {
  background: #e74c3c;
  color: #fff;
}

.sui_btn.red {
  background: #E53935;
  color: #fff;
}

  .sui_btn:disabled,
  .sui_btn[disabled] {
      background: #E0E0E0;
      color: #757575;
      cursor: not-allowed;
  }


.sui_btn.grey {
  background: #999;
  color: #fff;
}



  .sui_btn.fluent.red {
    box-shadow: 10px 16px 40px 0px rgba(231,56,52,0.46);
  }

  .sui_btn.fluent.red:hover {
    box-shadow: 10px 16px 40px 0px rgba(231,56,52,0.46);
    opacity: 0.85;
  }

  .sui_btn.fluent.red:active {
    opacity: 1.0;
  }



  .sui_btn.fluent.grey {
    box-shadow: 10px 16px 40px 0px rgba(153,153,153,0.46);
  }

  .sui_btn.fluent.grey:hover {
    box-shadow: 10px 16px 40px 0px rgba(153,153,153,0.46);
    opacity: 0.85;
  }

  .sui_btn.fluent.grey:active {
    opacity: 1.0;
  }


.sui_btn.petrol {
  background: #1a8e9c;
  color: #fff;
}

  .sui_btn.fluent.petrol {
    box-shadow: 10px 16px 40px 0px rgba(26,142,156,0.46);
  }

  .sui_btn.fluent.petrol:hover {
    box-shadow: 10px 16px 40px 0px rgba(26,142,156,0.46);
    opacity: 0.85;
  }

  .sui_btn.fluent.petrol:active {
    opacity: 1.0;
  }


.sui_btn.white {
  background: #fff;
  color: #444;
}

  .sui_btn.fluent.white {
    box-shadow: 10px 16px 40px 0px rgba(255,255,255,0.1);
  }

  .sui_btn.fluent.white:hover {
    box-shadow: 10px 16px 40px 0px rgba(255,255,255,0.2);
  }

  .sui_btn.fluent.white:active {
    opacity: 1.0;
  }


/* sui bloky stránky */
.nav {
  
}

  .nav.floating {
    width: 100%;
    position: fixed;    
    z-index: 4;
  }

  .nav__container {
  	background: var(--white);
    /* height: var(--navHeight); */
    box-shadow: 0 8px 32px 0 rgba( 235, 235, 235, 0.37);
  }

    .index .nav__container {
      box-shadow: none;
    }

    .nav.einsify .nav__container {
      background: var(--einsify);
    }


    .nav.floating .nav__container {
      margin: var(--navFloatingMargin);
      border-radius: 0.8rem;
    }

.sui.breadcrumbs {
  /*height: 6rem;*/
  margin: 0 auto;
  /* display: flex; align-items: center;*/
  /* background: var(--lightGrey); */
  padding: 2rem 4rem; box-sizing: border-box;
}

  @media only screen and (max-width: 1600px) {
   .sui.breadcrumbs {

    }
  }

  @media only screen and (max-width: 1024px) {
   .sui.breadcrumbs {
      padding: 1rem 0;
      max-width: 90%;
    }
  }

.sui_article {
	min-height: calc(100vh - 260px);
  row-gap: 32px;
  column-gap: 16px;
}
  
  


/*************************** footer ***************************/

.footer {
  margin-top: 2em;
  padding: 1rem;  
  width: 100%;
  box-sizing: border-box;
}


/* struktura */

  .footer__bottom {
    margin: 0 auto;
    max-width: 1600px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .footer__left,
  .footer__right {
    width: 5rem;
  }

  .footer__center {
    flex: 1;
    text-align: center;
  }

  .footer__link {
    display: inline-block;
  }


/* obsah */

  .footer__copyright {
    font-size: 0.7em;
    color: var(--grey);
  }

  .footer__logo {
    height: 1.2rem;
  }

  .footer__icon {
    height: 1rem;
    display: block;
    margin-left: auto;
  }


/*************************** footer end ***************************/



.sui.footer {
	height: 120px;
  background: var(--lightGrey);
}

  .sui.footer__container {
    height: 120px;
  }

  .sui.footer__left {
    grid-column: 1 / span 3;
  }

  .sui.footer__center {
    grid-column: 4 / span 6; display: flex;
  }

  .sui.footer__right {
    grid-column: 10 / span 3;
  }

  @media only screen and (max-width: 1600px) {
    .sui.footer {
      height: 50px;
    }
      .sui.footer__container {
        height: 50px;
      }
  }




/**
 * Material Modal CSS
 */
.modal {
  will-change: visibility, opacity;
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow-y: auto;
  overflow-x: hidden;
  z-index: 1000;
  visibility: hidden;
  opacity: 0;
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  transition-delay: $modal-delay;
}
.modal--active {
  visibility: visible;
  opacity: 1;
}
.modal--align-top {
  align-items: flex-start;
}
.modal__bg {
  background: transparent;
}
.modal__dialog {
  max-width: 600px;
  padding: 1.2rem;
}
.modal__content {
  will-change: transform, opacity;
  position: relative;
  padding: 2.4rem;
  background: #fff;
  background-clip: padding-box;
  box-shadow: 0 12px 15px 0 rgba(0,0,0,0.25);
  opacity: 0;
  transition: all 0.25s cubic-bezier(0.23, 1, 0.32, 1);
  min-width: 450px;
  max-height: 80vh;
  overflow-y: auto;
}

@media only screen and (max-width: 600px) {
  .modal__content {
    min-width: 100px;
    width: 70vw;
  }
}

.modal__content--active {
  opacity: 1;
}
.modal__close {
  z-index: 1100;
  cursor: pointer;
}
.modal__trigger {
  position: relative;
  display: inline-block;
  padding: 0;
  line-height: 1;
  cursor: pointer;
  -webkit-tap-highlight-color: rgba(0,0,0,0);
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  font: 400 0.85rem Figtree;
}
.modal__trigger--active {
  z-index: 10;
}
.modal__trigger:hover {
}
#modal__temp {
  will-change: transform, opacity;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #fff;
  transform: none;
  opacity: 1;
  transition: opacity 0.1s ease-out, transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}
/**
 * Demo specific CSS
 */

.demo-btns header {
  padding: 7vh 10vw;
  background: #ffebee;
  display: flex;
  align-items: center;
}
.demo-btns header h1 {
  margin: 0;
  color: rgba(0,0,0,0.54);
  font-weight: 300;
}
.demo-btns .info {
  background: #f44336;
  padding: 3vh 10vw;
  height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-flow: column wrap;
}
.demo-btns p {
  text-align: center;
  color: #fff;
}
.demo-btns .link {
  font-size: 20px;
}
.demo-btns .modal__trigger {
  margin-right: 3px;
}
@media (max-width: 640px) {
  .demo-btns .modal__trigger {
    margin-bottom: 0.8rem;
  }
}
.demo-close {
  position: absolute;
  top: 0;
  right: 0;
  margin: 1.2rem;
  padding: 0.6rem;
  background: rgba(0,0,0,0.3);
  border-radius: 50%;
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}
.demo-close svg {
  width: 24px;
  fill: #fff;
  pointer-events: none;
  vertical-align: top;
}
.demo-close:hover {
  background: rgba(0,0,0,0.6);
}
.logo {
  position: fixed;
  bottom: 3vh;
  right: 3vw;
  z-index: 2;
}
.logo img {
  width: 45px;
  transform: rotate(0);
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}
.logo img:hover {
  transform: rotate(180deg) scale(1.1);
}





.abNewsText p {
  padding-bottom: 1em;
  max-width: 75%;
  font: 400 0.95em/1.6rem Figtree;
}

.abNewsText h3 {
  padding-top: 2em;
}