@import url(https://d1yhl3hhovxmag.cloudfront.net/gshr/assets/css/root_variable.css);
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
.seoH1 {
  display: none;
}
button,
input,
textarea {
  border: unset;
  outline: unset;
  background: unset;
}

.dFlex {
  display: flex;
  justify-content: center;
  align-items: center;
}
.dflex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}
.dflex-align-center {
  display: flex;
  align-items: center;
}
ul {
  list-style-type: none;
}
.chatBot {
  cursor: pointer;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: var(--color-black);
  box-shadow: 0px 4px 17px 0px rgba(141, 136, 136, 0.7);
  position: fixed;
  bottom: 7%;
  right: 30px;
  padding: 8px;
  z-index: 8;
  border: 0.5px solid var(--color-white);
}

/* Faq Section */
.faq_acc_section {
  padding: 6rem;
}
.faq_acc_section .container,
.contactSection .formContainer {
  max-width: 900px;
  width: 100%;
  margin: 0 auto;
}
.faq_acc_section .section_heading {
  font-size: clamp(2rem, 4vw, 4rem);
  font-weight: var(--font-weight-600);
  text-align: center;
  font-family: var(--font-Nunito);
}
.scrthngHdBtnBgPar {
  width: 100%;
  height: 140px;
  background-image: url(https://d1yhl3hhovxmag.cloudfront.net/gshr/assets/images/mytimesheet/faq_hdr_bg.svg?v1);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
}
.scrthYrHdTxt {
  width: 100%;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: -30px;
}
.faq_acc_section {
  position: relative;
}
.faq_acc_section ul {
  width: 100%;
  background-color: #fbfbfb;
}

.faq_acc_section ul li {
  width: 100%;
  padding: 2.4rem 3.2rem;
  background: var(--color-white);
  box-shadow: 0px 32px 37px 0px rgba(185, 185, 185, 0.1);
  cursor: pointer;
}

.faq_acc_section ul li:not(:first-child) {
  margin-top: 1.2rem;
}

.acc_heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 5px;
}

.acc_heading h2 {
  color: var(--color-primary-black);
  font-size: var(--font-size-18);
  font-weight: var(--font-weight-500);
  line-height: 3rem;
  width: 100%;
}

.acc_head_img_wrap img {
  width: 100%;
}

.acc_content {
  display: none;
  transition: 0.3s linear;
}

.faq_acc_section ul li .acc_content {
  margin-top: 1.2rem;
  color: var(--color-light-gray);
  font-size: var(--font-size-16);
  line-height: 21px;
}

.faq_acc_section ul li.faq_acc_active .acc_content {
  display: block;
}
.faq_acc_section ul li.faq_acc_active .acc_content p{
  line-height: 24px;
}

.minus_img {
  display: none;
  transform: rotate(90deg);
  transition: 3s;
}

.plus_img,
.plus_img::after {
  width: 12px;
  height: 2px;
  background-color: var(--color-gray);
  border-radius: 25px;
}

.plus_img {
  z-index: 1;
  position: relative;
}

.plus_img::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(90deg);
  transition: 0.2s linear;
}

.faq_acc_section ul li.faq_acc_active .plus_img::after {
  transform: translate(-50%, -50%) rotate(0deg);
  background-color: var(--color-primary-red);
}
/* Faq end */
@media(max-width: 1023px){
  .faq_acc_section ul li.faq_acc_active .acc_content p{
    line-height: 19px;
  }
}
