/********** Template CSS **********/
:root {
    --primary: #C58C17;
    --secondary: #252935;
    --light: #6C7293;
    --dark: #000000;
}

.pb-6 {
    padding-bottom: 4.5rem !important;
}

.h4 {
    margin-bottom: 0rem !important;
}

.text-12 {
    font-size: 12px;
}

.text-14 {
    font-size: 14px;
}

.text-16 {
    font-size: 16px;
}

.carousel-control-prev {
    left: 10px;
}

.carousel-control-next {
    right: 10px;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}

.breeding-add {
    position: fixed;
    display: none;
    left: 45px;
    bottom: 45px;
    z-index: 99;
}

.animal-add {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}

.text-small {
    font-size: 12px;
}

ul {
    list-style-type: none!important;
}

.text-off-white {
    color: #cdcdcd !important;
}

.paperclip>input {
    display: none;
}

.comment {
    margin-right: 20%;
    background: #c48d30;
    padding: 10px;
    border: 1px solid #c48d30;
    border-radius: 16px 16px 16px 0;
    margin-bottom: 5px;
    font-size: 14px;
}

.comment-me {
    margin-left: 20%;
    background: #5d75a0;
    padding: 10px;
    border: 1px solid #5d75a0;
    border-radius: 16px 16px 0 16px;
    margin-bottom: 5px;
    font-size: 14px;
    text-align: right!important;
}

.animal-list-picture {
    width: 100%;
    border-radius: 3px;
}

.bi-plus {
    font-size: 50px;
}

.nav-tabs {
    border-bottom: none;
    display: flex;
    justify-content: center;
}

.nav .nav-link.active {
    color: #bc1212 !important;
    background-color: #252935 !important;
    border-color: #252935 !important;
}

.nav-item {
    font-size: 15px;
}

#buttonContainer {
    position: relative;
    width: max-content;
  }
  
  #hiddenButtons {
    white-space: nowrap;
    transition: all 0.5s ease; /* Smooth transition for sliding effect */
    position: fixed;
    right: 100px;
    bottom: 55px;
  }
  
  #hiddenButtons button {
    margin-top: 5px; /* Space between buttons */
  }

@font-face {
    font-family: 'Audiowide';
    src: url('https://datapetz.com/admin/fonts/Audiowide-Regular.ttf') format("truetype");
  }


/*** 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;
}

.audiowide {
    font-family: 'Audiowide' !important;
}

.main {
    height: 100vh;
}

.sticky-bottom {
    position: sticky;
    bottom: 0; 
}

.carousel-indicators {
    display: none;
}

.light-purple {
    color: #6C7293;
}

.profile-image {
    max-width: 120px;
}

/*** Images ***/
.carousel img {
    width: 40px;
}

/*** Logo ***/
.logo img {
    width: 42px;
}

.logo h4 {
    font-family: 'Audiowide';
}

.login-img {
    width: 170px;
}

@media (max-width: 600px) {
    .login-img {
        width: 170px;
    }
}

.height-10 {
    height: 10vh;
}

.height-20 {
    height: 20vh;
}

.height-30 {
    height: 30vh;
}

.height-40 {
    height: 40vh;
}

.height-50 {
    height: 50vh;
}

.height-60 {
    height: 60vh;
}

.height-70 {
    height: 70vh;
}

.height-80 {
    height: 80vh;
}

.height-85 {
    height: 85vh;
}

.height-90 {
    height: 90vh;
}

.height-100 {
    height: 100vh;
}

/*** Button ***/
.btn {
    transition: .5s;
}

.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: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    border-radius: 50px;
}


/*** Layout ***/
.sidebar {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    width: 250px;
    height: 100vh;
    overflow-y: auto;
    background: var(--secondary);
    transition: 0.5s;
    z-index: 999;
}

.content {
    margin-left: 250px;
    min-height: 100vh;
    background: var(--dark);
    transition: 0.5s;
}

@media (min-width: 992px) {
    .sidebar {
        margin-left: 0;
    }

    .sidebar.open {
        margin-left: -250px;
    }

    .content {
        width: calc(100% - 250px);
    }

    .content.open {
        width: 100%;
        margin-left: 0;
    }
}

@media (max-width: 991.98px) {
    .sidebar {
        margin-left: -250px;
    }

    .sidebar.open {
        margin-left: 0;
    }

    .content {
        width: 100%;
        margin-left: 0;
    }
}


/*** Navbar ***/
.sidebar .navbar .navbar-nav .nav-link {
    padding: 7px 20px;
    color: var(--light);
    font-weight: 500;
    border-left: 3px solid var(--secondary);
    border-radius: 0 30px 30px 0;
    outline: none;
}

.sidebar .navbar .navbar-nav .nav-link:hover,
.sidebar .navbar .navbar-nav .nav-link.active {
    color: var(--primary);
    background: var(--dark);
    border-color: var(--primary);
}

.sidebar .navbar .navbar-nav .nav-link i {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--dark);
    border-radius: 40px;
}

.sidebar .navbar .navbar-nav .nav-link:hover i,
.sidebar .navbar .navbar-nav .nav-link.active i {
    background: var(--secondary);
}

.sidebar .navbar .dropdown-toggle::after {
    position: absolute;
    top: 15px;
    right: 15px;
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    transition: .5s;
}

.sidebar .navbar .dropdown-toggle[aria-expanded=true]::after {
    transform: rotate(-180deg);
}

.sidebar .navbar .dropdown-item {
    padding-left: 25px;
    border-radius: 0 30px 30px 0;
    color: var(--light);
}

.sidebar .navbar .dropdown-item:hover,
.sidebar .navbar .dropdown-item.active {
    background: var(--dark);
}

.content .navbar .navbar-nav .nav-link {
    margin-left: 25px;
    padding: 12px 0;
    color: var(--light);
    outline: none;
}

.content .navbar .navbar-nav .nav-link:hover,
.content .navbar .navbar-nav .nav-link.active {
    color: var(--primary);
}

.content .navbar .sidebar-toggler,
.content .navbar .navbar-nav .nav-link i {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--dark);
    border-radius: 40px;
}

.content .navbar .dropdown-item {
    color: var(--light);
}

.content .navbar .dropdown-item:hover,
.content .navbar .dropdown-item.active {
    background: var(--dark);
}

.content .navbar .dropdown-toggle::after {
    margin-left: 6px;
    vertical-align: middle;
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    transition: .5s;
}

.content .navbar .dropdown-toggle[aria-expanded=true]::after {
    transform: rotate(-180deg);
}

@media (max-width: 575.98px) {
    .content .navbar .navbar-nav .nav-link {
        margin-left: 15px;
    }
}


/*** Date Picker ***/
.bootstrap-datetimepicker-widget.bottom {
    top: auto !important;
}

.bootstrap-datetimepicker-widget .table * {
    border-bottom-width: 0px;
}

.bootstrap-datetimepicker-widget .table th {
    font-weight: 500;
}

.bootstrap-datetimepicker-widget.dropdown-menu {
    padding: 10px;
    border-radius: 2px;
}

.bootstrap-datetimepicker-widget table td.active,
.bootstrap-datetimepicker-widget table td.active:hover {
    background: var(--primary);
}

.bootstrap-datetimepicker-widget table td.today::before {
    border-bottom-color: var(--primary);
}


/*** Testimonial ***/
.progress .progress-bar {
    width: 0px;
    transition: 2s;
}


/*** Testimonial ***/
.testimonial-carousel .owl-dots {
    margin-top: 24px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.testimonial-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    width: 15px;
    height: 15px;
    border: 5px solid var(--primary);
    border-radius: 15px;
    transition: .5s;
}

.testimonial-carousel .owl-dot.active {
    background: var(--dark);
    border-color: var(--primary);
}

/*** Sliding Menu ***/
.menu-opener,
.menu-opener:hover,
.menu-opener.active,
.menu-opener-inner,
.menu-opener-inner::before,
.menu-opener-inner::after,
.menu,
.menu.active {
  -webkit-transition: 250ms all;
  transition: 250ms all;
}

.menu-opener {
  background: #c58c17;
  border: solid 1px;
  border-color: #252935;
  border-radius: 50px;
  cursor: pointer;
  height: 64px;
  position: fixed;
  bottom: 45px;
  right: 53px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  width: 64px;
  z-index: 9;
}

.btn-lg-dp {
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    border-radius: 50px;
    width: 48px;
    height: 48px;
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}

.btn-single {
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    border-radius: 50px;
    width: 48px;
    height: 48px;
}

.menu-opener-inner {
  background: #ffffff;
  height: .5rem;
  margin-left: .75rem;
  margin-top: 1.75rem;
  width: 2.5rem;
}

.menu-opener-inner::before,
.menu-opener-inner::after {
  background: #ffffff;
  content: '';
  display: block;
  height: .5rem;
  width: 2.5rem;
}

.menu {
  background: transparent;
  color: transparent;
  width: 80px;
  position: fixed;
  bottom: 45px;
  right: 45px;
  height: 0rem;
  z-index: 2;
  overflow: hidden;
}

ul.menu-inner {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.menu-inner li {
  display: block;
  text-align: center;
  margin-bottom: 15px;
}

i.h {
  color: #fff;
  font: 700 48.28px Tahoma;
  line-height: 71px;
  text-shadow: 0px 0px #819da6, 1px 1px #819da6, 2px 2px #819da6, 3px 3px #819da6, 4px 4px #819da6, 5px 5px #819da6, 6px 6px #819da6, 7px 7px #819da6, 8px 8px #819da6, 9px 9px #819da6, 10px 10px #819da6, 11px 11px #819da6, 12px 12px #819da6, 13px 13px #819da6, 14px 14px #819da6, 15px 15px #819da6, 16px 16px #819da6, 17px 17px #819da6, 18px 18px #819da6, 19px 19px #819da6, 20px 20px #819da6, 21px 21px #819da6, 22px 22px #819da6, 23px 23px #819da6, 24px 24px #819da6, 25px 25px #819da6, 26px 26px #819da6, 27px 27px #819da6, 28px 28px #819da6;
}

.menu-inner a {
  /* display: table-cell; */
  height: 48px;
  width: 48px;
  color: #FFFFFF;
  text-align: center;
  text-decoration: none;
}

.menu-inner a:hover {
  color: #333;
  background: #bababa;
}

.menu-inner a.selected {
  color: #333;
}

.logo {
  background-color: #252935;
  text-align: center;
  overflow: hidden;
}

.logo a:hover {
  background-color: #252935;
}

.menu-inner a > .fa {
  font-size: 28px;
  line-height: 71px;
}

.menu.active {
  height: 235px;
}

.menu-opener-inner::before {
  -webkit-transform: translateY(-0.75rem);
  -ms-transform: translateY(-0.75rem);
  transform: translateY(-0.75rem);
}

.menu-opener-inner::after {
  -webkit-transform: translateY(0.25rem);
  -ms-transform: translateY(0.25rem);
  transform: translateY(0.25rem);
}

.menu-opener-inner.active {
  background: transparent;
}

.menu-opener-inner.active::before {
  -webkit-transform: translateY(0rem) rotate(-45deg);
  -ms-transform: translateY(0rem) rotate(-45deg);
  transform: translateY(0rem) rotate(-45deg);
}

.menu-opener-inner.active::after {
  -webkit-transform: translateY(-0.5rem) translateX(0rem) rotate(45deg);
  -ms-transform: translateY(-0.5rem) translateX(0rem) rotate(45deg);
  transform: translateY(-0.5rem) translateX(0rem) rotate(45deg);
}

.carousel-control-next-icon {
    box-shadow: inset 0px 0px 5px 2px #000;
}

.carousel-control-prev-icon {
    box-shadow: inset 0px 0px 5px 2px #000;
}

.height-324 {
    height: 324px;
}

.leftedge {
    left: 0px;
    width: 10%;
}

.rightedge {
    right: 0px;
    width: 10%;
}