.float-faq-button  {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;

    border-radius: 50%;
    bottom: 40px;
    -webkit-box-shadow: 0 6px 26px -5px rgb(97 61 2 / 30%);
    box-shadow: 0 6px 26px -5px rgb(97 61 2 / 30%);
    cursor: pointer;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 60px;
    justify-content: center;
    position: fixed;
    right: 40px;
    width: 60px;
    z-index: 100;
    color: #fff;
    font-weight: bold;
    font-size: 36px;



}
.float-faq-button.open{
    background-image: url('open.svg');
    background-repeat: no-repeat;
    background-size: 26px;
    background-position: center;
}
  .float-faq-button.close{
    background-size: 22px;
    background-image: url('close.svg');
      background-repeat: no-repeat;
      background-position: center;
}

.swing:hover {
-webkit-animation: swing 0.6s ease;
animation: swing 0.6s ease;
-webkit-animation-iteration-count: 1;
animation-iteration-count: 1;
}
.float-faq-widget{
bottom: 110px;
-webkit-box-shadow: 0 0 26px -5px rgb(97 61 2 / 30%);
box-shadow: 0 0 26px -5px rgb(97 61 2 / 30%);
position: fixed;
right: 40px;
width: 380px;
z-index: 100;
    padding: 18px;
    background: #fff;
    border-radius: 18px;
}
.float-faq-widget-header{
border-bottom: 1px solid rgba(25, 25, 25, 0.05);
font-size: 18px;
line-height: 22px;
text-align: left;
font-weight: bold;
padding: 0 0 18px 0;
    margin-bottom: 18px;
    display: flex;
    color: #1A3F9F;
    align-items: center;
}
.faq-back-title{
    margin-right: 10px;
}
.float-faq-body{
background-color: #fff;
height: 345px;
overflow-x: hidden;
}
.notfaqs{
text-align: center;
margin: 20px 0 0 0;
color: #777;
}
.list-questions{
list-style-type: none;
margin: 0;
padding: 0;
}
.list-questions-item{
cursor: pointer;
display: flex;
justify-content: space-between;
align-items: center;
    padding: 5px 0;
    transition-duration: 0.5s;
}
.list-questions-item:hover {
    background: rgba(26, 63, 159, 0.05);
    border-radius: 6px;
    padding: 5px 15px;


    transition-duration: 0.5s;
}
.notap{

}
.float-faq-loading{
background: url("spiner.svg")no-repeat;
width: 44px;
height: 44px;
position: absolute;
top: 44%;
left: 44%;

}
.float-faq-answer-content{
font-size: 13px;
}
.goto-childs-icon{
    margin-right: 4px;
border-color: #000;
border-style: solid;
border-width: 0 2px 2px 0;
display: inline-block;
padding: 4px;
-webkit-transform: rotate(315deg);
-ms-transform: rotate(315deg);
transform: rotate(315deg);
}
.float-faq-answer-content img{
max-width: 100%;
height: auto;
}
.goto-childs-icon-back{
border-color: #eaeaea;
border-style: solid;
border-width: 0 2px 2px 0;
display: inline-block;
padding: 4px;
-webkit-transform: rotate(135deg);
-ms-transform: rotate(135deg);
transform: rotate(135deg);
}
.goto-childs-icon-back-title{
    cursor: pointer;
    width: 14px;
    height: 14px;
    background: url("backarrow.svg")no-repeat;
    background-size: cover;
    display: block;
}
.float-faq-answer{
padding: 5px 15px;
}
.float-faq-answer-back{
font-size: 16px;
color: #777;
display: flex;
align-items: center;
cursor: pointer;
}


@-webkit-keyframes swing {
15% {
    -webkit-transform: translateX(9px);
    transform: translateX(9px);
}
30% {
    -webkit-transform: translateX(-9px);
    transform: translateX(-9px);
}
40% {
    -webkit-transform: translateX(6px);
    transform: translateX(6px);
}
50% {
    -webkit-transform: translateX(-6px);
    transform: translateX(-6px);
}
65% {
    -webkit-transform: translateX(3px);
    transform: translateX(3px);
}
100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
}
}
@media (max-width: 440px){
.float-faq-widget{
    right: 5px;
    width: calc(100% - 10px);
}
.list-questions-item {
    padding: 5px 10px;
    line-height: 23px;
}
}