.btn:not(:disabled):not(.disabled) {
  cursor: pointer;
}


.btn {
  color: #ffffff;
  background: #158825;
  border: 1px solid #158825;
  border-radius: 0;
  font-size: 15px;
  font-weight: 500;
  line-height: 1;
  padding: 12px 16px;
  transition: 0.3s ease-in-out;
}

.default_btn {
  color: #ffffff;
  background: #158825;
  border: 1px solid #158825;
  border-radius: 0;
  font-size: 15px;
  font-weight: 500;
  line-height: 1;
  padding: 12px 16px;
  transition: 0.3s ease-in-out;
}

.green-bdr-btn {
  border: 1px solid #00A217;
  background: #fff;
  color: #0D1834;
}


.btn.green-bdr-btn {
  border: 1px solid #00A217;
  background: #fff;
  color: #0D1834;
}

.darkgreen-btn {
  border: 1px solid #FFFFFF;
  color: #fff;
  background: #0D342E;
}
.darkgreen-btn:hover {
  background: #158825;
  border: 1px solid #158825;
  color: #fff;
}

.link_with_icon-btn {
  background: transparent;
  color: #000;
  border: none;
  padding: 10px 0;
  position: relative;
}

.link_with_icon-btn img {
  transition: 0.3s ease-in-out;
  margin-left: 10px;
}

.link_with_icon-btn:hover {
  color: #158825;
  background: transparent;
}

.link_with_icon-btn:hover img {
  transform: translateX(15px);
}

.white-btn {
  border: 1px solid #FFFFFF;
  color: #fff;
  background: transparent;
  font-size: 18px;
  padding: 16px 30px;
}


.white-btn:hover {
  background: #158825;
  border: 1px solid #158825;
  color: #fff;
}


@media (min-width: 1199.98px) {
.darkgreen-btn {
    font-size: 18px;
    padding: 18px 30px;
    /* padding: 16px 30px; */
}
}

.green-text-btn{
  color: #158825;
  text-decoration: underline;
}

.white_bg_btn {
  display: block;
  color: #168C03;
  padding: 17px;
  background: #fff;
  border: 0;
}
.btn-tags {
  padding: 15px 30px;
  border: 1px solid #DBDBDB;
  border-radius: 30px;
  display: inline-block;
  margin-bottom: 15px;
  margin-right: 15px;
  font-size: 14px;
  font-family: "Oxygen", sans-serif;
  transition: 0.3s ease-in-out;
}
.btn.mobile-black-btn {
    border: 1px solid #000;
    color: #000000;
    padding: 16px 25px;
    font-size: 16px;
    background: rgba(255, 255, 255, 0);
}

@media (max-width: 991.98px) {
  .btn {
    height: 50px !important;
    display: flex ;
    justify-content: center !important;
    align-items: center !important;
  }
  .mobile-black-btn {
    width: max-content;
    margin: 0 auto;
  }
  .care-easy-btn .btn.dark-btn:hover {
    background-color: #158825 !important;
    transition: none;
  }
}