input, select, textarea {
  background: #ededed !important;
}

.maincap {
  font: normal normal bold 20px/25px "Helvetica Neue", sans-serif;
  letter-spacing: 0;
  color: #676767;
  text-align: left;
  opacity: 1;
}

.subcap {
  font: normal normal normal 18px/22px "Helvetica Neue", sans-serif;
  letter-spacing: 0;
  color: #676767;
  text-align: left;
  opacity: 1;
}

.mainscap {
  font: normal normal bold 16px/20px "Helvetica Neue", sans-serif;
  letter-spacing: 0;
  text-align: left;
  opacity: 1;
}

.medcon select {
  height:38px;
  background: #F1F1F1 0% 0% no-repeat padding-box;
  border-radius: 2px;
  opacity: 1;
}

.medcon textarea {
  height: 152px; width: 100%; margin-top: 12px;
  background: #F1F1F1 0% 0% no-repeat padding-box;
  border-radius: 2px;
  opacity: 1;
}

.condition-item {
  margin-bottom: 8px
}


table {
    font-family: arial, sans-serif;
    border-collapse: collapse;
    width: 100%;
  }

  td, th {
    border-bottom: 1px solid #dddddd;
    text-align: center;
    padding: 2px;
  }
  .product-line-btn {
    background: none !important;
    border: none;
    float: right;
    font-size: 14px;
  }

  #tmodal {
    position: fixed;
    z-index: 9999;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    background-color: Black;
    filter: alpha(opacity=60);
    opacity: 0.6;
    -moz-opacity: 0.8;
  }
  #tmodal .heading {
      display: none;
  }

  #tmodal img {
      position: fixed;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      max-width: 25%;
  }

/*     tr:nth-child(even) {
    background-color: #dddddd;
  } */

    /* Upload Area */
.upload-area {
width: 100%;
background-color: white;
box-shadow: 0 10px 60px rgb(218, 229, 255);
border: 2px solid lightblue;
border-radius: 1.5rem;
padding: 1rem;
/* margin: 0.625rem 0; */
text-align: center;
}

.upload-area--open { /* Slid Down Animation */
animation: slidDown 500ms ease-in-out;
}

@keyframes slidDown {
from {
  height: 28.125rem; /* 450px */
}

to {
  height: 35rem; /* 560px */
}
}

/* Header */

.upload-area__title {
font-size: 1.8rem;
font-weight: 500;
margin-bottom: 0.3125rem;
}

.upload-area__paragraph {
font-size: 0.9375rem;
color: var(--clr-light-gray);
margin-top: 0;
}

.upload-area__tooltip {
position: relative;
color: var(--clr-light-blue);
cursor: pointer;
transition: color 300ms ease-in-out;
}

.upload-area__tooltip:hover {
color: var(--clr-blue);
}

.upload-area__tooltip-data {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -125%);
min-width: max-content;
background-color: white;
color: blue;
border: 1px solid lightblue;
padding: 0.625rem 1.25rem;
font-weight: 500;
opacity: 0;
visibility: hidden;
transition: none 300ms ease-in-out;
transition-property: opacity, visibility;
}

.upload-area__tooltip:hover .upload-area__tooltip-data {
opacity: 1;
visibility: visible;
}

/* Drop Zoon */
.upload-area__drop-zoon {
position: relative;
min-height: 10rem;
max-height: 12rem;
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
border: 2px dashed lightblue;
border-radius: 1.5rem;
/* margin-top: 2.1875rem; */
cursor: pointer;
transition: border-color 300ms ease-in-out;
}

.upload-area__drop-zoon:hover, .upload-area__drop-zoon:active {
border-color: var(--clr-blue);
}

.drop-zoon__icon {
display: flex;
font-size: 3.75rem;
color: var(--clr-blue);
transition: opacity 300ms ease-in-out;
}

.drop-zoon__paragraph {
font-size: 0.9375rem;
color: var(--clr-light-gray);
margin: 0;
text-align: center;
margin-top: 0.625rem;
transition: opacity 300ms ease-in-out;
}

.drop-zoon:hover .drop-zoon__icon,
.drop-zoon:hover .drop-zoon__paragraph {
opacity: 0.7;
}

.drop-zoon__loading-text {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
display: none;
color: var(--clr-light-blue);
z-index: 10;
}

.drop-zoon__preview-image {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
object-fit: contain;
padding: 0.3125rem;
border-radius: 10px;
display: none;
transition: opacity 300ms ease-in-out;
}


@media (hover: hover), (-ms-high-contrast:none) {
  .drop-zoon:hover .drop-zoon__preview-image {
    opacity: 0.1;
  }
}

.drop-zoon__file-input {
display: none;
}

/* (drop-zoon--over) Modifier Class */
.drop-zoon--over {
border-color: var(--clr-blue);
}

.drop-zoon--over .drop-zoon__icon,
.drop-zoon--over .drop-zoon__paragraph {
opacity: 0.7;
}

/* (drop-zoon--over) Modifier Class */
.drop-zoon--Uploaded {

}

.drop-zoon--Uploaded small,
.drop-zoon--Uploaded .drop-zoon__icon,
.drop-zoon--Uploaded .drop-zoon__paragraph {
display: none;
}

/* File Details Area */
.upload-area__file-details {
height: 0;
visibility: hidden;
opacity: 0;
text-align: left;
transition: none 500ms ease-in-out;
transition-property: opacity, visibility;
transition-delay: 500ms;
}

/* (duploaded-file--open) Modifier Class */
.file-details--open {
height: auto;
visibility: visible;
opacity: 1;
}

.file-details__title {
font-size: 1.125rem;
font-weight: 500;
color: var(--clr-light-gray);
}

/* Uploaded File */
.uploaded-file {
display: flex;
align-items: center;
padding: 0.625rem 0;
visibility: hidden;
opacity: 0;
transition: none 500ms ease-in-out;
transition-property: visibility, opacity;
}

/* (duploaded-file--open) Modifier Class */
.uploaded-file--open {
visibility: visible;
opacity: 1;
}

.uploaded-file__icon-container {
position: relative;
margin-right: 0.3125rem;
}

.uploaded-file__icon {
font-size: 3.4375rem;
color: var(--clr-blue);
}

.uploaded-file__icon-text {
position: absolute;
top: 1.5625rem;
left: 50%;
transform: translateX(-50%);
font-size: 0.9375rem;
font-weight: 500;
color: var(--clr-white);
}

.uploaded-file__info {
position: relative;
top: -0.3125rem;
width: 100%;
display: flex;
justify-content: space-between;
}

.uploaded-file__info::before,
.uploaded-file__info::after {
content: '';
position: absolute;
bottom: -0.9375rem;
width: 0;
height: 0.5rem;
background-color: #ebf2ff;
border-radius: 0.625rem;
}

.uploaded-file__info::before {
width: 100%;
}

.uploaded-file__info::after {
width: 100%;
background-color: var(--clr-blue);
}
.plusminus {
  display: inline-block;
  text-align: center;
  line-height: 1;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;

}
[data-toggle="collapse"] .plusminus:before {
   content: "\f068";
   font-family: "Font Awesome 5 Free";
   font-weight: 900;
}
[data-toggle="collapse"].collapsed .plusminus:before {
   content: "\f067";
   font-family: "Font Awesome 5 Free";
   font-weight: 900;
}

.d-md-flex {
  display: flex !important;
}

[data-toggle="collapse"] {
  border-radius: 32px 32px 0 0;
  border-bottom: 2px solid var(--primary-background) !important;
}
[data-toggle="collapse"].collapsed {
  border-radius: 32px;
}
.iconimg {
  max-height:100%;
  max-width:100%;
}
#accordion .accordion-title {
  position: relative;
  display: block;
  padding: 18px 0 18px 25px;
  background: white;
  /* border-bottom: 1px solid #e00614; */
  overflow: hidden;
  text-decoration: none;
  color: black;
  /* font-size: 16px; */
  font-weight: bold;
  width: 100%;
  text-align: left;
  transition: all 0.4s ease-in-out;
}

#accordion .accordion-title .iconinfo {
  position: absolute;
  width: 40px;
  height: 100%;
  left: 0;
  top: 0;
  color: #038040;
  /* background: radial-gradient(rgba(33, 55, 68, .8), #213744); */
  text-align: center;
  border-right: 1px solid transparent;
}
#accordion .accordion-title .plusminus {
  /* position: absolute; */
  width: 60px;
  height: 100%;
  right: 0;
  font-size: 24px;  
  top: 0;
  color: #038040;
  /* background: radial-gradient(rgba(33, 55, 68, .8), #213744); */
  text-align: center;
  border-right: 1px solid transparent;
}
#accordion .accordion-title:hover {
   padding-left: 60px;
}
#accordion .accordion-title:hover .iconinfo {
   border-right: 1px solid #fff;
}
#accordion .accordion-title:hover .plusminus {
  border-right: 1px solid #fff;
}
#accordion .accordion-body ul {
   list-style: none;
   margin-left: 0;
   padding-left: 0;
}
#accordion .accordion-body li {
   padding-left: 1.2rem;
   text-indent: -1.2rem;
}
#accordion .accordion-body li:before {
   content: "\f10a";
   padding-right: 5px;
   font-family: "Flaticon";
   font-size: 16px;
   font-style: normal;
   color: #213744;
}

/* Lock UI */
.grayable {
  width: 90px;
  text-align: right;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.toggleSwitch span span {
  display: none;
}

.toggleSwitch {
  overflow: visible;
  cursor: pointer;
  width: 136px;
}
.toggleSwitch * {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.toggleSwitch label,
.toggleSwitch > span {
  line-height: 20px;
  height: 20px;
  vertical-align: middle;
}
.toggleSwitch input:focus ~ a,
.toggleSwitch input:focus + label {
  outline: none;
}
.toggleSwitch label {
  position: relative;
  display: block;
  width: 100%;
}
.toggleSwitch input {
  opacity: 0;
}
.toggleSwitch > span {
  position: absolute;
  left: -18px;
  /* margin-left: 41px; */
  width: 43%;
  margin: 0;
  padding-right: 50px;
  text-align: left;
  white-space: nowrap;
}
.toggleSwitch > span span {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 50%;
  margin-left: 94px;
  text-align: left;
  font-size: 0.9em;
  left: 15%;
  top: -1px;
  opacity: 0;
  overflow: hidden;
  text-overflow: ellipsis;
}
.toggleSwitch a {
  position: absolute;
  right: 50%;
  height: 16px;
  padding: 0;
  left: 80px;
  width: 16px;
  background-color: #fff;
  border: 1px solid #CCC;
  border-radius: 100%;
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}
.toggleSwitch > span span:first-of-type {
  color: #ccc;
  opacity: 1;
  left: 45%;
}
.toggleSwitch > span:before {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 95px;
  top: -2px;
  background-color: #fafafa;
  border: 1px solid #ccc;
  border-radius: 30px;
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}
.toggleSwitch input:checked ~ a {
  border-color: #fff;
  left: 99%;
  margin-left: -18px;
}
.toggleSwitch input:checked ~ span:before {
  border-color: #0097D1;
  box-shadow: inset 0 0 0 30px #0097D1;
}
.toggleSwitch input:checked ~ span span:first-of-type {
  opacity: 0;
}
.toggleSwitch input:checked ~ span span:last-of-type {
  opacity: 1;
  color: #fff;
}

.grayed {
  /* color: lightgray; */
}

.pwgrayable.toggleSwitch.grayed input:checked ~ span:before {
  box-shadow: lightgrey !important;
  border-color: lightgrey !important;
  box-shadow: inset 0 0 0 30px lightgrey !important;
}
/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}



.password-addon {
  position: absolute;
  right: 0.3rem;
  top: 0.5rem;
  width: 2rem;
  z-index: 4;
}

.inline-container {
      display: inline-block;
      margin-right: 10px;
      vertical-align: middle; /* Align vertically */
  }
  .flex-container {
      display: flex;
      align-items: center; /* Aligns items vertically */
  }
  .label {
      margin-right: 10px;
      line-height: 1; /* Ensure label line height matches div */
  }
  .div-content {
      line-height: 1; /* Match line height to label for alignment */
  }

  /* .header {
    background: var(--primary);
  }
  header {
    background-color: #fff !important;
  } */
  #loginModal > div > div > div.modal-header.border-bottom-0 > div > h4 {
    color: white;
  }



  .chkcont .flex-container {
      display: flex;
      align-items: center; /* Aligns items vertically in the center */
      margin-bottom: 10px; /* Adds spacing between each flex container */
  }

  .chkcont .div-content {
      min-width: 150px; /* Sets a minimum width for the description area */
      margin-right: 20px; /* Adds space between the text and the label */
      text-align: left; /* Aligns text to the left within the div */
  }

  .chkcont .inline-container {
      display: flex; /* Ensures elements inside are also aligned */
      align-items: center; /* Aligns the checkbox vertically in the center */
  }

  .chkcont .label {
      display: flex;
      align-items: center;
  }

  .chkcont .toggleSwitch > span:before {
    top: 2px;
  }
  .chkcont .toggleSwitch > span span {
    top: 2px;
  }

  .chkcont .toggleSwitch input:checked ~ a {
    margin-top: 4px;
  }




  #photo-area-container {
    max-width: 60%;
    margin: 0 auto;
  }
  
  /* wrapper that centers its inline(-block) child */
  .photo-upload-wrapper {
    display: block;
    text-align: center;
    margin-bottom: 1rem;
  }
  
  .photo-preview-btn {
    max-width: 60%;
  }
  
  /* inline-flex so the img + button sit side by side,
     but the whole group is centered by the wrapper */
    .photo-preview-btn {
      display: inline-flex;
      flex-direction: column;
      align-items: center;
    }
    
  
  /* image styling: cap width, auto height */
  .photo-preview-btn img {
    max-width: 303px;      /* adjust as needed */
    height: auto;
    object-fit: cover;
    border-radius: 4px;
    background: #f0f0f0;   /* fallback bg if image missing */
  }
  
  /* button styling */
.update-photo-btn {
  background: #676767;
  color: #fff;
  border: none;
  width: 303px;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  cursor: pointer;
}



