:root {
    --width: 0;
    --margin: 0;
}
.owncarousel {
    position: relative;
    width: 768px;
    margin: 0 auto;
    margin-top: 80px;    
}
.own-carousel__outer {
    position: relative;
    overflow: hidden;
    user-select: none;
}

.own-carousel{
    display: flex;
}

.own-carousel__item {
    flex-shrink: 0;
    overflow: hidden;
    flex-basis: var(--width);
}

.own-carousel__item:not(:first-child) {
    margin-left: var(--margin);
}
.own-carousel__control{
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    margin-top:20px;    
}
.own-carousel__control button{
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #EE7E22;
  border-color: #EE7E22;
  color: #fff !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  margin: 2px;
  border-width: 0;
  cursor: pointer;
}

@media screen and (max-width: 800px) {
.owncarousel {
    width: 100%; 
    padding-left:10px;
    padding-right:10px;   
}
}

