.tabs {
  margin: 30px 0;
  display: grid;
}
.tabs__caption {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  list-style: none;
  position: relative;
  margin: -1px 0 0 -1px;
}
.tabs__caption li:last-child:before {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  right: -2px;
  z-index: -1;
  height: 5px;
  background: #023E7C;
}
.tabs__caption:after {
  content: '';
  display: table;
  clear: both;
}
.tabs__caption li {
  padding: 9px 15px;
  margin: 1px 2px 0 1px;
  background: #023E7C;
  color: #FFF;
  position: relative;
  border: solid #023E7C;
  border-width: 2px 2px 0;
  border-radius: 5px 5px 0 0;
  text-align: center;
	font-size: 13px;
}
.tabs__caption li:not(.active) {
  cursor: pointer;
}
.tabs__caption li:not(.active):hover {
  background: #023E7C;
  border-color: #023E7C;
}
.tabs__caption .active {
  background: #FFF;
  color: #000;
  border-color: #023E7C;
}
.tabs__caption .active:after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  right: 0;
  height: 5px;
  background: #FFF;
}
.tabs__content {
  display: none;
  background: #FFF;
  border: 2px solid #023E7C
  border-radius: 0 5px 5px 5px;
  padding: 7px 15px;
}
.tabs__content.active {
  display: block;
}
.tabs__content ul li{
	padding: 5px;
}
.tabs__content ul li:nth-of-type(odd) {
    background: #EFEFEF;
 
}
.tabs__content img{
	max-width:100%;
}
@media screen and (max-width: 650px) {
  .tabs__caption li {
    -webkit-flex: 1 0 auto;
    -ms-flex: 1 0 auto;
    flex: 1 0 auto;
  }
  
}
.copy-link{
	margin:15px 0 0;
		display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
 	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
}
.copy-link .copy_icon {
    display: inline-block;
    width: 20px;
    height: 20px;
    background: url(/images/copy.svg);
    margin-right: 7px;
    position: relative;
   
}
.copy-link .copy{
	color:#023E7C;
}
.copy-link .copy:hover{
		cursor:pointer;
	text-decoration: underline;
}
#faq-accordion{
    margin-bottom: 48px;
}
#faq-accordion  .acc_section{
    border: none;
    border-bottom: 1px solid #ccc;
}
#faq-accordion   .acc_head{
    background: none;
    padding: 10px 0;
}
#faq-accordion   .acc_head h2{
color: #323131;
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    text-transform: uppercase;
}
#faq-accordion   .acc_head {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}
#faq-accordion  .acc_section .acc_head:after  {
    content: url('data:image/svg+xml;utf8,<svg  viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M4 12H20M12 4V20" stroke="%23000000" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>');
    flex-shrink: 0;
    width: 24px;
    height: 24px;
}
#faq-accordion  .acc_section.acc_active .acc_head:after {

        content: url('data:image/svg+xml;utf8,<svg  viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M6 12H18" stroke="%23000000" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>');
    flex-shrink: 0;
    width: 24px;
    height: 24px;
}
#faq-accordion   .acc_section .acc_content {
    padding: 10px 0;
}