* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  font-size: 18px;
  font-family: "Nunito";
  font-optical-sizing: auto;
}

:root {
  --button-color: #666666;
}

body {
  /* background: radial-gradient(farthest-corner circle at top, #2f65ac 0, #152a4d 100%); */
  background:#fff567 ;
}

.custom-container-padding {
  padding: 0 30px;
}

.top_dropdown_section {
  margin-left: 4px;
  margin-right: 4px;
}

.tranformation_body {
  display: flex;
  justify-content: left;
  flex-direction: column;
  width: 100%;
  height: 100%;
  margin-top: 10px;
  padding-top: 20px;
  padding-right: 20px;
  padding-left: 20px;
  padding-bottom: 20px;
  background-color: #ffffff;
  border-radius: 5px;
}

.source_header {
  text-align: center;
}
.btn{
  background-color: var(--button-color) !important;
  color: white !important;
}
.dbdt_btn_group {
  margin: 0 auto;
  display: flex;
  justify-content: center;
}

.dbdt_btn_group button {
  background-color: #48494a;
  color: #fff;
  font-size: 16px;
  margin-right: 25px;
  margin-bottom: 20px;
  padding: 5px 15px;
}

button:hover {
  background-color: #48494a;
}

.inputGroup {
  margin: 2em 0;
  width: 100%;
  position: relative;
}

.inputGroup input {
  font-size: 100%;
  padding: 0.8em;
  outline: none;
  border: 2px solid rgb(200, 200, 200);
  background-color: transparent;
  border-radius: 5px;
  width: 100%;
}

.inputGroup label {
  font-size: 100%;
  position: absolute;
  left: 0;
  padding: 0.8em;
  margin-left: 0.5em;
  pointer-events: none;
  transition: all 0.3s ease;
  color: #48494a;
}

.inputGroup :is(input:focus, input:valid)~label {
  transform: translateY(-50%) scale(.9);
  margin: 0em;
  margin-left: 1.3em;
  padding: 0.4em;
  background-color: white;
}

.inputGroup :is(input:focus, input:valid) {
  border-color: rgb(150, 150, 200);
}

.drop-down {
  display: none;
  position: absolute;
  z-index: 1000;
  width: 100%;
  max-height: 200px;
  overflow-y: auto;
  border: 1px solid #ccc;
  background-color: #fff;
}

.dropdown-item {
  padding: 10px;
  cursor: pointer;
  position: relative;
}

.dropdown-item:hover {
  background-color: #f1f1f1;
}

.dropdown-item .checkmark {
  display: none;
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
}

.dropdown-item.selected .checkmark {
  display: inline-block;
}

.fa-sort-down {
  right: 10px;
  top: 45%;
  transform: translateY(-50%);
  position: absolute;
}

.custom-card {
  background-color: white;
  padding: 0 20px;
  box-shadow: 0 1px 10px 0 rgba(0, 0, 0, 0.1);
}

.name-heading{
  font-family: "Nunito";
  /* color:#48494a !important; */
  color: #666666 !important;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
}