@charset "utf-8";
.navbar-header {
  position: relative;
  width: 100%;
}

.block_translate {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 150px;
  font-size: 14px;
  line-height: 32px;
  -webkit-box-shadow: 1px 3px 9px 3px #0002 inset;
          box-shadow: 1px 3px 9px 3px #0002 inset;
  border-radius: 5px;
  overflow: hidden;
  position: absolute;
  top: calc((100% - 36px) / 2);
  right: 0;
}

.block_translate .btn_translate {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: transparent;
  text-decoration: none;
  width: 50%;
  height: 100%;
  text-align: center;
  padding-top: 2px;
  -webkit-transition: all .3s;
  transition: all .3s;
  position: relative;
}

.block_translate .btn_translate.enabled {
  color: #fff;
  bottom: 1px;
  /* background: #ed514e; */
  /* background-image: -webkit-linear-gradient(rgba(255,255,255,.2) 0%,transparent 50%,transparent 50%,rgba(0,0,0,.1) 100%);
    background-image:         linear-gradient(rgba(255,255,255,.2) 0%,transparent 50%,transparent 50%,rgba(0,0,0,.1) 100%); */
    /* background-image:         linear-gradient(#f36c63 0%,#f2564c 50%,#f0483d 50%,#db271b 100%); */
  -webkit-box-shadow: 0 2px 2px 0 rgba(255, 255, 255, 0.1) inset, 0 2px 10px 0 rgba(255, 255, 255, 0.2) inset, 0 -2px 2px 0 rgba(0, 0, 0, 0.1) inset;
          box-shadow: 0 2px 2px 0 rgba(255, 255, 255, 0.1) inset, 0 2px 10px 0 rgba(255, 255, 255, 0.2) inset, 0 -2px 2px 0 rgba(0, 0, 0, 0.1) inset;
  background: -webkit-gradient(linear, left top, left bottom, from(#dd9d89), color-stop(50%, #ed5b44), to(#bf1313));
  background: linear-gradient(to bottom, #dd9d89 0%, #ed5b44 50%, #bf1313 100%);
  border-bottom: 2px solid rgba(0, 0, 0, 0.2);
  pointer-events: none;
}

.block_translate .btn_translate.disabled {
  color: #000a;
}

.block_translate .btn_translate.disabled:hover {
  -webkit-box-shadow: 0px 1px 9px 3px #0002 inset;
          box-shadow: 0px 1px 9px 3px #0002 inset;
}

@media (max-width: 767px) {
  .navbar-header {
    position: static;
  }
  .block_translate {
    width: 20vw;
    font-size: 2vw;
    line-height: 4.2vw;
    position: absolute;
    top: calc((100% - 4.8vw) / 2);
    right: 4vw;
  }
  .block_translate .btn_translate {
    height: 100%;
    padding-top: 0;
  }
  .block_translate .btn_translate.enabled {
    color: #fff;
    bottom: 1px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  }
}