@font-face {
  font-family: "SourceSansPro";
  src: url("fonts-new/SourceSansPro-Regular.ttf") format("truetype");
  /* Legacy iOS */
  font-style: normal;
  font-weight: normal;
  text-rendering: optimizeLegibility;
}
@font-face {
  font-family: "SourceSansPro";
  src: url("fonts-new/SourceSansPro-Bold.ttf") format("truetype");
  /* Legacy iOS */
  font-style: normal;
  font-weight: bold;
  text-rendering: optimizeLegibility;
}
@font-face {
  font-family: "SourceSansProBlack";
  src: url("fonts-new/SourceSansPro-Black.ttf") format("truetype");
  /* Legacy iOS */
  font-style: normal;
  font-weight: normal;
  text-rendering: optimizeLegibility;
}
@font-face {
  font-family: "SourceSansProSemiBold";
  src: url("fonts-new/SourceSansPro-SemiBold.ttf") format("truetype");
  /* Legacy iOS */
  font-style: normal;
  font-weight: normal;
  text-rendering: optimizeLegibility;
}
/*!
 * Hamburgers
 * @description Tasty CSS-animated hamburgers
 * @author Jonathan Suh @jonsuh
 * @site https://jonsuh.com/hamburgers
 * @link https://github.com/jonsuh/hamburgers
 */
.hamburger {
  padding: 10px;
  height: 45px;
  display: inline-block;
  cursor: pointer;
  transition-property: opacity, -webkit-filter;
  transition-property: opacity, filter;
  transition-property: opacity, filter, -webkit-filter;
  transition-duration: 0.15s;
  transition-timing-function: linear;
  font: inherit;
  color: inherit;
  text-transform: none;
  background-color: transparent;
  border: 0;
  margin: 0;
  overflow: visible;
}

.hamburger:hover {
  opacity: 0.8;
}

.hamburger-box {
  width: 30px;
  height: 24px;
  display: inline-block;
  position: relative;
}

.hamburger-inner {
  display: block;
  top: 50%;
  margin-top: -2px;
}

.hamburger-inner,
.hamburger-inner::before,
.hamburger-inner::after {
  width: 30px;
  height: 2px;
  background-color: #fff;
  border-radius: 2px;
  position: absolute;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  transition-duration: 0.15s;
  transition-timing-function: ease;
}

.hamburger-inner::before, .hamburger-inner::after {
  content: "";
  display: block;
}

.hamburger-inner::before {
  top: -10px;
}

.hamburger-inner::after {
  bottom: -10px;
}

/*
 * Collapse
 */
.hamburger--collapse .hamburger-inner {
  top: auto;
  bottom: 0;
  transition-duration: 0.15s;
  transition-delay: 0.15s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--collapse .hamburger-inner::after {
  top: -20px;
  transition: top 0.3s 0.3s cubic-bezier(0.33333, 0.66667, 0.66667, 1), opacity 0.1s linear;
}

.hamburger--collapse .hamburger-inner::before {
  transition: top 0.12s 0.3s cubic-bezier(0.33333, 0.66667, 0.66667, 1), -webkit-transform 0.15s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: top 0.12s 0.3s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.15s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: top 0.12s 0.3s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.15s cubic-bezier(0.55, 0.055, 0.675, 0.19), -webkit-transform 0.15s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--collapse.is-active .hamburger-inner {
  -webkit-transform: translate3d(0, -10px, 0) rotate(-45deg);
  transform: translate3d(0, -10px, 0) rotate(-45deg);
  transition-delay: 0.32s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}

.hamburger--collapse.is-active .hamburger-inner::after {
  top: 0;
  opacity: 0;
  transition: top 0.3s cubic-bezier(0.33333, 0, 0.66667, 0.33333), opacity 0.1s 0.27s linear;
}

.hamburger--collapse.is-active .hamburger-inner::before {
  top: 0;
  -webkit-transform: rotate(-90deg);
  transform: rotate(-90deg);
  transition: top 0.12s 0.18s cubic-bezier(0.33333, 0, 0.66667, 0.33333), -webkit-transform 0.15s 0.42s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: top 0.12s 0.18s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.15s 0.42s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: top 0.12s 0.18s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.15s 0.42s cubic-bezier(0.215, 0.61, 0.355, 1), -webkit-transform 0.15s 0.42s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/* nav */
.nav-menu, .nav-menu ul, .nav-menu li, .nav-menu a {
  margin: 0;
  padding: 0;
  line-height: normal;
  list-style: none;
  display: block;
  position: relative;
}

.nav-menu ul {
  opacity: 0;
  position: absolute;
  top: 100%;
  left: -9999px;
  z-index: 999;
  -webkit-transition: opacity 0.5s;
  transition: opacity 0.5s;
}

.nav-menu li:hover > ul {
  left: 0;
  opacity: 1;
  z-index: 1000;
}

.nav-menu li.fr:hover > ul {
  right: 0;
  left: auto;
  opacity: 1;
  z-index: 1000;
}

.nav-menu ul li:hover > ul {
  top: 0;
  left: 100%;
}

.nav-menu li {
  cursor: default;
  float: left;
  white-space: nowrap;
  position: relative;
}

.nav-menu li.hasChildren:after {
  content: "\f105";
  font-family: FontAwesome;
  font-style: normal;
  font-weight: normal;
  text-decoration: inherit;
  padding-right: 5px;
  position: absolute;
  top: 10px;
  right: 5px;
}

.nav-menu li.fr {
  float: right;
}

.nav-menu ul li {
  float: none;
}

/* sub width */
.nav-menu ul {
  min-width: 12em;
  -webkit-box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.25);
  box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.25);
}

/* center */
.nav-center {
  float: right;
  right: 50%;
}

.nav-center > li {
  left: 50%;
}

/* root */
.nav-menu a {
  padding: 0 10px;
  font-weight: normal;
  font-size: 16px;
  line-height: 40px;
  text-decoration: none;
  color: #222;
}

.nav-menu > li.nav-active .nav-active > a {
  background-color: #FBF9FD;
  color: #6022A6;
}

.nav-menu > li.nav-active > a {
  background-color: #FBF9FD;
  color: #6022A6;
}

/* root: hover/persistence */
.nav-menu a:hover, .nav-menu a:focus, .nav-menu li:hover a {
  background: #FBF9FD;
}

/* 2 */
.nav-menu li li a, .nav-menu li:hover li a {
  padding: 10px 15px;
  color: #333;
  font-size: 16px;
  line-height: normal;
}

/* 2: hover/persistence */
.nav-menu li:hover li > a:hover, .nav-menu li:hover li > a:focus, .nav-menu li:hover li:hover > a {
  background-color: #FBF9FD;
  color: #6022A6;
}

/* 3 */
.nav-menu li:hover li:hover li a {
  background-color: #FBF9FD;
}

/* 3: hover/persistence */
.nav-menu li:hover li:hover li a:hover, .nav-menu li:hover li:hover li a:focus, .nav-menu li:hover li:hover li:hover a {
  background-color: #FBF9FD;
  color: #6022A6;
}

/* 4 */
.nav-menu li:hover li:hover li:hover li a {
  background-color: #FBF9FD;
}

/* 4: hover */
.nav-menu li:hover li:hover li:hover li a:hover, .nav-menu li:hover li:hover li:hover li a:focus {
  background-color: #FBF9FD;
}

/* vertical */
.nav-vertical {
  max-width: 220px;
}

.nav-vertical ul {
  top: 0;
  left: -9999px;
}

.nav-vertical li {
  width: 100%;
  float: none;
}

.nav-vertical li:hover > ul {
  left: 100%;
}

/*******************************************************************************************************************
CALENDAR
*******************************************************************************************************************/
.calendar_select {
  font-size: 25px;
}

.calendar_select .year {
  font-weight: bold;
  padding: 0 10px;
}

.btn_year, .btn_month {
  cursor: pointer;
  color: #ccc;
  padding: 0 5px;
}
.btn_year:hover, .btn_month:hover {
  color: #666;
}

.caltabs {
  float: right;
}

.caltabs div {
  width: 50px;
  height: 13px;
  line-height: 13px;
  background: #eeeeee url("/src/img/cal_btn_grad.png") repeat-x bottom left;
  float: left;
  margin-left: 5px;
  text-align: center;
  cursor: pointer;
  border: 1px solid #c3c3c5;
  color: #3974ba;
}

.caltabs div.active {
  background-color: #6d9fd0;
  color: #fff;
}

.calendar .month {
  width: 24%;
  height: 150px;
  float: left;
  border-top: 1px solid #e0e0e0;
  margin: 0 0.5% 0 0.5%;
  padding: 1px;
  overflow: hidden;
}
.calendar .month h4 {
  cursor: pointer;
}
.calendar .month h4:hover {
  text-decoration: underline;
}

.calendar h4 {
  padding: 5px;
  color: #666;
  font-size: 15px;
  margin: 0;
}

.calendar .month a, .calendar .day a, .dayinfo a {
  display: block;
  margin-bottom: 2px;
  padding: 0 5px;
  background: #eee;
  color: #fff;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.calendar a.col1, .dayinfo a.col1, span.col1 {
  background: #3974b6;
}

.calendar a.col2, .dayinfo a.col2, span.col2 {
  background: #7dbe88;
}

.calendar a.col3, .dayinfo a.col3, span.col3 {
  background: #9c9602;
}

.calendar a.col4, .dayinfo a.col4, span.col4 {
  background: #7dbe88;
  background: #c41f30;
}

.calendar a.col5, .dayinfo a.col5, span.col5 {
  background: #c3af00;
  background: #01216a;
}

#legend {
  margin-top: 5px;
}

#legend span {
  color: #fff;
  padding: 1px 4px;
  font-size: 12px;
}

.calendar .detail {
  position: absolute;
  background: #fff;
  border: 1px solid #9a9a9a;
  padding: 2px 5px;
  display: none;
}

a.callink:hover {
  text-decoration: none;
}

#form_calendar {
  margin-bottom: 20px;
}

/******************************************************************************************************************
Monthview
*/
.calendar {
  border-bottom: 1px solid #e0e0e0;
}

.calendar .day {
  height: 100px;
  width: 13.28%;
  float: left;
  border-bottom: 1px solid #e0e0e0;
  margin: 0 0.5% 0 0.5%;
  padding: 1px;
  overflow: hidden;
}
.calendar .day.today {
  background: cornsilk;
}

.daynames .day {
  text-align: center;
  height: 30px;
  line-height: 30px;
  font-weight: bold;
  border-bottom: 2px solid #666;
  text-transform: uppercase;
}

/******************************************************************************************************************
Small Calendar
*/
.smallcalendar_select img {
  vertical-align: -2px;
}

.smallcalendar_select .year {
  font-weight: normal;
  font-size: 12px;
  padding-left: 5px;
}

.smallcalendar {
  background: #e9edf0;
  padding: 5px;
}
.smallcalendar h4 {
  font-size: 12px;
}

.smallcalendar .buttonbox {
  padding-top: 10px;
  text-align: center;
}

.eventsbox .smallcalendar {
  padding-top: 110px !important;
}

.eventsbox .smallcalendar h3 {
  margin-bottom: 20px;
}

.smallcalendar .day {
  height: 30px;
  float: left;
  border: 1px solid #eee;
  margin: 0 -1px -1px 0;
  padding: 2px;
  background: #f7f9fa;
  width: 14.5%;
  overflow: visible;
}

.smallcalendar .daynames .day {
  text-align: center;
  height: 20px;
  line-height: 20px;
  font-weight: bold;
  color: #666;
}

.smallcalendar .corner {
  background: #f7f9fa url("/src/img/corner.png") no-repeat right top;
  cursor: pointer;
  position: relative;
}

.smallcalendar .dayinfo {
  display: none;
  position: absolute;
  z-index: 200;
  background: url("/src/img/cal_top.gif") no-repeat right top;
  cursor: auto;
  right: -15px;
  width: 250px;
  padding-top: 13px;
}

.smallcalendar .dayinfo_cnt {
  background: white;
  border-right: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
  border-left: 1px solid #ccc;
  padding: 10px;
}

.smallcalendar .dayinfo_cnt a {
  padding: 3px 5px;
}

.smallcalendar .dayinfo h5 {
  color: #3b73b9;
  font-size: 11px;
  margin-bottom: 5px;
  white-space: nowrap;
}

.smallcalendar .dayinfo h5 a {
  background: none;
  color: #3b73b9;
  display: inline;
  margin-left: 20px;
}

.smallcalendar .dayinfo #calclose {
  float: right;
  width: 11px;
  height: 11px;
  margin-top: 2px;
  cursor: pointer;
}

.smallcalendar .smallmonthview, .smallcalendar #form_calendar {
  margin: 0 auto;
}

.smallcalendar .smallmonthview {
  margin-bottom: 5px;
}

/******************************************************************************************************************
Nav Calendar
*/
.navcalendar {
  padding: 3px;
  margin-top: 20px;
}

.navcalendar .day {
  width: 15px;
  height: 14px;
  padding: 1px;
  font-weight: normal;
  font-size: 9px;
  overflow: hidden;
}

.navcalendar h4 {
  font-weight: normal;
  text-align: right;
  font-size: 9px;
}

.navcalendar h3 {
  font-size: 12px;
}

.navcalendar h5 {
  text-align: center;
}

.navcalendar .daynames .day {
  text-align: center;
  height: 16px;
  line-height: 16px;
  font-size: 10px;
  font-weight: normal;
}

.navcalendar {
  cursor: pointer;
  padding-top: 5px;
}

.navcalendar .smallmonthview {
  width: 128px;
  padding-bottom: 2px;
}

/*
#nav_home {
  background: red;
}*/
body {
  margin: 0;
  padding: 0;
  background: #fff;
  color: #222;
  font-family: "SourceSansPro", "HelveticaNeueLight", "HelveticaNeue-Light", "Helvetica Neue Light", "HelveticaNeue", "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
}

#body #headerCnt .box_content {
  padding-left: 20px;
  padding-right: 20px;
}

table.table thead th {
  border-top: 0;
  border-bottom: 1px solid #C7C8CF;
  font-weight: normal;
  color: #222;
  font-size: 22px;
  line-height: 32px;
  padding: 32px 32px 32px 0;
}

table.table tbody td {
  padding: 24px 32px 24px 0;
  border-bottom: 1px solid #C7C8CF;
  color: #5B5B67;
  font-size: 16px;
  line-height: 24px;
}

.table tr:last-child td {
  border-bottom: 0;
  padding-bottom: 0;
}

.table tr td:last-child {
  padding-right: 0;
}

.grey1000 {
  color: #222 !important;
}

hr {
  border-color: #C7C8CF;
}

blockquote {
  border-color: #C7C8CF;
  color: #5B5B67;
}

p, .info_page ul, .box_detail ul {
  color: #5B5B67;
  margin-bottom: 18px;
}
p .button, .info_page ul .button, .box_detail ul .button {
  margin-top: 18px;
}

.newsdetail .news-video {
  margin-left: 0 !important;
}

p + p .button:first-child {
  margin-top: 0;
}

ul.std div {
  color: #5B5B67;
}

.pretitle {
  font-size: 18px;
  line-height: 28px;
  font-family: SourceSansProSemiBold;
  letter-spacing: 0.3616px;
}
.pretitle + h3, .pretitle + h2, .pretitle + h4 {
  margin-top: 10px;
}

p.teaser {
  font-size: 22px;
  line-height: 32px;
  color: #222;
}

.info_page ul {
  margin-top: 0;
}
.info_page ul.units {
  font-weight: bold;
}

.btn-container {
  text-align: center;
  margin-top: 48px;
}

.grey750 {
  color: #5B5B67 !important;
}

.bgwhite {
  background: #fff;
}

.bggrey100 {
  background: #FBF9FD;
}

.bggrey250 {
  background: #F4F1F8;
}

.bgprimaryColor {
  background: #6022A6;
}
.bgprimaryColor h1:first-child {
  margin-top: 0;
}
.bgprimaryColor p:last-child {
  margin-bottom: 0;
}
.bgprimaryColor *, .bgprimaryColor p.teaser {
  color: #fff;
}

a, #main .mainContent a {
  color: #6022A6;
}
a.button, #main .mainContent a.button {
  color: #fff;
}
a.button:hover, a.button:active, a.button:focus, #main .mainContent a.button:hover, #main .mainContent a.button:active, #main .mainContent a.button:focus {
  color: #fff;
}
a:hover, a:active, a:focus, #main .mainContent a:hover, #main .mainContent a:active, #main .mainContent a:focus {
  color: #512286;
  text-decoration: none;
}
a.icon-caret, #main .mainContent a.icon-caret {
  padding-right: 20px;
  background: url(/src/img/icons/caret-right.svg) no-repeat center right;
}
a.icon-download, a.trackDownload, #main .mainContent a.icon-download, #main .mainContent a.trackDownload {
  padding-right: 25px;
  background: url(/src/img/icons/download.svg) no-repeat center right;
}
a.icon-download.thumb, a.trackDownload.thumb, #main .mainContent a.icon-download.thumb, #main .mainContent a.trackDownload.thumb {
  padding-right: 0;
  background: none;
}

.list .item a.trackDownload {
  padding-right: 0;
  background: none;
}
.list .item a.trackDownload i.fa {
  display: none;
}

.list .item a.trackDownload.icon-download {
  padding-right: 25px;
  background: url(/src/img/icons/download.svg) no-repeat center right;
  display: inline-block;
}

.flexCenter {
  display: flex;
  justify-content: center;
  align-items: center;
}

p.list-headline {
  padding-top: 15px;
  margin-bottom: 10px;
  color: #222;
  font-size: 22px;
  line-height: 32px;
}

@media (min-width: 767px) {
  .desktopbreak {
    display: block;
  }
}
.block_image, .img_right, .floatImg, .img_radius, .img_radius img, #box_content table img, #mtList img, .bg-container .gradient, .bg-container, #tricefy .col-sm-3 img {
  border-radius: 8px;
}

.img_border img {
  border: 1px solid #C7C8CF;
}

.downloads img {
  margin-bottom: 16px;
}

.videos img {
  margin-bottom: 24px;
}

.videos .threeCol.sliderslick img {
  margin-bottom: 0;
}

#library-search input.form-control {
  background-color: #FBF9FD;
  border-right: 0;
}
#library-search .input-group-addon {
  background-color: #6022A6;
  color: #fff;
  border-color: #6022A6;
}
#library-search .input-group-addon:hover {
  background-color: #512286;
  border-color: #512286;
}

label {
  font-weight: normal !important;
}

select.form-control {
  background: #FBF9FD;
  border: 1px solid #C7C8CF;
  color: #222;
  height: 32px;
  box-shadow: none;
  display: flex;
  align-items: center;
  padding: 10px 35px 10px 6px;
  height: auto;
  appearance: none;
  background: #FBF9FD url("/src/img/icons/down-small.svg") center right 12px no-repeat;
}

input.form-control, textarea.form-control, #register input[type=password], #register input[type=text], #register textarea {
  background: #FBF9FD;
  border: 1px solid #C7C8CF;
  box-shadow: none;
  padding: 10px 6px;
  height: auto;
}
input.form-control::placeholder, textarea.form-control::placeholder, #register input[type=password]::placeholder, #register input[type=text]::placeholder, #register textarea::placeholder {
  color: #222;
}

#register .button {
  float: right !important;
}
#register .button.buttonGrey {
  border-color: #6022A6;
  margin-right: 16px;
}
#register .red.center {
  text-align: left;
  display: block;
  color: red;
}
#register .userdata {
  padding: 0;
}
#register .userdata li {
  margin-bottom: 8px;
}
#register .userdata li:last-child {
  margin-bottom: 0;
}
#register .userdata input[type=password] {
  border-radius: 4px;
  line-height: 1em;
  width: 100%;
  display: block;
}
#register .userdata label {
  width: 100%;
  text-align: left;
}

.product-materials h4 {
  font-size: 24px;
  line-height: 32px;
  margin-bottom: 18px;
}

#all {
  width: 100%;
  overflow-x: hidden;
  min-width: 1180px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

#header {
  background: #fff;
  padding-top: 16px;
}
#header.sticky #nav {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.5);
}
#header.sticky .stickySearch {
  display: block;
}
#header.sticky #btnPartnerPortal, #header.sticky #navbox {
  margin-right: 50px;
}
#header.sticky #btnPartnerPortal + #navbox {
  margin-right: 0;
}
#header #btnPartnerPortal {
  z-index: 1000;
  position: absolute;
  right: 20px;
  font-weight: normal;
  margin-top: 4px;
}

body.club_2 #header #btnPartnerPortal {
  position: static;
  margin-left: 10px;
}

#headerTop {
  height: 32px;
  position: relative;
}

#headerMain {
  max-width: 1180px;
  padding-left: 20px;
  padding-right: 20px;
  margin: 0 auto;
  height: 112px;
  position: relative;
}
#headerMain #logo {
  position: absolute;
  left: 20px;
  top: 46px;
  font-size: 24px;
}
#headerMain #logo img {
  width: 144px;
  height: 32px;
}
#headerMain #logo:hover {
  text-decoration: none;
}
#headerMain #clublogo {
  position: absolute;
  top: 40px;
  right: 20px;
  width: 350px;
  height: 65px;
  text-align: right;
  font-size: 36px;
  font-style: normal;
  font-weight: 400;
  line-height: 48px; /* 133.333% */
  letter-spacing: -1.25px;
}
#headerMain #clublogo span {
  font-size: 22px;
  line-height: 35px;
  position: relative;
  top: -15px;
  margin-right: -5px;
}
#headerMain #clublogopole {
  position: absolute;
  right: 0;
  top: 36px;
  width: 200px;
  height: 16px;
  text-align: right;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px; /* 150% */
  letter-spacing: 0;
}

#headerCnt {
  background: #FBF9FD;
  height: 180px;
  width: 100%;
}
#headerCnt:before {
  content: " ";
  background: #fff;
  height: 40px;
  width: 100%;
  position: absolute;
}
#headerCnt .box_content {
  padding: 0;
  width: 1180px;
  margin: 0 auto;
}
#headerCnt #navBreadcrumb {
  height: 40px;
  line-height: 40px;
  color: #222;
  font-size: 16px;
}
#headerCnt #navBreadcrumb a {
  color: #6022A6;
}
#headerCnt #navBreadcrumb .fa {
  margin: 0 10px;
}
#headerCnt #navBreadcrumb span {
  color: #222;
}

.headerimgcenter {
  background-repeat: no-repeat;
  background-position: center;
  height: 450px;
  display: grid;
  align-content: center;
}
@media (max-width: 767px) {
  .headerimgcenter {
    height: auto;
    background-image: none !important;
    display: block;
  }
  .headerimgcenter .width60per {
    max-width: 100% !important;
  }
}
.headerimgcenter h1 {
  margin-top: 0;
}
.headerimgcenter h1:last-child {
  margin-bottom: 0;
}

#nav {
  height: 40px;
  width: 100%;
  background: #FBF9FD;
  z-index: 20;
}

#box_head {
  height: 220px;
  padding: 20px;
  background-position: center bottom;
  background-size: auto 100%;
  background-color: #F4F1F8;
  background-repeat: no-repeat;
}

#main, #main_admin {
  position: relative;
  background-color: #FFFFFF;
}

#main {
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px; /* 155.556% */
}

#sliderBox {
  height: 590px;
  position: relative;
}
#sliderBox p {
  color: #fff;
}
#sliderBox hr {
  margin: 90px auto 0 auto;
  width: 100%;
  max-width: 1060px;
}
#sliderBox #slider_rebrand {
  overflow: hidden;
  height: 470px;
  position: relative;
  z-index: 1;
  border-radius: 0;
  background: #FBF9FD;
}
#sliderBox #slider_rebrand.flexslider .flex-direction-nav a {
  opacity: 1;
  width: 60px;
  height: 60px;
  background: #fff;
  border-radius: 30px;
  font-size: 0;
  text-align: center;
  line-height: 65px;
}
#sliderBox #slider_rebrand.flexslider .flex-direction-nav a:before {
  color: rgba(0, 0, 0, 0.2);
}
#sliderBox #slider_rebrand .flex-direction-nav .flex-prev {
  left: -80px;
}
#sliderBox #slider_rebrand .flex-direction-nav .flex-next {
  right: -80px;
}
#sliderBox #slider_rebrand ul.slides li {
  position: relative;
  height: 470px;
  overflow: hidden;
}
#sliderBox #slider_rebrand ul.slides li.dark .cnt .block {
  color: #6022A6;
}
#sliderBox #slider_rebrand ul.slides li.dark .cnt .block h2, #sliderBox #slider_rebrand ul.slides li.dark .cnt .block h3 {
  color: #6022A6;
}
#sliderBox #slider_rebrand ul.slides li.dark .cnt .block h2 a, #sliderBox #slider_rebrand ul.slides li.dark .cnt .block h2 a:link, #sliderBox #slider_rebrand ul.slides li.dark .cnt .block h2 a:hover, #sliderBox #slider_rebrand ul.slides li.dark .cnt .block h3 a, #sliderBox #slider_rebrand ul.slides li.dark .cnt .block h3 a:link, #sliderBox #slider_rebrand ul.slides li.dark .cnt .block h3 a:hover {
  color: #6022A6;
}
#sliderBox #slider_rebrand ul.slides li.dark .cnt .block p {
  color: #222;
}
#sliderBox #slider_rebrand ul.slides li img.bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  object-fit: cover;
}
#sliderBox #slider_rebrand ul.slides li img.bg.mobile {
  width: 100%;
  height: auto;
}
#sliderBox #slider_rebrand ul.slides li .cnt {
  position: relative;
  z-index: 1;
  max-width: 1180px;
  padding-left: 20px;
  padding-right: 20px;
  margin: 0 auto;
  padding-top: 65px;
}
#sliderBox #slider_rebrand ul.slides li .cnt .block {
  display: block;
  color: #fff;
  width: 600px;
  font-size: 20px;
}
#sliderBox #slider_rebrand ul.slides li .cnt .block a:hover, #sliderBox #slider_rebrand ul.slides li .cnt .block a:active {
  text-decoration: none;
}
#sliderBox #slider_rebrand ul.slides li .cnt .block h2 {
  color: #fff;
  font-size: 60px;
  line-height: 60px;
  margin-bottom: 30px;
}
#sliderBox #slider_rebrand ul.slides li .cnt .block h2 a, #sliderBox #slider_rebrand ul.slides li .cnt .block h2 a:link, #sliderBox #slider_rebrand ul.slides li .cnt .block h2 a:hover {
  color: #fff;
}
#sliderBox #slider_rebrand ul.slides li .cnt .block h3 {
  color: #fff;
  font-size: 30px;
  line-height: 36px;
}
#sliderBox #slider_rebrand ul.slides li .cnt .block h3 a, #sliderBox #slider_rebrand ul.slides li .cnt .block h3 a:link, #sliderBox #slider_rebrand ul.slides li .cnt .block h3 a:hover {
  color: #fff;
}
#sliderBox #slider_rebrand ul.slides li .cnt .block p {
  margin-bottom: 30px;
}
#sliderBox #slider_rebrand ul.slides li .cnt .block .banner {
  width: 450px;
}
#sliderBox #carousel {
  position: absolute;
  top: 400px;
  z-index: 2;
  width: 1180px;
  margin: 0 auto;
}
#sliderBox #carousel ul.slides li {
  border: 2px solid #fff;
  box-shadow: 5px 5px 10px -5px #000;
  transition: all 0.5s ease-in-out;
  transform: scale(0.8);
  cursor: pointer;
  background: #000;
  position: relative;
}
#sliderBox #carousel ul.slides li.flex-active-slide {
  transform: scale(1);
}
#sliderBox #carousel ul.slides li.flex-active-slide img, #sliderBox #carousel ul.slides li.flex-active-slide h4 {
  opacity: 1;
}
#sliderBox #carousel ul.slides li img {
  opacity: 0.5;
}
#sliderBox #carousel ul.slides li h4 {
  display: block;
  position: absolute;
  color: #fff;
  top: 20px;
  left: 20px;
  opacity: 0.5;
}
#sliderBox #carousel ul.slides li.dark h4 {
  color: #333;
}
#sliderBox #carousel .flex-viewport {
  height: 160px;
}
#sliderBox #carousel.flexslider .flex-direction-nav a {
  opacity: 1;
  width: 60px;
  height: 60px;
  background: #fff;
  border-radius: 30px;
  font-size: 0;
  text-align: center;
  line-height: 65px;
  top: 40%;
}
#sliderBox #carousel.flexslider .flex-direction-nav a:before {
  color: rgba(0, 0, 0, 0.2);
}
#sliderBox #carousel .flex-direction-nav .flex-prev {
  left: -70px;
}
#sliderBox #carousel .flex-direction-nav .flex-next {
  right: -70px;
}
#sliderBox #carousel.flexslider:hover .flex-direction-nav .flex-prev {
  left: -70px;
}
#sliderBox #carousel.flexslider:hover .flex-direction-nav .flex-next {
  right: -70px;
}
#sliderBox #counterBox {
  position: relative;
  width: 1180px;
  margin: 0 auto;
  z-index: 10;
  top: 0;
}
#sliderBox #counter {
  background: #6022A6;
  color: #fff;
  position: absolute;
  top: 0;
  right: 20px;
  width: 130px;
  height: 80px;
  line-height: 25px;
  padding: 10px 0;
  z-index: 10;
  font-size: 30px;
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
  box-shadow: 0 5px 10px -5px #000;
  text-align: center;
}
#sliderBox #counter ul {
  list-style: none;
  padding: 0;
  margin-bottom: 5px;
  overflow: hidden;
  display: flex;
  justify-content: center;
}
#sliderBox #counter ul li {
  display: inline-block;
  background: linear-gradient(#000 0%, #666 50%, #000 100%);
  color: #fff;
  padding: 6px 2px;
  margin: 0 1px 0 0;
  height: 35px;
}
#sliderBox #counter h4 {
  color: #fff;
  margin: 0;
}

@media (min-width: 767px) {
  #sliderBox.versana #slider_rebrand {
    background: #F4F1F8;
  }
  #sliderBox.versana #slider_rebrand ul.slides li img.bg {
    width: auto;
    left: 50%;
    transform: translate(-50%, 0);
  }
  #sliderBox.versana #slider_rebrand ul.slides li img.bg.desktop {
    display: block;
  }
  #sliderBox.versana #slider_rebrand ul.slides li img.bg.mobile {
    display: none;
  }
}
@media (max-width: 767px) {
  #sliderBox.versana #slider_rebrand ul.slides li img.bg.mobile {
    display: block;
  }
  #sliderBox.versana #slider_rebrand ul.slides li img.bg.desktop {
    display: none;
  }
}
.flexslider {
  border: 0;
  background: none;
}

.flex-control-nav {
  bottom: 16px;
}

.flex-control-paging li a {
  width: 48px;
  height: 4px;
  background: #C7C8CF;
  border-radius: 0;
  box-shadow: none;
}
.flex-control-paging li a.flex-active, .flex-control-paging li a:hover {
  background: #6022A6;
}

/* INFO PAGE */
.info_page {
  /*#box_footer {
    margin-bottom: 55px;
  }*/
}
.info_page .small-margin-top {
  margin-top: 32px;
}
.info_page .margin-top {
  margin-top: 62px;
}
.info_page .margin-top.spliter {
  padding-top: 62px;
  border-top: 1px solid #C7C8CF;
}
.info_page .spliter-bottom {
  padding-bottom: 62px;
  border-bottom: 1px solid #C7C8CF;
}
.info_page .width60per {
  max-width: 60%;
}
.info_page .probes {
  display: flex;
  align-items: top;
}
.info_page .probestext {
  flex: 1;
  padding-right: 20px;
}
.info_page .probesimage {
  flex: 1;
}
.info_page .block_image {
  width: 100%;
  display: block;
}
.info_page .block_image2 {
  display: block;
  width: 100%;
  margin: 0 auto;
  margin-bottom: 20px;
}
.info_page .padding_image {
  width: 100%;
  display: block;
  padding: 0 0 10px 0;
}
.info_page .padding_bottom_big {
  margin-bottom: 64px;
}
.info_page .padding_bottom {
  margin-bottom: 32px;
}
.info_page .padding_top {
  margin-top: 16px;
}
.info_page .img_right {
  margin-top: 0px;
  float: right;
  margin-left: 24px;
  max-width: 30%;
  display: block;
  border-radius: 8px;
}
.info_page .p_height {
  height: 140px;
}
.info_page .buttonBox {
  background: #efefef;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  border-top: 1px solid #eee;
  z-index: 2;
  box-shadow: 0 -5px 25px -10px #000;
}
.info_page .buttons {
  text-align: center;
}
.info_page .buttons a {
  margin: 10px;
}
.info_page .popupVideo img {
  width: 100%;
}
.info_page .popupVideo img.play {
  width: 64px;
}
.info_page img {
  max-width: 100%;
}
.info_page .videoWrapper {
  padding-top: 0;
  margin-top: 64px;
  border-radius: 8px;
  overflow: hidden;
}
.info_page .videoWrapper:first-child {
  margin-top: 0;
}
.info_page h4 + .videoWrapper {
  margin-top: 24px;
}
.info_page .video-container {
  margin-top: 25px;
}
.info_page .video-container.margin-top {
  margin-top: 60px;
}
.info_page .video-container .col-sm-6 {
  margin-bottom: 25px;
}
.info_page .video-container .center p {
  margin-top: 0;
}
.info_page .system-img {
  margin-bottom: 15px;
  margin-left: 30px;
  border-radius: 8px;
  max-width: 25%;
  border: 1px solid #e3e3e3;
}
.info_page .boxesfull.boxnoimg .box {
  padding-top: 32px;
}
.info_page .grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 48px 24px;
}
.info_page .grid.boxesfull div {
  height: 100%;
}
.info_page .grid.boxesfull div .box {
  margin-bottom: 0;
  height: 100%;
}
.info_page .grid.grid-no-text {
  gap: 24px;
}
.info_page .grid.grid-no-text .videoIcon::before {
  bottom: 0px;
}
.info_page .grid.grid-no-text a.trackLink img {
  margin-bottom: 0;
}
.info_page .grid.boxes .item {
  border-bottom: 4px solid #5B5B67;
  padding-bottom: 40px;
}
.info_page .grid.boxes .item.coral {
  border-color: #F37F63;
}
.info_page .grid.boxes .item.turquoise {
  border-color: #45B2C5;
}
.info_page .grid.boxes .item.green {
  border-color: #19BB7C;
}
.info_page .grid.boxes .item .value p:last-child {
  margin-bottom: 0;
}
.info_page .grid.grid50 {
  grid-template-columns: 1fr 1fr;
}
.info_page .grid.grid50 p:last-child {
  margin-bottom: 0;
}
.info_page .grid.gridcenter {
  align-items: center;
}
.info_page .grid.grid25 {
  grid-template-columns: 1fr 1fr 1fr 1fr;
}
.info_page .grid.grid20 {
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  gap: 24px;
}
.info_page .grid.grid20 img {
  width: 100%;
}
.info_page .grid.grid16 {
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
  gap: 24px;
}
.info_page .grid.grid16 img {
  width: 100%;
}
.info_page .grid.grid1-4 {
  grid-template-columns: 1fr 4fr;
}
.info_page .grid h4:last-child {
  margin-bottom: 0;
}
.info_page .grid.grid-facts {
  gap: 24px !important;
}
.info_page .grid.grid-facts div.facts-cnt {
  padding-bottom: 0;
}
.info_page .testimonials p {
  margin-top: 10px;
}
.info_page .product-materials.pm-margin-top {
  margin-top: 48px;
}
.info_page .well h3 {
  margin-bottom: 16px;
}
@media only screen and (max-width: 768px) {
  .info_page .flex {
    display: block;
  }
  .info_page .grid, .info_page grid.grid25 {
    grid-template-columns: 1fr 1fr !important;
    gap: 32px 16px !important;
  }
  .info_page .grid.grid.boxes {
    gap: 62px 16px !important;
  }
  .info_page .grid.grid.boxes.boxesfull {
    gap: 16px !important;
  }
  .info_page .grid.grid20, .info_page .grid .grid16 {
    grid-template-columns: 1fr 1fr 1fr !important;
    gap: 16px !important;
  }
  .info_page .grid.grid1-4 {
    grid-template-columns: 1fr 2fr !important;
    gap: 16px !important;
  }
  .info_page .grid.grid-no-text {
    gap: 16px !important;
  }
  .info_page .grid div {
    padding-bottom: 10px;
  }
  .info_page .grid.boxes.boxesfull div {
    padding-bottom: 0px;
  }
  .info_page .grid.boxes.boxesfull div.box {
    padding-bottom: 32px;
  }
  .info_page .grid div.box.equal {
    padding-top: 32px;
    padding-bottom: 32px;
  }
  .info_page .grid div:last-child {
    margin-bottom: 0;
  }
  .info_page .product-materials div {
    margin-bottom: 40px;
  }
  .info_page .grid.grid50, .info_page .grid.links {
    grid-template-columns: 1fr !important;
  }
  .info_page .system-img {
    margin-left: 0;
    float: none;
  }
  .info_page .product-materials {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px 32px;
    text-align: center;
  }
  .info_page .product-materials .block_image2 {
    max-width: 60%;
  }
  .info_page .product-materials div {
    padding-left: 0;
    padding-right: 0;
    margin-bottom: 0;
  }
}
@media only screen and (max-width: 559px) {
  .info_page .tags {
    margin-top: 20px;
    border: 0;
  }
  .info_page .share {
    margin-top: 20px;
  }
  .info_page .grid, .info_page .grid.grid1-4 {
    grid-template-columns: 1fr !important;
  }
  .info_page .grid.grid20, .info_page .grid.grid16 {
    grid-template-columns: 1fr 1fr !important;
  }
  .info_page .grid.grid1-4 div:first-child {
    text-align: center;
  }
  .info_page .grid.grid1-4 div:first-child img {
    max-width: 50%;
  }
  .info_page .product-materials {
    display: block;
  }
  .info_page .product-materials div {
    margin-bottom: 48px;
  }
  .info_page .product-materials div:last-child {
    margin-bottom: 0;
  }
  .info_page .product-materials img {
    max-width: 75%;
  }
}

/* INFO PAGE */
.content {
  max-width: 1180px;
  padding-left: 20px;
  padding-right: 20px;
  margin: 0 auto;
}

#boxHome {
  top: -50px;
  position: relative;
}

#boxHomeRight a:hover {
  text-decoration: none;
}

#boxHomeLeft .list {
  grid-template-columns: 1fr 1fr 1fr;
}
#homelinks {
  padding: 50px 0;
  background: #FBF9FD;
  color: #5B5B67;
}
#homelinks h2 {
  font-size: 30px;
  font-weight: normal;
  border-bottom: 1px solid #C7C8CF;
  margin-bottom: 20px;
  color: #222;
  padding-bottom: 8px;
}
#homelinks ul {
  font-size: 18px;
  list-style: none;
  padding: 0;
}
#homelinks ul li {
  padding: 5px 0;
}
#homelinks ul li a {
  color: #222;
}
#homelinks ul li a:hover {
  color: #6022A6;
  text-decoration: none;
}

#box_img {
  height: 500px;
  overflow: hidden;
}
#box_img .nivoSlider img {
  width: 1280px;
}

#navPath {
  height: 40px;
  background: #ececec;
  padding: 0 100px;
  color: #4f4f4f;
  line-height: 40px;
}
#navPath a, #navPath a:link, #navPath a:visited, #navPath a:hover {
  color: #4f4f4f;
  text-decoration: none;
}

nav#top ul {
  list-style: none;
  margin: 0;
  padding: 0;
  position: absolute;
  right: 0;
  display: flex;
  align-items: center;
  gap: 8px;
}
nav#top ul li {
  float: left;
  vertical-align: middle;
  margin-right: 10px;
}
nav#top ul li a, nav#top ul li span {
  padding: 5px 10px;
}
nav#top ul li a.button, nav#top ul li span.button {
  color: #fff;
}
nav#top ul li a.button3 img, nav#top ul li span.button3 img {
  width: 20px;
}
nav#top ul li a:hover, nav#top ul li span:hover {
  text-decoration: none;
}
nav#top ul li a.contact {
  padding-right: 10px;
}
nav#top ul li a.active {
  color: #6022A6;
}
nav#top ul li.m20 {
  margin-left: 20px;
}
nav#top ul li.profile:hover {
  background: #FBF9FD;
  position: relative;
}
nav#top ul li div {
  width: 220px;
  background: #FBF9FD;
  z-index: 1010;
  position: absolute;
  left: -999em;
  min-height: 170px;
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
}
nav#top ul li div ul {
  padding: 15px;
  position: static;
  display: block;
}
nav#top ul li div ul li {
  float: none;
  padding: 5px 8px;
}
nav#top ul li div ul li:before {
  line-height: 12px;
  color: #222;
}
nav#top ul li div ul li a {
  padding: 0;
}
nav#top ul li div ul li:hover, nav#top ul li div ul li.active {
  color: #6022A6;
}
nav#top ul li div ul li:hover:before, nav#top ul li div ul li.active:before {
  color: #6022A6;
}
nav#top ul li div ul li:hover a, nav#top ul li div ul li.active a {
  color: #6022A6;
}
nav#top ul li:hover div {
  left: 0;
}
nav#top ul li {
  margin: 0;
  white-space: nowrap;
}
nav#top ul li.flex {
  display: flex;
}
nav#top ul li a, nav#top ul li span {
  cursor: pointer;
  color: #222;
}
nav#top ul li a.filled, nav#top ul li span.filled {
  background: #6022A6;
  text-decoration: none;
}
nav#top ul li a.filled:hover, nav#top ul li span.filled:hover {
  background: #512286;
  text-decoration: none;
}
nav#top ul li a i, nav#top ul li span i {
  font-size: 18px;
}
nav#top ul li span.name {
  cursor: auto;
}
nav#top ul li.search form {
  display: flex;
}
nav#top ul li.search .button {
  margin: 0;
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
  padding: 0 12px;
}
nav#top ul li.search input.searchterm {
  border: none;
  border-bottom-left-radius: 8px;
  border-top-left-radius: 8px;
  border-right: none;
  margin: 0;
  background: #FBF9FD;
  position: relative;
  top: -1px;
  padding: 1px 15px;
}
nav#top .button {
  padding: 0 16px;
  height: 32px;
  line-height: 24px;
}
nav#top ul.left {
  position: absolute;
  left: 100px;
}
nav#top select.form-control {
  padding-top: 6px;
  padding-bottom: 6px;
}

div.search {
  position: absolute;
  right: 80px;
  top: 30px;
  width: 180px;
}
div.search.libhome {
  right: 10px;
}
div.search.right {
  right: 10px;
}
div.search input.searchterm {
  width: 150px;
}

div.filter {
  position: absolute;
  right: 200px;
  top: 78px;
  width: 200px;
}
div.filter select {
  max-width: 160px;
}

#headerCnt div.search {
  top: 78px;
}

.warning {
  color: red;
}

.smaller {
  font-size: 70%;
}

.stickySearch {
  display: none;
  position: absolute;
  right: 20px;
  z-index: 1002;
  width: 40px;
  overflow: hidden;
  transition: width 0.5s;
}
.stickySearch:hover {
  width: 250px;
  transition: width 0.5s;
}
.stickySearch:hover .button {
  background: #6022A6;
  color: #fff !important;
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
}
.stickySearch:hover input.searchterm {
  right: -4px;
}
.stickySearch form {
  width: 300px;
  float: right;
  text-align: right;
}
.stickySearch .button {
  width: 40px;
  margin: 0;
  padding: 0 12px;
}
.stickySearch input.searchterm {
  border: 1px solid #ccc;
  border-bottom-left-radius: 13px;
  border-top-left-radius: 13px;
  border-right: none;
  margin: 0;
  background: #fff;
  position: relative;
  height: 32px;
  padding: 1px 15px;
}

/*******************************************************************************************************************
GENERAL STUFF
*******************************************************************************************************************/
.fbr, .ebr, .tbr {
  display: none;
}

#selector + .search + #box_detail,
.learning-library {
  margin-top: 30px;
}

.club_2.page_latestnews #selector,
.club_2.page_courses #selector,
.club_1.page_console-and-probe-care #selector,
.club_1.page_getting-started #selector,
.club_1.page_latestnews #selector,
.club_8.page_webinars #selector,
.club_8.page_whitepapers #selector,
.club_8.page_user-guide-grady #selector,
.club_8.page_teaching-atlas#selector,
.club_8.page_breast-magazine #selector,
.club_8.page_clinical-image-gallery #selector,
.club_8.page_publications #selector,
.club_8.page_product-videos #selector,
.club_8.page_techtalk-webinars #selector,
.club_8.page_product-specifications #selector,
.club_8.page_service #selector,
.club_8.page_media #selector,
.club_8.page_physicians #selector,
.club_8.page_generalnews #selector,
.club_8.page_teaching-atlas #selector,
.page_tags #selector {
  min-height: 0;
}
.club_2.page_latestnews #selector + .list,
.club_2.page_courses #selector + .list,
.club_1.page_console-and-probe-care #selector + .list,
.club_1.page_getting-started #selector + .list,
.club_1.page_latestnews #selector + .list,
.club_8.page_webinars #selector + .list,
.club_8.page_whitepapers #selector + .list,
.club_8.page_user-guide-grady #selector + .list,
.club_8.page_teaching-atlas#selector + .list,
.club_8.page_breast-magazine #selector + .list,
.club_8.page_clinical-image-gallery #selector + .list,
.club_8.page_publications #selector + .list,
.club_8.page_product-videos #selector + .list,
.club_8.page_techtalk-webinars #selector + .list,
.club_8.page_product-specifications #selector + .list,
.club_8.page_service #selector + .list,
.club_8.page_media #selector + .list,
.club_8.page_physicians #selector + .list,
.club_8.page_generalnews #selector + .list,
.club_8.page_teaching-atlas #selector + .list,
.page_tags #selector + .list {
  margin-top: 0;
}

.club_1.page_getting-started #selector + .videocontainer-small {
  margin-top: 0;
}

#selector {
  font-size: 16px;
  min-height: 52px;
  position: relative;
}
#selector + .search + #box_detail, #selector + .list, #selector + #mtList, #selector + .pubmed-container {
  margin-top: 30px;
}
#selector select.form-control {
  width: auto;
  display: inline-block;
  margin: 0 10px 0 0;
  /*&:first-child {
    margin-left: 0;
  }*/
}
#selector span + select.form-control {
  margin-left: 10px;
}
#selector .sector {
  display: inline-block;
  margin-bottom: 10px;
  white-space: nowrap;
}
#selector .sector select {
  max-width: 170px !important;
}

/*
.page_presentation {
  #selector .sector select {
    max-width: 200px !important;
  }
}*/
.box_myvoluson #selector + .list {
  margin-top: 0;
}

#admin #selector {
  margin-right: 0;
}

.serialbox {
  border-top: 1px solid #aaa;
  margin-bottom: 15px;
}
.serialbox div {
  border-bottom: 1px solid #aaa;
  padding: 5px 0;
}

.myvoluson #selector {
  min-height: 0;
}

label.error {
  display: none;
  color: red;
  padding-left: 5px;
  font-size: 14px;
}

.imgbox {
  border: 1px solid #ccc;
  background: #fff;
  border-radius: 4px;
  padding: 5px 0;
}

#imgUnit {
  width: 200px;
  height: 200px;
}

/*******************************************************************************************************************
MAINNAV
*******************************************************************************************************************/
#nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

#nav nav {
  max-width: 1180px;
  padding-left: 20px;
  padding-right: 20px;
  margin: 0 auto;
  position: relative;
  display: block;
  align-items: center;
}
#nav .button {
  padding: 0 16px;
  height: 32px;
  line-height: 24px;
  margin-top: 4px;
  align-items: center;
  justify-content: center;
}
#nav .button i {
  margin-right: 0;
}

/*
#nav_product-information + ul{
  left: 0 !important;
  opacity: 1 !important;
}*/
.nav-menu ul {
  border-bottom-left-radius: 8px !important;
  border-bottom-right-radius: 8px !important;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
  background-color: #FBF9FD !important;
}
.nav-menu ul li a, .nav-menu ul li:hover a {
  background-color: transparent !important;
}
.nav-menu ul li.hasChildren:last-child ul {
  border-radius: 8px !important;
}

.club_2.pole_ru #navMain li a:link, .club_2.pole_ru #navMain li a:visited {
  padding: 0 5px;
}

#navMain {
  height: 40px;
  list-style: none;
  position: relative;
  z-index: 999;
}
#navMain ul {
  padding: 0;
  margin: 0 0 0 -1px;
  list-style: none;
  line-height: 18px;
  font-weight: normal;
  font-size: 16px;
}
#navMain li:hover div, #navMain li.sfhover div {
  left: auto;
}
#navMain li > div {
  padding: 24px;
  background-color: #FBF9FD;
  z-index: 110;
  position: absolute;
  border-top: 0;
  left: -999em;
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
  min-height: 190px;
}
#navMain li > div > div {
  padding: 0 120px 0 0;
}
#navMain li > div h3 {
  margin-bottom: 16px;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 32px;
  color: #222;
}
#navMain li > div img {
  width: 100px;
  height: 100px;
  position: absolute;
  right: 20px;
  border-radius: 4px;
}
#navMain a {
  display: block;
}
#navMain li {
  float: left;
  background: none;
  white-space: nowrap;
}
#navMain li li {
  float: none;
  line-height: 18px;
  margin: 0;
  padding: 3px 0;
}
#navMain li li a:link, #navMain li li a:visited {
  line-height: 20px;
  height: auto;
  overflow: visible;
  text-indent: 0;
  padding: 3px 0;
  margin: 0;
  text-transform: none;
}
#navMain li li a:hover {
  text-decoration: none;
  background: none;
  color: #fff;
}
#navMain li li:active a, #navMain li li.active a, #navMain li li:hover a {
  color: #6022A6;
  border: 0;
}
#navMain li a:link, #navMain li a:visited {
  height: 40px;
  line-height: 40px;
  display: block;
  color: #222;
  padding: 0 10px;
}
#navMain li a:hover {
  text-decoration: none;
  color: #6022A6;
}
#navMain li.ve_mobile {
  display: none !important;
}

.navbar-nav > li > a {
  line-height: 34px;
}

#navMain .currentItem > a:link,
#navMain .currentItem > a:visited,
#navMain .currentItem > a:active {
  color: #6022A6;
  border-bottom: 2px solid #6022A6;
}

/*******************************************************************************************************************
LINKS BUTTONS FORMS
*******************************************************************************************************************/
.content a:link, .content a {
  color: #6022A6;
  text-decoration: none;
  cursor: pointer;
}
.content a:link.button, .content a.button {
  color: #fff;
}
.content a:visited {
  color: #6022A6;
  text-decoration: none;
}
.content a:hover {
  text-decoration: underline;
}
.content h2 a:hover, .content h3 a:hover, .content h4 a:hover, .content h5 a:hover, .content h6 a:hover {
  text-decoration: none;
}
.content a.button:hover {
  text-decoration: none;
}
.content a.download, .content span.download {
  background: transparent url("/src/img/icn_download.gif") no-repeat scroll 0 0;
  padding-left: 30px;
}
.content #ctabs a {
  background: #FBF9FD;
}
.content #ctabs a.active, .content #ctabs a:active {
  background: #6022A6;
  color: #fff;
}
.content #ctabs a.active:hover, .content #ctabs a:active:hover {
  color: #fff;
}

.btn-default {
  background: #FBF9FD;
  border-color: #C7C8CF;
  color: #222;
}

.memberbuttons {
  float: right;
}
.memberbuttons .fa {
  color: #6022A6;
}
.memberbuttons .fa {
  font-size: 18px;
  vertical-align: -2px;
  margin-right: 5px;
}

#mm-main img {
  max-width: 100%;
  border-radius: 8px;
}

.mm-slideout {
  z-index: auto;
}

#mm-blocker {
  background-color: black;
  opacity: 0.5;
}

.mm-navbar {
  font-size: 20px;
  color: #6022A6 !important;
  border-color: #C7C8CF;
}
.mm-navbar h3 {
  color: #222;
}

.mm-panels > .mm-panel {
  padding-right: 10px;
}

.mm-listview > li:not(.mm-divider):after {
  border: 0;
}

.mm-menu .mm-listview > li .mm-next:after {
  border-color: #222 !important;
}

.mm-menu .mm-listview {
  border-color: #C7C8CF;
}
.mm-menu .mm-listview a {
  color: #222;
}
.mm-menu .mm-listview a:hover {
  color: #222;
}

.mm-menu .mm-navbar a, .mm-menu .mm-navbar > * {
  color: #6022A6;
}
.mm-menu .mm-navbar a:before, .mm-menu .mm-navbar > *:before {
  color: #6022A6;
  border-color: #fff;
}

ul.mm-listview {
  margin: 20px 0 0 -20px;
}

a:focus, img:focus, embed:focus, object:focus, button:focus, input:focus {
  outline: none;
}

h1 .button, h1 .content a.button, h1 .content a.button:link, h1 .content a.button:focus, h2 .button, h2 .content a.button, h2 .content a.button:link, h2 .content a.button:focus, h3 .button, h3 .content a.button, h3 .content a.button:link, h3 .content a.button:focus, h4 .button, h4 .content a.button, h4 .content a.button:link, h4 .content a.button:focus, h5 .button, h5 .content a.button, h5 .content a.button:link, h5 .content a.button:focus, h6 .button, h6 .content a.button, h6 .content a.button:link, h6 .content a.button:focus {
  height: 44px;
}

.button, .content a.button, .content a.button:link, .content a.button:focus {
  color: #fff;
  background: #6022A6;
  padding: 8px 24px;
  /* height: 44px; */
  display: inline-flex;
  border-radius: 8px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  font-size: 16px;
  font-style: normal;
  font-weight: bold;
  width: fit-content;
  align-items: center;
  letter-spacing: normal;
  -moz-transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.button.white, .content a.button.white, .content a.button:link.white, .content a.button:focus.white {
  background: #fff;
  border: 1px solid #6022A6;
  color: #6022A6;
}
.button:hover, .button:active, .content a.button:hover, .content a.button:active, .content a.button:link:hover, .content a.button:link:active, .content a.button:focus:hover, .content a.button:focus:active {
  text-decoration: none;
  color: #fff;
  background: #512286;
  -moz-transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.button:hover.white, .button:active.white, .content a.button:hover.white, .content a.button:active.white, .content a.button:link:hover.white, .content a.button:link:active.white, .content a.button:focus:hover.white, .content a.button:focus:active.white {
  background: #fff;
  color: #512286;
}
.button i.fa, .content a.button i.fa, .content a.button:link i.fa, .content a.button:focus i.fa {
  margin-right: 5px;
}

.covid .button {
  background: rgba(0, 0, 0, 0.5);
}
.covid .button:hover {
  background: #512286;
}

a.button:focus {
  color: #fff;
  background: #512286;
  text-decoration: none;
}

.buttonSmall {
  height: 22px;
  line-height: 24px;
  border-radius: 11px;
  font-size: 12px;
  padding: 0 15px;
}

.button2 {
  background: #6022A6;
}

.button3 {
  background: #6022A6;
}
.buttonGrey, a.buttonGrey, .bluebox .button {
  background: #fff;
  color: #6022A6;
  border: 1px solid #6022A6;
}
.buttonGrey:hover, .buttonGrey:active, .buttonGrey:focus, a.buttonGrey:hover, a.buttonGrey:active, a.buttonGrey:focus, .bluebox .button:hover, .bluebox .button:active, .bluebox .button:focus {
  text-decoration: none;
  color: #fff;
  background: #512286;
}

/*
.buttonGrey, a.buttonGrey, .bluebox .button {
  border: 1px solid $white;
}
*/
.calendar {
  border-bottom: 0;
}
.calendar .smallmonthview .dayinfo h5 {
  color: #222;
}
.calendar .smallmonthview .dayinfo h5 a {
  color: #6022A6;
}
.calendar .smallcalendar .day {
  background: #FBF9FD;
  border-color: #C7C8CF;
}
.calendar .daynames .day {
  border-color: #222;
  border-width: 1px;
  color: #222;
  font-weight: normal;
}
.calendar .day.today {
  background-color: #F4F1F8;
}
.calendar .calendar_select .year {
  color: #222;
  font-weight: normal;
}
.calendar .callink {
  font-size: 16px;
}
.calendar .detail {
  border-color: #C7C8CF;
  border-radius: 4px;
  font-size: 16px;
}
.calendar .month {
  border-color: #C7C8CF;
}
.calendar h4 {
  color: #222;
}

.page_calendar #legend span {
  color: #222;
}

.calendar a.col1, .dayinfo a.col1, span.col1 {
  background-color: #45B2C5;
  color: #222 !important;
  border-radius: 4px;
}
.calendar a.col4, .dayinfo a.col4, span.col4 {
  background-color: #19BB7C;
  color: #222 !important;
  border-radius: 4px;
}
.calendar a.col5, .dayinfo a.col5, span.col5 {
  background-color: #F37F63;
  color: #222 !important;
  border-radius: 4px;
}

/*.buttonOrange, */
.btnEmpty {
  background: none !important;
  border: 1px solid #6022A6 !important;
  color: #6022A6 !important;
}
.btnMr {
  margin-right: 16px;
}

.buttonWhite {
  background: #ffffff;
  color: #6022A6 !important;
}
.buttonWhite:hover, .buttonWhite:active, .buttonWhite:focus {
  background: #512286;
  color: #fff !important;
}

.form-horizontal label {
  font-weight: normal;
  margin: 0;
  height: 34px;
}

.videoWrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 */
  padding-top: 25px;
  height: 0;
  margin-bottom: 30px;
}

.videoWrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.video-js, .mainvideo video, .fullvideo video, .videoWrapper video {
  /*border: 1px solid #dce1e5;
  background-color: #fff;*/
  border-radius: 8px;
}

.fullvideo {
  margin-bottom: 50px;
}
.fullvideo video {
  width: 100%;
  height: auto;
}

/* Video Icon */
.videoLink {
  position: relative;
}

a.trackLink.videoLink:after, a.trackVideo.videoLink:after {
  content: url(/img/button-play.svg);
  position: absolute;
  top: 50%;
  left: 50%;
  margin-left: -28px;
  margin-top: -28px;
  width: 56px;
}

a.trackLink.videoLink.small img, a.trackVideo.videoLink.small img, a.trackLink.small img {
  margin-bottom: 24px;
}

a.trackVideo.videoLink.small:after, a.trackLink.videoLink.small:after, a.trackLink.small:after {
  content: unset;
}

.videoIcon, .fancybox.trackImage {
  display: block;
  position: relative;
}

.videoIcon::before, .fancybox.trackImage::before {
  content: " ";
  background: url(/src/img/play-button-blue-small.svg) no-repeat;
  position: absolute;
  bottom: 24px;
  left: 0;
  width: 36px;
  height: 36px;
  border-radius: 4px;
  /* @include for-smaller-than-desktop {
     border-bottom-left-radius: 0.375rem;
   }*/
}

.fancybox.trackImage::before {
  background: url(/src/img/search-button-small.svg) no-repeat;
}

.fancybox.noicon.trackImage {
  position: absolute;
}
.fancybox.noicon.trackImage::before {
  content: unset;
  position: unset;
  height: 0;
  width: 0;
}

.videoIcon.videoIconSmallMargin::before {
  bottom: 16px;
}

.videoIcon.extrasmall::before {
  bottom: 12px;
}
.videoIcon.extrasmall img {
  margin-bottom: 12px !important;
}

.videoIcon.big::before, .fancybox.trackImage.big::before {
  width: 56px;
  height: 56px;
  background-size: 100% auto;
  bottom: calc(50% - 28px);
  left: calc(50% - 28px);
}

/*******************************************************************************************************************
HOME
*******************************************************************************************************************/
#box_head_home {
  height: 380px;
  padding: 0 30px;
}

.ul {
  padding-left: 20px;
}
.ul li {
  position: relative;
  margin-bottom: 15px;
}

td.left {
  width: 150px;
}

ul.angle {
  list-style: none;
  padding: 10px;
}
ul.angle li {
  position: relative;
  padding-left: 0;
  line-height: 16px;
  margin-bottom: 10px;
}
ul.angle li a {
  color: #6022A6;
  padding-right: 20px;
  background: url(/src/img/icons/caret-right.svg) no-repeat center right;
}
ul.angle li a:hover {
  text-decoration: underline;
}

#box_detail ul.ul {
  color: #5B5B67;
}

ul h4 {
  color: #222;
}

ul.std {
  list-style: none;
  padding-left: 0;
}

.p20 {
  padding: 20px;
  display: inline-block;
}

.share {
  margin-top: 64px;
  padding-top: 32px;
  border-top: 1px solid #C7C8CF;
}
.share.myprofile {
  border-top: 0;
}
.share .sharecenter {
  width: 240px;
}
.share .likes {
  width: 70px;
  float: left;
  width: 120px;
  font-size: 17px;
  color: rgb(102, 102, 102);
}
.share .likes .likecnt {
  font-size: 48px;
  font-style: normal;
  font-weight: 400;
  line-height: 56px;
  letter-spacing: -1.25px;
  color: #222;
}
.share .views {
  margin-right: 48px;
  float: left;
  font-size: 17px;
  color: rgb(102, 102, 102);
}
.share .views .viewcnt {
  font-size: 48px;
  font-style: normal;
  font-weight: 400;
  line-height: 56px;
  letter-spacing: -1.25px;
  color: #222;
}

.viewall {
  float: right;
  font-size: 16px;
  padding-right: 5px;
  letter-spacing: 0;
}
.viewall:hover {
  text-decoration: none;
}

.tags {
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid #C7C8CF;
}
.tags .tag {
  margin: 0 12px 12px 0;
  background: #F4F1F8;
  display: inline-flex;
  padding: 10px 24px;
  justify-content: center;
  align-items: center;
  border-radius: 4px;
  color: #222;
}
.tags .tag:hover {
  outline: 1px solid #6022A6;
  text-decoration: none;
  color: #6022A6;
  cursor: pointer;
}

/*
.lltags {
  text-align: center;
  margin-top: 20px;

  .tag {
    display: inline-block;
    margin: 0 5px 10px 5px;
  }
}*/
.toptags {
  text-align: center;
}
.toptags .tag {
  display: inline-block;
  margin: 0 5px;
}

.relatedArticles h2 {
  padding-right: 100px;
}

#myTrainerCnt .flex-direction-nav a, .relatedArticles .related .flex-direction-nav a {
  width: 40px;
  height: 40px;
  background: #ddd;
  color: #fff;
  border-radius: 20px;
  font-size: 0;
  text-align: center;
  line-height: 45px;
  top: 40%;
  -moz-transition: all 0.5 linear;
  -webkit-transition: all 0.5 linear;
  -o-transition: all 0.5 linear;
  transition: all 0.5 linear;
  opacity: 1;
  text-shadow: none;
}
#myTrainerCnt .flex-direction-nav a.flex-disabled, .relatedArticles .related .flex-direction-nav a.flex-disabled {
  opacity: 0.25 !important;
  z-index: 1;
}
#myTrainerCnt .flex-direction-nav a:before, .relatedArticles .related .flex-direction-nav a:before {
  color: #fff;
  font-size: 20px;
  line-height: 40px;
  opacity: 1;
  text-shadow: none;
  content: url(/src/img/icons/slider-button-blue-right-small.svg);
}
#myTrainerCnt .flex-direction-nav a:hover, .relatedArticles .related .flex-direction-nav a:hover {
  opacity: 1;
  -moz-transition: all 0.5 linear;
  -webkit-transition: all 0.5 linear;
  -o-transition: all 0.5 linear;
  transition: all 0.5 linear;
}
#myTrainerCnt .flex-direction-nav .flex-prev, .relatedArticles .related .flex-direction-nav .flex-prev {
  right: 54px;
  left: auto;
  top: -45px;
}
#myTrainerCnt .flex-direction-nav .flex-prev:before, .relatedArticles .related .flex-direction-nav .flex-prev:before {
  color: #fff;
  font-size: 20px;
  line-height: 40px;
  opacity: 1;
  text-shadow: none;
  content: url(/src/img/icons/slider-button-blue-left-small.svg);
}
#myTrainerCnt .flex-direction-nav .flex-next, .relatedArticles .related .flex-direction-nav .flex-next {
  right: 0;
  top: -45px;
  background-color: #6022A6;
}

#myTrainerCnt .flex-direction-nav .flex-prev,
#myTrainerCnt .flex-direction-nav .flex-next {
  top: -50px;
}

.relatedArticles {
  margin-top: 50px;
}
.relatedArticles h2 {
  margin-bottom: 24px;
  font-size: 36px;
}
.relatedArticles .related {
  position: relative;
  margin: 0 20px 0 0;
  /*.flex-direction-nav {
    a {
      //opacity: 0.5;
      width: 40px;
      height: 40px;
      background: #ddd;
      color: #fff;
      border-radius: 20px;
      font-size: 0;
      text-align: center;
      line-height: 45px;
      top: 40%;
      @include transition(0.5);
      opacity: 1;
      text-shadow: none;
      &.flex-disabled{
        opacity: 0.25 !important;
        z-index: 1;
      }

      &:before {
        //color: rgba(0, 0, 0, 0.2);
        color: $white;
        font-size: 20px;
        line-height: 40px;
        opacity: 1;
        text-shadow: none;
        content: url(/src/img/icons/slider-button-blue-right-small.svg);
      }

      &:hover {
        opacity: 1;
        @include transition(0.5);
      }
    }

    .flex-prev {
      //left: -40px;
      right: 54px;
      left: auto;
      top: -40px;
      &:before {
        //color: rgba(0, 0, 0, 0.2);
        color: $white;
        font-size: 20px;
        line-height: 40px;
        opacity: 1;
        text-shadow: none;
        content: url(/src/img/icons/slider-button-blue-left-small.svg);
      }
    }

    .flex-next {
      //right: -40px;
      right: 0;
      top: -40px;
      background-color: $primaryColor;
    }
  }*/
}
.relatedArticles .related .list {
  display: block;
}
.relatedArticles .related .list .item {
  max-width: 215px;
  margin: 0;
  margin-right: 10px !important;
}
.relatedArticles .related .list .item img {
  margin-bottom: 0 !important;
}
.relatedArticles .related .list .item .teaser {
  display: none;
}

.addthis_inline_share_toolbox_ua3y {
  max-width: 750px;
  float: right;
}

.at4-jumboshare .at4-count-container {
  min-width: 100px !important;
}

.fancybox-slide > * {
  padding: 0;
}

.fancybox-content {
  border-radius: 8px;
}

.fancybox-iframe {
  background: #000;
}

.memberbox {
  min-height: 366px;
}
.memberbox ul.benefits {
  font-size: 14px;
  line-height: 18px;
}
.memberbox ul.benefits li {
  margin-bottom: 5px;
}

#formLogin label {
  font-weight: normal;
}

.loginbox, .memberbox {
  background: #F4F1F8;
  max-width: 300px;
  width: 100%;
  font-size: 16px;
  margin-bottom: 50px;
  position: relative;
  padding-bottom: 35px;
  border-radius: 8px;
  overflow: hidden;
}
.loginbox .img_right, .memberbox .img_right {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
.loginbox h2, .memberbox h2 {
  background: #6022A6;
  color: #fff;
  height: 50px;
  line-height: 50px;
  padding: 0 20px;
  margin: 0;
  font-size: 22px;
  letter-spacing: 0;
}
.loginbox form.login, .memberbox form.login {
  padding: 20px;
}
.loginbox form.login .form-group .form-row label, .memberbox form.login .form-group .form-row label {
  font-weight: normal;
  text-transform: uppercase;
  margin: 0;
  padding-left: 10px;
}
.loginbox form.login .form-check label, .memberbox form.login .form-check label {
  font-weight: normal;
}
.loginbox label, .memberbox label {
  font-weight: normal;
}
.loginbox .button, .memberbox .button {
  margin: 0 auto;
}

.rebranding_pole_select #box_detail {
  padding-top: 0 !important;
}
.rebranding_pole_select #boxHome {
  top: 0;
}
.rebranding_pole_select .loginbox, .rebranding_pole_select .memberbox {
  max-width: 100%;
  margin-bottom: 0;
  padding-bottom: 0;
}
.rebranding_pole_select .loginbox button.bottom, .rebranding_pole_select .memberbox button.bottom {
  position: relative;
  bottom: inherit;
  left: inherit;
  margin-top: 10px;
}
@media (max-width: 767px) {
  .rebranding_pole_select #boxHomeLeft {
    margin-bottom: 30px;
  }
}

#pageloginbox {
  text-align: center;
  width: 400px;
  border: 1px solid #ccc;
  border-radius: 10px;
  margin: 80px auto;
  padding: 30px 0;
}
#pageloginbox .loginbox {
  margin: 80px auto 0 auto;
}

#hamburger {
  display: none;
}

.hamburger-inner,
.hamburger-inner::before,
.hamburger-inner::after {
  background-color: #6022A6;
}

.myvolusonbox, .eventsbox, .localnewsbox {
  background-repeat: no-repeat !important;
}
.myvolusonbox.calenderbox, .eventsbox.calenderbox, .localnewsbox.calenderbox {
  overflow: visible;
  min-height: 450px !important;
  /*height: 450px !important;*/
}
.myvolusonbox.calenderbox .smallcalendar, .eventsbox.calenderbox .smallcalendar, .localnewsbox.calenderbox .smallcalendar {
  padding-top: 20px !important;
}
.myvolusonbox.calenderbox .smallcalendar .daynames .day, .eventsbox.calenderbox .smallcalendar .daynames .day, .localnewsbox.calenderbox .smallcalendar .daynames .day {
  border: 0;
  background: none;
}
.myvolusonbox.calenderbox .smallcalendar .daynames .day, .eventsbox.calenderbox .smallcalendar .daynames .day, .localnewsbox.calenderbox .smallcalendar .daynames .day {
  margin-bottom: 5px;
}
.myvolusonbox.calenderbox .smallcalendar .day, .eventsbox.calenderbox .smallcalendar .day, .localnewsbox.calenderbox .smallcalendar .day {
  background-color: #FBF9FD;
}
.myvolusonbox.calenderbox .smallcalendar .day.corner, .eventsbox.calenderbox .smallcalendar .day.corner, .localnewsbox.calenderbox .smallcalendar .day.corner {
  background-image: url("/src/img/corner.svg");
}
.myvolusonbox.calenderbox .smallcalendar .year, .eventsbox.calenderbox .smallcalendar .year, .localnewsbox.calenderbox .smallcalendar .year {
  color: #5B5B67;
  font-size: 18px;
  line-height: 1em;
  display: block;
  margin-bottom: 20px;
}
.myvolusonbox.calenderbox .smallcalendar h3, .eventsbox.calenderbox .smallcalendar h3, .localnewsbox.calenderbox .smallcalendar h3 {
  margin-bottom: 8px;
}
.myvolusonbox.calenderbox .smallcalendar h4, .eventsbox.calenderbox .smallcalendar h4, .localnewsbox.calenderbox .smallcalendar h4 {
  line-height: normal;
  text-align: center;
  color: #5B5B67;
}
.myvolusonbox .img, .eventsbox .img, .localnewsbox .img {
  height: 130px;
  overflow: hidden;
}
.myvolusonbox .img img, .eventsbox .img img, .localnewsbox .img img {
  width: 100%;
}
.myvolusonbox .text, .eventsbox .text, .localnewsbox .text {
  padding: 20px 0;
}
.myvolusonbox .text h3, .eventsbox .text h3, .localnewsbox .text h3 {
  margin: 0 20px 20px 20px;
}
.myvolusonbox .cnt, .eventsbox .cnt, .localnewsbox .cnt {
  border-bottom: 1px solid #808080;
  padding: 10px 0;
}
.myvolusonbox .item, .eventsbox .item, .localnewsbox .item {
  padding: 0 20px;
  -moz-transition: all 0.5s linear;
  -webkit-transition: all 0.5s linear;
  -o-transition: all 0.5s linear;
  transition: all 0.5s linear;
}
.myvolusonbox .item h4, .eventsbox .item h4, .localnewsbox .item h4 {
  font-size: 18px;
  font-weigh: bold;
  margin: 0;
}
.myvolusonbox .item:hover, .eventsbox .item:hover, .localnewsbox .item:hover {
  background: rgba(98, 89, 154, 0.4);
}
.myvolusonbox .item:hover .cnt, .eventsbox .item:hover .cnt, .localnewsbox .item:hover .cnt {
  border-bottom: 2px solid rgba(98, 89, 154, 0.4);
  -moz-transition: all 0.5s linear;
  -webkit-transition: all 0.5s linear;
  -o-transition: all 0.5s linear;
  transition: all 0.5s linear;
}
.myvolusonbox a:hover, .eventsbox a:hover, .localnewsbox a:hover {
  text-decoration: none;
}

.myvolusonright {
  background-size: 100% auto;
}
.myvolusonright.loginbox {
  padding-bottom: 0;
}
.myvolusonright h3 {
  font-size: 22px;
  margin-bottom: 12px;
}
.myvolusonright .navlist {
  padding-top: 12px;
  border-top: 1px solid #C7C8CF;
}
.myvolusonright .navlist span, .myvolusonright .navlist span.active {
  color: #222;
  border-bottom: 0;
  padding-top: 4px;
  padding-bottom: 4px;
}
.myvolusonright .navlist a {
  color: #6022A6;
  padding-right: 20px;
  background: url(/src/img/icons/caret-right.svg) no-repeat center right;
  border-bottom: 0;
  padding-top: 4px;
  padding-bottom: 4px;
}
.myvolusonright .img {
  height: 250px;
  overflow: hidden;
}
.myvolusonright .img img {
  width: 100%;
}

.navlist a, .navlist span {
  display: block;
  border-bottom: 1px solid #ccc;
  padding: 10px 0;
  color: #808080;
}
.navlist a:hover, .navlist span:hover {
  text-decoration: none;
  color: #6022A6;
}
.navlist a.active, .navlist span.active {
  color: #6022A6;
}

.eventsbox {
  padding-bottom: 0;
  background-size: 150% auto;
}
.eventsbox .smallcalendar {
  padding-top: 0 !important;
}
.eventsbox .bottom {
  bottom: 4px;
}
.eventsbox .cntEvents {
  background: #F4F1F8;
  color: #fff;
  height: 100%;
  padding: 20px;
  border-bottom-right-radius: 8px;
  border-bottom-left-radius: 8px;
}
.eventsbox h3 {
  color: #222;
}
.eventsbox a, .eventsbox a:link, .eventsbox a:visited, .eventsbox a:hover {
  color: #6022A6;
}
.eventsbox ul.angle {
  margin-top: 10px;
}
.eventsbox ul.angle li {
  margin: 0;
  padding: 4px 15px;
  padding-left: 0;
  line-height: 24px;
}
.eventsbox ul.angle li:before {
  left: 0;
}
.eventsbox ul.angle li:before {
  color: #fff;
}

.club_8 .myvolusonbox {
  background-position: top left;
}

.myvolusonbox {
  padding-top: 150px;
  background-size: 100% auto;
  display: flex;
  flex-direction: column;
  background-position: top 20% left 0;
  padding-bottom: 0;
}
.myvolusonbox.mylogiqbox, .myvolusonbox.myvividbox {
  background-position-y: top;
}
.myvolusonbox .cntBlack {
  background: #F4F1F8;
  padding: 20px;
  border-bottom-right-radius: 8px;
  border-bottom-left-radius: 8px;
  height: 100%;
}
.myvolusonbox .img {
  position: relative;
  height: 130px;
  overflow: hidden;
}
.myvolusonbox .img img {
  display: block;
  position: absolute;
}
.myvolusonbox .img h3 {
  position: absolute;
  height: 40px;
  line-height: 40px;
  width: 100%;
  bottom: 0;
  padding: 0 15px;
  font-size: 18px;
  -moz-transition: all 0.5s linear;
  -webkit-transition: all 0.5s linear;
  -o-transition: all 0.5s linear;
  transition: all 0.5s linear;
}
.myvolusonbox .img h2 {
  position: absolute;
  height: 50px;
  line-height: 50px;
  width: 100%;
  top: 0;
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  padding: 0 15px;
  font-size: 18px;
  -moz-transition: all 0.5s linear;
  -webkit-transition: all 0.5s linear;
  -o-transition: all 0.5s linear;
  transition: all 0.5s linear;
}
.myvolusonbox .img h2 a {
  color: #222;
}
.myvolusonbox .img:hover h2 {
  background: #222;
  -moz-transition: all 0.5s linear;
  -webkit-transition: all 0.5s linear;
  -o-transition: all 0.5s linear;
  transition: all 0.5s linear;
}
.myvolusonbox h3 {
  font-size: 22px;
  padding: 0;
  margin: 0;
}
.myvolusonbox a, .myvolusonbox a:link, .myvolusonbox a:visited, .myvolusonbox a:hover {
  color: #6022A6;
}
.myvolusonbox ul.angle {
  padding: 12px 0;
  margin-top: 12px;
  border-top: 1px solid #C7C8CF;
}
.myvolusonbox ul.angle li {
  margin: 0;
  padding: 4px 15px;
  padding-left: 0;
  line-height: 24px;
}
.myvolusonbox ul.angle li:first-child {
  padding-top: 0;
}
.myvolusonbox ul.angle li:before {
  left: 0;
}
.myvolusonbox ul.angle li:before {
  color: #222;
}

.eventsbox {
  background: #FBF9FD;
  padding-top: 150px;
}
.eventsbox h2 {
  background: #6022A6;
}
.eventsbox h3 {
  margin-bottom: 0;
  font-size: 22px;
}
.eventsbox .item:hover {
  background: rgba(169, 174, 180, 0.4);
}
.eventsbox .item:hover .cnt {
  border-bottom: 2px solid rgba(169, 174, 180, 0.4);
}
.eventsbox ul.angle {
  padding: 12px 0;
  margin-top: 12px;
  border-top: 1px solid #C7C8CF;
}

.localnewsbox {
  background: linear-gradient(rgba(106, 122, 145, 0.2), rgba(106, 122, 145, 0));
}
.localnewsbox h2 {
  background: rgb(106, 122, 145);
}
.localnewsbox .item:hover {
  background: rgba(106, 122, 145, 0.4);
}
.localnewsbox .item:hover .cnt {
  border-bottom: 2px solid rgba(106, 122, 145, 0.4);
}

.indexloginbox {
  float: none;
  position: absolute;
  right: 60px;
  top: 40px;
}

h2.home {
  background: #D4DAE0;
  /* url("/src/img/dotline.gif") repeat-x; */
  padding: 2px 10px;
  color: #333;
  margin-bottom: 6px;
}

.home_subheader {
  text-transform: uppercase;
  color: #333;
}

.infobox {
  margin-bottom: 20px;
}

#relatedlinks, .relatedlinks {
  background: #e9ecef url("/data/images/home/relatedlinks3.jpg") no-repeat 162px 10px;
  padding: 15px;
  padding-bottom: 0;
  margin-bottom: 20px;
}

.infobox h3 {
  color: #444;
}

#relatedlinks h3, .relatedlinks h3 {
  margin-bottom: 10px;
}

ul.home_news {
  background: url("/src/img/dotline.gif") repeat-x;
  margin-bottom: 20px;
}

ul.home_news li {
  background: url("/src/img/dotline.gif") repeat-x 0 bottom;
  position: relative;
}

.btn2 {
  clear: both;
  position: absolute;
  bottom: 10px;
  left: 130px;
}

.infoboxblue h2 {
  margin-bottom: 10px;
  color: #444;
}

.infoboxblue h3 {
  margin-bottom: 2px;
}

.infoboxline {
  height: 1px;
  line-height: 1px;
  width: 181px;
  background: url("/src/img/bg_infobox.gif") no-repeat;
  margin-bottom: 10px;
}

.appinfo {
  font-style: italic;
  font-size: 12px;
}

.applinesubh {
  margin-top: -18px;
  padding-bottom: 3px;
  margin-bottom: 20px;
}

.learnmore {
  display: block;
  color: white;
  position: absolute;
  top: 310px;
  right: 50px;
  width: 86px;
  height: 21px;
  z-index: 100;
  background: url("/src/img/learnmore.png");
}

#appnews_video_header .learnmore {
  top: auto;
  right: auto;
  bottom: 20px;
  left: 20px;
}

#postittop {
  width: 131px;
  height: 50px;
  top: 130px;
  left: 20px;
  position: absolute;
  z-index: 100;
  background: url("/data/images/home/postit_top.png") 0 0 no-repeat;
}

#postit {
  display: block;
  position: absolute;
  width: 146px;
  height: 154px;
  z-index: 101;
  top: 180px;
  left: 20px;
  background: url("/data/images/home/postit_bottom.png");
  cursor: pointer;
}

#postit:hover {
  text-decoration: none;
}

.cleft {
  clear: both;
  width: 420px;
  padding-right: 20px;
  float: left;
}

.cright {
  width: 420px;
  padding-left: 20px;
  float: left;
}

.homelocalnews li {
  border-bottom: 1px solid #E5E5E5;
  padding-left: 1px;
}

.homelocalnews li:hover {
  background: #f1f1f1;
  border-left: 1px solid #E5E5E5;
  border-right: 1px solid #E5E5E5;
  padding-left: 0;
}

.homelocalnews h1 {
  margin: 5px 0 0 0 !important;
  border: 1px solid #E5E5E5;
}

.homelocalnews li a {
  display: block;
  background: url("/data/images/chevron.png") 5px 21px no-repeat;
  padding: 20px 20px 20px 25px;
  color: #666;
}

.homelocalnews a:hover {
  text-decoration: none;
}

/*
.homelocalnews .badge {
	padding: 0;
	font-size: 13px;
	border-radius: 0;
}
*/
.link_about a {
  color: #fff !important;
  font-size: 15px;
  position: relative;
  display: block;
  width: 160px;
  height: 35px;
  line-height: 35px;
  top: 120px;
  left: 95px;
}

.course_right {
  float: right;
  width: 400px;
  margin: 0 0 20px 20px;
  background: #eee;
  padding: 20px;
  font-size: 15px;
}
.course_right img {
  width: 100%;
}

.coursedate {
  padding-bottom: 10px;
}

/*******************************************************************************************************************
CONTENT
*******************************************************************************************************************/
h1, h2, h3, h4, h5, h6 {
  margin: 0;
}

h1 {
  margin: 36px 0 36px 0;
  font-size: 48px;
  font-style: normal;
  font-weight: 400;
  line-height: 56px; /* 116.667% */
  letter-spacing: -1.25px;
}

h2 {
  font-size: 36px;
  font-style: normal;
  font-weight: 400;
  line-height: 48px; /* 133.333% */
  letter-spacing: -1.25px;
  margin-bottom: 32px;
}

h3 {
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 32px; /* 133.333% */
  margin-bottom: 24px;
}

h4 {
  font-size: 22px;
  line-height: 32px;
  margin-bottom: 10px;
}

h5 {
  font-size: 14px;
}

h6 {
  font-size: 13px;
}

#box_content, .box_content {
  padding: 30px 20px 60px 20px;
  width: 1180px;
  margin: 0 auto;
  position: relative;
}

.bottombuttons {
  left: 18px;
  bottom: 0;
  position: absolute;
  left: 0;
}

.club_8.page_product-videos .bottombuttons {
  position: relative;
}

.box_description {
  padding: 40px;
  background: url(/src/img/shadow5.jpg) repeat-x;
}

.detail {
  padding: 80px;
}

.thumb {
  position: relative;
}
.thumb img {
  border-radius: 8px;
}

.libraryhome .mainvideo .videocontent h2 a {
  min-height: auto;
}

.libraryhome .videocontainer-small.toprated,
.libraryhome .videocontainer-small.latest {
  border-top: 1px solid #C7C8CF;
  padding-top: 48px;
  margin-top: 48px !important;
}
.libraryhome .videocontainer-small.toprated h3,
.libraryhome .videocontainer-small.latest h3 {
  font-size: 24px;
  line-height: 32px;
  text-transform: none;
  color: #222 !important;
  font-weight: normal;
  initial-letter: normal;
  border: 0;
}
.libraryhome .videocontainer-small.toprated h3 a,
.libraryhome .videocontainer-small.latest h3 a {
  background: none !important;
  color: #6022A6 !important;
  text-transform: none !important;
  font-size: 16px;
}

.videocontainer-small .smallvideocontainer {
  border-radius: 8px;
  padding-top: 0 !important;
}
.videocontainer-small .smallvideocontainer:hover {
  background: #F4F1F8 !important;
}
.videocontainer-small .smallvideocontainer .smallvideocontent h5 {
  height: 75px !important;
}
.videocontainer-small .smallvideocontainer .smallvideocontent a {
  color: #222;
  line-height: 24px;
}
.videocontainer-small .smallvideocontainer .smallvideocontent a.thumb {
  margin-bottom: 16px !important;
}
.videocontainer-small .smallvideocontainer .smallvideocontent a:hover {
  text-decoration: none;
}

.videocontainer-small .views {
  font-weight: normal;
}

#box_content .mainvideo .videocontent {
  background: none;
  padding: 0;
  margin-top: 32px;
  border-bottom: 0;
}
#box_content .mainvideo .videocontent h2 {
  color: #222 !important;
  letter-spacing: 0 !important;
  line-height: 32px;
}
#box_content .mainvideo .videocontent p {
  font-size: 18px;
  color: #5B5B67;
}
#box_content .mainvideo .videocontent .views {
  letter-spacing: 0;
  color: #6022A6;
}

.videocontainer-small .smallvideocontainer .smallvideocontent img.free,
.videocontainer-medium .item .videoimg img.free,
.video-container img.free {
  position: absolute;
  top: 10px;
  left: 0px;
  width: 60px;
  height: 20px;
  border-radius: 0 !important;
  /*top: -2px;
   left: -2px;
   width: 50px;
   height: 50px;*/
}

#box_content .lastviewed header {
  padding: 0;
  height: auto;
  overflow: unset;
  padding: 0;
  background: none;
}
#box_content .lastviewed header h3 {
  text-transform: none;
  line-height: 24px;
  color: #222;
  font-weight: normal;
  margin-bottom: 0;
}
#box_content .lastviewed header h3 a {
  background: none;
  padding-right: 0;
  text-transform: none;
  font-size: 16px;
  color: #6022A6;
  line-height: 24px;
}

#box_content .lastviewed {
  padding-left: 24px;
}
@media (max-width: 767px) {
  #box_content .lastviewed {
    padding-left: 15px;
  }
}

#box_content .lastviewed .video-container {
  background: none !important;
  padding: 0;
}
#box_content .lastviewed .video-container .nopadding {
  width: 150px;
}
#box_content .lastviewed .video-container .videocontent {
  width: calc(100% - 166px); /* 150 + 16 */
}
#box_content .lastviewed .video-container .row {
  padding: 0;
  border: 0;
  margin: 16px 0 0 0;
}
#box_content .lastviewed .video-container .row img, #box_content .lastviewed .video-container .row .ratio {
  border-radius: 8px;
}
#box_content .lastviewed .video-container .row img.iconType, #box_content .lastviewed .video-container .row .ratio.iconType {
  border-radius: 0;
}
#box_content .lastviewed .video-container .row .videocontent {
  padding-left: 16px;
  padding-right: 0;
}
#box_content .lastviewed .video-container .row .videocontent h5 {
  color: #222 !important;
  line-height: 24px;
}

#box_content .videocontainer-medium {
  border-top: 1px solid #C7C8CF;
  padding-top: 48px;
  margin-top: 48px !important;
}
#box_content .videocontainer-medium .viewslikescontainer {
  width: 60%;
}
#box_content .videocontainer-medium .filetyp {
  width: 40%;
}
#box_content .videocontainer-medium .item {
  position: relative;
}
#box_content .videocontainer-medium .item .videocontent {
  background: none;
  padding: 16px 0 0 0;
}
#box_content .videocontainer-medium .item .videocontent .filetyp img {
  vertical-align: unset;
}
#box_content .videocontainer-medium .item .videocontent a {
  height: unset;
  border-color: #C7C8CF;
  margin-bottom: 8px;
}
#box_content .videocontainer-medium .views {
  color: #222;
  font-size: 16px;
  line-height: 1em;
}
#box_content .videocontainer-medium .likecount {
  line-height: 1em;
}
#box_content .videocontainer-medium h5 {
  font-size: 18px !important;
  font-style: normal;
  font-weight: 400;
  line-height: 22px;
  color: #222 !important;
  overflow: auto;
  height: 96px;
}
#box_content .videocontainer-medium h3 {
  text-transform: none;
  border-bottom: 0;
  font-weight: normal;
  letter-spacing: initial;
  font-size: 24px;
  line-height: 32px;
}

.gallerybox:after {
  content: ".";
  clear: both;
  display: block;
  visibility: hidden;
  height: 0px;
}

a.btnMemberImages:hover {
  text-decoration: none;
}

.clear {
  clear: both;
}

ul.admin li a.active, .info,
.pagination > li > a, .pagination > li > span {
  color: #6022A6;
}

.pagination > .active > a, .pagination > .active > a:focus, .pagination > .active > a:hover,
.pagination > .active > span, .pagination > .active > span:focus, .pagination > .active > span:hover {
  background: #6022A6;
  color: #fff !important;
}

.pagination > .disabled > a, .pagination > .disabled > a:focus, .pagination > .disabled > a:hover, .pagination > .disabled > span, .pagination > .disabled > span:focus, .pagination > .disabled > span:hover {
  color: #5B5B67;
}

/*
TABS
*/
.club_1 #ctabs li a {
  padding: 0 24px 0 24px;
}

#ctabs {
  margin: 0;
  list-style: none;
  display: block;
  overflow: hidden;
  padding: 0;
}
#ctabs li {
  float: left;
}
#ctabs li a {
  background: #FBF9FD;
  color: #222;
  height: 50px;
  display: block;
  line-height: 50px;
  margin-right: 2px;
  padding: 0 30px 0 30px;
  text-decoration: none;
  -moz-transition: all 0.2 linear;
  -webkit-transition: all 0.2 linear;
  -o-transition: all 0.2 linear;
  transition: all 0.2 linear;
  border-top-right-radius: 8px;
  border-top-left-radius: 8px;
}
#ctabs li:last-child a {
  margin-right: 0;
}
#ctabs li a:hover {
  background: #6022A6;
  color: #fff;
  text-decoration: none;
  -moz-transition: all 0.2 linear;
  -webkit-transition: all 0.2 linear;
  -o-transition: all 0.2 linear;
  transition: all 0.2 linear;
}
#ctabs a.active, #ctabs #ctabs a.active:hover {
  background: #6022A6;
  color: #fff;
}
#ctabs.clinical-expertise li a {
  line-height: 15px;
  width: 160px;
  padding: 10px 15px 0 15px;
  height: 50px;
}

.tbox {
  background: #FBF9FD;
  display: none;
  clear: both;
  padding: 50px 30px 30px 30px;
  border-radius: 8px;
}

#box_1 {
  display: block;
}

#static .ul {
  margin: 0 0 30px 0;
  list-style-type: none;
}

/*#static .tbox ul, */
#static .grid ul {
  padding-left: 0;
}

#static .ul li {
  padding: 0 20px 0 30px;
  background: url("/src/img/checked.svg") 0 10px no-repeat;
  margin-bottom: 18px;
  list-style-type: none;
}
#static .ul li ul {
  margin-top: 10px;
}
#static .ul li ul li {
  margin-bottom: 10px;
}
#static .ul li:last-child {
  margin-bottom: 0;
}
#static .ul li:before {
  content: "";
}

#static .tbox .left {
  width: 48%;
  float: left;
  margin-right: 4%;
}

#static .tbox .right {
  width: 48%;
  float: left;
  text-align: left;
}

/*
#static h2 {
  font-size: 30px;
}*/
#static img {
  margin-bottom: 24px;
}

#static .icon_checkprobe img,
#static .list .item img {
  margin-bottom: 0;
}

#static .gallerybox {
  background: #F4F1F8;
  border-radius: 8px;
  width: 100%;
  padding: 12px;
  margin-right: 0;
  margin: 0 0 18px 0;
  font-size: 11px;
  /*-webkit-transition: background 200ms ease-in-out;
  -moz-transition: background 200ms ease-in-out;
  -o-transition: background 200ms ease-in-out;
  -transition: background 200ms ease-in-out;*/
  border: 1px solid #6022A6;
}
@media (max-width: 559px) {
  #static .gallerybox {
    text-align: center;
  }
}
#static .gallerybox .intro-summary-content h5 {
  font-size: 14px;
  line-height: 20px;
  color: #222;
  font-family: SourceSansProSemiBold;
}
#static .gallerybox .intro-summary-content p {
  font-size: 14px;
  line-height: 20px;
  color: #222;
}
@media (max-width: 559px) {
  #static .gallerybox .intro-summary-content {
    display: block;
    margin-top: 10px;
    text-align: center;
  }
}

#static .gallerybox:hover {
  background: #F4F1F8;
}

#static .gallerybox img {
  float: left;
  margin: 0 12px 0 0;
}
@media (max-width: 559px) {
  #static .gallerybox img {
    float: none;
    margin-right: 0;
  }
}

#static .gallerybox h5 {
  margin-bottom: 10px;
}

#static .gallerybox a.fancybox {
  position: relative;
  display: block;
  float: left;
  margin-right: 10px;
}
@media (max-width: 559px) {
  #static .gallerybox a.fancybox {
    float: none;
    margin-right: 0;
    display: inline-block;
  }
}

#static .gallerybox a img {
  float: none;
  margin: 0;
}

.zoom {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 32px;
  height: 32px;
  margin: 0;
}

.zoomparent {
  display: block;
  position: relative;
}

/*******************************************************************************************************************
NEWS LIST
*******************************************************************************************************************/
.box_myvoluson .list .item a.bottom,
.tagbox .list .item a {
  position: unset;
}

.list {
  /*display: flex;
  flex-wrap: wrap;*/
  display: grid;
  gap: 48px 24px;
  grid-template-columns: 1fr 1fr 1fr 1fr;
}
.list img.play {
  display: none;
}
.list a.popupVideo {
  position: relative !important;
  display: block;
}
.list a.popupVideo::after {
  position: absolute;
  top: 50%;
  left: 50%;
  margin-left: -28px;
  margin-top: -28px;
  width: 56px;
  content: unset;
}
.list a.popupVideo::before {
  content: " ";
  background: url(/src/img/play-button-blue-small.svg) no-repeat;
  position: absolute;
  bottom: 0px;
  left: 0;
  width: 36px;
  height: 36px;
  border-radius: 4px;
  z-index: 10;
}
.list a.popupVideo.noicon {
  position: absolute;
}
.list a.popupVideo.noicon::before {
  content: unset;
}
.list .item {
  position: relative;
  -moz-transition: all 0.5s linear;
  -webkit-transition: all 0.5s linear;
  -o-transition: all 0.5s linear;
  transition: all 0.5s linear;
}
.list .item.active .videocontent {
  background: none;
}
.list .item.active .videocontent h5 {
  color: #fff !important;
}
.list .item a {
  display: block;
  overflow: hidden;
  -moz-transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.list .item a:hover {
  text-decoration: none;
  color: #512286;
}
.list .item a.icon-caret {
  display: inline-block;
}
.list .item a.linkcaret {
  padding-right: 20px;
  background: red url(/src/img/icons/caret-right.svg) no-repeat center right;
}
.list .item a.button {
  color: #fff;
}
.list .item a.thumb {
  display: block;
}
.list .item img.thumb, .list .item .thumb img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  object-position: center;
  border-radius: 8px;
}
.list .item h2 {
  font-size: 22px;
  line-height: 24px;
  margin-bottom: 15px;
  height: 48px;
  overflow: hidden;
}
.list .item h3 {
  font-size: 20px;
  line-height: 24px;
  margin-bottom: 8px;
}
.list .item h3 a {
  color: #222;
}
.list .item h3 a:hover {
  color: #222;
}
.list .item a[data-analytics-link-type="Page-Link latestnews"],
.list .item a[data-analytics-link-type="Page-Link localnews"],
.list .item a[data-analytics-link-type="Page-Link posters"],
.list .item a[data-analytics-link-type="Page-Link webinars"],
.list .item a[data-analytics-link-type="Page-Link tags/Slider"],
.list .item a[data-analytics-link-type="Page-Link overview"],
.list .item a[data-analytics-link-type="Page-Link tags/Online"],
.list .item a[data-analytics-link-type="Page-Link versana-essential"],
.list .item a[data-analytics-link-type="Page-Link versana-premier"],
.list .item a[data-analytics-link-type="Page-Link versana-balance"],
.list .item a[data-analytics-link-type="Page-Link versana-active"],
.list .item a[data-analytics-link-type="Page-Link versana-family"],
.list .item a[data-analytics-link-type="Page-Link remote-support"],
.list .item a[data-analytics-link-type="Page-Link white-papers"],
.list .item a[data-analytics-link-type="Page-Link clinical-cases"],
.list .item a[data-analytics-link-type="Page-Link care-area-solution"],
.list .item a[data-analytics-link-type="Page-Link product-information"],
.list .item a[data-analytics-link-type="Page-Link quickcards"],
.list .item a[data-analytics-link-type="Page-Link partner-portal/news"],
.list .item a[data-analytics-link-type="Page-Link brochures"],
.list .item a[data-analytics-link-type="Page-Link probe-guides"],
.list .item a[data-analytics-link-type="Page-Link courses"],
.list .item a[data-analytics-link-type="Page-Link user-manuals"],
.list .item a[data-analytics-link-type="Page-Link application-guides"],
.list .item a[data-analytics-link-type="Page-Link cases-papers"],
.list .item a[data-analytics-link-type="Page-Link whitepapers"],
.list .item a[data-analytics-link-type="Page-Link console-and-probe-care"],
.list .item a[data-analytics-link-type="Page-Link 4d-view"],
.list .item a[data-analytics-link-type="Page-Link quick-cards"],
.list .item a[data-analytics-link-type="Page-Link imagequality"],
.list .item a[data-analytics-link-type="Page-Link tricefy"],
.list .item a[data-analytics-link-type="Page-Link tricefy_ru"],
.list .item a[data-analytics-link-type="Page-Link productivity"],
.list .item a[data-analytics-link-type="Page-Link ultrasound-it-v1"],
.list .item a[data-analytics-link-type="Page-Link ultrasound-it_ru_v1"],
.list .item a[data-analytics-link-type="Page-Link clinical-expertise"],
.list .item a[data-analytics-link-type="Page-Link clinical-expertise_ru"],
.list .item a[data-analytics-link-type="Page-Link voluson-e10"],
.list .item a[data-analytics-link-type="Page-Link voluson-vs10"],
.list .item a[data-analytics-link-type="Page-Link generalnews"],
.list .item a[data-analytics-link-type="Page-Link user-guide-grady"],
.list .item a[data-analytics-link-type="Page-Link teaching-atlas"],
.list .item a[data-analytics-link-type="Page-Link breast-magazine"],
.list .item a[data-analytics-link-type="Page-Link clinical-image-gallery"],
.list .item a[data-analytics-link-type="Page-Link publications"],
.list .item a[data-analytics-link-type="Page-Link service"],
.list .item a[data-analytics-link-type="Page-Link product-specifications"],
.list .item a[data-analytics-link-type="Page-Link scanning-videos"],
.list .item a[data-analytics-link-type="Page-Link techtalk-webinars"],
.list .item a[data-analytics-link-type="Page-Link product-videos"],
.list .item a[data-analytics-link-type="Page-Link physicians"],
.list .item a[data-analytics-link-type="Page-Link media"],
.list .item a[data-analytics-link-type="Page-Link patient-education"], .list .item.searchItem a.bottom {
  position: unset;
}
.list .item .teaser {
  font-size: 18px;
  line-height: 22px;
  color: #5B5B67;
  margin-bottom: 32px;
}
.list .item .text {
  padding-top: 16px;
  margin-bottom: 16px;
  -moz-transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.list .item .text.gallerytext, .list .item .text.text-box-gallery {
  display: flex;
  flex-direction: column;
  left: 0;
  margin: 0 0 104px 0;
}
.list .item .text a[data-analytics-link-type="Page-Link geimagesloops"].icon-caret,
.list .item .text a[data-analytics-link-type="Page-Link clinicalimages"].icon-caret {
  padding-right: 0;
  background: none;
}
.list .item .text.text-box-gallery .teaser {
  margin-bottom: 0 !important;
}
.list .item .desc:first-child {
  padding: 0 0 30px 0;
  background: red;
}
.list .item .desc:first-child a {
  background-image: none;
}
.list .item .desc:first-child i {
  font-style: normal;
  color: #5B5B67;
}

.items1 .item {
  width: 98%;
  margin: 0 1% 50px 1%;
}

.items2 .item {
  width: 47%;
  margin: 0 3% 50px 0;
}

.items3 .myvolusonright {
  margin-bottom: 0;
}

/*
.items3 .item {
  width: 31%;
  margin: 0 2.2% 50px 0;
}*/
.type1, .type3 {
  background: linear-gradient(rgba(98, 89, 154, 0.2), rgba(98, 89, 154, 0));
  -moz-transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.type1 a.button, .type3 a.button {
  background: rgb(98, 89, 154);
  color: #fff;
}
.type1:hover, .type3:hover {
  background-color: rgba(98, 89, 154, 0.5);
  box-shadow: 0 0 10px 0 rgba(98, 89, 154, 0.4);
  -moz-transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.type1:hover a, .type1:hover h2, .type1:hover h3, .type1:hover a:visited, .type3:hover a, .type3:hover h2, .type3:hover h3, .type3:hover a:visited {
  color: #fff;
}
.type1:hover li:before, .type3:hover li:before {
  color: #fff;
}

.type2, .type5 {
  background: linear-gradient(rgba(169, 174, 180, 0.2), rgba(169, 174, 180, 0));
  -moz-transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.type2 a.button, .type5 a.button {
  background: rgb(169, 174, 180);
  color: #fff;
}
.type2:hover, .type5:hover {
  background-color: rgba(169, 174, 180, 0.5);
  box-shadow: 0 0 10px 0 rgba(169, 174, 180, 0.4);
  -moz-transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.type4 {
  background: linear-gradient(rgba(106, 122, 145, 0.2), rgba(106, 122, 145, 0));
}
.type4 a.button {
  background: rgb(106, 122, 145);
  color: #fff;
}
.type4:hover {
  background-color: rgba(106, 122, 145, 0.4);
  box-shadow: 0 0 10px 0 rgba(106, 122, 145, 0.4);
}

.type44 {
  background: linear-gradient(rgba(188, 113, 92, 0.2), rgba(188, 113, 92, 0));
}
.type44 a.button {
  background: rgb(188, 113, 92);
  color: #fff;
}
.type44:hover {
  background-color: rgba(188, 113, 92, 0.4);
  box-shadow: 0 0 10px 0 rgba(188, 113, 92, 0.4);
}

.darkBox {
  background: #F4F1F8;
  padding: 36px 32px;
  border-radius: 16px;
}
.darkBox ul:last-child {
  margin-bottom: 0;
}
.darkBox ul li:last-child {
  margin-bottom: 0;
}

.center {
  text-align: center;
}

.button.bottom {
  position: absolute;
  bottom: 20px;
  left: 20px;
}

.bottom {
  display: block;
  position: absolute;
  bottom: 0px;
}
.bottom.right {
  right: 20px;
}
.bottom.left {
  left: 20px;
}

.readmore {
  position: absolute;
  bottom: 10px;
  right: 20px;
  width: 20px;
  height: 20px;
  text-align: center;
  line-height: 20px;
}

#newsbox ul, .newsbox ul {
  display: flex;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
}
#newsbox ul li, .newsbox ul li {
  padding: 10px;
  -webkit-transition: 0.3s ease-out;
  transition: 0.5s ease-out;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
}
#newsbox ul li:hover, .newsbox ul li:hover {
  background: #eee;
}
#newsbox ul li .thumb, .newsbox ul li .thumb {
  margin-bottom: 10px;
  display: block;
}
#newsbox ul li .thumb img, .newsbox ul li .thumb img {
  width: 100%;
}
#newsbox ul li .download, .newsbox ul li .download {
  margin-bottom: 10px;
  font-size: 13px;
  text-align: center;
}
#newsbox ul.news3 li, .newsbox ul.news3 li {
  width: 32%;
}
#newsbox ul.news3 li:nth-child(3n+2), .newsbox ul.news3 li:nth-child(3n+2) {
  margin: 0 2% 20px 2%;
}
#newsbox ul.news4 li, .newsbox ul.news4 li {
  width: 25%;
}
#newsbox.gallery li .text, .newsbox.gallery li .text {
  display: flex;
  flex: 1;
  align-items: flex-end;
}

.newsdetail {
  margin-bottom: 100px;
}

.flexcenter {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.flexcenter p:last-child {
  margin-bottom: 0;
}
.flexcenter .img-bg-white {
  display: contents;
}

img.news {
  float: right;
  margin: 0 0 30px 30px;
  width: 400px;
  border-radius: 8px;
}

.pr0 {
  padding-right: 0;
}

.pl0 {
  padding-left: 0;
}

/*
.pdf {
  position: relative;
  line-height: 20px;

  &:before {
    font-size: 16px;
    display: inline-block;
    padding-left: 8px;
    color: #fff;
    width: 30px;
    height: 30px;
    line-height: 30px;
    border-radius: 15px;
    //color: $primaryColor;
    background: $bgBtn2;
    content: "\f1c1";
    font-family: FontAwesome;
    font-style: normal;
    font-weight: normal;
    text-decoration: inherit;
    padding-right: 5px;
  }
}

*/
/*******************************************************************************************************************
NEWS DETAIL
*******************************************************************************************************************/
#boxIcons {
  width: 36px;
  float: right;
  position: relative;
  margin-right: -80px;
  z-index: 1;
}
#boxIcons #socialIcons {
  position: absolute;
  border-left: 1px solid #C7C8CF;
}
#boxIcons #socialIcons.sticky {
  position: fixed;
  width: 36px;
  top: 103px;
  z-index: 100;
}
#boxIcons ul {
  list-style: none;
  padding: 0;
}
#boxIcons li {
  display: flex;
  height: 32px;
  width: 32px;
  text-align: center;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  color: #6022A6;
  cursor: pointer;
  white-space: nowrap;
  margin: 8px;
}
#boxIcons li img {
  margin-bottom: 0px;
}
#boxIcons li.btnBookmarked, #boxIcons li.btnLiked {
  background: #6022A6;
  color: #fff;
}
#boxIcons li.btnBookmarked:hover, #boxIcons li.btnLiked:hover {
  background: #6022A6;
  color: #fff;
}
#boxIcons a {
  display: block;
  /* width: 36px;
   height: 32px;
   line-height: 32px;

   @include transition(0.2s);*/
  /*
      &:hover {
        background: linear-gradient(to right, #d1d1d1, #dddddd);
        @include transition(0.2s);
      }

      &.active {

      }*/
}

.popupVideo, .cookieCheck {
  position: relative;
}

.play {
  width: 64px;
  height: 64px;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-left: -32px;
  margin-top: -32px;
}

.modal-backdrop.fade {
  display: none;
}

.liveBox {
  margin-bottom: 20px;
}
.liveBox img {
  width: 100%;
}
.liveBox img.play {
  width: 64px;
}

.popover-content {
  width: 150px;
}

a.author, a.author:hover {
  text-decoration: underline;
}

.fa-thumbs-up.btnLike {
  cursor: pointer;
}

.likebox {
  display: flex;
}

.viewslikescontainer .likecontainer {
  font-size: 13px;
  font-weight: bold;
  margin-top: 3px;
  display: flex;
  align-items: center;
  gap: 5px;
}

.gallerylikebox {
  width: 100%;
  position: absolute;
  bottom: 40px;
  padding: 0;
  left: 0px;
  margin: 0;
}
.gallerylikebox .views {
  border-top: 1px solid #C7C8CF;
  border-bottom: 1px solid #C7C8CF;
  padding: 5px 0;
}
.gallerylikebox .views .viewcount {
  line-height: 1em;
  margin-right: 5px;
}
.gallerylikebox .likecontainer {
  border-top: 1px solid #C7C8CF;
  border-bottom: 1px solid #C7C8CF;
  text-align: right;
  padding: 5px 0;
}
.gallerylikebox .likecontainer .likecount {
  line-height: 1em;
  margin-left: 5px;
  color: #6022A6;
}

.fr {
  float: right;
}

/*******************************************************************************************************************
Detail Tutorials
*******************************************************************************************************************/
.mainvideo .likecontainer .btn-like {
  border-top-left-radius: 4px !important;
  border-bottom-left-radius: 4px !important;
  border: 1px solid #6022A6;
  border-right: 0 !important;
}

.mainvideo .likecontainer .likecount {
  border-top-right-radius: 4px !important;
  border-bottom-right-radius: 4px !important;
  background-color: #FBF9FD !important;
  border: 1px solid #C7C8CF;
  color: #222;
  font-weight: normal;
  border-left: 0;
  font-size: 16px;
  line-height: auto !important;
}

/*******************************************************************************************************************
FOOTER
*******************************************************************************************************************/
#box_footer {
  background: #F4F1F8;
  position: relative;
  z-index: 0;
}

#footer, #footer2 {
  clear: both;
  padding: 32px 0pt;
  color: #5B5B67;
  font-size: 16px;
}

#footer {
  max-width: 1180px;
  padding-left: 20px;
  padding-right: 20px;
  margin: 0 auto;
}
#footer .flex {
  display: grid !important;
  grid-template-columns: 1fr 200px;
  margin-bottom: 24px;
}
#footer .footerNav {
  text-align: left;
  padding: 0;
  margin-right: 100px;
  margin-bottom: 0;
}
#footer .footerNav li {
  margin-bottom: 8px;
}

#footer ul {
  display: inline-block;
}

#footer ul.admin-footer {
  display: none;
}

#footer li {
  list-style: none;
  display: inline-block;
  margin-right: 10px;
  padding-right: 10px;
}

#footer li.last {
  border-right: none;
}

#footer a {
  color: #5B5B67;
  padding: 0;
}
#footer a:hover {
  color: #6022A6;
  text-decoration: none;
}

/*******************************************************************************************************************
SPECIALS
*******************************************************************************************************************/
#button_iamu2 {
  position: absolute;
  bottom: 32px;
  width: 115px;
  /*135px;*/
  height: 45px;
  right: 135px;
}

#button_apple2 {
  position: absolute;
  bottom: 32px;
  width: 115px;
  height: 45px;
  right: 10px;
}

#button_iamu2 img, #button_apple2 img {
  width: 115px;
}

.clinicalthumbmobile {
  display: none;
}

.iamu-ipad {
  display: none;
}

.iamu-ipad a {
  display: inline-block;
  margin: 5px;
}

.radio, .checkbox {
  display: inline;
}

.btn_contact_1, .btn_contact_2 {
  background: url("/src/img/btn_contact_2.jpg");
  display: block;
  width: 380px;
  height: 49px;
  padding: 5px 15px 5px 65px;
  font-weight: bold;
  margin-bottom: 20px;
  vertical-align: middle;
}

.btn_contact_1:hover, .btn_contact_2:hover {
  text-decoration: none;
}

.btn_contact_1 {
  line-height: 40px;
  background: url("/src/img/btn_contact_1.jpg");
}

#btnPlusBox {
  display: none;
  position: absolute;
  right: -136px;
  top: 0;
  width: 160px;
  z-index: 100;
  padding-top: 35px;
}

#btnPlusBox .likecount {
  width: 30px;
  float: right;
  text-align: right;
  padding-right: 5px;
}

#btnPlusBox ul {
  list-style: none;
  padding: 0;
  background: #fff;
  box-shadow: 3px 3px 6px -3px #000;
  border-top: 1px solid #eee;
}

#btnPlusBox ul li {
  margin: 0;
  line-height: 30px;
  background: url("/data/images/btnPlusBox.png") no-repeat;
  padding: 0;
  border-bottom: 1px solid #eee;
}

#btnPlusBox ul li a {
  display: block;
  line-height: 30px;
  color: #666;
}

#btnPlusBox ul li a:hover {
  text-decoration: none;
}

#btnPlusBox ul li i {
  width: 24px;
  color: #fff;
  text-align: center;
  margin-right: 10px;
}

#btnPlusBox ul li em {
  font-style: normal;
}

.btnLike.active, .btnBookmark.active, .btnBookmarked.active {
  cursor: pointer;
}

/*
.btnLiked {
  color: #808080;
}*/
#btnPlusBox ul li.btnLiked, #btnPlusBox ul li.btnBookmarked {
  background-repeat: repeat-x;
  color: #fff;
}

.fancyInline .fancybox-skin {
  border-radius: 0;
  padding: 30px;
}

.fancyInline h1 {
  font-size: 35px;
  padding-bottom: 20px;
}

.fancyInline .fancybox-skin img.contact {
  width: 330px;
  margin-left: 50px;
}

.fancyInline .fancybox-close {
  top: 0;
  right: 0;
  background-image: url("/src/img/fancybox_sprite3.png");
}

.form-group .value {
  padding-top: 7px;
}

#boxContact {
  width: 720px;
  height: 400px;
  overflow: auto;
}

#boxContact h1 {
  font-size: 35px;
  padding-bottom: 20px;
}

#imgContact {
  width: 330px;
  margin-left: 50px;
  margin-bottom: 20px;
  float: right;
}

.parsley-required {
  color: red;
  font-size: 12px;
}

.notification.sent {
  color: #ccc;
}

.notification.active {
  color: #2b64c2;
  cursor: pointer;
}

#header_top {
  overflow: visible;
}

.worldwide i {
  font-size: 18px;
  margin-top: 3px;
  padding-left: 0;
}

#boxClubselector {
  position: relative;
  left: 40px;
  top: 4px;
  background: #fff;
}

#boxClubselector li {
  padding-top: 5px;
}

#clubselector {
  position: relative;
  z-index: 10;
  text-align: right;
}

#clubselector span {
  cursor: pointer;
}

#clubselector ul {
  display: none;
}

#clubselector:hover ul {
  text-align: left;
  display: block;
  padding-top: 2px;
  border: 1px solid #ddd;
  border-top: 0;
  box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.2);
}

#clubselector:hover ul li {
  display: block;
  background: #fff;
  float: none;
  line-height: 20px;
  font-size: 13px;
}

#clubselector:hover ul li:last-child {
  padding-bottom: 5px;
}

#clubselector:hover ul li b {
  padding: 5px 20px 5px 10px;
  font-weight: normal;
}

#clubselector:hover ul li a {
  font-size: 13px;
  padding: 5px 20px 5px 10px;
  text-decoration: none;
}

#clubselector:hover ul li a:hover {
  color: #6022A6;
}

#clubselector:hover ul li a i {
  font-size: 12px;
  padding-right: 3px;
}

ul.news.library {
  background: #f0f0f0;
}

ul.news.library > li {
  margin: 0;
  width: 290px;
  background: #f0f0f0;
}

ul.news.library > li:hover {
  background: #e5e5e5;
}

ul.news.library .thumb {
  width: 100%;
  background: none;
  text-align: center;
  border: 0;
  background: #d4d4d4;
  background: -webkit-linear-gradient(#f7f7f7, #d4d4d4);
  background: -o-linear-gradient(#f7f7f7, #d4d4d4);
  background: -moz-linear-gradient(#f7f7f7, #d4d4d4);
  background: linear-gradient(#f7f7f7, #d4d4d4);
  padding-top: 20px;
  box-shadow: inset 0 8px 8px -8px #666;
}

ul.news.library .thumb img {
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

ul.news.library .text {
  padding: 0 15px;
}

ul.news.library h3 {
  font-size: 14px;
  margin-bottom: 5px;
}

.changeallpoles {
  background: #808080;
  border-radius: 3px;
  width: 12px;
  height: 12px;
  display: inline-block;
  line-height: 12px;
  text-align: center;
  cursor: pointer;
  color: #fff;
}

.siteid {
  font-weight: bold;
  color: #666;
  font-size: 20px;
}

#memberType {
  text-align: center;
}

#memberType img {
  width: 100%;
  border-radius: 5px;
  border: 1px solid #aaa;
  margin-bottom: 20px;
}

#memberType a {
  width: 100%;
  height: 55px;
}

#memberType a#btnNoncustomer {
  line-height: 45px;
}

#memberType .infotext {
  padding-top: 20px;
  text-align: center;
}

@media (max-width: 1023px) {
  .iamu-pc {
    display: none;
  }
  .iamu-ipad {
    display: block;
  }
}
#infoline {
  height: 40px;
  line-height: 40px;
  color: #333;
  position: relative;
  z-index: 10000;
}
#infoline .text {
  text-align: center;
  width: 960px;
  margin: 0 auto;
  max-width: 100%;
  padding: 0 10px;
}

#cookieinfo {
  background: #525252;
  border-top: 2px solid #89a2ba;
  padding: 100px 0;
  line-height: 20px;
  color: #fff;
  position: fixed;
  bottom: 0;
  z-index: 10000;
  width: 100%;
}
#cookieinfo .text {
  width: 1180px;
  margin: 0 auto;
  max-width: 100%;
  padding: 0 10px;
}
#cookieinfo .buttons {
  padding-top: 5px;
  float: right;
  text-align: right;
}
#cookieinfo .desc {
  float: left;
}
#cookieinfo .desc a {
  color: #eee;
  text-decoration: underline;
}

#infoline {
  background: #feef00;
  font-weight: bold !important;
}

#loginModal, #cookieModal {
  font-size: 18px;
  line-height: 28px;
}
#loginModal #formLogin, #cookieModal #formLogin {
  padding-bottom: 32px;
}
#loginModal a:hover, #cookieModal a:hover {
  text-decoration: none;
}
#loginModal h4, #cookieModal h4 {
  font-size: 24px;
}
#loginModal .modal-header, #cookieModal .modal-header {
  border: none;
  padding: 32px;
}
#loginModal .modal-body, #cookieModal .modal-body {
  padding: 0;
  border-radius: 16px;
  overflow: hidden;
}
#loginModal .modal-body .ssologinbox, #loginModal .modal-body .clubloginbox, #cookieModal .modal-body .ssologinbox, #cookieModal .modal-body .clubloginbox {
  padding: 32px;
  padding-top: 16px;
}
#loginModal .modal-body .ssologinbox div:last-child, #loginModal .modal-body .clubloginbox div:last-child, #cookieModal .modal-body .ssologinbox div:last-child, #cookieModal .modal-body .clubloginbox div:last-child {
  background: #F4F1F8;
  margin: -32px;
  margin-top: 0px;
  padding: 32px !important;
}
#loginModal .modal-body .ssologinbox div:last-child.warning, #loginModal .modal-body .clubloginbox div:last-child.warning, #cookieModal .modal-body .ssologinbox div:last-child.warning, #cookieModal .modal-body .clubloginbox div:last-child.warning {
  background: none !important;
  text-align: left;
  padding: 22px !important;
  padding-top: 16px !important;
}
#loginModal .modal-dialog, #cookieModal .modal-dialog {
  width: 400px !important;
  max-width: 95%;
}
#loginModal .modal-content, #cookieModal .modal-content {
  border-radius: 16px;
  width: 100%;
}
#loginModal .modal-footer, #cookieModal .modal-footer {
  display: none;
}
#loginModal hr, #cookieModal hr {
  border: none;
  margin: 16px;
}

.mobile {
  display: none;
}

.cookieswitch {
  opacity: 0.5;
  float: right;
  font-size: 28px;
}
.cookieswitch.marketing {
  opacity: 1;
  cursor: pointer;
}
.cookieswitch.marketing.fa-toggle-on {
  color: green;
}
/*******************************************************************************************************************
TIPS & TRICKS
*******************************************************************************************************************/
#askexpert_head {
  color: #666;
  /*background: url("/src/img/dotline.gif") repeat-x 0 bottom;*/
  border-bottom: 1px solid #E5E5E5;
  padding-bottom: 20px;
  margin-bottom: 20px;
}

.whitebox {
  border: 1px solid #ccc;
  margin-bottom: 1em;
  padding: 10px;
  text-align: left;
}

.bluebox {
  background: #6022A6;
  color: #FFFFFF;
  margin-bottom: 10px;
  padding: 16px;
  border-radius: 8px;
}
.bluebox:last-child {
  margin-bottom: 0;
}

#askexpert_head h1 {
  background: 0;
}

.bluebox .button {
  float: right;
}

.bluebox textarea {
  width: 100%;
  height: 100px;
  margin-bottom: 5px;
}

.bluebox option {
  padding: 1px;
}

#askexpert_most_viewed {
  display: flex;
  padding: 0;
  margin: 0;
}
#askexpert_most_viewed #askexpert_most_viewed_cnt {
  background: #F4F1F8;
  border-radius: 8px;
  padding: 16px;
}

#askexpert_faq ul li {
  padding: 10px 0;
}

#askexpert_faq ul li h3, .faqs h3 {
  margin: 3px 0 5px 0;
}

.box_detail #askexpert_faq ul li {
  padding: 0;
}

#askexpert_faq #detail h2 {
  border-bottom: 1px solid #ccc;
  padding-bottom: 5px;
  margin-bottom: 10px;
}

#askexpert_faq #detail p#units {
  /* border-top: 1px solid $grey500;
   border-bottom: 1px solid $grey500;*/
  padding-bottom: 10px;
}
#askexpert_faq #detail p#units b {
  color: #222;
}

#askexpert_faq #detail .button {
  display: block;
}

#askexpert_question {
  background: #eeeeee;
  border: 1px solid #e5e5e5;
  padding: 10px;
  margin-bottom: 10px;
}

#askexpert_question h2 {
  font-size: 14px;
  padding: 5px 0;
}

#askexpert_rightbox h2 {
  color: #fff;
}

#askexpert_question textarea {
  width: 560px;
  height: 100px;
  margin: 10px 0;
}

img.header {
  width: 120px;
  height: 120px;
  margin-right: 20px;
  vertical-align: top;
}

.mostviewedfaq {
  background: #F4F1F8;
  border-radius: 8px;
  padding: 16px;
}

.faq {
  margin-bottom: 20px;
}
.faq p {
  margin-bottom: 0;
}

.boxExc {
  background: #f5f5f5;
  border-radius: 25px;
}

.boxExcCnt {
  padding: 20px;
}

.boxExcCnt h3 {
  text-align: center;
}

#iamuinfohome {
  background: url("/src/img/banner_start_2.png") no-repeat 0 0;
  width: 960px;
  height: 290px;
  position: relative;
  margin: 30px auto;
}

#iamuinfohome p {
  width: 350px;
  position: absolute;
  top: 60px;
  left: 340px;
}

/*******************************************************************************************************************
ADMIN
*******************************************************************************************************************/
#admin {
  padding-top: 30px;
}
#admin h1 {
  margin: 0;
  font-size: 30px;
  line-height: 32px;
}
#admin h2 {
  margin: 20px 0;
  font-size: 26px;
  line-height: 28px;
}
#admin table.table tbody td {
  padding: 8px;
}
#admin select.form-control {
  padding: 6px 12px;
}

/*******************************************************************************************************************
USER SETTINGS
*******************************************************************************************************************/
.boxUserdata {
  overflow: hidden;
  position: relative;
  width: 100%;
  margin-bottom: 50px;
  min-height: 150px;
}

.boxUserdata .leftBox {
  width: 151px;
  height: 100%;
  min-height: 150px;
  position: absolute;
  left: 0;
  top: 0;
}

.mce-tinymce {
  width: auto !important;
}

.boxUserdata .rightBox {
  margin-left: 150px;
  padding-left: 20px;
}

.boxUserdata.homepage {
  margin-bottom: 20px;
  border: 0;
  padding-right: 20px;
}

.boxUserdata .userimage {
  max-width: 150px;
  max-height: 150px;
  border-radius: 8px;
}

.boxChangeUserdata li {
  border-bottom: 1px solid #C7C8CF;
}

.userdataButtons {
  text-align: right;
  margin-bottom: 10px;
}

ul.userdata {
  list-style: none;
}

ul.userdata li {
  overflow: hidden;
  white-space: nowrap;
  padding: 3px 0;
}

ul.userdata li .left {
  font-weight: bold;
  border: none;
}

ul.userdata div {
  float: left;
}

td.green {
  background: url("/src/img/icn_checked.gif") no-repeat;
}

.usertype {
  cursor: pointer;
  margin-left: 20px;
  padding: 0;
}

.socialicons {
  margin-bottom: 10px;
  text-align: right;
}
.socialicons a {
  width: 32px;
  height: 32px;
  font-size: 16px;
  line-height: 32px;
  display: inline-block;
  margin: 5px;
}
.socialicons a:hover {
  background: #eee;
  color: #585657 !important;
}

/*******************************************************************************************************************
SPECIAL PAGES
*******************************************************************************************************************/
/*******************************************************************************************************************
LOCALNEWS
*******************************************************************************************************************/
ul.newdata {
  list-style: none;
  padding: 0;
}

ul.newdata li {
  margin-bottom: 15px;
  word-wrap: break-word;
}

ul.newdata li.course {
  margin-bottom: 3px;
}

.newdata input.text, .newdata textarea, #headline, #teaser, input#link {
  width: 100%;
  padding: 2px;
}

.newdata textarea#text {
  height: 250px;
}

.localevents {
  background: #f2f2f2;
  padding: 3px;
  margin-bottom: 15px;
}

.localevents h4 {
  background: #C7C8CF !important;
  color: #6022A6;
}

label.newsleft {
  display: block;
  float: left;
  width: 200px;
  padding: 3px 10px 3px 10px;
}

.alert-warning {
  border-color: #C7C8CF;
  color: #222;
  background-color: #FBF9FD;
  text-align: center;
}

.well .alert-warning {
  background-color: #F4F1F8;
}

input.right {
  width: 400px;
  text-align: left;
}

/*
.newdata textarea {
height: 300px;
}
*/
.newdata input.date {
  width: 120px;
}

label.top {
  display: block;
  line-height: 24px;
}

#localnewsedit h4 {
  padding: 3px 5px;
  background: #f2f2f2;
  margin-bottom: 2px;
  font-size: 16px;
  line-height: 18px;
}

#localnewsedit h5 {
  margin: 10px 0 5px 0;
  margin-right: 10px;
}

img.ui-datepicker-trigger {
  vertical-align: top;
  cursor: pointer;
}

#localnewsedit .thumb {
  display: block;
  width: 60px;
  height: 60px;
  float: left;
  border: 1px solid #C7C8CF;
  margin-right: 5px;
  background: no-repeat center;
}

#localnewsedit .thumb260 {
  width: 260px;
  height: 150px;
}

#countryselectbox select {
  width: 100px;
}

input#file, input#image {
  width: auto !important;
  background: none;
}

#newscountries {
  position: absolute;
  width: 130px;
  overflow: auto;
  overflow: auto;
  right: 105px;
  border: 1px solid #C7C8CF;
  background: white;
  padding: 3px;
  line-height: 15px;
}

.newscountries {
  cursor: pointer;
}

#newscountries .h {
  background: #e0e0e0;
  height: 8px;
  line-height: 8px;
}

select#language {
  padding: 0;
  width: 120px;
}

select#language option {
  padding: 2px;
}

.icnCase {
  padding: 2px;
  margin-top: 5px;
}

.icnCase img {
  vertical-align: -4px;
}

/*******************************************************************************************************************
SUBNAV
*******************************************************************************************************************/
#sub_navigation .navContainer {
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 13px;
}

ul.navAdmin {
  list-style: none;
  padding-left: 10px;
}

#sub_navigation .navAdmin {
  width: 200px;
  float: left;
}

.navAdmin li {
  padding: 1px 0;
}

#sub_navigation li {
  list-style: none;
  margin: 0;
}

#sub_navigation li ul {
  padding-left: 10px;
  font-size: 11px;
}

#sub_navigation li ul ul {
  padding-left: 25px;
  font-size: 10px;
}

#sub_navigation li a:link, #sub_navigation li a:visited {
  color: #333333;
  line-height: 18px;
}

#sub_navigation li a:hover {
  color: #6022A6;
  text-decoration: none;
}

#sub_navigation li a.currentItem:link, #sub_navigation li a.currentItem:visited {
  background: #6022A6;
  color: #fff;
  padding: 3px;
  border-radius: 3px;
}

#sub_navigation .subnavHeader {
  font-weight: bold;
  color: #333;
}

#sub_navigation li.header {
  font-weight: bold;
  margin-top: 5px;
}

/*
.gallerytext {
  min-height: 160px;
}*/
.tab {
  display: block;
  float: left;
  width: 106px;
  height: 40px;
  line-height: 42px;
  text-align: center;
  overflow: hidden;
  background: linear-gradient(rgb(223, 228, 231), rgba(223, 228, 231, 0.5));
}

.tabsel {
  line-height: 36px;
  color: #fff !important;
  background: #6022A6;
}

.btn_region, .btn_pole {
  display: block;
  float: left;
  width: 110px;
  border: 1px solid #808080;
  margin: 0 4px 4px 0;
  text-align: center;
  background-color: #eee;
  color: #808080;
  cursor: pointer;
  font-size: 13px;
}

.region_sel, .pole_sel {
  background-color: #ccc;
  color: black;
}

#btn_region_all, #btn_region_sel, #btn_pole_all, #btn_pole_sel {
  background-color: #ced8e4;
}

#btn_region_all.region_sel, #btn_region_sel.region_sel,
#btn_pole_all.pole_sel, #btn_pole_sel.pole_sel {
  background-color: #acbdd2;
}

#box_country {
  height: 450px;
  overflow: auto;
  border: 1px solid #ccc;
  padding: 10px;
}
#box_country h3 {
  font-size: 18px;
  margin-bottom: 0;
}

#box_country ul {
  list-style: none;
  margin-bottom: 0;
  padding-left: 10px;
}

#box_country .sel {
  background-color: #e9d03d;
}

#box_country li {
  padding: 3px 10px;
  margin: 1px 0;
  background: #eee;
}

#box_country li input {
  display: none;
}

.endfloat {
  clear: both;
  height: 1px;
  line-height: 1px;
}

video::-internal-media-controls-download-button {
  display: none;
}

video::-webkit-media-controls-enclosure {
  overflow: hidden;
}

video::-webkit-media-controls-panel {
  width: calc(100% + 30px); /* Adjust as needed */
}

button#next, button.next {
  margin: 20px 0;
}

#box_step2 img {
  border: 1px solid #ccc;
  cursor: pointer;
  margin-bottom: 3px;
}

.box_unit {
  float: left;
  width: 84px;
  padding: 2px 0;
  margin: 0 16px 10px 0;
  text-align: center;
  font-size: 12px;
}

.box_unit_voluson, .box_unit_vivid {
  width: 124px;
}

.box_unit div {
  width: 84px;
  line-height: 16px;
  height: 16px;
  background: url("/src/img/btn_unitselect.gif") 0 0 no-repeat;
}

.box_unit_voluson div, .box_unit_vivid div {
  width: 124px;
  background: url("/src/img/btn_unitselect_120.gif") 0 0 no-repeat;
}

#box_step2 .unitsel div {
  background-position: 0 -16px;
  color: white;
}

#box_step2 .unitsel img {
  border: 1px solid #6022A6;
}

.box_unit input {
  vertical-align: middle;
}

#admin ul.userdata {
  list-style: none;
}
#admin ul.userdata li {
  overflow: hidden;
  white-space: nowrap;
  padding: 3px 0;
}
#admin ul.userdata li .left {
  font-weight: bold;
  border: none;
}
#admin ul.userdata div {
  float: left;
}
#admin ul.admin {
  list-style: none;
  margin: 0;
  padding: 0;
  padding-top: 2px;
  margin-bottom: 20px;
}
#admin ul.admin-right {
  position: absolute;
  right: 0;
}
#admin ul.admin-left {
  position: absolute;
  left: 0;
}
#admin ul.admin li {
  font-size: 11px;
  float: left;
  vertical-align: middle;
  margin-left: 10px;
}
#admin ul.admin li a {
  padding: 5px 10px;
  color: #4d4d4d;
  font-size: 11px;
}
#admin ul.admin li a.contact {
  padding-right: 10px;
}
#admin ul.admin li a.btn {
  padding: 3px 10px;
  margin-top: -4px;
}
#admin .tab {
  display: block;
  float: left;
  width: 106px;
  height: 30px;
  line-height: 42px;
  text-align: center;
  overflow: hidden;
  background-repeat: no-repeat;
  background-image: url("/src/img/tab.gif");
}
#admin .tabsel {
  background-position: 0 -30px;
  line-height: 36px;
  color: #8b7210 !important;
}
#admin #tab_userdata_1 {
  background-image: url("/src/img/tab_userdata.gif");
}
#admin #tab_userdata_2 {
  background-image: url("/src/img/tab_adminpages.gif");
}
#admin #tab_userdata_3 {
  background-image: url("/src/img/tab_adminrights.gif");
}
#admin #tab_userdata_4 {
  background-image: url("/src/img/tab_admincountries.gif");
}

/******************************************************************************/
.statcount {
  cursor: pointer;
}

.statcountids {
  display: none;
  position: absolute;
  background: #fff;
  padding: 3px;
  border: 1px solid #cccccc;
}

.statcol_m, .statcol_d {
  background-color: #ccc;
  width: 20px;
  color: white;
}

.this_m, .this_d {
  background-color: #3b73b9;
}

.statcol_d {
  width: 15px;
}

.btnstat {
  padding: 3px;
  border: 1px solid #ccc;
}

a.btnstat:focus {
  border: 1px solid #ccc;
}

.statsel, a.statsel:link, a.statsel:visited {
  background-color: #3b73b9;
  color: white;
}

#months a:link, .months a:visited {
  color: #666;
}

#months a:hover, #days a:hover {
  text-decoration: none;
}

a.sersort {
  text-align: center;
  padding: 0 2px 0 1px;
  font-size: 9px;
  color: #666;
}

.sersort1 {
  border: 1px solid #3b73b9;
}

.sersort2 {
  border: 1px solid #33cc00;
}

.sersort3 {
  border: 1px solid #ffd400;
}

.sersort4, .sersort5, .sersort6, .sersort7, .sersort8 {
  border: 1px solid #ff0000;
}

.voices-table table tbody td strong, .voices-table table tbody td b, .voices-table table tbody th strong, .voices-table table tbody th b {
  color: #222;
}
.voices-table table tbody td:first-child, .voices-table table tbody th:first-child {
  display: none;
}

.voices .portraits img {
  display: block;
  margin: 20px auto;
}
.voices .box {
  border: 1px solid #ccc;
  background: #eee;
  text-align: center;
  margin-bottom: 50px;
}
.voices h3 {
  padding-top: 50px;
}
.voices table.table th, .voices table.table td {
  border-color: #C7C8CF;
}
.voices table.table-striped th {
  background: none;
  border-top: 0;
}
.voices table.data {
  background-color: #eee;
  background-image: none;
  background-repeat: repeat;
  background-position: top left;
  background-attachment: scroll;
  padding: 5px;
  border: 1px solid #ccc;
  margin-bottom: 30px;
  width: 100%;
}
.voices .img img {
  width: 100%;
  margin-bottom: 50px;
}

#mtList .list a h3 {
  color: #222;
}
#mtList .list img {
  max-width: 100%;
  margin-bottom: 16px;
}

.pubmed-container {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
}
.pubmed-container p.footnote {
  font-size: 12px;
  line-height: 18px;
}
.pubmed-container .header {
  font-size: 14px;
  margin-bottom: 12px;
  display: flex;
  justify-content: space-between;
  font-family: SourceSansProSemiBold;
}
.pubmed-container .header .date {
  color: #222;
}
.pubmed-container .pubmed-item {
  background-color: #F4F1F8;
  border-radius: 8px;
  padding: 24px;
}
.pubmed-container .pubmed-item h4 a {
  color: #222;
}
.pubmed-container .pubmed-item .pubmed {
  font-size: 16px;
  line-height: 24px;
}

.admintable a.icon {
  color: #999;
}
.admintable td {
  padding: 8px 3px !important;
}

.editicon {
  padding: 8px 3px !important;
}

.showonphone {
  cursor: pointer;
  color: red;
}
.showonphone.active {
  color: green;
}

.learning-library-home {
  color: #fff;
  background-color: #6022A6;
  border: 0;
  position: absolute;
  right: 0;
  border: 1px solid #6022A6;
  font-size: 20px;
}
.learning-library-home:hover {
  background-color: #512286;
  border-color: #512286;
  color: #fff;
}

tr.head {
  font-weight: bold;
}

.attention {
  background: #EEEEEE;
  padding: 30px;
  margin-bottom: 20px;
}

.attention em {
  font-weight: bold;
}

.certificates .courses a {
  display: block;
  border: 2px solid #6022A6;
  padding: 10px;
  border-radius: 6px;
  margin-bottom: 10px;
  -moz-transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
  position: relative;
}
.certificates .courses a:hover {
  background: #6022A6;
  text-decoration: none;
  color: #fff;
  -moz-transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.certificates .courses a.active {
  color: #fff;
  background: #6022A6;
}
.certificates .courses a.active:after {
  content: "\f105";
  font-family: FontAwesome;
  right: 10px;
  position: absolute;
  top: 4px;
  font-size: 25px;
  color: #fff;
}

.mytrainings {
  background-color: #edf0f2;
}
.mytrainings tbody {
  background: #fff;
}
.mytrainings .icon {
  margin-left: 10px;
}

#request-training input[type=radio] {
  vertical-align: 2px;
}

li.fld span.active {
  background: orange;
  color: #fff;
  padding: 3px;
  border-radius: 3px;
}

.participents {
  /* h2 {
     margin: 20px 0 10px 0;
   }*/
}
.participents .buttonGrey {
  border-color: #6022A6 !important;
}
.participents .table > thead > tr > th {
  border: 0;
}
.participents .table .icon {
  color: #222;
  border-radius: 4px;
  margin-left: 5px;
  padding: 5px;
  cursor: pointer;
  -moz-transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.participents .table .icon.green {
  background: #6022A6 !important;
}
.participents .table .icon.green .fa {
  color: #fff;
}
.participents .table .icon:hover {
  color: #6022A6;
  -moz-transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
  text-decoration: none;
}
.participents .name {
  color: #6022A6;
}

#membermsg {
  margin: -5px 0 5px 0;
}

.ui-widget {
  font-size: 14px;
}

.ui-state-active {
  background: #512286 !important;
  border: none !important;
}

.ui-autocomplete {
  max-height: 270px;
  overflow-y: auto;
  overflow-x: hidden;
  height: auto;
}

.ui-menu .ui-menu-item-wrapper {
  white-space: nowrap;
  text-overflow: ellipsis;
}

.ui-menu .ui-state-focus, .ui-menu .ui-state-active {
  margin: 0;
}

.nestsortable, .notsortable {
  list-style: none;
  margin: 0;
  padding: 0;
}
.nestsortable ul, .notsortable ul {
  list-style: none;
}

.pageloginbox {
  width: 400px;
  border: 1px solid #ccc;
  border-radius: 10px;
  margin: 0 auto;
}

body.app {
  background: linear-gradient(#43bfe5, #3a73ba);
}
body.app .appButton {
  display: block;
  padding: 17px 0 13px 0;
  background: linear-gradient(#fff, #bcecf7);
  border-radius: 5px;
  font-size: 18px;
  font-weight: bold;
  margin: 10px 0;
  color: #6022A6;
  width: 100%;
  border: 0;
}
body.app .appButton:hover {
  text-decoration: none;
}
body.app .appButton:focus, body.app .appButton:active {
  text-decoration: none;
}
body.app .appButtonBox {
  padding: 20px;
  text-align: center;
  color: #fff;
}
body.app .appLoginBox {
  padding: 20px;
  text-align: center;
  color: #fff;
}
body.app .appLoginBox .form-control {
  padding: 12px;
  height: auto;
  font-size: 18px;
}
body.app .error {
  color: red;
  padding: 10px 20px;
  font-size: 18px;
  border-radius: 5px;
  margin: 10px 0;
  display: inline-block;
}
body.app .appBackLink {
  font-size: 18px;
  color: white;
  font-weight: bold;
}
body.app .clubname {
  color: #fff;
  font-size: 24px;
  text-align: center;
  font-weight: bold;
  position: absolute;
  bottom: 30px;
  width: 100%;
}

body.appvic {
  background: linear-gradient(#98b0d7, #3a73ba);
}
body.appvic .appButton {
  background: linear-gradient(#fff, #a7c0e1);
}

.appButton2 {
  display: block;
  padding: 15px;
  background: linear-gradient(to right, #3a74ba, #00b3e0);
  border-radius: 5px;
  font-size: 18px;
  font-weight: bold;
  margin: 10px 0;
  color: #fff;
  border: 0;
  width: 100%;
}
.appButton2:hover {
  text-decoration: none;
}
.appButton2:focus, .appButton2:active {
  text-decoration: none;
}

.appButton2Vic {
  background: linear-gradient(to right, #3a74ba, #98b0d7);
}

#appcredentials {
  padding: 20px;
}

#pp .ppnews a {
  letter-spacing: 0;
}
#pp #ppnewshome .list {
  grid-template-columns: 1fr 1fr;
}
#pp #ppnewshome .list .item {
  width: auto;
}
#pp #ppnewshome .list .item .bottom {
  bottom: 16px;
  font-size: 16px;
}
#pp.list {
  display: block;
}
#pp > .box_content {
  padding-top: 64px;
}
#pp #nav {
  background: #FBF9FD;
  font-size: 16px;
}
#pp #nav.sticky {
  position: fixed;
  top: 0;
}
#pp #nav #navMain {
  height: 120px;
  overflow: hidden;
}
#pp #nav #navMain li:first-child a {
  padding-left: 0;
}
#pp #nav #navMain li a img {
  display: none;
}
#pp #nav #navMain li a.active {
  color: #6022A6;
  border-bottom: 2px solid #6022A6;
}
#pp #nav #navMain li a.active img {
  width: 85px;
}
#pp #headerCnt {
  border: 1px solid #FBF9FD;
  background: #F4F1F8;
}
#pp #headerCnt::before {
  background: none;
  content: "";
}
#pp.home {
  background: #5B5B67 url("https://live.volusonmaster.eu/data/images/pp/bg_main.jpg") center center no-repeat;
  background-size: cover;
}
#pp.home .ppwelcome h1, #pp.home .ppwelcome h2, #pp.home .ppwelcome h3, #pp.home .ppnews h1, #pp.home .ppnews h2, #pp.home .ppnews h3 {
  color: #fff;
}
#pp.home .ppwelcome h3, #pp.home .ppnews h3 {
  font-size: 18px;
  line-height: 28px;
  letter-spacing: 0.36px;
}
#pp.home .ppwelcome h1, #pp.home .ppnews h1 {
  font-size: 64px;
  line-height: 72px;
  letter-spacing: -1.25px;
  margin-top: 24px;
}
#pp.home .ppnews h2 {
  margin: 0;
}
#pp.home .ppnews h2 a, #pp.home .ppnews h2 a:link, #pp.home .ppnews h2 a:visited, #pp.home .ppnews h2 a:active {
  color: #fff;
  text-decoration: none;
}
#pp.home .list .item {
  background: #FBF9FD;
  border-radius: 16px;
  padding-bottom: 16px;
}
#pp.home .list .item img {
  border-radius: 0;
  border-top-right-radius: 16px;
  border-top-left-radius: 16px;
}
#pp.home .list .item .text {
  padding: 20px;
}
#pp.home .list .item .icon-caret {
  margin-left: 20px;
}
#pp.home .box_content {
  margin-top: 0 !important;
}
#pp #nav li a.active, #pp #nav li a:hover {
  background: rgba(255, 255, 255, 0.3);
}
#pp #nav li a.active a:hover, #pp #nav li a:hover a:hover {
  background: none;
}
#pp ul.nav {
  list-style: none;
  padding: 0;
}
#pp ul.nav ul {
  padding: 0;
}
#pp ul.nav li.active {
  background: #FBF9FD;
}
#pp ul.nav > li {
  font-weight: bold;
  border-bottom: none;
}
#pp ul.nav > li > ul {
  padding: 0;
  font-weight: normal;
}
#pp ul.nav > li > ul ul li {
  padding-left: 20px;
}
#pp ul.nav > li > ul ul li ul li {
  padding-left: 40px;
}
#pp ul.nav ul {
  list-style: none;
  border-top: 1px solid #F4F1F8;
}
#pp ul.nav ul li {
  border-bottom: 1px solid #F4F1F8;
  position: relative;
}
#pp ul.nav ul li:before {
  font-family: FontAwesome;
  font-weight: normal;
  font-style: normal;
  display: block;
  text-decoration: inherit;
  content: "\f105";
  font-size: 20px;
  line-height: 20px;
  position: absolute;
  right: 8px;
  padding-top: 21px;
}
#pp ul.nav ul li.hasChildren {
  margin-top: -1px;
}
#pp ul.nav ul li.hasChildren:before {
  content: url(/src/img/icons/plus.svg);
  font-size: 24px;
}
#pp ul.nav ul li.hasChildren li:last-child {
  border-bottom: 0;
}
#pp ul.nav ul li.hasChildren.open:before {
  content: url(/src/img/icons/minus.svg);
}
#pp ul.nav ul li a {
  display: block;
  color: #222;
  padding: 16px 32px 16px 8px;
}
#pp ul.nav ul li a:hover {
  text-decoration: none;
}
#pp ul.nav ul li .toggle {
  cursor: pointer;
  border-top: 1px solid #F4F1F8;
  padding: 16px 32px 16px 8px;
}
#pp ul.nav ul.closed {
  display: none;
}
#pp.list .header {
  background: #5B5B67 url("https://live.volusonmaster.eu/data/images/pp/header_units_logiq.jpg") bottom center no-repeat;
  background-size: auto 260px;
  height: 260px;
  width: 100%;
  /*&.handheld, &.meetings {
    background-size: auto 355px;
  }*/
}
#pp.list .header.voluson {
  background-image: url(https://live.volusonmaster.eu/data/images/pp/header_units_voluson.jpg);
}
#pp.list .header.vivid {
  background-image: url(https://live.volusonmaster.eu/data/images/pp/header_units_vivid.jpg);
}
#pp.list .header.logiq {
  background-image: url(https://live.volusonmaster.eu/data/images/pp/header_units_logiq.jpg);
}
#pp.list .header.versana {
  background-image: url(https://live.volusonmaster.eu/data/images/pp/header_units_versana.jpg);
}
#pp.list .header.venue {
  background-image: url(https://live.volusonmaster.eu/data/images/pp/header_units_venue.jpg);
}
#pp.list .header.vscan {
  background-image: url(https://live.volusonmaster.eu/data/images/pp/header_units_vscan.jpg);
}
#pp.list .header.abus {
  background-image: url(https://live.volusonmaster.eu/data/images/pp/header_units_abus.jpg);
}
#pp.list .header.it {
  background-image: url(https://live.volusonmaster.eu/data/images/pp/header_units_it.jpg);
}
#pp.list .header h1 {
  margin-top: 50px;
}
#pp.list .header h1 a {
  color: #fff;
}
#pp.list .header h1 a:hover {
  text-decoration: none;
}
#pp .pplist .ppitem {
  background: #FBF9FD;
  margin-bottom: 16px;
  position: relative;
  border-right: 16px;
  border-radius: 8px;
}
#pp .pplist .ppitem .img {
  width: 188px;
  float: left;
  padding: 16px;
}
#pp .pplist .ppitem .img img {
  width: 100%;
  border-radius: 8px;
}
#pp .pplist .ppitem .img .play {
  display: none;
}
#pp .pplist .ppitem .date {
  float: right;
  padding: 16px;
  width: 170px;
  min-height: 80px;
  text-align: right;
  line-height: 21px;
  font-size: 16px;
}
#pp .pplist .ppitem .date i {
  font-size: 14px;
  font-style: normal;
  color: #5B5B67;
}
#pp .pplist .ppitem .button {
  position: absolute;
  bottom: 16px;
  right: 16px;
  text-align: center;
  border-radius: 8px;
  font-weight: normal;
}
#pp .pplist .ppitem .sendlink {
  right: 138px;
  width: 100px;
  background: #fff;
  border-radius: 8px;
  border: 1px solid #6022A6;
  justify-content: center;
  font-weight: normal;
}
#pp .pplist .ppitem .sendlink:hover {
  color: #6022A6;
}
#pp .pplist .ppitem .text {
  padding: 16px 16px 16px 0;
  margin-left: 188px;
}
#pp .pplist .ppitem .text h2 {
  font-size: 18px;
  line-height: 28px;
  margin: 0;
  letter-spacing: 0px;
  padding-bottom: 32px;
}
#pp #selector {
  margin-right: 0;
  position: relative;
}
#pp #ppfilter {
  width: 100%;
  margin: 0;
  line-height: auto;
}

#sendLinkPopup {
  width: 400px;
  padding: 30px 40px;
  border-radius: 10px;
}
#sendLinkPopup h2 {
  border-bottom: 1px solid #ddd;
  padding-bottom: 20px;
}
#sendLinkPopup .button {
  line-height: 26px;
}

#previewPopup {
  padding: 0 10px 10px 0;
  border-radius: 10px;
}
#previewPopup h4 {
  font-size: 16px;
  padding: 10px;
  margin: 0;
}

.vertical-alignment-helper {
  display: table;
  height: 100%;
  width: 100%;
  pointer-events: none;
}

.vertical-align-center {
  /* To center vertically */
  display: table-cell;
  vertical-align: middle;
  pointer-events: none;
}

.modal-content {
  /* Bootstrap sets the size of the modal in the modal-dialog class, we need to inherit it */
  width: inherit;
  max-width: inherit; /* For Bootstrap 4 - to avoid the modal window stretching full width */
  height: inherit;
  /* To center horizontally */
  margin: 0 auto;
  pointer-events: all;
}

#btnContactus {
  position: absolute;
  right: 0;
  width: 52px;
  top: 320px;
  padding: 7px 0 7px 7px;
  cursor: pointer;
  transition: width 0.5s ease-in-out;
  overflow: hidden;
  z-index: 1000;
}
#btnContactus span {
  display: block;
  background: rgba(0, 0, 0, 0.1);
}
#btnContactus img {
  box-shadow: 0 0 7px 0 rgba(0, 0, 0, 0.3);
}
#btnContactus:hover {
  width: 148px;
}
#btnContactus.sticky {
  top: 60px;
  position: fixed;
}
#btnContactus.msticky {
  top: 10px;
  position: fixed;
}

#btnSwift {
  position: fixed;
  right: 0;
  bottom: 20px;
  cursor: pointer;
  transition: 1s ease-in-out;
  background: rgba(0, 0, 0, 0.1);
  z-index: 10000;
  max-width: 95%;
}
#btnSwift img {
  box-shadow: 0 0 7px 0 rgba(0, 0, 0, 0.3);
}
#btnSwift:hover {
  right: 0 !important;
}

.liveSlider {
  margin-bottom: 100px;
}
.liveSlider .item {
  position: relative;
  background-size: cover;
}
.liveSlider .item img {
  width: 100%;
}
.liveSlider .item article {
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0) 70%);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 100px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.liveSlider .item article h2 {
  color: #fff;
  font-size: 36px;
  line-height: 40px;
  margin-bottom: 20px;
}
.liveSlider .item article p {
  color: #fff;
  margin-bottom: 40px;
}
.liveSlider .item article .date {
  color: #fff;
  font-weight: bold;
  font-size: 20px;
  margin-bottom: 40px;
  position: relative;
}
.liveSlider .item article .date::after {
  content: "-";
  background: #dedaf2;
  height: 6px;
  width: 100px;
  border-radius: 5px;
  position: absolute;
  top: 30px;
  left: 0;
  color: rgba(0, 0, 0, 0);
}
.liveSlider .item article .buttonBig {
  height: 50px;
  line-height: 54px;
  border-radius: 25px;
  font-size: 25px;
  font-weight: bold;
}
.liveSlider .slick-next {
  right: 45px;
}
.liveSlider .slick-prev {
  left: 10px;
  z-index: 10;
}
.liveSlider .slick-prev:before, .liveSlider .slick-next:before {
  font-size: 50px;
  opacity: 0.5;
}
.liveSlider .slick-prev.slick-disabled:before, .liveSlider .slick-next.slick-disabled:before {
  opacity: 0;
}

.paginationBox {
  margin-top: 56px;
  display: flex;
  justify-content: center;
  gap: 10px;
}
.paginationBox div {
  text-align: center;
}
.paginationBox .pagination {
  margin-top: 0;
}
.paginationBox .count {
  text-align: center;
}
.paginationBox select.form-control {
  padding-top: 8px;
  padding-bottom: 8px;
}
.paginationBox .pagination li a:hover {
  background-color: #512286;
  color: #fff;
}
.paginationBox .pagination > li > a, .paginationBox .pagination > li > span {
  border: 0;
  padding: 6px 12px;
  margin-left: 1px;
  margin-right: 1px;
  border-radius: 4px;
}
.paginationBox .count {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px; /* 150% */
  color: #222;
}

.welcome .right {
  padding: 60px;
  background: #FBF9FD;
  background: linear-gradient(0deg, rgba(255, 225, 239, 0) 0%, rgba(213, 225, 239, 0.5) 100%);
  mix-blend-mode: multiply;
  height: 100%;
}
.welcome .ul li:before {
  content: "\f00c";
  color: #6022A6;
  left: -15px;
}

#mktoForm_48700 {
  width: 400px !important;
}

.mktoForm .mktoFormRow input[type=text], .mktoForm .mktoFormRow input[type=url], .mktoForm .mktoFormRow input[type=email], .mktoForm .mktoFormRow input[type=tel], .mktoForm .mktoFormRow input[type=number], .mktoForm .mktoFormRow input[type=date], .mktoForm .mktoFormRow select, .mktoForm .mktoFormRow textarea {
  border-radius: 4px !important;
}

#explicit_opt_in, #inquiry_type, .mktoForm .mktoFormRow label[for=inquiry_type] {
  position: absolute;
  top: 3px !important;
  left: 3px !important;
}

.mktoForm .mktoButtonRow .mktoButtonWrap.mktoSimple .mktoButton {
  background: #6022A6 !important;
  background-image: none !important;
  border-radius: 8px !important;
  width: auto !important;
  padding: 5px 30px !important;
  margin: 0 auto !important;
  text-transform: none !important;
  font-size: 16px !important;
}

#mktoForm_48700 .mktoButton {
  color: #fff !important;
  background: #595194 !important;
  border: 0 !important;
  padding: 0.4em 1em;
  font-size: 1em;
  border-radius: 14px;
  width: 200px;
  box-shadow: none !important;
  background-color: #595194;
  background-image: none;
}

#mktoForm_48700 .mktoLabel, #mktoForm_48700 .mktoHtmlText, #mktoForm_48700 input[type=text],
#mktoForm_48700 input[type=email], #mktoForm_48700 input[type=tel], #mktoForm_48700 select {
  width: 370px !important;
}

#mktoForm_48700 .mktoFieldWrap {
  width: 100% !important;
}

#mktoForm_48700 .mktoFieldWrap {
  height: auto !important;
}

.mktoModal .mktoModalClose {
  background: #6022A6 !important;
  border: 0 !important;
  width: 25px !important;
  height: 25px !important;
  line-height: 25px !important;
  top: 5px !important;
  right: 5px !important;
  position: absolute;
  z-index: 1000;
}

#mktoForm_48700 fieldset legend {
  margin: 0 0.2em 0.2em !important;
}

#mktoForm_48700 .mktoFormRow:nth-child(10) .mktoFormCol {
  margin-left: 5px;
}

#mktoForm_48700 .mktoOffset {
  height: 0.7em !important;
}

#mktoForm_48700 .mktoButtonRow {
  width: 100%;
  text-align: center;
}

#mktoForm_48700 .mktoButtonWrap {
  margin: 0 !important;
}

.navigationLinksLogiq {
  background-color: #F4F1F8;
  display: flex;
  flex-direction: row;
  justify-content: center;
  padding-top: 32px;
  padding-bottom: 32px;
  color: #5B5B67;
  border-bottom: 1px solid #C7C8CF;
  /*max-width: 1180px;
  padding-left: 20px;
  padding-right: 20px;
  margin: 0 auto;*/
}

.navigationLinksLogiq a {
  color: #5B5B67;
  margin-left: 2rem;
  font-size: 16px;
  text-decoration: none;
}
.navigationLinksLogiq a:first-child {
  margin-left: 0;
}

.navigationLinksLogiq a:hover {
  text-decoration: none;
  color: #6022A6;
}

.navigationLinksLogiq .fa {
  margin-right: 1rem;
}

.navigationLinksLogiq .button {
  margin-left: 0.5rem !important;
  margin-right: 0.5rem;
  padding-left: 20px;
}

#family-banners {
  padding: 20px 5px;
}

.buttonicon {
  margin-right: 0;
  margin-left: 0;
}

#family-banners a img.desktop {
  transition: all 0.5s ease-in-out;
}

#family-banners a img.desktop:hover {
  transform: scale(1.05);
}

#family-banners .mobile {
  display: none;
}

#family-banners img {
  width: 100%;
  margin-bottom: 40px;
}

@media screen and (min-width: 768px) {
  #family-banners .items {
    display: flex;
  }
  #family-banners .item {
    width: 33.33%;
    padding: 0 1rem;
  }
  #family-banners img.desktop {
    display: inline;
  }
}
@media (max-width: 767px) {
  #family-banners .mobile {
    display: block;
  }
}
@media only screen and (max-width: 480px) {
  #mktoForm_48700 {
    width: 95% !important;
  }
  #mktoForm_48700 .mktoLabel, #mktoForm_48700 .mktoHtmlText, #mktoForm_48700 input[type=text],
  #mktoForm_48700 input[type=email], #mktoForm_48700 input[type=tel], #mktoForm_48700 select {
    width: 100% !important;
  }
  #mktoForm_48700 input[type=text],
  #mktoForm_48700 input[type=email], #mktoForm_48700 input[type=tel], #mktoForm_48700 select {
    font-size: 15px;
  }
  #mktoForm_48700 .mktoButton {
    width: 100px;
  }
}
/***********************************************************************************************************************
START
Instruction Forms
***********************************************************************************************************************/
#box_content.instructionFormBox, #headerCnt .instructionFormBox {
  /*.participents h2 {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }*/
  display: flex;
  flex-direction: column;
}
#box_content.instructionFormBox .instructionForms, #headerCnt .instructionFormBox .instructionForms {
  width: 100%;
  overflow: hidden;
}
#box_content.instructionFormBox .changesignature, #headerCnt .instructionFormBox .changesignature {
  display: block;
  margin-top: 10px;
}
#box_content.instructionFormBox .borderDotted, #headerCnt .instructionFormBox .borderDotted {
  border: 2px dotted #C7C8CF;
  width: 100%;
}
#box_content.instructionFormBox #template, #headerCnt .instructionFormBox #template {
  height: 0;
  overflow: hidden;
}
#box_content.instructionFormBox .buttonBox, #headerCnt .instructionFormBox .buttonBox {
  display: flex;
  justify-content: right;
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid #ccc;
}
#box_content.instructionFormBox .buttonBox button, #headerCnt .instructionFormBox .buttonBox button {
  width: fit-content;
  margin-left: 1rem;
}
#box_content.instructionFormBox label, #box_content.instructionFormBox input, #box_content.instructionFormBox textarea, #headerCnt .instructionFormBox label, #headerCnt .instructionFormBox input, #headerCnt .instructionFormBox textarea {
  display: flex;
  flex-direction: row;
  width: 100%;
}
#box_content.instructionFormBox label, #headerCnt .instructionFormBox label {
  font-size: 16px;
}
#box_content.instructionFormBox .participents h2, #headerCnt .instructionFormBox .participents h2 {
  margin: 0 0 40px 0;
}
#box_content.instructionFormBox h2, #headerCnt .instructionFormBox h2 {
  margin-bottom: 40px;
}
#box_content.instructionFormBox h3, #headerCnt .instructionFormBox h3 {
  margin-bottom: 24px;
}
#box_content.instructionFormBox .mb, #headerCnt .instructionFormBox .mb {
  margin-bottom: 48px;
}
#box_content.instructionFormBox .delinstructionperson, #headerCnt .instructionFormBox .delinstructionperson {
  cursor: pointer;
}
#box_content.instructionFormBox .person, #headerCnt .instructionFormBox .person {
  margin-bottom: 10px;
}
#box_content.instructionFormBox input, #box_content.instructionFormBox textarea, #headerCnt .instructionFormBox input, #headerCnt .instructionFormBox textarea {
  margin-bottom: 1rem;
}
#box_content.instructionFormBox textarea, #headerCnt .instructionFormBox textarea {
  resize: none;
}
#box_content.instructionFormBox .oneLine, #headerCnt .instructionFormBox .oneLine {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  width: 100%;
  margin-bottom: 1rem;
}
#box_content.instructionFormBox .oneLine div, #headerCnt .instructionFormBox .oneLine div {
  width: 45%;
}
#box_content.instructionFormBox .checkboxes, #headerCnt .instructionFormBox .checkboxes {
  display: flex;
  flex-direction: row;
  justify-content: left;
}
#box_content.instructionFormBox .checkboxes input, #headerCnt .instructionFormBox .checkboxes input {
  width: auto;
  margin-right: 1rem;
}
#box_content.instructionFormBox hr, #headerCnt .instructionFormBox hr {
  width: 100%;
}
#box_content.instructionFormBox .signatureClick, #headerCnt .instructionFormBox .signatureClick {
  width: fit-content;
  align-self: center;
  margin-bottom: 1rem;
}
#box_content.instructionFormBox .deviceAdmin, #box_content.instructionFormBox .deviceUser, #headerCnt .instructionFormBox .deviceAdmin, #headerCnt .instructionFormBox .deviceUser {
  display: flex;
  flex-direction: column;
}
#box_content.instructionFormBox div.signature canvas, #box_content.instructionFormBox .newsignature canvas, #box_content.instructionFormBox .personsignature canvas, #headerCnt .instructionFormBox div.signature canvas, #headerCnt .instructionFormBox .newsignature canvas, #headerCnt .instructionFormBox .personsignature canvas {
  border: 2px dotted #c9c9c9 !important;
}
#box_content.instructionFormBox div.signature canvas:first-of-type + div, #box_content.instructionFormBox .newsignature canvas:first-of-type + div, #box_content.instructionFormBox .personsignature canvas:first-of-type + div, #headerCnt .instructionFormBox div.signature canvas:first-of-type + div, #headerCnt .instructionFormBox .newsignature canvas:first-of-type + div, #headerCnt .instructionFormBox .personsignature canvas:first-of-type + div {
  display: flex;
  justify-content: center;
  align-items: center;
}
#box_content.instructionFormBox div.signature canvas:first-of-type + div input, #box_content.instructionFormBox .newsignature canvas:first-of-type + div input, #box_content.instructionFormBox .personsignature canvas:first-of-type + div input, #headerCnt .instructionFormBox div.signature canvas:first-of-type + div input, #headerCnt .instructionFormBox .newsignature canvas:first-of-type + div input, #headerCnt .instructionFormBox .personsignature canvas:first-of-type + div input {
  justify-content: center;
  left: unset !important;
  position: unset !important;
  height: fit-content;
  width: fit-content;
}
#box_content.instructionFormBox div.signature img, #box_content.instructionFormBox .newsignature img, #box_content.instructionFormBox .personsignature img, #headerCnt .instructionFormBox div.signature img, #headerCnt .instructionFormBox .newsignature img, #headerCnt .instructionFormBox .personsignature img {
  display: none !important;
}
@media screen and (max-width: 767px) {
  #box_content.instructionFormBox, #headerCnt .instructionFormBox {
    margin-top: 0;
    padding: 0;
  }
  #box_content.instructionFormBox h1, #headerCnt .instructionFormBox h1 {
    font-size: 38px;
  }
  #box_content.instructionFormBox h2, #headerCnt .instructionFormBox h2 {
    font-size: 24px;
    margin-bottom: 20px;
    text-align: center;
  }
  #box_content.instructionFormBox h2 a, #headerCnt .instructionFormBox h2 a {
    margin-bottom: 20px;
    float: none !important;
  }
  #box_content.instructionFormBox h3, #headerCnt .instructionFormBox h3 {
    font-size: 22px;
  }
}

#customerAddress .oneLine div {
  width: 30%;
}

#systemRelatedNotes .oneLine {
  justify-content: left;
}
#systemRelatedNotes img {
  width: 80%;
  margin: auto;
  padding: 2rem;
}
#systemRelatedNotes input[id^=checkbox] {
  width: fit-content;
  margin: 0 1rem 0 0;
}
#systemRelatedNotes label[for^=checkbox] {
  margin: 0 1rem 0 0;
  width: fit-content;
}

#signatures input[id^=checkbox] {
  width: fit-content;
  margin: 0 1rem 0 0;
}
#signatures label[for^=checkbox] {
  margin: 0 1rem 0 0;
  width: fit-content;
}
#signatures p {
  margin-bottom: 0;
}
#signatures .oneLine {
  align-items: center;
}
#signatures button {
  width: fit-content;
  align-self: flex-end;
  margin: 1rem;
}

#otherNotesSubmit {
  align-self: center;
}

@media screen and (max-width: 600px) {
  #adminPage .oneLine {
    flex-direction: column;
  }
  #adminPage .oneLine div {
    width: 100%;
  }
  #systemRelatedNotes img {
    width: 100%;
    padding: 2rem 0;
  }
  #signatures .oneLine {
    flex-wrap: wrap;
    justify-content: flex-start;
  }
  #signatures .deviceAdmin .oneLine, #signatures .deviceUser .oneLine {
    justify-content: space-between;
  }
}
/***********************************************************************************************************************
END
Instruction Forms
***********************************************************************************************************************/
.ulSidebar {
  list-style: none;
  border-radius: 8px;
  border-top: 0;
  padding: 0;
  background-color: #FBF9FD;
}

.ulSidebar li {
  background: url(/src/img/icons/caret-right.svg) 8px 15px no-repeat;
  padding: 8px 16px 8px 32px;
  margin-bottom: 0;
  cursor: pointer;
}

.ulSidebar li.open {
  background-image: url(/src/img/icons/caret-down.svg);
}

.ulSidebar ul {
  padding: 0;
  display: none;
}

.ulSidebar li.open ul {
  display: block;
}

.ulSidebar ul li {
  list-style: none;
  border: 0;
  background: 0;
  padding: 15px 0 0 0;
}

.ulSidebar ul li a, .ulSidebar a {
  color: #222;
}

.ulSidebar li a:hover, .ulSidebar li ul li.active a, .ulSidebar li span:hover, .ulSidebar a.active {
  text-decoration: none;
  color: #6022A6 !important;
}

/* .ulSidebar .link {
  background-color: $grey100;
}
*/
ul.nav.nav-pills {
  margin-bottom: 50px;
}

.ulContent {
  margin: 0 0 30px 15px;
  padding: 0;
}

.ulContent li {
  margin: 0 0 10px 0px;
}

.ts_img_left {
  float: left;
  width: 47%;
  margin-right: 2%;
  margin-top: 10px;
}

.ts_img_right {
  float: left;
  width: 47%;
  margin-left: 2%;
  margin-top: 10px;
}

.well, .box {
  padding: 32px;
  border-radius: 16px;
  background: #FBF9FD;
  border: none;
  box-shadow: none;
}
.well .clearfix p:last-child, .box .clearfix p:last-child {
  margin-bottom: 0;
}
.well.grey250, .box.grey250 {
  background: #F4F1F8;
}
.well h3:last-child, .box h3:last-child {
  margin-bottom: 0;
}

.box {
  background: #F4F1F8;
  font-size: 16px;
  line-height: 24px;
  color: #5B5B67;
  padding-top: 48px;
  min-height: 230px;
  margin-bottom: 48px;
}
.box.equal {
  padding-bottom: 48px;
}
.box p:last-child {
  margin-bottom: 0;
}
.box img {
  margin-bottom: 24px;
}

.value .number {
  color: #222;
  font-size: 48px;
  line-height: 56px;
  letter-spacing: -1.25px;
  margin-bottom: 16px;
}

.whitewell {
  padding: 20px;
}

.requestDemoBox {
  background: #F4F1F8;
  padding: 20px;
  border-radius: 8px;
}

.mm-menu {
  background: #FBF9FD;
}

#boxHomeLeft {
  padding-right: 24px;
}
#boxHomeLeft a h3 {
  color: #222;
}
#boxHomeLeft img {
  border-radius: 8px;
}

#register {
  font-size: 16px;
}

/* LOGIQ Performce Management */
.facts {
  background: #F4F1F8;
  text-align: center;
  padding: 20px;
  border-radius: 8px;
}
.facts img {
  margin-bottom: 24px;
}
.facts p {
  margin-bottom: 0;
}

/* My Trainer */
#mtc .flex-control-nav {
  bottom: -50px !important;
}
#mtc #flexCount .cnt {
  background: none !important;
}

#mtNav {
  list-style: none;
  padding: 0;
  /* .level1 > div.active,*/
}
#mtNav ul {
  list-style: none;
  padding-left: 20px;
  padding-right: 20px;
  padding: 10px 20px;
}
#mtNav .closed {
  display: none;
}
#mtNav .level1 {
  background-color: #F4F1F8;
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
  margin-bottom: 16px;
  z-index: 10;
}
#mtNav .level1 > div {
  font-size: 18px;
  background: #6022A6;
  color: white;
  padding: 10px 20px;
  cursor: pointer;
  border-radius: 8px;
}
#mtNav .level1 > div.active {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
#mtNav .level1 li {
  margin-bottom: 5px;
}
#mtNav .level2 > div {
  cursor: pointer;
  font-size: 18px;
}
#mtNav .level2 > div.active {
  color: #6022A6;
}
#mtNav .level2 > div i {
  width: 30px;
  height: 20px;
  background: url(/src/img/icons/caret-right.svg) top 7px left 0 no-repeat;
  margin-bottom: 0;
  cursor: pointer;
  display: block;
  float: left;
}
#mtNav .level2 > div i:before {
  content: " ";
}
#mtNav .level2 > div i.fa-caret-down {
  background-image: url(/src/img/icons/caret-down.svg);
}
#mtNav .level3 a {
  color: #222;
  text-decoration: none;
}
#mtNav .level3 a:hover, #mtNav .level3.active a {
  color: #6022A6;
}
#mtNav .level3 > div {
  cursor: pointer;
  font-size: 16px;
}
#mtNav .level2 ul {
  padding-left: 30px;
}
#mtNav .level1 > div:hover {
  background: #512286;
}
#mtNav .level2 > div {
  font-size: 16px;
}

.footnote {
  font-size: 16px;
  line-height: 24px;
  color: #5B5B67;
}

#myTrainerCnt h2:first-child {
  margin-right: 125px;
}
#myTrainerCnt .img {
  text-align: center;
  position: relative;
}
#myTrainerCnt .img .zoom {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: rgba(255, 255, 255, 0.7);
  padding: 5px;
  font-size: 30px;
  width: 40px;
  height: 40px;
  -webkit-user-select: none;
  user-select: none;
  color: #000;
}
#myTrainerCnt .text {
  padding-top: 20px;
}
#myTrainerCnt video {
  border-radius: 8px;
}
#myTrainerCnt .img img {
  max-width: 100%;
  border-radius: 8px;
}

#mtList h3 {
  margin: 0;
}

#mtc .flexslider .slides img {
  width: auto;
  display: inline;
}

/*#mtc .flex-direction-nav a {
  height: 50px;
  color: #ccc;
  top: 200px;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 5px;
  padding: 0 5px; }*/
#mtc .flex-control-nav {
  bottom: -30px;
}

#mtc .flexslider {
  margin: 0 0 30px;
}

#mtc #flexCount {
  position: relative;
  clear: both;
  margin-top: 30px;
}

#mtc #flexCount .cnt {
  text-align: center;
  width: 50px;
  padding: 5px;
  margin: 0 auto;
  border-radius: 4px;
  font-weight: bold;
}

/* Remote Education */
#main .info_page .tagline {
  font-size: 18px;
  line-height: 28px;
  color: #222;
  font-family: SourceSansProSemiBold;
  letter-spacing: 0.36px;
  text-transform: none;
  margin-bottom: 24px;
}
#main .info_page .tagline strong {
  color: #222;
}
#main .info_page .cta-section {
  background-color: #6022A6;
}
#main .info_page .cta-wrapper .tagline strong, #main .info_page .hero-title-centered .tagline.xl strong {
  color: #fff;
}
#main .info_page .feature-grid-section, #main .info_page .specialists-section {
  background-color: #FBF9FD;
}
#main .info_page .feature-grid-section.bgwhite, #main .info_page .specialists-section.bgwhite {
  background-color: #fff;
}
#main .info_page .wrapper-m.targetgroup {
  background: #F4F1F8;
}
#main .info_page .body-text.m {
  padding-bottom: 16px;
  color: #5B5B67;
}
#main .info_page .body-text-2.m.bold.c-t-neutral-100, #main .info_page .bold-text, #main .info_page .bold-text-2, #main .info_page .heading.s {
  color: #222;
  font-weight: normal;
}
#main .info_page .body-text-2.m.specialty {
  color: #5B5B67;
}

/* /research-proposals-winners-2017 */
.winner-box, .winner-box2 {
  position: fixed;
  top: 0;
  left: 0;
  background-color: #FBF9FD;
  padding: 10px;
  max-width: 420px;
  font-size: 11px;
  line-height: 1.1em;
  z-index: 1000;
  border-radius: 8px;
}

.img_full_width img, img.img_full_width {
  width: 100%;
}

/* Special Seiten */
.italic {
  font-style: italic;
}

#imgbox {
  background-color: #6022A6;
  height: 412px;
  overflow: hidden;
  margin: 0;
  z-index: 1;
  position: relative;
  text-align: center;
  width: 100%;
  top: -10px;
}
#imgbox.bggrey1000 {
  background-color: #222;
}

#imgbox img {
  z-index: 100;
  height: 410px;
  margin: 0 auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.imbox_text {
  z-index: 101;
  display: block;
  width: 1140px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: left;
}

.imbox_text h4 {
  color: #F4F1F8;
  margin-bottom: 0;
  max-width: 522px;
  line-height: 31px;
  font-size: 21px;
}

.imbox_text h1 {
  color: #fff;
  font-size: 34px;
  max-width: 560px;
  line-height: 41px;
  margin-bottom: 12px;
  margin-top: 0;
}

@media (max-width: 767px) {
  .imbox_text {
    display: none;
  }
  #imgbox img {
    height: 180px;
    left: 50% !important;
  }
  #imgbox {
    height: 180px;
  }
}
@media (max-width: 600px) {
  #imgbox img {
    left: 32% !important;
  }
}
/* other-resources / boxed */
.grid.resourceContainer {
  gap: 24px !important;
}
.grid.resourceContainer div {
  padding-bottom: 0;
}

.grid.resourceContainer.resourceLogoContainer .resourceText {
  padding-bottom: 10px;
}

a.resourceWrapper {
  transition: all 0.3s ease-in-out;
  height: 100%;
}

a.resourceWrapper:hover {
  text-decoration: none;
}

.resourceWrapper {
  position: relative;
  display: block;
  background: #FBF9FD;
  border-radius: 8px;
  /* height: 120px;*/
  padding: 15px;
  border: 1px solid transparent;
}

.resourceWrapper:hover {
  background: #F4F1F8;
  border: 1px solid #6022A6;
  cursor: pointer;
}

.resourceLogo {
  opacity: 1;
  position: absolute;
  bottom: 10px;
  left: 15px;
  width: 40px;
}

.resourceArrow {
  position: absolute;
  bottom: 10px;
  right: 10px;
  width: 17px;
}

.resourceHead {
  margin-bottom: 20px;
}

.resourceHead img {
  width: 140px;
}

/***************************************************************
MOBILE MIXINS
****************************************************************/
/*
   MARKETO FORM
    */
.mktoForm div, .mktoForm span, .mktoForm label, .mktoForm p {
  color: #797979 !important;
}

.mktoForm label.mktoLabel {
  padding-left: 18px;
}

.succesSentEmailContainer {
  padding-bottom: 300px;
}

.mktoForm .mktoFormRow {
  display: flex !important;
}

/*Contact Area*/
#requestForQuote {
  padding: 100px 0px 100px 0px;
  max-width: 1532px;
  padding-left: 60px;
  padding-right: 60px;
}

form.mktoForm .mktoFormRow {
  width: 100% !important;
}

.mktoForm .mktoClear {
  width: auto !important;
}

.mktoForm label.mktoLabel {
  font-weight: normal;
  color: #fff;
  font-size: 16px !important;
  width: 100% !important;
}

.mktoForm .mktoRequiredField label.mktoLabel {
  font-weight: normal;
  color: #fff;
  font-size: 16px !important;
  width: 100% !important;
}

.mktoForm .mktoRadioList > label, .mktoForm .mktoCheckboxList > label {
  color: #fff;
  font-size: 22px;
  font-weight: normal;
}

.mktoForm div, .mktoForm span, .mktoForm label, .mktoForm p {
  color: #797979;
}

form.mktoForm {
  width: 100% !important;
}

/*form.mktoForm .mktoFormCol{*/
/*width: 100% !important*/
/*}		*/
form.mktoForm .mktoTextField, form.mktoForm .mktoEmailField, form.mktoForm .mktoTelField, form.mktoForm textarea {
  background-color: #fff;
  border: 1px solid #fff;
  border-radius: 50px;
  padding: 10px;
  width: 100% !important;
}

#MktoPersonNotes {
  background-color: #303030;
  border: 1px solid #fff;
  border-radius: 20px;
  padding: 10px;
  width: 100% !important;
  padding: 10px;
  box-sizing: border-box;
  height: 100px;
}

.mktoLabel span {
  font-size: 20px;
}

form.mktoForm select.mktoField {
  background-color: #fff;
  border: 1px solid #fff;
  border-radius: 50px;
  padding: 10px;
  height: 37px;
  width: 100% !important;
  color: #757575 !important;
}

form.mktoForm .mktoRequiredField {
  width: 100% !important;
}

.mktoOffset {
  display: none;
}

.mktoForm .mktoAsterix {
  float: left;
  margin-right: 10px;
}

.mktoForm .mktoRequiredField .mktoAsterix {
  display: none;
}

.mktoForm .mktoGutter {
  display: none;
}

.mktoForm .mktoLabel strong {
  font-weight: 400;
}

.mktoCheckboxList {
  width: 100% !important;
}

.mktoFieldWrap {
  width: 100% !important;
}

.mktoForm div {
  width: 100% !important;
}

.mktoSkip {
  margin-left: 0 !important;
}

.mktoValid {
  width: 50px;
}

.mktoError {
  left: 15px !important;
}

.mktoErrorArrowWrap {
  width: 230px !important;
}

div.mktoErrorArrow {
  width: 20px !important;
}

.mktoForm .mktoRadioList > label, .mktoForm .mktoCheckboxList > label {
  margin-left: 0.9em;
  margin-top: -0.1em;
  margin-bottom: 0.3em;
  line-height: 1.2em;
  display: block;
  min-height: 12px;
}

.mktoForm .mktoRadioList, .mktoForm .mktoCheckboxList {
  padding: 0em;
  float: left;
}

#explicit_opt_in {
  position: absolute;
  top: 10px;
  left: 0;
}

.mktoForm .mktoFieldDescriptor span {
  margin-left: 0px;
}

/*===========================================*/
/*	DESKTOP LAYOUT
/*===========================================*/
@media (min-width: 1200px) {
  #mktoForm_54607 .mktoFieldWrap label[for=explicit_opt_in],
  #mktoForm_54607 .mktoFieldWrap label[for=inquiry_type],
  #mktoForm_54607 .mktoFieldWrap label[for=GDPR_contact__c],
  #mktoForm_54607 .mktoFieldWrap label[for=inquiry_detail] {
    width: 95% !important;
  }
  #mktoForm_54103 .mktoFieldWrap label[for=explicit_opt_in],
  #mktoForm_54103 .mktoFieldWrap label[for=inquiry_type],
  #mktoForm_54103 .mktoFieldWrap label[for=GDPR_contact__c],
  #mktoForm_54103 .mktoFieldWrap label[for=inquiry_detail] {
    width: 95% !important;
  }
  #page [data-rgen-id=rg6so] {
    max-width: 90%;
  }
  .mktoForm #FirstName {
    width: 100% !important;
  }
  .mktoForm #PostalCode {
    width: 100% !important;
  }
  .mktoForm #City {
    width: 100% !important;
  }
  .mktoForm .mktoHtmlText {
    padding: 0 !important;
  }
  /* FRENCH FORM */
  #mktoForm_58530 .mktoFieldWrap label[for=explicit_opt_in],
  #mktoForm_58530 .mktoFieldWrap label[for=inquiry_type],
  #mktoForm_58530 .mktoFieldWrap label[for=GDPR_contact__c],
  #mktoForm_58530 .mktoFieldWrap label[for=inquiry_detail] {
    width: 95% !important;
  }
  #mktoForm_58530 .mktoFieldWrap label[for=explicit_opt_in],
  #mktoForm_58530 .mktoFieldWrap label[for=inquiry_type],
  #mktoForm_58530 .mktoFieldWrap label[for=GDPR_contact__c],
  #mktoForm_58530 .mktoFieldWrap label[for=inquiry_detail] {
    width: 95% !important;
  }
  #page [data-rgen-id=rg6so] {
    max-width: 90%;
  }
  .mktoForm #FirstName {
    width: 100% !important;
  }
  .mktoForm #PostalCode {
    width: 100% !important;
  }
  .mktoForm #City {
    width: 100% !important;
  }
  .mktoForm .mktoHtmlText {
    padding: 0 !important;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  #mktoForm_54607 .mktoFieldWrap label[for=explicit_opt_in],
  #mktoForm_54607 .mktoFieldWrap label[for=inquiry_type],
  #mktoForm_54607 .mktoFieldWrap label[for=GDPR_contact__c],
  #mktoForm_54607 .mktoFieldWrap label[for=inquiry_detail] {
    width: 95% !important;
  }
  #mktoForm_54103 .mktoFieldWrap label[for=explicit_opt_in],
  #mktoForm_54103 .mktoFieldWrap label[for=inquiry_type],
  #mktoForm_54103 .mktoFieldWrap label[for=GDPR_contact__c],
  #mktoForm_54103 .mktoFieldWrap label[for=inquiry_detail] {
    width: 95% !important;
  }
  .mktoForm #FirstName {
    width: 100% !important;
  }
  .mktoForm #PostalCode {
    width: 100% !important;
  }
  .mktoForm #City {
    width: 100% !important;
  }
}
/*===========================================*/
/*	MOBILE & TABLET COMMON
/*===========================================*/
/*===========================================*/
/*	TABLET
/*===========================================*/
@media (min-width: 768px) and (max-width: 991px) {
  #mktoForm_54607 .mktoFieldWrap label[for=explicit_opt_in],
  #mktoForm_54607 .mktoFieldWrap label[for=inquiry_type],
  #mktoForm_54607 .mktoFieldWrap label[for=GDPR_contact__c],
  #mktoForm_54607 .mktoFieldWrap label[for=inquiry_detail] {
    width: 97.3% !important;
  }
  #mktoForm_54103 .mktoFieldWrap label[for=explicit_opt_in],
  #mktoForm_54103 .mktoFieldWrap label[for=inquiry_type],
  #mktoForm_54103 .mktoFieldWrap label[for=GDPR_contact__c],
  #mktoForm_54103 .mktoFieldWrap label[for=inquiry_detail] {
    width: 97.3% !important;
  }
  .mktoForm .mktoHtmlText {
    padding: 0 !important;
  }
  .mktoForm #FirstName {
    width: 100% !important;
  }
  .mktoForm #PostalCode {
    width: 100% !important;
  }
  .mktoForm #City {
    width: 100% !important;
  }
}
/*===========================================*/
/*	MOBILE
/*===========================================*/
@media (min-width: 600px) and (max-width: 767px) {
  #mktoForm_54607 .mktoFieldWrap label[for=explicit_opt_in],
  #mktoForm_54607 .mktoFieldWrap label[for=inquiry_type],
  #mktoForm_54607 .mktoFieldWrap label[for=GDPR_contact__c],
  #mktoForm_54607 .mktoFieldWrap label[for=inquiry_detail] {
    width: 100% !important;
  }
  #mktoForm_54103 .mktoFieldWrap label[for=explicit_opt_in],
  #mktoForm_54103 .mktoFieldWrap label[for=inquiry_type],
  #mktoForm_54103 .mktoFieldWrap label[for=GDPR_contact__c],
  #mktoForm_54103 .mktoFieldWrap label[for=inquiry_detail] {
    width: 100% !important;
  }
  .mktoForm #FirstName {
    width: 100% !important;
  }
  .mktoForm .mktoHtmlText {
    padding: 0 !important;
  }
}
@media (min-width: 480px) and (max-width: 599px) {
  #mktoForm_54607 .mktoFieldWrap label[for=explicit_opt_in],
  #mktoForm_54607 .mktoFieldWrap label[for=inquiry_type],
  #mktoForm_54607 .mktoFieldWrap label[for=GDPR_contact__c],
  #mktoForm_54607 .mktoFieldWrap label[for=inquiry_detail] {
    width: 100% !important;
  }
  #mktoForm_54103 .mktoFieldWrap label[for=explicit_opt_in],
  #mktoForm_54103 .mktoFieldWrap label[for=inquiry_type],
  #mktoForm_54103 .mktoFieldWrap label[for=GDPR_contact__c],
  #mktoForm_54103 .mktoFieldWrap label[for=inquiry_detail] {
    width: 100% !important;
  }
  .mktoForm #FirstName {
    width: 100% !important;
  }
}
@media (min-width: 200px) and (max-width: 479px) {
  #mktoForm_54607 .mktoFieldWrap label[for=explicit_opt_in],
  #mktoForm_54607 .mktoFieldWrap label[for=inquiry_type],
  #mktoForm_54607 .mktoFieldWrap label[for=GDPR_contact__c],
  #mktoForm_54607 .mktoFieldWrap label[for=inquiry_detail] {
    width: 100% !important;
  }
  #mktoForm_54103 .mktoFieldWrap label[for=explicit_opt_in],
  #mktoForm_54103 .mktoFieldWrap label[for=inquiry_type],
  #mktoForm_54103 .mktoFieldWrap label[for=GDPR_contact__c],
  #mktoForm_54103 .mktoFieldWrap label[for=inquiry_detail] {
    width: 100% !important;
  }
  .mktoForm #page [data-rgen-id=rgN0o] {
    font-size: 24px !important;
  }
  .mktoForm #page [data-rgen-id=rg6so] {
    max-width: 80%;
  }
  .mktoForm #FirstName {
    width: 100% !important;
  }
  .mktoForm #PostalCode {
    width: 100% !important;
  }
  .mktoForm #City {
    width: 100% !important;
  }
}
/* custom button header */
#home .btn-white:hover, #home .btn-white:focus, #home .btn-white:active, #home .btn-white.active {
  background-color: transparent;
  border-color: #ffffff;
  color: #ffffff;
}

#home .btn-white {
  background-color: #ffffff;
  border-color: #ffffff;
  color: #1f2229;
}

/***********************************************
Custom Form
***********************************************/
.fa {
  font-family: FontAwesome !important;
}

.mktoForm .input-group-addon {
  display: none !important;
  padding: 6px 12px;
  font-size: 17px;
  font-weight: 400;
  height: 40px;
  width: 40px;
}

.mktoForm .input-group-addon {
  padding: 6px 12px;
  font-size: 17px;
  font-weight: 400;
  height: 40px;
  width: 40px;
  line-height: 1.62;
  color: #555;
  text-align: center;
  background-color: #eee;
  border: 1px solid #ccc;
  border-right-width: 1px;
  border-right-style: solid;
  border-right-color: rgb(204, 204, 204);
  border-radius: 4px;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  /* -webkit-box-shadow: 0px 2px 5px 0px rgba(0,0,0,0.21)!important;
   -moz-box-shadow: 0px 2px 5px 0px rgba(0,0,0,0.21)!important;
   box-shadow: 0px 2px 5px 0px rgba(0,0,0,0.21)!important;*/
}

.mktoForm span.input-group-addon i {
  color: #009edf;
  font-size: 17px;
}

/*#Email {width:89% !important; float:right !important;}*/
/*.mktoLabel label[for="Email"] { width: 40px !important; float:left !important;}*/
.mktoForm .mktoFieldWrap {
  height: auto !important;
}

.bg-form-transparent {
  background: rgba(0, 0, 0, 0.2);
  background-color: rgba(0, 0, 0, 0.4) !important;
  background-image: none;
  background-repeat: repeat;
  background-attachment: scroll;
  background-clip: border-box;
  background-origin: padding-box;
  background-position-x: 0%;
  background-position-y: 0%;
  background-size: auto auto;
}

.mktoForm select.mktoField {
  height: 45px !important;
  font-size: 18px !important;
}

.mktoForm .mktoFormCol,
.mktoForm .mktoFieldWrap {
  float: none !important;
}

.mktoForm .mktoFormCol,
.mktoForm input[type=text],
.mktoForm input[type=url],
.mktoForm input[type=email],
.mktoForm input[type=tel],
.mktoForm input[type=number],
.mktoForm input[type=date],
.mktoForm textarea.mktoField,
.mktoForm select.mktoField {
  width: 100% !important;
}

.mktoForm {
  font-family: GEInspiraSans-Regular, sans-serif !important;
  padding: 0 !important;
  box-sizing: border-box !important;
  width: 100% !important;
}

.mktoForm option {
  padding: 0 !important;
  color: #000 !important;
}

.mktoForm .mktoAsterix {
  float: left !important;
  padding-right: 5px !important;
  padding-left: 0 !important;
}

.mktoForm.hide-asterisk .mktoAsterix {
  display: none !important;
}

/*.mktoForm label { font-size: 14px !important; }*/
.mktoForm .mktoLabel {
  font-size: 14px !important;
  margin-bottom: 0px !important;
  padding-top: 0px !important;
  float: left !important;
  color: #000000;
}

.mktoForm .mktoLabel span {
  font-size: 12px !important;
}

.mktoForm .mktoRadioList,
.mktoForm .mktoCheckboxList {
  width: auto !important;
}

.mktoForm .mktoCheckboxList {
  float: left !important;
  clear: none !important;
}

.mktoLogicalField,
.mktoForm input[type=range] {
  width: 100% !important;
}

.mktoForm .mktoLogicalField label,
.mktoForm .mktoRadioList label {
  font-weight: normal !important;
}

.mktoForm input[type=text],
.mktoForm input[type=url],
.mktoForm input[type=email],
.mktoForm input[type=tel],
.mktoForm input[type=number],
.mktoForm input[type=date],
.mktoForm select,
.mktoForm textarea {
  border: 1px solid #DADADA !important;
  margin: 0px auto !important;
  float: none !important;
  margin-bottom: 4px !important;
  padding: 10px 6px !important;
  -moz-border-radius: 0 !important;
  -webkit-border-radius: 0 !important;
  -ms-border-radius: 0 !important;
  border-radius: 0 !important;
  width: 100% !important;
  font-size: 18px !important;
  line-height: 1.2em !important;
  height: 40px !important;
  min-height: 40px !important;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
  color: #6f6f6f;
}

.mktoForm textarea {
  height: auto !important;
}

.mktoFieldDescriptor .mktoFormCol {
  margin-bottom: 0px !important;
}

.mktoButtonRow {
  display: block !important;
}

.mktoForm .mktoOffset,
.mktoForm .mktoGutter {
  display: none !important;
}

.mktoForm .mktoFormCol,
.mktoForm .mktoFieldWrap {
  float: none !important;
  padding-left: 3px;
  padding-right: 3px;
}

.mktoForm .mktoButtonWrap {
  margin: auto;
}

.mktoForm .mktoButton {
  font-size: 18px !important;
  -moz-border-radius: 0 !important;
  -webkit-border-radius: 0 !important;
  -ms-border-radius: 0 !important;
  border-radius: 0 !important;
  border: 0 !important;
  text-transform: uppercase !important;
  font-weight: bold !important;
  margin-top: 0px !important;
  display: block !important;
  padding: 5px 10px !important;
  width: 100% !important;
  color: #fff !important;
  min-height: 40px !important;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
  text-shadow: none !important;
}

.mktoForm .cf_sign_on_caption,
.mktoForm .cf_sign_on_button {
  font-size: 12px;
}

/*.mktoForm .mktoRadioList, .mktoForm .mktoCheckboxList {
    padding: 1px 10px 0 0 !important;
}*/
.mktoForm legend {
  display: none;
}

.mktoForm fieldset {
  padding: 0 0 0 0 !important;
  margin: 0 !important;
}

.mktoForm fieldset .mktoFieldDescriptor {
  height: auto;
  margin-bottom: 0px !important;
}

.mktoForm fieldset .mktoFieldWrap {
  margin-bottom: 20px !important;
}

.mktoForm fieldset .mktoFieldDescriptor label span {
  color: #2d3345;
}

.mktoForm fieldset label {
  flex: 1;
}

.mktoForm fieldset input {
  flex: 2;
}

.mktoHtmlText {
  display: inline-block;
  width: 100% !important;
  padding: 0;
  line-height: normal;
}

.mktoHtmlText p {
  font-size: 13px;
}

.mktoHtmlText a {
  margin: 0;
  padding: 0;
  text-decoration: underline;
}

.mktoForm input[type=text]:focus, .mktoForm input[type=url]:focus, .mktoForm input[type=email]:focus, .mktoForm input[type=tel]:focus, .mktoForm input[type=number]:focus, .mktoForm input[type=date]:focus, .mktoForm select.mktoField:focus, .mktoForm textarea.mktoField:focus {
  border: 1px solid #9b9b9b !important;
  -moz-border-top-colors: #9b9b9b;
  -moz-border-bottom-colors: #9b9b9b;
  -moz-border-left-colors: #9b9b9b;
  -moz-border-right-colors: #9b9b9b;
}

/* Placeholder Focus */
/* Chrome/Opera/Safari */
.mktoForm input:focus::-webkit-input-placeholder,
.mktoForm textarea:focus::-webkit-input-placeholder {
  color: transparent;
}

[placeholder]:focus::-webkit-input-placeholder {
  color: transparent;
}

/* Firefox 19+ */
.mktoForm input:focus::-moz-placeholder,
.mktoForm textarea:focus::-moz-placeholder {
  color: transparent;
}

/* Firefox 18- */
.mktoForm input:focus:-moz-placeholder,
.mktoForm textarea:focus:-moz-placeholder {
  color: transparent;
}

/* IE 10+ */
.mktoForm input:focus:-ms-input-placeholder,
.mktoForm textarea:focus:-ms-input-placeholder {
  color: transparent;
}

/* Add your custom CSS below */
/* Form Select Arrow */
.mktoForm select.mktoField {
  -webkit-appearance: none;
  -moz-appearance: none;
  -o-appearance: none;
  appearance: none;
  text-indent: 1px;
  text-overflow: "";
  text-indent: 0.01px;
  text-overflow: "";
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  display: inline-block;
  border-radius: 0;
  padding: 0.2em 18px 0.2em 0.3em;
  background: #fff url(https://gehc.landingbox.net/landingpage/vivid-t9-en-lp1/images/arrow-down.png) center right no-repeat;
}

/* IE11 hide native button */
select::-ms-expand {
  display: none !important;
}

select:disabled.simple-control::-ms-expand {
  display: none !important;
}

/* FORM */
.mktoForm .mktoRequiredField .mktoAsterix {
  display: none;
}

.mktoForm .mktoRadioList,
.mktoForm .mktoCheckboxList {
  padding: 1px 10px 0 0 !important;
  width: 14px !important;
}

.mktoForm .mktoButtonRow {
  margin-left: 0 !important;
}

.mktoForm .mktoButtonWrap {
  margin-left: 0 !important;
}

/* FROM END */
/* popup form */
.popup-title {
  color: #fff;
}

#mktoForm_54607 fieldset .mktoFieldDescriptor label span {
  color: #ffffff !important;
}

/* NEW FORM FIXES */
.mktoForm fieldset .mktoFieldDescriptor {
  padding: 0px 0px 0px 20px;
}

#explicit_opt_in {
  position: absolute;
  top: 3px;
  left: 7px !important;
}

/*************************************
MODAL FORM
*************************************/
.mktoForm .mktoRadioList, .mktoForm .mktoCheckboxList {
  padding: 1px 10px 0 0 !important;
  width: 14px !important;
  position: absolute;
  top: 5px;
}

.mktoForm input[type=checkbox] + label:before {
  opacity: 0;
}

.mktoForm input[type=checkbox], .mktoForm input[type=radio] {
  opacity: 1;
}

.mktoForm input[type=checkbox] + label:before {
  display: none;
}

.mktoForm input[type=checkbox], .mktoForm input[type=radio] {
  opacity: 1;
}

.mktoForm .mktoRequiredField .mktoAsterix {
  display: none !important;
}

.mktoForm p {
  line-height: 14px;
  font-size: 13px;
}

.mktoForm p a {
  font-size: 13px;
}

.mktoForm .mktoRadioList, .mktoForm .mktoCheckboxList {
  position: static;
}

.modal-content {
  width: fit-content;
  max-width: inherit;
  height: inherit;
  margin: 0 auto;
  pointer-events: all;
  padding: 0;
}

.mktoForm .mktoButtonWrap.mktoStriped .mktoButton {
  background-image: linear-gradient(to bottom, #6022A6, #6022A6) !important;
  width: fit-content !important;
  border-radius: 8px !important;
  padding: 13px 24px 12px !important;
  text-transform: none !important;
  letter-spacing: 0px !important;
}

.mktoForm a {
  color: #6022A6 !important;
}

.marketoModal .modal-dialog {
  max-width: none;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
@media (max-width: 767px) {
  .marketoModal .modal-dialog {
    padding-right: 0;
    padding-left: 0;
    margin: 0;
  }
}
.marketoModal .modal-dialog .modal-header {
  padding-top: 3rem;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  border-bottom: none;
  position: relative;
}
@media (min-width: 768px) {
  .marketoModal .modal-dialog .modal-header {
    padding-left: 6.125rem;
    padding-right: 6.125rem;
  }
}
.marketoModal .modal-dialog .modal-header #formClose {
  position: absolute;
  top: 0;
  right: 0;
  padding: 1.5rem;
  cursor: pointer;
  background-color: transparent;
  border: none;
}
@media (min-width: 768px) {
  .marketoModal .modal-dialog .modal-header #formClose {
    padding: 2rem;
  }
}
.marketoModal .modal-dialog .modal-body {
  padding-bottom: 4rem;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
@media (min-width: 768px) {
  .marketoModal .modal-dialog .modal-body {
    padding-left: 6.125rem;
    padding-right: 6.125rem;
  }
}
.marketoModal .modal-dialog .form .mktoForm label.mktoLabel {
  padding-left: 26px;
  font-size: 1rem;
  font-size: clamp(1rem, 0.8611111111rem + 0.3703703704vw, 1.125rem);
  line-height: 1.25rem;
  line-height: clamp(1.25rem, 0.8333333333rem + 1.1111111111vw, 1.625rem);
  color: #5B5B67 !important;
}
.marketoModal .modal-dialog .form .mktoForm select.mktoField, .marketoModal .modal-dialog .form #FirstName, .marketoModal .modal-dialog .form #LastName, .marketoModal .modal-dialog .form #Email, .marketoModal .modal-dialog .form #formCompanyName, .marketoModal .modal-dialog .form #formLeadNotes, .marketoModal .modal-dialog .form #PostalCode, .marketoModal .modal-dialog .form #City, .marketoModal .modal-dialog .form #Phone, .marketoModal .modal-dialog .form #Company {
  background-color: #FBF9FD !important;
  border: 1px solid #C7C8CF !important;
  border-radius: 4px !important;
  font-family: "SourceSansPro", "HelveticaNeueLight", "HelveticaNeue-Light", "Helvetica Neue Light", "HelveticaNeue", "Helvetica Neue", Arial, sans-serif !important;
}
.marketoModal .modal-dialog .form .mktoHtmlText p, .marketoModal .modal-dialog .form .mktoHtmlText a {
  font-size: 0.875rem;
  font-size: clamp(0.875rem, 0.7361111111rem + 0.3703703704vw, 1rem);
  line-height: 1.25rem;
  line-height: clamp(1.25rem, 0.9722222222rem + 0.7407407407vw, 1.5rem);
  color: #5B5B67 !important;
  text-decoration: none;
  font-family: "SourceSansPro", "HelveticaNeueLight", "HelveticaNeue-Light", "Helvetica Neue Light", "HelveticaNeue", "Helvetica Neue", Arial, sans-serif !important;
}
.marketoModal .modal-dialog .form .mktoForm .mktoButtonWrap.mktoSimple .mktoButton {
  border-radius: 8px !important;
}
@media (min-width: 768px) {
  .marketoModal .modal-dialog .form .mktoForm .mktoButtonWrap.mktoSimple .mktoButton {
    max-width: 150px;
    background: #6022A6 !important;
    border-color: #6022A6 !important;
    padding: 13px 24px 12px !important;
    text-transform: none !important;
    letter-spacing: 0px !important;
    font-family: "SourceSansPro", "HelveticaNeueLight", "HelveticaNeue-Light", "Helvetica Neue Light", "HelveticaNeue", "Helvetica Neue", Arial, sans-serif !important;
  }
}

.mktoForm fieldset {
  border: 0 !important;
}

.mktoForm .mktoLabel span, .mktoForm div, .mktoForm span, .mktoForm label, .mktoForm p {
  font-size: 16px !important;
}

.mktoForm fieldset .mktoFieldDescriptor {
  padding: 0px 0px 0px 28px;
}

.marketoModal .modal-dialog .form .mktoForm label.mktoLabel {
  padding-left: 0;
  padding-bottom: 5px;
  font-size: 1rem;
  font-size: clamp(1rem, 0.8611111111rem + 0.3703703704vw, 1.125rem);
  line-height: 1.25rem;
  line-height: clamp(1.25rem, 0.8333333333rem + 1.1111111111vw, 1.625rem);
  color: #5B5B67 !important;
  font-family: "SourceSansPro", "HelveticaNeueLight", "HelveticaNeue-Light", "Helvetica Neue Light", "HelveticaNeue", "Helvetica Neue", Arial, sans-serif !important;
  margin-bottom: 0 !important;
}

.mktoForm label.mktoLabel {
  font-weight: normal;
  color: #fff;
  font-size: 16px !important;
  width: 100% !important;
}

#explicit_opt_in, #formOptIn {
  accent-color: #6022A6;
}

#explicit_opt_in, #formOptIn {
  position: absolute;
  top: 3px;
  left: 7px !important;
}

.marketoModal .modal-dialog .form .mktoHtmlText p, .marketoModal .modal-dialog .form .mktoHtmlText a {
  font-size: 16px !important;
  line-height: clamp(1.25rem, 0.9722222222rem + 0.7407407407vw, 1.5rem);
  margin-bottom: 16px;
  color: #5B5B67 !important;
  text-decoration: none;
  font-family: "SourceSansPro", "HelveticaNeueLight", "HelveticaNeue-Light", "Helvetica Neue Light", "HelveticaNeue", "Helvetica Neue", Arial, sans-serif !important;
}

/***************************************************************
STYLES
****************************************************************/
html {
  font-size: 16px;
}

#vivid-magazine h1 {
  margin-top: 0;
}
#vivid-magazine section {
  padding: 32px 0;
}
#vivid-magazine section.grey100 {
  background: #FBF9FD;
}
#vivid-magazine section.grey250 {
  background: #F4F1F8;
}
@media (min-width: 768px) {
  #vivid-magazine .box_content.top {
    padding-right: 20%;
  }
}
#vivid-magazine .pills {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 64px 0;
}
#vivid-magazine .pills .button {
  border-radius: 32px;
  border: 1px solid #C7C8CF;
  font-weight: normal;
}
#vivid-magazine .pills .btnEmpty {
  color: #222222;
}
#vivid-magazine .pills .btnEmpty:hover {
  color: #fff;
}
#vivid-magazine #grid_editions {
  margin: 64px 0 0 0;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
}
@media (max-width: 767px) {
  #vivid-magazine #grid_editions {
    display: none;
  }
}
#vivid-magazine #grid_editions img {
  max-width: 100%;
  margin-bottom: 1rem;
  border: 1px solid #F4F1F8;
  border-radius: 8px;
}
#vivid-magazine #grid_editions .pillgroup {
  gap: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
#vivid-magazine #grid_editions .pillgroup .pill {
  border-radius: 24px;
  border: 1px solid #C7C8CF;
  font-weight: normal;
  padding: 3px 16px;
  font-size: 16px;
  font-style: normal;
  background: #fff;
}
#vivid-magazine #grid_editions div.item {
  text-align: center;
  padding: 8px;
  border-radius: 8px;
}
#vivid-magazine #grid_editions div.item img {
  max-width: 100%;
  margin-bottom: 1rem;
  border: 1px solid #F4F1F8;
  border-radius: 8px;
}
#vivid-magazine #grid_editions div.item.selected {
  color: #fff;
  background: #6022A6;
}
#vivid-magazine #grid_editions div.item.selected p {
  color: #fff;
}
#vivid-magazine #grid_editions div.item.selected img {
  border: 1px solid #fff;
}
#vivid-magazine #slider_editions {
  margin: 64px 0;
  padding: 0 64px;
  display: none;
}
@media (max-width: 767px) {
  #vivid-magazine #slider_editions {
    padding: 0 32px;
    display: block;
  }
}
#vivid-magazine #slider_editions div.item {
  text-align: center;
  padding: 8px;
  border-radius: 8px;
}
#vivid-magazine #slider_editions div.item img {
  max-width: 100%;
  margin-bottom: 1rem;
  border: 1px solid #F4F1F8;
  border-radius: 8px;
}
#vivid-magazine #slider_editions div.item.selected {
  background: #6022A6;
}
#vivid-magazine #slider_editions div.item.selected img {
  border: 1px solid #6022A6;
}
#vivid-magazine #slider_editions .pillgroup {
  gap: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
#vivid-magazine #slider_editions .pillgroup .pill {
  border-radius: 24px;
  border: 1px solid #C7C8CF;
  font-weight: normal;
  padding: 6px 24px;
  font-size: 16px;
  font-style: normal;
  background: #fff;
}
#vivid-magazine .pretitle {
  font-size: 1rem;
  font-size: clamp(1rem, 0.8611111111rem + 0.3703703704vw, 1.125rem);
  line-height: 1.25rem;
  line-height: clamp(1.25rem, -0.4166666667rem + 4.4444444444vw, 2.75rem);
}
#vivid-magazine h2 {
  font-size: 1.75rem;
  font-size: clamp(1.75rem, 1.1944444444rem + 1.4814814815vw, 2.25rem);
  line-height: 2.25rem;
  line-height: clamp(2.25rem, 1.4166666667rem + 2.2222222222vw, 3rem);
  letter-spacing: -1.25px;
  color: #222222;
  margin-bottom: 1rem;
}
#vivid-magazine .p {
  font-size: 1.125rem;
  font-size: clamp(1.125rem, 0.8472222222rem + 0.7407407407vw, 1.375rem);
  line-height: 1.5rem;
  line-height: clamp(1.5rem, 0.9444444444rem + 1.4814814815vw, 2rem);
}
#vivid-magazine #edition {
  padding-top: 64px;
}
#vivid-magazine #edition .big {
  font-size: 1.25rem;
  font-size: clamp(1.25rem, 0.9722222222rem + 0.7407407407vw, 1.5rem);
  line-height: 1.75rem;
  line-height: clamp(1.75rem, 1.4722222222rem + 0.7407407407vw, 2rem);
}
@media (min-width: 768px) {
  #vivid-magazine #edition .big {
    padding-right: 20%;
  }
}
#vivid-magazine #edition .hr {
  margin: 64px 0;
}
#vivid-magazine .articles {
  margin-top: 32px;
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr 1fr;
}
@media (max-width: 767px) {
  #vivid-magazine .articles {
    grid-template-columns: 1fr;
  }
}
#vivid-magazine .articles > div {
  margin-bottom: 16px;
}
#vivid-magazine .articles > div img {
  max-width: 100%;
  display: block;
}
#vivid-magazine .articles > div .img {
  display: block;
  overflow: hidden;
  transition: all 0.5s ease-in-out;
  scale: 1;
  border-radius: 8px;
  margin-bottom: 32px;
}
#vivid-magazine .articles > div .img img {
  transition: all 0.5s ease-in-out;
}
#vivid-magazine .articles > div .img img:hover {
  scale: 1.1;
}
#vivid-magazine .articles > div h3 {
  font-size: 1rem;
  font-size: clamp(1rem, 0.5833333333rem + 1.1111111111vw, 1.375rem);
  line-height: 1.5rem;
  line-height: clamp(1.5rem, 0.9444444444rem + 1.4814814815vw, 2rem);
  margin-bottom: 8px;
}
#vivid-magazine .articles > div p {
  margin-bottom: 20px;
}
#vivid-magazine .articles.threecol {
  grid-template-columns: 1fr 1fr 1fr;
}
@media (max-width: 767px) {
  #vivid-magazine .articles.threecol {
    grid-template-columns: 1fr;
  }
}
#vivid-magazine .articles.threecol > div .img {
  margin-bottom: 24px;
}
#vivid-magazine .bigcnt {
  background-size: cover;
  aspect-ratio: 16/9;
  margin-bottom: 2rem;
  padding: 4vw 8vw;
  color: #fff;
  display: flex;
  align-items: flex-end;
}
#vivid-magazine .bigcnt p {
  color: #fff;
}
#vivid-magazine .bigcnt .btnEmpty {
  background: #fff !important;
}
#vivid-magazine section#contact {
  background: #6022A6;
  color: #fff;
}
#vivid-magazine section#contact h2 {
  color: #fff;
}
#vivid-magazine .button.white {
  background: #fff;
  color: #6022A6;
}
#vivid-magazine #slider_testimonials li, #vivid-magazine #slider_editions li {
  text-align: center;
}
#vivid-magazine #slider_testimonials li .quote, #vivid-magazine #slider_editions li .quote {
  font-size: 1.25rem;
  font-size: clamp(1.25rem, 0.8333333333rem + 1.1111111111vw, 1.625rem);
  line-height: 1.5rem;
  line-height: clamp(1.5rem, 0.3888888889rem + 2.962962963vw, 2.5rem);
  font-style: italic;
  color: #5B5B67;
  margin-bottom: 2rem;
}
#vivid-magazine #slider_testimonials li h3, #vivid-magazine #slider_editions li h3 {
  margin-bottom: 0;
}
#vivid-magazine #slider_testimonials .flex-control-nav, #vivid-magazine #slider_editions .flex-control-nav {
  bottom: -50px;
}
#vivid-magazine #slider_testimonials .flex-direction-nav a, #vivid-magazine #slider_editions .flex-direction-nav a {
  width: 64px;
  height: 64px;
  background: #6022A6;
  border-radius: 32px;
  top: 60%;
}
#vivid-magazine #slider_testimonials .flex-direction-nav a:hover, #vivid-magazine #slider_editions .flex-direction-nav a:hover {
  background: #512286;
}
@media (max-width: 767px) {
  #vivid-magazine #slider_testimonials .flex-direction-nav a, #vivid-magazine #slider_editions .flex-direction-nav a {
    width: 48px;
    height: 48px;
  }
}
#vivid-magazine #slider_testimonials .flex-direction-nav a:before, #vivid-magazine #slider_editions .flex-direction-nav a:before {
  content: "";
  background: url("/src/img/caret-right.svg") no-repeat center center;
  background-size: 32px 32px;
  color: #fff;
  text-shadow: none;
  width: 64px;
  height: 64px;
}
@media (max-width: 767px) {
  #vivid-magazine #slider_testimonials .flex-direction-nav a:before, #vivid-magazine #slider_editions .flex-direction-nav a:before {
    width: 48px;
    height: 48px;
    background-size: 24px 24px;
  }
}
#vivid-magazine #slider_testimonials .flex-direction-nav a.flex-prev:before, #vivid-magazine #slider_editions .flex-direction-nav a.flex-prev:before {
  background-image: url("/src/img/caret-left.svg");
}
#vivid-magazine #slider_testimonials .flex-direction-nav .flex-next, #vivid-magazine #slider_editions .flex-direction-nav .flex-next {
  opacity: 1;
  right: 10px;
}
#vivid-magazine #slider_testimonials .flex-direction-nav .flex-prev, #vivid-magazine #slider_editions .flex-direction-nav .flex-prev {
  opacity: 1;
  left: 10px;
}
#vivid-magazine #slider_editions .flex-direction-nav a {
  top: 50%;
}
#vivid-magazine #slider_editions .flex-direction-nav .flex-next {
  opacity: 1;
  right: -10px;
}
#vivid-magazine #slider_editions .flex-direction-nav .flex-prev {
  opacity: 1;
  left: -10px;
}

#marketoModal {
  background: rgba(0, 0, 0, 0.3);
}
#marketoModal .modal-content {
  padding: 0;
}
#marketoModal .modal-dialog {
  width: 876px;
}
@media (max-width: 767px) {
  #marketoModal .modal-dialog {
    width: 95%;
    margin: 100px auto 20px auto;
  }
}
#marketoModal .modal-body {
  padding: 96px;
}
@media (max-width: 767px) {
  #marketoModal .modal-body {
    padding: 16px;
    padding-top: 64px;
  }
}
#marketoModal .modal-content {
  position: relative;
  border-radius: 16px;
  box-shadow: none;
  border: none;
  max-width: none;
  width: 100%;
}
#marketoModal button.modalClose {
  color: #333;
  border: 0;
  background: none;
  width: 34px;
  height: 34px;
  line-height: 26px;
  padding: 0;
  margin: 0;
  position: absolute;
  right: 24px;
  top: 24px;
  z-index: 100;
}

#LblformOptIn {
  padding-left: 20px;
}

#inquiry_type {
  position: static;
}

.marketoModal .modal-dialog .form .mktoHtmlText a {
  color: #6022A6 !important;
}

#formOptIn {
  top: 7px !important;
}

#box_content.fixHeight {
  padding-top: 45px;
}

/*.list .item:hover{*/
/*background: none !important;*/
/*}*/
/**********************************/
/**HELPER CLASSES******************/
/**********************************/
.nopadding {
  padding: 0;
}

.p-r-0 {
  padding-right: 0;
}

img.responsive {
  width: 100%;
  height: auto;
}

.videoHelper_iframe {
  position: relative;
  padding-bottom: 56.25%;
  padding-top: 35px;
  height: 0;
  overflow: hidden;
}

.videoHelper_iframe iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.filetyp i {
  color: #6022A6;
  font-size: 13px;
}

.ratio {
  position: relative;
}

.ratio:before {
  display: block;
  content: "";
  width: 100%;
  padding-top: 56.25%;
}

.ratio > img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.popover, .popover .popover-title, .popover .popover-content {
  color: #666 !important;
  font-size: 14px !important;
  text-transform: none !important;
  border-bottom: none !important;
}

.popover-title {
  font-weight: bold;
}

/**********************************/
/**VIDEO CLASSES*******************/
/**********************************/
.videocontent h5 {
  color: #6022A6 !important;
  font-size: 16px !important;
  text-decoration: none !important;
  margin-bottom: 10px !important;
  line-height: 18px;
  height: 54px;
  overflow: hidden;
}

.videocontent h5 a:link, .videocontent h5 a:visited {
  color: #6022A6 !important;
  font-size: 16px !important;
  text-decoration: none !important;
  margin-bottom: 10px !important;
  display: block;
  flex-grow: 1;
}

.videocontent h2 {
  color: #6022A6 !important;
  font-size: 24px !important;
  line-height: 26px;
  text-decoration: none !important;
  margin-bottom: 10px !important;
  display: block;
}

.videocontent {
  font-size: 12px;
  color: #e5e5e5 !important;
  text-decoration: none;
}

/**********************************/
/**LAST VIEWED VIDEOS**************/
/**********************************/
.lastviewed header {
  background-color: #6022A6;
  padding: 5px 10px;
  height: 35px;
  overflow: hidden;
}

.lastviewed header h3 {
  color: white;
  text-transform: uppercase;
  font-size: 18px;
  font-weight: bold;
  letter-spacing: 1px;
}

.lastviewed header h3 a:link, .lastviewed header h3 a:visited {
  background-color: white;
  color: #6022A6;
  font-size: 12px;
  line-height: 22px;
  margin-top: 2px;
  height: 20px;
  text-transform: uppercase;
  border-radius: 10px;
  padding: 0px 10px;
  float: right;
}

.lastviewed header h3 a:hover, .lastviewed header h3 a:active {
  text-decoration: none !important;
  background-color: rgba(255, 255, 255, 0.7);
}

.lastviewed .video-container {
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#d9d6e8+0,ffffff+100 */
  background: #d9d6e8; /* Old browsers */
  background: -moz-linear-gradient(top, #d9d6e8 0%, #ffffff 100%); /* FF3.6-15 */
  background: -webkit-linear-gradient(top, #d9d6e8 0%, #ffffff 100%); /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, #d9d6e8 0%, #ffffff 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#d9d6e8", endColorstr="#ffffff",GradientType=0 ); /* IE6-9 */
  padding: 10px;
  min-height: 515px;
  overflow: hidden;
}

.lastviewed .video-container .row {
  border-bottom: 1px solid #bebec8;
  padding-bottom: 10px;
  margin: 0 10px 10px 10px;
  /*height:96px;*/
  overflow: hidden;
}

.lastviewed .video-container .row div {
  /*height:85px;*/
  overflow: hidden;
}

.lastviewed .iconType {
  position: absolute;
  right: 0;
  bottom: 10px;
  color: #6022A6;
  font-size: 15px;
}

.lastviewed .video-container > .row {
  position: relative;
}

.video-container a {
  text-decoration: none;
}

/**********************************/
/**MAIN VIDEO**********************/
/**********************************/
.mainvideo .videocontent {
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#dce1e5+0,ffffff+71 */
  background: #dce1e5; /* Old browsers */
  background: -moz-linear-gradient(top, #dce1e5 0%, #ffffff 71%); /* FF3.6-15 */
  background: -webkit-linear-gradient(top, #dce1e5 0%, #ffffff 71%); /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, #dce1e5 0%, #ffffff 71%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#dce1e5", endColorstr="#ffffff",GradientType=0 ); /* IE6-9 */
  padding: 10px;
  overflow: hidden;
  margin-top: 10px;
  border-bottom: 1px solid #bebec8;
  min-height: 136px;
}

.mainvideo.home .videocontent {
  min-height: 143px;
}

.mainvideo .videocontent a {
  min-height: 60px;
  margin-bottom: 10px;
  overflow: hidden;
  display: block;
}

.mainvideo .videocontent a.button {
  min-height: 0;
  height: 30px;
  margin-bottom: 0;
  border-radius: 15px;
  float: left;
  margin-right: 15px;
  background: #4a9d46;
  font-size: 14px;
  line-height: 32px;
  padding: 0 15px;
}

.mainvideo .views {
  float: left;
  font-size: 18px;
  letter-spacing: 1px;
  line-height: 30px;
  color: #666;
}

.mainvideo .likecontainer {
  float: right;
  font-size: 18px;
  font-weight: bold;
  letter-spacing: 1px;
  height: 30px;
  color: white;
  overflow: hidden;
}

.mainvideo .likecontainer .btn-like {
  background-color: #6022A6;
  border-top-left-radius: 15px;
  border-bottom-left-radius: 15px;
  border-right: 1px solid white;
  height: 30px;
  float: left;
  padding: 0 10px;
  line-height: 30px;
}

.mainvideo .likecontainer .btn-like:hover {
  color: #b0abce;
  cursor: pointer;
}

.mainvideo .likecontainer .likecount {
  background-color: #b0abce;
  border-top-right-radius: 15px;
  border-bottom-right-radius: 15px;
  height: 30px;
  float: left;
  padding: 0 10px;
  line-height: 30px;
}

/**********************************/
/**MEDIUM VIDEOS*******************/
/**********************************/
.videocontainer-medium {
  margin-top: 50px;
}

.videocontainer-medium .item {
  padding-bottom: 0;
}

.videocontainer-medium h3 {
  border-bottom: 3px solid #6022A6;
  text-transform: uppercase;
  font-weight: bold;
  letter-spacing: 1px;
  font-size: 20px;
}

.videocontainer-medium h3 a:link, .videocontainer-medium h3 a:visited {
  color: white !important;
  font-size: 12px;
  line-height: 22px;
  margin-top: 2px;
  height: 20px;
  text-transform: uppercase;
  border-radius: 10px;
  padding: 0px 10px;
  float: right;
  background-color: #6022A6;
}

.videocontainer-medium h3 a:hover, .videocontainer-medium h3 a:active {
  text-decoration: none !important;
  background-color: rgba(89, 81, 148, 0.7);
}

.videocontainer-medium .item .videoimg {
  /*height:137px;*/
  /*overflow: hidden;*/
  position: relative;
}

.videocontainer-medium .item .videoimg img {
  object-fit: cover;
  object-position: center;
  width: 100%;
  height: 150px;
}

.videocontainer-medium .item .videocontent {
  padding: 10px;
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#dce1e5+0,ffffff+71 */
  background: #dce1e5; /* Old browsers */
  background: -moz-linear-gradient(top, #dce1e5 0%, #ffffff 71%); /* FF3.6-15 */
  background: -webkit-linear-gradient(top, #dce1e5 0%, #ffffff 71%); /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, #dce1e5 0%, #ffffff 71%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#dce1e5", endColorstr="#ffffff",GradientType=0 ); /* IE6-9 */
  /*height:120px;*/
  overflow: hidden;
}

.videocontainer-medium .item .videocontent a {
  height: 80px;
  margin-bottom: 5px;
  overflow: hidden;
  border-bottom: 1px solid #e5e5e5;
}

.videocontainer-medium .views {
  font-size: 13px;
  float: left;
  color: #666;
}

.videocontainer-medium .likecontainer {
  font-size: 13px;
  font-weight: bold;
  float: right;
}

.videocontainer-medium .likecontainer i {
  margin-right: 5px;
  float: left;
  display: block;
  color: #6022A6;
}

.videocontainer-medium .likecontainer .likecount {
  float: left;
  color: #6022A6;
}

.videocontainer-medium .likecontainer i:hover {
  color: #666;
  cursor: pointer;
}

/**********************************/
/**SMALL VIDEOS********************/
/**********************************/
.videocontainer-small {
  margin-top: 30px;
}

.videocontainer-small > .row {
  display: flex;
  flex-wrap: wrap;
  margin-right: -10px;
  margin-left: -10px;
}

.videocontainer-small h3 {
  border-bottom: 3px solid #6022A6;
  text-transform: uppercase;
  font-weight: bold;
  letter-spacing: 1px;
  font-size: 20px;
}

.videocontainer-small h3 a:link, .videocontainer-small h3 a:visited {
  color: white !important;
  font-size: 12px;
  line-height: 22px;
  margin-top: 2px;
  height: 20px;
  text-transform: uppercase;
  border-radius: 10px;
  padding: 0px 10px;
  float: right;
}

.videocontainer-small.toprated h3 {
  color: #72206d;
  border-color: #72206d;
}

.videocontainer-small.toprated h3 a {
  background-color: #72206d;
}

.videocontainer-small.toprated h3 a:hover, .videocontainer-small.toprated h3 a:active {
  text-decoration: none !important;
  background-color: rgba(114, 32, 109, 0.7);
}

.videocontainer-small.latest h3 {
  color: #139ad7;
  border-color: #139ad7;
}

.videocontainer-small.latest h3 a {
  background-color: #139ad7;
}

.videocontainer-small.latest h3 a:hover, .videocontainer-small.latest h3 a:active {
  text-decoration: none !important;
  background-color: rgba(19, 154, 215, 0.7);
}

.videocontainer-small .smallvideocontainer {
  margin-bottom: 30px;
  padding-top: 10px;
  transition: all 0.5s linear;
  width: 16.65%;
}

.videocontainer-small .smallvideocontainer:hover {
  background: #eee;
  transition: all 0.5s linear;
}

.videocontainer-small .smallvideocontainer .smallvideocontent {
  margin: 0 -5px !important;
  border-bottom: 1px solid #e5e5e5;
  padding-bottom: 10px;
  /*height:100px;*/
  /*overflow: hidden;*/
}

.videocontainer-small .smallvideocontainer .smallvideocontent a.thumb {
  margin-bottom: 10px;
  display: block;
}

.videocontainer-small .smallvideocontainer .smallvideocontent h5 {
  height: 48px;
  overflow: hidden;
  line-height: 16px;
  font-size: 16px;
  overflow: hidden;
}

.videocontainer-small .smallvideocontainer .likebox {
  margin-bottom: auto;
}

.videocontainer-small .smallvideocontainer .smallvideocontent img {
  width: 100%;
  height: 100px;
  display: block;
  object-fit: cover;
  object-position: center;
}

.videocontainer-small .views {
  font-size: 13px;
  float: left;
  margin-top: 3px;
  display: flex;
  align-items: center;
  gap: 5px;
}

.videocontainer-small .likecontainer {
  font-size: 13px;
  font-weight: bold;
  margin-top: 3px;
  display: flex;
  align-items: center;
  gap: 5px;
}

.videocontainer-small .likecontainer i {
  margin-right: 5px;
  display: block;
  color: #6022A6;
  cursor: pointer;
}

.videocontainer-small .likecontainer .likecount {
  float: left;
  color: #6022A6;
}

.videocontainer-small.latest .likecontainer i:hover {
  color: #139ad7;
  cursor: pointer;
}

.videocontainer-small.toprated .likecontainer i:hover {
  color: #72206d;
  cursor: pointer;
}

@media (max-width: 1080px) {
  #box_footer {
    width: 1180px;
  }
  /*#boxHome .list {

  .item {
    position: relative;
    width: 32%;
    margin: 0 0.5% 50px 0.5%;
  }
   }*/
  .box_content, #box_content {
    width: 100%;
    padding-left: 15px;
    padding-right: 15px;
  }
  #headerCnt .box_content {
    width: 100%;
    padding-left: 20px;
    padding-right: 20px;
  }
  #pp .list .item {
    width: 47%;
  }
}
@media (max-width: 767px) {
  .club_8 #btnSwift {
    display: none;
  }
  .page_memberimagesloops button + .boxUserdata, .page_memberimagesloops a.button + h2 {
    margin-top: 24px;
  }
  .page_memberimagesloops a.button.pull-right, .page_memberimagesloops button.pull-right {
    float: none !important;
  }
  #sliderBox #slider_rebrand.vivid, #sliderBox #slider_rebrand.textbottom {
    height: auto;
  }
  #sliderBox #slider_rebrand.vivid .flex-control-nav, #sliderBox #slider_rebrand.textbottom .flex-control-nav {
    position: relative;
  }
  #sliderBox #slider_rebrand.vivid ul.slides li, #sliderBox #slider_rebrand.textbottom ul.slides li {
    height: auto !important;
  }
  #sliderBox #slider_rebrand.vivid ul.slides li .cnt, #sliderBox #slider_rebrand.textbottom ul.slides li .cnt {
    padding: 20px 20px 40px 20px;
    height: auto;
  }
  #sliderBox #slider_rebrand.vivid ul.slides li .cnt .block h2, #sliderBox #slider_rebrand.textbottom ul.slides li .cnt .block h2 {
    color: #222222;
  }
  #sliderBox #slider_rebrand.vivid ul.slides li .cnt .block h3, #sliderBox #slider_rebrand.textbottom ul.slides li .cnt .block h3 {
    display: block;
    color: #5B5B67;
    font-size: 18px;
    line-height: 28px;
  }
  #sliderBox #slider_rebrand.vivid ul.slides li .cnt .block .button:last-child, #sliderBox #slider_rebrand.textbottom ul.slides li .cnt .block .button:last-child {
    margin-bottom: 0;
  }
  #sliderBox #slider_rebrand.vivid ul.slides li .bg, #sliderBox #slider_rebrand.textbottom ul.slides li .bg {
    position: relative;
  }
  .calendar .caltabs {
    float: none;
    margin-bottom: 30px;
  }
  #box_footer {
    width: auto;
  }
  #myTrainerCnt {
    margin-top: 60px;
  }
  .memberbox {
    min-height: auto;
  }
  .flexCenter {
    display: block;
  }
  .margin-top-mobile {
    margin-top: 64px;
  }
  .tbox {
    padding-left: 20px;
    padding-right: 20px;
  }
  #askexpert_most_viewed {
    display: block;
  }
  #askexpert_most_viewed > div {
    padding: 0;
  }
  #askexpert_most_viewed #askexpert_rightbox {
    margin-top: 32px;
  }
  #askexpert_rightbox {
    margin-top: 64px;
  }
  .pubmed-container {
    grid-template-columns: 1fr;
  }
  .relatedArticles .related {
    margin-right: 0px;
  }
  .btn-mobile-center {
    text-align: center;
    width: auto !important;
  }
  /*.changesignature {
  	display: block;
  	margin-top: 12px;

  }*/
  .paginationBox {
    display: block;
  }
  .paginationBox form {
    margin-bottom: 16px;
  }
  .table-mobile .table thead {
    display: none;
  }
  .table-mobile .table td {
    padding: 0.25rem 0;
    display: block;
    border: 0;
    width: 100% !important;
  }
  .table-mobile .table td::before {
    content: attr(data-th) ":";
    display: inline-block;
    color: #222222;
    margin-right: 4px;
  }
  .table-mobile .table td.no-data::before {
    content: "";
    margin: 0;
  }
  .table-mobile .table td.right {
    text-align: left !important;
  }
  .table-mobile .table td.right .icon:first-child {
    margin-left: 0;
    padding-left: 0;
  }
  .table-mobile .table tr {
    padding: 2rem 0;
    display: block;
    border-bottom: 1px solid #C7C8CF;
  }
  .table-mobile .table tr:first-child {
    padding-top: 0;
  }
  .boxUserdata.homepage {
    padding-right: 0;
  }
  .table-responsive {
    border: 0;
    padding-top: 16px;
  }
  #instruction-form, .participents {
    margin-bottom: 32px;
  }
  #box_content.instructionFormBox h2 {
    text-align: left;
  }
  #box_content.instructionFormBox h2 a.button {
    width: 100%;
    margin-left: 0 !important;
  }
  #box_content.instructionFormBox h2 form.pull-right {
    width: 100%;
    margin-right: 0 !important;
  }
  .borderDotted {
    margin-top: 12px;
  }
  .personsignature {
    padding-top: 12px;
  }
  #box_content.instructionFormBox, #headerCnt .instructionFormBox {
    padding-left: 20px;
    padding-right: 20px;
  }
  .twoCol .col-sm-6 {
    margin-bottom: 32px;
  }
  .btn-container {
    margin-top: 0;
  }
  .info_page .probes {
    flex-direction: column-reverse;
  }
  .info_page .probes .probesimage {
    margin-right: -20px;
  }
  #boxHomeRight {
    display: flex;
    gap: 32px 16px;
  }
  #footer .footerNav {
    margin-right: 0;
  }
  #footer .flex {
    display: flex !important;
    flex-direction: column-reverse;
  }
  .socialicons {
    margin-bottom: 32px;
    text-align: left;
  }
  #boxHomeLeft, #box_content {
    padding-right: 15px;
  }
  #boxHomeLeft .list, #box_content .list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px 16px;
  }
  #boxHomeLeft .list .item, #box_content .list .item {
    margin: 0;
    padding: 0;
    width: 100%;
    /*img {
    	height: auto;
    }*/
  }
  #box_content .relatedArticles .related .list {
    display: block !important;
  }
  #homelinks .content div {
    margin-bottom: 32px;
  }
  #homelinks .content div:last-child {
    margin-bottom: 0;
  }
  .flexcentermobile {
    display: flex;
    justify-content: center;
  }
  .block_image, .img_right, .floatImg, .img_radius, .img_radius img, #box_content table img, #mtList img, #myTrainerCnt img, .bg-container .gradient, .bg-container, #tricefy .col-sm-3 img {
    border-radius: 6px;
  }
  .flexcenter {
    flex-wrap: wrap;
    flex-direction: column-reverse;
  }
  .flexcenter .img-bg-white {
    padding: 0;
    background: #fff;
    width: 100%;
    display: flex;
    justify-content: center;
    border-top-left-radius: 16px;
    border-top-right-radius: 16px;
  }
  .flexcenter.well {
    padding: 0;
  }
  .flexcenter div {
    padding: 24px;
  }
  .flexcenter img.img_right {
    margin: 0;
    float: none;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
  }
  .well {
    padding: 24px;
  }
  #selector {
    margin-right: 0;
  }
  .icon-caret, .icon-download {
    display: inline-block;
  }
  .img_right {
    max-width: 100% !important;
    margin-bottom: 20px;
  }
  h1 {
    font-size: 40px;
    line-height: 48px;
    margin: 24px 0;
  }
  #all {
    min-width: 0;
    padding-top: 80px;
  }
  #sliderBox #slider_rebrand ul.slides li .cnt .block h2 a, #sliderBox #slider_rebrand ul.slides li .cnt .block h2 a:link, #sliderBox #slider_rebrand ul.slides li .cnt .block h2 a:hover {
    color: #6022A6;
  }
  #sliderBox #slider_rebrand ul.slides li .cnt .block h2 {
    color: #6022A6;
  }
  #sliderBox #slider_rebrand ul.slides li img.bg.mobile {
    display: block;
  }
  #sliderBox #slider_rebrand {
    height: 360px;
  }
  #sliderBox #slider_rebrand ul.slides li .cnt {
    padding-left: 20px;
    padding-right: 20px;
    margin: 0 auto;
    padding-top: 160px;
  }
  #sliderBox #slider_rebrand ul.slides li .cnt .block h2 {
    font-size: 28px;
    line-height: 36px;
    margin-bottom: 16px;
  }
  #sliderBox #slider_rebrand ul.slides li {
    height: 360px;
  }
  #sliderBox #slider_rebrand ul.slides li {
    overflow: hidden;
  }
  #sliderBox #slider_rebrand ul.slides li img.bg {
    right: 0;
    left: unset;
    width: auto;
    height: 100%;
    object-fit: unset;
  }
  #sliderBox #slider_rebrand ul.slides li .cnt .block {
    width: 100%;
  }
  #sliderBox #slider_rebrand ul.slides li .cnt .block .banner {
    width: 60%;
  }
  #sliderBox {
    height: auto;
    margin-bottom: 20px;
    /* #slider_rebrand.flexslider {
    	ul.slider li {
    		height: 300px !important;
    	}
    }*/
  }
  #sliderBox #slider, #sliderBox .flexslider {
    height: auto;
  }
  #sliderBox #slider .block p, #sliderBox #slider .block h3, #sliderBox #slider .block h4, #sliderBox .flexslider .block p, #sliderBox .flexslider .block h3, #sliderBox .flexslider .block h4 {
    display: none;
  }
  #sliderBox #slider .block .button, #sliderBox .flexslider .block .button {
    margin-bottom: 16px;
  }
  #sliderBox #slider ul.slides li, #sliderBox .flexslider ul.slides li {
    height: 300px;
  }
  #sliderBox #slider ul.slides li .cnt, #sliderBox .flexslider ul.slides li .cnt {
    padding-left: 40px;
    padding-top: 25px;
  }
  #sliderBox #slider ul.slides li .cnt .block h2, #sliderBox .flexslider ul.slides li .cnt .block h2 {
    font-size: 40px;
  }
  #sliderBox #slider ul.slides li img.bg, #sliderBox .flexslider ul.slides li img.bg {
    width: auto;
    height: 100%;
  }
  #boxHome {
    top: -30px;
  }
  .eventsbox {
    height: auto;
  }
  .myvolusonbox {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding-bottom: 0;
  }
  .myvolusonbox .cntBlack {
    height: 100%;
  }
  .loginbox, .memberbox {
    max-width: none;
  }
  .club_8 .loginbox {
    height: auto !important;
  }
  .club_8 .memberbox.eventsbox {
    background-position: top center;
    background-color: #d699b8;
  }
  .memberbox {
    display: none;
  }
  .eventsbox {
    display: block;
  }
  .mainCnt {
    padding-top: 0;
  }
  #headerCnt {
    position: static;
    height: auto;
    border-bottom: 1px solid #FBF9FD;
    margin-bottom: 30px;
  }
  .ulSidebar {
    margin-bottom: 30px;
    margin-left: -20px;
    margin-right: -20px;
    padding-left: 20px;
    padding-right: 20px;
  }
  .ulSidebar li {
    background-position-x: 0;
    padding-left: 25px;
  }
  .mobile {
    display: block;
  }
  .mobile.button {
    display: inline flex;
  }
  .desktop {
    display: none !important;
  }
  .toptags, .lltags {
    display: none;
  }
  img.news {
    float: none;
    margin: 0 0 30px 0;
    width: 100%;
  }
  .list .item {
    position: relative;
    width: calc(50% - 32px);
    margin: 0 16px 32px 16px;
  }
  #pp .list .item {
    width: 48%;
  }
  .course_right {
    float: none;
    width: 100%;
    margin: 0;
  }
  #headerTop, #nav {
    display: none;
  }
  #box_head {
    display: none;
  }
  #hamburger {
    display: block;
    margin-top: 18px;
    padding-right: 0;
  }
  .mm-panels > .mm-panel > .mm-listview {
    margin-right: 30px;
    margin-right: 0;
  }
  #boxIcons {
    display: none;
    margin-right: 0;
    position: fixed;
    right: -300px;
    z-index: 1;
    top: 48px;
  }
  .tags .tag {
    margin-bottom: 10px;
  }
  .course_right {
    margin-bottom: 50px;
  }
  .memberbuttons {
    float: none;
    margin: 0 auto 16px auto;
  }
  /*
   #selector {
  min-height: 0;
  .sector {
  	display: flex;
  	align-items: center;
  	margin-bottom: 16px;
  }
    span {
  	  display: inline-block;
  	  width: 30%;
    }
  select.form-control {
    	width: 65%;
  	margin-left: 5% !important;
  	margin-right: 0;
  }
   }*/
  #selector .sector {
    display: block;
  }
  #selector span {
    display: block;
    width: 100%;
    margin-bottom: 8px;
  }
  #selector select.form-control {
    width: 100%;
    margin-left: 0 !important;
  }
  /*
  	.page_quick-guides,
  	.page_webinar,
  	.page_white-paper,
  	.page_tips-tricks {
  		#selector .sector	{
  			display: block;
  			select.form-control {
  				width: 100%;
  				margin-left: 0 !important;
  			}
  		}
  	}*/
  .box_myvoluson .col-sm-6 {
    margin-bottom: 30px;
  }
  #navBreadcrumb {
    overflow: hidden;
  }
  .list .item img.thumb, .list .item .thumb img {
    height: 180px;
  }
  /* HEADER */
  #header {
    padding-top: 0;
  }
  #headerMain {
    height: 80px;
    position: fixed;
    top: 0;
    width: 100%;
    background: #fff;
    z-index: 10001;
  }
  #headerMain #logo {
    top: 20px;
    left: 10px;
  }
  #headerMain #clublogo {
    right: 80px;
    top: 10px;
    font-size: 35px;
    top: 15px;
    pointer-events: none;
    display: none;
  }
  #headerMain #clublogopole {
    top: 40px;
  }
  #carousel {
    display: none;
  }
  #counterBox {
    display: none;
  }
  a#btn_ve10 {
    display: none;
  }
  .box_content, #box_content {
    padding: 0 20px 32px 20px;
    min-height: 0;
  }
  .box_detail, #box_detail {
    padding: 0;
  }
  /*.relatedArticles {
  .related {
    .flex-direction-nav {
  	.flex-prev {
  	  left: 0px;
  	}
  	.flex-next {
  	  right: 0px;
  	}
    }
  }
   }*/
  .pr0 {
    padding-right: 15px;
  }
  .pl0 {
    padding-left: 15px;
  }
  .mainvideo .videocontent a {
    height: auto;
  }
  div.search {
    position: relative;
    width: auto;
    margin-right: 50px;
    right: auto;
    top: auto;
  }
  div.search.libhome {
    margin-right: 0;
  }
  div.search input.searchterm {
    width: 100%;
  }
  /*.page_presentation #selector .sector select,*/
  #selector select.form-control {
    max-width: none !important;
  }
  .libraryhome div.search, div.search.libdetail {
    padding-left: 0;
  }
  .libraryhome div.filter {
    position: absolute;
    top: 0;
    left: 0;
    right: auto;
  }
  .libraryhome div.filter .or {
    display: none;
  }
  div.search.right, .learning-detail div.search {
    padding-left: 0;
  }
  #box_content .mainvideo .videocontent {
    border-bottom: 1px solid #C7C8CF;
    padding-bottom: 20px;
    min-height: auto;
  }
  div.search.libdetail {
    display: none;
  }
  .myvolusonright {
    display: none;
  }
  .mainvideo {
    margin-bottom: 50px;
  }
  .videocontainer-small .smallvideocontainer .smallvideocontent img {
    height: auto;
  }
  .videocontainer-medium .item .videoimg img {
    height: auto;
  }
  /*
   .lastviewed .video-container .row {
  width: 47%;
  float: left;
   }*/
  .lastviewed .video-container {
    min-height: 0;
  }
  .videocontainer-small .smallvideocontainer {
    width: 33%;
  }
  .videocontainer-small.latest {
    display: none;
  }
  .lastviewed .iconType {
    right: 10px;
  }
  #ctabs li {
    margin-bottom: 5px;
  }
  #ctabs li {
    width: 50%;
  }
  #ctabs.high li a {
    height: 65px;
    line-height: 20px;
    padding-top: 5px;
  }
  /*
    #ctabs li a.active {
  	background: #eee;
    }*/
  /*
    .gallerylikebox {
  	position: static;
    }*/
  .gallerytext {
    margin-bottom: 0;
    padding-bottom: 0;
  }
  #pageloginbox {
    max-width: 90%;
  }
  #cookieinfo {
    padding: 60px 0;
    bottom: 0;
    position: fixed;
    width: 100%;
  }
  #cookieinfo .buttons {
    float: none;
    text-align: center;
  }
  #cookieinfo .desc {
    float: none;
    padding-bottom: 25px;
  }
  .voices-table table tbody td, .voices-table table tbody th {
    display: block;
    padding-right: 0;
    padding-top: 5px;
    padding-bottom: 0;
    width: 100%;
    border: 0;
  }
  .voices-table table tbody td:first-child, .voices-table table tbody th:first-child {
    display: block;
  }
  .voices-table table tbody td.first, .voices-table table tbody th.first {
    padding-top: 0;
    height: 0;
  }
  .voices td, .voices th {
    display: block;
    padding: 3px;
  }
  .mm-listview {
    font-size: 18px;
    line-height: 24px;
  }
  #pp.home {
    background-color: #fff;
    background-position: top left 23%;
    background-size: auto 360px;
  }
  #pp.home .box_content {
    padding: 20px;
  }
  #pp.home .list {
    gap: 32px 16px;
  }
  #pp.home .list .item {
    margin-left: 0;
    margin-right: 0;
    background: #F4F1F8;
  }
  #pp.home .list .thumb img {
    height: 150px;
  }
  #pp.home .ppnews h2 {
    margin-bottom: 24px;
  }
  #pp.home .ppnews h1, #pp.home .ppnews h2, #pp.home .ppnews h3 {
    color: #222222;
  }
  #pp.home h3 {
    margin-bottom: 16px;
  }
  #pp.home h1 {
    font-size: 36px !important;
    line-height: 48px !important;
    margin-top: 16px !important;
  }
  #pp.home .ppwelcome {
    height: 360px;
  }
  #pp.news .box_content {
    padding: 20px 10px;
  }
  #pp.list {
    /*.text h2 {
    	font-size: 16px !important;
    }*/
  }
  #pp.list .header {
    background: #fff url("https://live.volusonmaster.eu/data/images/pp/header_units_mobile_logiq.jpg") center center no-repeat;
    height: 150px;
    background-size: cover;
  }
  #pp.list .header.voluson {
    background-image: url(https://live.volusonmaster.eu/data/images/pp/header_units_mobile_voluson.jpg);
  }
  #pp.list .header.vivid {
    background-image: url(https://live.volusonmaster.eu/data/images/pp/header_units_mobile_vivid.jpg);
  }
  #pp.list .header.logiq {
    background-image: url(https://live.volusonmaster.eu/data/images/pp/header_units_mobile_logiq.jpg);
  }
  #pp.list .header.versana {
    background-image: url(https://live.volusonmaster.eu/data/images/pp/header_units_mobile_versana.jpg);
  }
  #pp.list .header.venue {
    background-image: url(https://live.volusonmaster.eu/data/images/pp/header_units_mobile_venue.jpg);
  }
  #pp.list .header.vscan {
    background-image: url(https://live.volusonmaster.eu/data/images/pp/header_units_mobile_vscan.jpg);
  }
  #pp.list .header.abus {
    background-image: url(https://live.volusonmaster.eu/data/images/pp/header_units_mobile_abus.jpg);
  }
  #pp.list .header.it {
    background-image: url(https://live.volusonmaster.eu/data/images/pp/header_units_mobile_it.jpg);
  }
  #pp.list .header h1 {
    font-size: 30px;
    margin-top: 70px;
  }
  #pp.list .header h1 a {
    color: #fff;
  }
  #pp.list .header h1 a:hover {
    text-decoration: none;
  }
  #pp.list .navcol {
    display: none;
  }
  #pp.list .box_content {
    padding-top: 20px;
  }
  #pp.list #selector {
    margin-bottom: 20px;
  }
}
@media (max-width: 559px) {
  /*#selector .sector {
  		display: block;
  		span {
  			display: block;
  			width: 100%;
  			margin-bottom: 10px;
  		}
  	}

  	#selector select.form-control {
  		width: 100%;
  		margin-left: 0 !important;
  	}
  */
  .navigationLinksLogiq {
    display: block;
    padding-left: 20px;
    padding-right: 20px;
  }
  .navigationLinksLogiq a {
    display: block;
    width: 100%;
    margin: 0;
    padding: 4px 0;
    text-align: center;
  }
  .navigationLinksLogiq a:first-child {
    padding-top: 0;
  }
  .navigationLinksLogiq a:last-child {
    padding-bottom: 0;
  }
  #pp.home #ppnewshome .list {
    grid-template-columns: 1fr;
    gap: 0;
  }
  #box_content .videocontainer-medium h5 {
    height: auto;
  }
  .info_page .button, .btn-container .button {
    width: 100%;
    /*margin-bottom: 8px;
    &:last-child {
    	margin-bottom: 0;
    }*/
  }
  #boxHomeRight {
    display: block;
  }
  #boxHomeLeft .list, #box_content .list {
    grid-template-columns: 1fr;
  }
  body {
    font-size: 16px;
  }
  .flex-control-nav {
    bottom: 0;
    display: block;
  }
  .list .item {
    position: relative;
    width: 98%;
    margin: 0 1% 50px 1%;
  }
  /*#pp {

  .list {
    .item {
  	width: 98%;
    }
  }
   }*/
  .list .item img.thumb, .list .item .thumb img {
    height: auto;
  }
  #headerCnt div.search {
    top: 145px;
  }
  #headerCnt div.search .right {
    right: 20px;
  }
  .lastviewed .video-container .row {
    width: 100%;
    float: none;
  }
  .videocontainer-small .smallvideocontainer {
    width: 100%;
  }
  #ctabs li {
    width: 100%;
  }
  #static .tbox .left {
    width: 100%;
    float: none;
    margin-right: 0;
  }
  #static .tbox .right {
    width: 100%;
    float: none;
    text-align: left;
  }
  /*.share {
  .views, .likes {
    display: none;
  }
   }*/
  .boxUserdata {
    min-height: auto;
  }
  .boxUserdata .leftBox {
    display: none;
  }
  .boxUserdata .rightBox {
    margin-left: 0;
    padding: 0;
  }
  .userdataButtons .button {
    margin-bottom: 20px;
  }
  #pp .pplist .ppitem .text {
    padding: 0 16px 16px 16px;
    margin-left: 0;
    float: none;
    clear: both;
  }
  #pp .pplist .ppitem .button {
    right: auto;
    left: 16px;
  }
  #pp .pplist .ppitem .date {
    padding-left: 0;
    width: auto;
  }
  #pp .pplist .ppitem .sendlink {
    right: auto;
    left: 138px;
  }
  /*
    #pp {
  	.pplist {
  	  .ppitem {
  		padding: 5px 5px 45px 5px;
  		.text {
  		  h2 {
  			font-size: 16px;
  			line-height: 18px;
  			a {
  			  color: #444;
  			}
  		  }
  		}
  		.date {
  		  //float: none;
  			//position: absolute;
  			//left: 5px;
  			// bottom: 5px;
  			//text-align: left;
  			//padding: 0;
  			//font-size: 14px;
  			margin-left: 160px;
  			width: auto;
  			min-height: auto;
  		}
  	  }
  	}
  	.ppnews {
  	  h2 {
  		a, a:link, a:visited, a:active {
  		  color: $primaryColor !important;
  		}
  	  }
  	}


    }

   */
}

/*# sourceMappingURL=screen_rebrand.css.map */
