/* Common header */
.path-proceedings .menu {
  background-color: #73deff;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1), 0px 1px 3px rgba(0, 0, 0, 0.06);
}
.path-proceedings .nav>li>a {
  text-transform: uppercase;
  color: var(--blue);
}
.header-title {
  line-height: var(--line-height-large);
  font-weight: var(--roboto-regular);
}
a:hover {
  text-decoration: none;
}
body .menu {
  bottom: 1px;
}
.menu-toggle-button:hover span {
  background-color: var(--orange);
}
/* Select Proceeding dropdown */

/* Container for the dropdown */
.custom-dropdown .dropdown-content {
  display: none;
}
.custom-dropdown.active .dropdown-content {
  display: block;
}
.custom-dropdown {
  position: relative;
  display: inline-block;
  font-size: 14px;
  /* width: 220px; */
  width: 230px;
  cursor: pointer;
  background-color: var(--white);
}
.custom-dropdown .dropdown-label {
  padding: 0;
}
.custom-dropdown .drop-text {
  /* padding: 5px 6px; */
  padding: 5px 10px;
  color: #4d4d4d;
  border-right: 1px solid #ccc;
  cursor: context-menu;
}
.dropdown-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 6.5px 10px;
  box-sizing: border-box;
  color: var(--grey);
  font-weight: 400;
  font-size: 14px;
  height: 40px;
}
.drop-text {
  flex: 1;
  text-align: left;
  color: var(--grey-shade);
  font-size: var(--font-size-3);
}
.drop-year-wrapper {
  display: flex;
  align-items: center;
  gap: 6px;
  /* padding-left: 6px; */
  padding-left: 10px;
}
.drop-year {
  font-size: 14px;
  font-weight: 500;
  color: #000;
  cursor: context-menu;
}
.drop-img {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.drop-img:hover {
  background: #dbdbdb;
}
.drop-img img {
  width: 9px;
  height: auto;
  transition: transform 0.3s ease, filter 0.3s ease;
}
.custom-dropdown.active .drop-img img {
  transform: rotate(180deg);
}
.custom-dropdown:hover .drop-img img {
  filter: brightness(0.7);
}
.dropdown-content {
  display: none;
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  width: 100%;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1), 0px 1px 3px rgba(0, 0, 0, 0.06);
  border-radius: 4px;
  background: var(--white);
  z-index: 1000;
  overflow: hidden;
}
.custom-dropdown.active .dropdown-content {
  display: block;
}
.year-wrapper div a {
  display: block;
  padding: 8px 12px;
  text-decoration: none;
  color: #333;
  font-size: 14px;
}
.year-wrapper div a:hover {
  background-color: #dbdbdb;
  border-radius: 4px;
}
.year-wrapper .year-2024 a:hover {
  border-bottom-right-radius: 0px;
  border-bottom-left-radius: 0px;
}
.year-wrapper .year-2022 a:hover {
  border-top-right-radius: 0px;
  border-top-left-radius: 0px;
  background-color: #f2f2f2;
}
.proceedings-24 .drop-year.yr-22 {
  display: none;
}
.proceedings-24 .year-2024 {
  background-color: #dbdbdb;
}
/* .custom-dropdown.active .drop-text,
.custom-dropdown:hover .drop-text {
  color: var(--blue);
} */
/* .custom-dropdown {
  position: relative;
  display: inline-block;
  font-size: 14px;
  border: 1px solid var(--blue);
  border-radius: 6px;
  width: 204px;
  cursor: pointer;
}
.dropdown-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 6.5px 10px;
  width: 100%;
  box-sizing: border-box;
  color: var(--grey-shade);
  font-weight: var(--roboto-regular);
  font-size: var(--font-size-3);
  line-height: 16.8px;
  height: 30px;
}
.drop-text {
  flex: 0 0 86%;
  text-align: left;
  color: var(--grey);
}
.drop-img {
  flex: 0 0 14%;
  text-align: center;
  background: url(images/down-arrow.svg) no-repeat center;
  height: 100%;
  max-width: 19px;
  background-size: 9px;
  transition: transform 0.3s ease;
}
.drop-img:hover {
  background: url(images/down-arrow-hover.svg) no-repeat center;
  background-size: 9px;
}
.dropdown-content {
  display: none;
  position: absolute;
  top: 104%;
  left: 0;
  width: 100%;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1),0px 1px 3px rgba(0, 0, 0, 0.06);
  border-radius: 4px;
  z-index: 1000;
  background: var(--white);
}
.year-wrapper a {
  display: block;
  padding: 8px 12px;
  text-decoration: none;
  color: #333;
  font-size: 14px;
}
.year-wrapper a:hover {
  background-color: #f0f0f0;
  border-radius: 4px;
}
.year-wrapper .year-2024 a:hover {
  border-bottom-right-radius: 0px;
  border-bottom-left-radius: 0px;
}
.year-wrapper .year-2022 a:hover {
  border-top-right-radius: 0px;
  border-top-left-radius: 0px;
}
.custom-dropdown.active .dropdown-content {
  display: block;
}
 .custom-dropdown:hover .drop-text {
  color: var(--blue);
 }
 .custom-dropdown:hover .drop-img {
  background: url(images/down-arrow-hover.svg) no-repeat center;
  background-size: 9px;
 }
.custom-dropdown .drop-text:hover,
.custom-dropdown .dropdown-label:hover .drop-text:hover {
  color: var(--blue);
}
.custom-dropdown.active .drop-img {
  background: url(images/up-arrow.svg) no-repeat center;
  background-size: 9px;
}
.custom-dropdown.active .drop-img:hover, .custom-dropdown.active  .drop-img {
  background: url(images/up-arrow-hover.svg) no-repeat center;
  background-size: 9px;
}
.custom-dropdown.active .drop-text {
  color: var(--blue);
}
.year-wrapper div {
  margin: 0;
  padding: 0;
} */
/* Language Dropdown */
.language-switcher-language-url {
  position: relative;
  display: inline-block;
  cursor: pointer;
}
.language-switcher-language-url .dropdown-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  /* width: 32px;
  height: 32px; */
  width: 30px;
  height: 30px;
  background: url('images/Group-1.svg') no-repeat center center;
  background-size: contain;
  cursor: auto;
}
.language-switcher-language-url ul.links {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  border: 1px solid #ddd;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  padding: 0;
  margin: 0;
  list-style: none;
  width: 150px;
  z-index: 1000;
}
.language-switcher-language-url ul.links li {
  border-bottom: 1px solid var(--gray2);
}
.language-switcher-language-url ul.links li:last-child {
  border-bottom: none;
}
.language-switcher-language-url ul.links li a {
  display: block;
  padding: 8px 12px;
  text-decoration: none;
  color: var(--grey-shade);
  font-weight: var(--roboto-regular);
  font-size: var(--font-size-3);
}
.language-switcher-language-url ul.links li a:hover {
  background-color: var(--ash-grey);
  color: var(--blue);;
}
.path-proceedings  .popup-section .article-main-title {
  margin-bottom: 20px;
}
.path-proceedings .popup-section .article-person-name {
  font-size: var(--font-size-4);
  font-weight: var(--roboto-bold);
  line-height: var(--line-height-sm);
}
.path-proceedings .popup-section .article-person-role,
.path-proceedings .popup-section .article-person-institution {
  font-size: var(--font-size-5);
  font-weight: var(--roboto-regular);
  line-height: var(--line-height-smaller);
}
/* Language Dropdown End*/

/* Header all */
/* .region-headertop {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
} */
.header-left {
  flex: 1;
  display: flex;
  align-items: center;
}
.header-right,
#block-microsite-proceedingsyearblock,
#block-microsite-languageswitcher,
#block-microsite-micrositerightheader1 {
  flex: 0 1 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  /* margin-left: 15px; */
}
#block-microsite-languageswitcher {
  border-left: 1px solid var(--silver-gray);
  border-right: 1px solid var(--silver-gray);
  padding-left: 15px;
  padding-right: 15px;
  cursor: auto;
}
.header-logo-wrapper {
  display: flex;
  align-items: center;
}
.header-logo {
  /* margin-right: 20px;
  height: 68px;
  max-width: 192px; */
  margin-right: 20px;
  height: 68px;
  max-width: 208px;
  display: flex;
  align-items: center;
  padding-right: 20px;
}
.header-logo img {
  width: 100%;
  height: 100%;
}
.header-right img,
.youtube-icon img,
.download-icon img {
  width: 28px;
  height: 28px;
}
.custom-dropdown {
  display: flex;
  align-items: center;
  cursor: context-menu;
}
.language-switcher-language-url {
  display: flex;
  align-items: center;
}
.menu-toggle-button {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 22px;
  margin-left: 0;
  width: 30px;
}
.menu-toggle-button span:first-child {
  top: 0px;
}
.menu-toggle-button span:nth-child(2) {
  top: 10px;
  /* height: 1.5px; */
}
.menu-toggle-button span:nth-child(3) {
  top: 20px;
}
header .youtube-icon {
  margin-right: 15px;
}
.header-top-section {
  padding: 16px 100px;
}
.act-menu .menu-toggle-button span:first-child {
  top: 10px;
}
.act-menu .menu-toggle-button span:nth-child(3) {
  top: 10px;
}
/* new */
.header-right .download-icon a,
.download-link a {
  cursor: context-menu;
}
/*******************15/1/25*******************************/
/********387935***************/
.proceedings-home .banner-common-wrapper {
  font-family: var(--teritiory-font);
}
.proceedings-home .banner-common-wrapper .date-box {
  font-family: var(--secondary-font);
}
.proceedings-home .date-box span:last-child {
  font-size: 25px;
  line-height: var(--line-height-small);
}
.proceedings-home .banner-date {
  margin-top: 0;
}
.proceedings-home .second-column::before {
  top: 1px;
  height: 64%;
}
/*************387937******************/
.proceedings-home .chinese-text {
  letter-spacing: 4px;
}
.proceedings-home .circle-info {
  background: rgba(255, 255, 255, 0.8);
}
.proceedings-home .article-description {
  margin-top: 20px;
}
.proceedings-home .agenda-tab-link:after {
  margin: -3px auto 0 auto;
}
/********************387942****************************/
.microsite-section .page-sub-title-2,
.microsite-section .block-title-2,
.proceedings-home .articles-component .view-header h3 {
  font-family: var(--teritiory-font) !important;
}
body.proceedings-home .session-category a .sub-category {
  font-size: 12px;
  line-height: 14px;
}
body.proceedings-home .sub-streams-view .views-row {
  background: #ff7c75 !important;
}
body.proceedings-home .grouping-wrapper-b .sub-streams-view .view-content .views-row {
  background: #ffd972 !important;
}
body.proceedings-home .grouping-wrapper-c .sub-streams-view .view-content .views-row {
  background: #66d4f1 !important;
}
.sub-streams-title a {
  color: #333333 !important;
}
body.path-proceedings .grouping-wrapper-a.sub-streams .sub-streams-title a:hover {
  color: #fff !important;
}
.sub-streams-view .views-row:hover a,
.sub-streams-title a:hover {
  color: #fff !important;
}
/**************************************/
body.proceedings-home .microsite-section.opening-remarks-component .page-sub-title {
  font-size: 64px;
  line-height: 70px;
}
.proceedings-home .opening-remarks-component .person-institution {
  font-size: 16px;
  line-height: 24px;
}
.proceedings-home .chinese-modernization .agent-turn .flex-col img {
  height: 500px;
}
body .listing-description a {
  color: #4d4d4d;
}
/*******************387997******************************/
.menu--proceedings-2024-menu li.active,
body.path-proceedings .menu--proceedings-2024-menu li.active:hover,
body.path-proceedings .menu--proceedings-2024-menu li.active a:hover {
  background: var(--orange);
  color: #fff;
}
.nav>li>a:focus,
.nav>li>a:hover {
  background: #29509c;
  color: #fff;
}
.menu--proceedings-2024-menu li.active a {
  color: #fff;
}
/*************************387992*************************************/
@media (min-width:1200px) {
  body .menu-toggle-button span:nth-child(2) {
    height: 1.5px;
  }
}
@media (max-width:1200px) {
  body .menu--proceedings-2024-menu li.active {
    background: transparent;
    color: var(--orange);
  }
  body .menu--proceedings-2024-menu li.active a {
    color: var(--orange);
  }
}
@media (min-width: 768px) and (max-width: 1100px) and (orientation:landscape) {
  body header .menu {
    padding: 40px 15px;
  }
}
@media (min-width: 1024px) and (max-width: 1366px) and (orientation:portrait) {
  body header .menu {
    padding: 40px 15px;
  }
}
@media (min-width: 768px) and (max-width: 1024px) and (orientation:landscape) {
  .header-logo {
    border-right: 1px solid #ccc !important;
  }
  .view-microsite-header .header-title {
    display: block !important;
  }
}
@media (max-width: 480px) {
  body.proceedings-home .opening-remarks-component .view-content ,
  body.proceedings-home .pleneries-component .listing-cards-2-view .view-content,
  body.proceedings-home .nec-streams-sub .list-col-4 .view-content {
    grid-template-columns: 1fr !important;
  }
}
@media (min-width: 481px) and (max-width: 767px) {
  body.proceedings-home .opening-remarks-component .view-content ,
  body.proceedings-home .pleneries-component .listing-cards-2-view .view-content,
  .proceedings-home .nec-streams-sub .list-col-4 .view-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
  .proceedings-home .pleneries-component .list-type .view-content .views-row ,
  .proceedings-home .nec-streams-sub .list-col-4 .view-content {
    max-width: 100%;
  }
  body.proceedings-home .listing-cards-2-view .views-row-inner .listing-image-field,
  body.proceedings-home .nec-streams-sub .listing-cards-2-view .views-row-inner .listing-image-field {
    height: auto !important;
  }
}
@media (max-width: 767px) {
  .custom-dropdown {
    /* width: 200px; */
    width: 205px;
  }
  .custom-dropdown .drop-text {
    padding: 5px 5px;
  }
  .drop-year-wrapper {
    padding-left: 5px;
  }
  .dropdown-label {
    height: 36px;
    line-height: 15px;
  }
  .dropdown-content {
    top: calc(100% + 0px);
  }
  .drop-img:hover {
    background: transparent;
  }
  .proceedings-home .listing-5-col .listing-cards-view .views-row {
    padding: 25px 10px 25px;
    height: 100%;
  }
  .custom-dropdown {
    background: white;
    padding: 5px;
  }
  .plenary-listing-page .popup-region .download-link {
    padding-left: 28px;
    padding-top: 0px;
    background-size: 24px;
  }
}
@media (min-width:912px) and (max-width: 1368px) and (orientation:portrait) {
  .view-microsite-header .header-title {
    /* line-height: 20px !important; */
    line-height: 26.8px !important;
  }
}
@media (min-width:912px) and (max-width: 1368px) {
  .view-microsite-header .header-title {
    display: block !important;
    /* line-height: 29px; */
    line-height: 26.8px; /*18-02-25*/
  }
  body .header-logo {
    border-right: 1px solid #ccc !important;
  }
}
@media (min-width:911px) and (max-width: 912px) {
  .view-microsite-header .header-title {
    line-height: 20px !important;
  }
  .path-proceedings header .menu {
    padding: 25px 15px;
}
}
@media (min-width: 540px) and (max-width: 720px) {
  .custom-dropdown {
    background: white;
  }
}
@media (min-width: 540px) and (max-width: 720px) and (orientation:landscape) {
  .act-menu.navbar-default #block-microsite-proceedingsyearblock.show {
    display: block !important;
    right: 20px;
    left: auto;
    position: absolute;
    top: 87px;
    z-index: 999;
  }
  body .custom-dropdown {
    width: 209px;
  }
  body.path-proceedings .menu {
    padding-top: 70px;
  }
  .view-microsite-header .header-title {
    display: block !important;
  }
  body .header-logo {
    border-right: 1px solid #ccc !important;
  }
}
@media (max-width: 767px) {
  body .pleneries-component .listing-cards-2-view .view-content {
    gap: 20px;
  }
}
@media (max-width: 450px) {
  body.path-proceedings .act-menu #block-microsite-proceedingsyearblock {
    right: 71px !important;
  }
}
@media (max-width: 530px) {
  body.path-proceedings .act-menu #block-microsite-proceedingsyearblock {
    right: 70px;
    left: auto;
  }
  .custom-dropdown {
    width: 209px;
  }
  .path-proceedings .act-menu #block-microsite-proceedingsyearblock {
    width: 159px;
    position: absolute;
    opacity: 1;
    visibility: visible;
    left: 48px;
    top: 87px;
    z-index: 999;
  }
  body.path-proceedings .act-menu #block-microsite-proceedingsyearblock {
    right: 64px;
  }
}
.list-type .views-row:hover .listing-title a {
  color: var(--blue);
}
.proceedings-home .video-field-inner .video-thumbnail::after {
  opacity: 1;
}
.proceedings-home .video-field-inner .video-heading ,
.proceedings-home .nec-turin-agenda .view-header h3 {
  font-family: var(--primary-font);
}
.proceedings-home .nec-turin-agenda .agend-section-sub-title {
  font-family: var(--teritiory-font);
  color: var(--blue);
}
body.proceedings-home .nec-turin-agenda .view-header h3 {
  line-height: 30px;
}
body.proceedings-home .microsite-section.nec-turin-agenda .block-title {
  line-height: 62px;
}
.agenda-card-description {
  color: var(--blue);
}
.agends-button-section a {
  font-weight: 700;
}
body .agenda-language-link {
  line-height: 24px;
  font-family: var(--teritiory-font);
  color: var(--blue);
}
body .agenda-language-links li:not(:last-child) {
  border-right: 1px solid #dfdfdf;
}
.proceedings-home .agenda-card ,
.proceedings-home .video-field-inner .views-row {
  box-shadow: 0px 4px 8px 4px #0000001a;
}
