/*top bar*/
.top-bar-store-bg {
    margin-top: 5px;
    box-shadow: 0px 4px 7px 0px rgb(0 81 250 / 20%);
}
.store-bg-1 {
    padding: 10px 0px 10px 10px;
    background: #5b0f71;
    background: -webkit-linear-gradient(to right, #0ed2f7, #b2fefa);
    background: linear-gradient(to right, #5b0f71, #29626a);
}

/*faq css*/
/*.accordion:after {
  content: '\02795';
  font-size: 13px;
  color: #515151;
  float: right;
  margin-left: 5px;
}

.accordion.active:after {
  content: "\2796";
}*/
.faq-section{
    padding: 20px;
}

.faq-section:not(:first-child){
    padding-top: 0px;
}

.faq-question {
    border-radius: 10px;
    border: 1px solid #e1e6e7;
    padding: 10px;
    background: #eff7fa;
}

.accordion {
    cursor: pointer;
    transition: 0.4s;
}

.panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

/*FAQ layout css*/
.accordion .accordion-item {
    padding: 15px;
    margin-top: 20px;
    border-radius: 10px;
    border-left: 10px solid #601675;
    border-right: 0;
    background: #ffffff;
    -webkit-box-shadow: 0px 0px 5px 0px rgb(0 81 250 / 20%);
    -moz-box-shadow: 0px 0px 5px 0px rgb(0 81 250 / 20%);
    box-shadow: 0px 0px 5px 0px rgb(0 81 250 / 20%);
}
.accordion .accordion-que {
    position: relative;
    display: block;
    text-align: left;
    width: 100%;
    border: none;
    background: none;
    outline: none;
    padding: 0px;
    line-height: 25px;
    margin: 0px;
}
.accordion .accordion-que .icon {
    display: inline-block;
    position: absolute;
    top: 0px;
    right: 0;
    width: 22px;
    height: 22px;
    border: 1px solid;
    border-radius: 22px;
    color: #601675;
}
.accordion .accordion-que .icon::before {
    display: block;
    position: absolute;
    content: "";
    top: 9px;
    left: 5px;
    width: 10px;
    height: 2px;
    background: currentColor;
}
.accordion .accordion-que .icon::after {
    display: block;
    position: absolute;
    content: "";
    top: 5px;
    left: 9px;
    width: 2px;
    height: 10px;
    background: currentColor;
}
.accordion .accordion-que[aria-expanded="true"] {
    color: #032349;
}
.accordion .accordion-que[aria-expanded="true"] .icon::after {
    width: 0;
}
.accordion .accordion-que[aria-expanded="true"] + .accordion-content {
    opacity: 1;
    max-height: 5000px;
    transition: all 200ms linear;
    will-change: opacity, max-height;
}
.accordion .accordion-content {
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: opacity 200ms linear, max-height 200ms linear;
    will-change: opacity, max-height;
}
/*FAQ layout css end */
