body{
    font-family: 'sans-serif', sans-serif;
}
a:hover {
    text-decoration: none;
}

input:focus,
.btn.active.focus,
.btn.active:focus,
.btn.focus,
.btn.focus:active,
.btn:active:focus,
.btn:focus {
  outline: 0 !important;
  outline-offset: 0  !important;
  background-image: none  !important;
  -webkit-box-shadow: none !important;
  box-shadow: none  !important;
}
/* header */
.banner-container{
    height: 50vh;
    /*background: linear-gradient(rgba(0,0,0,.4),rgba(0,0,0,.5))
    ,url('../images/bg-camera.jpg') no-repeat center center /cover  ;*/
}
/* navbar */
.logo-img{
    max-height: 115px;
}
.nav-menu{
    background: linear-gradient(rgba(0,0,0,.3),rgba(0,0,0,.5));
    /* background-color: black; */
    padding: 20px;
    transition: all .7s;
}
.menu-item{
    display: inline-block;
    font-size: 13px;
    letter-spacing: 1px;
    color: #eee;
    transition: color .5s;
}
.menu-item:hover{
    color: #eee;
    border-bottom: 2px solid  #38b6ff;;
}
a.nav-link.menu-item.m-2.active{
    color: #eee;
    border-bottom: 2px solid  #38b6ff;;
}
.span.nav-link.menu-item.m-2.active{
    color: #eee;
    border-bottom: 2px solid  #38b6ff;;
}
.line1,.line2,.line3{
    width: 23px;
    height: 3px;
    margin: 5px;
    transition: all 0.4s;
}
.change .line1{
    transform:rotate(-45deg) translate(-5px,6px) ;
}
.change .line2{
    opacity: 0;
}
.change .line3{
    transform: rotate(45deg) translate(-5px,-6px);
}
.custom-navbar{
    background: linear-gradient(rgba(0,0,0,.6),rgba(0,0,0,.7));
    padding: 30px 5px;
}

/* end of navbar */

/* banner */
.banner{
    position: relative;
    top: 42%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 80%;
}
.banner-heading{
    animation: anim;
    animation-duration: 2s;
}
.banner-par{
    animation: anim;
    animation-duration: 2s;
    animation-delay: .5s;
    animation-fill-mode: backwards;
}

@keyframes anim{
    0% {
        transform: translateX(-100px);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}
/* end of banner */

/* end of header */

/*welcome*/
.home-service-icon{
    border: 4px solid white;
    transition: all .5s;
}
.home-service-icon path{
    fill:  white;

}
.home-service-icon:hover{
    border: 4px solid rgb(125, 167, 243);

}
.home-service-icon:hover path{
    fill:  rgb(125, 167, 243);

}
/*end of welcome*/
/* services */
.services{
    /*background: #151f20;*/
}
.underline{
    width: 150px;
    border: 3px solid  #38b6ff;;
    margin: auto;
}
.heading-underline{
    border-bottom: : 2px solid #303436;
}
.service-icon{
    border: 4px solid #303436;
    transition: all .5s;
}
.service-icon path{
    fill:  #303436;

}
.service-icon:hover{
    border: 4px solid rgb(125, 167, 243);

}
.service-icon:hover path{
    fill:  rgb(125, 167, 243);

}
/* end of services */

/* products */
/* .input-search {
    background: url(../images/search.svg) no-repeat 1rem 1rem;
    background-color: white;
    background-size: 1.2rem 1.2rem;
    padding: .75rem 1rem .75rem 3rem;
} */

/* shop */
.card-shedow{
    box-shadow:3px 3px 5px #444;
}
.shop-heading{
    display:flex;
    justify-content: space-between;
}
.mb-0 > a {
  display: block;
  position: relative;
}
.mb-0 > a:after {
  content: "\f078"; /* fa-chevron-down */
  font-family: 'FontAwesome';
  position: absolute;
  right: 0;
}
.mb-0 > a[aria-expanded="true"]:after {
  content: "\f077"; /* fa-chevron-up */
} 
/* end of shop*/
.heading{
    position: absolute;
    top: 70%;
    right: 0%;
    font-size: 14px;
    letter-spacing: 1px;
    background: #222;
    width: 70%;
    cursor: pointer;
    opacity: .7;
    transition: all .5s;
}
.heading:hover{
    opacity: 1;
}
/* end of products */

/* gallary */
.underline-dark{
    width: 150px;
    border: 3px solid #888;
    margin: auto;
}
.gallary-list-item{
    color: #777;
    cursor: pointer;
    user-select: none;
}
.active-item{
    color: #70aed2;
}
/* end of gallary */

/* customers */
.customers{
    background-color: #151f20;
}
.datepicker-days {
    padding: 10px;
}
/* end of customers */




/* contact */
.contact{
    background: linear-gradient(105deg,
     rgba(21,31,32,1)0%,
     rgba(21,31,32,.95)50%,
     transparent 50%),
     url('../images/photo5.jpg') no-repeat center center /cover;
}
.input,.textarea{
    background: transparent;
    border-color: transparent;
    border-bottom: 2px solid #ccc;
    border-radius: 0;
    transition: all .8s;
}
.input:focus,.textarea:focus{
    background: transparent;
    border-color: transparent;
    border-bottom: 2px solid  #38b6ff;;
    box-shadow: none;
}
.contactus-input, .contactus-input:focus{
  color:white;
}
/* input placeholder color*/
.contactus-input::placeholder {
  color:  #38b6ff;;
}

/* end of input placeholder color */
.submit-button{
    background:  #38b6ff;;
    color: #fff;
    transition: all .3s;
}
.submit-button:hover{
    background: #38b6ff;;
    transform: translateY(-3px);
}
.label{
    color:  #38b6ff;;
    display: block;
    margin-top: -70px;
    margin-left: 4px;
    font-size: 16px;
    transition: all .3s;
}

.input:placeholder-shown + .label{
    transform: translate(20px, 20px);
    opacity: 0;
    visibility: hidden;
}
.textarea:placeholder-shown + .label{
    transform: translate(20px, 20px);
    opacity: 0;
    visibility: hidden;
}
/* end of contact */

/* service detail */
.service-details{
    display: flex;
    justify-content: space-between;
}
.lead{
  font-size: 18px;
}
/* end of service detail */

/* contact us */

/* common title */
.common-title{
    display: inline-block;
    font-size: 3rem;
    font-weight: 600;
    /*text-shadow: 2px 2px 5px rgb(248, 112, 112);*/
    transition: all .5s;
}
.common-title:first-letter{
    /*font-family: 'Great Vibes',cursive;*/
    font-size: 5rem;
    font-style: normal;
}
.common-title:hover{
    transform: translate(-5px,-3px);
    text-shadow: 2px 5px 20px #38b6ff;
}

/* end of common title */
.contactus {
    position: relative;
}

.video-content{
    position: absolute;
    /*top: 15%;*/
    left: 10%
}
.contact-info{
    position: relative;
}

/* Contact us */
.map-container {
    position: relative;
    height: 70rem;

}

.video-container {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: -1;
    opacity: .9;
}

.bg-video {
    height: 100%;
    width: 100%;
    object-fit: cover;
}
.content {
    position: relative;
    /*top: 18%;*/
}
/* end of contact us */
/* cart */
.cart{
    padding: 10px;
    border: 2px solid #eee;
}
/* end of cart */

/* notifiction messages */
.notification-info {
  display: block;
  padding: 10px 10px 10px 45px;
  border: 1.5px solid #d41314;
  background-repeat: no-repeat;
  background-position: 20px 14px;
  margin-bottom: 10px;
  color: rgb(169, 68, 66);
}
.n-error {
  background-color: #f2dede;
  border-color: #efb9c3;
  background-image: url("../images/notification-slash.gif");
}
span.mandatory-sign {
    color: red;
}
.alert.alert-success {
  color: #155724;
  background-color: #D4EDDA;
  border-color: #C3E6CB;
  border: 1.5px solid #155724;
  padding: 10px 10px 10px 45px;
  border-radius: 0;
  background-repeat: no-repeat;
  background-position: 20px 13px;
  background-image: url(../images/success-icon.png);
}
.alert {
  background-image: url(../images/warning-icon.png);
  background-repeat: no-repeat;
  background-position: 20px 14px;
  padding: 10px 10px 10px 45px;
  border-radius: 0;
  border: 1.5px solid #EEA236;
  color: #856404;
  background-color: #fff3cd;
}
/* end of notification messages*/

/* checkout form*/
@media only screen and (max-width: 767px) {
  .checkout-cart{
    display: none;
  }


}
/*end of checkout form*/

/* media queries */
/* Extra small devices (phones, 600px and down) */
@media only screen and (max-width: 600px) {
  .service-container {
    display:block;
  }
  .map-container {
    position: relative;
    height: 75rem;
  }
}

/* Small devices (portrait tablets and large phones, 600px and up) */
@media only screen and (min-width: 600px) {
  .service-container {
    display:block;
  }
  .map-container {
    position: relative;
    height: 75rem;
  }
}

/* Medium devices (landscape tablets, 768px and up) */
@media only screen and (min-width: 768px) {
  .service-container {
    display:block;
  }
}

/* Large devices (laptops/desktops, 992px and up) */
@media only screen and (min-width: 992px) {
  .service-container {
    display:flex;
  }
  
}

/* Extra large devices (large laptops and desktops, 1200px and up) */
@media only screen and (min-width: 1200px) {
  .service-container {
    display:flex;
  }
}
/* end of media queries*/

.content-section {
    /* background-color: #fafafa; */
    background-color: white;
    /* border-bottom: solid 0.45rem #eb0029; */
    /* overflow: hidden; */
    /* padding-bottom: 5rem; */
    position: relative;
}
.all_space_45 {
    padding: 10px;
}
.dataTables_filter input, .dataTables_length select, .chzn-container-multi .chzn-choices {
  border-radius: 0;
  box-shadow: none;
  height: calc(1.8rem + 5px);
  font-size: 12px;
  padding: 0 10px;
  border: 1px solid #ddd;
}
.dataTables_filter, .dataTables_paginate {
  float: right;
}
.dataTables_filter label input {
    margin: 0 0px 0 10px !important;
  }
  .dataTables_filter {
    position: relative;
    z-index: 99;
}
.column label, .dataTables_info, .form-inline label {
    font-size: 13px;
  }
  .table-bordered.dataTable {
  width: 100% !important;
}
table.dataTable thead th, table.dataTable thead td {
  padding: .75rem;
  text-align: left !important;
}
div.dataTables_wrapper.no-footer table.table.table-striped.table-bordered.dataTable.no-footer{
  border: 1px solid #ddd;
  border-collapse: collapse;
}
div.dataTables_wrapper.no-footer table.table.table-striped.table-bordered.dataTable.no-footer thead tr th{
  border: 1px solid #ddd;
  border-collapse: collapse;
}
.table-responsive table.dataTable tbody th,
.table-responsive table.dataTable tbody td {
  padding: 0.75rem;
}
.dataTables_wrapper .dataTables_length{
  margin-bottom: 4px;
}
.dataTables_length {
    float: left;
  }
  .dataTables_wrapper .dataTables_paginate {
    padding-top: 0.55em !important;
  }
  .dataTables_paginate li {
    display: inline-block;
    margin: 0 2px;
  }
  .dataTables_wrapper td.dataTables_empty {
    text-align: center !important;
  }
  
  div.dataTables_paginate.paging_simple_numbers>span>a.paginate_button.current,
  div.dataTables_paginate.paging_simple_numbers>span>a.paginate_button.current:hover {
    background: #03365c;
    border-color: #03365c;
    color: #fff !important;
    border-radius: 0px !important;
  }
  div.dataTables_paginate.paging_simple_numbers>span>a.paginate_button:hover {
    background: #03365c;
    border-color: #03365c;
    color: #fff !important;
    border-radius: 0px !important;
  }
  div.dataTables_paginate.paging_simple_numbers>span>a.paginate_button{
    color: #939598;
    border-color: #939598;
    background-color: transparent;
    border: 1px solid #939598 !important;
    border-radius: 0px !important;
  }
  .dataTables_length{
      display: none;
  }
  .paginate_button{
    padding: 10px;
    margin: 2px;
  }

  /*login page */

.login-field h4 {
  font-size: 15px;
  color: #fff;
  text-transform: uppercase;
  margin: 0 0 18px 0;
  font-family: 'Avenir-Book';
  font-weight: 600;
}
.login-field .form-control {
  border-radius: 0;
  background-color: #fff;
  box-shadow: none;
  font-size: 12px;
  height: 40px;
}
.login-field {
  float: left;
  width: 440px;
}
.login-btn {
    background-color: #36a2e1;
    border: 2px solid #36a2e1;
    color: #fff;
    font-size: 18px;
    text-transform: uppercase;
    font-family: 'Avenir-Book';
    font-weight: 600;
    border-radius: 0;
}
.login-btn:hover {
  background-color: #f8f8f8;
  border-color: #f8f8f8;
  color: #001938;
}
.forgot-pass a {
  color: #fff;
  font-size: 12px;
}
.login-btn:hover {
  background-color: #f8f8f8;
  border-color: #f8f8f8;
  color: #001938;
}
.forgot-form p {
  font-weight: normal;
  font-size: 16px;
}
.forgot-form .form-control {
  height: 44px;
  box-shadow: none;
}
.forgot-form  #forgot-btn {
  height: 44px;
  margin-top: 12px;
}
.forgot-pass a {
  color: #fff;
  font-size: 12px;
}
.checkbox-new input[type="radio"], .checkbox-new input[type="checkbox"] {
  height: 20px;
  left: 0;
  margin: 0;
  opacity: 0;
  position: absolute;
  top: 2px;
  width: 20px;
  z-index: 1;
}
.checkbox-new label::after {
  background: transparent;
  border: 2px solid #fff;
  content: "";
  height: 20px;
  left: 0;
  position: absolute;
  top: 2px;
  width: 20px;
}
.checkbox-new input[type="checkbox"]:checked ~ label::after {
  background-image: url(../img/check-icon.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 12px auto;
  border-color: #fff;
}
.checkbox-new label {
  color: #fff;
  font-size: 12px;
  padding: 3px 0 2px 30px;
  margin: 0;
}
.dis-table {
  display: table;
  width: 100%;
  height: 75vh;
}
.dis-cell {
  display: table-cell;
  vertical-align: middle;
  padding:0 20%;
}
.checkbox-new, .report-box, .report-lg-box {
  position: relative;
}
.remember-pass {
  margin: -7px 0 5px;
}
.clear {
  clear: both;
}
div#login-copyright, div#login-copyright a {
  display: inline-block;
  margin: 0 1px;
  color: #fff;
  font-size: 12px;
}
.footer.space-left {
  padding: 0 0 0 14%;
}
.login-field .alert {
    background-color: #fff;
    color: #ff0000;
    font-size: 12px;
  }
  .login-field button.close {
    color: #ff0000;
    font-size: 24px;
    line-height: 17px;
  }
  .login-lock {
  background: url(../img/login-lock-img.svg) no-repeat;
  width: 160px;
  height: 170px;
  float: left;
  margin: 36px 0 0;
}
@media only screen and (max-width: 767px) {
  .login-lock {
    display: none;
  }
  .login-field {
    width: 100%;
  }
}

/* table responsive */
.table-responsive table.dataTable tbody th,
.table-responsive table.dataTable tbody td {
  padding: 0.75rem;
}
.table-responsive{
  padding-right: 2px;
  padding-bottom: .5rem !important;
}
.table-responsive::-webkit-scrollbar {
    opacity: 0;
    width: 0;
}
@media only screen and (max-width: 1024px) {
              
  div.table-responsive.view-wildlife-report.pb-2 {
    overflow: auto !important;
  }
}
.actions{
  display: flex;
}
/*end of table responsive*/
