:root {
    --dark-blue: #002f6c;
}

/* Header */
header {
    /* width: 100%;
    background: #FFFFFF;
    box-shadow: 0 2px 3px 0 rgba(0, 0, 0, 0.07); */
    height: 70px;
    /* display: flex; */
    position: fixed;
    background: #FFFFFF;
    box-shadow: 0 2px 3px 0 rgba(0, 0, 0, 0.07);
    z-index: 9999;
    top: 0;
}

header.transparent {
    position: absolute;
    background: transparent;
    box-shadow: none;
}

header.transparent-active {
    background: #FFFFFF;
}

header .light-logo,
header.transparent.transparent-active .light-logo {
    display: none;
}

header.transparent.transparent-active .dark-logo {
    display: block;
}

header.transparent .light-logo {
    display: block;
}

header.transparent .dark-logo {
    display: none;
}

header .container {
    /* width: 100%;
max-width: 1300px;
padding: 0 20px;
margin: 0 auto;

display: flex;
align-items: center;
justify-content: space-between; */
}

#logo {
    width: 200px;
    position: relative;
    z-index: 2;
}

#logo img {
    max-width: 100%;
}

nav.desktop-menu {
    display: none;

    transition: all ease-in-out 0.5s;
}

.active .menu-overlay {
    width: 100vw;
    height: 100vh;
    position: fixed;
    background: rgba(0, 0, 0, 0);
    top: 70px;
    left: 0;
}

.search-active nav.desktop-menu {
    width: 0;
    opacity: 0;
    overflow: hidden;
}

nav .topmenu {
    display: flex;
    list-style: none;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
    padding: 0;
}

nav .topmenu>li {
    z-index: 2;
}

nav .topmenu>li:not(:first-child) {
    padding-left: 20px;
}

nav.desktop-menu a {
    font-size: 18px;
    text-decoration: none;
    color: #000;
    position: relative;
    letter-spacing: 0.2px;
}

.show-hide {
    color: var(--dark-blue);
}


.button-link {
    color: var(--dark-blue);
}

.see-all {
    color: var(--dark-blue);
}

nav .topmenu>li>a {
    letter-spacing: 0.2px;
}

header.transparent nav .topmenu>li>a {
    color: #FFFFFF;
}

header.transparent nav .topmenu>li>a:hover {
    color: #FFFFFF;
}

header.transparent.transparent-active nav .topmenu>li>a {
    color: #000;
}

header.transparent.transparent-active nav .topmenu>li>a:hover {
    color: #000;
}

nav .topmenu>li>a:hover {
    font-weight: bold;
    letter-spacing: 0px;
    color: #102B52;
}

nav .topmenu>li.active>a {
    font-weight: bold;
    letter-spacing: 0px;
    z-index: 2;
}

nav .topmenu:not(.sub-active)>.active>a {
    font-weight: bold;
    letter-spacing: 0px;
}

nav .topmenu i {
    margin-left: 5px;
    font-size: 12px;
}

nav .topmenu>li>a:after {
    position: absolute;
    content: '';
    width: 0;
    height: 2px;
    background-image: linear-gradient(to left, #00b9a7, #031997);
    left: 0;
    bottom: -8px;

    transition: width ease-in-out 0.25s;
}

nav .topmenu>li>a:hover:after,
nav .topmenu>li.active>a:after {
    width: calc(100% - 20px);
}

nav .topmenu>li.hs-dental>a:hover:after,
nav .topmenu>li.hs-dental.active>a:after {
    width: 100%;
}

.submenu {
    position: absolute;
    display: none;
    width: 100%;
    max-width: 1400px;
    left: 0;
    right: 0;
    margin: auto;
    height: 680px;

    top: 70px;
    background: #FFFFFF;
    padding: 0;
    box-shadow: 0 2px 3px 0 rgba(0, 0, 0, 0.07);
    z-index: 2;
}

nav .topmenu>li.active>.submenu,
nav .topmenu>li.active>.submenu-normal {
    display: block;
}

.submenu>ul {
    list-style: none;
    padding: 0;
    width: 100%;
}

.submenu li {
    display: flex;
}

.submenu>ul>li {
    border-bottom: 1px solid #EEEEEE;
}

.submenu .sub>a {
    padding-left: 30px;
}

.submenu>ul>li>a {
    font-size: 14px;
    padding: 15px;
    display: block;
    background: #FFFFFF;
    width: 23%;
    border-left: 3px solid transparent;

    transition: background ease-in-out 0.25s;
}

.submenu>ul>li>a:hover,
.submenu>ul>li:not(.sub).active>a {
    background: #F4F2F1;
    font-weight: bold;
    color: var(--dark-blue);

    border-left: 3px solid;
    border-image-source: linear-gradient(0deg, #00b9a7, #031997);
    border-image-slice: 1;
}

.submenu>ul>li.sub.active>a,
.submenu>ul>li.sub:hover>a {
    font-weight: bold;
}

.submenu-normal {
    position: absolute;
    display: none;
    width: auto;
    min-width: 250px;

    top: 70px;
    background: #FFFFFF;
    padding: 0;
    box-shadow: 0 2px 3px 0 rgba(0, 0, 0, 0.07);
}

.submenu-normal ul {
    list-style: none;
    padding: 0;
}

.submenu-normal li {
    border-bottom: 1px solid #DDDDDD;
}

.submenu-normal a {
    padding: 15px;
    display: block;

    background: #FFFFFF;
    border-left: 2px solid transparent;

    transition: background ease-in-out 0.25s;
}

.submenu-normal a:hover {
    background: #F4F2F1;

    border-left: 2px solid;
    border-image-source: linear-gradient(0deg, #00b9a7, #031997);
    border-image-slice: 1;
}

.bigmenu,
.submenu-sub {
    display: none;
    position: absolute;
    right: 0;
    top: 0;
    width: 77%;
    background: #F4F2F1;
    height: 680px;
}

nav .submenu li.active>.bigmenu,
nav .submenu li.active>.submenu-sub {
    display: block;
}

.bigmenu .menu-group>div {
    padding: 5px 20px;
}

.bigmenu .menu-group {
    width: 66.66%;
    float: left;
}

.bigmenu .menu-photo {
    width: 33.33%;
    float: left;
    padding: 30px;
}

.bigmenu .menu-photo img {
    margin-left: auto;
}

.bigmenu.practice-type-menu .menu-group {
    width: 100%;
    display: flex;
}

.bigmenu.practice-type-menu .menu-group>div {
    width: 33.33%;
}

.bigmenu ul {
    display: flex;
    flex-wrap: wrap;
    padding: 0;
}

.bigmenu div>h4 {
    padding-bottom: 5px;
    border-bottom: 1px solid #CCCCCC;
    margin: 10px 0;
    font-size: 15px;
    font-weight: 600;
    color: var(--dark-blue);
}

.submenu>h4 {
    padding-bottom: 5px;
    border-bottom: 1px solid #CCCCCC;
    margin: 15px 15px 20px;
    font-size: 15px;
    font-weight: 600;
    color: var(--dark-blue);
    width: 21%;
}

.bigmenu li {
    margin-bottom: 10px;
    width: 50%;
    padding-right: 20px;
}

.bigmenu.practice-type-menu li {
    width: 100%;
    padding: 0;
    margin-bottom: 25px;
}

.bigmenu.practice-type-menu h5 {
    margin: 5px 0 4px;
    font-size: 14px;
    font-family: 'Metropolis-Semibold';
    font-weight: normal;
    color: var(--dark-blue);
}

.bigmenu a h4 {
    margin: 5px 0 0;
    font-size: 14px;
    font-family: 'Metropolis-Semibold';
    font-weight: normal;
    color: var(--dark-blue);
}

.bigmenu p {
    margin: 0;
    font-size: 13px;
    line-height: 130%;
}

.submenu-sub {
    display: none;
}

.submenu-sub ul {
    padding: 10px 20px;
}

.submenu-sub li {
    margin-bottom: 10px;
}

.practice-type-menu .icon {
    width: 30px;
    height: 30px;
    background: #CCCCCC;
    color: #FFFFFF;
    line-height: 30px;
    border-radius: 50%;
    text-align: center;
    margin-right: 15px;
}

.practice-type-menu .icon i {
    font-size: 15px;
    margin: 0;
}

.practice-type-menu .link-text {
    width: calc(100% - 45px);
}

.practice-type-menu .links {
    margin-top: 10px;
}

.practice-type-menu .links a {
    font-size: 13px;
    font-family: 'Metropolis-Semibold';
    font-weight: normal;
    padding: 3px 10px;
    color: var(--dark-blue);
}

.practice-type-menu .links .learn-more {
    padding-left: 0;
}

.get-started {
    border: 1px solid;
    border-radius: 20px;
    padding: 0px 5px !important;
}

/* New - Practice Type */

.bigmenu.practice-type .menu-group {
    width: 33.33%;
    margin-right: 16.67%;
}

.bigmenu.practice-type .menu-photo {
    width: 33.3%;
    float: right;
}

.bigmenu.practice-type ul {
    flex-direction: column;
}

.bigmenu.practice-type li {
    width: 100%;
}

/* Contact Us */
.bigmenu.contact-us li {
    width: 100%;
    padding-right: 0;
}

.bigmenu.contact-us ul ul>li {
    margin-bottom: 0;
}

.bigmenu.contact-us .menu-group>div {
    width: 100%;
    box-sizing: border-box;
    float: left;
    margin-bottom: 30px;
}

/* .bigmenu.contact-us h4 {
    margin-bottom: 20px;
} */

.bigmenu.contact-us span {
    font-weight: bold;
    width: 30%;
}

.bigmenu.contact-us .menu-group {
    width: 33.33%;
    margin-right: 16.67%;
}

.bigmenu.contact-us .menu-photo {
    width: 50%;
}

.bigmenu.contact-us ul {
    flex-direction: column;
}

.bigmenu.contact-us li {
    width: 100%;
}

.bigmenu ul.help-and-assistance {
    display: block;
}

.bigmenu ul.help-and-assistance li {
    margin-bottom: 0;
}

.bigmenu ul.help-and-assistance p {
    display: flex;
    width: 100%;
}

.bigmenu ul.help-and-assistance li span {
    font-weight: bold;
    width: 30%;
}

/* Learning */
.bigmenu.learning .menu-group>div {
    width: 50%;
    box-sizing: border-box;
    float: left;
    margin-bottom: 30px;
}

.bigmenu.learning li {
    display: block !important;
    width: 100%;
}

.bigmenu.learning li>ul {
    display: block;
    padding-left: 10px;
}

.bigmenu.learning li>ul>li {
    width: 100%;
    font-size: 13px;
    display: list-item !important;
    list-style-type: disc;
    margin-bottom: 0px;
}

.bigmenu.learning h5 {
    margin: 5px 0 0px;
    font-size: 14px;
    font-family: 'Metropolis-Semibold';
    font-weight: normal;
}

/* Communities */
.bigmenu.communities .menu-group>div {
    width: 50%;
    box-sizing: border-box;
    float: left;
}

.bigmenu.communities li {
    display: block !important;
    width: 100%;
    margin: 0;
}

/* Resources */
.bigmenu.resources .icon {
    width: 30px;
    height: 30px;
    background: #CCCCCC;
    color: #FFFFFF;
    line-height: 30px;
    border-radius: 50%;
    text-align: center;
    margin-right: 15px;
}

.bigmenu.resources .menu-group>div>ul>li {
    margin-top: 10px;
    display: flex !important;
}

.bigmenu.resources .icon i {
    font-size: 15px;
    margin: 0;
}

.bigmenu.resources .link-text {
    width: calc(100% - 45px);
}

.bigmenu.resources h5 {
    margin: 5px 0 4px;
    font-size: 14px;
    font-family: 'Metropolis-Semibold';
    font-weight: normal;
    color: var(--dark-blue);
}

.bigmenu.resources .link-text a {
    font-size: 13px;
    font-family: 'Metropolis-Semibold';
    font-weight: normal;
}

/* Company */
.submenu.company .bigmenu .link-text {
    wdith: 100%;
}

.submenu.company .bigmenu h5 {
    margin: 5px 0 4px;
    font-size: 14px;
    font-family: 'Metropolis-Semibold';
    font-weight: normal;
    color: var(--dark-blue);
}

.submenu.company .bigmenu .link-text a {
    font-size: 13px;
    font-family: 'Metropolis-Semibold';
    font-weight: normal;
}

.submenu.company .bigmenu .menu-group>div>ul>li {
    margin-top: 10px;
    display: flex !important;
}

/* Country */
.country-select-link {
    display: none;
}

.bigmenu.headquarters li {
    width: 100%;
    padding: 0;
}

.bigmenu.headquarters .menu-group {
    width: 33.33%;
}

.bigmenu.headquarters .menu-photo {
    width: 66.66%;
}

.bigmenu.headquarters a {
    display: block;
    width: 100%;
}

.bigmenu.headquarters p {
    display: flex;
    width: 100%;
    flex-wrap: wrap;
}

.bigmenu.headquarters p>span {
    width: 70%;
}

.bigmenu.headquarters span.label {
    font-weight: bold;
    width: 30%;
}

/* Mobile Menu */
#header .mobile-menu {
    display: none;
}

.mobile-menu-bar {
    color: #000000;
    font-size: 20px;
    margin-left: auto;
}

nav.mobile-menu a,
nav.mobile-menu span,
nav.mobile-menu h4 {
    font-size: 14px;
}

nav.mobile-menu ul>h4 {
    padding: 20px 20px 10px;
    color: var(--dark-blue);
}

nav.mobile-menu a>h4,
nav.mobile-menu p {
    margin: 0;
}

nav.mobile-menu #search i {
    margin-left: 10px;
}

/* Search */
#nav-right {
    display: none;
    position: relative;
}

.search-active #nav-right {
    width: 70%;
}

#nav-right .easy-autocomplete {
    width: 100% !important;
}

#search>* {
    float: right;
}

#search {
    width: 100px;
}

.search-active #search {
    width: auto;
}

#search-bar {
    width: 0%;
    overflow: hidden;
    float: right;
    position: relative;
    transition: opacity ease-in-out 0.25s;
}

#search-bar input {
    width: 100%;
    padding: 10px 30px 10px 10px;
    height: 40px;
    border: 1px solid #999;
    border-radius: 5px;
    opacity: 0;

    -webkit-appearance: none;
    outline: none;
    font-size: 14px;
    font-family: 'Metropolis';

    transition: all ease-in-out 0.25s;
}

#search.active #search-bar {
    /*width: calc(100% - 75px);*/
    width: 50%;
    overflow: visible;
}

#search.active #search-bar input {
    opacity: 1;
}

#search-button {
    width: 20px;
    margin: 10px 0px 0 0;
    transition: opacity ease-in-out 0.25s;
    position: relative;
    z-index: 9999;
}

header.transparent #search-button {
    color: #FFFFFF;
}

header.transparent .mobile-menu-bar {
    color: #ffffff;
}

#search.active #search-button {
    opacity: 0.25;
    pointer-events: none;
    margin-right: 10px;
}

#search-close {
    position: absolute;
    top: 11px;
    right: 10px;
    opacity: 0;

    transition: all ease-in-out 0.25s;
}

#search.active #search-close {
    opacity: 1;
}


#search a {
    color: #000000;
}

#country-select {
    margin-left: 20px;
    width: 25px;
    margin-top: 5px;
}

#country-select-mobile {
    margin-left: 10px;
    width: 25px;
}

.show-hide a {
    font-weight: 700;
    padding-bottom: 20px;
    display: inline-block;
    color: var(--dark-blue) !important;
    font-size: 13px !important;
}

.button-link a {
    font-weight: 700;
    padding-bottom: 20px;
    display: inline-block;
    color: var(--dark-blue) !important;
    font-size: 13px !important;
}

.see-all a {
    font-weight: 700;
    padding-bottom: 20px;
    display: inline-block;
    color: var(--dark-blue) !important;
    font-size: 13px !important;
}

/* Autocomplete */
.easy-autocomplete-container {
    top: 50px;
    box-shadow: 0 2px 3px 0 rgba(0, 0, 0, 0.07);
}

.easy-autocomplete-container ul {
    border: none;
    background: #FFFFFF;
    box-shadow: none;
    padding: 40px 0 0 0;
    margin: 0;
}

.easy-autocomplete-container ul:before {
    content: 'Popular Topics';
    position: absolute;
    top: 20px;
    left: 10px;
    font-weight: bold;
    color: #102B52;
    font-size: 14px;
}

.easy-autocomplete-container ul li,
.easy-autocomplete-container ul .eac-category {
    padding: 10px;
    border: none;
}

.easy-autocomplete-container ul li a {
    text-decoration: none !important;
}

/* Privacy Statement */
#privacy-statement p,
#privacy-statement address {
    margin-bottom: 10px;
}

/* SVP Logos*/
.svp-logo {
    height: 30px;
    margin-top: 40px;
    margin-bottom: 10px;
}

.svp-logo-sesame {
    height: 80px;
    margin-top: 40px;
    margin-bottom: 10px;
}

.svp-logo-pbs-endo {
    height: 45px;
    margin-top: 40px;
    margin-bottom: 10px;
}

.svp-button {
    margin-bottom: 40px;
}

#breaking-news h3, .news-articles h3 {
    line-height: 35px;
}

.responsive-section {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
    background-size: auto 100%;
}

.responsive-section div.pb-20,
.responsive-section div.py-10 {
    padding-bottom: 0;
    padding-top: 0;
}

.responsive-section div.xl\:pt-24 {
    padding-top: 0;
}

.support-modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 1; /* Sit on top */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgb(0,0,0); /* Fallback color */
  background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}

/* Modal Content/Box */
.support-modal-content {
  background-color: #fefefe;
  margin: 15% auto; /* 15% from the top and centered */
  padding: 20px;
  border: 1px solid #888;
  width: 30%; /* Could be more or less, depending on screen size */
}

.support-modal-content p {
    color: #fff;
}

.support-modal form {
    width: 90%;
    margin: 0 auto;
}

.support-modal input, .support-modal select {
    border-radius: 17px;
    width: 100%;
    margin-bottom: 15px;
}

.support-modal textarea {
    width: 100%;
    margin-bottom: 15px;
}

.support-modal label {
    color: #fff;
}

.support-modal input.submit {
    width: 50%;
    margin: 0 25%;
    color: #fff;
    padding: 0;
}

.modalBtn {
    cursor: pointer;
}

/* The Close Button */
.modalClose {
  color: #fff;
  float: right;
  font-size: 28px;
  font-weight: bold;
  z-index: 99;
}

.modalClose:hover,
.modalClose:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}

/* /officite/packages table css */

#officite-packages-table span.included {
    display: inline-block;
    vertical-align: top;
    text-indent: -9999px;
    overflow: hidden;
    background: #ed1c2f;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    display: block;
    margin: 0px auto 5px;
}
#officite-packages-table span.included.semi {
    border-bottom-left-radius: 36px;
    border-top-left-radius: 36px;
    width: 8px;
}
#officite-packages-table th.title {
    border-width: 0;
    position: relative;
    color: #fff;
    background: #a3acbf;
    font-size: 18px;
    line-height: 1.223;
    font-family: "montserrat-bold", Arial, Helvetica, sans-serif;
    padding: 20px 0px 20px;
    text-transform: uppercase;
    min-width: 130px;
}
.news-image {
    padding-top: 5rem;
}
#officite-packages-table td, #officite-packages-table th {
    text-align: center;
    border: 1px solid #d5d5d5;
    padding: 5px 13px;
    vertical-align: middle;
    position: relative;
    z-index: 1;
}
#officite-packages-table tbody tr td:nth-of-type(1) {
    text-align: left;
    color:#1b3769;
}
#officite-packages-table tbody tr td:nth-of-type(1) strong {
    color: #6ac7b9;
}
#officite-packages-table .th-empty {
    border-left: 0px;
    border-top: 0px;
}

.solutions-text {
    flex-grow: 1;
}

h1.subheading.font-subheading.wow.fadeInUp {
    margin-bottom: 15px;
}


/* Responsive */

@media (max-width: 767px) {
    #header {
        height: 35px;
    }

    #logo img {
        height: 21px;
    }

    .svp-logo {
        margin: 40px auto 20px auto;
        height: 10px;
    }

    .svp-logo-sesame {
        margin: 40px auto 20px auto;
        height: 60px;
    }

    .svp-logo-pbs-endo {
        margin: 40px auto 20px auto;
        height: 25px;
    }
}

@media (max-width: 1600px) {
    .submenu {
        height: 600px !important;
    }

    .bigmenu {
        height: 600px !important;
    }

    .submenu.contact {
        height: 525px !important;
    }

    .submenu.company {
        height: 350px !important;
    }

    .submenu.country {
        height: 450px !important;
    }

    .submenu.practice-type {
        height: 350px !important;
    }

    .submenu.contact .bigmenu {
        height: 525px !important;
    }

    .submenu.company .bigmenu {
        height: 350px !important;
    }

    .submenu.country .bigmenu {
        height: 450px !important;
    }

    .submenu.practice-type .bigmenu {
        height: 350px !important;
    }
}

@media (max-width: 1350px) {
    .responsive-section div.w-full {
        padding: 0 auto;
    }

    .responsive-section {
        background-image: none !important;
        text-align: center;
    }

    .responsive-section h2 {
        text-align: center
    }

    .responsive-section p.text-base,
    .responsive-section p.max-w-2xl {
        max-width: 100%;
        padding: 0 5%;
    }

    .responsive-section p.text-center {
        text-align: center;
    }

    .responsive-section br {
        display: none;
    }

    .responsive-section div.w-full {
        width: 100%;
    }

    .responsive-section div.items-center {
        justify-content: center;
    }

    .desktop-br {
        display: none;
    }
}

@media (max-width: 1280px) {
    #breaking-news h3, .news-articles h3 {
        line-height: 25px;
    }
}

@media (max-width: 1024px) {
    nav.desktop-menu a {
        font-size: 14px;
    }

    nav .topmenu i {
        font-size: 10px;
        margin: 0;
    }

    .svp-logo {
        height: 20px;
    }

    .svp-logo-sesame {
        height: 70px;
    }

    .svp-logo-pbs-endo {
        height: 35px;
    }
}

@media (min-width: 1024px) {
    #logo {
        width: 25%;
    }

    header .container-full {
        padding: 0 40px;
    }

    #country-select-mobile {
        display: none;
    }

    .responsive-section {
        padding-top: 2rem;
        padding-bottom: 2rem;
    }

    .responsive-section h2 {
        padding-top: 0;
    }
}

@media (min-width: 1280px) {
    .responsive-section {
        padding-top: 4rem;
        padding-bottom: 4rem;
    }

    .responsive-section p.xl\:mb-20 {
        margin-bottom: 0;
    }
}

@media (min-width: 1350px) {
    .mobile-menu-bar {
        display: none;
    }

    nav.desktop-menu {
        display: block;
        width: 90%;
    }

    #nav-right {
        display: block;
    }

    .xxl-block {
        display: block;
    }
}

@media (min-width: 1600px) {
    nav .topmenu>li:not(:first-child) {
        padding-left: 50px;
    }

    #logo img {
        max-width: 250px;
    }

    .search-active #nav-right {
        width: 70%;
    }

    #search {
        width: auto;
    }

    .submenu {
        height: 600px !important;
    }

    .bigmenu {
        height: 600px !important;
    }

    .submenu.contact {
        height: 525px !important;
    }

    .submenu.company {
        height: 350px !important;
    }

    .submenu.country {
        height: 450px !important;
    }

    .submenu.practice-type {
        height: 350px !important;
    }

    .submenu.contact .bigmenu {
        height: 525px !important;
    }

    .submenu.company .bigmenu {
        height: 350px !important;
    }

    .submenu.country .bigmenu {
        height: 450px !important;
    }

    .submenu.practice-type .bigmenu {
        height: 350px !important;
    }

    .responsive-section {
        padding-top: 8rem;
        padding-bottom: 8rem;
    }
}

/* Nav Support Section */
.help-and-assistance p {
    font-size: 15px !important;
    margin-bottom: 0.5rem !important;
}

.help-and-assistance a {
    margin: 0 !important;
    font-size: 15px !important;
    line-height: 130% !important;
    color: var(--dark-blue) !important;
}

.help-and-assistance hr {
    margin: 0.5rem 0;
}

/* Product modal css */
.featherlight .featherlight-content {
    padding: 0px !important;
    border-bottom: 0px !important;
    height: 550px;
    width: 700px;
    max-width: 90vw;
    border-radius: 0.5rem;
}

.featherlight .featherlight-close-icon {
    background: transparent !important;
    top: 25px !important;
    right: 25px !important;
    color: #fff !important;
}

.featherlight-close-icon.close-text {
    padding: 0 20px;
    text-transform: uppercase;
    position: relative !important;
    color: #000000 !important;
    top: auto !important;
    right: auto !important;
    width: auto !important;
    outline: none;
}

.featherlight-content .demo-content {
    padding: 25px 10px 0px 10px;
    height: 550px;
}

.featherlight-content .demo-content h3 {
    margin-left: 20px;
}

.featherlight-content .demo-content .pardotForm {
    margin-top: 15px;
    max-height: 455px;
}
form[form-vers='2'] > .text-center {
    padding-top: 15px;
}

@media (max-width: 1024px) {

    .featherlight .featherlight-content,
    .featherlight-content .demo-content {
        height: 575px;
    }

    .featherlight-content .demo-content .pardotForm {
        max-height: 480px;
    }
}

/* Homepage Solutions Modal */
.select-solutions {
    display: none;
}

.select-solutions.select-solutions-active {
    display: flex;
}

/* Flyout Menu Fix */
.flyout .flyout-tab {
    left: -124px !important;
}

.left-fix .flyout-tab {
    left: -134px !important;
}

.flyout.medium-form,
.flyout.medium-form .flyout-content {
    height: 535px;
}
.flyout.small-form,
.flyout.small-form .flyout-content {
    height: 475px;
}

/* Mobile template fixes */

@media (max-width: 992px) {
    section.responsive-section {
        min-height: auto;
    }

    section.responsive-section.flex.items-center {
        background-image: none !important;
    }

    .hidden-xs {
        display: none;
    }

    #hero .wrapper p.font-light {
        display: none;
    }

    /*#hero .wrapper h1.title {
        margin-top: 40px;
    }*/
}

@media (max-width: 640px) {
    .xs\:hidden {
        display: none;
    }
}

.news-logos {
    max-height: 25px;
    width: auto;
    margin: 0px 1rem;
}

.selection-solution .solution-card .solution-logo {
    margin: 0px;
}


.review-photo {
    cursor: pointer;
}

.testimonial-thumb .wistia_click_to_play {
    /*height: 100% !important;*/
}

.svp-mobile {
    margin: 0 auto;
}