.output{
  background-color: #eef3f8;
  width: 100%;
  min-height: 250px;
  padding: 20px 0;
  overflow: hidden;
  border-radius: 5px;
  position: relative;
  display: grid;
  place-items: center;
}
input[type='range'] {
  -webkit-appearance: none;
  background: rgb(220, 220, 220);;
  border-radius: 5px;
  width: 200px;
  height: 7px;
  background-size: 70% 100%;
  background-repeat: no-repeat;
}
input[ type='range']::-webkit-slider-thumb{
  -webkit-appearance: none;
  height: 20px;
  width: 20px;
  border-radius: 50px;
  background: black;
  cursor: ew-resize;
  box-shadow: 0 0 2px 0 #555;
  transition: background .3s ease-in-out;
}
input[type='range']::-webkit-slider-runnable-track{
  -webkit-appearance: none;
  box-shadow: none;
  border: none;
  background: transparent;
}
#border{
    height: 300px;
    width: 300px;
    background-color: black;
}
.dimensions{
    display: flex;
    justify-content: space-around;
    width: 100%;
    margin: 10px 0 20px 0;
}
label{
    font-weight: 500;
}
input[type="number"]{
    height: 40px;
    width: 80px;
    padding: 10px;
    margin-top: 5px;
    border: 1px solid #a0a0b0;
    border-radius: 3px;
}
input[type="number"]:focus{
    background-color: #f1f5fa;
    border-color: #025eaa;
    /* color: #025eaa; */
}
.sliders{
    width: 100%;
    display: grid;
    grid-template-columns: 2fr 1fr;
    grid-gap: 5px;
}
input[type="text"]{
    width: 82%;
    margin-top: 10px;
    padding: 10px;
    font-size: 12px;
    border: none;
    background-color: #f1eff9;
    border-radius: 3px;
}
#border-radiusButton{
    width:12%;
    margin-left: 4%;
    padding: 10px 0;
    /* background-color: #008dff; */
    border: none;
    /* cursor: pointer; */
    border-radius: 3px;
    color: #ffffff;
    font-size: 12px;
}

.borderTab .borderTab-item {
  margin-bottom: 0px;
}
.borderTab #borderTab-flters {
  padding: 0;
  /* margin-left:1%; */
  list-style: none;
  text-align: center;
  background: #fff;
  border-radius: 50px;
  padding: 2px 15px;
}

.borderTab #borderTab-flters li {
  /* cursor: pointer; */
  display: inline-block;
  padding: 10px 15px 8px 15px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
  color: #272829;
  margin-bottom: 0px;
  transition: all 0.3s ease-in-out;
}

.borderTab #borderTab-flters li:last-child {
  margin-right: 0;
}

.borderTab .borderTab-wrap {
  transition: 0.3s;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.borderTab .borderTab-wrap::before {
  content: "";
  background: rgba(255, 255, 255, 0.5);
  position: absolute;
  left: 50%;
  right: 0;
  top: 0;
  bottom: 0;
  transition: all ease-in-out 0.3s;
  z-index: 2;
  opacity: 0;
}

.borderTab .borderTab-wrap .borderTab-links {
  opacity: 1;
  right: 0;
  bottom: -60px;
  z-index: 3;
  position: absolute;
  transition: all ease-in-out 0.3s;
  display: flex;
  justify-content: center;
}

.borderTab .borderTab-wrap .borderTab-links a {
  color: #fff;
  font-size: 28px;
  text-align: center;
  background: rgba(20, 157, 221, 0.75);
  transition: 0.3s;
  width: 50%;
}
        