.contenedor {
  width: 100%;
  margin: 0 auto; 
}

.blink-slider {
  position: relative;
  width: 100%;
  height: auto;
}

.blink-view {
  position: relative;
  width: 100%;
  height: auto;
}

.blink-view .viewSlide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}

.blink-view .viewSlide:first-child {
  position: relative;
}

.blink-view .viewSlide img.fullImg {
  width: 100%; height: auto;
}

.blink-control {
  position: absolute;
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
  align-items: center;
  bottom: 50px;
  left: 30%;
  right: 30%;
  z-index: 999;
  border:none;
}

.blink-control .button {
  margin: 0 10px;
  padding: 12px 22px;
  width:56px; height:56px;
  border:none !important;
  border-radius: 10px;
  font-weight: 600;
  background: #619B1A;
  color: #FFF;
  cursor:pointer;
}

.blink-control .button:hover {
  color: #FFF;
  background: #C23303;
  border:none;
}

.blink-items {
  flex-flow: row nowrap;
  align-items: center;
  margin: 0 8px; padding: 0;
}

.blink-items .viewItem {
  display: inline-block;
  width: 14px; height: 14px;
  margin: 0 3px;
  background: #FFF;
  border: 0px solid #d3d3d3;
  border-radius: 100%;
  list-style-type: none;
  -webkit-transition: all 0.3s ease-in-out; -moz-transition: all 0.3s ease-in-out; -o-transition: all 0.3s ease-in-out; transition: all 0.3s ease-in-out;
}

.blink-items .viewItem.active {
  background: #1D6728;
}