  @font-face {
    font-family: 'ChickenSans-Regular';
    src: url('fonts/ChickenSans-Regular.otf') format("opentype");
    font-display: swap;
  }

  @font-face {
    font-family: 'ChickenSans-ExtraLight';
    src: url('./fonts/ChickenSans-ExtraLight.otf') format("opentype");;
    font-display: swap;
  }

  @font-face {
    font-family: 'ChickenSans-Bold';
    src: url('./fonts/ChickenSans-Bold.otf') format("opentype");
    font-display: swap;
  }

  body {
	font-family: ChickenSans-Regular;
	height: 100% !important;
	background-color: #F5F1EF;
	margin: 0;
  }

  .wrapper {
	  margin: 25px 16px 9px;
  }

  .accordion {
	font-family: ChickenSans-Regular;
	background-color: #ffffff;
	color: #1F1F1F;
	cursor: pointer;
	padding: 18px;
	width: 100%;
	border: none;
	text-align: left;
	outline: none;
	font-size: 14px;
	transition: 0.4s;
	padding: 16px 10px;
	border-radius: 4px;
	margin-bottom: 6px;
	position: relative;
	box-shadow: 0px 0px 1px rgba(0, 0, 0, 0.16), 0px 2px 4px rgba(0, 0, 0, 0.1);
  }

  button.accordion:after {
	content: '';
	color: #0066a7;
	font-weight: bold;
	float: right;
	margin-left: 5px;
	width: 12px;
	height: 7px;
	position: absolute;
	background-image: url(/images/down-arrow.svg);  
	background-size: cover;
	right: 14px;
  	top: 50%;
  	margin-top: -3px;
  }

  button.accordion.active {
	  margin-bottom: 0;
	  border-bottom-left-radius: 0;
	  border-bottom-right-radius: 0;
	  box-shadow: none;
    padding-bottom: 2px;
  }

  button.accordion.active:after {
	content: '';
	background-image: url(/images/up-arrow.svg);  
  }

  .active,
  .accordion:hover {
	background-color: #ffffff;
  }

  button.accordion.no-margin-btm {
	  margin-bottom: 0px;
  }

  .panel {
	padding: 0 5px;
	background-color: white;
	color: #666666;
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.2s ease-out;
	font-size: 12px;
	border-bottom-left-radius: 4px;
	border-bottom-right-radius: 4px;
  box-shadow: 0px 0px 1px rgba(0, 0, 0, 0.16), 0px 2px 4px rgba(0, 0, 0, 0.1);
  }

  .fullImage{
	  width:100%;
	  height: auto;
	  margin-top:15px;
  }


  .disc_sub_title {
	font-size: 14px;
  padding-left: 5px;
  }

  .disc_data {
	font-size: 12px;
	color: #666666;
	display: block;
	margin-bottom: 10px;
  }

  .disc_data a{
	  color: rgba(242, 86, 0, 1);
  }

  ul {
	padding: 0 5px 0 24px;
  }

  .panel h5 {
	margin: 0;
  }
