/* Defines the width of the carousel and centers it on the page */
.slick-carousel {
    margin: 0 auto;
    /* width: 1000px; */
  }
  
  /* The width of each slide */
  .thumbnail .slick-slide {
    width: 230px;
  }
  
  /* Color of the arrows */
  .slick-next::before, .slick-prev::before {
    display:none;
  }



/* begin external css: flickity.css
/*! Flickity v2.0.4
 * https://npmcdn.com/flickity@2/dist/flickity.css
https://flickity.metafizzy.co
---------------------------------------------- */

.flickity-enabled {
    position: relative;
  }
  
  .flickity-enabled:focus { outline: none; }
  
  .flickity-viewport {
    overflow: hidden;
    position: relative;
    height: 100%;
  }
  
  .flickity-slider {
    position: absolute;
    width: 100%;
    height: 100%;
  }
  
  /* draggable */
  
  .flickity-enabled.is-draggable {
    -webkit-tap-highlight-color: transparent;
            tap-highlight-color: transparent;
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
  }
  
  .flickity-enabled.is-draggable .flickity-viewport {
    cursor: move;
    cursor: -webkit-grab;
    cursor: grab;
  }
  
  .flickity-enabled.is-draggable .flickity-viewport.is-pointer-down {
    cursor: -webkit-grabbing;
    cursor: grabbing;
  }
  
  /* ---- previous/next buttons ---- */
  
  .flickity-prev-next-button {
   display:none
  }
  
  .flickity-prev-next-button:hover { display:none; }
  
  .flickity-prev-next-button:focus {
    display:none;
  }
  
  .flickity-prev-next-button:active {
    display:none;
  }
  
  .flickity-prev-next-button.previous { left: 10px; }
  .flickity-prev-next-button.next { right: 10px; }
  /* right to left */ */
  /* .flickity-rtl .flickity-prev-next-button.previous { */
  /*   left: auto; */
  /*   right: 10px; */
  /* } */
  /* .flickity-rtl .flickity-prev-next-button.next { */
  /*   right: auto; */
  /*   left: 10px; */
  /* } */
  
  .flickity-prev-next-button:disabled {
    opacity: 0.3;
    cursor: auto;
  }
  
  
  
  .flickity-prev-next-button .arrow {
    display:none;
  }
  
  /* ---- page dots ---- */
  
  /* .flickity-page-dots { */
  /*   position: absolute; */
  /*   width: 100%; */
  /*   bottom: -25px; */
  /*   padding: 0; */
  /*   margin: 0; */
  /*   list-style: none; */
  /*   text-align: center; */
  /*   line-height: 1; */
  /* } */
  /*  */
  /* .flickity-rtl .flickity-page-dots { direction: rtl; } */
  /*  */
  /* .flickity-page-dots .dot { */
  /*   display: inline-block; */
  /*   width: 10px; */
  /*   height: 10px; */
  /*   margin: 0 8px; */
  /*   background: #333; */
  /*   border-radius: 50%; */
  /*   opacity: 0.25; */
  /*   cursor: pointer; */
  /* } */
  /*  */
  /* .flickity-page-dots .dot.is-selected { */
  /*   opacity: 1; */
  /* } */
  
  /* end external css: flickity.css */
  /*! Flickity v2.0.4
  https://flickity.metafizzy.co
  ---------------------------------------------- */
  
  * { box-sizing: border-box; }
  
  body { font-family: sans-serif; }
  
  .carousel {
    background: #FAFAFA;
  }
  
  .carousel-main {
    margin-bottom: 8px;
  }
  
  .carousel-cell {
    width: 100%;
    /* height: 504px; */
    margin-right: 8px;
    border-radius: 5px;
    /* counter-increment: carousel-cell; */
  }
  
  /* cell number */ 
  /* .carousel-cell:before { */
  /*   display: block; */
  /*   text-align: center; */
  /*   content: counter(carousel-cell); */
  /*   line-height: 200px; */
  /*   font-size: 80px; */
  /*   color: white; */
  /* } */
  
  .carousel-nav .carousel-cell {
    height: 40px;
    width: 40px;
  }
  .carousel-nav .carousel-cell img{
    width:100%;
    height:100%;
    object-fit:cover;
  }
  /* .carousel-nav .carousel-cell:before { */
  /*   font-size: 50px; */
  /*   line-height: 80px; */
  /* } */
  
  /* .carousel-nav .carousel-cell.is-nav-selected { */
  /*   background: #ED2; */
  /* } */
  
  /* Atelierbram edit */
  .carousel-main img {
    display: block;
    margin: 0 auto; 
  }
  
  .container_slider {
    max-width: 672px;
    margin: 0 auto;
  }
  
  h1 {
    text-align: center;
  }
  
  .is-nav-selected{
    border:2px solid orange;
  }
  .thumbnail .slick-slide img{
    width:100%;
    height:100%;
    object-fit:fill;
  }
  .carousel-nav{
    margin-top: -67px;
    background-color: transparent;
  }
  @media screen and (max-width: 600px) {
    .carousel-nav .carousel-cell {
      height: 20px;
      width: 20px;
    }
    
    .carousel-cell{
      margin-right:4px;
    }
    .carousel-nav {
      margin-top: -40px;
      background-color: transparent;
    }
  }