.default-btn {
  font-size: 16px;
  color: #3B8EEB;
  padding: 20px 35px;
  line-height: 1;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  z-index: 1;
  text-transform: capitalize;
  border: 1px solid #3B8EEB;
  border-radius: 4px;
  position: relative;
  cursor: pointer;
}

.default-btn.active {
  background-color: #3B8EEB;
  border-color: #3B8EEB;
  color: #ffffff;
}

.default-btn.active:hover {
  color: #3B8EEB;
}

.default-btn.active::after {
  width: 100%;
}

.default-btn.active::before {
  border-top: 20px solid transparent;
  border-left: 20px solid #ffffff;
  border-bottom: 20px solid transparent;
  left: -1px;
}

.default-btn.active:hover {
  background-color: transparent;
  border-color: #3B8EEB;
}

.default-btn.active:hover::before {
  border-top: 20px solid transparent;
  border-left: 20px solid #3B8EEB;
  border-bottom: 20px solid transparent;
  left: -1px;
}

.default-btn.active:hover::after {
  width: 0;
}

.default-btn::before {
  content: "";
  position: absolute;
  border-right: 0;
  border-top: 20px solid transparent;
  border-left: 20px solid #3B8EEB;
  border-bottom: 20px solid transparent;
  top: 9px;
  left: -1px;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

.default-btn::after {
  position: absolute;
  content: "";
  background-color: #3B8EEB;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  z-index: -1;
}

.default-btn:hover {
  color: #ffffff;
  border-color: #3B8EEB;
}

.default-btn:hover::before {
  border-top: 20px solid transparent;
  border-left: 20px solid #ffffff;
  border-bottom: 20px solid transparent;
}

.default-btn:hover::after {
  width: 100%;
}

.tracking-body {
  position: relative;
}

.tracking-body .tracking-wrap .input-tracking {
  height: 70px;
  padding: 10px 20px;
  width: 100%;
  border-radius: 4px;
  resize: none;
  overflow:hidden
}

.tracking-body .tracking-wrap .default-btn {
  position: absolute;
  top: 6px;
  right: 6px;
}



@media only screen and (max-width: 991px) {

.tracking-body .tracking-wrap .input-tracking {
    height: 52px;
  }
}