@charset "UTF-8";
@font-face {
  font-family: MuseoSans;
  src: url(../fonts/MuseoSans_500.woff2) format("woff");
}
:root {
  --bg: #f5f5f5;
  --theme: #2d3b4e;
  --red: #f25656;
  /* alternative green #00CF95 */
  --green: #22baa0;
  --green-light: #6ae2a6;
  --yellow: #f6d433;
  --blue: #12afcb;
  --gray: #888;
  --gray-light: #ccc;
  --shadow-small: 0 1px 3px rgba(0, 0, 0, 0.1), 0 2px 2px rgba(0, 0, 0, 0.1);
  --shadow-large: 0px 0px 10px #0002;
  --shadow-btns: 0 0 3px #000a inset;
}

::-webkit-scrollbar {
  width: 15px;
}

::-webkit-scrollbar-track {
  background: #fff;
}

::-webkit-scrollbar-thumb {
  width: 15px;
  background: #ccc;
  border: 5px solid #fff;
  border-radius: 30px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--gray);
}

* {
  box-sizing: border-box;
  outline-offset: 0px !important;
  outline: none !important;
  font-weight: 500;
  font-family: "MuseoSans", sans-serif;
  color: var(--theme);
  font-size: 14px;
}

body {
  width: 100%;
  min-height: 110vh;
  background-color: var(--bg);
  margin: 0;
  overflow: hidden;
}

main {
  max-width: 900px;
  min-height: inherit;
  display: grid;
  justify-content: center;
  grid-template: 1fr/1fr 1fr;
  gap: 20px;
  margin: 30px auto;
}
main .form {
  width: 100%;
  max-width: 519px;
  height: 1300px;
  min-height: inherit;
  overflow-x: hidden;
  position: relative;
  transition: height 0.4s;
}
main .form section {
  position: absolute;
  top: 0;
  left: calc(-100% - 20px);
  background-color: #fff;
  box-shadow: var(--shadow-small);
  border-radius: 4px;
  padding: 40px 30px;
  max-width: 560px;
  width: 100%;
}
main .quote .head,
main .transfer .head,
main .return .head,
main .payment .head,
main .orderDetails .head,
main .route .head {
  width: 100%;
  margin-bottom: 30px;
}
main .quote .head h1,
main .transfer .head h1,
main .return .head h1,
main .payment .head h1,
main .orderDetails .head h1,
main .route .head h1 {
  font-size: 22px;
  font-weight: 600;
  color: var(--default-light);
  margin: 0;
}

.label_field {
  font-weight: 600;
  display: inline-block;
  margin-bottom: 8px;
}

.mandatory_field {
  position: relative;
}

.mandatory_field::before {
  content: "*";
  position: absolute;
  top: 0;
  right: -10px;
  font-weight: 600;
}

.basic_input {
  display: block;
  border-radius: 4px;
  align-items: center;
  width: 100%;
  height: 43px;
  border: 1px solid var(--gray-light);
  transition: border 0.5s ease-in-out, background 0.5s ease-in-out;
  font-size: 15px;
  background-image: url("../app-icons/error.png");
  background-repeat: no-repeat;
  background-position: calc(100% - 10px) calc(100% + 30px);
  background-size: 22px;
}

.fromToError {
  transition: border 0.5s ease-in-out, background 0.5s ease-in-out !important;
  background-image: url("../app-icons/error.png") !important;
  background-repeat: no-repeat !important;
  background-size: 22px !important;
  background-position: calc(100% - 40px) 12px !important;
  border-color: var(--red) !important;
}

.basic_input:focus {
  border-color: var(--theme) !important;
}

.basic_input_error {
  border-color: var(--red) !important;
  background-position: calc(100% - 10px) center !important;
}

input[type=checkbox] {
  cursor: pointer;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  width: 17.6px;
  height: 17.6px;
  min-width: 17.6px;
  border: 1px solid var(--gray-light);
  color: #fff;
  border-radius: 3px;
  position: relative;
  margin-right: 10px;
  margin-left: 0;
}

input[type=checkbox]::before {
  content: "✓";
  font-size: 11px;
  font-weight: 600;
  position: absolute;
  top: 0;
  left: 4px;
}

input[type=checkbox]:checked {
  background-color: var(--green-light);
}

.submit {
  width: 180px;
  height: 43px;
  background-color: #2b4e85;
  font-size: 16px;
  color: #fff;
  border-radius: 4px;
  cursor: pointer;
  border: none;
  transition: background-color 0.2s ease;
}

.submit:hover {
  background-color: #335a9a;
}

.backBtn {
  background-color: rgb(144, 144, 144);
}

.backBtn:hover {
  background-color: rgb(158, 158, 158);
}

.overlay {
  position: fixed;
  top: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(52, 69, 86, 0.7);
  overflow: auto;
  z-index: 10;
  display: none;
  place-items: center;
  transition: opacity 0.3s ease 0.2s;
  opacity: 0;
}
.overlay .overlayCloseIcon {
  position: absolute;
  top: 50px;
  right: 50px;
  width: 20px;
  height: 20px;
  cursor: pointer;
  margin-left: 20px;
}
.overlay .overlayCloseIcon p {
  margin: 0;
  position: absolute;
  width: 25px;
  height: 5px;
  background-color: #b9b8b8;
  border-radius: 5px;
}
.overlay .overlayCloseIcon .one {
  transform: rotate(45deg);
}
.overlay .overlayCloseIcon .two {
  transform: rotate(-45deg);
}
.overlay .content {
  width: 90%;
  max-width: 450px;
  margin-bottom: 20%;
  background-color: #fff;
  box-shadow: var(--shadow-small);
  border-radius: 4px;
  padding: 40px;
  transition: height 0.3s ease, opacity 0.2s ease;
}
.overlay .content .head {
  width: 100%;
  margin-bottom: 30px;
}
.overlay .content .head h1 {
  font-size: 18px;
  font-weight: 600;
  color: var(--default-light);
  margin: 0;
}
.overlay .content .select {
  max-width: 175px !important;
}

.loader {
  position: fixed;
  width: 100vw;
  height: 100vh;
  top: 0;
  left: 0;
  display: grid;
  place-content: center;
  background-color: rgba(33, 59, 102, 0.4);
  z-index: 100000;
}
.loader .spinner {
  width: 40px;
  height: 40px;
  border: 4px solid #3498db;
  border-top: 4px solid transparent;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.notification {
  max-width: 500px;
  width: 100%;
  position: fixed;
  bottom: -30px;
  right: 30px;
  background-color: #fff;
  padding: 20px;
  border-radius: 4px;
  opacity: 0;
  transition: all 0.4s ease;
  z-index: 10;
}
.notification div {
  width: 100%;
  display: flex;
  flex-direction: column;
}
.notification div p {
  margin: 0 0 20px;
}
.notification div button {
  margin-left: auto;
  background-color: #2b4e85;
  border: none;
  padding: 6px;
  color: #fff;
  width: 230px;
  height: 30px;
  cursor: pointer;
}
.notification div button:hover {
  background-color: #213b66;
}

.notification::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 8px;
  height: 100%;
  background-color: var(--red);
}

.completed {
  width: 100vw;
  height: calc(100vh - 60px);
  display: none;
}
.completed .completedContent {
  width: 100%;
  max-width: 510px;
  background-color: #fff;
  box-shadow: var(--shadow-small);
  padding: 70px 50px 30px;
  position: relative;
  border-radius: 4px;
  margin: 200px auto;
}
.completed .completedContent .msg {
  font-size: 18px;
  text-align: center;
  margin-bottom: 20px;
}
.completed .completedContent .subMsg {
  text-align: center;
}
.completed .completedContent .tickIcon {
  position: absolute;
  top: 0;
  left: 50%;
  translate: -50% -50%;
  background-color: #6ae2a6;
  border-radius: 50%;
  width: 100px;
  height: 100px;
  display: grid;
  place-items: center;
}

@media (max-width: 1000px) {
  main {
    width: 504px;
    gap: 0;
    grid-template: auto 1fr/1fr;
  }
  main .form {
    margin: 0 auto;
    grid-row: 2/3;
  }
}
@media (max-width: 650px) {
  main {
    margin: 90px auto;
  }
}
@media (max-width: 550px) {
  main {
    width: 90%;
  }
  .submit {
    width: 45%;
  }
}/*# sourceMappingURL=style.css.map */