@charset "UTF-8";
/*---------------------------------------------------------------------------*\

	SETTINGS
	------------------------------------------------------------------------
	Tokens...................Variables for branding, e.g. colors, fonts

	TOOLS
	------------------------------------------------------------------------
	Mixins...................Sass mixins.

	GENERIC
	------------------------------------------------------------------------
	Reset....................Set global defaults.

	BASE
	------------------------------------------------------------------------
	Body.....................Reset Bootstrap's defaults on the <body> element.
	HTML.....................Base stylings for the document as a whole.
	Images...................Resets for <img> elements.
	Type.....................Typographic resets.

    COMPONENTS
    ------------------------------------------------------------------------
	Buttons..................Overrides to Bootstrap's button component.
	Card.....................Panels of content.
	Content..................Content container.
	Footer...................Footer goodies.
	Grid.....................Extensions to Bootstrap's grid component.
	Header...................Header magic.
	Hero.....................Header and navigation container.
	Icons....................SVG icons.
	Login....................APRICOT 2021 Pop up Login Style.
	Info Panels..............Information panels on the APRICOT 2017 home page.
	Mobile Header............A responsive header element for small viewports.
	Navigation...............Conference element.
	Page Banner..............Conference header background image.
	Sponsorship Matrix.......Conference sponsorship matrix diagrams.
	Tabs.....................Extensions to Bootstrap's tabs component.
	Thumbanils...............Extensions to Bootstrap's thumbnail component.
	Well.....................Extensions to Bootstrap's well component.

	UTILITIES
	------------------------------------------------------------------------
	Utilities................Helper classes.

\*---------------------------------------------------------------------------*/
/*---------------------------------------------------------------------------*\
    #SETTINGS
\*---------------------------------------------------------------------------*/
/*---------------------------------------------------------------------------*\
    #SETTINGS > #TOKENS
\*---------------------------------------------------------------------------*/
/*---------------------------------------------------------------------------*\
    #SETTINGS > #TOKENS > #COLOR
\*---------------------------------------------------------------------------*/
/*---------------------------------------------------------------------------*\
    #SETTINGS > #TOKENS > #FONT
\*---------------------------------------------------------------------------*/
/*---------------------------------------------------------------------------*\
    #TOOLS
\*---------------------------------------------------------------------------*/
/*---------------------------------------------------------------------------*\
    #TOOLS > #MIXINS
\*---------------------------------------------------------------------------*/
/*---------------------------------------------------------------------------*\
    #GENERIC
\*---------------------------------------------------------------------------*/
/*---------------------------------------------------------------------------*\
    #GENERIC > #RESET
\*---------------------------------------------------------------------------*/
* {
  box-sizing: border-box;
}

/*---------------------------------------------------------------------------*\
    #BASE
\*---------------------------------------------------------------------------*/
/*---------------------------------------------------------------------------*\
    #BASE > #BODY
\*---------------------------------------------------------------------------*/
body {
  background-color: transparent;
  font-family: "Open Sans", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
}

.main-bg {
  background-color: #0038A5;
  background-image: url("../images/main-bg-one.jpg");
  background-repeat: no-repeat;
  background-position: bottom;
  background-size: cover;
}

.main-bg .header {
  background-color: transparent;
}

.welcome-picture {
  position: relative;
  padding: 0;
  height: 60vh;
  min-height: auto;
  text-align: center;
  line-height: 1.5;
  color: #BE0000;
}

.banner img {
  width: 100%;
  height: 30vh;
  min-height: 550px;
}

.wrapper {
  position: absolute;
  top: 50%;
  left: 20%;
  margin: 0;
  transform: translate(-50%, -50%);
}

.wrapper .name {
  font-size: 24.8px;
  color: #F4A600;
}

.wrapper .date {
  font-size: 42.7px;
  color: #FFFFFF;
}

.wrapper .venue {
  font-size: 41.8px;
}

.wrapper .venue a {
  text-decoration: none;
  color: #F4A600;
}

.wrapper .venue a:hover {
  text-decoration: underline;
}

@media screen and (max-width: 1450px) {
  .wrapper .name {
    font-size: 20px;
  }
  .wrapper .venue {
    font-size: 25.8px;
  }
  .wrapper .date {
    font-size: 41.8px;
  }
  .wrapper {
    position: absolute;
    top: 50%;
    left: 35%;
    margin: 0;
    transform: translate(-50%, -50%);
  }
  .main-bg {
    background-color: #0038A5;
    background-image: url("../images/main-bg.jpg");
    background-repeat: no-repeat;
    background-position: bottom;
    background-size: cover;
  }
}

/* ----------- iPad Mini and Air ----------- */
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (-webkit-min-device-pixel-ratio: 1) {
  .wrapper .name {
    font-size: 20px;
  }
  .wrapper .venue {
    font-size: 25.8px;
  }
  .wrapper .date {
    font-size: 41.8px;
  }
  .main-bg {
    background-size: 40%;
  }
  .wrapper {
    position: absolute;
    top: 50%;
    left: 27%;
    margin: 0;
    transform: translate(-50%, -50%);
  }
  .banner img {
    width: 100%;
    height: 40vh;
    min-height: 420px;
  }
}

/* ----------- iPad Pro ----------- */
@media only screen and (min-device-width: 1024px) and (max-device-width: 1366px) and (-webkit-min-device-pixel-ratio: 2) {
  .wrapper {
    position: absolute;
    top: 50%;
    left: 20%;
    margin: 0;
    transform: translate(-50%, -50%);
  }
}

/* ----------- iPhone ----------- */
@media screen and (max-width: 767px) {
  .wrapper .venue {
    margin: 9px;
    font-size: 16.8px;
    letter-spacing: 2px;
  }
  .wrapper .date {
    margin: 9px;
    font-size: 21.8px;
  }
  .banner img {
    width: 100%;
    height: 25vh;
    min-height: 185px;
  }
  .wrapper {
    position: absolute;
    top: 53%;
    left: 35%;
    margin: 0;
    transform: translate(-50%, -50%);
  }
  .footer-info .text-right {
    text-align: left;
  }
  .footer-social {
    margin-top: 10px;
  }
  .wrapper .btn {
    border-radius: 0;
    padding: 5px 10px;
    font-size: 10px;
  }
  .main-bg {
    background-image: none;
  }
  .wrapper .name {
    margin: 9px;
    font-size: 16px;
  }
}

/*---------------------------------------------------------------------------*\
    #BASE > #HTML
\*---------------------------------------------------------------------------*/
html {
  background-color: #EBEFF0;
}

/*---------------------------------------------------------------------------*\
    #BASE > #IMAGES
\*---------------------------------------------------------------------------*/
/**
 * 1. Fluid images for responsive purposes.
 * 2. Setting `vertical-align` removes the whitespace that appears under `img`
 *    elements when they are dropped into a page as-is. Safer alternative to
 *    using `display: block;`.
 * 3. Offset `alt` text from surrounding copy.
 */
img {
  max-width: 100%;
  /* [1] */
  vertical-align: bottom;
  /* [2] */
  font-style: italic;
  /* [3] */
}

/**
 * If a `width` and/or `height` attribute have been explicitly defined, let’s
 * not make the image fluid.
 */
img[width],
img[height] {
  max-width: none;
}

/*---------------------------------------------------------------------------*\
    #BASE > #TYPE
\*---------------------------------------------------------------------------*/
h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 {
  margin: 16px 0;
  font-family: "Oswald", Arial, sans-serif;
}

p,
ul,
ol,
dl,
blockquote {
  margin: 0 0 24px;
}

dt ~ dt {
  margin-top: 16px;
}

.text-bold {
  font-weight: 600;
}

.page-title {
  display: inline;
  position: relative;
  border-bottom: 5px solid #EAC62A;
  padding-bottom: 10px;
  font-weight: 100;
  line-height: 2;
  color: #080808;
}

.alert > p + p {
  margin-top: 12px;
}

.alert-election {
  margin-bottom: 44px;
  border-radius: 4px;
  background-color: #0038A5;
  padding: 24px;
  text-align: center;
  font-size: 2rem;
  font-weight: 400;
  color: #FFFFFF;
}

/*---------------------------------------------------------------------------*\
    #BASE > #FIGURE
\*---------------------------------------------------------------------------*/
figure {
  margin-bottom: 2rem;
}

figcaption {
  font-size: 1.2rem;
}

/*---------------------------------------------------------------------------*\
    #BASE > #FIELDSET
\*---------------------------------------------------------------------------*/
fieldset {
  margin: 0;
  border: 1px solid #EEEEEE;
  padding: 20px;
  min-width: 0;
}

fieldset legend {
  display: block;
  margin-bottom: 0;
  border: 0;
  padding: 10px;
  width: inherit;
  font-size: 16px;
  line-height: inherit;
}

/*---------------------------------------------------------------------------*\
    #COMPONENTS
\*---------------------------------------------------------------------------*/
/*---------------------------------------------------------------------------*\
    #COMPONENTS > #BUTTONS
\*---------------------------------------------------------------------------*/
.btn {
  border-radius: 0;
  padding: 12px 20px;
  font-size: 16px;
}

.btn-primary {
  border-color: #002f8c;
  background-color: #0038A5;
}

.btn-primary:hover,
.btn-primary:focus {
  border-color: #001e59;
  background-color: #002772;
}

.btn-primary:focus,
.btn-primary:active:focus {
  border-color: #00153f;
  background-color: #001e59;
}

.btn-program {
  border-color: #ecc413;
  background-color: #EECA2A;
  color: #FFFFFF;
}

.btn-program:hover,
.btn-program:focus {
  border-color: #bc9d0f;
  background-color: #d4b011;
  color: #FFFFFF;
}

.btn-program:focus,
.btn-program:active:focus {
  border-color: #a5890d;
  background-color: #bc9d0f;
  color: #FFFFFF;
}

.btn-lg {
  padding: 14px 24px;
  font-size: 20px;
}

.btn-xl {
  padding: 24px 32px;
  font-size: 24px;
}

.btn-xs {
  border-radius: 3px;
  padding: 1px 5px;
  font-size: 12px;
  line-height: 1.5;
}

.btn-secondary {
  border-color: #18242f;
  background-color: #213140;
  color: #FFFFFF;
}

.btn-white {
  background-color: white;
  color: #9e8410;
}

.btn-secondary:hover,
.btn-secondary:focus {
  border-color: #070a0e;
  background-color: #10171e;
  color: #FFFFFF;
}

.btn-secondary:focus,
.btn-secondary:active:focus {
  border-color: black;
  background-color: #070a0e;
}

@media screen and (max-width: 550px) {
  .btn-responsive {
    width: 100%;
    white-space: normal;
  }
}

/*---------------------------------------------------------------------------*\
    #COMPONENTS > #CARD
\*---------------------------------------------------------------------------*/
.card {
  margin-bottom: 24px;
  border: 1px solid #CCCCCC;
  background-color: #F2F2F2;
  padding: 16px;
  width: 100%;
  -ms-flex: 1;
      flex: 1;
}

.card > :last-child {
  margin-bottom: 0;
}

/*---------------------------------------------------------------------------*\
    #COMPONENTS > #CONTENT
\*---------------------------------------------------------------------------*/
.content {
  margin: 0 0 18px 0;
  min-height: calc(100vh - 530px);
}

.content-block {
  background-color: #FFFFFF;
  padding: 32px;
}

.content-block > :last-child {
  margin-bottom: 0 !important;
}

@media screen and (min-width: 772px) {
  .content-block {
    padding: 42px;
  }
}

.content-block.condensed {
  padding: 32px;
}

.content-block.navy {
  background-color: #000000;
  color: #FFFFFF;
}

.content-block.flex {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: row;
      flex-direction: row;
}

.content-block.flex .flex-content {
  -ms-flex-order: 1;
      order: 1;
}

.content-block.flex .flex-image {
  background-image: url("../images/taichung-water-building.jpg");
  background-position: left;
  background-size: cover;
  width: 1500px;
  -ms-flex-order: 2;
      order: 2;
}

/*---------------------------------------------------------------------------*\
    #COMPONENTS > #COUNTDOWN
\*---------------------------------------------------------------------------*/
#js-countdown,
#js-countdown2,
#js-countdown3,
#countdown-election {
  margin-bottom: 44px;
  border-radius: 4px;
  background-color: #0038A5;
  padding: 24px;
  text-align: center;
  font-weight: 400;
  color: #FFFFFF;
}

@media screen and (min-width: 51.42857em) {
  #js-countdown,
  #js-countdown2,
  #js-countdown3,
  #countdown-election {
    font-size: 1.5em;
  }
}

@media screen and (max-width: 37.5em) {
  #js-countdown,
  #js-countdown2,
  #js-countdown3,
  #countdown-election {
    padding: 11px;
    font-size: 12px;
  }
}

.countdown__value,
#countdown-election span {
  padding-left: 6px;
  font-size: 25px;
}

@media screen and (min-width: 51.42857em) {
  .countdown__value,
  #countdown-election span {
    padding-left: 11px;
    font-size: 32px;
  }
}

@media screen and (max-width: 37.5em) {
  .countdown__value,
  #countdown-election span {
    font-size: 17px;
  }
}

.countdown__value:first-child {
  padding-left: 0;
}

.countdown__name,
#countdown-election p {
  display: block;
  margin-top: 2.5px;
  font-style: italic;
  font-size: 14px;
  font-weight: 400;
}

@media screen and (min-width: 51.42857em) {
  .countdown__name,
  #countdown-election p {
    font-size: 18px;
  }
}

@media screen and (max-width: 37.5em) {
  .countdown__name,
  #countdown-election p {
    padding: 5px;
    font-size: 13px;
  }
}

/*---------------------------------------------------------------------------*\
    #COMPONENTS > #FOOTER
\*---------------------------------------------------------------------------*/
.footer {
  position: absolute;
  background-color: #404040;
  padding: 50px 0 25px 0;
  width: 100%;
  min-height: 186px;
  color: #FFFFFF;
}

@media (max-width: 767px) {
  .footer {
    min-height: 300px;
  }
}

@media (max-width: 991px) {
  .footer {
    min-height: 210px;
  }
}

.footer-image {
  display: -ms-flexbox;
  display: flex;
  background-image: url("../images/apricot2019-footer-image.jpg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  max-width: 100%;
  height: 650px;
  color: #FFFFFF;
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex-pack: center;
      justify-content: center;
}

.footer-image .page-title {
  border-bottom: 5px solid #FFFFFF;
}

.footer a,
.footer p,
.footer h3 {
  color: #FFFFFF;
}

.footer-info img {
  padding-right: 15px;
  max-width: 60%;
}

.footer-social {
  margin-bottom: 12px;
}

.footer-block {
  background-color: rgba(0, 0, 0, 0.6);
  padding: 57px;
}

@media (min-width: 769px) {
  .footer-block {
    width: 435px;
  }
}

.footer-block h1,
.footer-block h2,
.footer-block h3 {
  margin-top: 35px;
  margin-bottom: 35px;
  text-align: left;
  color: #FFFFFF;
}

.footer-block p {
  margin: 0;
  text-align: left;
  font-size: 16px;
  font-weight: 100;
  color: #FFFFFF !important;
}

.footer-social-link {
  display: inline-block;
  margin-right: 5.5px;
  background-image: url("../images/social-media-icons.png");
  width: 34px;
  height: 34px;
  vertical-align: top;
}

.footer-social-link:hover {
  background-position: 0 -34px;
}

.footer-social-link.twitter {
  background-position: -34px 0;
}

.footer-social-link.twitter:hover {
  background-position: -34px -34px;
}

.footer-social-link.linkedin {
  background-position: -68px 0;
}

.footer-social-link.linkedin:hover {
  background-position: -68px -34px;
}

.footer-stamp {
  display: none;
}

@media screen and (min-width: 992px) {
  .footer-stamp {
    display: inline-block;
  }
}

@media screen and (min-width: 992px) {
  .footer-copyright {
    text-align: center;
  }
}

/*---------------------------------------------------------------------------*\
    #COMPONENTS > #GRID
\*---------------------------------------------------------------------------*/
/**
 * Remove the gutters from a grid.
 */
.row-no-gutter {
  margin-right: 0;
  margin-left: 0;
}

.row-no-gutter > [class^="col"] {
  padding-right: 0;
  padding-left: 0;
}

/**
 * Add support for an inline-block grid for easy vertical centering.
 */
.row-inline > [class^="col"] {
  display: inline-block;
  float: none;
}

.row-inline-middle > [class^="col"] {
  vertical-align: middle;
}

/**
 * Add support for a flex based grid by adding a modifier.
 */
.row-flex {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-align: stretch;
      align-items: stretch;
}

.row-flex > [class^="col"] {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
}

@media (max-width: 991px) {
  .row-flex > [class^="col"] {
    width: 100%;
  }
}

/**
 * Add a quick and easy 1/5 option for Bootstrap's 12-column based grid.
 */
.col-lg-5ths,
.col-md-5ths,
.col-sm-5ths,
.col-xs-5ths {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  min-height: 1px;
}

.col-xs-5ths {
  float: left;
  width: 20%;
}

@media (min-width: 768px) {
  .col-sm-5ths {
    float: left;
    width: 20%;
  }
}

@media (min-width: 992px) {
  .col-md-5ths {
    float: left;
    width: 20%;
  }
}

@media (min-width: 1200px) {
  .col-lg-5ths {
    float: left;
    width: 20%;
  }
}

/*---------------------------------------------------------------------------*\
    #COMPONENTS > #HEADER
\*---------------------------------------------------------------------------*/
.header {
  position: relative;
  background-color: #0038A5;
  color: #FFFFFF;
}

@media screen and (max-width: 991px) {
  .js .header {
    display: none;
  }
}

.header__bg {
  background-image: url("../images/header-bg.png");
  background-repeat: no-repeat;
  background-position: left;
  background-size: contain;
}

.header__bg img {
  width: 320px;
}

.header__bg .rightimage img {
  width: 330px;
}

.header__block {
  position: absolute;
  top: 0;
  left: 220px;
  background-color: rgba(255, 255, 255, 0.4);
  padding-top: 10px;
  width: 140px;
  height: 130px;
  text-align: center;
  font-size: 100px;
  font-weight: bold;
  color: #FFFFFF;
}

.header__logo {
  position: absolute;
  margin: 0;
  padding-top: 55px;
  width: 170px;
}

.header__illustration {
  position: absolute;
  top: 10px;
  right: 20px;
  width: 220px;
}

.header__venue {
  position: relative;
  margin-top: 110px;
  font-size: 16px;
  font-weight: 600;
}

.header__venue small {
  font-weight: normal;
}

.venue_text {
  margin-top: 10px;
  margin-right: 20px;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.1;
}

.venue_text small {
  font-weight: normal;
}

.header__hashtag {
  position: absolute;
  top: 20px;
  right: 150px;
  color: #FFFFFF;
}

.mobile-view .h2 {
  margin-top: 0;
}

.homepage_img {
  height: 415px;
}

@media screen and (max-width: 1280px) {
  .homepage_img {
    height: 350px;
  }
}

@media screen and (max-width: 992px) {
  .homepage_img {
    margin-bottom: 20px;
    height: auto;
  }
}

@media screen and (max-width: 992px) {
  .header__illustration {
    display: none;
  }
}

/*---------------------------------------------------------------------------*\
    #COMPONENTS > #HERO
\*---------------------------------------------------------------------------*/
@media screen and (max-width: 991px) {
  .js .hero .container {
    padding: 0;
    width: auto;
  }
}

/*---------------------------------------------------------------------------*\
	#COMPONENTS > #ICONS
\*---------------------------------------------------------------------------*/
.icon-container {
  display: block;
  vertical-align: bottom;
  line-height: 1;
}

.icon {
  width: 18.66725px;
  height: 18.66725px;
  vertical-align: middle;
  line-height: 1;
  fill: currentColor;
}

.icon-l {
  width: 36px;
  height: 36px;
}

.icon-color .fa {
  color: #0038A5;
}

/*---------------------------------------------------------------------------*\
    #COMPONENTS > #LOGIN
\*---------------------------------------------------------------------------*/
.modal.in .modal-dialog {
  transform: translate(0, 50%);
  transition: all 0.8s ease-in-out;
}

@media screen and (max-width: 1650px) {
  .modal.in .modal-dialog {
    transform: translate(0, 30%);
    transition: all 0.8s ease-in-out;
  }
}

@media screen and (max-width: 1200px) {
  .modal.in .modal-dialog {
    transform: translate(0, 20%);
  }
}

.flexbox {
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
}

@media screen and (max-width: 1366px) {
  .flexbox {
    -ms-flex-direction: column-reverse;
        flex-direction: column-reverse;
  }
}

.flexbox .col {
  -ms-flex: 1;
      flex: 1;
  position: relative;
}

.flexbox .col:nth-child(1) {
  -ms-flex-order: 1;
  order: 0;
}

.flexbox .col:nth-child(2) {
  -ms-flex-order: 0;
  order: 1;
}

.login-text {
  text-align: center;
}

.login-text-bold {
  margin: 15px auto;
  font-size: 20px;
  font-weight: 600;
  color: #0038A5;
}

.login-title h2 {
  margin: 0 0 35px;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  color: #0038A5;
}

@media screen and (max-width: 450px) {
  .login-title h2 {
    font-size: 22px;
  }
}

.login-title p {
  margin: 15px 0 0;
  text-transform: uppercase;
  font-family: Oswald, Arial, sans-serif;
  font-size: 18px;
  color: #6F7072;
}

.login-button .btn {
  padding: 8px 20px;
  width: 65%;
}

@media screen and (max-width: 450px) {
  .login-button .btn {
    width: 90%;
  }
}

.login-button .btn-primary {
  border-color: #0038A5;
  background-color: #0038A5;
}

.login-button .need-help {
  margin: 15px auto;
  border-color: #EAC62A;
  background-color: #EAC62A;
  color: #0038A5;
}

.login-button .btn-border {
  border-color: #0038A5;
  background-color: transparent;
  color: #0038A5;
}

.login-button p {
  margin: 20px auto;
  width: 65%;
  font-size: 12px;
  color: #6F7072;
}

@media screen and (max-width: 450px) {
  .login-button p {
    width: 90%;
  }
}

.login-button p a {
  text-decoration: underline;
  color: #6F7072;
  cursor: pointer;
}

.login-help {
  background-color: #3D95191A;
  padding: 10px;
}

@media screen and (min-width: 1400px) {
  .login-help {
    display: inline-block;
    position: absolute;
    right: 0;
    bottom: 0;
    width: 100%;
  }
}

.login-help p {
  margin: 0;
  font-weight: 600;
  color: #080808;
}

.login-popup .show {
  background-color: #00000052;
}

.login-popup .modal-dialog {
  position: absolute;
  right: 0;
  left: 0;
  width: 65%;
  text-align: center;
}

@media screen and (max-width: 750px) {
  .login-popup .modal-dialog {
    display: block;
    margin: 0 auto;
    width: 80%;
  }
}

.login-popup .modal-content {
  box-shadow: none;
  border: none;
  border-radius: 0;
}

.login-popup .modal-body {
  padding: 25px;
}

@media screen and (max-width: 1350px) {
  .login-image img {
    display: block;
    margin: 0 auto;
  }
}

/*---------------------------------------------------------------------------*\
    #COMPONENTS > #INFO-PANELS
\*---------------------------------------------------------------------------*/
.info-panels {
  display: contents;
  -ms-flex-direction: row;
      flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-pack: justify;
      justify-content: space-between;
}

.info-panel {
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex-pack: justify;
      justify-content: space-between;
}

.info-panel .link {
  color: #0038A5;
}

.info-panel-body {
  margin-bottom: 18px;
  background-color: #FFFFFF;
  padding: 24px;
  width: 100%;
  color: #0038A5;
}

.info-panel-body > :last-child {
  margin-bottom: 0 !important;
}

.info-panel-body.papers {
  margin-top: -20px;
}

.info-panel-body.white {
  background-color: #FFFFFF;
  color: #000000;
}

.info-panel-body.sponsors {
  text-align: center;
}

.info-panel-body.sponsors img {
  margin-right: auto;
  margin-left: auto;
}

.info-panel-body.join-us {
  text-align: center;
  font-size: 28px;
  line-height: 1.25;
}

@media screen and (min-width: 768px) {
  .info-panel-body.join-us {
    margin-right: 20px;
    padding-top: 76px;
    -ms-flex: 1;
        flex: 1;
  }
}

@media screen and (min-width: 992px) {
  .info-panel-body.join-us {
    margin-right: 0;
    padding-top: 85px;
    padding-bottom: 85px;
    font-size: 42px;
  }
}

.notices {
  background-color: transparent;
  padding: 0;
}

.notice {
  display: block;
  position: relative;
  z-index: 1;
  margin-bottom: 0;
  background-color: black;
  padding: 125px;
  padding-top: 200px;
  padding-bottom: 200px;
  text-align: right;
}

.notice-body {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 1;
  margin: 0;
  background-color: #0036A9CC;
  padding-right: 15px;
  width: 100%;
  text-align: left;
  font-weight: 600;
  word-spacing: 0;
  color: #FFFFFF;
}

.notice-body a {
  text-decoration: underline;
  font-weight: 600;
  color: #FFFFFF;
}

.notice-body a:hover {
  color: #EECA2A;
}

.notice-body p {
  margin: 0 0 5px;
  font-size: 16px;
  line-height: 1.3333;
}

.notice-body .label {
  background-color: #000000;
  padding: 10px;
  font-size: 16px;
  font-weight: bold;
}

@media screen and (max-width: 768px) {
  .notice-body {
    padding-left: 0;
  }
  .notice-body p {
    font-size: 20px;
  }
}

@media screen and (min-width: 768px) {
  .notice-body {
    padding-left: 15px;
  }
}

.notice-body::before {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  content: "";
}

.notice::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  opacity: 0.8;
  z-index: -1;
  background-position: bottom right;
  background-size: cover;
  content: "";
}

.notice.registration::after {
  background-image: url("../images/homepage/highlight-box.jpg");
  background-position: center;
}

.notice.online::after {
  background-image: url("../images/homepage/phnog.jpg");
  background-position: center;
}

.notice.openingplenary::after {
  background-image: url("../images/homepage/goran.jpg");
  background-position: center;
}

.notice.bgp::after {
  background-image: url("../images/homepage/bgp.jpg");
  background-position: center;
}

.notice.rpki::after {
  background-image: url("../images/homepage/RPKI_key.png");
  background-position: center;
}

.notice.peering::after {
  background-image: url("../images/homepage/Peering-Connecting-the-World.jpg");
  background-position: center;
}

.notice.ipv6::after {
  background-image: url("../images/homepage/IPv6.jpg");
  background-position: center;
}

.notice.pdp::after {
  background-image: url("../images/homepage/pdp.jpg");
  background-position: center;
}

.notice.security::after {
  background-image: url("../images/homepage/security.jpg");
  background-position: center;
}

.notice.ec::after {
  background-image: url("../images/homepage/ec.png");
  background-position: 35% 0%;
}

.notice.closingplenary::after {
  background-image: url("../images/homepage/closingplenary.jpg");
  background-position: center;
}

.notice.sponsors::after {
  background-image: url("../images/homepage/apnic52.png");
  background-position: center;
}

.bg-position-center {
  background-position: center;
}

.bg-size-cover {
  background-size: cover;
}

.info-panel-body.location {
  position: relative;
  z-index: 1;
  background-color: #0038A5;
  height: 335px;
  text-align: right;
  font-size: 20px;
  color: #FFFFFF;
}

@media screen and (min-width: 768px) {
  .info-panel-body.location {
    margin-right: 20px;
    -ms-flex: 1;
        flex: 1;
  }
}

@media screen and (min-width: 992px) {
  .info-panel-body.location {
    margin-right: 0;
    font-size: 24px;
    -ms-flex: none;
        flex: none;
  }
}

.info-panel-body.location::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  opacity: 0.4;
  z-index: -1;
  background-image: url("../images/nightscape.jpg");
  background-position: bottom right;
  background-size: cover;
  content: "";
}

.highlight-box {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  opacity: 0.4;
  z-index: -1;
  background-image: url("../images/highlight-box.jpg");
  background-position: bottom right;
  background-size: cover;
  content: "";
}

.info-panel-body.location .city {
  font-size: 38px;
  line-height: 1.1;
}

@media screen and (min-width: 992px) {
  .info-panel-body.location .city {
    font-size: 52px;
  }
}

.info-panel-body.location .country {
  font-size: 18px;
  line-height: 1.1;
}

@media screen and (min-width: 992px) {
  .info-panel-body.location .country {
    font-size: 38px;
  }
}

.info-panel-body.location .date {
  margin-bottom: 0;
  font-size: 20px;
}

.info-panel-body.sponsor {
  text-align: center;
  font-size: 32px;
  -ms-flex: 1;
      flex: 1;
}

@media screen and (min-width: 768px) {
  .info-panel-body.sponsor {
    padding-top: 120px;
  }
}

@media screen and (min-width: 992px) {
  .info-panel-body.sponsor {
    padding-top: 24px;
  }
}

@media screen and (min-width: 1200px) {
  .info-panel-body.sponsor {
    padding-top: 46px;
  }
}

.info-panel-body.sponsor:hover,
.info-panel-body.sponsor:focus {
  background-color: black;
  text-decoration: none;
  color: #FFFFFF;
}

.info-panel-body.sponsor:active {
  background-color: black;
}

.info-panel-body.social {
  position: relative;
  z-index: 1;
  background-color: #FFFFFF;
  background-position: top !important;
  background-repeat: no-repeat;
  background-size: cover;
  height: 400px;
  text-align: right;
  color: #FFFFFF;
  box-shadow: 0 1px 11px rgba(0, 0, 0, 0.2);
}

.info-panel-body.social .social-text {
  position: absolute;
  right: 0;
  bottom: 0;
  background-color: #0036A9CC;
  padding: 10px 5px;
  width: 100%;
  word-spacing: 0;
  color: #FFFFFF;
}

.info-panel-body.social .social-text p {
  margin: 0 10px 10px;
  font-size: 1.4em;
  font-weight: 600;
}

.info-panel-body.social .social-text a {
  text-decoration: underline;
  color: #FFFFFF;
}

.info-panel-body.social .social-text a:hover {
  color: #FFFFFF;
}

@media screen and (max-width: 991px) {
  .info-panel-body.social {
    margin-top: 26px;
  }
}

.info-panel-body.social.dj {
  background-color: #00369E;
  background-size: contain;
}

@media screen and (min-width: 768px) {
  .info-panel-body.social {
    margin-right: 20px;
    -ms-flex: 1;
    flex: 1;
  }
}

@media screen and (min-width: 992px) {
  .info-panel-body.social {
    margin-right: 0;
    -ms-flex: none;
    flex: none;
  }
  .social.sn-opening::after {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    opacity: 0.5;
    z-index: -1;
    background-size: cover;
    content: "";
  }
}

/*---------------------------------------------------------------------------*\
	#COMPONENTS > #MOBILE-HEADER
\*---------------------------------------------------------------------------*/
.no-js .mobile-header {
  display: none;
}

.js .mobile-header {
  display: none;
}

@media screen and (max-width: 991px) {
  .js .mobile-header {
    display: table;
    position: relative;
    top: 0;
    left: 0;
    z-index: 1;
    background-color: #FFFFFF;
    width: 100%;
  }
}

.mobile-header-cell {
  display: table-cell;
  background-color: #0038A5;
  padding: 10.667px;
  vertical-align: middle;
  color: #FFFFFF;
}

.mobile-header-cell:visited, .mobile-header-cell:hover, .mobile-header-cell:active, .mobile-header-cell:focus {
  color: #FFFFFF;
}

.mobile-header-navigation-toggle {
  background-image: none;
  width: 48px;
}

.mobile-header-logo {
  text-align: right;
  font-weight: bold;
}

.mobile-header-logo a {
  text-decoration: none;
  color: #FFFFFF;
}

.mobile-header-logo img {
  width: 175px;
  vertical-align: middle;
}

.mobile-header-logo .conf-num {
  position: absolute;
  top: 0;
  right: 20px;
  margin: 0 0 0 10px;
  background-color: rgba(255, 255, 255, 0.4) !important;
  padding: 10px 3px 0 3px;
}

/*---------------------------------------------------------------------------*\
    #COMPONENTS > #NAVIGATION
\*---------------------------------------------------------------------------*/
.navigation {
  background-color: #FFFFFF;
  padding: 0 8px;
  text-align: right;
}

@media screen and (max-width: 991px) {
  .js .navigation {
    display: none;
    padding: 0;
    width: 100%;
    text-align: left;
  }
}

@media screen and (max-width: 991px) {
  .js.has-nav .navigation {
    display: block;
  }
}

.navigation .nav {
  padding: 0;
}

@media screen and (max-width: 991px) {
  .js .navigation .nav {
    float: none !important;
    background-color: #FFFFFF;
  }
}

@media screen and (max-width: 991px) {
  .js .navigation .nav-pills > li {
    display: block;
    float: none;
    margin-left: 0;
    border-bottom: 1px solid #0038A5;
  }
}

.navigation .nav li a {
  padding: 8px 12px;
  text-transform: uppercase;
  font-family: "Oswald", Arial, sans-serif;
  font-size: 16px;
  font-weight: 100;
  letter-spacing: 1px;
  color: #0038A5;
}

@media screen and (max-width: 1299px) {
  .navigation .nav li a {
    padding: 8px 8px;
  }
}

.navigation .nav li a:hover, .navigation .nav li a:focus {
  border-radius: 0;
  background: #0038A5;
  color: #FFFFFF;
}

@media screen and (max-width: 991px) {
  .js .navigation .nav li a {
    color: #0038A5;
  }
  .js .navigation .nav li a:hover, .js .navigation .nav li a:focus {
    background: #0038A5;
    color: #FFFFFF;
  }
}

.navigation .nav li ul.dropdown-content li a:active, .navigation .nav li ul.dropdown-content li a:focus {
  background-color: transparent;
}

.dropdown:hover .dropdown-content, .dropdown:focus .dropdown-content, .dropdown:focus-within .dropdown-content, .dropdown:active .dropdown-content {
  display: block;
}

.dropdown-content {
  display: none;
  position: absolute;
  z-index: 3;
  margin: 0;
  background-color: #FFFFFF;
  padding: 0;
  min-width: 170px;
  list-style: none;
  text-align: left;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25);
}

@media screen and (max-width: 991px) {
  .js .dropdown-content {
    display: block;
    position: relative;
    background-color: #EBEFF0;
    padding-top: 0;
    box-shadow: none;
  }
}

@media screen and (max-width: 991px) {
  .dropdown-content {
    border-top: 1px solid #0038A5;
  }
}

#homepage .navigation .dropdown-content {
  box-shadow: none;
}

.dropdown-content li {
  text-decoration: none;
  white-space: nowrap;
}

.dropdown-content li.highlight a {
  background-color: #0038A5 !important;
  color: white !important;
}

.dropdown-content li.highlight a:hover, .dropdown-content li.highlight a:focus, .dropdown-content li.highlight a:active {
  background-color: #d4b011 !important;
}

.dropdown-content li:hover, .dropdown-content li:focus, .dropdown-content li:active {
  background-color: #002772;
}

.dropdown-content li a {
  display: inline-block;
  padding: 1rem 1.5rem !important;
  width: 100%;
}

@media screen and (max-width: 991px) {
  .js .dropdown-content li a {
    padding-left: 40px !important;
  }
}

@media screen and (max-width: 991px) {
  .dropdown-content li {
    border-bottom: 1px solid #0038A5;
  }
  .dropdown-content li:last-child {
    border-bottom: 1px solid transparent;
  }
}

.dropdown-content li:hover a,
.dropdown-content li:focus a,
.dropdown-content li:active a {
  color: #FFFFFF !important;
}

.dropdown-content a {
  background-color: transparent;
  color: #0038A5 !important;
}

.dropdown-content li a:hover .dropdown-content li a:focus,
.dropdown-content li a:active {
  background-color: transparent !important;
  text-decoration: none;
  color: #FFFFFF !important;
}

/*---------------------------------------------------------------------------*\
    #COMPONENTS > #PAGE-BANNER
\*---------------------------------------------------------------------------*/
.page-banner {
  background-color: #0038A5;
  background-image: url("../images/main-bg.jpg");
  background-repeat: no-repeat;
  background-position: bottom;
  background-size: cover;
  width: 100%;
  height: 100vh;
  min-height: 700px;
}

.faqbox {
  margin: 20px 0;
  padding: 5px 15px;
  box-shadow: -1px 2px 6px 0 rgba(109, 106, 106, 0.1);
}

/*---------------------------------------------------------------------------*\
    #COMPONENTS > #SPONSORS
\*---------------------------------------------------------------------------*/
/*
.sponsors {
	img {
	}
}
*/
.sponsor-carousel-text {
  font-weight: 600;
  color: #404040;
}

/*---------------------------------------------------------------------------*\
    #COMPONENTS > #SPONSORSHIP-MATRIX
\*---------------------------------------------------------------------------*/
.sponsorship-matrix {
  margin-top: 48px;
}

.sponsorship-matrix .row {
  margin-bottom: 24px;
}

.sponsorship-matrix .row:last-child {
  margin-bottom: 0;
}

.sponsorship-matrix-card {
  display: -ms-flexbox;
  display: flex;
  border: 1px solid #C64130;
  border-radius: 7px;
  padding: 7px;
  -ms-flex: 1;
      flex: 1;
  -ms-flex-direction: column;
      flex-direction: column;
}

.sponsorship-matrix-card .panel-heading {
  border-radius: 0;
}

.sponsorship-matrix-card-heading {
  margin: 0;
}

.sponsorship-matrix-card-price {
  margin-top: 0;
  font-weight: 600;
}

.sponsorship-matrix-card-price {
  color: #000000;
}

.sponsorship-matrix-card-sponsors,
.sponsorship-matrix-card-booths,
.sponsorship-matrix-card-passes {
  margin-bottom: 6px;
}

.sponsorship-matrix-card-booths,
.sponsorship-matrix-card-passes {
  font-style: italic;
  font-size: 14px;
}

.sponsorship-matrix-card .panel-body > :last-child {
  margin-bottom: 0 !important;
}

.sponsorship-matrix-card .panel-body ul {
  padding-left: 16px;
}

.sponsorship-matrix-card-list {
  font-size: 14px;
  -ms-flex: 1;
      flex: 1;
}

.sponsorship-matrix-card-list .disabled {
  text-decoration: line-through;
}

.sponsorship-matrix-card .panel-heading {
  border-radius: 6px;
  background-color: #F5F5F5;
}

.sponsorship-matrix-card.platinum {
  border: 1px solid #C64130;
  border-radius: 7px;
  padding: 7px;
}

.sponsorship-matrix-card.platinum .panel-heading {
  border-radius: 6px;
  background-color: #F5F5F5;
  color: #000000;
}

.sponsorship-matrix-card.platinum .panel-body {
  color: #000000;
}

.sponsorship-matrix-card.gold {
  border: 1px solid #C64130;
  border-radius: 7px;
  padding: 7px;
}

.sponsorship-matrix-card.gold .panel-heading {
  border-radius: 6px;
  background-color: #F5F5F5;
  color: #000000;
}

.sponsorship-matrix-card.gold .panel-body {
  color: black;
}

.sponsorship-matrix-card.silver {
  border: 1px solid #C64130;
  border-radius: 7px;
  padding: 7px;
}

.sponsorship-matrix-card.silver .panel-heading {
  border-radius: 6px;
  background-color: #F5F5F5;
  color: #000000;
}

.sponsorship-matrix-card.silver .panel-body {
  color: black;
}

.sponsorship-matrix-card.community {
  border: 1px solid #C64130;
  border-radius: 7px;
  padding: 7px;
}

.sponsorship-matrix-card.community .panel-heading {
  background-color: #F5F5F5;
  color: #000000;
}

.sponsorship-matrix-card.community .panel-body {
  color: black;
}

.sponsorship-matrix-card.bronze {
  border: 1px solid #C64130;
  border-radius: 7px;
  padding: 7px;
}

.sponsorship-matrix-card.bronze .panel-heading {
  border-radius: 6px;
  background-color: #F5F5F5;
  color: #000000;
}

.sponsorship-matrix-card.bronze .panel-body {
  color: black;
}

.sponsorship-matrix-card.other {
  border: 1px solid #C64130;
  border-radius: 7px;
  padding: 7px;
}

.sponsorship-matrix-card.other .panel-heading {
  border-radius: 6px;
  background-color: #F5F5F5;
  color: #000000;
}

.sponsorship-matrix-card.other .panel-body {
  color: #666666;
}

.sponsorship-matrix-card.apnic {
  border: 1px solid #C64130;
  border-radius: 7px;
  padding: 7px;
}

.sponsorship-matrix-card.apnic .panel-heading {
  border-radius: 6px;
  background-color: #F5F5F5;
  color: #000000;
}

.sponsorship-matrix-card.apnic .panel-body {
  color: gray;
}

/*---------------------------------------------------------------------------*\
    #COMPONENTS > #TABS
\*---------------------------------------------------------------------------*/
.nav-tabs > li > a {
  border-radius: 0;
}

.tab-content {
  margin-top: 24px;
}

.tab-pane > :last-child {
  margin-bottom: 0;
}

/*---------------------------------------------------------------------------*\
    #UTILITIES > #THUMBNAILS
\*---------------------------------------------------------------------------*/
.thumbnail {
  border-radius: 0;
}

/*---------------------------------------------------------------------------*\
    #COMPONENTS > #WELL
\*---------------------------------------------------------------------------*/
.well {
  border: 1px solid #BE0000;
  border-radius: 0;
  background-color: #FBFBFB;
  box-shadow: none;
}

/**
 * An extension of the well component for keynote speakers.
 */
.well-keynote-speaker .media .media-left,
.well-keynote-speaker .media .media-body {
  display: block;
  width: auto;
}

.well-keynote-speaker .media .media-left {
  margin-bottom: 20px;
  padding-right: 20px;
}

.well-keynote-speaker .media .media-left img {
  width: 100%;
  max-width: none;
}

.well-keynote-speaker .media .media-body > :last-child {
  margin-bottom: 0;
}

@media screen and (min-width: 468px) {
  .well-keynote-speaker .media .media-left,
  .well-keynote-speaker .media .media-body {
    display: table-cell;
  }
  .well-keynote-speaker .media .media-left {
    margin-bottom: 0;
  }
  .well-keynote-speaker .media .media-left img {
    width: 150px;
  }
}

/*---------------------------------------------------------------------------*\
    #COMPONENTS > #FORMS
\*---------------------------------------------------------------------------*/
.form-control {
  border: 1px solid #EEEEEE;
  border-radius: 0;
  background-color: #F2F2F2;
  padding: 10px 12px;
  height: inherit;
  font-size: 14px;
  box-shadow: none;
  transition: none;
}

.form-control:focus {
  background-color: #FFFFFF;
}

/*---------------------------------------------------------------------------*\
    #UTILITIES
\*---------------------------------------------------------------------------*/
/*---------------------------------------------------------------------------*\
    #UTILITIES > #UTILITIES
\*---------------------------------------------------------------------------*/
.mb0 {
  margin-bottom: 0;
}

.mb {
  margin-bottom: 24px;
}

.mt {
  margin-top: 24px;
}

.mtm {
  margin-top: 43px;
}

.mtn {
  margin-top: -11px;
}

.mb-social p {
  margin-bottom: 12px;
}

.p0 {
  padding: 0;
}

.pl {
  padding: 32px;
}

.bg-navy {
  background-color: #000000;
}

.color-white {
  color: #FFFFFF;
}

.vcenter {
  display: inline-block;
  float: none;
  vertical-align: middle;
}

.lh-s {
  line-height: 1.15em;
}

.lh-m {
  line-height: 1.3em;
}

.lh-l {
  line-height: 1.45em;
}

.fs-s {
  font-size: 0.75em;
}

.fs-m {
  font-size: 1.25em;
}

.fs-l {
  font-size: 1.5em;
}

.row.no-gutter {
  margin-right: 0;
  margin-left: 0;
}

.row.no-gutter [class*="col-"] {
  padding-right: 0;
  padding-left: 0;
}

.row.gutter-m {
  margin-right: -5px;
  margin-left: -5px;
}

.row.gutter-m [class*="col-"] {
  padding-right: 5px;
  padding-left: 5px;
}

.row.gutter-l {
  margin-right: -10px;
  margin-left: -10px;
}

.row.gutter-l [class*="col-"] {
  padding-right: 10px;
  padding-left: 10px;
}
