/* --------------- Toggle ---------------- */

#toggle{
  position: relative;
  width: 30px;
  height: 30px;
  background: #1b9bce;
  cursor: pointer;
  justify-content: center;
  align-items: center;
  transition: 0.2s;
  overflow: hidden;
  border-radius: 0px;
  display: flex;
  margin:0 auto;
}

#toggle::before {
  content: "";
  position: absolute;
  width: 20px;
  height: 2px;
  background: #fff;
  transform: translateY(-8px);
  transition: 0.2s;
  box-shadow: 0 7px 0 #fff;
}
#toggle::after {
  content: "";
  position: absolute;
  width: 20px;
  height: 2px;
  background: #fff;
  transform: translateY(6px);
  transition: 0.2s;
}

#toggle.active::before{
  transform: translateY(0px) rotate(45deg);
  box-shadow: 0 0 0 #fff;
}
#toggle.active::after{
  transform: translateY(0px) rotate(-45deg);
}
#toggle.active{
  background: #006781;
}

/* ---------------- Поиск -------------------- */
.search {

}

.btn-search {
background-color: #0f688b;

}


/* ---------------- Button up --------------- */

.btn-up {
    position: fixed;
    background-color: #1d8dba;
    left: 50px;
    bottom: 0px;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 50px;
  }

  .btn-up::before {
    content: "";
    width: 40px;
    height: 40px;
    background: transparent no-repeat center center;
    background-size: 100% 100%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23fff' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M7.646 4.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1-.708.708L8 5.707l-5.646 5.647a.5.5 0 0 1-.708-.708l6-6z'/%3E%3C/svg%3E");
  }

  .btn-up_hide {
    display: none;
  }

  @media (hover: hover) and (pointer: fine) {
    .btn-up:hover {
      background-color: #0a6386;
    }
  }


