@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500&display=swap");
html,
body,
div,
button,
span {
  font-family: "Poppins", sans-serif;
}

.header {
  padding: 20px 0px;
}

.header .main-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.header .main-head .logo img {
  width: 200px;
}

@media screen and (max-width: 767px) {
  .header .main-head .logo img {
    width: 115px;
  }
}

.header .main-head .nav ul .li a {
  background: #F15D4E;
  color: #fff;
  padding: 10px 20px;
  border-radius: 20px;
}

.header .main-head ul {
  list-style: none;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0px;
}

.header .main-head ul li {
  padding: 0px 10px;
}

@media screen and (max-width: 767px) {
  .header .main-head ul li {
    font-size: 14px;
  }
}

.header .main-head ul li a {
  text-decoration: none;
  border-radius: 20px;
}

.header .main-head .dropdown img {
  width: 30px;
}

.header .main-head .dropdown .dropdown-toggle {
  border-radius: 50px;
  background: #fff;
  margin: 0px;
  padding: 5px 6px;
}

.header .main-head .dropdown .dropdown-menu {
  display: block;
  right: 0 !important;
  left: auto !important;
  border-radius: 10px;
}

.header:after {
  content: "";
  position: absolute;
  left: 0px;
  right: 0px;
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 45%, 0 68%);
  clip-path: polygon(0 0, 100% 0, 100% 45%, 0 68%);
  height: 100vh;
  background: linear-gradient(142.05deg, #EDFFFC -12.11%, #FEEBE0 98.59%);
  top: 0;
  z-index: -1;
}

.form-group {
  margin-bottom: 5px;
}

.form-group label {
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 0px;
}

.form-group .form-control {
  background-clip: padding-box;
  border: 1px solid #d2d6da;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 0.5rem;
}

.them_btn {
  width: 9em;
  height: 3em;
  border-radius: 30em;
  font-size: 15px;
  font-family: inherit;
  border: none;
  position: relative;
  overflow: hidden;
  z-index: 1;
  background-color: #019d98;
  color: #fff;
  cursor: pointer;
  width: 100%;
  margin-top: 20px;
}

.them_btn:hover {
  color: #fff;
}

.them_btn:hover:before {
  width: 100%;
}

.them_btn:before {
  content: "";
  width: 0;
  height: 3em;
  border-radius: 30em;
  position: absolute;
  top: 0;
  left: 0;
  background-image: -webkit-gradient(linear, left top, right top, from(#019d98), to(#1385d7));
  background-image: linear-gradient(to right, #019d98 0%, #1385d7 100%);
  -webkit-transition: 0.5s ease;
  transition: 0.5s ease;
  display: block;
  z-index: -1;
}

.banner_section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  /*height: 100vh;*/
  overflow: auto;
}

@media screen and (max-width: 767px) {
  .banner_section {
    height: auto !important;
    margin-top: 30px;
  }
}

.banner_section .card {
  width: 400px;
  padding: 50px 35px;
  background: #ffffff;
  border: 0;
  border-radius: 10px;
  -webkit-box-shadow: 0px 0px 20px #c9c9c9;
          box-shadow: 0px 0px 20px #c9c9c9;
}

.banner_section .card-header {
  padding: 0px;
}

.banner_section .card-body {
  padding: 0px;
}

.footer-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 15px;
}

.footer-btn .btn {
  width: 9em;
  height: 3em;
  border-radius: 30em;
  font-size: 15px;
  background-color: #cacaca;
  color: #252525;
  cursor: pointer;
  width: 100%;
  margin-top: 20px;
  width: 45%;
}

.footer-btn button {
  width: 45%;
  margin: 0px !important;
}

.container_check input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

.container_check input:checked ~ .checkmark {
  background-color: #019d98;
  border: 1px solid transparent;
}

.container_check .checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 20px;
  width: 20px;
  border: 1px solid #ddd;
  background-color: #fff;
  border-radius: 3px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.container_check .checkmark:after {
  content: "";
  position: absolute;
  display: none;
  left: 7px;
  top: 3px;
  width: 5px;
  height: 10px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.container_check.version_2 {
  padding: 13px 15px 13px 45px;
  background-color: #fff;
  border-radius: 3px;
  border: 1px solid #ddd;
  min-height: 30px;
  font-weight: 400;
  margin-bottom: 10px;
}

.container_check.version_2 .checkmark {
  height: 24px;
  width: 24px;
  top: 10px;
  left: 10px;
}

.container_check.version_2 .checkmark:after {
  top: 5px;
  left: 8px;
  width: 5px;
  height: 10px;
}

.container_check input:checked ~ .checkmark:after {
  display: block;
}

.container_radio {
  display: block;
  position: relative;
  font-size: 14px;
  font-size: 0.875rem;
  padding-left: 30px;
  line-height: 1.3;
  margin-bottom: 10px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.container_radio input {
  position: absolute;
  opacity: 0;
}

.container_radio input:checked ~ .checkmark:after {
  opacity: 1;
}

.container_radio .checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 20px;
  width: 20px;
  background-color: #fff;
  border: 1px solid #ccc;
  border-radius: 50%;
}

.container_radio .checkmark:after {
  display: block;
  content: "";
  position: absolute;
  opacity: 0;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  top: 3px;
  left: 3px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #019d98;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.container_radio.version_2 {
  padding: 13px 15px 13px 45px;
  background-color: #fff;
  border-radius: 3px;
  border: 1px solid #ddd;
  min-height: 30px;
  font-weight: 400;
  margin-bottom: 10px;
}

.container_radio.version_2 input:checked ~ .checkmark:before {
  opacity: 1;
}

.container_radio.version_2 input:checked ~ .checkmark {
  border: 1px solid transparent;
}

.container_radio.version_2 .checkmark {
  position: absolute;
  top: 10px;
  left: 10px;
  height: 24px;
  width: 24px;
  border: 1px solid #ddd;
  border-radius: 50%;
}

.container_radio.version_2 .checkmark:after {
  width: 22px;
  height: 22px;
  top: 0;
  left: 0;
}

.container_radio.version_2 .checkmark:before {
  display: block;
  content: "";
  position: absolute;
  opacity: 0;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  left: 9px;
  top: 5px;
  width: 5px;
  height: 10px;
  border: solid #fff;
  z-index: 999;
  border-width: 0 2px 2px 0;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.container_check.version_2.active,
.container_check.version_2:hover,
.container_radio.version_2.active,
.container_radio.version_2:hover {
  border: 1px solid #019d98;
}

.radio_input .container_radio {
  display: inline-block;
  margin: 5px 0 0 0;
}

.fileupload {
  position: relative;
  width: 100%;
  margin-top: 5px;
  font-size: 14px;
  font-size: 0.875rem;
  margin-bottom: 35px;
}

input[type="file"] {
  border: 1px solid #ddd;
  border-radius: 3px;
  background-color: #fff;
  padding: 5px;
  height: auto;
  width: 100%;
  color: #999;
}

input[type="file"]:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
  outline: 0;
}

input[type="file"].invalid::-webkit-file-upload-button,
input[type="file"].valid::-webkit-file-upload-button,
input[type="file"]::-webkit-file-upload-button {
  color: #fff;
  font-size: 13px;
  border: 0;
  border-radius: 3px;
  padding: 8px 10px 8px 38px;
  font-weight: 600;
  background: #019d98 url(../img/upload_icon.svg) 8px center no-repeat;
  outline: 0;
}

input[type="file"].invalid::-webkit-file-upload-button:focus,
input[type="file"].valid::-webkit-file-upload-button:focus,
input[type="file"]::-webkit-file-upload-button:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
  outline: 0;
}

.card_main {
  display: -ms-grid;
  display: grid;
  grid-gap: 15px;
  -ms-grid-columns: 1fr 1fr;
      grid-template-columns: 1fr 1fr;
}

.card_main .order-details {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  border-bottom: solid 1px #dfdfdf;
  margin-bottom: 10px;
  padding-bottom: 10px;
}

.card_main .order-details p {
  margin: 0px;
}

@media screen and (max-width: 767px) {
  .card_main .order-details p {
    font-size: 12px;
  }
}

.card_main .order-details button {
  border: 0;
  border-radius: 20px;
  font-size: 13px;
  padding: 5px 8px;
  margin: 0px 10px;
  cursor: pointer;
}

@media screen and (max-width: 767px) {
  .card_main {
    display: block;
  }
}

.card_main .hh-grayBox {
  background-color: #fff;
  border-radius: 20px;
  border: solid 1px #d7d6d6;
  padding: 20px;
}

@media screen and (max-width: 767px) {
  .card_main .hh-grayBox {
    margin-bottom: 15px;
  }
}

.card_main .order-tracking {
  text-align: center;
  width: 18.33%;
  position: relative;
  display: block;
}

@media screen and (max-width: 767px) {
  .card_main .order-tracking {
    width: 19.33%;
  }
}

.card_main .order-tracking .is-complete {
  display: block;
  position: relative;
  border-radius: 50%;
  height: 30px;
  width: 30px;
  border: 0px solid #ece9e9;
  background-color: #d8d8d8;
  margin: 0 auto;
  transition: background 0.25s linear;
  -webkit-transition: background 0.25s linear;
  z-index: 2;
}

.card_main .order-tracking .is-complete:after {
  display: block;
  position: absolute;
  content: "";
  height: 14px;
  width: 7px;
  top: -2px;
  bottom: 0;
  left: 5px;
  margin: auto 0;
  border: 0px solid #afafaf;
  border-width: 0px 2px 2px 0;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  opacity: 0;
}

.card_main .order-tracking.completed .is-complete {
  border-color: #27aa80;
  border-width: 0px;
  background-color: #27aa80;
}

.card_main .order-tracking.completed .is-complete:after {
  border-color: #fff;
  border-width: 0px 3px 3px 0;
  width: 7px;
  left: 11px;
  opacity: 1;
}

.card_main .order-tracking p {
  color: #a4a4a4;
  font-size: 12px;
  margin-top: 8px;
  margin-bottom: 0;
  line-height: 20px;
}

@media screen and (max-width: 767px) {
  .card_main .order-tracking p {
    font-size: 10px;
    margin: 0px -18px;
  }
}

.card_main .order-tracking p span {
  font-size: 12px !important;
}

@media screen and (max-width: 767px) {
  .card_main .order-tracking p span {
    font-size: 10px;
  }
}

.card_main .order-tracking.completed p {
  color: #000;
}

.card_main .order-tracking::before {
  content: "";
  display: block;
  height: 3px;
  width: calc(100% - 15px);
  background-color: #cececd;
  top: 13px;
  position: absolute;
  left: calc(-67% + 20px);
  z-index: 0;
}

.card_main .order-tracking:first-child:before {
  display: none;
}

.card_main .order-tracking.completed:before {
  background-color: #27aa80;
}

.deliver-name {
  background: #dedede;
  margin: 0px -20px -21px;
  border-radius: 0px 0px 15px 15px;
  padding: 10px;
  height: 70px;
}

.deliver-name .main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-pack: distribute;
      justify-content: space-around;
}

.deliver-name h3 {
  font-size: 16px;
  color: #000;
}

.deliver-name .details span {
  display: block;
}

.banner .header {
  border-bottom: solid 1px #cdcdcd;
  margin-bottom: 25px;
  padding: 12px 0px;
  text-align: center;
}

.banner .header h3 {
  font-size: 20px;
}
/*# sourceMappingURL=style.css.map */