/*MCWebDesign classes v1.4 Cafert*/

/* Global variables. */
:root,
::backdrop {
  /* Set sans-serif & mono fonts */

  --mono-font: Consolas, Menlo, Monaco, "Andale Mono", "Ubuntu Mono", monospace;
  --standard-border-radius: 25px;
  --button-border-rad: 25px;
  --photo-radius: 20px;
  /*Global width max-width etc.*/
  --max-width: 1920px;
  --content-width: 1527px;
  --extended-width: 1626px;
  --inner-content-width: 1132px;

  /*Global breaking points*/
  /*
  Breakpoint 	Class infix 	Dimensions
  X-Small 	None 	<576px
  Small 	sm 	≥576px
  Medium 	md 	≥768px
  Large 	lg 	≥992px
  Content of 50-50 proportions break at this point.
  Extra large 	xl 	≥1200px
  Extra extra large 	xxl 	≥1400px
  */
  --sm: 576px;
  --md: 786px;
  --lg: 992px;
  --xl: 1200px;
  --xxl: 1400px;

  /*Global gap*/
  --content-gap: 0.3rem;
  --standard-gap: 1rem;
  --icon-padding: 0.1rem;
  --minihero-size: 3.5rem;
  --bg-icon: #F7F7F7;
  --bg-text-icon: #F7F7F7;
  --si-paragraph-size: 1.05rem;
  --list-gap: 1rem;
  --bg: white;
  --bg-green: #41AA3F;
  --bg-orange: #FFBE34;
  --bg-photo: #CCCCCC;
  --bg-grey: #D8D8D8;
  --bg-eb: #ebebeb;
  --bg-light: #F5F5F5;
  --bg-accent: #FF7D34;
  --bg-alarm: #9F3939;
  --bg-button-accent: #FF7D34;
  --border-button: #C4C4C4;
  --title: #343232;
  --text: #343232;
  --text-light: #6B6B6B;
  --border: #C4C4C4;
  --light-border: #CCCCCC;
  --accent-text: #41AA3F;
  --brand-main-color: #41AA3F;
  --hr-line: #C4C4C4;
}

/* Dark theme */
/*
@media (prefers-color-scheme: dark) {

  :root,
  ::backdrop {
    color-scheme: dark;
}
*/
/* Reset box-sizing */
*,
*::before,
*::after {
  box-sizing: border-box;
  /*border: 1px solid red;*/
}

/* Reset default appearance */
textarea,
select,
input,
progress {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

html {
  /* Set the font globally */
  font-family: "Open Sans", sans-serif;
  /*var(--sans-font);*/
  font-style: normal;
  scroll-behavior: smooth;
}

body {
  display: flex;
  flex-direction: column;
  color: var(--text);
  background-color: var(--bg);
  font-size: 1.15rem;
  line-height: 1.6;
}

/*
* {
  border: 1px solid tan; 
}
*/
/* Make the header bg full width, but the content inline with body */
body>header {
  background-color: var(--accent-bg);
  padding: 0;
}

hr {
  border: 0;
  border-top: 1px solid var(--hr-line);
}

img {
  display: block;
  /*max-width: 100%;*/
}

/* Format headers */
h1 {
  font-size: 3rem;
  margin-top: 3rem;
}

h2 {
  font-size: 2.6rem;
  margin-top: 3rem;
}

h3 {
  font-size: 2.2rem;
  margin-top: 3rem;
}

h4 {
  font-size: 1.44rem;
}

h5 {
  font-size: 1.25rem;
}

h6 {
  font-size: 0.96rem;
}

p {
  font-size: var(--si-paragraph-size);
  margin: 1.5rem 0;
}

/* Prevent long strings from overflowing container */
p,
h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word;
}

/* Fix line height when title wraps */
h1,
h2,
h3 {
  line-height: 1.1;
}

p+p,
li+li {
  margin-top: 1rem;
}

p {
  color: var(--text);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  /* */
  font-family: "Oswald", sans-serif;
  /*in foolivery Oswald is title font*/
  color: var(--title);
}

/* Reduce header size on mobile */
@media only screen and (max-width: 786px) {
  h1 {
    font-size: 2.5rem;
  }

  h2 {
    font-size: 2.1rem;
  }

  h3 {
    font-size: 1.75rem;
  }

  h4 {
    font-size: 1.5rem;
  }
}

/* Consolidate box styling */
aside,
details,
pre {
  background-color: white;
  border: 1px solid var(--border);
  border-radius: var(--standard-border-radius);
  margin-bottom: 0.5rem;
}

progress {
  border-radius: 7px;
  width: 80%;
  height: 13px;
}

progress::-webkit-progress-bar {
  background-color: #f6f6f6;
  border-radius: 7px;
}

progress::-webkit-progress-value {
  background-color: var(--brand-main-color);
  border-radius: 7px;
}

aside {
  font-size: 1rem;
  width: 30%;
  padding: 0 15px;
  margin-inline-start: 15px;
  float: right;
}

*[dir="rtl"] aside {
  float: left;
}

/* Make aside full-width on mobile */
@media only screen and (max-width: 720px) {
  aside {
    width: 100%;
    float: none;
    margin-inline-start: 0;
  }
}

article,
fieldset,
dialog {
  border: 1px solid var(--border);
  padding: 1rem;
  border-radius: var(--standard-border-radius);
  margin-bottom: 1rem;
}

article h2:first-child,
section h2:first-child {
  margin-top: 1rem;
}

section {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

/*
Don't double separators when chaining sections
section+section,
section:first-child {
  border-top: 0;
  padding-top: 0;
}

section:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}
*/
details {
  padding: 0.7rem 1rem;
}

summary {
  cursor: pointer;
  font-weight: normal;
  padding: 0.7rem 1rem;
  margin: -0.7rem -1rem;
  word-break: break-all;
}

details[open]>summary+* {
  margin-top: 0;
}

details[open]>summary {
  margin-bottom: 0.5rem;
}

details[open]> :last-child {
  margin-bottom: 0;
}

/*koniec wstawki */

/* Remove the default triangle */

summary {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
}

/* Create a new custom triangle on the right side */
summary::after {
  height: 40px;
  width: 40px;
  font-size: 2rem;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  margin-left: auto;
  content: '+';
  transition: 0.1s;
  background-color: transparent;
  color: var(--text);
  border-radius: 20px;
}

details[open]>summary::after {
  content: '-';
  background-color: transparent;
  color: var(--text);
}



.text-inactive {
  color: #C4C4C4D9;
}

.color-green {
  color: var(--bg-green);
}
/*right background section*/
.bg-right-special-orange::after,
.bg-right-about-grad::after,
.bg-right-how-green::after,
.bg-right-food-light::after {
  content: "";
  position: absolute;
  top: 0;
  left: 100%;
  width: calc(100vw - 1920px);
  /* Extend the background to the right */
  height: 100%;
}

.bg-right-special-orange::after {
  background: var(--bg-orange);
}

.bg-right-about-grad::after {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #F5F5F5 100%);
}

.bg-right-how-green::after {
  background: var(--bg-green);
}

.bg-right-food-light::after {
  background: var(--bg-light);
}
/*end right background section*/
.special {
  font-size: 10.25rem;
}

.special-v {
  text-overflow: clip;
  white-space: nowrap;
  font-size: 10.25rem;
  line-height: 7.25rem;
}


.special-cont{
  height: 7.5rem;
}


.special-container-padding {
  padding: 6rem 0rem 0rem 4rem;
}

.how-subsection-h {
  height: 500px;
}

/*fonts*/

.oswald {
  font-family: "Oswald", sans-serif !important;
}

.mont {
  font-family: "Montserrat", sans-serif !important;
}

.vert-text {
  writing-mode: vertical-rl;
  /*transform: rotate(180deg);*/
}

@media only screen and (max-width: 992px) {
  .vert-text {
    writing-mode: horizontal-tb;
    /*transform: rotate(180deg);*/
  }

  .special{
    font-size: 3rem;
  }

  .special-container-padding {
    padding: 1rem 0rem 1rem 3rem;
    margin-left: var(--standard-gap);
  }
  .special-cont{
    display: none !important;
  }
  .how-subsection-h {
    height: auto;
  }
}

.text-w-tr {
  color: rgb(255, 255, 255, 0.20);
}

.ration-padding {
  padding: 3rem;
}

.ration-section-minus-margin {
  margin-top: -6rem;
}

.selector-size {
  width: 68px;
}

/*colors bg gradients etc.*/

.soft-shadow {
  box-shadow: 0px 8px 24px 0px #00000014;
}

.bg-icon,
.bg-icon-text {
  background: var(--bg-icon) !important;
}

.bg-orange {
  background: var(--bg-orange);
}

.bg-white-orange {
  background: linear-gradient(to right,
      white 0px var(--max-width),
      var(--bg-orange) var(--max-width) 100%);
}

.bg-white-green {
  background: linear-gradient(to right,
      white 0px var(--max-width),
      var(--bg-green) var(--max-width) 100%);
}

.bg-white-delicate {
  background: linear-gradient(to right,
      white 0px var(--max-width),
      var(--bg-green) var(--max-width) 100%);
}

@media only screen and (max-width: 992px) {

  .bg-white-orange,
  .bg-white-green {
    background: white;
  }
}

.soft-grad {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #F5F5F5 100%);
}

.bg-accent {
  background: var(--bg-accent);
}

.bg-green {
  background: var(--bg-green);
}

.bg-brand {
  background: var(--brand-main-color);
}

.bg-light {
  background: var(--bg-light);
}

.color-brand {
  color: var(--brand-main-color);
}

.nomargin {
  margin: 0 !important;
}

.pointer {
  cursor: pointer;
}

.spacer-unresponsive {
  height: 3rem;
}

.spacer-u {
  height: 3rem;
}

.spacer {
  height: 3rem;
}

@media only screen and (max-width: 786px) {
  .spacer {
    height: 2rem;
  }
}

@media screen and (max-width: 576px) {
  .spacer {
    height: 1rem;
  }
}

.bottom-m-1 {
  margin-bottom: var(--standard-gap);
}

.left-padding {
  padding-left: var(--standard-gap);
}

.left-padding-3 {
  padding-left: calc(3*var(--standard-gap));
}

.right-padding-3 {
  padding-right: calc(3*var(--standard-gap));
}

.left-padding-4 {
  padding-left: calc(4*var(--standard-gap));
}

.left-padding-5 {
  padding-left: calc(5*var(--standard-gap));
}

@media only screen and (max-width: 992px) {

  .left-padding,
  .left-padding-3,
  .left-padding-4,
  .left-padding-5,
  .right-padding-3 {
    padding: 0px;
  }

  .cr-right-992-padding {
    padding-right: calc(5*var(--standard-gap));
  }

  .padding-992-1 {
    padding: 0 var(--standard-gap) 0 var(--standard-gap);
  }
}

@media only screen and (max-width: 786px) {
  .cr-right-992-padding {
    padding-right: calc(2*var(--standard-gap));
  }
}

@media screen and (max-width: 576px) {
  .cr-right-992-padding {
    padding-right: 0px;
  }
}

.fit {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.cover {
  object-fit: cover;
  object-position: center center;
}

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

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

.center {
  display: flex;
  justify-content: center;
  align-items: center;
}

.underline {
  text-decoration: underline;
}

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

/*heading sized paragraphs, for seo purposes*/

.ph0 {
  font-size: 4rem;
  margin-top: 1rem;
  line-height: 5rem;
}

.ph1 {
  font-size: 3rem;
  margin-top: 3rem;
}

.ph2 {
  font-size: 2.6rem;
  margin-top: 3rem;
}


.ph3 {
  font-size: 2.2rem;
  margin-top: 3rem;
}

.ph35 {
  font-size: 2rem;
}

.ph4 {
  font-size: 1.44rem;
}

.ph5 {
  font-size: 1.25rem;
}

.ph6 {
  font-size: 0.96rem;
}

.ph0,
.ph1,
.ph2,
.ph3,
.ph4,
.ph5,
.ph6 {
  font-family: "Oswald", sans-serif;
  overflow-wrap: break-word;
}

.ph1,
.ph2,
.ph3 {
  line-height: 1.1;
}


/* Reduce phx size on mobile */
@media only screen and (max-width: 786px) {
  .ph1 {
    font-size: 2.5rem;
  }

  .ph2 {
    font-size: 2.1rem;
  }

  .ph3 {
    font-size: 1.75rem;
  }

  .ph4 {
    font-size: 1.5rem;
  }
}

.p-26 {
  font-size: 2rem;
  line-height: 3rem;
}

.p-22 {
  font-size: 1.375rem;
}

.slide-placeholder {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.31) 0%, rgba(0, 0, 0, 0.78) 100%);
}

.slide-title {
  font-size: 6rem;
  line-height: 6rem;
}

@media only screen and (max-width: 1200px) {
  .slide-title {
    font-size: 6rem;
    line-height: 5rem;
  }
}

@media only screen and (max-width: 992px) {
  .slide-title {
    font-size: 5rem;
    line-height: 6rem;
  }

  .slide-order-992-1 {
    order: 1;
  }

  .p-22 {
    font-size: 1.2rem;
  }

  .p-26 {
    font-size: 1.5rem;
    line-height: 2.8rem;
  }
}

@media only screen and (max-width: 786px) {
  .slide-title {
    font-size: 4rem;
    line-height: 4rem;
  }

  .p-22 {
    font-size: 1.1rem;
  }

  .p-26 {
    font-size: 1.3rem;
    line-height: 2.2rem;
  }
}

@media only screen and (max-width: 576px) {
  .slide-title {
    font-size: 3.5rem;
    line-height: 3.5rem;
  }

  .p-22 {
    font-size: 1rem;
  }

  .p-26 {
    font-size: 1.2rem;
    line-height: 2rem;
  }
}

.bg-icon {
  background: var(--icon-bg);
}

/*button section*/

.border-brand {
  border: 1px solid var(--bg-button-accent);
}

.button,
.button-w,
.button-t {
  /*text-transform: lowercase;*/
  font-size: 1.1rem;
  font-weight: 600;
  display: flex;
  flex: 0 0 auto;
  border-radius: var(--button-border-rad);
}

.button,
.button-w/*-w not used*/ {
  padding: 0.5rem 3rem 0.5rem 3rem;
}

.button-t {
  padding: 0.5rem 1.4rem 0.5rem 1.4rem;
}

.button {
  font-family: "Oswald", sans-serif;
  background: var(--bg-button-accent);
  color: white;
}


.button-s {
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
  color: var(--text-light);
}

.button-s:hover {
  color: var(--bg-green);
}

.button-s:hover .button-arrow {
  transform: translatex(3px);
  transition: 0.1s ease-in-out;
}

.button-w {
  font-family: "Open Sans", sans-serif;
  background-color: white;
  color: var(--text);
}

.button-t {
  font-size: 1rem;
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  background: white;
  color: #6B6B6B;
  border: 2px solid var(--border-button);
}

.button-t:hover .down-arrow {
  transform: translatey(3px);
  transition: 0.1s ease-in-out;
}

.button-t-w {
  min-width: 12rem;
}

.button-food:hover .food-desc {
  color: var(--bg-green) ;
}

/*
.button-round-l,
.button-round-r {
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid var(--border-button);
  border-radius: 50%;
  width: 4rem;
  height: 4rem;
  opacity: 0.7;
  transition: 0.1s ease-in-out;
}

.button-round-r:hover,
.tr-5-r:hover {
  transform: translateX(5px);
  opacity: 1;
}

.button-round-l:hover {
  transform: translateX(-5px);
  opacity: 1;
}

.button:hover .button-arrow {
  transform: translateX(3px);
  transition: 0.1s ease-in-out;
}

.button-b:hover .button-arrow {
  transform: translateX(3px);
  transition: 0.1s ease-in-out;
}

.button-u:hover .button-arrow {
  transform: translateX(3px);
  transition: 0.1s ease-in-out;
}

.button-w-s:hover .button-arrow {
  transform: translateX(3px);
  transition: 0.1s ease-in-out;
}

.ne-arrow-container:hover .ne-arrow {
  transform: translate(1rem, -1rem);
  opacity: 0;
  transition: 0.1s ease-in-out;
}

.button-b {
  font-size: 1rem;
  margin-top: calc(0.5*var(--standard-gap));
}
*/

/*
.outlined {
  color: transparent;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: #5E5F63;
}
*/
/*
.vert-text {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}
*/

.red {
  background-color: red !important;
}

/*foodlivery*/

.bg-photo {
  background: var(--bg-photo);
}

.photo1 {
  width: 550px;
  height: 467px;
}

.video1 {
  width: 640px;
  height: 400px;
}

.food-photo {
  width: 174px;
  height: 174px;
}

.food-name {
  min-height: 74px;
}

.food-container {
  min-width: 550px;
  padding: 2.2rem;
}

.food-gap {
  gap: 2rem;
}

.blog-w {
  max-width: 360px;
}

.blog-photo {
  width: 356px;
  height: 206px;
}

@media screen and (max-width: 992px) {
  .photo1 {
    width: 100%;
  }
  .video1 {
    width: 100%;
  }
}

@media screen and (max-width: 786px) {
  .food-container {
    min-width: 100%;
    padding: 1rem;
  }
  .food-photo {
    width: 160px;
    height: 160px;
    border-radius: 10px;
  }
  .food-gap {
    gap: 1rem;
  }
}

.order-button-right-pad {
  padding: 0.5rem 2rem 0.5rem 1.3rem;
}

.order-button-price-pad {
  padding: 0 0.5rem 0 2rem;
}

.order-numbering-w {
  min-width: 10rem;
  max-width: 12rem;
}

.l-border {
  border-left: 1px solid #39A137;
}

.r-80 {
  border-radius: 80px 0px 0px 80px;
}

.light-border {
  border: 1px solid var(--border);
}

.sq-50 {
  width: 50px;
  height: 50px;
}

.newsletter-cont {
  max-width: 24rem;
  padding: 0.2rem;
  border: 1px solid var(--border)
}

/*koniec czesci foodlevery*/

.ssmall {
  font-size: 0.85rem;
}

.si-small {
  font-size: 0.875rem;
}

.si-bold {
  font-weight: 800;
}

.font-mont {
  font-family: "Montserrat", sans-serif;
}

.letter-sp-1 {
  letter-spacing: 1px;
}

.letter-sp-4 {
  letter-spacing: 4px;
}

.text-center {
  text-align: center;
}

.capitalize {
  text-transform: capitalize;
}

.uppercase {
  text-transform: uppercase;
}

.italic {
  font-style: italic;
}

.flex-inline-row-no {
  display: inline-flex;
  flex-direction: row;
  flex-wrap: nowrap;
}

@media screen and (max-width: 576px) {
  .display-none-576 {
    display: none !important;
  }

  .nowrap-576 {
    flex-wrap: nowrap;
  }
}

/*end*/

.reverse {
  flex-wrap: wrap-reverse;
}

.tb-margin-1 {
  margin: var(--standard-gap) 0 var(--standard-gap) 0;
}

.b-margin-1 {
  margin-bottom: var(--standard-gap);
}

.bottom-3gap {
  padding-bottom: calc(3*var(--standard-gap));
}

.top-3gap {
  padding-top: calc(3*var(--standard-gap));
}

.top-bottom-1gap {
  padding: var(--standard-gap) 0 var(--standard-gap) 0;
}

.p-1gap {
  padding: var(--standard-gap);
}

.p-7gap {
  padding: calc(0.7*var(--standard-gap));
}

.left-gap {
  padding-left: var(--standard-gap);
}

.right-gap {
  padding-right: var(--standard-gap);
}

.right-3gap {
  padding-right: calc(3*var(--standard-gap));
}

@media screen and (max-width: 992px) {
  .right-3gap {
    padding-right: calc(2*var(--standard-gap));
  }

  .bottom-3gap {
    padding-bottom: calc(2*var(--standard-gap));
  }

  .top-3gap {
    padding-top: calc(2*var(--standard-gap));
  }
}

.mw-1920 {
  max-width: var(--max-width);
}

.mw-1626 {
  max-width: var(--extended-width);
}

.mw-1527 {
  max-width: var(--content-width);
}

.r-80-992 {
  border-radius: 80px 0px 0px 80px;
}

.food-menu-padding {
  padding: 6rem 0rem 6rem calc(var(--extended-width) - var(--content-width));
}

.mw-1626-mw-1527-pad {
  padding-left: calc(var(--extended-width) - var(--content-width));
  padding-bottom: 8rem;/*mind section under!*/
  /*padding-left: 99px;*/
}

.consult-padding {
  padding: 0rem 0rem 6rem calc(var(--extended-width) - var(--content-width));
}

.consult-grad {
  background: linear-gradient(
    to right,
    #f5f5f5 0% 60%,
    var(--bg-orange) 60% 100%
  );
}

@media screen and (max-width: 1626px) {
  .mw-1626-mw-1527-pad {
    padding-left: max(1rem, calc(100vw - var(--content-width)));
  }
  .food-menu-padding {
    padding: 3rem 0rem 3rem max(1rem, calc(100vw - var(--content-width)));
  }  

  .consult-padding {
    padding: 0rem 0rem 3rem max(1rem, calc(100vw - var(--content-width)));
  }
}

@media screen and (max-width: 992px) {
  .mw-1626-mw-1527-pad {
    /*padding-left: calc(var(--content-width) - var(--extended-width));*/
    padding-left: 1rem;
  }

  .r-80-992 {
    border-radius: 40px 0px 0px 40px;
  }

  .consult-padding {
    padding: 2rem 0rem 2rem 1rem;
  }
}

.mw-inner {
  max-width: var(--inner-content-width);
}

/*MC flex*/

.gap0-1 {
  gap: calc(0.1*var(--standard-gap));
}

.gap0-5 {
  gap: calc(0.5*var(--standard-gap));
}

.gap {
  gap: var(--standard-gap);
}

.gap1-5 {
  gap: calc(1.5*var(--standard-gap));
}


.gap2 {
  gap: calc(2*var(--standard-gap));
}


.gap2-5 {
  gap: calc(2.5*var(--standard-gap));
}

.pr1 {
  padding-right: var(--standard-gap);
}

.pl1 {
  padding-left: var(--standard-gap);
}

.prl1 {
  padding: 0 var(--standard-gap) 0 var(--standard-gap);
}

.rgap1 {
  /*1 rem gap, adjusting to mobile resolutions*/
  gap: var(--standard-gap);
}

.r-left-padding {
  padding-left: var(--standard-gap);
}

@media screen and (max-width: 992px) {
  .rgap1 {
    gap: calc(0.5*var(--standard-gap));
  }

  .r-left-padding {
    padding-left: calc(0.5*var(--standard-gap));
  }
}

.circ {
  border-radius: 50%;
}

.round {
  border-radius: var(--standard-border-radius);
}

.basis-fit {
  flex-basis: fit-content;
}

.grow-1 {
  flex-grow: 1;
}

.grow {
  flex-grow: 1;
}

.flex-grow-12 {
  flex-grow: 1.2;
}

.grow-2 {
  flex-grow: 2;
}

.flex-row {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}

.flex-row-rev {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap-reverse;
}

.flex-col {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
}

.flex-col-no {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
}

/*justify*/

.justify-start {
  justify-content: flex-start;
}

.justify-center {
  justify-content: center;
}

.justify-end {
  justify-content: flex-end;
}

.justify-around {
  justify-content: space-around;
}

.justify-between {
  justify-content: space-between;
}

/*align items*/

.align-start {
  align-items: flex-start;
}

.align-center {
  align-items: center;
}

.align-end {
  align-items: flex-end;
}

.align-stretch {
  align-items: stretch;
}

.align-between {
  align-items: space-between;
}

.align-baseline {
  align-items: baseline;
}

/*align-content*/

.content-start {
  align-content: flex-start;
}

.content-center {
  align-content: center;
}

.content-end {
  align-content: flex-end;
}

/*align-self*/

.self-start {
  justify-self: flex-start;
}

.self-end {
  justify-self: flex-end;
}

.self-center {
  justify-self: center;
}

/*end*/

.w-10 {
  width: 10%;
}

.w-25 {
  width: 25%;
}

.w-30 {
  width: 30%;
}

.w-33 {
  width: 33%;
}

.w-50 {
  width: 50%;
}

.w-70 {
  width: 70%;
}

.w-80 {
  width: 80%;
}

.w-100 {
  width: 100%;
}

/*dynamic containers*/

.mob-25-100 {
  width: 25%
}

.w992-25-100 {
  width: 25%;
}

.w992-30-100 {
  width: 30%
}

.w992-33-100 {
  width: 33.3%
}

.w992-40-100 {
  width: 40%
}

.w992-50-100 {
  width: 50%
}

.w992-60-100 {
  width: 60%
}

.w992-70-100 {
  width: 70%
}

.w992-80-100 {
  width: 80%
}

@media screen and (max-width: 992px) {
  .w992-25-100,
  .w992-30-100,
  .w992-33-100,
  .w992-40-100,
  .w992-50-100,
  .w992-60-100,
  .w992-70-100,
  .w992-80-100 {
    width: 100%;
  }

  .w992-100 {
    width: 100%;
  }

  .si-992-hide {
    display: none !important;
  }
}

/*end*/
/*nowy moduł flex*/

.flex {
  display: flex;
  flex-wrap: wrap;
}

.flex-no {
  display: flex;
  flex-wrap: nowrap;
}

.col {
  flex-direction: column;
  flex-wrap: nowrap;
}

/*cześć dynamiczna*/

.flex-110 {
  flex: 1 1 0;
}

.flex-010 {
  flex: 0 1 0;
}

.flex-992-50-100 {
  flex: 1 1 50%;
}

@media screen and (max-width: 576px) {
  .flex-576-100 {
    flex: 1 1 1;
  }
}

.flex-922-60-70 {
  flex: 1 1 60%;
}

.justify-end-start-992 {
  justify-content: flex-end;
}

@media screen and (max-width: 992px) {

  .justify-end-start-992 {
    justify-content: flex-start;
  }

  .justify-center-992 {
    justify-content: center !important;
  }

  .align-center-992 {
    align-items: center;
  }

  .flex-992-100 {
    flex: 1 1 100%;
  }

  .flex-992-50-100 {
    flex: 1 1 100%;
  }

  .flex-922-60-70 {
    flex: 1 1 70%;
  }
}

/*koniec cześć dynamiczna*/
/*koniec*/

.relative {
  position: relative;
}

.overlaping {
  position: absolute;
}

.line-height-4 {
  line-height: 4rem;
}

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

.overflow {
  overflow: visible;
}

.no-overflow {
  overflow: hidden;
}

.transparent {
  opacity: 0;
}

@media only screen and (max-width: 576px) {
  .none576 {
    display: none !important;
  }
}