@import url('https://fonts.googleapis.com/css2?family=Merriweather:wght@400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Bree+Serif&display=swap');

p,label,a,button,li,span,table,input{
    font-family: 'Merriweather', serif;
    font-size: 14px!important;
}
h1,h2,h3,h4,h5,h6{
    font-family: 'Bree Serif', serif;
}

.form-errors{
    position: relative;
    top: 100%;
    font-weight: bold;
    color: red!important;
    font-size: 11px;
    left: 10px;
}

.form-control,
.input-group-text{
    border-radius: 0!important;
}
.form-control:focus{
    border: 1px solid #000!important;
}
.modal-content {
    border-radius: 0;
}
button{
    border-radius: 0!important;
}
p{
    margin-bottom: 5px;
}
.dropdown-menu.show{
    padding: 0!important;
    border-radius: 0!important;
}
.dropdown-menu.show a{
    padding: 10px!important;
}
label{
    margin-bottom: 0;
}
select:focus{
    border: 1px solid #000!important;
}

.card{
    border-radius: 0!important;
}

.require-span{
    color: red;
    margin-left: 5px;
}
 /* Inline Layout Wrapper */
 .inline-slider-wrapper {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: Arial, sans-serif;
  }

  /* Switch Container */
  .switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 24px;
  }

  /* Hide Default Checkbox */
  .switch input {
    opacity: 0;
    width: 0;
    height: 0;
  }

  /* Slider Styling */
  .slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ddd;
    transition: 0.4s;
    border-radius: 24px;
  }

  /* Circle within the Slider */
  .slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: 0.4s;
    border-radius: 50%;
  }

  /* Checked State */
  input:checked + .slider {
    background-color: #4caf50;
  }

  input:checked + .slider:before {
    transform: translateX(26px);
  }

  /* Label Text Styling */
  .label-text {
    font-size: 14px;
    color: #333;
  }
