/* Required height of parents of the Full Page Carousel for proper displaying carousel itself */
html,
body,
.view {
  height: 100%;
  overflow: auto;}

/* Full Page Carousel itself*/
.carousel {
  height: 100%; }
  .carousel .carousel-inner {
    height: 100%; }
    .carousel .carousel-inner .carousel-item,
    .carousel .carousel-inner .active {
      height: 100%; }

/* Navbar animation */
.navbar {
  background-color: rgba(0, 0, 0, 0.2); }

.top-nav-collapse {
  background-color: #1C2331; }

/* Adding color to the Navbar on mobile */
@media only screen and (max-width: 768px) {
  .navbar {
    background-color: #1C2331; } }

/* Footer color for sake of consistency with Navbar */
.page-footer {
  background-color: #132530B8; }

/*scroll-down button*/
section {
  position: relative;
  width: 100%;
  height: 100%;
}
.demo a {
  position: absolute;
  bottom: 20px;
  left: 50%;
  z-index: 2;
  display: inline-block;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  color: #fff;
  font : normal 400 20px/1 'Josefin Sans', sans-serif;
  letter-spacing: .1em;
  text-decoration: none;
  transition: opacity .3s;
}
.demo a:hover {
  opacity: .5;
}
#arrow-down a {
  padding-top: 70px;
}
#arrow-down a span {
  position: absolute;
  top: 0;
  left: 50%;
  width: 24px;
  height: 24px;
  margin-left: -12px;
  border-left: 1px solid #fff;
  border-bottom: 1px solid #fff;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-animation: sdb05 1.5s infinite;
  animation: sdb05 1.5s infinite;
  box-sizing: border-box;
}
@-webkit-keyframes sdb05 {
  0% {
    -webkit-transform: rotate(-45deg) translate(0, 0);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    -webkit-transform: rotate(-45deg) translate(-20px, 20px);
    opacity: 0;
  }
}
@keyframes sdb05 {
  0% {
    transform: rotate(-45deg) translate(0, 0);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    transform: rotate(-45deg) translate(-20px, 20px);
    opacity: 0;
  }
}

/*header*/
.top-nav-collapse {
  background-color: #7d8488 !important;
}
.navbar:not(.top-nav-collapse) {
  background: transparent !important;
}
@media (max-width: 768px) {
  .navbar:not(.top-nav-collapse) {
    background: #7d8488 !important;
  }
}
@media (max-width: 740px) {
  .full-height,
  .full-height body,
  .full-height header,
  .full-height header .view {
    height: 700px;
  }
}

.font-weight-bold2{
  font-weight: 500;
}
/**/
.main-container {
  min-height: 100vh; /* will cover the 100% of viewport */
  overflow: hidden;
  display: block;
  position: relative;
  /*padding-bottom: 50px; !* height of your footer *!*/
}

.footer{
  left:0;
  bottom:0;
  width:100%;
  position: absolute;

}
/* Extra small devices (phones, 600px and down) */
/*@media only screen and (min-height: 600px) {*/
  /*.tab-content{ height:100px }*/

/*}*/

/*filter box*/
.control-group {
  display: inline-block;
  vertical-align: top;
  background: #fff;
  text-align: left;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25);
  padding: 30px;
  margin: 10px;
}
.control {
  display: block;
  position: relative;
  padding-left: 30px;
  margin-bottom: 15px;
  cursor: pointer;
}
.control input {
  position: absolute;
  z-index: -1;
  opacity: 0;
}
.control__indicator {
  position: absolute;
  top: 0px;
  left: 0;
  height: 16px;
  width: 16px;
  background: #fff;
  border: 1px solid #ccc;
  /*
    .control:hover input:not([disabled]):checked ~ &,
    .control input:checked:focus ~ &
      border-color: #666
      */
}
.control--checkbox .control__indicator {
  border-radius: 3px;
}
.control--radio .control__indicator {
  border-radius: 50%;
}
.control:hover input:not([disabled]) ~ .control__indicator,
.control input:focus ~ .control__indicator {
  border-color: #666;
}
.control input:checked ~ .control__indicator {
  background: #fff;
}
.control input:disabled ~ .control__indicator {
  background: #e6e6e6;
  opacity: 0.6;
  pointer-events: none;
}
.control__indicator:after {
  content: '';
  position: absolute;
  display: none;
}
.control input:checked ~ .control__indicator:after {
  display: block;
}
.control--checkbox .control__indicator:after {
  left: 5px;
  top: 0px;
  width: 5px;
  height: 12px;
  border: solid #34bb92;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.control--checkbox input:disabled ~ .control__indicator:after {
  border-color: #7b7b7b;
}
.control--radio .control__indicator:after {
  left: 5px;
  top: 5px;
  height: 6px;
  width: 6px;
  border-radius: 50%;
  background: #34bb92;
}
.control--radio input:disabled ~ .control__indicator:after {
  background: #7b7b7b;
}
.select {
  position: relative;
  display: inline-block;
  margin-bottom: 15px;
  width: 100%;
}
.select select {
  display: inline-block;
  width: 100%;
  cursor: pointer;
  padding: 10px 15px;
  outline: 0;
  border: 0;
  border-radius: 0;
  background: #e6e6e6;
  color: #7b7b7b;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}
.select select::-ms-expand {
  display: none;
}
.select select:hover,
.select select:focus {
  color: #000;
  background: #ccc;
}
.select select:disabled {
  opacity: 0.5;
  pointer-events: none;
}
.select__arrow {
  position: absolute;
  top: 16px;
  right: 15px;
  width: 0;
  height: 0;
  pointer-events: none;
  border-style: solid;
  border-width: 8px 5px 0 5px;
  border-color: #7b7b7b transparent transparent transparent;
}
.select select:hover ~ .select__arrow,
.select select:focus ~ .select__arrow {
  border-top-color: #000;
}
.select select:disabled ~ .select__arrow {
  border-top-color: #ccc;
}

/*dataset filters version two*/

.ds-datatype >button.btn{
    color:black!important;
    text-transform: none;
    font-weight: 400;
    font-size:1rem;
    padding:.54rem;
}

.ds-datatype > button.btn-warning{
  /*margin-right: 1rem;*/
}

.ds-datatype > button.btn-default{
  background-color: #c3c3c3 !important;
  color:white!important;
}

.ds-datatype > button.btn-warning, .ds-datatype > button.btn-success, .ds-datatype > button.btn-default{
  width: 100%;
}

.two-choices{
  margin: 0.5rem 1rem;
}
.ds-datatype >button.btn .btn-warning{
  background-color: #ffc107;
}

.filters-card{
  margin: 0 auto; /* Added */
  float: none; /* Added */
  margin-bottom: 10px; /* Added */
}
.filter-hd{
  font-weight: 400;
  display:block;
}

/*.btn-group-justified > .btn-group .btn {*/
/*  min-width: 100%;*/
/*}*/
.filters-card * button.btn-default{
  background-color: white !important;
  color:black!important;
}
.btn-default.active,.btn-default:active,.btn-default:focus {
  background-color:#186860;
  color:white!important;
}
.btn-default:not([disabled]):not(.disabled).active,.btn-default:not([disabled]):not(.disabled):active,.show>.btn-default.dropdown-toggle {
  -webkit-box-shadow:0 5px 11px 0 rgba(0,0,0,.18),0 4px 15px 0 rgba(0,0,0,.15);
  box-shadow:0 5px 11px 0 rgba(0,0,0,.18),0 4px 15px 0 rgba(0,0,0,.15);
  background-color:#186860!important;
  color:white!important;
}

/*div border for filter lists*/
.filter_div{
  box-shadow: 0 2px 5px 0 rgba(0,0,0,.16),0 2px 10px 0 rgba(0,0,0,.12);
  transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out,-webkit-box-shadow .15s ease-in-out;
  padding: .84rem 2.14rem;
  margin: .375rem;
  box-sizing: border-box;
}
.filter-border{
  font-size: .81rem;
  border: 0;
  white-space: nowrap;
  text-align: center;
  background-color: white!important;
}

table.static-info {
  border-collapse: collapse;
  width: 100%;
}

.static-info td, .static-info th {
  border: 1px solid #dddddd;
  text-align: left;
  padding: 8px;
}

.static-info tr:nth-child(even) {
  background-color: #dddddd;
}

.dl-accordion-gradient-bcg {
  background:-webkit-linear-gradient(45deg, #63cbc8, rgb(164, 201, 229) 100%);
  background:-o-linear-gradient(45deg, #63cbc8, rgb(164, 201, 229) 100%);
  background:linear-gradient(45deg, #63cbc8, rgb(120, 172, 229) 100%);
}

.dl-accordion-gradient2-bcg {
  background:-webkit-linear-gradient(45deg, rgb(152, 168, 54), #4cbf81 100%);
  background:-o-linear-gradient(45deg, rgb(152, 168, 54), #4cbf81 100%);
  background:linear-gradient(45deg, rgb(152, 168, 54), #4cbf81 100%);
}

.dl-accordion-gradient3-bcg {
  background:-webkit-linear-gradient(-45deg, rgb(252, 119, 107), rgb(240, 197, 95) 100%);
  background:-o-linear-gradient(-45deg, rgb(252, 119, 107), rgb(240, 197, 95) 100%);
  background:linear-gradient(-45deg, rgb(252, 119, 107), rgb(240, 197, 95) 100%);
}
/*gallery*/
.bg-light {
  background-color: #f2f6fc !important;
}
.no-uppercase {
  text-transform: none!important;
}
.p-gname{
  cursor:pointer;
  color: #217a8e;
}

.input-group-button {
  padding: 0 0 0 5px;
  border-color: transparent;
  background: none;
}
