.Submit_Btn {
  border: none;
  box-shadow: 0px 3px 6px #00000029;
  display: flex;
  align-items: center;
  font-size: 15px;
  font-weight: 600;
  color: #000;
  width: 150px;
  padding: 10px 15px;
  position: relative;
  background: #e8e8e8 0% 0% no-repeat padding-box;
  border: 1px solid #707070;
  border-radius: 5px;
}

.Submit_Btn:hover {
    background: linear-gradient(135deg, #066a80 0%, #876b24 0%, #044f60 0%);
    color: #fff !important;
}
.Submit_Btn:hover .btn_text {
  color: #fff;
}
.Submit_Btn .icon_holder {
  width: 0px;
  height: 38px;
  background: #3b8f00 0% 0% no-repeat padding-box;
  border-radius: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.3s;
}

.Submit_Btn .icon_holder .icon {
  color: #fff;
  font-size: 10px;
  display: none;
}

.Submit_Btn .icon_holder .dynamic_icon {
  padding-right: 10px;
}

.Submit_Btn .btn_text {
  margin-bottom: 0px;
  font-size: 14px;
  color: #202020;
  margin-bottom: 0px;
  font-weight: 600;
  margin: 0 auto;
}

.Submit_Btn:hover .icon_holder {
  width: 38px;
}

.Submit_Btn:hover .icon_holder .icon {
  display: block;
}

@media (min-width: 0px) and (max-width: 575.98px) {
  .Submit_Btn {
    width: 120px;
    padding: 8px 15px;
  }

  .Submit_Btn .btn_text {
    font-size: 12px;
  }
}

@media (min-width: 576px) and (max-width: 767.98px) {
}

@media (min-width: 768px) and (max-width: 991px) {
}
