* {
    box-sizing: border-box;
    /*margin-block-start: 2px;
    margin-block-end: 2px;*/
  }
  
body {
    /*font-family: "Lucida Sans", sans-serif;*/
    font-family: 'Open Sans',sans-serif;
    font-size: 12px;
    color: rgb(17,17,17);
}

.noselect {
    -webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none; /* Safari */
    -moz-user-select: none; /* Firefox */
    -ms-user-select: none; /* Internet Explorer/Edge */
    user-select: none; /* Non-prefixed version, currently supported by Chrome and Opera */
}

.alignCenter {
    text-align: center;
}
.alignLeft {
    text-align: left;
}

.bold {
    font-weight: bold;
}

.hidden {
    display: none;
}

.resizable {
    resize: horizontal;
    overflow: auto;
}
.floatLeft {
    float: left;
}
.floatRigth {
    float: right;
}
.vcenter {
    /*display: flex;
    align-items: center;*/
    vertical-align: middle;
}
.white
{
    background-color: white;
}
.row {
    display: flex; /* equal height of the children */
}
  
.col {
    flex: 1; /* additionally, equal width */
}

.slider-container {
  width: 90%;
  @media only screen and (min-width: 768px) {
    width: 60%;
  }
  height: 400px;
  overflow: hidden;
  position: relative;
  margin: 0 auto; /* Center the slide container horizontally */
}

.slider {
  display: flex;
  height: 100%;
  transition: transform 0.3s ease-in-out;
}

.slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
  font-size: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

.arrow-left {
  left: 10px;
}

.arrow-right {
  right: 10px;
}

.dots-container {
  display: flex;
  justify-content: center;
  margin-top: 10px;
}

.dot {
  width: 12px;
  height: 12px;
  border: 1px solid gray;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0.5);
  margin: 0 5px;
  cursor: pointer;
}

.active {
  background-color: #fff;
}

