:root{
/*    --background-color: #121212;*/
    --background-color: #202020;
    --shadow-color: #000;
    --navbar-background-color: #202020;
    --background-another-color: #666;
/*    --text-color: #dedede;*/
    --text-color: #fff;
/*    --second-color: #E67008;*/
/*    --temp-additional-color: #6579DB;*/
/*    --temp-additional-color: #6567DB;*/
    --temp-additional-color: #324499;
    --second-color: #E77008;
    --second-active-color: #F18018;
    --third-color: #FFDD1C;
    --third-active-color: #FFEA3C;
    --designed-color: #F18932;
    --temp-pulsing-color: #FF5912;
    --high-contrast-color: #000;
    --designed-transparent-color: #1A2225;
    --designed-second-transparent-color: #202020;
    color: var(--text-color);
    background-color: var(--background-color);
    font-family: Arial, Helvetica, sans-serif;

    --sun-icon-filter: opacity(1) brightness(0) saturate(100%) invert(81%) sepia(65%) saturate(3473%) hue-rotate(331deg) brightness(92%) contrast(105%);
    --text-emoji-filter: invert(100%);
    --link-icon-filter: brightness(0) saturate(100%) invert(71%) sepia(15%) saturate(6856%) hue-rotate(338deg) brightness(98%) contrast(93%);

    transition: background-color .5s, color .5s;
}

/* animations section starts */

/* animations section ends */

html{
  scroll-behavior: smooth;
}

body{
  overflow-x: hidden;
}

*{
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

/* fonts in general start */

.designed-font{
  font-family: Arial Black, Helvetica, sans-serif;
  letter-spacing: -2%;
}

pre{
  font-family: Arial, Helvetica, sans-serif;
}

h1, h2{
  /* makes them edit the text the way they want */
  white-space: pre-line;
  color: var(--text-color);
  font-family: Arial Black, Helvetica, sans-serif;
}

h3, h4, h5, h6{
  white-space: pre-line;
  font-weight: 400;
  color: var(--text-color);
  font-family: Arial, Helvetica, sans-serif;
}

p{
  white-space: pre-line;
  color: var(--text-color);
  font-size: 1.4rem;
}

a{
  color: var(--designed-color);
}

h1{
  font-size: 2.7rem;
  margin-bottom: 1rem;
  color: var(--designed-color);
}

.icon-large{
  height: 2.9rem;
  position: relative;
  bottom: 0;
}

h2{
  font-size: 2.3rem;
  margin-bottom: .8rem;
}

h3{
/*temp*/
  font-size: 2.1rem;
  margin-bottom: .6rem;
}

.icon-medium{
  position: relative;
  top: 0.14rem; /* SPRAWDZIĆ!!! czy to się zachowa przy innych wielkościach czcionki */
  height: 1.5rem;
/*  top: 0.5rem;*/ /* SPRAWDZIĆ!!! czy to się zachowa przy innych wielkościach czcionki */
/*  height: 2.2rem;*/
}

h4{
  font-size: 1.8rem;
  margin-bottom: .5rem;
}

h5{
  font-size: 1.6rem;
}

.icon-small{
  position: relative;
  top: 0.1rem; /* SPRAWDZIĆ!!! czy to się zachowa przy innych wielkościach czcionki */
  height: 1.2rem;
}

h6{
  font-size: 1.3rem;
}

section{
  padding-top: 2rem;
  padding-bottom: 1.5rem;
}

.icon{
  filter: var(--text-emoji-filter);
  transition: filter .2s;
}

/* fonts in general end */

/* animations start */

@keyframes mapDelaySoStyleLoads{
  from {opacity: 1;}
  to {opacity: 0; z-index: -10;}
}

@keyframes mapFullscreenEmphasize{
  0% { transform: scale(1.0); }
  4% { transform: scale(1.5); }
  8% { transform: scale(1.0); }
  100% { transform: scale(1.0); }
}

@keyframes info-icon-emphasize{
  0% {filter: var(--text-emoji-filter);}
  80% {filter: var(--text-emoji-filter);}
  85% {filter: var(--text-emoji-filter) drop-shadow(0px 0px 3px var(--text-color));}
  90% {filter: var(--text-emoji-filter);}
  100%{filter: var(--text-emoji-filter);}
}

@keyframes label-animation{
  0% { background-color: var(--designed-color); }
  50% { background-color: var(--temp-pulsing-color); }
  100% { background-color: var(--designed-color); }
}

@keyframes loading-dot-animation-1{
  0% { opacity: 0; }
  24% { opacity: 0; }
  25% { opacity: 1; }
  100% { opacity: 1; }
}

@keyframes loading-dot-animation-2{
  0% { opacity: 0; }
  49% { opacity: 0; }
  50% { opacity: 1; }
  100% { opacity: 1; }
}

@keyframes loading-dot-animation-3{
  0% { opacity: 0; }
  74% { opacity: 0; }
  75% { opacity: 1; }
  100% { opacity: 1; }
}

@keyframes hiding-animation{
  0% { opacity: 1; }
  100% { opacity: 0; }
}

/* animations end */

/* global objects starts */

/* loading screen starts */

#loading-screen{
  background-color: var(--background-color);
  position: fixed;
  z-index: 10000;
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  opacity: 1;
}

#loading-screen.hiding{
  animation-name: hiding-animation;
/*  animation-delay: .7s;*/
  animation-delay: 0s;
  animation-duration: .5s;
  animation-fill-mode: forwards;
}

#loading-screen.hidden{
  z-index: -500;
}

#loading-screen.hidden .loading-screen-dot{
  animation-name: none;
}

#loading-screen-text-container{
  display: flex;
  flex-direction: row;
}

#loading-screen-text-container > h1{
  display: inline-block;
}

#loading-screen-text-container > .loading-screen-dot{
  opacity: 0;
}

#loading-screen-text-container > .loading-screen-dot:nth-of-type(2){
  animation-name: loading-dot-animation-1;
  animation-delay: 0s;
  animation-duration: 3s;
  animation-iteration-count: 30;
}

#loading-screen-text-container > .loading-screen-dot:nth-of-type(3){
  animation-name: loading-dot-animation-2;
  animation-delay: 0s;
  animation-duration: 3s;
  animation-iteration-count: 30;
}

#loading-screen-text-container > .loading-screen-dot:nth-of-type(4){
  animation-name: loading-dot-animation-3;
  animation-delay: 0s;
  animation-duration: 3s;
  animation-iteration-count: 30;
}

/* loading screen end */

.text-justified{
  text-align: center;
  padding: auto;
}

.span-container{
  display: inline-block;
}

.outer-container{
  display: inline-grid;
  grid-template-columns: auto auto auto;
}

.inner-container{
  display: inline-flex;
  justify-content: space-around;
}

.general-margins{
  display: flex;
  flex-direction: column;
  align-items: center;
}

.general-margins > *{
  width: 86%;
}

.hidden{
  visibility: hidden;
}

.bold{
   
}

.stop-scrolling {
  height: 100%;
  overflow: hidden;
}

.wave-border{
  height: 20px;
  width: 1100px;
/*  background-image:url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" width="40" height="40" stroke="orange" fill="none" stroke-width="4px" stroke-linecap="square" viewBox="0 0 80 40" overflow="visible"><path d="M 0 20 q 20 -40 40 0 q 20 40 40 0"></path></svg>');*/
  background-image:url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" stroke="orange" fill="none" stroke-width="4px" stroke-linecap="square" viewBox="0 0 40 20" overflow="visible"><path d="M 0 10 q 10 -12 20 0 q 10 12 20 0"></path></svg>');
  /* stroke-linecap makes the rounded endings square, so they fit now */
/* how to mak such svg */
/* <svg xmlns="http://www.w3.org/2000/svg" width="60" height="60" stroke="orange" fill="none" viewBox="0 0 120 120"><path d="M 0 50 q 30 -60 60 0 q 30 60 60 0"></path></svg> */
/*background-image:url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" width="60" height="60" stroke="orange" fill="none" viewBox="0 0 120 120"><path d="M 0 50 q 30 -60 60 0 q 30 60 60 0"></path></svg>');*/
/* width=x height=y viewport= 0 0 2x y d="M 0 y/2 q y/2 -x x 0 q y/2 x x 0" */ /* for wave */
/* width=x height=y viewport= 0 0 x y */ /* for mcdonald's eyebrows */
  background-repeat: repeat-x;
/*  overflow: hidden;*/
}

/* bike chart starts */

.bike-chart-container{
  height: 120px;
}

.bike-chart{
  width: 180px;
  height: 180px;
  position: relative;
  top: -20px;
  left: 15px;
}

.bike-chart > *{
  display: inline;
  fill: none;
  stroke: var(--text-color);
  stroke-width: 3;
  stroke-linecap: round;
  stroke-dasharray: none;
  stroke-opacity: 1;
}

.bike-chart > .indicator{
  stroke: var(--designed-color) !important;
}

.bike-chart > .shocker-front{
  d: path('m 112.4,84.6 -7,-35');
}

.bike-chart > .bar-front{
  d: path('m 105.4,49.62 -4,-20');
}

.bike-chart > .handle-bar{
  d: path('m 101.4,29.62 15,-3 v 0 0');
}

.bike-chart > .brake-lever{
  d: path('m 116.4,26.62 c 0,0 1.3,12.6 -7.8,6.6');
}

.bike-chart > .bar-top{
  d: path('m 56.8,46.8 45.5,-5.3 v 0 0');
}

.bike-chart > .bar-bottom{
  d: path('M 63.0,84.6 103.4,47.62 v 0 0');
}

.bike-chart > .bar-seat{
  d: path('m 63.0,84.6 -11,-48');
}

.bike-chart > .seat{
  d: path('m 44.8,36.65 18.7,-0.8');
}

.bike-chart > .chain{
  stroke-width: 2 !important;
  d: path('m 32.0,93.6 27,-1.5 c 15,0 15,-15 0,-15 l -32,-1.5 c -12,0 -12,18 0,18 z');
}

.bike-chart > .v-brake-rear{
  d: path('m 27.0,84.6 m 25,0 m -5,-15 c 0,0 -4,-6.75 -14,-9.25');
}

.bike-chart > .v-brake-front{
  d: path('m 112.4,84.6 m -25,0 m 12,-21 c 0,0 5,-4.55 15,-3.75');
}

.bike-chart > .bar-back-brake{
  d: path('m 41.9,63.9 13,-17.5');
}

.bike-chart > .bar-back-wheel{
  d: path('m 27.4,84.6 13,-19');
}

.bike-chart > .bar-back-bottom{
  d: path('m 63.4,84.6 h -36');
}

.bike-chart > circle.wheel-front{
  /*cx: circle(132.4);
  cy: circle(104.6);
  r: circle(25);*/
/*  -webkit-cx: 132.4px;
  -webkit-cy: 104.6px;
  -webkit-r: 25px;
  -moz-cx: 132.4px;
  -moz-cy: 104.6px;
  -moz-r: 25px;*/
  cx: 112.4px;
  cy: 84.6px;
  r: 25px;
}

.bike-chart > circle.wheel-back{
  cx: 27.4px;
  cy: 84.6px;
  r: 25px;
}

.bike-chart > circle.disc-brake-front{
  stroke-width: 7px;
  cx: 112.4px;
  cy: 84.6px;
  r: 6px;
}

.bike-chart > circle.disc-brake-rear{
  stroke-width: 7px;
  cx: 27.4px;
  cy: 84.6px;
  r: 6px;
}

.bike-chart > circle.gear-front{
  cx: 63.4px;
  cy: 84.6px;
  r: 7px;
}

/* bike chart ends */

/* global objects end */

/* section navbar starts */

#section-navbar *{
  margin-bottom: 0;
}

#section-navbar{
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  padding-top: 0;
  padding-bottom: 0;
  background-color: var(--background-color);
  box-shadow: 0px .4rem 4px 8px var(--navbar-background-color);
}

#container-discount{
  display: flex;
  justify-content: center;

  padding-top: 0;
  padding-bottom: 0;
  margin-bottom: 0;
  box-shadow: -2px 0 4px 4px transparent;

  transition: padding-top .6s .3s, padding-bottom .6s .3s, margin-bottom .6s .3s, box-shadow .6s .3s ;
}

#container-discount.active{
  background-color: var(--designed-color);
  padding-top: 1.2rem;
  padding-bottom: 1.2rem;
  box-shadow: -2px 0 4px 4px var(--designed-color);
  margin-bottom: .2rem;
}

#discount-content{
  position: relative;
}

#container-discount > #discount-content{
  height: 0;
  transition: height .6s .3s;
}

#container-discount.active > #discount-content{
  height: 1.5rem;
}

#discount-content > *{
  font-family: Arial Black, Helvetica, sans-serif;
  letter-spacing: -2%;
  color: var(--text-color);
  font-weight: bold;
  position: relative;
}

/*#container-discount > #discount-content > h4,
#container-discount > #discount-content > h5,
#container-discount > #discount-content > h6,*/
#container-discount > #discount-content > *{
  transform: rotateX(90deg);
  transition: transform .3s .6s;
  position: absolute;
}

#container-discount.active > #discount-content > *{
  transform: rotateX(0deg);
}

#container-discount.active > #discount-content > h4{
  font-size: 1.6rem;
}

#container-discount.active > #discount-content > h5{
  font-size: 1.2rem;
}

#container-discount.active > #discount-content > h6{
  font-size: 1rem;
}

#container-discount.active > #discount-content > h4:nth-of-type(1){
/*  color: white;*/
  color: var(--temp-additional-color);
  left: -530px;
  transform: skewX(-5deg) skewY(1deg);
  font-size: 1.8rem;
  top: -25%;
}

#container-discount.active > #discount-content > h5:nth-of-type(1){
  color: var(--temp-additional-color);
  top: 60%;
  left: -440px;
  transform: skewX(-5deg);
}

#container-discount.active > #discount-content > h4:nth-of-type(2){
  color: white;
  left: -270px;
  width: 35rem;
  top: -22%;
  transform: skewX(-15deg) skewY(3deg);
/* comment it out when needed */
  text-align: center;
}

#container-discount.active > #discount-content > h6{
  color: var(--temp-additional-color);
  left: 130px;
  width: 10rem;
  top: -65%;
  transform: skewX(-15deg);
}

#container-discount.active > #discount-content > h5:nth-of-type(2){
  color: var(--temp-additional-color);
  font-size: 1.6rem;
  left: 230px;
  width: 24rem;
  transform: skewX(-5deg);
}

#container-navbar{
  margin-top: 1rem;
  margin-bottom: 1rem;
  width: 100%;
  height: 65px;
  display: inline-grid;
  grid-template-columns: 20% 60% 20%;
}

#container-navbar .page-navigation > *{
  font-family: Arial Black, Helvetica, sans-serif;
  letter-spacing: -2%;
  color: var(--designed-color);
}

#container-navbar > .inner-container{
  padding: 0 2rem;
}

.page-navigation{
  display: flex;
  width: 268px;
  justify-content: space-between;
  align-items: center;
}

.page-navigation:hover{
  cursor: pointer;
}

.page-navigation:hover > .navbar-spacer{
  height: 100%;
}

.navbar-spacer{
  position: relative;
  left: -1px;
  width: 3px !important;
  height: 80%;
  background-color: var(--second-color);
  transition: height .3s;
}

.navbar-spacer.pseudo{
  left: 1px;
}

.page-navigation:first-of-type .navbar-spacer{
  width: 2.5px;
}

.page-navigation:first-of-type .navbar-spacer.pseudo{
  left: 1.5px;
}

.navbar-img-container{
  height: 65px;
  overflow: hidden;
}

.navbar-img-container > img{
  height: 90px;
  filter: var(--sun-icon-filter);
  position: relative;
  top: -19%;
}

#navbar-icons-right{
  position: relative;
}

#mobile-hamburger-container{
  position: absolute;
  top: 13px;
  right: 0;
  visibility: hidden;
}

#mobile-hamburger-container:hover{
  cursor: pointer;
}

svg.hamburger{
  height: 34px;
  width: 34px;
}

#hamburger{
  height: 34px;
  width: 34px;
  margin-left: auto;
  margin-right: 20px;
}

path.hamburger-stripe{
  d: path('M 0 0 l 40 0');
  fill: var(--designed-color);
  stroke: var(--designed-color);
  stroke-width: 3;

  transition: transform .3s, rotate .3s, top .3s, opacity .2s;
}

path.hamburger-stripe:nth-of-type(1){
  transform: translateY(3px);
}

path.hamburger-stripe:nth-of-type(2){
  transform: translateY(17px);
  opacity: 1;
}

path.hamburger-stripe:nth-of-type(3){
  transform: translateY(31px);
}

/* section navbar ends */

/* section theme-switch starts */

/* new switch starts */

#theme-switch-path{
  transform: translate(3.5px, 3.5px);
}

#theme-switch-path > g{
  filter: url(#container);
  transform: matrix(1, 0, 0, 1, -3.5, -3.5);
}

#container{
  fill: #83cbd8; 
  rx: 17.5px;
  height: 35px;
  width: 60.667px;
}

#button{
  transform: translate(2.333px, 2.333px);
}

#sun > g:first-of-type, #sun > g:nth-of-type(2){
  transform: matrix(1, 0, 0, 1, -3, -3.5);
}

#sun > g:nth-of-type(2) > path{
  fill: rgba(246, 254, 247, 0.29);
  transform: translate(9.33px, 9.33px);
  d: path('M11.667,0A11.667,11.667,0,1,1,0,11.667,11.667,11.667,0,0,1,11.667,0Z');
}

#sun-outer{
  fill: #f8e664;
  transform: translate(5.83px, 5.83px); 
  r: 15.167px;
  cy: 15.167px;
  cx: 15.167px;
}

#sun-inner{
  fill: #fcf4b9; 
  transform: translate(11px, 10.5px);
  r: 7px; 
  cy: 7px; 
  cx: 7px;
}

#moon > g:first-of-type{
  filter: url(#moon);
  transform: matrix(1, 0, 0, 1, -31.5, -5.83);
}

#moon > g:first-of-type > circle{
  fill: #cce6ee; 
  transform: translate(25px, 0); 
  r: 15.167px; 
  cy: 17.5px;
  cx: 18px;
}

#patches{
   fill: #a6cad0; 
   transform: translate(-24.415px, -1.009px);
}

#patches > circle:first-of-type{
  transform: translate(37.009px, 1.496px);
  r: 2px;
  cy: 2px;
  cx: 2px;
}

#patches > circle:nth-of-type(2){
  transform: translate(33.366px, 14.952px);
  r: 2px; 
  cy: 2px; 
  cx: 2px;
}

#patches > circle:nth-of-type(3){
  transform: translate(27.016px, 5.044px); 
  r: 1px; 
  cy: 1px; 
  cx: 1px;
}

#patches > circle:nth-of-type(4){
  transform: translate(45.081px, 15.888px);
  r: 1px; 
  cy: 1px; 
  cx: 1px;
}

#patches > circle:nth-of-type(5){
  transform: translate(27.016px, 19.503px);
  r: 1px; 
  cy: 1px; 
  cx: 1px;
}

#patches > circle:last-of-type{
  transform: translate(44.081px, 7.53px);
  r: 1.5px;
  cy: 1.5px; 
  cx: 1.5px;
}

#cloud{
   transform: matrix(1, 0, 0, 1, -3.5, -3.5);
}

#cloud > path{
  fill: #fff; 
  transform: translate(-3471px, -159px);
  d: path('M3512.81,173.815a4.463,4.463,0,0,1,2.243.62.95.95,0,0,1,.72-1.281,4.852,4.852,0,0,1,2.623.519c.034.02-.5-1.968.281-2.716a2.117,2.117,0,0,1,2.829-.274,1.821,1.821,0,0,1,.854,1.858c.063.037,2.594-.049,3.285,1.273s-.865,2.544-.807,2.626a12.192,12.192,0,0,1,2.278.892c.553.448,1.106,1.992-1.62,2.927a7.742,7.742,0,0,1-3.762-.3c-1.28-.49-1.181-2.65-1.137-2.624s-1.417,2.2-2.623,2.2a4.172,4.172,0,0,1-2.394-1.206,3.825,3.825,0,0,1-2.771.774c-3.429-.46-2.333-3.267-2.2-3.55A3.721,3.721,0,0,1,3512.81,173.815Z')
}

#stars{
  fill: #def8ff; 
  transform: translate(3.585px, 1.325px);
}

#stars > path:first-of-type{
  transform: matrix(-1, 0.017, -0.017, -1, 24.231, 6.055);
  d: path('M.774,0,.566.559,0,.539.458.933.25,1.492l.485-.361.458.394L1.024.953,1.509.592.943.572Z');
}
#stars > path:nth-of-type(2){
  transform: matrix(-0.777, 0.629, -0.629, -0.777, 23.185, 14.358);
  d: path('M1.341.529.836.472.736,0,.505.46,0,.4.4.729l-.231.46L.605.932l.4.326L.9.786Z');
}
#stars > path:nth-of-type(3){
  transform: matrix(0.438, 0.899, -0.899, 0.438, 23.177, 29.735);
  d: path('M.015,1.065.475.9l.285.365L.766.772l.46-.164L.745.494.751,0,.481.407,0,.293.285.658Z');
}
#stars > path:nth-of-type(4){
   transform: translate(15.677px, 3.388px) rotate(104deg);
   d: path('M1.161,1.6,1.059,1,1.574.722.962.607.86,0,.613.572,0,.457.446.881.2,1.454l.516-.274Z');
}
#stars > path:nth-of-type(5){
   transform: matrix(-0.07, 0.998, -0.998, -0.07, 15.066, 14.457);
   d: path('M.873,1.648l.114-.62L1.579.945,1.03.62,1.144,0,.706.464.157.139.438.7,0,1.167l.592-.083Z');
}
#stars > path:nth-of-type(6){
  transform: translate(12.326px, 25.061px) rotate(11deg);
  d: path('M.593,0,.638.724,0,.982l.7.211.045.724.36-.64.7.211L1.342.935,1.7.294,1.063.552Z');
}
#stars > path:nth-of-type(7){
   transform: translate(10.012px, 8.962px) rotate(172deg);
   d: path('M.816,0,.5.455,0,.311.323.767l-.312.455.516-.215.323.456L.827.911,1.343.7.839.552Z');
}
#stars > path:last-of-type{
   transform: translate(6.218px, 16.616px) rotate(169deg);
   d: path('M1.261,0,.774.571.114.3.487.967,0,1.538.728,1.32l.372.662.047-.749.728-.218L1.215.749Z');
}

/* The switch - the box around the slider */
#theme-toggle-button {
/*  font-size: 17px;*/
  position: relative;
  display: inline-block;
/*  width: 7em;*/
  cursor: pointer;
  height: 100%;
  width: 50%;
  display: flex;
  align-items: center;
}

#theme-toggle-button > svg{
  height: 2.1rem;
}

/* Hide default HTML checkbox */
#toggle {
  opacity: 0;
  width: 0;
  height: 0;
}

#container,
#patches,
#stars,
#button,
#sun,
#moon,
#cloud {
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 0.25s;
}

/* night sky background */
#toggle:checked + svg #container {
  fill: #2b4360;
}

/* move button to right when checked */
#toggle:checked + svg #button {
  transform: translate(28px, 2.333px);
}

/* show/hide sun and moon based on checkbox state */
#sun {
  opacity: 1;
}

#toggle:checked + svg #sun {
  opacity: 0;
}

#moon {
  opacity: 0;
}

#toggle:checked + svg #moon {
  opacity: 1;
}

/* show or hide background items on checkbox state */
#cloud {
  opacity: 1;
}

#toggle:checked + svg #cloud {
  opacity: 0;
}

#stars {
  opacity: 0;
}

#toggle:checked + svg #stars {
  opacity: 1;
}

/* new switch ends */

#theme-switch{
  height: 0px;
}

#theme-switch-container{
  height: 0;
  overflow: visible;
}

#theme-switch-path.hover{
  left: -5px;
  top: -2.5px;
  max-width: 234px;  
  height: 70px;
}

#theme-switch-icon{
  position: relative;
  object-fit: contain;

  left: -17px;
  top: -18.75px;
  max-width: 102px;
  height: 102px;
  filter: var(--sun-icon-filter);

  transition: left .5s, top .5s, max-width .5s, height .5s, filter .5s;
}

#theme-switch-icon.hover{
  max-width: 104px;
  height: 104px;
  left: -16px;
  top: -17.75px;
  filter: var(--sun-icon-filter);
}

/* section theme-switch ends */

/* section for easygoers 1 starts */

#section-for-easygoers-1{
  margin-top: 0;
  padding-top: 6rem;
  transition: margin-top .6s .3s;
}

body.discount-visible #section-for-easygoers-1{
  margin-top: 4.1rem;
}

#section-for-easygoers-1 > .content{
  position: relative;
  display: flex;
  flex-direction: column;
  height: 560px
}

.content-container:nth-of-type(1){
  opacity: 0.5;
  z-index: -1;
  position: relative;
}

.content-container:nth-of-type(2){
  display: grid;
  justify-items: center;
  z-index: 2;
}

.content-container > img{
  object-fit: contain;
}

#welcome-motto{
/*  font-family: Roboto;*/
  font-style: oblique;
}

#welcome-background-image{
  object-fit: cover;
  height: 560px;
  position: absolute;
  width: 100%;
  z-index: -2;
}

#welcome-logo{
  width: 39.4%;
  position: relative;
  top: -5px
}

#welcome-text{
  margin-top: 5rem;
  display: flex;
  flex-direction: column;
  align-items: center;

}

#welcome-text .welcome-text-container{
  position: relative;
}

#welcome-text .welcome-text-container:nth-of-type(2){
  margin-top: 5rem;
}

.welcome-text-container:first-of-type .welcome-text-background{
  scale: 1.02 1.25;
}

#welcome-text .welcome-text-background{
  background-color: var(--background-color);
  box-shadow: 0px 0px 4px 4px var(--background-color);
  opacity: 0.7;
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 6px;

  transition: opacity .3s;
}

#welcome-text h3{
  position: relative; /* that way, background color stays behind the h3, instead of covering it */
  margin-bottom: 0;
  padding: .5rem 1rem;
}

#welcome-text > div > *{
  text-align: center;
  text-align-last: center;
}

#shortcut-for-easygoers{
  text-align:justify;
  text-align-last: justify;
  cursor: pointer;
  width: 80%;
  position: relative;
  left: 10%;

  text-shadow: 0px 0px transparent;
  transition: text-shadow .3s;
}

#welcome-text > .welcome-text-container:nth-of-type(2) .welcome-text-background{
  width: 80%;
  left: 10%;
}

.decorate{
  text-decoration: underline;
  color: var(--designed-color);
  cursor: pointer;
}

#welcome-text > .welcome-text-container:nth-of-type(2):hover .welcome-text-background{
  opacity: .85;
}

.welcome-text-container:hover #shortcut-for-easygoers{
  text-shadow: 0px 0px 3px var(--designed-color);
}

/* section for easygoers end */

/* section services starts */

#section-services{
  padding-top: 3rem;
}

#section-prices-beginning{
  margin-bottom: 4.5rem;
}

/* section services end */

/* section prices starts */

#section-prices{
  padding-top: 3rem;
}

#rules-short{
  text-align: justify;
  text-align-last: left;
}

#price-examples-title > h3{
  margin-bottom: 2.5rem;
}

#recommended-button-container{
  display: flex;
  flex-direction: column;
  align-items: center;
}

#recommended-button-container h3,
.recommended-button-container h3,
.recommended-label h3
{
  margin-bottom: 0;
}

#first-label{
  cursor: pointer;
}

.recommended-label:not( #first-label ){
  position: relative;
  left: 1rem;
  bottom: 1.5rem;
  padding: .1rem .5rem;
  background-color: var(--designed-color);
  border-radius: 3px;

  animation-name: label-animation;
  animation-delay: 0s;
  animation-duration: 2s;
  animation-iteration-count: infinite;
}

.recommended-label{
  position: relative;
  padding: .35rem 1.05rem;
  background-color: var(--designed-color);
  border-radius: 3px;
  z-index: 3;

  animation-name: label-animation;
  animation-delay: 0s;
  animation-duration: 2s;
  animation-iteration-count: infinite;
}

.recommended-label-container{
  position: relative;
  width: 100%;
  height: 0px;

  bottom: 1rem;
  display: flex;
  justify-content: right;
  align-items: flex-end;
  width: calc(50% + 80px);
  grid-column: 1 / span 3;
}

.recommended-label h3{
  color: black;
  text-shadow: 0 0 transparent;
  transition: text-shadow .3s;
}

.recommended-label:hover h3{
  text-shadow: 0 0 1px black;
}

#prices-flex{
  display: flex;
  flex-direction: column;

  opacity: 1;
  transition: opacity .15s;
}

#prices-flex.transforming{
  opacity: 0;
}

.prices-grid{
  position: relative;
  display: grid;
/*  grid-template-columns: 240px calc(50% - 120px) calc(50% - 120px);*/
  grid-template-columns: 240px calc(50% - 160px) calc(50% - 80px);
  margin-bottom: .5rem;
}

.price-service-divider{
  grid-column: 1 / span 3;
  height: 2px;
  background-color: var(--designed-color);
  width: 100%;
  box-shadow:
    -35px 0px 10px -20px var(--background-color) inset,
    35px 0px 10px -20px var(--background-color) inset;

  align-self: center;
  margin-bottom: 1.5rem;
}

.prices-mini-flex{
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 1rem;
  box-shadow:
    -35px 0px 10px -20px var(--background-color) inset,
    35px 0px 10px -20px var(--background-color) inset;
  transition: box-shadow .3s;
}

.prices-mini-flex:hover{
  cursor: pointer;
  /* left top blur spread- negative spread makes the inset box bigger than original */
  box-shadow:
    -35px 0px 10px -20px var(--background-color) inset,
    35px 0px 10px -20px var(--background-color) inset,
    0px -10px 3px -6px var(--designed-color) inset;

}

.prices-mini-flex h4{
  text-align: start;
  margin-bottom: 0;
}

.prices-mini-flex:nth-of-type(3n + 3) h4{
  text-align: end;
}

.bike-pic-trigger{
  white-space: normal;
  position: relative;
}

.bike-pic-trigger .icon{
  transition: filter .2s;
  animation-name: info-icon-emphasize;
  animation-duration: 8s;
  animation-iteration-count: infinite;
}

.bike-pic-trigger:hover .icon{
/*  animation-play-state: paused;*/
  animation: 0;
  filter: var(--text-emoji-filter) drop-shadow(0px 0px 2px #FFF);
}

.bike-pic-outer-container{
  position: absolute;
  height: 0;
  width: 0;
  display: inline-grid;
  justify-items: center;
  align-items: center;
  left: 12px;
  bottom: 100%;
}

.bike-pic-outer-conteiner.reversed{
  bottom: 0;
}

.bike-pic-inner-container{
  display: flex;
  flex-direction: column;
  opacity: 0;
  transition: opacity .3s;

  position: relative;
  bottom: 100%;
  justify-content: center;
  align-items: center;
  left: -50%;
}

.bike-pic-inner-container.reversed{
  bottom: 0;
}

.bike-pic-inner-container.hover{
  opacity: 1;
}

.bike-pic-inner-container img{
  height: 120px;
  width: 180px;
  object-fit: cover;
  position: relative;
  z-index: 20;
}

.pointer{
  position: absolute;
  width: 100%;
  height: 100%;
  bottom: 0;
}

.bike-pic-inner-container.reversed .pointer{
  transform: rotateZ(180deg);
}

.name-of-service{
  font-weight: bold;
}

.nos-pictures{
  margin-top: .5rem;
}

.nos-pictures > img{
  margin-right: 10px;
  height: 40px;
  width: 40px;
}

.exact-price{
  position: relative;
}

.additional-expenses{
  color: #F19957;
}

.strikethrough-container{
  position: absolute;
  width: 100%;
  height: 100%;
  /*top: 0;
  left: 0;*/
  top: 43%;
  left: 20%;
  transform: scaleX(2);
}

.strikethrough{
  width: 100%;
  height: 3px;
  background-color: var(--designed-color);
  transform: rotate(30deg);
}

/* section prices end */

/* section price examples starts */

#total-price-info{
  margin-top: 2rem;
  text-align: justify;
  text-align-last: left;
}

#map-on-page{
  height: 400px;
  width: 100%;
}

.map-cover{
  position: absolute;
  height: 100%;
  width: 100%;
  z-index: 2000;
  opacity: 1;
  animation-name: mapDelaySoStyleLoads;
  animation-delay: 1.5s;
  animation-duration: 2.5s;
  animation-fill-mode: forwards;
}

#section-price-examples{
  padding-top: 0;
  margin-bottom: 1rem;
}

#price-examples-title{
  margin-bottom: 3.8rem;
}

#price-examples-title h1{
  margin-bottom: 0;
}

#additional-offers-examples{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

#additional-offers-examples > h4{
  width: 800px;
}

#additional-offers > h4:first-of-type{
  text-align: justify;
  text-align-last: center;
  margin-bottom: 1.5rem;
}

#additional-offers-examples > div:first-of-type{
  margin-bottom: 2rem;
}

/* section price examples end */

/* section contact us starts */

#section-contact-us{
  padding-top: 0;
}

#contact-info > h4{
  text-align: center;
  margin-bottom: 0;
}

#opening-hours{
  margin-top: 1.5rem;
}

#contact-info > h4:last-of-type{
  margin-top: 1.5rem;
  margin-bottom: 2.7rem;
  text-align: justify;
  text-align-last: center;
}

/* section contact us end */

/* section credits starts */

#section-credits{
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--temp-additional-color);
  margin-top: 1.5rem;
}

#credits-flex-container{
  display: grid;
  grid-template-columns: 25% 50% 25%;
  width: 96%;
  column-gap: 1rem;
}

.credits-column{
  display: flex;
  flex-direction: column;
  row-gap: .5rem
}

#credits-logo{
  white-space: preserve;
}

#credits-logo img{
  position: relative;
  right: 1.2rem;
}

#credits-logo a{
  position: relative;
  left: 1.2rem;
}

.credits-column h6{
  display: flex;
  justify-content: space-between;
}

#credits-welcome-picture span:last-of-type{
  left: 0;
}

#section-credits .icon{
  filter: var(--link-icon-filter);
}

/* section contact us end */

/* section for easygoers 2 starts */

#section-for-easygoers-2 p{
  text-align: justify;
  text-align-last: left;
}

/* section for easygoers 2 end */

/* section pop up starts */

#section-pop-up, #additional-pop-up-section{
  position: fixed;
  z-index: 15;
  width: 100%;
  top: -100%;
  opacity: 0;
  background-color: var(--background-color);
  transition: top .5s;
  display: grid;
  align-items: center;
  justify-items: center;
}

#section-pop-up.visible, #additional-pop-up-section.visible{
  top: 5.2rem;
  opacity: 1;
}

#section-pop-up > *, #additional-pop-up-section > *{
  display: inline;
}

#pop-up-container, #additional-pop-up-container{
  position: relative;
}

#pop-up-close-button-container, #additional-pop-up-close-button-container{
  position: relative;
  height: 0;
  top: 1.5rem;
}

#pop-up-close-button, #additional-pop-up-close-button{
  position: absolute;
  height: 25px;
  width: 25px;
  right: 0;
  top: -.5rem;
  transition: transform .3s;
  z-index: 3000;
}

#pop-up-close-button:hover, #additional-pop-up-close-button:hover{
  transform: scale(1.2);
}

svg path.cross-left{
  d: path('M 0 0 l 25 25');
  fill: none;
  stroke: var(--designed-color);
  stroke-width: 3;
}

svg path.cross-right{
  d: path('M 25 0 l -25 25');
  fill: none;
  stroke: var(--designed-color);
  stroke-width: 3;
}

.pop-up-page, .additional-pop-up-page{
  position: absolute;
  top: 0;
  opacity: 1;
  transition: top .3s;
  display: grid;
  justify-items: center;
  width: 100%;
}

.rolled-up{
/*  opacity: 0 !important;*/
  top: -1500px !important;
}

.rolled-down{
/*  opacity: 0 !important;*/
  top: 1500px !important;
}

#pop-up-bike-info{
  height: 500px;
}

.pop-up-scroll-container, .additional-pop-up-scroll-container{
  height: 450px;
  overflow-y: scroll;
}

#pop-up-basic-info-description{
  margin-bottom: 2rem;
}

#pop-up-card{
  padding: 0 1rem;
  margin-bottom: 3rem; 
  overflow: hidden;

  border-width: 2px;
  border-style: solid;
  border-color: var(--second-color);
  border-radius: 5px;



  display: flex;
  flex-direction: column;

  height: 550px;
}

#pop-up-card h4, #additional-pop-up-card h4{
  display: block;
}

.example-flex{
  display: flex;
  flex-wrap: wrap;
}

#example-pics-container{
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 12%;
}

.example-pic-container{
  height: 190px;
  width: 190px;
  object-fit: cover;
}

.example-pic-description-container{
  margin-top: .8rem;
  text-align: center;
  width: 190px;
}

.pop-up-title-container, .additional-pop-up-title-container{
/*  width: 85%;*/
  width: 90%; /* temp solution for too big text with "kompleksowy przegląd" */
}

.pop-up-title, .additional-pop-up-title{
  margin-top: 0.5rem;
  display: inline-block;
}

#pop-up-pics-container{
  display: flex;
  flex-align: center;
  flex-direction: row;
  justify-content: center;
  min-height: 120px;
  column-gap: 2rem;
  row-gap: 1.5rem;
  flex-wrap: wrap;
  padding-top: 1.5rem;
  margin-bottom: 1.5rem
}

.solo-pic-container{
  border-color: var(--designed-color);
  border-width: 1px;
  border-style: solid;
  height: 120px;
  width: 120px;
  object-fit: contain;
}

#pop-up-description-container, #additional-pop-up-description-container{
  margin-bottom: 1rem;
}

#pop-up-description, #additional-pop-up-description{
  margin-top: 1rem;
  text-align: justify;
  text-align-last: center;
}

#pop-up-map-map-container{
  height: 300px;
  width: 750px;
  position: relative;
  margin-top:.8rem;
  margin-bottom: 1rem;
}

#ultimate-pop-up-map-container{
  height: 100%;
  width: 100%;
}

#pop-up-map-title{
  text-align: justify;
  text-align-last: center;
}

#pop-up-map-description{

}

#pop-up-page-counter{
  bottom: -475px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

#turn-page-trigger-border{
  margin: 0 !important;
  position: absolute;
  height: 100%;
  width: 100%;
  background-color: transparent;
  border-radius: 2px;
  box-shadow: inset 0px 0px 8px 12px var(--designed-color);
  z-index: 16;
}

#turn-page-trigger{
  overflow: hidden;
  height: 60px;
  width: 30%;
  background-color: var(--designed-color);
  border-radius: 2px;
  display: grid;
  grid-template-columns: 68% 32%;
  row-gap: 5px;
  position: relative;
  z-index: 15;
}

#turn-page-trigger > *{
  margin: 0 .75rem;
}

#turn-page-trigger svg{
  position: relative;
  height: 30px;
  width: 30px;
  overflow: visible;
  transform: scale(0.75);
  z-index: 17;
}

#page-count-container{
  position: relative;
  display: flex;
  align-items: center;
  height: 60px;
  top: 14px;
}

#page-count-shadow{
  position: absolute;
  width: 100%;
  height: 200px;
  background-color: var(--background-color);
  z-index: 12;
  box-shadow: 0 0 8px 5px var(--background-color);
}

.pop-up-page-count{
  position: absolute;
  text-align: right;
  width: 100%;
  margin-bottom: 0;
  top: 0;
  transition: top .5s;
}

.pop-up-page-count.rolled-up{
  top: -200% !important;
}

.pop-up-page-count.rolled-down{
  top: 200% !important;
}

#page-goer{
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  top: 6px;
}

#page-goer > *{
  padding: 5px;
}

svg#go-page-down{
  bottom: 6px;
}

svg#go-page-up path{
  d: path('m 15 0 l 15 15 l -30 0 z');
  stroke-width: 4;
  stroke: var(--high-contrast-color);
  fill: var(--high-contrast-color);
  stroke-linejoin: round;
  transition: transform .15s linear;
} 

svg#go-page-down path{
  position: relatvie;
  bottom: 10px;
  d: path('m 15 15 l 15 -15 l -30 0 z');
  stroke-width: 4;
  stroke: var(--high-contrast-color);
  fill: var(--high-contrast-color);
  stroke-linejoin: round;
  transition: transform .15s linear;
}

#go-page-up path:hover{
  transform: scale(1.5) translateX(-3.8px) translateY(-2px);
}

#go-page-down path:hover{
  transform: scale(1.5) translateX(-3.8px) translateY(-1px);
}

/* to-delete start */

.pop-up-button-container{
  display: grid;
  justify-items: center;
  align-items: center;
  padding: 1rem 0;
}

.pop-up-button{
  display: block;
  border-width: 3px;
  border-style: solid;
  border-color: var(--third-color);
  border-radius: 4px;
  padding: .5rem 1.5rem;

  background-color: var(--second-color);
  transition: border-width 0.3s, border-color .3s, background-color 0.3s, box-shadow 0.3s;
}

.pop-up-button *{
  display: inline;
  font-weight: bolder;
  color: var(--third-color);
}

.pop-up-button:hover{
  cursor: pointer;
  box-shadow: 0 0 8px 5px var(--designed-color);
  background-color: var(--second-active-color);
}

.pop-up-button:active{
  box-shadow: 0 0 6px 7px var(--designed-color);
}

/* to-delete end */

/* section pop up end */

/* google map section start */

button.gm-fullscreen-control{
  animation-name: mapFullscreenEmphasize;
  animation-delay: 1.5s;
  animation-duration: 15s;
  animation-iteration-count: infinite;
}

/* google map setion end */

/* differenet screen resolutions starts */

/* computer resolutions starts */

/* 2K AND 4K??? */

/*@media only screen and (max-width: 1920px){

}*/

/* @media only screen and (min-width: 1541px) and (max-width: 1920px){ */
@media only screen and (min-width: 1541px) and (max-width: 1930px){

  :root { font-size: 120% };

  #container-discount.active > #discount-content > h4:nth-of-type(1){
    left: -610px;
  }

  #container-discount.active > #discount-content > h5:nth-of-type(1){
    left: -490px;
  }

  #container-discount.active > #discount-content > h6{
    left: 230px;
  }

  #container-discount.active > #discount-content > h5:nth-of-type(2){
    left: 360px;
  }

  .page-navigation{
    width: 376px;
  }

  .navbar-spacer.pseudo{
    left: 2px;
  }

  #theme-toggle-button{
    left: 1rem;
  }

  #welcome-text{
    margin-top: 3rem;
  }
  
  #section-we-do{
    padding-top: 1rem;
  }

  #section-prices-beginning > .general-margins > *{
    width: 1400px;
  }

  .prices-grid{
/*    grid-template-columns: 240px calc(50% - 120px) calc(50% - 120px);*/
    grid-template-columns: 280px calc(50% - 150px) calc(50% - 150px);
  }

  .bike-chart-container{
    height: 150px;
  }

  .bike-chart{
    width: 220px;
    height: 220px;
  }

  #pop-up-card{
    height: 720px;
  }

  #pop-up-close-button{
    right: .8rem;
    top: .2rem;
    transform: scale(1.3);
  }

  #pop-up-close-button:hover{
    transform: scale(1.6);
  }

  .pop-up-title{
    margin-top: 1.5rem;
  }

  .pop-up-scroll-container{
    height: 550px;
  }

  .solo-pic-container{
    height: 150px;
    width: 150px;
  }

  #pop-up-map-title{
    margin-top: 1.5rem;
  }

  #pop-up-map-map-container{
    height: 350px;
  }

  #pop-up-page-counter{
    bottom: -615px;
  }

  #page-count-container{
    top: 11px;
  }

}
/* max-width: 1920px end */

@media only screen and (min-width: 1541px) and (max-width: 1600px){
  #pop-up-map-title{
    margin-top: .8rem;
  }

  #pop-up-map-map-container{
    height: 300px;
  }
}

/* @media only screen and (min-width: 1366px) and (max-width: 1536px){ */
@media only screen and (min-width: 1340px) and (max-width: 1540px){
/*  :root { font-size: 100% };*/
  h4{
    font-size: 1.65rem;
  }

  .page-navigation:nth-of-type(2){
    width: 320px;
  }

  .page-navigation:first-of-type .navbar-spacer.pseudo {
    left: .5px;
  }

  .page-navigation:nth-of-type(2) > .navbar-spacer:nth-of-type(1){
    left: -3px;
  }

  .page-navigation:nth-of-type(2) > .navbar-spacer.pseudo{
    left: 1.5px;
  }

  .page-navigation:nth-of-type(3) > .navbar-spacer:nth-of-type(1){
    left: -2px;
  }

  #section-prices-beginning > .general-margins > *{
    width: 86%;
  }

  .content > .general-margins > *{
    width: 93%;
  }

  #total-price-info{
    font-size: 1.8rem;
  }

  #map-on-page{
    height: 340px;
  }

}
/* max-width: 1536px end */

@media only screen and (max-width: 1420px) and (min-width: 1191){

  .pop-up-card h4{
    font-size: 1.55rem;
  }

  #section-prices-beginning > .general-margins > *{
    width: 1100px;
  }

  #theme-toggle-button{
    left: .85rem;
  }

  #pop-up-card{
    height: 450px;
  }

  .pop-up-scroll-container{
    height: 230px;
  }

  .solo-pic-container{
    height: 100px;
    width: 100px;
  }

  #pop-up-map-title{
    margin-top: .6rem;
    margin-bottom: 0;
  }

  #pop-up-map-map-container{
    height: 180px;
    width: 650px;
  }

  #pop-up-page-counter{
    bottom: -350px;
  }

/* currently is the default thing */
  #additional-offers{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  #additional-offers > h4:nth-of-type(1){
    width: 900px;
  }

  #additional-offers-examples > h4{
    width: 800px;
  }
}

@media only screen and (max-width: 1366px){

}
/* max-width: 1366px end */

@media only screen and (max-width: 1290px){

  #credits-flex-container{
    grid-template-columns: 20% 60% 20%;
    column-gap: .7rem;
  }

  #pop-up-card {
    height: 520px;
  }

  #pop-up-card .pop-up-title{
    margin-top: 1.2rem;
  }

  #pop-up-page-counter{
    bottom: -422px;
  }

  #turn-page-trigger{
    height: 70px;
  }

  #page-count-container{
    height: 70px;
    top: 20px;
  }

  #turn-page-trigger svg{
    transform: scale(1.2);
  }

  #map-on-page{
    height: 280px;
  }

}
/* max-width: 1280px end */

/* computer resolutions end */

/* tablet resolutions starts */

@media only screen and (max-width: 1180px) and (min-width: 491px){
  h5{
    font-size: 1.5rem;
  }

}

/*@media only screen and (max-width: 1180px) and (orientation:portrait){*/
@media only screen and (max-width: 1180px){
  h3{
    font-size: 1.95rem;
  }

  h4{
    font-size: 1.65rem;
  }

  .navbar-img-container > img{
    height: 80px;
    top: -8.5%;
  }

  #important-info-border{
    width: 900px;
  }

  #section-prices-beginning > .general-margins > * {
    width: 900px;
  }

  /*.content{
    width: 90%;
  }*/

  .prices-mini-flex{
    padding: 0;
  }

  .recommended-label:not(#first-label){
    left: 4rem;
  }

  .pop-up-card h4{
    font-size: 1.7rem;
  }

  #pop-up-map-title{
    margin-bottom: 0;
    margin-top: .5rem;
  }

  #pop-up-map-map-container{
    height: 200px;
  }

  .solo-pic-container{
    height: 80px;
    width: 80px;
  }

  .pop-up-scroll-container{
    height: 360px;
  }

  #pop-up-map-title{
    margin-top: .7rem;
  }

  #pop-up-map-map-container{
    height: 200px;
    width: 650px;
  }

  #pop-up-page-counter {
    bottom: -422px;
  }

  #turn-page-trigger > *{
    margin-bottom: 0 .5rem;
  }

  #page-goer{
    gap: 4px;
  }

  #go-page-up path:hover {
    transform: scale(1.25) translateX(-2.3px) translateY(-3px);
  }

  #go-page-down path:hover {
    transform: scale(1.25) translateX(-2.3px) translateY(0px);
  }
}
/* max-width: 1180px end */

/* all tablet */
@media only screen and (max-width: 1070px){

  #container-navbar{
    grid-template-columns: 20% 70% 10%;
    margin-top: .3rem;
    margin-bottom: 0;
    height: 50px;
  }

  #theme-toggle-button{
    top: 6px;
  }

  #mobile-navbar{
    padding-bottom: .8rem !important;
    box-shadow: 0 0 8px 5px var(--background-color);
  }

  .inner-container{
    flex-direction: column;
    align-items: center;
    position: fixed;
    top: -200px;
    transition: top .3s;
    background-color: var(--background-color);
    width: 100%;
    z-index: 500;
  }

  .inner-container.activated{
    top: 80px;
  }

  #mobile-hamburger-container{
    visibility: visible;
    z-index: 502;
  }

  #hamburger.activated path.hamburger-stripe{
    position: relative;
    top: 0;
  }

  #hamburger.activated path.hamburger-stripe:nth-of-type(1){
    transform: translateX(-6px) translateY(8px) rotate(-45deg);
    transform-origin: 100% 0%;
  }

  #hamburger.activated path.hamburger-stripe:nth-of-type(2){
    transform: translateX(-6px) translateY(8px) rotate(-45deg);
    opacity: 0;
    transform-origin: 100% 0%;
  }

  #hamburger.activated path.hamburger-stripe:nth-of-type(3){
    transform: rotate(45deg) translateX(5px);
    transform-origin: 0% 0%;
  }

  #navbar-icons-right{
    width: 150px;
    margin-left: auto;
  }

  body.discount-visible #section-for-easygoers-1{
    padding-top: 2.6rem;
  }

  .prices-mini-flex:hover{
    box-shadow: none;
  }

  #credits-flex-container{
    grid-template-columns: 15% 70% 15%;
    column-gap: .7rem;
  }
}
/* all tablet end */

/*@media only screen and (max-width: 1070px) and (min-width: 481px){*/
@media only screen and (max-width: 1070px) and (min-width: 481px){

  h1{
    font-size: 2.4rem;
  }

  #container-discount.active > #discount-content > h4:nth-of-type(1){
    left: -410px;
    top: -75%;
  }

  #container-discount.active > #discount-content > h5:nth-of-type(1){
    font-size: .9rem;
    left: -370px;
  }

  #container-discount.active > #discount-content > h4:nth-of-type(2){
    top: 15%;
    font-size: 1.2rem;
  }

  #container-discount.active > #discount-content > h6{
    font-size: .9rem;
    left: 15px;
    top: -60%;
  }

  #container-discount.active > #discount-content > h5:nth-of-type(2){
    font-size: 1.4rem;
    left: 140px;
  }

  #important-info-border {
    width: 80%;
  }

  #section-prices-beginning > .general-margins > *{
    width: 80%;
  }

  .prices-mini-flex:nth-of-type(3n + 2), .prices-mini-flex:nth-of-type(3n + 3){
    padding-left: 2rem;
  }

  .prices-mini-flex:nth-of-type(3n + 3){
    grid-row: 2;
    grid-column: 2;
  }

  .prices-mini-flex:nth-of-type(3n+3) h4{
    text-align: center;
  }

  .prices-mini-flex{
    align-items: center;
  }

  .prices-mini-flex:nth-of-type(3n+3) h4{
    text-align: left;
  }

  .prices-mini-flex:nth-of-type(3n+3){
    padding-bottom: 1.1rem;
  }

  .prices-mini-flex h4, .prices-mini-flex h6{
    width: 100%;
  }

/* change for smaller resolutions */
  .nos-pictures{
    width: 100%;
  }

  .recommended-label-container{
    grid-column: 1;
    bottom: 1.5rem;
    left: -5.75rem;
  }

  #additional-offers-examples > h4{
    width: 650px;
  }

  .pop-up-page-count h4{
    font-size: 1.42rem !important;
  }

  #additional-offers *{
    text-align: justify;
    text-align-last: center;
  }

  #additional-offers > .text-justified > h1{
    text-align: center !important;
  }

  #example-pics-container .example-offer{
    text-align-last: center;
  }

}

@media only screen and (max-width: 1070px) and (min-width: 661px){

  #welcome-text h3{
    font-size: 1.8rem;
  }

  .prices-grid{
    grid-template-columns: 280px auto;
  }

  .bike-chart{
    height: 240px;
    width: 240px;
    top: -33px;
  }

  #pop-up-card h4{
    font-size: 1.55rem;
  }

  #credits-flex-container{
    grid-template-columns: 10% 80% 10%;
    column-gap: .7rem;
  }

}

/* 1170px end */

/*@media only screen and (max-width: 820px) and (orientation:portrait){*/
@media only screen and (max-width: 830px){

  #container-discount.active > #discount-content > h4:nth-of-type(1){
    left: -380px;
    top: -65%;
  }

  #container-discount.active > #discount-content > h5:nth-of-type(1){
    top: 80%;
    left: -320px;
  }

  #container-discount.active > #discount-content > h4:nth-of-type(2){
    left: -250px;
  }

  #container-discount.active > #discount-content > h6{
    top: -70%;
  }

  #container-discount.active > #discount-content > h5:nth-of-type(2){
    left: 98px;
    font-size: 1.3rem;
  }

  #welcome-text h3{
    text-align: justify;
    text-align-last: center;
  }

  #section-for-easygoers-1{
    padding-bottom: 0;
  }

  #section-services{
    padding-top: 0;
  }

  #prices-flex{
    width: 100%;
  }

  .prices-mini-flex:nth-of-type(3n + 2), .prices-mini-flex:nth-of-type(3n + 3){
    padding-left: 1rem;
  }

  #turn-page-trigger{
    width: 240px;
  }

  #turn-page-trigger h4{
    font-size: 1.7rem;
  }

  #go-page-up path:hover{
    transform: scale(1.2) translateX(-2.2px) translateY(-2px);
  }

  #go-page-down path:hover{
    transform: scale(1.2) translateX(-2.2px) translateY(-1px);
  }

  #example-pics-container .example-offer{
    font-size: 1.7rem;
  }

}
/* max-width: 820px end */

/*@media only screen and (max-width: 800px) and (orientation:portrait){*/
@media only screen and (max-width: 812px){

  h3{
    font-size: 1.75rem;
  }

  h4{
    font-size: 1.5rem;
  }

  #container-discount.active > #discount-content > h4:nth-of-type(1){
    left: -335px;
    top: -50%;
    font-size: 1.5rem;
  }

  #container-discount.active > #discount-content > h5:nth-of-type(1){
    top: 80%;
    left: -280px;
  }

  #container-discount.active > #discount-content > h4:nth-of-type(2){
    left: -250px;
  }

  #container-discount.active > #discount-content > h6{
    top: -70%;
  }

  #container-discount.active > #discount-content > h5:nth-of-type(2){
    left: 98px;
    font-size: 1.2rem;
  }

  .example-pic-container{
    height: 140px;
    width: 140px;
  }

  .example-pic-description-container{
    width: 140px;
  }

  #section-price-examples .general-margins > div > .general-margins > *{
    width: 100%;
  } 

  #pop-up-map-map-container{
    width: 550px;
  }

}
/* max-width: 800px end */

/*@media only screen and (max-width: 768px) and (orientation:portrait){*/
@media only screen and (max-width: 768px){
  #credits-flex-container{
    grid-template-columns: 5% 90% 5%;
  }

  .credits-column{
    row-gap: .4rem;
  }

  #section-credits h6{
    font-size: 1.1rem;
  }

  #section-credits .icon{
    height: 1rem;
  }

  #credits-logo a{
    left: 1rem;
  }
}
/* max-width: 768px end */

/* tablet resolutions end */

/* weird resolutions starts */

/* max-width 700px starts */
@media only screen and (max-width: 700px){

  #container-discount.active > #discount-content > h4:nth-of-type(1){
    left: -300px;
    top: -50%;
    font-size: 1.9em;
    color: var(--temp-additional-color);
  }

  #container-discount.active > #discount-content > h5:nth-of-type(1){
    visibility: hidden;
  }

  #container-discount.active > #discount-content > h4:nth-of-type(2){
    left: -190px;
    font-size: 1.4rem;
    top: -65%;
    transform: skewX(-12deg) skewY(-4deg);
  }

  #container-discount.active > #discount-content > h6{
    visibility: hidden;
  }

  #container-discount.active > #discount-content > h5:nth-of-type(2){
    left: 75px;
    top: 50%;
    font-size: 1.25rem;
  }

  #first-label h3{
    font-size: 1.55rem;
  }

  #additional-offers-examples > h4{
    width: 600px;
    font-size: 1.3rem;
  }

  #pop-up-map-map-container{
    width: 95%;
  }

}
/* max-width 700px end */

@media only screen and (max-width: 660px){

  #welcome-text h3{
    font-size: 1.6rem;
  }

  .prices-grid{
    grid-template-columns: 230px auto;
  }

  .bike-chart-container{
    height: 50px;
  }

  .bike-chart{
    height: 140px;
    width: 140px;
    top: -16px;
  } 

  .prices-mini-flex:nth-of-type(3n+2), .prices-mini-flex:nth-of-type(3n+3){
    padding-left: 0;
  }

  .recommended-label:not(#first-label){
    bottom: 3rem;
  }

  #pop-up-card h4{
    font-size: 1.3rem;
  }

  #pop-up-map-title{
    margin-top: 1.2rem;
  }

}
/* max-width 660px end */

@media only screen and (max-width: 630px){

  h1{
    font-size: 2rem;
  }

  #container-discount.active > #discount-content > h4:nth-of-type(1){
    left: -280px;
  }

  #container-discount.active > #discount-content > h4:nth-of-type(2){
    left: -180px;
    font-size: 1.35rem;
    top: -60%;
    transform: skewX(-12deg) skewY(-4deg);
  }

  #container-discount.active > #discount-content > h5:nth-of-type(2){
    left: 55px;
    top: 62%;
    font-size: 1.15rem;
  }

  #additional-offers-examples > h4{
    width: 570px;
  }

}
/* max-width 630px end */

@media only screen and (max-width: 600px){

  h1{
    font-size: 1.9rem;
  }

  #first-label h3{
    font-size: 1.3rem;
  }

  #additional-offers h4{
    font-size: 1.3rem;
  }

  #contact-info h4{
    font-size: 1.3rem;
  }

  #additional-offers-examples > h4{
    width: 500px;
    font-size: 1.2rem;
  }

  #credits-flex-container{
    grid-template-columns: 3% 90% 7%;
  }

  .credits-column{
    row-gap: .2rem;
  }

  #section-credits h6{
    font-size: 1rem;
  }

  #section-credits .icon{
    height: .95rem;
  }

  #credits-logo a{
    left: .95rem;
  }

}
/* max-width 600px end */

@media only screen and (max-width: 560px){
  #container-discount.active > #discount-content > h4:nth-of-type(1){
    left: -250px;
    top: -30%;
    font-size: 1.7em;
  }

  #container-discount.active > #discount-content > h4:nth-of-type(2){
    left: -157px;
    font-size: 1.25rem;
    top: -50%;
  }

  #container-discount.active > #discount-content > h5:nth-of-type(2){
    left: 45px;
    top: 72%;
    font-size: 1.05rem;
  }

  #welcome-text h3{
    font-size: 1.4rem;
  }
}
/* max-width 560px */

@media only screen and (max-width: 520px){

  h1{
    font-size: 1.75rem;
  }

  #additional-offers h4{
    font-size: 1.15rem;
  }

  #contact-info h4{
    font-size: 1.15rem;
  }

  #additional-offers-examples > h4{
    width: 85%;
  }

  #credits-flex-container{
    grid-template-columns: 5% 90% 5%;
  }

  .credits-column{
    row-gap: .4rem;
  }

  #section-credits h6{
    font-size: .85rem;
  }

  #section-credits .icon{
    height: .8rem;
  }

  #credits-logo img{
    right: .85rem;
  }

  #credits-logo a{
    left: .8rem;
  }

}
/* max-width 520px end */

/* weird resolutions end */

/* mobile resolutions starts */

/*@media only screen and (max-width: 412px){*/
@media only screen and (max-width: 480px){

  h1{
    font-size: 1.6rem;
  }

  h3{
    font-size: 1.3rem;
  }

  h4{
    font-size: 1.15rem;
    margin-bottom: 0;
  }

  h5{
    font-size: 1.15rem;
  }

  h6{
    font-size: .95rem;
  }

  #container-discount.active > #discount-content > h4:nth-of-type(1){
    left: -210px;
    top: -60%;
    font-size: 1.4rem;
  }

  #container-discount.active > #discount-content > h4:nth-of-type(2){
    left: -160px;
    font-size: 1rem;
    top: -65%;
    transform: skewX(-15deg) skewY(-6deg);
  }

  #container-discount.active > #discount-content > h5:nth-of-type(2){
    left: 10px;
    top: 63%;
    font-size: 1.1rem;
  }

  #container-navbar{
    grid-template-columns: 20% 75% 5%;
  }

  .content .general-margins > *{
    width: 93%;
  }

  #welcome-text h3{
    font-size: 1.4rem;
  }

  #welcome-text > .welcome-text-container:nth-of-type(2) .welcome-text-background{
    left: 5%;
    width: 90%;
  }

  #shortcut-for-easygoers{
    left: 5%;
    width: 90%;
  }

  #important-info-border{
    width: 93%;
    padding: 0 20px;
  }

  #important-info-text{
    margin: 1rem 0;
  }

  #section-prices-beginning > .general-margins > *{
    width: 85%;
  }

  #first-label h3{
    font-size: 1.05rem;
  }

  .prices-grid{
    display: flex;
    flex-direction: column;
  }

  .bike-chart-container{
    width: 100%;
    height: 140px;
    display: flex;
    justify-content: center;
  }

  .bike-chart{
    height: 180px;
    width: 180px;
    left: 12px;
  }

  .prices-mini-flex:nth-of-type(3n+2){
    padding-bottom: 3rem;
  }

  .nos-pictures{
    flex-wrap: wrap;
  }

  .prices-mini-flex:not( .prices-mini-flex:nth-of-type(3n + 3) ) *:not( img ){
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .prices-mini-flex:nth-of-type(3n+3){
    padding-bottom: .6rem;
    display: flex;
    align-items: center;
  }

  .prices-mini-flex:nth-of-type(3n+2), .prices-mini-flex:nth-of-type(3n+3){
    padding-left: 0;
  }

  .prices-mini-flex h4, .prices-mini-flex h6{
    text-align: center;
  }

  .prices-mini-flex:nth-of-type(3n+3) h4{
    text-align: center;
    width: 280px;
    display: flex;
    justify-content: space-between;
  }

  .recommended-label-container{
    bottom: 5.5rem;
    width: 100%;
    justify-content: center;
  }

  .recommended-label:not(#first-label){
    left: 0rem;
    bottom: 1.5rem;
  }

  #example-pics-container .example-offer{
    text-align: justify;
    text-align-last: justify;
  }

  #example-pics-container .example-offer{
    font-size: 1.1rem;
    text-align-last: center;
  }

  #pop-up-close-button{
    right: -.62rem;
    top: -1.05rem;
    transform: scale(.8);
  }

  #pop-up-close-button:hover{
    transform: scale(1.05);
  }

  #pop-up-map-map-container{
    width: 280px;
  }

  .example-pic-container{
    height: 120px;
    width: 120px;
  }

  .example-pic-description-container{
    width: 120px;
  }

  #map-on-page{
    height: 280px;
  }

  #section-contact-us .general-margins > *{
    width: 100%;
  }

  #additional-offers-examples > h4{
    width: 390px;
  }

  #additional-offers h4:nth-of-type(2){
    padding-bottom: 1rem;
  }

  /*#additional-offers-examples h1{
    font-size: 1.6;
  }*/

}
/* max-width: 412px end */

@media only screen and (max-width: 440px){

  #container-discount.active > #discount-content > h4:nth-of-type(1){
    left: -185px;
    top: -50%;
    font-size: 1.5rem;
  }

  #container-discount.active > #discount-content > h4:nth-of-type(2){
    left: -140px;
    top: -70%;
    transform: skewX(-10deg) skewY(-8deg);
  }

  #container-discount.active > #discount-content > h5:nth-of-type(2){
    left: 5px;
    font-size: 1.05rem;
    top: 80%;
  }

  #credits-flex-container{
    grid-template-columns: 3% 92% 5%;
  }

  .credits-column{
    row-gap: .3rem;
  }

  #section-credits h6{
    font-size: .75rem;
  }

  #section-credits .icon{
    height: .7rem;
  }

  #credits-logo a{
    left: .7rem;
  }

  #credits-logo img{
    right: .7rem;
  }

}
/* max-width: 440px end */

@media only screen and (max-width: 400px){

  #container-discount.active > #discount-content > h4:nth-of-type(1){
    left: -188px;
    top: -60%;
    font-size: 1.5rem;
  }

  #container-discount.active > #discount-content > h4:nth-of-type(2){
    left: -155px;
    top: -70%;
    transform: skewX(-10deg) skewY(-8deg);
  }

  #container-discount.active > #discount-content > h5:nth-of-type(2){
    left: -7px;
    font-size: 1.05rem;
    top: 80%;
  }

  #welcome-text h3{
    font-size: 1.2rem;
  }

  #welcome-text > .welcome-text-container:nth-of-type(2) .welcome-text-background{
    left: 0%;
    width: 100%;
  }

  #shortcut-for-easygoers{
    left: 0%;
    width: 100%;
  }

  #first-label h3{
    font-size: .9rem;
  }

  .prices-mini-flex:nth-of-type(3n+3) h4{
    width: 240px;
  }

  #turn-page-trigger{
    width: 220px;
  }

  #turn-page-trigger > *{
    margin-bottom: 0 .5rem;
  }

  .example-pic-container{
    height: 110px;
    width: 110px;
  }

  .example-pic-description-container{
    width: 110px;
  }

  #additional-offers-examples > h4{
    width: 320px;
  }

  #credits-flex-container{
    grid-template-columns: 3% 92% 5%;
  }

  .credits-column h6{
    justify-content: initial;
    flex-direction: column;
  }

  #credits-logo a{
    left: 0;
  }

}
/* max-width: 393px end */

@media only screen and (max-width: 393px){

}
/* max-width: 393px end */

@media only screen and (max-width: 390px){

  #additional-offers-examples > h4{
    width: 300px;
  }

  .example-pic-container{
    height: 105px;
    width: 105px;
  }

  .example-pic-description-container{
    width: 105px;
  }

}
/* max-width: 390px end */

@media only screen and (max-width: 360px){

  h1{
    font-size: 1.3rem;
  }

  h3{
    font-size: 1.15rem;
  }

  h4{
    font-size: 1.05rem;
    margin-bottom: 0;
  }

  h5{
    font-size: .9rem;
  }

  h6{
    font-size: .8rem;
  }

  #container-discount.active > #discount-content > h4:nth-of-type(1){
    left: -162px;
    top: -65%;
    font-size: 1.4rem;
    color: var(--temp-additional-color);
  }

  #container-discount.active > #discount-content > h4:nth-of-type(2){
    left: -140px;
    font-size: .9rem;
    top: -85%;
    transform: skewX(-15deg) skewY(-8deg)
  }

  #container-discount.active > #discount-content > h5:nth-of-type(2){
    left: -20px;
    top: 83%;
    font-size: 1rem;
  }

  .bike-chart-container{
    height: 100px;
  }

  .bike-chart{
    height: 140px;
  }

  .recommended-label-container{
    bottom: 4.9rem;
  }

  .prices-mini-flex:nth-of-type(3n+3) h4{
    width: 220px;
  }

  #pop-up-map-map-container{
    width: 255px;
  }

  .example-pic-container{
    height: 100px;
    width: 100px;
  }

  .example-pic-description-container{
    width: 100px;
  }

  #additional-offers-examples > h4{
    width: 270px;
  }

}
/* max-width: 360px end */

/* mobile resolutions end */

/* differenet screen resolutions end */