@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
.container {
  margin: 30px auto;
  display: flex;
  gap: 36px;
}
.sidebar {
  width: 250px;
}
.loader-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 50px 0;
  width: 100%;
}

.spinner-new {
  /* visibility: block !important; */
  width: 40px;
  height: 40px;
  border: 4px solid #ccc;
  border-top: 4px solid #007bff; /* Blue color */
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
.theme-radio-list {
list-style: none;
padding-left: 0;
}
.search-box-new {
  position: relative;
  margin-bottom: 20px;
}
.search-box-new input {
  width: 100%;
  padding: 10px 40px 10px 15px;
  border: 1px solid #000000;
  border-radius: 8px;
  font-family: "Montserrat", sans-serif;
}
span.Search-Icon {position: absolute;right: 15px;top: 50%;transform: translateY(-50%);}
span.Search-Icon span.dashicons.dashicons-search {color: #24BDAF;font-size: 30px;height: 30px; width: 30px;}
.categories-new {
  background: #fff;
  padding: 20px;
  border: 1px solid #000000;
  border-radius: 10px;
}
.categories-new h3 {
  font-size: 16px;
  margin-bottom: 15px;
  font-family: "Montserrat", sans-serif;
  color: #000;
}
.categories-new ul {
  list-style: none;
}
.categories-new li {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  font-size: 14px;
  font-family: "Montserrat", sans-serif;
  cursor: pointer;
}
.categories-new li span:last-child {
    color: #24BDAF;
    font-size: 16px;
    font-weight: 700;
}
.categories-new li span:nth-child(2) {
    font-size: 16px;
    font-weight: 400;
    color: #000000;
}
.urgency-widgets_page_urgcw-theme-showcase div#wpcontent {
    background: #fff;
}
.main {
  flex: 1;
}
.main h1{
  text-align: center;
  color: #00c9a7;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 38px;
  margin-top: 0;
  font-family: "Montserrat", sans-serif;
}
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
  gap: 67px;
  padding-right: 50px;
  row-gap: 30px;
}
.card {
  border: 1px solid  #fff;
  margin-top: 17px;
  border-radius: 0;
  overflow: hidden;
  text-align: center;
  padding: 0;
  background: transparent;
  border: 0 !important;
  position: relative;
  box-shadow: unset;
  border-radius: 10px;
}
.card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}


.badge-sale {
  position: absolute;
  top: 0;
  right: 0;
  background: #00c9a7;
  color: #fff;
  font-size: 14px;
  padding: 5px 10px;
  border-radius: 0;
  font-weight: 600;
}
.card-body {
  padding: 0;
}
.card-title {
  margin-bottom: 10px;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
  font-family: "Montserrat", sans-serif;
  color: #000;
}
/* Addtional */
.card-meta {
    position: absolute;
    bottom: 0;
    width: 100%;
    /* left: 0; */
    background: #27BDAF;
    padding: 9px 5px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    opacity: 0;
    transition: all 1s ease;
}

.card-header:hover .card-meta {
    opacity: 1;
}
/* End */
.card-buttons {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 0;
  flex: 1;
}
.btn {
  padding: 4px 24px;
  font-size: 13px;
  border-radius: 20px;
  text-decoration: none;
  display: inline-block;
  transition: all 1s ease;
  font-weight: 700;
}
.btn-demo {
  background: #F36F23;
  color: #fff;
  font-family: "Montserrat", sans-serif;
}
.btn-view {
  color: #fff;
  background: #F36F23;
  font-family: "Montserrat", sans-serif;
}
.card-buttons a:hover {
    background: #ffffff;
    color: #000;
}
.price {
  font-size: 14px;
  flex: 1;
  font-weight: 600;
  width: 100%;
  display: flex;
  justify-content: end;
}
.price del {
  color: #ffffff;
  margin-right: 20px;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
}
.price strong {
  color: #ffffff;
  margin-right: 26px;
  font-family: "Montserrat", sans-serif;
}
.load-more {
  text-align: center;
  margin-top: 30px;
}
.load-more button {
  background: #00c9a7;
  color: #fff;
  border: none;
  padding: 11px 30px;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  width: 281px;
  font-size: 24px;
  font-family: "Montserrat", sans-serif;
}
.load-more button:hover {
    background: #000;
}
.card-header {
  position: relative;
  height: 250px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 1px 1px rgb(0 0 0 / 9%);
}

.theme-radio-list input[type="radio"] {
  display: none;
}

#theme-filter li:has([name="theme_cat"]:checked) span:nth-child(2) {
  color: #24BDAF;
  font-weight: 600;
}

.card-buttons:has(:only-child) {
  justify-content: flex-start;
  margin-left: 12px;
}