/**
 * General.
 */
.fc-title-wrapper {
  display: flex;
  height: 146px;
  margin-bottom: 30px;
}

.fc-title {
  margin-top: 30px;
  margin-bottom: 10px;
}

.fc-title-image {
  width: 100px;
  height: 100px;
}

.fc-title-text {
  color: #ffffff;
  margin-top: 10px;
  margin-bottom: 0px;
}


/**
 * Filters.
 */
 .fc-search-title {
  margin-bottom: 20px;
}

.fc-search-filter {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
  color: #fff;
}

.fc-filter {
  display: flex;
  flex-direction: column;
  width: 22%;
  border: 1px solid;
  max-height: 55px;
}

.fc-filter.show {
  max-height: none;
}

.fc-filter-head {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin: 15px;
}

.fc-filter-head:hover {
  cursor: pointer;
}

.fc-issuer-head span {
  display: block;
}

.fc-filter-head .fc-hide-filter {
  display: none;
}

.fc-filter-detail {
  display: none;
  margin: 15px;
}

.show .fc-filter-detail {
  display: block;
}

/* Radio buttons container */
.fc-radio {
  display: block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;
  cursor: pointer;
  user-select: none;
}
  
/* Hide the browser's default radio button */
.fc-radio input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}
  
/* Create a custom radio button */
.fc-check {
  position: absolute;
  top: 14px;
  left: 5px;
  border: 1px solid #fff;
  background: none;
  height: 10px;
  transform:rotate(45deg);
	width: 10px;
}
  
/* On mouse-over, add a grey background color */
.fc-radio:hover input ~ .fc-check {
  background-color: #fff;
}
     
/* Show the indicator (dot/circle) when checked */
.fc-radio input:checked ~ .fc-check {
  background-color: #fff;
}
  
/* Style the indicator (dot/circle) */
.fc-radio .fc-check:after {
  top: 3px;
  left: 4px;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: #fff;
}

.fc-arrow {
  display: inline-block;
  border: 1px solid #fff;
  border-width: 0 3px 3px 0;
  padding: 4px;
  margin: 4px 5px;
}

.fc-up {
  transform: rotate(-135deg);
  -webkit-transform: rotate(-135deg);
  margin-bottom: 0;
}

.fc-down {
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
}

.fc-left,
.fc-right {
  border: 1px solid;
  padding: 10px;
  border-radius: 2px;
}

.fc-horiz {
  display: none;
  margin-top: 20px;
}

.fc-footer {
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.fc-search {
  display: flex;
  justify-content: space-between;
  width: 45%;
}

#fc-search {
  width: 50%;
  height: 55px;
  color: #fff;
  background: rgb(16, 32, 39);
}

#fc-search::placeholder {
  color: #fff;
  opacity: 1; /* Firefox */
}

#fc-search:-ms-input-placeholder { /* Internet Explorer 10-11 */
  color: #fff;
}
 
#fc-search::-ms-input-placeholder { /* Microsoft Edge */
  color: #fff;
}

#fc-load-btn,
#fc-search-btn {
  background: none;
  color: rgba(255,255,255,0.7);
  border-color: rgba(255,255,255,0.7);
  text-decoration: none;
  text-align: center;
}

#fc-load-btn:hover,
#fc-search-btn:hover {
  border-color: #fff;
}

#fc-load-btn:hover span,
#fc-search-btn:hover span {
  color: #fff;
}

#fc-load-btn.disabled {
  pointer-events: none;
}

#fc-load-btn.disabled:hover {
  color: #fff;
  border-color: #fff;
}

@media only screen and ( max-width: 750px ) {
  .fc-filter-head .fc-filter-text {
    display: none;
  }
  .fc-search-filter,
  .fc-search {
    flex-direction: column;
  }
  .fc-filter,
  .fc-search {
    width: 95%;
    margin: 0 auto 30px;
  }
  #fc-search {
    width: 100%;
    margin: 0 auto 30px;
  }
  #fc-search-btn {
    width: 100%;
  }
}

/**
 * Document.
 */
 .fc-document-type {
  border: 1px solid #c56016;
  border-radius: 5px; 
  margin-bottom: 10px;
}

.fc-document-link {
  display: flex;
  justify-content: space-between;
  margin-left: 15px;
  margin-right: 15px;
}

.fc-document-block {
  display: none;
}

.fc-document-block.show {
  display: block;
}

.fc-document-type .fc-filter-head:hover {
  cursor: pointer;
}

.fc-document-head {
  display: flex;
  justify-content: space-between;
  margin-left: 15px;
}

.fc-document-link a {
  text-decoration: none;
  margin: 15px 0 15px 15px;
}

.fc-document-link .fc-name {
  margin: 15px 15px 15px 0;
}

.fc-document-block .fc-document-link {
  border-bottom: 1px solid white;
  margin-left: 50px;
  margin-right: 50px;
}

.fc-document-block .fc-document-link:last-of-type {
  border-bottom: none;
}

.fc-document-title {
  margin: 10px;
}

.fc-document-issuer {
  font-size: x-large;
  margin-left: 5px;
  display: none;
}

/**
 * Table.
 */
 .fc-table-body {
  width: 100%;
}

.fc-table .spinner {
  display: none;
}

#fc-table-wrapper {
  width: 100%;
}

.fc-table {
  display: flex;
  flex-wrap: wrap;
  margin: 0 0 3em 0;
  padding: 0;
  color: rgba(255,255,255,0.7);
  width: 100%;
}

.fc-table .fc-table-row {
  width: 100%;
  display: flex;
}

.fc-table .fc-table-row .fc-table-cell:nth-child(even) {
  background: #1d2b32;
}

.fc-table .fc-table-row .fc-table-cell {
  box-sizing: border-box;
  position: relative;
  flex-grow: 1;
  padding: 16px;
  overflow: hidden;
  text-align: center;
}

.fc-table-row {
  border: 1px solid;
  border-radius: 5px;
  padding: 1px;
  margin-bottom: 5px;
}

.fc-table-row.fc-table-row--head {
  border-color: #c56016;
}

.fc-table .fc-table-row .fc-table-cell.column-heading {
  color: #c56016;
  text-align: center;
}

.fc-table .fc-table-row .fc-table-cell .fc-table-cell--heading {
  display: none;
}

@media all and (max-width: 750px) {
  .fc-table {
    width: 900px;
  }
  .fund .fc-table,
  .product-summary .fc-table {
    width: 100%;
  }
  .fc-table--collapse {
    display: block;
    width: 95%;
    margin-left: auto;
    margin-right: auto;
    box-shadow: none;
  }
  .fc-table-row-wrapper {
    border: 1px solid #c56016;
    border-radius: 5px;
    margin-bottom: 20px;
  }
  .fc-table--collapse .fc-table-row {
    box-sizing: border-box;
    width: 100%;
    display: none;
    flex-wrap: wrap;
    border: none;
  }
  .fc-table--collapse .fc-table-row.show {
    display: flex;
  }
  .fc-table--collapse .fc-table-row .fc-table-cell {
    width: 100% !important;
    display: flex;
    align-items: center;
  }
  .fc-table--collapse .fc-table-row .fc-table-cell .fc-table-cell--heading {
    display: inline-block;
    flex: 1;
    text-align: left;
  }
  .fc-table--collapse .fc-table-row .fc-table-cell .fc-table-cell--content {
    flex: 2;
    text-align: right;
  }
  .fc-table--collapse .fc-table-row--head {
    display: none;
  }
  .fc-table .fc-table-row .fc-table-cell {
    flex-grow: 0;
  }
}

/**
 * Key Details/Facts.
 */ 
table.fc-key-details {
  width: 100%;
}

table.fc-key-details td {
  border: none;
  padding: 10px;
}

table.fc-key-details tr:nth-child(even) {
  background: #1d2b32;
}

table.fc-key-details td:first-of-type {
  text-align: left;
}

table.fc-key-details td:last-of-type {
  text-align: right;
}

.key-facts .fc-col:first-of-type {
  padding-left: 50px;
}

.key-facts .fc-col:last-of-type {
  padding-right: 50px;
}

.key-facts table {
  width: 100%;
  margin-bottom: 20px;
}

.key-facts tr:nth-child(even) {
  background: #1d2b32;
}

.key-facts tr td:last-of-type {
  text-align: right;
}

.key-facts td {
  padding-top: 10px;
  padding-bottom: 10px;
  vertical-align: top;
}

.key-facts td:first-of-type {
  padding-left: 10px;
}

.key-facts td:last-of-type {
  padding-right: 10px;
}

@media only screen and ( max-width: 750px ) {
  .key-facts .fc-col:first-of-type {
    padding-left: 20px;
  }
  .key-facts .fc-col:last-of-type {
    padding-right: 20px;
  }
}

/**
 * Fund.
 */ 
.fund-materials {
  margin-top: 30px;
}

.fund-materials .fc-document-type,
.fund-materials h2 {
  margin-bottom: 10px;
}

a.fl-button.fc-view-fund,
a.fl-button.fc-view-fund:visited {
  color: #c56016 !important;
  background: none !important;
}

a.fl-button.fc-view-fund:hover {
  background: #c56016 !important;
}

a.fl-button.fc-view-fund span {
  color: #c56016 !important;
}

a.fl-button.fc-view-fund:hover span {
  color: #fff !important;
}

a.fl-button.fc-download,
a.fl-button.fc-download:visited {
  color: rgba(255,255,255,0.7) !important; 
  background: none !important;
}

a.fl-button.fc-download:hover {
  border-color: #fff !important; 
  background: none !important;
}

a.fl-button.fc-download span {
  color: rgba(255,255,255,0.7) !important; 
}

a.fl-button.fc-download:hover span {
  color: #fff !important;
}

a.not-available {
  cursor: auto;
  color: #fff;
}

a.not-available:hover,
a.not-available:visited {
  color: #fff;
}

span.fc-doc-download {
  color: #fff;
}

.fc-download-icon {
  background: url( '../images/download.svg' ) no-repeat center;
  background-size: contain;
  width: 30px;
  height: 30px;
}

#fc-sort {
  display: flex;
  align-items: center;
  cursor: pointer;
}

.fc-sort-btn {
  position: relative;
  padding-right: 10px;
}

.fc-sort-up {
  position: absolute;
  bottom: 2px;
  color: rgba(197, 96, 22, .5);
}

.asc .fc-sort-up {
  color: rgba(197, 96, 22, 1);
}

.fc-sort-down {
  position: absolute;
  top: 2px;
  color: rgba(197, 96, 22, .5);
}

.desc .fc-sort-down {
  color: rgba(197, 96, 22, 1);
}

.fund .fclass-cell {
  width: 135px;
}

.fund .isin-cell {
  width: 165px;
}

.fund .nav-cell {
  width: 125px;
}

.fund .dchange-cell {
  width: 155px;
}

.fund .perchg-cell {
  width: 125px;
}

.fund .navdate-cell {
  width: 150px;
}

@media only screen and ( max-width: 750px ) {
  .fc-download-text {
    display: none;
  }
  .fc-download-icon {
    display: block;
  }
  .fund .fclass-cell {
    border-right: 1px solid;
    border-radius: 5px;
  }
  .fc-horiz {
    display: flex;
    cursor: pointer;
  }

  .fc-table-cell.perchg-cell,
  .fc-table-cell.navdate-cell,
  .fc-table-cell.level-cell,
  .fc-table-cell.curr-cell,
  .fc-table-cell.perf-cell,
  .fc-table-cell.payoff-cell,
  .fc-table-cell.gry-cell,
  .dot.perchg-dot,
  .dot.navdate-dot {
    display: none;
  }

.dot.gry-dot,
.dot.payoff-dot {
  display: none;
}

}

@media only screen and ( max-width: 600px ) {
  .fc-table-cell.dchange-cell,
  .fc-table-cell.levelp-cell {
    display: none;
  }
  .dot.perchg-dot,
  .dot.payoff-dot {
    display: block;
  }
}

@media only screen and ( max-width: 500px ) {
  .fc-table-cell.nav-cell,
  .fc-table-cell.under-cell {
    display: none;
  }
  .dot.navdate-dot {
    display: block;
  }  
}

/**
 * Product.
 */
.product .fc-table-body .fc-table-row {
  cursor: pointer;
}

.product .isin-cell {
  width: 165px;
}

.product .sedol-cell {
  width: 115px;
}

.product .name-cell {
  width: 380px;
}

.product .bid-cell,
.product .offer-cell {
  width: 85px;
}

.product .issuer-cell {
  width: 145px;
}

.product .timestamp-cell {
  width: 114px;
}

.product .gry-cell {
  width: 90px;
}

.button-cell {
  display: none;
}

.fc-readmore {
  width: 100%;
}

.fc-isin-button {
  display: none;
}

.fc-table .fc-table-row .fc-table-cell.name-cell {
  text-align: left;
}

.product .column-heading {
  cursor: pointer;
}

@media all and (min-width: 500px) {
  .fc-document-issuer {
    display: block;
  }
}

@media all and (max-width: 750px) {
  .product .isin-cell,
  .product .issuer-cell,
  .product .name-cell,
  .product .sedol-cell,
  .product .bid-cell,
  .product .offer-cell,
  .product .timestamp-cell,
  .product .gry-cell {
    width: 100%;
    max-width: none;
  }
  .button-cell {
    display: block;
  }
  .fc-isin-button {
    display: flex;
    font-weight: bold;
    cursor: pointer;
  }
  .fc-isin-button .fc-document-title {
    display: flex;
    align-items: center;
  }
}

/**
 * Product Summary.
 */
.fc-cols {
  display: flex;
}

.fc-col {
  width: 50%;
}

.fc-col:first-of-type {
  padding-right: 20px;
}

.fc-col:last-of-type {
  padding-left: 20px;
}

.fc-col:last-of-type h2:first-of-type {
  margin-top: 0;
}

.fc-product-x {
  display: flex;
  flex-direction: row;
}

.fc-x-col1,
.fc-x-col2 {
  display: flex;
  flex-direction: column;
  width: 50%;
}

.fc-x-hdr {
  display: flex;
  font-weight: 300;
  font-size: 32px;
  line-height: 1.4;
  letter-spacing: 0px; 
}

.fc-x-det {
  display: flex;
  padding: 10px 0;
}

.fc-x-hdr span,
.fc-x-det span {
  width: 50%;
}

.product-summary .date-cell {
  width: 200px;
}

.product-summary .type-cell {
  width: 135px;
}

.product-summary .under-cell {
  width: 235px;
}

.product-summary .levelp-cell {
  width: 145px;
}

.product-summary .level-cell {
  width: 155px;
}

.product-summary .curr-cell {
  width: 155px;
}

.product-summary .perf-cell {
  width: 200px;
}

.product-summary .payoff-cell {
  width: 165px;
}

.product-summary .gry-cell {
  width: 90px;
}

@media only screen and ( max-width: 750px ) {
  .fc-product-x {
    flex-direction: column;
  }
  .fc-col:last-of-type {
    margin-top: 30px;
    padding-left: 0;
  }
  .fc-cols {
    flex-direction: column;
  }
  .fc-col {
    width: 100%;
  }

}


/**
 * Miscellaneous.
 */
.dot {
  height: 8px;
  width: 8px;
  margin: 16px 7px;
  background-color: none;
  border: 1px solid rgba(255,255,255,0.7);
  border-radius: 50%;
  display: inline-block;
}

.dot.show {
  background-color: rgba(255,255,255,0.7);
}

.no-flexbox .fc-table {
  display: block;
}

.no-flexbox .fc-table.fc-table-cell {
  width: 100%;
}