@import url("https://fonts.googleapis.com/css2?family=Josefin+Sans:ital,wght@0,100..700;1,100..700&family=Michroma&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

:root {
  --toggle-checked-color: #000000;
}

.feildwrapper-user {
    display: flex;
    flex-direction: row !important;
    gap: 20px;
    width: 70% !important;
}

.feildwrapper-user input{
    font-size: 16px;
}


/* === HEADING STYLE #8 === */

h1 {
    position: relative;
    padding: 0;
    margin: 0;
    font-weight: 300;
    font-size: 10px;
    color: #080808;
    -webkit-transition: all 0.4s ease 0s;
    -o-transition: all 0.4s ease 0s;
    transition: all 0.4s ease 0s;
    width: 70% !important;
    margin-top: 70px;
    margin-bottom: 70px;
    font-weight: 600;
    font-family: "Josefin Sans", sans-serif !important;
}

h1 span {
    display: block;
    font-size: 0.2em;
    line-height: 1.3;
    font-family: "Josefin Sans", sans-serif !important;
}

h1 em {
    font-style: normal;
    font-weight: 600;
    font-family: "Josefin Sans", sans-serif !important;
}

.eight h1 {
    text-align: center;
    text-transform: uppercase;
    font-size: 26px;
    letter-spacing: 1px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    grid-template-rows: 16px 0;
    grid-gap: 22px;
    font-family: "Josefin Sans", sans-serif !important;
}

.eight h1:after,
.eight h1:before {
    content: " ";
    display: block;
    border-bottom: 2px solid #ccc;
    font-weight: 600;
}




select {
    background-color: transparent;
    border: 1px solid #ccc;
    padding: 15px 25px;
    outline: none !important;
    font-size: 16px;
}

.dflex-inp{
    display: flex;
    align-items: center ;
    gap: 20px ;
    margin-top: 30px !important;
}

.lbl{
    color: black;
    font-weight: 500;
    margin-left: 5px;
}

.feildwrapper-user textarea {
    background-color: transparent;
    border: 1px solid #ccc;
    padding: 15px 25px;
    outline: none !important;
    font-size: 16px;
    height: 200px;
    resize: none;
}

.mrglft{
    margin-left: 20px;
}

.mrgtop{
    margin-top: 20px;
}






.csv-upload-container {
  max-width: 100%;
  width: 100%;
  padding: 30px;
  background-color: #e9edf2;
  box-sizing: border-box;
}

.step {
  margin-bottom: 30px;
}

.step h3 {
  font-size: 19px;
  color: #444;
  margin-bottom: 10px;
  padding-top: 10px;
}

.step p {
  font-size: 16px;
  color: #555;
  margin: 5px 0;
}

.download-link {
  display: inline-block;
  margin-top: 8px;
  color: #444;
  font-size: 14px;
  text-decoration: none;
}

.upload-section {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}

.upload-section input[type="file"] {
  display: none;
}

.browse-btn {
  padding: 8px;
  color: white;
  cursor: pointer;
  border: 2px solid black;
  border-radius: 4px;
  font-size: 14px;
  padding-bottom: 8px !important;
  width: fit-content;
}

#file-name {
  font-size: 14px;
  color: #666;
  flex: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.note {
  font-size: 16px;
  color: #555;
  margin-top: 20px;
}

.button-group {
  margin-top: 30px;
  display: flex;
  gap: 20px;
}

.cancel-btn,
.finish-btn {
  padding: 10px 20px;
  font-size: 14px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

.cancel-btn {
  background-color: #555;
  color: white;
}

.finish-btn {
  color: white;
}

.w100-t{
    width: 100% !important;
}
.gap a{
    color: black;
}
.gap{
    display: flex !important;
    justify-content: center;
    align-items: center;
    gap: 20px !important;
}

.trash{
    margin-left: 20px;
    color: black;
}





.switch {
  position: relative;
  display: inline-block;
  margin-left: 20px;
  width: 50px;
  height: 5px;
}

.switch input { 
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: .4s;
  transition: .4s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 17px;
  width: 17px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  -webkit-transition: .4s;
  transition: .4s;
}

input:checked + .slider {
  background-color:  var(--toggle-checked-color);
}

/* input:focus + .slider {
  box-shadow: 0 0 1px var(--toggle-checked-color);
} */

input:checked + .slider:before {
  -webkit-transform: translateX(26px);
  -ms-transform: translateX(26px);
  transform: translateX(26px);
}

/* Rounded sliders */
.slider.round {
  border-radius: 34px;
}

.slider.round:before {
  border-radius: 50%;
}

.border-btn{
    background-color: transparent;
    border: 2px solid black;
    color: black;
}


.w70{
  width: 70%;
  flex-wrap: wrap;
}

.w70 div{
  display: flex;
  align-items: center;
  flex-direction: row;
  justify-content: space-between;
  gap: 20px;
  width: 23%;
}

.w70 div input{
  margin-bottom: 20px;
  margin-right: 30px;
}

select{
  width: 100% !important;
}

.A-R-P{
  display: flex;
  gap: 30px;
   width: 100% !important;
}

.A-R-P div{
  width: 192px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.A-R-P div input{
  margin-right: 20px;
}