/* logo */
.logo-wrap{
    max-width: 5rem;
}
.hamburger-wrap{
    cursor: pointer;
    color: var(--white-color);
}
/* card css */
.card-container{
    display: grid;
    gap: 1rem;
}
.card-wrap{
    border-radius: var(--border-radius-5);
    box-shadow: var(--shadow-2);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}
.card{
    padding: 1rem;
}
/* form css */
.form-group{
  margin-bottom: 1.5rem;
  padding: 1rem;
  box-shadow: var(--shadow-2);
  border-radius: var(--border-radius-5);
 }
.form-group label{
  font-size: 1.4rem;
 }
.form h3{
    text-align: center;    
}
.form #category-checkboxes {
    border: 1px solid var(--border-color);
    padding: 1rem;
    border-radius: var(--border-radius-5);
}
.form #category-checkboxes label{
    display: flex;
    align-items: center;
    gap: 1rem;
}
.form #category-checkboxes input{
    width: auto;
}
/* btn css */
.btn-container{
    display: flex;
    gap: .5rem;
}
.btn-wrap{
    
}
.btn{
    padding: 0.8rem 1.6rem;
    background: var(--btn-color);
    color: var(--white-color);
    outline: 0;
    border: 0px;
    cursor: pointer;
    text-transform: uppercase;
    height: auto;
    border-radius: var(--border-radius-5);
}
.btn:hover{
    background-color: var(--btn-hover-color);
}
/* table css */
.table-container{
    overflow-x: auto;
}
table th.min-width-100{
    min-width: 10rem;
}
table th.min-width-150{
    min-width: 15rem;
}

/* profile */
.profile-wrap{
    width: 5rem;
    height: 5rem;
    border-radius: 100%;
    border: 1px solid var(--border-color);
}
.profile-wrap .img-wrap{
    width: inherit;
    height: inherit;
    display: flex;
    align-items: center;
    justify-content: center;
}
.profile-wrap img{
    aspect-ratio: 1 / 1;
    object-fit: cover;
}
.profile-wrap p{
    font-size: 1.8rem;
    font-weight: 700;
}
/* posts stats */
.stats-container{
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding-inline: 1.5rem;    
    padding-bottom: 1rem;
    border-top: 1px solid var(--border-color);
}
.stats-wrap{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
/* Faqs Accordian */
.faq-wrapper p{
    display: none;
}
.faq-wrapper li {
    border-bottom: 1px solid #ccc;
    padding: 10px 0;
  }
.faq-wrapper li h3{
    font-size: 1.8rem;
    font-weight: 500;
    cursor: pointer;
}
.faq-wrapper li p{
    text-align: justify;
    font-size: 1.4rem;
}
/* other */
.heading{
    font-family: var(--ff-heading);
    font-size: 1.8rem;
}
.sub-heading,
.title{
    font-family: var(--ff-sub-heading);
}
.title{
    font-size: 1.8rem;
    line-height: 1.2;
}
.paragraph{
    text-align: justify;
}

.error_message{
    color: red;
}
