:root{
  /* --bg-text: #eeeceb; */
  --shadow-item: #000000bf;
  --icon-color: #015567;
  --bg-button: #edeef2;
  --border-button: #015567;
}

  .items {
    margin-top: 150px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    user-select: none;
  }
  
  .items .itemCarousel {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    border-radius: 50%;
    /* overflow: hidden; */
    transition: all 300ms ease-in-out;
    z-index: -1;
    opacity: 0;
  }
  
  .itemCarousel img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
  }

  .item-text{
    /* background: var(--bg-text);  */
    padding: 4px 12px;
    border-radius: 8px;
  }
  
  .itemCarousel.active {
    opacity: 1;
    z-index: 99;
    box-shadow: 0px 0px 105px -35px var(--shadow-item);
  }
  
  .itemCarousel.prev {
    z-index: 2;
    opacity: 0.15;
    transform: translate(-125%, -50%);
  }
  
  .itemCarousel.next {
    z-index: 2;
    opacity: 0.15;
    transform: translate(25%, -50%);
  }
  
  .items .button-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    z-index: 100;
  }
  
  .button-container .button {
    color: var(--icon-color);
    font-size: 32px;
    cursor: pointer;
    position: relative;
    opacity: 1;
    transition: all 300ms ease-in-out;
  }
  
  .button-container .button:before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    background-color: var(--bg-button);
    border: 2px solid var(--border-button);
    border-radius: 50%;
    z-index: -99;
  }
  
  .button-container .button:nth-child(1) {
    float: left;
  }
  
  .button-container .button:nth-child(2) {
    float: right;
  }

  @media (max-width:700px){
    .items .itemCarousel {
      width: 200px;
      height: 200px;
    }
    .items .button-container{
      width: 220px;
    }
  }