






body{
  /***************** COLOR VARS *****************/
  --color-mango-orange: #ff6619;
  --color-mango-orange-1000: #ff5824;
  --color-dark-royal: #0e1c56;
  --color-midnight: #021b29;
  --color-cobalt-blue: #0d4599;
  --color-cobalt-blue-400: #9eb5d6;
  --color-sky-blue: #c2e8ff;
  --color-sky-blue-800: #ceedff;
  --color-sky-blue-600: #daf1ff;
  --color-sky-blue-400: #e7f6ff;
  --color-sky-blue-200: #f3faff;
  --color-neutral-black: #000000;
  --color-neutral-black-200: #cccccc;

  /***************** DESKTOP FONT SIZES *****************/
  /* Headers */
  --font-size-h1: 80px;
  --font-size-h2: 52px;
  --font-size-h3: 40px;
  --font-size-h4: 29px;
  --font-size-h5: 18px;
  --font-size-h6: 14px;
  /* Subtitle */
  --font-size-subt: 27px;
  /* Paragraph */
  --font-size-p-lg: 22px;
  --font-size-p-md: 18px;
  --font-size-p-sm: 14px;
  /* Quote */
  --font-size-q-lg: 30px;
  --font-size-q-md: 18px;

  --font-families: "acumin-pro", "Helvetica", "Arial", sans-serif;

  --container-shadow: 0 15px 25px rgba(0,0,0,.25);

  --z-index-nav: 1;
  --z-index-navMobile: 2;
  --z-index-navLogo: 3;

}
/***************** BLOG POST FONT SIZES *****************/
.body-container--blog-post {
  --font-size-h1: 72px;
  --font-size-h2: 42px;
  --font-size-h3: 32px;
}

@media(max-width: 767px) {
  /***************** MOBILE FONT SIZES *****************/
  body{
    /* Headers */
    --font-size-h1: 56px;
    --font-size-h2: 42px;
    --font-size-h3: 32px;
    --font-size-h4: 26px;
    --font-size-h5: 16px;
    --font-size-h6: 12px;
    /* Subtitle */
    --font-size-subh: 30px;
    --font-size-subt: 20px;
    /* Paragraph */
    --font-size-p-lg: 20px;
    --font-size-p-md: 18px;
    --font-size-p-sm: 16px;
    /* Quote */
    --font-size-q-lg: 20px;
    --font-size-q-md: 18px;
  }

  /***************** BLOG POST FONT SIZES *****************/
  .body-container--blog-post {
    --font-size-h1: 42px;
    --font-size-h2: 32px;
    --font-size-h3: 26px;
  }
}

/* 1a. Containers */




/* 1b. Colors */





/* 1c. Typography */



/* 1d. Buttons */









/* 1e. Forms */









/* 1f. Tables */











/* 1g. Site header */





/* 1h. Site footer */








.content-wrapper {
  max-width: 1460px;
}

.dnd-section,
.content-wrapper--vertical-spacing {
  padding: 60px 20px;
}

.dnd-section > .row-fluid {
  max-width: 1460px;
}

/************** CUSTOM SECTIONS **************/
/* Forces all typography components to center their text */
.dnd-section.section-center-text {
  text-align: center;
}

/* White columns */
.dnd-section.section-white-columns .dnd-column {
  background-color: #fff;
  border-radius: 20px;
  box-shadow: var(--container-shadow);
  overflow: hidden;
}
/* Make images bleed off edges on white columns */
.dnd-section.section-white-columns .dnd-column img {
  max-width: unset !important;
  width: calc(100% + 80px);
  height: auto;
  margin-left: -40px;
  margin-top: -20px;
}

/* Side form */
.dnd-section.section-side-form .dnd-column:last-of-type {
  background: #fff;
  border-radius: 20px;
  margin-bottom: -150px;
  box-shadow: 0 20px 40px -10px rgba(0, 0, 0, .3);
  color: var(--color-midnight);
}

/* Top banner */
.dnd-section.section-top-banner p {
  margin-bottom: 0px;
}
@media(max-width: 767px) {
  .dnd-section.section-top-banner a {
    display: inline-block;
    width: 100%;
    margin-top: 10px;
  }
}





html {

}

body {
  font-family: var(--font-families);
  font-weight: 400;
  color: #fff;
  background: var(--color-midnight);
  font-size: var(--font-size-p-md);
}

/* Paragraphs */
p {
  font-weight: 400;
  font-size: var(--font-size-p-md);
  line-height: 1.5em;
}
p.large {
  font-size: var(--font-size-p-lg);
  letter-spacing: -0.01em;
}
p.small {
  font-size: var(--font-size-p-sm);
}

/* Anchors */
a {
  color: inherit;
}

::selection {
  color: #fff;
  background-color: var(--color-cobalt-blue);
}

/* Headings */
h1, h2, h3, h4, h5, h6, p.subtitle, .title-subtitle {
  font-weight: 700;
  line-height: 1.1em;
  margin: 0 0 1.4rem;
  letter-spacing: -0.04em;
}
h1{
  font-size: var(--font-size-h1);
}
h2{
  font-size: var(--font-size-h2);
}
h3{
  font-size: var(--font-size-h3);
}
h4{
  font-size: var(--font-size-h4);
}
h5{
  font-size: var(--font-size-h5);
}
h6{
  font-size: var(--font-size-h6);
}
p.subtitle, .title-subtitle {
  font-size: var(--font-size-subt);
}

/* H6 is unused */
h6 {
  /*font-size: var(--font-size-h5);*/
  /*text-transform: uppercase;*/
  /*letter-spacing: 0.09em;*/
}

/* Quotes */
blockquote {
  font-weight: 500;
  font-size: var(--font-size-q-md);
  line-height: 1.5em;
  letter-spacing: -0.01em;
  padding: 0;
  margin-left: 0;
  margin-right: 0;
}
blockquote.large {
  font-size: var(--font-size-q-lg);
}



hr:not(:first-child) {
  color: #021B29;
  background-color: #021B29;
}

/* Blockquote */

blockquote {
  border-left-color: #FF5824;
}





button,
.button {
  font-family: "acumin-pro";
  font-weight: 700;
  font-size: 18px;
  color: #fff;
  background-color: 

  
  
    
  


  rgba(255, 88, 36, 1.0)

;
  border-radius: 50px;
  align-items: center !important;
  justify-content: center !important;
}

.button.padded {
  line-height: 64px;
  width: 100%;
  max-width: 236px;
}

button:hover,
button:focus,
.button:hover,
.button:focus {
  background-color: rgba(225, 58, 6, 1.0);
  border-color: #e13a06;
  color: #FFFFFF;
}

button.bg-true,
.button.bg-true {
  background-color: 

  
  
    
  


  rgba(2, 27, 41, 1.0)

;
  border: 1px solid #021B29;
}

button.bg-true:hover,
button.bg-true:focus,
.button.bg-true:hover,
.button.bg-true:focus {
  background-color: rgba(0, 0, 11, 1.0);
  border-color: #00000b;
  color: #FFFFFF;
}

button:active,
.button:active {
  background-color: rgba(255, 128, 76, 1.0);
  border-color: #ff804c;
  color: #FFFFFF;
}





form a {
  color: var(--color-mango-orange);
}

form,
.submitted-message {

}

/* Form title */

.form-title {
  font-size: var(--font-size-h4);
}

/* Form label */

form label {
  /*color: #aaaaaa;*/
}

/* Form help text */



form legend {
  color: #444444;
}

/* Form inputs */

form input[type=text],
form input[type=email],
form input[type=password],
form input[type=tel],
form input[type=number],
form input[type=file],
form select,
form textarea {
  border-color: #eeeeee;
}

form input[type=text]:focus,
form input[type=email]:focus,
form input[type=password]:focus,
form input[type=tel]:focus,
form input[type=number]:focus,
form input[type=file]:focus,
form select:focus,
form textarea:focus {
  border-color: #021B29;
}

form .hs-button {
  font-family: "acumin-pro";
}

/* Form placeholder text */

::-webkit-input-placeholder {
  color: var(--color-midnight);
}

::-webkit-input-placeholder,
::-moz-placeholder,
:-ms-input-placeholder,
:-moz-placeholder,
::placeholder,
.hs-fieldtype-date .input .hs-dateinput:before {
  color: var(--color-midnight);
}

/* Date picker */

.fn-date-picker td.is-selected .pika-button {
  background: #021B29;
}

.fn-date-picker td .pika-button:hover {
  background-color: #021B29 !important;
}

.fn-date-picker td.is-today .pika-button {
  color: #021B29;
}

/* Submit button */

form input[type=submit],
form .hs-button {
  background-color: 

  
  
    
  


  rgba(255, 88, 36, 1.0)

;
  border: 1px solid #FF5824;
  border-radius: 50px;
  color: #FFFFFF;
  padding: 16px 45px;
}

form input[type=submit]:hover,
form input[type=submit]:focus,
form .hs-button:hover,
form .hs-button:focus {
  background-color: rgba(215, 48, 0, 1.0);
  border-color: #d73000;
  color: #FFFFFF;
}

form input[type=submit]:active,
form .hs-button:active {
  background-color: rgba(255, 128, 76, 1.0);
  border-color: #ff804c;
  color: #FFFFFF;
}





table {
}


thead th,
thead td {
}

tfoot td {

}





.header {
  background-color: 

  
  
    
  


  rgba(231, 246, 255, 1.0)

;
  border-bottom-color: 

  
  
    
  


  rgba(255, 255, 255, 0.0)

;
  position: fixed;
  z-index: 1;
}

.header.dark {
  background-color: #021B29;
}

.header.dark .navigation-primary .submenu.level-1>li,
.header.dark .navigation-primary .submenu.level-1>li>a,
.header.dark .navigation-primary .submenu.level-1>li.has-submenu:after {
  color: #ffffff;
}

.header--no-navigation {
  background-color: transparent;
  position: absolute;
  padding: 0 80px;
}

.header--no-navigation:after {
  width: auto;
}

body .navigation-primary a,
.header__logo .logo-company-name,
.header__language-switcher-label-current,
.header__language-switcher .lang_list_class li a {
  /*color: #021B29;*/
}

body .navigation-primary .submenu .submenu .menu-item .menu-link {
  color: #021B29;
}

body .navigation-primary .submenu .submenu .menu-item:hover .menu-link {
  color: var(--color-mango-orange);
}

.header__language-switcher--label-current,
.header__language-switcher .lang_list_class li a {
  color: #021B29;
}

body .navigation-primary a:hover,
body .navigation-primary a:focus,
.header__language-switcher--label-current:hover,
.header__language-switcher--label-current:focus,
.header__language-switcher .lang_list_class li:hover a,
.header__language-switcher .lang_list_class li a:focus {
  /*color: var(--color-mango-orange);*/
}

body .navigation-primary a:active,
.header__language-switcher--label-current:active,
.header__language-switcher .lang_list_class li a:active {
  color: #2a4351;
}

.header__language-switcher .lang_list_class.first-active::after {
  border-bottom-color: 

  
  
    
  


  rgba(231, 246, 255, 1.0)

;
}

.header__language-switcher-label-current,
.header__language-switcher .lang_list_class li a {

}

.header__language-switcher .lang_list_class li:hover {
  background-color: #021B29;
}

.social-footer {
  display: none;
  visibility: none;
}
  
@media(max-width: 767px) { 
  .social-footer {
    display: flex;
    flex-direction: column;
    visibility: visible;
    padding-bottom: 56px;
  }

  .social-footer .row-fluid {
    display: flex;
    justify-content: center;
  }

  .social-footer .header-privacy-policy {
    display: flex;
    justify-content: center;
  }

  .social-footer .social-links__icon {
    width: 46px;
    height: 46px;
  }

  .social-footer .social-links__icon svg {
    height: 22px;
  }

  .social-footer #hs_cos_wrapper_social-module-2 {
    margin-bottom: 24px;
  }

  .header:after {
    left: 0;
  }
  
  .header .header__navigation {
    background-color: 

  
  
    
  


  rgba(231, 246, 255, 1.0)

;
  }

  #hs_cos_wrapper_navigation-primary {
    flex-grow: 1;
  }
  
  .header .header__navigation.open {
    background: url(https://21555945.fs1.hubspotusercontent-na1.net/hubfs/21555945/global/bg-plus-dotted.svg) no-repeat #021B29;
    background-position: 30% 2%;
    display: flex;
    flex-direction: column;
    flex: 1;
    height: 100vh;
    overflow-y: auto;
  }
  
  .header .header__logo {
    max-width: 175px;
    z-index: 5;
  }

  .header .header__navigation-toggle svg,
  .menu-arrow svg {
    fill: #021B29;
  }
  
  .header.header--no-navigation .header__container {
    justify-content: center;
  }
  
  .header.header--no-navigation .header__logo {
    margin: 0
  }

  .header .submenu.level-1>li {
    color: #ffffff;
  }

  .header .header__navigation--toggle {
    background-image: url("data:image/svg+xml,%3Csvg width='38' height='20' viewBox='0 0 38 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect width='38' height='4' rx='1' fill='%230E1C56'/%3E%3Crect y='8' width='38' height='4' rx='1' fill='%230E1C56'/%3E%3Crect y='16' width='38' height='4' rx='1' fill='%230E1C56'/%3E%3C/svg%3E%0A");
    height: 20px;
    width: 38px;
  }

  .header.dark .header__navigation--toggle {
    background-image: url("data:image/svg+xml,%3Csvg width='38' height='20' viewBox='0 0 38 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect width='38' height='4' rx='1' fill='%23ffffff'/%3E%3Crect y='8' width='38' height='4' rx='1' fill='%23ffffff'/%3E%3Crect y='16' width='38' height='4' rx='1' fill='%23ffffff'/%3E%3C/svg%3E%0A");
  }

  .header .header__close--toggle {
    background-image: url("data:image/svg+xml,%3Csvg width='23' height='22' viewBox='0 0 23 22' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='2.73242' width='28.15' height='2.96316' rx='1' transform='rotate(45 2.73242 0)' fill='white'/%3E%3Crect x='0.636719' y='19.9053' width='28.15' height='2.96316' rx='1' transform='rotate(-45 0.636719 19.9053)' fill='white'/%3E%3C/svg%3E%0A");
    background-size: 100%;
    height: 22px;
    width: 22px;
  }

  .navigation-primary {
    display: flex;
  }

  .navigation-primary .submenu.level-1>li, 
  .navigation-primary .submenu.level-1>li>a,
  .navigation-primary .submenu.level-2 .menu-item .menu-link {
    width: auto;
    text-align: center;
    font-size: var(--font-size-subh);
    font-weight: 700;
    line-height: 110%;
    letter-spacing: -0.04em;
    text-transform: capitalize;
    min-height: 50px;
  }

  .navigation-primary .submenu.level-2 .menu-item .menu-link {
    padding: 0;
  }

  .navigation-primary .submenu.level-1>li.has-submenu:after,
  .navigation-primary .submenu.level-1>li:hover>a:after,
  .navigation-primary .submenu.level-1>li>a.active-item:after {
    display: none;
  }

  .navigation-primary .submenu .menu-arrow, 
  .navigation-primary .submenu.level-1>.has-submenu>.menu-arrow,
  .navigation-primary .submenu>.has-submenu>.menu-arrow {
      top: -10px;
      width: 100%;
  }
  
  .navigation-primary .submenu>li>a {
    width: auto;
  }
  
  .navigation-primary .submenu.level-1>li.has-submenu:hover>a:after, 
  .navigation-primary .submenu.level-1>li.has-submenu>a.active-item:after {
    display: inline;
  }
  
  .navigation-primary input[type=checkbox]~.menu-link:after {
    width: auto;
  }
  
  .navigation-primary .submenu.level-1>li.has-submenu>input[type=checkbox]:checked~.menu-link {
    color: var(--color-mango-orange-1000);
  }
  
  .navigation-primary .submenu.level-1>li.has-submenu>a.menu-link:after {
    background-color: transparent;
    left: 10px;
    top: 0;
    content: "+";
    position: relative;
    width: 0;
    transition: none;
  }
  
  .navigation-primary .submenu.level-1>li.has-submenu>input[type=checkbox]:checked~a.menu-link:after {
    background-color: transparent;
    left: 10px;
    top: 0;
    content: "-";
    position: relative;
  } 
  
  .navigation-primary .submenu.level-1>li.has-submenu>input[type=checkbox]:checked~a.menu-link:hover:after {
    display: inline-block;
    transition: none;
    width: 0;
  }
}





/* See "/css/components/_footer.css" */





.blog-header__inner,
.blog-related-posts {
  padding: 60px 0;
}

/* Blog listing */

.blog-index__post-title-link {
}

.blog-index__post-author-name {
  color: var(--color-midnight);
}

.blog-index__post-tag:hover {
  background-color: var(--color-mango-orange);
}

.blog-index__post-timestamp {
  color: #aaaaaa;
}

/* Blog pagination */

.blog-pagination__link {

}

.blog-pagination__link--active:after,
.blog-pagination__prev-link:after,
.blog-pagination__next-link:after {
  background-color: #021B29;
}

.blog-pagination__next-link svg,
.blog-pagination__prev-link svg {
  fill: var(--color-midnight);
}
.blog-pagination__number-link:hover,
.blog-pagination__number-link:focus {
  background-color: #021B29;
}

.blog-pagination {
}


/* Blog related posts */

.blog-related-posts__title a {

}

.blog-related-posts__title a:hover {
  color: #021B29;
}

/* Blog comments */

.blog-comments {
  padding-top: 60px;
  margin-bottom: calc(60px + 40px);
}

#comments-listing .comment-reply-to {
  /*color: ;*/
}

#comments-listing .comment-reply-to:hover,
#comments-listing .comment-reply-to:focus {
  /*color: ;*/
}

#comments-listing .comment-reply-to:active {
  /*color: ;*/
}

.blog-comments .replying-to {

}





.error-page:before {
  color: #021B29;
}

.error-page {
  padding: 0rem 0 10rem;
}

.systems-page--search-results .hs-search-results__listing li .hs-search-results__title {
  font-size: font-size: var(--font-size-h5);

}

.systems-page--search-results .hs-search-results__listing .hs-search-highlight {
  color: #021B29;
}





.card__price {
  color: #021B29;
}

.card__subtitle {
  color: #aaaaaa;
}

.team-member-wrapper img {
  border-color: #021B29;
}

.team-member-wrapper .team-job {

}

.team-member-wrapper .team-desc {
  color: #aaaaaa;
}

.team-member__social-link:hover .team-member__social-link_color,
.team-member__social-link:focus .team-member__social-link_color {
  background-color: #021B29;
}

@media (max-width: 767px) {
  .header__search.open,
  .header__navigation.open,
  .header__language-switcher.open {
    background-color: #021B29;
  }
}

.header__search .hs-search-field__input {
}

.icon-block_icon-wrapper svg {
  fill: #021B29;
}

.counter-wrapper {
}
.counter-value-wrapper {
  color: #021B29;
}

.counter-title {
  color: #021B29;
}

.promo-box:before {
  background: linear-gradient(to bottom,rgba(0,0,0,.2), #021B29 100%);
}

.progress-bar {

}

.progress-title {
  color: #021B29;
}

.progress-load {
  background-color: #021B29;
}

.portfolio__desc {
}

.toggles__icon:before,
.toggles__icon:after {
  background-color: #021B29;
}

.splide__pagination__page.is-active {
  background-color: var(--color-mango-orange);
}

.video-close-btn:hover {
  background-color: #021B29;
}

.vbb-color-full-light .video-button-block_icon svg {
  fill: #021B29;
}
.button-link__link {
  color: #021B29;
}

.button-link__link:hover {
  color: #021B29;
}

.button-link__link:after {
  background-color: #021B29;
}

.title-description,
.title-description p {
  color: #aaaaaa;
}

.lead-text {
}

.lead-text,
.lead-text p {
}

/* HUBSPOT VIDEO MODULE OVERRIDES */
.hs-video-wrapper {
}
.hs-video-wrapper iframe {
  overflow: hidden;
  border-radius: 20px;
  max-height: calc(100vh - 150px);
  background: #000;
}

.vjs-hubspot .vjs-big-play-button {
  width: 105px;
  padding-bottom: 105px;
  margin-top: -52px; 
  margin-left: -52px;
  opacity: 1; 
}

.vjs-hubspot .vjs-big-play-button > svg {
  transform: scale(0.5);
}

/* ACCORDIAN MODULE OVERRIDES */
.toggles {
  background-color: white;
  border-radius: 10px;
  padding: 20px 20px 20px 20px;
  color: #000;
}

.toggles .toggles__header h5 {
  font-size: 24px;
  font-weight: 700;
  padding-left: 20px;
}


.toggles p {
  font-size: 18px;
  font-weight: 400;
  padding: 20px 20px 20px 70px;
}

.toggles a {
  color: var(--color-mango-orange-1000);
}

.toggles .toggles__icon {
  flex-shrink: 0;
  height: 20px;
  margin-left: 60px;
  width: 20px;
}

.toggles .toggles__icon:before {
  background-color: var(--color-mango-orange-1000);
  height: 3px;
}

.toggles .toggles__icon:after {
  background-color: var(--color-mango-orange-1000);
  width: 3px;
}

.toggles .toggles__inner {
  padding-bottom: 0;
}

@media(max-width: 767px) {

  .toggles .toggles__header h5 {
    padding-left: 0px;
    font-size: 20px;
  }

  .toggles p {
    text-align: left !important;
    padding-left: 0px;
    font-size: 16px;
  }
}

/* Home-Landing Page Heading-level 1 */
.body-container--landing-page h1 {
  font-size: 2.8em;
}

/* Nav Widget */

div.stimeNavLink:nth-of-type(2) .navWidget.left::after, 
div.stimeNavLink:nth-of-type(3) .navWidget.left::after,
div.stimeNavLink:nth-of-type(4) .navWidget.left::after
{
    content: inherit;
}

/*  Button:Subnav color match     */

.subnavButton {
  background: rgba(255, 88, 36, 1.0);
}

a.subnavButton:hover, a.subnavButton:focus {
    background: rgba(225, 58, 6, 1.0);
}

/* LMS CTA Popup Button - 2023-02-03:SS */

a#hs-button_widget_1675370932026.hs-button { 
    line-height: 24px;
    padding: 20px 30px;
  
    font-family: "acumin-pro";
    font-weight: 700;
    font-size: 18px;
    color: #fff;
    background-color: rgba(255, 88, 36, 1.0);
    border-radius: 50px;
    
    cursor: pointer;
    display: inline-block;
    text-align: center;
    transition: all .3s;
    white-space: normal;
}

a#hs-button_widget_1675370932026.hs-button:hover, a#hs-button_widget_1675370932026.hs-button:focus {
    background-color: rgba(225, 58, 6, 1.0);
    border-color: #e13a06;
    color: #FFFFFF;
}

a#hs-button_widget_1675370932026.hs-button:active, a#hs-button_widget_1675370932026.hs-button:focus, a#hs-button_widget_1675370932026.hs-button:hover {
    text-decoration: none;
}

@media(max-width: 767px) {
 
  a#hs-button_widget_1675370932026.hs-button { 
    margin-top: 1rem;
  }
  
  /* Mobile Nav SVG:PNG:SVG Interim Fix */
  #stimeNavMobile {
   background-color: inherit; 
  }
  
}

  /* Mobile Subnav */
@media (max-width: 400px) {
  .stimeNavLink, .subnavLink {
    font-size: 11px;
  }
}

/* Utilities */

.justify-content-center {
  justify-content: center!important;
  display: flex;
}

ul.list-style-none {
  list-style: none;
  text-align: left;
  padding-left: 0;
  font-size: var(--font-size-p-lg);
  letter-spacing: -0.01em;
}

/* BS Grid System */
.container {
/*
  padding-right: 15px;
  padding-left: 15px;
*/
  margin-right: auto;
  margin-left: auto;
}

footer {
  padding-left: 15px;
  padding-right: 15px;
}

@media (min-width: 768px) {
  .container {
    width: 750px;
  }
}
@media (min-width: 992px) {
  .container {
    width: 970px;
  }
}
@media (min-width: 1200px) {
  .container {
    width: 1170px;
  }
}
.container-fluid {
  /*
  padding-right: 15px;
  padding-left: 15px;
  */
  margin-right: auto;
  margin-left: auto;
}
.row {
  margin-right: -15px;
  margin-left: -15px;
}
.row-no-gutters {
  margin-right: 0;
  margin-left: 0;
}
.row-no-gutters [class*="col-"] {
  padding-right: 0;
  padding-left: 0;
}
.col-xs-1, .col-sm-1, .col-md-1, .col-lg-1, .col-xs-2, .col-sm-2, .col-md-2, .col-lg-2, .col-xs-3, .col-sm-3, .col-md-3, .col-lg-3, .col-xs-4, .col-sm-4, .col-md-4, .col-lg-4, .col-xs-5, .col-sm-5, .col-md-5, .col-lg-5, .col-xs-6, .col-sm-6, .col-md-6, .col-lg-6, .col-xs-7, .col-sm-7, .col-md-7, .col-lg-7, .col-xs-8, .col-sm-8, .col-md-8, .col-lg-8, .col-xs-9, .col-sm-9, .col-md-9, .col-lg-9, .col-xs-10, .col-sm-10, .col-md-10, .col-lg-10, .col-xs-11, .col-sm-11, .col-md-11, .col-lg-11, .col-xs-12, .col-sm-12, .col-md-12, .col-lg-12 {
  position: relative;
  min-height: 1px;
  padding-right: 15px;
  padding-left: 15px;
}
.col-xs-1, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9, .col-xs-10, .col-xs-11, .col-xs-12 {
  float: left;
}
.col-xs-12 {
  width: 100%;
}
.col-xs-11 {
  width: 91.66666667%;
}
.col-xs-10 {
  width: 83.33333333%;
}
.col-xs-9 {
  width: 75%;
}
.col-xs-8 {
  width: 66.66666667%;
}
.col-xs-7 {
  width: 58.33333333%;
}
.col-xs-6 {
  width: 50%;
}
.col-xs-5 {
  width: 41.66666667%;
}
.col-xs-4 {
  width: 33.33333333%;
}
.col-xs-3 {
  width: 25%;
}
.col-xs-2 {
  width: 16.66666667%;
}
.col-xs-1 {
  width: 8.33333333%;
}
.col-xs-pull-12 {
  right: 100%;
}
.col-xs-pull-11 {
  right: 91.66666667%;
}
.col-xs-pull-10 {
  right: 83.33333333%;
}
.col-xs-pull-9 {
  right: 75%;
}
.col-xs-pull-8 {
  right: 66.66666667%;
}
.col-xs-pull-7 {
  right: 58.33333333%;
}
.col-xs-pull-6 {
  right: 50%;
}
.col-xs-pull-5 {
  right: 41.66666667%;
}
.col-xs-pull-4 {
  right: 33.33333333%;
}
.col-xs-pull-3 {
  right: 25%;
}
.col-xs-pull-2 {
  right: 16.66666667%;
}
.col-xs-pull-1 {
  right: 8.33333333%;
}
.col-xs-pull-0 {
  right: auto;
}
.col-xs-push-12 {
  left: 100%;
}
.col-xs-push-11 {
  left: 91.66666667%;
}
.col-xs-push-10 {
  left: 83.33333333%;
}
.col-xs-push-9 {
  left: 75%;
}
.col-xs-push-8 {
  left: 66.66666667%;
}
.col-xs-push-7 {
  left: 58.33333333%;
}
.col-xs-push-6 {
  left: 50%;
}
.col-xs-push-5 {
  left: 41.66666667%;
}
.col-xs-push-4 {
  left: 33.33333333%;
}
.col-xs-push-3 {
  left: 25%;
}
.col-xs-push-2 {
  left: 16.66666667%;
}
.col-xs-push-1 {
  left: 8.33333333%;
}
.col-xs-push-0 {
  left: auto;
}
.col-xs-offset-12 {
  margin-left: 100%;
}
.col-xs-offset-11 {
  margin-left: 91.66666667%;
}
.col-xs-offset-10 {
  margin-left: 83.33333333%;
}
.col-xs-offset-9 {
  margin-left: 75%;
}
.col-xs-offset-8 {
  margin-left: 66.66666667%;
}
.col-xs-offset-7 {
  margin-left: 58.33333333%;
}
.col-xs-offset-6 {
  margin-left: 50%;
}
.col-xs-offset-5 {
  margin-left: 41.66666667%;
}
.col-xs-offset-4 {
  margin-left: 33.33333333%;
}
.col-xs-offset-3 {
  margin-left: 25%;
}
.col-xs-offset-2 {
  margin-left: 16.66666667%;
}
.col-xs-offset-1 {
  margin-left: 8.33333333%;
}
.col-xs-offset-0 {
  margin-left: 0%;
}
@media (min-width: 768px) {
  .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12 {
    float: left;
  }
  .col-sm-12 {
    width: 100%;
  }
  .col-sm-11 {
    width: 91.66666667%;
  }
  .col-sm-10 {
    width: 83.33333333%;
  }
  .col-sm-9 {
    width: 75%;
  }
  .col-sm-8 {
    width: 66.66666667%;
  }
  .col-sm-7 {
    width: 58.33333333%;
  }
  .col-sm-6 {
    width: 50%;
  }
  .col-sm-5 {
    width: 41.66666667%;
  }
  .col-sm-4 {
    width: 33.33333333%;
  }
  .col-sm-3 {
    width: 25%;
  }
  .col-sm-2 {
    width: 16.66666667%;
  }
  .col-sm-1 {
    width: 8.33333333%;
  }
  .col-sm-pull-12 {
    right: 100%;
  }
  .col-sm-pull-11 {
    right: 91.66666667%;
  }
  .col-sm-pull-10 {
    right: 83.33333333%;
  }
  .col-sm-pull-9 {
    right: 75%;
  }
  .col-sm-pull-8 {
    right: 66.66666667%;
  }
  .col-sm-pull-7 {
    right: 58.33333333%;
  }
  .col-sm-pull-6 {
    right: 50%;
  }
  .col-sm-pull-5 {
    right: 41.66666667%;
  }
  .col-sm-pull-4 {
    right: 33.33333333%;
  }
  .col-sm-pull-3 {
    right: 25%;
  }
  .col-sm-pull-2 {
    right: 16.66666667%;
  }
  .col-sm-pull-1 {
    right: 8.33333333%;
  }
  .col-sm-pull-0 {
    right: auto;
  }
  .col-sm-push-12 {
    left: 100%;
  }
  .col-sm-push-11 {
    left: 91.66666667%;
  }
  .col-sm-push-10 {
    left: 83.33333333%;
  }
  .col-sm-push-9 {
    left: 75%;
  }
  .col-sm-push-8 {
    left: 66.66666667%;
  }
  .col-sm-push-7 {
    left: 58.33333333%;
  }
  .col-sm-push-6 {
    left: 50%;
  }
  .col-sm-push-5 {
    left: 41.66666667%;
  }
  .col-sm-push-4 {
    left: 33.33333333%;
  }
  .col-sm-push-3 {
    left: 25%;
  }
  .col-sm-push-2 {
    left: 16.66666667%;
  }
  .col-sm-push-1 {
    left: 8.33333333%;
  }
  .col-sm-push-0 {
    left: auto;
  }
  .col-sm-offset-12 {
    margin-left: 100%;
  }
  .col-sm-offset-11 {
    margin-left: 91.66666667%;
  }
  .col-sm-offset-10 {
    margin-left: 83.33333333%;
  }
  .col-sm-offset-9 {
    margin-left: 75%;
  }
  .col-sm-offset-8 {
    margin-left: 66.66666667%;
  }
  .col-sm-offset-7 {
    margin-left: 58.33333333%;
  }
  .col-sm-offset-6 {
    margin-left: 50%;
  }
  .col-sm-offset-5 {
    margin-left: 41.66666667%;
  }
  .col-sm-offset-4 {
    margin-left: 33.33333333%;
  }
  .col-sm-offset-3 {
    margin-left: 25%;
  }
  .col-sm-offset-2 {
    margin-left: 16.66666667%;
  }
  .col-sm-offset-1 {
    margin-left: 8.33333333%;
  }
  .col-sm-offset-0 {
    margin-left: 0%;
  }
}
@media (min-width: 992px) {
  .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12 {
    float: left;
  }
  .col-md-12 {
    width: 100%;
  }
  .col-md-11 {
    width: 91.66666667%;
  }
  .col-md-10 {
    width: 83.33333333%;
  }
  .col-md-9 {
    width: 75%;
  }
  .col-md-8 {
    width: 66.66666667%;
  }
  .col-md-7 {
    width: 58.33333333%;
  }
  .col-md-6 {
    width: 50%;
  }
  .col-md-5 {
    width: 41.66666667%;
  }
  .col-md-4 {
    width: 33.33333333%;
  }
  .col-md-3 {
    width: 25%;
  }
  .col-md-2 {
    width: 16.66666667%;
  }
  .col-md-1 {
    width: 8.33333333%;
  }
  .col-md-pull-12 {
    right: 100%;
  }
  .col-md-pull-11 {
    right: 91.66666667%;
  }
  .col-md-pull-10 {
    right: 83.33333333%;
  }
  .col-md-pull-9 {
    right: 75%;
  }
  .col-md-pull-8 {
    right: 66.66666667%;
  }
  .col-md-pull-7 {
    right: 58.33333333%;
  }
  .col-md-pull-6 {
    right: 50%;
  }
  .col-md-pull-5 {
    right: 41.66666667%;
  }
  .col-md-pull-4 {
    right: 33.33333333%;
  }
  .col-md-pull-3 {
    right: 25%;
  }
  .col-md-pull-2 {
    right: 16.66666667%;
  }
  .col-md-pull-1 {
    right: 8.33333333%;
  }
  .col-md-pull-0 {
    right: auto;
  }
  .col-md-push-12 {
    left: 100%;
  }
  .col-md-push-11 {
    left: 91.66666667%;
  }
  .col-md-push-10 {
    left: 83.33333333%;
  }
  .col-md-push-9 {
    left: 75%;
  }
  .col-md-push-8 {
    left: 66.66666667%;
  }
  .col-md-push-7 {
    left: 58.33333333%;
  }
  .col-md-push-6 {
    left: 50%;
  }
  .col-md-push-5 {
    left: 41.66666667%;
  }
  .col-md-push-4 {
    left: 33.33333333%;
  }
  .col-md-push-3 {
    left: 25%;
  }
  .col-md-push-2 {
    left: 16.66666667%;
  }
  .col-md-push-1 {
    left: 8.33333333%;
  }
  .col-md-push-0 {
    left: auto;
  }
  .col-md-offset-12 {
    margin-left: 100%;
  }
  .col-md-offset-11 {
    margin-left: 91.66666667%;
  }
  .col-md-offset-10 {
    margin-left: 83.33333333%;
  }
  .col-md-offset-9 {
    margin-left: 75%;
  }
  .col-md-offset-8 {
    margin-left: 66.66666667%;
  }
  .col-md-offset-7 {
    margin-left: 58.33333333%;
  }
  .col-md-offset-6 {
    margin-left: 50%;
  }
  .col-md-offset-5 {
    margin-left: 41.66666667%;
  }
  .col-md-offset-4 {
    margin-left: 33.33333333%;
  }
  .col-md-offset-3 {
    margin-left: 25%;
  }
  .col-md-offset-2 {
    margin-left: 16.66666667%;
  }
  .col-md-offset-1 {
    margin-left: 8.33333333%;
  }
  .col-md-offset-0 {
    margin-left: 0%;
  }
}
@media (min-width: 1200px) {
  .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12 {
    float: left;
  }
  .col-lg-12 {
    width: 100%;
  }
  .col-lg-11 {
    width: 91.66666667%;
  }
  .col-lg-10 {
    width: 83.33333333%;
  }
  .col-lg-9 {
    width: 75%;
  }
  .col-lg-8 {
    width: 66.66666667%;
  }
  .col-lg-7 {
    width: 58.33333333%;
  }
  .col-lg-6 {
    width: 50%;
  }
  .col-lg-5 {
    width: 41.66666667%;
  }
  .col-lg-4 {
    width: 33.33333333%;
  }
  .col-lg-3 {
    width: 25%;
  }
  .col-lg-2 {
    width: 16.66666667%;
  }
  .col-lg-1 {
    width: 8.33333333%;
  }
  .col-lg-pull-12 {
    right: 100%;
  }
  .col-lg-pull-11 {
    right: 91.66666667%;
  }
  .col-lg-pull-10 {
    right: 83.33333333%;
  }
  .col-lg-pull-9 {
    right: 75%;
  }
  .col-lg-pull-8 {
    right: 66.66666667%;
  }
  .col-lg-pull-7 {
    right: 58.33333333%;
  }
  .col-lg-pull-6 {
    right: 50%;
  }
  .col-lg-pull-5 {
    right: 41.66666667%;
  }
  .col-lg-pull-4 {
    right: 33.33333333%;
  }
  .col-lg-pull-3 {
    right: 25%;
  }
  .col-lg-pull-2 {
    right: 16.66666667%;
  }
  .col-lg-pull-1 {
    right: 8.33333333%;
  }
  .col-lg-pull-0 {
    right: auto;
  }
  .col-lg-push-12 {
    left: 100%;
  }
  .col-lg-push-11 {
    left: 91.66666667%;
  }
  .col-lg-push-10 {
    left: 83.33333333%;
  }
  .col-lg-push-9 {
    left: 75%;
  }
  .col-lg-push-8 {
    left: 66.66666667%;
  }
  .col-lg-push-7 {
    left: 58.33333333%;
  }
  .col-lg-push-6 {
    left: 50%;
  }
  .col-lg-push-5 {
    left: 41.66666667%;
  }
  .col-lg-push-4 {
    left: 33.33333333%;
  }
  .col-lg-push-3 {
    left: 25%;
  }
  .col-lg-push-2 {
    left: 16.66666667%;
  }
  .col-lg-push-1 {
    left: 8.33333333%;
  }
  .col-lg-push-0 {
    left: auto;
  }
  .col-lg-offset-12 {
    margin-left: 100%;
  }
  .col-lg-offset-11 {
    margin-left: 91.66666667%;
  }
  .col-lg-offset-10 {
    margin-left: 83.33333333%;
  }
  .col-lg-offset-9 {
    margin-left: 75%;
  }
  .col-lg-offset-8 {
    margin-left: 66.66666667%;
  }
  .col-lg-offset-7 {
    margin-left: 58.33333333%;
  }
  .col-lg-offset-6 {
    margin-left: 50%;
  }
  .col-lg-offset-5 {
    margin-left: 41.66666667%;
  }
  .col-lg-offset-4 {
    margin-left: 33.33333333%;
  }
  .col-lg-offset-3 {
    margin-left: 25%;
  }
  .col-lg-offset-2 {
    margin-left: 16.66666667%;
  }
  .col-lg-offset-1 {
    margin-left: 8.33333333%;
  }
  .col-lg-offset-0 {
    margin-left: 0%;
  }
}
.clearfix:before,
.clearfix:after,
.container:before,
.container:after,
.container-fluid:before,
.container-fluid:after,
.row:before,
.row:after {
  display: table;
  content: " ";
}
.clearfix:after,
.container:after,
.container-fluid:after,
.row:after {
  clear: both;
}
.center-block {
  display: block;
  margin-right: auto;
  margin-left: auto;
}
.pull-right {
  float: right !important;
}
.pull-left {
  float: left !important;
}
.hide {
  display: none !important;
}
.show {
  display: block !important;
}
.invisible {
  visibility: hidden;
}
.text-hide {
  font: 0/0 a;
  color: transparent;
  text-shadow: none;
  background-color: transparent;
  border: 0;
}
.hidden {
  display: none !important;
}
.affix {
  position: fixed;
}
@-ms-viewport {
  width: device-width;
}
.visible-xs,
.visible-sm,
.visible-md,
.visible-lg {
  display: none !important;
}
.visible-xs-block,
.visible-xs-inline,
.visible-xs-inline-block,
.visible-sm-block,
.visible-sm-inline,
.visible-sm-inline-block,
.visible-md-block,
.visible-md-inline,
.visible-md-inline-block,
.visible-lg-block,
.visible-lg-inline,
.visible-lg-inline-block {
  display: none !important;
}
@media (max-width: 767px) {
  .visible-xs {
    display: block !important;
  }
  table.visible-xs {
    display: table !important;
  }
  tr.visible-xs {
    display: table-row !important;
  }
  th.visible-xs,
  td.visible-xs {
    display: table-cell !important;
  }
}
@media (max-width: 767px) {
  .visible-xs-block {
    display: block !important;
  }
}
@media (max-width: 767px) {
  .visible-xs-inline {
    display: inline !important;
  }
}
@media (max-width: 767px) {
  .visible-xs-inline-block {
    display: inline-block !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .visible-sm {
    display: block !important;
  }
  table.visible-sm {
    display: table !important;
  }
  tr.visible-sm {
    display: table-row !important;
  }
  th.visible-sm,
  td.visible-sm {
    display: table-cell !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .visible-sm-block {
    display: block !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .visible-sm-inline {
    display: inline !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .visible-sm-inline-block {
    display: inline-block !important;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .visible-md {
    display: block !important;
  }
  table.visible-md {
    display: table !important;
  }
  tr.visible-md {
    display: table-row !important;
  }
  th.visible-md,
  td.visible-md {
    display: table-cell !important;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .visible-md-block {
    display: block !important;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .visible-md-inline {
    display: inline !important;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .visible-md-inline-block {
    display: inline-block !important;
  }
}
@media (min-width: 1200px) {
  .visible-lg {
    display: block !important;
  }
  table.visible-lg {
    display: table !important;
  }
  tr.visible-lg {
    display: table-row !important;
  }
  th.visible-lg,
  td.visible-lg {
    display: table-cell !important;
  }
}
@media (min-width: 1200px) {
  .visible-lg-block {
    display: block !important;
  }
}
@media (min-width: 1200px) {
  .visible-lg-inline {
    display: inline !important;
  }
}
@media (min-width: 1200px) {
  .visible-lg-inline-block {
    display: inline-block !important;
  }
}
@media (max-width: 767px) {
  .hidden-xs {
    display: none !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .hidden-sm {
    display: none !important;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .hidden-md {
    display: none !important;
  }
}
@media (min-width: 1200px) {
  .hidden-lg {
    display: none !important;
  }
}
.visible-print {
  display: none !important;
}
@media print {
  .visible-print {
    display: block !important;
  }
  table.visible-print {
    display: table !important;
  }
  tr.visible-print {
    display: table-row !important;
  }
  th.visible-print,
  td.visible-print {
    display: table-cell !important;
  }
}
.visible-print-block {
  display: none !important;
}
@media print {
  .visible-print-block {
    display: block !important;
  }
}
.visible-print-inline {
  display: none !important;
}
@media print {
  .visible-print-inline {
    display: inline !important;
  }
}
.visible-print-inline-block {
  display: none !important;
}
@media print {
  .visible-print-inline-block {
    display: inline-block !important;
  }
}
@media print {
  .hidden-print {
    display: none !important;
  }
}
.hideThis{
    display: none !important;
  }