.container-options {
    padding-left: 20px;
    padding-right: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  
  .container-options .select-option h1 {
    font-size: 32px;
    text-align: center;
  }
  
  .container-options .select-option .select-type {
    width: 600px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  
  .container-options .select-option .select-type li {
    list-style: none;
  }
  
  .container-options .select-option .select-type li a {
    text-decoration: none;
    font-size: 18px;
    color: #00000059;
    font-weight: 600;
    position: relative;
  }
  
  .container-options .select-option .select-type li a::before {
    content: "";
    position: absolute;
    height: 3px;
    width: 0;
    bottom: -5px;
    border-radius: 10px;
    left: 0;
    background: green;
    -webkit-transition: ease-in-out 0.2s;
    transition: ease-in-out 0.2s;
  }
  
  .container-options .select-option .select-type li a:hover {
    color: green;
  }
  
  .container-options .select-option .select-type li a:hover::before {
    width: 100%;
  }
  
  .container-options .select-option .select-type .active a {
    color: green;
    position: relative;
  }
  
  .container-options .select-option .select-type .active a::before {
    content: "";
    position: absolute;
    height: 3px;
    width: 100%;
    bottom: -5px;
    left: 0;
    background: green;
  }
  