.faq{
    padding:100px 0 0 0;
    display:flex;
    flex-direction:column;
    align-items:center;
}

.faq .container{
    display:flex;
    justify-content:space-between;
    width: 1200px;
}

.faq-title{
    width:400px;
	padding-top:90px;
}
    .faq-title p {
    text-align: left;
    }


.faq-list{
	display: list-item;
    font-size: 15px;
    margin-left: 0px;
    font-family: Arial;
    color: #333;
    line-height: 25px;
}

.items{
	width:600px;
	display:block;
    flex-direction:column;
	overflow:hidden;
	align-items:flex-start;
}

.faq__detail {
    border-bottom: 1px solid hsl(240, 5%, 91%);
    margin: 8px 0 0 0;
    padding: 8px 0 10px 0;
}

.faq__summary:hover,
.faq__summary:active { 
    color: #b41e1e;
    cursor: pointer; 
}

.faq__detail[open] > .faq__summary { 
    font-weight: 700;
}

.faq__summary {
    list-style: none;
  }

.faq__summary::-webkit-details-marker {
    display: none;
  }

.faq__summary { 
    display: block;
    padding: 0;
    position: relative;
    text-align: right;
}
    
.faq__summary:after {
    display: inline-block;
    content: url("https://bobmatyas.github.io/fm-faq-accordion/images/icon-arrow-down.svg");
    background-repeat: no-repeat;
    background-position:center;
    text-align: center;
    padding-bottom: 10px;
  }
 
 
details[open] .faq__summary:after {
    display: inline-block;
    width: 18px;
    height: 10px;
    content: "";
    background-image: url("https://bobmatyas.github.io/fm-faq-accordion/images/icon-arrow-down.svg");
    background-repeat: no-repeat;
    background-position: center left;
    transition: all 0.75s ease;
    transform: rotate(180deg);
}

.faq__question {
    left: 0;
    position: absolute;
    text-align: left;
    top: 0;
    width: 90%;
}

.faq__question {
    display: inline-block;
    margin: 5px 0;
    text-align: left;
    width: 90%;
}

.faq__summary {
    color: #151948;
    font-size: 18px; 
}

.faq__summary:focus {
    color: #b41e1e; 
    font-weight: bold;
    outline: none;
}

.faq__text {
    text-align: left;
	width:550px;
    color: #333;
    font-size: 15.5px;
    line-height: 28px;
    margin: 10px 0 0 0;
}

.hidden-lg { display: block; }
    
.visible-lg { display: none; }
