/* Minification failed. Returning unminified contents.
(1749,27): run-time error CSS1030: Expected identifier, found 'h5'
(1749,29): run-time error CSS1031: Expected selector, found ')'
(1749,29): run-time error CSS1025: Expected comma or open brace, found ')'
(1785,40): run-time error CSS1030: Expected identifier, found 'img'
(1785,43): run-time error CSS1031: Expected selector, found ')'
(1785,43): run-time error CSS1025: Expected comma or open brace, found ')'
(1839,35): run-time error CSS1030: Expected identifier, found 'h5'
(1839,37): run-time error CSS1031: Expected selector, found ')'
(1839,37): run-time error CSS1025: Expected comma or open brace, found ')'
 */
.navigation.navigation-fixed {
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 88888;
}
.navigation.navigation-themed {
  color: #fff;
  fill: #fff;
  background-color: #c30052;
}
.navigation.navigation-themed .logo-microsoft {
  border-color: rgba(0, 0, 0, 0.1);
}
.navigation.navigation-themed .menu-main > li > a:hover,
.navigation.navigation-themed .menu-secondary > li > a:hover,
.navigation.navigation-themed .menu-main > li > a.active,
.navigation.navigation-themed .menu-secondary > li > a.active {
  background-color: #9c0042;
}
.navigation.navigation-themed .menu-main > li > a:active,
.navigation.navigation-themed .menu-secondary > li > a:active {
  background-color: #890039;
}
.navigation.navigation-themed .menu-main {
  background-color: #b0004a;
}
.navigation.navigation-themed .menu-drop {
  background-color: #9c0042;
}
.navigation.navigation-themed .menu-drop a:hover,
.navigation.navigation-themed .menu-drop a.active {
  background-color: #890039;
}
.navigation.navigation-themed .menu-drop a:active {
  background-color: #750031;
}
.navigation.navigation-themed .menu-pop {
  background-color: #890039;
}
.navigation.navigation-themed .menu-pop a:hover,
.navigation.navigation-themed .menu-pop a.active {
  background-color: #750031;
}
.navigation.navigation-themed .menu-pop a:active {
  background-color: #750031;
}
.navigation.navigation-themed .hamburger {
  border-color: rgba(0, 0, 0, 0.1);
}
.navigation.navigation-themed .hamburger .icon-hamburger {
  border-color: rgba(0, 0, 0, 0.1);
}
.navigation.navigation-themed .hamburger-deluxe .fixin {
  background-color: #fff;
}
.navigation.navigation-transparent {
  color: #fff;
  background-color: transparent;
}
.navigation.navigation-transparent .menu-main > li > a:hover,
.navigation.navigation-transparent .menu-secondary > li > a:hover {
  background-color: rgba(0, 0, 0, 0.2);
}
.navigation.navigation-transparent .menu-main > li > a:active,
.navigation.navigation-transparent .menu-secondary > li > a:active {
  background-color: rgba(0, 0, 0, 0.3);
}
.navigation.navigation-transparent .menu-main > li > a.active,
.navigation.navigation-transparent .menu-secondary > li > a.active {
  background-color: rgba(0, 0, 0, 0.4);
}
.navigation.navigation-transparent .menu-main {
  background-color: rgba(0, 0, 0, 0.4);
}
.navigation.navigation-transparent .menu-drop {
  background-color: rgba(0, 0, 0, 0.4);
}
.navigation.navigation-transparent .menu-drop a:hover,
.navigation.navigation-transparent .menu-drop a:active,
.navigation.navigation-transparent .menu-drop a.active {
  background-color: rgba(0, 0, 0, 0.2);
}
.navigation.navigation-transparent .menu-pop {
  background-color: rgba(0, 0, 0, 0.4);
}
.navigation.navigation-transparent .menu-pop a:hover,
.navigation.navigation-transparent .menu-pop a:active,
.navigation.navigation-transparent .menu-pop a.active {
  background-color: rgba(0, 0, 0, 0.2);
}
.navigation.navigation-transparent .hamburger {
  border-color: rgba(255, 255, 255, 0.3);
}
.navigation.navigation-transparent .hamburger .icon-hamburger {
  border-color: rgba(255, 255, 255, 0.3);
}
/*
Navigation

Provides a consistent mobile-first header and footer navigation experience.

Markup: navigation.html

.navigation-themed - Uses the site's `@color-palette02` as a seed color for a themed navigation
.navigation-transparent - Uses a transparent theme for the navigation
.navigation-fixed - Adds a separator between self and row above

Style guide: navigation
*/
.navigation {
  background-color: #000;
  color: #fff;
  fill: #fff;
  font-size: 15px;
  height: 68px;
  padding: 24px 0;
  position: relative;
  width: 100%;
}
.navigation a,
.navigation a:hover {
  color: inherit;
  text-decoration: none;
}
.navigation a {
  -webkit-transition: background-color 0.25s cubic-bezier(0, 0, 0, 1);
  transition: background-color 0.25s cubic-bezier(0, 0, 0, 1);
}
.navigation a:hover {
  -webkit-transition: none;
  transition: none;
}
.navigation ul {
  display: inline-block;
  list-style: none;
  margin: 0;
  padding: 0;
  position: relative;
}
.navigation ul:after {
  clear: both;
  content: '';
  display: table;
}
.navigation ul li {
  display: block;
  float: left;
  margin: 0;
  position: relative;
}
.navigation .logos {
  width: 100%;
}
.navigation .logos .icon {
  display: block;
}
.navigation .logo-microsoft {
  border-right: 0 solid rgba(255, 255, 255, 0.3);
  display: none;
}
.navigation .logo {
  display: inline-block;
  float: none;
  font-size: 24px;
  font-weight: 600;
  margin-top: -10px;
}
.navigation .logo .preview {
  font-weight: 300;
  margin-left: 6px;
  opacity: .6;
}
@media only screen and (min-width: 768px) {
  .navigation .logos {
    float: left;
    text-align: left;
    width: auto;
  }
  .navigation .logo-microsoft {
    border-right-width: 2px;
    display: block;
    margin-right: 20px;
    padding: 2px 20px 2px 0;
  }
  .navigation .logo-microsoft .icon {
    height: 17px;
    width: 81px;
  }
  .navigation .logo {
    font-size: 18px;
    margin-top: -3px;
  }
}
@media only screen and (min-width: 960px) {
  .navigation .logos {
    margin-left: 0;
    margin-right: 45px;
  }
}
.navigation .menu-main > li > a,
.navigation .menu-secondary > li > a {
  font-weight: 600;
  opacity: .9;
}
.navigation .menu-main > li > a:hover,
.navigation .menu-secondary > li > a:hover,
.navigation .menu-main > li > a.active,
.navigation .menu-secondary > li > a.active {
  background-color: #464646;
  opacity: 1;
}
.navigation .menu-main > li > a:active,
.navigation .menu-secondary > li > a:active {
  background-color: #525252;
  opacity: 1;
}
.navigation .menu-main {
  background-color: #333;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
  display: none;
  left: 0;
  position: absolute;
  right: 0;
  top: 68px;
  width: 100%;
  z-index: 9999;
}
.navigation .menu-main a {
  display: block;
  padding: 23px 20px;
  position: relative;
}
.navigation .menu-main li {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  width: 100%;
}
.navigation .menu-main li:last-child {
  border-bottom: none;
}
.navigation .menu-main .menu-drop-trigger:after {
  -ms-transform: translate(0, -50%);
  -o-transform: translate(0, -50%);
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  -webkit-transition: transform 0.2s;
  transition: transform 0.2s;
  content: '\E972';
  font-family: 'PowerBIMDL2';
  font-size: 9px;
  height: 6px;
  line-height: 9px;
  opacity: .6;
  position: absolute;
  right: 20px;
  text-align: center;
  top: 50%;
  width: 9px;
}
.navigation .menu-main .menu-drop-trigger.active:after {
  -ms-transform: rotate(-180deg);
  -o-transform: rotate(-180deg);
  -webkit-transform: rotate(-180deg);
  transform: rotate(-180deg);
}
@media only screen and (min-width: 768px) {
  .navigation .menu-main {
    left: initial;
    top: 68px;
  }
}
@media only screen and (min-width: 960px) {
  .navigation .menu-main {
    background-color: transparent !important;
    box-shadow: none;
    display: block !important;
    float: left;
    margin-top: -6px;
    position: static;
    width: auto;
  }
  .navigation .menu-main a {
    display: block;
    padding: 23px 20px;
  }
  .navigation .menu-main li {
    border-bottom: none;
    margin-top: -18px;
    width: auto;
  }
  .navigation .menu-main .menu-drop-trigger:after {
    display: none;
  }
  .navigation .menu-main > li > a {
    height: 68px;
    line-height: 68px;
    padding: 0 15px;
  }
}
.navigation .menu-secondary {
  display: none;
}
@media only screen and (min-width: 768px) {
  .navigation .menu-secondary {
    display: block;
    float: right;
    margin-top: -6px;
    margin-right: 80px;
  }
  .navigation .menu-secondary a {
    display: block;
    padding: 23px 20px;
  }
  .navigation .menu-secondary li {
    margin-top: -18px;
  }
  .navigation .menu-secondary > li > a {
    height: 68px;
    line-height: 68px;
    padding: 0 15px;
  }
}
@media only screen and (min-width: 960px) {
  .navigation .menu-secondary {
    margin-right: 0;
  }
  .navigation .menu-secondary li:last-child {
    margin-right: 0;
  }
}
.navigation .menu-drop {
  background-color: #464646;
  display: none;
  padding: 0 15px 12px;
  width: 100%;
}
.navigation .menu-drop a {
  padding: 12px;
}
.navigation .menu-drop a:hover,
.navigation .menu-drop a.active {
  background-color: #5e5e5e;
}
.navigation .menu-drop a:active {
  background-color: #767676;
}
.navigation .menu-drop li {
  border-bottom: none;
  position: static;
}
@media only screen and (min-width: 960px) {
  .navigation .menu-drop {
    box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.1);
    left: 0;
    padding: 0;
    position: absolute;
    top: 100%;
    width: 270px;
    z-index: 1000;
  }
  .navigation .menu-drop li {
    float: none;
    margin: 0;
  }
  .navigation .menu-drop a {
    height: auto;
    line-height: 1;
    padding: 14px 16px 15px;
  }
}
.navigation .menu-pop {
  background-color: #5e5e5e;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
  display: none;
  padding: 0 12px 12px;
  width: 100%;
}
.navigation .menu-pop a {
  padding: 12px;
}
.navigation .menu-pop a:hover,
.navigation .menu-pop a.active {
  background-color: #767676;
}
.navigation .menu-pop a:active {
  background-color: #767676;
}
@media only screen and (min-width: 960px) {
  .navigation .menu-pop {
    left: 100%;
    padding: 0;
    position: absolute;
    top: 0;
  }
  .navigation .menu-pop a {
    padding: 14px 16px 15px;
  }
}
/*
Navigation: Hamburger

Description.

Markup:
<a href="" class="hamburger hamburger-deluxe">
    <span class="fixin top-bun"></span>
    <span class="fixin patty"></span>
    <span class="fixin bottom-bun"></span>
</a>

Style guide: navigation.hamburger
*/
.hamburger {
  border: 2px solid rgba(255, 255, 255, 0.3);
  right: 15px;
  padding: 13px 11px 12px;
  position: absolute;
  top: 12px;
}
.hamburger .icon-hamburger {
  -moz-box-sizing: initial;
  box-sizing: initial;
  border-bottom: 9px double #fff;
  border-top: 3px solid #fff;
  display: block;
  font-size: 0;
  height: 3px;
  width: 24px;
}
.hamburger-deluxe {
  padding: 7px 11px;
}
.hamburger-deluxe .fixin {
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  background-color: #fff;
  display: block;
  height: 2px;
  margin: 5px 0;
  width: 26px;
}
.hamburger-deluxe.active .top-bun {
  -ms-transform: rotate(45deg) translate(19%, 250%);
  -o-transform: rotate(45deg) translate(19%, 250%);
  -webkit-transform: rotate(45deg) translate(19%, 250%);
  transform: rotate(45deg) translate(19%, 250%);
}
.hamburger-deluxe.active .patty {
  opacity: 0;
}
.hamburger-deluxe.active .bottom-bun {
  -ms-transform: rotate(-45deg) translate(19%, -250%);
  -o-transform: rotate(-45deg) translate(19%, -250%);
  -webkit-transform: rotate(-45deg) translate(19%, -250%);
  transform: rotate(-45deg) translate(19%, -250%);
}
/*
Navigation: Footer

Description.

Markup: footer.html

Style guide: navigation.footer
*/
.section-footer {
  background-color: #f2f2f2;
  color: #767676;
  fill: #fff;
}
.section-footer select {
  background-color: transparent;
  border: none;
  color: #000;
  font-size: inherit;
  font-weight: 400;
  line-height: 1;
  padding: 0;
}
.section-footer a:hover {
  text-decoration: underline;
}
.section-footer .icon-microsoft {
  fill: #969696;
  height: 25px;
  width: 87px;
}
.section-footer .list-heading {
  font-size: 13px;
}
.section-footer .linkList a,
.section-footer .linkList a:hover {
  color: #000;
}
.section-footer .row-utility {
  font-size: 13px;
}
.section-footer .row-utility a,
.section-footer .row-utility a:hover {
  color: #767676;
}
.section-footer .linkList-social li {
  float: left;
  margin-right: 10px;
}
.section-footer .linkList-social a {
  fill: #fff;
  background-color: #c30052;
  border-radius: 18px;
  display: block;
  height: 36px;
  position: relative;
  width: 36px;
}
.section-footer .linkList-social a:hover {
  opacity: .9;
}
.section-footer .linkList-social .icon {
  left: 50%;
  position: absolute;
  top: 50%;
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  height: 16px;
  width: 16px;
}
.section-footer .separator {
  width: 24px;
  height: 1px;
  border-bottom: 1px solid #dfdfdf;
  margin: 24px 0;
}
@media only screen and (min-width: 768px) {
  .section-footer .linkList-social {
    margin-top: -9px;
  }
}
@media only screen and (min-width: 960px) {
  .section-footer .linkList-util {
    float: right;
  }
}
.navigation.navigation-themed {
  background-color: #ffffff;
}
.menu.menu-main > li > a,
.menu-secondary > li > a {
  color: #ffffff;
}
.menu.menu-main > li > a:hover,
.menu-secondary > li > a:hover,
.menu.menu-main > li > a.active,
.menu-secondary > li > a.active {
  color: #ffffff;
}
.logos .logo a {
  color: #c30052;
}
.hamburger-deluxe .fixin {
  background-color: #c30052 !important;
}
@media only screen and (min-width: 768px) {
  .menu-secondary li > a {
    color: #c30052;
  }
}
@media only screen and (min-width: 960px) {
  .menu.menu-main > li > a,
  .menu-secondary > li > a {
    color: #c30052;
  }
  .menu.menu-main > li > a:hover,
  .menu-secondary > li > a:hover,
  .menu.menu-main > li > a.active,
  .menu-secondary > li > a.active {
    color: #ffffff;
  }
}
/*
group()

AKA clearfix.

Style guide: mixins.group
*/
/*
arrow(@size: 10px, @color: @color-slate02, @direction: 'up')

CSS arrow.

@size - size of arrow, default `10px`.
@color - color of arrow, default `@color-slate02`.
@direction - arrow direction, default 'up'.

Style guide: mixins.arrow
*/
/*
chevronRightCss()

Chevron right using CSS

@size - optional size in px to set both height and width
@top-offset - optional size in px to move the chevron up or down
*/
/*
animation(@value)

CSS animation helper.

@value - value of the animation.

Style guide: mixins.animation
*/
/*
backface(@value)

CSS backface helper.

@value - value of backface.

Style guide: mixins.backface
*/
/*
box-sizing(@value)

CSS box-sizing helper.

@value - value of box-sizing.

Style guide: mixins.box-sizing
*/
/*
center()

CSS centering helper.

Style guide: mixins.center
*/
/*
circle-background(@diameter)

CSS circle-background helper.

@diameter - diameter of the circle.

Style guide: mixins.circle-background
*/
/*
disable-highlight()

Disables highlighting on an element.

Style guide: mixins.disable-highlight
*/
/*
grayscale(@percent)

Force grayscale on an element.

@percent - grayscale percent.

Style guide: mixins.grayscale
*/
/*
hamburger-helper(@percent)

Helper to build out hamburger CSS.

@height - height of hamburger, default `4px`.
@width - width of hamburger, default `25px`.
@color - color of hamburger, default `@color-palette01`.

Style guide: mixins.hamburger-helper
*/
/*
hide-text()

Accessibility-friendly text hiding.

Style guide: mixins.hide-text
*/
/*
placeholder-color(@color)

Force the color of the placeholder.

@color - color of the placeholder text.

Style guide: mixins.placeholder-color
*/
/*
section-image-cutoff(@imgHeight, @offset: 30px)

The section below shows a common pattern that has the following features:

- no padding on the bottom of the section
- vertically centered content
- image cutoff on the bottom

Use mixin on section. Use classes `.column-image` and `.column-content` with `.row-middled`.

@imgHeight - height of the image.
@offset - image offset from the section, default `30px`.

Style guide: mixins.placeholder-color
*/
/*
show-text()

Accessibility-friendly text showing.

Style guide: mixins.show-text
*/
/*
transition(@value)

CSS transition helper.

@value - value of the transition.

Style guide: mixins.transition
*/
/*
transition-hover()

CSS transition-hover helper.

Style guide: mixins.transition-hover
*/
/*
transform(@value)

CSS transform helper.

@value - value of the transform.

Style guide: mixins.transform
*/
/*
truncate-text()

CSS truncate-text helper.

Style guide: mixins.truncate-text
*/
.container {
  margin-top: 66px;
}
.menu-drop-trigger:after {
  -ms-transform: translate(0, -50%);
  -o-transform: translate(0, -50%);
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  -webkit-transition: transform 0.2s;
  transition: transform 0.2s;
  content: '\E972';
  font-family: 'PowerBIMDL2';
  font-size: 9px;
  height: 6px;
  line-height: 9px;
  opacity: .6;
  position: absolute;
  right: 20px;
  text-align: center;
  top: 50%;
  width: 9px;
}
.cookie-banner {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 88888;
}
svg.cc-icon.cc-v-center {
  fill: none;
}
/*.font-internal(@size, @line-height) when (unit(@size) > 24) {
    font-weight: @font-light;
    font-size: @size;
    line-height: @line-height;
}

.font-internal(@size, @line-height) when (unit(@size) =< 24) {
    font-weight: @font-normal;
    font-size: @size;
    line-height: @line-height;
}

.font-super() {
    .font-internal(@font-super, 1.16);
    letter-spacing: -.01em;
}

.font-heading1() {
    .font-internal(@font-heading1, 1.22);
    letter-spacing: -.01em;
}

.font-heading2() {
    .font-internal(@font-heading2, 1.18);
}

.font-heading3() {
    .font-internal(@font-heading3, 1.17);
}

.font-heading4() {
    .font-internal(@font-heading4, 1.2);
}

.font-heading5() {
    .font-internal(@font-heading5, 1.33);
}

.font-heading6() {
    .font-internal(@font-heading6, 1.5);
}

.font-regular() {
    .font-internal(@font-regular, 1.5);
    font-weight: @font-normal;
}

.font-mini() {
    .font-internal(@font-mini, 1.2);
    font-weight: @font-normal;
}

.font-micro() {
    .font-internal(@font-micro, 1.2);
    font-weight: @font-normal;
}

.font-code() {
    .font-internal(@font-mini, 1.3);
    font-family: Consolas, "Courier New", monospace;
    font-weight: @font-normal;
}*/
@font-face {
  font-family: 'PowerBIMDL2';
  src: url(../../cvt-dd5b13d2e9f2f416badd3faa8ed77d3b08670f070d28a132a9570b8500d3d164/fonts/powerbimdl2/normal/latest.eot);
  src: local("PowerBIMDL2Assets-Regular"), url(../../cvt-dd5b13d2e9f2f416badd3faa8ed77d3b08670f070d28a132a9570b8500d3d164/fonts/powerbimdl2/normal/latest.eot?#iefix) format('embedded-opentype'), url(../../cvt-69e5cfe24de039c687bbc3bfd7403fc6f40ab706efd762d3a2d9fc66c7b269be/fonts/powerbimdl2/normal/latest.woff) format('woff'), url(../../cvt-839530e42c8ea4d6b413fc7afc02e6461e9fbc1f6397b2dd5f07cc0c91f63e46/fonts/powerbimdl2/normal/latest.ttf) format('truetype'), url(../../cvt-259b6e5e531e5ddbb3affa36c00eb26bc15fa369abd548201b90f74bba82d7c2/fonts/powerbimdl2/normal/latest.svg#web) format('svg');
  font-style: normal;
  font-weight: 400;
}
.tour-carousel-step-control-text p {
  margin: 0 auto;
}
.tour-carousel-step-control {
  position: relative;
  min-height: 120px;
}
.tour-carousel-step-control .c-paragraph {
  width: 85%;
}
.tour-carousel-step-control .circle-steps {
  border: 2px solid transparent;
  background-color: transparent;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: inline-block;
  margin: 24px 12px;
  position: relative;
  z-index: 120;
}
.tour-carousel-step-control .circle-steps:hover,
.tour-carousel-step-control .circle-steps:focus {
  cursor: pointer;
}
.tour-carousel-step-control .circle-steps .inner-circle {
  width: 24px;
  height: 24px;
  background-color: #bfbfbf;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
}
.tour-carousel-step-control .circle-steps.active {
  background-color: rgba(51, 51, 51, 0.5);
}
.tour-carousel-step-control .circle-steps.active .inner-circle {
  background-color: #000000;
  border: 2px solid #FFFFFF;
}
.tour-carousel-step-control .circle-steps-line {
  border: 1px solid rgba(51, 51, 51, 0.2);
  position: absolute;
  top: 39%;
  width: 100%;
  z-index: 100;
}
[data-set=step-heading] {
  width: 88%;
}
.tour-step-carousel .m-image {
  width: 70%;
  display: inline-block;
}
.tour-step-carousel .m-image img {
  width: 100%;
}
@media only screen and (min-width: 1400px) {
  .tour-step-carousel .m-image {
    width: 80%;
  }
}
.tour-step-carousel .tour-text-panel {
  background-color: #262626;
  color: #FFFFFF;
  display: inline-block;
  position: absolute;
  top: 0;
  bottom: 4px;
  margin-left: 12px;
  width: 30%;
}
.tour-step-carousel .tour-text-panel h3 {
  margin-top: 45px;
}
.tour-step-carousel .tour-text-panel .tour-text-panel-control {
  position: absolute;
  top: 24px;
  left: 0;
  right: 0;
}
.tour-step-carousel .tour-text-panel .c-heading-4 {
  padding-top: 24px;
}
.tour-step-carousel .tour-text-panel .tour-text-cta {
  padding: 12px 0;
}
@media only screen and (min-width: 1400px) {
  .tour-step-carousel .tour-text-panel {
    width: 20%;
  }
  .tour-step-carousel .tour-text-panel .c-heading-4 {
    padding-top: 36px;
  }
  .tour-step-carousel .tour-text-panel .tour-text-cta {
    padding: 60px 0;
  }
}
.tour-step-carousel .tour-text-panel .tour-text-panel-control button,
.tour-step-carousel .mobile-tour-text-panel .tour-text-panel-control button {
  background: none;
  border: 0;
  color: inherit;
  font: inherit;
  line-height: normal;
  overflow: visible;
  padding: 0;
  -webkit-appearance: button;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}
.tour-step-carousel .tour-text-panel .tour-text-panel-control .step-caption,
.tour-step-carousel .mobile-tour-text-panel .tour-text-panel-control .step-caption {
  vertical-align: middle;
}
.step-slide {
  position: relative;
}
.step-slide .m-image {
  height: 100%;
  padding-top: 0;
}
.next-slide:hover,
.prev-slide:hover,
.next-step:hover,
.mobile-next-step:hover,
.next-slide:focus,
.prev-slide:focus,
.next-step:focus,
.mobile-next-step:focus {
  cursor: pointer;
}
.next-slide img,
.prev-slide img,
.next-step img,
.mobile-next-step img {
  margin: 12px;
}
.next-slide.disabled:hover,
.prev-slide.disabled:hover,
.next-step.disabled:hover,
.mobile-next-step.disabled:hover,
.next-slide.disabled:focus,
.prev-slide.disabled:focus,
.next-step.disabled:focus,
.mobile-next-step.disabled:focus {
  cursor: initial;
}
.bapi-tour-accordion-header {
  background: none;
  border: 0;
  color: inherit;
  font: inherit;
  line-height: normal;
  overflow: visible;
  padding: 0;
  -webkit-appearance: button;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  border-top: 1px solid #CCCCCC;
  width: 100%;
}
.bapi-tour-accordion-header:last-of-type {
  border-bottom: 1px solid #CCCCCC;
}
.bapi-tour-accordion-header .accordion-header {
  width: 80%;
  display: inline-block;
  text-align: left;
}
.bapi-tour-accordion-header .accordion-steps {
  width: 20%;
  display: inline-block;
  text-align: right;
  float: right;
}
.bapi-tour-accordion-header:hover {
  cursor: pointer;
}
.mobile-tour-text-panel {
  background-color: #262626;
  color: #FFFFFF;
  margin: 24px;
}
button:-moz-focusring {
  outline: 1px dotted #c30052;
}
@media only screen and (max-width: 1083px) {
  .bapi-tour-hide {
    display: none !important;
  }
}
body {
  padding-top: 68px;
}
a.bapi-branded {
  color: #c30052 !important;
}
p a {
  text-decoration: underline !important;
  color: #c30052 !important;
}
.bapi-checkmark {
  background-image: url(../../cvt-20a9d875990d082025e4f5c7ccd804578582850e6ef9bfabb32a36cd6373c567/images/page/pricing/check.png);
  background-repeat: no-repeat;
  background-position: center;
  display: block;
  height: 16px;
}
@media only screen and (-ms-high-contrast: active) {
  .bapi-checkmark {
    background-image: url(../../cvt-c0a43c84ba5a28241d636f4541fd149c427e38b41505df1d6988f0485f3ed390/images/page/pricing/check-yellow.png);
  }
}
@media only screen and (-ms-high-contrast: black-on-white) {
  .bapi-checkmark {
    background-image: url(../../cvt-20a9d875990d082025e4f5c7ccd804578582850e6ef9bfabb32a36cd6373c567/images/page/pricing/check.png);
  }
}
.field-validation-error {
  font-size: 12px;
  color: #ba141a;
}
.m-banner .field-validation-error {
  font-size: 12px;
  color: #FFF;
}
input[type="text"].input-validation-error {
  border-color: #ba141a !important;
}
div.branding-line-thick {
  background-color: #c30052;
  padding-bottom: 40px;
}
div.branding-line-thin {
  background-color: #c30052;
  padding-bottom: 2px;
}
.bapi-text-palette01 {
  color: #c30052;
}
.bapi-bg-slate09 {
  background-color: #8C8C8C;
}
.bapi-bg-slate10 {
  background-color: #999999;
}
.bapi-bg-slate11 {
  background-color: #B2B2B2;
}
.bapi-bg-slate12 {
  background-color: #CCCCCC;
}
.bapi-bg-slate13 {
  background-color: #D9D9D9;
}
.bapi-bg-slate14 {
  background-color: #E5E5E5;
}
.bapi-bg-slate15 {
  background-color: #F2F2F2;
}
.bapi-bg-slate16 {
  background-color: #FFFFFF;
}
.bapi-bg-palette01 {
  background-color: #c30052;
  color: #FFFFFF;
}
.bapi-bg-palette01 .c-select,
.bapi-bg-palette01 .c-text-field {
  color: #000000;
}
.bapi-bg-palette01 .bapi-bg-slate16 {
  color: #000000;
}
.bapi-bg-palette02 {
  background-color: #FBECF3;
}
.bapi-bg-palette03 {
  background-color: #F6DFEA;
}
.bapi-bg-palette04 {
  background-color: #F3D3E1;
}
.bapi-text-slate16 {
  color: #FFFFFF;
}
.padding-size0 {
  padding-top: 0;
  padding-bottom: 0;
}
.padding-size01 {
  padding-top: 12px;
  padding-bottom: 12px;
}
.padding-size02 {
  padding-top: 24px;
  padding-bottom: 24px;
}
.padding-size03 {
  padding-top: 36px;
  padding-bottom: 36px;
}
.padding-size04 {
  padding-top: 48px;
  padding-bottom: 48px;
}
.padding-size05 {
  padding-top: 60px;
  padding-bottom: 60px;
}
.padding-size06 {
  padding-top: 72px;
  padding-bottom: 72px;
}
section.section-bottom01,
.padding-bottom01 {
  padding-bottom: 12px;
}
section.section-bottom02,
.padding-bottom02 {
  padding-bottom: 24px;
}
section.section-bottom03,
.padding-bottom03 {
  padding-bottom: 36px;
}
section.section-bottom04,
.padding-bottom04 {
  padding-bottom: 48px;
}
.section-bottom05,
.padding-bottom05 {
  padding-bottom: 60px;
}
.padding-bottom06 {
  padding-bottom: 72px;
}
.padding-top0 {
  padding-top: 0;
}
.padding-top01 {
  padding-top: 12px;
}
.padding-top02 {
  padding-top: 24px;
}
.padding-top03 {
  padding-top: 36px;
}
.padding-top04 {
  padding-top: 48px;
}
.padding-top05 {
  padding-top: 60px;
}
.padding-top06 {
  padding-top: 72px;
}
.padding-side01 {
  padding-left: 12px;
  padding-right: 12px;
}
.padding-side02 {
  padding-left: 24px;
  padding-right: 24px;
}
.padding-side03 {
  padding-left: 36px;
  padding-right: 36px;
}
.padding-side04 {
  padding-left: 48px;
  padding-right: 48px;
}
.margin-bottom01 {
  margin-bottom: 12px;
}
.margin-bottom02 {
  margin-bottom: 24px;
}
.margin-bottom03 {
  margin-bottom: 36px;
}
.margin-bottom04 {
  margin-bottom: 48px;
}
.margin-bottom05 {
  margin-bottom: 60px;
}
.margin-bottom06 {
  margin-bottom: 72px;
}
.margin-top0 {
  margin-top: 0 !important;
}
.margin-top01 {
  margin-top: 12px;
}
.margin-top02 {
  margin-top: 24px;
}
.margin-top03 {
  margin-top: 36px;
}
.margin-top04 {
  margin-top: 48px;
}
.margin-top05 {
  margin-top: 60px;
}
.margin-top06 {
  margin-top: 72px;
}
.bapi-justify-center {
  justify-content: center;
}
.bapi-text-uppercase {
  text-transform: uppercase;
}
.bapi-text-center {
  text-align: center;
}
.bapi-text-right {
  text-align: right;
}
.bapi-clearfix:after {
  content: "";
  display: table;
  clear: both;
}
.bapi-show {
  display: block;
}
.bapi-hide {
  display: none;
}
.bapi-pull-right {
  float: right;
}
.bapi-pull-left {
  float: left;
}
.bapi-short-rule {
  border-top: 1px solid #999999;
  margin-top: 16px;
  width: 45px;
}
.bapi-full-rule {
  border-top: 1px solid #999999;
}
.bapi-max-height-none.c-product-title,
.bapi-max-height-none .c-product-subtitle,
.bapi-max-height-none .c-product-heading {
  max-height: none;
}
@media only screen and (max-width: 767px) {
  .bapi-max-height-none.m-hero-item.f-y-center > div > div,
  .bapi-max-height-none.m-hero-item.m-hero-item[class*=f-x][class*=f-y] > div > div {
    transform: none;
  }
}
@media only screen and (max-width: 767px) {
  .bapi-max-height-none.m-hero-item > div {
    height: unset;
  }
}
@media screen and (min-width: 768px) and (max-width: 1083px) {
  .bapi-res3-col-6 {
    width: 50%;
  }
}
.bapi-full-width {
  width: 100%;
  max-width: 100%;
}
.bapi-no-border {
  border: none !important;
}
.bapi-cursor-pointer {
  cursor: pointer;
}
.bapi-mobile-gutter {
  padding-left: 12px;
  padding-right: 12px;
}
@media screen and (min-width: 1084px) {
  .bapi-mobile-gutter {
    padding-left: 5%;
    padding-right: 5%;
  }
}
a.c-call-to-action,
button.c-button,
button.c-button[type=submit],
a.c-button {
  font-size: 13px;
}
a.c-call-to-action.bapi-text-uppercase,
button.c-button.bapi-text-uppercase,
button.c-button[type=submit].bapi-text-uppercase,
a.c-button.bapi-text-uppercase {
  padding-top: 9px;
  padding-bottom: 9px;
}
a.c-call-to-action.bapi-call-to-action,
button.c-button.bapi-call-to-action,
button.c-button[type=submit].bapi-call-to-action,
a.c-button.bapi-call-to-action {
  margin: 0;
  border: none;
  line-height: 1.3;
  letter-spacing: .075em;
  text-align: center;
  text-decoration: none;
  padding: 10px 22px 7px 24px;
}
a.c-call-to-action.bapi-call-to-action:after,
button.c-button.bapi-call-to-action:after,
button.c-button[type=submit].bapi-call-to-action:after,
a.c-button.bapi-call-to-action:after {
  display: inline-block;
  margin-left: 4px;
  margin-top: 1px;
  content: "";
  vertical-align: top;
}
a.c-call-to-action.bapi-button-full-width,
button.c-button.bapi-button-full-width,
button.c-button[type=submit].bapi-button-full-width,
a.c-button.bapi-button-full-width {
  width: 100%;
  max-width: 100%;
}
a.c-call-to-action.bapi-button-primary,
button.c-button.bapi-button-primary,
button.c-button[type=submit].bapi-button-primary,
a.c-button.bapi-button-primary {
  background: #c30052;
  color: #FFFFFF;
}
a.c-call-to-action.bapi-button-primary:hover,
button.c-button.bapi-button-primary:hover,
button.c-button[type=submit].bapi-button-primary:hover,
a.c-button.bapi-button-primary:hover,
a.c-call-to-action.bapi-button-primary:focus,
button.c-button.bapi-button-primary:focus,
button.c-button[type=submit].bapi-button-primary:focus,
a.c-button.bapi-button-primary:focus,
a.c-call-to-action.bapi-button-primary:active,
button.c-button.bapi-button-primary:active,
button.c-button[type=submit].bapi-button-primary:active,
a.c-button.bapi-button-primary:active {
  background: #951A47 !important;
  color: #FFFFFF !important;
}
a.c-call-to-action.bapi-cta-button-secondary,
button.c-button.bapi-cta-button-secondary,
button.c-button[type=submit].bapi-cta-button-secondary,
a.c-button.bapi-cta-button-secondary {
  background: transparent;
  border: none;
  color: #c30052 !important;
  text-decoration: none;
}
a.c-call-to-action.bapi-cta-button-secondary:hover,
button.c-button.bapi-cta-button-secondary:hover,
button.c-button[type=submit].bapi-cta-button-secondary:hover,
a.c-button.bapi-cta-button-secondary:hover,
a.c-call-to-action.bapi-cta-button-secondary:focus,
button.c-button.bapi-cta-button-secondary:focus,
button.c-button[type=submit].bapi-cta-button-secondary:focus,
a.c-button.bapi-cta-button-secondary:focus,
a.c-call-to-action.bapi-cta-button-secondary:active,
button.c-button.bapi-cta-button-secondary:active,
button.c-button[type=submit].bapi-cta-button-secondary:active,
a.c-button.bapi-cta-button-secondary:active {
  color: #c30052 !important;
  text-decoration: none;
}
a.c-call-to-action.bapi-button-secondary,
button.c-button.bapi-button-secondary,
button.c-button[type=submit].bapi-button-secondary,
a.c-button.bapi-button-secondary {
  background: transparent;
  border: 2px solid #FFFFFF;
  color: #FFFFFF;
}
a.c-call-to-action.bapi-button-secondary:hover,
button.c-button.bapi-button-secondary:hover,
button.c-button[type=submit].bapi-button-secondary:hover,
a.c-button.bapi-button-secondary:hover,
a.c-call-to-action.bapi-button-secondary:focus,
button.c-button.bapi-button-secondary:focus,
button.c-button[type=submit].bapi-button-secondary:focus,
a.c-button.bapi-button-secondary:focus,
a.c-call-to-action.bapi-button-secondary:active,
button.c-button.bapi-button-secondary:active,
button.c-button[type=submit].bapi-button-secondary:active,
a.c-button.bapi-button-secondary:active {
  color: #FFFFFF !important;
  border-color: #000000 !important;
  background-color: #000000 !important;
}
button.c-button.bapi-text-uppercase,
a.c-button.bapi-text-uppercase,
button.c-button[type=submit].bapi-text-uppercase {
  padding-top: 11px;
  padding-bottom: 11px;
}
a.c-hyperlink {
  color: #c30052;
}
a.c-hyperlink:hover:not(.f-image) {
  color: #c30052;
}
a.c-hyperlink:focus:not(.f-image) {
  color: #c30052;
}
.bapi-link-palette01 a {
  color: #c30052;
}
a.c-call-to-action.f-lightweight {
  color: #c30052;
}
.bapi-nav .logo {
  vertical-align: top;
}
.bapi-nav .logos {
  margin-left: 15px;
}
@media only screen and (min-width: 768px) {
  .bapi-nav .logo-microsoft {
    display: inline-block;
    margin-right: 16px;
  }
}
.bapi-nav .logo-microsoft .icon svg {
  width: 100%;
  height: 100%;
}
@media only screen and (min-width: 1084px) {
  .bapi-nav .logos {
    margin-left: 0;
  }
}
.bapi-nav .menu-secondary {
  display: none;
}
@media only screen and (min-width: 768px) {
  .bapi-nav .menu-secondary {
    display: block;
    float: right;
    margin-top: -6px;
    margin-right: 80px;
  }
  .bapi-nav .menu-secondary a {
    display: block;
    padding: 23px 20px;
  }
  .bapi-nav .menu-secondary li {
    margin-top: -18px;
  }
  .bapi-nav .menu-secondary > li > a {
    height: 68px;
    line-height: 68px;
    padding: 0 15px;
  }
}
@media only screen and (min-width: 960px) {
  .bapi-nav .menu-secondary {
    margin-right: 15px;
  }
}
@media only screen and (min-width: 1084px) {
  .bapi-nav .menu-secondary {
    margin-right: 0;
  }
  .bapi-nav .menu-secondary li:last-child {
    margin-right: 0;
  }
}
.icon-microsoft {
  width: 87px;
  height: 25px;
}
.icon-microsoft svg {
  width: 100%;
  height: 100%;
  fill: #8C8C8C;
}
.bapi-footer {
  padding-right: 24px;
  padding-left: 24px;
}
.bapi-secondary-footer {
  margin-top: 24px;
}
.bapi-secondary-footer nav li {
  margin: 0;
  margin-right: 12px;
  vertical-align: middle;
  padding-top: 2px;
}
.bapi-secondary-footer nav.c-link-navigation {
  margin-top: 12px;
}
.bapi-secondary-footer .m-social {
  margin-top: 36px;
}
@media only screen and (min-width: 768px) {
  .bapi-secondary-footer nav.c-link-navigation {
    margin-top: 12px;
  }
  .bapi-secondary-footer .m-social {
    margin-top: 12px;
  }
}
@media only screen and (min-width: 1084px) {
  .bapi-footer {
    padding-right: 0;
    padding-left: 0;
  }
  .bapi-secondary-footer nav ul:first-child {
    margin: 0 -12px;
  }
  .bapi-secondary-footer nav li {
    margin: 0 12px;
  }
}
@media only screen and (min-width: 1400px) {
  .bapi-secondary-footer nav.c-link-navigation {
    margin-top: 36px;
  }
  .bapi-secondary-footer .m-social {
    margin-top: 36px;
  }
}
.bapi-signup .c-button {
  margin-top: 18px;
}
.c-pivot div.bapi-list-in-pivot {
  padding-bottom: 0;
}
.c-pivot div.bapi-list-in-pivot .c-list {
  text-align: left;
}
@media only screen and (min-width: 1084px) {
  .m-hero-item .m-ambient-video .hero-video {
    margin-top: -140px;
  }
}
.m-hero-item .m-ambient-video .hero-video {
  max-width: 100%;
}
.video-motion-toggle.home-video-motion-toggle {
  float: right;
  margin-right: 3.8%;
  margin-top: -30px;
}
.video-motion-toggle.home-video-motion-toggle label + button {
  float: none;
  margin: 0 2px 0 16px;
}
.bapi-video-hero {
  display: none;
}
@media only screen and (min-width: 768px) {
  .bapi-video-hero {
    display: block !important;
  }
}
.bapi-static-hero {
  display: none;
}
@media only screen and (max-width: 767px) {
  .bapi-static-hero {
    display: block !important;
  }
}
.c-dialog#get-started .section-bottom05 {
  padding-bottom: 60px;
}
.c-dialog .c-text-field {
  color: black;
}
.c-drawer button.bapi-docs-header {
  font-size: 18px;
  font-weight: 600;
}
.article-author a {
  color: #c30052;
}
@media only screen and (min-width: 540px) {
  .article-date {
    margin-top: 30px;
    text-align: right;
  }
}
.articlebody ol {
  list-style-type: decimal;
  list-style-position: inside;
  margin-left: 24px;
  margin: 12px 0;
}
.articlebody ul {
  list-style-type: disc;
  list-style-position: inside;
  margin-left: 24px;
  margin: 12px 0;
}
.articlebody p {
  margin: 12px 0;
  font-weight: 400;
}
.articlebody img,
.articlebody iframe {
  margin: 12px 0;
}
.articlebody iframe {
  max-width: 100%;
}
.articlebody img {
  height: auto;
  max-width: 100%;
}
.articlebody a {
  color: #c30052;
}
.articlebody .note {
  background-color: #E5E5E5;
  border-left: 5px solid #c30052;
  border-left-width: 30px !important;
  color: #262626;
  display: block;
  margin: 12px 0;
  padding: 24px 24px 12px;
}
.articlebody table {
  background-color: #FFFFFF;
  border-collapse: collapse;
  border-spacing: 0;
  border-top: 2px solid #D9D9D9;
  margin: 12px 0;
  padding: 0;
  text-align: left;
  width: 100%;
}
.articlebody table thead {
  border-bottom: 2px solid #D9D9D9;
}
.articlebody table tr {
  border-bottom: 1px solid #D9D9D9;
}
.articlebody table td,
.articlebody table th {
  padding: 12px 6px;
  vertical-align: top;
}
@media only screen and (min-width: 960px) {
  .articlebody table td,
  .articlebody table th {
    padding: 12px;
  }
}
.articlebody h1 {
  font-size: 62px;
  line-height: 72px;
  padding: 38px 0 6px;
  font-weight: 100;
}
.articlebody h2 {
  font-size: 46px;
  line-height: 56px;
  padding: 37px 0 3px;
  letter-spacing: -0.46px;
  font-weight: 100;
}
.articlebody h3 {
  font-size: 34px;
  line-height: 40px;
  padding: 38px 0 2px;
  font-weight: 100;
}
.articlebody h4 {
  font-size: 24px;
  line-height: 28px;
  padding: 36px 0 4px;
  font-weight: 200;
}
.articlebody h5 {
  font-size: 20px;
  line-height: 24px;
  font-weight: 200;
}
.articlebody h5:not(.note h5) {
  padding: 34px 0 3px;
}
.articlebody h6 {
  font-size: 18px;
  line-height: 20px;
  padding: 30px 0 2px;
  font-weight: 200;
}
@media only screen and (min-width: 768px) {
  .articlebody .note {
    border-left-width: 60px;
    padding: 24px 36px 12px;
    position: relative;
  }
}
.stream-blog-sidebar .c-button[role=button] {
  padding-top: 10px;
}
.stream-blog-sidebar .c-button[role=button] .icon {
  height: 16px;
  width: 18px;
  display: inline-block;
}
.stream-blog-sidebar .c-button[role=button] .icon svg {
  height: 100%;
  width: 100%;
  fill: #FFFFFF;
}
.stream-blog-content img {
  max-width: 100%;
  height: auto;
}
.stream-blog-content iframe {
  max-width: 100%;
}
.stream-blog-content img:not(.m-social img),
.stream-blog-content iframe {
  margin: 12px 0;
}
.stream-blog-content p {
  padding: 24px 0 0;
  font-weight: 400;
}
.stream-blog-content ol {
  list-style-type: decimal;
  list-style-position: inside;
  margin-left: 24px;
  margin: 12px 0;
}
.stream-blog-content .stream-blog-body ul {
  list-style-type: disc;
  list-style-position: outside;
  margin-left: 24px;
  margin: 12px 0;
  padding-left: 17px;
}
.stream-blog-content .stream-blog-body ul li {
  padding: 0;
  -webkit-padding-start: 0;
}
.stream-blog-content .stream-blog-body ul li a {
  color: #c30052;
  text-decoration: underline;
}
.stream-blog-content h1 {
  font-size: 62px;
  line-height: 72px;
  padding: 38px 0 6px;
  font-weight: 100;
}
.stream-blog-content h2 {
  font-size: 46px;
  line-height: 56px;
  padding: 37px 0 3px;
  letter-spacing: -0.46px;
  font-weight: 100;
}
.stream-blog-content h3 {
  font-size: 34px;
  line-height: 40px;
  padding: 38px 0 2px;
  font-weight: 100;
}
.stream-blog-content h4 {
  font-size: 24px;
  line-height: 28px;
  padding: 36px 0 4px;
  font-weight: 200;
}
.stream-blog-content h5:not(.note h5) {
  font-size: 20px;
  line-height: 24px;
  padding: 34px 0 3px;
  font-weight: 200;
}
.stream-blog-content h6 {
  font-size: 18px;
  line-height: 20px;
  padding: 30px 0 2px;
  font-weight: 200;
}
.c-subheading img.author-image {
  height: 30px;
  width: 30px;
  border-radius: 15px;
}
article table {
  background-color: #FFFFFF;
  border-collapse: collapse;
  border-spacing: 0;
  border-top: 2px solid #D9D9D9;
  margin: 12px 0;
  padding: 0;
  text-align: left;
  width: 100%;
}
article table thead {
  border-bottom: 2px solid #D9D9D9;
}
article table tr {
  border-bottom: 1px solid #D9D9D9;
}
article table td,
article table th {
  padding: 12px 6px;
  vertical-align: top;
}
@media only screen and (min-width: 960px) {
  article table td,
  article table th {
    padding: 12px;
  }
}
.office-collab-content img {
  margin: auto;
}
.price-data {
  word-wrap: break-word;
}
h1.c-heading-2.pricing-heading {
  padding-top: 0;
}
.c-select.currency-dropdown {
  float: right;
}
@media screen and (max-width: 1083px) {
  .c-select.currency-dropdown {
    float: left;
  }
}
table.bapi-pricing tr td:first-child {
  width: 60%;
}
table.bapi-pricing tr td:nth-child(2) {
  width: 13%;
}
table.bapi-pricing tr td:nth-child(3) {
  width: 13%;
}
table.bapi-pricing tr td:nth-child(4) {
  width: 13%;
}
.tos-content p {
  font-size: 15px;
  margin: 12px 0;
}
.tos-content ol {
  list-style-position: outside;
  margin-bottom: 14px;
  margin-left: 0;
  padding-left: 27px;
}
.tos-content ol ol {
  margin: 0;
  padding-bottom: 0;
}
.tos-content ol li {
  font-size: inherit;
  margin-bottom: 12px;
}
.tos-content ul {
  list-style-type: disc;
  list-style-position: outside;
  padding-left: 17px;
}
.tos-content ul li {
  font-size: inherit;
  margin-bottom: 12px;
}
.m-content-placement-item .bapi-button-primary {
  background: #c30052;
  padding: 10px 22px 7px 24px;
  color: #FFFFFF;
}
.c-pivot:not(.f-disabled) > header > a.f-active {
  border-bottom: 2px solid #c30052;
}
.c-dialog [role=dialog] {
  border: 1px solid #c30052;
  z-index: 88889;
}
.video-motion-toggle {
  color: #1A1A1A;
}
.video-motion-toggle label {
  margin-right: 0px;
}
.video-motion-toggle label + button {
  float: right;
}
.video-motion-toggle label + button:after {
  background-color: #fff;
}
.video-motion-toggle label + button[aria-checked=false] {
  border-color: #666666;
  background-color: #666666;
}
.video-motion-toggle label + button[aria-checked=true] {
  border-color: #000000;
  background-color: #000000;
}
.video-motion-toggle label + button[aria-checked=true]:hover {
  border-color: #000000;
  background-color: #000000;
}
.video-motion-toggle label.c-label {
  vertical-align: text-top;
  font-size: 13px;
  color: #fff;
  display: inline-block;
  margin-top: 0;
  padding-bottom: 0;
  line-height: initial;
}
.video-motion-toggle > span {
  color: #fff;
  font-size: 13px;
  text-transform: uppercase;
  padding-left: 0 !important;
  margin-right: 12px;
  vertical-align: text-top;
  cursor: default !important;
}
.m-hero-item > div > div > div.margin-top0 {
  margin-top: 0px;
}
.m-feature + .m-feature {
  margin-top: 0;
}
.c-pivot .m-feature {
  margin-top: 48px !important;
}
/*
Navigation Scroll

Description.

Markup: navigationScroll.html

Style guide: navigationscroll
*/
@media only screen and (max-width: 540px) {
  .sd-equalize {
    height: auto !important;
  }
}
[itemprop="articlebody"] .navigationScroll {
  background-color: #F2F2F2;
  padding: 12px;
  margin-bottom: 24px;
  position: static !important;
}
[itemprop="articlebody"] .navigationScroll span {
  display: block;
  font-weight: 700;
  margin-bottom: 12px;
}
[itemprop="articlebody"] .navigationScroll ul {
  margin: 0;
  max-width: 100%;
}
[itemprop="articlebody"] .navigationScroll li {
  margin-top: 12px;
}
[itemprop="articlebody"] .navigationScroll li:first-child {
  margin-top: 0;
}
.column-navigationScroll .navigationScroll {
  display: none;
}
@media only screen and (min-width: 1084px) {
  [itemprop="articlebody"] .navigationScroll {
    display: none;
  }
  .column-navigationScroll .navigationScroll {
    -webkit-transition: opacity 0.5s ease-out;
    transition: opacity 0.5s ease-out;
    display: block;
    opacity: 1;
    position: fixed;
  }
  .column-navigationScroll .navigationScroll.hidden {
    opacity: 0;
  }
  .column-navigationScroll .navigationScroll span {
    font-weight: 800;
  }
  .column-navigationScroll .navigationScroll a {
    color: #c30052;
  }
  .column-navigationScroll .navigationScroll a:hover {
    text-decoration: underline;
  }
  .column-navigationScroll .navigationScroll ul {
    list-style: none;
    margin: 0;
    padding: 0;
  }
  .column-navigationScroll .navigationScroll ul li {
    line-height: 1.2;
    margin: 12px 0;
  }
}
@media only screen and (min-width: 320px) {
  .bapi-hide-res1 {
    display: none !important;
  }
}
@media only screen and (min-width: 540px) {
  .bapi-hide-res2 {
    display: none !important;
  }
}
@media only screen and (min-width: 768px) {
  .bapi-hide-res3 {
    display: none !important;
  }
}
@media only screen and (min-width: 960px) {
  .bapi-hide-hamburger {
    display: none !important;
  }
}
@media only screen and (min-width: 1084px) {
  .bapi-hide-res4 {
    display: none !important;
  }
}
@media only screen and (min-width: 1400px) {
  .bapi-hide-res5 {
    display: none !important;
  }
}
@media only screen and (min-width: 320px) {
  .bapi-show-res1 {
    display: block !important;
  }
}
@media only screen and (min-width: 540px) {
  .bapi-show-res2 {
    display: block !important;
  }
}
@media only screen and (min-width: 768px) {
  .bapi-show-res3 {
    display: block !important;
  }
}
@media only screen and (min-width: 1084px) {
  .bapi-show-res4 {
    display: block !important;
  }
}
@media only screen and (min-width: 1400px) {
  .bapi-show-res5 {
    display: block !important;
  }
}
@media only screen and (max-width: 767px) {
  .bapi-res3-hp-hero-show {
    display: block !important;
  }
}
