@import url("https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css");
@import url("https://fonts.googleapis.com/css?family=Open+Sans:400,400i,700,700i");

:root {
	box-sizing: border-box;
}
*, *::before, *::after {
	box-sizing: inherit;
}

[v-cloak] {
	display: none;
}

/* Colors */
/* Spacing */
/* Layout */
body {
  background: white; }

.container {
  width: auto;
  margin-left: auto;
  margin-right: auto;
  padding: 0 20px; }
  @media (min-width: 576px) {
    .container {
      width: 576px; } }
  @media (min-width: 768px) {
    .container {
      width: 768px; } }
  @media (min-width: 992px) {
    .container {
      width: 992px; } }
  @media (min-width: 1200px) {
    .container {
      width: 1200px; } }

.layout-section {
  padding: 10px; }

.layout-section--black {
  background: #333; }

.layout-section--primary {
	background: var(--color-dark);
}

.layout-sidebars {
	display: flex;
}

.layout-sidebars__left {
	width: 170px;
}

.layout-sidebars__right {
	width: 330px;
}

.layout-sidebars__content {
	flex: 1;
}

@media screen and (-ms-high-contrast: active), screen and (-ms-high-contrast: none) {
  .layout-sidebars__content {
    width: 1px; } }

@media (min-width: 992px) {
  .layout-sidebars__content {
    padding-right: 20px; } }

@media (min-width: 1200px) {
  .layout-sidebars__content {
    padding: 0 20px; } }

@media (max-width: 1200px) {
  .layout-sidebars__left {
    display: none; } }

@media (max-width: 992px) {
  .layout-sidebars {
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap; }
  .layout-sidebars__right {
    -webkit-box-flex: 2;
    -webkit-flex-grow: 2;
        -ms-flex-positive: 2;
            flex-grow: 2;
    width: 100%; } }

/**
Offcanvas
*/
.layout-offcanvas {
  position: relative;
  overflow: hidden;
  width: 100%; }

.layout-offcanvas__wrapper {
	width: 100%;
	position: relative;
	transition: 300ms ease all;
	backface-visibility: hidden;
}

.show-nav .layout-offcanvas__wrapper {
	transform: translate3d(250px, 0, 0);
}

.layout-offcanvas__nav {
	background: var(--color-dark);
	width: 250px;
	height: 100%;
	position: absolute;
	top: 0;
	left: -250px;
	padding: 15px;
}

body * {
  -webkit-transition: all .2s;
  transition: all .2s; }

html {
  font-size: 62.5%;
  /* 10px; */ }

@media (max-width: 992px) {
  html {
    font-size: 58%; } }

body {
  font-family: "Open Sans", sans-serif;
  font-size: 1.4rem;
  line-height: normal;
  color: #666; }

p {
  font-size: 1.4rem;
  margin-bottom: 20px; }

h1, h2, h3, h4, h5, h6 {
	margin: 0;
	font-weight: 700;
}

h4 {
  font-size: 1.8rem; }

h5 {
  font-size: 1.4rem; }

a {
	color: var(--color-dark);
	text-decoration: none;
}

.link {
	color: #333;
	text-decoration: none;
}
.link:hover {
	color: var(--color-dark);
}
.link:focus {
	outline: 0;
}

.link--invert {
	text-decoration: none;
	color: white;
}
.link--invert:hover {
	color: var(--color-dark);
}

.link--underlined {
	text-decoration: underline;
	color: #333;
}
.link--underlined:hover {
	color: var(--color-dark);
}

.nav__show-menu {
	cursor: pointer;
}

.nav__show-menu--hidden {
	display: none;
}

.nav__dbg {
	background: #ffc300;
	color: black;
}

small, .font-size--small {
  font-size: 1.1rem; }

.font-size--medium {
  font-size: 1.4rem; }

.font-size--large {
  font-size: 1.8rem; }

.spaced {
	margin: 10px 0;
}

.underline {
  text-decoration: underline; }

.italic {
  font-style: italic; }

.bold {
  font-weight: bold; }

.hidden {
  display: none; }

.center {
  text-align: center; }

.right {
	text-align: right;
}

.color--red {
  color: #ff0000; }

.color--white {
  color: white; }

.color--black {
	color: black;
}

.visibility--hidden {
  display: none !important; }

.visibility--block {
  display: block !important; }

.visibility--inline {
  display: inline !important; }

.visibility--inline-block {
  display: inline-block !important; }

/*
@media (max-width: 320px) {
  .visibility--hide-xsmall-down {
    display: none !important; } }
*/

@media (max-width: 576px) {
  .visibility--hide-small-down {
    display: none !important; } }

@media (max-width: 768px) {
  .visibility--hide-medium-down {
    display: none !important; } }

@media (max-width: 992px) {
  .visibility--hide-large-down {
    display: none !important; } }

@media (max-width: 1200px) {
  .visibility--hide-xlarge-down {
    display: none !important; } }

/*
@media (min-width: 320px) {
  .visibility--hide-xsmall-up {
    display: none !important; } }
*/

@media (min-width: 576px) {
  .visibility--hide-small-up {
    display: none !important; } }

@media (min-width: 768px) {
  .visibility--hide-medium-up {
    display: none !important; } }

@media (min-width: 992px) {
  .visibility--hide-large-up {
    display: none !important; } }

@media (min-width: 1200px) {
  .visibility--hide-xlarge-up {
    display: none !important; } }

.search-content {
  display: none; }

.search-content.current {
  display: block; }

.tab-link.current {
	color: var(--color-dark);
}

.tab-link:hover {
  cursor: pointer; }

.float--right {
  float: right; }

.float--left {
  float: left; }

.clear {
  clear: both; }

hr {
  border: none;
  border-top: solid 1px #ccc;
  padding-bottom: 20px; }

.list {
	margin: 0;
	padding: 0;
}

.list,
.menu-desktop {
	margin-bottom: 0;
}

.list .list__item,
.menu-desktop .list__item {
	list-style: none;
}

.list .list__item--inline,
.menu-desktop .list__item--inline,
.list .menu-desktop__li,
.menu-desktop .menu-desktop__li {
	display: inline-block;
	margin-right: 15px;
}

.list .list__item--inline:last-child,
.menu-desktop .list__item--inline:last-child,
.list .menu-desktop__li:last-child,
.menu-desktop .menu-desktop__li:last-child {
	margin-right: 0;
}

.list.align--left,
.align--left.menu-desktop {
	display: inline-block;
	text-align: left;
}

.list.align--right,
.align--right.menu-desktop {
	display: inline-block;
	text-align: right;
	float: right;
}

.nav__advertising {
	background: var(--color-medium);
}
#body .nav__advertising:hover {
	background: white;
}

.search-toggle {
  display: block;
  font-size: 30px;
  color: white;
  text-decoration: none; }

.media-object {
	padding: 10px 0;
	border-bottom: solid 1px #f0f0f0;
}

.media-object--gray {
	background: #ddd;
}

.media-object--no-border {
  border-bottom: none; }

.media-object, .media-object__body {
  overflow: hidden;
  _overflow: visible;
  zoom: 1; }

.media-object .media-object__image {
  float: left;
  margin-right: 10px; }

.media-object .media-object__image--right {
  float: right;
  margin-left: 10px; }

@media (max-width: 576px) {
  .media-object .media-object__image {
    float: none; }
  .media-object .media-object__image--right {
    float: none; } }

.media-object .media-object__image img {
  display: block; }

.media-object__body-section {
  margin-bottom: 10px; }

.panel {
	border: solid 1px #ccc;
}

.panel__title {
	background: var(--color-dark);
	padding: 8px 16px;
	color: white;
	font-size: 1.8rem;
	font-weight: bold;
}
.panel__title--sidebar-poll {
	font-size: 1.4rem;
}
.panel__title--current-issue {
	display: flex;
}
.current-issue__current {
	flex: 1;
}
.current-issue__previous {
	font-weight: normal;
}
body .current-issue__link {
	color: white;
}
body .current-issue__link:hover {
	color: white;
	text-decoration: underline;
}

.panel__body {
	padding: 10px 20px;
}

.panel__body--gray {
	background: #eee;
	color: #333;
}


.vertical-primary-menu {
	list-style: none;
	margin: 0;
	padding: 0;
}

.vertical-primary-menu__item {
	border-bottom: solid 1px white;
}
.vertical-primary-menu__item .link {
	display: block;
	background: var(--color-dark);
	padding: 5px 10px;
	line-height: 24px;
	color: white;
}
.vertical-primary-menu__item .link:hover {
	background: white;
	color: var(--color-dark);
}

.vertical-space {
  display: block;
  height: 20px; }

.vertical-space--medium {
  display: block;
  height: calc(20px / 2); }

.vertical-space--large {
  display: block;
  height: calc(20px * 2); }


.magazine-block {
	display: flex;
	align-items: center;
	margin: 10px 0;
	gap: 10px;
}
.magazine-block--center {
	justify-content: center;
}

.magazine-form__required {
	position: relative;
	flex: 1;
	display: flex;
	color: var(--color-dark);
}
.magazine-form__required::after {
	content: '*';
	position: absolute;
	z-index: 2;
	top: 2px;
	left: 4px;
}

.magazine-form__input {
	flex: 1;
	max-width: 100%;
	border: 1px solid #ccc;
	padding: 10px;
	font-size: 16px;
}

.button {
	border: none;
	padding: 10px 20px;
	color: var(--color-dark);
	cursor: pointer;
}

a.button {
	display: inline-block;
}

.button--primary {
	background: var(--color-dark);
	color: white;
}
.button--primary[disabled] {
	background: gray;
	cursor: default;
}

.image--75 {
  width: 75px;
  height: auto; }

.image--150 {
  width: 150px;
  height: auto; }

.image--200 {
  width: 200px;
  height: auto; }

.image--260 {
  width: 260px;
  height: auto; }

@media (max-width: 576px) {
  .image--150, .image--260 {
    width: 100%;
    height: auto; } }

.page-title {
	margin-bottom: 20px;
	text-align: center;
	color: var(--color-dark);
}

.qa {
  margin-bottom: 20px; }
  .qa .qa__q {
    font-weight: bold; }

.modal {
  content: '';
  position: fixed;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  z-index: 9999; }

.modal__modal {
  width: 400px;
  height: auto;
  background: white;
  position: fixed;
  top: 100px;
  left: 50%;
  margin-left: -200px; }

.modal__title {
  padding: 20px;
  border-bottom: solid 1px #f0f0f0; }

.modal__body {
  padding: 20px; }

.modal__footer {
  padding: 20px;
  border-top: solid 1px #f0f0f0; }

#upcoming-event {
	background: #ffc300;
	padding: 5px;
	font-size: 2em;
	text-align: center;
}

#upcoming-event,
#upcoming-event a {
	color: black;
}

.author-popup,
.renew-popup,
.bounce-popup,
.newsletters-popup {
	display: none;
}
.ui-dialog {
	max-width: 100%;
}

.newsletters-popup__block {
	display: flex;
	align-items: center;
	margin: 10px 0;
	cursor: pointer;
}
.newsletters-popup__block--center {
	justify-content: center;
}
.newsletters-popup__block--error {
	color: red;
	font-weight: bold;
}
.newsletters-popup__icon {
	margin: 0 10px;
	max-width: 100px;
}
.newsletters-popup__list-title {
	font-weight: bold;
}
.newsletters-popup__list-description {
	margin-top: 10px;
	color: #777;
}
#newsletters-popup__email {
	flex: 1;
	border: 1px solid #ccc;
	padding: 10px;
	font-size: 16px;
}
.newsletters-popup__agree {
	margin-right: 5px;
}

.bounce-popup__block {
	display: block;
	margin: 10px 0;
}

#bounce-popup__email {
	width: 100%;
}

.cookie-policy {
	position: fixed;
	bottom: 0px;
	left: 0px;
	width: 100%;
	height: auto;
	background: var(--color-medium);
	text-align: center;
	font-size: 2rem;
	font-weight: bold;
	color: white !important;
}
.cookie-policy a {
	color: white !important;
}

.cookie-policy__body {
	padding: 20px 50px 0 50px;
}

.cookie-policy__footer {
	padding: 10px;
	text-align: center;
}

#tou-agree {
	background: white;
	padding: 10px 20px;
}

.branding .branding__container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex; }

.branding__logo {
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
      -ms-flex-positive: 1;
          flex-grow: 1; }

.branding__ad {
  -webkit-box-flex: 4;
  -webkit-flex-grow: 4;
      -ms-flex-positive: 4;
          flex-grow: 4;
  text-align: right; }

@media (max-width: 1200px) {
  .branding__logo img {
    height: 56px;
    width: auto; } }

@media (max-width: 768px) {
  .branding {
    display: none; } }

.menu-desktop {
  font-size: 0;
  display: none;
  z-index: 999; }

.menu-desktop__ul {
	margin: 0;
	padding: 0;
}

.menu-desktop__li {
  position: relative;
  text-transform: uppercase;
  margin-right: 0 !important;
  list-style-position: outside; }
  .menu-desktop__li a.link--invert {
    display: block;
    padding: 10px 15px;
    line-height: 30px;
    border-right: solid 1px #333; }
  .menu-desktop__li a.link--invert:hover {
    background: white; }

@media (min-width: 768px) {
  .menu-desktop {
    display: block; }
  .menu-desktop__li {
    font-size: 1.2rem; }
    .menu-desktop__li a.link--invert {
      padding: 10px 10px; } }

@media (min-width: 992px) {
  .menu-desktop__li {
    font-size: 1.3rem; } }

.menu-desktop__dropdown {
	padding: 0;
	visibility: hidden;
	opacity: 0;
	position: absolute;
	-webkit-transition: all 0.5s ease;
	transition: all 0.5s ease;
	left: 0;
	display: none;
	z-index: 9999;
}

.menu-desktop__li:hover .menu-desktop__dropdown,
.menu-desktop__dropdown:hover {
  visibility: visible;
  opacity: 1;
  display: block; }

.menu-desktop__dropdown-item {
	margin: 0px;
	background: var(--color-dark);
	padding: 0px;
	list-style: none;
}
 
 .menu-desktop__dropdown-item .link,
 .menu-desktop__dropdown-item .link--invert {
	color: white;
	display: block;
	padding: 7px 20px;
	font-size: 11px;
	white-space: nowrap;
}
.menu-desktop__dropdown-item .link:hover,
.menu-desktop__dropdown-item .link--invert:hover {
	background: white;
	color: var(--color-dark);
}

.search-toggle--desktop {
	padding: 10px;
	float: right;
}

.search-input {
	padding: 5px;
}

.search-button {
	padding: 7px 11px;
}

  .search-toggle--desktop a.search-toggle__link {
    border: none;
    padding-left: 15px;
    padding-right: 15px; }

.search-box--desktop {
  float: right;
  height: 52px;
  border: none; }
  .search-box--desktop input {
    width: 200px;
    padding: 10px;
    height: 50px;
    background: #f2f2f2;
    border: none; }

.menu--findit {
	background: url("/images/nav-button-findit.gif") center no-repeat;
	padding-left: 40px;
	padding-right: 40px;
	width: 82px;
}
.menu--findit:hover {
	background: url("/images/nav-button-findit.gif") center no-repeat white !important;
}


.menu-mobile {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding: 5px 0; }

@media (min-width: 768px) {
  .menu-mobile {
    display: none; } }

.menu-mobile__toggle-button--hamburger {
  font-size: 30px;
  color: white;
  text-decoration: none; }

.menu-mobile__toggle-button--x {
  font-size: 30px;
  color: white;
  text-decoration: none;
  display: none; }

.show-nav .menu-mobile__toggle-button--hamburger {
  display: none; }

.show-nav .menu-mobile__toggle-button--x {
  display: block; }

.menu-mobile__left {
  -webkit-box-flex: 0;
  -webkit-flex-grow: 0;
      -ms-flex-positive: 0;
          flex-grow: 0; }

.menu-mobile__right {
  -webkit-box-flex: 0;
  -webkit-flex-grow: 0;
      -ms-flex-positive: 0;
          flex-grow: 0; }

.menu-mobile__center {
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  text-align: center; }

.menu-mobile__logo {
  margin: 0 auto;
  height: 40px; }

.menu-mobile--secondary {
	background: var(--color-medium);
	padding: 10px;
}

.footer {
	display: flex;
	padding: 20px 0;
	color: white;
}

.footer__column--first {
	width: 25%;
}
.footer__column--second {
	width: 25%;
}
.footer__column--third {
	flex-grow: 1;
}

.footer__column-title {
	padding-left: 20px;
	padding-right: 20px;
	font-size: 1.8rem;
	font-weight: bold;
}
body .footer-link {
	color: white;
}
body .footer-link:hover {
	color: white;
	text-decoration: underline;
}

.footer-link--linkedin {
    display: inline-flex;
    background: white;
    margin-top: 10px;
    padding: 10px 15px;
}
.footer-link--linkedin img {
    height: 20px;
}

@media screen and (-ms-high-contrast: active), screen and (-ms-high-contrast: none) {
  .footer__column--third {
    width: 1px; } }

@media (max-width: 992px) {
  .footer {
    -webkit-flex-wrap: wrap-reverse;
        -ms-flex-wrap: wrap-reverse;
            flex-wrap: wrap-reverse; }
  .footer__column--first {
    width: 50%; }
  .footer__column--second {
    width: 50%; } }

@media (max-width: 768px) {
  .footer__column--first {
    width: 100%; }
    .footer__column--first small {
      font-size: 1.4rem; }
  .footer__column--second {
    width: 100%; }
    .footer__column--second small {
      font-size: 1.4rem; } }


.newsletter-form {
	display: flex;
	flex-direction: column;
}

.newsletter-form__tou {
	padding: 5px 0 10px;
	cursor: pointer;
}
.newsletter-form__tou a {
	color: white;
}


.copyright {
	border-top: solid 1px var(--color-very-dark);
	padding: 20px;
	text-align: center;
	color: white;
}

.sidebar-poll-submit {
	margin-top: 10px;
}

.popup-poll-submit {
	margin-top: 10px;
}

.ui-dialog-titlebar {
	background: var(--color-dark) !important;
	color: white;
}

ner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: space-evenly;
  -webkit-justify-content: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly; }

.col1 {
  -webkit-box-flex: 1;
  -webkit-flex: 1 0 100%;
      -ms-flex: 1 0 100%;
          flex: 1 0 100%; }

.col2 {
  -webkit-box-flex: 1;
  -webkit-flex: 1 0 50%;
      -ms-flex: 1 0 50%;
          flex: 1 0 50%; }

#login-or-register-popup {
	display: none;
}

.login-or-register-popup {
	max-width: 100%;
	border: 10px solid #999;
	padding: 30px 30px 10px 30px;
	font-family: Verdana, Arial, sans-serif;
	font-weight: 400;
	line-height: 1.5;
	font-size: 1rem;
	-webkit-transition: opacity .5s linear;
	transition: opacity .5s linear;
}

.login-or-register-popup .ui-dialog-titlebar {
  padding: 10px;
  margin: -20px;
  color: white; }

.login-or-register-popup .ui-dialog-title {
  display: block;
  width: 100%;
  text-align: center;
  font-size: 1.3em; }

.login-or-register-form .col1,
.login-or-register-form .col2 {
  padding-left: 0;
  padding-right: 0; }

.login-or-register-form [class*='col'] {
  border: solid 2px #a0a0a0;
  border-top: 0;
  position: relative; }

.login-or-register-form .flex-container:nth-of-type(1) > div,
.login-or-register-form .flex-container:nth-of-type(2) > div.top-border {
  border-top: solid 2px #a0a0a0; }

.login-or-register-form > div > div.col2 + .col2 {
  border-left: 0; }

.login-or-register-form label {
  font-size: 1em;
  position: absolute;
  margin-bottom: .5rem;
  left: 1em;
  top: 1em; }

.login-or-register-form label[for=login-remember] {
  font-size: .9em;
  position: absolute;
  left: 2.5em;
  top: .85em; }

.login-or-register-form input[type="text"],
.login-or-register-form input[type="password"] {
  background-color: #EFEFEF;
  border: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: block;
  padding: 2.5em 1em 1em;
  width: 100%;
  font-size: 1.2em; }

.login-or-register-form input[type="checkbox"] {
  margin: 1em; }

.login-or-register-form input::-webkit-input-placeholder {
  font-size: 0; }

.login-or-register-form input[type="text"]:before,
.login-or-register-form input[type="password"]:before {
  content: attr(placeholder);
  display: block;
  font-size: 10px;
  position: absolute;
  left: 0;
  top: 0; }

/* Header / Footer */
.login-or-register-form header,
.login-or-register-form footer {
  padding: 1em;
  width: 100%;
  text-align: center; }

.login-or-register-form header {
  font-size: 1.5em; }

.login-or-register-form footer {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-collapse: separate;
  display: table; }

.login-or-register-form footer p {
  font-size: 0.8em; }

.login-or-register-form footer button[type="submit"] {
  border: 0;
  color: white;
  font-size: 1em;
  margin: 0 0 0.5em 0.5em;
  padding: 0.5em 1em; }

.login-modal-open {
  overflow: hidden !important; }


/* /advertise */
.advertise__topics {
	margin: 10px 0;
}
.advertise__topic {
	display: block;
}
.advertise__topic-checkbox {
	margin-right: 5px;
}

.advertise__cover {
	float: left;
	max-width: 175px;
	margin-right: 20px;
	margin-bottom: 20px;
	border: 1px solid black;
}

.advertise__why {
	color: var(--color-dark);
}

/* /authors */
.author-bio {
	margin-top: 15px;
}

/* /article */
.article-title {
	color: var(--color-dark);
}

/* /digitalmag */
.library__publications {
	text-align: center;
}

.library__publication {
	display: inline-block;
	width: 125px;
	text-align: center;
	margin: 10px;
}

.library__publication-name {
	font-weight: bold;
	margin-bottom: 3px;
}

.library__publication-cover {
	display: block;
	width: 100%;
}

/* /download */
.download__pdf-image {
	float: left;
	max-width: 50px;
	margin-right: 10px;
}


/* /issues */
.issues-year {
	display: inline-block;
	margin: 3px;
}

/* /new_noteworthy */

.nn-editors-pick {
	float: right;
}

.nn-issue {
	padding-bottom: 10px;
	color: var(--color-dark);
	font-weight: 400;
}

.nn-supplier {
	padding-bottom: 5px;
}

.nn-image {
	display: block;
	margin: 10px auto;
	max-width: 200px;
}

.nn-website {
	text-align: right;
	padding-bottom: 10px;
}

.nn-request {
	display: block;
	text-align: center;
	border: 1px black solid;
	padding: 5px;
	font-weight: bold;
}


/* /new-noteworthy/submit */
.nn-submission__space {
	margin: 30px 0;
}

.nn-submission__input-wrapper {
	flex: 1;
	display: flex;
}

.nn-submission-description__block {
	margin: 20px 0;
}

.nn-submission-images__block {
	margin: 30px 0 20px;
}
.nn-submission-images__upload {
	font-weight: bold;
}
.nn-submission-images__note {
	margin: 5px 0;
	font-size: 0.8em;
}

.nn-submission__pickup-image-block {
    display: flex;
    align-items: center;
    gap: 5px;
}
.nn-submission__pickup-image {
    max-height: 100px;
    max-width: 200px;
}

.nn-submission-image__block {
	display: flex;
	align-items: center;
	margin: 10px 0;
}

.nn-submission-image__metadata {
	display: flex;
	flex-direction: column;
	margin: 0 20px 0 10px;
}
.nn-submission-image__remove {
	cursor: pointer;
}

.nn-submission__notes-block {
	display: block;
	margin: 20px 0;
}
.nn-submission__notes-label {
	margin: 5px 0;
	display: block;
}
.nn-submission__notes-input {
	height: 50px;
	width: 100%;
}
.nn-submission__notes-char-count {
	text-align: right;
	font-size: 1rem;
	color: red;
}

/* /profile/index.php, /profile/user-history.php, /profile/email-history.php */
input.profile__customer-number {
	margin-bottom: 0;
}

.profile__message {
	border: 1px solid cornflowerblue;
	border-radius: 10px;
	background: lightblue;
	padding: 10px;
	color: black;
	margin-bottom: 10px;
}

.profile__error {
	border: 1px solid red;
	border-radius: 10px;
	background: pink;
	padding: 10px;
	color: black;
	margin-bottom: 10px;
}

.profile__tabs {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	background: #eee;
}
.profile__tab {
	cursor: pointer;
	margin: 10px;
	border: 1px solid black;
	border-radius: 5px;
	padding: 5px 10px;
	color: black;
}
.profile__tab:hover,
.profile__tab:focus,
.profile__tab:active {
	background: var(--color-medium);
	color: white;
}

.profile__tab--current {
	background: var(--color-dark);
	color: white;
	font-weight: bold;
}

.action-group {
	border: 1px solid black;
	padding: 9px;
}

.group-title {
	cursor: pointer;
}

.action-group:nth-child(even) {
	background: #eee;
}

/* /profile/survey-signup.php */
.survey-signup__block {
	margin: 10px 0;
	display: flex;
}

.survey-signup__input {
	flex: 1;
	padding: 10px;
	border: 1px solid #ccc;
}

#survey-signup__first {
	margin-right: 10px;
}

.survey-signup__block--tou {
	align-items: center;
}

#survey-signup__tou {
	margin-right: 10px;
}

.survey-signup__block--buttons {
	justify-content: center;
}


/* /subscribe */
#renew-subscription__title {
	cursor: pointer;
}

.subscribe__block {
	display: block;
	margin-bottom: 10px;
}

.subscribe__block--error {
	font-weight: bold;
	color: red;
}

.subscribe--center {
	display: flex;
	justify-content: center;
}

.subscribe__print-label {
	display: block;
}

.subscribe__print-item {
	vertical-align: middle;
}

.subscribe__print-item--yes {
	font-size: 20px;
}

.subscribe__indented-option {
	display: block;
	margin-left: 20px;
}

.subscribe--optional {
	font-style: italic;
	font-weight: normal;
}

.remove-colleague {
	cursor: pointer;
}

.subscribe__comments {
	height: 100px;
}

.subscribe__unsubscribe {
	margin: 10px 0;
}

.subscribe__verify-address {
	font-size: 16px !important;
	width: 650px !important;
}


/* /testimonials */
.testimonial__image {
	max-width: 100px;
}

/* /webinars */
.webinars--upcoming {
	background: #eee;
}
.webinars--upcoming .media-object {
	border-bottom: 1px solid #c0c0c0;
}

.webinars__block {
	margin: 10px 0;
	padding: 10px;
	color: black;
}


/* /white-papers */
.wp-register__error {
	font-weight: bold;
	color: red;
}

/* /winners */
.winner__image {
	max-width: 100px;
}



.swal2-popup {
	font-size: 16px !important;
}
