/********** Template CSS **********/
:root {
    --primary: #84b222;
    --light: #F3F4F5;
    --dark: #282F34;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}


/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Button ***/
.btn {
    font-weight: 500;
    transition: .5s;
}

.btn.btn-primary,
.btn.btn-secondary {
    color: #FFFFFF;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}


/*** Navbar ***/
.navbar.sticky-top {
    top: -100px;
    transition: .5s;
}

.navbar .navbar-brand {
    display: flex;
    align-items: center;
}

.navbar .navbar-brand img {
    max-height: 60px;
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

.navbar .navbar-nav .nav-link {
    margin-right: 30px;
    padding: 25px 0;
    color: #FFFFFF;
    font-size: 15px;
    font-weight: 500;
    text-transform: uppercase;
    outline: none;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--primary);
}

@media (max-width: 991.98px) {
    
    .navbar .navbar-nav .nav-link  {
        margin-right: 0;
        padding: 10px 0;
    }

    .navbar .navbar-nav {
        border-top: 1px solid #EEEEEE;
    }
}

.navbar .navbar-nav .nav-link {
    color: var(--dark);
    font-weight: 500;
}

@media (min-width: 992px) {
    
    .navbar .nav-item .dropdown-menu {
        display: block;
        border: none;
        margin-top: 0;
        top: 150%;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}


/*** Header ***/
.header-bg {
    background: linear-gradient(rgba(0, 0, 0, .7), rgba(0, 0, 0, .7)), url(../img/cricket.jpg) center center no-repeat;
    background-size: cover;
}

.header-bread {
    background: linear-gradient(rgba(0, 0, 0, .7), rgba(0, 0, 0, .7)), url(../img/bread.jpg) center center no-repeat;
    background-size: cover;
}

.btn-play {
    position: relative;
    display: block;
    box-sizing: content-box;
    width: 16px;
    height: 26px;
    border-radius: 100%;
    border: none;
    outline: none !important;
    padding: 18px 20px 20px 28px;
    background: #FFFFFF;
}

.btn-play:before {
    content: "";
    position: absolute;
    z-index: 0;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 60px;
    height: 60px;
    background: #FFFFFF;
    border-radius: 100%;
    animation: pulse-border 1500ms ease-out infinite;
}

.btn-play:after {
    content: "";
    position: absolute;
    z-index: 1;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 60px;
    height: 60px;
    background: #FFFFFF;
    border-radius: 100%;
    transition: all 200ms;
}

.btn-play span {
    display: block;
    position: relative;
    z-index: 3;
    width: 0;
    height: 0;
    left: -1px;
    border-left: 16px solid var(--primary);
    border-top: 11px solid transparent;
    border-bottom: 11px solid transparent;
}

@keyframes pulse-border {
    0% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        opacity: 1;
    }

    100% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(2);
        opacity: 0;
    }
}

.modal-video .modal-dialog {
    position: relative;
    max-width: 800px;
    margin: 60px auto 0 auto;
}

.modal-video .modal-body {
    position: relative;
    padding: 0px;
}

.modal-video .close {
    position: absolute;
    width: 30px;
    height: 30px;
    right: 0px;
    top: -30px;
    z-index: 999;
    font-size: 30px;
    font-weight: normal;
    color: #FFFFFF;
    background: #000000;
    opacity: 1;
}

.header-carousel .owl-nav {
    position: absolute;
    width: 200px;
    height: 40px;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: space-between;
}



.header-carousel .owl-nav .owl-prev,
.header-carousel .owl-nav .owl-next {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    background: transparent;
    border: 1px solid #FFFFFF;
    font-size: 22px;
    transition: .5s;
}


.header-carousel .owl-nav .owl-prev:hover,
.header-carousel .owl-nav .owl-next:hover {
    background: var(--primary);
    border-color: var(--primary);
}

.header-carousel .owl-dots {
    position: absolute;
    height: 45px;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    width: 15px;
    height: 15px;
    background: transparent;
    border: 1px solid #FFFFFF;
    transition: .5s;
}

.header-carousel .owl-dot::after {
    position: absolute;
    content: "";
    width: 5px;
    height: 5px;
    top: 4px;
    left: 4px;
    background: #FFFFFF;
    border-radius: 5px;
}

.header-carousel .owl-dot.active {
    background: var(--primary);
    border-color: var(--primary);
}

.breadcrumb-item + .breadcrumb-item::before {
    color: var(--light);
}


/*** Img Border ***/
.img-border {
    position: relative;
    height: 100%;
    min-height: 400px;
}

.img-border::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    right: 3rem;
    bottom: 3rem;
    border: 5px solid var(--primary);
}

.img-border img {
    position: absolute;
    top: 3rem;
    left: 3rem;
    width: calc(100% - 3rem);
    height: calc(100% - 3rem);
    object-fit: cover;
}


/*** Facts & Visiting Hours ***/
.facts {
    background: linear-gradient(rgba(0, 0, 0, .7), rgba(0, 0, 0, .7)), url(../img/grass.jpg) center center no-repeat;
    background-size: cover;
}

.visiting-hours {
    background: linear-gradient(rgba(0, 0, 0, .7), rgba(0, 0, 0, .7)), url(../img/Badminton_court.png) center center no-repeat;
    background-size: cover;
}

.visiting-hours .list-group-item {
    display: flex;
    justify-content: space-between;
    font-size: 15px;
    color: var(--light);
    background: rgba(0, 0, 0, .15);
    border-color: rgba(255, 255, 255, .15);
}

.visiting-hours .table {
    color: var(--light);
    background: rgba(0, 0, 0, .15);
}

.visiting-hours .table td {
    padding: .5rem 1rem;
    border-color: rgba(255, 255, 255, .15);
}

.visiting-hours .table tr:last-child td {
    border: none;
}


/*** Animal ***/
.animal-item {
    position: relative;
    display: block;
}

.animal-item .animal-text {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, .7);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding-bottom: 100px !important;
    opacity: 0;
    transition: .5s;
}

.animal-item:hover .animal-text {
    opacity: 1;
    padding-bottom: 20px !important;
}


/*** Membership ***/
.membership-item {
    border-radius: 4px;
    padding: 45px 30px;
    color: #FFFFFF;
    background: rgba(0, 0, 0, .7);
}

.membership-item img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 4px;
    object-fit: cover;
    z-index: -1;
}

.membership-item .display-1 {
    color: transparent;
    -webkit-text-stroke: 2px var(--primary);
}

.pricing-carousel{
    overflow-x: scroll;
    scroll-behavior: smooth;
}
.pricing-carousel::-webkit-scrollbar{
    display: none;
}


/*** Testimonial ***/
.testimonial-carousel::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    background: linear-gradient(to right, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
    z-index: 1;
}

.testimonial-carousel::after {
    position: absolute;
    content: "";
    top: 0;
    right: 0;
    height: 100%;
    width: 0;
    background: linear-gradient(to left, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
    z-index: 1;
}

@media (min-width: 768px) {
    .testimonial-carousel::before,
    .testimonial-carousel::after {
        width: 200px;
    }
}

@media (min-width: 992px) {
    .testimonial-carousel::before,
    .testimonial-carousel::after {
        width: 300px;
    }
}

.testimonial-carousel .owl-item .testimonial-text {
    background: var(--light);
    transform: scale(.8);
    transition: .5s;
}

.testimonial-carousel .owl-item.center .testimonial-text {
    background: var(--primary);
    transform: scale(1);
}

.testimonial-carousel .owl-item .testimonial-text *,
.testimonial-carousel .owl-item .testimonial-item img {
    transition: .5s;
}

.testimonial-carousel .owl-item.center .testimonial-text * {
    color: var(--light) !important;
}

.testimonial-carousel .owl-item.center .testimonial-item img {
    border-color: var(--primary) !important;
} 

.testimonial-carousel .owl-nav {
    position: absolute;
    width: 350px;
    top: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: space-between;
    opacity: 0;
    transition: .5s;
    z-index: 1;
}

.testimonial-carousel:hover .owl-nav {
    width: 300px;
    opacity: 1;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    position: relative;
    color: var(--primary);
    font-size: 45px;
    transition: .5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    color: var(--dark);
}


/*** Footer ***/
.footer {
    background: linear-gradient(rgba(0, 0, 0, .7), rgba(0, 0, 0, .7)), url(../img/oasis-min.png) center center no-repeat;
    background-size: cover;
}

.footer .btn.btn-social {
    margin-right: 5px;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    border: 1px solid #FFFFFF;
    transition: .3s;
}

.footer .btn.btn-social:hover {
    color: var(--primary);
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: #FFFFFF;
    font-size: 15px;
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    color: var(--primary);
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .copyright {
    padding: 25px 0;
    font-size: 15px;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright a {
    color: var(--light);
}

.footer .copyright a:hover {
    color: var(--primary);
}
.btn-primary:hover{
    background-color: #709611;
    border-color: #709611;
}

#message{
    color: red;
}
.form-control-app{
    width: 100%;
    padding: 8px;
    border-radius: 6px;
    border: 1px solid #ccc;
}

.btn-success-app{
    background-color: #709611;
    border-color: #709611;
    color: #FFFFFF;
    border-radius: 6px;
    width: 100%;
    padding: 8px;
}

.filter .card-header{
    padding: 0;
}

.datepicker,
.table-condensed {
  width: 100%;
}
.list-group > .list-group-item{
    cursor: pointer;
}
.datepicker table tr td.active,.datepicker table tr td.active:hover {
    background-image:none;
    background-color: #84b222 !important;
    color: #ffffff !important;
    border-color: #84b222 !important;
}
.store-btn {
    display: inline-block;
    padding: 0.5rem 1rem;
    font-size: 1rem;
    border-radius: 0.5rem;
    text-decoration: none;
    transition: all 0.3s ease;
  }
  
  .store-btn i {
    margin-right: 0.5rem;
  }
  
  .store-btn.google-play {
    background-color: #00c853;
    color: #fff;
  }
  
  .store-btn.google-play:hover {
    background-color: #009624;
  }
  
  .store-btn.apple-store {
    background-color: #000;
    color: #fff;
  }
  
  .store-btn.apple-store:hover {
    background-color: #333;
  }

  .alert {
    font-family: sans-serif;
    padding: 15px 50px 15px 15px;
      margin-bottom: 20px;
      border: 1px solid transparent;
      border-radius: 4px;
  }
  
  .alert-success {
    color: #3c763d;
      background-color: #dff0d8;
      border-color: #d6e9c6;
  }
  
  
  /*DEMO*/
  .preview {
    margin: 10px;
    display: none;
  }
  .preview--rounded {
    width: 160px;
    height: 160px;
    border-radius: 50%;
  }
  /* IMMUTABLE */
  .hide {
    display: none !important;
  }
  * {
    box-sizing: border-box;
  }
  .photo__zoom {
    position: relative;
    padding-left: 22px;
    padding-right: 22px;
  /**
      * Zoom
      */
  /**
      * Zoom handler
      */
  /**
      * FOCUS
      */
  /**
      * Zoom track
      */
  /**
      * ICONS
      */
  }
  .photo__zoom input[type=range] {
    -webkit-appearance: none;
    width: 100%;
    background: transparent;
    height: 18px;
  }
  .photo__zoom input[type=range]::-webkit-slider-thumb {
    -webkit-appearance: none;
  }
  .photo__zoom input[type=range]:focus {
    outline: none;
  }
  .photo__zoom input[type=range]::-ms-track {
    width: 100%;
    cursor: pointer;
    background: transparent;
    border-color: transparent;
    color: transparent;
  }
  .photo__zoom input[type=range]:focus::-ms-thumb {
    border-color: #268eff;
    box-shadow: 0 0 1px 0px #268eff;
  }
  .photo__zoom input[type=range]:focus::-moz-range-thumb {
    border-color: #268eff;
    box-shadow: 0 0 1px 0px #268eff;
  }
  .photo__zoom input[type=range]:focus::-webkit-slider-thumb {
    border-color: #268eff;
    box-shadow: 0 0 1px 0px #268eff;
  }
  .photo__zoom input[type=range]::-webkit-slider-thumb {
    -webkit-appearance: none;
    margin-top: -9px;
    box-sizing: border-box;
    cursor: pointer;
    width: 18px;
    height: 18px;
    display: block;
    border-radius: 50%;
    background: #eee;
    border: 1px solid #ddd;
  }
  .photo__zoom input[type=range]::-webkit-slider-thumb:hover {
    border-color: #c1c1c1;
  }
  .photo__zoom input[type=range]::-ms-thumb {
    margin-top: 0;
    box-sizing: border-box;
    cursor: pointer;
    width: 18px;
    height: 18px;
    display: block;
    border-radius: 50%;
    background: #eee;
    border: 1px solid #ddd;
  }
  .photo__zoom input[type=range]::-ms-thumb:hover {
    border-color: #c1c1c1;
  }
  .photo__zoom input[type=range]::-moz-range-thumb {
    margin-top: 0;
    box-sizing: border-box;
    cursor: pointer;
    width: 18px;
    height: 18px;
    display: block;
    border-radius: 50%;
    background: #eee;
    border: 1px solid #ddd;
  }
  .photo__zoom input[type=range]::-moz-range-thumb:hover {
    border-color: #c1c1c1;
  }
  .photo__zoom input[type=range]::-webkit-slider-runnable-track {
    width: 100%;
    height: 1px;
    cursor: pointer;
    background: #eee;
    border: 0;
  }
  .photo__zoom input[type=range]::-moz-range-track {
    width: 100%;
    height: 1px;
    cursor: pointer;
    background: #eee;
    border: 0;
  }
  .photo__zoom input[type=range]::-ms-track {
    width: 100%;
    height: 1px;
    cursor: pointer;
    background: #eee;
    border: 0;
  }
  .photo__zoom input[type=range].zoom--minValue::before,
  .photo__zoom input[type=range].zoom--maxValue::after {
    color: #f8f8f8;
  }
  
  .photo__zoom input[type=range]::after {
    font-size: 18px;
    right: -2px;
    top: 2px;
  }
  .photo__zoom input[type=range]::before {
    font-size: 14px;
    left: 4px;
    top: 4px;
  }
  /**
  * FRAME STYLE
  */
  .photo__frame--circle {
    border: 1px solid #e2e2e2;
    border-radius: 50%;
  }
  .photo__helper {
    position: relative;
    background-repeat: no-repeat;
    background-color: transparent;
    padding: 15px 0;
  }
  .photo__helper .canvas--helper {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
  }
  .photo__frame img,
  .photo__helper {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
  }
  .profile {
    position: relative;
    font-family: 'HelveticaNeueLTPro-Roman', sans-serif;
    font-size: 85%;
    width: 300px;
    margin: auto;
  }
  .photo {
    text-align: center;
    margin-bottom: 15px;
  }
  .photo input[type=file] {
    display: none;
  }
  .photo__options {
    margin-top: 15px;
    position: relative;
    text-align: left;
  }
  .photo__options .remove {
    padding: 0;
    padding: 0;
    display: inline-block;
    text-decoration: none;
    color: #ddd;
    font-size: 18px;
    width: 20%;
    text-align: center;
    vertical-align: middle;
  }
  .photo__options .remove:hover {
    color: #000;
  }
  .photo__zoom {
    vertical-align: middle;
    width: 80%;
    display: inline-block;
  }
  .photo__frame {
    cursor: move;
    overflow: hidden;
    position: relative;
    display: inline-block;
    width: 160px;
    height: 160px;
  }
  .photo__frame img,
  .photo__helper img {
    position: relative;
  }
  .photo__frame .message {
    position: absolute;
    left: 5px;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    display: inline-block;
    color: #268eff;
    z-index: 3;
  }
  .photo__frame .is-dragover {
    display: none;
  }
  .message p {
    font-size: 0.9em;
  }
  .photo__options {
    list-style: none;
  }
  .photo__options li {
    display: inline-block;
    text-align: center;
    width: 50%;
  }
  .photo--empty .photo__frame {
    cursor: pointer;
  }
  /**
  * IMG states
  */
  .profile.is-dragover .photo__frame img,
  .photo--empty img,
  .photo--error img,
  .photo--error--file-type img,
  .photo--error--image-size img,
  .photo--loading img {
    display: none;
  }
  /**
  * States
  */
  /** SELECT PHOTO MESSAGE */
  .message--desktop,
  .message--mobile {
    display: none;
  }
  /* MOBILE */
  .is-mobile .message--mobile {
    display: inline-block;
  }
  .is-mobile .message--desktop {
    display: none;
  }
  /* DESKTOP */
  .is-desktop .message--desktop {
    display: inline-block;
  }
  .is-desktop .message--mobile {
    display: none;
  }
  /* DEFAULT */
  .message.is-empty,
  .message.is-loading,
  .message.is-wrong-file-type,
  .message.is-wrong-image-size,
  .message.is-something-wrong,
  .message.is-dragover {
    display: none;
  }
  /* EMPTY */
  .photo--empty .photo__options {
    display: none;
  }
  .photo--empty .message.is-empty {
    display: inline-block;
  }
  .photo--empty .photo__frame:hover {
    background: #268eff;
  }
  .photo--empty .photo__frame:hover .message {
    color: #fff;
  }
  /* LOADING */
  .photo--loading .message.is-loading {
    display: inline-block;
  }
  .photo--loading .message.is-empty,
  .photo--loading .message.is-wrong-file-type,
  .photo--loading .message.is-dragover,
  .photo--loading .message.is-wrong-image-size,
  .photo--loading .photo__options {
    display: none;
  }
  /* ERROR */
  /* UNKNOWN */
  .photo--error .message.is-empty,
  .photo--error .message.is-loading,
  .photo--error .message.is-dragover,
  .photo--error .message.is-wrong-image-size,
  .photo--error .photo__options {
    display: none;
  }
  .photo--error .message.is-something-wrong {
    display: inline-block;
  }
  /* FILE TYPE*/
  .photo--error--file-type .message.is-empty,
  .photo--error--file-type .message.is-loading,
  .photo--error--file-type .message.is-dragover,
  .photo--error--file-type .message.is-wrong-image-size,
  .photo--error--file-type .photo__options {
    display: none;
  }
  .photo--error--file-type .message.is-wrong-file-type {
    display: inline-block;
  }
  /* IMAGE SIZE */
  .photo--error--image-size .message.is-empty,
  .photo--error--image-size .message.is-loading,
  .photo--error--image-size .message.is-dragover,
  .photo--error--image-size .message.is-wrong-file-type,
  .photo--error--image-size .photo__options {
    display: none;
  }
  .photo--error--image-size .message.is-wrong-image-size {
    display: inline-block;
  }
  /* DRAGOVER */
  .profile.is-dragover .photo__frame .is-dragover {
    display: inline-block;
  }
  .profile.is-dragover .message.is-empty,
  .profile.is-dragover .message.is-loading,
  .profile.is-dragover .message.is-wrong-file-type,
  .profile.is-dragover .message.is-wrong-image-size {
    display: none;
  }
  #myAlert{
    position: absolute;
    right: 45px;
    top: 100px;
  }