/**
 * All of the CSS for your public-facing functionality should be
 * included in this file.
 */

:root{
    --color-white: #ffff;
    --color-black: #333;
    --color-primary: #7995D1;
    --color-secondary: #eee !important;
} 

.khanda-filter-card-description{
    background-color: #eee;
}

.su-image{
    width: 100%;
    display: block;
    margin: 0;
    padding: 0;
}

/*khanda as cards*/
.khanda-filter-card{
    display: grid;
    grid-template-rows: auto 1fr;
    grid-template-columns: auto;
}


.khanda-filter-card img{
    width: 100%;
    display: block;
    margin: 0;
    padding: 0;
    aspect-ratio: 5/3;
    border-radius: 20px 20px 0 0 !important;
    object-fit: cover;
}

.khanda-filter-card-description {
    border-radius: 0 0 20px 20px;
    display: grid;
    grid-template-rows: auto 1fr auto;
}


.khanda-filter-card h3, 
.khanda-filter-search-form label{
    color: var(--e-global-color-text);
    font-family: "AlegreyaSansSC-Bold", Sans-serif;
    font-size: 2rem;
    font-weight: 700;
    text-transform: none;
    font-style: normal;
    text-decoration: none;
    line-height: 2rem;
    letter-spacing: 0px;
    word-spacing: 0em;
}



.su-button,
.su-button:focus{
    font-family: "Poppins", Sans-serif;
    font-size: 1.083rem;
    font-weight: 400;
    display: inline-block;
    text-transform: uppercase;
    font-style: normal;
    text-decoration: none;
    letter-spacing: 0px;
    word-spacing: 0em;
    border-radius:0px;
    padding: 15px 30px;
    background-color: var(--e-global-color-primary);
    color: #ffffff !important;
}
.su-button:hover{
    background-color: #fff;
    color: #A19682 !important;
}


/* loader */

.loader {
  width: 50px;
  aspect-ratio: 1;
  display: grid;
  border-radius: 50%;
  background:
    linear-gradient(0deg ,rgb(0 0 0/50%) 30%,#0000 0 70%,rgb(0 0 0/100%) 0) 50%/8% 100%,
    linear-gradient(90deg,rgb(0 0 0/25%) 30%,#0000 0 70%,rgb(0 0 0/75% ) 0) 50%/100% 8%;
  background-repeat: no-repeat;
  animation: l23 1s infinite steps(12);
}
.loader::before,
.loader::after {
   content: "";
   grid-area: 1/1;
   border-radius: 50%;
   background: inherit;
   opacity: 0.915;
   transform: rotate(30deg);
}
.loader::after {
   opacity: 0.83;
   transform: rotate(60deg);
}
@keyframes l23 {
  100% {transform: rotate(1turn)}
}

/* loader */




.khanda-filter-search-form{
    max-width: 300px;
    margin: auto;
    margin-bottom: 35px;
    width: 100%;
    display: grid;
    gap: 20px;
    justify-content: center;
}

.khanda-filter-search-form input,
.khanda-filter-search-form select{
    box-sizing: border-box;
    min-width: 0;
    max-width: 100%;
    width: 100%;
    border-radius: 10px;
    background-color: #eee;

    font-family: var(--e-global-typography-text-font-family), Sans-serif;
    font-size: var(--e-global-typography-text-font-size);
    font-weight: var(--e-global-typography-text-font-weight);
    text-transform: var(--e-global-typography-text-text-transform);
    font-style: var(--e-global-typography-text-font-style);
    text-decoration: var(--e-global-typography-text-text-decoration);
    line-height: var(--e-global-typography-text-line-height);
    letter-spacing: var(--e-global-typography-text-letter-spacing);
    word-spacing: var(--e-global-typography-text-word-spacing);
}

.khanda-filter-search-form button:focus{
  color: var(--color-primary) !important;
  border:1px sold var(--color-primary) !important;
}


@media only screen and (min-width: 767px) {
  .khanda-filter-search-results{
    display: grid;
      display: -ms-grid;
      display: grid;
      -ms-grid-columns: (1fr) [3];
      grid-template-columns: repeat(3, 1fr);
      gap:20px;
  }
}