/********** Template CSS **********/


:root {
  --primary: #36b15d;
  --secondary: #FFF0E6;
  --light: #F8F8F9;
  --dark: #001D23;
  --highlight: #e91e63;
}


.back-to-top {
  position: fixed;
  display: none;
  right: 30px;
  bottom: 30px;
  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-outline-primary:hover {
  color: #FFFFFF;
}

.btn.btn-primary:hover {
  color: var(--primary);
  background: transparent;
}

.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 ***/
.fixed-top {
  transition: .5s;
}

.top-bar {
  height: 45px;
  border-bottom: 1px solid rgba(255, 255, 255, .07);
}

.dropdown-item .submenu-icon {
  position: absolute;
  right: 10px;
  /* Distance from the right edge */
  top: 50%;
  /* Center vertically */
  transform: translateY(-50%);
  /* Perfect vertical centering */
  font-size: 14px;
  transition: transform 0.3s ease;
  /* Smooth animation */
  pointer-events: none;
  /* Avoid blocking clicks */
}



.navbar {
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
}

.navbar-brand {
  font-weight: 700;
}

.navbar-nav .nav-link {
  margin-right: 30px;
  padding: 25px 0;
  color: #efefef;
  font-size: 15px;
  /* text-transform: uppercase; */
  font-weight: 500;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: #efefef;
}

/* Keep main nav link highlighted when dropdown is hovered */
.dropdown:hover>.nav-link {
  color: var(--primary) !important;
}

/* Dropdown Indicators */
.dropdown-toggle::after {
  display: none;
}

.dropdown-toggle .fa-chevron-down {
  margin-left: 8px;
  font-size: 12px;
  transition: transform 0.3s ease;
}

.dropdown:hover .dropdown-toggle .fa-chevron-down {
  transform: rotate(180deg);
}

/* Desktop Dropdown Styles */
@media (min-width: 992px) {
  .dropdown-menu {
    display: block;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-15px);
    transition: all 0.5s ease;
    border: none;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
    border-radius: 8px;
    min-width: 200px;
  }

  .dropdown:hover>.dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  /* Level 2 Dropdown */
  .dropdown-submenu {
    position: relative;
  }

  .dropdown-submenu .dropdown-menu {
    top: 0;
    right: 100%;
    left: auto;
    margin-top: 0;

  }

  .dropdown-submenu:hover>.dropdown-menu {
    opacity: 1;
    visibility: visible;

  }


  /* Level 3 Dropdown */
  .dropdown-submenu .dropdown-submenu .dropdown-menu {
    top: 0;
    right: 100%;
    left: auto;
  }

  /* Highlight "Services" while hovered OR any of its descendants hovered */
  .dropdown-submenu:hover>.dropdown-item,
  .dropdown-submenu:has(.dropdown-menu:hover)>.dropdown-item,
  .dropdown-submenu:has(.dropdown-item:hover)>.dropdown-item {
    background-color: var(--primary);
    color: #fff;
  }

  /* Level 3 and deeper: same ancestor-highlighting principle */
  .dropdown-submenu .dropdown-submenu:hover>.dropdown-item,
  .dropdown-submenu .dropdown-submenu:has(.dropdown-menu:hover)>.dropdown-item,
  .dropdown-submenu .dropdown-submenu:has(.dropdown-item:hover)>.dropdown-item {
    background-color: var(--primary);
    color: #fff;
  }

  .navbar-nav .nav-link {
    margin-right: 20px !important;
    padding: 25px 0;
  color: #efefef;
    font-size: 15px;
    font-weight: 500;
    transition: color .3s ease;
  }

  /* Default state */
  .submenu-icon {
    transition: transform 0.3s ease;

  }

  /* Rotate when parent dropdown is hovered */
  /* .dropdown-submenu:hover > .dropdown-item .submenu-icon {
  transform: rotate(-180deg);
} */


 /* Default: open RIGHT */
  .dropdown-submenu > .dropdown-menu {
    left: 100% !important;
    right: auto !important;
    top: 0;
    margin-top: 0;
  }

  /* If THIS submenu is open-left, flip it left */
  .dropdown-submenu.open-left > .dropdown-menu {
    left: auto !important;
    right: 100% !important;
  }

  /* If an ANCESTOR is open-left, descendants default to LEFT too */
  .dropdown-submenu.open-left .dropdown-submenu > .dropdown-menu {
    left: auto !important;
    right: 100% !important;
  }

  /* But if a descendant specifically chose RIGHT, honor it */
  .dropdown-submenu .dropdown-submenu.open-right > .dropdown-menu {
    left: 100% !important;
    right: auto !important;
  }

}

/* Mobile Dropdown Styles */
@media (max-width: 991.98px) {
  .navbar-nav .nav-link {
    margin-right: 0;
    padding: 10px 0;
  }

  .navbar-nav {
    /* border-top: 1px solid #EEEEEE; */
    background: #575447;
  }

  .dropdown-menu {
    position: static;
    float: none;
    width: auto;
    margin-top: 0;
    background-color: #f8f9fa;
    border: none;
    box-shadow: none;
    border-radius: 5px;
    padding-left: 20px;
  }

  .dropdown-submenu .dropdown-menu {
    padding-left: 50px;
    background-color: #e9ecef;
  }

  .dropdown-submenu .dropdown-submenu .dropdown-menu {
    padding-left: 70px;
    background-color: #dee2e6;
  }

  .dropdown-item {

    padding: .4rem 1rem;
    color: var(--dark);
    padding-left: 4px;
  }


  .dropdown-item:hover {
    background-color: transparent !important;
    color: var(--primary) !important;
  }

  .dropdown-item:focus {
    background-color: transparent !important;
    color: var(--primary) !important;
  }

  .dropdown-item.active {
    background-color: transparent !important;
    color: var(--primary) !important;
  }


  /* Mobile toggle indicators */
  .dropdown-toggle[data-bs-toggle="collapse"] {
    position: relative;
  }

  .dropdown-toggle[data-bs-toggle="collapse"]::after {
    content: "\f107";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    float: right;
    transition: transform 0.3s ease;
  }

  .dropdown-toggle[data-bs-toggle="collapse"]:not(.collapsed)::after {
    transform: rotate(180deg);
  }

  /* Default style: no background when closed */


  /* Highlight ONLY when submenu is open */
  .dropdown-toggle[data-bs-toggle="collapse"][aria-expanded="true"] {
    /* background-color: var(--primary); */
    /* highlight color */
    color: var(--primary) !important;
    /* text color when highlighted */
    background-color: transparent !important;
    /* font-weight: bold; */

  }

  .dropdown-toggle[data-bs-toggle="collapse"][aria-expanded="false"] {
    /* background-color: #e9ecef; */
    /* highlight color */
    /* color: #e9ecef; */
    /* text color when highlighted */
    background-color: transparent !important;
  }

  .dropdown-toggle[aria-expanded="true"] .submenu-icon {
    transform: rotate(180deg);
    transition: transform .3s ease;
  }


  .navbar-collapse.show {
    position: fixed;                 /* overlay the page so scroll doesn't fall through */
    top: 75px;                       /* your navbar height */
    left: 0;
    right: 0;
    z-index: 1050;
    background: #575447;             /* match your .navbar-nav bg */
    /*padding: 12px 16px 24px;*/

    /* Key bits */
    max-height: calc(100vh - 80px);  /* cap to viewport minus navbar */
    overflow-y: auto;                /* scroll inside when needed */
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;    /* stop body from scrolling when list hits ends */
  }

}

/* Dropdown Item Styles */
.dropdown-item {

  color: var(--dark);
  transition: all 0.3s ease;
}

.dropdown-item:hover {
  background-color: var(--primary);
  color: white;
}

.dropdown-item:focus {
  background-color: var(--primary);
  color: white;
}


.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
  color: var(--primary);
}


/* Smooth transitions */
.navbar .nav-link,
.dropdown-item {
  transition: color .2s ease, background-color .2s ease;
}


/*** Header ***/
.carousel-caption {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  /* background: #393417bf; */
  background: #39341767;

  z-index: 1;
}

.carousel-control-prev,
.carousel-control-next {
  width: 15%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  width: 2.5rem;
  height: 2.5rem;
  /* background-color: var(--dark);
    border: 12px solid var(--dark); */
  border-radius: 3rem;
}

@media (max-width: 768px) {
  #header-carousel .carousel-item {
    position: relative;
    min-height: 450px;
  }

  #header-carousel .carousel-item img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

.page-header {
  padding-top: 12rem;
  padding-bottom: 6rem;
  /* background: linear-gradient(rgba(0, 29, 35, .8), rgba(0, 29, 35, .8)), url(../img/dwbc_one1.jpg) center center no-repeat; */
  background-size: cover;
}

.page-header .breadcrumb-item+.breadcrumb-item::before {
  color: #999999;
}


/*** Causes ***/
.causes-item .progress {
  height: 5px;
  border-radius: 0;
  overflow: visible;
}

.causes-item .progress .progress-bar {
  position: relative;
  overflow: visible;
  width: 0px;
  border-radius: 0;
  transition: 5s;
}

.causes-item .progress .progress-bar span {
  position: absolute;
  top: -7px;
  right: 0;
  width: 40px;
  height: 19px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  background: var(--primary);
  color: #FFFFFF;
}

.causes-item .causes-overlay {
  position: absolute;
  width: 100%;
  height: 0;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, .5);
  overflow: hidden;
  opacity: 0;
  transition: .5s;
}

.causes-item:hover .causes-overlay {
  height: 100%;
  opacity: 1;
}


/*** Service ***/
.service-item {
  box-shadow: 0 0 45px rgba(0, 0, 0, .06);
}


/*** Donate ***/
.donate {
  background: rgba(0, 29, 35, .8);
}

.btn-group .btn-light:hover,
.btn-group input[type="radio"]:checked+label {
  color: var(--primary);
  border-color: var(--primary);
}


/*** Team ***/
.team-item img {
  position: relative;
  top: 0;
  transition: .5s;
}

.team-item:hover img {
  top: -30px;
}

.team-item .team-text {
  position: relative;
  height: 100px;
  transition: .5s;
}

.team-item:hover .team-text {
  margin-top: -60px;
  height: 160px;
}

.team-item .team-text .team-social {
  opacity: 0;
  transition: .5s;
}

.team-item:hover .team-text .team-social {
  opacity: 1;
}

.team-item .team-social .btn {
  display: inline-flex;
  color: var(--primary);
  background: #FFFFFF;
  border-radius: 40px;
}

.team-item .team-social .btn:hover {
  color: #FFFFFF;
  background: var(--primary);
}


/*** 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 {
  background: 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 .btn.btn-link {
  display: block;
  margin-bottom: 5px;
  padding: 0;
  text-align: left;
  color: rgba(255, 255, 255, 0.5);
  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;
  color: var(--primary);
  margin-right: 10px;
}

.footer .btn.btn-link:hover {
  color: var(--light);
  letter-spacing: 1px;
  box-shadow: none;
}

.footer .btn.btn-square {
  color: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.footer .btn.btn-square:hover {
  color: var(--secondary);
  border-color: var(--light);
}

.footer .copyright {
  padding: 25px 0;
  font-size: 15px;
  border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright a {
  color: var(--secondary);
}

.footer .copyright a:hover {
  color: var(--primary);
}

.copyright {
  color: #B0B9AE;
}

.copyright {
  background: #575447bf;
}

.copyright a:hover {
  color: #FFFFFF !important;
}


.titelStyle {
  padding: 10px;
  margin: 0px;
  font-family: var(--APP_FONT_FAMILLY);
  color: var(--APP_COLOR);
  font-weight: bold;
  background-color: #ccc;
  border-bottom: 2px solid white;
  font-size: 13px;
  /* border: 1px solid #ccc; */
}

.example-spacer {
  flex: 1 1 auto;
}


.ulCellListWidget {
  list-style-type: none;
  overflow: hidden;
  margin: 0;
  padding: 0;
  cursor: pointer;
  height: 60px;
}

.imgCellListWidget {
  float: left;
  margin-left: 8px;
  height: 45px;
  width: 45px;
  border-radius: 30px;
  box-sizing: border-box;
  margin-top: 7px;
  margin-right: 10px;
}

.titleCellListWidget {
  font-family: var(--APP_FONT_FAMILLY);
  float: none;
  /* color: var(--APP_COLOR); */
  /* color: #ffb140; */
  margin-left: 3px;
  /* text-shadow: 1px 1px black; */

}

.textCellListWidget {
  font-family: var(--APP_FONT_FAMILLY);
  font-style: normal;
  font-size: 11px;
}

.mat-step-icon-selected {
  background-color: var(--APP_BACKGROUND) !important;
  color: var(--APP_COLOR) !important;
}

.mat-step-icon-state-done {
  background-color: var(--APP_BACKGROUND) !important;
  color: var(--APP_COLOR) !important;
}

.mat-mdc-outlined-button[disabled][disabled] {
  background-color: #c5b5b5f6 !important;
}

.mat-mdc-icon-button[disabled] {
  cursor: default;
  pointer-events: none;
  opacity: 0.3 !important;
}

.mat-drawer.mat-drawer-side {
  z-index: 2;
  background-color: #ccc;
}

.mdc-linear-progress__bar-inner {
  display: inline-block;
  position: absolute;
  width: 100%;
  animation: none;
  border-top-style: solid;
  border-color: var(--APP_COLOR) !important;
  border-top-width: var(--mdc-linear-progress-active-indicator-height);
}

.sliderPadding {
  background-color: white;
  border-radius: 5px;
  padding: 10px !important;
}

legend {
  margin-bottom: 15px;
  font-size: 17px;
}



/*--------------------------------------------------------------
# Blog Details
--------------------------------------------------------------*/
.blog .blog-details {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  padding: 30px;
}

.blog .blog-details .post-img {
  margin: -30px -30px 20px -30px;
  overflow: hidden;
}

.blog .blog-details .title {
  font-size: 28px;
  font-weight: 700;
  padding: 0;
  margin: 20px 0 0 0;
  color: #36b15d;
}

.blog .blog-details .meta-top i {
  font-size: 16px;
  margin-right: 8px;
  line-height: 0;
  color: var(--primary);
}

.blog .blog-details .content {
  margin-top: 20px;
}

.blog .blog-details .content h3 {
  font-size: 22px;
  margin-top: 30px;
  font-weight: bold;
}

.blog .blog-details .content blockquote {
  overflow: hidden;
  background-color: rgba(82, 86, 94, 0.06);
  padding: 60px;
  position: relative;
  text-align: center;
  margin: 20px 0;
}

.blog .blog-details .content blockquote p {
  color: var(--default);
  line-height: 1.6;
  margin-bottom: 0;
  font-style: italic;
  font-weight: 500;
  font-size: 22px;
}

.blog .blog-details .content blockquote:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  /* background-color: var(--primary); */
  margin-top: 20px;
  margin-bottom: 20px;
}

.blog .blog-details .meta-top {
  margin-top: 20px;
  color: #6c757d;
}

.blog .blog-details .meta-top ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  align-items: center;
  padding: 0;
  margin: 0;
}

.blog .blog-details .meta-top ul li+li {
  padding-left: 20px;
}

.blog .blog-details .meta-top i {
  font-size: 16px;
  margin-right: 8px;
  line-height: 0;
  color: var(--primary);
}

.blog .blog-details .meta-top a {
  color: #6c757d;
  font-size: 14px;
  display: inline-block;
  line-height: 1;
  transition: 0.3s;
}

.blog .blog-details .meta-top a:hover {
  color: var(--primary);
}

.blog .blog-details .meta-bottom {
  padding-top: 10px;
  border-top: 1px solid rgba(82, 86, 94, 0.15);
}

.blog .blog-details .meta-bottom i {
  color: #838893;
  display: inline;
}

.blog .blog-details .meta-bottom a {
  color: rgba(82, 86, 94, 0.8);
  transition: 0.3s;
}

.blog .blog-details .meta-bottom a:hover {
  color: var(--primary);
}

.blog .blog-details .meta-bottom .cats {
  list-style: none;
  display: inline;
  padding: 0 20px 0 0;
  font-size: 14px;
}

.blog .blog-details .meta-bottom .cats li {
  display: inline-block;
}

.blog .blog-details .meta-bottom .tags {
  list-style: none;
  display: inline;
  padding: 0;
  font-size: 14px;
}

.blog .blog-details .meta-bottom .tags li {
  display: inline-block;
}

.blog .blog-details .meta-bottom .tags li+li::before {
  padding-right: 6px;
  color: var(--default);
  content: ",";
}

.blog .blog-details .meta-bottom .share {
  font-size: 16px;
}

.blog .blog-details .meta-bottom .share i {
  padding-left: 5px;
}

.blog .post-author {
  padding: 20px;
  margin-top: 30px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.blog .post-author img {
  max-width: 120px;
  margin-right: 20px;
}

.blog .post-author h4 {
  font-weight: 600;
  font-size: 22px;
  margin-bottom: 0px;
  padding: 0;
  color: var(--secondary);
}

.blog .post-author .social-links {
  margin: 0 10px 10px 0;
}

.blog .post-author .social-links a {
  color: rgba(82, 86, 94, 0.5);
  margin-right: 5px;
}

.blog .post-author p {
  font-style: italic;
  color: rgba(108, 117, 125, 0.8);
  margin-bottom: 0;
}

/*--------------------------------------------------------------
  # Blog Sidebar
  --------------------------------------------------------------*/
.blog .sidebar {
  padding: 30px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.blog .sidebar .sidebar-title {
  font-size: 20px;
  font-weight: 700;
  padding: 0;
  margin: 0;
  color: #36b15d;
}

.blog .sidebar .sidebar-item+.sidebar-item {
  margin-top: 40px;
}

.blog .sidebar .search-form form {
  background: #fff;
  border: 1px solid rgba(82, 86, 94, 0.3);
  padding: 3px 10px;
  position: relative;
}

.blog .sidebar .search-form form input[type=text] {
  border: 0;
  padding: 4px;
  border-radius: 4px;
  width: calc(100% - 40px);
}

.blog .sidebar .search-form form input[type=text]:focus {
  outline: none;
}

.blog .sidebar .search-form form button {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 15px;
  margin: -1px;
  background: var(--primary);
  color: #fff;
  transition: 0.3s;
  border-radius: 0 4px 4px 0;
  line-height: 0;
}

.blog .sidebar .search-form form button i {
  line-height: 0;
}

.blog .sidebar .search-form form button:hover {
  background: #36b15d;
}

.blog .sidebar .categories ul {
  list-style: none;
  padding: 0;
}

.blog .sidebar .categories ul li+li {
  padding-top: 10px;
}

.blog .sidebar .categories ul a {
  color: var(--secondary);
  transition: 0.3s;
}

.blog .sidebar .categories ul a:hover {
  color: var(--primary);
}

.blog .sidebar .categories ul a span {
  padding-left: 5px;
  color: rgba(54, 77, 89, 0.4);
  font-size: 14px;
}

.blog .sidebar .recent-posts .post-item {
  display: flex;
}

.blog .sidebar .recent-posts .post-item+.post-item {
  margin-top: 15px;
}

.blog .sidebar .recent-posts img {
  max-width: 80px;
  margin-right: 15px;
}

.blog .sidebar .recent-posts h4 {
  font-size: 15px;
  font-weight: bold;
}

.blog .sidebar .recent-posts h4 a {
  color: var(--secondary);
  transition: 0.3s;
}

.blog .sidebar .recent-posts h4 a:hover {
  color: var(--primary);
}

.blog .sidebar .recent-posts time {
  display: block;
  font-style: italic;
  font-size: 14px;
  color: rgba(54, 77, 89, 0.4);
}

.blog .sidebar .tags {
  margin-bottom: -10px;
}

.blog .sidebar .tags ul {
  list-style: none;
  padding: 0;
}

.blog .sidebar .tags ul li {
  display: inline-block;
}

.blog .sidebar .tags ul a {
  color: #838893;
  font-size: 14px;
  padding: 6px 14px;
  margin: 0 6px 8px 0;
  border: 1px solid rgba(131, 136, 147, 0.4);
  display: inline-block;
  transition: 0.3s;
}

.blog .sidebar .tags ul a:hover {
  color: #fff;
  border: 1px solid var(--primary);
  background: var(--primary);
}

.blog .sidebar .tags ul a span {
  padding-left: 5px;
  color: rgba(131, 136, 147, 0.8);
  font-size: 14px;
}

/*--------------------------------------------------------------
  # Blog Comments
  --------------------------------------------------------------*/
.blog .comments {
  margin-top: 30px;
}

.blog .comments .comments-count {
  font-weight: bold;
}

.blog .comments .comment {
  margin-top: 30px;
  position: relative;
}

.blog .comments .comment .comment-img {
  margin-right: 14px;
}

.blog .comments .comment .comment-img img {
  width: 60px;
}

.blog .comments .comment h5 {
  font-size: 16px;
  margin-bottom: 2px;
}

.blog .comments .comment h5 a {
  font-weight: bold;
  color: var(--default);
  transition: 0.3s;
}

.blog .comments .comment h5 a:hover {
  color: var(--primary);
}

.blog .comments .comment h5 .reply {
  padding-left: 10px;
  color: #36b15d;
}

.blog .comments .comment h5 .reply i {
  font-size: 20px;
}

.blog .comments .comment time {
  display: block;
  font-size: 14px;
  color: rgba(82, 86, 94, 0.8);
  margin-bottom: 5px;
}

.blog .comments .comment.comment-reply {
  padding-left: 40px;
}

.blog .comments .reply-form {
  margin-top: 30px;
  padding: 30px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.blog .comments .reply-form h4 {
  font-weight: bold;
  font-size: 22px;
}

.blog .comments .reply-form p {
  font-size: 14px;
}

.blog .comments .reply-form input {
  border-radius: 4px;
  padding: 10px 10px;
  font-size: 14px;
}

.blog .comments .reply-form input:focus {
  box-shadow: none;
  border-color: #36b15d;
}

.blog .comments .reply-form textarea {
  border-radius: 4px;
  padding: 10px 10px;
  font-size: 14px;
}

.blog .comments .reply-form textarea:focus {
  box-shadow: none;
  border-color: #36b15d;
}

.blog .comments .reply-form .form-group {
  margin-bottom: 25px;
}

.blog .comments .reply-form .btn-primary {
  border-radius: 4px;
  padding: 10px 20px;
  border: 0;
  background-color: #36b15d;
}

.blog .comments .reply-form .btn-primary:hover {
  color: #36b15d;
  background-color: var(--primary);
}

.mat-form-field-appearance-outline.mat-form-field {
  .mat-form-field-outline {
    color: green !important;
  }

  .mat-form-field-outline-thick {
    border-color: green !important;
  }

  .mat-form-field-label {
    color: green !important;
  }

  .mat-form-field-ripple {
    background-color: green !important;
  }
}

.mat-radio-button.mat-accent .mat-radio-inner-circle,
.mat-radio-button.mat-accent.mat-radio-checked .mat-radio-outer-circle {
  background-color: green !important;
  border-color: green !important;
}
