@charset "UTF-8";
.mwai-context-menu-portal .mwai-context-menu {
background: var(--mwai-backgroundHeaderColor);
border: 1px solid rgba(0, 0, 0, 0.1);
border-radius: var(--mwai-borderRadius);
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
font-size: 13px;
color: var(--mwai-fontColor);
}
.mwai-context-menu-portal .mwai-context-menu .mwai-menu-item {
display: flex;
align-items: center;
gap: 8px;
padding: 8px 12px;
cursor: pointer;
transition: background-color 0.2s;
}
.mwai-context-menu-portal .mwai-context-menu .mwai-menu-item:hover {
background-color: rgba(0, 0, 0, 0.05);
}
.mwai-context-menu-portal .mwai-context-menu .mwai-menu-item.mwai-danger {
color: #dc3545;
}
.mwai-context-menu-portal .mwai-context-menu .mwai-menu-item.mwai-danger:hover {
background-color: rgba(220, 53, 69, 0.1);
}
.mwai-context-menu-portal .mwai-context-menu .mwai-menu-item svg {
flex-shrink: 0;
}
.mwai-chunks {
padding: 8px;
background: rgba(0, 0, 0, 0.03);
font-family: "SF Mono", Monaco, "Cascadia Code", "Roboto Mono", Consolas, "Courier New", monospace;
font-size: 11px;
border-top: 1px solid rgba(0, 0, 0, 0.06);
}
.mwai-chunks.mwai-chunks-collapsed .mwai-chunks-header {
margin-bottom: 0 !important;
}
.mwai-chunks .mwai-chunks-header {
display: flex;
align-items: center;
gap: 6px;
margin-bottom: 8px;
color: #6b7280;
font-size: 10px;
text-transform: uppercase;
letter-spacing: 0.05em;
}
.mwai-chunks .mwai-chunks-header .mwai-chunks-title {
flex: 1;
}
.mwai-chunks .mwai-chunks-header .mwai-chunks-toggle {
background: none;
border: 1px solid rgba(0, 0, 0, 0.1);
border-radius: 3px;
padding: 2px;
width: 30px;
height: 20px;
cursor: pointer;
color: #6b7280;
display: flex;
align-items: center;
justify-content: center;
transition: all 0.2s ease;
margin-left: 4px;
}
.mwai-chunks .mwai-chunks-header .mwai-chunks-toggle:hover {
background: rgba(0, 0, 0, 0.05);
color: #374151;
}
.mwai-chunks .mwai-chunk {
margin-bottom: 4px;
padding: 6px 8px;
background: white;
border-radius: 4px;
border: 1px solid rgba(0, 0, 0, 0.06);
transition: all 0.2s ease;
}
.mwai-chunks .mwai-chunk .mwai-chunk-header {
display: flex;
align-items: center;
gap: 8px;
cursor: pointer;
user-select: none;
}
.mwai-chunks .mwai-chunk .mwai-chunk-header .mwai-chunk-time {
color: #9ca3af;
font-size: 10px;
font-variant-numeric: tabular-nums;
}
.mwai-chunks .mwai-chunk .mwai-chunk-header .mwai-chunk-type {
display: flex;
align-items: center;
gap: 4px;
padding: 2px 6px;
border-radius: 3px;
font-size: 10px;
font-weight: 500;
color: white;
}
.mwai-chunks .mwai-chunk .mwai-chunk-header .mwai-chunk-data {
flex: 1;
color: #374151;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
.mwai-chunks .mwai-chunk .mwai-chunk-header .mwai-chunk-expand {
color: #9ca3af;
transition: transform 0.2s ease;
}
.mwai-chunks .mwai-chunk .mwai-chunk-details {
margin-top: 8px;
padding: 8px;
background: rgba(0, 0, 0, 0.02);
border-radius: 3px;
overflow-x: auto;
}
.mwai-chunks .mwai-chunk .mwai-chunk-details pre {
margin: 0;
white-space: pre-wrap;
word-break: break-word;
color: #4b5563;
}
.mwai-chatgpt-theme {
--mwai-spacing: 15px;
--mwai-fontSize: 15px;
--mwai-lineHeight: 1.5;
--mwai-borderRadius: 10px;
--mwai-width: 460px;
--mwai-maxHeight: 40vh;
--mwai-iconTextColor: white;
--mwai-iconTextBackgroundColor: #343541;
--mwai-fontColor: #FFFFFF;
--mwai-backgroundPrimaryColor: #454654;
--mwai-backgroundHeaderColor: #343541;
--mwai-bubbleColor: #343541;
--mwai-headerButtonsColor: #FFFFFF;
--mwai-conversationsBackgroundColor: #202123;
--mwai-conversationsTextColor: #FFFFFF;
--mwai-backgroundSecondaryColor: #343541;
--mwai-errorBackgroundColor: #6d2f2a;
--mwai-errorTextColor: #FFFFFF;
}
.mwai-chatgpt-theme * {
box-sizing: border-box;
}
.mwai-chatgpt-theme .mwai-body {
background: var(--mwai-backgroundSecondaryColor);
color: var(--mwai-fontColor);
font-size: var(--mwai-fontSize);
overflow: hidden;
display: flex;
flex-direction: column;
border-radius: var(--mwai-borderRadius);
}
.mwai-chatgpt-theme .mwai-shortcuts {
display: flex;
justify-content: center;
margin: var(--mwai-spacing);
}
.mwai-chatgpt-theme .mwai-shortcuts .mwai-shortcut {
margin-right: calc(var(--mwai-spacing) / 2);
display: flex;
}
.mwai-chatgpt-theme .mwai-shortcuts .mwai-shortcut.mwai-success {
color: #4caf50;
border: 1px solid #4caf50;
}
.mwai-chatgpt-theme .mwai-shortcuts .mwai-shortcut.mwai-danger {
color: #f44336;
border: 1px solid #f44336;
}
.mwai-chatgpt-theme .mwai-shortcuts .mwai-shortcut.mwai-warning {
color: #ff9800;
border: 1px solid #ff9800;
}
.mwai-chatgpt-theme .mwai-shortcuts .mwai-shortcut.mwai-info {
color: #2196f3;
border: 1px solid #2196f3;
}
.mwai-chatgpt-theme .mwai-shortcuts .mwai-shortcut .mwai-icon {
margin-right: 5px;
}
.mwai-chatgpt-theme .mwai-shortcuts .mwai-shortcut .mwai-icon img {
max-height: 16px;
width: auto;
}
.mwai-chatgpt-theme .mwai-blocks {
display: flex;
flex-direction: column;
padding: var(--mwai-spacing);
}
.mwai-chatgpt-theme .mwai-blocks .mwai-block p:first-child {
margin-top: 0;
}
.mwai-chatgpt-theme .mwai-blocks button {
cursor: pointer;
}
.mwai-chatgpt-theme .mwai-conversation {
overflow: auto;
}
.mwai-chatgpt-theme .mwai-reply {
display: flex;
padding: var(--mwai-spacing);
position: relative;
line-height: var(--mwai-lineHeight);
transition: opacity 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.mwai-chatgpt-theme .mwai-reply.mwai-fade-out {
opacity: 0;
}
.mwai-chatgpt-theme .mwai-reply.mwai-user {
background: var(--mwai-backgroundSecondaryColor);
}
.mwai-chatgpt-theme .mwai-reply.mwai-ai {
background: var(--mwai-backgroundPrimaryColor);
}
.mwai-chatgpt-theme .mwai-reply .mwai-name {
color: var(--mwai-fontColor);
margin-right: 5px;
}
.mwai-chatgpt-theme .mwai-reply .mwai-name .mwai-name-text {
opacity: 0.5;
white-space: nowrap;
}
.mwai-chatgpt-theme .mwai-reply .mwai-name .mwai-avatar {
margin-right: 10px;
display: flex;
align-items: center;
justify-content: center;
border-radius: 5px;
overflow: hidden;
}
.mwai-chatgpt-theme .mwai-reply .mwai-name .mwai-avatar img {
width: 32px;
height: 32px;
min-width: 32px;
min-height: 32px;
}
.mwai-chatgpt-theme .mwai-reply .mwai-name .mwai-avatar.mwai-svg img {
width: 28px;
height: 28px;
min-width: 28px;
min-height: 28px;
filter: brightness(0) invert(1);
}
.mwai-chatgpt-theme .mwai-reply .mwai-text {
flex: auto;
font-size: var(--mwai-fontSize);
line-height: var(--mwai-lineHeight);
color: var(--mwai-fontColor);
}
.mwai-chatgpt-theme .mwai-reply .mwai-text .mwai-image {
display: block;
max-width: 250px;
height: auto;
margin: 0 0 10px 0;
border-radius: var(--mwai-borderRadius);
}
.mwai-chatgpt-theme .mwai-reply .mwai-text .mwai-filename {
display: flex;
text-decoration: none;
border: 1px solid var(--mwai-backgroundPrimaryColor);
border-radius: var(--mwai-borderRadius);
padding: 5px 10px;
margin-bottom: 10px;
}
.mwai-chatgpt-theme .mwai-reply .mwai-text * {
font-size: var(--mwai-fontSize);
}
.mwai-chatgpt-theme .mwai-reply .mwai-text > span > *:first-child {
margin-top: 0;
}
.mwai-chatgpt-theme .mwai-reply .mwai-text > span > *:last-child {
margin-bottom: 0;
}
.mwai-chatgpt-theme .mwai-reply .mwai-text a {
color: #2196f3;
}
.mwai-chatgpt-theme .mwai-reply .mwai-text h1, .mwai-chatgpt-theme .mwai-reply .mwai-text h2, .mwai-chatgpt-theme .mwai-reply .mwai-text h3, .mwai-chatgpt-theme .mwai-reply .mwai-text h4 {
color: var(--mwai-fontColor);
}
.mwai-chatgpt-theme .mwai-reply .mwai-text h1 {
font-size: 200%;
}
.mwai-chatgpt-theme .mwai-reply .mwai-text h2 {
font-size: 160%;
}
.mwai-chatgpt-theme .mwai-reply .mwai-text h3 {
font-size: 140%;
}
.mwai-chatgpt-theme .mwai-reply .mwai-text h4 {
font-size: 120%;
}
.mwai-chatgpt-theme .mwai-reply .mwai-text p code {
background: var(--mwai-backgroundSecondaryColor);
padding: 2px 6px;
border-radius: 8px;
font-size: 90%;
font-family: system-ui;
}
.mwai-chatgpt-theme .mwai-reply .mwai-text pre {
color: var(--mwai-fontColor);
border-radius: var(--mwai-borderRadius);
padding: calc(var(--mwai-spacing) * 2 / 3) var(--mwai-spacing);
break-after: auto;
white-space: pre-wrap;
font-size: 95%;
max-width: 100%;
width: 100%;
font-family: system-ui;
background: hsl(0 0% 0% / 30%);
}
.mwai-chatgpt-theme .mwai-reply .mwai-text pre code {
padding: 0 !important;
font-family: system-ui;
}
.mwai-chatgpt-theme .mwai-reply .mwai-text ul, .mwai-chatgpt-theme .mwai-reply .mwai-text ol {
padding: 0;
}
.mwai-chatgpt-theme .mwai-reply .mwai-text ol {
margin: 0 0 0 20px;
}
.mwai-chatgpt-theme .mwai-reply .mwai-text table {
width: 100%;
border: 2px solid var(--mwai-backgroundSecondaryColor);
border-collapse: collapse;
}
.mwai-chatgpt-theme .mwai-reply .mwai-text thead {
background: var(--mwai-backgroundSecondaryColor);
}
.mwai-chatgpt-theme .mwai-reply .mwai-text tr, .mwai-chatgpt-theme .mwai-reply .mwai-text td {
padding: 2px 5px;
}
.mwai-chatgpt-theme .mwai-reply .mwai-text td {
border: 2px solid var(--mwai-backgroundSecondaryColor);
}
.mwai-chatgpt-theme .mwai-reply .mwai-text .mwai-typewriter {
display: inline-block;
}
.mwai-chatgpt-theme .mwai-reply .mwai-text .mwai-typewriter > :first-child {
margin-top: 0;
}
.mwai-chatgpt-theme .mwai-reply .mwai-text > *:first-child {
margin-top: 0;
}
.mwai-chatgpt-theme .mwai-reply .mwai-text > *:last-child {
margin-bottom: 0;
}
.mwai-chatgpt-theme .mwai-reply.mwai-system {
background: var(--mwai-errorBackgroundColor);
color: var(--mwai-errorFontColor);
}
.mwai-chatgpt-theme .mwai-reply.mwai-system .mwai-name {
display: none;
}
.mwai-chatgpt-theme .mwai-input {
display: flex;
padding: var(--mwai-spacing);
border-top: 1px solid var(--mwai-backgroundPrimaryColor);
}
.mwai-chatgpt-theme .mwai-input .mwai-input-text {
flex: auto;
position: relative;
background: var(--mwai-backgroundPrimaryColor);
border-radius: var(--mwai-borderRadius);
overflow: hidden;
display: flex;
padding: calc(var(--mwai-spacing) / 2);
}
.mwai-chatgpt-theme .mwai-input .mwai-input-text.mwai-blocked {
background: var(--mwai-errorBackgroundColor);
}
.mwai-chatgpt-theme .mwai-input .mwai-input-text.mwai-dragging {
filter: brightness(1.2);
}
.mwai-chatgpt-theme .mwai-input .mwai-input-text textarea {
background: inherit;
color: var(--mwai-fontColor);
padding-left: calc(var(--mwai-spacing) / 2);
flex: auto;
border: none;
font-size: var(--mwai-fontSize);
line-height: var(--mwai-lineHeight);
resize: none;
font-family: inherit;
margin: 0;
overflow: hidden;
min-height: inherit;
}
.mwai-chatgpt-theme .mwai-input .mwai-input-text textarea:focus {
outline: none;
box-shadow: none;
}
.mwai-chatgpt-theme .mwai-input .mwai-input-text textarea::placeholder {
color: var(--mwai-fontColor);
opacity: 0.5;
}
.mwai-chatgpt-theme .mwai-input .mwai-input-text .mwai-microphone {
display: flex;
justify-content: center;
align-items: center;
}
.mwai-chatgpt-theme .mwai-input .mwai-input-text .mwai-microphone svg {
opacity: 0.5;
filter: grayscale(100%);
transition: opacity 0.3s ease-out;
cursor: pointer;
}
.mwai-chatgpt-theme .mwai-input .mwai-input-text .mwai-microphone[active=true] svg {
opacity: 1;
}
.mwai-chatgpt-theme .mwai-input .mwai-input-text .mwai-microphone[disabled] svg {
opacity: 0;
cursor: not-allowed;
}
.mwai-chatgpt-theme .mwai-input .mwai-input-text .mwai-file-upload-icon {
background: url(//staging.smartmeetings.com/wp-content/plugins/ai-engine/themes/icons/dark-icons.svg);
background-size: 500%;
background-position: 0px -96px;
width: 32px;
height: 32px;
z-index: 100;
}
.mwai-chatgpt-theme .mwai-input .mwai-input-text .mwai-file-upload-icon.mwai-idle-add {
background-position: -32px -96px;
}
.mwai-chatgpt-theme .mwai-input .mwai-input-text .mwai-file-upload-icon.mwai-image-add {
background-position: -32px 0px;
}
.mwai-chatgpt-theme .mwai-input .mwai-input-text .mwai-file-upload-icon.mwai-image-up {
background-position: -64px 0px;
}
.mwai-chatgpt-theme .mwai-input .mwai-input-text .mwai-file-upload-icon.mwai-image-del {
background-position: -96px 0px;
}
.mwai-chatgpt-theme .mwai-input .mwai-input-text .mwai-file-upload-icon.mwai-image-ok {
background-position: -128px 0px;
}
.mwai-chatgpt-theme .mwai-input .mwai-input-text .mwai-file-upload-icon.mwai-document-add {
background-position: -32px -64px;
}
.mwai-chatgpt-theme .mwai-input .mwai-input-text .mwai-file-upload-icon.mwai-document-up {
background-position: -64px -64px;
}
.mwai-chatgpt-theme .mwai-input .mwai-input-text .mwai-file-upload-icon.mwai-document-del {
background-position: -96px -64px;
}
.mwai-chatgpt-theme .mwai-input .mwai-input-text .mwai-file-upload-icon.mwai-document-ok {
background-position: -128px -64px;
}
.mwai-chatgpt-theme .mwai-input .mwai-input-text .mwai-file-upload-icon .mwai-file-upload-progress {
position: absolute;
font-size: 8px;
width: 21px;
top: 24px;
left: 23px;
overflow: hidden;
text-align: center;
font-weight: bold;
color: white;
}
.mwai-chatgpt-theme .mwai-input button {
margin-left: var(--mwai-spacing);
}
.mwai-chatgpt-theme .mwai-compliance {
opacity: 0.5;
margin-top: calc(-1 * var(--mwai-spacing));
padding: calc(var(--mwai-spacing) / 1.5) var(--mwai-spacing);
font-size: smaller;
color: var(--mwai-fontColor);
text-align: left;
}
.mwai-chatgpt-theme .mwai-gallery {
display: grid;
grid-template-columns: repeat(3, 1fr);
grid-gap: 5px;
}
.mwai-chatgpt-theme .mwai-gallery img {
width: 100%;
}
.mwai-chatgpt-theme button {
color: var(--mwai-fontColor);
background: var(--mwai-backgroundSecondaryColor);
border: 1px solid var(--mwai-backgroundPrimaryColor);
padding: calc(var(--mwai-spacing) / 2) var(--mwai-spacing);
min-width: 70px;
border-radius: 5px;
cursor: pointer;
transition: all 0.2s ease-out;
display: flex;
align-items: center;
justify-content: center;
font-size: calc(var(--mwai-fontSize) * 0.9);
position: relative;
}
.mwai-chatgpt-theme button .mwai-timer {
margin-left: 5px;
margin-right: 5px;
font-size: 11px;
}
.mwai-chatgpt-theme button:hover {
background: var(--mwai-backgroundPrimaryColor);
}
.mwai-chatgpt-theme button[disabled] {
cursor: not-allowed;
}
.mwai-chatgpt-theme button[disabled] span {
opacity: 0.5;
}
.mwai-chatgpt-theme button[disabled].mwai-busy span {
display: none;
}
.mwai-chatgpt-theme button[disabled].mwai-busy:before {
content: "";
width: 18px;
height: 18px;
margin: auto;
border: 3px solid transparent;
border-top-color: var(--mwai-fontColor);
border-radius: 50%;
animation: mwai-button-spinner 1s ease infinite;
}
.mwai-chatgpt-theme.mwai-form-container {
padding: var(--mwai-spacing);
font-size: var(--mwai-fontSize);
color: var(--mwai-fontColor);
background: var(--mwai-backgroundSecondaryColor);
border-radius: var(--mwai-borderRadius);
}
.mwai-chatgpt-theme.mwai-form-container fieldset {
border: 0;
margin: 0;
padding: 0;
display: flex;
flex-direction: column;
margin-bottom: 10px;
}
.mwai-chatgpt-theme.mwai-form-container fieldset input[type=text], .mwai-chatgpt-theme.mwai-form-container fieldset input[type=email], .mwai-chatgpt-theme.mwai-form-container fieldset input[type=tel], .mwai-chatgpt-theme.mwai-form-container fieldset input[type=url], .mwai-chatgpt-theme.mwai-form-container fieldset input[type=password], .mwai-chatgpt-theme.mwai-form-container fieldset input[type=number], .mwai-chatgpt-theme.mwai-form-container fieldset input[type=date], .mwai-chatgpt-theme.mwai-form-container fieldset input[type=datetime], .mwai-chatgpt-theme.mwai-form-container fieldset input[type=datetime-local], .mwai-chatgpt-theme.mwai-form-container fieldset input[type=month], .mwai-chatgpt-theme.mwai-form-container fieldset input[type=search], .mwai-chatgpt-theme.mwai-form-container fieldset input[type=time], .mwai-chatgpt-theme.mwai-form-container fieldset input[type=week], .mwai-chatgpt-theme.mwai-form-container fieldset select, .mwai-chatgpt-theme.mwai-form-container fieldset textarea {
padding: calc(var(--mwai-spacing) * 2 / 3) var(--mwai-spacing);
border: 0;
width: 100%;
border-radius: var(--mwai-borderRadius);
font-size: var(--mwai-fontSize);
background: var(--mwai-backgroundPrimaryColor);
color: var(--mwai-fontColor);
}
.mwai-chatgpt-theme.mwai-form-container fieldset select {
padding: calc(var(--mwai-spacing) * 2 / 3) var(--mwai-spacing);
border: 0;
width: 100%;
border-radius: var(--mwai-borderRadius);
font-size: var(--mwai-fontSize);
background: var(--mwai-backgroundPrimaryColor);
color: var(--mwai-fontColor);
}
.mwai-chatgpt-theme.mwai-form-container fieldset textarea {
padding: calc(var(--mwai-spacing) * 2 / 3) var(--mwai-spacing);
border: 0;
width: 100%;
border-radius: var(--mwai-borderRadius);
font-family: inherit;
font-size: var(--mwai-fontSize);
background: var(--mwai-backgroundPrimaryColor);
color: var(--mwai-fontColor);
}
.mwai-chatgpt-theme.mwai-form-container fieldset input[disabled], .mwai-chatgpt-theme.mwai-form-container fieldset select[disabled], .mwai-chatgpt-theme.mwai-form-container fieldset textarea[disabled] {
opacity: 0.25;
}
.mwai-chatgpt-theme.mwai-form-container .mwai-form-submit button, .mwai-chatgpt-theme.mwai-form-container .mwai-form-reset button {
height: 45px;
background: none;
width: 100%;
color: var(--mwai-fontColor);
font-size: var(--mwai-fontSize);
background-color: var(--mwai-backgroundSecondaryColor);
border: 1px solid var(--mwai-backgroundPrimaryColor);
border-radius: var(--mwai-borderRadius);
cursor: pointer;
transition: all 0.2s ease-out;
position: relative;
}
.mwai-chatgpt-theme.mwai-form-container .mwai-form-submit button:hover, .mwai-chatgpt-theme.mwai-form-container .mwai-form-reset button:hover {
background: var(--mwai-backgroundPrimaryColor);
}
.mwai-chatgpt-theme.mwai-form-container .mwai-form-submit button[disabled] span, .mwai-chatgpt-theme.mwai-form-container .mwai-form-reset button[disabled] span {
opacity: 0.25;
}
.mwai-chatgpt-theme.mwai-form-container .mwai-form-submit button[disabled]:hover, .mwai-chatgpt-theme.mwai-form-container .mwai-form-reset button[disabled]:hover {
background: none;
cursor: not-allowed;
}
.mwai-chatgpt-theme.mwai-form-container .mwai-form-submit.mwai-loading button span, .mwai-chatgpt-theme.mwai-form-container .mwai-form-reset.mwai-loading button span {
opacity: 0;
}
.mwai-chatgpt-theme.mwai-form-container .mwai-form-submit.mwai-loading button::after, .mwai-chatgpt-theme.mwai-form-container .mwai-form-reset.mwai-loading button::after {
content: "";
position: absolute;
width: 18px;
height: 18px;
top: 0;
left: 0;
right: 0;
bottom: 0;
margin: auto;
border: 3px solid transparent;
border-top-color: var(--mwai-fontColor);
border-radius: 50%;
animation: mwai-button-spinner 1s ease infinite;
}
.mwai-chatgpt-theme.mwai-form-container .mwai-form-output-container .mwai-form-output {
font-size: var(--mwai-fontSize);
position: relative;
margin-top: var(--mwai-spacing);
padding: var(--mwai-spacing);
border: 1px solid var(--mwai-backgroundPrimaryColor);
}
.mwai-chatgpt-theme.mwai-form-container .mwai-form-output-container .mwai-form-output.mwai-error {
background: var(--mwai-errorBackgroundColor);
color: var(--mwai-errorFontColor);
}
.mwai-chatgpt-theme.mwai-form-container .mwai-form-output-container .mwai-form-output > *:first-child {
margin-top: 0;
}
.mwai-chatgpt-theme.mwai-form-container .mwai-form-output-container .mwai-form-output > *:last-child {
margin-bottom: 0;
}
.mwai-chatgpt-theme.mwai-form-container .mwai-form-output-container .mwai-form-output img {
max-width: 33%;
}
.mwai-chatgpt-theme.mwai-form-container .mwai-form-output-container .mwai-form-output div > *:first-child {
margin-top: 0;
}
.mwai-chatgpt-theme.mwai-form-container .mwai-form-output-container .mwai-form-output div > *:last-child {
margin-bottom: 0;
}
.mwai-chatgpt-theme.mwai-form-container .mwai-form-output-container.mwai-has-content {
display: block;
}
.mwai-chatgpt-theme.mwai-form-container .wp-block-columns {
margin: 0;
}
.mwai-chatgpt-theme .mwai-chunks {
background: rgba(255, 255, 255, 0.05);
border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.mwai-chatgpt-theme .mwai-chunks .mwai-chunks-header {
color: #9ca3af;
}
.mwai-chatgpt-theme .mwai-chunks .mwai-chunk {
background: rgba(255, 255, 255, 0.08);
border: 1px solid rgba(255, 255, 255, 0.1);
}
.mwai-chatgpt-theme .mwai-chunks .mwai-chunk .mwai-chunk-header .mwai-chunk-time {
color: #6b7280;
}
.mwai-chatgpt-theme .mwai-chunks .mwai-chunk .mwai-chunk-header .mwai-chunk-data {
color: #e5e7eb;
}
.mwai-chatgpt-theme .mwai-chunks .mwai-chunk .mwai-chunk-header .mwai-chunk-expand {
color: #6b7280;
}
.mwai-chatgpt-theme .mwai-chunks .mwai-chunk .mwai-chunk-details {
background: rgba(0, 0, 0, 0.2);
}
.mwai-chatgpt-theme .mwai-chunks .mwai-chunk .mwai-chunk-details pre {
color: #d1d5db;
}
.mwai-chatgpt-theme.mwai-transition, .mwai-chatgpt-theme .mwai-transition {
opacity: 0;
transition: opacity 350ms ease-in-out;
}
.mwai-chatgpt-theme.mwai-transition-visible, .mwai-chatgpt-theme .mwai-transition-visible {
opacity: 1;
}
.mwai-chatgpt-theme .mwai-text {
overflow-wrap: anywhere;
}
.mwai-chatgpt-theme .mwai-text img {
max-width: 100%;
}
.mwai-chatgpt-theme .mwai-text div p:first-child {
margin-top: 0;
}
.mwai-chatgpt-theme .mwai-text div p:last-child {
margin-bottom: 0;
}
.mwai-chatgpt-theme .mwai-trigger {
position: absolute;
right: 0;
bottom: 0;
transition: all 0.2s ease-out;
z-index: 9999;
display: flex;
flex-direction: column;
align-items: end;
}
.mwai-chatgpt-theme .mwai-trigger .mwai-icon-text-container {
display: flex;
flex-direction: column;
align-items: flex-end;
}
.mwai-chatgpt-theme .mwai-trigger .mwai-icon-text-container .mwai-icon-text {
background: var(--mwai-iconTextBackgroundColor);
color: var(--mwai-iconTextColor);
box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.15);
max-width: 200px;
font-size: 13px;
margin-bottom: 15px;
padding: 10px 15px;
border-radius: 8px;
}
.mwai-chatgpt-theme .mwai-trigger .mwai-icon-text-container .mwai-icon-text-close {
color: var(--mwai-iconTextColor);
background: var(--mwai-iconTextBackgroundColor);
padding: 5px;
width: 30px;
height: 20px;
border-radius: 100%;
display: none;
justify-content: center;
align-items: center;
margin-bottom: 3px;
}
.mwai-chatgpt-theme .mwai-trigger .mwai-icon-text-container:hover {
cursor: pointer;
}
.mwai-chatgpt-theme .mwai-trigger .mwai-icon-text-container:hover .mwai-icon-text-close {
display: flex;
font-size: 12px;
}
.mwai-chatgpt-theme .mwai-trigger .mwai-icon-text-container:hover .mwai-icon-text-close:hover {
filter: brightness(1.2);
}
@media (max-width: 760px) {
.mwai-chatgpt-theme .mwai-trigger .mwai-icon-text-container .mwai-icon-text-close {
display: flex;
}
}
.mwai-chatgpt-theme .mwai-trigger .mwai-icon-container .mwai-icon {
filter: drop-shadow(0px 0px 15px rgba(0, 0, 0, 0.15));
transition: all 0.2s ease-out;
}
.mwai-chatgpt-theme .mwai-trigger .mwai-icon-container .mwai-icon:hover {
cursor: pointer;
transform: scale(1.05);
}
.mwai-chatgpt-theme.mwai-window {
position: fixed;
right: 30px;
bottom: 30px;
width: var(--mwai-width);
z-index: 9999;
}
.mwai-chatgpt-theme.mwai-window .mwai-header {
display: none;
justify-content: flex-end;
align-items: center;
border-radius: var(--mwai-borderRadius) var(--mwai-borderRadius) 0 0;
background: var(--mwai-backgroundHeaderColor);
}
.mwai-chatgpt-theme.mwai-window .mwai-header .mwai-buttons {
display: flex;
align-items: center;
}
.mwai-chatgpt-theme.mwai-window .mwai-header .mwai-buttons .mwai-resize-button {
justify-content: center;
height: 32px;
width: 22px;
cursor: pointer;
display: flex;
justify-content: center;
align-items: center;
}
.mwai-chatgpt-theme.mwai-window .mwai-header .mwai-buttons .mwai-resize-button:before {
transition: all 0.2s ease-out;
content: " ";
cursor: pointer;
position: absolute;
height: 13px;
width: 13px;
border: 1px solid var(--mwai-headerButtonsColor);
}
.mwai-chatgpt-theme.mwai-window .mwai-header .mwai-buttons .mwai-resize-button:hover:before {
width: 16px;
height: 16px;
}
.mwai-chatgpt-theme.mwai-window .mwai-header .mwai-buttons .mwai-close-button {
justify-content: center;
height: 32px;
width: 33px;
cursor: pointer;
border-radius: var(--mwai-borderRadius);
}
.mwai-chatgpt-theme.mwai-window .mwai-header .mwai-buttons .mwai-close-button:before {
transition: all 0.2s ease-out;
transform: translate(16px, 5px) rotate(45deg);
}
.mwai-chatgpt-theme.mwai-window .mwai-header .mwai-buttons .mwai-close-button:after {
transition: all 0.2s ease-out;
transform: translate(16px, 5px) rotate(-45deg);
}
.mwai-chatgpt-theme.mwai-window .mwai-header .mwai-buttons .mwai-close-button:before, .mwai-chatgpt-theme.mwai-window .mwai-header .mwai-buttons .mwai-close-button:after {
content: " ";
cursor: pointer;
position: absolute;
height: 22px;
width: 1px;
background-color: var(--mwai-headerButtonsColor);
}
.mwai-chatgpt-theme.mwai-window .mwai-header .mwai-buttons .mwai-close-button:hover:before {
opacity: 1;
transform: translate(16px, 5px) rotate(135deg);
}
.mwai-chatgpt-theme.mwai-window .mwai-header .mwai-buttons .mwai-close-button:hover:after {
opacity: 1;
transform: translate(16px, 5px) rotate(45deg);
}
.mwai-chatgpt-theme.mwai-window .mwai-body {
display: none;
opacity: 0;
max-height: var(--mwai-maxHeight);
border-radius: 0 0 var(--mwai-borderRadius) var(--mwai-borderRadius);
}
.mwai-chatgpt-theme.mwai-window.mwai-bottom-left {
bottom: 30px;
right: inherit;
left: 30px;
}
.mwai-chatgpt-theme.mwai-window.mwai-bottom-left .mwai-trigger {
right: inherit;
left: 0;
}
.mwai-chatgpt-theme.mwai-window.mwai-top-right {
top: 30px;
bottom: inherit;
right: 30px;
}
.mwai-chatgpt-theme.mwai-window.mwai-top-right .mwai-trigger {
top: 0;
bottom: inherit;
}
.mwai-chatgpt-theme.mwai-window.mwai-top-left {
top: 30px;
bottom: inherit;
right: inherit;
left: 30px;
}
.mwai-chatgpt-theme.mwai-window.mwai-top-left .mwai-trigger {
top: 0;
bottom: inherit;
right: inherit;
left: 0;
}
.mwai-chatgpt-theme.mwai-window.mwai-top-left .mwai-trigger, .mwai-chatgpt-theme.mwai-window.mwai-bottom-left .mwai-trigger {
align-items: flex-start;
}
.mwai-chatgpt-theme.mwai-window.mwai-top-right .mwai-trigger, .mwai-chatgpt-theme.mwai-window.mwai-top-left .mwai-trigger {
flex-direction: column-reverse;
}
.mwai-chatgpt-theme.mwai-window.mwai-top-right .mwai-trigger .mwai-icon-text, .mwai-chatgpt-theme.mwai-window.mwai-top-left .mwai-trigger .mwai-icon-text {
margin-bottom: 0;
margin-top: 15px;
}
.mwai-chatgpt-theme.mwai-window.mwai-fullscreen .mwai-header .mwai-buttons {
margin-bottom: 0px;
}
.mwai-chatgpt-theme.mwai-window.mwai-fullscreen .mwai-header .mwai-buttons .mwai-resize-button:before {
width: 16px;
height: 16px;
}
.mwai-chatgpt-theme.mwai-window.mwai-fullscreen .mwai-header .mwai-buttons .mwai-resize-button:hover:before {
width: 13px;
height: 13px;
}
.mwai-chatgpt-theme.mwai-fullscreen:not(.mwai-window), .mwai-chatgpt-theme.mwai-fullscreen.mwai-window.mwai-open {
position: fixed;
left: 0 !important;
right: 0 !important;
bottom: 0 !important;
top: 0 !important;
width: 100%;
height: 100%;
max-height: 100%;
max-width: 100%;
display: flex;
flex-direction: column;
margin: 0;
z-index: 999999;
background-color: var(--mwai-backgroundSecondaryColor);
}
.mwai-chatgpt-theme.mwai-fullscreen:not(.mwai-window) .mwai-header, .mwai-chatgpt-theme.mwai-fullscreen.mwai-window.mwai-open .mwai-header {
border-radius: 0;
}
.mwai-chatgpt-theme.mwai-fullscreen:not(.mwai-window) .mwai-body, .mwai-chatgpt-theme.mwai-fullscreen.mwai-window.mwai-open .mwai-body {
height: 100%;
max-height: inherit;
border-radius: 0;
}
.mwai-chatgpt-theme.mwai-fullscreen:not(.mwai-window) .mwai-body .mwai-conversation, .mwai-chatgpt-theme.mwai-fullscreen.mwai-window.mwai-open .mwai-body .mwai-conversation {
flex: auto;
max-height: none;
}
.mwai-chatgpt-theme.mwai-window.mwai-open .mwai-header {
display: flex;
}
.mwai-chatgpt-theme.mwai-window.mwai-open .mwai-body {
display: flex;
transition: opacity 200ms ease-in-out 0s;
opacity: 1;
}
.mwai-chatgpt-theme.mwai-window.mwai-open .mwai-trigger {
display: none;
}
.mwai-chatgpt-theme .mwai-error {
margin: var(--mwai-spacing);
color: white;
background: rgba(180, 55, 55, 0.55);
padding: var(--mwai-spacing);
border-radius: var(--mwai-borderRadius);
}
.mwai-chatgpt-theme .mwai-error:hover {
cursor: pointer;
background: rgba(180, 44, 44, 0.85);
}
.mwai-chatgpt-theme.mwai-bubble .mwai-icon-container {
background: var(--mwai-bubbleColor);
width: 60px;
height: 60px;
border-radius: 100%;
transition: all 0.2s ease-out;
display: flex;
justify-content: center;
align-items: center;
}
.mwai-chatgpt-theme.mwai-bubble .mwai-icon-container .mwai-icon {
max-width: 50%;
max-height: 50%;
filter: none;
}
.mwai-chatgpt-theme.mwai-bubble .mwai-icon-container .mwai-icon:hover {
transform: none;
}
.mwai-chatgpt-theme.mwai-bubble .mwai-icon-container .mwai-emoji {
font-size: 30px !important;
}
.mwai-chatgpt-theme.mwai-bubble .mwai-icon-container:hover {
cursor: pointer;
filter: brightness(1.1);
}
@media (max-width: 760px) {
.mwai-chatgpt-theme.mwai-window.mwai-open {
position: fixed;
left: 0 !important;
right: 0 !important;
bottom: 0 !important;
top: 0 !important;
width: 100%;
height: 100%;
max-height: 100%;
max-width: 100%;
display: flex;
flex-direction: column;
margin: 0;
z-index: 999999;
background-color: var(--mwai-backgroundSecondaryColor);
}
.mwai-chatgpt-theme.mwai-window.mwai-open .mwai-header {
border-radius: 0;
}
.mwai-chatgpt-theme.mwai-window.mwai-open .mwai-body {
height: 100%;
max-height: inherit;
border-radius: 0;
}
.mwai-chatgpt-theme.mwai-window.mwai-open .mwai-body .mwai-conversation {
flex: auto;
max-height: none;
}
.mwai-chatgpt-theme.mwai-window.mwai-open .mwai-input {
flex-direction: column;
}
.mwai-chatgpt-theme.mwai-window.mwai-open .mwai-input button {
font-size: 16px;
margin-left: 0;
width: 100%;
}
.mwai-chatgpt-theme.mwai-window.mwai-open .mwai-input .mwai-input-text {
width: 100%;
}
.mwai-chatgpt-theme.mwai-window.mwai-open .mwai-input .mwai-input-text input, .mwai-chatgpt-theme.mwai-window.mwai-open .mwai-input .mwai-input-text textarea {
font-size: 16px;
}
.mwai-chatgpt-theme.mwai-window.mwai-open .mwai-body {
display: flex;
transition: opacity 200ms ease-in-out 0s;
opacity: 1;
height: 100%;
max-height: inherit;
}
.mwai-chatgpt-theme.mwai-window.mwai-open .mwai-body .mwai-conversation {
flex: auto;
max-height: none;
}
.mwai-chatgpt-theme.mwai-window.mwai-open .mwai-resize-button {
display: none !important;
}
.mwai-chatgpt-theme.mwai-window.mwai-open .mwai-trigger {
display: none;
}
}
@keyframes mwai-button-spinner {
from {
transform: rotate(0turn);
}
to {
transform: rotate(1turn);
}
}
.mwai-chatgpt-theme button:not(.mwai-busy):before {
content: none !important;
display: none !important;
animation: none !important;
}
.mwai-chatgpt-theme .admin-bar .mwai-fullscreen:not(.mwai-window),
.mwai-chatgpt-theme .admin-bar .mwai-fullscreen.mwai-window.mwai-open {
top: 32px;
}
.mwai-chatgpt-theme pre code.hljs {
display: block;
overflow-x: auto;
padding: 1em;
}
.mwai-chatgpt-theme code.hljs {
padding: 3px 5px;
}
.mwai-chatgpt-theme .hljs {
color: #fff;
}
.mwai-chatgpt-theme .hljs-subst {
color: #fff;
}
.mwai-chatgpt-theme .hljs-comment {
color: #999;
}
.mwai-chatgpt-theme .hljs-attr, .mwai-chatgpt-theme .hljs-doctag, .mwai-chatgpt-theme .hljs-keyword, .mwai-chatgpt-theme .hljs-meta .hljs-keyword, .mwai-chatgpt-theme .hljs-section, .mwai-chatgpt-theme .hljs-selector-tag {
color: #88aece;
}
.mwai-chatgpt-theme .hljs-attribute {
color: #c59bc1;
}
.mwai-chatgpt-theme .hljs-name, .mwai-chatgpt-theme .hljs-number, .mwai-chatgpt-theme .hljs-quote, .mwai-chatgpt-theme .hljs-selector-id, .mwai-chatgpt-theme .hljs-template-tag, .mwai-chatgpt-theme .hljs-type {
color: #f08d49;
}
.mwai-chatgpt-theme .hljs-selector-class {
color: #88aece;
}
.mwai-chatgpt-theme .hljs-link, .mwai-chatgpt-theme .hljs-regexp, .mwai-chatgpt-theme .hljs-selector-attr, .mwai-chatgpt-theme .hljs-string, .mwai-chatgpt-theme .hljs-symbol, .mwai-chatgpt-theme .hljs-template-variable, .mwai-chatgpt-theme .hljs-variable {
color: #b5bd68;
}
.mwai-chatgpt-theme .hljs-meta, .mwai-chatgpt-theme .hljs-selector-pseudo {
color: #88aece;
}
.mwai-chatgpt-theme .hljs-built_in, .mwai-chatgpt-theme .hljs-literal, .mwai-chatgpt-theme .hljs-title {
color: #f08d49;
}
.mwai-chatgpt-theme .hljs-bullet, .mwai-chatgpt-theme .hljs-code {
color: #ccc;
}
.mwai-chatgpt-theme .hljs-meta .hljs-string {
color: #b5bd68;
}
.mwai-chatgpt-theme .hljs-deletion {
color: #de7176;
}
.mwai-chatgpt-theme .hljs-addition {
color: #76c490;
}
.mwai-chatgpt-theme .hljs-emphasis {
font-style: italic;
}
.mwai-chatgpt-theme .hljs-strong {
font-weight: 700;
}
.mwai-chatgpt-theme .mwai-reply-actions {
position: absolute;
border-radius: 5px;
top: 10px;
right: 10px;
display: flex;
align-items: center;
padding: 2px 2px;
z-index: 100;
background: var(--mwai-backgroundPrimaryColor);
box-shadow: 0 0 8px rgba(0, 0, 0, 0.25);
z-index: 100;
}
.mwai-chatgpt-theme .mwai-reply-actions .mwai-copy-button {
fill: var(--mwai-fontColor);
padding: 3px 5px;
width: 24px;
height: 24px;
background: var(--mwai-backgroundPrimaryColor);
cursor: pointer;
border-radius: 5px;
}
.mwai-chatgpt-theme .mwai-reply-actions .mwai-copy-button:hover {
filter: brightness(1.2);
}
.mwai-chatgpt-theme .mwai-reply-actions.mwai-hidden {
opacity: 0;
}
.mwai-chatgpt-theme .mwai-realtime {
padding: var(--mwai-spacing);
}
.mwai-chatgpt-theme .mwai-realtime .mwai-visualizer {
display: flex;
justify-content: center;
align-items: center;
}
.mwai-chatgpt-theme .mwai-realtime .mwai-visualizer hr {
width: 100px;
margin-right: var(--mwai-spacing);
margin-left: var(--mwai-spacing);
border: 1px solid var(--mwai-backgroundPrimaryColor);
}
.mwai-chatgpt-theme .mwai-realtime .mwai-visualizer .mwai-animation {
background: var(--mwai-backgroundPrimaryColor);
}
.mwai-chatgpt-theme .mwai-realtime .mwai-controls {
display: flex;
justify-content: center;
align-items: center;
margin-bottom: var(--mwai-spacing);
}
.mwai-chatgpt-theme .mwai-realtime .mwai-controls > * + * {
margin-left: 10px;
}
.mwai-chatgpt-theme .mwai-realtime .mwai-controls button {
border-radius: 100%;
width: 50px;
height: 50px;
margin: 5px;
padding: 5px;
display: flex;
align-items: center;
justify-content: center;
color: var(--mwai-fontColor);
border: 2px solid var(--mwai-backgroundPrimaryColor);
background: none;
cursor: pointer;
transition: all 0.2s ease-out;
min-width: inherit;
max-width: inherit;
}
.mwai-chatgpt-theme .mwai-realtime .mwai-controls button:hover:not(:disabled) {
background: var(--mwai-backgroundPrimaryColor);
}
.mwai-chatgpt-theme .mwai-realtime .mwai-controls button:disabled {
opacity: 0.5;
cursor: not-allowed;
background: none;
}
.mwai-chatgpt-theme .mwai-realtime .mwai-controls button.mwai-active {
border: 2px solid var(--mwai-fontColor);
}
.mwai-chatgpt-theme .mwai-realtime .mwai-last-transcript {
margin: var(--mwai-spacing);
margin-top: 0;
border: 2px solid var(--mwai-backgroundPrimaryColor);
padding: calc(var(--mwai-spacing) / 2);
border-radius: var(--mwai-borderRadius);
display: flex;
justify-content: center;
font-size: 80%;
}
.mwai-chatgpt-theme .mwai-realtime .mwai-statistics {
display: grid;
grid-template-columns: 1fr 1fr 1fr;
grid-row-gap: 10px;
font-size: 14px;
}
.mwai-chatgpt-theme .mwai-realtime .mwai-statistics div {
display: flex;
flex-direction: column;
align-items: center;
}
.mwai-chatgpt-theme .mwai-realtime .mwai-statistics label {
font-size: 11px;
opacity: 0.5;
text-transform: uppercase;
}
.mwai-chatgpt-theme .mwai-realtime .mwai-options {
margin-top: var(--mwai-spacing);
display: flex;
align-items: center;
}
.mwai-chatgpt-theme .mwai-realtime .mwai-options .mwai-option {
cursor: pointer;
opacity: 0.5;
margin-right: 2px;
}
.mwai-chatgpt-theme .mwai-realtime .mwai-options .mwai-option.mwai-active {
opacity: 1;
}
.mwai-chatgpt-theme.mwai-discussions {
border-radius: var(--mwai-borderRadius);
background: var(--mwai-backgroundHeaderColor);
overflow: hidden;
}
.mwai-chatgpt-theme.mwai-discussions * {
box-sizing: border-box;
}
.mwai-chatgpt-theme.mwai-discussions .mwai-discussion {
display: flex;
position: relative;
padding-left: calc(var(--mwai-spacing) / 2);
padding-right: calc(var(--mwai-spacing) / 2);
padding-bottom: calc(var(--mwai-spacing) / 2);
color: var(--mwai-conversationsTextColor);
opacity: 0.65;
align-items: center;
}
.mwai-chatgpt-theme.mwai-discussions .mwai-discussion .mwai-discussion-title {
flex: 1;
padding: 5px;
}
.mwai-chatgpt-theme.mwai-discussions .mwai-discussion .mwai-discussion-actions {
position: absolute;
top: 50%;
right: calc(var(--mwai-spacing) / 2);
transform: translateY(-50%);
opacity: 0;
transition: opacity 0.2s ease-out;
z-index: 100;
}
.mwai-chatgpt-theme.mwai-discussions .mwai-discussion .mwai-discussion-actions .mwai-menu-icon {
width: 28px;
height: 28px;
display: flex;
align-items: center;
justify-content: center;
cursor: pointer;
color: var(--mwai-conversationsTextColor);
}
.mwai-chatgpt-theme.mwai-discussions .mwai-discussion.mwai-active {
cursor: pointer;
}
.mwai-chatgpt-theme.mwai-discussions .mwai-discussion.mwai-active .mwai-discussion-title {
background: var(--mwai-backgroundPrimaryColor);
border-radius: var(--mwai-borderRadius);
opacity: 1;
}
.mwai-chatgpt-theme.mwai-discussions .mwai-discussion:hover {
cursor: pointer;
}
.mwai-chatgpt-theme.mwai-discussions .mwai-discussion:hover .mwai-discussion-title {
background: var(--mwai-backgroundPrimaryColor);
border-radius: var(--mwai-borderRadius);
opacity: 1;
}
.mwai-chatgpt-theme.mwai-discussions .mwai-discussion:hover .mwai-discussion-actions {
opacity: 1;
}
.mwai-chatgpt-theme.mwai-discussions .mwai-discussion:has(.mwai-context-menu) .mwai-discussion-actions {
opacity: 1;
}
.mwai-chatgpt-theme.mwai-discussions .mwai-discussion:first-child {
margin-top: calc(var(--mwai-spacing) / 2);
}
.mwai-chatgpt-theme.mwai-discussions .mwai-header {
color: var(--mwai-headerButtonsColor);
padding: var(--mwai-spacing);
display: flex;
justify-content: space-between;
align-items: center;
gap: 10px;
}
.mwai-chatgpt-theme.mwai-discussions .mwai-header button {
background: var(--mwai-backgroundPrimaryColor);
color: var(--mwai-fontColor);
border: none;
padding: 8px 16px;
border-radius: var(--mwai-borderRadius);
cursor: pointer;
transition: all 0.2s ease-out;
}
.mwai-chatgpt-theme.mwai-discussions .mwai-header button:hover:not(:disabled) {
background: var(--mwai-iconTextBackgroundColor);
}
.mwai-chatgpt-theme.mwai-discussions .mwai-header button:disabled {
opacity: 0.5;
cursor: not-allowed;
}
.mwai-chatgpt-theme.mwai-discussions .mwai-header .mwai-refresh-btn {
padding: 8px;
display: flex;
align-items: center;
justify-content: center;
}
.mwai-chatgpt-theme.mwai-discussions .mwai-body {
background: var(--mwai-conversationsBackgroundColor);
list-style: none;
padding: 0;
margin: 0;
position: relative;
min-height: 200px;
display: flex;
flex-direction: column;
border-radius: 0;
z-index: 1;
}
.mwai-chatgpt-theme.mwai-discussions .mwai-loading-overlay {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: var(--mwai-conversationsBackgroundColor);
opacity: 0.9;
display: flex;
align-items: center;
justify-content: center;
z-index: 10;
}
.mwai-chatgpt-theme.mwai-discussions .mwai-spinner {
animation: spin 1s linear infinite;
color: var(--mwai-fontColor);
}
@keyframes spin {
from {
transform: rotate(0deg);
}
to {
transform: rotate(360deg);
}
}
.mwai-chatgpt-theme.mwai-discussions .mwai-pagination {
background: var(--mwai-backgroundHeaderColor);
padding: var(--mwai-spacing);
display: flex;
justify-content: space-between;
align-items: center;
border-top: 1px solid var(--mwai-backgroundPrimaryColor);
}
.mwai-chatgpt-theme.mwai-discussions .mwai-pagination button {
background: var(--mwai-backgroundPrimaryColor);
color: var(--mwai-fontColor);
border: none;
padding: 8px 12px;
border-radius: var(--mwai-borderRadius);
cursor: pointer;
transition: all 0.2s ease-out;
display: flex;
align-items: center;
justify-content: center;
}
.mwai-chatgpt-theme.mwai-discussions .mwai-pagination button:hover:not(:disabled) {
background: var(--mwai-iconTextBackgroundColor);
}
.mwai-chatgpt-theme.mwai-discussions .mwai-pagination button:disabled {
opacity: 0.3;
cursor: not-allowed;
}
.mwai-chatgpt-theme.mwai-discussions .mwai-pagination span {
color: var(--mwai-headerButtonsColor);
font-size: var(--mwai-fontSize);
font-weight: 500;
}
.mwai-chatgpt-theme.mwai-discussions .mwai-pagination .mwai-page-indicator {
color: var(--mwai-headerButtonsColor);
font-size: calc(var(--mwai-fontSize) * 0.85);
font-weight: 400;
opacity: 0.8;
}
.mwai-chatgpt-theme .mwai-chunks {
background: rgba(255, 255, 255, 0.05);
}
.mwai-chatgpt-theme .mwai-chunks .mwai-chunks-header {
color: #9ca3af;
}
.mwai-chatgpt-theme .mwai-chunks .mwai-chunks-header .mwai-chunks-toggle {
border-color: rgba(255, 255, 255, 0.1);
color: #9ca3af;
}
.mwai-chatgpt-theme .mwai-chunks .mwai-chunks-header .mwai-chunks-toggle:hover {
background: rgba(255, 255, 255, 0.05);
color: #e5e7eb;
}
.mwai-chatgpt-theme .mwai-chunks .mwai-chunk {
background: rgba(255, 255, 255, 0.08);
}
.mwai-chatgpt-theme .mwai-chunks .mwai-chunk .mwai-chunk-header .mwai-chunk-time {
color: #e5e7eb;
}
.mwai-chatgpt-theme .mwai-chunks .mwai-chunk .mwai-chunk-header .mwai-chunk-data {
color: #e5e7eb;
}
.mwai-chatgpt-theme .mwai-chunks .mwai-chunk .mwai-chunk-header .mwai-chunk-expand {
color: #e5e7eb;
}
.mwai-chatgpt-theme .mwai-chunks .mwai-chunk .mwai-chunk-details {
background: rgba(0, 0, 0, 0.2);
}
.mwai-chatgpt-theme .mwai-chunks .mwai-chunk .mwai-chunk-details pre {
color: #d1d5db;
}
@media (max-width: 760px) {
.mwai-chatgpt-theme.mwai-window {
width: calc(100% - 40px);
z-index: 9999999999;
}
.mwai-chatgpt-theme .mwai-input {
flex-direction: column;
}
.mwai-chatgpt-theme .mwai-input .mwai-input-submit {
margin: 15px 0 0 0;
height: 40px;
width: inherit;
}
.mwai-chatgpt-theme .mwai-name {
margin-right: 0;
max-width: inherit;
}
}
.mwai-context-menu-portal.mwai-chatgpt-theme .mwai-context-menu {
background: var(--mwai-backgroundSecondaryColor);
border: 1px solid var(--mwai-backgroundPrimaryColor);
color: var(--mwai-fontColor);
}
.mwai-context-menu-portal.mwai-chatgpt-theme .mwai-context-menu .mwai-menu-item:hover {
background-color: var(--mwai-backgroundPrimaryColor);
}
.mwai-context-menu-portal.mwai-chatgpt-theme .mwai-context-menu .mwai-menu-item.mwai-danger {
color: var(--mwai-errorTextColor);
}
.mwai-context-menu-portal.mwai-chatgpt-theme .mwai-context-menu .mwai-menu-item.mwai-danger:hover {
background-color: var(--mwai-errorBackgroundColor);
}.mwai-context-menu-portal .mwai-context-menu {
background: var(--mwai-backgroundHeaderColor);
border: 1px solid rgba(0, 0, 0, 0.1);
border-radius: var(--mwai-borderRadius);
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
font-size: 13px;
color: var(--mwai-fontColor);
}
.mwai-context-menu-portal .mwai-context-menu .mwai-menu-item {
display: flex;
align-items: center;
gap: 8px;
padding: 8px 12px;
cursor: pointer;
transition: background-color 0.2s;
}
.mwai-context-menu-portal .mwai-context-menu .mwai-menu-item:hover {
background-color: rgba(0, 0, 0, 0.05);
}
.mwai-context-menu-portal .mwai-context-menu .mwai-menu-item.mwai-danger {
color: #dc3545;
}
.mwai-context-menu-portal .mwai-context-menu .mwai-menu-item.mwai-danger:hover {
background-color: rgba(220, 53, 69, 0.1);
}
.mwai-context-menu-portal .mwai-context-menu .mwai-menu-item svg {
flex-shrink: 0;
}
.mwai-chunks {
padding: 8px;
background: rgba(0, 0, 0, 0.03);
font-family: "SF Mono", Monaco, "Cascadia Code", "Roboto Mono", Consolas, "Courier New", monospace;
font-size: 11px;
border-top: 1px solid rgba(0, 0, 0, 0.06);
}
.mwai-chunks.mwai-chunks-collapsed .mwai-chunks-header {
margin-bottom: 0 !important;
}
.mwai-chunks .mwai-chunks-header {
display: flex;
align-items: center;
gap: 6px;
margin-bottom: 8px;
color: #6b7280;
font-size: 10px;
text-transform: uppercase;
letter-spacing: 0.05em;
}
.mwai-chunks .mwai-chunks-header .mwai-chunks-title {
flex: 1;
}
.mwai-chunks .mwai-chunks-header .mwai-chunks-toggle {
background: none;
border: 1px solid rgba(0, 0, 0, 0.1);
border-radius: 3px;
padding: 2px;
width: 30px;
height: 20px;
cursor: pointer;
color: #6b7280;
display: flex;
align-items: center;
justify-content: center;
transition: all 0.2s ease;
margin-left: 4px;
}
.mwai-chunks .mwai-chunks-header .mwai-chunks-toggle:hover {
background: rgba(0, 0, 0, 0.05);
color: #374151;
}
.mwai-chunks .mwai-chunk {
margin-bottom: 4px;
padding: 6px 8px;
background: white;
border-radius: 4px;
border: 1px solid rgba(0, 0, 0, 0.06);
transition: all 0.2s ease;
}
.mwai-chunks .mwai-chunk .mwai-chunk-header {
display: flex;
align-items: center;
gap: 8px;
cursor: pointer;
user-select: none;
}
.mwai-chunks .mwai-chunk .mwai-chunk-header .mwai-chunk-time {
color: #9ca3af;
font-size: 10px;
font-variant-numeric: tabular-nums;
}
.mwai-chunks .mwai-chunk .mwai-chunk-header .mwai-chunk-type {
display: flex;
align-items: center;
gap: 4px;
padding: 2px 6px;
border-radius: 3px;
font-size: 10px;
font-weight: 500;
color: white;
}
.mwai-chunks .mwai-chunk .mwai-chunk-header .mwai-chunk-data {
flex: 1;
color: #374151;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
.mwai-chunks .mwai-chunk .mwai-chunk-header .mwai-chunk-expand {
color: #9ca3af;
transition: transform 0.2s ease;
}
.mwai-chunks .mwai-chunk .mwai-chunk-details {
margin-top: 8px;
padding: 8px;
background: rgba(0, 0, 0, 0.02);
border-radius: 3px;
overflow-x: auto;
}
.mwai-chunks .mwai-chunk .mwai-chunk-details pre {
margin: 0;
white-space: pre-wrap;
word-break: break-word;
color: #4b5563;
}
.mwai-messages-theme {
--mwai-spacing: 10px;
--mwai-fontSize: 13px;
--mwai-lineHeight: 1.5;
--mwai-borderRadius: 10px;
--mwai-width: 460px;
--mwai-maxHeight: 40vh;
--mwai-iconTextColor: black;
--mwai-iconTextBackgroundColor: white;
--mwai-fontColor: black;
--mwai-backgroundPrimaryColor: #fafafa;
--mwai-backgroundHeaderColor: #0084ff;
--mwai-bubbleColor: #0084ff;
--mwai-headerButtonsColor: white;
--mwai-conversationsBackgroundColor: white;
--mwai-backgroundUserColor: #0084ff;
--mwai-backgroundAiColor: #eee;
--mwai-backgroundAiSecondaryColor: #ddd;
--mwai-errorBackgroundColor: #6d2f2a;
--mwai-errorTextColor: #FFFFFF;
}
.mwai-messages-theme * {
box-sizing: border-box;
}
.mwai-messages-theme .mwai-body {
display: flex;
background: var(--mwai-backgroundPrimaryColor);
font-size: var(--mwai-fontSize);
color: var(--mwai-fontColor);
border-radius: var(--mwai-borderRadius);
flex-direction: column;
}
.mwai-messages-theme .mwai-shortcuts {
display: flex;
flex-direction: column;
align-items: flex-end;
}
.mwai-messages-theme .mwai-shortcuts .mwai-shortcut {
margin-bottom: 5px;
font-size: var(--mwai-fontSize);
height: inherit;
min-height: inherit;
width: inherit;
min-width: 90px;
border-radius: var(--mwai-borderRadius);
padding: 7px 12px;
cursor: pointer;
display: flex;
align-items: center;
justify-content: end;
}
.mwai-messages-theme .mwai-shortcuts .mwai-shortcut.mwai-success {
background: #4caf50;
color: white;
box-shadow: 0 0 5px 1px rgba(0, 0, 0, 0.15);
}
.mwai-messages-theme .mwai-shortcuts .mwai-shortcut.mwai-danger {
background: #f44336;
color: white;
box-shadow: 0 0 5px 1px rgba(0, 0, 0, 0.15);
}
.mwai-messages-theme .mwai-shortcuts .mwai-shortcut.mwai-warning {
background: #ff9800;
color: white;
box-shadow: 0 0 5px 1px rgba(0, 0, 0, 0.15);
}
.mwai-messages-theme .mwai-shortcuts .mwai-shortcut.mwai-info {
background: #2196f3;
color: white;
box-shadow: 0 0 5px 1px rgba(0, 0, 0, 0.15);
}
.mwai-messages-theme .mwai-shortcuts .mwai-shortcut .mwai-icon {
margin-right: 5px;
}
.mwai-messages-theme .mwai-shortcuts .mwai-shortcut .mwai-icon img {
max-height: 16px;
width: auto;
}
.mwai-messages-theme .mwai-shortcuts .mwai-shortcut:hover {
filter: brightness(1.1);
}
.mwai-messages-theme .mwai-blocks {
display: flex;
flex-direction: column;
padding: var(--mwai-spacing);
}
.mwai-messages-theme .mwai-blocks .mwai-block p:first-child {
margin-top: 0;
}
.mwai-messages-theme .mwai-blocks button {
cursor: pointer;
}
.mwai-messages-theme .mwai-conversation {
display: flex;
flex-direction: column;
overflow: auto;
max-height: var(--mwai-maxHeight);
padding: var(--mwai-spacing) var(--mwai-spacing) 0;
}
.mwai-messages-theme .mwai-conversation .mwai-reply {
margin-bottom: var(--mwai-spacing);
padding: 7px 12px;
border-radius: 15px;
font-size: var(--mwai-fontSize);
color: var(--mwai-fontColor);
position: relative;
}
.mwai-messages-theme .mwai-conversation .mwai-reply .mwai-name,
.mwai-messages-theme .mwai-conversation .mwai-reply .mwai-name-text {
display: none;
}
.mwai-messages-theme .mwai-conversation .mwai-reply * > p:first-child {
margin-top: 0;
}
.mwai-messages-theme .mwai-conversation .mwai-reply * > p:last-child {
margin-bottom: 0;
}
.mwai-messages-theme .mwai-conversation .mwai-reply.mwai-ai {
align-self: flex-start;
background: var(--mwai-backgroundAiColor);
margin-left: 5px;
}
.mwai-messages-theme .mwai-conversation .mwai-reply.mwai-ai::before, .mwai-messages-theme .mwai-conversation .mwai-reply.mwai-ai::after {
content: "";
position: absolute;
z-index: 1;
bottom: 0;
left: -10px;
width: 10px;
height: 20px;
background: var(--mwai-backgroundPrimaryColor);
border-bottom-right-radius: 10px;
}
.mwai-messages-theme .mwai-conversation .mwai-reply.mwai-ai::before {
z-index: 0;
left: -7px;
height: 20px;
width: 20px;
background: var(--mwai-backgroundAiColor);
border-bottom-right-radius: 15px;
}
.mwai-messages-theme .mwai-conversation .mwai-reply.mwai-user {
align-self: flex-end;
background: var(--mwai-backgroundUserColor);
color: white;
margin-right: 10px;
}
.mwai-messages-theme .mwai-conversation .mwai-reply.mwai-user::before, .mwai-messages-theme .mwai-conversation .mwai-reply.mwai-user::after {
content: "";
position: absolute;
z-index: 1;
bottom: 0;
right: -10px;
width: 10px;
height: 20px;
background: var(--mwai-backgroundPrimaryColor);
border-bottom-left-radius: 10px;
}
.mwai-messages-theme .mwai-conversation .mwai-reply.mwai-user::before {
z-index: 0;
right: -10px;
height: 20px;
width: 20px;
background: var(--mwai-backgroundUserColor);
background-attachment: fixed;
border-bottom-left-radius: 15px;
}
.mwai-messages-theme .mwai-text {
flex: auto;
}
.mwai-messages-theme .mwai-text .mwai-image {
display: block;
max-width: 250px;
height: auto;
margin: 0 0 10px 0;
border-radius: var(--mwai-borderRadius);
}
.mwai-messages-theme .mwai-text .mwai-filename {
display: flex;
text-decoration: none;
border: 1px solid var(--mwai-backgroundPrimaryColor);
border-radius: var(--mwai-borderRadius);
color: white;
padding: 5px 10px;
margin-bottom: 10px;
}
.mwai-messages-theme .mwai-text > span > p > *:first-child {
margin-top: 0;
}
.mwai-messages-theme .mwai-text a {
color: #2196f3;
}
.mwai-messages-theme .mwai-text h1 {
font-size: 200%;
}
.mwai-messages-theme .mwai-text h2 {
font-size: 160%;
}
.mwai-messages-theme .mwai-text h3 {
font-size: 140%;
}
.mwai-messages-theme .mwai-text h4 {
font-size: 120%;
}
.mwai-messages-theme .mwai-text p {
font-size: var(--mwai-fontSize);
line-height: var(--mwai-lineHeight);
}
.mwai-messages-theme .mwai-text p code {
background: var(--mwai-backgroundAiSecondaryColor);
padding: 2px 6px;
border-radius: 8px;
font-size: calc(var(--mwai-fontSize) * 0.9);
font-family: system-ui;
}
.mwai-messages-theme .mwai-text pre {
color: var(--mwai-fontColor);
border-radius: var(--mwai-borderRadius);
break-after: auto;
white-space: pre-wrap;
max-width: 100%;
width: 100%;
font-family: system-ui;
background: var(--mwai-backgroundAiSecondaryColor);
padding: var(--mwai-spacing);
}
.mwai-messages-theme .mwai-text pre code {
padding: 0 !important;
font-family: system-ui;
background: var(--mwai-backgroundAiSecondaryColor);
}
.mwai-messages-theme .mwai-text ol {
padding: 0;
margin: 0 0 0 20px;
}
.mwai-messages-theme .mwai-text table {
width: 100%;
border: 2px solid var(--mwai-backgroundAiSecondaryColor);
border-collapse: collapse;
}
.mwai-messages-theme .mwai-text thead {
background: var(--mwai-backgroundAiSecondaryColor);
}
.mwai-messages-theme .mwai-text tr,
.mwai-messages-theme .mwai-text td {
padding: 2px 5px;
}
.mwai-messages-theme .mwai-text td {
border: 2px solid var(--mwai-backgroundAiSecondaryColor);
}
.mwai-messages-theme .mwai-text .mwai-typewriter {
display: inline-block;
}
.mwai-messages-theme .mwai-text .mwai-typewriter > :first-child {
margin-top: 0;
}
.mwai-messages-theme .mwai-text > *:first-child {
margin-top: 0;
}
.mwai-messages-theme .mwai-text > *:last-child {
margin-bottom: 0;
}
.mwai-messages-theme .mwai-input {
display: flex;
align-items: center;
padding: var(--mwai-spacing);
}
.mwai-messages-theme .mwai-input .mwai-input-text {
flex: auto;
position: relative;
display: flex;
background: var(--mwai-backgroundPrimaryColor);
border-radius: var(--mwai-borderRadius);
border: 1px solid var(--mwai-backgroundAiSecondaryColor);
overflow: hidden;
}
.mwai-messages-theme .mwai-input .mwai-input-text.mwai-blocked img {
filter: grayscale(100%);
opacity: 0.5;
}
.mwai-messages-theme .mwai-input .mwai-input-text.mwai-dragging {
border: 1px dashed var(--mwai-backgroundAiSecondaryColor);
}
.mwai-messages-theme .mwai-input .mwai-input-text textarea {
background: var(--mwai-backgroundPrimaryColor);
color: var(--mwai-fontColor);
flex: auto;
padding: var(--mwai-spacing);
border: none;
font-size: var(--mwai-fontSize);
resize: none;
font-family: inherit;
margin: 0;
overflow: hidden;
min-height: inherit;
}
.mwai-messages-theme .mwai-input .mwai-input-text textarea:focus {
outline: none;
box-shadow: none;
}
.mwai-messages-theme .mwai-input .mwai-input-text textarea::placeholder {
color: var(--mwai-fontColor);
opacity: 0.5;
}
.mwai-messages-theme .mwai-input .mwai-input-text .mwai-microphone {
display: flex;
justify-content: center;
align-items: center;
margin-right: 5px;
}
.mwai-messages-theme .mwai-input .mwai-input-text .mwai-microphone svg {
opacity: 0.5;
filter: grayscale(100%);
transition: opacity 0.3s ease-out;
cursor: pointer;
}
.mwai-messages-theme .mwai-input .mwai-input-text .mwai-microphone[active=true] svg {
opacity: 1;
}
.mwai-messages-theme .mwai-input .mwai-input-text .mwai-microphone[disabled] svg {
opacity: 0;
cursor: not-allowed;
}
.mwai-messages-theme .mwai-input .mwai-input-text .mwai-file-upload-icon {
background: url(//staging.smartmeetings.com/wp-content/plugins/ai-engine/themes/icons/white-icons.svg);
background-size: 500%;
background-position: 0px -96px;
width: 32px;
height: 32px;
margin-top: calc(var(--mwai-spacing) / 2);
margin-left: 5px;
z-index: 100;
}
.mwai-messages-theme .mwai-input .mwai-input-text .mwai-file-upload-icon.mwai-idle-add {
background-position: -32px -96px;
}
.mwai-messages-theme .mwai-input .mwai-input-text .mwai-file-upload-icon.mwai-image-add {
background-position: -32px 0px;
}
.mwai-messages-theme .mwai-input .mwai-input-text .mwai-file-upload-icon.mwai-image-up {
background-position: -64px 0px;
}
.mwai-messages-theme .mwai-input .mwai-input-text .mwai-file-upload-icon.mwai-image-del {
background-position: -96px 0px;
}
.mwai-messages-theme .mwai-input .mwai-input-text .mwai-file-upload-icon.mwai-image-ok {
background-position: -128px 0px;
}
.mwai-messages-theme .mwai-input .mwai-input-text .mwai-file-upload-icon.mwai-document-add {
background-position: -32px -64px;
}
.mwai-messages-theme .mwai-input .mwai-input-text .mwai-file-upload-icon.mwai-document-up {
background-position: -64px -64px;
}
.mwai-messages-theme .mwai-input .mwai-input-text .mwai-file-upload-icon.mwai-document-del {
background-position: -96px -64px;
}
.mwai-messages-theme .mwai-input .mwai-input-text .mwai-file-upload-icon.mwai-document-ok {
background-position: -128px -64px;
}
.mwai-messages-theme .mwai-input .mwai-input-text .mwai-file-upload-icon .mwai-file-upload-progress {
position: absolute;
font-size: 8px;
width: 21px;
top: 24px;
left: 23px;
overflow: hidden;
text-align: center;
font-weight: bold;
color: white;
}
.mwai-messages-theme .mwai-input .mwai-input-submit {
width: 70px;
}
.mwai-messages-theme button {
margin-left: var(--mwai-spacing);
padding: 5px 15px;
background-color: var(--mwai-backgroundUserColor);
color: white;
border: none;
border-radius: var(--mwai-borderRadius);
cursor: pointer;
height: 32px;
display: flex;
justify-content: center;
align-items: center;
}
.mwai-messages-theme button .mwai-timer {
margin-left: 5px;
margin-right: 5px;
font-size: 11px;
}
.mwai-messages-theme button:hover {
filter: brightness(1.2);
}
.mwai-messages-theme button[disabled] {
cursor: not-allowed;
}
.mwai-messages-theme button[disabled] span {
opacity: 0.5;
}
.mwai-messages-theme button[disabled].mwai-busy span {
display: none;
}
.mwai-messages-theme button[disabled].mwai-busy:before {
content: "";
width: 18px;
height: 18px;
margin: auto;
border: 3px solid transparent;
border-top-color: var(--mwai-fontColor);
border-radius: 50%;
animation: mwai-button-spinner 1s ease infinite;
}
.mwai-messages-theme .mwai-compliance {
opacity: 0.5;
margin-top: calc(-1 * var(--mwai-spacing));
padding: calc(var(--mwai-spacing) / 1.5) var(--mwai-spacing);
font-size: smaller;
color: var(--mwai-fontColor);
text-align: left;
}
.mwai-messages-theme .mwai-gallery {
display: grid;
grid-template-columns: repeat(3, 1fr);
grid-gap: 5px;
}
.mwai-messages-theme .mwai-gallery img {
width: 100%;
}
.mwai-messages-theme.mwai-transition, .mwai-messages-theme .mwai-transition {
opacity: 0;
transition: opacity 350ms ease-in-out;
}
.mwai-messages-theme.mwai-transition-visible, .mwai-messages-theme .mwai-transition-visible {
opacity: 1;
}
.mwai-messages-theme .mwai-text {
overflow-wrap: anywhere;
}
.mwai-messages-theme .mwai-text img {
max-width: 100%;
}
.mwai-messages-theme .mwai-text div p:first-child {
margin-top: 0;
}
.mwai-messages-theme .mwai-text div p:last-child {
margin-bottom: 0;
}
.mwai-messages-theme .mwai-trigger {
position: absolute;
right: 0;
bottom: 0;
transition: all 0.2s ease-out;
z-index: 9999;
display: flex;
flex-direction: column;
align-items: end;
}
.mwai-messages-theme .mwai-trigger .mwai-icon-text-container {
display: flex;
flex-direction: column;
align-items: flex-end;
}
.mwai-messages-theme .mwai-trigger .mwai-icon-text-container .mwai-icon-text {
background: var(--mwai-iconTextBackgroundColor);
color: var(--mwai-iconTextColor);
box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.15);
max-width: 200px;
font-size: 13px;
margin-bottom: 15px;
padding: 10px 15px;
border-radius: 8px;
}
.mwai-messages-theme .mwai-trigger .mwai-icon-text-container .mwai-icon-text-close {
color: var(--mwai-iconTextColor);
background: var(--mwai-iconTextBackgroundColor);
padding: 5px;
width: 30px;
height: 20px;
border-radius: 100%;
display: none;
justify-content: center;
align-items: center;
margin-bottom: 3px;
}
.mwai-messages-theme .mwai-trigger .mwai-icon-text-container:hover {
cursor: pointer;
}
.mwai-messages-theme .mwai-trigger .mwai-icon-text-container:hover .mwai-icon-text-close {
display: flex;
font-size: 12px;
}
.mwai-messages-theme .mwai-trigger .mwai-icon-text-container:hover .mwai-icon-text-close:hover {
filter: brightness(1.2);
}
@media (max-width: 760px) {
.mwai-messages-theme .mwai-trigger .mwai-icon-text-container .mwai-icon-text-close {
display: flex;
}
}
.mwai-messages-theme .mwai-trigger .mwai-icon-container .mwai-icon {
filter: drop-shadow(0px 0px 15px rgba(0, 0, 0, 0.15));
transition: all 0.2s ease-out;
}
.mwai-messages-theme .mwai-trigger .mwai-icon-container .mwai-icon:hover {
cursor: pointer;
transform: scale(1.05);
}
.mwai-messages-theme.mwai-window {
position: fixed;
right: 30px;
bottom: 30px;
width: var(--mwai-width);
z-index: 9999;
}
.mwai-messages-theme.mwai-window .mwai-header {
display: none;
justify-content: flex-end;
align-items: center;
border-radius: var(--mwai-borderRadius) var(--mwai-borderRadius) 0 0;
background: var(--mwai-backgroundHeaderColor);
}
.mwai-messages-theme.mwai-window .mwai-header .mwai-buttons {
display: flex;
align-items: center;
}
.mwai-messages-theme.mwai-window .mwai-header .mwai-buttons .mwai-resize-button {
justify-content: center;
height: 32px;
width: 22px;
cursor: pointer;
display: flex;
justify-content: center;
align-items: center;
}
.mwai-messages-theme.mwai-window .mwai-header .mwai-buttons .mwai-resize-button:before {
transition: all 0.2s ease-out;
content: " ";
cursor: pointer;
position: absolute;
height: 13px;
width: 13px;
border: 1px solid var(--mwai-headerButtonsColor);
}
.mwai-messages-theme.mwai-window .mwai-header .mwai-buttons .mwai-resize-button:hover:before {
width: 16px;
height: 16px;
}
.mwai-messages-theme.mwai-window .mwai-header .mwai-buttons .mwai-close-button {
justify-content: center;
height: 32px;
width: 33px;
cursor: pointer;
border-radius: var(--mwai-borderRadius);
}
.mwai-messages-theme.mwai-window .mwai-header .mwai-buttons .mwai-close-button:before {
transition: all 0.2s ease-out;
transform: translate(16px, 5px) rotate(45deg);
}
.mwai-messages-theme.mwai-window .mwai-header .mwai-buttons .mwai-close-button:after {
transition: all 0.2s ease-out;
transform: translate(16px, 5px) rotate(-45deg);
}
.mwai-messages-theme.mwai-window .mwai-header .mwai-buttons .mwai-close-button:before, .mwai-messages-theme.mwai-window .mwai-header .mwai-buttons .mwai-close-button:after {
content: " ";
cursor: pointer;
position: absolute;
height: 22px;
width: 1px;
background-color: var(--mwai-headerButtonsColor);
}
.mwai-messages-theme.mwai-window .mwai-header .mwai-buttons .mwai-close-button:hover:before {
opacity: 1;
transform: translate(16px, 5px) rotate(135deg);
}
.mwai-messages-theme.mwai-window .mwai-header .mwai-buttons .mwai-close-button:hover:after {
opacity: 1;
transform: translate(16px, 5px) rotate(45deg);
}
.mwai-messages-theme.mwai-window .mwai-body {
display: none;
opacity: 0;
max-height: var(--mwai-maxHeight);
border-radius: 0 0 var(--mwai-borderRadius) var(--mwai-borderRadius);
}
.mwai-messages-theme.mwai-window.mwai-bottom-left {
bottom: 30px;
right: inherit;
left: 30px;
}
.mwai-messages-theme.mwai-window.mwai-bottom-left .mwai-trigger {
right: inherit;
left: 0;
}
.mwai-messages-theme.mwai-window.mwai-top-right {
top: 30px;
bottom: inherit;
right: 30px;
}
.mwai-messages-theme.mwai-window.mwai-top-right .mwai-trigger {
top: 0;
bottom: inherit;
}
.mwai-messages-theme.mwai-window.mwai-top-left {
top: 30px;
bottom: inherit;
right: inherit;
left: 30px;
}
.mwai-messages-theme.mwai-window.mwai-top-left .mwai-trigger {
top: 0;
bottom: inherit;
right: inherit;
left: 0;
}
.mwai-messages-theme.mwai-window.mwai-top-left .mwai-trigger, .mwai-messages-theme.mwai-window.mwai-bottom-left .mwai-trigger {
align-items: flex-start;
}
.mwai-messages-theme.mwai-window.mwai-top-right .mwai-trigger, .mwai-messages-theme.mwai-window.mwai-top-left .mwai-trigger {
flex-direction: column-reverse;
}
.mwai-messages-theme.mwai-window.mwai-top-right .mwai-trigger .mwai-icon-text, .mwai-messages-theme.mwai-window.mwai-top-left .mwai-trigger .mwai-icon-text {
margin-bottom: 0;
margin-top: 15px;
}
.mwai-messages-theme.mwai-window.mwai-fullscreen .mwai-header .mwai-buttons {
margin-bottom: 0px;
}
.mwai-messages-theme.mwai-window.mwai-fullscreen .mwai-header .mwai-buttons .mwai-resize-button:before {
width: 16px;
height: 16px;
}
.mwai-messages-theme.mwai-window.mwai-fullscreen .mwai-header .mwai-buttons .mwai-resize-button:hover:before {
width: 13px;
height: 13px;
}
.mwai-messages-theme.mwai-fullscreen:not(.mwai-window), .mwai-messages-theme.mwai-fullscreen.mwai-window.mwai-open {
position: fixed;
left: 0 !important;
right: 0 !important;
bottom: 0 !important;
top: 0 !important;
width: 100%;
height: 100%;
max-height: 100%;
max-width: 100%;
display: flex;
flex-direction: column;
margin: 0;
z-index: 999999;
background-color: var(--mwai-backgroundSecondaryColor);
}
.mwai-messages-theme.mwai-fullscreen:not(.mwai-window) .mwai-header, .mwai-messages-theme.mwai-fullscreen.mwai-window.mwai-open .mwai-header {
border-radius: 0;
}
.mwai-messages-theme.mwai-fullscreen:not(.mwai-window) .mwai-body, .mwai-messages-theme.mwai-fullscreen.mwai-window.mwai-open .mwai-body {
height: 100%;
max-height: inherit;
border-radius: 0;
}
.mwai-messages-theme.mwai-fullscreen:not(.mwai-window) .mwai-body .mwai-conversation, .mwai-messages-theme.mwai-fullscreen.mwai-window.mwai-open .mwai-body .mwai-conversation {
flex: auto;
max-height: none;
}
.mwai-messages-theme.mwai-window.mwai-open .mwai-header {
display: flex;
}
.mwai-messages-theme.mwai-window.mwai-open .mwai-body {
display: flex;
transition: opacity 200ms ease-in-out 0s;
opacity: 1;
}
.mwai-messages-theme.mwai-window.mwai-open .mwai-trigger {
display: none;
}
.mwai-messages-theme .mwai-error {
margin: var(--mwai-spacing);
color: white;
background: rgba(180, 55, 55, 0.55);
padding: var(--mwai-spacing);
border-radius: var(--mwai-borderRadius);
}
.mwai-messages-theme .mwai-error:hover {
cursor: pointer;
background: rgba(180, 44, 44, 0.85);
}
.mwai-messages-theme.mwai-bubble .mwai-icon-container {
background: var(--mwai-bubbleColor);
width: 60px;
height: 60px;
border-radius: 100%;
transition: all 0.2s ease-out;
display: flex;
justify-content: center;
align-items: center;
}
.mwai-messages-theme.mwai-bubble .mwai-icon-container .mwai-icon {
max-width: 50%;
max-height: 50%;
filter: none;
}
.mwai-messages-theme.mwai-bubble .mwai-icon-container .mwai-icon:hover {
transform: none;
}
.mwai-messages-theme.mwai-bubble .mwai-icon-container .mwai-emoji {
font-size: 30px !important;
}
.mwai-messages-theme.mwai-bubble .mwai-icon-container:hover {
cursor: pointer;
filter: brightness(1.1);
}
@media (max-width: 760px) {
.mwai-messages-theme.mwai-window.mwai-open {
position: fixed;
left: 0 !important;
right: 0 !important;
bottom: 0 !important;
top: 0 !important;
width: 100%;
height: 100%;
max-height: 100%;
max-width: 100%;
display: flex;
flex-direction: column;
margin: 0;
z-index: 999999;
background-color: var(--mwai-backgroundSecondaryColor);
}
.mwai-messages-theme.mwai-window.mwai-open .mwai-header {
border-radius: 0;
}
.mwai-messages-theme.mwai-window.mwai-open .mwai-body {
height: 100%;
max-height: inherit;
border-radius: 0;
}
.mwai-messages-theme.mwai-window.mwai-open .mwai-body .mwai-conversation {
flex: auto;
max-height: none;
}
.mwai-messages-theme.mwai-window.mwai-open .mwai-input {
flex-direction: column;
}
.mwai-messages-theme.mwai-window.mwai-open .mwai-input button {
font-size: 16px;
margin-left: 0;
width: 100%;
}
.mwai-messages-theme.mwai-window.mwai-open .mwai-input .mwai-input-text {
width: 100%;
}
.mwai-messages-theme.mwai-window.mwai-open .mwai-input .mwai-input-text input, .mwai-messages-theme.mwai-window.mwai-open .mwai-input .mwai-input-text textarea {
font-size: 16px;
}
.mwai-messages-theme.mwai-window.mwai-open .mwai-body {
display: flex;
transition: opacity 200ms ease-in-out 0s;
opacity: 1;
height: 100%;
max-height: inherit;
}
.mwai-messages-theme.mwai-window.mwai-open .mwai-body .mwai-conversation {
flex: auto;
max-height: none;
}
.mwai-messages-theme.mwai-window.mwai-open .mwai-resize-button {
display: none !important;
}
.mwai-messages-theme.mwai-window.mwai-open .mwai-trigger {
display: none;
}
}
@keyframes mwai-button-spinner {
from {
transform: rotate(0turn);
}
to {
transform: rotate(1turn);
}
}
.mwai-messages-theme button:not(.mwai-busy):before {
content: none !important;
display: none !important;
animation: none !important;
}
.mwai-messages-theme .admin-bar .mwai-fullscreen:not(.mwai-window),
.mwai-messages-theme .admin-bar .mwai-fullscreen.mwai-window.mwai-open {
top: 32px;
}
.mwai-messages-theme pre code.hljs {
display: block;
overflow-x: auto;
padding: 1em;
}
.mwai-messages-theme code.hljs {
padding: 3px 5px;
}
.mwai-messages-theme .hljs {
color: #333;
background: #f0f0f0;
}
.mwai-messages-theme .hljs-subst {
color: #333;
}
.mwai-messages-theme .hljs-comment {
color: #888;
}
.mwai-messages-theme .hljs-attr, .mwai-messages-theme .hljs-doctag, .mwai-messages-theme .hljs-keyword, .mwai-messages-theme .hljs-meta .hljs-keyword, .mwai-messages-theme .hljs-section, .mwai-messages-theme .hljs-selector-tag {
color: #0077cc;
}
.mwai-messages-theme .hljs-attribute {
color: #aa3377;
}
.mwai-messages-theme .hljs-name, .mwai-messages-theme .hljs-number, .mwai-messages-theme .hljs-quote, .mwai-messages-theme .hljs-selector-id, .mwai-messages-theme .hljs-template-tag, .mwai-messages-theme .hljs-type {
color: #c18401;
}
.mwai-messages-theme .hljs-selector-class {
color: #0077cc;
}
.mwai-messages-theme .hljs-link, .mwai-messages-theme .hljs-regexp, .mwai-messages-theme .hljs-selector-attr, .mwai-messages-theme .hljs-string, .mwai-messages-theme .hljs-symbol, .mwai-messages-theme .hljs-template-variable, .mwai-messages-theme .hljs-variable {
color: #689700;
}
.mwai-messages-theme .hljs-meta, .mwai-messages-theme .hljs-selector-pseudo {
color: #0077cc;
}
.mwai-messages-theme .hljs-built_in, .mwai-messages-theme .hljs-literal, .mwai-messages-theme .hljs-title {
color: #c18401;
}
.mwai-messages-theme .hljs-bullet, .mwai-messages-theme .hljs-code {
color: #555;
}
.mwai-messages-theme .hljs-meta .hljs-string {
color: #689700;
}
.mwai-messages-theme .hljs-deletion {
color: #b71c1c;
}
.mwai-messages-theme .hljs-addition {
color: #1b5e20;
}
.mwai-messages-theme .hljs-emphasis {
font-style: italic;
}
.mwai-messages-theme .hljs-strong {
font-weight: 700;
}
.mwai-messages-theme .mwai-reply-actions {
position: absolute;
border-radius: 5px;
top: 10px;
right: 10px;
display: flex;
align-items: center;
padding: 2px 2px;
z-index: 100;
background: var(--mwai-backgroundPrimaryColor);
box-shadow: 0 0 8px rgba(0, 0, 0, 0.25);
z-index: 100;
}
.mwai-messages-theme .mwai-reply-actions .mwai-copy-button {
fill: var(--mwai-fontColor);
padding: 3px 5px;
width: 24px;
height: 24px;
background: var(--mwai-backgroundPrimaryColor);
cursor: pointer;
border-radius: 5px;
}
.mwai-messages-theme .mwai-reply-actions .mwai-copy-button:hover {
filter: brightness(1.2);
}
.mwai-messages-theme .mwai-reply-actions.mwai-hidden {
opacity: 0;
}
.mwai-messages-theme .mwai-realtime {
padding: var(--mwai-spacing);
}
.mwai-messages-theme .mwai-realtime .mwai-visualizer {
display: flex;
justify-content: center;
align-items: center;
}
.mwai-messages-theme .mwai-realtime .mwai-visualizer hr {
width: 100px;
margin-right: var(--mwai-spacing);
margin-left: var(--mwai-spacing);
border: 1px solid var(--mwai-backgroundPrimaryColor);
}
.mwai-messages-theme .mwai-realtime .mwai-visualizer .mwai-animation {
background: var(--mwai-backgroundPrimaryColor);
}
.mwai-messages-theme .mwai-realtime .mwai-controls {
display: flex;
justify-content: center;
align-items: center;
margin-bottom: var(--mwai-spacing);
}
.mwai-messages-theme .mwai-realtime .mwai-controls > * + * {
margin-left: 10px;
}
.mwai-messages-theme .mwai-realtime .mwai-controls button {
border-radius: 100%;
width: 50px;
height: 50px;
margin: 5px;
padding: 5px;
display: flex;
align-items: center;
justify-content: center;
color: var(--mwai-fontColor);
border: 2px solid var(--mwai-backgroundPrimaryColor);
background: none;
cursor: pointer;
transition: all 0.2s ease-out;
min-width: inherit;
max-width: inherit;
}
.mwai-messages-theme .mwai-realtime .mwai-controls button:hover:not(:disabled) {
background: var(--mwai-backgroundPrimaryColor);
}
.mwai-messages-theme .mwai-realtime .mwai-controls button:disabled {
opacity: 0.5;
cursor: not-allowed;
background: none;
}
.mwai-messages-theme .mwai-realtime .mwai-controls button.mwai-active {
border: 2px solid var(--mwai-fontColor);
}
.mwai-messages-theme .mwai-realtime .mwai-last-transcript {
margin: var(--mwai-spacing);
margin-top: 0;
border: 2px solid var(--mwai-backgroundPrimaryColor);
padding: calc(var(--mwai-spacing) / 2);
border-radius: var(--mwai-borderRadius);
display: flex;
justify-content: center;
font-size: 80%;
}
.mwai-messages-theme .mwai-realtime .mwai-statistics {
display: grid;
grid-template-columns: 1fr 1fr 1fr;
grid-row-gap: 10px;
font-size: 14px;
}
.mwai-messages-theme .mwai-realtime .mwai-statistics div {
display: flex;
flex-direction: column;
align-items: center;
}
.mwai-messages-theme .mwai-realtime .mwai-statistics label {
font-size: 11px;
opacity: 0.5;
text-transform: uppercase;
}
.mwai-messages-theme .mwai-realtime .mwai-options {
margin-top: var(--mwai-spacing);
display: flex;
align-items: center;
}
.mwai-messages-theme .mwai-realtime .mwai-options .mwai-option {
cursor: pointer;
opacity: 0.5;
margin-right: 2px;
}
.mwai-messages-theme .mwai-realtime .mwai-options .mwai-option.mwai-active {
opacity: 1;
}
.mwai-messages-theme.mwai-discussions {
border-radius: var(--mwai-borderRadius);
background: var(--mwai-backgroundHeaderColor);
overflow: hidden;
}
.mwai-messages-theme.mwai-discussions * {
box-sizing: border-box;
}
.mwai-messages-theme.mwai-discussions .mwai-discussion {
display: flex;
position: relative;
padding-left: calc(var(--mwai-spacing) / 2);
padding-right: calc(var(--mwai-spacing) / 2);
padding-bottom: calc(var(--mwai-spacing) / 2);
color: var(--mwai-conversationsTextColor);
opacity: 0.65;
align-items: center;
}
.mwai-messages-theme.mwai-discussions .mwai-discussion .mwai-discussion-title {
flex: 1;
padding: 5px;
}
.mwai-messages-theme.mwai-discussions .mwai-discussion .mwai-discussion-actions {
position: absolute;
top: 50%;
right: calc(var(--mwai-spacing) / 2);
transform: translateY(-50%);
opacity: 0;
transition: opacity 0.2s ease-out;
z-index: 100;
}
.mwai-messages-theme.mwai-discussions .mwai-discussion .mwai-discussion-actions .mwai-menu-icon {
width: 28px;
height: 28px;
display: flex;
align-items: center;
justify-content: center;
cursor: pointer;
color: var(--mwai-conversationsTextColor);
}
.mwai-messages-theme.mwai-discussions .mwai-discussion.mwai-active {
cursor: pointer;
}
.mwai-messages-theme.mwai-discussions .mwai-discussion.mwai-active .mwai-discussion-title {
background: var(--mwai-backgroundPrimaryColor);
border-radius: var(--mwai-borderRadius);
opacity: 1;
}
.mwai-messages-theme.mwai-discussions .mwai-discussion:hover {
cursor: pointer;
}
.mwai-messages-theme.mwai-discussions .mwai-discussion:hover .mwai-discussion-title {
background: var(--mwai-backgroundPrimaryColor);
border-radius: var(--mwai-borderRadius);
opacity: 1;
}
.mwai-messages-theme.mwai-discussions .mwai-discussion:hover .mwai-discussion-actions {
opacity: 1;
}
.mwai-messages-theme.mwai-discussions .mwai-discussion:has(.mwai-context-menu) .mwai-discussion-actions {
opacity: 1;
}
.mwai-messages-theme.mwai-discussions .mwai-discussion:first-child {
margin-top: calc(var(--mwai-spacing) / 2);
}
.mwai-messages-theme.mwai-discussions .mwai-header {
color: var(--mwai-headerButtonsColor);
padding: var(--mwai-spacing);
display: flex;
justify-content: space-between;
align-items: center;
gap: 10px;
}
.mwai-messages-theme.mwai-discussions .mwai-header button {
background: var(--mwai-backgroundPrimaryColor);
color: var(--mwai-fontColor);
border: none;
padding: 8px 16px;
border-radius: var(--mwai-borderRadius);
cursor: pointer;
transition: all 0.2s ease-out;
}
.mwai-messages-theme.mwai-discussions .mwai-header button:hover:not(:disabled) {
background: var(--mwai-iconTextBackgroundColor);
}
.mwai-messages-theme.mwai-discussions .mwai-header button:disabled {
opacity: 0.5;
cursor: not-allowed;
}
.mwai-messages-theme.mwai-discussions .mwai-header .mwai-refresh-btn {
padding: 8px;
display: flex;
align-items: center;
justify-content: center;
}
.mwai-messages-theme.mwai-discussions .mwai-body {
background: var(--mwai-conversationsBackgroundColor);
list-style: none;
padding: 0;
margin: 0;
position: relative;
min-height: 200px;
display: flex;
flex-direction: column;
border-radius: 0;
z-index: 1;
}
.mwai-messages-theme.mwai-discussions .mwai-loading-overlay {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: var(--mwai-conversationsBackgroundColor);
opacity: 0.9;
display: flex;
align-items: center;
justify-content: center;
z-index: 10;
}
.mwai-messages-theme.mwai-discussions .mwai-spinner {
animation: spin 1s linear infinite;
color: var(--mwai-fontColor);
}
@keyframes spin {
from {
transform: rotate(0deg);
}
to {
transform: rotate(360deg);
}
}
.mwai-messages-theme.mwai-discussions .mwai-pagination {
background: var(--mwai-backgroundHeaderColor);
padding: var(--mwai-spacing);
display: flex;
justify-content: space-between;
align-items: center;
border-top: 1px solid var(--mwai-backgroundPrimaryColor);
}
.mwai-messages-theme.mwai-discussions .mwai-pagination button {
background: var(--mwai-backgroundPrimaryColor);
color: var(--mwai-fontColor);
border: none;
padding: 8px 12px;
border-radius: var(--mwai-borderRadius);
cursor: pointer;
transition: all 0.2s ease-out;
display: flex;
align-items: center;
justify-content: center;
}
.mwai-messages-theme.mwai-discussions .mwai-pagination button:hover:not(:disabled) {
background: var(--mwai-iconTextBackgroundColor);
}
.mwai-messages-theme.mwai-discussions .mwai-pagination button:disabled {
opacity: 0.3;
cursor: not-allowed;
}
.mwai-messages-theme.mwai-discussions .mwai-pagination span {
color: var(--mwai-headerButtonsColor);
font-size: var(--mwai-fontSize);
font-weight: 500;
}
.mwai-messages-theme.mwai-discussions .mwai-pagination .mwai-page-indicator {
color: var(--mwai-headerButtonsColor);
font-size: calc(var(--mwai-fontSize) * 0.85);
font-weight: 400;
opacity: 0.8;
}
.mwai-messages-theme .mwai-realtime .mwai-visualizer hr {
border: 1px solid var(--mwai-backgroundAiSecondaryColor);
}
.mwai-messages-theme .mwai-realtime .mwai-visualizer .mwai-animation {
background: var(--mwai-backgroundAiSecondaryColor);
}
.mwai-messages-theme .mwai-realtime .mwai-controls button {
color: var(--mwai-backgroundPrimaryColor);
background: var(--mwai-backgroundUserColor);
}
.mwai-messages-theme .mwai-realtime .mwai-controls button:hover {
color: var(--mwai-backgroundPrimaryColor) !important;
background: var(--mwai-backgroundUserColor) !important;
opacity: 0.8;
}
.mwai-messages-theme .mwai-realtime .mwai-controls button[disabled] {
color: var(--mwai-backgroundPrimaryColor) !important;
background: var(--mwai-backgroundUserColor) !important;
opacity: 0.5;
}
.mwai-messages-theme .mwai-reply-actions {
top: 5px;
}
.mwai-messages-theme .mwai-reply-actions .mwai-copy-button {
padding-top: 4px;
}
.mwai-messages-theme .mwai-reply-actions .mwai-copy-button:hover {
fill: var(--mwai-backgroundPrimaryColor);
background: var(--mwai-backgroundUserColor);
}
@media (max-width: 760px) {
.mwai-messages-theme.mwai-window {
width: calc(100% - 40px);
z-index: 9999999999;
}
.mwai-messages-theme .mwai-input {
flex-direction: column;
}
.mwai-messages-theme .mwai-input .mwai-input-text {
width: 100%;
}
.mwai-messages-theme .mwai-input .mwai-input-submit {
width: 100%;
margin: 15px 0 0 0;
}
}.mwai-context-menu-portal .mwai-context-menu {
background: var(--mwai-backgroundHeaderColor);
border: 1px solid rgba(0, 0, 0, 0.1);
border-radius: var(--mwai-borderRadius);
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
font-size: 13px;
color: var(--mwai-fontColor);
}
.mwai-context-menu-portal .mwai-context-menu .mwai-menu-item {
display: flex;
align-items: center;
gap: 8px;
padding: 8px 12px;
cursor: pointer;
transition: background-color 0.2s;
}
.mwai-context-menu-portal .mwai-context-menu .mwai-menu-item:hover {
background-color: rgba(0, 0, 0, 0.05);
}
.mwai-context-menu-portal .mwai-context-menu .mwai-menu-item.mwai-danger {
color: #dc3545;
}
.mwai-context-menu-portal .mwai-context-menu .mwai-menu-item.mwai-danger:hover {
background-color: rgba(220, 53, 69, 0.1);
}
.mwai-context-menu-portal .mwai-context-menu .mwai-menu-item svg {
flex-shrink: 0;
}
.mwai-chunks {
padding: 8px;
background: rgba(0, 0, 0, 0.03);
font-family: "SF Mono", Monaco, "Cascadia Code", "Roboto Mono", Consolas, "Courier New", monospace;
font-size: 11px;
border-top: 1px solid rgba(0, 0, 0, 0.06);
}
.mwai-chunks.mwai-chunks-collapsed .mwai-chunks-header {
margin-bottom: 0 !important;
}
.mwai-chunks .mwai-chunks-header {
display: flex;
align-items: center;
gap: 6px;
margin-bottom: 8px;
color: #6b7280;
font-size: 10px;
text-transform: uppercase;
letter-spacing: 0.05em;
}
.mwai-chunks .mwai-chunks-header .mwai-chunks-title {
flex: 1;
}
.mwai-chunks .mwai-chunks-header .mwai-chunks-toggle {
background: none;
border: 1px solid rgba(0, 0, 0, 0.1);
border-radius: 3px;
padding: 2px;
width: 30px;
height: 20px;
cursor: pointer;
color: #6b7280;
display: flex;
align-items: center;
justify-content: center;
transition: all 0.2s ease;
margin-left: 4px;
}
.mwai-chunks .mwai-chunks-header .mwai-chunks-toggle:hover {
background: rgba(0, 0, 0, 0.05);
color: #374151;
}
.mwai-chunks .mwai-chunk {
margin-bottom: 4px;
padding: 6px 8px;
background: white;
border-radius: 4px;
border: 1px solid rgba(0, 0, 0, 0.06);
transition: all 0.2s ease;
}
.mwai-chunks .mwai-chunk .mwai-chunk-header {
display: flex;
align-items: center;
gap: 8px;
cursor: pointer;
user-select: none;
}
.mwai-chunks .mwai-chunk .mwai-chunk-header .mwai-chunk-time {
color: #9ca3af;
font-size: 10px;
font-variant-numeric: tabular-nums;
}
.mwai-chunks .mwai-chunk .mwai-chunk-header .mwai-chunk-type {
display: flex;
align-items: center;
gap: 4px;
padding: 2px 6px;
border-radius: 3px;
font-size: 10px;
font-weight: 500;
color: white;
}
.mwai-chunks .mwai-chunk .mwai-chunk-header .mwai-chunk-data {
flex: 1;
color: #374151;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
.mwai-chunks .mwai-chunk .mwai-chunk-header .mwai-chunk-expand {
color: #9ca3af;
transition: transform 0.2s ease;
}
.mwai-chunks .mwai-chunk .mwai-chunk-details {
margin-top: 8px;
padding: 8px;
background: rgba(0, 0, 0, 0.02);
border-radius: 3px;
overflow-x: auto;
}
.mwai-chunks .mwai-chunk .mwai-chunk-details pre {
margin: 0;
white-space: pre-wrap;
word-break: break-word;
color: #4b5563;
}
.mwai-timeless-theme {
--mwai-spacing: 15px;
--mwai-fontSize: 13px;
--mwai-lineHeight: 1.5;
--mwai-borderRadius: 10px;
--mwai-width: 360px;
--mwai-maxHeight: 40vh;
--mwai-iconTextColor: #FFFFFF;
--mwai-iconTextBackgroundColor: #2831dc;
--mwai-fontColor: black;
--mwai-backgroundPrimaryColor: #fafafa;
--mwai-backgroundHeaderColor: linear-gradient(130deg, #2831dc 0%, #09a9f8 100%);
--mwai-bubbleColor: #2831dc;
--mwai-headerButtonsColor: white;
--mwai-conversationsBackgroundColor: white;
--mwai-backgroundUserColor: linear-gradient(130deg, #272fdc 0%, #09a9f8 100%);
--mwai-backgroundAiColor: #F1F3F7;
--mwai-backgroundAiSecondaryColor: #ddd;
--mwai-errorBackgroundColor: #6d2f2a;
--mwai-errorTextColor: #FFFFFF;
--mwai-headerHeight: 80px;
font-size: var(--mwai-fontSize);
}
.mwai-timeless-theme * {
box-sizing: border-box;
}
.mwai-timeless-theme.mwai-window .mwai-header {
height: var(--mwai-headerHeight);
padding: var(--mwai-spacing);
}
.mwai-timeless-theme.mwai-window .mwai-header .mwai-avatar img {
width: 48px;
height: 48px;
}
.mwai-timeless-theme.mwai-window .mwai-header .mwai-name {
color: white;
font-size: 140%;
margin-left: calc(var(--mwai-spacing) / 2);
}
.mwai-timeless-theme.mwai-window .mwai-header .mwai-name small {
font-size: 75%;
display: block;
}
.mwai-timeless-theme .mwai-body {
display: flex;
background: var(--mwai-backgroundPrimaryColor);
font-size: var(--mwai-fontSize);
color: var(--mwai-fontColor);
border-radius: var(--mwai-borderRadius);
flex-direction: column;
}
.mwai-timeless-theme .mwai-shortcuts {
display: flex;
flex-direction: column;
align-items: flex-end;
}
.mwai-timeless-theme .mwai-shortcuts .mwai-shortcut {
margin-bottom: 5px;
font-size: var(--mwai-fontSize);
height: inherit;
min-height: inherit;
width: inherit;
min-width: 90px;
border-radius: var(--mwai-borderRadius);
padding: 7px 12px;
cursor: pointer;
display: flex;
align-items: center;
justify-content: end;
}
.mwai-timeless-theme .mwai-shortcuts .mwai-shortcut.mwai-success {
background: #4caf50;
color: white;
box-shadow: 0 0 5px 1px rgba(0, 0, 0, 0.15);
}
.mwai-timeless-theme .mwai-shortcuts .mwai-shortcut.mwai-danger {
background: #f44336;
color: white;
box-shadow: 0 0 5px 1px rgba(0, 0, 0, 0.15);
}
.mwai-timeless-theme .mwai-shortcuts .mwai-shortcut.mwai-warning {
background: #ff9800;
color: white;
box-shadow: 0 0 5px 1px rgba(0, 0, 0, 0.15);
}
.mwai-timeless-theme .mwai-shortcuts .mwai-shortcut.mwai-info {
background: #2196f3;
color: white;
box-shadow: 0 0 5px 1px rgba(0, 0, 0, 0.15);
}
.mwai-timeless-theme .mwai-shortcuts .mwai-shortcut .mwai-icon {
margin-right: 5px;
}
.mwai-timeless-theme .mwai-shortcuts .mwai-shortcut .mwai-icon img {
max-height: 16px;
width: auto;
}
.mwai-timeless-theme .mwai-shortcuts .mwai-shortcut:hover {
filter: brightness(1.1);
}
.mwai-timeless-theme .mwai-blocks {
display: flex;
flex-direction: column;
padding: var(--mwai-spacing);
border-top: 0.5px solid rgba(0, 0, 0, 0.15);
background: var(--mwai-backgroundAiColor);
}
.mwai-timeless-theme .mwai-blocks .mwai-block p:first-child {
margin-top: 0;
}
.mwai-timeless-theme .mwai-blocks button {
cursor: pointer;
}
.mwai-timeless-theme .mwai-conversation {
display: flex;
flex-direction: column;
overflow: auto;
max-height: var(--mwai-maxHeight);
padding: var(--mwai-spacing);
}
.mwai-timeless-theme .mwai-conversation .mwai-reply {
margin-bottom: var(--mwai-spacing);
padding: 7px 12px;
border-radius: var(--mwai-borderRadius);
font-size: var(--mwai-fontSize);
color: var(--mwai-fontColor);
position: relative;
}
.mwai-timeless-theme .mwai-conversation .mwai-reply .mwai-name,
.mwai-timeless-theme .mwai-conversation .mwai-reply .mwai-name-text {
display: none;
}
.mwai-timeless-theme .mwai-conversation .mwai-reply * > p:first-child {
margin-top: 0;
}
.mwai-timeless-theme .mwai-conversation .mwai-reply * > p:last-child {
margin-bottom: 0;
}
.mwai-timeless-theme .mwai-conversation .mwai-reply.mwai-ai {
align-self: flex-start;
background: var(--mwai-backgroundAiColor);
}
.mwai-timeless-theme .mwai-conversation .mwai-reply.mwai-user {
align-self: flex-end;
background: var(--mwai-backgroundUserColor);
color: white;
}
.mwai-timeless-theme .mwai-text {
flex: auto;
}
.mwai-timeless-theme .mwai-text .mwai-image {
display: block;
max-width: 250px;
height: auto;
margin: 0 0 10px 0;
border-radius: var(--mwai-borderRadius);
}
.mwai-timeless-theme .mwai-text .mwai-filename {
display: flex;
text-decoration: none;
border: 1px solid var(--mwai-backgroundPrimaryColor);
border-radius: var(--mwai-borderRadius);
color: white;
padding: 5px 10px;
margin-bottom: 10px;
}
.mwai-timeless-theme .mwai-text > span > p > *:first-child {
margin-top: 0;
}
.mwai-timeless-theme .mwai-text a {
color: #2196f3;
}
.mwai-timeless-theme .mwai-text h1 {
font-size: 200%;
}
.mwai-timeless-theme .mwai-text h2 {
font-size: 160%;
}
.mwai-timeless-theme .mwai-text h3 {
font-size: 140%;
}
.mwai-timeless-theme .mwai-text h4 {
font-size: 120%;
}
.mwai-timeless-theme .mwai-text p {
font-size: var(--mwai-fontSize);
line-height: var(--mwai-lineHeight);
}
.mwai-timeless-theme .mwai-text p code {
background: var(--mwai-backgroundAiSecondaryColor);
padding: 2px 6px;
border-radius: 8px;
font-size: calc(var(--mwai-fontSize) * 0.9);
font-family: system-ui;
}
.mwai-timeless-theme .mwai-text pre {
color: var(--mwai-fontColor);
border-radius: var(--mwai-borderRadius);
break-after: auto;
white-space: pre-wrap;
max-width: 100%;
width: 100%;
font-family: system-ui;
background: var(--mwai-backgroundAiSecondaryColor);
padding: var(--mwai-spacing);
}
.mwai-timeless-theme .mwai-text pre code {
padding: 0 !important;
font-family: system-ui;
background: var(--mwai-backgroundAiSecondaryColor);
}
.mwai-timeless-theme .mwai-text ol {
padding: 0;
margin: 0 0 0 20px;
}
.mwai-timeless-theme .mwai-text table {
width: 100%;
border: 2px solid var(--mwai-backgroundAiSecondaryColor);
border-collapse: collapse;
}
.mwai-timeless-theme .mwai-text thead {
background: var(--mwai-backgroundAiSecondaryColor);
}
.mwai-timeless-theme .mwai-text tr,
.mwai-timeless-theme .mwai-text td {
padding: 2px 5px;
}
.mwai-timeless-theme .mwai-text td {
border: 2px solid var(--mwai-backgroundAiSecondaryColor);
}
.mwai-timeless-theme .mwai-text .mwai-typewriter {
display: inline-block;
}
.mwai-timeless-theme .mwai-text .mwai-typewriter > :first-child {
margin-top: 0;
}
.mwai-timeless-theme .mwai-text > *:first-child {
margin-top: 0;
}
.mwai-timeless-theme .mwai-text > *:last-child {
margin-bottom: 0;
}
.mwai-timeless-theme button {
background: var(--mwai-backgroundUserColor);
color: white;
border: none;
transition: all 0.5s;
padding: 7px 12px;
border-radius: var(--mwai-borderRadius);
}
.mwai-timeless-theme .mwai-input {
display: flex;
align-items: center;
width: 100%;
border-top: 0.5px solid rgba(0, 0, 0, 0.15);
padding: calc(var(--mwai-spacing) / 2) var(--mwai-spacing);
position: relative;
}
.mwai-timeless-theme .mwai-input .mwai-input-text {
flex: auto;
position: relative;
display: flex;
width: 100%;
background: var(--mwai-backgroundPrimaryColor);
overflow: hidden;
}
.mwai-timeless-theme .mwai-input .mwai-input-text.mwai-blocked img {
filter: grayscale(100%);
opacity: 0.5;
}
.mwai-timeless-theme .mwai-input .mwai-input-text.mwai-dragging {
border: 1px dashed var(--mwai-backgroundAiSecondaryColor);
}
.mwai-timeless-theme .mwai-input .mwai-input-text textarea {
background: var(--mwai-backgroundPrimaryColor);
color: var(--mwai-fontColor);
flex: auto;
border: none;
font-size: var(--mwai-fontSize);
resize: none;
font-family: inherit;
margin: 0;
overflow: hidden;
min-height: inherit;
box-shadow: none;
outline: none;
}
.mwai-timeless-theme .mwai-input .mwai-input-text textarea::placeholder {
color: rgba(0, 0, 0, 0.25);
}
.mwai-timeless-theme .mwai-input .mwai-input-text .mwai-microphone {
display: flex;
justify-content: center;
align-items: center;
}
.mwai-timeless-theme .mwai-input .mwai-input-text .mwai-microphone svg {
opacity: 0.5;
filter: grayscale(100%);
transition: opacity 0.3s ease-out;
cursor: pointer;
}
.mwai-timeless-theme .mwai-input .mwai-input-text .mwai-microphone[active=true] svg {
opacity: 1;
}
.mwai-timeless-theme .mwai-input .mwai-input-text .mwai-microphone[disabled] svg {
opacity: 0;
cursor: not-allowed;
}
.mwai-timeless-theme .mwai-input button {
margin-left: var(--mwai-spacing);
border-radius: 100%;
cursor: pointer;
height: 48px;
width: 48px;
min-width: 48px;
min-height: 48px;
}
.mwai-timeless-theme .mwai-input button img {
width: 20px;
height: 20px;
margin: auto;
display: block;
filter: invert(100%) sepia(100%) saturate(0%) hue-rotate(180deg) brightness(1000%) contrast(100%);
}
.mwai-timeless-theme .mwai-input button .mwai-timer {
font-size: 11px;
}
.mwai-timeless-theme .mwai-input button:hover {
filter: brightness(1.2);
}
.mwai-timeless-theme .mwai-input button[disabled] {
cursor: not-allowed;
filter: saturate(0%);
}
.mwai-timeless-theme .mwai-footer {
display: flex;
align-items: center;
border-top: 0.5px solid rgba(0, 0, 0, 0.15);
padding: calc(var(--mwai-spacing) / 2) var(--mwai-spacing);
}
.mwai-timeless-theme .mwai-footer .mwai-tools {
margin-right: calc(var(--mwai-spacing) / 2);
height: 38px;
}
.mwai-timeless-theme .mwai-footer .mwai-tools .mwai-file-upload {
display: inline-block;
}
.mwai-timeless-theme .mwai-footer .mwai-tools .mwai-file-upload-icon {
display: inline-block;
background: url(//staging.smartmeetings.com/wp-content/plugins/ai-engine/themes/icons/white-icons.svg);
background-size: 500%;
background-position: 0px -96px;
width: 32px;
height: 32px;
margin-top: calc(var(--mwai-spacing) / 2);
z-index: 100;
transform: scale(0.8);
transform-origin: 0 0;
}
.mwai-timeless-theme .mwai-footer .mwai-tools .mwai-file-upload-icon.mwai-idle-add {
background-position: -32px -96px;
}
.mwai-timeless-theme .mwai-footer .mwai-tools .mwai-file-upload-icon.mwai-image-add {
background-position: -32px 0px;
}
.mwai-timeless-theme .mwai-footer .mwai-tools .mwai-file-upload-icon.mwai-image-up {
background-position: -64px 0px;
}
.mwai-timeless-theme .mwai-footer .mwai-tools .mwai-file-upload-icon.mwai-image-del {
background-position: -96px 0px;
}
.mwai-timeless-theme .mwai-footer .mwai-tools .mwai-file-upload-icon.mwai-image-ok {
background-position: -128px 0px;
}
.mwai-timeless-theme .mwai-footer .mwai-tools .mwai-file-upload-icon.mwai-document-add {
background-position: -32px -64px;
}
.mwai-timeless-theme .mwai-footer .mwai-tools .mwai-file-upload-icon.mwai-document-up {
background-position: -64px -64px;
}
.mwai-timeless-theme .mwai-footer .mwai-tools .mwai-file-upload-icon.mwai-document-del {
background-position: -96px -64px;
}
.mwai-timeless-theme .mwai-footer .mwai-tools .mwai-file-upload-icon.mwai-document-ok {
background-position: -128px -64px;
}
.mwai-timeless-theme .mwai-footer .mwai-tools .mwai-file-upload-icon .mwai-file-upload-progress {
position: absolute;
font-size: 8px;
width: 21px;
top: 24px;
left: 23px;
overflow: hidden;
text-align: center;
font-weight: bold;
color: white;
}
.mwai-timeless-theme .mwai-footer .mwai-compliance {
opacity: 0.5;
font-size: 11px;
line-height: 11px;
color: var(--mwai-fontColor);
text-align: left;
padding: calc(var(--mwai-spacing) / 2) 0;
}
.mwai-timeless-theme .mwai-gallery {
display: grid;
grid-template-columns: repeat(3, 1fr);
grid-gap: 5px;
}
.mwai-timeless-theme .mwai-gallery img {
width: 100%;
}
.mwai-timeless-theme.mwai-window {
filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.1));
}
.mwai-timeless-theme.mwai-window .mwai-input-submit {
margin-right: -36px;
margin-left: 0px;
}
@media (max-width: 760px) {
.mwai-timeless-theme.mwai-window .mwai-input-submit {
margin-right: inherit;
border-radius: 0;
}
}
.mwai-timeless-theme.mwai-window.mwai-fullscreen .mwai-input-submit {
margin-right: inherit;
}
.mwai-timeless-theme.mwai-form-container {
padding: var(--mwai-spacing);
font-size: var(--mwai-fontSize);
color: var(--mwai-fontColor);
background: var(--mwai-backgroundPrimaryColor);
border-radius: var(--mwai-borderRadius);
}
.mwai-timeless-theme.mwai-form-container fieldset {
border: 0;
margin: 0;
padding: 0;
display: flex;
flex-direction: column;
margin-bottom: 10px;
}
.mwai-timeless-theme.mwai-form-container fieldset input[type=text], .mwai-timeless-theme.mwai-form-container fieldset input[type=email], .mwai-timeless-theme.mwai-form-container fieldset input[type=tel], .mwai-timeless-theme.mwai-form-container fieldset input[type=url], .mwai-timeless-theme.mwai-form-container fieldset input[type=password], .mwai-timeless-theme.mwai-form-container fieldset input[type=number], .mwai-timeless-theme.mwai-form-container fieldset input[type=date], .mwai-timeless-theme.mwai-form-container fieldset input[type=datetime], .mwai-timeless-theme.mwai-form-container fieldset input[type=datetime-local], .mwai-timeless-theme.mwai-form-container fieldset input[type=month], .mwai-timeless-theme.mwai-form-container fieldset input[type=search], .mwai-timeless-theme.mwai-form-container fieldset input[type=time], .mwai-timeless-theme.mwai-form-container fieldset input[type=week], .mwai-timeless-theme.mwai-form-container fieldset select, .mwai-timeless-theme.mwai-form-container fieldset textarea {
padding: calc(var(--mwai-spacing) * 2 / 3) var(--mwai-spacing);
border: 0;
width: 100%;
border-radius: var(--mwai-borderRadius);
font-size: var(--mwai-fontSize);
background: var(--mwai-backgroundAiColor) !important;
color: var(--mwai-fontColor);
}
.mwai-timeless-theme.mwai-form-container fieldset select {
padding: calc(var(--mwai-spacing) * 2 / 3) var(--mwai-spacing);
border: 0;
width: 100%;
border-radius: var(--mwai-borderRadius);
font-size: var(--mwai-fontSize);
background: var(--mwai-backgroundPrimaryColor);
color: var(--mwai-fontColor);
}
.mwai-timeless-theme.mwai-form-container fieldset textarea {
padding: calc(var(--mwai-spacing) * 2 / 3) var(--mwai-spacing);
border: 0;
width: 100%;
border-radius: var(--mwai-borderRadius);
font-family: inherit;
font-size: var(--mwai-fontSize);
background: var(--mwai-backgroundPrimaryColor);
color: var(--mwai-fontColor);
}
.mwai-timeless-theme.mwai-form-container fieldset input[disabled], .mwai-timeless-theme.mwai-form-container fieldset select[disabled], .mwai-timeless-theme.mwai-form-container fieldset textarea[disabled] {
opacity: 0.25;
}
.mwai-timeless-theme.mwai-form-container .mwai-form-submit button, .mwai-timeless-theme.mwai-form-container .mwai-form-reset button {
height: 45px;
background: none;
width: 100%;
color: white;
font-size: var(--mwai-fontSize);
background: var(--mwai-backgroundUserColor);
border: 1px solid var(--mwai-backgroundPrimaryColor);
border-radius: var(--mwai-borderRadius);
cursor: pointer;
transition: all 0.2s ease-out;
position: relative;
}
.mwai-timeless-theme.mwai-form-container .mwai-form-submit button:hover, .mwai-timeless-theme.mwai-form-container .mwai-form-reset button:hover {
filter: brightness(1.2);
}
.mwai-timeless-theme.mwai-form-container .mwai-form-submit button[disabled] span, .mwai-timeless-theme.mwai-form-container .mwai-form-reset button[disabled] span {
opacity: 0.25;
}
.mwai-timeless-theme.mwai-form-container .mwai-form-submit button[disabled]:hover, .mwai-timeless-theme.mwai-form-container .mwai-form-reset button[disabled]:hover {
filter: brightness(1);
cursor: not-allowed;
}
.mwai-timeless-theme.mwai-form-container .mwai-form-submit.mwai-loading button span, .mwai-timeless-theme.mwai-form-container .mwai-form-reset.mwai-loading button span {
opacity: 0;
}
.mwai-timeless-theme.mwai-form-container .mwai-form-submit.mwai-loading button::after, .mwai-timeless-theme.mwai-form-container .mwai-form-reset.mwai-loading button::after {
content: "";
position: absolute;
width: 18px;
height: 18px;
top: 0;
left: 0;
right: 0;
bottom: 0;
margin: auto;
border: 3px solid transparent;
border-top-color: white;
border-radius: 50%;
animation: mwai-button-spinner 1s ease infinite;
}
.mwai-timeless-theme.mwai-form-container .mwai-form-output-container .mwai-form-output {
font-size: var(--mwai-fontSize);
position: relative;
margin-top: var(--mwai-spacing);
padding: var(--mwai-spacing);
border: 1px solid var(--mwai-backgroundPrimaryColor);
}
.mwai-timeless-theme.mwai-form-container .mwai-form-output-container .mwai-form-output.mwai-error {
background: var(--mwai-errorBackgroundColor);
color: var(--mwai-errorFontColor);
}
.mwai-timeless-theme.mwai-form-container .mwai-form-output-container .mwai-form-output > * {
color: var(--mwai-fontColor) !important;
}
.mwai-timeless-theme.mwai-form-container .mwai-form-output-container .mwai-form-output > *:first-child {
margin-top: 0;
}
.mwai-timeless-theme.mwai-form-container .mwai-form-output-container .mwai-form-output > *:last-child {
margin-bottom: 0;
}
.mwai-timeless-theme.mwai-form-container .mwai-form-output-container .mwai-form-output img {
max-width: 33%;
}
.mwai-timeless-theme.mwai-form-container .mwai-form-output-container .mwai-form-output div > *:first-child {
margin-top: 0;
}
.mwai-timeless-theme.mwai-form-container .mwai-form-output-container .mwai-form-output div > *:last-child {
margin-bottom: 0;
}
.mwai-timeless-theme.mwai-form-container .mwai-form-output-container.mwai-has-content {
display: block;
}
.mwai-timeless-theme.mwai-form-container .wp-block-columns {
margin: 0;
}
.mwai-timeless-theme.mwai-transition, .mwai-timeless-theme .mwai-transition {
opacity: 0;
transition: opacity 350ms ease-in-out;
}
.mwai-timeless-theme.mwai-transition-visible, .mwai-timeless-theme .mwai-transition-visible {
opacity: 1;
}
.mwai-timeless-theme .mwai-text {
overflow-wrap: anywhere;
}
.mwai-timeless-theme .mwai-text img {
max-width: 100%;
}
.mwai-timeless-theme .mwai-text div p:first-child {
margin-top: 0;
}
.mwai-timeless-theme .mwai-text div p:last-child {
margin-bottom: 0;
}
.mwai-timeless-theme .mwai-trigger {
position: absolute;
right: 0;
bottom: 0;
transition: all 0.2s ease-out;
z-index: 9999;
display: flex;
flex-direction: column;
align-items: end;
}
.mwai-timeless-theme .mwai-trigger .mwai-icon-text-container {
display: flex;
flex-direction: column;
align-items: flex-end;
}
.mwai-timeless-theme .mwai-trigger .mwai-icon-text-container .mwai-icon-text {
background: var(--mwai-iconTextBackgroundColor);
color: var(--mwai-iconTextColor);
box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.15);
max-width: 200px;
font-size: 13px;
margin-bottom: 15px;
padding: 10px 15px;
border-radius: 8px;
}
.mwai-timeless-theme .mwai-trigger .mwai-icon-text-container .mwai-icon-text-close {
color: var(--mwai-iconTextColor);
background: var(--mwai-iconTextBackgroundColor);
padding: 5px;
width: 30px;
height: 20px;
border-radius: 100%;
display: none;
justify-content: center;
align-items: center;
margin-bottom: 3px;
}
.mwai-timeless-theme .mwai-trigger .mwai-icon-text-container:hover {
cursor: pointer;
}
.mwai-timeless-theme .mwai-trigger .mwai-icon-text-container:hover .mwai-icon-text-close {
display: flex;
font-size: 12px;
}
.mwai-timeless-theme .mwai-trigger .mwai-icon-text-container:hover .mwai-icon-text-close:hover {
filter: brightness(1.2);
}
@media (max-width: 760px) {
.mwai-timeless-theme .mwai-trigger .mwai-icon-text-container .mwai-icon-text-close {
display: flex;
}
}
.mwai-timeless-theme .mwai-trigger .mwai-icon-container .mwai-icon {
filter: drop-shadow(0px 0px 15px rgba(0, 0, 0, 0.15));
transition: all 0.2s ease-out;
}
.mwai-timeless-theme .mwai-trigger .mwai-icon-container .mwai-icon:hover {
cursor: pointer;
transform: scale(1.05);
}
.mwai-timeless-theme.mwai-window {
position: fixed;
right: 30px;
bottom: 30px;
width: var(--mwai-width);
z-index: 9999;
}
.mwai-timeless-theme.mwai-window .mwai-header {
display: none;
justify-content: flex-end;
align-items: center;
border-radius: var(--mwai-borderRadius) var(--mwai-borderRadius) 0 0;
background: var(--mwai-backgroundHeaderColor);
}
.mwai-timeless-theme.mwai-window .mwai-header .mwai-buttons {
display: flex;
align-items: center;
}
.mwai-timeless-theme.mwai-window .mwai-header .mwai-buttons .mwai-resize-button {
justify-content: center;
height: 32px;
width: 22px;
cursor: pointer;
display: flex;
justify-content: center;
align-items: center;
}
.mwai-timeless-theme.mwai-window .mwai-header .mwai-buttons .mwai-resize-button:before {
transition: all 0.2s ease-out;
content: " ";
cursor: pointer;
position: absolute;
height: 13px;
width: 13px;
border: 1px solid var(--mwai-headerButtonsColor);
}
.mwai-timeless-theme.mwai-window .mwai-header .mwai-buttons .mwai-resize-button:hover:before {
width: 16px;
height: 16px;
}
.mwai-timeless-theme.mwai-window .mwai-header .mwai-buttons .mwai-close-button {
justify-content: center;
height: 32px;
width: 33px;
cursor: pointer;
border-radius: var(--mwai-borderRadius);
}
.mwai-timeless-theme.mwai-window .mwai-header .mwai-buttons .mwai-close-button:before {
transition: all 0.2s ease-out;
transform: translate(16px, 5px) rotate(45deg);
}
.mwai-timeless-theme.mwai-window .mwai-header .mwai-buttons .mwai-close-button:after {
transition: all 0.2s ease-out;
transform: translate(16px, 5px) rotate(-45deg);
}
.mwai-timeless-theme.mwai-window .mwai-header .mwai-buttons .mwai-close-button:before, .mwai-timeless-theme.mwai-window .mwai-header .mwai-buttons .mwai-close-button:after {
content: " ";
cursor: pointer;
position: absolute;
height: 22px;
width: 1px;
background-color: var(--mwai-headerButtonsColor);
}
.mwai-timeless-theme.mwai-window .mwai-header .mwai-buttons .mwai-close-button:hover:before {
opacity: 1;
transform: translate(16px, 5px) rotate(135deg);
}
.mwai-timeless-theme.mwai-window .mwai-header .mwai-buttons .mwai-close-button:hover:after {
opacity: 1;
transform: translate(16px, 5px) rotate(45deg);
}
.mwai-timeless-theme.mwai-window .mwai-body {
display: none;
opacity: 0;
max-height: var(--mwai-maxHeight);
border-radius: 0 0 var(--mwai-borderRadius) var(--mwai-borderRadius);
}
.mwai-timeless-theme.mwai-window.mwai-bottom-left {
bottom: 30px;
right: inherit;
left: 30px;
}
.mwai-timeless-theme.mwai-window.mwai-bottom-left .mwai-trigger {
right: inherit;
left: 0;
}
.mwai-timeless-theme.mwai-window.mwai-top-right {
top: 30px;
bottom: inherit;
right: 30px;
}
.mwai-timeless-theme.mwai-window.mwai-top-right .mwai-trigger {
top: 0;
bottom: inherit;
}
.mwai-timeless-theme.mwai-window.mwai-top-left {
top: 30px;
bottom: inherit;
right: inherit;
left: 30px;
}
.mwai-timeless-theme.mwai-window.mwai-top-left .mwai-trigger {
top: 0;
bottom: inherit;
right: inherit;
left: 0;
}
.mwai-timeless-theme.mwai-window.mwai-top-left .mwai-trigger, .mwai-timeless-theme.mwai-window.mwai-bottom-left .mwai-trigger {
align-items: flex-start;
}
.mwai-timeless-theme.mwai-window.mwai-top-right .mwai-trigger, .mwai-timeless-theme.mwai-window.mwai-top-left .mwai-trigger {
flex-direction: column-reverse;
}
.mwai-timeless-theme.mwai-window.mwai-top-right .mwai-trigger .mwai-icon-text, .mwai-timeless-theme.mwai-window.mwai-top-left .mwai-trigger .mwai-icon-text {
margin-bottom: 0;
margin-top: 15px;
}
.mwai-timeless-theme.mwai-window.mwai-fullscreen .mwai-header .mwai-buttons {
margin-bottom: 0px;
}
.mwai-timeless-theme.mwai-window.mwai-fullscreen .mwai-header .mwai-buttons .mwai-resize-button:before {
width: 16px;
height: 16px;
}
.mwai-timeless-theme.mwai-window.mwai-fullscreen .mwai-header .mwai-buttons .mwai-resize-button:hover:before {
width: 13px;
height: 13px;
}
.mwai-timeless-theme.mwai-fullscreen:not(.mwai-window), .mwai-timeless-theme.mwai-fullscreen.mwai-window.mwai-open {
position: fixed;
left: 0 !important;
right: 0 !important;
bottom: 0 !important;
top: 0 !important;
width: 100%;
height: 100%;
max-height: 100%;
max-width: 100%;
display: flex;
flex-direction: column;
margin: 0;
z-index: 999999;
background-color: var(--mwai-backgroundSecondaryColor);
}
.mwai-timeless-theme.mwai-fullscreen:not(.mwai-window) .mwai-header, .mwai-timeless-theme.mwai-fullscreen.mwai-window.mwai-open .mwai-header {
border-radius: 0;
}
.mwai-timeless-theme.mwai-fullscreen:not(.mwai-window) .mwai-body, .mwai-timeless-theme.mwai-fullscreen.mwai-window.mwai-open .mwai-body {
height: 100%;
max-height: inherit;
border-radius: 0;
}
.mwai-timeless-theme.mwai-fullscreen:not(.mwai-window) .mwai-body .mwai-conversation, .mwai-timeless-theme.mwai-fullscreen.mwai-window.mwai-open .mwai-body .mwai-conversation {
flex: auto;
max-height: none;
}
.mwai-timeless-theme.mwai-window.mwai-open .mwai-header {
display: flex;
}
.mwai-timeless-theme.mwai-window.mwai-open .mwai-body {
display: flex;
transition: opacity 200ms ease-in-out 0s;
opacity: 1;
}
.mwai-timeless-theme.mwai-window.mwai-open .mwai-trigger {
display: none;
}
.mwai-timeless-theme .mwai-error {
margin: var(--mwai-spacing);
color: white;
background: rgba(180, 55, 55, 0.55);
padding: var(--mwai-spacing);
border-radius: var(--mwai-borderRadius);
}
.mwai-timeless-theme .mwai-error:hover {
cursor: pointer;
background: rgba(180, 44, 44, 0.85);
}
.mwai-timeless-theme.mwai-bubble .mwai-icon-container {
background: var(--mwai-bubbleColor);
width: 60px;
height: 60px;
border-radius: 100%;
transition: all 0.2s ease-out;
display: flex;
justify-content: center;
align-items: center;
}
.mwai-timeless-theme.mwai-bubble .mwai-icon-container .mwai-icon {
max-width: 50%;
max-height: 50%;
filter: none;
}
.mwai-timeless-theme.mwai-bubble .mwai-icon-container .mwai-icon:hover {
transform: none;
}
.mwai-timeless-theme.mwai-bubble .mwai-icon-container .mwai-emoji {
font-size: 30px !important;
}
.mwai-timeless-theme.mwai-bubble .mwai-icon-container:hover {
cursor: pointer;
filter: brightness(1.1);
}
@media (max-width: 760px) {
.mwai-timeless-theme.mwai-window.mwai-open {
position: fixed;
left: 0 !important;
right: 0 !important;
bottom: 0 !important;
top: 0 !important;
width: 100%;
height: 100%;
max-height: 100%;
max-width: 100%;
display: flex;
flex-direction: column;
margin: 0;
z-index: 999999;
background-color: var(--mwai-backgroundSecondaryColor);
}
.mwai-timeless-theme.mwai-window.mwai-open .mwai-header {
border-radius: 0;
}
.mwai-timeless-theme.mwai-window.mwai-open .mwai-body {
height: 100%;
max-height: inherit;
border-radius: 0;
}
.mwai-timeless-theme.mwai-window.mwai-open .mwai-body .mwai-conversation {
flex: auto;
max-height: none;
}
.mwai-timeless-theme.mwai-window.mwai-open .mwai-input {
flex-direction: column;
}
.mwai-timeless-theme.mwai-window.mwai-open .mwai-input button {
font-size: 16px;
margin-left: 0;
width: 100%;
}
.mwai-timeless-theme.mwai-window.mwai-open .mwai-input .mwai-input-text {
width: 100%;
}
.mwai-timeless-theme.mwai-window.mwai-open .mwai-input .mwai-input-text input, .mwai-timeless-theme.mwai-window.mwai-open .mwai-input .mwai-input-text textarea {
font-size: 16px;
}
.mwai-timeless-theme.mwai-window.mwai-open .mwai-body {
display: flex;
transition: opacity 200ms ease-in-out 0s;
opacity: 1;
height: 100%;
max-height: inherit;
}
.mwai-timeless-theme.mwai-window.mwai-open .mwai-body .mwai-conversation {
flex: auto;
max-height: none;
}
.mwai-timeless-theme.mwai-window.mwai-open .mwai-resize-button {
display: none !important;
}
.mwai-timeless-theme.mwai-window.mwai-open .mwai-trigger {
display: none;
}
}
@keyframes mwai-button-spinner {
from {
transform: rotate(0turn);
}
to {
transform: rotate(1turn);
}
}
.mwai-timeless-theme button:not(.mwai-busy):before {
content: none !important;
display: none !important;
animation: none !important;
}
.mwai-timeless-theme .admin-bar .mwai-fullscreen:not(.mwai-window),
.mwai-timeless-theme .admin-bar .mwai-fullscreen.mwai-window.mwai-open {
top: 32px;
}
.mwai-timeless-theme pre code.hljs {
display: block;
overflow-x: auto;
padding: 1em;
}
.mwai-timeless-theme code.hljs {
padding: 3px 5px;
}
.mwai-timeless-theme .hljs {
color: #333;
background: #f0f0f0;
}
.mwai-timeless-theme .hljs-subst {
color: #333;
}
.mwai-timeless-theme .hljs-comment {
color: #888;
}
.mwai-timeless-theme .hljs-attr, .mwai-timeless-theme .hljs-doctag, .mwai-timeless-theme .hljs-keyword, .mwai-timeless-theme .hljs-meta .hljs-keyword, .mwai-timeless-theme .hljs-section, .mwai-timeless-theme .hljs-selector-tag {
color: #0077cc;
}
.mwai-timeless-theme .hljs-attribute {
color: #aa3377;
}
.mwai-timeless-theme .hljs-name, .mwai-timeless-theme .hljs-number, .mwai-timeless-theme .hljs-quote, .mwai-timeless-theme .hljs-selector-id, .mwai-timeless-theme .hljs-template-tag, .mwai-timeless-theme .hljs-type {
color: #c18401;
}
.mwai-timeless-theme .hljs-selector-class {
color: #0077cc;
}
.mwai-timeless-theme .hljs-link, .mwai-timeless-theme .hljs-regexp, .mwai-timeless-theme .hljs-selector-attr, .mwai-timeless-theme .hljs-string, .mwai-timeless-theme .hljs-symbol, .mwai-timeless-theme .hljs-template-variable, .mwai-timeless-theme .hljs-variable {
color: #689700;
}
.mwai-timeless-theme .hljs-meta, .mwai-timeless-theme .hljs-selector-pseudo {
color: #0077cc;
}
.mwai-timeless-theme .hljs-built_in, .mwai-timeless-theme .hljs-literal, .mwai-timeless-theme .hljs-title {
color: #c18401;
}
.mwai-timeless-theme .hljs-bullet, .mwai-timeless-theme .hljs-code {
color: #555;
}
.mwai-timeless-theme .hljs-meta .hljs-string {
color: #689700;
}
.mwai-timeless-theme .hljs-deletion {
color: #b71c1c;
}
.mwai-timeless-theme .hljs-addition {
color: #1b5e20;
}
.mwai-timeless-theme .hljs-emphasis {
font-style: italic;
}
.mwai-timeless-theme .hljs-strong {
font-weight: 700;
}
.mwai-timeless-theme .mwai-reply-actions {
position: absolute;
border-radius: 5px;
top: 10px;
right: 10px;
display: flex;
align-items: center;
padding: 2px 2px;
z-index: 100;
background: var(--mwai-backgroundPrimaryColor);
box-shadow: 0 0 8px rgba(0, 0, 0, 0.25);
z-index: 100;
}
.mwai-timeless-theme .mwai-reply-actions .mwai-copy-button {
fill: var(--mwai-fontColor);
padding: 3px 5px;
width: 24px;
height: 24px;
background: var(--mwai-backgroundPrimaryColor);
cursor: pointer;
border-radius: 5px;
}
.mwai-timeless-theme .mwai-reply-actions .mwai-copy-button:hover {
filter: brightness(1.2);
}
.mwai-timeless-theme .mwai-reply-actions.mwai-hidden {
opacity: 0;
}
.mwai-timeless-theme .mwai-realtime {
padding: var(--mwai-spacing);
}
.mwai-timeless-theme .mwai-realtime .mwai-visualizer {
display: flex;
justify-content: center;
align-items: center;
}
.mwai-timeless-theme .mwai-realtime .mwai-visualizer hr {
width: 100px;
margin-right: var(--mwai-spacing);
margin-left: var(--mwai-spacing);
border: 1px solid var(--mwai-backgroundPrimaryColor);
}
.mwai-timeless-theme .mwai-realtime .mwai-visualizer .mwai-animation {
background: var(--mwai-backgroundPrimaryColor);
}
.mwai-timeless-theme .mwai-realtime .mwai-controls {
display: flex;
justify-content: center;
align-items: center;
margin-bottom: var(--mwai-spacing);
}
.mwai-timeless-theme .mwai-realtime .mwai-controls > * + * {
margin-left: 10px;
}
.mwai-timeless-theme .mwai-realtime .mwai-controls button {
border-radius: 100%;
width: 50px;
height: 50px;
margin: 5px;
padding: 5px;
display: flex;
align-items: center;
justify-content: center;
color: var(--mwai-fontColor);
border: 2px solid var(--mwai-backgroundPrimaryColor);
background: none;
cursor: pointer;
transition: all 0.2s ease-out;
min-width: inherit;
max-width: inherit;
}
.mwai-timeless-theme .mwai-realtime .mwai-controls button:hover:not(:disabled) {
background: var(--mwai-backgroundPrimaryColor);
}
.mwai-timeless-theme .mwai-realtime .mwai-controls button:disabled {
opacity: 0.5;
cursor: not-allowed;
background: none;
}
.mwai-timeless-theme .mwai-realtime .mwai-controls button.mwai-active {
border: 2px solid var(--mwai-fontColor);
}
.mwai-timeless-theme .mwai-realtime .mwai-last-transcript {
margin: var(--mwai-spacing);
margin-top: 0;
border: 2px solid var(--mwai-backgroundPrimaryColor);
padding: calc(var(--mwai-spacing) / 2);
border-radius: var(--mwai-borderRadius);
display: flex;
justify-content: center;
font-size: 80%;
}
.mwai-timeless-theme .mwai-realtime .mwai-statistics {
display: grid;
grid-template-columns: 1fr 1fr 1fr;
grid-row-gap: 10px;
font-size: 14px;
}
.mwai-timeless-theme .mwai-realtime .mwai-statistics div {
display: flex;
flex-direction: column;
align-items: center;
}
.mwai-timeless-theme .mwai-realtime .mwai-statistics label {
font-size: 11px;
opacity: 0.5;
text-transform: uppercase;
}
.mwai-timeless-theme .mwai-realtime .mwai-options {
margin-top: var(--mwai-spacing);
display: flex;
align-items: center;
}
.mwai-timeless-theme .mwai-realtime .mwai-options .mwai-option {
cursor: pointer;
opacity: 0.5;
margin-right: 2px;
}
.mwai-timeless-theme .mwai-realtime .mwai-options .mwai-option.mwai-active {
opacity: 1;
}
.mwai-timeless-theme.mwai-discussions {
border-radius: var(--mwai-borderRadius);
background: var(--mwai-backgroundHeaderColor);
overflow: hidden;
}
.mwai-timeless-theme.mwai-discussions * {
box-sizing: border-box;
}
.mwai-timeless-theme.mwai-discussions .mwai-discussion {
display: flex;
position: relative;
padding-left: calc(var(--mwai-spacing) / 2);
padding-right: calc(var(--mwai-spacing) / 2);
padding-bottom: calc(var(--mwai-spacing) / 2);
color: var(--mwai-conversationsTextColor);
opacity: 0.65;
align-items: center;
}
.mwai-timeless-theme.mwai-discussions .mwai-discussion .mwai-discussion-title {
flex: 1;
padding: 5px;
}
.mwai-timeless-theme.mwai-discussions .mwai-discussion .mwai-discussion-actions {
position: absolute;
top: 50%;
right: calc(var(--mwai-spacing) / 2);
transform: translateY(-50%);
opacity: 0;
transition: opacity 0.2s ease-out;
z-index: 100;
}
.mwai-timeless-theme.mwai-discussions .mwai-discussion .mwai-discussion-actions .mwai-menu-icon {
width: 28px;
height: 28px;
display: flex;
align-items: center;
justify-content: center;
cursor: pointer;
color: var(--mwai-conversationsTextColor);
}
.mwai-timeless-theme.mwai-discussions .mwai-discussion.mwai-active {
cursor: pointer;
}
.mwai-timeless-theme.mwai-discussions .mwai-discussion.mwai-active .mwai-discussion-title {
background: var(--mwai-backgroundPrimaryColor);
border-radius: var(--mwai-borderRadius);
opacity: 1;
}
.mwai-timeless-theme.mwai-discussions .mwai-discussion:hover {
cursor: pointer;
}
.mwai-timeless-theme.mwai-discussions .mwai-discussion:hover .mwai-discussion-title {
background: var(--mwai-backgroundPrimaryColor);
border-radius: var(--mwai-borderRadius);
opacity: 1;
}
.mwai-timeless-theme.mwai-discussions .mwai-discussion:hover .mwai-discussion-actions {
opacity: 1;
}
.mwai-timeless-theme.mwai-discussions .mwai-discussion:has(.mwai-context-menu) .mwai-discussion-actions {
opacity: 1;
}
.mwai-timeless-theme.mwai-discussions .mwai-discussion:first-child {
margin-top: calc(var(--mwai-spacing) / 2);
}
.mwai-timeless-theme.mwai-discussions .mwai-header {
color: var(--mwai-headerButtonsColor);
padding: var(--mwai-spacing);
display: flex;
justify-content: space-between;
align-items: center;
gap: 10px;
}
.mwai-timeless-theme.mwai-discussions .mwai-header button {
background: var(--mwai-backgroundPrimaryColor);
color: var(--mwai-fontColor);
border: none;
padding: 8px 16px;
border-radius: var(--mwai-borderRadius);
cursor: pointer;
transition: all 0.2s ease-out;
}
.mwai-timeless-theme.mwai-discussions .mwai-header button:hover:not(:disabled) {
background: var(--mwai-iconTextBackgroundColor);
}
.mwai-timeless-theme.mwai-discussions .mwai-header button:disabled {
opacity: 0.5;
cursor: not-allowed;
}
.mwai-timeless-theme.mwai-discussions .mwai-header .mwai-refresh-btn {
padding: 8px;
display: flex;
align-items: center;
justify-content: center;
}
.mwai-timeless-theme.mwai-discussions .mwai-body {
background: var(--mwai-conversationsBackgroundColor);
list-style: none;
padding: 0;
margin: 0;
position: relative;
min-height: 200px;
display: flex;
flex-direction: column;
border-radius: 0;
z-index: 1;
}
.mwai-timeless-theme.mwai-discussions .mwai-loading-overlay {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: var(--mwai-conversationsBackgroundColor);
opacity: 0.9;
display: flex;
align-items: center;
justify-content: center;
z-index: 10;
}
.mwai-timeless-theme.mwai-discussions .mwai-spinner {
animation: spin 1s linear infinite;
color: var(--mwai-fontColor);
}
@keyframes spin {
from {
transform: rotate(0deg);
}
to {
transform: rotate(360deg);
}
}
.mwai-timeless-theme.mwai-discussions .mwai-pagination {
background: var(--mwai-backgroundHeaderColor);
padding: var(--mwai-spacing);
display: flex;
justify-content: space-between;
align-items: center;
border-top: 1px solid var(--mwai-backgroundPrimaryColor);
}
.mwai-timeless-theme.mwai-discussions .mwai-pagination button {
background: var(--mwai-backgroundPrimaryColor);
color: var(--mwai-fontColor);
border: none;
padding: 8px 12px;
border-radius: var(--mwai-borderRadius);
cursor: pointer;
transition: all 0.2s ease-out;
display: flex;
align-items: center;
justify-content: center;
}
.mwai-timeless-theme.mwai-discussions .mwai-pagination button:hover:not(:disabled) {
background: var(--mwai-iconTextBackgroundColor);
}
.mwai-timeless-theme.mwai-discussions .mwai-pagination button:disabled {
opacity: 0.3;
cursor: not-allowed;
}
.mwai-timeless-theme.mwai-discussions .mwai-pagination span {
color: var(--mwai-headerButtonsColor);
font-size: var(--mwai-fontSize);
font-weight: 500;
}
.mwai-timeless-theme.mwai-discussions .mwai-pagination .mwai-page-indicator {
color: var(--mwai-headerButtonsColor);
font-size: calc(var(--mwai-fontSize) * 0.85);
font-weight: 400;
opacity: 0.8;
}
.mwai-timeless-theme .mwai-realtime .mwai-visualizer hr {
border: 1px solid var(--mwai-backgroundAiSecondaryColor);
}
.mwai-timeless-theme .mwai-realtime .mwai-visualizer .mwai-animation {
background: var(--mwai-backgroundAiSecondaryColor);
}
.mwai-timeless-theme .mwai-realtime .mwai-controls button {
color: var(--mwai-backgroundPrimaryColor);
background: var(--mwai-backgroundUserColor);
}
.mwai-timeless-theme .mwai-realtime .mwai-controls button:hover {
color: var(--mwai-backgroundPrimaryColor) !important;
background: var(--mwai-backgroundUserColor) !important;
opacity: 0.8;
}
.mwai-timeless-theme .mwai-realtime .mwai-controls button[disabled] {
color: var(--mwai-backgroundPrimaryColor) !important;
background: var(--mwai-backgroundUserColor) !important;
opacity: 0.5;
}
.mwai-timeless-theme .mwai-reply-actions {
top: 5px;
}
.mwai-timeless-theme .mwai-reply-actions .mwai-copy-button {
padding-top: 4px;
}
.mwai-timeless-theme .mwai-reply-actions .mwai-copy-button:hover {
fill: var(--mwai-backgroundPrimaryColor);
background: var(--mwai-backgroundUserColor);
}
@media (max-width: 760px) {
.mwai-timeless-theme.mwai-window {
width: calc(100% - 40px);
z-index: 9999999999;
}
.mwai-timeless-theme.mwai-window.mwai-open .mwai-body {
height: calc(100vh - var(--mwai-headerHeight));
}
.mwai-timeless-theme .mwai-input {
flex-direction: column;
}
.mwai-timeless-theme .mwai-input .mwai-input-text {
width: 100%;
margin-bottom: 10px;
}
.mwai-timeless-theme .mwai-input .mwai-input-submit {
width: 100%;
border-radius: var(--mwai-borderRadius);
margin-left: 0;
height: 24px;
min-height: 36px;
}
.mwai-timeless-theme .mwai-input .mwai-input-submit img {
width: 16px;
height: 16px;
}
}
:root{--layout-header-height:73px;--color-primary:#993dbb;--color-primary-light:#FDF9FF;--color-base-invert:#000000;--color-base-light:#303030;--color-base:#ffffff;--color-base-light-muted:#F5ECF8;--color-base-light-muted-half:#F5ECF880;--color-muted:#D0D0D0;--color-muted-dark:#777;--color-danger:#BB3D3D;--site-width-large:80.125rem;--site-width-medium:60rem;--site-width-small:48rem;--site-width-mobile:40rem;--grid-gap:calc(1.75rem - 1px);--grid-gap-old:1.875rem;--spacing-extra-smaller:0.875rem;--spacing-extra-small:1rem;--spacing-smaller:1.125rem;--spacing-small-medium:1.25rem;--spacing-small:1.875rem;--spacing-default:2.5rem;--spacing-medium:2.875rem;--spacing-large:3.75rem;--spacing-custom-large:4.375rem;--spacing-custom:var(--grid-gap);--spacing-custom-grid:var(--grid-gap);--section-spacing-small:var(--spacing-small);--section-spacing-default:var(--spacing-default);--section-spacing-large:var(--spacing-large);--section-spacing-custom-large:var(--spacing-custom-large);--section-spacing-larger:calc(var(--spacing-default) * 2);--section-spacing-extra-large:calc(var(--spacing-large) * 2);--font-primary-new:"Nunito",sans-serif;--font-secondary-new:"DM Sans",sans-serif;--font-custom-default:"Avenir Default",sans-serif;--font-custom-medium:"Avenir Medium",sans-serif;--font-custom-bold:"Avenir Bold",sans-serif;--font-gotcha:"Gotcha Regular",sans-serif;--font-size-h1:3rem;--font-size-h2:2rem;--font-size-h3:1.625rem;--font-size-h4:1.5rem;--font-size-h5:1.25rem;--font-size-h6:1rem;--font-size-large-custom:2.625rem;--font-size-custom:1.375rem;--font-size-small:1.125rem;--font-size-extra-small:0.875rem;--font-size-h2-line-height:1.25;--font-size-h4-line-height:1.25;--shadow-primary:0 4px 10px 0 rgb(0 0 0 / 10%);--shadow-secondary:0 8px 10px 2px rgb(0 0 0 / 10%);--shadow-custom:0px 3px 10px rgba(0, 0, 0, 0.05)}@media (max-width:62rem){:root{--spacing-default:1.875rem;--spacing-large:2.5rem;--spacing-custom-large:1.875rem;--section-spacing-large:1.875rem;--section-spacing-larger:var(--spacing-default);--section-spacing-extra-large:var(--spacing-large)}}@media (max-width:42rem){:root{--grid-gap:1.5rem;--grid-gap-old:0;--spacing-medium:1.5rem}}@media (max-width:62rem){:root{--font-size-h1:2.5rem;--font-size-large-custom:2.125rem}}@media (max-width:42rem){:root{--font-size-h1:1.75rem;--font-size-h2:1.5rem;--font-size-h3:1.25rem;--font-size-h5:1rem;--font-size-h4:1.125rem;--font-size-large-custom:1.375rem;--font-size-custom:1.125rem;--font-size-small:1rem}}@font-face{font-family:"DM Sans";src:url(//staging.smartmeetings.com/wp-content/themes/smartmeetings/assets/dist/fonts/DMSans/DMSans-Bold.eot);src:url(//staging.smartmeetings.com/wp-content/themes/smartmeetings/assets/dist/fonts/DMSans/DMSans-Bold.woff2) format("woff2"),url(//staging.smartmeetings.com/wp-content/themes/smartmeetings/assets/dist/fonts/DMSans/DMSans-Bold.woff) format("woff"),url(//staging.smartmeetings.com/wp-content/themes/smartmeetings/assets/dist/fonts/DMSans/DMSans-Bold.eot?#iefix) format("embedded-opentype"),url(//staging.smartmeetings.com/wp-content/themes/smartmeetings/assets/dist/fonts/DMSans/DMSans-Bold.ttf) format("truetype");font-weight:700;font-style:normal}@font-face{font-family:"DM Sans";src:url(//staging.smartmeetings.com/wp-content/themes/smartmeetings/assets/dist/fonts/DMSans/DMSans-Medium.eot);src:url(//staging.smartmeetings.com/wp-content/themes/smartmeetings/assets/dist/fonts/DMSans/DMSans-Medium.woff2) format("woff2"),url(//staging.smartmeetings.com/wp-content/themes/smartmeetings/assets/dist/fonts/DMSans/DMSans-Medium.woff) format("woff"),url(//staging.smartmeetings.com/wp-content/themes/smartmeetings/assets/dist/fonts/DMSans/DMSans-Medium.eot?#iefix) format("embedded-opentype"),url(//staging.smartmeetings.com/wp-content/themes/smartmeetings/assets/dist/fonts/DMSans/DMSans-Medium.ttf) format("truetype");font-weight:500;font-style:normal}@font-face{font-family:"DM Sans";src:url(//staging.smartmeetings.com/wp-content/themes/smartmeetings/assets/dist/fonts/DMSans/DMSans-Regular.eot);src:url(//staging.smartmeetings.com/wp-content/themes/smartmeetings/assets/dist/fonts/DMSans/DMSans-Regular.woff2) format("woff2"),url(//staging.smartmeetings.com/wp-content/themes/smartmeetings/assets/dist/fonts/DMSans/DMSans-Regular.woff) format("woff"),url(//staging.smartmeetings.com/wp-content/themes/smartmeetings/assets/dist/fonts/DMSans/DMSans-Regular.eot?#iefix) format("embedded-opentype"),url(//staging.smartmeetings.com/wp-content/themes/smartmeetings/assets/dist/fonts/DMSans/DMSans-Regular.ttf) format("truetype");font-weight:400;font-style:normal}@font-face{font-family:Nunito;src:url(//staging.smartmeetings.com/wp-content/themes/smartmeetings/assets/dist/fonts/Nunito/Nunito-ExtraBold.eot);src:url(//staging.smartmeetings.com/wp-content/themes/smartmeetings/assets/dist/fonts/Nunito/Nunito-ExtraBold.woff2) format("woff2"),url(//staging.smartmeetings.com/wp-content/themes/smartmeetings/assets/dist/fonts/Nunito/Nunito-ExtraBold.woff) format("woff"),url(//staging.smartmeetings.com/wp-content/themes/smartmeetings/assets/dist/fonts/Nunito/Nunito-ExtraBold.eot?#iefix) format("embedded-opentype"),url(//staging.smartmeetings.com/wp-content/themes/smartmeetings/assets/dist/fonts/Nunito/Nunito-ExtraBold.ttf) format("truetype");font-weight:800;font-style:normal}@font-face{font-family:Nunito;src:url(//staging.smartmeetings.com/wp-content/themes/smartmeetings/assets/dist/fonts/Nunito/Nunito-Bold.eot);src:url(//staging.smartmeetings.com/wp-content/themes/smartmeetings/assets/dist/fonts/Nunito/Nunito-Bold.woff2) format("woff2"),url(//staging.smartmeetings.com/wp-content/themes/smartmeetings/assets/dist/fonts/Nunito/Nunito-Bold.woff) format("woff"),url(//staging.smartmeetings.com/wp-content/themes/smartmeetings/assets/dist/fonts/Nunito/Nunito-Bold.eot?#iefix) format("embedded-opentype"),url(//staging.smartmeetings.com/wp-content/themes/smartmeetings/assets/dist/fonts/Nunito/Nunito-Bold.ttf) format("truetype");font-weight:700;font-style:normal}@font-face{font-family:Nunito;src:url(//staging.smartmeetings.com/wp-content/themes/smartmeetings/assets/dist/fonts/Nunito/Nunito-SemiBold.eot);src:url(//staging.smartmeetings.com/wp-content/themes/smartmeetings/assets/dist/fonts/Nunito/Nunito-SemiBold.woff2) format("woff2"),url(//staging.smartmeetings.com/wp-content/themes/smartmeetings/assets/dist/fonts/Nunito/Nunito-SemiBold.woff) format("woff"),url(//staging.smartmeetings.com/wp-content/themes/smartmeetings/assets/dist/fonts/Nunito/Nunito-SemiBold.eot?#iefix) format("embedded-opentype"),url(//staging.smartmeetings.com/wp-content/themes/smartmeetings/assets/dist/fonts/Nunito/Nunito-SemiBold.ttf) format("truetype");font-weight:600;font-style:normal}@font-face{font-family:Nunito;src:url(//staging.smartmeetings.com/wp-content/themes/smartmeetings/assets/dist/fonts/Nunito/Nunito-Medium.eot);src:url(//staging.smartmeetings.com/wp-content/themes/smartmeetings/assets/dist/fonts/Nunito/Nunito-Medium.woff2) format("woff2"),url(//staging.smartmeetings.com/wp-content/themes/smartmeetings/assets/dist/fonts/Nunito/Nunito-Medium.woff) format("woff"),url(//staging.smartmeetings.com/wp-content/themes/smartmeetings/assets/dist/fonts/Nunito/Nunito-Medium.eot?#iefix) format("embedded-opentype"),url(//staging.smartmeetings.com/wp-content/themes/smartmeetings/assets/dist/fonts/Nunito/Nunito-Medium.ttf) format("truetype");font-weight:500;font-style:normal}@font-face{font-family:Nunito;src:url(//staging.smartmeetings.com/wp-content/themes/smartmeetings/assets/dist/fonts/Nunito/Nunito-Regular.eot);src:url(//staging.smartmeetings.com/wp-content/themes/smartmeetings/assets/dist/fonts/Nunito/Nunito-Regular.woff2) format("woff2"),url(//staging.smartmeetings.com/wp-content/themes/smartmeetings/assets/dist/fonts/Nunito/Nunito-Regular.woff) format("woff"),url(//staging.smartmeetings.com/wp-content/themes/smartmeetings/assets/dist/fonts/Nunito/Nunito-Regular.eot?#iefix) format("embedded-opentype"),url(//staging.smartmeetings.com/wp-content/themes/smartmeetings/assets/dist/fonts/Nunito/Nunito-Regular.ttf) format("truetype");font-weight:400;font-style:normal}meta.foundation-data-attribute-namespace{font-family:false}button,input,select,textarea{color:#404040;font-family:"Fira Sans",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;font-size:16px;font-size:1rem;line-height:1.5}h1,h2,h3,h4,h5,h6{clear:both}cite,dfn,em,i{font-style:italic}blockquote{margin:0 1.5em}address{margin:0 0 1.5em}pre{background:#eee;font-family:"Courier 10 Pitch",Courier,monospace;font-size:15px;font-size:.9375rem;line-height:1.6;margin-bottom:1.6em;max-width:100%;overflow:auto;padding:1.6em}code,kbd,tt,var{font-family:Monaco,Consolas,"Andale Mono","DejaVu Sans Mono",monospace;font-size:15px;font-size:.9375rem}abbr,acronym{border-bottom:1px dotted #666;cursor:help}ins,mark{background:#fff9c0;text-decoration:none}big{font-size:125%}dt{font-weight:700}dd{margin:0 1.5em 1.5em}table{margin:0 0 1.5em;width:100%}html{box-sizing:border-box;-webkit-font-smoothing:antialiased;scroll-behavior:smooth;scroll-padding-block-start:80px}*,:after,:before{box-sizing:inherit}::-moz-selection{background-color:#993dbb;color:#fff}::-moz-selection,::selection{background-color:#993dbb;color:#fff}body.admin-bar{padding-top:32px}@media (max-width:782px){body.admin-bar{padding-top:46px}}body{scroll-behavior:smooth;scroll-padding-block-start:80px;font-family:"Fira Sans",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;font-size:16px;line-height:1.5;background:#fff;color:#333;margin:0}@supports (-webkit-touch-callout:none){body{height:-webkit-fill-available}}p:first-child{margin-top:0}p:last-child{margin-bottom:0}a h3.heading-title{text-decoration:none;color:#333;-webkit-tap-highlight-color:transparent}a{text-decoration:none;color:#993dbb;-webkit-tap-highlight-color:transparent}h1,h2,h3,h4,h5{line-height:1.2;font-family:"Fira Sans",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;margin:0}h1{font-size:3.25em}h2{font-size:2.75em}h3{font-size:2.25em}h4{font-size:1.75em}h5{font-size:1.375em}h6{font-size:1.125em}blockquote{font-style:italic}hr{height:1px;border:none;width:100%;background:#f0f0f0}img.alignright{margin:20px 0 20px 20px}img.alignleft{margin:20px 20px 20px 0}img.aligncenter{margin:20px auto}img{max-width:100%;height:auto}.sticky{display:block}.bypostauthor{display:block}.alignleft{float:left;margin-right:1.5em}.alignright{float:right;margin-left:1.5em}.aligncenter{clear:both;display:block;margin-left:auto;margin-right:auto}.webinars-entry-meta{margin:.675em 0 .5em}.webinars-entry-title{font-size:1.375em;margin-bottom:2em}.webinars-entry-title a{color:#212121}.webinars-heading-title{margin:1em 0}.webinars-entry-aside a{display:block;position:relative;height:0;width:100%;padding-top:calc(100% * (231/401))}.webinars-entry-aside img{position:absolute;top:0;left:0;-o-object-fit:cover;object-fit:cover;display:block;width:100%;height:100%;border-radius:5px}ol,ul{margin:0;padding:0;list-style-type:none;font-size:var(--font-size-custom)}.entry-header-content ol,.entry-header-content ul{font-size:unset;padding:revert;margin:revert;list-style-type:unset}.section-events-flexible-tabs ol,.section-events-flexible-tabs ul{font-size:unset;padding:revert;margin:revert;list-style-type:unset}.section-heading-new ol,.section-heading-new ul{font-size:unset}.type-webinar ol,.type-webinar ul{font-size:unset}.screen-reader-text{clip:rect(1px,1px,1px,1px);position:absolute!important;height:1px;width:1px;overflow:hidden}.screen-reader-text:focus{background-color:#f1f1f1;border-radius:3px;box-shadow:0 0 2px 2px rgba(0,0,0,.6);clip:auto!important;color:#21759b;display:block;font-size:.875rem;font-weight:700;height:auto;left:5px;line-height:normal;padding:15px 23px 14px;text-decoration:none;top:5px;width:auto;z-index:100000}#content[tabindex="-1"]:focus{outline:0}.comment-content .wp-smiley,.entry-content .wp-smiley,.page-content .wp-smiley{border:none;margin-bottom:0;margin-top:0;padding:0}embed,iframe,object{max-width:100%}body:not(.single):not(.archive.category):not(.post-type-archive):not(.homepage):not(.page-template-magazine):not(.post-type-archive-magazine_issue):not(.post-type-archive-destination-posts):not(.single-destination_article):not(.events-template-events-flexible-2023):not(.post-type-archive-destination_article) .site{overflow:hidden}.wp-caption{margin-bottom:1.5em;max-width:100%}.wp-caption img[class*=wp-image-]{display:block;margin-left:auto;margin-right:auto}.wp-caption .wp-caption-text{margin:.8075em 0}.wp-caption-text{text-align:center}.gallery{margin-bottom:1.5em}.gallery-item{display:inline-block;text-align:center;vertical-align:top;width:100%}.gallery-columns-2 .gallery-item{max-width:50%}.gallery-columns-3 .gallery-item{max-width:33.33%}.gallery-columns-4 .gallery-item{max-width:25%}.gallery-columns-5 .gallery-item{max-width:20%}.gallery-columns-6 .gallery-item{max-width:16.66%}.gallery-columns-7 .gallery-item{max-width:14.28%}.gallery-columns-8 .gallery-item{max-width:12.5%}.gallery-columns-9 .gallery-item{max-width:11.11%}.gallery-caption{display:block}.center-ul{text-align:center}.center-ul>ul{display:inline-block}.float-right{float:right}.float-left{float:left}.flost-none,.no-float{float:none}.is-hidden{display:none}.cb{clear:both}hr.clear{border:none;background:0 0;clear:both}.text-right{text-align:right}.text-left{text-align:left}.text-center{text-align:center}.text-uppercase{text-transform:uppercase}.text-italic{font-style:italic}.text-white{color:#fff}.text-white h1,.text-white h2,.text-white h3,.text-white h4,.text-white h5,.text-white h6{color:#fff}.text-white a{color:#fff}.text-white a:hover{color:#fff}.truncate{max-width:100%;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.mt-0{margin-top:0!important}.mt-10{margin-top:10px}.mt-20{margin-top:20px}.mt-30{margin-top:30px}.mt-40{margin-top:40px}.mt-50{margin-top:50px}.mt-60{margin-top:60px}.mt-70{margin-top:70px}.mt-80{margin-top:80px}.mt-90{margin-top:90px}.mt-100{margin-top:100px}.mb-0{margin-bottom:0!important}.mb-10{margin-bottom:10px}.mb-20{margin-bottom:20px}.mb-30{margin-bottom:30px}.mb-40{margin-bottom:40px}.mb-50{margin-bottom:50px}.mb-60{margin-bottom:60px}.mb-70{margin-bottom:70px}.mb-80{margin-bottom:80px}.mb-90{margin-bottom:90px}.mb-100{margin-bottom:100px}.position-initial{position:initial}.background-primary-color{background-color:var(--color-primary)}.background-base-invert-color{background-color:var(--color-base-invert)}.background-primary-light{background-color:var(--color-primary-light)}.background-base-light-muted{background-color:var(--color-base-light-muted)}.color-primary{color:var(--color-primary)}.color-base-invert{color:var(--color-base-invert)}.color-base-light{color:var(--color-base-light)}.hidden-label{font-size:0;position:absolute}@media print{.entries-group-double,.entry-aside,.footer-social,.main-nav-toggle-label,.pronto-platform-1,.pronto-platform-2 .entries-group-double,.site-footer-menu,.site-footer-widgets .widget_nav_menu,.widget-area{display:none!important}.section-main .medium-8{max-width:100%;flex:1 1 100%}article.entry-single .entry-content{font-size:12pt}}.responsive-image{overflow:hidden;padding-bottom:56.25%;width:100%;height:0;display:block;position:relative;border-radius:5px;background:#f8f8f8}.responsive-image img{display:block;width:100%;height:100%;position:absolute;border-radius:5px;-o-object-fit:cover;object-fit:cover}.responsive-image.ratio-16-9{padding-bottom:56.25%}.responsive-image.ratio-16-10{padding-bottom:62.5%}.responsive-image.ratio-11-8{padding-bottom:72.72727%}.responsive-image.ratio-3-2{padding-bottom:66.66667%}.responsive-image.ratio-1-1{padding-bottom:100%}.responsive-image.ratio-golden{padding-bottom:61.8047%}.responsive-image.ratio-silver{padding-bottom:41.42502%}.responsive-image.radius-3{border-radius:3px}.responsive-image.radius-5{border-radius:5px}.responsive-image.radius-10{border-radius:10px}.responsive-image.radius-20{border-radius:20px}.responsive-image.radius-circle{border-radius:50%}.owl-carousel{display:none;width:100%;-webkit-tap-highlight-color:transparent;position:relative;z-index:1}.owl-carousel .owl-stage{position:relative;touch-action:manipulation;-moz-backface-visibility:hidden}.owl-carousel .owl-stage:after{content:".";display:block;clear:both;visibility:hidden;line-height:0;height:0}.owl-carousel .owl-stage-outer{position:relative;overflow:hidden;-webkit-transform:translate3d(0,0,0)}.owl-carousel .owl-item,.owl-carousel .owl-wrapper{-webkit-backface-visibility:hidden;-moz-backface-visibility:hidden;-ms-backface-visibility:hidden;-webkit-transform:translate3d(0,0,0);-moz-transform:translate3d(0,0,0);-ms-transform:translate3d(0,0,0)}.owl-carousel .owl-item{position:relative;min-height:1px;float:left;-webkit-backface-visibility:hidden;-webkit-tap-highlight-color:transparent;-webkit-touch-callout:none}.owl-carousel .owl-item:not(.active) .dxoc-video{visibility:hidden}.owl-carousel .owl-item img{display:block;width:100%}.owl-carousel .owl-dots.disabled,.owl-carousel .owl-nav.disabled{display:none}.owl-carousel .owl-dot,.owl-carousel .owl-nav .owl-next,.owl-carousel .owl-nav .owl-prev{cursor:hand;-webkit-user-select:none;-moz-user-select:none;user-select:none}.owl-carousel .owl-nav button.owl-next,.owl-carousel .owl-nav button.owl-prev,.owl-carousel button.owl-dot{background:0 0;color:inherit;border:none;font:inherit}.owl-carousel.owl-loaded{display:block}.owl-carousel.owl-loading{opacity:0;display:block}.owl-carousel.owl-hidden{opacity:0}.owl-carousel.owl-refresh .owl-item{visibility:hidden}.owl-carousel.owl-drag .owl-item{touch-action:none;-webkit-user-select:none;-moz-user-select:none;user-select:none}.owl-carousel.owl-grab{cursor:grab}.owl-carousel.owl-rtl{direction:rtl}.owl-carousel.owl-rtl .owl-item{float:right}.no-js .owl-carousel{display:block}.owl-carousel .animated{animation-duration:1s;animation-fill-mode:both}.owl-carousel .owl-animated-in{z-index:0}.owl-carousel .owl-animated-out{z-index:1}.owl-carousel .fadeOut{animation-name:fadeOut}@keyframes fadeOut{0%{opacity:1}100%{opacity:0}}.owl-height{transition:height .5s ease-in-out}.owl-carousel .owl-item .owl-lazy{opacity:0;transition:opacity .4s ease}.owl-carousel .owl-item img.owl-lazy{transform-style:preserve-3d}.owl-carousel .owl-video-wrapper{position:relative;height:100%;background:#000}.owl-carousel .owl-video-play-icon{position:absolute;height:80px;width:80px;left:50%;top:50%;margin-left:-40px;margin-top:-40px;background:url(//staging.smartmeetings.com/wp-content/themes/smartmeetings/assets/dist/css/owl.video.play.png) no-repeat;cursor:pointer;z-index:1;-webkit-backface-visibility:hidden;transition:transform .1s ease}.owl-carousel .owl-video-play-icon:hover{transform:scale(1.3,1.3)}.owl-carousel .owl-video-playing .owl-video-play-icon,.owl-carousel .owl-video-playing .owl-video-tn{display:none}.owl-carousel .owl-video-tn{opacity:0;height:100%;background-position:center center;background-repeat:no-repeat;background-size:contain;transition:opacity .4s ease}.owl-carousel .owl-video-frame{position:relative;z-index:1;height:100%;width:100%}.sm-logo-sprite{display:inline-block}.sm_sprite-360-destination-group{background-image:url(//staging.smartmeetings.com/wp-content/themes/smartmeetings/assets/dist/images/sprite1.png);background-position:0 0;width:129px;height:129px}.sm_sprite-3d-cheeze{background-image:url(//staging.smartmeetings.com/wp-content/themes/smartmeetings/assets/dist/images/sprite1.png);background-position:0 -129px;width:129px;height:129px}.sm_sprite-4th-avenue-media{background-image:url(//staging.smartmeetings.com/wp-content/themes/smartmeetings/assets/dist/images/sprite1.png);background-position:0 -258px;width:129px;height:129px}.sm_sprite-5-hour-energy{background-image:url(//staging.smartmeetings.com/wp-content/themes/smartmeetings/assets/dist/images/sprite1.png);background-position:0 -387px;width:129px;height:129px}.sm_sprite-5-star-talent-entertainment-group{background-image:url(//staging.smartmeetings.com/wp-content/themes/smartmeetings/assets/dist/images/sprite1.png);background-position:0 -516px;width:129px;height:129px}.sm_sprite-Access-pass-and-design{background-image:url(//staging.smartmeetings.com/wp-content/themes/smartmeetings/assets/dist/images/sprite1.png);background-position:0 -645px;width:129px;height:129px}.sm_sprite-Bob-Bondurant-School-of-High-Performance-Driving{background-image:url(//staging.smartmeetings.com/wp-content/themes/smartmeetings/assets/dist/images/sprite1.png);background-position:0 -774px;width:129px;height:129px}.sm_sprite-CCLD-Networks{background-image:url(//staging.smartmeetings.com/wp-content/themes/smartmeetings/assets/dist/images/sprite1.png);background-position:0 -903px;width:129px;height:129px}.sm_sprite-Choose-Chicago{background-image:url(//staging.smartmeetings.com/wp-content/themes/smartmeetings/assets/dist/images/sprite1.png);background-position:0 -1032px;width:129px;height:129px}.sm_sprite-DECO-productions{background-image:url(//staging.smartmeetings.com/wp-content/themes/smartmeetings/assets/dist/images/sprite1.png);background-position:0 -1161px;width:129px;height:129px}.sm_sprite-ILD-lighting{background-image:url(//staging.smartmeetings.com/wp-content/themes/smartmeetings/assets/dist/images/sprite1.png);background-position:0 -1290px;width:129px;height:129px}.sm_sprite-a-little-scene-flipbook{background-image:url(//staging.smartmeetings.com/wp-content/themes/smartmeetings/assets/dist/images/sprite1.png);background-position:0 -1419px;width:129px;height:129px}.sm_sprite-access-DMC{background-image:url(//staging.smartmeetings.com/wp-content/themes/smartmeetings/assets/dist/images/sprite1.png);background-position:0 -1548px;width:129px;height:129px}.sm_sprite-access-destination-services{background-image:url(//staging.smartmeetings.com/wp-content/themes/smartmeetings/assets/dist/images/sprite1.png);background-position:0 -1677px;width:129px;height:129px}.sm_sprite-action-flipbooks{background-image:url(//staging.smartmeetings.com/wp-content/themes/smartmeetings/assets/dist/images/sprite1.png);background-position:0 -1806px;width:129px;height:129px}.sm_sprite-afr-event-furnishings{background-image:url(//staging.smartmeetings.com/wp-content/themes/smartmeetings/assets/dist/images/sprite1.png);background-position:0 -1935px;width:129px;height:129px}.sm_sprite-airheads-oxygen-bars{background-image:url(//staging.smartmeetings.com/wp-content/themes/smartmeetings/assets/dist/images/sprite1.png);background-position:0 -2064px;width:129px;height:129px}.sm_sprite-alan-waxier-group{background-image:url(//staging.smartmeetings.com/wp-content/themes/smartmeetings/assets/dist/images/sprite1.png);background-position:0 -2193px;width:129px;height:129px}.sm_sprite-alberta-canada{background-image:url(//staging.smartmeetings.com/wp-content/themes/smartmeetings/assets/dist/images/sprite1.png);background-position:0 -2322px;width:129px;height:129px}.sm_sprite-albrecht-events-LLC{background-image:url(//staging.smartmeetings.com/wp-content/themes/smartmeetings/assets/dist/images/sprite1.png);background-position:0 -2451px;width:129px;height:129px}.sm_sprite-alexander-party-rentals{background-image:url(//staging.smartmeetings.com/wp-content/themes/smartmeetings/assets/dist/images/sprite1.png);background-position:0 -2580px;width:129px;height:129px}.sm_sprite-arizona-taste{background-image:url(//staging.smartmeetings.com/wp-content/themes/smartmeetings/assets/dist/images/sprite1.png);background-position:0 -2709px;width:129px;height:129px}.sm_sprite-artists-events-entertainment{background-image:url(//staging.smartmeetings.com/wp-content/themes/smartmeetings/assets/dist/images/sprite1.png);background-position:0 -2838px;width:129px;height:129px}.sm_sprite-associated-entertainment-consultants{background-image:url(//staging.smartmeetings.com/wp-content/themes/smartmeetings/assets/dist/images/sprite1.png);background-position:0 -2967px;width:129px;height:129px}.sm_sprite-associated-entertainment{background-image:url(//staging.smartmeetings.com/wp-content/themes/smartmeetings/assets/dist/images/sprite1.png);background-position:0 -3096px;width:129px;height:129px}.sm_sprite-atlantic-city-cva{background-image:url(//staging.smartmeetings.com/wp-content/themes/smartmeetings/assets/dist/images/sprite1.png);background-position:0 -3225px;width:129px;height:129px}.sm_sprite-avt-event-technologies{background-image:url(//staging.smartmeetings.com/wp-content/themes/smartmeetings/assets/dist/images/sprite1.png);background-position:0 -3354px;width:129px;height:129px}.sm_sprite-awards-by-allstar{background-image:url(//staging.smartmeetings.com/wp-content/themes/smartmeetings/assets/dist/images/sprite1.png);background-position:0 -3483px;width:129px;height:129px}.sm_sprite-beau-monde-luxury-villas{background-image:url(//staging.smartmeetings.com/wp-content/themes/smartmeetings/assets/dist/images/sprite1.png);background-position:0 -3612px;width:129px;height:129px}.sm_sprite-bella-signature-design{background-image:url(//staging.smartmeetings.com/wp-content/themes/smartmeetings/assets/dist/images/sprite1.png);background-position:0 -3741px;width:129px;height:129px}.sm_sprite-best-chauffered{background-image:url(//staging.smartmeetings.com/wp-content/themes/smartmeetings/assets/dist/images/sprite1.png);background-position:0 -3870px;width:129px;height:129px}.sm_sprite-bevents{background-image:url(//staging.smartmeetings.com/wp-content/themes/smartmeetings/assets/dist/images/sprite1.png);background-position:0 -3999px;width:129px;height:129px}.sm_sprite-blue-print-studios{background-image:url(//staging.smartmeetings.com/wp-content/themes/smartmeetings/assets/dist/images/sprite1.png);background-position:0 -4128px;width:129px;height:129px}.sm_sprite-blueprint-studios{background-image:url(//staging.smartmeetings.com/wp-content/themes/smartmeetings/assets/dist/images/sprite1.png);background-position:0 -4257px;width:129px;height:129px}.sm_sprite-bob-hoffman-video-and-photography{background-image:url(//staging.smartmeetings.com/wp-content/themes/smartmeetings/assets/dist/images/sprite1.png);background-position:0 -4386px;width:129px;height:129px}.sm_sprite-bol{background-image:url(//staging.smartmeetings.com/wp-content/themes/smartmeetings/assets/dist/images/sprite1.png);background-position:0 -4515px;width:129px;height:129px}.sm_sprite-bounce-music-and-entertainment{background-image:url(//staging.smartmeetings.com/wp-content/themes/smartmeetings/assets/dist/images/sprite1.png);background-position:0 -4644px;width:129px;height:129px}.sm_sprite-brandini-toffee{background-image:url(//staging.smartmeetings.com/wp-content/themes/smartmeetings/assets/dist/images/sprite1.png);background-position:0 -4773px;width:129px;height:129px}.sm_sprite-briggs{background-image:url(//staging.smartmeetings.com/wp-content/themes/smartmeetings/assets/dist/images/sprite1.png);background-position:0 -4902px;width:129px;height:129px}.sm_sprite-butler-rents{background-image:url(//staging.smartmeetings.com/wp-content/themes/smartmeetings/assets/dist/images/sprite1.png);background-position:0 -5031px;width:129px;height:129px}.sm_sprite-buzz-bags{background-image:url(//staging.smartmeetings.com/wp-content/themes/smartmeetings/assets/dist/images/sprite1.png);background-position:0 -5160px;width:129px;height:129px}.sm_sprite-cardiff-limousine-and-transportation{background-image:url(//staging.smartmeetings.com/wp-content/themes/smartmeetings/assets/dist/images/sprite1.png);background-position:0 -5289px;width:129px;height:129px}.sm_sprite-casino-del-sol-resort{background-image:url(//staging.smartmeetings.com/wp-content/themes/smartmeetings/assets/dist/images/sprite1.png);background-position:0 -5418px;width:129px;height:129px}.sm_sprite-caswell-massey{background-image:url(//staging.smartmeetings.com/wp-content/themes/smartmeetings/assets/dist/images/sprite1.png);background-position:0 -5547px;width:129px;height:129px}.sm_sprite-certain-software{background-image:url(//staging.smartmeetings.com/wp-content/themes/smartmeetings/assets/dist/images/sprite1.png);background-position:0 -5676px;width:129px;height:129px}.sm_sprite-character-for-hire{background-image:url(//staging.smartmeetings.com/wp-content/themes/smartmeetings/assets/dist/images/sprite1.png);background-position:0 -5805px;width:129px;height:129px}.sm_sprite-chicago-architecture-foundation{background-image:url(//staging.smartmeetings.com/wp-content/themes/smartmeetings/assets/dist/images/sprite1.png);background-position:0 -5934px;width:129px;height:129px}.sm_sprite-chicago-first-lady-cruises{background-image:url(//staging.smartmeetings.com/wp-content/themes/smartmeetings/assets/dist/images/sprite1.png);background-position:0 -6063px;width:129px;height:129px}.sm_sprite-chihuly-garden-and-glass{background-image:url(//staging.smartmeetings.com/wp-content/themes/smartmeetings/assets/dist/images/sprite1.png);background-position:0 -6192px;width:129px;height:129px}.sm_sprite-chris-hamilton-photography{background-image:url(//staging.smartmeetings.com/wp-content/themes/smartmeetings/assets/dist/images/sprite1.png);background-position:0 -6321px;width:129px;height:129px}.sm_sprite-christies-photographic-studios{background-image:url(//staging.smartmeetings.com/wp-content/themes/smartmeetings/assets/dist/images/sprite1.png);background-position:0 -6450px;width:129px;height:129px}.sm_sprite-city-lights-promotions{background-image:url(//staging.smartmeetings.com/wp-content/themes/smartmeetings/assets/dist/images/sprite1.png);background-position:0 -6579px;width:129px;height:129px}.sm_sprite-classic-party-rentals-chicago{background-image:url(//staging.smartmeetings.com/wp-content/themes/smartmeetings/assets/dist/images/sprite1.png);background-position:0 -6708px;width:129px;height:129px}.sm_sprite-clien{background-image:url(//staging.smartmeetings.com/wp-content/themes/smartmeetings/assets/dist/images/sprite1.png);background-position:0 -6837px;width:129px;height:129px}.sm_sprite-cloth-connection{background-image:url(//staging.smartmeetings.com/wp-content/themes/smartmeetings/assets/dist/images/sprite1.png);background-position:0 -6966px;width:129px;height:129px}.sm_sprite-coco-luxe-confections{background-image:url(//staging.smartmeetings.com/wp-content/themes/smartmeetings/assets/dist/images/sprite1.png);background-position:0 -7095px;width:129px;height:129px}.sm_sprite-conference-on-demand{background-image:url(//staging.smartmeetings.com/wp-content/themes/smartmeetings/assets/dist/images/sprite1.png);background-position:0 -7224px;width:129px;height:129px}.sm_sprite-cort-event-furnishings{background-image:url(//staging.smartmeetings.com/wp-content/themes/smartmeetings/assets/dist/images/sprite1.png);background-position:0 -7353px;width:129px;height:129px}.sm_sprite-crater-lake-vodka{background-image:url(//staging.smartmeetings.com/wp-content/themes/smartmeetings/assets/dist/images/sprite1.png);background-position:0 -7482px;width:129px;height:129px}.sm_sprite-creative-coverings{background-image:url(//staging.smartmeetings.com/wp-content/themes/smartmeetings/assets/dist/images/sprite1.png);background-position:0 -7611px;width:129px;height:129px}.sm_sprite-dana-wharf-sportfishing-whale-watching{background-image:url(//staging.smartmeetings.com/wp-content/themes/smartmeetings/assets/dist/images/sprite1.png);background-position:0 -7740px;width:129px;height:129px}.sm_sprite-danny-welsh{background-image:url(//staging.smartmeetings.com/wp-content/themes/smartmeetings/assets/dist/images/sprite1.png);background-position:0 -7869px;width:129px;height:129px}.sm_sprite-dash-and-a-handful-catering{background-image:url(//staging.smartmeetings.com/wp-content/themes/smartmeetings/assets/dist/images/sprite1.png);background-position:0 -7998px;width:129px;height:129px}.sm_sprite-dash-handful{background-image:url(//staging.smartmeetings.com/wp-content/themes/smartmeetings/assets/dist/images/sprite1.png);background-position:0 -8127px;width:129px;height:129px}.sm_sprite-de-bois-entertainment{background-image:url(//staging.smartmeetings.com/wp-content/themes/smartmeetings/assets/dist/images/sprite1.png);background-position:0 -8256px;width:129px;height:129px}.sm_sprite-debrand-chocolate{background-image:url(//staging.smartmeetings.com/wp-content/themes/smartmeetings/assets/dist/images/sprite1.png);background-position:0 -8385px;width:129px;height:129px}.sm_sprite-deja-view-events{background-image:url(//staging.smartmeetings.com/wp-content/themes/smartmeetings/assets/dist/images/sprite1.png);background-position:0 -8514px;width:129px;height:129px}.sm_sprite-deni-luna{background-image:url(//staging.smartmeetings.com/wp-content/themes/smartmeetings/assets/dist/images/sprite1.png);background-position:0 -8643px;width:129px;height:129px}.sm_sprite-desert-adventures{background-image:url(//staging.smartmeetings.com/wp-content/themes/smartmeetings/assets/dist/images/sprite1.png);background-position:0 -8772px;width:129px;height:129px}.sm_sprite-destination-vip{background-image:url(//staging.smartmeetings.com/wp-content/themes/smartmeetings/assets/dist/images/sprite1.png);background-position:0 -8901px;width:129px;height:129px}.sm_sprite-discover-palm-beaches{background-image:url(//staging.smartmeetings.com/wp-content/themes/smartmeetings/assets/dist/images/sprite1.png);background-position:0 -9030px;width:129px;height:129px}.sm_sprite-dr-jack-singer{background-image:url(//staging.smartmeetings.com/wp-content/themes/smartmeetings/assets/dist/images/sprite1.png);background-position:0 -9159px;width:129px;height:129px}.sm_sprite-dr-shirley-davis{background-image:url(//staging.smartmeetings.com/wp-content/themes/smartmeetings/assets/dist/images/sprite1.png);background-position:0 -9288px;width:129px;height:129px}.sm_sprite-drum-cafe{background-image:url(//staging.smartmeetings.com/wp-content/themes/smartmeetings/assets/dist/images/sprite1.png);background-position:0 -9417px;width:129px;height:129px}.sm_sprite-ed-carreon-photography{background-image:url(//staging.smartmeetings.com/wp-content/themes/smartmeetings/assets/dist/images/sprite1.png);background-position:0 -9546px;width:129px;height:129px}.sm_sprite-eddie-osterland{background-image:url(//staging.smartmeetings.com/wp-content/themes/smartmeetings/assets/dist/images/sprite1.png);background-position:0 -9675px;width:129px;height:129px}.sm_sprite-encore{background-image:url(//staging.smartmeetings.com/wp-content/themes/smartmeetings/assets/dist/images/sprite1.png);background-position:0 -9804px;width:129px;height:129px}.sm_sprite-epic-entertainment-and-production-group{background-image:url(//staging.smartmeetings.com/wp-content/themes/smartmeetings/assets/dist/images/sprite1.png);background-position:0 -9933px;width:129px;height:129px}.sm_sprite-espeakers{background-image:url(//staging.smartmeetings.com/wp-content/themes/smartmeetings/assets/dist/images/sprite1.png);background-position:0 -10062px;width:129px;height:129px}.sm_sprite-eventful-productions{background-image:url(//staging.smartmeetings.com/wp-content/themes/smartmeetings/assets/dist/images/sprite1.png);background-position:0 -10191px;width:129px;height:129px}.sm_sprite-eventi-a-kimpton-hotel{background-image:url(//staging.smartmeetings.com/wp-content/themes/smartmeetings/assets/dist/images/sprite1.png);background-position:0 -10320px;width:129px;height:129px}.sm_sprite-eventmobi{background-image:url(//staging.smartmeetings.com/wp-content/themes/smartmeetings/assets/dist/images/sprite1.png);background-position:0 -10449px;width:129px;height:129px}.sm_sprite-fairmont-chicago{background-image:url(//staging.smartmeetings.com/wp-content/themes/smartmeetings/assets/dist/images/sprite1.png);background-position:0 -10578px;width:129px;height:129px}.sm_sprite-fairmont-san-francisco{background-image:url(//staging.smartmeetings.com/wp-content/themes/smartmeetings/assets/dist/images/sprite1.png);background-position:0 -10707px;width:129px;height:129px}.sm_sprite-fairmont-scottsdale-princess{background-image:url(//staging.smartmeetings.com/wp-content/themes/smartmeetings/assets/dist/images/sprite1.png);background-position:0 -10836px;width:129px;height:129px}.sm_sprite-fairytale-brownies{background-image:url(//staging.smartmeetings.com/wp-content/themes/smartmeetings/assets/dist/images/sprite1.png);background-position:0 -10965px;width:129px;height:129px}.sm_sprite-florida-keys-and-key-west{background-image:url(//staging.smartmeetings.com/wp-content/themes/smartmeetings/assets/dist/images/sprite1.png);background-position:0 -11094px;width:129px;height:129px}.sm_sprite-flying-ace-productions{background-image:url(//staging.smartmeetings.com/wp-content/themes/smartmeetings/assets/dist/images/sprite1.png);background-position:0 -11223px;width:129px;height:129px}.sm_sprite-forbidden-broadway{background-image:url(//staging.smartmeetings.com/wp-content/themes/smartmeetings/assets/dist/images/sprite1.png);background-position:0 -11352px;width:129px;height:129px}.sm_sprite-frans-chocolates{background-image:url(//staging.smartmeetings.com/wp-content/themes/smartmeetings/assets/dist/images/sprite1.png);background-position:0 -11481px;width:129px;height:129px}.sm_sprite-fretzels-by-jill-Inc{background-image:url(//staging.smartmeetings.com/wp-content/themes/smartmeetings/assets/dist/images/sprite1.png);background-position:0 -11610px;width:129px;height:129px}.sm_sprite-fun-frames-photo-booth{background-image:url(//staging.smartmeetings.com/wp-content/themes/smartmeetings/assets/dist/images/sprite1.png);background-position:0 -11739px;width:129px;height:129px}.sm_sprite-fun-productions{background-image:url(//staging.smartmeetings.com/wp-content/themes/smartmeetings/assets/dist/images/sprite1.png);background-position:0 -11868px;width:129px;height:129px}.sm_sprite-galveston-island-cvb{background-image:url(//staging.smartmeetings.com/wp-content/themes/smartmeetings/assets/dist/images/sprite1.png);background-position:0 -11997px;width:129px;height:129px}.sm_sprite-gaston-photography{background-image:url(//staging.smartmeetings.com/wp-content/themes/smartmeetings/assets/dist/images/sprite1.png);background-position:0 -12126px;width:129px;height:129px}.sm_sprite-gate-5-film{background-image:url(//staging.smartmeetings.com/wp-content/themes/smartmeetings/assets/dist/images/sprite1.png);background-position:0 -12255px;width:129px;height:129px}.sm_sprite-gbs-linens{background-image:url(//staging.smartmeetings.com/wp-content/themes/smartmeetings/assets/dist/images/sprite1.png);background-position:0 -12384px;width:129px;height:129px}.sm_sprite-gene-juarez{background-image:url(//staging.smartmeetings.com/wp-content/themes/smartmeetings/assets/dist/images/sprite1.png);background-position:0 -12513px;width:129px;height:129px}.sm_sprite-georgia-world-congress-center{background-image:url(//staging.smartmeetings.com/wp-content/themes/smartmeetings/assets/dist/images/sprite1.png);background-position:0 -12642px;width:129px;height:129px}.sm_sprite-ghirardelli{background-image:url(//staging.smartmeetings.com/wp-content/themes/smartmeetings/assets/dist/images/sprite1.png);background-position:0 -12771px;width:129px;height:129px}.sm_sprite-godiva-chocolatier-inc{background-image:url(//staging.smartmeetings.com/wp-content/themes/smartmeetings/assets/dist/images/sprite1.png);background-position:0 -12900px;width:129px;height:129px}.sm_sprite-got-light{background-image:url(//staging.smartmeetings.com/wp-content/themes/smartmeetings/assets/dist/images/sprite1.png);background-position:0 -13029px;width:129px;height:129px}.sm_sprite-graceful-tables{background-image:url(//staging.smartmeetings.com/wp-content/themes/smartmeetings/assets/dist/images/sprite1.png);background-position:0 -13158px;width:129px;height:129px}.sm_sprite-grand-hyatt-new-york{background-image:url(//staging.smartmeetings.com/wp-content/themes/smartmeetings/assets/dist/images/sprite1.png);background-position:0 -13287px;width:129px;height:129px}.sm_sprite-greater-miami-cvb{background-image:url(//staging.smartmeetings.com/wp-content/themes/smartmeetings/assets/dist/images/sprite1.png);background-position:0 -13416px;width:129px;height:129px}.sm_sprite-greenville-cvb{background-image:url(//staging.smartmeetings.com/wp-content/themes/smartmeetings/assets/dist/images/sprite1.png);background-position:0 -13545px;width:129px;height:129px}.sm_sprite-greg-blomberg-photography{background-image:url(//staging.smartmeetings.com/wp-content/themes/smartmeetings/assets/dist/images/sprite1.png);background-position:0 -13674px;width:129px;height:129px}.sm_sprite-halls-rentals{background-image:url(//staging.smartmeetings.com/wp-content/themes/smartmeetings/assets/dist/images/sprite1.png);background-position:0 -13803px;width:129px;height:129px}.sm_sprite-hard-rock-las-vegas{background-image:url(//staging.smartmeetings.com/wp-content/themes/smartmeetings/assets/dist/images/sprite1.png);background-position:0 -13932px;width:129px;height:129px}.sm_sprite-hartman-studios{background-image:url(//staging.smartmeetings.com/wp-content/themes/smartmeetings/assets/dist/images/sprite1.png);background-position:0 -14061px;width:129px;height:129px}.sm_sprite-hawaii-visitors-and-convention-bureau{background-image:url(//staging.smartmeetings.com/wp-content/themes/smartmeetings/assets/dist/images/sprite1.png);background-position:0 -14190px;width:129px;height:129px}.sm_sprite-hello-arizona{background-image:url(//staging.smartmeetings.com/wp-content/themes/smartmeetings/assets/dist/images/sprite1.png);background-position:0 -14319px;width:129px;height:129px}.sm_sprite-hello-florida{background-image:url(//staging.smartmeetings.com/wp-content/themes/smartmeetings/assets/dist/images/sprite1.png);background-position:0 -14448px;width:129px;height:129px}.sm_sprite-herban-essentials{background-image:url(//staging.smartmeetings.com/wp-content/themes/smartmeetings/assets/dist/images/sprite1.png);background-position:0 -14577px;width:129px;height:129px}.sm_sprite-hershey-meetings{background-image:url(//staging.smartmeetings.com/wp-content/themes/smartmeetings/assets/dist/images/sprite1.png);background-position:0 -14706px;width:129px;height:129px}.sm_sprite-hopwater-distribution{background-image:url(//staging.smartmeetings.com/wp-content/themes/smartmeetings/assets/dist/images/sprite1.png);background-position:0 -14835px;width:129px;height:129px}.sm_sprite-horsager-leadership{background-image:url(//staging.smartmeetings.com/wp-content/themes/smartmeetings/assets/dist/images/sprite1.png);background-position:0 -14964px;width:129px;height:129px}.sm_sprite-hotel-corque{background-image:url(//staging.smartmeetings.com/wp-content/themes/smartmeetings/assets/dist/images/sprite1.png);background-position:0 -15093px;width:129px;height:129px}.sm_sprite-hotel-del-coronado{background-image:url(//staging.smartmeetings.com/wp-content/themes/smartmeetings/assets/dist/images/sprite1.png);background-position:0 -15222px;width:129px;height:129px}.sm_sprite-hw-marriott-sf-union-square{background-image:url(//staging.smartmeetings.com/wp-content/themes/smartmeetings/assets/dist/images/sprite1.png);background-position:0 -15351px;width:129px;height:129px}.sm_sprite-hyegraph-invitations-and-calligraphy{background-image:url(//staging.smartmeetings.com/wp-content/themes/smartmeetings/assets/dist/images/sprite1.png);background-position:0 -15480px;width:129px;height:129px}.sm_sprite-ian-dobsons-pan-leggo{background-image:url(//staging.smartmeetings.com/wp-content/themes/smartmeetings/assets/dist/images/sprite1.png);background-position:0 -15609px;width:129px;height:129px}.sm_sprite-image-screens{background-image:url(//staging.smartmeetings.com/wp-content/themes/smartmeetings/assets/dist/images/sprite1.png);background-position:0 -15738px;width:129px;height:129px}.sm_sprite-intercontinental-new-york-square{background-image:url(//staging.smartmeetings.com/wp-content/themes/smartmeetings/assets/dist/images/sprite1.png);background-position:0 -15867px;width:129px;height:129px}.sm_sprite-irving-texas-cvb{background-image:url(//staging.smartmeetings.com/wp-content/themes/smartmeetings/assets/dist/images/sprite1.png);background-position:0 -15996px;width:129px;height:129px}.sm_sprite-jacqueline-kabat-comedy-improv-team-building{background-image:url(//staging.smartmeetings.com/wp-content/themes/smartmeetings/assets/dist/images/sprite1.png);background-position:0 -16125px;width:129px;height:129px}.sm_sprite-jacuzzi-family-vineyards{background-image:url(//staging.smartmeetings.com/wp-content/themes/smartmeetings/assets/dist/images/sprite1.png);background-position:0 -16254px;width:129px;height:129px}.sm_sprite-john-and-kiras{background-image:url(//staging.smartmeetings.com/wp-content/themes/smartmeetings/assets/dist/images/sprite1.png);background-position:0 -16383px;width:129px;height:129px}.sm_sprite-jones-soda-co{background-image:url(//staging.smartmeetings.com/wp-content/themes/smartmeetings/assets/dist/images/sprite1.png);background-position:0 -16512px;width:129px;height:129px}.sm_sprite-justins{background-image:url(//staging.smartmeetings.com/wp-content/themes/smartmeetings/assets/dist/images/sprite1.png);background-position:0 -16641px;width:129px;height:129px}.sm_sprite-kai-lotions{background-image:url(//staging.smartmeetings.com/wp-content/themes/smartmeetings/assets/dist/images/sprite1.png);background-position:0 -16770px;width:129px;height:129px}.sm_sprite-kalahari-resorts{background-image:url(//staging.smartmeetings.com/wp-content/themes/smartmeetings/assets/dist/images/sprite1.png);background-position:0 -16899px;width:129px;height:129px}.sm_sprite-katie-deusel-design-foundry{background-image:url(//staging.smartmeetings.com/wp-content/themes/smartmeetings/assets/dist/images/sprite1.png);background-position:0 -17028px;width:129px;height:129px}.sm_sprite-kehoe-designs{background-image:url(//staging.smartmeetings.com/wp-content/themes/smartmeetings/assets/dist/images/sprite1.png);background-position:0 -17157px;width:129px;height:129px}.sm_sprite-keppler-speakers{background-image:url(//staging.smartmeetings.com/wp-content/themes/smartmeetings/assets/dist/images/sprite1.png);background-position:0 -17286px;width:129px;height:129px}.sm_sprite-kevin-bradford-design{background-image:url(//staging.smartmeetings.com/wp-content/themes/smartmeetings/assets/dist/images/sprite1.png);background-position:0 -17415px;width:129px;height:129px}.sm_sprite-kidbilly-music{background-image:url(//staging.smartmeetings.com/wp-content/themes/smartmeetings/assets/dist/images/sprite1.png);background-position:0 -17544px;width:129px;height:129px}.sm_sprite-kyle-maynard{background-image:url(//staging.smartmeetings.com/wp-content/themes/smartmeetings/assets/dist/images/sprite1.png);background-position:0 -17673px;width:129px;height:129px}.sm_sprite-la-fresh{background-image:url(//staging.smartmeetings.com/wp-content/themes/smartmeetings/assets/dist/images/sprite1.png);background-position:0 -17802px;width:129px;height:129px}.sm_sprite-la-inc{background-image:url(//staging.smartmeetings.com/wp-content/themes/smartmeetings/assets/dist/images/sprite1.png);background-position:0 -17931px;width:129px;height:129px}.sm_sprite-LA-party-designs{background-image:url(//staging.smartmeetings.com/wp-content/themes/smartmeetings/assets/dist/images/sprite2.png);background-position:0 0;width:129px;height:129px}.sm_sprite-Metropolitan-Tucson-CVB{background-image:url(//staging.smartmeetings.com/wp-content/themes/smartmeetings/assets/dist/images/sprite2.png);background-position:0 -129px;width:129px;height:129px}.sm_sprite-PMSI{background-image:url(//staging.smartmeetings.com/wp-content/themes/smartmeetings/assets/dist/images/sprite2.png);background-position:0 -258px;width:129px;height:129px}.sm_sprite-San-antonio-cvb{background-image:url(//staging.smartmeetings.com/wp-content/themes/smartmeetings/assets/dist/images/sprite2.png);background-position:0 -387px;width:129px;height:129px}.sm_sprite-Ste-Michelle-wine-estates{background-image:url(//staging.smartmeetings.com/wp-content/themes/smartmeetings/assets/dist/images/sprite2.png);background-position:0 -516px;width:129px;height:129px}.sm_sprite-lethal-rythms{background-image:url(//staging.smartmeetings.com/wp-content/themes/smartmeetings/assets/dist/images/sprite2.png);background-position:0 -645px;width:129px;height:129px}.sm_sprite-lets-celebrate{background-image:url(//staging.smartmeetings.com/wp-content/themes/smartmeetings/assets/dist/images/sprite2.png);background-position:0 -774px;width:129px;height:129px}.sm_sprite-levy-restuarants{background-image:url(//staging.smartmeetings.com/wp-content/themes/smartmeetings/assets/dist/images/sprite2.png);background-position:0 -903px;width:129px;height:129px}.sm_sprite-limo-link{background-image:url(//staging.smartmeetings.com/wp-content/themes/smartmeetings/assets/dist/images/sprite2.png);background-position:0 -1032px;width:129px;height:129px}.sm_sprite-lip-print-readings{background-image:url(//staging.smartmeetings.com/wp-content/themes/smartmeetings/assets/dist/images/sprite2.png);background-position:0 -1161px;width:129px;height:129px}.sm_sprite-lipsology{background-image:url(//staging.smartmeetings.com/wp-content/themes/smartmeetings/assets/dist/images/sprite2.png);background-position:0 -1290px;width:129px;height:129px}.sm_sprite-liquid-skey-productions{background-image:url(//staging.smartmeetings.com/wp-content/themes/smartmeetings/assets/dist/images/sprite2.png);background-position:0 -1419px;width:129px;height:129px}.sm_sprite-loccititane-en-provence{background-image:url(//staging.smartmeetings.com/wp-content/themes/smartmeetings/assets/dist/images/sprite2.png);background-position:0 -1548px;width:129px;height:129px}.sm_sprite-loews-atlanta-hotel{background-image:url(//staging.smartmeetings.com/wp-content/themes/smartmeetings/assets/dist/images/sprite2.png);background-position:0 -1677px;width:129px;height:129px}.sm_sprite-los-angeles-tourism-and-convention-board{background-image:url(//staging.smartmeetings.com/wp-content/themes/smartmeetings/assets/dist/images/sprite2.png);background-position:0 -1806px;width:129px;height:129px}.sm_sprite-los-cedros-arabian-horse-ranch{background-image:url(//staging.smartmeetings.com/wp-content/themes/smartmeetings/assets/dist/images/sprite2.png);background-position:0 -1935px;width:129px;height:129px}.sm_sprite-m3-imagery{background-image:url(//staging.smartmeetings.com/wp-content/themes/smartmeetings/assets/dist/images/sprite2.png);background-position:0 -2064px;width:129px;height:129px}.sm_sprite-macon-bibb-country-cvb{background-image:url(//staging.smartmeetings.com/wp-content/themes/smartmeetings/assets/dist/images/sprite2.png);background-position:0 -2193px;width:129px;height:129px}.sm_sprite-make-scene{background-image:url(//staging.smartmeetings.com/wp-content/themes/smartmeetings/assets/dist/images/sprite2.png);background-position:0 -2322px;width:129px;height:129px}.sm_sprite-mallouf-photography{background-image:url(//staging.smartmeetings.com/wp-content/themes/smartmeetings/assets/dist/images/sprite2.png);background-position:0 -2451px;width:129px;height:129px}.sm_sprite-masionry-napa{background-image:url(//staging.smartmeetings.com/wp-content/themes/smartmeetings/assets/dist/images/sprite2.png);background-position:0 -2580px;width:129px;height:129px}.sm_sprite-maui-jim{background-image:url(//staging.smartmeetings.com/wp-content/themes/smartmeetings/assets/dist/images/sprite2.png);background-position:0 -2709px;width:129px;height:129px}.sm_sprite-maverick-aviation-group{background-image:url(//staging.smartmeetings.com/wp-content/themes/smartmeetings/assets/dist/images/sprite2.png);background-position:0 -2838px;width:129px;height:129px}.sm_sprite-mexico-tourism{background-image:url(//staging.smartmeetings.com/wp-content/themes/smartmeetings/assets/dist/images/sprite2.png);background-position:0 -2967px;width:129px;height:129px}.sm_sprite-micahel-daigian-design{background-image:url(//staging.smartmeetings.com/wp-content/themes/smartmeetings/assets/dist/images/sprite2.png);background-position:0 -3096px;width:129px;height:129px}.sm_sprite-michael-angel-designs{background-image:url(//staging.smartmeetings.com/wp-content/themes/smartmeetings/assets/dist/images/sprite2.png);background-position:0 -3225px;width:129px;height:129px}.sm_sprite-mill-valley-candleworks{background-image:url(//staging.smartmeetings.com/wp-content/themes/smartmeetings/assets/dist/images/sprite2.png);background-position:0 -3354px;width:129px;height:129px}.sm_sprite-mobile-bay-cvb{background-image:url(//staging.smartmeetings.com/wp-content/themes/smartmeetings/assets/dist/images/sprite2.png);background-position:0 -3483px;width:129px;height:129px}.sm_sprite-montage-beverly{background-image:url(//staging.smartmeetings.com/wp-content/themes/smartmeetings/assets/dist/images/sprite2.png);background-position:0 -3612px;width:129px;height:129px}.sm_sprite-monterey-county-cvb{background-image:url(//staging.smartmeetings.com/wp-content/themes/smartmeetings/assets/dist/images/sprite2.png);background-position:0 -3741px;width:129px;height:129px}.sm_sprite-moveo{background-image:url(//staging.smartmeetings.com/wp-content/themes/smartmeetings/assets/dist/images/sprite2.png);background-position:0 -3870px;width:129px;height:129px}.sm_sprite-napa-style{background-image:url(//staging.smartmeetings.com/wp-content/themes/smartmeetings/assets/dist/images/sprite2.png);background-position:0 -3999px;width:129px;height:129px}.sm_sprite-nataworry-photography{background-image:url(//staging.smartmeetings.com/wp-content/themes/smartmeetings/assets/dist/images/sprite2.png);background-position:0 -4128px;width:129px;height:129px}.sm_sprite-nathanael-jester{background-image:url(//staging.smartmeetings.com/wp-content/themes/smartmeetings/assets/dist/images/sprite2.png);background-position:0 -4257px;width:129px;height:129px}.sm_sprite-nerium-ad{background-image:url(//staging.smartmeetings.com/wp-content/themes/smartmeetings/assets/dist/images/sprite2.png);background-position:0 -4386px;width:129px;height:129px}.sm_sprite-new-yorks-best-muscians-photos-and-video{background-image:url(//staging.smartmeetings.com/wp-content/themes/smartmeetings/assets/dist/images/sprite2.png);background-position:0 -4515px;width:129px;height:129px}.sm_sprite-obrien-estate{background-image:url(//staging.smartmeetings.com/wp-content/themes/smartmeetings/assets/dist/images/sprite2.png);background-position:0 -4644px;width:129px;height:129px}.sm_sprite-office-playground-inc{background-image:url(//staging.smartmeetings.com/wp-content/themes/smartmeetings/assets/dist/images/sprite2.png);background-position:0 -4773px;width:129px;height:129px}.sm_sprite-ojai-valley-inn-spa{background-image:url(//staging.smartmeetings.com/wp-content/themes/smartmeetings/assets/dist/images/sprite2.png);background-position:0 -4902px;width:129px;height:129px}.sm_sprite-omni-hotels-resorts{background-image:url(//staging.smartmeetings.com/wp-content/themes/smartmeetings/assets/dist/images/sprite2.png);background-position:0 -5031px;width:129px;height:129px}.sm_sprite-one-hope-wine{background-image:url(//staging.smartmeetings.com/wp-content/themes/smartmeetings/assets/dist/images/sprite2.png);background-position:0 -5160px;width:129px;height:129px}.sm_sprite-orange-photography{background-image:url(//staging.smartmeetings.com/wp-content/themes/smartmeetings/assets/dist/images/sprite2.png);background-position:0 -5289px;width:129px;height:129px}.sm_sprite-palm-beach-county-florida{background-image:url(//staging.smartmeetings.com/wp-content/themes/smartmeetings/assets/dist/images/sprite2.png);background-position:0 -5418px;width:129px;height:129px}.sm_sprite-park-hyatt-washington{background-image:url(//staging.smartmeetings.com/wp-content/themes/smartmeetings/assets/dist/images/sprite2.png);background-position:0 -5547px;width:129px;height:129px}.sm_sprite-peach-tree-tends-events{background-image:url(//staging.smartmeetings.com/wp-content/themes/smartmeetings/assets/dist/images/sprite2.png);background-position:0 -5676px;width:129px;height:129px}.sm_sprite-pedersens-event-rentals{background-image:url(//staging.smartmeetings.com/wp-content/themes/smartmeetings/assets/dist/images/sprite2.png);background-position:0 -5805px;width:129px;height:129px}.sm_sprite-pedersens{background-image:url(//staging.smartmeetings.com/wp-content/themes/smartmeetings/assets/dist/images/sprite2.png);background-position:0 -5934px;width:129px;height:129px}.sm_sprite-pirates-booty{background-image:url(//staging.smartmeetings.com/wp-content/themes/smartmeetings/assets/dist/images/sprite2.png);background-position:0 -6063px;width:129px;height:129px}.sm_sprite-pj-hummel-company-inc{background-image:url(//staging.smartmeetings.com/wp-content/themes/smartmeetings/assets/dist/images/sprite2.png);background-position:0 -6192px;width:129px;height:129px}.sm_sprite-poco-docle-confections{background-image:url(//staging.smartmeetings.com/wp-content/themes/smartmeetings/assets/dist/images/sprite2.png);background-position:0 -6321px;width:129px;height:129px}.sm_sprite-pop-chips{background-image:url(//staging.smartmeetings.com/wp-content/themes/smartmeetings/assets/dist/images/sprite2.png);background-position:0 -6450px;width:129px;height:129px}.sm_sprite-popcorn-palace{background-image:url(//staging.smartmeetings.com/wp-content/themes/smartmeetings/assets/dist/images/sprite2.png);background-position:0 -6579px;width:129px;height:129px}.sm_sprite-precon-events{background-image:url(//staging.smartmeetings.com/wp-content/themes/smartmeetings/assets/dist/images/sprite2.png);background-position:0 -6708px;width:129px;height:129px}.sm_sprite-professional-entertainment-consultants{background-image:url(//staging.smartmeetings.com/wp-content/themes/smartmeetings/assets/dist/images/sprite2.png);background-position:0 -6837px;width:129px;height:129px}.sm_sprite-psav{background-image:url(//staging.smartmeetings.com/wp-content/themes/smartmeetings/assets/dist/images/sprite2.png);background-position:0 -6966px;width:129px;height:129px}.sm_sprite-psychic-solutions{background-image:url(//staging.smartmeetings.com/wp-content/themes/smartmeetings/assets/dist/images/sprite2.png);background-position:0 -7095px;width:129px;height:129px}.sm_sprite-radeff-design-studios{background-image:url(//staging.smartmeetings.com/wp-content/themes/smartmeetings/assets/dist/images/sprite2.png);background-position:0 -7224px;width:129px;height:129px}.sm_sprite-ready-to-spark{background-image:url(//staging.smartmeetings.com/wp-content/themes/smartmeetings/assets/dist/images/sprite2.png);background-position:0 -7353px;width:129px;height:129px}.sm_sprite-regala-studio{background-image:url(//staging.smartmeetings.com/wp-content/themes/smartmeetings/assets/dist/images/sprite2.png);background-position:0 -7482px;width:129px;height:129px}.sm_sprite-richmond-metropolitan-cvb{background-image:url(//staging.smartmeetings.com/wp-content/themes/smartmeetings/assets/dist/images/sprite2.png);background-position:0 -7611px;width:129px;height:129px}.sm_sprite-ritz-carlton-dallas{background-image:url(//staging.smartmeetings.com/wp-content/themes/smartmeetings/assets/dist/images/sprite2.png);background-position:0 -7740px;width:129px;height:129px}.sm_sprite-ritz-carlton-laguna-niguel{background-image:url(//staging.smartmeetings.com/wp-content/themes/smartmeetings/assets/dist/images/sprite2.png);background-position:0 -7869px;width:129px;height:129px}.sm_sprite-robert-strong{background-image:url(//staging.smartmeetings.com/wp-content/themes/smartmeetings/assets/dist/images/sprite2.png);background-position:0 -7998px;width:129px;height:129px}.sm_sprite-rock-the-stars{background-image:url(//staging.smartmeetings.com/wp-content/themes/smartmeetings/assets/dist/images/sprite2.png);background-position:0 -8127px;width:129px;height:129px}.sm_sprite-rosewood{background-image:url(//staging.smartmeetings.com/wp-content/themes/smartmeetings/assets/dist/images/sprite2.png);background-position:0 -8256px;width:129px;height:129px}.sm_sprite-san-diego-cvb{background-image:url(//staging.smartmeetings.com/wp-content/themes/smartmeetings/assets/dist/images/sprite2.png);background-position:0 -8385px;width:129px;height:129px}.sm_sprite-san-luis-obispo-vcb{background-image:url(//staging.smartmeetings.com/wp-content/themes/smartmeetings/assets/dist/images/sprite2.png);background-position:0 -8514px;width:129px;height:129px}.sm_sprite-santa-fe-CVB{background-image:url(//staging.smartmeetings.com/wp-content/themes/smartmeetings/assets/dist/images/sprite2.png);background-position:0 -8643px;width:129px;height:129px}.sm_sprite-santa-monica-cvb{background-image:url(//staging.smartmeetings.com/wp-content/themes/smartmeetings/assets/dist/images/sprite2.png);background-position:0 -8772px;width:129px;height:129px}.sm_sprite-say-cheez-photo-booth{background-image:url(//staging.smartmeetings.com/wp-content/themes/smartmeetings/assets/dist/images/sprite2.png);background-position:0 -8901px;width:129px;height:129px}.sm_sprite-scottsdale-cvb{background-image:url(//staging.smartmeetings.com/wp-content/themes/smartmeetings/assets/dist/images/sprite2.png);background-position:0 -9030px;width:129px;height:129px}.sm_sprite-see-jane-work{background-image:url(//staging.smartmeetings.com/wp-content/themes/smartmeetings/assets/dist/images/sprite2.png);background-position:0 -9159px;width:129px;height:129px}.sm_sprite-sencha-green-tea-mints{background-image:url(//staging.smartmeetings.com/wp-content/themes/smartmeetings/assets/dist/images/sprite2.png);background-position:0 -9288px;width:129px;height:129px}.sm_sprite-sheila-lyon-psychic-entertainer{background-image:url(//staging.smartmeetings.com/wp-content/themes/smartmeetings/assets/dist/images/sprite2.png);background-position:0 -9417px;width:129px;height:129px}.sm_sprite-sildent-storm{background-image:url(//staging.smartmeetings.com/wp-content/themes/smartmeetings/assets/dist/images/sprite2.png);background-position:0 -9546px;width:129px;height:129px}.sm_sprite-silver-digital-media{background-image:url(//staging.smartmeetings.com/wp-content/themes/smartmeetings/assets/dist/images/sprite2.png);background-position:0 -9675px;width:129px;height:129px}.sm_sprite-silver-oak{background-image:url(//staging.smartmeetings.com/wp-content/themes/smartmeetings/assets/dist/images/sprite2.png);background-position:0 -9804px;width:129px;height:129px}.sm_sprite-smart-water{background-image:url(//staging.smartmeetings.com/wp-content/themes/smartmeetings/assets/dist/images/sprite2.png);background-position:0 -9933px;width:129px;height:129px}.sm_sprite-smarty-pass{background-image:url(//staging.smartmeetings.com/wp-content/themes/smartmeetings/assets/dist/images/sprite2.png);background-position:0 -10062px;width:129px;height:129px}.sm_sprite-smooth-groove-productions{background-image:url(//staging.smartmeetings.com/wp-content/themes/smartmeetings/assets/dist/images/sprite2.png);background-position:0 -10191px;width:129px;height:129px}.sm_sprite-south-coast-winery-resort-spa{background-image:url(//staging.smartmeetings.com/wp-content/themes/smartmeetings/assets/dist/images/sprite2.png);background-position:0 -10320px;width:129px;height:129px}.sm_sprite-southern-audio-visual{background-image:url(//staging.smartmeetings.com/wp-content/themes/smartmeetings/assets/dist/images/sprite2.png);background-position:0 -10449px;width:129px;height:129px}.sm_sprite-speak-inc{background-image:url(//staging.smartmeetings.com/wp-content/themes/smartmeetings/assets/dist/images/sprite2.png);background-position:0 -10578px;width:129px;height:129px}.sm_sprite-speciality-imaging-international{background-image:url(//staging.smartmeetings.com/wp-content/themes/smartmeetings/assets/dist/images/sprite2.png);background-position:0 -10707px;width:129px;height:129px}.sm_sprite-starbright-floral-design{background-image:url(//staging.smartmeetings.com/wp-content/themes/smartmeetings/assets/dist/images/sprite2.png);background-position:0 -10836px;width:129px;height:129px}.sm_sprite-stein-erikson-lodge{background-image:url(//staging.smartmeetings.com/wp-content/themes/smartmeetings/assets/dist/images/sprite2.png);background-position:0 -10965px;width:129px;height:129px}.sm_sprite-step-and-repeat-la{background-image:url(//staging.smartmeetings.com/wp-content/themes/smartmeetings/assets/dist/images/sprite2.png);background-position:0 -11094px;width:129px;height:129px}.sm_sprite-sterling-caviar{background-image:url(//staging.smartmeetings.com/wp-content/themes/smartmeetings/assets/dist/images/sprite2.png);background-position:0 -11223px;width:129px;height:129px}.sm_sprite-stoli{background-image:url(//staging.smartmeetings.com/wp-content/themes/smartmeetings/assets/dist/images/sprite2.png);background-position:0 -11352px;width:129px;height:129px}.sm_sprite-sunny-delight{background-image:url(//staging.smartmeetings.com/wp-content/themes/smartmeetings/assets/dist/images/sprite2.png);background-position:0 -11481px;width:129px;height:129px}.sm_sprite-susan-g-komen{background-image:url(//staging.smartmeetings.com/wp-content/themes/smartmeetings/assets/dist/images/sprite2.png);background-position:0 -11610px;width:129px;height:129px}.sm_sprite-susan-roane{background-image:url(//staging.smartmeetings.com/wp-content/themes/smartmeetings/assets/dist/images/sprite2.png);background-position:0 -11739px;width:129px;height:129px}.sm_sprite-swank-stems{background-image:url(//staging.smartmeetings.com/wp-content/themes/smartmeetings/assets/dist/images/sprite2.png);background-position:0 -11868px;width:129px;height:129px}.sm_sprite-talking-stick-resort{background-image:url(//staging.smartmeetings.com/wp-content/themes/smartmeetings/assets/dist/images/sprite2.png);background-position:0 -11997px;width:129px;height:129px}.sm_sprite-tda-design{background-image:url(//staging.smartmeetings.com/wp-content/themes/smartmeetings/assets/dist/images/sprite2.png);background-position:0 -12126px;width:129px;height:129px}.sm_sprite-terry-hawkins{background-image:url(//staging.smartmeetings.com/wp-content/themes/smartmeetings/assets/dist/images/sprite2.png);background-position:0 -12255px;width:129px;height:129px}.sm_sprite-the-comedy-sportz-theatre{background-image:url(//staging.smartmeetings.com/wp-content/themes/smartmeetings/assets/dist/images/sprite2.png);background-position:0 -12384px;width:129px;height:129px}.sm_sprite-the-drake-hotel-chicago{background-image:url(//staging.smartmeetings.com/wp-content/themes/smartmeetings/assets/dist/images/sprite2.png);background-position:0 -12513px;width:129px;height:129px}.sm_sprite-the-event-lounge-LLC{background-image:url(//staging.smartmeetings.com/wp-content/themes/smartmeetings/assets/dist/images/sprite2.png);background-position:0 -12642px;width:129px;height:129px}.sm_sprite-the-fairmont-chicago{background-image:url(//staging.smartmeetings.com/wp-content/themes/smartmeetings/assets/dist/images/sprite2.png);background-position:0 -12771px;width:129px;height:129px}.sm_sprite-the-fairmont-olympic-hotel{background-image:url(//staging.smartmeetings.com/wp-content/themes/smartmeetings/assets/dist/images/sprite2.png);background-position:0 -12900px;width:129px;height:129px}.sm_sprite-the-gps-girl{background-image:url(//staging.smartmeetings.com/wp-content/themes/smartmeetings/assets/dist/images/sprite2.png);background-position:0 -13029px;width:129px;height:129px}.sm_sprite-the-green-teaist{background-image:url(//staging.smartmeetings.com/wp-content/themes/smartmeetings/assets/dist/images/sprite2.png);background-position:0 -13158px;width:129px;height:129px}.sm_sprite-the-imperial-opa{background-image:url(//staging.smartmeetings.com/wp-content/themes/smartmeetings/assets/dist/images/sprite2.png);background-position:0 -13287px;width:129px;height:129px}.sm_sprite-the-inventing-room{background-image:url(//staging.smartmeetings.com/wp-content/themes/smartmeetings/assets/dist/images/sprite2.png);background-position:0 -13416px;width:129px;height:129px}.sm_sprite-the-majestic-photobooth-co{background-image:url(//staging.smartmeetings.com/wp-content/themes/smartmeetings/assets/dist/images/sprite2.png);background-position:0 -13545px;width:129px;height:129px}.sm_sprite-the-meetinghouse-companies-inc{background-image:url(//staging.smartmeetings.com/wp-content/themes/smartmeetings/assets/dist/images/sprite2.png);background-position:0 -13674px;width:129px;height:129px}.sm_sprite-the-ordinary-success-project{background-image:url(//staging.smartmeetings.com/wp-content/themes/smartmeetings/assets/dist/images/sprite2.png);background-position:0 -13803px;width:129px;height:129px}.sm_sprite-the-poetry-store{background-image:url(//staging.smartmeetings.com/wp-content/themes/smartmeetings/assets/dist/images/sprite2.png);background-position:0 -13932px;width:129px;height:129px}.sm_sprite-the-ritz-carlton{background-image:url(//staging.smartmeetings.com/wp-content/themes/smartmeetings/assets/dist/images/sprite2.png);background-position:0 -14061px;width:129px;height:129px}.sm_sprite-the-sebastian-vail{background-image:url(//staging.smartmeetings.com/wp-content/themes/smartmeetings/assets/dist/images/sprite2.png);background-position:0 -14190px;width:129px;height:129px}.sm_sprite-torn-ranch{background-image:url(//staging.smartmeetings.com/wp-content/themes/smartmeetings/assets/dist/images/sprite2.png);background-position:0 -14319px;width:129px;height:129px}.sm_sprite-tourism-richmond{background-image:url(//staging.smartmeetings.com/wp-content/themes/smartmeetings/assets/dist/images/sprite2.png);background-position:0 -14448px;width:129px;height:129px}.sm_sprite-travel-alberta{background-image:url(//staging.smartmeetings.com/wp-content/themes/smartmeetings/assets/dist/images/sprite2.png);background-position:0 -14577px;width:129px;height:129px}.sm_sprite-turnberry-isle-miami{background-image:url(//staging.smartmeetings.com/wp-content/themes/smartmeetings/assets/dist/images/sprite2.png);background-position:0 -14706px;width:129px;height:129px}.sm_sprite-twomey{background-image:url(//staging.smartmeetings.com/wp-content/themes/smartmeetings/assets/dist/images/sprite2.png);background-position:0 -14835px;width:129px;height:129px}.sm_sprite-union-square-group-ltd{background-image:url(//staging.smartmeetings.com/wp-content/themes/smartmeetings/assets/dist/images/sprite2.png);background-position:0 -14964px;width:129px;height:129px}.sm_sprite-utah-olympic-park{background-image:url(//staging.smartmeetings.com/wp-content/themes/smartmeetings/assets/dist/images/sprite2.png);background-position:0 -15093px;width:129px;height:129px}.sm_sprite-utah-valley{background-image:url(//staging.smartmeetings.com/wp-content/themes/smartmeetings/assets/dist/images/sprite2.png);background-position:0 -15222px;width:129px;height:129px}.sm_sprite-vapur-water-bottles{background-image:url(//staging.smartmeetings.com/wp-content/themes/smartmeetings/assets/dist/images/sprite2.png);background-position:0 -15351px;width:129px;height:129px}.sm_sprite-vinnibag{background-image:url(//staging.smartmeetings.com/wp-content/themes/smartmeetings/assets/dist/images/sprite2.png);background-position:0 -15480px;width:129px;height:129px}.sm_sprite-visit-charlotte{background-image:url(//staging.smartmeetings.com/wp-content/themes/smartmeetings/assets/dist/images/sprite2.png);background-position:0 -15609px;width:129px;height:129px}.sm_sprite-visit-newport-beach{background-image:url(//staging.smartmeetings.com/wp-content/themes/smartmeetings/assets/dist/images/sprite2.png);background-position:0 -15738px;width:129px;height:129px}.sm_sprite-w-dallas-victory{background-image:url(//staging.smartmeetings.com/wp-content/themes/smartmeetings/assets/dist/images/sprite2.png);background-position:0 -15867px;width:129px;height:129px}.sm_sprite-w-hollywood{background-image:url(//staging.smartmeetings.com/wp-content/themes/smartmeetings/assets/dist/images/sprite2.png);background-position:0 -15996px;width:129px;height:129px}.sm_sprite-westin-mission-inn{background-image:url(//staging.smartmeetings.com/wp-content/themes/smartmeetings/assets/dist/images/sprite2.png);background-position:0 -16125px;width:129px;height:129px}.sm_sprite-wild-horse-pass-hotel{background-image:url(//staging.smartmeetings.com/wp-content/themes/smartmeetings/assets/dist/images/sprite2.png);background-position:0 -16254px;width:129px;height:129px}.sm_sprite-wineskin{background-image:url(//staging.smartmeetings.com/wp-content/themes/smartmeetings/assets/dist/images/sprite2.png);background-position:0 -16383px;width:129px;height:129px}.sm_sprite-word-wide-waters{background-image:url(//staging.smartmeetings.com/wp-content/themes/smartmeetings/assets/dist/images/sprite2.png);background-position:0 -16512px;width:129px;height:129px}.sm_sprite-world-wide-waters{background-image:url(//staging.smartmeetings.com/wp-content/themes/smartmeetings/assets/dist/images/sprite2.png);background-position:0 -16641px;width:129px;height:129px}.sm_sprite-wynn-encore{background-image:url(//staging.smartmeetings.com/wp-content/themes/smartmeetings/assets/dist/images/sprite2.png);background-position:0 -16770px;width:129px;height:129px}.sm_sprite-zico{background-image:url(//staging.smartmeetings.com/wp-content/themes/smartmeetings/assets/dist/images/sprite2.png);background-position:0 -16899px;width:129px;height:129px}.dxoc-article .dxoc-attachment-credits{font-size:.75em;display:block;margin-bottom:.5em}#ais-wrapper{max-width:82em;margin:0 auto}#ais-wrapper .ais-clearfix{display:none}#ais-wrapper #algolia-search-box input{border-bottom-color:#993dbb}#ais-wrapper #algolia-search-box .search-icon{fill:#993dbb}#ais-wrapper .ais-pagination{display:flex;padding-top:1.25em}#ais-wrapper .ais-pagination .ais-pagination--item{display:block}#ais-wrapper .ais-pagination .ais-pagination--item.ais-pagination--item__disabled{display:none}#ais-wrapper .ais-pagination .ais-pagination--item a{display:block;border:1px solid rgba(0,0,0,.1);padding:.5em .9em;border-radius:.3em}#ais-wrapper .ais-pagination .ais-pagination--item__active a{border-color:#993dbb;background:#993dbb;color:#fff}@media (max-width:60em){#ais-wrapper .ais-pagination .ais-pagination--item.ais-pagination--item__page{display:none}#ais-wrapper .ais-pagination .ais-pagination--item.ais-pagination--item__page.ais-pagination--item__active{display:block}}#algolia-hits{border:1px solid rgba(0,0,0,.1);border-radius:.3em;padding:1.5em 2em}.ais-hits--item a em,.ais-hits--item em{background:#fff!important}.ais-hits--item:not(:last-child){border-bottom:1px solid rgba(0,0,0,.1)}.ais-hits--item:not(:last-child) article{padding-bottom:2em}@media (max-width:30em){.ais-hits--item:not(:last-child) article{padding-bottom:1em}}.ais-hits--item:last-child{margin-bottom:0;padding-bottom:1em}.ais-hits--item article{display:flex;align-items:flex-start;justify-content:space-between}.ais-hits--item article .ais-hits--thumbnail{flex:0 0 auto;float:none!important;order:2;width:5em}@media (max-width:30em){.ais-hits--item article .ais-hits--thumbnail{display:none}}.ais-hits--item article .ais-hits--content{order:1;padding-right:3em}@media (max-width:30em){.ais-hits--item article .ais-hits--content{padding-right:0}}.ais-hits--item article .ais-hits--content h2{font-size:2.25em;padding-bottom:1.25rem}@media (max-width:30em){.ais-hits--item article .ais-hits--content h2{font-size:1.75em}}.ais-hits--item article .ais-hits--content a{color:#000}section.ais-facets>div{padding:1.81em;border:1px solid rgba(0,0,0,.1)}section.ais-facets h3{font-size:1.75em;padding-bottom:1.25rem}section.ais-facets .ais-menu--link{color:#000}section.ais-facets .ais-menu--link:hover{color:#993dbb}section.ais-facets .ais-menu--link:before{content:'';background-image:url("data:image/svg+xml,%3Csvg width='8' height='16' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 192 512'%3E%3Cpath d='M187.8 264.5L41 412.5c-4.7 4.7-12.3 4.7-17 0L4.2 392.7c-4.7-4.7-4.7-12.3 0-17L122.7 256 4.2 136.3c-4.7-4.7-4.7-12.3 0-17L24 99.5c4.7-4.7 12.3-4.7 17 0l146.8 148c4.7 4.7 4.7 12.3 0 17z'/%3E%3C/svg%3E");padding-right:.5em}section.ais-facets .ais-hierarchical-menu--count,section.ais-facets .ais-menu--count,section.ais-facets .ais-refinement-list--count{display:inline-block;border:1px solid rgba(0,0,0,.1);border-radius:.3rem;padding:0 .2rem;font-size:.875;line-height:1;color:rgba(51,51,51,.8);margin-right:.5em}section.ais-facets .ais-hierarchical-menu--item{display:flex;align-items:center}section.ais-facets .ais-hierarchical-menu--item a{color:#000}section.ais-facets .ais-hierarchical-menu--item a:hover{color:#993dbb}section.ais-facets .ais-hierarchical-menu--item:before{content:'';padding-right:.5em;display:block;background-image:url("data:image/svg+xml,%3Csvg width='8' height='16' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 192 512'%3E%3Cpath d='M187.8 264.5L41 412.5c-4.7 4.7-12.3 4.7-17 0L4.2 392.7c-4.7-4.7-4.7-12.3 0-17L122.7 256 4.2 136.3c-4.7-4.7-4.7-12.3 0-17L24 99.5c4.7-4.7 12.3-4.7 17 0l146.8 148c4.7 4.7 4.7 12.3 0 17z'/%3E%3C/svg%3E");background-repeat:no-repeat;background-size:contain;width:8px;height:16px}.button,.page:not(.home) .page:not(.page-template-sourcing) .dxoc-content-wrapper .box-notification,.page:not(.home) .page:not(.page-template-sourcing) .dxoc-content-wrapper .button,.page:not(.home) .page:not(.page-template-sourcing) .dxoc-content-wrapper div[style^="background-color: #993dbb"],.search-form .search-field,.search-form .search-submit,.single:not(.home) .dxoc-content-wrapper .box-notification,.single:not(.home) .dxoc-content-wrapper .button,.single:not(.home) .dxoc-content-wrapper div[style^="background-color: #993dbb"],.sourcing-finder button.rfp-creation-link{display:inline-block;padding:.75em 1em;border-radius:.25em;font-weight:700;line-height:1.2;transition:.3s;font-size:1em;border:none}.button:hover,.page:not(.home) .page:not(.page-template-sourcing) .dxoc-content-wrapper .box-notification:hover,.page:not(.home) .page:not(.page-template-sourcing) .dxoc-content-wrapper .button:hover,.page:not(.home) .page:not(.page-template-sourcing) .dxoc-content-wrapper div:hover[style^="background-color: #993dbb"],.search-form .search-field:hover,.search-form .search-submit:hover,.single:not(.home) .dxoc-content-wrapper .box-notification:hover,.single:not(.home) .dxoc-content-wrapper .button:hover,.single:not(.home) .dxoc-content-wrapper div:hover[style^="background-color: #993dbb"],.sourcing-finder button.rfp-creation-link:hover{transition:.3s}.button-primary{background-color:#993dbb;color:#fff}.button-primary:hover{background-color:#ae60cb;color:#ffff}.button-primary.button-outline{background-color:transparent;color:#993dbb;outline:double 1px #993dbb}.button-primary.button-outline:hover{background-color:#993dbb;color:#fff}.button-light{background:#fff;color:#212121}.button-light:hover{background:#fff;opacity:.9}.button-dark{background-color:#212121;color:#fff}.button-dark:hover{background-color:#3b3b3b}.button-darker{background-color:rgba(0,0,0,.2);color:#fff}.button-darker:hover{background-color:rgba(0,0,0,.4)}.button-ghost{border:2px solid rgba(0,0,0,.1);background:0 0;color:#212121}.button-ghost:hover{border-color:rgba(0,0,0,.4)}.button-ghost:focus{border-color:rgba(0,0,0,.3)}.button-ghost-purple{border:2px solid rgba(0,0,0,.1);background:0 0;color:#993dbb}.button-ghost-purple:hover{border-color:rgba(0,0,0,.4)}.button-ghost-purple:focus{border-color:rgba(0,0,0,.3)}.button-large{font-size:1.25em}.button-archive{padding-right:5rem}.button-wide{padding:.75em 1.25em}.button-cta,.search-form .search-field,.search-form .search-submit{width:100%;position:relative;border:solid 2px rgba(0,0,0,.1);color:#000;padding-right:3.2em}.button-cta:hover,.search-form .search-field:hover,.search-form .search-submit:hover{text-decoration:underline}.button-cta:hover:after,.search-form .search-field:hover:after,.search-form .search-submit:hover:after{text-decoration:none}.button-cta:after,.search-form .search-field:after,.search-form .search-submit:after{content:'';position:absolute;top:0;right:0;height:100%;display:flex;align-items:center;border-left:solid 1px rgba(0,0,0,.1);padding:0 1.25em;background-image:url("data:image/svg+xml,%3Csvg width='8' height='12' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11.6649 2.37695C12.0934 1.96601 12.1202 1.28111 11.6917 0.842771C11.2899 0.404435 10.6203 0.377039 10.1917 0.815375L6.01339 4.89738L1.80825 0.815375C1.37971 0.377039 0.710098 0.404435 0.308333 0.842771C-0.120216 1.28111 -0.0934314 1.96601 0.335118 2.37695L5.26343 7.19864C5.47771 7.41781 5.74555 7.5 6.01339 7.5C6.25445 7.5 6.52229 7.41781 6.73657 7.19864L11.6649 2.37695Z' fill='%23fff' transform='translate(0 12) rotate(-90)'/%3E%3C/svg%3E%0A");background-repeat:no-repeat;background-size:12px;background-position:60% 46%;width:56px}.button-cta.button-primary,.search-form .button-primary.search-field,.search-form .button-primary.search-submit{color:#fff}.button-cta.button-primary:after,.search-form .button-primary.search-field:after,.search-form .button-primary.search-submit:after{border-color:rgba(255,255,255,.1)}.button-cta.button-external-alt,.search-form .button-external-alt.search-field,.search-form .button-external-alt.search-submit{color:#999}.button-cta.button-external-alt:after,.search-form .button-external-alt.search-field:after,.search-form .button-external-alt.search-submit:after{background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cpath d='M432,288H416a16,16,0,0,0-16,16V458a6,6,0,0,1-6,6H54a6,6,0,0,1-6-6V118a6,6,0,0,1,6-6H208a16,16,0,0,0,16-16V80a16,16,0,0,0-16-16H48A48,48,0,0,0,0,112V464a48,48,0,0,0,48,48H400a48,48,0,0,0,48-48V304A16,16,0,0,0,432,288ZM500,0H364a12,12,0,0,0-8.48,20.48l48.19,48.21L131.51,340.89a12,12,0,0,0,0,17l22.63,22.63a12,12,0,0,0,17,0l272.2-272.21,48.21,48.2A12,12,0,0,0,512,148V12A12,12,0,0,0,500,0Z'/%3E%3C/svg%3E")}.button-large-cta{display:flex;align-items:center;justify-content:space-between;border:3px solid #ddd;color:#212121;padding:1.5em 1.25em;margin:2em 0}.button-large-cta:hover svg{color:#ae60cb}.button-large-cta .large-cta-wrap{width:calc(100% - 3em)}.button-large-cta p{font-size:1.125em;margin-bottom:.5em}.button-large-cta span{opacity:.5;font-weight:400;font-style:italic}.button-large-cta svg{font-size:1.25em;color:#993dbb}.button-expand{background:0 0;font-style:italic;color:#777;font-size:.8em;font-weight:400;padding-left:0}.button-full{width:100%}.button-safety-protocols{padding:0 1em 0 0}.btn-link{color:#993dbb}.entry-single .entry-content a.button-primary{color:#fff;text-decoration:none;text-align:center}.btn{--btn-color:var(--color-base);--btn-background-color:var(--color-primary);--btn-font-family:var(--font-primary-new);--btn-font-size:1.125em;--btn-font-weight:700;--btn-padding:0.75rem 2rem;--btn-border-color:var(--color-primary);--btn-arrow-icon-color:var(--color-primary);--btn-line-height:1.5;display:inline-block;background-color:var(--btn-background-color);color:var(--btn-color);font-family:var(--btn-font-family);font-size:var(--btn-font-size);font-weight:var(--btn-font-weight);line-height:var(--btn-line-height);padding:var(--btn-padding);border:2px solid;border-color:var(--btn-border-color);box-sizing:border-box}.btn.btn-small{--btn-font-size:1em;--btn-line-height:1.4}.btn.btn-medium{--btn-font-size:1.5em;--btn-line-height:1.3}@media (max-width:42rem){.btn.btn-medium{--btn-font-size:1.25em}}.btn.btn-custom{--btn-font-size:var(--font-size-custom);--btn-line-height:1.1365}.btn.btn-font-secondary{--btn-font-family:var(--font-secondary-new)}.btn.btn-primary.btn-inline{--btn-color:var(--color-primary)}.btn.btn-primary.btn-outline{--btn-color:var(--color-primary);--btn-background-color:transparent;--btn-border-color:var(--color-primary)}.btn.btn-danger{--btn-arrow-icon-color:var(--color-danger)}.btn.btn-danger:not(.btn-inline){--btn-background-color:var(--color-danger);--btn-border-color:var(--color-danger)}.btn.btn-danger.btn-inline{--btn-color:var(--color-danger)}.btn.btn-danger.btn-outline{--btn-color:var(--color-danger);--btn-background-color:transparent;--btn-border-color:var(--color-danger)}.btn.btn-subscribe{--btn-arrow-icon-color:var(--color-danger);display:flex;align-items:center}.btn.btn-subscribe:not(.btn-inline){--btn-background-color:white;--btn-border-color:var(--color-white);--btn-color:var(--color-primary);border:1px solid #fff;border-radius:5px;text-transform:uppercase;font-size:10px}.btn.btn-subscribe.btn-inline{--btn-color:var(--color-white)}.btn.btn-subscribe.btn-outline{--btn-color:var(--color-white);--btn-background-color:transparent;--btn-border-color:var(--color-white)}.btn.btn-subscribe .subscribe-button-thumbnail{max-width:70px;max-height:20px;-o-object-fit:cover;object-fit:cover;padding-left:5px}.btn.btn-inline{--btn-background-color:transparent;--btn-border-color:transparent}.btn.btn-inline-link{padding:0;border:0}.btn.btn-arrow-down,.btn.btn-arrow-right{display:flex;align-items:center}.btn.btn-arrow-right .btn-arrow-icon{margin-left:var(--spacing-extra-smaller)}.btn.btn-arrow-down .btn-arrow-icon{margin-left:calc(var(--spacing-extra-small)/ 2)}.btn.animated:hover .btn-arrow-icon-line svg{width:22px}.btn.btn-underlined{text-decoration:underline}.btn .btn-arrow-icon{position:relative;display:flex;align-items:center}.btn .btn-arrow-icon-line{display:flex;background-color:var(--btn-arrow-icon-color);transition:.25s ease-in-out}.btn .btn-arrow-icon-line svg{transition:.25s ease-in-out}.btn .btn-arrow-icon-line+svg{position:absolute;right:-1px}.btn-cta{display:flex;flex-wrap:wrap}.btn-cta.centered-content{justify-content:center}.btn-cta .btn:not(:last-child){margin-right:var(--spacing-small-medium)}@media (max-width:42rem){.btn-cta .btn{width:100%;max-width:100%;text-align:center}.btn-cta .btn:not(:first-child){margin-top:.625rem}.btn-cta .btn:not(:last-child){margin-right:0}}.section-fullwidth{padding:1.5em 0;position:relative}.section-fullwidth.text-white{color:#fff}.section-fullwidth.text-white hr{background-color:rgba(255,255,255,.2)}.section-fullwidth.text-white a{color:#fff}@media (max-width:82.125rem){.section-fullwidth .row{--row-breakpoint-width:calc(100% - 30px);--row-breakpoint-gap:30px;max-width:calc(100% - 30px)}}@media (max-width:62rem){.section-fullwidth .row{--row-breakpoint-width:calc(100% - 30px);--row-breakpoint-gap:30px;max-width:calc(100% - 30px)}}@media (max-width:50rem){.section-fullwidth .row{--row-breakpoint-width:calc(100% - 30px);--row-breakpoint-gap:30px;max-width:calc(100% - 30px)}}@media (max-width:42rem){.section-fullwidth .row{--row-breakpoint-width:calc(100% - 20px);--row-breakpoint-gap:20px;max-width:calc(100% - 20px)}}@media (min-width:40em){.section-fullwidth{padding:3em 0}}.section-fullwidth.button-section{padding:2em 0}.section-fullwidth.button-section .button-wrapper{display:flex;flex-direction:column;justify-content:center;align-items:center;margin-bottom:27px;text-align:center}.section-fullwidth.button-section .button-wrapper.flex-flow-row{flex-direction:row}@media (max-width:62rem){.section-fullwidth.button-section .button-wrapper.flex-flow-row{flex-direction:column}}.section-fullwidth.button-section .button-wrapper .button-wrapper-text{flex:1 1 auto}.section-fullwidth.button-section .button-wrapper .button-wrapper-ctas{flex:0 0 300px;margin-left:var(--grid-gap)}@media (max-width:62rem){.section-fullwidth.button-section .button-wrapper .button-wrapper-ctas{flex:0 0 auto;margin-left:0;width:100%;margin-top:1rem}}.section-fullwidth.button-section .button-wrapper .main-text{font-size:22px;margin-bottom:10px;font-family:var(--font-custom-default);font-weight:600}.section-fullwidth.button-section .button-wrapper .secondary-text{font-size:18px;font-family:var(--font-custom-default);font-weight:400}.section-fullwidth.button-section .button-wrapper .exclusive-text{font-size:18px;font-family:var(--font-custom-default);font-weight:600}.section-fullwidth.button-section .button-wrapper img{display:block;margin:auto;width:100%;max-width:300px}.section-fullwidth.button-section .button-wrapper .book-now-btn{display:flex;justify-content:center;cursor:pointer;line-height:1.2;color:#fff;font-family:"Fira Sans",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif}.section-purple{background:#993dbb}.section-purple .entry-header,.section-purple .section-heading{color:#fff}.section-purple .entry-header .entry-heading,.section-purple .entry-header .heading-title,.section-purple .section-heading .entry-heading,.section-purple .section-heading .heading-title{color:inherit}.page:not(.home) .page:not(.page-template-sourcing) .dxoc-content-wrapper .search-form .section-purple .search-field+.box-notification,.page:not(.home) .page:not(.page-template-sourcing) .dxoc-content-wrapper .search-form .section-purple .search-field+.button,.page:not(.home) .page:not(.page-template-sourcing) .dxoc-content-wrapper .search-form .section-purple .search-field+div[style^="background-color: #993dbb"],.page:not(.home) .page:not(.page-template-sourcing) .dxoc-content-wrapper .search-form .section-purple .search-submit+.box-notification,.page:not(.home) .page:not(.page-template-sourcing) .dxoc-content-wrapper .search-form .section-purple .search-submit+.button,.page:not(.home) .page:not(.page-template-sourcing) .dxoc-content-wrapper .search-form .section-purple .search-submit+div[style^="background-color: #993dbb"],.page:not(.home) .page:not(.page-template-sourcing) .dxoc-content-wrapper .section-purple .box-notification+.box-notification,.page:not(.home) .page:not(.page-template-sourcing) .dxoc-content-wrapper .section-purple .box-notification+.button,.page:not(.home) .page:not(.page-template-sourcing) .dxoc-content-wrapper .section-purple .box-notification+div[style^="background-color: #993dbb"],.page:not(.home) .page:not(.page-template-sourcing) .dxoc-content-wrapper .section-purple .button+.box-notification,.page:not(.home) .page:not(.page-template-sourcing) .dxoc-content-wrapper .section-purple .button+.button,.page:not(.home) .page:not(.page-template-sourcing) .dxoc-content-wrapper .section-purple .button+div[style^="background-color: #993dbb"],.page:not(.home) .page:not(.page-template-sourcing) .dxoc-content-wrapper .section-purple .search-form .box-notification+.search-field,.page:not(.home) .page:not(.page-template-sourcing) .dxoc-content-wrapper .section-purple .search-form .box-notification+.search-submit,.page:not(.home) .page:not(.page-template-sourcing) .dxoc-content-wrapper .section-purple .search-form .button+.search-field,.page:not(.home) .page:not(.page-template-sourcing) .dxoc-content-wrapper .section-purple .search-form .button+.search-submit,.page:not(.home) .page:not(.page-template-sourcing) .dxoc-content-wrapper .section-purple .search-form .search-field+.box-notification,.page:not(.home) .page:not(.page-template-sourcing) .dxoc-content-wrapper .section-purple .search-form .search-field+.button,.page:not(.home) .page:not(.page-template-sourcing) .dxoc-content-wrapper .section-purple .search-form .search-field+div[style^="background-color: #993dbb"],.page:not(.home) .page:not(.page-template-sourcing) .dxoc-content-wrapper .section-purple .search-form .search-submit+.box-notification,.page:not(.home) .page:not(.page-template-sourcing) .dxoc-content-wrapper .section-purple .search-form .search-submit+.button,.page:not(.home) .page:not(.page-template-sourcing) .dxoc-content-wrapper .section-purple .search-form .search-submit+div[style^="background-color: #993dbb"],.page:not(.home) .page:not(.page-template-sourcing) .dxoc-content-wrapper .section-purple .search-form div[style^="background-color: #993dbb"]+.search-field,.page:not(.home) .page:not(.page-template-sourcing) .dxoc-content-wrapper .section-purple .search-form div[style^="background-color: #993dbb"]+.search-submit,.page:not(.home) .page:not(.page-template-sourcing) .dxoc-content-wrapper .section-purple .sourcing-finder .box-notification+button.rfp-creation-link,.page:not(.home) .page:not(.page-template-sourcing) .dxoc-content-wrapper .section-purple .sourcing-finder .button+button.rfp-creation-link,.page:not(.home) .page:not(.page-template-sourcing) .dxoc-content-wrapper .section-purple .sourcing-finder button.rfp-creation-link+.box-notification,.page:not(.home) .page:not(.page-template-sourcing) .dxoc-content-wrapper .section-purple .sourcing-finder button.rfp-creation-link+.button,.page:not(.home) .page:not(.page-template-sourcing) .dxoc-content-wrapper .section-purple .sourcing-finder button.rfp-creation-link+div[style^="background-color: #993dbb"],.page:not(.home) .page:not(.page-template-sourcing) .dxoc-content-wrapper .section-purple .sourcing-finder div[style^="background-color: #993dbb"]+button.rfp-creation-link,.page:not(.home) .page:not(.page-template-sourcing) .dxoc-content-wrapper .section-purple div[style^="background-color: #993dbb"]+.box-notification,.page:not(.home) .page:not(.page-template-sourcing) .dxoc-content-wrapper .section-purple div[style^="background-color: #993dbb"]+.button,.page:not(.home) .page:not(.page-template-sourcing) .dxoc-content-wrapper .section-purple div[style^="background-color: #993dbb"]+div[style^="background-color: #993dbb"],.page:not(.home) .page:not(.page-template-sourcing) .dxoc-content-wrapper .sourcing-finder .section-purple button.rfp-creation-link+.box-notification,.page:not(.home) .page:not(.page-template-sourcing) .dxoc-content-wrapper .sourcing-finder .section-purple button.rfp-creation-link+.button,.page:not(.home) .page:not(.page-template-sourcing) .dxoc-content-wrapper .sourcing-finder .section-purple button.rfp-creation-link+div[style^="background-color: #993dbb"],.search-form .page:not(.home) .page:not(.page-template-sourcing) .dxoc-content-wrapper .section-purple .box-notification+.search-field,.search-form .page:not(.home) .page:not(.page-template-sourcing) .dxoc-content-wrapper .section-purple .box-notification+.search-submit,.search-form .page:not(.home) .page:not(.page-template-sourcing) .dxoc-content-wrapper .section-purple .button+.search-field,.search-form .page:not(.home) .page:not(.page-template-sourcing) .dxoc-content-wrapper .section-purple .button+.search-submit,.search-form .page:not(.home) .page:not(.page-template-sourcing) .dxoc-content-wrapper .section-purple div[style^="background-color: #993dbb"]+.search-field,.search-form .page:not(.home) .page:not(.page-template-sourcing) .dxoc-content-wrapper .section-purple div[style^="background-color: #993dbb"]+.search-submit,.search-form .section-purple .button+.search-field,.search-form .section-purple .button+.search-submit,.search-form .section-purple .page:not(.home) .page:not(.page-template-sourcing) .dxoc-content-wrapper .box-notification+.search-field,.search-form .section-purple .page:not(.home) .page:not(.page-template-sourcing) .dxoc-content-wrapper .box-notification+.search-submit,.search-form .section-purple .page:not(.home) .page:not(.page-template-sourcing) .dxoc-content-wrapper .button+.search-field,.search-form .section-purple .page:not(.home) .page:not(.page-template-sourcing) .dxoc-content-wrapper .button+.search-submit,.search-form .section-purple .page:not(.home) .page:not(.page-template-sourcing) .dxoc-content-wrapper .search-field+.box-notification,.search-form .section-purple .page:not(.home) .page:not(.page-template-sourcing) .dxoc-content-wrapper .search-field+.button,.search-form .section-purple .page:not(.home) .page:not(.page-template-sourcing) .dxoc-content-wrapper .search-field+div[style^="background-color: #993dbb"],.search-form .section-purple .page:not(.home) .page:not(.page-template-sourcing) .dxoc-content-wrapper .search-submit+.box-notification,.search-form .section-purple .page:not(.home) .page:not(.page-template-sourcing) .dxoc-content-wrapper .search-submit+.button,.search-form .section-purple .page:not(.home) .page:not(.page-template-sourcing) .dxoc-content-wrapper .search-submit+div[style^="background-color: #993dbb"],.search-form .section-purple .page:not(.home) .page:not(.page-template-sourcing) .dxoc-content-wrapper div[style^="background-color: #993dbb"]+.search-field,.search-form .section-purple .page:not(.home) .page:not(.page-template-sourcing) .dxoc-content-wrapper div[style^="background-color: #993dbb"]+.search-submit,.search-form .section-purple .search-field+.button,.search-form .section-purple .search-field+.search-field,.search-form .section-purple .search-field+.search-submit,.search-form .section-purple .search-submit+.button,.search-form .section-purple .search-submit+.search-field,.search-form .section-purple .search-submit+.search-submit,.search-form .section-purple .single:not(.home) .dxoc-content-wrapper .box-notification+.search-field,.search-form .section-purple .single:not(.home) .dxoc-content-wrapper .box-notification+.search-submit,.search-form .section-purple .single:not(.home) .dxoc-content-wrapper .button+.search-field,.search-form .section-purple .single:not(.home) .dxoc-content-wrapper .button+.search-submit,.search-form .section-purple .single:not(.home) .dxoc-content-wrapper .search-field+.box-notification,.search-form .section-purple .single:not(.home) .dxoc-content-wrapper .search-field+.button,.search-form .section-purple .single:not(.home) .dxoc-content-wrapper .search-field+div[style^="background-color: #993dbb"],.search-form .section-purple .single:not(.home) .dxoc-content-wrapper .search-submit+.box-notification,.search-form .section-purple .single:not(.home) .dxoc-content-wrapper .search-submit+.button,.search-form .section-purple .single:not(.home) .dxoc-content-wrapper .search-submit+div[style^="background-color: #993dbb"],.search-form .section-purple .single:not(.home) .dxoc-content-wrapper div[style^="background-color: #993dbb"]+.search-field,.search-form .section-purple .single:not(.home) .dxoc-content-wrapper div[style^="background-color: #993dbb"]+.search-submit,.search-form .section-purple .sourcing-finder .search-field+button.rfp-creation-link,.search-form .section-purple .sourcing-finder .search-submit+button.rfp-creation-link,.search-form .section-purple .sourcing-finder button.rfp-creation-link+.search-field,.search-form .section-purple .sourcing-finder button.rfp-creation-link+.search-submit,.search-form .single:not(.home) .dxoc-content-wrapper .section-purple .box-notification+.search-field,.search-form .single:not(.home) .dxoc-content-wrapper .section-purple .box-notification+.search-submit,.search-form .single:not(.home) .dxoc-content-wrapper .section-purple div[style^="background-color: #993dbb"]+.search-field,.search-form .single:not(.home) .dxoc-content-wrapper .section-purple div[style^="background-color: #993dbb"]+.search-submit,.search-form .sourcing-finder .section-purple button.rfp-creation-link+.search-field,.search-form .sourcing-finder .section-purple button.rfp-creation-link+.search-submit,.section-purple .button+.button,.section-purple .page:not(.home) .page:not(.page-template-sourcing) .dxoc-content-wrapper .box-notification+.box-notification,.section-purple .page:not(.home) .page:not(.page-template-sourcing) .dxoc-content-wrapper .box-notification+.button,.section-purple .page:not(.home) .page:not(.page-template-sourcing) .dxoc-content-wrapper .box-notification+div[style^="background-color: #993dbb"],.section-purple .page:not(.home) .page:not(.page-template-sourcing) .dxoc-content-wrapper .button+.box-notification,.section-purple .page:not(.home) .page:not(.page-template-sourcing) .dxoc-content-wrapper .button+.button,.section-purple .page:not(.home) .page:not(.page-template-sourcing) .dxoc-content-wrapper .button+div[style^="background-color: #993dbb"],.section-purple .page:not(.home) .page:not(.page-template-sourcing) .dxoc-content-wrapper .search-form .box-notification+.search-field,.section-purple .page:not(.home) .page:not(.page-template-sourcing) .dxoc-content-wrapper .search-form .box-notification+.search-submit,.section-purple .page:not(.home) .page:not(.page-template-sourcing) .dxoc-content-wrapper .search-form .button+.search-field,.section-purple .page:not(.home) .page:not(.page-template-sourcing) .dxoc-content-wrapper .search-form .button+.search-submit,.section-purple .page:not(.home) .page:not(.page-template-sourcing) .dxoc-content-wrapper .search-form div[style^="background-color: #993dbb"]+.search-field,.section-purple .page:not(.home) .page:not(.page-template-sourcing) .dxoc-content-wrapper .search-form div[style^="background-color: #993dbb"]+.search-submit,.section-purple .page:not(.home) .page:not(.page-template-sourcing) .dxoc-content-wrapper .sourcing-finder .box-notification+button.rfp-creation-link,.section-purple .page:not(.home) .page:not(.page-template-sourcing) .dxoc-content-wrapper .sourcing-finder .button+button.rfp-creation-link,.section-purple .page:not(.home) .page:not(.page-template-sourcing) .dxoc-content-wrapper .sourcing-finder div[style^="background-color: #993dbb"]+button.rfp-creation-link,.section-purple .page:not(.home) .page:not(.page-template-sourcing) .dxoc-content-wrapper div[style^="background-color: #993dbb"]+.box-notification,.section-purple .page:not(.home) .page:not(.page-template-sourcing) .dxoc-content-wrapper div[style^="background-color: #993dbb"]+.button,.section-purple .page:not(.home) .page:not(.page-template-sourcing) .dxoc-content-wrapper div[style^="background-color: #993dbb"]+div[style^="background-color: #993dbb"],.section-purple .search-form .button+.search-field,.section-purple .search-form .button+.search-submit,.section-purple .search-form .page:not(.home) .page:not(.page-template-sourcing) .dxoc-content-wrapper .search-field+.box-notification,.section-purple .search-form .page:not(.home) .page:not(.page-template-sourcing) .dxoc-content-wrapper .search-field+.button,.section-purple .search-form .page:not(.home) .page:not(.page-template-sourcing) .dxoc-content-wrapper .search-field+div[style^="background-color: #993dbb"],.section-purple .search-form .page:not(.home) .page:not(.page-template-sourcing) .dxoc-content-wrapper .search-submit+.box-notification,.section-purple .search-form .page:not(.home) .page:not(.page-template-sourcing) .dxoc-content-wrapper .search-submit+.button,.section-purple .search-form .page:not(.home) .page:not(.page-template-sourcing) .dxoc-content-wrapper .search-submit+div[style^="background-color: #993dbb"],.section-purple .search-form .search-field+.button,.section-purple .search-form .search-field+.search-field,.section-purple .search-form .search-field+.search-submit,.section-purple .search-form .search-submit+.button,.section-purple .search-form .search-submit+.search-field,.section-purple .search-form .search-submit+.search-submit,.section-purple .search-form .single:not(.home) .dxoc-content-wrapper .search-field+.box-notification,.section-purple .search-form .single:not(.home) .dxoc-content-wrapper .search-field+.button,.section-purple .search-form .single:not(.home) .dxoc-content-wrapper .search-field+div[style^="background-color: #993dbb"],.section-purple .search-form .single:not(.home) .dxoc-content-wrapper .search-submit+.box-notification,.section-purple .search-form .single:not(.home) .dxoc-content-wrapper .search-submit+.button,.section-purple .search-form .single:not(.home) .dxoc-content-wrapper .search-submit+div[style^="background-color: #993dbb"],.section-purple .search-form .sourcing-finder .search-field+button.rfp-creation-link,.section-purple .search-form .sourcing-finder .search-submit+button.rfp-creation-link,.section-purple .single:not(.home) .dxoc-content-wrapper .box-notification+.box-notification,.section-purple .single:not(.home) .dxoc-content-wrapper .box-notification+.button,.section-purple .single:not(.home) .dxoc-content-wrapper .box-notification+div[style^="background-color: #993dbb"],.section-purple .single:not(.home) .dxoc-content-wrapper .button+.box-notification,.section-purple .single:not(.home) .dxoc-content-wrapper .button+.button,.section-purple .single:not(.home) .dxoc-content-wrapper .button+div[style^="background-color: #993dbb"],.section-purple .single:not(.home) .dxoc-content-wrapper .search-form .box-notification+.search-field,.section-purple .single:not(.home) .dxoc-content-wrapper .search-form .box-notification+.search-submit,.section-purple .single:not(.home) .dxoc-content-wrapper .search-form div[style^="background-color: #993dbb"]+.search-field,.section-purple .single:not(.home) .dxoc-content-wrapper .search-form div[style^="background-color: #993dbb"]+.search-submit,.section-purple .single:not(.home) .dxoc-content-wrapper .sourcing-finder .box-notification+button.rfp-creation-link,.section-purple .single:not(.home) .dxoc-content-wrapper .sourcing-finder div[style^="background-color: #993dbb"]+button.rfp-creation-link,.section-purple .single:not(.home) .dxoc-content-wrapper div[style^="background-color: #993dbb"]+.box-notification,.section-purple .single:not(.home) .dxoc-content-wrapper div[style^="background-color: #993dbb"]+.button,.section-purple .single:not(.home) .dxoc-content-wrapper div[style^="background-color: #993dbb"]+div[style^="background-color: #993dbb"],.section-purple .sourcing-finder .button+button.rfp-creation-link,.section-purple .sourcing-finder .page:not(.home) .page:not(.page-template-sourcing) .dxoc-content-wrapper button.rfp-creation-link+.box-notification,.section-purple .sourcing-finder .page:not(.home) .page:not(.page-template-sourcing) .dxoc-content-wrapper button.rfp-creation-link+.button,.section-purple .sourcing-finder .page:not(.home) .page:not(.page-template-sourcing) .dxoc-content-wrapper button.rfp-creation-link+div[style^="background-color: #993dbb"],.section-purple .sourcing-finder .search-form button.rfp-creation-link+.search-field,.section-purple .sourcing-finder .search-form button.rfp-creation-link+.search-submit,.section-purple .sourcing-finder .single:not(.home) .dxoc-content-wrapper button.rfp-creation-link+.box-notification,.section-purple .sourcing-finder .single:not(.home) .dxoc-content-wrapper button.rfp-creation-link+.button,.section-purple .sourcing-finder .single:not(.home) .dxoc-content-wrapper button.rfp-creation-link+div[style^="background-color: #993dbb"],.section-purple .sourcing-finder button.rfp-creation-link+.button,.section-purple .sourcing-finder button.rfp-creation-link+button.rfp-creation-link,.single:not(.home) .dxoc-content-wrapper .search-form .section-purple .search-field+.box-notification,.single:not(.home) .dxoc-content-wrapper .search-form .section-purple .search-field+div[style^="background-color: #993dbb"],.single:not(.home) .dxoc-content-wrapper .search-form .section-purple .search-submit+.box-notification,.single:not(.home) .dxoc-content-wrapper .search-form .section-purple .search-submit+div[style^="background-color: #993dbb"],.single:not(.home) .dxoc-content-wrapper .section-purple .box-notification+.box-notification,.single:not(.home) .dxoc-content-wrapper .section-purple .box-notification+.button,.single:not(.home) .dxoc-content-wrapper .section-purple .box-notification+div[style^="background-color: #993dbb"],.single:not(.home) .dxoc-content-wrapper .section-purple .button+.box-notification,.single:not(.home) .dxoc-content-wrapper .section-purple .button+.button,.single:not(.home) .dxoc-content-wrapper .section-purple .button+div[style^="background-color: #993dbb"],.single:not(.home) .dxoc-content-wrapper .section-purple .search-form .box-notification+.search-field,.single:not(.home) .dxoc-content-wrapper .section-purple .search-form .box-notification+.search-submit,.single:not(.home) .dxoc-content-wrapper .section-purple .search-form .search-field+.box-notification,.single:not(.home) .dxoc-content-wrapper .section-purple .search-form .search-field+div[style^="background-color: #993dbb"],.single:not(.home) .dxoc-content-wrapper .section-purple .search-form .search-submit+.box-notification,.single:not(.home) .dxoc-content-wrapper .section-purple .search-form .search-submit+div[style^="background-color: #993dbb"],.single:not(.home) .dxoc-content-wrapper .section-purple .search-form div[style^="background-color: #993dbb"]+.search-field,.single:not(.home) .dxoc-content-wrapper .section-purple .search-form div[style^="background-color: #993dbb"]+.search-submit,.single:not(.home) .dxoc-content-wrapper .section-purple .sourcing-finder .box-notification+button.rfp-creation-link,.single:not(.home) .dxoc-content-wrapper .section-purple .sourcing-finder button.rfp-creation-link+.box-notification,.single:not(.home) .dxoc-content-wrapper .section-purple .sourcing-finder button.rfp-creation-link+div[style^="background-color: #993dbb"],.single:not(.home) .dxoc-content-wrapper .section-purple .sourcing-finder div[style^="background-color: #993dbb"]+button.rfp-creation-link,.single:not(.home) .dxoc-content-wrapper .section-purple div[style^="background-color: #993dbb"]+.box-notification,.single:not(.home) .dxoc-content-wrapper .section-purple div[style^="background-color: #993dbb"]+.button,.single:not(.home) .dxoc-content-wrapper .section-purple div[style^="background-color: #993dbb"]+div[style^="background-color: #993dbb"],.single:not(.home) .dxoc-content-wrapper .sourcing-finder .section-purple button.rfp-creation-link+.box-notification,.single:not(.home) .dxoc-content-wrapper .sourcing-finder .section-purple button.rfp-creation-link+div[style^="background-color: #993dbb"],.sourcing-finder .page:not(.home) .page:not(.page-template-sourcing) .dxoc-content-wrapper .section-purple .box-notification+button.rfp-creation-link,.sourcing-finder .page:not(.home) .page:not(.page-template-sourcing) .dxoc-content-wrapper .section-purple .button+button.rfp-creation-link,.sourcing-finder .page:not(.home) .page:not(.page-template-sourcing) .dxoc-content-wrapper .section-purple div[style^="background-color: #993dbb"]+button.rfp-creation-link,.sourcing-finder .search-form .section-purple .search-field+button.rfp-creation-link,.sourcing-finder .search-form .section-purple .search-submit+button.rfp-creation-link,.sourcing-finder .section-purple .button+button.rfp-creation-link,.sourcing-finder .section-purple .page:not(.home) .page:not(.page-template-sourcing) .dxoc-content-wrapper .box-notification+button.rfp-creation-link,.sourcing-finder .section-purple .page:not(.home) .page:not(.page-template-sourcing) .dxoc-content-wrapper .button+button.rfp-creation-link,.sourcing-finder .section-purple .page:not(.home) .page:not(.page-template-sourcing) .dxoc-content-wrapper button.rfp-creation-link+.box-notification,.sourcing-finder .section-purple .page:not(.home) .page:not(.page-template-sourcing) .dxoc-content-wrapper button.rfp-creation-link+.button,.sourcing-finder .section-purple .page:not(.home) .page:not(.page-template-sourcing) .dxoc-content-wrapper button.rfp-creation-link+div[style^="background-color: #993dbb"],.sourcing-finder .section-purple .page:not(.home) .page:not(.page-template-sourcing) .dxoc-content-wrapper div[style^="background-color: #993dbb"]+button.rfp-creation-link,.sourcing-finder .section-purple .search-form .search-field+button.rfp-creation-link,.sourcing-finder .section-purple .search-form .search-submit+button.rfp-creation-link,.sourcing-finder .section-purple .search-form button.rfp-creation-link+.search-field,.sourcing-finder .section-purple .search-form button.rfp-creation-link+.search-submit,.sourcing-finder .section-purple .single:not(.home) .dxoc-content-wrapper .box-notification+button.rfp-creation-link,.sourcing-finder .section-purple .single:not(.home) .dxoc-content-wrapper .button+button.rfp-creation-link,.sourcing-finder .section-purple .single:not(.home) .dxoc-content-wrapper button.rfp-creation-link+.box-notification,.sourcing-finder .section-purple .single:not(.home) .dxoc-content-wrapper button.rfp-creation-link+.button,.sourcing-finder .section-purple .single:not(.home) .dxoc-content-wrapper button.rfp-creation-link+div[style^="background-color: #993dbb"],.sourcing-finder .section-purple .single:not(.home) .dxoc-content-wrapper div[style^="background-color: #993dbb"]+button.rfp-creation-link,.sourcing-finder .section-purple button.rfp-creation-link+.button,.sourcing-finder .section-purple button.rfp-creation-link+button.rfp-creation-link,.sourcing-finder .single:not(.home) .dxoc-content-wrapper .section-purple .box-notification+button.rfp-creation-link,.sourcing-finder .single:not(.home) .dxoc-content-wrapper .section-purple div[style^="background-color: #993dbb"]+button.rfp-creation-link{margin-left:.75em}.section-dots{overflow:hidden}.section-dots-standard>.row:first-child{position:relative}.section-dots-standard>.row:first-child:after,.section-dots-standard>.row:first-child:before{position:absolute;display:block;content:"";background:url(//staging.smartmeetings.com/wp-content/themes/smartmeetings/assets/dist/images/grid-dots-1.svg);height:189px;width:457px;background-size:457px;z-index:-1}.section-dots-standard>.row:first-child:before{left:-270px;top:-50px}.section-dots-standard>.row:first-child:after{right:-270px;bottom:-50px}.section-dots-only-left>.row:first-child{position:relative}.section-dots-only-left>.row:first-child:before{position:absolute;display:block;content:"";background:url(//staging.smartmeetings.com/wp-content/themes/smartmeetings/assets/dist/images/grid-dots-1.svg);height:189px;width:457px;background-size:457px;z-index:-1}.section-dots-only-left>.row:first-child:before{left:-270px;top:-20px}.section-dots-vertical-left>.row:first-child{position:relative}.section-dots-vertical-left>.row:first-child:before{content:"";display:block;position:absolute;height:189px;width:457px;background-size:457px;background:url(//staging.smartmeetings.com/wp-content/themes/smartmeetings/assets/dist/images/grid-dots-1.svg);z-index:-1;transform:rotate(90deg);transform-origin:top left}.section-dots-vertical-left>.row:first-child:before{left:60px;top:0}@media (max-width:82em){.section-dots-only-left>.row:first-child:before,.section-dots-standard>.row:first-child:after,.section-dots-standard>.row:first-child:before,.section-dots-vertical-left>.row:first-child:before{display:none}}.section-heading{display:flex;justify-content:space-between;align-items:center;margin-bottom:1em}.section-heading-primary{flex-grow:1}.section-heading .heading-title{font-weight:400;font-size:1.75em}.section-heading .heading-title.heading-title-large{font-weight:700;font-size:2.25em}.section-heading .category-section-more{color:#777;font-size:.875em}.section-heading .category-section-more a{font-weight:700;color:#212121}.section-heading .heading-button{display:flex;justify-content:space-between;align-items:center;width:14em}.section-heading .heading-button svg{font-size:.6em}.section-heading-margin-top{margin-top:1em}@media (max-width:60em){.section-heading{flex-direction:column;align-items:flex-start}}.section-featured-slider .ad-wrapper{margin-top:2em;margin-bottom:2em}.section-featured-slider .ad-wrapper-inner{display:flex;justify-content:center}.section-featured-slider .table-header{text-align:start;padding:1.25em 1px .125em}.section-gradient-top{background-image:linear-gradient(to bottom,#f7f7f7,#fff);background-size:100% 70px;background-repeat:no-repeat}.section-gradient-top .ad-wrapper.align-center{margin-bottom:0}.section-archive-header{padding-bottom:0}.section-archive-header .heading-title{font-size:3.25em;color:#212121;font-weight:700}@media (max-width:30em){.section-archive-header .heading-title{font-size:2.25em}}.section-archive-header .heading-title-light{font-weight:400;opacity:.2}.section-entry-header{padding-bottom:0}.section-entry-header .entry-heading{position:relative}.section-entry-header .entry-heading:before{content:"";display:block;position:absolute;left:50px;top:.5em;height:189px;width:457px;background-size:457px;background:url(//staging.smartmeetings.com/wp-content/themes/smartmeetings/assets/dist/images/grid-dots-1.svg);z-index:-1;transform:rotate(90deg);transform-origin:top left}.section-entry-header+.section-main{padding-top:2em}@media (max-width:40em){.section-entry-header .entry-heading:before{width:250px;background-size:100%}}.section-page-header{background-image:linear-gradient(to bottom,#fff,#f8f8f8);padding:2em 0}.section-page-header .entry-header{max-width:50rem;margin:0 auto}.section-smartevents-hero .entry-header{margin-top:1.5em;margin-bottom:1.5em}.section-smartevents-hero .entry-description{font-size:1.25em}.section-smartevents-hero p{font-size:1em}.section-smartevents-hero h6{font-weight:400;font-size:1.25em;line-height:1.5;margin:1em 0}.section-webinars-single-hero{z-index:0;padding-bottom:8em;margin-bottom:4em}.section-webinars-single-hero:after{content:"";background:url(//staging.smartmeetings.com/wp-content/themes/smartmeetings/assets/dist/images/white-ark.svg) no-repeat bottom center;width:100%;height:100%;position:absolute;background-size:contain;bottom:0;top:auto;z-index:-1}.section-webinars-single-hero .entry-subheading{font-size:1.35em}.section-webinars-single-hero .entry-date{opacity:.5}.page:not(.home) .page:not(.page-template-sourcing) .dxoc-content-wrapper .section-webinars-single-hero .box-notification,.page:not(.home) .page:not(.page-template-sourcing) .dxoc-content-wrapper .section-webinars-single-hero .button,.page:not(.home) .page:not(.page-template-sourcing) .dxoc-content-wrapper .section-webinars-single-hero div[style^="background-color: #993dbb"],.search-form .section-webinars-single-hero .search-field,.search-form .section-webinars-single-hero .search-submit,.section-webinars-single-hero .button,.section-webinars-single-hero .page:not(.home) .page:not(.page-template-sourcing) .dxoc-content-wrapper .box-notification,.section-webinars-single-hero .page:not(.home) .page:not(.page-template-sourcing) .dxoc-content-wrapper .button,.section-webinars-single-hero .page:not(.home) .page:not(.page-template-sourcing) .dxoc-content-wrapper div[style^="background-color: #993dbb"],.section-webinars-single-hero .search-form .search-field,.section-webinars-single-hero .search-form .search-submit,.section-webinars-single-hero .single:not(.home) .dxoc-content-wrapper .box-notification,.section-webinars-single-hero .single:not(.home) .dxoc-content-wrapper .button,.section-webinars-single-hero .single:not(.home) .dxoc-content-wrapper div[style^="background-color: #993dbb"],.section-webinars-single-hero .sourcing-finder button.rfp-creation-link,.single:not(.home) .dxoc-content-wrapper .section-webinars-single-hero .box-notification,.single:not(.home) .dxoc-content-wrapper .section-webinars-single-hero .button,.single:not(.home) .dxoc-content-wrapper .section-webinars-single-hero div[style^="background-color: #993dbb"],.sourcing-finder .section-webinars-single-hero button.rfp-creation-link{position:absolute;border:0;bottom:-2em;text-align:center;margin:0 auto;left:0;right:0;width:200px;padding:1.5em 1.25em;z-index:1;box-shadow:0 6px 15px 0 rgba(0,0,0,.16)}.page:not(.home) .page:not(.page-template-sourcing) .dxoc-content-wrapper .section-webinars-single-hero .box-notification:hover,.page:not(.home) .page:not(.page-template-sourcing) .dxoc-content-wrapper .section-webinars-single-hero .button:hover,.page:not(.home) .page:not(.page-template-sourcing) .dxoc-content-wrapper .section-webinars-single-hero div:hover[style^="background-color: #993dbb"],.search-form .section-webinars-single-hero .search-field:hover,.search-form .section-webinars-single-hero .search-submit:hover,.section-webinars-single-hero .button:hover,.section-webinars-single-hero .page:not(.home) .page:not(.page-template-sourcing) .dxoc-content-wrapper .box-notification:hover,.section-webinars-single-hero .page:not(.home) .page:not(.page-template-sourcing) .dxoc-content-wrapper .button:hover,.section-webinars-single-hero .page:not(.home) .page:not(.page-template-sourcing) .dxoc-content-wrapper div:hover[style^="background-color: #993dbb"],.section-webinars-single-hero .search-form .search-field:hover,.section-webinars-single-hero .search-form .search-submit:hover,.section-webinars-single-hero .single:not(.home) .dxoc-content-wrapper .box-notification:hover,.section-webinars-single-hero .single:not(.home) .dxoc-content-wrapper .button:hover,.section-webinars-single-hero .single:not(.home) .dxoc-content-wrapper div:hover[style^="background-color: #993dbb"],.section-webinars-single-hero .sourcing-finder button.rfp-creation-link:hover,.single:not(.home) .dxoc-content-wrapper .section-webinars-single-hero .box-notification:hover,.single:not(.home) .dxoc-content-wrapper .section-webinars-single-hero .button:hover,.single:not(.home) .dxoc-content-wrapper .section-webinars-single-hero div:hover[style^="background-color: #993dbb"],.sourcing-finder .section-webinars-single-hero button.rfp-creation-link:hover{opacity:1;transform:scale(1.05)}.section-webinars-hero{background:linear-gradient(to top,#fff 0,#fff 5rem,#993dbb 5rem);z-index:0;padding:6.25rem 0 5rem}@media all and (-ms-high-contrast:none),(-ms-high-contrast:active){.section-webinars-hero{background:linear-gradient(to bottom,#993dbb 0,#993dbb 85%,#fff 85%)}}.section-webinars-hero .content-flexible-custom-wrapper{grid-template-columns:minmax(0,calc(66.66% + 30px)) 25.5em}.section-webinars-hero.__image-size-full .webinars-hero-image-frame,.section-webinars-hero.__image-size-overflow .webinars-hero-image-frame,.section-webinars-hero.__image-size-overflow-no-gap .webinars-hero-image-frame{max-width:100%}.section-webinars-hero.__image-size-full .webinars-hero-image-frame::after,.section-webinars-hero.__image-size-full .webinars-hero-image-frame::before,.section-webinars-hero.__image-size-overflow .webinars-hero-image-frame::after,.section-webinars-hero.__image-size-overflow .webinars-hero-image-frame::before,.section-webinars-hero.__image-size-overflow-no-gap .webinars-hero-image-frame::after,.section-webinars-hero.__image-size-overflow-no-gap .webinars-hero-image-frame::before{content:unset}.section-webinars-hero.__image-size-full .webinars-hero-image-frame img,.section-webinars-hero.__image-size-overflow .webinars-hero-image-frame img,.section-webinars-hero.__image-size-overflow-no-gap .webinars-hero-image-frame img{max-width:unset;width:100%}.section-webinars-hero.__image-size-overflow .row,.section-webinars-hero.__image-size-overflow-no-gap .row{max-width:100%;padding-right:calc(50% - var(--row-breakpoint-width)/ 2)}.section-webinars-hero.__image-size-overflow .webinars-hero-image-frame,.section-webinars-hero.__image-size-overflow-no-gap .webinars-hero-image-frame{direction:rtl}.section-webinars-hero.__image-size-overflow .row{padding-left:var(--grid-gap-old)}@media (max-width:82.125rem){.section-webinars-hero.__image-size-overflow .row{padding-left:calc(var(--row-breakpoint-gap)/ 2)}}@media (max-width:63.9375rem){.section-webinars-hero{background:#993dbb;padding:3rem 0}.section-webinars-hero .content-flexible-custom-wrapper{grid-template-columns:1fr;gap:5rem}.section-webinars-hero .content-flexible-custom-wrapper .primary-container,.section-webinars-hero .content-flexible-custom-wrapper .secondary-container{grid-column:unset}.section-webinars-hero .webinars-hero-image-frame,.section-webinars-hero .webinars-hero-inner{margin:auto;max-width:47.75rem}.section-webinars-hero.__image-size-overflow .row,.section-webinars-hero.__image-size-overflow-no-gap .row{padding-left:calc(var(--row-breakpoint-gap)/ 2);padding-right:calc(var(--row-breakpoint-gap)/ 2)}.section-webinars-hero.__image-size-overflow .webinars-hero-image-frame img,.section-webinars-hero.__image-size-overflow-no-gap .webinars-hero-image-frame img{max-width:100%}}.section-magazine-hero .magazine-hero-wrapper{display:flex;flex-wrap:wrap;position:relative;padding-left:6em;align-items:flex-start}.section-magazine-hero .magazine-hero-issued{transform-origin:center left;transform:rotate(-90deg);align-self:center;opacity:.1;position:absolute;bottom:0;left:1.5em;margin:0 auto;text-align:left;font-weight:700;font-size:2em;pointer-events:none}.section-magazine-hero .magazine-hero-image{max-width:16em}.section-magazine-hero .magazine-hero-content{flex:1;padding-left:3em;position:relative}.section-magazine-hero .magazine-hero-content .hero-buttons{display:flex;align-items:center;justify-content:space-between}.page:not(.home) .page:not(.page-template-sourcing) .dxoc-content-wrapper .section-magazine-hero .magazine-hero-content .hero-buttons-bundle .box-notification:first-child,.page:not(.home) .page:not(.page-template-sourcing) .dxoc-content-wrapper .section-magazine-hero .magazine-hero-content .hero-buttons-bundle .button:first-child,.page:not(.home) .page:not(.page-template-sourcing) .dxoc-content-wrapper .section-magazine-hero .magazine-hero-content .hero-buttons-bundle div:first-child[style^="background-color: #993dbb"],.search-form .section-magazine-hero .magazine-hero-content .hero-buttons-bundle .search-field:first-child,.search-form .section-magazine-hero .magazine-hero-content .hero-buttons-bundle .search-submit:first-child,.section-magazine-hero .magazine-hero-content .hero-buttons-bundle .button:first-child,.section-magazine-hero .magazine-hero-content .hero-buttons-bundle .page:not(.home) .page:not(.page-template-sourcing) .dxoc-content-wrapper .box-notification:first-child,.section-magazine-hero .magazine-hero-content .hero-buttons-bundle .page:not(.home) .page:not(.page-template-sourcing) .dxoc-content-wrapper .button:first-child,.section-magazine-hero .magazine-hero-content .hero-buttons-bundle .page:not(.home) .page:not(.page-template-sourcing) .dxoc-content-wrapper div:first-child[style^="background-color: #993dbb"],.section-magazine-hero .magazine-hero-content .hero-buttons-bundle .search-form .search-field:first-child,.section-magazine-hero .magazine-hero-content .hero-buttons-bundle .search-form .search-submit:first-child,.section-magazine-hero .magazine-hero-content .hero-buttons-bundle .single:not(.home) .dxoc-content-wrapper .box-notification:first-child,.section-magazine-hero .magazine-hero-content .hero-buttons-bundle .single:not(.home) .dxoc-content-wrapper div:first-child[style^="background-color: #993dbb"],.section-magazine-hero .magazine-hero-content .hero-buttons-bundle .sourcing-finder button.rfp-creation-link:first-child,.single:not(.home) .dxoc-content-wrapper .section-magazine-hero .magazine-hero-content .hero-buttons-bundle .box-notification:first-child,.single:not(.home) .dxoc-content-wrapper .section-magazine-hero .magazine-hero-content .hero-buttons-bundle div:first-child[style^="background-color: #993dbb"],.sourcing-finder .section-magazine-hero .magazine-hero-content .hero-buttons-bundle button.rfp-creation-link:first-child{margin-right:.5em}.section-magazine-hero .magazine-hero-content .hero-buttons-bundle .button-primaryg{border:2px solid #993dbb}.section-magazine-hero .entry-header{margin-bottom:2em}.section-magazine-hero .entry-heading{font-size:2.6em}.section-magazine-hero .entry-content{overflow:hidden;max-height:11.8em;margin:1em 0;position:relative}.section-magazine-hero .entry-content:after{content:"";height:2.5em;width:100%;position:absolute;bottom:0;background:linear-gradient(to bottom,rgba(255,255,255,0) 0,#fff 2em,#fff 2.5em)}.section-magazine-hero .magazine-hero-wrapper{width:100%;max-width:70em;margin:0 auto}@media (max-width:50em){.section-magazine-hero .magazine-hero-content{padding-left:2em}.section-magazine-hero .magazine-hero-wrapper{padding-left:3em}.section-magazine-hero .magazine-hero-issued{left:.33em}}@media (max-width:44em){.section-magazine-hero .magazine-hero-content{padding-left:1em}.section-magazine-hero .magazine-hero-wrapper{padding-left:0}.section-magazine-hero .magazine-hero-issued{position:relative;transform:none;flex:0 0 100%;opacity:.5;left:0}}@media (max-width:40em){.section-magazine-hero .magazine-hero-wrapper{flex-direction:column;max-width:25em;text-align:center;margin:0 auto}.section-magazine-hero .magazine-hero-wrapper .hero-buttons{flex-direction:column}.section-magazine-hero .magazine-hero-content{padding-left:0}.section-magazine-hero .magazine-hero-image{margin:1em auto}}.section-ad-holder{padding-bottom:0}.section-ad-holder .ad-wrapper{margin-bottom:0}.section-sourcing-above-hero{padding-bottom:0}.section-sourcing-above-hero .heading-title{display:flex;align-items:center}.section-sourcing-above-hero .section-heading{margin-bottom:0}.section-sourcing-hero{padding-top:0}.archive .entry-heading{display:inline-block}@media (max-width:30em){.archive .entry-heading{display:block}}.page-id-126888 section.section-page-header:first-of-type{padding:1.5em 0}.page-id-124690 .entry-page .entry-content:before{background:0 0}.page-id-124690 section.section-fullwidth.section-main{padding:0}.page-id-128677 section.section-page-header{padding:1.5em 0}.section-smart-stars-header{padding:0}.section-smart-stars-header .row-section-heading{position:absolute;z-index:120;bottom:-4.875rem;left:50%;transform:translateX(-50%)}@media screen and (max-width:64rem){.section-smart-stars-header .row-section-heading{bottom:-2.875rem}}.section-smart-stars-header .section-heading .heading-title{margin:0 auto}.section-smart-stars-header .welcome-thumbnail-wrapper{position:relative;height:34.375rem;margin-bottom:4.875rem}@media screen and (max-width:64rem){.section-smart-stars-header .welcome-thumbnail-wrapper{height:28rem;margin-bottom:2.875rem}}@media screen and (max-width:42rem){.section-smart-stars-header .welcome-thumbnail-wrapper{height:20rem}}.section-smart-stars-header .welcome-thumbnail-wrapper .open-jw-video-bg,.section-smart-stars-header .welcome-thumbnail-wrapper .open-jw-video-bg-events,.section-smart-stars-header .welcome-thumbnail-wrapper .open-jw-video-bg-podcast{position:absolute;height:100%;width:100%;-o-object-fit:cover;object-fit:cover;transition:.15s ease-in-out;opacity:0;z-index:0}.section-smart-stars-header .welcome-thumbnail-wrapper .video-bg{position:absolute;width:100%;height:100%}.section-smart-stars-header .welcome-thumbnail-wrapper .video-bg .jwplayer{position:absolute;height:100%!important;z-index:100}.section-smart-stars-header .welcome-thumbnail-wrapper .video-bg .jwplayer:not(.jw-state-playing)+.open-jw-video-bg,.section-smart-stars-header .welcome-thumbnail-wrapper .video-bg .open-jw-video-bg-events,.section-smart-stars-header .welcome-thumbnail-wrapper .video-bg .open-jw-video-bg-podcast{z-index:101;opacity:1}.section-smart-stars-header .welcome-thumbnail-wrapper.__img-only{height:0;padding-bottom:calc(100% * 55/128)}.section-smart-stars-header .welcome-thumbnail-wrapper.__img-only img{position:absolute;height:100%;width:100%;-o-object-fit:cover;object-fit:cover}@media screen and (max-width:64rem){.section-smart-stars-header .welcome-thumbnail-wrapper.__img-only{height:28rem}}@media screen and (max-width:42rem){.section-smart-stars-header .welcome-thumbnail-wrapper.__img-only{height:20rem;padding-bottom:0}}.section-smart-stars-header .section-heading{width:calc(100% - 4rem);max-width:66.5rem;display:flex;flex-direction:column;justify-content:center;color:#fff;margin:0 auto;padding:3.75rem;background-color:var(--color-base-light-muted)}@media screen and (max-width:64rem){.section-smart-stars-header .section-heading{padding:1.75rem}}@media screen and (max-width:42rem){.section-smart-stars-header .section-heading{padding:1.25rem}}.section-smart-stars-header .heading-title{font-family:var(--font-primary-new);font-size:3em;font-weight:700;line-height:1.33333333;color:var(--color-primary);text-align:center}@media screen and (max-width:64rem){.section-smart-stars-header .heading-title{font-size:1.75em}}@media screen and (max-width:42rem){.section-smart-stars-header .heading-title{font-size:1.625em}}.section-smart-stars-header .heading-description{font-size:1.375em}@media screen and (max-width:48em){.section-category-menus .medium-4{flex:0 0 100%;max-width:100%}}.section-site-branding{display:flex;flex-direction:column;justify-content:center;align-items:center;position:relative;margin-bottom:-1.375rem}.page-template-smart-stars .section-site-branding{padding-bottom:0;margin-bottom:0}.section-site-branding .site-branding-border{position:absolute;top:50%;left:50%;transform:translate3d(-50%,-50%,0);height:.125rem;width:100%;border-bottom:1px solid #ddd;padding-bottom:1px;z-index:-1}.section-site-branding .site-branding-wrapper{position:relative;height:0;width:100%;max-width:28.25em;padding-top:7em;margin-top:2.75em}.section-site-branding .site-branding-wrapper img{position:absolute;top:0;left:0;-o-object-fit:cover;object-fit:cover;width:100%;height:100%}.section-site-branding .site-branding-wrapper+.section-heading{margin-top:.5rem}.section-site-branding .section-heading{display:flex;align-items:center;margin-bottom:0}.section-site-branding .section-heading .heading-title{position:relative;font-size:2.25em;color:#231e1f;text-transform:uppercase;letter-spacing:.3em;background-color:var(--color-base);padding:0 2.5rem;text-align:center}.page-template-smart-stars .section-site-branding .section-heading{padding-bottom:1rem;margin-bottom:1.75rem;border-bottom:1px solid var(--color-base-light-muted);width:100%;display:block}.page-template-smart-stars .section-site-branding .section-heading .heading-title{color:var(--color-base-light);font-family:var(--font-secondary-new);font-size:2em;font-weight:700;letter-spacing:unset;background-color:transparent;text-align:start;padding:0;text-transform:unset}@media screen and (max-width:48em){.section-site-branding .site-branding-wrapper{margin-top:0;max-width:22.25em;padding-top:5em}.section-site-branding .section-heading .heading-title{font-size:1.5em}.section-site-branding .site-branding-border{display:none}}@media (max-width:26.25em){.section-site-branding .site-branding-wrapper{max-width:18em;padding-top:4em}}.section-categories-wrapper .section-heading{margin-bottom:3.25em;min-height:5.5em}.section-categories-wrapper .heading-title{color:#212121;font-weight:700;font-size:2.25em}.section-categories-wrapper .separator-wrapper{border-bottom:1px solid #ddd}@media (max-width:52.5rem) and (min-width:50.0625rem){.section-categories-wrapper .grid-container.three-boxes{--grid-columns-count:repeat(2, 1fr)}}@media screen and (max-width:48em){.section-categories-wrapper .medium-4{max-width:100%;flex:0 0 100%}}.page-template-smart-stars .section-categories-wrapper .category-wrapper{height:100%;margin-bottom:0;border:1px solid var(--color-base-light-muted)}.page-template-smart-stars .section-categories-wrapper .columns .section-heading{padding-bottom:1rem;margin-bottom:1.75rem;border-bottom:1px solid var(--color-base-light-muted);width:100%;display:block;min-height:unset}.page-template-smart-stars .section-categories-wrapper .columns .heading-title{color:var(--color-base-light);font-family:var(--font-secondary-new);font-size:2em;font-weight:700;letter-spacing:unset;background-color:transparent;text-align:start;padding:0;text-transform:unset}.page-template-smart-stars .section-categories-wrapper .grid-container-more-categories .category-badge-wrapper{display:none}.page-template-smart-stars .section-categories-wrapper .grid-container-more-categories .section-heading{background-color:var(--color-base-light-muted);padding:1.125rem 1.25rem;min-height:unset;border-radius:0;margin-bottom:0}@media screen and (max-width:48em){.page-template-smart-stars .section-categories-wrapper .grid-container-more-categories .section-heading{padding-right:3.25rem}.page-template-smart-stars .section-categories-wrapper .grid-container-more-categories .section-heading .mobile-dropdown-wrapper{transition:.5s;transform-origin:center center;width:1rem;height:1rem;position:absolute;right:1.125rem;display:flex;justify-content:center;align-items:center}}.page-template-smart-stars .section-categories-wrapper .grid-container-more-categories .heading-title{color:var(--color-primary);font-family:var(--font-primary-new);font-size:1.5em;font-weight:700;line-height:1.25}.page-template-smart-stars .section-categories-wrapper .category-menu-wrapper .menu{font-size:1rem}.page-template-smart-stars .section-categories-wrapper .category-menu-wrapper .menu-item{padding:0 1.25rem}.page-template-smart-stars .section-categories-wrapper .category-menu-wrapper .menu-item a{color:var(--color-base-light);font-family:var(--font-primary-new);font-size:1.25em;font-weight:700;line-height:1.25;padding:.875rem 0;border-bottom:1px solid var(--color-base-light-muted);transition:color .25s ease-in-out}.page-template-smart-stars .section-categories-wrapper .category-menu-wrapper .menu-item a:hover{color:var(--color-primary)}.page-template-smart-stars .section-categories-wrapper .category-menu-wrapper .menu-item:last-child a{border-bottom:1px solid transparent}.page-template-smart-stars .section-categories-wrapper .mobile-dropdown-wrapper path{fill:currentColor}.section-sticky{display:flex;flex-direction:column;position:relative}.sticky-menu-wrapper{position:absolute;transform:rotate(-90deg);width:10em;right:calc(50% - 50em);top:9.5em}.sticky-menu-wrapper::after,.sticky-menu-wrapper::before{content:"";position:absolute;width:1px;height:1.5em;border:1px solid #ddd;transform:rotate(90deg)}.sticky-menu-wrapper::after{right:-1em;top:-.0625em}.sticky-menu-wrapper::before{left:-2em}.sticky-menu-wrapper .sticky-menu-button{cursor:pointer;text-transform:uppercase;font-weight:700;letter-spacing:.3em;color:#333}@media screen and (max-width:91.75em){.sticky-menu-wrapper{right:calc(50% - 47em)}}@media screen and (max-width:86em){.sticky-menu-wrapper{display:none}}.section-featured-winners{padding-top:0}.section-featured-winners .entry-featured{margin-bottom:0;height:calc(100%)}.section-featured-winners .entry-featured a{height:100%;display:flex;flex-direction:column}.section-featured-winners .entry-featured a:hover .entry-featured-body,.section-featured-winners .entry-featured a:hover .entry-see-more{border-color:var(--color-primary)}.section-featured-winners .entry-featured .entry-thumbnail-wrapper{margin-bottom:0;padding-bottom:calc(100% * 250 / 409)}.section-featured-winners .entry-featured .entry-thumbnail-wrapper img{border-radius:0}.section-featured-winners .entry-featured .entry-featured-body{padding:1.25rem;border:1px solid var(--color-base-light-muted);transition:border .25s ease-in-out;border-top:transparent;width:100%;position:relative;flex:1 0 auto}.section-featured-winners .entry-featured .entry-title{color:var(--color-base-light);font-size:1.375em;margin-bottom:.625rem;font-family:var(--font-primary-new)}.section-featured-winners .entry-featured .entry-excerpt{margin-bottom:4rem;font-family:var(--font-secondary-new)}.section-featured-winners .entry-featured .entry-see-more{left:1.25rem;bottom:0;position:absolute;padding-top:1.25rem;padding-bottom:1.25rem;border-top:1px solid var(--color-base-light-muted);width:calc(100% - 2.5rem);transition:border .25s ease-in-out}.section-featured-winners .entry-featured .entry-see-more .see-more{color:var(--color-primary);font-size:1em;font-family:var(--font-primary-new);font-weight:700;line-height:1.375}@media (max-width:52.5rem) and (min-width:50.0625rem){.section-featured-winners .grid-container.three-boxes{--grid-columns-count:repeat(2, 1fr)}}.section-marketplace{padding:2em 0}.section-marketplace .marketplace-header{position:relative;height:0;width:100%;padding-bottom:6%;margin-bottom:2em}.section-marketplace .marketplace-header img{max-width:25em;position:absolute;top:0;left:50%;width:100%;height:100%;-o-object-fit:contain;object-fit:contain;transform:translate3d(-50%,0,0)}@media screen and (max-width:40em){.section-marketplace .marketplace-header{padding-bottom:8%}}.slider-controller{font-size:14px;word-spacing:-.3em}.slider-controller.owl-nav{text-align:right;margin:1em 1em 1em 0}.slider-controller .controller-current,.slider-controller .controller-separator,.slider-controller .controller-total{opacity:.5;vertical-align:top}.slider-controller .controller-next,.slider-controller .controller-prev{position:relative;cursor:pointer;font-size:1.5em;background-color:transparent;border:none;padding:0}.slider-controller .controller-next:focus,.slider-controller .controller-prev:focus{outline:0}.slider-controller .controller-next:focus:after,.slider-controller .controller-prev:focus:after{opacity:1}.slider-controller .controller-next:after,.slider-controller .controller-prev:after{content:"";display:block;position:absolute;height:1em;width:1em;background:rgba(0,0,0,.05);top:0;z-index:-1;border-radius:50%;transform:scale(2);opacity:0;transition:.5s}.slider-controller .controller-next:hover:after,.slider-controller .controller-prev:hover:after{transform:scale(2.5);opacity:1;transition:.3s}.slider-controller .controller-prev{margin-right:1em}.slider-controller .controller-prev:before{content:'';position:relative;display:block;background-image:url("data:image/svg+xml,%3Csvg width='18' height='21' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512'%3E%3Cpath d='M229.9 473.899l19.799-19.799c4.686-4.686 4.686-12.284 0-16.971L94.569 282H436c6.627 0 12-5.373 12-12v-28c0-6.627-5.373-12-12-12H94.569l155.13-155.13c4.686-4.686 4.686-12.284 0-16.971L229.9 38.101c-4.686-4.686-12.284-4.686-16.971 0L3.515 247.515c-4.686 4.686-4.686 12.284 0 16.971L212.929 473.9c4.686 4.686 12.284 4.686 16.971-.001z' fill='%23404040'/%3E%3C/svg%3E");background-repeat:no-repeat;background-size:contain;width:28px;height:32px}.slider-controller .controller-next{margin-left:1em}.slider-controller .controller-next:before{content:'';position:relative;display:block;background-image:url("data:image/svg+xml,%3Csvg width='18' height='21' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512'%3E%3Cpath d='M218.101 38.101L198.302 57.9c-4.686 4.686-4.686 12.284 0 16.971L353.432 230H12c-6.627 0-12 5.373-12 12v28c0 6.627 5.373 12 12 12h341.432l-155.13 155.13c-4.686 4.686-4.686 12.284 0 16.971l19.799 19.799c4.686 4.686 12.284 4.686 16.971 0l209.414-209.414c4.686-4.686 4.686-12.284 0-16.971L235.071 38.101c-4.686-4.687-12.284-4.687-16.97 0z' fill='%23404040' /%3E%3C/svg%3E");background-repeat:no-repeat;background-size:contain;width:28px;height:32px}@media screen and (min-width:960px){.page:not(.home) .page:not(.page-template-sourcing) .slider-controller,.single:not(.home) .slider-controller{width:100%;position:absolute;top:0}}.page:not(.home) .page:not(.page-template-sourcing) .slider-controller .controller-next,.page:not(.home) .page:not(.page-template-sourcing) .slider-controller .controller-prev,.single:not(.home) .slider-controller .controller-next,.single:not(.home) .slider-controller .controller-prev{position:absolute;z-index:10;font-size:2rem}@media screen and (min-width:960px) and (max-width:1060px){.page:not(.home) .page:not(.page-template-sourcing) .slider-controller .controller-next,.page:not(.home) .page:not(.page-template-sourcing) .slider-controller .controller-prev,.single:not(.home) .slider-controller .controller-next,.single:not(.home) .slider-controller .controller-prev{top:8em}}@media screen and (min-width:1061px) and (max-width:1170px){.page:not(.home) .page:not(.page-template-sourcing) .slider-controller .controller-next,.page:not(.home) .page:not(.page-template-sourcing) .slider-controller .controller-prev,.single:not(.home) .slider-controller .controller-next,.single:not(.home) .slider-controller .controller-prev{top:9em}}@media screen and (min-width:1171px) and (max-width:1269px){.page:not(.home) .page:not(.page-template-sourcing) .slider-controller .controller-next,.page:not(.home) .page:not(.page-template-sourcing) .slider-controller .controller-prev,.single:not(.home) .slider-controller .controller-next,.single:not(.home) .slider-controller .controller-prev{top:10em}}@media only screen and (min-width:1270px){.page:not(.home) .page:not(.page-template-sourcing) .slider-controller .controller-next,.page:not(.home) .page:not(.page-template-sourcing) .slider-controller .controller-prev,.single:not(.home) .slider-controller .controller-next,.single:not(.home) .slider-controller .controller-prev{top:11em}}.page:not(.home) .page:not(.page-template-sourcing) .slider-controller .controller-next::after,.page:not(.home) .page:not(.page-template-sourcing) .slider-controller .controller-prev::after,.single:not(.home) .slider-controller .controller-next::after,.single:not(.home) .slider-controller .controller-prev::after{opacity:1;background-color:rgba(255,255,255,.5)}@media screen and (max-width:960px){.page:not(.home) .page:not(.page-template-sourcing) .slider-controller .controller-next::after,.page:not(.home) .page:not(.page-template-sourcing) .slider-controller .controller-prev::after,.single:not(.home) .slider-controller .controller-next::after,.single:not(.home) .slider-controller .controller-prev::after{background-color:transparent}}@media screen and (max-width:60em){.page:not(.home) .page:not(.page-template-sourcing) .slider-controller .controller-next,.page:not(.home) .page:not(.page-template-sourcing) .slider-controller .controller-prev,.single:not(.home) .slider-controller .controller-next,.single:not(.home) .slider-controller .controller-prev{top:0}}.page:not(.home) .page:not(.page-template-sourcing) .slider-controller .controller-prev,.single:not(.home) .slider-controller .controller-prev{left:.75em}.page:not(.home) .page:not(.page-template-sourcing) .slider-controller .controller-prev::after,.single:not(.home) .slider-controller .controller-prev::after{right:50%;margin-right:-.5em}@media screen and (max-width:60em){.page:not(.home) .page:not(.page-template-sourcing) .slider-controller .controller-prev,.single:not(.home) .slider-controller .controller-prev{left:0}}.page:not(.home) .page:not(.page-template-sourcing) .slider-controller .controller-next,.single:not(.home) .slider-controller .controller-next{left:auto;right:.75em}@media screen and (max-width:60em){.page:not(.home) .page:not(.page-template-sourcing) .slider-controller .controller-next,.single:not(.home) .slider-controller .controller-next{right:0}}.page:not(.home) .page:not(.page-template-sourcing) .slider-controller .controller-next::after,.single:not(.home) .slider-controller .controller-next::after{left:50%;margin-left:-.5em}.page:not(.home) .page:not(.page-template-sourcing) .slider-controller .controller-current,.page:not(.home) .page:not(.page-template-sourcing) .slider-controller .controller-separator,.page:not(.home) .page:not(.page-template-sourcing) .slider-controller .controller-total,.single:not(.home) .slider-controller .controller-current,.single:not(.home) .slider-controller .controller-separator,.single:not(.home) .slider-controller .controller-total{display:none}.page:not(.home) .page:not(.page-template-sourcing) .dxoc-attachment,.single:not(.home) .dxoc-attachment{margin-bottom:1.5rem}.page:not(.home) .page:not(.page-template-sourcing) .dxoc-content-wrapper .box-notification,.page:not(.home) .page:not(.page-template-sourcing) .dxoc-content-wrapper .button,.page:not(.home) .page:not(.page-template-sourcing) .dxoc-content-wrapper .search-form .search-field,.page:not(.home) .page:not(.page-template-sourcing) .dxoc-content-wrapper .search-form .search-submit,.page:not(.home) .page:not(.page-template-sourcing) .dxoc-content-wrapper .sourcing-finder button.rfp-creation-link,.page:not(.home) .page:not(.page-template-sourcing) .dxoc-content-wrapper div[style^="background-color: #993dbb"],.page:not(.home) .page:not(.page-template-sourcing) .single:not(.home) .dxoc-content-wrapper .box-notification,.page:not(.home) .page:not(.page-template-sourcing) .single:not(.home) .dxoc-content-wrapper .button,.page:not(.home) .page:not(.page-template-sourcing) .single:not(.home) .dxoc-content-wrapper div[style^="background-color: #993dbb"],.search-form .page:not(.home) .page:not(.page-template-sourcing) .dxoc-content-wrapper .search-field,.search-form .page:not(.home) .page:not(.page-template-sourcing) .dxoc-content-wrapper .search-submit,.search-form .single:not(.home) .dxoc-content-wrapper .search-field,.search-form .single:not(.home) .dxoc-content-wrapper .search-submit,.single:not(.home) .dxoc-content-wrapper .box-notification,.single:not(.home) .dxoc-content-wrapper .button,.single:not(.home) .dxoc-content-wrapper .search-form .search-field,.single:not(.home) .dxoc-content-wrapper .search-form .search-submit,.single:not(.home) .dxoc-content-wrapper .sourcing-finder button.rfp-creation-link,.single:not(.home) .dxoc-content-wrapper div[style^="background-color: #993dbb"],.single:not(.home) .page:not(.home) .page:not(.page-template-sourcing) .dxoc-content-wrapper .box-notification,.single:not(.home) .page:not(.home) .page:not(.page-template-sourcing) .dxoc-content-wrapper .button,.single:not(.home) .page:not(.home) .page:not(.page-template-sourcing) .dxoc-content-wrapper div[style^="background-color: #993dbb"],.sourcing-finder .page:not(.home) .page:not(.page-template-sourcing) .dxoc-content-wrapper button.rfp-creation-link,.sourcing-finder .single:not(.home) .dxoc-content-wrapper button.rfp-creation-link{display:table;min-width:5rem;margin:1em auto;text-align:center;text-transform:uppercase;cursor:pointer;font-size:1rem}.page:not(.home) .page:not(.page-template-sourcing) .dxoc-content-wrapper div[style^="background-color: #993dbb"],.single:not(.home) .dxoc-content-wrapper div[style^="background-color: #993dbb"]{font-size:1rem!important;padding:.75em 1em!important}.btn-arrow-icon{width:-moz-fit-content;width:fit-content;position:relative;display:flex;align-items:center;margin-left:var(--spacing-extra-smaller)}.btn-arrow-icon svg{transition:width .25s ease-in-out}.btn-arrow-icon-line{display:flex;transition:.25s ease-in-out}.btn-arrow-icon-line+svg{position:absolute;right:-1px}@media screen and (min-width:960px){.entry .owl-carousel .dxoc-title-wrapper{min-height:52px}}@media screen and (max-width:60em){.entry .owl-carousel .dxoc-title{margin-top:0;padding-top:1.25em}}.popup-loader{display:block;width:30px;height:30px;margin:10px auto}.load-more{margin-bottom:1.5em}.load-more button{cursor:pointer}.row-slider .row{display:none}.row-slider .row.is-active{display:flex}@media (max-width:40em){.row-slider .entry{margin-bottom:3em}}.pagination-centered{display:flex;width:-moz-fit-content;width:fit-content;margin:1.5em auto .5em}.pagination .nav-links{display:flex;justify-content:center}@media (min-width:60em){.pagination .nav-links{flex-wrap:wrap}}.pagination .page-numbers{width:3em;height:3em;display:flex;align-items:center;justify-content:center;color:#212121;border:2px solid rgba(0,0,0,.1);margin:.5em;border-radius:.25em;cursor:pointer;transition:.2s;font-weight:700}@media (max-width:30em){.pagination .page-numbers{width:2.2em;margin:0 .3em}}@media (min-width:60em){.pagination .page-numbers{font-size:1.25em}}.pagination .page-numbers.next,.pagination .page-numbers.prev{width:auto;border-color:transparent;padding-left:1em;padding-right:1em}@media (max-width:30em){.pagination .page-numbers.next,.pagination .page-numbers.prev{width:6em;padding-left:.5em;padding-right:.5em}}.pagination .page-numbers:hover{border-color:#993dbb;color:#993dbb;transition:.2s}.pagination .page-numbers.current{color:#212121;border-color:#212121}.pagination .page-numbers.dots{border-color:transparent;cursor:default}@media (max-width:30em){.pagination .page-numbers.dots{width:1.5em;margin-left:0;margin-right:0}}.pagination .page-numbers.dots:hover{border-color:transparent}.shared-video{position:relative;padding-bottom:56.25%;height:0;border-radius:12px;overflow:hidden}.shared-video-description{margin-top:1.5em;font-size:1em}.shared-video iframe{width:100%;height:100%;position:absolute}.testimonial-slider{margin:1.5em 0}.testimonial-slider-container{border:3px solid #f2f2f2;border-radius:6px;border-bottom-left-radius:0}.testimonial-slider-item{padding:2.5em 3.125em 5.625em;position:relative}@media (max-width:60em){.testimonial-slider-item{padding:2.5em 1.8em}}.testimonial-slider-title{font-size:2.25em;color:#000}.testimonial-slider-text{font-style:italic;font-size:1.25em;line-height:1.5}.testimonial-slider-author{position:absolute;font-weight:700;font-size:.85em;right:60px;bottom:45px}@media (max-width:60em){.testimonial-slider-author{position:static}}.testimonial-slider .slider-controller{background:#f2f2f2;padding:rem-calc(10px 20px);display:inline-block}.pill{background:#993dbb;color:#fff;padding:.25em .65em;border-radius:16px;z-index:1}.pill.pill-warning{background:#dab856}.pill.pill-error{background:#ea4242}.box-clean{padding:1.5em;text-align:center}.box-cta{border:2px solid #993dbb;color:#000;position:relative;overflow:hidden;margin-bottom:3.125em}.box-cta:after{content:"";position:absolute;top:-5em;right:0;width:25em;height:25em;background:url() no-repeat;z-index:-1;background-size:cover}.box-cta-inner{padding:4em 3em;display:flex;align-items:center;flex-wrap:wrap}.box-cta-split-left,.box-cta-split-right{width:50%}.box-cta-split-left{padding-right:1em;margin-bottom:1.5em}.box-cta-inner-meta{padding:2em 5em}.box-cta-text{color:#000;opacity:.7;line-height:2}.box-cta-meta{display:flex;justify-content:space-between;align-items:center;border-top:1px solid rgba(0,0,0,.1);padding:1em 3em}.box-cta-meta img{max-width:10em}.box-cta-meta .button,.box-cta-meta .page:not(.home) .page:not(.page-template-sourcing) .dxoc-content-wrapper .box-notification,.box-cta-meta .page:not(.home) .page:not(.page-template-sourcing) .dxoc-content-wrapper .button,.box-cta-meta .page:not(.home) .page:not(.page-template-sourcing) .dxoc-content-wrapper div[style^="background-color: #993dbb"],.box-cta-meta .search-form .search-field,.box-cta-meta .search-form .search-submit,.box-cta-meta .single:not(.home) .dxoc-content-wrapper .box-notification,.box-cta-meta .single:not(.home) .dxoc-content-wrapper .button,.box-cta-meta .single:not(.home) .dxoc-content-wrapper div[style^="background-color: #993dbb"],.box-cta-meta .sourcing-finder button.rfp-creation-link,.page:not(.home) .page:not(.page-template-sourcing) .dxoc-content-wrapper .box-cta-meta .box-notification,.page:not(.home) .page:not(.page-template-sourcing) .dxoc-content-wrapper .box-cta-meta .button,.page:not(.home) .page:not(.page-template-sourcing) .dxoc-content-wrapper .box-cta-meta div[style^="background-color: #993dbb"],.search-form .box-cta-meta .search-field,.search-form .box-cta-meta .search-submit,.single:not(.home) .dxoc-content-wrapper .box-cta-meta .box-notification,.single:not(.home) .dxoc-content-wrapper .box-cta-meta .button,.single:not(.home) .dxoc-content-wrapper .box-cta-meta div[style^="background-color: #993dbb"],.sourcing-finder .box-cta-meta button.rfp-creation-link{padding:1.25em 1em}@media (max-width:60em){.box-cta{text-align:center}.box-cta-inner{padding:3em 3em 1.5em}.box-cta-split-left,.box-cta-split-right{width:100%}.box-cta-meta{justify-content:center}.box-cta-meta img{display:none}}.webinars-hero{border-radius:5px;box-shadow:0 13px 30px 0 rgba(0,0,0,.16);position:relative}.webinars-hero img{display:inline-block;vertical-align:middle}@media (max-width:40em){.webinars-hero{box-shadow:none}.webinars-hero .webinars-hero-meta{position:static;text-align:left;transform:translateY(-1em);margin:0 auto;max-width:30em}}.webinars-hero-meta{position:absolute;right:1em;bottom:auto;transform:translateY(-45%)}.webinars-hero-meta.has-no-featured-image{transform:translateY(0)}@media (min-width:40em){.webinars-hero-meta.has-no-featured-image .webinars-hero-socials{color:#fff}.webinars-hero-meta.has-no-featured-image .webinars-hero-socials a{color:inherit}}.webinars-hero-image{position:relative}.webinars-hero-image-frame{max-width:47.75rem;height:0;padding-bottom:calc(100% * 607/845);position:relative}.webinars-hero-image-frame img{position:absolute;z-index:3;display:block;-o-object-fit:cover;object-fit:cover;height:100%}.webinars-hero-image-logo{width:30%;position:absolute;z-index:3;top:0;left:0}.webinars-hero-image-logo-frame{width:100%;height:0;padding-bottom:calc(100% * 204/250);background-color:#fff;border-radius:0 0 450px 0;-webkit-mask:no-repeat left top;mask:no-repeat left top;-webkit-mask-size:cover;mask-size:cover;-webkit-mask-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='250' height='204' viewBox='0 0 250 204' fill='none'%3E%3Cpath d='M0 0H250V0C250 112.666 158.666 204 46 204H0V0Z' fill='%23D9D9D9'/%3E%3C/svg%3E");mask-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='250' height='204' viewBox='0 0 250 204' fill='none'%3E%3Cpath d='M0 0H250V0C250 112.666 158.666 204 46 204H0V0Z' fill='%23D9D9D9'/%3E%3C/svg%3E")}.webinars-hero-image-logo-frame img{position:absolute;z-index:3;display:block;max-width:90%;max-height:90%;top:50%;left:0;transform:translate(0,-50%)}.webinars-hero-inner{font-family:var(--font-secondary-new);border-radius:0;background:#fff;max-width:30em;justify-content:space-between;align-items:center;padding:2.625em;color:#993dbb;height:100%}.webinars-hero-inner .entry-heading{color:inherit}.webinars-hero-inner label{display:grid;width:100%;align-items:flex-start;font-size:1.25em;line-height:1.25;grid-template-columns:25px minmax(0,1fr);-moz-column-gap:.625rem;column-gap:.625rem;margin-bottom:.75rem}.webinars-hero-inner .entry-header{color:#993dbb}.webinars-hero-inner .entry-header .entry-category{display:block;text-transform:uppercase;font-size:1em;line-height:1.25}.webinars-hero-inner .entry-header .entry-heading{font-family:var(--font-primary-new);font-size:2em;font-style:normal;font-weight:700;line-height:1.3125;margin-top:1rem;margin-bottom:2.5rem}.webinars-hero-datetime{margin-bottom:1.25rem}.webinars-hero-datetime svg{width:78px;height:78px}.webinars-hero-content{margin-bottom:2.5rem}.webinars-hero-title{font-size:1.125em;margin-bottom:.5em}.webinars-hero-speakers-avatars{display:flex;width:100%;flex-direction:row-reverse;justify-content:flex-end;margin-bottom:.875rem}.webinars-hero-speakers-image{display:block;width:78px;height:78px;border-radius:50%;outline:double 2px #993dbb;overflow:hidden;position:relative}.webinars-hero-speakers-image:not(:last-child){margin-left:-30px}.webinars-hero-speakers-names,.webinars-hero-time{display:block;font-size:1.375em;font-weight:400;line-height:1.3636;color:var(--color-base-light)}.webinars-hero-speakers-names{font-weight:700}.webinars-hero-speakers-titles{margin-top:.25em;font-size:1em;font-weight:400;line-height:1.375;color:var(--color-base-light)}.webinars-hero-footer{display:grid;gap:1.25rem}.webinars-hero-footer .separator{display:flex;align-items:center;flex-wrap:nowrap;color:#303030;font-family:var(--font-secondary-new);font-size:1.125em;line-height:1.333333333}.webinars-hero-footer .separator span{display:block;flex:0 0 auto;margin:auto 1.875rem}.webinars-hero-footer .separator::after,.webinars-hero-footer .separator::before{content:"";height:1px;background:rgba(153,61,187,.4);display:block;flex:0 1 auto;width:100%}.page:not(.home) .page:not(.page-template-sourcing) .dxoc-content-wrapper .webinars-hero-footer .box-notification,.page:not(.home) .page:not(.page-template-sourcing) .dxoc-content-wrapper .webinars-hero-footer .button,.page:not(.home) .page:not(.page-template-sourcing) .dxoc-content-wrapper .webinars-hero-footer div[style^="background-color: #993dbb"],.search-form .webinars-hero-footer .search-field,.search-form .webinars-hero-footer .search-submit,.single:not(.home) .dxoc-content-wrapper .webinars-hero-footer .box-notification,.single:not(.home) .dxoc-content-wrapper .webinars-hero-footer .button,.single:not(.home) .dxoc-content-wrapper .webinars-hero-footer div[style^="background-color: #993dbb"],.sourcing-finder .webinars-hero-footer button.rfp-creation-link,.webinars-hero-footer .button,.webinars-hero-footer .page:not(.home) .page:not(.page-template-sourcing) .dxoc-content-wrapper .box-notification,.webinars-hero-footer .page:not(.home) .page:not(.page-template-sourcing) .dxoc-content-wrapper .button,.webinars-hero-footer .page:not(.home) .page:not(.page-template-sourcing) .dxoc-content-wrapper div[style^="background-color: #993dbb"],.webinars-hero-footer .search-form .search-field,.webinars-hero-footer .search-form .search-submit,.webinars-hero-footer .single:not(.home) .dxoc-content-wrapper .box-notification,.webinars-hero-footer .single:not(.home) .dxoc-content-wrapper .button,.webinars-hero-footer .single:not(.home) .dxoc-content-wrapper div[style^="background-color: #993dbb"],.webinars-hero-footer .sourcing-finder button.rfp-creation-link{border-radius:0;text-align:center;font-size:1em;line-height:1.375;padding:.625em;margin:0!important}.webinars-hero-socials{margin-top:1em;position:static;text-align:right}.webinars-hero-socials span{margin:0 .5em}@media (max-width:75em){.webinars-hero{margin:1.25em 0}.webinars-hero-socials{color:#fff}.webinars-hero-socials i{color:#fff}}.content-section-group{margin-bottom:3em}.content-section-group.is-last,.content-section-group:last-of-type{margin-bottom:0}.content-section-group .entry-small .entry-aside{flex-basis:18em;max-width:18em}@media (max-width:40em){.content-section-group .entry-small .entry-aside{flex-basis:100%;max-width:100%}}.webinar-sponsors{margin:2em 0 4em;text-align:center}.webinar-sponsors .all-sponsors a{display:inline-block;vertical-align:middle}.webinar-sponsors .webinar-sponsor-logo{max-width:10em;width:100%;margin:.625em}.no-more-posts-message{margin:20px auto;font-weight:700;font-size:1.2em}.dxoc-video{text-align:center}.dxoc-video-spacer{max-width:640px;margin:0 auto}.expandable-content.is-expanded .entry-content{max-height:100%}.expandable-content.is-expanded .entry-content:after{display:none}.box-notification{padding:1em 2em;background:#dab856;color:#fff;text-align:center;font-weight:600;border-radius:3px}.box-notification a{color:#fff}@media (min-width:40em){.box-notification{margin:0 1.5em}}.career-education-cta{max-width:40em;margin:0 auto}.smart-sourcing-logo{max-width:7em}.landing-allseated{max-width:800px;margin:0 auto;box-shadow:0 6px 15px 0 rgba(0,0,0,.16);font-family:Montserrat,sans-serif}.landing-allseated h1,.landing-allseated h2,.landing-allseated h3,.landing-allseated h4,.landing-allseated h5{font-family:Montserrat,sans-serif}.allseated-header{display:flex;align-items:flex-end;background-color:#fff;padding:2.5em 1.5em}.allseated-header p{display:flex;align-items:flex-end;color:#f26e5e;font-size:1.5em;line-height:1em;letter-spacing:1px;margin:0}.allseated-header p:before{content:"|";display:inline-block;float:left;margin:0 .65em;color:#313237;font-size:2rem;line-height:1}@media (max-width:30em){.allseated-header img{max-width:8em}.allseated-header p{font-size:1em}}@media (max-width:320px){.allseated-header{padding:1.5em}}.allseated-featured-video picture,.allseated-featured-video video{width:100%}.allseated-featured-video picture img,.allseated-featured-video video img{width:100%}.allseated-featured-video-iframe{width:100%;height:0;overflow:hidden;padding-bottom:56.25%;position:relative}.allseated-featured-video-iframe iframe{top:0;left:0;position:absolute;width:100%;height:100%}.allseated-quote{text-align:center;padding:1.875em 1.5em}.allseated-quote-title{font-weight:700;font-size:1.5em;color:#f26e5e;margin-bottom:1em}.allseated-quote-copy{color:#313237;font-size:1.2em}@media (max-width:320px){.allseated-quote-title{font-size:1.15em}.allseated-quote-copy{font-size:1em}}.allseated-zigzag .zigzag-item{display:flex;flex-flow:row wrap;background:#313237;color:#fff;min-height:360px}.allseated-zigzag .zigzag-item.zigzag-row-reversed{flex-flow:row-reverse wrap}.allseated-zigzag .zigzag-item.zigzag-row-reversed .zigzag-content{flex:1;padding:1.5em .5em 1.5em 1.5em}.allseated-zigzag .zigzag-item.zigzag-row-reversed .zigzag-featured-image:before{background:#313237;position:absolute;top:0;height:100%;content:"";z-index:3;transform:skew(10deg);width:5em;left:-48px;right:0}.allseated-zigzag .zigzag-item .zigzag-featured-image{flex-basis:calc(100% - 362px)}.allseated-zigzag .zigzag-item .zigzag-content{flex:1;padding:1.5em 1.5em 1.5em .5em;display:flex;justify-content:center;flex-flow:column wrap}@media (max-width:60em){.allseated-zigzag .zigzag-item .zigzag-content{padding:1.5em 1.5em}}.allseated-zigzag .zigzag-item .zigzag-heading{font-size:1.5em;margin-bottom:1em;text-transform:uppercase}@media (max-width:320px){.allseated-zigzag .zigzag-item .zigzag-heading{font-size:1.25em}}.allseated-zigzag .zigzag-item .zigzag-featured-image{position:relative;overflow:hidden}.allseated-zigzag .zigzag-item .zigzag-featured-image:before{background:#313237;position:absolute;top:0;height:100%;content:"";z-index:3;transform:skew(-10deg);width:5em;right:-36px}.allseated-zigzag .zigzag-item .zigzag-featured-image img{width:100%;height:auto;min-height:100%;-o-object-fit:cover;object-fit:cover;position:absolute;top:0;left:0;z-index:2}@media (max-width:60em){.allseated-zigzag .zigzag-item .zigzag-featured-image{flex:1 1 100%}.allseated-zigzag .zigzag-item .zigzag-featured-image:before{display:none}.allseated-zigzag .zigzag-item .zigzag-featured-image img{position:static}}.allseated-zigzag .zigzag-item .zigzag-copy{font-size:1em}.allseated-zigzag .zigzag-item .zigzag-copy ul{padding-left:1.15em;list-style-type:disc}.allseated-zigzag .zigzag-item .zigzag-copy ul li{margin-bottom:1rem;font-size:14px}.allseated-zigzag .zigzag-item:nth-child(1){background:#4ba9c3}.allseated-zigzag .zigzag-item:nth-child(1) .zigzag-featured-image:before{background:#4ba9c3}.allseated-zigzag .zigzag-item:nth-child(2){background:#20232a}.allseated-zigzag .zigzag-item:nth-child(2) .zigzag-featured-image:before{background:#20232a}.allseated-zigzag .zigzag-item:nth-child(3){background:#ea574d}.allseated-zigzag .zigzag-item:nth-child(3) .zigzag-featured-image:before{background:#ea574d}.allseated-zigzag .zigzag-item:nth-child(4){background:#4ba9c3}.allseated-zigzag .zigzag-item:nth-child(4) .zigzag-featured-image:before{background:#4ba9c3}.allseated-footer{background-color:#20232a;padding:1em 1.5em .5em;display:flex;flex-flow:column wrap;justify-content:center;align-items:center}.allseated-footer a{display:inline-block;color:#fff;margin:.5em}.allseated-footer .allseated-cta{display:inline-block;background-color:#f26e5e;color:#fff;padding:.45em 3.5em;transition:.1s ease;font-weight:700}.allseated-footer .allseated-cta:hover{background-color:#f37767}.zigzag-item.has-video.is-active .zigzag-featured-type-video{flex-basis:calc(100%)}.zigzag-item.has-video.is-active .zigzag-featured-type-video:before{display:none}.zigzag-item.has-video.is-active .allseated-featured-video-toggle{display:none}.zigzag-item.has-video .zigzag-featured-type-video{transition:.2s ease}.zigzag-item.has-video .allseated-featured-video-toggle{position:absolute;top:0;left:0;width:100%;height:100%;cursor:pointer}.guides-list .entry-featured-image{flex-basis:10em;align-self:flex-start}.guides-list .entry-featured-image img{margin:0;width:100%}@media (max-width:60em){.guides-list .entry-featured-image{flex:1 1 100%}}.guides-list .entry-small{margin-bottom:2em}.guides-list .entry-small .entry-aside{flex:1;padding-top:0}@media (max-width:60em){.guides-list .entry-small .entry-aside{padding:0;padding-top:1em}}.guides-list .entry-small .entry-title{font-size:1.125em;margin-top:0}.guides-list .entry-small .entry-title a{color:#212121;text-decoration:none}.guides-list .entry-small .entry-excerpt p{font-size:1rem}p a{color:#993dbb}p a:hover{color:#993dbb}.show{display:block!important;animation:fadeIn 1s}.smart-marketplace-popup-triger{display:inline-block;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;user-select:none;opacity:1;width:100%}.smart-marketplace-popup{display:none;position:relative}.smart-marketplace-popup-triger{color:#993dbb}.smart-marketplace-popup-triger:hover{text-decoration:underline}.smart-marketplace-popup-overlay{width:100%;height:100%;top:0;left:0;z-index:2;position:fixed}.smart-marketplace-popup-content{width:100%;background-color:#fff;color:#000;border-radius:.75em;padding:1em 1.5em;position:absolute;z-index:3;bottom:2em;left:4.75em;margin-left:-80px;box-shadow:1px 4px 18px -1px rgba(0,0,0,.18);overflow-y:auto;min-height:100px;max-height:22em}.smart-marketplace-popup-container::after{content:"";top:calc(100% - 2.125em);margin-left:.5em;border-width:.675em;border-style:solid;border-color:#fff transparent transparent transparent;position:absolute;z-index:10}@keyframes fadeIn{from{opacity:0}to{opacity:1}}@media all and (max-width:82em){.smart-marketplace-popup-content{height:16em}}@media all and (max-width:60em){.smart-marketplace-popup-content{height:17em}}@media all and (max-width:40em){.smart-marketplace-popup-content{height:18em}}.widget_dx_smt_daily_content_widget iframe{min-height:24em}@media (max-width:30em){.widget_dx_smt_daily_content_widget iframe{min-height:27em}}.single .widget_dx_smt_daily_content_widget iframe,.single-post .widget_dx_smt_daily_content_widget iframe{min-height:23em}@media (max-width:82em){.single .widget_dx_smt_daily_content_widget iframe,.single-post .widget_dx_smt_daily_content_widget iframe{min-height:25em}}@media (max-width:60em){.single .widget_dx_smt_daily_content_widget iframe,.single-post .widget_dx_smt_daily_content_widget iframe{min-height:41em}}@media (max-width:30em){.single .widget_dx_smt_daily_content_widget iframe,.single-post .widget_dx_smt_daily_content_widget iframe{min-height:27em}}.wpcn_btn{color:#fff!important}.column.small-12.medium-6.large-3.column-post:first-of-type{margin-left:auto}.column.small-12.medium-6.large-3.column-post:last-of-type{margin-right:auto}.smart-marketplace-content{margin:1em 0 0;border-top:1px solid #eee;border-bottom:1px solid #eee;padding:1em 0}.smart-marketplace-content .thumbnail-wrapper{position:relative;height:0;width:100%;padding-bottom:2.5em}.smart-marketplace-content .thumbnail-wrapper .thumbnail{position:absolute;top:0;left:0;width:100%;height:100%;max-width:-moz-fit-content;max-width:fit-content;-o-object-fit:contain;object-fit:contain}.slick-dots li button:before{font-size:60px}.list-social{display:inline-flex}.list-social a{color:#212121;padding:.5em}.list-tags{display:inline-flex;align-items:center}.list-tags .list-item{margin-right:.5em}.list-tags .list-item:last-child{margin-right:0}.list-share-vertical{display:flex;flex-direction:column;align-items:center;font-size:1em}.list-share-vertical a{position:relative;background:rgba(0,0,0,.05);height:2.75rem;width:2.75em;line-height:2.5em;text-align:center;color:#212121;display:flex;align-items:center;justify-content:center;border-radius:50%;transition:.3s;cursor:pointer}.list-share-vertical a:hover{transform:scale(1.1);transition:.3s}.list-share-vertical a:active,.list-share-vertical a:focus{transform:scale(.9);transition:.2s;outline:0}@media (max-width:50rem){.list-share-vertical a{height:2.125em;width:2.125em;padding:.625em;box-sizing:border-box}}.list-share-vertical .list-item{margin-bottom:1em}.list-share-vertical .list-item:last-child{margin-bottom:0}.list-share-vertical .list-item .social-copy-link:before{content:'Copy to Clipboard';display:block;position:absolute;padding:.3em .6em;background:#212121;border-radius:4px;color:#fff;opacity:0;visibility:hidden;text-align:left;white-space:pre;transform:translate(1.25em,0);transform-origin:right;top:-.3em;left:3.75em}@media (max-width:42rem){.list-share-vertical .list-item .social-copy-link:before{display:none}}.list-share-vertical .list-item .social-copy-link:hover:before{opacity:1;visibility:visible;transition:.3s ease;transform:translate(0,0)}.list-share-vertical .list-item .social-copy-link.is-copied:before{content:'Copied!'}.list-share-vertical .list-item .social-copy-url{display:inline;opacity:0;width:0;height:0;position:absolute}.list-share-horizontal{display:flex;flex-direction:row;align-items:center;font-size:1em}.list-share-horizontal a{background:rgba(0,0,0,.05);height:2.5em;width:2.5em;line-height:2.5em;text-align:center;color:#212121;display:inline-block;border-radius:50%;transition:.3s;display:flex;align-items:center;justify-content:center}.list-share-horizontal a:hover{transform:scale(1.1);transition:.3s}.list-share-horizontal a:active,.list-share-horizontal a:focus{transform:scale(.9);transition:.2s;outline:0}.list-share-horizontal .list-item{margin-right:1em}.list-share-horizontal .list-item .social-copy-link:before{content:'Copy to Clipboard';display:block;position:absolute;padding:.3em .6em;background:#212121;border-radius:4px;color:#fff;opacity:0;visibility:hidden;text-align:left;white-space:pre;transform:translate(1.25em,0);transform-origin:right;top:-.3em;left:3.75em}.list-share-horizontal .list-item .social-copy-link:hover:before{opacity:1;visibility:visible;transition:.3s ease;transform:translate(0,0)}.list-share-horizontal .list-item .social-copy-link.is-copied:before{content:'Copied!'}.list-share-horizontal .list-item .social-copy-url{display:inline-block;width:1px;opacity:0;position:absolute;z-index:1}.list-people{align-items:flex-start}.list-people-title{font-size:.8em;font-weight:400}.list-people-name{font-size:1.75em;margin-bottom:.3em}.list-people img{margin-right:1em;width:5em;height:5em;border-radius:50%}.list-people li{margin:2.5em .6em 2.1em;padding:0 1.25em 2.1em;display:flex;border-bottom:2px solid #ededed}.list-people li:last-child{border-bottom:none}.list-sponsors-logos{width:100%;max-height:20em;overflow-x:hidden;overflow-y:auto;text-align:center}.latest-videos-list{display:flex;align-items:center;margin:1.5em 0;overflow:hidden}@media (max-width:60em){.latest-videos-list{flex-wrap:wrap;margin:.5em 0 1em}}.latest-videos-wrapper{margin-bottom:4em}@media (max-width:60em){.latest-videos-wrapper{margin-bottom:0}}.latest-videos-wrapper .playlist-switcher{display:none}.latest-videos-wrapper .playlist-container:not(.is-active){display:none}.latest-videos-item{position:relative;flex-basis:calc(100% / 4);padding-right:.5em;padding-bottom:1.5em;border-bottom:1px solid rgba(119,119,119,.1);color:#777;font-size:1.125em;font-weight:700}@media (max-width:60em){.latest-videos-item{padding:.75em;flex:100%}}.latest-videos-item:nth-child(n+5){display:none}.latest-videos-item:after{height:1px;background:#993dbb;position:absolute;bottom:-1px;width:calc(100% - .5em);z-index:1;display:none;content:''}.latest-videos-item:hover{color:#515151}.latest-videos-item.is-active{color:#993dbb}.latest-videos-item.is-active:after{display:block}.latest-videos-item a{color:inherit;display:block}.latest-videos-list .playlist-container{width:100%}.card-social{display:inline-block;box-sizing:border-box;width:100%}.card-social:hover .card-social-footer,.card-social:hover .card-social-heading,.card-social:hover.twitter .card-social-content{border-color:var(--color-primary)}.card-social.twitter{display:flex;flex-direction:column;height:100%}.card-social.twitter .card-social-thumbnail-wrapper{margin-top:auto;--card-social-thumbnail-size:56%;border-radius:10px;overflow:hidden}.card-social.twitter .card-social-content{--content-line-clamp:7;--content-max-height:148px;display:flex;flex-direction:column;padding:var(--spacing-extra-small);border:1px solid var(--color-base-light-muted);transition:.25s ease-in-out;flex-grow:1}.card-social.twitter .card-social-content.no-thumbnail .card-social-content-description{--content-line-clamp:18;--content-max-height:23.5rem}.card-social.twitter .card-social-content.no-description .card-social-thumbnail-wrapper{--card-social-thumbnail-size:100%}.card-social.twitter .card-social-content-description{color:var(--color-base-light);font-family:var(--font-secondary-new);font-size:var(--font-size-h6);font-weight:400;line-height:1.315;overflow:hidden;text-overflow:ellipsis;display:-webkit-box;-webkit-line-clamp:var(--content-line-clamp);-webkit-box-orient:vertical;height:-moz-fit-content;height:fit-content;max-height:var(--content-max-height);flex-grow:1;margin-bottom:0}.card-social.twitter .card-social-content-description+.card-social-thumbnail-wrapper{margin-top:calc(var(--spacing-extra-small) + 2px)}@media (max-width:82.125rem){.card-social.twitter .card-social-content{--content-line-clamp:6;--content-max-height:7.875rem}.card-social.twitter .card-social-content.no-thumbnail .card-social-content-description{--content-line-clamp:15;--content-max-height:19.75rem}}@media (max-width:1200px){.card-social.twitter .card-social-content{--content-line-clamp:5;--content-max-height:6.5rem}.card-social.twitter .card-social-content.no-thumbnail .card-social-content-description{--content-line-clamp:14;--content-max-height:18.5rem}}@media (max-width:1100px){.card-social.twitter .card-social-content.no-thumbnail .card-social-content-description{--content-line-clamp:12;--content-max-height:15.875rem}}@media (max-width:62rem){.card-social.twitter .card-social-content{--content-line-clamp:3;--content-max-height:4rem}.card-social.twitter .card-social-content.no-thumbnail .card-social-content-description{--content-line-clamp:9;--content-max-height:11.875rem}}@media (max-width:50rem){.card-social.twitter .card-social-content{--content-line-clamp:5;--content-max-height:104px}.card-social.twitter .card-social-content.no-thumbnail .card-social-content-description{--content-line-clamp:12;--content-max-height:16rem;min-height:120px}}.card-social-thumbnail-wrapper{--card-social-thumbnail-size:100%;position:relative;height:0;width:100%;padding-bottom:var(--card-social-thumbnail-size)}.card-social-thumbnail{position:absolute;top:0;left:0;height:100%;width:100%;-o-object-fit:cover;object-fit:cover}.card-social-heading{display:flex;align-items:center;justify-content:space-between;padding:var(--spacing-extra-small);border:1px solid var(--color-base-light-muted);border-bottom:0;transition:.25s ease-in-out}.card-social .card-heading-thumbnail{height:2.375em;width:2.375em;border-radius:50%;aspect-ratio:1/1;-o-object-fit:cover;object-fit:cover;margin-right:var(--spacing-extra-small)}.card-social .card-heading-title{font-family:var(--font-primary-new);font-size:var(--font-size-h6);font-weight:700;justify-self:flex-start;line-height:1.315;color:var(--color-base-light);margin:0;text-align:left;width:100%}.card-social .card-heading-icon{display:flex;color:var(--color-primary)}.card-social-footer{display:flex;align-items:center;justify-content:flex-end;padding:var(--spacing-extra-smaller) var(--spacing-extra-small);border:1px solid var(--color-base-light-muted);border-top:0;transition:.25s ease-in-out}.card-social-date{color:var(--color-base-light);font-family:var(--font-secondary-new);font-size:var(--font-size-extra-small);font-weight:400;line-height:1.358}.card-social-btn-link .btn-arrow-icon{margin-left:.75rem}.deal{display:flex;padding:1.5em 1.25em;position:relative}.deal .deal-image{flex:0 0 560px;height:305px;position:relative;overflow:hidden}.deal .deal-image img{max-width:100%}.deal-image{padding-right:1.25em}.deal-content{display:flex;flex-basis:100%;flex-direction:column}.deal-content .deal-details{margin-top:auto}.deal-details{display:flex;align-items:center}.deal-details .deal-details-logo{width:125px}.deal-title{font-size:2em;margin-bottom:1em}.deal-description{margin:0 0 1em;font-size:1.125em}.deal-learn-more{color:#dab856;font-weight:700}.deal-learn-more:hover{text-decoration:underline}.deal-details-category{flex-grow:1;display:flex;align-items:center;margin-left:1em;font-size:1.5em}.deal-details-category .marketplace-icon{margin-right:6px}@media screen and (max-width:900px){.deal{flex-direction:column}.deal .deal-image{flex:0 0 auto;margin-bottom:1em;padding-right:0}.deal .deal-content{padding:.5em 0}.deal .deal-title{margin-bottom:.5em}}.entry-sponsored{position:relative}.entry-sponsored .entry-sponsored-box{position:absolute;top:1em;left:1em;font-weight:600;text-transform:uppercase;z-index:1;pointer-events:none}.entry-sponsored .entry-sponsored-box img{display:inline-block;max-width:6em;margin-bottom:.5em}.entry-sponsored .entry-sponsored-box h3{font-size:.85em}.entry-byline,.entry-meta{margin:1em 0 .5em}.entry-byline a,.entry-meta a{color:#212121;text-decoration:underline}.entry-byline a:focus,.entry-meta a:focus{outline:0;background:rgba(153,61,187,.1)}.entry-byline .meta-with-icon,.entry-meta .meta-with-icon{position:relative;padding-left:1.5em}.entry-byline .meta-with-icon:before,.entry-meta .meta-with-icon:before{position:absolute;top:0;left:0}.entry-byline .meta-with-icon.meta-icon-date:before,.entry-meta .meta-with-icon.meta-icon-date:before{content:'';margin-right:5px;background-image:url("data:image/svg+xml,%3Csvg width='14' height='16' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512'%3E%3Cpath d='M400 64h-48V12c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v52H160V12c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v52H48C21.5 64 0 85.5 0 112v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V112c0-26.5-21.5-48-48-48zm-6 400H54c-3.3 0-6-2.7-6-6V160h352v298c0 3.3-2.7 6-6 6z'/%3E%3C/svg%3E");background-repeat:no-repeat;background-size:14px 16px;background-position:center;width:14px;height:16px}.entry-byline .meta-author a,.entry-meta .meta-author a{text-decoration:none;color:#212121}.entry-title a{color:#212121;text-decoration:none}.entry-title a:focus{outline:0;background:rgba(153,61,187,.1)}.entry-featured-image{display:block}.entry-featured-image:focus{outline:0;box-shadow:0 0 0 3px rgba(153,61,187,.5)}.entry-featured-image .list-tags{position:absolute;bottom:1em;left:1em;z-index:1}.entry-featured-image img{display:block}.entry-excerpt{margin-top:1em}.entry .meta-author{font-weight:700;display:inline-block}@media (max-width:60em){.entry{margin-bottom:1.5em}}.entry-main.direction-vertical{flex-wrap:wrap}.entry-single .entry-main.direction-vertical .entry-aside,.entry-single .entry-main.direction-vertical .entry-meta{flex:100%}.entry-single .entry-main.direction-vertical .entry-aside{padding:0;padding-bottom:2em}.entry-page .entry-main,.entry-single .entry-main{display:flex}.entry-page .entry-aside,.entry-single .entry-aside{flex:0 0 5.5em;padding:5.25em 1em 0;z-index:1}.entry-page .entry-body,.entry-single .entry-body{flex-shrink:1;flex-grow:0;overflow:hidden}.entry-page .entry-meta,.entry-single .entry-meta{font-size:.875em;margin-top:1.25em;margin-bottom:3em}.entry-page .entry-meta span,.entry-single .entry-meta span{display:inline-block;margin-right:3em}.entry-page .entry-featured-image,.entry-single .entry-featured-image{box-shadow:0 2em 2em -2em rgba(0,0,0,.2)}.entry-page .entry-featured-image img,.entry-single .entry-featured-image img{border-radius:5px}.entry-page .entry-content,.entry-single .entry-content{font-size:1.25em}.entry-page .entry-content .responsivevoice-button,.entry-page .entry-content .sm-audio-button,.entry-single .entry-content .responsivevoice-button,.entry-single .entry-content .sm-audio-button{display:inline-flex;padding:12px 28px 10px 28px;justify-content:center;align-items:center;gap:10px;border:none;background:#993dbb;color:#fff;font-family:Nunito;font-size:16px;font-style:normal;font-weight:700;line-height:normal;margin-top:10px!important;margin-bottom:10px}.entry-page .entry-content>:first-child,.entry-single .entry-content>:first-child{margin-top:0}.entry-page .entry-content img,.entry-single .entry-content img{border-radius:5px}.entry-page .entry-content a,.entry-single .entry-content a{color:#993dbb;text-decoration:underline}.entry-page .entry-content h2,.entry-page .entry-content h3,.entry-page .entry-content h4,.entry-single .entry-content h2,.entry-single .entry-content h3,.entry-single .entry-content h4{font-weight:400;margin:1.25em auto .5em}.entry-page .entry-content h2,.entry-single .entry-content h2{font-size:2.25em}.entry-page .entry-content h3,.entry-single .entry-content h3{font-size:1.75em}.entry-page .entry-content h4,.entry-single .entry-content h4{font-size:1.25em}.entry-page .entry-content h5,.entry-single .entry-content h5{font-size:1em;font-weight:700;text-transform:uppercase}.entry-page .entry-content h6,.entry-single .entry-content h6{font-size:.75em;font-weight:700;text-transform:uppercase}.entry-page .entry-content ul,.entry-single .entry-content ul{padding-left:1.5em}.entry-page .entry-content ul li,.entry-single .entry-content ul li{position:relative;padding-left:1.5em;padding-bottom:.5em}.entry-page .entry-content ul li:before,.entry-single .entry-content ul li:before{content:'';position:absolute;top:.3em;left:0;color:#993dbb;background-image:url("data:image/svg+xml,%3Csvg width='18' height='18' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512'%3E%3Cpath d='M295.515 115.716l-19.626 19.626c-4.753 4.753-4.675 12.484.173 17.14L356.78 230H12c-6.627 0-12 5.373-12 12v28c0 6.627 5.373 12 12 12h344.78l-80.717 77.518c-4.849 4.656-4.927 12.387-.173 17.14l19.626 19.626c4.686 4.686 12.284 4.686 16.971 0l131.799-131.799c4.686-4.686 4.686-12.284 0-16.971L312.485 115.716c-4.686-4.686-12.284-4.686-16.97 0z' fill='%23993dbb' /%3E%3C/svg%3E");background-repeat:no-repeat;background-size:contain;width:18px;height:18px}.entry-page .entry-content ul li li:before,.entry-single .entry-content ul li li:before{color:rgba(0,0,0,.5)}.entry-page .entry-content ol,.entry-single .entry-content ol{list-style-type:decimal;padding-left:2.25em}.entry-page .entry-content ol li,.entry-single .entry-content ol li{padding-left:.5em;padding-bottom:.5em}.entry-page .entry-content table,.entry-single .entry-content table{border-spacing:0;table-layout:fixed}.entry-page .entry-content table td,.entry-single .entry-content table td{border-bottom:1px solid rgba(0,0,0,.1);padding:.5em}.entry-page .entry-content table th,.entry-single .entry-content table th{border-bottom:3px solid rgba(0,0,0,.1);padding:.5em}.entry-page .entry-content figure,.entry-single .entry-content figure{max-width:100%}@media (max-width:40em){.entry-page .entry-main,.entry-single .entry-main{position:relative;flex-direction:column;padding-top:1.75em}.entry-page .entry-body,.entry-single .entry-body{max-width:100%}.entry-page .entry-aside,.entry-single .entry-aside{flex:0;padding:0;width:100%;max-width:100%;z-index:revert}.entry-page .entry-aside.is_stuck,.entry-single .entry-aside.is_stuck{z-index:10}.entry-page .entry-aside.is_stuck .entry-share,.entry-single .entry-aside.is_stuck .entry-share{position:absolute;width:100vw;left:50%;padding:1em .75em;box-shadow:0 0 10px 2px rgba(0,0,0,.1);transform:translate3d(-50%,0,0)}.entry-page .entry-aside.is_stuck .social-copy-link:before,.entry-single .entry-aside.is_stuck .social-copy-link:before{top:130%;left:-100%}.entry-page .entry-aside .entry-share,.entry-single .entry-aside .entry-share{flex-direction:row;align-items:center;justify-content:center;height:-moz-fit-content;height:fit-content;z-index:1;background-color:#fff;padding:0 .75em}.entry-page .entry-aside .entry-share .list-item,.entry-single .entry-aside .entry-share .list-item{margin-bottom:0}.entry-page .entry-aside .entry-share .list-item:not(:last-child),.entry-single .entry-aside .entry-share .list-item:not(:last-child){margin-right:1em}}.entry-page .entry-content{position:relative;min-height:410px}.entry-page .entry-content>*{max-width:50rem;margin-left:auto;margin-right:auto}.entry-page .entry-content table{max-width:100%}.entry-page .entry-content:before{content:"";display:block;position:absolute;left:180px;top:.5em;height:189px;width:457px;background-size:457px;background:url(//staging.smartmeetings.com/wp-content/themes/smartmeetings/assets/dist/images/grid-dots-1.svg);z-index:-1;transform:rotate(90deg);transform-origin:top left}.entry-large-slider .entry-large{display:none}.entry-large-slider .entry-large.is-active{display:block}.entry-large .entry-meta{margin:1.5em 0;display:flex}.entry-large .meta-slider-controller{display:none}.entry-large .entry-title{max-width:730px;font-size:2.75em}.entry-large .entry-excerpt{max-width:730px;font-size:1.25em}.entry-large .meta-author{margin-left:1em}@media (max-width:30em){.entry-large .entry-meta{flex-wrap:wrap}.entry-large .meta-date{flex:1 1 100%;order:3;margin-top:1em}.entry-large .meta-author{margin-left:0}}.entry-medium .entry-title{font-size:1.375em}.entry-medium .entry-featured-image{margin-bottom:1em}.entry-large-slider .meta-slider-controller{display:flex;justify-content:flex-end;flex-grow:1}.entry-small{display:flex}.entry-small .entry-aside{flex:0 0 10em;margin-right:1.5em}.entry-small .entry-title{font-size:1.125em}.entry-small .entry-meta{margin-top:0}@media (max-width:40em){.entry-small{flex-wrap:wrap}.entry-small .entry-aside{margin-right:0;margin-bottom:1.5em;flex:100%}}.entries-simple .column,.entries-simple .columns{box-shadow:1px 0 0 0 rgba(0,0,0,.1)}.entries-simple .column.large-3:nth-child(4n),.entries-simple .columns.large-3:nth-child(4n){box-shadow:none}.entries-simple .entry-featured-image{display:none}.entries-list-vertical .entry{margin-bottom:1em}@media (min-width:60em){.entries-list-vertical .entry:last-child{margin-bottom:0;padding-bottom:0}}.entries-list-vertical-large .entry{margin-bottom:2em;padding-bottom:2em;border-bottom:1px solid rgba(0,0,0,.1)}@media (min-width:60em){.entries-list-vertical-large .entry:last-child{border-bottom:none;margin-bottom:0;padding-bottom:0}}.entries-archive-wrapper{--grid-gap:1.875rem}.entries-archive-wrapper .entry{margin-bottom:3em}.entries-grid-snake.custom-width{position:relative;width:calc(100% + .9375rem * 2);left:-.9375rem}.entries-grid-snake .entry{margin-bottom:3em}@media (min-width:60em){.entries-grid-snake .group-large{display:flex;flex-wrap:wrap}.entries-grid-snake .group-large-aside{flex:0 0 33.33333%;max-width:33.33333%;padding-right:.9375rem;padding-left:.9375rem}.entries-grid-snake .group-large-main{flex:0 0 66.66%;max-width:66.66%;padding-right:.9375rem;padding-left:.9375rem}}@media (max-width:60em){.entries-grid-snake .group-large-aside{display:flex;flex-wrap:wrap}.entries-grid-snake .group-large-aside .entry{flex:0 0 50%;max-width:50%}.entries-grid-snake .group-large-main{flex:0 0 100%;max-width:100%}}.entries-grid-snake .group-row{display:flex;flex-wrap:wrap}.entries-grid-snake .group-row .entry{flex:0 0 33.33333%;max-width:33.33333%;padding-right:.9375rem;padding-left:.9375rem}.entries-grid-snake .group-row .entry.advertisement{overflow:hidden}@media (max-width:30em){.entries-grid-snake .group-row .entry.advertisement{flex-basis:auto;max-width:100%;margin-left:auto;margin-right:auto}}@media (max-width:60em){.entries-grid-snake .group-row .entry{flex:0 0 50%;max-width:50%}}.entry-featured{display:flex;flex-direction:column;align-items:flex-start;margin-bottom:3em}.entry-featured a{display:block;width:100%}.entry-featured .entry-thumbnail-wrapper{position:relative;height:0;width:100%;padding-bottom:calc(100% * 2 / 3);margin-bottom:2em}.entry-featured .entry-thumbnail{position:absolute;top:0;left:0;width:100%;height:100%;-o-object-fit:cover;object-fit:cover;border-radius:1em}.entry-featured-body .entry-title{color:#212121;font-size:1.375em;font-weight:700}.entry-featured-body .entry-excerpt{margin-top:1.375em}.entry-featured-body .entry-excerpt p{color:#333}.entry-featured .entry-see-more{margin-top:1.25em}.entry-featured .entry-see-more .see-more{display:flex;flex-direction:row;align-items:center;color:#777;font-weight:700;font-size:1.125em}.entry-featured .entry-see-more .see-more svg{margin-left:.5em}.entry-featured .entry-see-more .see-more svg path{fill:currentColor}.entry-featured-bordered{border:.125em solid #ddd;border-radius:1em;padding:3.25em;min-height:31.125em}.entry-featured-bordered a{position:relative}.entry-featured-bordered .entry-thumbnail-wrapper{padding-bottom:82%;margin-bottom:0}.entry-featured-bordered .entry-thumbnail-wrapper .entry-thumbnail{-o-object-fit:contain;object-fit:contain}.entry-featured-bordered .entry-featured-body{position:relative;height:100%;max-height:9em;min-height:9em}.entry-featured-bordered .entry-featured-body .entry-title{position:relative;top:-2.5em;height:100%;font-weight:500;color:#333}.entry-featured-bordered .entry-see-more{position:absolute;bottom:0}@media screen and (max-width:48em){.entry-featured-bordered .entry-featured-body{min-height:16em}}@media screen and (max-width:39.75em){.entry-featured-bordered .entry-featured-body{min-height:4em}}@media screen and (max-width:26.5em){.entry-featured-bordered .entry-featured-body{min-height:8em}}.entry .wp-block-image{margin:1em}.entry .wp-block-image figcaption{font-size:.875em;text-align:right;color:#777}.entry .wp-block-quote{font-size:1.5em;font-family:"Palatino Linotype","Book Antiqua",Palatino,Georgia,"Times New Roman",serif;font-style:normal;margin-left:1em;padding-left:1em;border-left:2px dashed rgba(0,0,0,.1)}.entry .wp-block-quote p{margin-bottom:.5em}.entry .wp-block-quote cite{font-size:.625em;font-style:normal;letter-spacing:2px;text-transform:uppercase;color:#777;font-weight:700}.widget{margin-bottom:1.81em}.widget.dx_smt_lower_ads_widget,.widget.dx_smt_upper_ads_widget{display:flex;align-items:center;justify-content:center;padding:1.81em 0}.smw{padding:1.81em}.smw-border{border:1px solid rgba(0,0,0,.1)}.smw-cta{width:100%;margin-top:1.437em}.smw-see-more{text-align:right;font-size:.875em}.smw-see-more a{text-decoration:underline}.smw-magazine-current h3{font-size:1.375em;font-weight:400}.smw-magazine-current h2{font-size:1.625em;line-height:1;margin-bottom:.937rem}.smw-magazine-current p{font-size:.875em}.smw-magazine-current .smw-content{display:flex;overflow:hidden}.smw-magazine-current .smw-media{width:10.187em;position:relative;overflow:hidden;background:#eee;margin-right:1.25em;flex:0 0 auto}.smw-magazine-current .smw-media a{display:block;position:absolute;top:0;left:0;bottom:0;right:0}.smw-magazine-current .smw-media a video{height:100%;width:100%}.smw-magazine-current .smw-media:after{display:block;content:'';padding-top:120%}.smw-magazine-current .smw-copy{width:auto;flex:0 1 auto;overflow:hidden}.smw-smart-events .widget-title{display:none}.smw-smart-events h2{font-size:2.25em;margin-bottom:.5em}.smw-smart-events a{color:#000}.smw-smart-events ul{padding:0;margin:0 -1.81em;background:#f8f8f8;border-top:1px solid rgba(0,0,0,.1)}.smw-smart-events li{display:block;list-style:outside none;border-bottom:1px solid rgba(0,0,0,.1)}.smw-smart-events li a{display:block;padding:1.25em 1.81em}.smw-smart-events span{display:block}.smw-smart-events .date{font-size:.875em}.smw-smart-events .title{font-weight:700;font-size:1.125em;margin-bottom:.411rem}.smw-smart-events .featured{padding-bottom:1.81em}.smw-smart-events .featured .responsive-image{margin-bottom:.875em}.smw-smart-events .smw-see-more{padding:.905em 0 0;margin-bottom:-.905em}.smw-smart-events .smw-see-more a{display:inline;padding:0}.smw-trending-header{border-top:1px solid rgba(0,0,0,.1);border-bottom:1px solid rgba(0,0,0,.1)}.smw-trending-header ul{display:flex}.smw-trending-header li{flex:1 1 50%;padding:1em 0;text-align:center}.smw-trending-header li:last-child a{border-right:none}.smw-trending-header li.is-current{box-shadow:0 2px 0 0 #993dbb}.smw-trending-header a{padding:0 1em;display:block;border-right:1px solid rgba(0,0,0,.1);color:#212121;font-weight:700}.smw-trending-header a:hover{opacity:.8}.smw-trending-header svg{display:block;margin-bottom:.5em}.smw-trending-content{display:none}.smw-trending-content.is-active{display:block}@media (max-width:60em){.smw-trending-content .entry-small{margin-bottom:2em}.smw-trending-content .entry-small:last-child{margin-bottom:0}.smw-trending-content .entry-small .entry-aside{flex:1 1 100%;margin:0 0 .5em}}.smw-trending-content-inner{padding:1.5em 0}.smw-trending-footer{border-top:1px solid rgba(0,0,0,.1);border-bottom:1px solid rgba(0,0,0,.1);padding:1em 0;display:flex;align-items:center;justify-content:space-between;color:#777;cursor:pointer}.smw-trending-footer strong{color:#212121}.smw-trending-footer:after{padding-left:1em;content:'';display:block;background-image:url("data:image/svg+xml,%3Csvg width='8' height='16' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 192 512'%3E%3Cpath d='M187.8 264.5L41 412.5c-4.7 4.7-12.3 4.7-17 0L4.2 392.7c-4.7-4.7-4.7-12.3 0-17L122.7 256 4.2 136.3c-4.7-4.7-4.7-12.3 0-17L24 99.5c4.7-4.7 12.3-4.7 17 0l146.8 148c4.7 4.7 4.7 12.3 0 17z'/%3E%3C/svg%3E");background-repeat:no-repeat;background-size:contain;width:8px;height:16px}.smw-trending-footer:hover:after{color:#212121}.smw-destination-widgets .tabs-content{padding:1.5em 2em 1em;border-bottom:1px solid rgba(0,0,0,.1)}.smw-destination-widgets .tabs-content img{border-radius:5px}.smw-destination-widgets .tabs-content .title{margin:1em 0;color:#000;font-size:1.375em}.smw-destination-widgets .tabs-content .title a{color:inherit}@media (max-width:60em){.smw-destination-widgets .tabs-content{padding:.905em}}.smw-destination-widgets .widget-title{font-size:1.75em;color:#212121;border:1px solid #e5e5e5;padding:1em 1em 0;margin:0;border-bottom:0}.smw-destination-widgets h5{font-weight:lighter;padding:0 1.9em;font-size:1em}@media (max-width:60em){.smw{padding:.905em}}.page-template-webinars .smw{padding:24px}.page-template-webinars .smw .smw-media{max-width:45%;background-color:none}.widget-area-register-secondary{border-top:0;padding:0;background-color:#f8f8f8}.widget-area-register-secondary.webinar-widgets{padding:0}.webinar-widgets{padding:2em 1.5em;border:1px solid rgba(0,0,0,.1);margin-bottom:2em}.webinar-widgets a{color:#212121}.webinar-widgets h2{font-size:1.5em;margin:.75em 0}.webinar-widgets h2:first-child{margin-top:0;margin-bottom:.25em}.webinar-widgets h5{font-size:.85em;margin-bottom:1.75em;font-weight:400}.webinar-widgets .webinars-widget-wrapper{display:flex;align-items:center;justify-content:space-between;margin-bottom:1.5em}.webinar-widgets .webinars-widget-wrapper .widget-date{font-size:.85em}.webinar-widgets .webinars-widget-wrapper .widget-excerpt{margin-top:.3em;font-size:1.125em;font-weight:700}.webinar-widgets .webinars-widget-title{margin-bottom:1em}.webinar-widgets .webinars-widget-image{width:100%;max-width:9em;margin-right:.95em}.page:not(.home) .page:not(.page-template-sourcing) .dxoc-content-wrapper .webinar-widgets .box-notification,.page:not(.home) .page:not(.page-template-sourcing) .dxoc-content-wrapper .webinar-widgets .button,.page:not(.home) .page:not(.page-template-sourcing) .dxoc-content-wrapper .webinar-widgets div[style^="background-color: #993dbb"],.search-form .webinar-widgets .search-field,.search-form .webinar-widgets .search-submit,.single:not(.home) .dxoc-content-wrapper .webinar-widgets .box-notification,.single:not(.home) .dxoc-content-wrapper .webinar-widgets .button,.single:not(.home) .dxoc-content-wrapper .webinar-widgets div[style^="background-color: #993dbb"],.sourcing-finder .webinar-widgets button.rfp-creation-link,.webinar-widgets .button,.webinar-widgets .page:not(.home) .page:not(.page-template-sourcing) .dxoc-content-wrapper .box-notification,.webinar-widgets .page:not(.home) .page:not(.page-template-sourcing) .dxoc-content-wrapper .button,.webinar-widgets .page:not(.home) .page:not(.page-template-sourcing) .dxoc-content-wrapper div[style^="background-color: #993dbb"],.webinar-widgets .search-form .search-field,.webinar-widgets .search-form .search-submit,.webinar-widgets .single:not(.home) .dxoc-content-wrapper .box-notification,.webinar-widgets .single:not(.home) .dxoc-content-wrapper .button,.webinar-widgets .single:not(.home) .dxoc-content-wrapper div[style^="background-color: #993dbb"],.webinar-widgets .sourcing-finder button.rfp-creation-link{box-shadow:0 6px 15px 0 rgba(0,0,0,.16)}.widget-area-register-spot{margin-bottom:0}.widget-area-register-dates li{border-bottom:1px solid rgba(0,0,0,.1);padding:1.25em 1.81em}.widget-area-register-dates li:last-child{border-bottom:0}.widget-area-register-dates a{display:block;color:#000}.widget-area-register-dates h5{margin-bottom:.25em;font-size:1.125em;font-weight:700}.widget-area-register-view-all{background:#fff;border-top:1px solid rgba(0,0,0,.1);padding:1em;text-align:right;font-size:.85em}.widget-area-register-view-all a{color:#000;text-decoration:underline}@media (max-width:60em){.widget-sidebar-ads{text-align:center}.widget-sidebar-ads .ad-dfp{margin-left:auto;margin-right:auto}}.widget-homepage-ctas .widget-header{display:flex;align-items:center;border-bottom:1px solid #ddd;padding-bottom:.5em;margin-bottom:2em}.widget-homepage-ctas .widget-header svg{margin-right:.5em}.widget-homepage-ctas .widget-title{font-size:1.5em}.widget-homepage-ctas .list-item{margin-bottom:1.25em;display:flex;align-items:center;cursor:pointer}.widget-homepage-ctas .list-item:hover .resource-title{color:#993dbb}.widget-homepage-ctas .list-item:last-child{margin-bottom:0}.widget-homepage-ctas .resource-image{flex:0 0 40%;margin-right:1em}.widget-homepage-ctas .resource-image-wrapper{position:relative}.widget-homepage-ctas .resource-image-wrapper:after{content:'';display:block;padding-bottom:75%}.widget-homepage-ctas .resource-image-wrapper img{position:absolute;top:0;left:0;height:100%;width:100%;-o-object-fit:cover;object-fit:cover}.widget-homepage-ctas .resource-title{font-size:1.375em}.widget-homepage-ctas .resource-description{margin:0}.widget-homepage-ctas .resource-label{color:#dab856;text-transform:uppercase;font-weight:700}.widget-homepage-ctas .resource-cta{color:#777;font-weight:600;margin-top:.5em;display:flex;align-items:center}.widget-homepage-ctas .resource-cta .btn-arrow-icon{margin-left:var(--spacing-extra-smaller)}.widget-homepage-ctas .resource-cta .btn-arrow-icon{position:relative;display:flex;align-items:center}.widget-homepage-ctas .resource-cta .btn-arrow-icon-line{display:flex;transition:.25s ease-in-out}.widget-homepage-ctas .resource-cta .btn-arrow-icon-line svg{transition:width .25s ease-in-out}.widget-homepage-ctas .resource-cta .btn-arrow-icon-line+svg{position:absolute;right:-1px}.page-template-webinars .widget-homepage-ctas .widget-header{padding-bottom:1rem;margin-bottom:var(--grid-gap);border-bottom:1px solid #f5ecf8}.page-template-webinars .widget-homepage-ctas .widget-header .widget-title{font-family:var(--font-secondary-new);font-size:2em}.page-template-webinars .widget-homepage-ctas .widget-header svg{display:none}.page-template-webinars .widget-homepage-ctas .list-resources{border:1px solid #f5ecf8;padding:24px}.page-template-webinars .widget-homepage-ctas .list-resources .list-item:not(:last-child){padding-bottom:20px;margin-bottom:20px;border-bottom:1px solid #f5ecf8}.page-template-webinars .widget-homepage-ctas .resource-description,.page-template-webinars .widget-homepage-ctas .resource-image{display:none}.page-template-webinars .widget-homepage-ctas .resource-title{font-size:1.25em;line-height:1.25;color:#303030;font-family:var(--font-primary-new)}.page-template-webinars .widget-homepage-ctas .resource-cta{color:#993dbb;font-size:1em;font-family:var(--font-primary-new);font-weight:700;margin-top:1rem}.ad-wrapper.align-center .ad-wrapper-inner{display:flex;justify-content:center}.ad-wrapper iframe{display:block}@media all and (max-width:82em){.ad-wrapper.align-center-mobile{display:flex;justify-content:center}}.ad-popup{display:none;position:fixed;top:0;left:0;right:0;bottom:0;border:15px solid #993dbb;background:rgba(255,255,255,.94);z-index:9000;justify-content:center;align-items:center}.ad-popup.active{display:flex}.ad-popup-close{width:3rem;height:3rem;display:flex;justify-content:center;align-items:center;background:#993dbb;color:#fff;position:absolute;font-size:1.3em;top:1rem;right:1rem}.ad-popup-content{min-width:5em;min-height:5em;background:#ccc;box-shadow:0 13px 99px 0 rgba(0,0,0,.15)}.ad-pushdown{margin-bottom:1.5em}.ad-header-line-wrapper{background:#c4c4c4;height:1px;width:100%;margin-bottom:10px;display:block}.sm-ad-full-wrapper{pointer-events:none}.sm-ad-full-wrapper:after,.sm-ad-full-wrapper:before{width:calc(50% - 70px);background:#c4c4c4;height:1px;content:'';display:block;margin:16px 0}.sm-ad-full-wrapper:before{float:left}.sm-ad-full-wrapper:after{float:right}.sm-ad-full-wrapper .sm-ad-title{padding-left:15px;font-size:14px;font-weight:700;color:#c4c4c4;text-transform:uppercase}.ad-boxes .ad-dfp{margin:0 auto;text-align:center}.fullwidth-ad-box-wrapper{display:flex;justify-content:center}.ad-leader-board{min-height:90px;max-height:90px}@media (max-width:68.75rem){.leader-board-ad-box{display:none}}.ad-large-leader-board{min-height:90px;max-height:90px}@media (max-width:63.625rem){.large-leader-board-ad-box{display:none}}.ad-medium-rectangle{min-height:250px;max-height:250px}.ad-half-page{min-height:600px;max-height:600px}.ad-leaderboard .ad-dfp{text-align:center}.dfp-ad-shortcode-wrapper>div{margin:15px auto}.ad-centered{margin:0 auto}.ad-wrapper{margin-bottom:2em}.ad-wrapper.no-margin-bottom{margin-bottom:0}.adhesion-ad{display:none;align-items:center;justify-content:center;position:fixed;bottom:0;width:100%;height:auto;padding:1em;border-top:1px solid #eee;background:#fff;z-index:20}@media (max-width:40em){.adhesion-ad{display:flex;z-index:20;min-height:83px}}@media all and (max-width:1200px){.row-ads{justify-content:space-between}.row-ads .column-ad,.row-ads .column-post{flex:0 0 50%;max-width:50%}}body>div[id*=div-gpt-ad]{position:absolute;pointer-events:none}.admin-bar .ad-sticky-box .ad-sticky-wrapper{--ad-sticky-top-position:calc(var(--layout-header-height) + 32px + var(--grid-gap))}.ad-sticky-box{display:inline-block;height:100%;width:100%}.ad-sticky-box .ad-sticky-wrapper{--ad-sticky-top-position:calc(var(--layout-header-height) + var(--grid-gap));position:sticky;top:var(--ad-sticky-top-position)}.ad-wrapper-logo{text-align:center}.ad-sticky-header{font-size:18px;margin-bottom:5px;color:var(--color-base-light)}.ad-image-wrapper{display:flex;justify-content:center}.ad-image-wrapper img{max-height:169px}.events-listing{display:flex;flex-wrap:wrap;position:relative;width:calc(100% + .9375rem * 2);left:-.9375rem;margin:2.3em 0}.events-listing:after,.events-listing:before{flex:0 0 25%;width:100%;max-width:25%;padding-right:.9375rem;padding-left:.9375rem;content:'';width:100%;display:inline-block;order:999}.events-listing .events-item{flex:0 0 25%;max-width:25%;padding-right:.9375rem;padding-left:.9375rem;width:100%;margin-bottom:3.2em;display:flex;flex-direction:column}@media (max-width:60em){.events-listing .events-item{flex:0 0 33.33333%;max-width:33.33333%}}@media (max-width:40em){.events-listing .events-item{flex:0 0 100%;max-width:100%}}.events-listing .events-item .media{display:block;position:relative;overflow:hidden;border-radius:.3em;margin-bottom:1em}.events-listing .events-item .media:before{padding-top:56.25%;display:block;content:''}.events-listing .events-item .media img{display:block;position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);width:100%;height:auto}.events-listing .events-item .media a{position:absolute;top:0;left:0;right:0;bottom:0}.events-listing .events-item-title{font-size:1.75em;font-weight:700;color:#000;margin-bottom:1rem}.events-listing .events-item-date{color:#212121;font-size:1rem;font-style:italic;display:block;margin-bottom:rem-calc(5px)}.events-listing .events-item-date:before{background-image:url("data:image/svg+xml,%3Csvg width='14' height='16' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512'%3E%3Cpath d='M400 64h-48V12c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v52H160V12c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v52H48C21.5 64 0 85.5 0 112v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V112c0-26.5-21.5-48-48-48zm-6 400H54c-3.3 0-6-2.7-6-6V160h352v298c0 3.3-2.7 6-6 6z'/%3E%3C/svg%3E");background-repeat:no-repeat;background-size:14px 16px;background-position:center;width:14px;height:16px;margin-right:5px}.events-listing .events-item-location{margin:0 0 1.5em;font-size:1rem;color:#212121;font-style:italic}.events-listing .events-item-location:before{background-image:url("data:image/svg+xml,%3Csvg width='16' height='18' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cpath d='M461.9 0c-5.73 0-11.59 1.1-17.39 3.52L28.74 195.41c-47.97 22.39-31.98 92.75 19.19 92.75h175.91v175.91c0 30.01 24.21 47.93 48.74 47.93 17.3 0 34.75-8.9 44.01-28.74l191.9-415.78C522.06 34.89 494.14 0 461.9 0zM271.81 464.07V240.19h-47.97l-175.48.71c-.27-.37-.47-1.35.48-1.93L462.05 48.26c.61.41 1.28 1.07 1.69 1.68L271.81 464.07z' fill='%23212121'/%3E%3C/svg%3E");background-repeat:no-repeat;background-size:14px 16px;background-position:center;width:14px;height:16px;margin-right:5px}.events-listing .events-item-date,.events-listing .events-item-location{position:relative;padding-left:1.5em}.events-listing .events-item-date:before,.events-listing .events-item-location:before{position:absolute;top:5px;left:0}.events-listing .events-item-meta{flex-grow:1;display:flex;flex-direction:column}.events-listing .events-item .button,.events-listing .events-item .page:not(.home) .page:not(.page-template-sourcing) .dxoc-content-wrapper .box-notification,.events-listing .events-item .page:not(.home) .page:not(.page-template-sourcing) .dxoc-content-wrapper .button,.events-listing .events-item .page:not(.home) .page:not(.page-template-sourcing) .dxoc-content-wrapper div[style^="background-color: #993dbb"],.events-listing .events-item .search-form .search-field,.events-listing .events-item .search-form .search-submit,.events-listing .events-item .single:not(.home) .dxoc-content-wrapper .box-notification,.events-listing .events-item .single:not(.home) .dxoc-content-wrapper .button,.events-listing .events-item .single:not(.home) .dxoc-content-wrapper div[style^="background-color: #993dbb"],.events-listing .events-item .sourcing-finder button.rfp-creation-link,.page:not(.home) .page:not(.page-template-sourcing) .dxoc-content-wrapper .events-listing .events-item .box-notification,.page:not(.home) .page:not(.page-template-sourcing) .dxoc-content-wrapper .events-listing .events-item .button,.page:not(.home) .page:not(.page-template-sourcing) .dxoc-content-wrapper .events-listing .events-item div[style^="background-color: #993dbb"],.search-form .events-listing .events-item .search-field,.search-form .events-listing .events-item .search-submit,.single:not(.home) .dxoc-content-wrapper .events-listing .events-item .box-notification,.single:not(.home) .dxoc-content-wrapper .events-listing .events-item .button,.single:not(.home) .dxoc-content-wrapper .events-listing .events-item div[style^="background-color: #993dbb"],.sourcing-finder .events-listing .events-item button.rfp-creation-link{margin-top:auto}.events-listing .events-item img{width:100%;display:block;margin-bottom:1em}.events-hero-panel{display:flex;margin-top:4em;box-shadow:0 3px 6px 0 rgba(0,0,0,.07)}.events-hero-panel .events-hero-cta{flex:50%;position:relative;padding:2em;border:1px solid rgba(0,0,0,.1);display:flex;align-items:center;justify-content:space-between}.events-hero-panel .events-hero-cta:before{content:'';position:absolute;bottom:0;right:2em;width:10em;height:100%;background-size:100%;opacity:.1;pointer-events:none}@media (max-width:60em){.events-hero-panel .events-hero-cta{justify-content:center;padding:2em 1em}.events-hero-panel .events-hero-cta .pill{display:none}.events-hero-panel .events-hero-cta:before{opacity:.03}}.events-hero-panel .events-hero-upcoming{border-right:none}.events-hero-panel .events-hero-upcoming:before{background-image:url(//staging.smartmeetings.com/wp-content/themes/smartmeetings/assets/dist/images/communication-tower.svg)}.events-hero-panel .events-hero-past:before{background-image:url(//staging.smartmeetings.com/wp-content/themes/smartmeetings/assets/dist/images/writing-news.svg)}.events-hero-panel .button-ghost{border-color:#993dbb;color:#993dbb}.events-hero-panel .button,.events-hero-panel .page:not(.home) .page:not(.page-template-sourcing) .dxoc-content-wrapper .box-notification,.events-hero-panel .page:not(.home) .page:not(.page-template-sourcing) .dxoc-content-wrapper .button,.events-hero-panel .page:not(.home) .page:not(.page-template-sourcing) .dxoc-content-wrapper div[style^="background-color: #993dbb"],.events-hero-panel .search-form .search-field,.events-hero-panel .search-form .search-submit,.events-hero-panel .single:not(.home) .dxoc-content-wrapper .box-notification,.events-hero-panel .single:not(.home) .dxoc-content-wrapper .button,.events-hero-panel .single:not(.home) .dxoc-content-wrapper div[style^="background-color: #993dbb"],.events-hero-panel .sourcing-finder button.rfp-creation-link,.page:not(.home) .page:not(.page-template-sourcing) .dxoc-content-wrapper .events-hero-panel .box-notification,.page:not(.home) .page:not(.page-template-sourcing) .dxoc-content-wrapper .events-hero-panel .button,.page:not(.home) .page:not(.page-template-sourcing) .dxoc-content-wrapper .events-hero-panel div[style^="background-color: #993dbb"],.search-form .events-hero-panel .search-field,.search-form .events-hero-panel .search-submit,.single:not(.home) .dxoc-content-wrapper .events-hero-panel .box-notification,.single:not(.home) .dxoc-content-wrapper .events-hero-panel .button,.single:not(.home) .dxoc-content-wrapper .events-hero-panel div[style^="background-color: #993dbb"],.sourcing-finder .events-hero-panel button.rfp-creation-link{box-shadow:0 6px 15px 0 rgba(0,0,0,.16)}@media (max-width:60em){.events-hero-panel .button-large{font-size:1.05em}.events-hero-panel .button,.events-hero-panel .page:not(.home) .page:not(.page-template-sourcing) .dxoc-content-wrapper .box-notification,.events-hero-panel .page:not(.home) .page:not(.page-template-sourcing) .dxoc-content-wrapper .button,.events-hero-panel .page:not(.home) .page:not(.page-template-sourcing) .dxoc-content-wrapper div[style^="background-color: #993dbb"],.events-hero-panel .search-form .search-field,.events-hero-panel .search-form .search-submit,.events-hero-panel .single:not(.home) .dxoc-content-wrapper .box-notification,.events-hero-panel .single:not(.home) .dxoc-content-wrapper .button,.events-hero-panel .single:not(.home) .dxoc-content-wrapper div[style^="background-color: #993dbb"],.events-hero-panel .sourcing-finder button.rfp-creation-link,.page:not(.home) .page:not(.page-template-sourcing) .dxoc-content-wrapper .events-hero-panel .box-notification,.page:not(.home) .page:not(.page-template-sourcing) .dxoc-content-wrapper .events-hero-panel .button,.page:not(.home) .page:not(.page-template-sourcing) .dxoc-content-wrapper .events-hero-panel div[style^="background-color: #993dbb"],.search-form .events-hero-panel .search-field,.search-form .events-hero-panel .search-submit,.single:not(.home) .dxoc-content-wrapper .events-hero-panel .box-notification,.single:not(.home) .dxoc-content-wrapper .events-hero-panel .button,.single:not(.home) .dxoc-content-wrapper .events-hero-panel div[style^="background-color: #993dbb"],.sourcing-finder .events-hero-panel button.rfp-creation-link{width:100%;text-align:center}}.events-safety-button-wrapper{display:inline-block;padding:.75em 1.5em .75em .5em;border:1px solid #ddd;border-radius:2px;background:url(//staging.smartmeetings.com/wp-content/themes/smartmeetings/assets/dist/images/icon-sm.svg);background-repeat:no-repeat;background-position:center;background-size:100%;float:right}.events-safety-button-wrapper .events-safety-arrow{background-color:#993dbb;padding:.25em .5em;border-radius:4px;display:inline-block}.events-safety-button-wrapper .events-safety-arrow svg{color:#fff}.events-safety-button-wrapper .events-safety-protocols{margin-top:0;margin-left:.25em;display:inline-block}@media (max-width:30em){.events-safety-button-wrapper{float:none;margin-top:1em}}@font-face{font-family:Nunito-Black;src:url(//staging.smartmeetings.com/wp-content/themes/smartmeetings/assets/dist/fonts/Nunito/Nunito-Black.ttf) format("truetype");font-weight:400;font-style:normal}@font-face{font-family:"NunitoSans-Еxtra-Bold";src:url(//staging.smartmeetings.com/wp-content/themes/smartmeetings/assets/dist/fonts/Nunito/NunitoSans-ExtraBold.ttf) format("truetype");font-weight:700;font-style:normal}.events-welcome-header{display:flex;flex-direction:column;justify-content:center;align-items:center;width:100vw;min-height:50vh;height:auto;position:relative;max-width:100%}.events-welcome-header .video-bg,.events-welcome-header img{width:100%;height:100%;position:absolute;top:0;left:0}@media screen and (min-width:768px){.events-welcome-header .video-bg{display:block}}.events-welcome-header .events-welcome-big-text{display:block;width:100%;padding:0 .125em;position:relative;z-index:2;font-size:10em;font-size:10.4vw;text-align:center;text-transform:uppercase;color:#fff}@media screen and (max-width:1024px){.events-welcome-header .events-welcome-big-text{font-size:6.5em;font-size:15.4vw}}@media screen and (max-width:40em){.events-welcome-header .events-welcome-big-text{font-size:4em;font-size:15.4vw}}.events-welcome-header .events-welcome-small-text{display:block;padding:0 .5em;position:relative;z-index:2;font-size:3.5em;text-align:center;text-transform:uppercase;color:#fff}@media screen and (max-width:60em){.events-welcome-header .events-welcome-small-text{font-size:2em}}.events-welcome-header video{-o-object-position:center 20%;object-position:center 20%}.events-welcome-header .jw-preview{background-position:center 20%!important}.events-welcome-header .events-video-wrapper .jwplayer{z-index:1}.events-welcome-header .events-video-wrapper .jwplayer:not(.jw-state-playing)+.events-video-thumbnail{opacity:1;z-index:5}.events-welcome-header .events-video-thumbnail{transition:.15s ease-in-out;opacity:0;z-index:0;-o-object-fit:cover;object-fit:cover}.events-welcome-header .events-video-thumbnail[src=""]{display:none}.events-welcome-header .events-welcome-big-text,.events-welcome-header .events-welcome-small-text{font-family:"NunitoSans-Еxtra-Bold";position:relative;z-index:10}.events-welcome-header .jwplayer.jw-flag-aspect-mode{height:100%!important}@media all and (-ms-high-contrast:none),(-ms-high-contrast:active){.events-welcome-header .jwplayer.jw-flag-aspect-mode{height:auto!important}.events-welcome-header .video-bg{overflow:hidden}.events-welcome-header .jw-video{transform:translateY(-10%)}}.event-welcome-featured{display:flex;justify-content:center;width:100%;max-width:80%;max-width:80vw;margin:0 auto;position:relative;top:-3em;z-index:5}@media screen and (max-width:990px) and (orientation:landscape){.event-welcome-featured{top:-1px}}@media screen and (max-width:1024px){.event-welcome-featured{margin-bottom:0}}@media screen and (min-width:1600px) and (max-width:3839px){.event-welcome-featured{max-width:50%;max-width:50vw}}@media screen and (min-width:3840px){.event-welcome-featured{max-width:120em}}@media all and (-ms-high-contrast:none),(-ms-high-contrast:active){.event-welcome-featured{display:block;max-width:80%}}@media all and (min-width:1600px) and (max-width:3839px) and (-ms-high-contrast:none),(-ms-high-contrast:active){.event-welcome-featured{max-width:66%}}.event-welcome-featured-meta{display:flex;justify-content:center;flex-wrap:wrap;padding:1.5em 1.5em 3em;background:#fff;box-shadow:0 10px 38px -8px #000}.event-welcome-featured-meta>div{max-width:33%;padding:0 1rem}.event-welcome-featured-meta>div:nth-of-type(2){position:relative}.event-welcome-featured-meta>div:nth-of-type(2)::after,.event-welcome-featured-meta>div:nth-of-type(2)::before{content:"";display:inline-block;width:1px;height:50%;background-color:#ddd;position:absolute;top:25%}.event-welcome-featured-meta>div:nth-of-type(2)::before{left:0}.event-welcome-featured-meta>div:nth-of-type(2)::after{right:0}@media screen and (max-width:640px){.event-welcome-featured-meta>div:nth-of-type(2)::after,.event-welcome-featured-meta>div:nth-of-type(2)::before{content:none}}@media screen and (max-width:640px){.event-welcome-featured-meta>div{margin-bottom:.75em}}.event-welcome-featured-meta h2{padding:0 1em;margin-bottom:.5em;font-size:2.25em;text-align:center;width:100%}@media screen and (max-width:825px){.event-welcome-featured-meta{padding-right:1em;padding-left:1em}.event-welcome-featured-meta>div{padding:0 1em}.event-welcome-featured-meta h2{font-size:2.5em}}@media screen and (max-width:30em){.event-welcome-featured-meta{flex-direction:column}.event-welcome-featured-meta h2{padding:0 1rem}.event-welcome-featured-meta>div{max-width:none}.event-welcome-featured-meta>div:nth-child(n){border:none}.event-welcome-featured-meta .event-welcome-featured-label{display:block}.event-welcome-featured-meta .event-welcome-featured-info{padding-left:1.5em;text-align:left}}.event-welcome-featured-label{margin:0;font-size:.875em;color:#979797}.event-welcome-featured-info{margin:0;padding-left:1.25em;position:relative;font-size:1.5em;font-weight:700;text-align:left}.event-welcome-featured-info svg{position:absolute;top:4px;left:2px;color:#dab856}.event-welcome-featured-actions{width:100%;text-align:center;margin:3em 0 0}.event-welcome-featured-actions .button,.event-welcome-featured-actions .page:not(.home) .page:not(.page-template-sourcing) .dxoc-content-wrapper .box-notification,.event-welcome-featured-actions .page:not(.home) .page:not(.page-template-sourcing) .dxoc-content-wrapper .button,.event-welcome-featured-actions .page:not(.home) .page:not(.page-template-sourcing) .dxoc-content-wrapper div[style^="background-color: #993dbb"],.event-welcome-featured-actions .search-form .search-field,.event-welcome-featured-actions .search-form .search-submit,.event-welcome-featured-actions .single:not(.home) .dxoc-content-wrapper .box-notification,.event-welcome-featured-actions .single:not(.home) .dxoc-content-wrapper .button,.event-welcome-featured-actions .single:not(.home) .dxoc-content-wrapper div[style^="background-color: #993dbb"],.event-welcome-featured-actions .sourcing-finder button.rfp-creation-link,.page:not(.home) .page:not(.page-template-sourcing) .dxoc-content-wrapper .event-welcome-featured-actions .box-notification,.page:not(.home) .page:not(.page-template-sourcing) .dxoc-content-wrapper .event-welcome-featured-actions .button,.page:not(.home) .page:not(.page-template-sourcing) .dxoc-content-wrapper .event-welcome-featured-actions div[style^="background-color: #993dbb"],.search-form .event-welcome-featured-actions .search-field,.search-form .event-welcome-featured-actions .search-submit,.single:not(.home) .dxoc-content-wrapper .event-welcome-featured-actions .box-notification,.single:not(.home) .dxoc-content-wrapper .event-welcome-featured-actions .button,.single:not(.home) .dxoc-content-wrapper .event-welcome-featured-actions div[style^="background-color: #993dbb"],.sourcing-finder .event-welcome-featured-actions button.rfp-creation-link{font-size:2em}.events-upcoming.events-upcoming-2021 .events-item{margin-bottom:4.2em}.events-upcoming.events-upcoming-2021 .events-item-meta{justify-content:flex-end}.events-upcoming.events-upcoming-2021 .events-item-date,.events-upcoming.events-upcoming-2021 .events-item-location{padding-left:0}.events-upcoming.events-upcoming-2021 .events-item-date::before,.events-upcoming.events-upcoming-2021 .events-item-location::before{content:none}.events-upcoming.events-upcoming-2021 .events-item-location{margin:0;font-size:1.25em}.events-upcoming.events-upcoming-2021 .button,.events-upcoming.events-upcoming-2021 .page:not(.home) .page:not(.page-template-sourcing) .dxoc-content-wrapper .box-notification,.events-upcoming.events-upcoming-2021 .page:not(.home) .page:not(.page-template-sourcing) .dxoc-content-wrapper .button,.events-upcoming.events-upcoming-2021 .page:not(.home) .page:not(.page-template-sourcing) .dxoc-content-wrapper div[style^="background-color: #993dbb"],.events-upcoming.events-upcoming-2021 .search-form .search-field,.events-upcoming.events-upcoming-2021 .search-form .search-submit,.events-upcoming.events-upcoming-2021 .single:not(.home) .dxoc-content-wrapper .box-notification,.events-upcoming.events-upcoming-2021 .single:not(.home) .dxoc-content-wrapper .button,.events-upcoming.events-upcoming-2021 .single:not(.home) .dxoc-content-wrapper div[style^="background-color: #993dbb"],.events-upcoming.events-upcoming-2021 .sourcing-finder button.rfp-creation-link,.page:not(.home) .page:not(.page-template-sourcing) .dxoc-content-wrapper .events-upcoming.events-upcoming-2021 .box-notification,.page:not(.home) .page:not(.page-template-sourcing) .dxoc-content-wrapper .events-upcoming.events-upcoming-2021 .button,.page:not(.home) .page:not(.page-template-sourcing) .dxoc-content-wrapper .events-upcoming.events-upcoming-2021 div[style^="background-color: #993dbb"],.search-form .events-upcoming.events-upcoming-2021 .search-field,.search-form .events-upcoming.events-upcoming-2021 .search-submit,.single:not(.home) .dxoc-content-wrapper .events-upcoming.events-upcoming-2021 .box-notification,.single:not(.home) .dxoc-content-wrapper .events-upcoming.events-upcoming-2021 .button,.single:not(.home) .dxoc-content-wrapper .events-upcoming.events-upcoming-2021 div[style^="background-color: #993dbb"],.sourcing-finder .events-upcoming.events-upcoming-2021 button.rfp-creation-link{max-width:66%;width:auto;margin-top:.5em;padding:.5em;font-size:1.25em;text-align:center}@media screen and (min-width:40em),(max-width:30em){.page-template-events-2021-landing{font-size:16px}}.page-template-events-2021-landing .events-welcome-logo{width:20em;height:20em;border-radius:50%;background:#fff;position:absolute;top:0;left:2em;z-index:10;text-align:center;transform:translateY(-55%);overflow:hidden}.page-template-events-2021-landing .events-welcome-logo a{max-width:88%;width:auto;height:100%;background:#fff url(//staging.smartmeetings.com/wp-content/themes/smartmeetings/assets/dist/images/logo-events.jpg) no-repeat center;background-size:100%}.page-template-events-2021-landing .events-welcome-logo img{max-width:70%;height:auto;position:relative;transform:translateY(11.5em)}@media only screen and (max-width:82em){.page-template-events-2021-landing .events-welcome-logo{width:200px;height:200px;left:5px}.page-template-events-2021-landing .events-welcome-logo img{max-width:70%;bottom:3.75em}}.events-template-events-flexible .open-jw-video-bg-flexible,.events-template-events-flexible-2023 .open-jw-video-bg-flexible{display:none}.events-template-events-flexible .speakers div.card,.events-template-events-flexible-2023 .speakers div.card{flex:0 0 calc(50% - 2em);align-items:center}.events-template-events-flexible .speakers div.card-body,.events-template-events-flexible-2023 .speakers div.card-body{max-width:28em}.events-template-events-flexible .single-event-safety-video-container,.events-template-events-flexible-2023 .single-event-safety-video-container{position:relative;width:100%;overflow:hidden;padding-top:56.25%}.events-template-events-flexible .single-event-safety-video,.events-template-events-flexible-2023 .single-event-safety-video{position:absolute;top:0;left:0;bottom:0;right:0;width:100%;height:100%;border:none;padding-left:1em;padding-right:1em}@media all and (max-width:40em){.events-template-events-flexible .speakers div.card,.events-template-events-flexible-2023 .speakers div.card{flex-basis:100%;max-width:calc(100% - 3.75rem);margin-left:auto;margin-right:auto}}.events-template-events-flexible .site-navigation ul,.events-template-events-flexible-2023 .site-navigation ul{margin-bottom:0}.events-template-events-flexible .venue-page.single-event-section,.events-template-events-flexible-2023 .venue-page.single-event-section{margin-top:.25em}.microsite-page .entry-content{position:relative;min-height:410px}.microsite-page .entry-content>*{max-width:50rem;margin-left:auto;margin-right:auto}.microsite-page .entry-content table{max-width:100%}.microsite-page .entry-content .section-headline{border-bottom:1px solid rgba(0,0,0,.1);padding-bottom:.5em;margin-bottom:1em}.microsite-page .entry-content:before{content:'';display:block;position:absolute;left:180px;top:.5em;height:189px;width:457px;background-size:457px;background:url(//staging.smartmeetings.com/wp-content/themes/smartmeetings/assets/dist/images/grid-dots-1.svg);z-index:-1;transform:rotate(90deg);transform-origin:top left}@media (max-width:82em){.microsite-page .entry-content:before{display:none}}.microsite-page .entry-content .microsite-specsheets ul{padding-left:0}.microsite-page .entry-content .microsite-specsheets ul li{list-style:none;padding-left:0}.microsite-page .entry-content .microsite-specsheets ul li:before{display:none}.microsite-page .entry-content .microsite-specsheets .micro-spec-title{margin-top:0}.microsite-page .entry-content h2,.microsite-page .entry-content h3,.microsite-page .entry-content h4{margin:1.25em auto .5em}.microsite-page .entry-content h2{font-size:2.25em}.microsite-page .entry-content h3{font-size:1.75em}.microsite-page .entry-content h4{font-size:1.25em}.microsite-page .entry-content h5{font-size:1em;font-weight:700;text-transform:uppercase}.microsite-page .entry-content h6{font-size:.75em;font-weight:700;text-transform:uppercase}.microsite-page .entry-content ul{padding-left:1.5em}.microsite-page .entry-content ul li{position:relative;padding-left:1.5em;padding-bottom:.5em}.microsite-page .entry-content ul li:before{content:'';position:absolute;top:.3em;left:0;color:#993dbb;background-image:url("data:image/svg+xml,%3Csvg width='18' height='18' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512'%3E%3Cpath d='M295.515 115.716l-19.626 19.626c-4.753 4.753-4.675 12.484.173 17.14L356.78 230H12c-6.627 0-12 5.373-12 12v28c0 6.627 5.373 12 12 12h344.78l-80.717 77.518c-4.849 4.656-4.927 12.387-.173 17.14l19.626 19.626c4.686 4.686 12.284 4.686 16.971 0l131.799-131.799c4.686-4.686 4.686-12.284 0-16.971L312.485 115.716c-4.686-4.686-12.284-4.686-16.97 0z' fill='%23993dbb' /%3E%3C/svg%3E");background-repeat:no-repeat;background-size:contain;width:18px;height:18px}.microsite-page .entry-content ul li li:before{color:rgba(0,0,0,.5)}.microsite-page .entry-content .tabs-content{font-size:1.25em}.microsite-page .entry-content .tabs-section{margin:2em 0 4em}.microsite-page .entry-content .tabs-section .section-headline:first-child{margin-top:0}.microsite-page .entry-content .microsite-specsheets{padding-left:0}.microsite-page .entry-content .microsite-specsheets .micro-spec-item{padding-left:0}.microsite-page .entry-content .microsite-specsheets .micro-spec-item:before{display:none}.microsite-specsheets{display:flex;flex-flow:row wrap;justify-content:space-between;padding-left:0}.microsite-specsheets .micro-spec-item{list-style:none;padding-left:0;flex-basis:calc(100% / 2 - 2em);margin-bottom:2.5em}.microsite-specsheets .micro-spec-title{margin-top:0;font-size:1.25em;margin-bottom:.625em}@media (max-width:60em){.microsite-specsheets .micro-spec-item{flex-basis:100%}}.micro-spec-download{display:inline-block;text-decoration:none;margin-bottom:.625em}.micro-spec-thumbnail{flex:1 1 100%;margin-bottom:1.25em}.micro-spec-thumbnail img{max-height:11.25em;min-height:11.25em;height:100%;width:100%;-o-object-fit:cover;object-fit:cover;box-shadow:0 6px 15px 0 rgba(0,0,0,.16)}@media all and (-ms-high-contrast:none),(-ms-high-contrast:active){.micro-spec-thumbnail img{min-height:0;max-height:100%}}.micro-spec-meta{flex:1 1 100%}.micro-spec-content{margin-bottom:1em}.micro-spec-description{overflow:hidden;max-height:5em;margin:1em 0;position:relative}.expandable-content .micro-spec-description:after{content:'';height:2.5em;width:100%;position:absolute;bottom:0;left:0;background:linear-gradient(to bottom,rgba(255,255,255,0) 0,#fff 2em,#fff 2.5em)}.expandable-content.is-expanded .micro-spec-description{max-height:100%}.expandable-content.is-expanded .micro-spec-description:after{display:none}.tabs-section-repeatable{display:flex;flex-wrap:wrap;justify-content:space-between}.tabs-section-repeatable .tabs-document{flex-basis:calc(100% / 3 - 1em);margin-bottom:1.25em;display:inline-block}.tabs-section-repeatable .tabs-document img{-o-object-fit:cover;object-fit:cover;min-height:11em;max-height:11em;width:100%;box-shadow:0 6px 15px 0 rgba(0,0,0,.16)}@media all and (-ms-high-contrast:none),(-ms-high-contrast:active){.tabs-section-repeatable .tabs-document img{min-height:0;max-height:100%}}.microsite-page .tabs-section-repeatable .tabs-document{padding:0}.microsite-page .tabs-section-repeatable .tabs-document:before{display:none}@media (max-width:33em){.tabs-section-repeatable{text-align:center}}@media (max-width:40em){.tabs-section-repeatable .tabs-document{flex-basis:calc(100% / 2 - 1em)}}.venue-finder-form{display:flex;flex-flow:row}.venue-finder-form .live-field{flex:1;margin-right:10px}.venue-finder-form .live-field:last-child{margin-right:0}@media (max-width:60em){.venue-finder-form{flex-wrap:wrap}.venue-finder-form .live-field{margin-bottom:1.5em;flex-basis:calc(100%)}}.venue-finder{padding:3em 0}.sourcing-finder{border-radius:6px;padding:5em;background-size:cover;position:relative;z-index:1}.sourcing-finder:before{content:'';background-color:rgba(255,255,255,.45);width:100%;height:100%;position:absolute;top:0;left:0;z-index:-1}.sourcing-finder .section-heading{flex-wrap:wrap;text-align:center}.sourcing-finder .heading-title{flex:1 1 100%}.sourcing-finder .heading-content{flex:1 1 100%}.sourcing-finder input[type=text]{width:100%;padding:.85em;border:none;box-shadow:0 6px 15px 0 rgba(0,0,0,.16);border:1px solid #fff;transition:.2s ease;line-height:1}.sourcing-finder input[type=text]:focus{outline:0;border-color:#993dbb}.sourcing-finder button.rfp-creation-link{background-color:#993dbb;color:#fff;cursor:pointer;min-width:10em}.sourcing-finder button.rfp-creation-link:focus{outline:0;border:none}.sourcing-finder .date-wrapper{position:relative}.sourcing-finder .date-wrapper input{cursor:pointer}.sourcing-finder .date-wrapper:before{pointer-events:none;background-image:url("data:image/svg+xml,%3Csvg width='14' height='16' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512'%3E%3Cpath d='M400 64h-48V12c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v52H160V12c0-6.6-5.4-12-12-12h-40c-6.6 0-12 5.4-12 12v52H48C21.5 64 0 85.5 0 112v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V112c0-26.5-21.5-48-48-48zm-6 400H54c-3.3 0-6-2.7-6-6V160h352v298c0 3.3-2.7 6-6 6z' fill='%23404040'/%3E%3C/svg%3E");background-repeat:no-repeat;background-size:14px 16px;background-position:center;width:14px;height:16px;position:absolute;right:1em;top:1em;color:#404040}@media (max-width:82em){.sourcing-finder{padding:5em 3em}.sourcing-finder .section-heading{flex-direction:row}}.reg{max-width:82em;margin:0 auto}.reg .ur-frontend-form{border:0}.reg .ur-frontend-form .ur-form-row .ur-form-grid input,.reg .ur-frontend-form .ur-form-row .ur-form-grid input:not(.user-registration-Button){width:auto;flex-grow:1;height:50px;border:0;background-color:#f3f3f3;padding:.75em}@media screen and (max-width:490px){.reg .ur-frontend-form .ur-form-row .ur-form-grid input,.reg .ur-frontend-form .ur-form-row .ur-form-grid input:not(.user-registration-Button){width:100%}}.reg .ur-frontend-form .ur-form-row .ur-form-grid .user-registration-Button{width:auto;flex-grow:0;padding-right:2em;padding-left:2em;background-color:#993dbb;color:#fff}.reg .ur-frontend-form .ur-form-row .ur-form-grid .form-row{display:flex;align-items:center;flex-wrap:wrap;min-height:50px;margin-bottom:10px}@media screen and (max-width:490px){.reg .ur-frontend-form .ur-form-row .ur-form-grid .form-row{flex-direction:column;align-items:flex-start}}.reg .ur-frontend-form .ur-form-row .ur-form-grid .form-row .ur-label,.reg .ur-frontend-form .ur-form-row .ur-form-grid .form-row label{min-width:160px;max-width:160px;font-size:1em;word-wrap:break-word}.reg .ur-frontend-form .ur-form-row .ur-form-grid .form-row .password-input-group{flex-grow:1;width:auto}@media screen and (max-width:490px){.reg .ur-frontend-form .ur-form-row .ur-form-grid .form-row .password-input-group{width:100%}}.reg .ur-frontend-form .ur-form-row .ur-form-grid .form-row .password-input-group input{width:100%}.reg .ur-frontend-form .ur-form-row .ur-form-grid .password-input-group .user-registration-error,.reg .ur-frontend-form .ur-form-row .ur-form-grid .user-registration-error{flex-grow:1;flex-basis:100%;margin-top:-5px;margin-left:160px}@media screen and (max-width:490px){.reg .ur-frontend-form .ur-form-row .ur-form-grid .password-input-group .user-registration-error,.reg .ur-frontend-form .ur-form-row .ur-form-grid .user-registration-error{width:100%;margin-left:0}}.reg .ur-frontend-form .ur-form-row .ur-form-grid .field-user_confirm_password .user-registration-error,.reg .ur-frontend-form .ur-form-row .ur-form-grid .field-user_pass .user-registration-error{margin-top:-15px}.reg .ur-frontend-form .ur-submit-button{margin-left:0;background-color:#993dbb;font-size:1.5em;color:#fff}.reg .ur-form-grid.ur-grid-2{display:none}.reg-wrapper{display:flex;justify-content:space-between;flex-wrap:wrap}.reg-wrapper .reg-aside,.reg-wrapper .reg-form{flex:0 0 calc(50% - 1.25em)}@media all and (-ms-high-contrast:none),(-ms-high-contrast:active){.reg-wrapper .reg-aside,.reg-wrapper .reg-form{width:calc(50% - 1.25em)}}.reg-wrapper .reg-aside+*{margin-right:1em}.reg-wrapper .hide_show_password .password-input-group{flex-grow:1}@media screen and (max-width:490px){.reg-wrapper .hide_show_password .password-input-group{width:100%}}.reg-wrapper .reg-form .marketplace-logo{width:100%;max-width:530px;margin:0 0 1.5em}@media screen and (max-width:1110px){.reg-wrapper .reg-aside,.reg-wrapper .reg-form{padding:0 .25em}}@media screen and (max-width:910px){.reg-wrapper{flex-direction:column;padding:0 1em}.reg-wrapper .reg-form{order:1}.reg-wrapper .reg-aside{order:2}.reg-wrapper .reg-aside{text-align:center}}.reg-heading{margin-bottom:.5em;font-size:2em;font-weight:400}.reg .ur-frontend-form .ur-form-row .ur-form-grid .form-row label{max-width:unset}.entry-page .entry-content ul li:before{display:none}.entry-page .entry-content{min-height:auto}.user-registration-profile-header+p{display:none}.user-registration-error{padding:0;margin:0;border-top:none;background:#fff}.ur-frontend-form .ur-form-row .ur-form-grid label{margin-bottom:0}.user-registration-password-hint,.user-registration-password-strength{margin-left:160px}.user-registration-password-hint{margin-bottom:.5em}@media all and (max-width:490px){.user-registration-password-strength{margin-left:0}}.category-wrapper{margin-bottom:3.25em}.category-wrapper .section-heading{background-color:#fcf7ea;position:relative;padding:1.125em 2.625em 1em 1.375em;border-radius:.375em;margin-bottom:1.75em}.category-wrapper .section-heading .heading-title{font-size:1.25em;font-weight:500;color:#212121;line-height:1.4}.category-wrapper .category-badge-wrapper{position:absolute;right:.25em;top:0}.category-wrapper .category-menu-wrapper .menu-item a{display:block;padding:.625em 1.375em;color:#333;font-size:1.125em;font-weight:400;line-height:1.2}.category-wrapper .mobile-dropdown-wrapper{display:none}@media screen and (max-width:48em){.category-wrapper.is-extended .category-menu-wrapper .menu-item{display:block}.category-wrapper.is-extended .mobile-dropdown-wrapper{transform:rotate(90deg);transform-origin:top left;transition:.5s;right:-2.625em}.category-wrapper .category-badge-wrapper{display:none}.category-wrapper .menu-item{display:none}.category-wrapper .section-heading{display:flex;flex-direction:revert;justify-content:space-between;align-items:center}.category-wrapper .mobile-dropdown-wrapper{display:block;position:relative;right:-2em;height:1em}.category-wrapper .mobile-dropdown-wrapper path{fill:#212121}}.popup{position:fixed;width:100%;height:100%;inset:0;align-items:center;justify-content:center;display:none;z-index:999}.popup.is-visible{display:flex}.popup-backdrop{position:absolute;width:100%;height:100%;background:rgba(255,255,255,.95)}.popup-content{z-index:1;position:relative;background-color:#fff;border-radius:1em;box-shadow:0 6px 15px 0 rgba(0,0,0,.16);display:flex;width:100%;max-width:calc(100% - 4em);height:calc(100% - 2*var(--layout-header-height) - 2rem);max-height:48.5em;margin:auto}@media screen and (min-width:1200px){.popup-content{width:75.875em;max-width:calc(100% - 420px)}}.popup-close{display:flex;position:absolute;top:2em;right:2em;border:none;-webkit-appearance:none;-moz-appearance:none;appearance:none;padding:1em;cursor:pointer;outline:0}.popup-thumbnail-wrapper{position:relative;padding-bottom:inherit;flex:0 0 28em}.popup-thumbnail{position:absolute;-o-object-fit:cover;object-fit:cover;width:100%;height:100%;top:0;left:0;border-top-left-radius:1em;border-bottom-left-radius:1em}.popup-body-wrapper{padding:7.25em 5.375em;display:flex;flex-direction:column;justify-content:space-between;overflow-y:auto}.popup-body .popup-title{color:#212121;font-size:2.25em;font-weight:700;line-height:1.4;margin-bottom:.5em}.page-template-smart-stars .popup-body .popup-title{font-family:var(--font-primary-new)}.page-template-smart-stars .popup-excerpt{font-family:var(--font-secondary-new)}.popup-more-info .popup-title{color:#333;font-size:1.125em;font-weight:700;padding-bottom:1.125em;border-bottom:1px solid #ddd;margin-top:1em}.page-template-smart-stars .popup-more-info .popup-title{font-family:var(--font-primary-new)}.popup-more-info .contact-list-wrapper{margin-top:1.75em}.popup-more-info .contact-list-wrapper .list-item{display:flex;flex-direction:row;align-items:center}.popup-more-info .contact-list-wrapper .list-item:not(:last-child){margin-bottom:.625em}.popup-more-info .contact-list-wrapper .list-item-icon{width:1.125em;display:flex;flex-direction:row;justify-content:center}.popup-more-info .contact-list-wrapper a{color:#777;font-size:1.125em;font-weight:400;margin-left:.875em;overflow-wrap:anywhere}.popup-more-info .contact-list-wrapper a:hover{text-decoration:underline}.page-template-smart-stars .popup-more-info .contact-list-wrapper a{font-size:1.125rem;font-family:var(--font-secondary-new)}@media (max-width:42rem){.popup-close{right:1em}}@media (max-width:50rem){.popup-close{top:1em}.popup-close path{fill:#000}}@media screen and (max-width:79em){.popup .popup-body-wrapper{padding:5.25em 3.375em}.popup .popup-close{top:1em;right:1em}.popup .popup-thumbnail-wrapper{flex:0 0 24em}}@media screen and (max-width:50.75em){.popup .popup-body .popup-title{font-size:2em}.popup .popup-body-wrapper{padding:4.25em 3.375em}.popup .popup-thumbnail-wrapper{flex:0 0 22em}}@media screen and (max-width:48em){.popup .popup-content{flex-direction:column;max-height:calc(100% - 7em);margin-top:65px}.popup .popup-thumbnail-wrapper{height:0;padding-bottom:16.625em;flex:0 0 16.625em}.popup .popup-thumbnail{border-top-right-radius:1em;border-bottom-left-radius:0}.popup .popup-close{display:flex;padding:.75em;border:2px solid #fff;border-radius:50%}.popup .popup-close path{fill:#fff}.popup .popup-title{margin-bottom:0}.popup .popup-excerpt{margin:1em 0}.popup .popup-body-wrapper{padding:1.75em 1em;height:100%;overflow-y:scroll}}@media (max-width:40em){.popup .popup-excerpt{font-size:.875em}}@media (max-width:26.5em){.popup .popup-body .popup-title{font-size:1.25em}}.page-template-smart-stars .popup .popup-thumbnail-wrapper{flex:0 0 36.9%}@media screen and (max-width:79em){.page-template-smart-stars .popup .popup-thumbnail-wrapper{flex:0 0 36.9%}}@media screen and (max-width:48em){.page-template-smart-stars .popup .popup-thumbnail-wrapper{flex:0 0 16.625em}}.section-resources-heading{--heading-spacing-bottom:var(--spacing-extra-small);--heading-wrapper-spacing-bottom:var(--spacing-custom);width:100%;border-bottom:1px solid var(--color-base-light-muted);padding-bottom:var(--heading-spacing-bottom);margin-bottom:var(--heading-wrapper-spacing-bottom)}.section-resources-heading.no-margin-bottom{--heading-wrapper-spacing-bottom:0}.section-resources-heading.heading-small{--heading-spacing-bottom:0.625rem}.section-resources-heading.heading-small .heading-title{--title-font-size:var(--font-size-h4);--title-line-height:var(--font-size-h4-line-height)}.section-resources-heading .heading-title-wrapper{display:flex;align-items:center;color:var(--color-base-light)}.section-resources-heading .separate-content{justify-content:space-between}.section-resources-heading .separate-content .btn-inline-link.btn-underlined{font-weight:500}.section-resources-heading .heading-icon{display:flex;align-items:center;justify-content:center;margin-right:var(--spacing-small-medium)}.section-resources-heading .heading-title{--title-font-size:var(--font-size-h2);--title-line-height:var(--font-size-h2-line-height);font-family:var(--font-secondary-new);font-size:var(--title-font-size);font-weight:700;line-height:var(--title-line-height)}.section-resources-heading .heading-flex{display:flex;align-items:center}.section-resources-heading .heading-flex.separated-content{justify-content:space-between}@media (max-width:42rem){.section-resources-heading .heading-icon{margin-right:.625rem}.section-resources-heading .heading-flex{flex-direction:column;align-items:flex-start}.section-resources-heading .heading-flex :not(:last-child){margin-bottom:var(--heading-spacing-bottom)}}.resource-box-inner-link,.resource-box-links.vertical-box{cursor:pointer}.resource-box-inner-link:hover .box-content,.resource-box-links.vertical-box:hover .box-content{border-color:var(--color-primary)}.resource-box-inner-link:hover .btn-arrow-icon-line svg,.resource-box-links.vertical-box:hover .btn-arrow-icon-line svg{width:22px}.resource-box .box-thumbnail-wrapper.events-thumbnail-ceus{--box-thumbnail-wrapper-height:100%;padding-bottom:var(--box-thumbnail-wrapper-height)}.resource-box .box-thumbnail-wrapper.events-thumbnail-ceus.size-medium{--box-thumbnail-wrapper-height:260px}.resource-box .box-thumbnail-wrapper.events-thumbnail-ceus.size-medium-custom{--box-thumbnail-wrapper-height:260px}@media (max-width:62rem){.resource-box .box-thumbnail-wrapper.events-thumbnail-ceus.size-medium{--box-thumbnail-wrapper-height:58.30904%}.resource-box .box-thumbnail-wrapper.events-thumbnail-ceus.size-medium-custom{--box-thumbnail-wrapper-height:58.30904%}}.resource-box .box-thumbnail-wrapper.events-thumbnail-ceus .ceus-inner-wrapper{position:absolute;display:flex!important;flex-direction:column;justify-content:flex-end;font-family:Nunito;font-size:22px;font-weight:700;line-height:25px;letter-spacing:0;text-align:left;padding:20px;margin:0;bottom:0;color:#fff;background:linear-gradient(360deg,#993dbb 0,rgba(153,61,187,0) 100%);background-repeat:no-repeat;background-size:cover;height:calc(50% + 25px);width:100%}.resource-box .box-thumbnail-wrapper.events-thumbnail-ceus .ceus-title{display:-webkit-box;-webkit-line-clamp:2;line-clamp:2;-webkit-box-orient:vertical;overflow:hidden;height:50px}.resource-box .box-thumbnail-wrapper{--box-thumbnail-wrapper-height:calc(83% + 1px);padding-bottom:var(--box-thumbnail-wrapper-height)}.resource-box .box-thumbnail-wrapper.size-medium{--box-thumbnail-wrapper-height:260px}.resource-box .box-thumbnail-wrapper.size-medium-custom{--box-thumbnail-wrapper-height:260px}@media (max-width:62rem){.resource-box .box-thumbnail-wrapper.size-medium{--box-thumbnail-wrapper-height:58.30904%}.resource-box .box-thumbnail-wrapper.size-medium-custom{--box-thumbnail-wrapper-height:58.30904%}}.resource-box .box-thumbnail-wrapper{position:relative;height:0;width:100%}.resource-box .box-thumbnail{position:absolute;top:0;left:0;height:100%;width:100%;-o-object-fit:cover;object-fit:cover}.resource-box:not(.separated):not(.horizontal-content):not(.horizontal-box) .box-content{border-top:0}.resource-box .box-content{border:1px solid var(--color-base-light-muted);padding:var(--spacing-small-medium);transition:.25s ease-in-out}.resource-box .box-content .content-date,.resource-box .box-content .content-tag{color:var(--color-base-light);font-family:var(--font-secondary-new);font-size:var(--font-size-extra-small);font-weight:400;line-height:1.3;margin-bottom:.75rem}.resource-box .box-content .hide-date{visibility:hidden}.resource-box .box-content .content-tag{text-transform:uppercase}.resource-box .box-content .content-tag a{color:inherit}.resource-box .box-content .content-title{color:var(--color-base-light);font-family:var(--font-primary-new);font-size:var(--font-size-custom);font-weight:700;line-height:1.137;overflow:hidden;text-overflow:ellipsis;display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;height:-moz-fit-content;height:fit-content;max-height:50px}.resource-box .box-content .content-link{margin-top:.75rem}.resource-box .box-content .content-link-author{transition:.25s ease-in-out}.resource-box .box-content .content-link-author:hover{color:var(--color-muted-dark)}@media (max-width:42rem){.resource-box .box-thumbnail-wrapper,.resource-box .box-thumbnail-wrapper.size-medium,.resource-box .box-thumbnail-wrapper.size-medium-custom{--box-thumbnail-wrapper-height:58.30904%}.resource-box .box-content .content-date{margin-bottom:.625rem}.resource-box .box-content .content-link{margin-top:.625rem}}.horizontal-box+.horizontal-box,.horizontal-box+.resource-box.horizontal-content,.resource-box.horizontal-content+.horizontal-box,.resource-box.horizontal-content+.resource-box.horizontal-content{margin-top:var(--spacing-custom-grid)}.horizontal-box .box-content,.resource-box.horizontal-content .box-content{border-left-color:transparent;width:100%}@media (max-width:50rem){.horizontal-box .box-content,.resource-box.horizontal-content .box-content{border-left-color:var(--color-base-light-muted)}}.resource-box.horizontal-content .resource-box-inner-link{display:flex}.resource-box.horizontal-content .box-thumbnail-wrapper{--box-thumbnail-wrapper-height:162px;max-width:190px;min-width:190px}.resource-box.horizontal-content .box-content .content-title{-webkit-line-clamp:3;max-height:75px}@media (max-width:50rem){.resource-box.horizontal-content .resource-box-inner-link{flex-direction:column}.resource-box.horizontal-content .resource-box-inner-link:hover .box-content{border-left-color:var(--color-primary)}.resource-box.horizontal-content .box-thumbnail-wrapper{--box-thumbnail-wrapper-height:58.30904%;max-width:100%;min-width:100%}}.flex-box-wrapper .resource-box,.grid-box-wrapper .resource-box,.magazine-issues-list .list-item .resource-box{height:100%}.flex-box-wrapper .resource-box-inner-link,.flex-box-wrapper .resource-box-links.vertical-box,.grid-box-wrapper .resource-box-inner-link,.grid-box-wrapper .resource-box-links.vertical-box,.magazine-issues-list .list-item .resource-box-inner-link,.magazine-issues-list .list-item .resource-box-links.vertical-box{display:flex;flex-direction:column;height:100%}.flex-box-wrapper .resource-box-inner-link .box-content,.flex-box-wrapper .resource-box-links.vertical-box .box-content,.grid-box-wrapper .resource-box-inner-link .box-content,.grid-box-wrapper .resource-box-links.vertical-box .box-content,.magazine-issues-list .list-item .resource-box-inner-link .box-content,.magazine-issues-list .list-item .resource-box-links.vertical-box .box-content{display:flex;flex-direction:column;height:100%}.flex-box-wrapper .resource-box-inner-link .content-title,.flex-box-wrapper .resource-box-links.vertical-box .content-title,.grid-box-wrapper .resource-box-inner-link .content-title,.grid-box-wrapper .resource-box-links.vertical-box .content-title,.magazine-issues-list .list-item .resource-box-inner-link .content-title,.magazine-issues-list .list-item .resource-box-links.vertical-box .content-title{flex-grow:1}.resource-card{position:relative;padding-left:3px;background-color:var(--color-base);height:100%}.resource-card::before{content:'';position:absolute;left:0;top:0;height:100%;width:3px;border-radius:3px;background-color:var(--color-primary);transition:.6s ease-in-out}.resource-card:hover::before{width:100%}.resource-card:hover .resource-card-author,.resource-card:hover .resource-card-date,.resource-card:hover .resource-card-title{color:var(--color-base)}.resource-card .resource-card-author,.resource-card .resource-card-date,.resource-card .resource-card-title{transition:.6s ease-in-out}.resource-card-inner{display:flex;flex-direction:column;height:100%;position:relative;padding:var(--spacing-custom);z-index:1}.resource-card-inner a{color:inherit}.resource-card-inner a:hover{color:inherit}.resource-card-title{flex-grow:1;color:var(--color-base-light);font-family:var(--font-primary-new);font-size:var(--font-size-h4);font-weight:700;line-height:.985;overflow:hidden;text-overflow:ellipsis;display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;height:-moz-fit-content;height:fit-content;max-height:50px}.resource-card-title+.resource-card-excerpt{margin-top:var(--spacing-extra-smaller)}.resource-card .resource-card-excerpt{display:grid;grid-template-columns:3.75rem auto;grid-template-rows:auto auto;-moz-column-gap:.75rem;column-gap:.75rem;align-items:center}.resource-card .resource-card-thumbnail{position:relative;height:3.75em;width:3.75em;-o-object-fit:cover;object-fit:cover;border-radius:50%;overflow:hidden;grid-row:1/3}.resource-card .resource-card-author,.resource-card .resource-card-date{margin:0}.resource-card .resource-card-author{grid-column:2/3;grid-row:1/2;font-family:var(--font-primary-new);font-size:var(--font-size-h6);font-weight:800;line-height:1.3;color:var(--color-primary);align-self:end}.resource-card .resource-card-date{grid-column:2/3;grid-row:2/3;line-height:1.155;font-family:var(--font-secondary-new);font-size:var(--font-size-extra-small);font-weight:400;margin-top:0;color:var(--color-base-light);align-self:start}.resource-box-video.video-preview{position:relative;height:0;width:100%;padding-bottom:540px}.resource-box-video.video-preview::before{content:'';position:absolute;top:0;left:0;height:100%;width:100%;background:linear-gradient(180deg,rgba(0,0,0,0) 0,#000 100%);pointer-events:none}.resource-box-video.video-preview.is-active .video-controls{opacity:0;z-index:-1}@media (min-width:801px){.resource-box-video.video-preview.is-active .video-content-wrapper{transform:translateY(100%);opacity:0;pointer-events:none;z-index:-1}}.resource-box-video.video-preview .resource-box-video-wrapper,.resource-box-video.video-preview .video-content-wrapper{position:absolute;left:0;width:100%}.resource-box-video.video-preview .resource-box-video-wrapper{top:0;height:100%;z-index:2}.resource-box-video.video-preview .resource-box-video-wrapper:hover .video-controls{opacity:1}.resource-box-video.video-preview .resource-box-video-wrapper>div{top:0;left:0;height:100%!important}.resource-box-video.video-preview .resource-box-video-wrapper .jw-icon-display{display:none!important}.resource-box-video.video-preview .resource-box-video-wrapper .video-controls{--video-controls-size:4.375rem;position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);height:var(--video-controls-size);width:var(--video-controls-size);border-radius:50%;display:flex;align-items:center;justify-content:center;color:var(--color-base);background-color:var(--color-primary);opacity:.9;transition:.25s ease-in-out;cursor:pointer;pointer-events:none}.resource-box-video.video-preview .resource-box-video-wrapper .video-controls svg{margin-left:.375rem}.resource-box-video.video-preview .video-content-wrapper{bottom:0;padding:var(--spacing-small);z-index:3;transition:.15s opacity ease-out,.25s transform ease-in-out}.resource-box-video.video-preview .video-content-wrapper a{color:inherit}.resource-box-video.video-preview .video-content-title{color:var(--color-base);font-family:var(--font-primary-new);font-size:var(--font-size-custom);font-weight:700;line-height:1.15;overflow:hidden;text-overflow:ellipsis;display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;height:-moz-fit-content;height:fit-content;max-height:50px}.resource-box-video.video-preview .video-content-title+.video-content-except-wrapper{margin-top:var(--font-size-extra-small)}.resource-box-video.video-preview .video-content-except-wrapper{display:grid;grid-template-columns:2.5rem auto;grid-template-rows:auto auto;color:var(--color-base);-moz-column-gap:.75rem;column-gap:.75rem;align-items:center}.resource-box-video.video-preview .video-content-title{width:100%;max-width:30.5vw}@media screen and (max-width:1120px){.resource-box-video.video-preview .video-content-title{max-width:90vw}}.resource-box-video.video-preview .except-thumbnail-wrapper{position:relative;height:0;width:100%;padding-bottom:40px;border-radius:50%;overflow:hidden;grid-row:1/3}.resource-box-video.video-preview .except-thumbnail{position:absolute;top:0;left:0;height:100%;width:100%;-o-object-fit:cover;object-fit:cover}.resource-box-video.video-preview .except-date,.resource-box-video.video-preview .except-title{font-family:var(--font-primary-new);margin:0}.resource-box-video.video-preview .except-title{grid-column:2/3;grid-row:1/2;font-size:var(--font-size-h6);font-weight:800;line-height:1.3125}.resource-box-video.video-preview .except-date{grid-column:2/3;grid-row:2/3;line-height:1.145;font-size:var(--font-size-extra-small);font-weight:400;margin-top:0}@media (max-width:50rem){.resource-box-video.video-preview{height:-moz-fit-content;height:fit-content;padding-bottom:0}.resource-box-video.video-preview::before{display:none}.resource-box-video.video-preview .resource-box-video-wrapper{position:relative;height:0;padding-bottom:56.25%}.resource-box-video.video-preview .resource-box-video-wrapper::before{content:'';position:absolute;top:0;left:0;height:100%;width:100%;background:linear-gradient(180deg,rgba(0,0,0,0) 0,#000 100%);pointer-events:none}.resource-box-video.video-preview .resource-box-video-wrapper>div{position:absolute}.resource-box-video.video-preview .video-content-wrapper{position:relative;bottom:revert;border:1px solid var(--color-base-light-muted);border-top:0;padding:var(--spacing-small-medium);transition:.25s ease-in-out}.resource-box-video.video-preview .video-content-wrapper:hover{border-color:var(--color-primary)}.resource-box-video.video-preview .video-content-title{color:var(--color-base-light);-webkit-line-clamp:3;max-height:75px}.resource-box-video.video-preview .except-date{color:var(--color-base-light)}.resource-box-video.video-preview .except-title{color:var(--color-primary)}}.section-resources-video .resources-custom-grid.one-row .primary-container{grid-column:1/3}.section-resources-video .resources-custom-grid.one-row .secondary-container{grid-column:3/4}@media screen and (max-width:1120px){.section-resources-video .resources-custom-grid.one-row{grid-template-columns:1fr;row-gap:var(--grid-gap)}.section-resources-video .resources-custom-grid.one-row .primary-container,.section-resources-video .resources-custom-grid.one-row .secondary-container{grid-column:1/2}.section-resources-video .resources-custom-grid.one-row .resource-box.horizontal-content{display:inline-block;width:100%;max-width:calc(100% / 2 - var(--grid-gap))}.section-resources-video .resources-custom-grid.one-row .resource-box.horizontal-content:nth-of-type(even){margin-right:var(--grid-gap)}}@media (max-width:62rem){.section-resources-video .resources-custom-grid.one-row .resource-box.horizontal-content{max-width:100%}.section-resources-video .resources-custom-grid.one-row .resource-box.horizontal-content:nth-of-type(even){margin-right:0}}.resources-widget-wrapper .widget.widget-homepage-ctas+.ad-wrapper{margin-top:var(--spacing-custom-grid)}.resources-widget-wrapper .widget-homepage-ctas{margin-bottom:0}.resources-widget-wrapper .widget-homepage-ctas .widget-header{display:none}.resources-widget-wrapper .widget-homepage-ctas .list-resources .list-item:first-child .resource-image{flex:0 0 100%;width:100%;max-width:100%;margin-right:0}.resources-widget-wrapper .widget-homepage-ctas .list-resources .list-item:first-child .resource-image-wrapper::after{padding-bottom:66.66667%}@media (max-width:62rem){.resources-widget-wrapper .widget-homepage-ctas .list-resources .list-item:first-child .resource-image-wrapper::after{padding-bottom:58.31%}}.resources-widget-wrapper .widget-homepage-ctas .list-resources .list-item:not(:first-child) .resource-image{display:none}.resources-widget-wrapper .widget-homepage-ctas .list-resources .list-item:not(:last-child) .resource-content{position:relative}.resources-widget-wrapper .widget-homepage-ctas .list-resources .list-item:not(:last-child) .resource-content::after{content:'';position:absolute;bottom:0;left:50%;transform:translate3d(-50%,0,0);height:1px;background-color:var(--color-base-light-muted);width:calc(100% - 2 * var(--spacing-small-medium));transition:.25s ease-in-out}.resources-widget-wrapper .widget-homepage-ctas .list-resources .list-item:last-child .resource-content{border-bottom:1px solid var(--color-base-light-muted)}.resources-widget-wrapper .widget-homepage-ctas .list-resources .list-item{flex-direction:column;margin-bottom:0}.resources-widget-wrapper .widget-homepage-ctas .list-resources .list-item:hover .resource-content::after{background-color:var(--color-primary)}.resources-widget-wrapper .widget-homepage-ctas .list-resources .list-item:hover .btn-arrow-icon-line{background-color:var(--color-primary)}.resources-widget-wrapper .widget-homepage-ctas .list-resources .list-item:hover .btn-arrow-icon-line svg{width:22px}.resources-widget-wrapper .widget-homepage-ctas .resource-content{padding:var(--spacing-small-medium);width:100%;border-left:1px solid var(--color-base-light-muted);border-right:1px solid var(--color-base-light-muted);box-sizing:border-box}.resources-widget-wrapper .widget-homepage-ctas .resource-content .resource-label{margin-bottom:.625rem}.resources-widget-wrapper .widget-homepage-ctas .resource-content .resource-date{color:var(--color-base-light);font-family:var(--font-secondary-new);font-size:var(--font-size-extra-small);font-weight:400;line-height:1.285;margin-bottom:var(--spacing-extra-smaller)}.resources-widget-wrapper .widget-homepage-ctas .resource-content .resource-title{font-family:var(--font-primary-new);font-weight:700;font-size:var(--font-size-h5);color:var(--color-base-light);overflow:hidden;text-overflow:ellipsis;display:-webkit-box;-webkit-line-clamp:3;-webkit-box-orient:vertical;height:74px;max-height:74px}.resources-widget-wrapper .widget-homepage-ctas .resource-content .resource-description{display:none}.resources-widget-wrapper .widget-homepage-ctas .resource-content .resource-cta{margin-top:var(--spacing-extra-small);color:var(--color-primary);font-family:var(--font-primary-new);font-weight:700}.resources-widget-wrapper .widget-homepage-ctas .resource-content .resource-cta svg{color:var(--color-primary)}.resource-box-links.horizontal-box{display:grid;grid-template-columns:minmax(0,18.75rem) minmax(66%,calc(100% - 18.75rem))}.resource-box-links.horizontal-box .box-thumbnail-wrapper{--box-thumbnail-wrapper-height:71.66667%}.resource-box-links.horizontal-box .box-content{display:flex;flex-direction:column;justify-content:center}.resource-box-links.fillsize-animation{transition:.25s ease-in-out}.resource-box-links.fillsize-animation:hover .box-content{background-color:var(--color-base-light-muted-half);border-color:var(--color-base-light-muted-half);border-left-color:transparent}.resource-box-links .content-title a{color:inherit}.resource-box-thumbnail-link{display:inline-block;width:100%}@media (max-width:42rem){.resource-box-links.horizontal-box{grid-template-columns:1fr}}.resources-list-wrapper .resource-box:not(:last-child):hover .box-content::after{background-color:var(--color-primary)}.resources-list-wrapper .resource-box:not(:last-child) .box-content{position:relative;border-bottom-color:transparent}.resources-list-wrapper .resource-box:not(:last-child) .box-content::after{content:'';position:absolute;bottom:0;left:50%;transform:translate3d(-50%,0,0);height:1px;background-color:var(--color-base-light-muted);width:calc(100% - 2 * var(--spacing-small-medium));transition:.25s ease-in-out}.resources-list-wrapper .resource-box:last-child:hover .box-content{border-bottom-color:var(--color-base-light-muted)}.resources-list-wrapper .resource-box:last-child .box-content .content-title{-webkit-line-clamp:1}.resources-list-wrapper .resource-box-links.vertical-box{display:flex;flex-direction:column}.resources-list-wrapper .resource-box-links.vertical-box:hover .box-content{border-left-color:var(--color-base-light-muted);border-right-color:var(--color-base-light-muted)}.resources-custom-grid{display:grid;grid-template-columns:minmax(0,42%) minmax(0,32%) 18.75rem;grid-template-rows:auto 5.625em;gap:var(--grid-gap)}.resources-custom-grid.boxes-reversed{grid-template-columns:18.75rem minmax(0,32%) minmax(0,42%)}.resources-custom-grid.one-row{grid-template-rows:1fr;row-gap:0}.resources-custom-grid .primary-container{grid-row:1/3}.resources-custom-grid .custom-container{grid-column:2/4}.resources-custom-grid .third-container .resource-box .content-title{-webkit-line-clamp:3;max-height:73px}.resources-custom-grid .third-container .resource-box .box-content{padding-top:16px;padding-bottom:15px}@media screen and (max-width:62rem){.resources-custom-grid{grid-template-columns:1fr;grid-template-rows:auto}.resources-custom-grid.boxes-reversed{grid-template-columns:1fr}.resources-custom-grid .custom-container,.resources-custom-grid .primary-container,.resources-custom-grid .secondary-container,.resources-custom-grid .third-container{grid-row:auto;grid-column:1/2}}@media (max-width:50rem){.resources-custom-grid .custom-container{display:none}}.subscribe-form-wrapper form{display:flex}.subscribe-form-wrapper form .btn{margin-left:var(--spacing-custom);white-space:nowrap}.subscribe-form-wrapper input{color:var(--color-base-light);font-size:var(--font-size-small);font-family:var(--font-secondary-new);width:100%;background-color:var(--color-base);outline:0;padding:.875rem 1.625rem;line-height:1;border:none;border-radius:0;-webkit-appearance:none;min-height:3.375rem}.subscribe-form-wrapper input::-moz-placeholder{color:var(--color-muted);opacity:1}.subscribe-form-wrapper input::placeholder{color:var(--color-muted);opacity:1}.subscribe-form-wrapper input:-ms-input-placeholder{color:var(--color-muted)}.subscribe-form-wrapper input::-ms-input-placeholder{color:var(--color-muted)}@media (max-width:62rem){.subscribe-form-wrapper form{flex-direction:column}.subscribe-form-wrapper form .btn{margin-top:.75rem;margin-left:0}}.section-subscribe-form .heading-title{--font-weight-title:800;margin-bottom:0}.section-subscribe-form .heading-title+.heading-description{margin-top:var(--spacing-extra-smaller)}.section-subscribe-form .subscribe-btn-wrapper{justify-self:flex-end}@media (max-width:42rem){.section-subscribe-form.section-padding-bottom-large{--section-padding-bottom:1.5rem}.section-subscribe-form .heading-title{text-align:center;font-size:1.375em}.section-subscribe-form .heading-title+.heading-description{margin-top:.5rem}.section-subscribe-form .heading-description{text-align:center}.section-subscribe-form .subscribe-btn-wrapper{justify-self:stretch}.section-subscribe-form .subscribe-btn-wrapper .btn{width:100%;text-align:center}}.subscribe-banner-wrapper{position:relative}.subscribe-banner-wrapper .subscribe-thumbnail-wrapper{position:absolute;top:0;right:0;height:100%;min-height:15.625em;max-height:100%;width:100%;max-width:17.625em}.subscribe-banner-wrapper .subscribe-thumbnail-wrapper .subscribe-thumbnail{position:absolute;top:0;left:0;height:100%;width:100%;-o-object-fit:cover;object-fit:cover}.subscribe-banner-wrapper .subscribe-banner-content{position:relative;z-index:1;padding:var(--spacing-medium)}.subscribe-banner-wrapper .section-heading-new{margin-bottom:var(--spacing-small)}.subscribe-banner-wrapper .heading-title{margin-bottom:.125rem}.subscribe-banner-wrapper .heading-description{margin-top:0}@media (max-width:1024px){.subscribe-banner-wrapper .subscribe-thumbnail-wrapper{display:none}}@media (max-width:1024px) and (min-width:42rem){.subscribe-banner-wrapper .heading-title{--font-size-h2:26px}.subscribe-banner-wrapper .heading-description{--font-size-h5:18px}}.subscribe-wrapper{background-color:#993dbb;margin-top:var(--spacing-custom-grid);margin-bottom:var(--spacing-custom-grid);height:auto;border-radius:5px;font-family:var(--primary-font-new)}@media only screen and (min-width:1241px){.subscribe-wrapper{padding:39px 82px}}@media only screen and (min-width:1177px) and (max-width:1240px){.subscribe-wrapper{padding:39px}}@media only screen and (min-width:1155px) and (max-width:1176px){.subscribe-wrapper{padding:40px}}@media only screen and (min-width:561px) and (max-width:1154px){.subscribe-wrapper{padding:30px}}@media only screen and (min-width:301px) and (max-width:560px){.subscribe-wrapper{padding:20px}}@media only screen and (max-width:300px){.subscribe-wrapper{padding:20px 10px}}@media only screen and (min-width:1155px){.subscribe-wrapper{grid-template-columns:1fr 304px}}@media only screen and (min-width:801px) and (max-width:1154px){.subscribe-wrapper{grid-template-columns:1fr 304px}}@media only screen and (min-width:561px) and (max-width:801px){.subscribe-wrapper{grid-template-columns:1fr 274px}}@media only screen and (max-width:560px){.subscribe-wrapper .subscribe-heading{text-align:center}}.subscribe-wrapper .subscribe-heading h4.heading-title{font-size:2em;color:#fff;font-style:normal;font-weight:900;line-height:29px;font-size:24px;margin-bottom:.4rem}@media only screen and (min-width:801px) and (max-width:1154px){.subscribe-wrapper .subscribe-heading h4.heading-title{font-size:1.75em;line-height:32px}}@media only screen and (min-width:561px) and (max-width:800px){.subscribe-wrapper .subscribe-heading h4.heading-title{font-size:1.5em;line-height:28px;margin-bottom:1rem}}@media only screen and (min-width:391px) and (max-width:480px){.subscribe-wrapper .subscribe-heading h4.heading-title{font-size:1.5em;line-height:28px;margin-bottom:1rem}}@media only screen and (max-width:390px){.subscribe-wrapper .subscribe-heading h4.heading-title{font-size:1.375em;line-height:28px;margin-bottom:1rem}}.subscribe-wrapper .subscribe-heading p.heading-subtitle{font-style:normal;font-weight:400;line-height:19px;font-size:16px;color:#fff;margin-top:0;margin-bottom:10px}@media only screen and (min-width:801px) and (max-width:1154px){.subscribe-wrapper .subscribe-heading p.heading-subtitle{font-size:1.125em}}@media only screen and (min-width:561px) and (max-width:800px){.subscribe-wrapper .subscribe-heading p.heading-subtitle{font-size:1em}}@media only screen and (max-width:480px){.subscribe-wrapper .subscribe-heading p.heading-subtitle{font-size:1em}}.subscribe-wrapper .subscribe-buttons{display:flex;flex-direction:column;align-items:flex-start}.subscribe-wrapper .subscribe-buttons .subscribe-button-below-heading{margin-top:1.125rem}@media only screen and (max-width:560px){.subscribe-wrapper .subscribe-buttons{align-items:center}}.subscribe-wrapper .secondary-subscribe-column{flex-direction:column;display:flex;gap:16px;align-items:flex-end}@media only screen and (min-width:301px) and (max-width:560px){.subscribe-wrapper .secondary-subscribe-column{align-items:center}}.subscribe-wrapper .secondary-subscribe-column .secondary-subscribe-items{max-width:198px;max-height:103px}.subscribe-wrapper .secondary-subscribe-column .secondary-subscibe-wrapper{align-items:center}.subscribe-wrapper .secondary-subscribe-column p{font-style:normal;font-weight:400;line-height:19px;font-size:16px;color:#fff;margin-top:0;margin-bottom:10px;text-align:center}.section-fullwidth-new .row .tve_p_right{display:none}.section-fullwidth-new .row .thrv_wrapper.tve-tqb-page-type.tqb-splash-template-1.tve_editor_main_content.tve_empty_dropzone{padding:25px!important;margin:0!important;max-width:unset}.section-fullwidth-new .row .thrv_wrapper.tve-tqb-page-type.tqb-optin-template-1{padding:0!important}.section-fullwidth-new .row .thrv_wrapper.thrv_social_custom.thrv_social{padding:0!important}.section-fullwidth-new .row .tve_lg_input_container.tve_submit_container button{padding:10px 15px!important}.section-fullwidth-new .row .thrv_wrapper{padding:20px!important;margin:0 auto!important}.section-fullwidth-new .row .thrv_wrapper h1{font-size:28px!important}.section-fullwidth-new .row .thrv_wrapper h2{font-size:26px!important}.section-fullwidth-new .row .thrv_wrapper h3{font-size:22px!important}.section-fullwidth-new .row .thrv_wrapper h4{font-size:20px!important}.section-fullwidth-new .row .thrv_wrapper.thrv_contentbox_shortcode.thrv-content-box{margin:0 auto;padding:0!important}.section-fullwidth-new .row .thrv_wrapper.thrv_contentbox_shortcode.thrv-content-box .thrv_wrapper.thrv_lead_generation{padding:0!important}.section-fullwidth-new .row .thrv_wrapper.thrv_text_element{margin:0;padding:20px 0!important}.section-fullwidth-new .row .thrv_wrapper.thrv_text_element p{font-size:16px!important}.section-fullwidth-new .row .thrv_wrapper.thrv-button.tqb-btn-start{padding:10px 40px;margin-top:0;margin-bottom:0}.section-fullwidth-new .row .tve_social_items a{padding-bottom:20px}.section-fullwidth-new .row .tqb-question-text{color:#993dbb;font-size:28px!important}.section-fullwidth-new .row .tqb-question-image-container{width:50%!important;margin:20px auto!important}.section-fullwidth-new .row .tqb-answer-action{padding:15px}.section-fullwidth-new .row .tqb-answer-action .tqb-answer-text-type .tqb-answer-text .tbq-span-text{font-size:16px}.section-fullwidth-new .row .tqb-answer-action .tqb-answer-text-type .tqb-answer-text .tqb-fancy-icon{top:0}.row{--row-max-width:var(--site-width-large);--row-breakpoint-width:var(--site-width-large);width:100%;max-width:var(--row-max-width);margin-left:auto;margin-right:auto}.row.narrow{max-width:46em}.row-after-spacing{margin-bottom:3em}.row-before-spacing{margin-top:3em}@media (max-width:82.125rem){.row{--row-breakpoint-width:Min(calc(100% - 2rem), var(--row-max-width));max-width:Min(calc(100% - 2rem),var(--row-max-width))}}@media (max-width:62rem){.row{--row-breakpoint-width:Min(var(--site-width-small), var(--row-max-width));max-width:Min(var(--site-width-small),var(--row-max-width))}}@media (max-width:50rem){.row{--row-breakpoint-width:Min(var(--site-width-mobile), var(--row-max-width));max-width:Min(var(--site-width-mobile),var(--row-max-width))}}@media (max-width:42rem){.row{--row-breakpoint-width:calc(100% - 2rem);max-width:calc(100% - 2rem)}}@media (max-width:334px){.row{max-width:calc(100% - 1.25rem)}}.row-fullwidth{max-width:calc(100% - 2rem);margin-left:auto;margin-right:auto}@media (max-width:334px){.row-fullwidth{max-width:calc(100% - 1.25rem)}}.archive.category-smart-meetings-podcast .jw-icon:not(.jw-icon-volume),.archive.category-smart-meetings-podcast .jw-slider-time,.archive.category-smart-meetings-podcast .jw-text-duration,.archive.category-smart-meetings-podcast .jw-text-elapsed,.page-template-events-archive .jw-icon:not(.jw-icon-volume),.page-template-events-archive .jw-slider-time,.page-template-events-archive .jw-text-duration,.page-template-events-archive .jw-text-elapsed{display:none!important}.primary-fullwidth-banner-wrapper,.site-header-wrapper{background-color:var(--color-base);position:relative;z-index:1001}.primary-fullwidth-banner-wrapper{padding:calc(var(--spacing-extra-small) - .0625rem) 0}.primary-fullwidth-banner-wrapper .fullwidth-banner-inner-wrapper{display:flex;align-items:center;justify-content:center}.primary-fullwidth-banner-wrapper .ad-wrapper{margin-bottom:0}@media (max-width:50rem){.primary-fullwidth-banner-wrapper{display:none}}@media screen and (max-width:640px) and (orientation:portrait){.primary-fullwidth-banner-wrapper{display:none}}@media screen and (max-width:992px) and (orientation:landscape){.primary-fullwidth-banner-wrapper{display:none}}@media (max-width:62rem){.site-header-inner-wrapper{--row-max-width:var(--site-width-large);display:flex;align-items:center;justify-content:space-between;width:100%;max-width:Min(var(--site-width-small),var(--row-max-width));margin-left:auto;margin-right:auto;border-bottom:1px solid var(--color-base-light-muted)}}@media (max-width:50rem){.site-header-inner-wrapper{max-width:Min(var(--site-width-mobile),var(--row-max-width))}}@media (max-width:42rem){.site-header-inner-wrapper{max-width:calc(100% - 2rem)}}.site-preheader-wrapper{--preheader-spacing:0;border-top:1px solid var(--color-base-light-muted);border-bottom:1px solid var(--color-base-light-muted);padding:var(--preheader-spacing)}.site-preheader-wrapper .preheader-inner-wrapper{display:flex;align-items:center;justify-content:space-between}@media (max-width:62rem){.site-preheader-wrapper{--preheader-spacing:0.75em 0;border-top:0;border-bottom:0}.site-preheader-wrapper .header-social-wrapper{display:none}}@media (max-width:42rem){.site-preheader-wrapper .row{max-width:100%}}.subscribe-button-wrapper{display:flex;position:relative}.subscribe-button-wrapper .subscribe-button-inner-wraper{display:flex;width:100%}.subscribe-button-wrapper:hover .subscribe-btn-thumbnail{transform:translate3d(0,-1.5rem,0)}@media (max-width:42rem){.subscribe-button-wrapper:hover .subscribe-btn-thumbnail{transform:translate3d(0,-.625rem,0)}}.subscribe-button-wrapper .subscribe-btn-thumbnail{position:absolute;right:1rem;bottom:0;z-index:5;transition:.2s ease-in-out;height:7.25em;width:6.125em;background-color:var(--color-base);-o-object-fit:contain;object-fit:contain}@media (max-width:42rem){.subscribe-button-wrapper .subscribe-btn-thumbnail{height:4.5em;width:3.875em}}.header-button-subscribe{--btn-padding:0.625rem 1.875rem;--btn-font-size:1em;position:relative;border:0;overflow:hidden;z-index:10}.site-branding.site-branding-stuck{position:absolute;top:50%;left:0;transform:translate3d(calc(-100% - .5rem),-50%,0);pointer-events:none;opacity:0;transition:.5s ease-in-out;margin-right:var(--brading-right-spacing)}.site-branding.site-branding-stuck a{height:2.75em;width:var(--branding-width)}.site-branding a,.site-branding p{color:var(--color-base)}.site-branding .site-title{font-size:1em;margin:0}.site-branding a{font-size:1em;display:block;height:4.5em;width:14em;background:url(//staging.smartmeetings.com/wp-content/themes/smartmeetings/assets/dist/images/SMLogo-purple-new.svg) no-repeat center center;background-size:contain;text-indent:-9999em}@media (max-width:62rem){.site-branding a{height:2.5em;width:7.875em}}.header-social-wrapper{display:flex;align-items:center}.header-social-wrapper .social-title{color:var(--color-base-invert);font-size:var(--font-size-h6);font-weight:400;line-height:normal;margin-right:calc(var(--spacing-extra-small)/ 2)}.header-social-wrapper .list-social-icons{display:flex}.header-social-wrapper .list-social-icons .list-item-link{display:flex;padding:calc(var(--spacing-extra-small)/ 2);color:var(--color-base-invert)}.primary-menu-wrapper .menu:first-of-type>.menu-item:first-of-type>a{padding-left:0}.primary-menu-wrapper .menu{display:flex}.primary-menu-wrapper .menu>.menu-item{position:relative}.primary-menu-wrapper .menu>.menu-item>a{transition:.25s ease-in-out;-webkit-transition:.25s ease-in-out;-webkit-animation-timing-function:ease-in-out;-webkit-animation-delay:.25s}@media (min-width:993px){.primary-menu-wrapper .menu>.menu-item:hover .sub-menu{opacity:1;pointer-events:all;transform:scale(1);z-index:1000}.primary-menu-wrapper .menu>.menu-item .sub-menu{position:absolute;top:100%;background-color:var(--color-base);width:15rem;opacity:0;transition:.25s ease-in-out;-webkit-transition:.25s ease-in-out;-webkit-animation-timing-function:ease-in-out;-webkit-animation-delay:.25s;pointer-events:none;transform:scale(.95);z-index:-1;box-shadow:var(--shadow-primary);border:1px solid var(--color-base-light-muted)}.primary-menu-wrapper .menu>.menu-item .sub-menu .menu-item a{font-weight:500}.primary-menu-wrapper .menu>.menu-item .sub-menu .menu-item a:hover{background-color:var(--color-primary-light)}}@media (max-width:62rem){.primary-menu-wrapper .menu>.menu-item .sub-menu .menu-item a{font-weight:500}}.primary-menu-wrapper .menu .menu-item{--links-space-vertical:0.625em;--links-space-right:15px;--links-font-size:var(--font-size-h6)}.primary-menu-wrapper .menu .menu-item.menu-item-has-children{--child-link-icon-width:12px;--child-link-icon-space-left:7px;--child-links-space-right:calc(var(--child-link-icon-width) + var(--links-space-right) + var(--child-link-icon-space-left));--child-links-icon-position:calc(var(--child-links-space-right) - var(--child-link-icon-width) - var(--child-link-icon-space-left));--child-links-icon-width:0.75rem}.primary-menu-wrapper .menu .menu-item.menu-item-has-children>a{position:relative;padding-right:var(--child-links-space-right)}.primary-menu-wrapper .menu .menu-item.menu-item-has-children .dropdown-arrow{position:absolute;top:50%;right:var(--child-links-icon-position);transform:translateY(-50%);display:flex;margin-left:var(--child-link-icon-space-left);cursor:pointer;width:var(--child-links-icon-width)}.primary-menu-wrapper .menu .menu-item.menu-item-has-children .dropdown-arrow svg{pointer-events:none}@media (max-width:76.25rem) and (min-width:993px){.primary-menu-wrapper .menu .menu-item.menu-item-has-children{--child-link-icon-width:9px}}.primary-menu-wrapper .menu .menu-item a{display:flex;align-items:center;color:var(--color-base-light);font-family:var(--font-primary-new);font-size:var(--links-font-size);font-weight:700;line-height:1.25;padding:var(--links-space-vertical) var(--links-space-right)}@media (max-width:82.125rem) and (min-width:993px){.primary-menu-wrapper .menu .menu-item{--links-space-right:0.75rem}}@media (max-width:76.25rem) and (min-width:993px){.primary-menu-wrapper .menu .menu-item{--links-space-right:0.625rem}}@media (max-width:74.25rem) and (min-width:993px){.primary-menu-wrapper .menu .menu-item{--links-font-size:15px;--links-space-vertical:0.5em;--links-space-right:0.5rem}.primary-menu-wrapper .menu .menu-item.menu-item-has-children{--child-link-icon-space-left:3px;--child-links-icon-width:9px}}@media (max-width:71rem) and (min-width:993px){.primary-menu-wrapper .menu .menu-item{--links-space-right:0.5rem}}@media (max-width:64.375rem){.primary-menu-wrapper .menu .menu-item{--links-space-right:0.375rem}}@media (max-width:62rem){.primary-menu-wrapper{width:100%;padding-top:1.25em;margin-bottom:1.25em}.primary-menu-wrapper .menu{flex-direction:column}.primary-menu-wrapper .menu>.menu-item>a{padding-bottom:.375em}.primary-menu-wrapper .menu>.menu-item:not(:last-child){margin-bottom:.875em}.primary-menu-wrapper .menu .menu-item{--links-space-right:0}.primary-menu-wrapper .menu .menu-item.menu-item-has-children{--child-links-icon-width:1.75rem;--child-links-space-right:0;--child-links-icon-position:calc(0% - var(--child-link-icon-width) - var(--child-link-icon-space-left));display:flex;flex-wrap:wrap}.primary-menu-wrapper .menu .menu-item.menu-item-has-children .dropdown-arrow{--child-links-icon-position:0;position:relative;top:0;transform:none;padding:.625em 1em var(--child-link-icon-space-left) 0;align-items:center;-webkit-tap-highlight-color:transparent}.primary-menu-wrapper .menu .menu-item.menu-item-has-children .dropdown-arrow svg{transition:.25s ease-in-out;-webkit-transition:.25s ease-in-out;-webkit-animation-timing-function:ease-in-out;-webkit-animation-delay:.25s}.primary-menu-wrapper .menu .menu-item.menu-item-has-children .sub-menu{height:0;opacity:0;width:100%;pointer-events:none}.primary-menu-wrapper .menu .menu-item.menu-item-has-children.is-opened .dropdown-arrow svg{transform:rotate(180deg)}.primary-menu-wrapper .menu .menu-item.menu-item-has-children.is-opened .sub-menu{height:100%;opacity:1;pointer-events:all}}.header-main-inner-wrapper{--header-main-inner-spacing:0.875em 0;display:flex;align-items:center;justify-content:space-between;padding:var(--header-main-inner-spacing)}@media (max-width:62rem){.header-main-inner-wrapper{--header-main-inner-spacing:0.5em 0}}.header-main-secondary-container .container-inner-wrapper{display:flex;align-items:center}.header-main-secondary-container .primary-menu-button-wrapper,.header-main-secondary-container .search-button-wrapper,.header-main-secondary-container .secondary-menu-button-wrapper{--icons-box-padding:0.625em;position:relative;left:var(--icons-box-padding);display:flex;align-items:center;justify-content:center;padding:var(--icons-box-padding);height:1.5rem;box-sizing:content-box;color:var(--color-base-light);cursor:pointer;transition:.25s ease-in-out;-webkit-transition:.25s ease-in-out;-webkit-animation-timing-function:ease-in-out;-webkit-animation-delay:.25s;-webkit-tap-highlight-color:transparent}.header-main-secondary-container .primary-menu-button-wrapper svg,.header-main-secondary-container .search-button-wrapper svg,.header-main-secondary-container .secondary-menu-button-wrapper svg{pointer-events:none}@media (min-width:993px){.header-main-secondary-container .primary-menu-button-wrapper:hover,.header-main-secondary-container .search-button-wrapper:hover,.header-main-secondary-container .secondary-menu-button-wrapper:hover{color:var(--color-primary)}}.header-main-secondary-container .primary-menu-button-wrapper,.header-main-secondary-container .secondary-menu-button-wrapper{width:1.25rem;height:1.5rem}.header-main-secondary-container .primary-menu-button-wrapper span,.header-main-secondary-container .secondary-menu-button-wrapper span{display:flex;position:absolute;pointer-events:none;transition:.25s ease-in-out;-webkit-transition:.25s ease-in-out;-webkit-animation-timing-function:ease-in-out;-webkit-animation-delay:.25s;opacity:0}.header-main-secondary-container .primary-menu-button-wrapper{display:none}@media (max-width:62rem){.header-main-secondary-container .primary-menu-button-wrapper{display:flex}.header-main-secondary-container .secondary-menu-button-wrapper{display:none}.header-main-secondary-container .primary-menu-button-wrapper,.header-main-secondary-container .search-button-wrapper,.header-main-secondary-container .secondary-menu-button-wrapper{--icons-box-padding:0.75em}.header-main-secondary-container .search-button-wrapper{margin-right:.125em}}.header-main-primary-container{opacity:1;transition:.25s ease-in-out;-webkit-transition:.25s ease-in-out;-webkit-animation-timing-function:ease-in-out;-webkit-animation-delay:.25s;pointer-events:all}.header-main-primary-container .header-social-wrapper{margin-top:2.125em}.header-main-primary-container .header-social-wrapper+.subscribe-button-wrapper{margin-top:2.125em}.header-main-primary-container .subscribe-button-wrapper .header-button-subscribe{width:100%;text-align:center}@media (min-width:993px){.header-main-primary-container{position:relative;display:flex;align-items:center}.header-main-primary-container .header-social-wrapper{display:none}}@media (max-width:62rem){.header-main-primary-container{position:absolute;top:100%;left:0;width:100%;height:0;background-color:var(--color-base);pointer-events:none;opacity:0;z-index:-1;padding-bottom:1.875em}}@supports (-webkit-touch-callout:none){.header-main-primary-container{padding-bottom:2.75em}}@media (min-width:993px){.header-main-primary-inner-container{position:relative;transition:.5s ease-in-out}}@media (max-width:62rem){.header-main-primary-inner-container{max-width:Min(var(--site-width-small),var(--row-max-width));margin-left:auto;margin-right:auto;height:100%;overflow-y:auto}}@media (max-width:50rem){.header-main-primary-inner-container{max-width:Min(var(--site-width-mobile),var(--row-max-width))}}@media (max-width:42rem){.header-main-primary-inner-container{max-width:calc(100% - 2rem)}}.site-header-main{position:relative;background-color:var(--color-base);border-bottom:1px solid var(--color-base-light-muted)}@media (min-width:993px){.site-header-main{--brading-right-spacing:1.875rem;--branding-width:6.25em}.site-header-main.is-sticked .site-branding-stuck,.site-header-main.is_stuck .site-branding-stuck{transform:translate3d(0,-50%,0);pointer-events:all;opacity:1}.site-header-main.is-sticked .site-branding-stuck+.header-main-primary-inner-container,.site-header-main.is_stuck .site-branding-stuck+.header-main-primary-inner-container{transform:translate3d(calc(var(--brading-right-spacing) + var(--branding-width)),0,0)}}@media (max-width:82.125rem) and (min-width:993px){.site-header-main{--brading-right-spacing:1rem;--branding-width:5.5em}}@media (max-width:74.25rem) and (min-width:993px){.site-header-main{--brading-right-spacing:0.625rem;--branding-width:5em}}.site-header-main:not(.is-active-secondary-menu) .secondary-menu-button-wrapper .menu-icon-default{opacity:1}.site-header-main:not(.is-active-secondary-menu) .secondary-menu-button-wrapper .menu-icon-close{opacity:0}.site-header-main:not(.is-active-primary-menu) .primary-menu-button-wrapper .menu-icon-default{opacity:1}.site-header-main:not(.is-active-primary-menu) .primary-menu-button-wrapper .menu-icon-close{opacity:0}.site-header-main.is-active-header-search .header-search-container-wrapper{opacity:1;pointer-events:all}.site-header-main.is-active-header-search .header-search-form .header-search-button,.site-header-main.is-active-header-search .header-search-form .header-search-field{transform:translateX(0);opacity:1}.site-header-main.is-active-header-search .header-search-form .header-search-button-close{transform:translateX(0);transition-delay:0s;opacity:1}.site-header-main.is-active-secondary-menu .header-main-primary-inner-container{opacity:0;pointer-events:none}.site-header-main.is-active-secondary-menu .header-main-secondary-wrapper .main-secondary-inner-wrapper{pointer-events:all;transform:scaleY(1);opacity:1}.site-header-main.is-active-secondary-menu .header-main-secondary-wrapper .secondary-menu-wrapper{opacity:1;transition:.35s ease-out;-webkit-transition:.35s ease-out;-webkit-animation-timing-function:ease-out;-webkit-animation-delay:.35s}.site-header-main.is-active-secondary-menu .secondary-menu-button-wrapper .menu-icon-default{opacity:0}.site-header-main.is-active-secondary-menu .secondary-menu-button-wrapper .menu-icon-close{opacity:1}.site-header-main.is-active-primary-menu .primary-menu-button-wrapper .menu-icon-default{opacity:0}.site-header-main.is-active-primary-menu .primary-menu-button-wrapper .menu-icon-close{opacity:1}.site-header-main.is-active-primary-menu .header-main-primary-container{pointer-events:all;opacity:1;z-index:1000}@media (max-width:62rem) and (orientation:portrait){.site-header-main.is-active-primary-menu .header-main-primary-container{height:calc(100vh - 65px - 120px);max-height:calc(100vh - 65px - 120px);min-height:-webkit-fill-available}}@media (max-width:50rem),(max-width:62rem) and (orientation:landscape){.site-header-main.is-active-primary-menu .header-main-primary-container{height:calc(100vh - 65px);max-height:calc(100vh - 65px);min-height:-webkit-fill-available}}@supports (-webkit-touch-callout:none){.site-header-main.is-active-primary-menu .header-main-primary-container{height:-webkit-fill-available}}@media (max-width:62rem){.site-header-main{position:static;border-bottom:0}}@media (max-width:42rem){.site-header-main .row{max-width:100%}}.header-search-container-wrapper{position:absolute;top:0;left:0;height:100%;width:100%;background-color:var(--color-base);opacity:0;transition:.25s ease;-webkit-transition:.25s ease;-webkit-animation-timing-function:ease;-webkit-animation-delay:.25s;pointer-events:none;z-index:100}@media (max-width:62rem){.header-search-container-wrapper{height:calc(100% - 1px)}}.header-search-inner-container{--search-inner-container-spacing:0.5rem 1rem;position:relative;height:100%;width:41rem;padding:var(--search-inner-container-spacing);max-width:100%;margin-left:auto;margin-right:auto}.header-search-inner-container::before{content:'';position:absolute;top:0;left:50%;transform:translate3d(-50%,0,0);height:100%;width:100%;max-width:100vw;background-color:var(--color-base);z-index:-1;pointer-events:none}@media (max-width:62rem){.header-search-inner-container{--search-inner-container-spacing:0.25rem 1rem}}@media (max-width:42rem){.header-search-inner-container{--search-inner-container-spacing:0.25rem 0.5rem 0.25rem 0.625rem}}.header-search-form{display:flex;align-items:center}.header-search-form .header-search-button,.header-search-form .header-search-field{position:relative;transform:translateX(.5vw);transition:.25s ease-in-out;-webkit-transition:.25s ease-in-out;-webkit-animation-timing-function:ease-in-out;-webkit-animation-delay:.25s;opacity:0}.header-search-form .header-search-button-close{transform:translateX(.25vw);transition:.25s ease-in-out;-webkit-transition:.25s ease-in-out;-webkit-animation-timing-function:ease-in-out;-webkit-animation-delay:.25s;transition-delay:.25s;opacity:0;-webkit-tap-highlight-color:transparent}.header-search-form .header-search-button{display:flex;padding:1rem;background-color:transparent;color:var(--color-base-light);cursor:pointer;border:none;transition:.25s ease-in-out}.header-search-form .header-search-button:hover{color:var(--color-primary)}.header-search-form .header-search-button svg{pointer-events:none}.header-search-form .header-search-field{color:var(--color-base-light);font-size:var(--font-size-small);font-family:var(--font-seconary-new);font-weight:400;line-height:1.3345;outline:0;border:none;border-radius:0;-webkit-appearance:none;padding:1rem 0;width:100%;margin-right:.375rem}.header-search-form .header-search-field::-moz-placeholder{color:var(--color-muted);opacity:1}.header-search-form .header-search-field::placeholder{color:var(--color-muted);opacity:1}.header-search-form .header-search-field:-ms-input-placeholder{color:var(--color-muted)}.header-search-form .header-search-field::-ms-input-placeholder{color:var(--color-muted)}.header-search-form .header-search-button-close{cursor:pointer;display:flex;padding:1rem;color:#cbcaca}.header-search-form .header-search-button-close svg{pointer-events:none}.header-search-form .header-search-button-close:hover{color:var(--color-primary)}.header-main-secondary-wrapper{position:relative;height:0;width:100%;padding:0 1rem;z-index:1000}.header-main-secondary-wrapper .row{position:relative}.header-main-secondary-wrapper .main-secondary-inner-wrapper{position:absolute;top:0;left:0;width:100%;pointer-events:none;transform-origin:top left;transition:.25s ease-out;-webkit-transition:.25s ease-out;-webkit-animation-timing-function:ease-out;-webkit-animation-delay:.25s;transform:scaleY(0);opacity:0;background-color:var(--color-base)}.header-main-secondary-wrapper .secondary-menu-wrapper{font-family:var(--font-primary-new);padding:2rem 0;opacity:0;transition:.1s ease-out;-webkit-transition:.1s ease-out;-webkit-animation-timing-function:ease-out;-webkit-animation-delay:.1s}.header-main-secondary-wrapper .secondary-menu-wrapper a{display:inline-block;color:var(--color-base-light)}.header-main-secondary-wrapper .secondary-menu-wrapper .menu:first-of-type{display:flex}.header-main-secondary-wrapper .secondary-menu-wrapper .menu:first-of-type>.menu-item{flex:1 1 auto;width:100%;max-width:100%}.header-main-secondary-wrapper .secondary-menu-wrapper .menu:first-of-type>.menu-item>a{font-weight:700;padding:.5rem 0}@media (max-width:71rem) and (min-width:993px){.header-main-secondary-wrapper .secondary-menu-wrapper .menu:first-of-type>.menu-item>a{font-size:15px}}.header-main-secondary-wrapper .secondary-menu-wrapper .menu:first-of-type>.menu-item>.dropdown-arrow{display:none}.header-main-secondary-wrapper .secondary-menu-wrapper .menu:first-of-type>.menu-item:not(:last-child){margin-right:1.5rem}.header-main-secondary-wrapper .secondary-menu-wrapper .menu:first-of-type .menu-items-wrapper>a{display:none}.header-main-secondary-wrapper .secondary-menu-wrapper .menu:first-of-type .menu-items-wrapper>.dropdown-arrow{display:none}.header-main-secondary-wrapper .secondary-menu-wrapper .menu:first-of-type .menu-items-wrapper a{font-weight:700;padding:.5rem 0}.header-main-secondary-wrapper .secondary-menu-wrapper .menu:first-of-type .menu-items-wrapper>.sub-menu{margin-top:0}.header-main-secondary-wrapper .secondary-menu-wrapper .sub-menu{margin-top:.375rem}.header-main-secondary-wrapper .secondary-menu-wrapper .sub-menu .menu-item:not(:last-child){margin-bottom:.25rem}.header-main-secondary-wrapper .secondary-menu-wrapper .sub-menu .menu-item a{font-weight:500;padding:.25rem 0}@media (max-width:71rem) and (min-width:993px){.header-main-secondary-wrapper .secondary-menu-wrapper .sub-menu .menu-item a{font-size:15px}}.site-overlay{position:fixed;top:0;left:0;height:100%;width:100%;pointer-events:none;z-index:100;opacity:0;transition:.2s ease-in-out;-webkit-transition:.25s ease-in-out;-webkit-animation-timing-function:ease-in-out;-webkit-animation-delay:.25s;background-color:rgba(0,0,0,.1);cursor:pointer;-webkit-tap-highlight-color:transparent}.site-overlay.is-active{pointer-events:all;opacity:1}@media (min-width:993px){.is-mobile-visible{display:none}}@media (max-width:62rem){.is-desktop-visible{display:none}}.site-footer{--footer-padding-top:4.375rem;--footer-padding-bottom:1.25rem;padding-top:var(--footer-padding-top);padding-bottom:var(--footer-padding-bottom);color:var(--color-base);font-family:var(--font-primary-new)}.site-footer .widget-title{font-family:var(--font-primary-new);margin-bottom:.625rem}.site-footer .footer-menu-title,.site-footer .widget-title{font-size:1.5em;font-weight:700;line-height:1.3335}.site-footer .footer-menu-title{margin-bottom:5px;white-space:nowrap}@media (max-width:42rem){.site-footer{--footer-padding-top:2.5rem;--footer-padding-bottom:83px}.site-footer .footer-menu-title,.site-footer .widget-title{font-size:1.25em}}.site-footer-widget-wrapper .widget_text{margin-bottom:0}.site-footer-widget-wrapper .widget_text .textwidget{line-height:1.625}@media (max-width:62rem){.site-footer-widget-wrapper .widget_text .textwidget{text-align:justify}}.site-footer-primary+.site-footer-secondary{margin-top:4.125rem}@media (max-width:42rem){.site-footer-primary+.site-footer-secondary{margin-top:2.5rem}}.site-footer-menu .menu-item a{display:inline-block;color:var(--color-base);font-size:1.125em;padding:.25rem 0;line-height:1.445}.siter-footer-primary-inner-wrapper{display:grid;grid-template-columns:repeat(4,auto);-moz-column-gap:5.25rem;column-gap:5.25rem}@media (max-width:1200px){.siter-footer-primary-inner-wrapper{grid-template-columns:repeat(3,auto);grid-template-rows:auto auto;row-gap:1rem}.siter-footer-primary-inner-wrapper .footer-menu-box:nth-child(4){grid-column:2/4}}@media (max-width:62rem){.siter-footer-primary-inner-wrapper{row-gap:2rem}.siter-footer-primary-inner-wrapper .footer-menu-box:nth-child(1){grid-column:1/4;grid-row:1/2}.siter-footer-primary-inner-wrapper .footer-menu-box:nth-child(2),.siter-footer-primary-inner-wrapper .footer-menu-box:nth-child(4){grid-row:2/3}.siter-footer-primary-inner-wrapper .footer-menu-box:nth-child(2){grid-column:1/2}.siter-footer-primary-inner-wrapper .footer-menu-box:nth-child(3){grid-column:2/3}.siter-footer-primary-inner-wrapper .footer-menu-box:nth-child(4){grid-column:3/4}}@media (max-width:42rem){.siter-footer-primary-inner-wrapper{grid-template-columns:1fr;grid-template-rows:auto;row-gap:2.5rem}.siter-footer-primary-inner-wrapper .footer-menu-box:nth-child(n){grid-column:1/2;grid-row:auto}}.siter-footer-primary-inner-wrapper ol,.siter-footer-primary-inner-wrapper ul{font-size:unset}.site-footer-secondary{border-top:1px solid var(--color-base);padding-top:1.25rem}.site-footer-secondary .site-info{padding:0 4.5vw}.site-footer-secondary .site-info p{font-size:var(--font-size-extra-small);font-weight:400;line-height:1.4295;text-align:center}@media (max-width:62rem){.site-footer-secondary .site-info{padding:0}.site-footer-secondary .site-info p{text-align:justify}}@media (max-width:42rem){.site-footer-secondary{padding-top:1.875rem;padding-bottom:1.875rem}}.footer-social-links-wrapper{display:flex;align-items:center}.footer-social-links-wrapper .social-link{display:flex;color:var(--color-base);padding-top:10px;padding-bottom:4px}.footer-social-links-wrapper .social-link:not(:first-child){padding-left:6px}.footer-social-links-wrapper .social-link:not(:last-child){padding-right:6px}.footer-social-links-wrapper .social-link:not(:last-child){margin-right:7px}@media (max-width:60em){body.single-guides .guides-list .entry-small{flex-direction:column}}.section-not-found .section-heading-new{text-align:center}.section-not-found .section-heading-new .heading-description{margin-top:var(--spacing-extra-small)}.container-custom-width{width:100%;max-width:39.25em;margin-left:auto;margin-right:auto}ol,ul{font-size:unset}.entry-links-list .list-item:not(:last-child){margin-bottom:var(--spacing-default)}.entry-links-list .list-item-description{font-family:var(--font-primary-new);line-height:1.5625;margin-top:.25rem;color:var(--color-base-light)}.single .entries-group-double{margin-top:3em}.single-webinar .site-main>.entry{margin-bottom:1em}.search-form .single-webinar .site-main .search-field,.search-form .single-webinar .site-main .search-submit,.single-webinar .site-main .button-cta,.single-webinar .site-main .search-form .search-field,.single-webinar .site-main .search-form .search-submit{width:auto;padding-right:5em;margin:1em 4.5em 2em}@media (max-width:42rem){.search-form .single-webinar .site-main .search-field,.search-form .single-webinar .site-main .search-submit,.single-webinar .site-main .button-cta,.single-webinar .site-main .search-form .search-field,.single-webinar .site-main .search-form .search-submit{display:inherit;width:100%;max-width:calc(100% - 8rem);margin:1em auto 2em}}.single .dxoc-slider-ad{margin:0 auto}.search-form{display:flex;padding-top:1.5em}.search-form label{display:flex;flex:1 1 80%;margin-right:1.5em}.search-form .search-field{text-decoration:none;outline:0}.search-form .search-field:focus,.search-form .search-field:hover{border-color:#993dbb}.search-form .search-submit{max-width:10em;flex:1 0 5em;background:#fff;outline:0;cursor:pointer}.search-form .search-submit:focus,.search-form .search-submit:hover{border-color:#993dbb}.jwplatform-featured-video-thumb,.jwplatform-video-thumb{position:relative}.jwplatform-featured-video-thumb:before,.jwplatform-video-thumb:before{content:'';display:block;position:absolute;left:0;right:0;margin:0 auto;top:50%;transform:translateY(-50%);color:#fff;z-index:1;opacity:.7;pointer-events:none;text-align:center;font-size:1em;height:1em;width:1em;cursor:pointer;background-image:url("data:image/svg+xml,%3Csvg width='16' height='16' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512'%3E%3Cpath d='M424.4 214.7L72.4 6.6C43.8-10.3 0 6.1 0 47.9V464c0 37.5 40.7 60.1 72.4 41.3l352-208c31.4-18.5 31.5-64.1 0-82.6zM48 453.5v-395c0-4.6 5.1-7.5 9.1-5.2l334.2 197.5c3.9 2.3 3.9 8 0 10.3L57.1 458.7c-4 2.3-9.1-.6-9.1-5.2z' fill='%23fff' /%3E%3C/svg%3E");background-repeat:no-repeat;background-position:center center}.jwplatform-featured-video-thumb:after,.jwplatform-video-thumb:after{position:absolute;left:0;right:0;width:3.5em;height:3.5em;content:'';transform:translateY(-50%);top:50%;background:rgba(0,0,0,.7);margin:0 auto;border-radius:50%;cursor:pointer;pointer-events:none}.jwplatform-featured-video-thumb:hover:before,.jwplatform-video-thumb:hover:before{opacity:1}.nikko-header{text-align:center;padding-bottom:2.8em}.nikko-image{margin:0 0 1em;text-align:center}.nikko-image img{width:100%}.nikko-title{margin-bottom:1rem;line-height:1.1;font-size:4em;text-transform:uppercase;color:#14305a}@media screen and (min-width:481px) and (max-width:900px){.nikko-title{font-size:2.8em}}@media screen and (min-width:481px){.nikko-title{font-size:2rem}}.nikko-subtitle{margin-bottom:1rem;font-size:2em;font-weight:400}.nikko-content{margin:0 0 4em}.nikko-content p{font-size:1.25em}.nikko-brochure{margin-top:3em}.brochure-item{margin-bottom:1.5em!important;padding:1em .5em;background:#cbd1db}.brochure-item .nikko-subtitle{margin-bottom:.5em}.brochure-item figure{margin:0}@media screen and (max-width:768px){.brochure-item figure{margin-top:1rem}}.brochure-item ul{padding-left:1em;list-style:disc}.brochure-item li{margin-bottom:.5em}.nikko-ribbon{line-height:1;margin-right:auto;margin-bottom:0;margin-left:auto;padding:.75em;background-color:#14305a;color:#fff}.nikko-ribbon a{color:#fff}.nikko-ribbon .column{display:flex;align-items:center}.nikko-ribbon .column:first-child{text-align:left}.nikko-ribbon .column:nth-child(2){text-align:center;justify-content:center}.nikko-ribbon .column:last-child{text-align:right;justify-content:flex-end}.nikko-content .dxoc.owl-carousel,.nikko-ribbon{max-width:calc(100% - (2rem * 2.5))}@media screen and (max-width:60em){.nikko-ribbon+.nikko-slider .dxoc.owl-carousel .controller-next,.nikko-ribbon+.nikko-slider .dxoc.owl-carousel .controller-prev{top:calc(50% - 1em)}}.nikko-content .dxoc.owl-carousel{margin-right:auto;margin-left:auto}.nikko-content .dxoc.owl-carousel .slider-controller .controller-next::before,.nikko-content .dxoc.owl-carousel .slider-controller .controller-prev::before{display:block;font-size:4rem;color:#14305a;border-radius:5rem}@media screen and (max-width:40em){.nikko-content .dxoc.owl-carousel .slider-controller .controller-next::before,.nikko-content .dxoc.owl-carousel .slider-controller .controller-prev::before{font-size:3rem}}.nikko-content .dxoc.owl-carousel .slider-controller .controller-next::after,.nikko-content .dxoc.owl-carousel .slider-controller .controller-prev::after{content:none}.nikko-content .dxoc.owl-carousel .slider-controller .controller-next:before{content:'';position:relative;display:block;background-image:url("data:image/svg+xml,%3Csvg width='18' height='21' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512'%3E%3Cpath d='M218.101 38.101L198.302 57.9c-4.686 4.686-4.686 12.284 0 16.971L353.432 230H12c-6.627 0-12 5.373-12 12v28c0 6.627 5.373 12 12 12h341.432l-155.13 155.13c-4.686 4.686-4.686 12.284 0 16.971l19.799 19.799c4.686 4.686 12.284 4.686 16.971 0l209.414-209.414c4.686-4.686 4.686-12.284 0-16.971L235.071 38.101c-4.686-4.687-12.284-4.687-16.97 0z' fill='%23404040' /%3E%3C/svg%3E");background-repeat:no-repeat;background-size:contain;width:18px;height:21px}.nikko-content .dxoc.owl-carousel .slider-controller .controller-next:after{content:none}.nikko-content .dxoc.owl-carousel .slider-controller .controller-prev:before{content:'';position:relative;display:block;background-image:url("data:image/svg+xml,%3Csvg width='18' height='21' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512'%3E%3Cpath d='M229.9 473.899l19.799-19.799c4.686-4.686 4.686-12.284 0-16.971L94.569 282H436c6.627 0 12-5.373 12-12v-28c0-6.627-5.373-12-12-12H94.569l155.13-155.13c4.686-4.686 4.686-12.284 0-16.971L229.9 38.101c-4.686-4.686-12.284-4.686-16.971 0L3.515 247.515c-4.686 4.686-4.686 12.284 0 16.971L212.929 473.9c4.686 4.686 12.284 4.686 16.971-.001z' fill='%23404040'/%3E%3C/svg%3E");background-repeat:no-repeat;background-size:contain;width:18px;height:21px}.nikko-content .dxoc.owl-carousel .owl-next.controller-next{right:-2rem}.nikko-content .dxoc.owl-carousel .owl-prev.controller-prev{left:-2rem}@media screen and (max-width:60em){.nikko-content .dxoc.owl-carousel .controller-next,.nikko-content .dxoc.owl-carousel .controller-prev{top:50%}}.marketplace .pagination{margin-top:5em}.marketplace-header{margin-bottom:3em}@media screen and (max-width:1312px){.marketplace-header{padding:0 2em}}.marketplace-logo{width:100%;max-width:800px}@media screen and (max-width:810px){.marketplace-logo{max-width:100%}}.marketplace-search{display:flex;flex-wrap:wrap;width:100%;max-width:100%;background-color:transparent;background-repeat:no-repeat;background-position:center center}.marketplace-search .marketplace-search-container{flex:0 0 100%;background:rgba(218,184,86,.8);width:100%;max-width:100%}.marketplace-search .marketplace-search-container .button,.marketplace-search .marketplace-search-container .page:not(.home) .page:not(.page-template-sourcing) .dxoc-content-wrapper .box-notification,.marketplace-search .marketplace-search-container .page:not(.home) .page:not(.page-template-sourcing) .dxoc-content-wrapper .button,.marketplace-search .marketplace-search-container .page:not(.home) .page:not(.page-template-sourcing) .dxoc-content-wrapper div[style^="background-color: #993dbb"],.marketplace-search .marketplace-search-container .search-form .search-field,.marketplace-search .marketplace-search-container .search-form .search-submit,.marketplace-search .marketplace-search-container .single:not(.home) .dxoc-content-wrapper .box-notification,.marketplace-search .marketplace-search-container .single:not(.home) .dxoc-content-wrapper .button,.marketplace-search .marketplace-search-container .single:not(.home) .dxoc-content-wrapper div[style^="background-color: #993dbb"],.marketplace-search .marketplace-search-container .sourcing-finder button.rfp-creation-link,.page:not(.home) .page:not(.page-template-sourcing) .dxoc-content-wrapper .marketplace-search .marketplace-search-container .box-notification,.page:not(.home) .page:not(.page-template-sourcing) .dxoc-content-wrapper .marketplace-search .marketplace-search-container .button,.page:not(.home) .page:not(.page-template-sourcing) .dxoc-content-wrapper .marketplace-search .marketplace-search-container div[style^="background-color: #993dbb"],.search-form .marketplace-search .marketplace-search-container .search-field,.search-form .marketplace-search .marketplace-search-container .search-submit,.single:not(.home) .dxoc-content-wrapper .marketplace-search .marketplace-search-container .box-notification,.single:not(.home) .dxoc-content-wrapper .marketplace-search .marketplace-search-container .button,.single:not(.home) .dxoc-content-wrapper .marketplace-search .marketplace-search-container div[style^="background-color: #993dbb"],.sourcing-finder .marketplace-search .marketplace-search-container button.rfp-creation-link{text-align:center}@media screen and (max-width:700px){.marketplace-search .marketplace-search-container .marketplace-search-field{position:static}}.marketplace-search .marketplace-search-container p{color:#fff;margin-bottom:0}.marketplace-search .marketplace-search-results{flex:1 0 100%}.marketplace-search .marketplace-search-results .marketplace-search-results-filters{justify-content:center}.marketplace-search-content{display:flex;flex-flow:row wrap;align-items:flex-end;justify-content:space-between;padding:2em;height:100%}.marketplace-search-content .primary-content-wrapper,.marketplace-search-content .secondary-content-wrapper{margin-top:1em}.marketplace-search-content .primary-content-wrapper{flex:0 0 calc(100% / 3 * 2 - .5em);width:100%;max-width:calc(100% / 3 * 2 - .5em)}.marketplace-search-content .secondary-content-wrapper{flex:0 0 calc(100% / 3 * 1 - .5em);width:100%;max-width:calc(100% / 3 * 1 - .5em)}.marketplace-search-content .marketplace-search-subtitle,.marketplace-search-content .marketplace-search-title{color:#fff;flex:0 0 100%;text-align:center;margin-left:auto;margin-right:auto}.marketplace-search-content .marketplace-search-title,.marketplace-search-content .marketplace-title{font-size:1.75em}.marketplace-search-content .marketplace-search-title~.marketplace-search-subtitle{margin-top:.5em}.marketplace-search-content .marketplace-search-subtitle{font-size:1.125em;font-style:italic;letter-spacing:.25px}.marketplace-search-content .button-primary{width:40%;padding:3.5%;margin:40px auto 0;font-size:1.125em}.marketplace-search-content .marketplace-title{height:100%}@media screen and (max-width:768px){.marketplace-search-content .marketplace-search-title,.marketplace-search-content .marketplace-title{font-size:1.375em}.marketplace-search-content .marketplace-search-subtitle{font-size:1em}}@media screen and (max-width:768px){.marketplace-search-content{flex-direction:column;height:-moz-fit-content;height:fit-content}.marketplace-search-content .primary-content-wrapper,.marketplace-search-content .secondary-content-wrapper{max-width:100%;flex:0 0 100%}}@media (max-width:40em){.marketplace-search-content .secondary-content-wrapper{flex-direction:column}.marketplace-search-content .secondary-content-wrapper .marketplace-search-form,.marketplace-search-content .secondary-content-wrapper .register-button-wrapper{max-width:100%;flex:0 0 100%}.marketplace-search-content .secondary-content-wrapper .marketplace-search-form+.register-button-wrapper{margin-left:0;margin-top:1em}.marketplace-search-content .secondary-content-wrapper .marketplace-search-form+.register-button-wrapper .button,.marketplace-search-content .secondary-content-wrapper .marketplace-search-form+.register-button-wrapper .page:not(.home) .page:not(.page-template-sourcing) .dxoc-content-wrapper .box-notification,.marketplace-search-content .secondary-content-wrapper .marketplace-search-form+.register-button-wrapper .page:not(.home) .page:not(.page-template-sourcing) .dxoc-content-wrapper .button,.marketplace-search-content .secondary-content-wrapper .marketplace-search-form+.register-button-wrapper .page:not(.home) .page:not(.page-template-sourcing) .dxoc-content-wrapper div[style^="background-color: #993dbb"],.marketplace-search-content .secondary-content-wrapper .marketplace-search-form+.register-button-wrapper .search-form .search-field,.marketplace-search-content .secondary-content-wrapper .marketplace-search-form+.register-button-wrapper .search-form .search-submit,.marketplace-search-content .secondary-content-wrapper .marketplace-search-form+.register-button-wrapper .single:not(.home) .dxoc-content-wrapper .box-notification,.marketplace-search-content .secondary-content-wrapper .marketplace-search-form+.register-button-wrapper .single:not(.home) .dxoc-content-wrapper div[style^="background-color: #993dbb"],.marketplace-search-content .secondary-content-wrapper .marketplace-search-form+.register-button-wrapper .sourcing-finder button.rfp-creation-link,.page:not(.home) .page:not(.page-template-sourcing) .dxoc-content-wrapper .marketplace-search-content .secondary-content-wrapper .marketplace-search-form+.register-button-wrapper .box-notification,.page:not(.home) .page:not(.page-template-sourcing) .dxoc-content-wrapper .marketplace-search-content .secondary-content-wrapper .marketplace-search-form+.register-button-wrapper .button,.page:not(.home) .page:not(.page-template-sourcing) .dxoc-content-wrapper .marketplace-search-content .secondary-content-wrapper .marketplace-search-form+.register-button-wrapper div[style^="background-color: #993dbb"],.search-form .marketplace-search-content .secondary-content-wrapper .marketplace-search-form+.register-button-wrapper .search-field,.search-form .marketplace-search-content .secondary-content-wrapper .marketplace-search-form+.register-button-wrapper .search-submit,.single:not(.home) .dxoc-content-wrapper .marketplace-search-content .secondary-content-wrapper .marketplace-search-form+.register-button-wrapper .box-notification,.single:not(.home) .dxoc-content-wrapper .marketplace-search-content .secondary-content-wrapper .marketplace-search-form+.register-button-wrapper div[style^="background-color: #993dbb"],.sourcing-finder .marketplace-search-content .secondary-content-wrapper .marketplace-search-form+.register-button-wrapper button.rfp-creation-link{width:100%;margin-top:0}}.marketplace-search-form{display:flex;margin:.875em 0 0;height:100%;min-height:3.125em;max-height:3.125em;margin-top:0;padding:0;background-color:#fff;border:1px solid #d1d1d1;border-radius:5px;overflow:hidden}.marketplace-search-form .button,.marketplace-search-form .page:not(.home) .page:not(.page-template-sourcing) .dxoc-content-wrapper .box-notification,.marketplace-search-form .page:not(.home) .page:not(.page-template-sourcing) .dxoc-content-wrapper .button,.marketplace-search-form .page:not(.home) .page:not(.page-template-sourcing) .dxoc-content-wrapper div[style^="background-color: #993dbb"],.marketplace-search-form .search-form .search-field,.marketplace-search-form .search-form .search-submit,.marketplace-search-form .single:not(.home) .dxoc-content-wrapper .box-notification,.marketplace-search-form .single:not(.home) .dxoc-content-wrapper .button,.marketplace-search-form .single:not(.home) .dxoc-content-wrapper div[style^="background-color: #993dbb"],.marketplace-search-form .sourcing-finder button.rfp-creation-link,.page:not(.home) .page:not(.page-template-sourcing) .dxoc-content-wrapper .marketplace-search-form .box-notification,.page:not(.home) .page:not(.page-template-sourcing) .dxoc-content-wrapper .marketplace-search-form .button,.page:not(.home) .page:not(.page-template-sourcing) .dxoc-content-wrapper .marketplace-search-form div[style^="background-color: #993dbb"],.search-form .marketplace-search-form .search-field,.search-form .marketplace-search-form .search-submit,.single:not(.home) .dxoc-content-wrapper .marketplace-search-form .box-notification,.single:not(.home) .dxoc-content-wrapper .marketplace-search-form .button,.single:not(.home) .dxoc-content-wrapper .marketplace-search-form div[style^="background-color: #993dbb"],.sourcing-finder .marketplace-search-form button.rfp-creation-link{display:flex;justify-content:center;align-items:center;max-width:6.5em;line-height:1.19;padding:1em;border-radius:0;border:none;border-left:1px solid #d1d1d1;cursor:pointer;max-height:50px;background-color:#fff}.marketplace-search-form .marketplace-search-input-container{flex-grow:1;position:relative;box-sizing:content-box}.marketplace-search-form .marketplace-search-input-container::before{content:"";position:absolute;top:50%;left:.875em;transform:translateY(-50%);color:#d1d1d1;height:1em;width:1em;background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3C!-- Font Awesome Pro 5.15.3 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) --%3E%3Cpath d='M508.5 468.9L387.1 347.5c-2.3-2.3-5.3-3.5-8.5-3.5h-13.2c31.5-36.5 50.6-84 50.6-136C416 93.1 322.9 0 208 0S0 93.1 0 208s93.1 208 208 208c52 0 99.5-19.1 136-50.6v13.2c0 3.2 1.3 6.2 3.5 8.5l121.4 121.4c4.7 4.7 12.3 4.7 17 0l22.6-22.6c4.7-4.7 4.7-12.3 0-17zM208 368c-88.4 0-160-71.6-160-160S119.6 48 208 48s160 71.6 160 160-71.6 160-160 160z' fill='%23d1d1d1'/%3E%3C/svg%3E");background-repeat:no-repeat;background-size:contain}.marketplace-search-form input{width:100%;height:100%;padding-left:2.625em;border:none;background:0 0;outline:0;box-sizing:border-box}.marketplace-search-form input::-moz-placeholder{color:#333;opacity:1}.marketplace-search-form input::placeholder{color:#333;opacity:1}.marketplace-search-form input:-ms-input-placeholder{color:#333}.marketplace-search-form input::-ms-input-placeholder{color:#333}.marketplace-search-form input::-ms-clear{display:none;width:0;height:0}.marketplace-search-form input::-ms-reveal{display:none;width:0;height:0}.marketplace-search-form input::-webkit-search-cancel-button,.marketplace-search-form input::-webkit-search-decoration,.marketplace-search-form input::-webkit-search-results-button,.marketplace-search-form input::-webkit-search-results-decoration{display:none}.marketplace-search-form input:-webkit-autofill,.marketplace-search-form input:-webkit-autofill:focus,.marketplace-search-form input:-webkit-autofill:hover,.marketplace-search-form input:-webkit-internal-autofill-selected{background:0 0;background-color:transparent;box-shadow:none}@media screen and (max-width:60em){.marketplace-search-form input{padding-left:2.25em}}@media screen and (max-width:768px){.marketplace-search-form input{position:static;width:100%}}@media screen and (max-width:768px){.marketplace-search-form{flex-wrap:wrap;max-height:-moz-fit-content;max-height:fit-content}.marketplace-search-form .button,.marketplace-search-form .page:not(.home) .page:not(.page-template-sourcing) .dxoc-content-wrapper .box-notification,.marketplace-search-form .page:not(.home) .page:not(.page-template-sourcing) .dxoc-content-wrapper .button,.marketplace-search-form .page:not(.home) .page:not(.page-template-sourcing) .dxoc-content-wrapper div[style^="background-color: #993dbb"],.marketplace-search-form .search-form .search-field,.marketplace-search-form .search-form .search-submit,.marketplace-search-form .single:not(.home) .dxoc-content-wrapper .box-notification,.marketplace-search-form .single:not(.home) .dxoc-content-wrapper .button,.marketplace-search-form .single:not(.home) .dxoc-content-wrapper div[style^="background-color: #993dbb"],.marketplace-search-form .sourcing-finder button.rfp-creation-link,.page:not(.home) .page:not(.page-template-sourcing) .dxoc-content-wrapper .marketplace-search-form .box-notification,.page:not(.home) .page:not(.page-template-sourcing) .dxoc-content-wrapper .marketplace-search-form .button,.page:not(.home) .page:not(.page-template-sourcing) .dxoc-content-wrapper .marketplace-search-form div[style^="background-color: #993dbb"],.search-form .marketplace-search-form .search-field,.search-form .marketplace-search-form .search-submit,.single:not(.home) .dxoc-content-wrapper .marketplace-search-form .box-notification,.single:not(.home) .dxoc-content-wrapper .marketplace-search-form .button,.single:not(.home) .dxoc-content-wrapper .marketplace-search-form div[style^="background-color: #993dbb"],.sourcing-finder .marketplace-search-form button.rfp-creation-link{width:100%;border-left:0;border-top:1px solid #d1d1d1;border-radius:0 0 .25em .25em;max-width:100%}.marketplace-search-form .marketplace-search-input-container::before{width:.875em}}.marketplace-search-results{display:flex;background:#fff}@media screen and (max-width:660px){.marketplace-search-results{flex-direction:column;padding-bottom:1.5em}}.marketplace-search-results .marketplace-search-results-found{flex:0 0 48%;justify-content:center}.marketplace-search-results .marketplace-search-results-filter{flex:0 0 42%;align-items:center}.marketplace-search-results .marketplace-search-results-filter .button,.marketplace-search-results .marketplace-search-results-filter .page:not(.home) .page:not(.page-template-sourcing) .dxoc-content-wrapper .box-notification,.marketplace-search-results .marketplace-search-results-filter .page:not(.home) .page:not(.page-template-sourcing) .dxoc-content-wrapper .button,.marketplace-search-results .marketplace-search-results-filter .page:not(.home) .page:not(.page-template-sourcing) .dxoc-content-wrapper div[style^="background-color: #993dbb"],.marketplace-search-results .marketplace-search-results-filter .search-form .search-field,.marketplace-search-results .marketplace-search-results-filter .search-form .search-submit,.marketplace-search-results .marketplace-search-results-filter .single:not(.home) .dxoc-content-wrapper .box-notification,.marketplace-search-results .marketplace-search-results-filter .single:not(.home) .dxoc-content-wrapper .button,.marketplace-search-results .marketplace-search-results-filter .single:not(.home) .dxoc-content-wrapper div[style^="background-color: #993dbb"],.marketplace-search-results .marketplace-search-results-filter .sourcing-finder button.rfp-creation-link,.page:not(.home) .page:not(.page-template-sourcing) .dxoc-content-wrapper .marketplace-search-results .marketplace-search-results-filter .box-notification,.page:not(.home) .page:not(.page-template-sourcing) .dxoc-content-wrapper .marketplace-search-results .marketplace-search-results-filter .button,.page:not(.home) .page:not(.page-template-sourcing) .dxoc-content-wrapper .marketplace-search-results .marketplace-search-results-filter div[style^="background-color: #993dbb"],.search-form .marketplace-search-results .marketplace-search-results-filter .search-field,.search-form .marketplace-search-results .marketplace-search-results-filter .search-submit,.single:not(.home) .dxoc-content-wrapper .marketplace-search-results .marketplace-search-results-filter .box-notification,.single:not(.home) .dxoc-content-wrapper .marketplace-search-results .marketplace-search-results-filter .button,.single:not(.home) .dxoc-content-wrapper .marketplace-search-results .marketplace-search-results-filter div[style^="background-color: #993dbb"],.sourcing-finder .marketplace-search-results .marketplace-search-results-filter button.rfp-creation-link{margin-right:auto;margin-left:auto}.marketplace-search-results .marketplace-search-results-filter,.marketplace-search-results .marketplace-search-results-found{padding:1.25em}@media (max-width:375px){.marketplace-search-results .marketplace-search-results-found{padding:1.25em .5em}}.marketplace-search-results-found{display:flex;font-size:1.55em}.marketplace-search-results-found strong{padding:0 6px}.marketplace-search-results-found .marketplace-icon{background-color:#49b754;transform:scale(.8)}.marketplace-search-results-found{justify-content:space-between;align-items:center}.marketplace-search-results-filters{display:flex;flex-flow:row wrap;justify-content:space-between}.marketplace-search-results-filters .marketplace-filter,.marketplace-search-results-filters .marketplace-search-form{flex:0 0 calc(100% / 2 - .5em);width:100%;max-width:calc(100% / 2 - .5em)}@media screen and (max-width:768px){.marketplace-search-results-filters{flex-direction:column}.marketplace-search-results-filters .marketplace-filter,.marketplace-search-results-filters .marketplace-search-form{flex:0 0 100%;max-width:100%}.marketplace-search-results-filters .marketplace-filter~.marketplace-search-form{margin-top:1em}}.page:not(.home) .page:not(.page-template-sourcing) .dxoc-content-wrapper .register-button-wrapper .box-notification,.page:not(.home) .page:not(.page-template-sourcing) .dxoc-content-wrapper .register-button-wrapper .button,.page:not(.home) .page:not(.page-template-sourcing) .dxoc-content-wrapper .register-button-wrapper div[style^="background-color: #993dbb"],.register-button-wrapper .button,.register-button-wrapper .page:not(.home) .page:not(.page-template-sourcing) .dxoc-content-wrapper .box-notification,.register-button-wrapper .page:not(.home) .page:not(.page-template-sourcing) .dxoc-content-wrapper .button,.register-button-wrapper .page:not(.home) .page:not(.page-template-sourcing) .dxoc-content-wrapper div[style^="background-color: #993dbb"],.register-button-wrapper .search-form .search-field,.register-button-wrapper .search-form .search-submit,.register-button-wrapper .single:not(.home) .dxoc-content-wrapper .box-notification,.register-button-wrapper .single:not(.home) .dxoc-content-wrapper .button,.register-button-wrapper .single:not(.home) .dxoc-content-wrapper div[style^="background-color: #993dbb"],.register-button-wrapper .sourcing-finder button.rfp-creation-link,.search-form .register-button-wrapper .search-field,.search-form .register-button-wrapper .search-submit,.single:not(.home) .dxoc-content-wrapper .register-button-wrapper .box-notification,.single:not(.home) .dxoc-content-wrapper .register-button-wrapper .button,.single:not(.home) .dxoc-content-wrapper .register-button-wrapper div[style^="background-color: #993dbb"],.sourcing-finder .register-button-wrapper button.rfp-creation-link{display:flex;align-items:center;justify-content:center;width:100%;min-height:2.75em;max-height:2.75em;line-height:1;padding:.5em 1em;margin:0}.marketplace-filter{position:relative}.marketplace-filter+.marketplace-filter{margin-left:2.5em}@media all and (-ms-high-contrast:none),(-ms-high-contrast:active){.marketplace-filter+.marketplace-filter{margin-left:0}}.marketplace-filter-button{display:inline-flex;align-items:center;width:100%;min-width:15em;min-height:3.125em;max-height:3.125em;padding:1em;padding-right:25%;border:1px solid #d1d1d1;border-radius:5px;background-color:#fff;color:#333;position:relative;font-size:1em;text-overflow:ellipsis;overflow:hidden;cursor:pointer}.marketplace-filter-button.marketplace-filter-category:hover .marketplace-filter-button::after{background-color:rgba(174,96,203,.15);transition:.25s}.marketplace-filter-button::after{content:"";display:flex;justify-content:center;align-items:center;width:100%;max-width:6.5em;height:100%;border-left:1px solid #d1d1d1;background-color:#fff;position:absolute;top:0;right:0;background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 640 512'%3E%3C!-- Font Awesome Pro 5.15.3 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) --%3E%3Cpath d='M592 64H400L345.37 9.37c-6-6-14.14-9.37-22.63-9.37H176c-26.51 0-48 21.49-48 48v80H48c-26.51 0-48 21.49-48 48v288c0 26.51 21.49 48 48 48h416c26.51 0 48-21.49 48-48v-80h80c26.51 0 48-21.49 48-48V112c0-26.51-21.49-48-48-48zM464 464H48V176h80v160c0 26.51 21.49 48 48 48h288v80zm128-128H176V48h140.12l54.63 54.63c6 6 14.14 9.37 22.63 9.37H592v224z' fill='%23333'/%3E%3C/svg%3E");background-repeat:no-repeat;background-size:20px 20px;background-position:center}@media screen and (max-width:375px){.marketplace-filter-button::after{width:5em}}.marketplace-filter-category-list{display:none;width:100%;background-color:#fff;position:absolute;top:100%;left:0;z-index:10;border-bottom-right-radius:4px;border-bottom-left-radius:4px;max-height:12em;overflow-y:auto;overflow-x:hidden;border:1px solid #d1d1d1;border-top:none}.marketplace-filter-category-list.is-visible{display:block}.marketplace-filter-category-list li{width:100%}.marketplace-filter-category-list li:not(:last-child){border-bottom:1px solid #d1d1d1}.marketplace-filter-category-list li:hover{background-color:#fafafa}.marketplace-filter-category-list li:last-child{border-bottom-right-radius:4px;border-bottom-left-radius:4px}.marketplace-filter-category-list a{display:block;padding:.5em 1em;color:#212121}.marketplace-filter-category-list a:visited{color:#212121}.marketplace-deals{width:100%}.marketplace-deals-inner{display:flex;flex-flow:row wrap;width:100%;max-width:calc(100% - 1.75em);margin:0 auto}.marketplace-deals-inner .deal{flex-direction:column;max-width:calc(100% / 3 - 1em);width:100%;flex:0 0 calc(100% / 3 - 1em);margin-bottom:1.75em;border:1px solid #d1d1d1;border-radius:5px}.marketplace-deals-inner .deal:not(:nth-child(3n+3)){margin-right:1.5em}.marketplace-deals-inner .deal-image{flex:auto;padding-right:0;margin-bottom:1em;position:relative;width:100%;height:0;padding-bottom:54%}.marketplace-deals-inner .deal-image img{max-width:100%;position:absolute;top:0;left:0;width:100%;height:100%;-o-object-fit:cover;object-fit:cover}.marketplace-deals-inner .featured{background-color:#993dbb;color:#fff}.marketplace-deals-inner .featured .deal-learn-more:hover{color:#d5a416}@media screen and (max-width:1024px){.marketplace-deals-inner .deal{max-width:calc(100% / 2 - 1em);flex:0 0 calc(100% / 2 - 1em)}.marketplace-deals-inner .deal:not(:nth-child(3n+3)){margin-right:initial}.marketplace-deals-inner .deal:not(:nth-child(2n+2)){margin-right:1.5em}}@media screen and (max-width:640px){.marketplace-deals-inner .deal{max-width:100%;flex:0 0 100%;margin-bottom:1.5em}.marketplace-deals-inner .deal:not(:nth-child(2n+2)){margin-right:0}}.marketplace-icon{display:inline-flex;justify-content:center;align-items:center;width:40px;height:40px;border-radius:50%;position:relative;background:#993dbb;color:#fff;overflow:hidden}.marketplace-icon img{width:20px;height:20px}.marketplace-single .entry-meta{margin-bottom:1.25em}.marketplace-single .entry-meta .deal-details{padding-top:2em}@media screen and (max-width:550px){.marketplace-single .entry-meta .deal-details{flex-direction:column;justify-content:flex-start;align-items:flex-start}}.marketplace-single .entry-meta .deal-details h4{flex:1}.marketplace-single .entry-meta .deal-details-logo{margin-left:1em;flex:0 0 9em;max-width:9em}.marketplace-single .entry-meta .deal-details-wrapper{margin-left:1.125em;flex:2;font-size:1.5em}.marketplace-single .entry-meta .deal-category-wrapper,.marketplace-single .entry-meta .deal-tag-wrapper{display:flex;flex-flow:row wrap;align-items:baseline}.marketplace-single .entry-meta .deal-category-label,.marketplace-single .entry-meta .deal-tag-label{margin:0 .375em 0 0;font-size:.875em}.marketplace-single .entry-meta .deal-tag-wrapper{margin-top:.375em}.marketplace-single .entry-meta .deal-tag-wrapper .deal-tag-title:not(:last-of-type){margin-right:.75em}.marketplace-single .entry-meta .marketplace-icon{display:inline-flex;margin-right:6px}@media screen and (max-width:48em){.marketplace-single .entry-meta .deal-details{flex-flow:row wrap}.marketplace-single .entry-meta .deal-details-wrapper{flex:0 0 100%;margin-left:0}}.marketplace-single .marketplace-actions{margin-top:1em}@media screen and (max-width:420px){.marketplace-single .marketplace-actions .button,.marketplace-single .marketplace-actions .page:not(.home) .page:not(.page-template-sourcing) .dxoc-content-wrapper .box-notification,.marketplace-single .marketplace-actions .page:not(.home) .page:not(.page-template-sourcing) .dxoc-content-wrapper .button,.marketplace-single .marketplace-actions .page:not(.home) .page:not(.page-template-sourcing) .dxoc-content-wrapper div[style^="background-color: #993dbb"],.marketplace-single .marketplace-actions .search-form .search-field,.marketplace-single .marketplace-actions .search-form .search-submit,.marketplace-single .marketplace-actions .single:not(.home) .dxoc-content-wrapper .box-notification,.marketplace-single .marketplace-actions .single:not(.home) .dxoc-content-wrapper .button,.marketplace-single .marketplace-actions .single:not(.home) .dxoc-content-wrapper div[style^="background-color: #993dbb"],.marketplace-single .marketplace-actions .sourcing-finder button.rfp-creation-link,.page:not(.home) .page:not(.page-template-sourcing) .dxoc-content-wrapper .marketplace-single .marketplace-actions .box-notification,.page:not(.home) .page:not(.page-template-sourcing) .dxoc-content-wrapper .marketplace-single .marketplace-actions .button,.page:not(.home) .page:not(.page-template-sourcing) .dxoc-content-wrapper .marketplace-single .marketplace-actions div[style^="background-color: #993dbb"],.search-form .marketplace-single .marketplace-actions .search-field,.search-form .marketplace-single .marketplace-actions .search-submit,.single:not(.home) .dxoc-content-wrapper .marketplace-single .marketplace-actions .box-notification,.single:not(.home) .dxoc-content-wrapper .marketplace-single .marketplace-actions .button,.single:not(.home) .dxoc-content-wrapper .marketplace-single .marketplace-actions div[style^="background-color: #993dbb"],.sourcing-finder .marketplace-single .marketplace-actions button.rfp-creation-link{display:block;margin-top:.75em}}.marketplace-single .marketplace-actions .button-primary{min-width:200px}.marketplace-single .marketplace-about{margin-top:2em}.marketplace-single .button-expires{display:inline-block;padding:.65em .95em;border:2px solid;border-radius:.25em;font-weight:700;line-height:1.2;transition:.3s;font-size:1em}.marketplace-single .button-expires.expires-ok{border-color:#49b754;color:#49b754}.marketplace-single .button-expires.expires-fin{border-color:#ea4242;color:#ea4242;text-transform:uppercase}.marketplace-about{padding:1.25em 1em 1em}.reg-form{margin:1em 0}@media screen and (max-width:768px){.marketplace-filter .marketplace-filter-button,.page:not(.home) .page:not(.page-template-sourcing) .dxoc-content-wrapper .register-button-wrapper .box-notification,.page:not(.home) .page:not(.page-template-sourcing) .dxoc-content-wrapper .register-button-wrapper .button,.page:not(.home) .page:not(.page-template-sourcing) .dxoc-content-wrapper .register-button-wrapper div[style^="background-color: #993dbb"],.register-button-wrapper .button,.register-button-wrapper .page:not(.home) .page:not(.page-template-sourcing) .dxoc-content-wrapper .box-notification,.register-button-wrapper .page:not(.home) .page:not(.page-template-sourcing) .dxoc-content-wrapper .button,.register-button-wrapper .page:not(.home) .page:not(.page-template-sourcing) .dxoc-content-wrapper div[style^="background-color: #993dbb"],.register-button-wrapper .search-form .search-field,.register-button-wrapper .search-form .search-submit,.register-button-wrapper .single:not(.home) .dxoc-content-wrapper .box-notification,.register-button-wrapper .single:not(.home) .dxoc-content-wrapper .button,.register-button-wrapper .single:not(.home) .dxoc-content-wrapper div[style^="background-color: #993dbb"],.register-button-wrapper .sourcing-finder button.rfp-creation-link,.search-form .register-button-wrapper .search-field,.search-form .register-button-wrapper .search-submit,.single:not(.home) .dxoc-content-wrapper .register-button-wrapper .box-notification,.single:not(.home) .dxoc-content-wrapper .register-button-wrapper .button,.single:not(.home) .dxoc-content-wrapper .register-button-wrapper div[style^="background-color: #993dbb"],.sourcing-finder .register-button-wrapper button.rfp-creation-link{min-height:2.875rem}.marketplace-search-form .button,.marketplace-search-form .page:not(.home) .page:not(.page-template-sourcing) .dxoc-content-wrapper .box-notification,.marketplace-search-form .page:not(.home) .page:not(.page-template-sourcing) .dxoc-content-wrapper .button,.marketplace-search-form .page:not(.home) .page:not(.page-template-sourcing) .dxoc-content-wrapper div[style^="background-color: #993dbb"],.marketplace-search-form .search-form .search-field,.marketplace-search-form .search-form .search-submit,.marketplace-search-form .single:not(.home) .dxoc-content-wrapper .box-notification,.marketplace-search-form .single:not(.home) .dxoc-content-wrapper .button,.marketplace-search-form .single:not(.home) .dxoc-content-wrapper div[style^="background-color: #993dbb"],.marketplace-search-form .sourcing-finder button.rfp-creation-link,.marketplace-search-input-container,.page:not(.home) .page:not(.page-template-sourcing) .dxoc-content-wrapper .marketplace-search-form .box-notification,.page:not(.home) .page:not(.page-template-sourcing) .dxoc-content-wrapper .marketplace-search-form .button,.page:not(.home) .page:not(.page-template-sourcing) .dxoc-content-wrapper .marketplace-search-form div[style^="background-color: #993dbb"],.search-form .marketplace-search-form .search-field,.search-form .marketplace-search-form .search-submit,.single:not(.home) .dxoc-content-wrapper .marketplace-search-form .box-notification,.single:not(.home) .dxoc-content-wrapper .marketplace-search-form .button,.single:not(.home) .dxoc-content-wrapper .marketplace-search-form div[style^="background-color: #993dbb"],.sourcing-finder .marketplace-search-form button.rfp-creation-link{min-height:2.75rem}}.marketplace .pagination{display:flex;justify-content:center}.content-flexible-wrapper{display:grid;grid-template-columns:minmax(0,59.625rem) 18.75rem;justify-content:space-between;grid-gap:var(--grid-gap)}.content-flexible-wrapper .secondary-container{grid-column:2/3}.content-flexible-wrapper .primary-container,.content-flexible-wrapper .secondary-container{width:100%}.content-flexible-wrapper.boxes-reverse{grid-template-columns:18.75rem minmax(0,59.625rem)}@media (max-width:62rem){.content-flexible-wrapper{grid-template-columns:minmax(0,100%)}.content-flexible-wrapper.boxes-reverse{grid-template-columns:1fr}.content-flexible-wrapper .primary-container,.content-flexible-wrapper .secondary-container{grid-column:auto}.content-flexible-wrapper .secondary-container{grid-column:1/2}}.content-flexible-custom-wrapper{display:grid;grid-template-columns:minmax(0,calc(66.66% + 30px)) minmax(0,calc(33.33% - 20px));justify-content:space-between;grid-gap:var(--grid-gap-old)}.content-flexible-custom-wrapper .primary-container,.content-flexible-custom-wrapper .secondary-container{width:100%}.content-flexible-custom-wrapper .secondary-container{grid-column:2/3}.content-flexible-custom-wrapper.equal-columns{grid-template-columns:1fr 1fr}@media (max-width:63.9375rem){.content-flexible-custom-wrapper.equal-columns,.content-flexible-custom-wrapper.one-container,.content-flexible-custom-wrapper.tablet-fullwidth{grid-template-columns:1fr}.content-flexible-custom-wrapper.equal-columns .secondary-container,.content-flexible-custom-wrapper.one-container .secondary-container,.content-flexible-custom-wrapper.tablet-fullwidth .secondary-container{grid-column:1/2}}@media (max-width:42rem){.content-flexible-custom-wrapper{grid-template-columns:100%}.content-flexible-custom-wrapper .secondary-container{grid-column:1/2}}.grid-container{--grid-columns-count:1fr;display:grid;gap:var(--grid-gap);grid-template-columns:var(--grid-columns-count)}.grid-container.no-horizontal-space{row-gap:0}.grid-container.centered-vertically{align-items:center}.grid-container.two-boxes{--grid-columns-count:repeat(2, 1fr)}.grid-container.three-boxes{--grid-columns-count:repeat(3, 1fr)}.grid-container.four-boxes{--grid-columns-count:repeat(4, 1fr)}@media screen and (max-width:62rem){.grid-container.four-boxes{--grid-columns-count:repeat(2, 1fr)}}@media screen and (max-width:50rem){.grid-container.three-boxes{--grid-columns-count:repeat(2, 1fr)}}@media screen and (max-width:42rem){.grid-container{justify-content:center}.grid-container.four-boxes,.grid-container.three-boxes,.grid-container.two-boxes{--grid-columns-count:1fr}}.content-flexible-ads-wrapper{display:grid;grid-gap:var(--grid-gap)}.content-flexible-ads-wrapper .ad-wrapper{min-width:18.75rem}.content-flexible-ads-wrapper.aside-container{height:-moz-fit-content;height:fit-content}.content-flexible-ads-wrapper.four-boxes:not(.vertical-content){grid-template-columns:repeat(4,1fr)}@media (max-width:62rem){.content-flexible-ads-wrapper.aside-container{grid-template-columns:repeat(2,1fr)}.content-flexible-ads-wrapper.four-boxes:not(.vertical-content){grid-template-columns:repeat(2,1fr)}}@media (max-width:42rem){.content-flexible-ads-wrapper.aside-container{grid-template-columns:1fr}.content-flexible-ads-wrapper.four-boxes:not(.vertical-content){grid-template-columns:1fr}}.spacing-top-small{margin-top:var(--spacing-small)}.spacing-top-default{margin-top:var(--spacing-default)}.spacing-top-custom{margin-top:var(--spacing-custom)}.spacing-top-large{margin-top:var(--spacing-large)}.spacing-top-custom-large{margin-top:var(--spacing-custom-large)}.spacing-bottom-small{margin-bottom:var(--spacing-small)}.spacing-bottom-custom{margin-bottom:var(--spacing-custom)}.spacing-bottom-custom-large{margin-bottom:var(--spacing-custom-large)}.spacing-bottom-custom-grid{margin-bottom:var(--spacing-custom-grid)}.section-fullwidth-new{--section-padding-top:var(--section-spacing-default);--section-padding-bottom:var(--section-spacing-default);padding:var(--section-padding-top) 0 var(--section-padding-bottom);outline:0}.section-fullwidth-new.section-padding-none{--section-padding-top:0;--section-padding-bottom:0}.section-fullwidth-new.section-padding-top-none{--section-padding-top:0}.section-fullwidth-new.section-padding-top-small{--section-padding-top:var(--section-spacing-small)}.section-fullwidth-new.section-padding-top-custom-grid{--section-padding-top:var(--spacing-custom-grid)}.section-fullwidth-new.section-padding-top-large{--section-padding-top:var(--section-spacing-large)}.section-fullwidth-new.section-padding-top-larger{--section-padding-top:var(--section-spacing-larger)}.section-fullwidth-new.section-padding-top-custom-large{--section-padding-top:var(--section-spacing-custom-large)}.section-fullwidth-new.section-padding-bottom-none{--section-padding-bottom:0}.section-fullwidth-new.section-padding-bottom-small{--section-padding-bottom:var(--section-spacing-small)}.section-fullwidth-new.section-padding-bottom-large{--section-padding-bottom:var(--section-spacing-large)}.section-fullwidth-new.section-padding-bottom-larger{--section-padding-bottom:var(--section-spacing-larger)}.section-fullwidth-new.section-padding-bottom-extra-large{--section-padding-bottom:var(--section-spacing-extra-large)}@media (max-width:62rem){.section-fullwidth-new+.section-fullwidth-new:not(:nth-of-type(2)):not(:last-of-type){--section-padding-top:0}}.section-heading-new.centered-content{text-align:center}.section-heading-new .heading-title{--font-weight-title:700;--heading-title-font-family:var(--font-primary-new);--heading-title-font-size:var(--font-size-h2);--heading-title-line-height:1.375;font-family:var(--heading-title-font-family);font-size:var(--heading-title-font-size);font-weight:var(--font-weight-title);line-height:var(--heading-title-line-height)}.section-heading-new .heading-title.title-large-custom{margin-top:0;margin-bottom:0;--heading-title-font-size:var(--font-size-large-custom);--heading-title-line-height:1.3}.section-heading-new .heading-title.font-secondary{--heading-title-font-family:var(--font-secondary-new)}.section-heading-new .heading-description{--heading-description-font-family:var(--font-primary-new);--heading-description-font-size:var(--font-size-h5);--heading-description-line-height:1.4;line-height:var(--heading-description-line-height);font-family:var(--heading-description-font-family);font-size:var(--heading-description-font-size)}.section-heading-new .heading-description.font-large{--heading-description-font-size:var(--font-size-h4);--heading-description-line-height:1.3335}.section-heading-new .heading-description.font-custom{--heading-description-font-size:var(--font-size-custom);--heading-description-line-height:1.3185}.section-heading-new .heading-description.font-secondary{--heading-description-font-family:var(--font-secondary-new)}.infinity-slider{position:relative;overflow:hidden}.infinity-slider .slider-list{position:relative;display:flex;justify-content:flex-start;width:100%}.infinity-slider-news::after,.infinity-slider-news::before{content:'';position:absolute;top:0;background:linear-gradient(90deg,#fdf9ff 0,rgba(253,249,255,0) 100%);height:100%;width:100%;max-width:15.625vw;z-index:1;pointer-events:none}.infinity-slider-news::before{left:-2px}.infinity-slider-news::after{right:-2px;transform:rotate(180deg)}.infinity-slider-news .list-item{box-sizing:border-box;margin:0 3.375em;opacity:0}.infinity-slider-news .list-item.is-visible{opacity:1}.infinity-slider-news .list-item-title{font-size:1.25em;white-space:nowrap}.infinity-slider-news .list-item-title-link{display:inline-block;color:var(--color-base-invert);padding:1.75rem 0}@media (max-width:42rem){.infinity-slider-news .list-item{margin:0 2.375em}}.slider-tabs-card{position:relative;height:0;padding-bottom:57.625%;--thumbnail-left-spacing:6.875em}.slider-tabs-card .slider-item{position:absolute;height:100%;width:100%;opacity:0;transition:.25s ease-in-out;pointer-events:none}.slider-tabs-card .slider-item.is-active{opacity:1;pointer-events:all}.slider-tabs-card .item-content-wrapper{position:absolute;top:50%;left:0;transform:translateY(-50%);padding:2.125em;width:100%;max-width:18.75rem;box-sizing:border-box;color:var(--color-primary);z-index:1;height:100%;max-height:calc(100% - 1.625em * 2)}.slider-tabs-card .item-content-inner-wrapper{position:relative;overflow:hidden;display:flex;flex-direction:column;height:100%}.slider-tabs-card .item-thumbnail-wrapper{position:relative;height:0;padding-bottom:57.625%;width:100%;max-width:calc(100% - var(--thumbnail-left-spacing));margin-left:auto}.slider-tabs-card .item-thumbnail{position:absolute;top:0;left:0;height:100%;width:100%;-o-object-fit:cover;object-fit:cover}.slider-tabs-card .item-tags{display:flex;flex-wrap:wrap}.slider-tabs-card .item-tags .tag-item{margin-bottom:calc(var(--spacing-extra-smaller)/ 2);line-height:1}.slider-tabs-card .item-tags .tag-item:last-of-type{margin-bottom:var(--spacing-extra-smaller)}.slider-tabs-card .item-tags .tag-item-link{display:inline-block;color:var(--color-base-invert);font-family:var(--font-secondary-new);font-size:var(--font-size-extra-small);font-weight:500;letter-spacing:1.125px;line-height:1.285;text-transform:uppercase}.slider-tabs-card .item-title{font-family:var(--font-primary-new);font-size:var(--font-size-h4);font-weight:800;line-height:1.25;margin-bottom:var(--spacing-extra-smaller);color:var(--color-base-invert)}.slider-tabs-card .item-title a{color:inherit}.slider-tabs-card .item-description-wrapper{flex-grow:1}.slider-tabs-card .item-description{font-family:var(--font-secondary-new);font-size:var(--font-size-small);font-weight:400;overflow:hidden;text-overflow:ellipsis;display:-webkit-box;-webkit-line-clamp:7;-webkit-box-orient:vertical;height:100%;max-height:192px;width:100%;max-width:100%;margin:0}.slider-tabs-card .item-slider-controller{display:flex;position:absolute;bottom:0;left:0;width:100%;padding-top:var(--spacing-extra-small);background-color:var(--color-primary-light)}.slider-tabs-card .item-slider-controller .controller-button{display:flex;border:none;background-color:var(--color-base-light-muted);color:var(--color-primary);padding:calc(var(--spacing-extra-small) - 1px);cursor:pointer}.slider-tabs-card .item-slider-controller .controller-button:first-of-type{margin-right:var(--spacing-extra-small)}@media screen and (max-width:81.625rem){.slider-tabs-card .item-description{-webkit-line-clamp:6;max-height:166px}}@media (max-width:62rem){.slider-tabs-card .item-content-wrapper{padding:1.5em}.slider-tabs-card .item-description{-webkit-line-clamp:4;max-height:112px}}@media (max-width:50rem){.slider-tabs-card .item-title{--font-size-h4:1.125em;line-height:var(--font-size-h4-line-height);margin-bottom:.625rem}.slider-tabs-card .item-description{--font-size-small:1em;-webkit-line-clamp:3;max-height:74px}}@media (max-width:42rem){.slider-tabs-card{--thumbnail-left-spacing:0;padding-bottom:calc(58.30904% + 340px)}.slider-tabs-card .slider-item{display:flex;flex-direction:column-reverse}.slider-tabs-card .item-thumbnail-wrapper{padding-bottom:58.30904%}.slider-tabs-card .item-content-wrapper{position:relative;top:0;left:0;transform:translateY(0);max-width:100%;max-height:340px}.slider-tabs-card .item-description{-webkit-line-clamp:4;max-height:100px}.slider-tabs-card .item-tags .tag-item:last-of-type{margin-bottom:calc(var(--spacing-extra-smaller)/ 2)}.slider-tabs-card .item-slider-controller .controller-button:first-of-type{margin-right:1.5rem}}.multiple-content-slider{--slide-arrow-size:1.25rem;--slick-slide-spacing:0.84375rem;--slider-content-spacing:var(--spacing-extra-small);padding:0 calc((var(--spacing-extra-small) - 1px) * 2 + var(--slide-arrow-size) + var(--slick-slide-spacing))}.multiple-content-slider::after,.multiple-content-slider::before{content:'';position:absolute;top:0;width:calc((var(--spacing-extra-small) - 1px) * 2 + var(--slide-arrow-size) + 1.5rem);height:100%;background-color:var(--color-base);z-index:5}.multiple-content-slider::before{left:0}.multiple-content-slider::after{right:0}.multiple-content-slider .slick-next,.multiple-content-slider .slick-prev{display:flex;top:50%;transform:translateY(-50%);height:calc(var(--slide-arrow-size) * 2);width:var(--slide-arrow-size);z-index:10;border:none;background-color:var(--color-base-light-muted)!important;padding:calc(var(--spacing-extra-small) - 1px);height:calc((var(--spacing-extra-small) - 1px) * 2 + var(--slide-arrow-size));width:calc((var(--spacing-extra-small) - 1px) * 2 + var(--slide-arrow-size));cursor:pointer}.multiple-content-slider .slick-next::before,.multiple-content-slider .slick-prev::before{content:'';position:relative;width:var(--slide-arrow-size);height:var(--slide-arrow-size);background-repeat:no-repeat;background-size:contain;opacity:1}.multiple-content-slider .slick-prev{left:0}.multiple-content-slider .slick-prev::before{background-image:url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M15.5128 9.90039H4.48639' stroke='%23993DBB' stroke-width='1.89024' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M10 4.3877L4.48679 9.9002L10 15.4127' stroke='%23993DBB' stroke-width='1.89024' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A")}.multiple-content-slider .slick-next{right:0}.multiple-content-slider .slick-next::before{background-image:url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4.48718 9.90039H15.5136' stroke='%23993DBB' stroke-width='1.89024' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M10 4.3877L15.5132 9.9002L10 15.4127' stroke='%23993DBB' stroke-width='1.89024' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A")}.multiple-content-slider .slick-slide{margin-left:var(--slick-slide-spacing);margin-right:var(--slick-slide-spacing);display:flex;flex-direction:column;height:inherit!important}.multiple-content-slider .slick-slide.slick-current .carousel-content{opacity:1;pointer-events:all}.multiple-content-slider .slide{height:100%}.multiple-content-slider .slick-track{display:flex!important}@media (max-width:42rem){.multiple-content-slider{--slick-slide-spacing:0;padding-left:0;padding-right:0;padding-bottom:calc(50px + var(--grid-gap))}.multiple-content-slider::after,.multiple-content-slider::before{display:none}.multiple-content-slider .slick-next,.multiple-content-slider .slick-prev{top:calc(100% - 50px);transform:translate3d(-50%,0,0)}.multiple-content-slider .slick-prev{left:calc(50% - calc((var(--spacing-extra-small) - 1px) * 2 + var(--slide-arrow-size)) + var(--grid-gap)/ 2)}.multiple-content-slider .slick-next{right:calc(50% - calc((var(--spacing-extra-small) - 1px) * 2 + var(--slide-arrow-size)) - 1.5* var(--grid-gap))}}.slider-resources-sponsored-content .flex-box-wrapper{height:100%}@media (max-width:1440px){.slider-resources-sponsored-content .flex-box-wrapper .resource-box{padding:0 0 0 2px}}@media (max-width:64rem){.slider-resources-sponsored-content .flex-box-wrapper .resource-box{padding:0 2px}}@media (max-width:62rem){.section-slider-news{margin-top:var(--section-spacing-custom-large)}}.wp-admin.taxonomy-category form.validate{max-width:1600px!important}.page-template-about-us .site-content{font-family:var(--font-secondary-new)}.page-template-about-us .site-content h2{font-family:var(--font-secondary-new);font-size:3rem;font-weight:700;line-height:3.875rem}.page-template-about-us .site-content h3{font-family:var(--font-secondary-new);font-size:2rem;font-weight:700;line-height:2.625rem;margin-bottom:1.875rem}.page-template-about-us .site-content h4{font-family:var(--font-secondary-new)}.page-template-about-us .site-content ol,.page-template-about-us .site-content p,.page-template-about-us .site-content ul{font-family:var(--font-secondary-new);font-size:1.375rem;font-weight:400;line-height:1.875rem}.page-template-about-us .site-content ol,.page-template-about-us .site-content ul{margin-block-start:1em;margin-block-end:1em;padding-inline-start:2.5rem}.page-template-about-us .site-content ol{list-style-type:decimal}.page-template-about-us .site-content ul{list-style-type:disc}.page-template-about-us .section-fullwidth{padding:2.5rem 0}.page-template-about-us .section-fullwidth .section-title{color:var(--color-primary);text-align:center;margin-bottom:1.875rem}.page-template-about-us .section-fullwidth .page-title{margin-bottom:3.75rem}@media (max-width:40em){.page-template-about-us .section-fullwidth .page-title{font-size:2rem;line-height:2.625rem;margin-bottom:1.5rem}}.page-template-about-us .section-fullwidth .section-image{text-align:center}.page-template-about-us .section-fullwidth .page-image{margin-bottom:3.75rem}@media (max-width:40em){.page-template-about-us .section-fullwidth .page-image{margin-bottom:1.5rem}}.page-template-about-us .section-fullwidth .section-subtitle{color:var(--color-primary);text-align:center;text-transform:uppercase;font-size:2rem;font-weight:700;line-height:2.625rem;margin-bottom:1.875rem}@media (max-width:40em){.page-template-about-us .section-fullwidth .section-subtitle{font-size:1.5rem;line-height:2rem;padding:0 1.75rem}}.page-template-about-us .section-fullwidth .section-cta{margin-top:1.875rem;text-align:center;color:var(--color-primary);text-transform:uppercase;font-size:1.5rem;font-weight:500;line-height:2rem}@media (max-width:40em){.page-template-about-us .section-fullwidth .section-cta{font-size:1.125rem;font-weight:500;line-height:1.5rem}}@media (max-width:40em){.page-template-about-us .section-fullwidth{padding:2rem 0}}@media (max-width:42rem){.page-template-about-us .section-fullwidth .row{--row-breakpoint-width:calc(100% - 3rem);--row-breakpoint-gap:3rem;max-width:calc(100% - 3rem)}}@media (max-width:40em){.page-template-about-us .hidden-phone{display:none}}.page-template-about-us .visible-phone{display:none}@media (max-width:40em){.page-template-about-us .visible-phone{display:block}}.page-template-about-us .section-hero{padding-top:80px}.teammembers-group{display:grid;gap:3.75rem;margin-bottom:5rem}@media (max-width:40em){.teammembers-group{gap:2.125rem;margin-bottom:4rem}}.teammembers-group.__no-spacing{margin:0}.teammembers-group h3.teammembers-group-title{color:var(--color-base-light);text-transform:uppercase;text-align:center;width:100%;margin-bottom:0}.teammembers-grid{display:grid;gap:3.75rem}@media (max-width:40em){.teammembers-grid{gap:2.125rem}}.teammembers-grid-row{width:100%;display:flex;flex-wrap:wrap;gap:1.5rem;align-items:flex-start;justify-content:center}@media (max-width:40em){.teammembers-grid-row{flex-direction:column}}.entry-teammember{width:100%;text-align:center;max-width:18.75rem}@media (max-width:85rem){.entry-teammember{width:calc(33% - 1.5rem);max-width:18.75rem}}@media (max-width:62rem){.entry-teammember{width:100%;max-width:calc(33% - 1.5rem)}}@media (max-width:40em){.entry-teammember{max-width:13.75rem;margin:0 auto}}.entry-teammember.__large{max-width:25.625rem;width:100%}.entry-teammember-avatar{width:100%;height:0;padding-bottom:100%;overflow:hidden;position:relative;background-color:#fff;margin-bottom:1.25rem}.entry-teammember-avatar a,.entry-teammember-avatar img,.entry-teammember-avatar span,.entry-teammember-avatar:after{display:block;width:100%;height:100%;position:absolute;-o-object-fit:cover;object-fit:cover;z-index:1;transition:opacity .25s linear}.entry-teammember-avatar a,.entry-teammember-avatar span{border-radius:100%;overflow:hidden}.entry-teammember-avatar a:hover{opacity:.75}.entry-teammember-avatar:after{content:"";z-index:2;inset:0;box-shadow:0 0 0 1px inset #f5ecf8;border-radius:100%;pointer-events:none}.entry-teammember-name{font-size:1.5rem;font-weight:700;line-height:2rem;text-align:center;color:var(--color-base-light)}.entry-teammember-name a{transition:color .25s linear;color:inherit}.entry-teammember-name a:hover{color:var(--color-primary)}.entry-teammember-title{font-family:var(--font-secondary-new);font-size:1.25rem;font-weight:400;line-height:1.3;text-align:center;color:var(--color-primary);margin-top:.5rem}@media (max-width:62rem){.entry-teammember-title{font-size:1.125rem;line-height:1.5rem}}:root{--layout-header-height:73px;--color-primary:#993dbb;--color-primary-light:#FDF9FF;--color-base-invert:#000000;--color-base-light:#303030;--color-base:#ffffff;--color-base-light-muted:#F5ECF8;--color-base-light-muted-half:#F5ECF880;--color-muted:#D0D0D0;--color-muted-dark:#777;--color-danger:#BB3D3D;--site-width-large:80.125rem;--site-width-medium:60rem;--site-width-small:48rem;--site-width-mobile:40rem;--grid-gap:calc(1.75rem - 1px);--grid-gap-old:1.875rem;--spacing-extra-smaller:0.875rem;--spacing-extra-small:1rem;--spacing-smaller:1.125rem;--spacing-small-medium:1.25rem;--spacing-small:1.875rem;--spacing-default:2.5rem;--spacing-medium:2.875rem;--spacing-large:3.75rem;--spacing-custom-large:4.375rem;--spacing-custom:var(--grid-gap);--spacing-custom-grid:var(--grid-gap);--section-spacing-small:var(--spacing-small);--section-spacing-default:var(--spacing-default);--section-spacing-large:var(--spacing-large);--section-spacing-custom-large:var(--spacing-custom-large);--section-spacing-larger:calc(var(--spacing-default) * 2);--section-spacing-extra-large:calc(var(--spacing-large) * 2);--font-primary-new:"Nunito",sans-serif;--font-secondary-new:"DM Sans",sans-serif;--font-custom-default:"Avenir Default",sans-serif;--font-custom-medium:"Avenir Medium",sans-serif;--font-custom-bold:"Avenir Bold",sans-serif;--font-gotcha:"Gotcha Regular",sans-serif;--font-size-h1:3rem;--font-size-h2:2rem;--font-size-h3:1.625rem;--font-size-h4:1.5rem;--font-size-h5:1.25rem;--font-size-h6:1rem;--font-size-large-custom:2.625rem;--font-size-custom:1.375rem;--font-size-small:1.125rem;--font-size-extra-small:0.875rem;--font-size-h2-line-height:1.25;--font-size-h4-line-height:1.25;--shadow-primary:0 4px 10px 0 rgb(0 0 0 / 10%);--shadow-secondary:0 8px 10px 2px rgb(0 0 0 / 10%);--shadow-custom:0px 3px 10px rgba(0, 0, 0, 0.05)}@media (max-width:62rem){:root{--spacing-default:1.875rem;--spacing-large:2.5rem;--spacing-custom-large:1.875rem;--section-spacing-large:1.875rem;--section-spacing-larger:var(--spacing-default);--section-spacing-extra-large:var(--spacing-large)}}@media (max-width:42rem){:root{--grid-gap:1.5rem;--grid-gap-old:0;--spacing-medium:1.5rem}}@media (max-width:62rem){:root{--font-size-h1:2.5rem;--font-size-large-custom:2.125rem}}@media (max-width:42rem){:root{--font-size-h1:1.75rem;--font-size-h2:1.5rem;--font-size-h3:1.25rem;--font-size-h5:1rem;--font-size-h4:1.125rem;--font-size-large-custom:1.375rem;--font-size-custom:1.125rem;--font-size-small:1rem}}@media (min-width:75rem) and (max-width:105.625rem){.site-footer .row{width:calc(100% - 420px)}.site-footer .siter-footer-primary-inner-wrapper{grid-template-columns:repeat(3,auto);grid-template-rows:auto auto}}@media (min-width:75rem) and (max-width:82.125rem){.site-footer .row{width:calc(100% - 400px - 2rem)}.site-footer .siter-footer-primary-inner-wrapper{-moz-column-gap:2.75rem;column-gap:2.75rem}}