* {
    word-break: break-word;
    box-sizing: border-box;
}
html,
body {
    margin: 0;
    padding: 0;
    height: 100%;
}
body {
    color: #09172b;
    font-size: 15px;
    font-family: Roboto, -apple-system, "Helvetica Neue", Helvetica, "Segoe UI", Arial, sans-serif;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}
.hidden {
    display: none !important;
}
h1, h2, h3, h4, h5, h6, p {
    margin: 0;
    padding: 0;
}
h1,
.banner h2 {
    font-size: 36px;
    font-weight: 300;
    line-height: 54px;
}
body:not([data-page^='/dashboard']) [id] {
    scroll-margin-top: 110px;
}
body[data-page^='/dashboard'] [id] {
    scroll-margin-top: 175px;
}
hr {
    height: 1px;
    clear: both;
    width: 100%;
    border: 0;
    margin: 0;
    padding: 0;
    background-color: #eef3f9;
}
hr.spacer {
    margin: 20px 0;
}
label {
    cursor: pointer;
}
.negative {
    color: red;
}
.positive {
    color: #18ad76;
}
input.negative {
    color: red !important;
}
input.positive {
    color: #18ad76 !important;
}
.orange {
    color: orange;
}
.note {
    color: orange;
    font-size: 85%;
    font-style: italic;
}
.smaller {
    font-size: 82.5% !important;
}
.italic {
    font-style: italic !important;
}
.checkbox-switch input {
    display: none;
}
.checkbox-switch span {
    outline: 0;
    width: 2.8em;
    padding: 2px;
    height: 1.6em;
    display: inline-block;
    cursor: pointer;
    position: relative;
    background: #f0f2f6;
    border-radius: 2em;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-transition: all .4s ease;
    transition: all .4s ease;
}
.checkbox-switch input:checked + span {
    background: #0051ff;
}
.checkbox-switch span:after {
    left: 0;
    width: 50%;
    content: '';
    height: 100%;
    display: block;
    position: relative;
    border-radius: 2em;
    background: #fbfbfb;
    -webkit-transition: left .3s cubic-bezier(.175,.885,.32,1.275),padding .3s ease,margin .3s ease;
    transition: left .3s cubic-bezier(.175,.885,.32,1.275),padding .3s ease,margin .3s ease;
    -webkit-box-shadow: 0 0 0 1px rgba(0,0,0,.1),0 4px 0 rgba(0,0,0,.08);
    box-shadow: 0 0 0 1px rgba(0,0,0,.1),0 4px 0 rgba(0,0,0,.08);
}
.checkbox-switch input:checked + span:after {
    left: 50%;
}
svg {
    max-width: 100% !important;
}
.fixed {
    position: fixed;
}
.top {
    top: 0;
}
.left {
    left: 0;
}
.right {
    right: 0;
}
.bottom {
    bottom: 0;
}
.padding {
    padding: 30px;
}
.inline-block {
    display: inline-block;
}
.flex {
    display: flex;
}
.flex-important {
    display: flex !important;
}
.flex-self-bottom {
    margin-top: auto !important;
}
.inline-flex {
    display: inline-flex;
}
.flex-nowrap {
    flex-shrink: 0;
}
.flex-column {
    flex-direction: column;
}
.flex-center {
    align-self: center;
}
.flex-start {
    align-items: flex-start;
}
.flex-justify-center {
    justify-content: center;
}
.spread {
    justify-content: space-between;
}
.middle {
    align-items: center;
}
.grow {
    flex-grow: 1;
    flex-basis: 0;
}
.shrink {
    flex-grow: 0 !important;
    flex-basis: 0 !important;
}
.flex-end {
    justify-content: flex-end;
}
.pointer {
    cursor: pointer;
}
.page-width {
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
    max-width: 1100px;
}
.no-text-decoration {
    text-decoration: none !important;
}
.no-text-decoration:not(.color-inherit):not(.light):not(.orange) {
    color: initial !important;
}
.underline,
.hover-underline:hover {
    text-decoration: underline !important;
}
.button {
    line-height: 200%;
    cursor: pointer;
    border-radius: 3px;
    text-decoration: none;
    transition: transform 0.2s;
    display: inline-block;
    padding: 8px 20px;
    font-weight: 500;
    font-family: Roboto, sans-serif;
    background-color: #1956d8;
    color: #fff;
}
.button:hover {
    background-color: #002dc1;
}
.button.light {
    background-color: #eaf1f9;
    color: #09172b;
}
.button.light:hover {
    background-color: #cedbea;
}
.button.warning {
    background-color: #fff3cd;
    color: #856404;
}
.button.warning:hover {
    background-color: #ffdb66;
}
.button.error {
    background-color: #f8d7da;
    color: #721c24;
}
.button.error:hover {
    background-color: #f5c6cb;
}
.button:not(.no-shadow).transform:hover {
    box-shadow: 0 1rem 2.5rem rgba(22,28,45,0.1),0 0.5rem 1rem -0.75rem rgba(22,28,45,0.1) !important;
    transform: translate3d(0, -3px, 0);
}
.button:not(.no-shadow):not(.transform):hover {
    box-shadow: 0 4px 8px rgba(74, 86, 105, 0.35)
}
.button + i.material-icons {
    position: relative;
}
.button i.material-icons {
    font-size: 100% !important;
    position: relative !important;
    padding-right: 5px !important;
    font-style: inherit !important;
    font-weight: inherit !important;
}
.button:not(.button-link) i.material-icons {
    top: 1.5px !important;
}
.spacerX {
    width: 20px;
    display: inline-block;
}
.spacerX.micro {
    width: 5px;
}
.spacerX.small {
    width: 10px;
}
.spacerX.medium {
    width: 30px;
}
.spacerX.large {
    width: 60px;
}
.spacerY {
    height: 20px;
    display: block;
}
.spacerY.micro {
    height: 5px;
}
.spacerY.small {
    height: 10px;
}
.spacerY.medium {
    height: 30px;
}
.spacerY.large {
    height: 60px;
}
.color-inherit {
    color: inherit !important;
}
.relative {
    position: relative;
}
.absolute {
    position: absolute;
}
.overflow-hidden {
    overflow: hidden;
}
.overflow-ellipsis {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}
.center {
    text-align: center !important;
}
.text-right {
    text-align: right !important;
}
.text-left {
    text-align: left !important;
}
.page {
    width: 100%;
    display: flex;
    min-height: 100%;
    padding-top: 80px;
    flex-direction: column;
    justify-content: space-between;
}
.hidden-email:before {
    direction: ltr;
    unicode-bidi: bidi-override;
    content: attr(data-user) "\0040" attr(data-domain);
}
.light {
    color: #7a90ab;
}
.light-important {
    color: #7a90ab !important;
}
.header {
    z-index: 10;
    height: 80px;
    background-color: #fff;
    box-shadow: 0 2px 16px rgba(74, 86, 105, 0.15);
}
.header .icon {
    width: 35px;
    height: 35px;
    margin-right: 5px;
}
.header > div > div:nth-child(2) {
    height: 100%;
}
.header > div > div > a > * {
    color: #5b7390;
    font-size: 20px;
    position: relative;
    display: flex;
    align-items: center;
}
.header > div > div > a > *.extra {
    margin-left: 5px;
    padding: 5px;
    font-size: 50%;
    color: #856404;
    border-radius: 3px;
    background: #fff3cd;
    text-transform: uppercase;
}
.header > div > div > a {
    text-decoration: none;
}
.header ul {
    list-style-type: none;
    margin: 0 auto;
    padding: 0;
}
.header ul > li {
    display: flex;
    align-items: center;
    justify-content: center;
}
.header ul > li svg {
    vertical-align: middle;
    width: 12px;
    height: 12px;
    fill: #7a90ab;
    transition-duration: 0.2s;
    transition-timing-function: linear;
    transition-delay: initial;
    transition-property: transform;
}
.header ul > li:hover svg {
    transform: rotate(180deg);
}
.header ul > li > a {
    color: #5b7390;
    padding: 0 15px;
    font-size: 17px;
    display: inline-block;
    text-decoration: none;
}
.header .flex > ul > li.dropdown > ul > li {
    display: block;
}
.header .hamburger {
    width: 80px;
    height: 80px;
    right: -20px;
    position: relative;
    margin-left: auto;
    padding-right: 20px;
    padding-top: 30px;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
}
.header .hamburger > div {
    width: 24px;
    height: 16px;
    position: relative;
    transform: rotate(0deg);
    transition: all 0.2s ease-in-out;
    cursor: pointer;
    margin-left: auto;
}
.header .hamburger > div > span:nth-child(1) {
    top: 0;
}
.header .hamburger > div > span:nth-child(2),
.header .hamburger > div > span:nth-child(3) {
    top: 7px;
}
.header .hamburger > div.open > span:nth-child(1) {
    top: 9px;
    width: 0;
    left: 50%;
}
.header .hamburger > div.open > span:nth-child(2) {
    transform: rotate(45deg);
}
.header .hamburger > div.open > span:nth-child(3) {
    transform: rotate(-45deg);
}
.header .hamburger > div.open > span:nth-child(4) {
    top: 9px;
    width: 0;
    left: 50%;
}
.header .hamburger > div > span:nth-child(4) {
    top: 14px;
}
.header .hamburger > div > span {
    display: block;
    position: absolute;
    height: 2px;
    width: 100%;
    background: #7a90ab;
    border-radius: 2px;
    opacity: 1;
    left: 0;
    transform: rotate(0deg);
    transition: all 0.2s ease-in-out;
}
.footer {
    background-color: #f6f8fb;
}
.error-page {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 80px 40px;
    margin: 0 auto;
}
.error-page p {
    color: #7a90ab;
    margin: 0 auto;
    max-width: 400px;
    text-align: center;
    line-height: 240%;
}
.error-page p a {
    color: #1956d8;
    text-decoration: none;
    font-weight: 500;
}
.error-page svg {
    width: 100%;
    margin: 0 auto;
    display: block;
    user-select: none;
    overflow: visible;
}
.error-page svg rect {
    transition: transform 0.3s;
    transform-origin: 50% 50%;
    animation-name: svgScale;
    animation-duration: 1s;
}
.error-page svg rect:hover {
    cursor: pointer;
    transform: scale(1.2) !important;
    transform-origin: 50% 50%;
    transition: transform 0.3s;
}
.publicHolder {
    height: 100%;
    padding: 30px;
    display: flex;
    flex-grow: 1;
    flex-basis: 0;
    align-items: center;
    background-color: #f6f8fb;
}
.publicHolder.dashboard-nav {
    background-color: #f6f8fb !important;
    min-height: calc(100% - 65px) !important;
}
textarea {
    width: 100%;
    color: #1a2a3e;
    font-size: 11pt;
    min-height: 125px;
    resize: vertical;
    border-radius: 3px;
    padding: 10px;
    -webkit-appearance: none;
    border: 1px solid #e0e5ec;
    font-family: Roboto,sans-serif;
    background-color: white !important;
}
.textarea__line_numbers__container {
    width: 100%;
    color: #1a2a3e;
    font-size: 11pt;
    overflow: hidden;
    border-radius: 3px;
    -webkit-appearance: none;
    border: 1px solid #e0e5ec;
    font-family: Roboto,sans-serif;
    background-color: white !important;
}
.textarea__line_numbers__container textarea {
    border: none !important;
    outline: none !important;
}
.textarea__line_numbers__container .textarea__line_numbers {
    color: #e0e5ec;
    font-size: 11pt;
    padding: 10px;
    overflow: hidden;
    border-right: 1px solid #e0e5ec;
}
.publicBlock {
    width: 100%;
    max-width: 380px;
    padding: 30px;
    margin-left: auto;
    margin-right: auto;
    border-radius: 3px;
    background-color: #fff;
    box-shadow: 0 0 11px 0 rgba(63,73,105,.05);
}
.publicBlock h1,
.publicBlock h2 {
    font-size: 22px;
    font-weight: 600;
    line-height: 22px;
    font-family: Nunito,sans-serif;
}
.publicBlock .publicIcon {
    color: #dde5ef;
}
.publicBlock .inputTitle {
    color: #7a90ab;
    margin: 15px 0;
    font-size: 14px;
    display: block;
}
.publicBlock .inputTitle:after {
    content: ":";
}
.publicBlock .inputModule {
    display: block;
    position: relative;
}
.popup input,
.publicBlock .inputModule input {
    width: 100%;
    height: 48px;
    padding-left: 10px;
    padding-right: 10px;
    border: 1px solid #e0e5ec;
    font-family: Roboto,sans-serif;
    font-size: 11pt;
    border-radius: 3px;
    color: #1a2a3e;
}
.publicBlock .inputModule textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #e0e5ec;
    font-family: Roboto,sans-serif;
    font-size: 11pt;
    border-radius: 3px;
    color: #1a2a3e;
    resize: vertical;
}
.publicBlock .inputModule .intl-tel-input {
    width: 100%;
}
.button-link,
button.button {
    display: block;
    cursor: pointer;
    transition: all .15s;
    background-color: #0051ff;
    color: #fff;
    width: 100%;
    min-height: 60px;
    font-size: 15px;
    padding-left: 20px;
    padding-right: 20px;
    border: 0;
    border-radius: 3px;
    font-weight: 500;
    text-align: center;
}
.publicHolder .redirect-links a {
    color: #7a90ab;
    font-weight: 500;
    text-decoration: none;
}
.publicHolder .redirect-links a:hover {
    color: #0051ff;
}
.publicHolder .redirect-links a:not(:last-child):after {
    content: "|";
    margin: 0 5px;
    display: inline-block;
    color: #7a90ab !important;
}
.publicBlock .success-public.successHolder {
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
    z-index: 3;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}
.publicBlock .success-public.successHolder > * {
    width: 100%;
}
.publicBlock .success-public.absolute {
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
}
.publicBlock .success-public .checkmark {
    width: 56px;
    height: 56px;
    min-height: 56px !important;
    border-radius: 50%;
    display: block;
    stroke-width: 2;
    stroke-miterlimit: 10;
    animation: fill .4s ease-in-out .4s forwards,scale .3s ease-in-out .9s both;
}
.success-public .checkmark__circle {
    stroke-dasharray: 166;
    stroke-dashoffset: 166;
    stroke-width: 2;
    stroke-miterlimit: 10;
    fill: none;
    -webkit-animation: stroke .6s cubic-bezier(.65,0,.45,1) forwards;
    animation: stroke .6s cubic-bezier(.65,0,.45,1) forwards;
}
.success-public .checkmark__check {
    -webkit-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
    stroke-dasharray: 48;
    stroke-dashoffset: 48;
    -webkit-animation: stroke .3s cubic-bezier(.65,0,.45,1) .8s forwards;
    animation: stroke .3s cubic-bezier(.65,0,.45,1) .8s forwards;
}
.success-public.successHolder>.light {
    line-height: 200%;
    max-width: 400px;
}
.spinner {
    margin: 0 auto;
    position: relative;
    display: inline-block;
    border-width: 2px;
    border-style: solid;
    border-left-color: rgba(0, 126, 229, .15);
    border-right-color: rgba(0, 126, 229, .15);
    border-bottom-color: rgba(0, 126, 229, .15);
    border-top-color: rgba(0, 126, 229, .8);
    animation: spinner_rotation .5s infinite linear;
    border-radius: 100%;
}
.button .spinner {
    top: 5px;
    width: 28px;
    height: 28px;
}
a.button.button-link .spinner {
    top: 0 !important;
}
a.button .spinner {
    width: 20px;
    height: 20px;
    display: flex;
}
.button:not(.light):not(.error) .spinner {
    border-left-color: rgba(255, 255, 255, .15) !important;
    border-right-color: rgba(255, 255, 255, .15) !important;
    border-bottom-color: rgba(255, 255, 255, .15) !important;
    border-top-color: rgba(255, 255, 255, .8) !important;
}
.button.error .spinner {
    border-left-color: rgba(114, 28, 36, .15);
    border-right-color: rgba(114, 28, 36, .15);
    border-bottom-color: rgba(114, 28, 36, .15);
    border-top-color: rgba(114, 28, 36, .8);
}
table .spinner {
    width: 32px;
    height: 32px;
}
.flash-message {
    left: 25px;
    bottom: 25px;
    padding: 15px;
    z-index: 99999;
    position: fixed;
    margin-right: 25px;
    border-radius: 4px;
    transition: .2s;
    transform: translateY(16px);
    transform-origin: bottom left;
    opacity: 0;
    visibility: hidden;
    animation: flash_message_fade_out .5s forwards;
    animation-iteration-count: 1;
    animation-delay: 5s;
    max-width: 450px;
    max-height: 250px;
    overflow-y: auto;
    box-shadow: 0 0 11px 0 rgba(63, 73, 105, .25);
}
.flash-message.active:hover {
    animation-delay: 1000s;
}
.flash-message.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.notification {
    color: #fff;
    border-radius: 3px;
    padding: 20px;
    line-height: 26px;
    font-size: 14px;
}
:not(div).notification {
    display: inline-block;
}
.notification,
.flash-message[data-type='info'] {
    color: #004085;
    background-color: #cce5ff;
    border-color: #b8daff;
}
.notification.success,
.flash-message[data-type='success'] {
    color: #155724;
    background-color: #d4edda;
    border-color: #c3e6cb;
}
.notification.error,
.flash-message[data-type='error'] {
    color: #721c24;
    background-color: #f8d7da;
    border-color: #f5c6cb;
}
.notification.warning,
.flash-message[data-type='warning'] {
    color: #856404;
    background-color: #fff3cd;
    border-color: #ffeeba;
}
.flash-message .flash-message-content {
    align-self: center;
    padding-left: 10px;
}
.inputModule .iti {
    width: 100%;
}
input.int-tel {
    padding-left: 52px !important;
}
.country-int-tel .iti__dial-code,
.iti__country-list .iti__dial-code {
    display: none !important;
}
.dashboard {
    padding: 20px 0;
    background-color: #f6f8fb;
}
.dashboard-background {
    background-color: #f6f8fb;
}
.dashboard h1 {
    font-size: 32px;
    font-weight: 500;
    font-family: Nunito,sans-serif;
}
.dashboard h2 {
    font-size: 20px;
    font-family: Nunito,sans-serif;
}
.dashboard-nav {
    top: 80px;
    z-index: 3;
    height: 65px;
    background-color: #f0f5f9;
    box-shadow: 0 2px 16px rgba(74, 86, 105, 0.15);
}
.dashboard-nav ul {
    padding: 0;
    position: relative;
    display: inline-block;
    margin: 0 auto 0 auto;
    list-style-type: none;
    scroll-behavior: smooth;
    white-space: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: -ms-autohiding-scrollbar;
    width: 100%;
}
.dashboard-nav ul li {
    display: inline-block;
}
.dashboard-nav ul li a {
    padding-right: 15px;
    padding-left: 15px;
    height: 65px;
    cursor: pointer;
    line-height: 65px;
    text-decoration: none;
    color: #667990;
}
.dashboard-nav ul li.active a,
.dashboard-nav ul li a:hover {
    color: #0051ff;
}
.dashboard-nav ul li a i {
    font-size: 100% !important;
}
.content-block {
    background-color: #fff;
    border-radius: 3px;
}
.dashboard .content-block {
    -webkit-box-shadow: 0 0 11px 0 rgba(63,73,105,.05);
    box-shadow: 0 0 11px 0 rgba(63,73,105,.05);
}
.flex:has(> .vscomp-ele) {
    max-width: 100%;
}
.content-block form .rule_combined_field *:not(.double-input) > .vscomp-ele {
    max-width: calc(100% - 52px) !important;
}
.vscomp-ele,
.vscomp-ele * {
    outline: none !important;
}
.vscomp-ele.pop-comp-ele[name] {
    flex: 1;
    align-self: flex-start;
}
.vscomp-ele.initial-width {
    width: initial !important;
    min-width: 175px !important;
    max-width: 100% !important;
}
.vscomp-ele .vscomp-toggle-button {
    display: flex;
    position: relative;
    align-items: center;
}
.vscomp-ele .vscomp-options-container {
    max-height: 250px !important;
}
select {
    outline: 0;
    overflow: hidden;
    white-space: nowrap;
    border-color: #7a90ab;
    text-overflow: ellipsis;
}
select:not([multiple]):not([disabled]),
.vscomp-ele:not([disabled]) .vscomp-arrow {
    background-repeat: no-repeat;
    padding-right: 50px !important;
    background-size: 5px 5px, 5px 5px, 1px 100%;
    background-position: calc(100% - 15px) 20px, calc(100% - 20px) 20px, calc(100% - 40px) 0;
    background-image: linear-gradient(135deg, #7a90ab 50%, transparent 50%), linear-gradient(45deg, transparent 50%, #7a90ab 50%), linear-gradient(to right, #ddd, #ddd);
}
.vscomp-ele[disabled] .vscomp-wrapper {
    opacity: 1 !important;
}
select.styled,
.vscomp-ele .vscomp-toggle-button,
.content-block input:not(.search):not(.input_searchable),
.content-block select {
    height: 48px;
}
.vscomp-search-container {
    height: 48px !important;
}
.vscomp-search-container {
    padding: 0 !important;
    border: none !important;
}
.vscomp-ele .vscomp-value {
    width: 100% !important;
    height: initial !important;
    align-items: center !important;
}
.vscomp-ele .vscomp-value,
.vscomp-ele .vscomp-value * {
    font-size: inherit !important;
    line-height: inherit !important;
}
.vscomp-wrapper.show-value-as-tags .vscomp-arrow {
    height: 100% !important;
}
.vscomp-ele .vscomp-value[data-tooltip-ellipsis-only=true] {
    margin-right: 45px !important;
}
.vscomp-ele .vscomp-value-tag {
    width: 100% !important;
    margin-bottom: 0 !important;
    border-radius: 3px !important;
    border: 1px solid #e0e5ec !important;
}
.vscomp-ele .vscomp-value-tag:not(:first-child) {
    margin-top: 7px !important;
}
.vscomp-ele .vscomp-value-tag .vscomp-value-tag-content,
.vscomp-ele .vscomp-value-tag .vscomp-value-tag-content * {
    white-space: wrap;
}
.vscomp-ele .vscomp-value-tag .vscomp-clear-icon:before,
.vscomp-ele .vscomp-value-tag .vscomp-clear-icon:after {
    background-color: red !important;
}
.vscomp-ele .vscomp-arrow:after {
    display: none !important;
}
.vscomp-ele .vscomp-option,
.vscomp-ele .vscomp-options-list {
    height: initial !important;
}
.vscomp-option.focused,
.vscomp-option.selected {
    background-color: #f6f8fb !important;
}
.vscomp-ele .vscomp-option {
    min-height: 48px !important;
    padding-top: 7.5px !important;
    padding-bottom: 7.5px !important;
    border-bottom: 1px solid #e0e5ec;
}
.vscomp-ele .vscomp-ele-wrapper .vscomp-dropbox .vscomp-search-wrapper .vscomp-search-container > input.vscomp-search-input {
    width: 100% !important;
    height: 48px !important;
    font-size: inherit !important;
    padding-left: 10px !important;
    padding-right: 35px !important;
    border-bottom: 1px solid #e0e5ec;
}
.vscomp-search-container .vscomp-search-clear {
    position: absolute;
    right: 5px !important;
}
.vscomp-wrapper.focused .vscomp-toggle-button, .vscomp-wrapper:focus .vscomp-toggle-button {
    box-shadow: none !important;
}
select.styled,
.vscomp-ele .vscomp-toggle-button,
.content-block input:not(.search):not(.input_searchable),
.content-block select {
    padding-left: 10px;
    padding-right: 10px;
    outline: none !important;
    border: 1px solid #e0e5ec;
    font-family: Roboto,sans-serif;
    font-size: 11pt;
    border-radius: 3px;
    color: #1a2a3e;
    -webkit-appearance: none;
    margin: 0 !important;
    background-color: white !important;
}
.vscomp-ele .vscomp-toggle-button {
    height: initial !important;
    min-height: 48px !important;
    padding: 10px !important;
}
.vscomp-ele[disabled] {
    cursor: initial !important;
}
select[multiple].styled,
.content-block select[multiple] {
    min-height: 100px;
}
.content-block input[type=number] {
    text-align: right !important;
}
input[type=text].dotted {
    -webkit-text-security: disc;
}
.content-block .double-input input,
.content-block .double-input select,
.content-block .double-input .vscomp-ele {
    width: calc(50% - 5px);
    min-width: calc(50% - 5px) !important;
    max-width: calc(50% - 5px) !important;
}
.vscomp-option-text {
    overflow: initial !important;
    white-space: initial !important;
    text-overflow: initial !important;
}
.searchable_input {
    position: relative !important;
}
.searchable_input,
.searchable_input_results:not(.searchable_input_results_list) {
    padding-left: 10px;
    padding-right: 10px;
    padding-bottom: 12.5px;
}
.searchable_input,
.searchable_input_results {
    min-height: 48px;
    border: 1px solid #e0e5ec;
    font-family: Roboto,sans-serif;
    font-size: 11pt;
    border-radius: 3px;
    color: #1a2a3e;
    display: block !important;
    background-color: white !important;
}
.searchable_input .search_results .search_result,
.searchable_input_results .search_results .search_result {
    width: 100% !important;
    margin: 10px 10px 0 0;
    background-color: #f6f8fb;
}
.searchable_input .search_results .search_result .value,
.searchable_input_results .search_results .search_result .value {
    width: 100% !important;
    padding: 7.5px !important;
}
.searchable_input .search_results .search_result .delete {
    color: red !important;
    padding: 0 7.5px !important;
    font-size: 80% !important;
    border-left: 1px solid lightgrey !important;
}
.searchable_input input.input_searchable {
    border: none !important;
    outline: none !important;
    max-width: 100% !important;
    margin-top: 12.5px !important;
    margin-right: 30px !important;
    font-size: inherit !important;
    font-family: inherit !important;
}
.searchable_input .spinner {
    right: 15px;
    width: 20px;
    height: 20px;
    bottom: 15px;
    position: absolute;
}
.searchable_input .searchable_input_results {
    left: 0;
    right: 0;
    top: 100%;
    z-index: 5;
    overflow-y: auto;
    max-height: 200px;
    position: absolute;
    border: inherit !important;
    background-color: white !important;
}
.searchable_input .searchable_input_results .searchable_input_result {
    padding: 10px;
    cursor: pointer;
    text-align: left;
}
.searchable_input .searchable_input_results .searchable_input_result:hover {
    background-color: #f6f8fb !important;
}
input.search {
    border: 0;
    height: 40px;
    line-height: 40px;
    width: 100%;
    background-color: transparent;
    padding-left: 30px;
    font-family: Roboto,sans-serif;
    font-size: 11pt;
    position: relative;
    outline: none;
    font-weight: 500;
    color: #0051ff;
}
input.search::placeholder {
    color: #7a90ab;
}
i.search {
    position: absolute;
    left: 0;
    top: 0;
    line-height: 40px;
    height: 40px;
    color: #0051ff;
}
.empty-table-message {
    padding: 20px;
    border-bottom: 1px solid #eef3f9;
}
table .table-ellipsis {
    width: 100%;
    color: transparent;
    position: relative;
}
table .table-ellipsis.order-type_BUY,
table .table-ellipsis.order-type_SELL {
    width: initial !important;
    padding: 0 15px !important;
}
table .table-ellipsis:before {
    content: "&nbsp;";
}
table .table-ellipsis:after {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    color: black;
    overflow: hidden;
    position: absolute;
    content: attr(title);
    text-overflow: ellipsis;
}
table a.table-ellipsis:after {
    color: #0051ff !important;
}
table a.table-ellipsis:hover:after {
    text-decoration: underline;
}
table .table-ellipsis.light:after {
    color: #7a90ab !important;
}
table .table-ellipsis.orange:after,
table .table-ellipsis.note:after {
    color: orange !important;
}
table .table-ellipsis.negative:after {
    color: red !important;
}
table .table-ellipsis.positive:after {
    color: #18ad76 !important;
}
table .table-ellipsis.underline:after {
    text-decoration: underline;
}
.strike-through,
table .table-ellipsis.strike-through:after {
    text-decoration: line-through;
}
.list > table {
    width: 100%;
    font-size: 14px;
    border-collapse: collapse;
}
.list > table thead th,
.list > table tbody td {
    white-space: nowrap;
}
.list > table thead th *,
.list > table tbody td * {
    white-space: initial;
}
.list > table .table-ellipsis {
    flex-grow: 1;
    flex-basis: 0;
    white-space: nowrap;
}
.list > table tr.empty-list {
    white-space: initial !important;
}
.list > table th,
.list > .table .table-header {
    font-weight: 500;
    text-align: left;
}
.list > table tr th,
.list > table tr td {
    padding: 20px;
    border-bottom: 1px solid #eef3f9;
}
.list > .table .table-cell {
    padding: 10px;
    border-bottom: 1px solid #eef3f9;
}
.list > table > tbody tr:has(+ tr.tr-notifications:hover),
.list > table > tbody tr:not(.highlight):not(.loading):hover,
.list > .table > .table-body a.table-row:not(.highlight):not(.loading):hover,
.list > table > tbody tr:not(.highlight):not(.loading):hover + tr:not(.highlight).tr-notifications {
    transition: all .1s;
    background-color: #f6f8fb;
    -webkit-transition: all .1s;
}
tr.tr-notifications .notification {
    margin-top: 5px !important;
}
.list > table > tbody tr:not(.highlight):has(+ tr:not(.highlight).tr-notifications) td {
    padding-bottom: 5px !important;
    border-bottom: none !important;
}
.list > table > tbody tr + tr.tr-notifications td {
    padding-top: 0 !important;
}
.list > table > tbody tr.highlight {
    transition: none !important;
    -webkit-transition: none !important;
    background-color: #f6f8fb !important;
}
.list.sources > table tr > *:nth-child(2),
.list.sources > table tr > *:nth-child(3),
.list.sources > table tr > *:nth-child(4) {
    width: 30%;
}
.list.channels > table tr > *:nth-child(2) {
    width: 25%;
}
.list.channels > table tr > *:nth-child(3),
.list.channels > table tr > *:nth-child(4) {
    width: 32.5%;
}
.list.products > table tr > *:nth-child(2),
.list.products > table tr > *:nth-child(3) {
    width: 50%;
}
.list.product-variations > table tr > *:nth-child(1),
.list.product-variations > table tr > *:nth-child(3) {
    width: 20%;
}
.list.product-variations > table tr > *:nth-child(2),
.list.product-variations > table tr > *:nth-child(4),
.list.product-variations > table tr > *:nth-child(5),
.list.product-variations > table tr > *:nth-child(6) {
    width: 15%;
}
.list.product-variations > table tr > *:nth-child(5) {
    text-align: center;
}
.list.order-product-variations > table tr > *:nth-child(1) {
    width: 35%;
}
.list.order-product-variations > table tr > *:nth-child(2) {
    width: 27.5%;
}
.list.order-product-variations > table tr > *:nth-child(3) {
    width: 7.5%;
    text-align: center;
}
.list.order-product-variations > table tr > *:nth-child(4),
.list.order-product-variations > table tr > *:nth-child(5) {
    width: 15%;
    text-align: center;
}
.list.mappings > table tr > *:nth-child(1) {
    width: 15%;
}
.list.mappings > table tr > *:nth-child(2),
.list.mappings > table tr > *:nth-child(3) {
    width: 42.5%;
}
.list.rules > table tr > *:nth-child(1),
.list.rules > table tr > *:nth-child(2) {
    width: 36.25%;
}
.list.rules > table tr > *:nth-child(3) {
    width: 7.5%;
}
.list.rules > table tr > *:nth-child(4) {
    width: 20%;
}
.list.support-users > table tr > *:nth-child(2) {
    width: 100%;
}
.list.admin-users > table tr > *:nth-child(2),
.list.admin-users:not(.affiliate) > table tr > *:nth-child(3) {
    width: 50%;
}
.list.orders > table tr > *:nth-child(1),
.list.orders > table tr > *:nth-child(3),
.list.returns > table tr > *:nth-child(1),
.list.returns > table tr > *:nth-child(3) {
    width: 20%;
}
.list.orders > table tr > *:nth-child(2),
.list.returns > table tr > *:nth-child(2) {
    width: 15%;
}
.list.orders > table tr > *:nth-child(4),
.list.returns > table tr > *:nth-child(4) {
    width: 30%;
}
.list.orders > table tr > *:nth-child(5),
.list.returns > table tr > *:nth-child(5) {
    width: 15%;
}
.list.invoices table.prices {
    width: 100%;
}
.list.invoices table.prices th,
.list.invoices table.prices td {
    padding: 2.5px !important;
}
.list.invoices table.prices tr:not(:nth-child(2)) td {
    border-bottom: none !important;
}
.list.invoices a {
    color: #0051ff !important;
}
table.sortable thead th:not(.no-sort) {
    cursor: pointer;
    position: relative;
}
table.sortable thead th:not(.no-sort).sorted.ascending:after,
table.sortable thead th:not(.no-sort).sorted.descending:after {
    width: 0;
    height: 0;
    content: "";
    margin-left: 3.5px;
    bottom: calc(50% - 2.5px);
    position: absolute;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
}
table.sortable thead th:not(.no-sort).sorted.ascending:after {
    border-bottom: 5px solid #0051ff;
}
table.sortable thead th:not(.no-sort).sorted.descending:after {
    border-top: 5px solid #0051ff;
}
th.icon-action,
td.icon-action {
    padding-left: 0 !important;
    padding-right: 0 !important;
}
.table-loading-error {
    padding: 20px;
    text-align: center;
    border-bottom: 1px solid #eef3f9;
}
.material-icons.edit {
    color: #0051ff !important;
}
.list > table th.icon-action,
.list > table td.icon-action {
    width: 1% !important;
}
.image-carousel {
    height: 250px;
    display: block !important;
}
.image-carousel-thumbnails {
    height: 50px;
}
.image-carousel img,
.image-carousel-thumbnails img {
    width: 100%;
    max-height: 100%;
    object-fit: contain !important;
}
.image-carousel .slick-list,
.image-carousel .slick-list .slick-track,
.image-carousel-thumbnails .slick-list,
.image-carousel-thumbnails .slick-list .slick-track {
    height: 100%;
}
.pager {
    padding: 15px 0;
}
.pager > * {
    margin: 0 auto !important;
}
.pager .page-selector-next,
.pager .page-selector-prev {
    color: #0051ff;
    cursor: pointer;
    font-size: 125%;
    font-weight: 400;
}
.pager input {
    text-align: right;
    min-width: 0 !important;
    width: initial !important;
    padding: 5px 10px !important;
    -moz-appearance: textfield !important;
}
.pager input::-webkit-outer-spin-button,
.pager input::-webkit-inner-spin-button {
    margin: 0;
    -webkit-appearance: none;
}
.notification-list .notification-list-item:not(:first-of-type) {
    margin-top: 10px;
}
.conditions .add-row:before,
.notification-action:before,
.conditions .condition-group-row > *:last-child:before,
.conditions .condition .condition-action:before {
    font-family: 'Material Icons';
    font-weight: normal;
    font-style: normal;
    font-size: 24px;
    line-height: 1;
    letter-spacing: normal;
    text-transform: none;
    display: inline-block;
    white-space: nowrap;
    word-wrap: normal;
    direction: ltr;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}
.conditions .condition-group-row:not(:first-child) > *:last-child:before {
    margin-top: 52px !important;
}
.conditions .add-row,
.conditions .condition-group-row > *:last-child,
.notification-list .notification-list-item .notification-action {
    cursor: pointer;
}
.conditions .add-row:before {
    color: #18ad76;
    margin-top: 10px;
    content: "add_circle_outline";
}
.conditions .condition-group-row > *:last-child:before {
    color: red;
    content: "delete";
    padding: 0 3px !important;
}
.conditions .condition-group-container *:not(:last-child) .condition .condition-action:nth-child(4):before,
.conditions .condition-group-container *:first-child:last-child .condition .condition-action:nth-child(3):before {
    display: none !important;
}
.notification-list .notification-list-item:not(:last-of-type) .notification-action:before,
.conditions .condition-group-container .condition .condition-action:nth-child(3):before {
    color: red;
    content: "remove_circle_outline";
}
.notification-list .notification-list-item:last-of-type .notification-action:before,
.conditions .condition-group-container .condition .condition-action:nth-child(4):before {
    color: #18ad76;
    content: "add_circle_outline";
}
.conditions .condition-group-container .condition-group {
    border: 1px solid #eef3f9;
    padding: 10px 5px;
}
.conditions .condition-group-row:hover .condition-group {
    background-color: #f6f8fb;
}
.conditions .condition-group-row:first-child:nth-last-child(2) > *:last-child:before,
.conditions .condition-group-row:first-child > .condition-group-container > .condition-separator {
    display: none;
}
.conditions .condition-group-row > .condition-group-container > .condition-separator {
    margin: 10px 0;
}
.conditions .condition-group-row .condition-separator:first-child:before,
.conditions .condition-group-row .condition-group-container *:not(:last-child) .condition-separator:before {
    color: #7a90ab;
    padding: 5px 0;
    border: 1px solid;
    text-transform: uppercase;
    border-image: linear-gradient(#0000 calc(50% - 1px / 2), #7a90ab 0 calc(50% + 1px / 2), #0000 0) 0 1/0 10px/0 calc(10px + 5px);
}
.conditions[data-rule-type='AND BLOCKS WITH OR LINES'] .condition-group-row .condition-separator:first-child:before,
.conditions[data-rule-type='OR BLOCKS WITH AND LINES'] .condition-group-row .condition-group-container *:not(:last-child) .condition-separator:before {
    content: attr(data-text-and);
}
.conditions[data-rule-type='OR BLOCKS WITH AND LINES'] .condition-group-row .condition-separator:first-child:before,
.conditions[data-rule-type='AND BLOCKS WITH OR LINES'] .condition-group-row .condition-group-container *:not(:last-child) .condition-separator:before {
    content: attr(data-text-or);
}
.rule_combined_field {
    margin-bottom: 10px;
}
.rule_combined_field:not(:first-child):not(:last-child) .sort-handle {
    cursor: ns-resize;
}
.rule_combined_field:first-child .sort-handle {
    cursor: s-resize;
}
.rule_combined_field:last-child .sort-handle {
    cursor: n-resize;
}
.rule_combined_field:only-child .sort-handle {
    display: none !important;
}
.pricing {
    padding: 30px 20px;
    border-radius: 3px;
    background-color: #fff;
    transition: transform 0.2s;
    box-shadow: 0 0 11px 0 rgba(63,73,105,.05);
    -webkit-box-shadow: 0 0 11px 0 rgba(63,73,105,.05);
}
.pricing:not(.selected):not(.confirm):not(.disabled) {
    cursor: pointer;
}
.pricing:not(.selected):not(.confirm):hover {
    transform: translate3d(0, -3px, 0);
}
.pricing.popular:not(.selected) {
    border: 2px solid #c3e6cb;
}
.pricing.selected {
    border: 2px solid #0051ff;
}
.pricing.popular,
.pricing.selected {
    padding: 30px 18px !important;
}
.pricing .extra {
    top: 7.5px;
    right: 7.5px;
    padding: 5px;
    font-size: 70%;
    display: block;
    position: absolute;
    border-radius: 5px;
}
.pricing .extra {
    color: #fff;
    background-color: #1956d8;
}
.pricing .extra.popular {
    color: #155724;
    background-color: #d4edda;
}
.pricing h3 {
    font-size: 25px;
}
.pricing .price {
    font-size: 40px;
    font-weight: 700;
}
.pricing .features {
    margin: 0;
    padding: 0 15px;
    list-style: none !important;
}
.pricing .features > *:not(:last-child) {
    margin-bottom: 10px;
}
.pricing .features > *:not(.negative):before {
    content: '✓';
    color: green;
    padding-right: 10px;
}
.pricing .features > *.negative:before {
    content: '⨉';
    color: red;
    padding-left: 3px;
    padding-right: 10px;
}
.pricing .features > *.negative {
    color: #7a90ab;
}
.pricing .features img {
    width: 20px !important;
    height: 20px !important;
    padding-left: 5px !important;
    object-fit: contain !important;
}
.pricing .button {
    width: 100%;
    text-align: center;
    margin-top: auto !important;
}
.pricing .button.subscription-active,
.pricing .button.subscription-expired {
    cursor: initial !important;
    background-color: transparent !important;
}
.pricing .button.subscription-active {
    color: #0051ff !important;
}
.pricing .button.subscription-expired {
    color: #7a90ab !important;
}
.pricing .button.subscription-active:before {
    content: '✓';
    color: green;
    padding-right: 10px;
}
.pricing .button.subscription-expired:before {
    content: '✗';
    color: red;
    padding-right: 10px;
}
.pricing .button.confirm {
    color: #155724;
    background-color: #d4edda;
}
.pricing .button.confirm:not([disabled]):before {
    content: '✓';
    color: #155724;
    padding-right: 10px;
}
.faq ul {
    padding: 0 !important;
    list-style: none !important;
    margin: 20px 0 0 0 !important;
}
.faq ul li {
    border-radius: 5px;
    margin-bottom: 10px;
    word-break: break-word;
    background-color: white;
    border: 1px rgb(50, 54, 57);
    box-shadow: 0 2px 8px rgba(74, 86, 105, 0.15);
}
.faq ul li > *:first-child {
    padding: 18px 20px;
}
.faq ul li > *:last-child {
    padding: 24px 20px;
}
.faq ul li h3 {
    font-weight: 400;
}
.faq ul li svg {
    width: 24px;
    height: 24px;
    fill: #7a90ab;
    min-width: 24px;
    min-height: 24px;
    transition-duration: 0.3s;
    transition-timing-function: linear;
    transition-delay: initial;
    transition-property: transform;
}
.faq ul li.active svg {
    transform: rotate(180deg);
}
.faq ul li > *:last-child {
    visibility: hidden;
    position: absolute;
    border-top: 1px solid lightgray;
}
.faq ul li.active > *:last-child {
    position: relative;
    visibility: visible;
}
.banner {
    width: 100%;
    position: relative;
}
.banner.grey {
    background-color: #f6f8fb;
}
.banner.grey .separator {
    fill: #f6f8fb;
}
.banner .vertical-separator {
    margin: 0 40px;
    border: 1px solid #7a90ab;
    width: 1px !important;
}
.banner h1,
.banner h2,
.banner h3 {
    font-weight: 600;
    font-style: normal;
    font-family: Gilroy,sans-serif;
    -webkit-font-smoothing: antialiased;
}
.banner p {
    line-height: 35px;
    text-align: justify;
}
.banner .material-icons.large {
    color: #1956d8;
    font-size: 250px;
}
.banner .material-icons.medium {
    padding: 10px;
    color: #1956d8;
    font-size: 50px;
    border-radius: 50%;
    border: 2px solid #1956d8;
}
.separator {
    width: 100%;
}
.separator:first-child {
    fill: white !important;
}
.separator:last-child {
    background: white !important;
}
img.about_us {
    width: 55%;
}
.uppercase {
    text-transform: uppercase;
}
.system_status_indicator {
    width: 8px;
    height: 8px;
    margin-left: 7.5px;
    border-radius: 50%;
    display: inline-block;
    background: rgba(52, 172, 224, 1);
    animation: pulse-blue 2s infinite;
    box-shadow: 0 0 0 0 rgba(52, 172, 224, 1);
}
.system_status_indicator[data-indicator='OK'] {
    background: rgba(51, 217, 178, 1);
    box-shadow: 0 0 0 0 rgba(51, 217, 178, 1);
    animation: pulse-green 2s infinite;
}
.system_status_indicator[data-indicator='WARNING'] {
    background: rgba(255, 174, 66, 1);
    box-shadow: 0 0 0 0 rgba(255, 121, 63, 1);
    animation: pulse-orange 2s infinite;
}
.system_status_indicator[data-indicator='ERROR'] {
    background: rgba(255, 82, 82, 1);
    box-shadow: 0 0 0 0 rgba(255, 82, 82, 1);
    animation: pulse-red 2s infinite;
}
img.list-source-icon,
img.list-marketplace-icon {
    width: 100%;
    height: 100%;
    max-width: 125px;
    max-height: 100px;
    object-fit: contain;
}
.source-page-icon,
.marketplace-page-icon {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.source-page-icon.connection,
.marketplace-page-icon.connection {
    max-width: 50% !important;
    max-height: 75px !important;
    margin: 0 auto !important;
}
.connection-multiplier {
    font-weight: bold;
    transform: rotate(90deg);
    color: #7a90ab !important;
    margin: 0 auto !important;
    font-size: 40px !important;
}
.sitemap-combinations .table-cell:nth-child(1),
.sitemap-combinations .table-cell:nth-child(3) {
    width: 50% !important;
}
.sitemap-combination {
    font-size: 14px !important;
    padding: 0 10px; !important;
}
.table {
    display: table;
}
.table.styled {
    width: 100% !important;
}
.table-header {
    display: table-header-group;
}
.table-body {
    display: table-row-group;
}
.table-row {
    display: table-row;
}
.table-cell {
    display: table-cell;
    word-break: break-all !important;
    vertical-align: middle !important;
}
.how-it-works-rocket svg {
    width: 75%;
}
.list.connection-combinations > .table .table-row .table-cell {
    padding-top: 15px !important;
    padding-bottom: 15px !important;
}
.list.connection-combinations > .table .table-row > .table-cell:nth-child(1),
.list.connection-combinations > .table .table-row > .table-cell:nth-child(3) {
    width: 45%;
}
.list.connection-combinations > .table .table-row > .table-cell:nth-child(2) {
    width: 10%;
    text-align: center;
    padding-left: 0 !important;
    padding-right: 0 !important;
}
.legal {
    padding: 30px;
    border-radius: 3px;
    background-color: #fff;
}
.legal b {
    color: black;
    font-weight: 600;
    font-style: italic;
}
.legal p,
.legal li {
    color: #7a90ab;
    font-size: 16px;
    line-height: 32px;
    text-align: justify;
}
.legal > ol {
    padding: 0;
    list-style: none;
    counter-reset: section;
}
.legal > ol > li:not(:last-child) {
    margin-bottom: 30px;
}
.legal > ol > li h3 {
    color: black;
    display: inline-block;
}
.legal > ol > li > h3:before {
    color: black;
    font-weight: 900;
    padding-right: 10px;
    counter-increment: section;
    content: counter(section) ".";
}
.legal ol li ol {
    padding: 0;
    list-style: none;
    counter-reset: sub-section;
}
.legal ol li ol li:before {
    color: black;
    font-weight: 900;
    padding-right: 10px;
    counter-increment: sub-section;
    content: counter(section) "." counter(sub-section) ".";
}
.legal ol li ol li:not(:last-child) {
    margin-bottom: 16px;
}
.list.all-marketplaces > table tr > td:first-of-type {
    width: 100%;
}
.list.all-sources > table tr > td:first-of-type {
    width: 30%;
}
.list.all-sources > table tr > td:nth-child(2) {
    width: 40%;
}
.list.all-sources > table tr > td:nth-child(3),
.list.all-sources > table tr > td:nth-child(4) {
    width: 15%;
}
.rule_combined_field {
    padding-bottom: 5px;
    margin-bottom: 5px;
    border-bottom: 1px solid #eef3f9;
}
.block {
    display: block;
}
.country-flag-image {
    width: 18px !important;
    height: 18px !important;
}
.vscomp-wrapper.multiple .vscomp-option.selected .checkbox-icon::after {
    border-color: #18ad76 !important;
    border-top-color: rgba(0,0,0,0) !important;
    border-left-color: rgba(0,0,0,0) !important;
}
.product-images-slider {
    max-height: 300px !important;
    overflow-y: hidden !important;
}
.cookie-consent {
    z-index: 1;
    background-color: #f6f8fb;
    box-shadow: 0 2px 16px rgba(74, 86, 105, 0.15);
}
.cookie-consent > * > * {
    padding: 15px 0;
}
.cookie-consent .button {
    transition:  none !important;
}
.popup {
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    height: 100vh;
    position: fixed;
    background-color: rgba(0, 0, 0, .75);
}
.popup:not(.visible) {
    display: none !important;
}
.popup > * {
    margin: 0 auto;
    overflow-y: auto;
    max-width: 440px;
    min-height: 300px;
    border-radius: 3px;
    background-color: #fff;
    width: calc(100vw - 40px);
    max-height: calc(100vh - 40px);
    transform-origin: top center;
}
.popup.visible > * {
    animation: lightbox .2s;
}
.popup i.close:hover {
    color: #0051ff;
}
@keyframes stroke {
    to {
        stroke-dashoffset:0
    }
}
@keyframes fill {
    to {
        -webkit-box-shadow: inset 0 0 0 30px #0051ff;
        box-shadow:inset 0 0 0 30px #0051ff
    }
}
@keyframes flash_message_fade_out {
    0% {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
    100% {
        opacity: 0;
        visibility: hidden;
        transform: translateY(16px);
    }
}
@keyframes spinner_rotation {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(359deg);
    }
}
@keyframes svgScale {
    0% {
        transform: scale(0);
        opacity:0
    }
    100% {
        opacity: 1;
        transform:scale(1)
    }
}
@media only screen and (max-width: 415px) {
    .success-public.absolute:not(.keep-big) {
        position:fixed
    }
    .success-public.successHolder:not(.keep-big) {
        background-color:#0051ff
    }
    .success-public.successHolder.keep-big {
        background-color:#fff;
    }
    .success-public.successHolder:not(.keep-big) > .light {
        color:hsla(0, 0%, 100%, .6) !important
    }
    .success-public.successHolder:not(.keep-big) > h2 {
        color:#fff !important
    }
    .success-public .checkmark__circle {
        stroke:#fff
    }
    .success-public .checkmark {
        stroke: #0051ff;
        -webkit-box-shadow: inset 0 0 0 #fff;
        box-shadow:inset 0 0 0 #fff
    }
    .banner .base-icon {
        max-width: 25px !important;
        max-height: 25px !important;
    }
    @-webkit-keyframes fill {
        to {
            -webkit-box-shadow: inset 0 0 0 30px #fff;
            box-shadow:inset 0 0 0 30px #fff
        }
    }
    @keyframes fill {
        to {
            -webkit-box-shadow: inset 0 0 0 30px #fff;
            box-shadow:inset 0 0 0 30px #fff
        }
    }
}
@media only screen and (min-width: 415px) {
    .success-public.absolute:not(.keep-big) {
        position:absolute
    }
    .success-public.successHolder {
        background-color:#fff
    }
    .success-public .checkmark__circle {
        stroke:#0051ff
    }
    .success-public .checkmark {
        stroke: #fff;
        -webkit-box-shadow: inset 0 0 0 #0051ff;
        box-shadow:inset 0 0 0 #0051ff
    }
    @-webkit-keyframes fill {
        to {
            -webkit-box-shadow: inset 0 0 0 30px #0051ff;
            box-shadow:inset 0 0 0 30px #0051ff
        }
    }
    @keyframes fill {
        to {
            -webkit-box-shadow: inset 0 0 0 30px #0051ff;
            box-shadow:inset 0 0 0 30px #0051ff
        }
    }
}
@media only screen and (max-width: 425px) {
    .list.invoices > table > thead> tr > *:nth-child(1) *:not(.micro-mobile) {
        display: none;
    }
    .list.invoices > table > thead> tr > *:nth-child(6) {
        display: none !important;
    }
    .list.invoices > table > thead> tr > *:nth-child(1),
    .list.invoices > table > tbody> tr > *:nth-child(1),
    .list.invoices > table > tbody> tr > *:nth-child(6) {
        display: flex !important;
        flex-direction: column !important;
    }
    .list.invoices > table > tbody> tr > *:nth-child(1) {
        padding-bottom: 0 !important;
        border-bottom: none !important;
    }
}
@media only screen and (min-width: 426px) {
    .list.invoices > table > thead> tr > *:nth-child(1) .micro-mobile {
        display: none !important;
    }
}
@media only screen and (min-width: 426px) and (max-width: 720px) {
    .list.invoices > table > thead> tr > *:nth-child(1),
    .list.invoices > table > tbody> tr > *:nth-child(1) {
        min-width: calc(100% - 200px);
    }
    .list.invoices > table > thead> tr > *:nth-child(6),
    .list.invoices > table > tbody> tr > *:nth-child(6) {
        min-width: 200px;
    }
}
@media only screen and (max-width: 720px) {
    .no-mobile {
        display:none !important;
    }
    .mobile-flex-justify-center {
        justify-content: center;
    }
    .vscomp-ele,
    .content-block select,
    .vscomp-ele .vscomp-toggle-button,
    select.styled:not(.initial-width),
    .content-block input:not(.search):not(.input_searchable):not([name='page-selector']) {
        width: 100% !important;
        max-width: 100% !important;
    }
    .mobile-flex-column {
        flex-direction: column;
    }
    .mobile-flex-column-reverse {
        flex-direction: column-reverse;
    }
    .center-mobile {
        text-align: center !important;
    }
    .content-block .iti {
        width: 100%;
    }
    .content-block {
        padding: 20px;
    }
    .page-width > .list.content-block {
        padding: 20px 0 !important;
    }
    .content-block-wrapper {
        display: block;
    }
    .content-block-wrapper .content-block:not(:last-child) {
        margin-bottom: 30px;
    }
    .conditions .condition-group-row .condition-group-container .condition .input-placeholder {
        width: 100%;
    }
    .conditions .condition input {
        width: 100%;
    }
    .conditions .condition:not(:first-child) {
        margin-top: 30px;
        padding-top: 30px;
        border-top: 1px solid #eef3f9;
    }
    .flex-end-mobile {
        justify-content: flex-end;
    }
    .mobile-center {
        text-align: center;
    }
    .text-right-mobile {
        text-align: right !important;
    }
    .text-left-mobile {
        text-align: left !important;
    }
    .banner.omni-channel img {
        margin: 0 auto;
        max-width: 80vw;
        max-height: 400px;
    }
    .source-page-icon,
    .marketplace-page-icon {
        max-width: 80vw;
        max-height: 150px;
    }
    .list.connection-combinations .rotated {
        width: 24px !important;
        transform: rotate(90deg);
        margin: 0 auto !important;
    }
    .popup > * {
        max-width: 440px;
        max-height: 100vh;
        width: 100vw;
        border-radius: 0;
        min-height:auto;
    }
}
@media only screen and (min-width: 721px) {
    .mobile {
        display:none !important
    }
    .no-mobile-flex-justify-center {
        justify-content: center;
    }
    .middle-no-mobile {
        align-items: center;
    }
    .grow-no-mobile {
        flex-grow: 1;
        flex-basis: 0;
    }
    .center-no-mobile {
        text-align: center !important;
    }
    .content-block {
        padding: 30px;
    }
    .content-block-wrapper {
        display: flex;
    }
    .content-block-wrapper .content-block:not(:last-child) {
        margin-right: 30px;
    }
    .content-block form .button,
    .content-block .button.button-link,
    .content-block form .double-input,
    .content-block form .searchable_input,
    .content-block form .searchable_input_results,
    .content-block form *:not(.double-input) > input,
    .content-block form *:not(.double-input) > select,
    .content-block form *:not(.double-input) > .vscomp-ele,
    .content-block form *:not(.double-input) > .input-placeholder {
        width: 350px !important;
        max-width: 350px !important;
    }
    .content-block form *:not(.double-input) > input[name=page-selector] {
        width: initial !important;
        max-width: initial !important;
    }
    .content-block form *:not(.double-input) > input[data-type="rule_results"] {
        width: 100% !important;
        max-width: initial !important;
    }
    .content-block *:not(.double-input) > .input-placeholder {
        text-align: right;
    }
    .conditions .condition .rules-custom-field-shown.rules-custom-field-placeholder select,
    .conditions .condition .rules-custom-field-shown.rules-custom-field-placeholder .vscomp-ele,
    .conditions .condition .rules-custom-field-shown.rules-custom-field-placeholder .input {
        max-width: 50% !important;
    }
    .rules-custom-field-placeholder,
    .conditions .condition-group-row *:not(.rules-custom-field-placeholder) .condition-group-container .condition select,
    .conditions .condition-group-row *:not(.rules-custom-field-placeholder) .condition-group-container .condition .vscomp-ele {
        width: 100% !important;
        max-width: 33.3333% !important;
    }
    .conditions .condition-group-row .condition-group-container .condition input,
    .conditions .condition-group-row .condition-group-container .condition .input-placeholder {
        width: 100% !important;
    }
    .text-left-no-mobile {
        text-align: left !important;
    }
    .text-right-no-mobile {
        text-align: right !important;
    }
    .inverse-no-mobile-1 {
        order: 1;
        -webkit-order: 1;
    }
    .inverse-no-mobile-2 {
        order: 2;
        -webkit-order: 2;
    }
    .banner.omni-channel img {
        max-width: 30vw;
    }
    .source-page-icon,
    .marketplace-page-icon {
        max-width: 400px;
    }
    .list.invoices > table > thead> tr > *:nth-child(1),
    .list.invoices > table > tbody> tr > *:nth-child(1) {
        width: 30%;
    }
    .list.invoices > table > thead> tr > *:nth-child(2),
    .list.invoices > table > tbody> tr > *:nth-child(2) {
        width: 25%;
    }
    .list.invoices > table > thead> tr > *:nth-child(3),
    .list.invoices > table > tbody> tr > *:nth-child(3),
    .list.invoices > table > thead> tr > *:nth-child(4),
    .list.invoices > table > tbody> tr > *:nth-child(4),
    .list.invoices > table > thead> tr > *:nth-child(5),
    .list.invoices > table > tbody> tr > *:nth-child(5) {
        width: 15%;
    }
    .list.order-history > table tr > *:nth-child(1) {
        width: 260px !important;
    }
    .list.connection-combinations .material-icons {
        scale: 1.5;
        font-size: 14px !important;
    }
}
@media only screen and (min-width: 1000px) {
    .header .ctas {
        display: none !important;
    }
    .header .flex > ul > li.dropdown > ul {
        top: 75px;
        position: absolute;
        box-shadow: 0 1.5rem 4rem rgba(22,28,45,0.15);
        background-color: #fff;
        visibility: hidden;
        opacity: 0;
        z-index: 101;
        left: 50%;
        transform: translate3d(-50%, 10px, 0);
        transition: all 0.2s ease-in-out;
        transition-property: opacity,visibility,transform;
        transform-origin: top center;
        padding: 0;
        width: 320px;
        border-radius: 8px;
        overflow: hidden;
    }
    .header .flex > ul > li.dropdown:hover > ul {
        opacity: 1;
        visibility: visible;
        transform: translate3d(-50%, -10px, 0);
    }
    .header .flex > ul > li.dropdown > ul > li a {
        position: relative;
        display: block;
        border-bottom: 1px solid #eaf1f9;
        margin: 0 0;
        padding: 20px 30px 15px 30px;
        text-decoration: none;
    }
    .header .flex > ul > li.dropdown > ul > li a > div:first-of-type {
        position: absolute;
        right: 25px;
        height: 24px;
        width: 24px;
        color: #7a90ab;
        top: calc(50% - 12px);
    }
    .header .flex > ul > li.dropdown > ul > li a > div:first-of-type > img {
        width: 100% !important;
        height: 100% !important;
    }
    .header .flex > ul > li.dropdown > ul > li a > span {
        text-transform: uppercase;
        font-size: 14px;
        display: block;
        text-decoration: none;
        line-height: 16px;
        height: 16px;
    }
    .header .flex > ul > li.dropdown > ul > li a > small {
        font-size: 14px;
        color: #7a90ab;
        text-decoration: none;
        line-height: 20px;
        height: 20px;
    }
    .header .flex > ul > li.dropdown > ul > li a:hover {
        background-color: #f9fcff;
    }
    .header .flex > ul > li.dropdown > ul > li a.active > span,
    .header .flex > ul > li.dropdown > ul > li a.active > div,
    .header .flex > ul > li.dropdown > ul > li a:hover > span,
    .header .flex > ul > li.dropdown > ul > li a:hover > div {
        color: #1956d8;
    }
}
@media only screen and (max-width: 999px) {
    .header .cta {
        display: none !important;
    }
    .header .flex > ul {
        visibility: hidden;
        position: fixed;
        left: 0;
        right: 0;
        top: 80px;
        bottom: 0;
        max-height: calc(100vh - 80px);
        background-color: #fff;
        padding: 0 20px 20px 20px;
        box-shadow: 0 9px 9px rgba(74,86,105,0.08);
        transition: opacity 0.1s;
        opacity: 0;
        padding-top: 20px;
    }
    .header .flex > ul {
        display: block;
        visibility: hidden;
        position: fixed;
        left: 0;
        right: 0;
        top: 80px;
        bottom: 0;
        max-height: calc(100vh - 80px);
        background-color: #fff;
        padding: 0 20px 20px 20px;
        box-shadow: 0 9px 9px rgba(74,86,105,0.08);
        transition: opacity 0.1s;
        opacity: 0;
        padding-top: 20px;
    }
    .header .flex > ul.visible {
        visibility: visible !important;
        opacity: 1;
        transition: opacity 0.1s;
        overflow-y: scroll;
        padding-bottom: 100px;
    }
    .header .flex > ul > li:not(:last-child) {
        max-width: 560px;
    }
    .header .flex > ul > li {
        display: block;
        position: relative;
        margin-left: auto;
        margin-right: auto;
    }
    .header ul > li > a {
        min-height: 88px !important;
        line-height: 28px !important;
        padding: 16px 0 !important;
        position: relative !important;
        display: block !important;
        text-decoration: none;
        font-size: 16px !important;
        color: #32455d !important;
        border-bottom: 1px solid #edf6ff !important;
        text-shadow: none !important;
    }
    .header ul > li > a > small {
        display: block;
        color: #b5c2d2;
        font-size: 13.5px;
    }
    .header .flex > ul > li:last-child {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        background-color: #fff;
        padding: 0 20px 20px 20px;
        z-index: 2;
    }
    .header .flex > ul > li:last-child > .flex,
    .header .flex > ul > li:last-child > .sep {
        max-width: 560px;
        margin-left: auto;
        margin-right: auto;
    }
    .header .flex > ul > li.dropdown > a {
        display: none !important;
    }
    .header ul > li > a:hover,
    .header ul > li > a:hover > div,
    .header ul > li > a.active,
    .header ul > li > a.active > div {
        color: #1956d8 !important;
    }
    .header ul > li > a > div:first-of-type {
        color: #7a90ab;
        width: 24px;
        height: 24px;
        position: absolute;
        right: 0;
        top: calc(50% - 12px);
    }
    .header ul > li > a > div:first-of-type > img {
        width: 100% !important;
        height: 100% !important;
    }
}