.carrousel {
  background: #ffffff;
  text-align: center;
  padding: 4em 0;
  height: 16em;
  min-width: 650px;
  margin: auto;
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  filter: drop-shadow(0 0.2rem 0.25rem rgba(0, 0, 0, 0.2));
}
.carrousel h2 {
  margin: 0;
  margin-top: -1.7em;
  padding: 0;
  font-size: 1em;
  text-align: center;
  color: #bbbbbb;
}
.carrousel .slides {
  width: 400%;
  left: 0;
  padding-left: 0;
  padding-top: 1em;
  overflow: hidden;
  list-style: none;
  position: relative;

  -webkit-transition: transform .5s;
  -moz-transition: transform .5s;
  -o-transition: transform .5s;
  transition: transform .5s;
}
.carrousel .slides li {
  width: 25%;
  position: relative;
  float: left;
}
.carrousel li p{
  margin-top: 0;
}
.carrousel li q {
  max-width: 90%;
  margin: auto;
  color: #666666;
  font-size: 1.3em;
  font-weight: bold;
}


.carrousel .slidesNavigation {
  display: block;
  list-style: none;
  text-align: center;
  bottom: 1em;
  /*--- Centering trick---*/
    /* Absolute positioning*/
    position: absolute;
    /* Abosulte positioning*/
    width: 104px; /*This width  is the addition of the width of all the navigations dots - So in this case is   104 because the navigation dots are 26px (width:10px and 6px marginleft + 6 px marginright) and there are 4 dots so 4x26=104 */
    left: 50%; /*Centering de element*/
    margin-left: -52px; /*adjusting the centering by applying a negative margin of half of the width*/
}
.carrousel input {
  display: none;
}
.carrousel .slidesNavigation label {
  float: left;
  margin: 6px;
  display: block;
  height: 10px;
  width: 10px;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  border: solid 2px #fdd381;
  font-size: 0;
}
/* You have to repeat this with each slide
TODO: make it easier with SCSS
25% movement 100/slides-num
*/
#radio-1:checked ~ .slides {
  transform: translateX(0%);
}
#radio-2:checked ~ .slides {
  transform: translateX(-25%);
}
#radio-3:checked ~ .slides {
  transform: translateX(-50%);
}
#radio-4:checked ~ .slides {
  transform: translateX(-75%);
}


.carrousel .slidesNavigation label:hover {
   cursor: pointer;
}
/* You have to repeat this with each slide/dot */
.carrousel #radio-1:checked ~ .slidesNavigation label#dotForRadio-1,
.carrousel #radio-2:checked ~ .slidesNavigation label#dotForRadio-2,
.carrousel #radio-3:checked ~ .slidesNavigation label#dotForRadio-3,
.carrousel #radio-4:checked ~ .slidesNavigation label#dotForRadio-4 {
  background: #fdd381;
}


.carrousel li img {
  width: 3em;
  height: 3em;
  object-fit: cover;
  border-radius: 50%;
  margin-left: -1.5em;
  margin-right: 0.5em;
  vertical-align: middle;
}


.carrousel li span.author {
  margin-top:0.5em;
  font-size: 1.2em;
  color: #005249;
  display: block;
}

/* fixy */



@media  (max-width: 796px) {
  .carrousel{
    min-width: fit-content;
  }
}
@media  (max-width: 480px) {
  .carrousel li p {
    padding-left: 0.5em;
    padding-right: 0.5em;
	text-align: center;
  }
  .carrousel li q {
      font-size: 1em;
  }
  .carrousel li img {
     /*width:2em;*/
     margin-left: 4em;
     margin-right: 0.25em;
  }
}


/* 29.08.2022 - uppercase */

.row.product-container.js-product-container h1 {
    text-transform: none!important;
}

.kolor_czerwony {
color: red!important;
}
.mainMenu__menu {
  height: auto;
  padding:10px 0px;
}
.mainMenu__options a {
  padding-bottom: 4px;
  border-bottom: 0px;
}
.mainMenu__optionsItem a:hover {
  border-bottom: 0px;
}


/* poprawa nagłówków */
/* MENU INFO  */

.centusMenuInfo__itemContent h4 {
  font-size: 12px;
  margin: 0;
}


.mainMenu__optionsItem h4 {
  color: #FDD381 !important;
  font-family: 'Libre Baskerville', serif;
  font-size: 20px;
  white-space: nowrap;
}


/* home przegladaj produkty */
.introduction__content h3 {
  color: var(--gold);
  font-family: 'Libre Baskerville', serif;
  font-size: 40px
}


.showingCoins h3 {
  font-family: 'Libre Baskerville', serif;
  font-size: 23px;
  font-weight: 500
}


.browseProducts h3 {
  color: #004840;
  font-family: 'Montserrat', sans-serif;
  padding: 10px 0;
  font-size: 28px
}


.infoAboutCoin h3 {
  font-family: 'DM Sans', sans-serif !important;
  color: var(--darkGreen);
  font-size: 20px;
  border-bottom: .5px solid #dedada;
  padding-bottom: 8px;
}

/* h1 gdzieś ukryta */
#header #_desktop_logo span {
    margin-bottom: 0;
}

.browseProducts h1 {
    color: var(--gold);
    font-family: 'Libre Baskerville', serif;
    font-size: 2em;
}

/* seo copy home page */
section.seo-copy-main {
    display: flex;
    justify-content: space-evenly;
    text-align: center;
    padding-left: 20%;
    padding-right: 20%;
	font-family: 'Libre Baskerville', serif;
}

@media (max-width: 991px) {
    section.seo-copy-main {
        width: 90vw;
        text-align: center;
        margin-bottom: 36px;
		padding: 0;
		margin: auto;
    }
}