body {
  color: #000;
  overflow-x: hidden;
  height: 100%;
 
  background-color: #eee !important;
  background-repeat: no-repeat;
}

.card0 {
  box-shadow: 0px 4px 8px 0px #757575;
  border-radius: 0px;
  top:120px;
  
}

.card2 {
  margin: 0px 40px;
}

.logo {
  width: 200px;
  height: 100px;
  margin-top: 20px;
  margin-left: 35px;
}

.image {
  width: 360px;
  height: 280px;
}

.border-line {
  border-right: 1px solid #EEEEEE;
}
.line {
  height: 1px;
  width: 45%;
  background-color: #E0E0E0;
  margin-top: 10px;
}



.text-sm {
  font-size: 14px !important;
}

::placeholder {
  color: #BDBDBD;
  opacity: 1;
  font-weight: 300
}

:-ms-input-placeholder {
  color: #BDBDBD;
  font-weight: 300
}

::-ms-input-placeholder {
  color: #BDBDBD;
  font-weight: 300
}

input, textarea {
  padding: 10px 12px 10px 12px;
  border: 1px solid lightgrey;
  border-radius: 2px;
  margin-bottom: 5px;
  margin-top: 2px;
  width: 100%;
  box-sizing: border-box;
  color: #2C3E50;
  font-size: 14px;
  letter-spacing: 1px;
 
}

input:focus, textarea:focus {
  -moz-box-shadow: none !important;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
  border: 1px solid #304FFE;
  outline-width: 0;
}

button:focus {
  -moz-box-shadow: none !important;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
  outline-width: 0;
}

a {
  color: inherit;
  cursor: pointer;
}

.btn-blue {
  background-color:#666;
  width: 150px;
  color: #fff;
  border-radius: 2px;
}

.btn-blue:hover {
  background-color: #ff7402;
  cursor: pointer;
}

.bg-blue {
  color: #fff;
  background-color: #666;
}

@media screen and (max-width: 991px) {
  .logo {
      margin-left: 0px;
  }

  .image {
      width: 300px;
      height: 220px;
  }

  .border-line {
      border-right: none;
  }

  .card2 {
      border-top: 1px solid #EEEEEE !important;
      margin: 0px 15px;
  }
}

.custom-dropdown {
  position: relative;
  display: inline-block;
}

.custom-dropdown .dropdown-input {
  width: 150px; 
  padding: 10px; 
}

.custom-dropdown .dropdown-arrow {
  position: absolute;
  top: 50%;
  right: 5px;
  transform: translateY(-50%);
  cursor: pointer;
}

.custom-dropdown .dropdown-list {
  cursor: pointer;
  list-style: none;
  padding: 0;
  margin: 0;
  border: 1px solid #ccc;
  border-top: none;
  display: none;
  position: absolute;
  width: 100%; /* Full width to match the input */
  top: 100%; /* Position below the input */
  left: 0; /* Align to the left of the parent */
  max-height: 150px;
  overflow-y: auto;
  background-color: #fff;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  z-index: 1;
  transition: max-height 0.3s ease-in-out; /* Move transition here for better organization */
}

.custom-dropdown .dropdown-option {
  padding: 8px;
  cursor: pointer;
  transition: background-color 0.3s;
  margin-bottom: 4px; /* Add gap between items */
}

/* Remove margin from the last item */
.custom-dropdown .dropdown-list li:last-child .dropdown-option {
  margin-bottom: 0;
}

.custom-dropdown .dropdown-option:hover {
  background-color: #ff671b;
}

.custom-dropdown.open .dropdown-list {
  display: block; /* Show the dropdown when open */

}
.custom-dropdown.open .dropdown-list li:hover{
  display: block; /* Show the dropdown when open */
  background-color: #ff671b;
}

.custom-dropdown.open .dropdown-list {
  max-height: 150px; /* Adjust max height when open */
}
@media screen and (max-width: 768px) {
 
  .custom-dropdown.open .dropdown-list ul li:hover {
    background-color: #ff671b !important;
    display: block;  
  }

  .custom-dropdown.open .dropdown-list {
    display: block;  
  }
}


.custom-dropdown .dropdown-list li{
  margin-bottom: 10px;
}
@media (max-width: 768px) {
  /* Full-screen behavior for the dropdown */
  .custom-dropdown.open .dropdown-list {
      position: fixed;         /* Fixed to make it cover the screen */
      top: 0;                  /* Align to the top of the viewport */
      left: 0;                 /* Align to the left */
      width: 98%;  
      font-family: "Dosis",sans-serif;   /* Full width of the screen */
      height: 50vh;           /* Full height of the screen */
      max-height: 100vh;       /* Ensure it doesn't exceed screen height */
      overflow-y: auto;        /* Scroll if content exceeds screen height */
      z-index: 1560;           /* Ensure it's on top */
      background-color: white; /* Consistent background color */
      border-radius: 15px;
      padding:8px;
  }
  .custom-dropdown .dropdown-list li{
    margin-bottom: 10px;
  }

}