@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;400;500;700;900&display=swap");

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
body {
  background-color: #1b1c1e !important;
  color: #ffffff;
  font-size: 1em;
  font-family: "Roboto";
}
html,
body {
  overflow-x: hidden;
  scroll-behavior: smooth;
}

/* Header */
.customHeader {
  display: flex;
  align-items: center;
  justify-content: space-between;
  /* background-color: #e7e7e7; */
  padding: 1.5em 0;
}
.customHeader .headerInput {
  width: 100%;
  background-color: #eeeeee;
  border: 1px solid gray;
  padding: 1em 1.2em;
  outline: none;
}
.customHeader .headerInput:focus-within {
  border-color: #e5a216;
}
.customHeader .mainLogo {
  display: inline-block;
}

/* Navbar */
.customNavbar,
.navBar {
  background-color: #e5a216;
}
.customNavbar .navbar-brand {
  font-size: 1.5em;
  color: #1b1c1e;
  font-style: italic;
}
.customNavbar .navbar-brand span {
  font-weight: 800;
  color: white;
  font-size: 1.6em;
}
.customNavbar .form-control {
  border: 1px solid #00000040;
  padding: 0.7em 0.8em;
  outline: none;
  box-shadow: none;
  border-radius: 0;
  border: 1px solid transparent;
}
.customNavbar .btn.btn-outline-success {
  background-color: #39383d;
  color: white;
  padding: 0.7em 1.3em;
  box-shadow: none;
  transition: 200ms all ease-in-out;
  border: 1px solid transparent;
  border-radius: 0;
}
.customNavbar .btn.btn-outline-success:hover {
  background-color: white;
  color: #39383d;
  border-color: #39383d;
}

/* Page Contents */
.pageContents {
  padding: 2em 0;
}
.mainHeading {
  /* font-size: 3em;
  font-weight: 600; */
   font-size: 40px;
  font-weight: 700;
  color: #fefefe;
  margin-bottom: 0.3em;
}
/* .mainText {
  font-size: 1.2em;
  line-height: 1.1;
  color: #dbdcde;
  line-height: 1.3em;
} */

.mainText {
  font-size: 24px;
  font-weight: 400;
  line-height: 1.1;
  color: #dbdcde;
  line-height: 1.3em;
}

.headingsfontweightsize{
  font-size: 18px;
    font-weight: 400;
}
/* Custom Accordion */
.pageContents .toggleContainer {
  padding: 1em;
  border-radius: 0.2em;
  margin: 0.3em 0;
  padding-left: 0;
}
.pageContents h3 label:hover {
  cursor: pointer;
}
.pageContents .trainingToggle {
  position: relative;
}
.pageContents .trainingToggle .switchInput[type="checkbox"] {
  height: 0;
  width: 0;
  visibility: hidden;
  position: absolute;
}
.pageContents .trainingToggle .switchLabel {
  cursor: pointer;
  text-indent: -9999px;
  width: 53px;
  height: 30px;
  background: #1b1c1e;
  border: 1px solid #e79f21;
  border-radius: 5px;
  top: -27px;
  left: 0%;
  position: absolute;
  display: inline-block;
}
.pageContents .trainingToggle .switchLabel:after {
  content: "";
  position: absolute;
  top: 4px;
  left: 4px;
  width: 22px;
  height: 22px;
  background: #fff;
  border-radius: 3px;
  transition: 0.3s;
}
.pageContents .trainingToggle .switchInput:checked + .switchLabel {
  background: #e79f21;
  top: -42px;
}
.pageContents .trainingToggle .switchInput:checked + .switchLabel:after {
  left: calc(100% - 2px);
  transform: translateX(-100%);
}
.pageContents .trainingToggle .switchLabel:active:after {
  width: 22px;
}
.pageContents .switchInput ~ .accordionContents {
  display: none;
}
.pageContents .switchInput:checked ~ .accordionContents {
  display: inherit;
}
.pageContents .accordionHeading {
  font-size: 1em;
  display: block;
  /* margin-right: 1em; */
  margin: 0;
  color: #fff;
  padding-left: 3.8em;
}
.accordionContents .commonLabel {
  display: block;
  color: #fff;
  margin-bottom: 0.4em;
}
.accordionContents .commonInput {
  width: 100%;
  border: 1px solid #e79f21;
  background-color: transparent;
  padding: 0.6em 1em;
  outline: none;
  margin-bottom: 1em;
}
.accordionContents .commonInput:focus-within {
  border-color: #e79f21;
  background-color: white;
}
.pageContents .toggleContainer .hideButton {
  display: none;
}
.pageContents .toggleContainer .accordionContents {
  margin: 1em 0;
  border-top: 1px solid white;
}
.pageContents .toggleContainer .genderDiv input {
  height: 16px;
  width: 16px;
  margin-right: 0.5em;
  vertical-align: text-top;
}
.mainBtn {
  display: block;
  text-decoration: none;
  color: gray;
  background-color: transparent;
  border: 1px solid gray;
  padding: 0.8em 3em;
  font-size: 1.3rem;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 10px;
  transition: 200ms all ease-in-out;
}
.mainBtn:hover,
.mainBtn.active {
  background-color: #319ad7;
  color: white;
  border-color: #319ad7;
}
.termDiv input {
  height: 1.5em;
  width: 1.5em;
  margin-right: 0.4em;
  vertical-align: middle;
  accent-color: #e79f21;
}
.borderDiv {
  border: 1px solid gray;
  padding: 0.8em 1em;
  color: #ffffff;
}
.termDiv a {
  color: #ffffff;
}
.borderDiv p {
  line-height: 1.2;
  color: #ffffff;
}

/* Preview Container */
.previewContainer {
  padding: 0em 1em 1em 1em;
  border: 4px solid #1b1c1e;
  border-radius: 1.5em;
  margin-top: 10em;
  background-color: #f2f1f7;
}
.previewContainer .previewHeader {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.previewContainer .previewHeader a {
  display: inline-block;
  text-decoration: none;
  font-size: 0.9em;
}
.previewContainer .previewUserArea {
  text-align: center;
}
.previewContainer .previewUserArea i {
  font-size: 3.5em;
  color: gray;
  margin-bottom: 0.1em;
}
.previewContainer .previewUserArea .userName {
  font-size: 1.1em;
  font-weight: 500;
  color: #1b1c1e;
}
.previewContainer .previewServiceForUser {
  display: flex;
  align-items: center;
  margin-top: 1em;
}
.previewContainer .previewServiceForUser .userService {
  background-color: white;
  text-decoration: none;
  display: inline-block;
  padding: 0.8em 0.5em;
  font-size: 0.9em;
  border-radius: 0.3em;
  text-align: center;
  width: 20%;
  margin: 0 0.2em;
  transition: 200ms all ease-in-out;
}
.previewContainer .previewServiceForUser .userService:hover {
  background-color: #0d6efd;
  color: white;
}
.previewContainer .previewServiceForUser .userService div {
  line-height: 1;
}
.previewContainer .userDetails {
  background-color: white;
  border-radius: 0.3em;
  padding: 0.8em 0.6em;
  margin-top: 0.6em;
  transition: 200ms all ease-in-out;
}
.previewContainer .userDetails:hover {
  box-shadow: 0 0 10px #00000030;
}
.previewContainer .userDetails .#1b1c1eText {
  font-size: 0.9em;
  color: #1b1c1e;
}
.previewContainer .userDetails .blueText {
  color: #0d6efd;
  line-height: 1;
}
.previewContainer .userDetails.odd .#1b1c1eText {
  line-height: 1.2;
}
.previewContainer .userDetails.odd {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.previewContainer .previewHeading {
  font-size: 1.4em;
  color: white;
  background-color: #1b1c1e;
  margin: 0 -0.9em;
  font-weight: 500;
  border-radius: 1em 1em 0 0;
  margin-bottom: 0.5em;
  text-align: center;
  padding: 0.8em 0;
}
.colorInput .commonInput {
  background-color: #e2e2e2;
  border-radius: 8px;
  border: 1px solid #e79f21;
}

/* Footer */
.pageFooter {
  padding: 1em 0;
}
.pageFooter .copyRightText {
  color: white;
  margin-bottom: 0.4em;
  font-size: 1.1em;
}
.pageFooter .footerLink {
  display: inline-block;
  text-decoration: none;
  font-size: 0.9em;
  color: white;
  margin: 0 0.5em;
  transition: 200ms all ease-in-out;
}
.pageFooter .footerLink:hover {
  color: #facc16;
}

.uploadLogo {
  display: flex;
  align-items: center;
  gap: 1.5em;
  margin: 1em 0;
}

.uploadAddButton {
  box-sizing: border-box;
  width: 2.6em;
  height: 2.6em;
  background-color: #e1e1e1;
  color: #2f3032;
  display: flex;
  font-size: 2.2rem;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all ease-in-out 200ms;
  border: none;
}
.uploadLogo .uploadAddButton:hover {
  background-color: rgba(0, 0, 0, 0.788);
  color: #ffffff;
}

.mainTitle {
  font-size: 1.7em;
  font-weight: 600;
  color: #ffffff;
}
.uploadText {
  font-size: 1rem;
  font-weight: 400;
  color: #ffffff;
}
.uploadLogo span {
  font-size: 0.9em;
  color: #ffffff;
}
.customInput {
  width: 100%;
  display: block;
  padding: 0.7em;
  outline: none;
  border: 1px solid #e79f21;
  background: #e2e2e2;
  border-radius: 8px;
  font-size: 16px;
  /* text-transform: uppercase; */
  font-weight: 700;
}
.customInput::placeholder {
  color: #afadad;
}
.rangeContainer .form-range::-webkit-slider-runnable-track {
  background-color: #dadcdb;
}
.rangeContainer .form-range::-webkit-slider-thumb {
  background-color: #d1a53b;
  padding: 0.8em;
  transform: translateY(-0.4em);
}
.qrCode .livePreview {
 background-color: #2e3233;
  color: #fff;
  font-size: 24px;
  font-weight: 400;
  padding: 0.5em 0em;
  text-align: center;
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
}
.backgroundChk input {
  width: 1.5em;
  height: 1.5em;
  accent-color: #e79f21;
  display: inline-block;
  background-color: #fff;
  cursor: pointer;
}
.colorInput {
  position: relative;
  margin-bottom: 1em;
}
.colorInput input {
  margin: 0 !important;
}
.colorInput .colorPicker {
  position: absolute;
  right: 0;
  top: 0;
  width: 3em;
  height: 100%;
  padding: 0.2em;
}
.colorInput .colorPicker img {
  width: 100%;
  height: 100%;
}
.radioContainer input {
  display: none;
}
.radioContainer {
  display: flex;
  align-items: center;
  gap: 2em;
  margin: 1em 0;
}
.radioContainer label {
  display: inline-block;
  width: 2em;
  height: 2em;
  border: 3px solid #e79f21;
  position: relative;
  color: #f6f8f7;
}
.radioContainer label::after {
  content: "";
  width: 1em;
  height: 1em;
  background-color: #e79f21;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.radioContainer label::before {
  content: "\2713";
  width: 1em;
  height: 1em;
  background-color: #e79f21;
  border-radius: 100px;
  position: absolute;
  top: -10px;
  right: -10px;
  display: none;
  color: #fff;
  font-size: 1em;
  font-weight: 500;
}
.radioContainer input:checked + label::after {
  border-radius: 100px;
}
.radioContainer input:checked + label {
  box-shadow: 0px 0px 0px 2px #e79f21;
}
.radioContainer input:checked + label::before {
  display: flex;
  align-items: center;
  justify-content: center;
}
.subTitle {
  font-size: 1.6em;
  font-weight: 600;
  color: #ffffff;
}
/* Media Query */
@media (max-width: 992px) {
  .qrCode {
    margin-top: 0em;
  }
  .mainLogo img {
    width: 5em;
  }
  .termDiv label {
    font-size: 0.8em;
  }
  .pageContents .toggleContainer {
    padding: 0.5em;
    margin: 1.3em 0;
  }
  .pageContents .trainingToggle .switchLabel {
    top: -25px;
    left: 80%;
  }
  .pageContents .accordionHeading {
    font-size: 1em;
  }
  .customNavbar .navbar-brand {
    font-size: 1.2em;
  }
  .customNavbar .navbar-brand span {
    font-size: 1.4em;
  }
  .mainHeading {
    /* font-size: 1.5em; */
     font-size: 40px;
  /* font-weight: 700; */
  }
  .mainText {
    font-size: 1.1em;
  }
  .customNavbar .navbar-toggler {
    padding: 0.15rem 0.45rem;
    font-size: 0.95rem;
  }
  .previewContainer {
    padding: 0em 0.5em 1em 0.5em;
    margin-top: 2em;
  }
  .customHeader .mainLogo {
    font-size: 1.6em;
    margin-bottom: 0.4em;
  }
  .customHeader {
    text-align: center;
  }
  .customHeader .headerInput {
    padding: 0.6em 0.8em;
  }
  .previewContainer .previewHeading {
    margin: 0 -0.5em;
    font-size: 1.2em;
    margin-bottom: 1em;
  }
  .previewContainer .previewUserArea i {
    font-size: 2.8em;
  }
  .previewContainer .previewServiceForUser {
    display: block;
    /* text-align: center; */
  }
  .previewContainer .previewServiceForUser .userService {
    width: 40%;
    margin: 0.4em 0.2em;
  }
  .footerRow {
    flex-direction: column;
    align-items: start;
    gap: 1rem;
  }
}
.navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(255,555,255,1)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 8h24M4 16h24M4 24h24'/%3E%3C/svg%3E");
}

.navbar-toggler {
  border-color: rgba(255, 255, 255, 1);
  outline: none !important;
}

label {
  color: #ffffff;
}

.footerRow {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.uploaderWrapper {
  padding: 1rem;
  background: #2e3233;
  border-radius: 9px;
}
