.search {
    display: table;
    float: right;
    position: relative;
  }
  .search input {
    background: none;
    border: none;
    outline: none;
    width: 40px;
    min-width: 0;
    padding: 0;
    z-index: 1;
    position: relative;
    line-height: 28px;
    margin: 5px 0;
    font-size: 18px;
    -webkit-appearance: none;
    transition: all 0.6s ease;
    cursor: pointer;
    color: #153b6a;
    color: transparent;
  }
  .search-close {
      width: 40px;
      height: 40px;
      cursor: pointer;
      /* display: none; */
      position: absolute;
      top: 0;
      right: 0;
      /* z-index: 10; */
      opacity: 0;
      transition: .4s ease-in-out;
  }
  .search-close::before{
      content: "";
      width: 2px;
      height: 24px;
      position: absolute;
      transform: rotate(45deg);
      background-color: #153b6a;
      top: 8px;
      right: 23px;
  }
  .search-close::after{
    content: "";
    width: 2px;
    height: 24px;
    position: absolute;
    transform: rotate(-45deg);
    background-color: #153b6a;
    top: 8px;
    right: 23px;
}
  .search input + div {
    position: relative;
    height: 32px;
    width: 100%;
    margin: -32px 0 0 0;
  }
    .search input + div svg {
        display: block;
        position: absolute;
        /* height: 28px;
    width: 160px; */
        height: 32px;
        width: 180px;
        right: 0;
        top: 0;
        fill: none;
        stroke: #3c2a99;
        stroke-width: 1.5px;
        stroke-dashoffset: 271.908;
        stroke-dasharray: 59 212.908;
        transition: all 0.6s ease;
    }
  /* .search input:not(:-moz-placeholder-shown) {
    width: 160px;
    padding: 0 4px;
    cursor: text;
    width: 220px;
    padding: 0 10px;
    padding-right: 30px;
  }
  .search input:not(:-ms-input-placeholder) {
    width: 160px;
    padding: 0 4px;
    cursor: text;
    width: 220px;
    padding: 0 10px;
    padding-right: 30px;
  }
  .search input:not(:placeholder-shown), .search input:focus {
    width: 160px;
    padding: 0 4px;
    cursor: text;
    width: 220px;
    padding: 0 10px;
    padding-right: 30px;
  } */
  .search input:focus {
    width: 160px;
    padding: 0 4px;
    cursor: text;
    width: 180px;
    padding: 0 10px;
    padding-right: 30px;
    color: #153b6a;
  }
  /* .search input:not(:-moz-placeholder-shown) + div svg {
    stroke-dasharray: 150 212.908;
    stroke-dashoffset: 300;
  }
  .search input:not(:-ms-input-placeholder) + div svg {
    stroke-dasharray: 150 212.908;
    stroke-dashoffset: 300;
  }
  .search input:not(:placeholder-shown) + div svg, .search input:focus + div svg {
    stroke-dasharray: 150 212.908;
    stroke-dashoffset: 300;
  } */
  .search input:focus + div svg {
    stroke-dasharray: 150 212.908;
    stroke-dashoffset: 300;
  }
  /* .search input:not(:placeholder-shown) + div + span{
    display: block;
  }*/
  .search input:focus + div + span{
      /* display: block; */
      opacity: 1;
      z-index: 10;
  }

  /* ::-moz-selection {
    background: rgba(255, 255, 255, 0.2);
    background: #e10d1933;
    opacity: 0.2;
  }

  ::selection {
    background: rgba(255, 255, 255, 0.2);
    background: #e10d1933;
    opacity: 0.2;
  }

  ::-moz-selection {
    background: rgba(255, 255, 255, 0.2);
    background: #e10d1933;
    opacity: 0.2;
  } */

  html {
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
  }

  *:before, *:after {
    box-sizing: inherit;
  }