.filter-cnt,
.filter-control {
  padding: 3.4rem;
  display: flex;
  margin-bottom: 2rem;
}

@media (min-width: 541px) and (max-width: 767px) {
  .filter-cnt,
  .filter-control {
    flex-direction: column;
  }
}

.filter-cnt .filter-cat,
.filter-cnt .filter-kw,
.filter-cnt .filter-type,
.filter-cnt .filter-name,
.filter-control .filter-cat,
.filter-control .filter-kw,
.filter-control .filter-type,
.filter-control .filter-name {
  border: 0.5px solid #c6c6c6;
  border-radius: 5px;
  font-size: 1rem;
  color: #7a7a7a;
  line-height: 1;
  height: 38px;
  padding: 0.7em 1em;
  flex: 1 1 auto;
  display: flex;
  align-items: center;
  margin-right: 2em;
  width: 50%;
}

.filter-cnt .filter-kw,
.filter-control .filter-kw {
  position: relative;
  cursor: pointer;
}

.filter-cnt .filter-kw input,
.filter-control .filter-kw input {
  width: 100%;
  border: 0;
}

.filter-cnt .filter-kw label,
.filter-control .filter-kw label {
  font-size: 0.7857rem;
  position: absolute;
  color: #333333;
  top: 0px;
  left: 1em;
  display: block;
  padding-bottom: 7px;
  transform: translateY(-100%);
}

.filter-cnt .filter-cat,
.filter-cnt .filter-type,
.filter-control .filter-cat,
.filter-control .filter-type {
  position: relative;
  cursor: pointer;
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA8AAAAIBAMAAADU/bjBAAAAElBMVEVNTU0AAABNTU1NTU1NTU1NTU3uL4oDAAAABnRSTlMyACkKIAaLXkXCAAAANElEQVQI12NwYAABICUEppkEGAQVQAxFIEMIJCAIZICEFMGMAAaGQDBDmIFZEMwQNDIEMgB1vgPnYcY1egAAAABJRU5ErkJggg==");
  background-position: 97% center;
  background-size: 15px 8px;
  background-repeat: no-repeat;
}

.filter-cnt .filter-cat:hover,
.filter-cnt .filter-type:hover,
.filter-control .filter-cat:hover,
.filter-control .filter-type:hover {
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA8AAAAIBAMAAADU/bjBAAAAD1BMVEVNTU0AAABNTU1NTU1NTU2Co6gKAAAABXRSTlMzAAMoIECf9NwAAAA6SURBVAjXJcjRDQARFAXRSXYLeFc0IBSACvRflYv5mhwktSKFJ/X5pvIVjwGmx4ApMLgRZE5/sLitDayKBDbsCAn4AAAAAElFTkSuQmCC");
}

.filter-cnt .filter-cat label,
.filter-cnt .filter-cat span,
.filter-cnt .filter-type label,
.filter-cnt .filter-type span,
.filter-control .filter-cat label,
.filter-control .filter-cat span,
.filter-control .filter-type label,
.filter-control .filter-type span {
  font-size: 0.7857rem;
  position: absolute;
  color: #333333;
  top: 0px;
  left: 1em;
  display: block;
  padding-bottom: 7px;
  transform: translateY(-100%);
}

.filter-cnt .filter-cat select,
.filter-cnt .filter-type select,
.filter-control .filter-cat select,
.filter-control .filter-type select {
  display: none;
}

.filter-cnt .filter-cat:hover .filter-type-options,
.filter-cnt .filter-type:hover .filter-type-options,
.filter-control .filter-cat:hover .filter-type-options,
.filter-control .filter-type:hover .filter-type-options {
  height: 200px;
  opacity: 1;
}

.filter-cnt .filter-btn input,
.filter-cnt .filter-submit button,
.filter-control .filter-btn input,
.filter-control .filter-submit button {
  padding: 0.415em 1em;
  font-size: 1.2857rem;
  width: 200px;
  background: #b8a880;
  color: white;
  border: 0;
  border-radius: 5px;
  -webkit-appearance: button;
  appearance: button;
}

.filter-cnt .filter-type-options,
.filter-control .filter-type-options {
  position: absolute;
  top: calc(100% - 3px);
  left: -1px;
  border-top: 0 !important;
  border: 0.5px solid #c6c6c6;
  width: calc(100% + 1px);
  padding-top: 3px;
  background: white;
  z-index: 100;
  height: 0;
  overflow: auto;
  opacity: 0;
  transition: all 0.3s;
}

.filter-cnt .filter-type-options > div,
.filter-control .filter-type-options > div {
  font-size: 1rem;
  color: #7a7a7a;
  line-height: 1;
  height: 38px;
  padding: 0.7em 1em;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  border-top: 0.5px solid rgba(198, 198, 198, 0.7);
  transition: all 0.3s;
}

.filter-cnt .filter-type-options > div.selected, .filter-cnt .filter-type-options > div:hover,
.filter-control .filter-type-options > div.selected,
.filter-control .filter-type-options > div:hover {
  background: #b8a880;
  color: white;
}

.items-list,
.filter-results {
  padding: 2rem;
  box-shadow: 0 0 10px 5px rgba(0, 0, 0, 0.1);
  margin-bottom: 50px;
}

.items-list .filter-prefix,
.items-list .filter-first-characters,
.filter-results .filter-prefix,
.filter-results .filter-first-characters {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.items-list .filter-prefix span,
.items-list .filter-first-characters span,
.filter-results .filter-prefix span,
.filter-results .filter-first-characters span {
  display: block;
  width: 36px;
  text-align: center;
  padding: 1.1em 1em;
  color: #808080;
  cursor: pointer;
}

.items-list .filter-prefix span:hover,
.items-list .filter-first-characters span:hover,
.filter-results .filter-prefix span:hover,
.filter-results .filter-first-characters span:hover {
  color: #b8a880;
}

.items-list .filter-prefix:after,
.items-list .filter-first-characters:after,
.filter-results .filter-prefix:after,
.filter-results .filter-first-characters:after {
  content: "";
  width: 100%;
  height: 1px;
  display: block;
  background: rgba(198, 198, 198, 0.7);
}

.items-list ul,
.items-list .filter-location-block,
.filter-results ul,
.filter-results .filter-location-block {
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  padding: 0.7em 0;
}

.items-list ul > li,
.items-list ul .filter-item,
.items-list .filter-location-block > li,
.items-list .filter-location-block .filter-item,
.filter-results ul > li,
.filter-results ul .filter-item,
.filter-results .filter-location-block > li,
.filter-results .filter-location-block .filter-item {
  cursor: pointer;
  width: calc(100% / 3);
  padding: 0.7rem;
}

.items-list ul > li > div.item,
.items-list ul .filter-item > div.item,
.items-list .filter-location-block > li > div.item,
.items-list .filter-location-block .filter-item > div.item,
.filter-results ul > li > div.item,
.filter-results ul .filter-item > div.item,
.filter-results .filter-location-block > li > div.item,
.filter-results .filter-location-block .filter-item > div.item {
  width: 100%;
  position: relative;
  background-size: cover !important;
  background-repeat: no-repeat !important;
  background-color: #ddd !important;
  background-position: center center !important;
}

.items-list ul > li > div.item > div,
.items-list ul .filter-item > div.item > div,
.items-list .filter-location-block > li > div.item > div,
.items-list .filter-location-block .filter-item > div.item > div,
.filter-results ul > li > div.item > div,
.filter-results ul .filter-item > div.item > div,
.filter-results .filter-location-block > li > div.item > div,
.filter-results .filter-location-block .filter-item > div.item > div {
  color: white;
  font-size: 1.45rem;
  font-weight: bold;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-transform: uppercase;
}

.items-list ul > li > div.item:before,
.items-list ul .filter-item > div.item:before,
.items-list .filter-location-block > li > div.item:before,
.items-list .filter-location-block .filter-item > div.item:before,
.filter-results ul > li > div.item:before,
.filter-results ul .filter-item > div.item:before,
.filter-results .filter-location-block > li > div.item:before,
.filter-results .filter-location-block .filter-item > div.item:before {
  content: "";
  display: block;
  padding-bottom: 67.4051%;
}

.filter-panel .pagination {
  padding: 1em;
  display: flex;
  flex-wrap: wrap;
}

.filter-panel .pagination > * {
  flex: 0 0 auto;
  padding: 1em;
}

.filter-panel .pagination > *, .filter-panel .pagination > *:hover, .filter-panel .pagination > *:focus {
  color: inherit;
  text-decoration: none;
}

.filter-panel .pagination b,
.filter-panel .pagination a:hover {
  color: #b8a880;
}

.filter-panel .pagination:hover > b {
  color: inherit;
}

/* Programme Guide */
.filter-type-options INPUT {
  margin-right: 5px;
}

#pgFilterType .filter-type-value-text {
  width: 100%;
  height: 38px;
  overflow: hidden;
}

#pgFilterType .filter-type-value-text SPAN {
  border: 0.5px solid #c6c6c6;
  border-radius: 5px;
  font-size: 1rem;
  color: #ffffff;
  padding: 0.1em 1em;
  margin: 5px 5px 5px 0px;
  display: inline-block;
  background: #b8a880;
  position: relative;
  top: auto;
  left: auto;
  transform: none;
  line-height: 28px;
}

.filter-date-list {
  position: relative;
}

.filter-date-list UL {
  display: block;
  text-align: center;
}

.filter-date-list UL LI {
  display: inline-block;
  margin: 0px 10px 0px 0px;
  padding: 0.7em 2em;
  font-size: 14px;
  cursor: pointer;
  border-radius: 4px;
  color: #7a7a7a;
  position: relative;
}

.filter-date-list UL LI:after {
  content: '';
  height: 25px;
  width: 1px;
  background: #c6c6c6;
  position: absolute;
  right: 0px;
  top: 50%;
  transform: translateY(-50%);
  display: block;
}

.filter-date-list UL LI.active {
  background: #b8a880;
  color: #FFFFFF;
}

.filter-date-list UL LI:last-of-type:after, .filter-date-list UL LI.active:after {
  display: none;
}

.filter-event-block .fullday-cnt {
  padding: 20px 0px 0px 0px;
  border-top: 1px solid #CCCCCC;
  margin: 0px 0px 20px 0px;
}

.filter-event-block .event {
  min-height: 127px;
  background-color: #fff;
  padding: 20px;
  position: relative;
}

.filter-event-block .item {
  min-height: 127px;
  background-color: #fff;
  border-radius: 0px 10px 10px 0px;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.1), 0 6px 20px 0 rgba(0, 0, 0, 0.1);
  margin: 0px 0px 20px 0px;
  padding: 20px;
  position: relative;
}

.filter-event-block .event P {
  font-size: 20px;
  font-weight: bold;
  color: #4d4d4d;
  margin: 0px;
}

.filter-event-block .event P:first-of-type {
  margin-bottom: 10px;
}

.filter-event-block .event SPAN {
  display: block;
  font-size: 14px;
  color: #808080;
}

.filter-event-block .item SPAN.time {
  background: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA8AAAAPCAYAAAA71pVKAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAPZJREFUeNpi/P//PwO5gBGb4I4VDQJAygBJ6IJHRMMHZDUgSxnRNCkAqX4gDsBi5gIgLoQZgqIZqBFk034gFsDjUpBGR6ABF0CamZCciaKRV0CCQcPQHV0zSH4+jMMEpfvRbWRl4wAbgAUYAC0rQNYcQGJAx4M1Q50sQKJmcEywALECLhUgpwuJIaQ/vX/B8Of3DzifCRRy2DR+//qB4fevHwzK2vZwDDIMCh7AbAaBA0DsgK759P6FuBx1ADnAJpLo50a4ZqDTN0BTEDEgEaj+AbLNIAMSgdQEAqkLpHEBzowBTd8JQGyPJLwRiDfAbISlbYAAAwAZglLqnEqStwAAAABJRU5ErkJggg==") left center no-repeat;
  display: block;
  font-size: 14px;
  color: #808080;
  padding-left: 20px;
}

.filter-event-block .item SPAN.location {
  background: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAsAAAAPCAYAAAAyPTUwAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAANBJREFUeNpi/P//PwOxgBGZs2NFQwKQsgdiBSC+AMQbPSIaDqAoBioyAFLzgdgAi4ELgBoSQQwmqAAuhSCQADSsH2wy1Or5SJIfoE4AaRZAEhdkgroRWaEi0FpHIO2IZoMDE9QzMHABqBCkgQFIX0BTbMAENQ2uG+oskKcb0BR/ALm5AMjoJyKYDUEmL0AzHRs4AHIWE9SNiXgUwuWZoJ7ZAKQ24FDcCJR/gBwpDFDd6M7ZAFQ4AcaBK4Y6JxCb9RiKoRpAiQZmUiIszGEAIMAAeMZCDqG/QoEAAAAASUVORK5CYII=") left center no-repeat;
  display: block;
  font-size: 14px;
  color: #808080;
  padding-left: 20px;
}

.filter-event-block .event-1 {
  border-left: 5px solid #ff9c1a;
}

.filter-event-block .event-2 {
  border-left: 5px solid #ff7ba6;
}

.filter-event-block .event-3 {
  border-left: 5px solid #f91673;
}

.filter-event-block .event-4 {
  border-left: 5px solid #d9c6de;
}

.filter-event-block .event-5 {
  border-left: 5px solid #a064ff;
}

.filter-event-block .event-6 {
  border-left: 5px solid #b7c6ce;
}

.filter-event-block .event-7 {
  border-left: 5px solid #e8cf5d;
}

.filter-event-block .event-8 {
  border-left: 5px solid #c1ac93;
}

.filter-event-block .fdevent-1 {
  border-left: 1px solid #ff9c1a;
}

.filter-event-block .fdevent-2 {
  border-left: 1px solid #ff7ba6;
}

.filter-event-block .fdevent-3 {
  border-left: 1px solid #f91673;
}

.filter-event-block .fdevent-4 {
  border-left: 1px solid #d9c6de;
}

.filter-event-block .fdevent-5 {
  border-left: 1px solid #a064ff;
}

.filter-event-block .fdevent-6 {
  border-left: 1px solid #b7c6ce;
}

.filter-event-block .fdevent-7 {
  border-left: 1px solid #e8cf5d;
}

.filter-event-block .fdevent-8 {
  border-left: 1px solid #c1ac93;
}

H5 {
  font-size: 14px;
  font-weight: bold;
  color: #b8a880;
  margin-bottom: 10px;
}

.filter-legend {
  display: block;
}

.filter-legend UL {
  display: block;
  margin: 0px 0px 10px 0px;
  padding: 0px;
}

.filter-legend UL LI {
  display: block;
  margin: 0px 0px 5px 0px;
  padding: 0px;
  width: calc(50% - 15px);
  float: left;
  padding-left: 15px;
  position: relative;
}

.filter-legend UL LI:before {
  content: '';
  width: 10px;
  height: 10px;
  display: block;
  border-radius: 5px;
  position: absolute;
  left: 0px;
  top: 50%;
  transform: translateY(-50%);
}

.filter-legend UL LI.event-1:before {
  background: #ff9c1a;
}

.filter-legend UL LI.event-2:before {
  background: #ff7ba6;
}

.filter-legend UL LI.event-3:before {
  background: #f91673;
}

.filter-legend UL LI.event-4:before {
  background: #d9c6de;
}

.filter-legend UL LI.event-5:before {
  background: #a064ff;
}

.filter-legend UL LI.event-6:before {
  background: #b7c6ce;
}

.filter-legend UL LI.event-7:before {
  background: #e8cf5d;
}

.filter-legend UL LI.event-8:before {
  background: #c1ac93;
}

.event-modal, .event-modal * {
  font-family: "Oxygen", sans-serif !important;
}

.event-modal .event-title {
  font-size: 1.7143rem;
  font-weight: bold;
  color: #333;
  margin: 1em 0 1em;
  text-align: center;
}

.event-modal .event-title:after {
  content: "";
  display: block;
  height: 4px;
  width: 50px;
  background: #b8a880;
  margin: 10px auto 0;
}

.event-properties SPAN {
  display: block;
  font-size: 16px;
  color: #808080;
  padding-left: 20px;
}

.event-properties SPAN.time {
  background: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA8AAAAPCAYAAAA71pVKAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAPZJREFUeNpi/P//PwO5gBGb4I4VDQJAygBJ6IJHRMMHZDUgSxnRNCkAqX4gDsBi5gIgLoQZgqIZqBFk034gFsDjUpBGR6ABF0CamZCciaKRV0CCQcPQHV0zSH4+jMMEpfvRbWRl4wAbgAUYAC0rQNYcQGJAx4M1Q50sQKJmcEywALECLhUgpwuJIaQ/vX/B8Of3DzifCRRy2DR+//qB4fevHwzK2vZwDDIMCh7AbAaBA0DsgK759P6FuBx1ADnAJpLo50a4ZqDTN0BTEDEgEaj+AbLNIAMSgdQEAqkLpHEBzowBTd8JQGyPJLwRiDfAbISlbYAAAwAZglLqnEqStwAAAABJRU5ErkJggg==") left center no-repeat;
}

.event-properties SPAN.location {
  background: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAsAAAAPCAYAAAAyPTUwAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAANBJREFUeNpi/P//PwOxgBGZs2NFQwKQsgdiBSC+AMQbPSIaDqAoBioyAFLzgdgAi4ELgBoSQQwmqAAuhSCQADSsH2wy1Or5SJIfoE4AaRZAEhdkgroRWaEi0FpHIO2IZoMDE9QzMHABqBCkgQFIX0BTbMAENQ2uG+oskKcb0BR/ALm5AMjoJyKYDUEmL0AzHRs4AHIWE9SNiXgUwuWZoJ7ZAKQ24FDcCJR/gBwpDFDd6M7ZAFQ4AcaBK4Y6JxCb9RiKoRpAiQZmUiIszGEAIMAAeMZCDqG/QoEAAAAASUVORK5CYII=") left center no-repeat;
}

.event-properties SPAN.date {
  background: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA8AAAAPCAYAAAA71pVKAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAQ9JREFUeNpiYKAWOLZzZsD960fX71jRYIBN/sLRVQYg+VP7FjiA+IwwCaCG9Zw8gg6cXPwCnz+8fPD71/cH6JpZ2TgVeAXEFT5/ePHh968fBxihGkEm7SfVpUyUeJMFmSMmrcHw5/cPMPvdqwcMQmIKEEWsHAyvnt6A8zm5BRie3r+AajNII0gTMgDxYQbC+N+/fsB0Nq+ABIOKjgOcD7IBxAfRMADiw12EbjMwJMHOBAFgiAJteYCiGWQzjI9iM8g5yM6EeQPmTKKcDbMZRCPzQS4B8UHqMDSDnHznygEUm5H5rGwcYD5IHcXxDNP8AeYsUEjC/ASiQXyQOAh8ev8ChY+ctguAlAAJFl8ACDAAEdOa4sMBUUsAAAAASUVORK5CYII=") left center no-repeat;
}

.event-speakers, .event-description {
  padding-top: 20px;
}

.event-speakers H4 {
  font-size: 20px;
  color: #4d4d4d;
  font-weight: bold;
  margin-top: 10px;
  margin-bottom: 10px;
}

.event-speakers A {
  border: 0.5px solid #c6c6c6;
  border-radius: 5px;
  font-size: 1rem;
  color: #7a7a7a;
  display: inline-block;
  float: left;
  padding: 0.7em 1em;
  margin-right: 10px;
  cursor: pointer;
  text-decoration: none;
}

.event-description, .event-description * {
  font-size: 18px;
  color: #4d4d4d;
  line-height: 26px;
}

.event-description H4 {
  font-size: 20px;
  color: #4d4d4d;
  font-weight: bold;
  margin-top: 10px;
  margin-bottom: 10px;
}

/* WHo's Coming */
#wcomFilterCountry {
  flex: none;
  width: 20%;
}

.filter-type-btnlist {
  padding: 0px;
}

.filter-type-btnlist:after {
  clear: both;
  display: block;
  content: '';
}

#wcomFilterJobFunc {
  position: relative;
}

.filter-jobfunc > SPAN {
  font-size: 0.7857rem;
  position: absolute;
  color: #333;
  top: 0px;
  left: 1em;
  display: block;
  padding-bottom: 7px;
  transform: translateY(-100%);
  line-height: 1;
}

.filter-type-btnlist .cat-btn, .filter-type-btnlist .clear-btn {
  border: 0.5px solid #c6c6c6;
  border-radius: 5px;
  font-size: 1rem;
  color: #7a7a7a;
  display: inline-block;
  float: left;
  padding: 0.7em 1em;
  margin-right: 1px;
  cursor: pointer;
}

.filter-jobfunc > SPAN {
  font-size: 0.7857rem;
  position: absolute;
  color: #333;
  top: 0px;
  left: 1em;
  display: block;
  padding-bottom: 7px;
  transform: translateY(-100%);
}

.filter-type-btnlist .cat-btn.active {
  background: #5dc5ea;
  color: #ffffff;
}

.filter-year-list {
  position: relative;
}

.filter-year-list UL {
  display: block;
  transform: translateY(-98%);
  position: absolute;
}

.filter-year-list UL:after {
  display: block;
  content: '';
  clear: both;
}

.filter-year-list UL LI {
  display: inline-block;
  margin: 0px 10px 0px 0px;
  padding: 0.7em 2em;
  font-size: 17px;
  background: #b8a880;
  color: #FFFFFF;
  cursor: pointer;
  border-radius: 10px 10px 0px 0px;
}

.filter-year-list UL LI.active {
  color: #b8a880;
  background: #FFFFFF;
  font-weight: bold;
  border-left: 0.5px solid #c6c6c6;
  border-top: 0.5px solid #c6c6c6;
  border-right: 0.5px solid #c6c6c6;
}

.filter-wcom-item {
  cursor: pointer;
  width: calc(100% / 4);
  padding: 0.7rem;
}

.filter-wcom-item .item {
  width: 100%;
  position: relative;
  background-size: cover !important;
  background-repeat: no-repeat !important;
  background-color: #ddd !important;
  background-position: center center !important;
  border-radius: 50%;
  margin-bottom: 22px;
}

.filter-wcom-item .item:before {
  content: '';
  display: block;
  padding-top: 100%;
}

.filter-wcom-item .item:after {
  width: 96%;
  height: 2px;
  background: #b8a880;
  content: '';
  display: block;
  position: absolute;
  bottom: -10px;
  left: 2%;
}

.filter-wcom-item P:first-of-type {
  font-size: 14px;
  color: #1a1a1a;
  text-align: center;
}

.filter-wcom-item P:last-of-type {
  font-size: 12px;
  color: #808080;
  text-align: center;
}

@media (max-width: 1000px) {
  .filter-control .filter-type, .filter-control .filter-jobfunc {
    margin-top: 30px !important;
    margin-bottom: 15px !important;
  }
  .filter-wcom-item {
    cursor: pointer;
    width: calc(100% / 3);
  }
}

@media (max-width: 768px) {
  .filter-control .filter-type, .filter-control .filter-jobfunc {
    margin-top: 30px !important;
    margin-bottom: 15px !important;
  }
  .filter-wcom-item {
    cursor: pointer;
    width: calc(100% / 2);
  }
}

@media (max-width: 450px) {
  .filter-wcom-item {
    cursor: pointer;
    width: calc(100%);
  }
}

.wcom-modal, .wcom-modal * {
  font-family: "Oxygen", sans-serif !important;
}

.wcom-modal {
  background: white;
  border-radius: 5px;
  padding: 2em 2em 5em;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 1300px;
  height: 100%;
  max-height: calc(100vh - 3rem);
  width: calc(100% - 2rem);
  display: flex;
  flex-direction: column;
  overflow-y: scroll;
}

.wcom-modal .wcom-content > div {
  display: block;
  width: 100%;
}

.wcom-modal .wcom-body-content .wcom-body-space {
  padding: 128px 88px 88px 88px;
  box-shadow: 0 0 10px 5px #f3f3f3;
  margin-bottom: 20px;
  margin-top: 100px;
  position: relative;
}

.wcom-modal .wcom-title {
  font-size: 1.7143rem;
  font-weight: bold;
  color: #333;
  margin: 1em 0 1em;
  text-align: center;
}

.wcom-modal .wcom-title:after {
  content: "";
  display: block;
  height: 4px;
  width: 50px;
  background: #b8a880;
  margin: 10px auto 0;
}

.wcom-modal .wcom-body-content .wcom-personal-profile-image {
  width: 176px;
  height: 176px;
  border: 4px solid #ececec;
  border-radius: 100%;
  overflow: hidden;
  background-color: white !important;
  background-position: center center !important;
  background-repeat: no-repeat !important;
  position:relative;
	margin:-226px auto 0px auto;
  xtop: -88px;
  xleft: 50%;
  xtransform: translateX(-50%);
	z-index:1200;
}

.wcom-modal .wcom-body-content .wcom-personal-name-n-achievement {
  xtransform: translateY(-50%);
  margin-bottom: 35.2px;
  font-size: 1.7143rem;
  color: #1a1a1a;
}

.wcom-modal .wcom-body-content .wcom-personal-name-n-achievement B {
  font-size: 24px;
  color: #1a1a1a;
  display: block;
  text-align: center;
}

.wcom-modal .wcom-body-content .wcom-personal-name-n-achievement SPAN {
  font-size: 20px;
  color: #808080;
  display: block;
  text-align: center;
}

.wcom-modal .wcom-body-content .wcom-personal-introduction {
  padding-bottom: 1.5em;
  border-bottom: 1px solid #e0e0e0;
}

.wcom-modal .wcom-body-content .wcom-personal-partcipation, .wcom-modal .wcom-body-content .wcom-personal-interviews {
  padding-bottom: 1.5em;
  padding-top: 1.8em;
}

.wcom-modal .wcom-body-content .wcom-personal-partcipation H4, .wcom-modal .wcom-body-content .wcom-personal-interviews H4 {
  font-size: 20px;
  color: #4d4d4d;
  font-weight: bold;
  margin-bottom: 10px;
}

.iveo_pipe_wcom_fullapp .filter-location-block {
  justify-content: left;
}

.iveo_pipe_wcom_fullapp .filter-first-characters SPAN.click {
  font-weight: bold;
  color: #b8a880;
}

.iveo_pipe_wcom_fullapp .filter-first-characters SPAN.click.active {
  text-decoration: underline;
}

#action_btn {
  display: inline-block;
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 2000;
  border: 0.5px solid #c6c6c6;
  border-radius: 5px;
  font-size: 1rem;
  color: #7a7a7a;
  padding: 0.7em 1em;
  margin-right: 0px;
  cursor: pointer;
  text-decoration: none;
  background: #FFFFFF;
}

.wcom-personal-partcipation H4 {
  color: transparent !important;
  display: block;
  position: relative;
}

.wcom-personal-partcipation H4:after {
  content: 'Past Participation';
  display: block;
  position: absolute;
  top: 0px;
  left: 0px;
  color: #4d4d4d;
}

.iveo_pipe_wcom_fullapp {
  display: block !important;
  width: calc(100% + 4.8em) !important;
  height: auto !important;
  margin-left: -2.4em;
  background: white;
}
