html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
  background-image: url('/images/bgMain.webp');
  background-attachment: fixed;
}

.navbar.cBible {
  background-image: url('/images/bgImage.webp');
}

/* for folding control */
.foldable-div {
  position: absolute; /* Change position to absolute */
  top: 0;
  right: 20px; /* Update right value to 20px */
  width: 100px;
  height: 30px;
  background-color: transparent;
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.foldable-div p {
  margin: 0;
  padding: 0 10px;
}

/* Page link */
.pagination li span {
  display: inline-block;
  vertical-align: top;
}
.pageLink {
  cursor: pointer;
  color: white;
  background-color: blue;
  border: none;
  border-radius: 6px;
  padding: 6px 6px;
  box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.3);
  transition: all 0.2s ease-in-out;
}
  .pageLink:hover {
    background-color: darkblue;
    box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.3);
  }
.pageLinkActive {
  cursor: pointer;
  color: white;
  background-color: green;
  border: none;
  border-radius: 6px;
  padding: 6px 6px;
  box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.3);
  transition: all 0.2s ease-in-out;
}

.downloadLink {
  cursor: pointer;
  color: white;
  background-color: blue;
  border: none;
  border-radius: 8px;
  padding: 8px 8px;
  box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.3);
  transition: all 0.2s ease-in-out;
}
  .downloadLink:hover {
    background-color: darkblue;
  }
  /* div script*/

  .edwinDiv {
  cursor: pointer;
}


/* search option*/
.SearchOptionContainer {
  border: 0px solid #ccc;
  padding: 10px;
  overflow: hidden;
  max-height: 300px; 
  transition: max-height 0.5s ease-in-out; 
}



.SearchOptionHeader {
  /* font-weight: bold; */
}

.expandSearchOption {
  cursor: pointer;
  color: #28486c;
  transition: color 0.3s ease-in-out;
}

  .expandSearchOption:hover {
    color: #20650e;
  }
  .expandSearchOption:active {
    color: #2d77cb;
  }


.SearchOptionContent {
  padding: 10px;
  display: none;
}

.clsResult {
  color: #165b04;
  display: none;
}

.noRecordfound {
  color: #924a11;
  display: none;
}

.btn.radio {
  background-color: transparent;
  border-color: transparent;
  color: black;
}
/*for loading*/
#loading {
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: none;
}

#loading-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.invalidTooltip {
  padding: 10px;
  display: none;
  color: red;
}

.inputTips {
  padding: 10px;
  color: #165b04;
}

/*for result set*/
@media (max-width: 1400px) {
  .col-sm-1.edwin {
    width: 100%;
  }
}
@media (max-width: 700px) {
  .col-sm-2.edwin {
    width: 100%;
  }
}

/*highligt tag*/
.keyWordsContent
{
  color:blue;
}

/* for keyword search only */
.col-form-label.edwin {
  min-width: 150px;
}
@media (max-width: 700px) {
  .col-form-label.edwin {
    min-width: 120px;
  }
}

/* for book search only */
.col-form-label.booklabel {
  margin-left: 2px;
  min-width: 80px;
  padding:1px;
}

@media (max-width: 700px) {
  .col-form-label.booklabel {
    margin-left: 2px;
    min-width: 60px;
  }
}
.form-control.selectMode.book {
  max-width:300px!important;
  padding:2px;
}
.form-control.selectMode.chapter {
  max-width: 80px !important;
  padding: 2px;
}

/* tagify */
.tagify__tag {
  --tag-hover: var(--tag-bg);
  --tag-bg: #81abda;
}

.container.footerClass {
  display: flex;
  justify-content: center;
  align-items: center;
}

/*footer image*/
@media (max-width: 700px) {
  img.footerImage {
    height: 40px;
  }
}

