/* Aaron's custom css for the DNN search object */

.tw-relative {
    position: relative;
}
.tw-flex {
    display: flex;
}
.tw-gap-3 {
    gap: 12px;
}

.tw-inline-flex {
    display: inline-flex;
}


.tw-h-10 {
    height: 40px;
} 

.tw-cursor-pointer {
    cursor: pointer;
} 

.tw-items-center {
    align-items: center;
} 

.tw-justify-start {
    justify-content: start;
} 

.tw-text-white {
    color: white;
} 

i.fa-kit {
    display: none;
}

.tw-sr-only {
    position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border-width:0
}

.tw-w-full {
    width: 100%;
} 

.tw-grow {
    flex-grow: 1;
}

.search {
position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border-width:0
}

.dnn-search {
    padding: 15px 0;
    max-width: 800px;
    margin: 0 25px;
    width: 85%;
}

.dnn-search input.NormalTextBox {
    display: block;
    width: 100%;
    height: 45px;
    padding: 6px 12px;
    font-size: 18px;
    line-height: 1.42857143;
    color: #1E5288!important;
    font-style: italic;
    background-color: transparent;
    background-image: url(/portals/_default/skins/Water-Resource/images/icon-search.png);
    background-position: 9px 8px;
    padding-left: 50px;
    background-repeat: no-repeat;
    border: 1px solid #1E5288;
    border-radius: 0px;
    -webkit-box-shadow: inset 0 0px 0px rgba(0,0,0,.075);
    box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
    -webkit-transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
    -o-transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
    transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
}

/*Justin's Custom CSS */

.lcwr-accordion-btn {
  background-color: #f1f1f1;
  color: #333;
  cursor: pointer;
  padding: 10px;
  width: 100%;
  text-align: left;
  border: none;
  border-bottom: 1px solid #ddd;
  outline: none;
  transition: background-color 0.3s ease;
}

.lcwr-accordion-content {
  display: none;
  padding: 10px;
}

/* Add this style to show the content when button is active */
.lcwr-accordion-btn.active {
  background-color: #ddd;
}

/* Add this style to display the content when button is active */
.lcwr-accordion-btn.active + .lcwr-accordion-content {
  display: block;
}



