
/*------------------------------------------------------------------------
# mod_mx_awesomefaq Extension
# ------------------------------------------------------------------------
# author    mixwebtemplates
# copyright Copyright (C) 2020 mixwebtemplates.com. All Rights Reserved.
# @license - http://www.gnu.org/licenses/gpl-2.0.html GNU/GPL
# Websites: http://www.mixwebtemplates.com
-------------------------------------------------------------------------*/


.collapsible-link::before {
  content: '';
  width: 14px;
  height: 2px;
  background: #333;
  position: absolute;
  top: calc(50% - 1px);
  right: 1rem;
  display: block;
  transition: all 0.3s;
}

/* Vertical line */
.collapsible-link::after {
  content: '';
  width: 2px;
  height: 14px;
  background: #333;
  position: absolute;
  top: calc(50% - 7px);
  right: calc(1rem + 6px);
  display: block;
  transition: all 0.3s;
}

.collapsible-link[aria-expanded='true']::after {
  transform: rotate(90deg) translateX(-1px);
}

.collapsible-link[aria-expanded='true']::before {
  transform: rotate(180deg);
}

.accordion-heading {
  font-size: 16.8px !important;
  line-height: 24.6px;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  text-transform: none;
  padding: 0;
}
.accordion-heading > a {
  display: block;
  padding: 18px !important;
  color: #222;
  background-image: -webkit-linear-gradient(top, #ffffff 0%, #f4f4f4 100%);
  background-image: linear-gradient(to bottom, #ffffff 0%, #f4f4f4 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#f4f4f4', GradientType=0);
  -webkit-transition: 0.2s;
  transition: 0.2s;
  position: relative;
}

.accordion-heading > a.collapsed {
  color: #6d6d6d;
  background-image: -webkit-linear-gradient(top, #ffffff 0%, #f4f4f4 100%);
  background-image: linear-gradient(to bottom, #ffffff 0%, #f4f4f4 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#f4f4f4', GradientType=0);
}

.accordion-heading > a.collapsed:hover {
  text-decoration: none;
}
.accordion-heading > a:hover {
  text-decoration: none;
}
.accordion-inner {
  padding: 14px 20px;
  color: #222;
  background: #fff;
}
.accordion {
 margin-bottom:20px
}
.accordion-group {
 margin-bottom:2px;
 border:1px solid #e5e5e5;
 -webkit-border-radius:4px;
 -moz-border-radius:4px;
 border-radius:4px
}
.accordion-heading {
 border-bottom:0
}

.shadow {
    box-shadow: 0 .5rem 1rem rgba(0,0,0,.15) !important;
}
.accordion-button:not(.collapsed) {
 color:none;
 background-color: none;
 box-shadow:inset 0 0 0 rgba(0,0,0,.0)
}

.accordion-collapse{
	-webkit-transition: all 500ms ease;
	transition: all 500ms ease;
}
.accordion-button:not(.collapsed), .accordion-button {
 color:#222 !important;
 background-color: #fff !important;
 box-shadow:inset 0 0 0 rgba(0,0,0,.0)
}
span.mx-accordion-title-prefix-text {
  margin-right: 22px;
  font-size: 16px;
}
.accordion-item {
	counter-increment: count;
}
span.mx-accordion-title-prefix-text::before {
  content: counters(count, ".", decimal-leading-zero);
  position: absolute;
  top: 0px;
  right: 0;
  bottom: 0;
  left: 10px;
  margin: auto;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.card-body:after {
    position: absolute;
    top: 0;
    left: 30px;
    width: 0;
    height: 0;
    content: '';}