@font-face {
  font-family: "Poppins-Regular";
  src: url("../font/Poppins/Poppins-Regular.ttf") format("truetype");
}

@font-face {
  font-family: "Poppins-Bold";
  src: url("../font/Poppins/Poppins-Bold.ttf") format("truetype");
}

body,
html {
  font-family: "Poppins-Regular";
  height: 100%;
  background-color: #ffffff;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
}
h4 {
  font-family: "Poppins-Bold";
  color: #1c1d1c;
}
p {
  font-family: "Poppins-Regular";
  font-size: 15px;
}
b {
  font-family: "Poppins-Bold";
  color: #1c1d1c;
}
a,
a:hover {
  font-family: "Poppins-Regular";
  color: #1c1d1c;
  text-decoration: none;
}
span {
  font-family: "Poppins-Regular";
  font-size: 15px;
}
label {
  height: 25px;
}
small {
  font-family: "Poppins-Regular";
  color: #1c1d1c;
}
table {
  font-family: "Poppins-Regular";
  font-size: 15px;
}
.table-hover tbody tr:hover td,
.table-hover tbody tr:hover th {
  background-color: rgba(125, 154, 153, 0.3);
}
.content {
  height: 95vh;
}
.card_view {
  height: 86vh;
  border-radius: 5px;
}
.help-block {
  font-family: "Poppins-Regular";
  color: #f94144;
  text-align: center;
}
.login_logo {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 80%;
}
.powered_by {
  display: inline;
  margin-left: auto;
  margin-right: auto;
  width: 10%;
}
#animals {
  height: 30vh;
  max-height: 30vh;
  overflow: auto;
}
#profileList {
  height: 30vh;
  max-height: 30vh;
  overflow: auto;
}
label {
  font-family: "Poppins-Regular";
  color: #1c1d1c;
}
input {
  font-family: "Poppins-Regular";
  background: #ffffff;
  /* box-shadow: inset -9px -5px 45px #FFFFFF, inset 7px 8px 37px rgba(0, 0, 0, 0.25); */
}
.button {
  font-family: "Poppins-Regular";
  text-align: center;
  color: #ffffff;
  background: #7d9a99;
  box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease 0s;
}
.button:hover {
  font-family: "Poppins-Regular";
  background-color: #7d9a99;
  box-shadow: 0px 15px 20px rgba(0, 0, 0, 0.1);
  color: #ffffff;
  transform: translateY(-2px);
}
.form-control:focus {
  border-color: #7d9a99;
  box-shadow: 0 0 0 0.2rem rgba(126, 167, 66, 0.25);
}
#profile_picture {
  width: 32px;
  height: 32px;
  border-radius: 200px;
  object-fit: cover;
}
.profile_container {
  position: relative;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 225px;
  height: 225px;
  border-radius: 225px;
}
.profile_image {
  display: block;
  width: 225px;
  height: 225px;
  border-radius: 225px;
  object-fit: cover;
}
.profile_overlay {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 225px;
  height: 225px;
  border-radius: 225px;
  opacity: 0;
  transition: 0.5s ease;
  background-color: #7d9a99;
}
.profile_container:hover .profile_overlay {
  opacity: 0.8;
}
.profile_text {
  color: white;
  font-size: 20px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  text-align: center;
}
.upload-container {
  position: relative;
  width: 100%;
  max-width: 250px;
  margin-left: auto;
  margin-right: auto;
}
.upload-image {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: auto;
  max-width: 250px;
  height: 100%;
  max-height: 200px;
}
.upload-overlay {
  position: absolute;
  bottom: 0;
  background: rgb(0, 0, 0);
  background: rgba(0, 0, 0, 0.5); /* Black see-through */
  color: #f1f1f1;
  width: 100%;
  transition: 0.5s ease;
  opacity: 0;
  color: white;
  font-size: 20px;
  padding: 20px;
  text-align: center;
}
.upload-container:hover .upload-overlay {
  opacity: 1;
}
.animal_image {
  width: 350px;
  height: 350px;
  border-radius: 350px;
  object-fit: cover;
}
.navbar {
  background-color: #ffffff;
  box-shadow: inset 0 0 15px rgba(55, 84, 170, 0),
    inset 0 0 20px rgba(255, 255, 255, 0), 7px 7px 15px rgba(55, 84, 170, 0.15),
    -7px -7px 20px rgba(255, 255, 255, 1),
    inset 0px 0px 4px rgba(255, 255, 255, 0.2);
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}
.fa-stack {
  font-size: 1em;
}
.text-bg-cactus {
  background-color: #7d9a99;
  border-color: #7d9a99;
  color: #ffffff;
}
.cactus-green {
  color: #7d9a99;
}
.cactus-pink {
  color: #d2afd7;
}
.btn-outline-cactus {
  border-color: #7d9a99;
  color: #7d9a99;
}
.btn-outline-cactus:hover {
  background-color: #7d9a99;
  border-color: #7d9a99;
  color: #ffffff;
}
.btn-outline-cactus-pink {
  border-color: #d2afd7;
  color: #d2afd7;
}
.btn-outline-cactus-pink:hover {
  background-color: #d2afd7;
  border-color: #d2afd7;
  color: #ffffff;
}
.nav-link {
  color: #7d9a99;
}
.nav-link:hover {
  color: #7d9a99;
}
.text-cactus {
  color: #7d9a99;
}
.loader {
  height: 50vh;
}
.form-check-input:checked {
  background-color: #7d9a99;
  border-color: #7d9a99;
}
/* The switch - the box around the slider */
.switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
}

/* Hide default HTML checkbox */
.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

/* The slider */
.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

input:checked + .slider {
  background-color: #7d9a99;
}

input:disabled + .slider {
  background-color: #ccc;
}

input:focus + .slider {
  box-shadow: 0 0 1px #7d9a99;
}

input:checked + .slider:before {
  -webkit-transform: translateX(26px);
  -ms-transform: translateX(26px);
  transform: translateX(26px);
}

/* Rounded sliders */
.slider.round {
  border-radius: 34px;
}

.slider.round:before {
  border-radius: 50%;
}
.pagination .page-item.active .page-link {
  background-color: #7d9a99;
  border-color: #7d9a99;
}
.page-link {
  color: #7d9a99;
}
.page-link:hover {
  color: #d2afd7;
}
.fa-ellipsis-stroke:hover {
  color: #7d9a99;
}
.steps {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  position: relative;
}
.step-button {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  border: none;
  background-color: #d2afd7;
  transition: 0.4s;
}
.step-button[aria-expanded="true"] {
  width: 15px;
  height: 15px;
  background-color: #7d9a99;
  color: #fff;
}
.done {
  background-color: #7d9a99;
  color: #fff;
}
.step-item {
  z-index: 10;
  text-align: center;
}
#progress {
  -webkit-appearance: none;
  position: absolute;
  width: 90%;
  z-index: 5;
  height: 3px;
  margin-left: 10px;
}

/* to customize progress bar */
#progress::-webkit-progress-value {
  background-color: #7d9a99;
  transition: 0.5s ease;
}

#progress::-webkit-progress-bar {
  background-color: #d2afd7;
}
.fa-circle-plus {
  color: dimgray;
}
.fa-circle-plus:hover {
  color: #7d9a99;
}
.fa-circle-minus {
  color: dimgray;
}
.fa-circle-minus:hover {
  color: red;
}
.help_label {
  color: red;
}
.fa-circle-check {
  color: #7d9a99;
}
.fa-circle-envelope {
  color: #7d9a99;
}
.animal-gallery {
  width: 190px;
  height: 190px;
}
.animal-gallery-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.animal-gallery-image:hover {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
}
.animal-image {
  height: 400px;
}
.fa-star:hover {
  color: gold;
}
#modalView {
  width: 100%;
}
#modalViewSecond {
  width: 100%;
}
.modal-title {
  width: 100%;
}
