/**{*/
/*  margin : 0;*/
/*  padding : 0;*/
/*}*/
/*body {*/
/*    height: 100vh;*/
/*    background-color: #000;*/
/*    font-family: 'Roboto',sans-serif;*/
/*    background: linear-gradient(180deg,#DB302A 0%,#62186B 100%) no-repeat;*/
/*}*/
/*.container {*/
/*    display: flex;*/
/*    flex-direction: column;*/
/*    align-items: center;*/
/*    justify-content: center;*/
/*}*/
.box-minmax{
  margin-bottom: 10px;
  width: 100%;
  /*width: 608px;*/
  display: flex;
  justify-content: space-between;
  font-size: 20px;
  color: #109a50;
  /*span:first-child{*/
  /*  margin-left: 10px;*/
  /*}*/
}
.range-slider {
    margin-top: 1vh;

}
.rs-range {
    margin-top: 9px;
    /*width: 600px;*/
    width: 100%;
    -webkit-appearance: none;
    &:focus {
        outline: none;
    }
    &::-webkit-slider-runnable-track {
        width: 100%;
        height: 1px;
        cursor: pointer;
        box-shadow: none;
        background: #109a50;
        border-radius: 0px;
        border: 0px solid #010101;
    }
    &::-moz-range-track {
        width: 100%;
        height: 1px;
        cursor: pointer;
        box-shadow: none;
        background: #109a50;
        border-radius: 0px;
        border: 0px solid #010101;
    }

    &::-webkit-slider-thumb {
        box-shadow: none;
        border: 0px solid #109a50;
        box-shadow: 0px 6px 6px rgba(0,0,0,0.25);
        height: 32px;
        width: 16px;
        border-radius: 16px;
        background: rgba(255,255,255,1);
        cursor: pointer;
        -webkit-appearance: none;
        margin-top: -16px;
    }
  &::-moz-range-thumb{
        box-shadow: none;
        border: 0px solid #109a50;
        box-shadow: 0px 6px 6px rgba(0,0,0,0.25);
        height: 32px;
        width: 16px;
        border-radius: 16px;
        /*background: rgba(255,255,255,1);*/
        background: #109a50;
        cursor: pointer;
        -webkit-appearance: none;
        margin-top: -16px;
  }
  &::-moz-focus-outer {
    border: 0;
    }
}
.rs-label {

    position: relative;
    transform-origin: center center;
    display: block;
    width: 48px;
    height: 48px;
    background: transparent;
    border-radius: 50%;
    line-height: 15px;
    text-align: center;
    font-weight: bold;
    padding-top: 9px;
    box-sizing: border-box;
    border: 1px solid #109a50;
    margin-top: 10px;
    margin-left: -20px;
    left: attr(value);
    color: #109a50;
    font-style: normal;
    font-weight: normal;
    line-height: normal;
    font-size: 16px;
    &::after {
        content: "yrs";
        display: block;
        font-size: 9px;
        letter-spacing: 0.07em;
        margin-top: -2px;
    }

}