@import url(//fonts.googleapis.com/css?family=Open+Sans:300italic,400italic,600italic,700italic,800italic,400,300,600,700,800&subset=latin,cyrillic-ext,greek-ext,vietnamese);
@import url(//fonts.googleapis.com/css?family=Titillium+Web:300,400,600,700);
@import url('https://fonts.googleapis.com/css?family=Nunito:300,400,600,700');

@-webkit-keyframes ball-scale-multiple {
    0% {
        -webkit-transform: scale(0);
        transform: scale(0);
        opacity: 0;
    }

    5% {
        opacity: 1;
    }

    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 0;
    }
}

@keyframes ball-scale-multiple {
    0% {
        -webkit-transform: scale(0);
        transform: scale(0);
        opacity: 0;
    }

    5% {
        opacity: 1;
    }

    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 0;
    }
}

.loader {
    position: absolute;
    left: 0px;
    right: 0px;
    top: 0px;
    bottom: 0px;
    margin: auto;
    width: 50px;
    height: 50px;
    z-index: 99;
}

#sub-content .loader {
    top: 265px;
    width: 100%;
    height: 100%;
    background: white;
}

.ball-scale-multiple {
    position: absolute;
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
    left: 0px;
    right: 0px;
    margin: auto;
    top: 0px;
    bottom: 0px;
    width: 50px;
    height: 50px;
}

.ball-scale-multiple>div:nth-child(2) {
    -webkit-animation-delay: -0.4s;
    animation-delay: -0.4s;
}

.ball-scale-multiple>div:nth-child(3) {
    -webkit-animation-delay: -0.2s;
    animation-delay: -0.2s;
}

.ball-scale-multiple>div {
    background-color: #746b878c;
    width: 15px;
    height: 15px;
    border-radius: 100%;
    margin: 2px;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    position: absolute;
    left: -30px;
    top: 0px;
    opacity: 0;
    margin: 0;
    width: 60px;
    height: 60px;
    -webkit-animation: ball-scale-multiple 1s 0s linear infinite;
    animation: ball-scale-multiple 1s 0s linear infinite;
}


html {
    overflow: hidden;
}

html,
body {
    height: 100%;
    margin: 0;
    padding: 0;
    font-family: 'Titillium Web', 'Open Sans', sans-serif;
    color: #666666;
    line-height: 18px;
    text-rendering: optimizeLegibility;
    background: white;
    overflow: hidden;
}

input[type="text"],
input[type="password"],
input[type="number"] {
    font-size: 16px;
    padding: 9px 15px;
    border-radius: 5px;
    border: 1px solid #4C4C4C;
    vertical-align: middle;
}

body {
    position: absolute;
    width: 100%;
}

*:not(.ag-theme-alpine [class^='ag-'])::-webkit-scrollbar {
    display: none;
}

.ag-theme-alpine [class^='ag-']::-webkit-scrollbar {
    display: block !important;
    -webkit-appearance: none;
    width: 2px;
    height: 8px;
}

.ag-theme-alpine [class^='ag-']::-webkit-scrollbar-thumb {
    border-radius: 0px;
    background-color: rgb(120, 112, 139);
    -webkit-box-shadow: 0 0 1px rgba(255, 255, 255, .5);
}

input[disabled] {
    background: whitesmoke !important;
    border: none !important;
}

label {
    font-size: 16px;
    display: inline-block;
    vertical-align: middle;
    margin: 0px;
    margin-left: 10px;
    font-weight: normal;
    color: #565656;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
    margin-top: 0;
}

.no-padding {
    padding: 0px !important;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.page-header {
    vertical-align: middle;
    margin: 15px 0;
    padding: 0;
    border-bottom: none;
}

.page-header h1 {
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    font-size: 30px;
    color: #848484;
    display: inline-block;
    margin-bottom: 15px;
}

.breadcrumb {
    display: inline-block;
    background: none;
    margin: 0;
    padding: 0 10px;
}

.breadcrumb li a {
    color: #999999;
    font-size: 11px;
    padding: 0px;
    margin: 0px;
}

.breadcrumb li:last-child a {
    color: #1e91cf;
}

.breadcrumb li a:hover {
    text-decoration: none;
}

.breadcrumb li+li:before {
    content: "/";
    font-family: FontAwesome;
    color: #BBBBBB;
    padding: 0 5px;
}

a:hover,
a:focus {
    text-decoration: none;
}

/* fix for bootstrap hidden and visible */
span.hidden-xs,
span.hidden-sm,
span.hidden-md,
span.hidden-lg {
    display: inline;
}

#container {
    height: 100vh;
    width: 100%;
    position: relative;
    overflow: hidden;
}

#container>#content {
    position: relative;
    width: 85%;
    display: inline-block;
    vertical-align: top;
}

.container-fluid {
    padding-left: 20px;
    padding-right: 20px;
}

#header {
    min-height: 0px;
    background: #FFFFFF;
    border-bottom: 1px solid #E5E5E5;
    margin: 0;
    height: 0px;
    padding: 0;
    display: none;
}

#header .nav>li {
    float: left;
}

#header .nav>li li {
    min-width: 200px;
}

#header .navbar-header {
    min-height: 0px;
    padding: 0;
}

/* Mobile */
@media (max-width: 767px) {
    #header .navbar-header {
        margin-right: 0px;
        margin-left: 0px;
        float: left;
    }
}

#header #button-menu+.navbar-brand {
    padding: 10px 10px 10px 10px;
    margin-right: 10px;
    height: auto;
}

#header .nav>li>a {
    padding: 3px 16px;
    line-height: 38px;
    cursor: pointer;
    color: #6D6D6D;
    border-left: 1px solid #E1E1E1;
}

#header .nav>li>a>.label {
    text-shadow: none;
    padding: 1px 4px;
    position: absolute;
    top: 8px;
    left: 6px;
}

#button-menu {
    padding: 10px 17px 9px 17px;
    line-height: 25px;
    float: left;
    display: inline-block;
    cursor: pointer;
    color: #6D6D6D;
    border-right: 1px solid #E1E1E1;
}

.menu-arrow {
    width: 0;
    height: 0;
    position: absolute;
    left: 41%;
    top: -5px;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-bottom: 5px solid #616060;
}

#profile {
    /* display: none; */
}

#column-left.active #profile {
    display: block;
    padding: 10px 15px 10px 15px;
    overflow: auto;
    border-bottom: 1px solid #585858;
}

#profile div {
    float: left;
    color: #C4C4C4;
}

#profile div+div {
    margin-left: 15px;
}

#profile h4 {
    margin-top: 6px;
    font-family: 'Open Sans', sans-serif;
    font-size: 15px;
    font-weight: 400;
    color: #FFF;
    margin-bottom: 0;
}

#column-left {
    background-color: #F2F2F2;
    height: 100vh;
    width: 15%;
    display: inline-block;
    margin-right: -4px;
    text-align: center;
    overflow: visible;
}

.popup-options-container .flow-link {
    width: auto;
    right: 0px;
    left: auto;
    top: 40px;
    padding-right: 42px;
    visibility: hidden;
    opacity: 0;
    transition: all 0.4s;
}

.popup-options-container .flow-link.animate-container {
    top: 48px;
    opacity: 1;
    visibility: visible;
}

.popup-options-container {
    border-bottom: 1px solid #f2f2f2;
    position: absolute;
    width: 100%;
    z-index: 14;
}

.experience-tab-container {
    padding-top: 130px;
    height: 100vh;
    overflow: auto;
    position: relative;
}

#column-left.active {
    width: 235px;
    display: block;
}

#content {
    /* transition: all 0.3s; */
}


#column-left+#content+#footer {
    margin-left: 50px;
}


/* Menu */

div#submenu {
    position: absolute;
    right: -150px;
    z-index: 9;
    bottom: -15px;
    transition: right 0.3s, opacity 0.3s, visibility 0.3s;
    visibility: hidden;
    opacity: 0;
}

li#help:hover #submenu {
    right: -160px;
    opacity: 1;
    visibility: visible;
    border-left: 20px solid transparent;
}

div#submenu ul li a {
    font-size: 15px;
    color: black !important;
    padding: 10px 20px;
}

div#submenu>ul {
    width: 150px !important;
}

#menu,
#menu ul,
#menu li {
    margin: 0;
    list-style: none;
}

#menu {
    margin-bottom: 0px;
    padding: 0px;
    text-align: left;
    display: block;
    padding-left: 0px;
    padding-top: 25px;
    height: auto;
    overflow: visible;
}

#menu>li#menu-title {
    font-size: 14px;
    margin: 20px 0px 5px;
    font-weight: 600;
    color: #5b5b5b;
    text-transform: uppercase;
}

#menu>li#menu-title:first-child {
    margin-top: 0px;
}

#menu>li {
    position: relative;
    display: block;
    padding: 0px 20px;
}

#menu li a {
    text-decoration: none;
    display: block;
    padding: 0px;
    cursor: pointer;
}

#menu li a i {
    font-size: 24.48px;
}

#menu>li>a {
    opacity: 1;
    color: black;
    font-size: 15px;
    padding: 5px;
    margin: 1px 0px;
    display: inline-block;
    -wekit-transition: all 0.4s;
    transition: all 0.4s;
    margin-right: 0px;
    font-weight: 600;
    width: 100%;
    border-radius: 5px;
}

#menu>li>a:hover {
    color: rgb(53, 53, 53);
}

#menu>li>a:hover {
    opacity: 1;
}

#menu>li>a>img {
    width: 17.28px;
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
}

#menu>li>a>svg {
    display: inline-block;
    width: 18px;
    vertical-align: middle;
}

#menu>li>a>span {
    margin-left: 11px;
    display: inline-block;
    vertical-align: middle;
    white-space: nowrap;
    width: calc(100% - 30px);
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.5;
}

#menu li li a {
    color: #ffffff;
}

#menu li li a:hover {
    color: #FFFFFF;
    background-color: none;
}

#menu li li a:before {
    font-size: 14px;
    font-family: FontAwesome;
    margin-left: 10px;
    margin-right: 10px;
    transition: margin ease 0.5s;
}

#menu li li a:hover:before {
    margin-right: 20px;
}

#menu>li.active>a {
    color: rgb(53, 53, 53);
    background: white;
}

#menu>li.has-child.active::before {
    content: "";
    position: absolute;
    left: 0px;
    width: 4px;
    height: 4px;
    background: white;
    border-radius: 100%;
    bottom: -10px;
    left: 8px;
}

#menu li.active li a {
    color: #6b6b6b;
}

/*#menu li li.active>a:last-child { color: #FFFFFF; } */
#menu li li.active a:last-child:before {
    margin-left: 20px;
    margin-right: 10px;
}

.dropdown-menu-container {
    position: absolute;
    visibility: hidden;
    opacity: 0;
    transition: all 0.3s;
    top: 40px;
    right: 0px;
}

#menu>li ul {
    /* position: absolute; */
    /* left: 47.52px; */
    /* bottom: 0px; */
    width: 210px;
    box-shadow: 0px 0px 22px -4px #ababab7d;
    background-color: white;
    border-radius: 9px;
    padding: 0px;
    text-align: left;
    padding: 14.4px 0px;
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
}

#menu li ul {}

#menu>li.active .dropdown-menu-container {
    visibility: visible;
    opacity: 1;
    top: 51px;
    left: auto;
    bottom: auto;
    right: 0px;
}

#menu li li a.parent:after,
#column-left.active #menu>li a.parent:after {
    font-family: FontAwesome;
    content: "\f105";
    float: right;
    margin-right: 8px;
}

#menu li li.open>a.parent:after,
#column-left.active #menu>li.open>a.parent:after {
    font-family: FontAwesome;
    content: "\f107";
    float: right;
    margin-right: 8px;
}

#menu li ul a {
    padding-left: 0px;
}

#menu li li ul a {
    padding-left: 40px;
}

#menu li li li ul a {
    padding-left: 60px;
}

#menu li li li li ul a {
    padding-left: 80px;
}

#menu>li.active:not(#getstarted)>a:not(.disabled) {
    opacity: 1;
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
}

/* Menu Active */
/* Desktop */
@media (min-width: 768px) {
    #column-left.active {
        overflow: auto;
    }

    #column-left.active+#content {
        margin-left: 235px;
    }

    #column-left.active+#content+#footer {
        margin-left: 235px;
    }
}

/* Mobile */
@media (max-width: 767px) {
    #column-left.active+#content {
        position: relative;
        left: 235px;
    }

    #column-left.active+#content+#footer {
        position: relative;
        left: 235px;
    }
}

#column-left.active {
    width: 235px;
}

#column-left.active #menu li i {
    font-size: 14px;
}

#column-left.active #menu>li>a>span {
    display: inline;
}

#column-left.active #menu>li>ul {
    position: relative;
    left: auto;
    top: auto;
    width: auto;
    visibility: visible;
}

/* footer */
#footer {
    height: 100px;
    text-align: center;
}

/* Navs */
.nav>li.disabled>a {
    color: #999;
}

.nav>li.disabled>a:hover,
.nav>li.disabled>a:focus {
    color: #999;
}

/* Tabs */
.nav-tabs>li>a {
    color: #666;
    border-radius: 2px 2px 0 0;
}

.nav-tabs>li>a:hover {
    border-color: #eee #eee #ddd;
}

.nav-tabs {
    margin-bottom: 25px;
}

.nav-tabs>li.active>a,
.nav-tabs>li.active>a:hover,
.nav-tabs>li.active>a:focus {
    font-weight: bold;
    color: #333;
}

.form-control:hover {
    -webkit-box-shadow: inset 0 0px 11px -2px rgba(0, 0, 0, 0.27);
    box-shadow: inset 0 0px 11px -2px rgba(0, 0, 0, 0.27);
}

div.required .control-label:not(span):before,
td.required:before {
    content: '* ';
    color: #F00;
    font-weight: bold;
}

.table thead td span[data-toggle="tooltip"]:after,
label.control-label span:after {
    font-family: FontAwesome;
    color: #1E91CF;
    content: "\f059";
    margin-left: 4px;
}

fieldset legend {
    padding-bottom: 5px;
}

input[type="radio"],
input[type="checkbox"] {
    margin: 2px 0 0;
}

.radio,
.checkbox {
    min-height: 18px;
}

input[type="radio"],
.radio input[type="radio"],
.radio-inline input[type="radio"],
input[type="checkbox"],
.checkbox input[type="checkbox"],
.checkbox-inline input[type="checkbox"] {
    position: relative;
    width: 13px;
    width: 16px \0;
    height: 13px;
    height: 16px \0;
    -webkit-appearance: none;
    background: white;
    border: 1px solid #746B87;
    border: 1px solid transparent \0;
    border-radius: 1px;
}

input[type="radio"]:focus,
.radio input[type="radio"]:focus,
.radio-inline input[type="radio"]:focus,
input[type="checkbox"]:focus,
.checkbox input[type="checkbox"]:focus,
.checkbox-inline input[type="checkbox"]:focus {
    border-color: #4d90fe;
    outline: 0;
}

input[type="radio"]:active,
.radio input[type="radio"]:active,
.radio-inline input[type="radio"]:active,
input[type="checkbox"]:active,
.checkbox input[type="checkbox"]:active,
.checkbox-inline input[type="checkbox"]:active {
    background-color: #ffffff;
    border-color: #08262d;
}

input[type="radio"]:checked,
.radio input[type="radio"]:checked,
.radio-inline input[type="radio"]:checked,
input[type="checkbox"]:checked,
.checkbox input[type="checkbox"]:checked,
.checkbox-inline input[type="checkbox"]:checked {
    background: #746B87;
    border: 1px solid #746B87 !important;
}

input[type="checkbox"] {
    border: 1px solid #07272e !important;
    box-shadow: none !important;
}

input[type="radio"],
.radio input[type="radio"],
.radio-inline input[type="radio"] {
    width: 18px;
    width: 18px \0;
    height: 18px;
    height: 18px \0;
    border-radius: 1em;
    margin: 0px;
    vertical-align: middle;
}

input[type="radio"]:checked::after,
.radio input[type="radio"]:checked::after,
.radio-inline input[type="radio"]:checked::after {
    position: relative;
    top: 3px;
    left: 3px;
    display: block;
    width: 7px;
    height: 7px;
    content: '';
    background: none;
    border-radius: 1em;
}

input[type="checkbox"]:hover,
.checkbox input[type="checkbox"]:hover,
.checkbox-inline input[type="checkbox"]:hover {
    border-color: #c6c6c6;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .1);
    -webkit-box-shadow: none \9;
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, .1);
    box-shadow: none \9;
}

input[type="checkbox"]:checked::after,
.checkbox input[type="checkbox"]:checked::after,
.checkbox-inline input[type="checkbox"]:checked::after {
    position: relative;
    top: -5px;
    left: 1px;
    width: 9px;
    display: block;
    content: url('https://d2840tvqeil82l.cloudfront.net/product/images/checkmarkBold.svg');
}

.table thead td {
    font-weight: bold;
}

.table thead>tr>td,
.table tbody>tr>td {
    vertical-align: middle;
}

.table a.asc:after {
    content: " \f107";
    font-family: FontAwesome;
    font-size: 14px;
}

.table a.desc:after {
    content: " \f106";
    font-family: FontAwesome;
    font-size: 14px;
}

.pagination {
    margin: 0;
}

/* Panels */
.panel {
    border-radius: 0px;
}

.panel .panel-heading {
    position: relative;
}

.panel-heading h3 i {
    margin-right: 8px;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.panel-heading i {
    font-size: 16px;
    font-weight: 500;
}

.panel-heading h3 {
    font-size: 16px;
    font-weight: 500;
    display: inline-block;
}

/* Primary Panel */
.panel-primary {
    border: 1px solid #c3e4f6;
    border-top: 2px solid #5cb7e7;
}

.panel-primary .panel-heading {
    color: #1e91cf;
    border-color: #96d0f0;
    background: white;
}

/* Default Panel */
.panel-default {
    border: 1px solid #e8e8e8;
    border-top: 2px solid #bfbfbf;
}

.panel-default .panel-heading {
    color: #595959;
    border-color: #e8e8e8;
    background: #fcfcfc;
}

.img-thumbnail i {
    color: #FFFFFF;
    background-color: #EEEEEE;
    text-align: center;
    vertical-align: middle;
    width: 100px;
    height: 100px;
    padding-top: 20px;
    vertical-align: middle;
    display: inline-block;
}

.img-thumbnail.list i {
    width: 40px;
    height: 40px;
    padding-top: 10px;
}

/* Tiles */
.tile {
    margin-bottom: 15px;
    border-radius: 3px;
    background-color: #279FE0;
    color: #FFFFFF;
    transition: all 1s;
}

.tile:hover {
    opacity: 0.95;
}

.tile a {
    color: #FFFFFF;
}

.tile-heading {
    padding: 5px 8px;
    text-transform: uppercase;
    background-color: #1E91CF;
    color: #FFF;
}

.tile .tile-heading .pull-right {
    transition: all 1s;
    opacity: 0.7;
}

.tile:hover .tile-heading .pull-right {
    opacity: 1;
}

.tile-body {
    padding: 15px;
    color: #FFFFFF;
    line-height: 48px;
}

.tile .tile-body i {
    font-size: 50px;
    opacity: 0.3;
    transition: all 1s;
}

.tile:hover .tile-body i {
    color: #FFFFFF;
    opacity: 1;
}

.tile .tile-body h2 {
    font-size: 42px;
}

.tile-footer {
    padding: 5px 8px;
    background-color: #3DA9E3;
}

#column-left.active #stats {
    display: block;
}

#stats {
    display: none;
    border-radius: 2px;
    color: #666666;
    background: #2b2b2b;
    margin: 15px 20px;
    padding: 5px 0;
}

#stats ul,
#stats li {
    padding: 0;
    margin: 0;
    list-style: none;
}

#stats li {
    font-size: 11px;
    color: #9d9d9d;
    padding: 5px 10px;
    border-bottom: 1px dotted #373737;
}

#stats div:first-child {
    margin-bottom: 4px;
}

#stats .progress {
    height: 3px;
    margin-bottom: 0;
}

.jqvmap-label {
    z-index: 999;
}

/* Menu Fix For System -> Layout -> Banner */
.collapse.in {
    display: block;
    visibility: unset;
}

.collapse {
    display: none;
    visibility: unset;
}

/* Menu Fix For System -> Layout -> Banner */
.content-list {
    height: 100%;
}

.content-header.segments-analytics-data-999 {
    padding: 35px 30px 30px;
    position: relative;
}

.content-header {
    display: inline-block;
    position: absolute;
    width: auto;
    border-radius: 0px;
    padding: 0px 20px 20px;
    margin-bottom: -4px;
    z-index: 2;
    width: 100%;
    background: white;
}

.content-header .form-select {
    display: inline-block;
    margin-right: 15px;
    width: 200px;
}

.content-header>div:not(.segment-edit-container):last-child {
    margin-top: 35px;
}

.content-flows .content-header {
    padding: 35px;
}

.content-header .title {
    display: inline-block;
    font-weight: 600;
    color: black;
    margin: 0px;
    vertical-align: middle;
    margin-right: 4%;
    max-width: 34%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.content-header input#search-checklist, .content-header input#search-experience {
    width: 220px;
    transition: width 0.4s;
}
.content-header input#search-checklist:focus, .content-header input#search-experience:focus {
    width: 350px;
}
.add {
    display: inline-block;
    cursor: pointer;
}

.content-body {
    padding: 0px;
    background: none;
    width: 100%;
    /* height: 100vh; */
}

.filters {
    position: relative;
    top: 0px;
    padding: 11.52px;
}

.filter {
    display: inline-block;
}

.search {
    display: inline-block;
    position: absolute;
    right: 0px;
    top: 0px;
}

.search img {
    width: 21.6px;
    margin-right: 7.2px;
    vertical-align: middle;
}

input.search-box {
    border: none;
    border-bottom: 1px solid gainsboro;
    width: 201.6px;
    padding: 5.76px;
    outline: none;
}

span.tutorials-bookmark {
    position: absolute;
    left: -28.8px;
    top: 0px;
}

.tutorials-list {
    padding: 11.52px 0px;
    position: relative;
}

.setup-widget-tutorials .tutorials-item {
    background: none;
}

.tutorials-item {
    width: 31%;
    display: inline-block;
    position: relative;
    padding: 21.6px;
    border: none;
    border-radius: 5.76px;
    margin-right: 3%;
    margin-bottom: 57.6px;
    background: white;
    border: 1px solid #eaeaea;
    box-shadow: 0px 2px 10px -3px #d8d8d8;
}

span.tutorials-bookmark img {
    width: 18.72px;
}

.tutorials-item .tutorial-title {
    font-size: 17.28px;
    margin-bottom: 10.08px;
    color: black;
}

.tutorials-info {
    font-size: 11.52px;
}

.tutorials-info {
    display: inline-block;
    width: 100%;
}

.tutorials-info span {
    display: inline-block;
    width: 100%;
    color: gray;
}

span.remove.tutorials-remove {
    position: absolute;
    right: 7.2px;
    bottom: 7.2px;
}

span.edit {
    position: absolute;
    bottom: 8.64px;
    right: 38.88px;
    cursor: pointer;
    display: none;
}

span.edit img {
    width: 25.92px;
}

span.remove.tutorials-remove img {
    width: 15.84px;
}

.col-md-3.bg {
    display: inline-block;
    height: 790px;
    background: #2394ab;
    padding: 0px;
}

.in-tutorials span.arrange img {
    width: 14.4px;
}

.in-tutorial {
    padding: 14.4px;
    position: relative;
}

.in-tutorials {
    padding-top: 72px;
}

.in-tutorial .arrange {
    vertical-align: text-bottom;
    line-height: 0;
    display: inline-block;
}

.in-tutorial .tutorial-title {
    color: white;
    display: inline-block;
    vertical-align: top;
    font-size: 15.84px;
    margin-left: 7.2px;
}

span.remove {
    display: none;
    cursor: pointer;
}

.tutorials-item:hover .remove,
.in-tutorial:hover .remove,
.tutorials-item:hover .actions,
.tutorials-item:hover .edit {
    display: block;
}

.in-tutorial span.remove.tutorials-remove {
    right: 14.4px;
    top: 14.4px;
}

.tutorials-item.no-margin {
    margin-right: 0px;
}

.actions img {
    width: 12px;
    vertical-align: middle;
    display: inline-block;
}

.actions>div {
    display: inline-block;
    cursor: pointer;
}

.actions {
    margin-top: 28.8px;
    display: none;
    position: absolute;
    bottom: 7.2px;
}

.actions>div>span {
    display: inline-block;
    margin-left: 5.76px;
    color: #2394ab;
    vertical-align: middle;
    line-height: 1;
}

.bg-dark {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    background: white;
    height: 100vh;
    text-align: center;
    display: none;
    z-index: 13;
}

.bg-dark.white-bg {
    background: #ffffff6b;
}

.userpilot.up-main-container .bg-dark {
    position: fixed;
}

.add-new-popup {
    display: inline-block;
    background: white;
    border-radius: 4.32px;
    text-align: left;
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
    position: relative;
    overflow: auto;
    max-height: 90%;
    width: 50%;
    padding: 1.5%;
    text-align: center;
    margin-top: 790px;
}

.add-new-popup:not(.edit-popup) input.input.input-url {
    width: 100%;
    padding-bottom: 20px;
    margin-bottom: 0px;
    text-align: center;
    font-size: 25px;
    border: none;
}

.add-new-popup.edit-popup.full-screen {
    text-align: left;
    /* background: #f0f4f7; */
    border-radius: 0px;
}

.add-new-popup.full-screen {
    margin-top: 0px !important;
    height: 100%;
    width: 100%;
    max-height: none;
    padding: 1% 9%;
    font-size: 16px;
}

.title.medium {
    font-size: 17.28px;
}

.add-new-popup .title {
    margin-top: 8.64px;
    font-weight: bold;
    font-size: 15.84px;
    display: inline-block;
    vertical-align: middle;
    color: #092930;
}

input.input,
.input-page-structure,
.input-regex {}

.btn {
    padding: 10px 15px;
    font-size: 16px;
    background: #f65a8b;
    border: 1px solid #f65a8b;
    display: inline-block;
    margin-top: 28.8px;
    color: white;
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
    outline: none !important;
}

.btn:hover,
.btn:focus {
    background: #f65c8c;
    color: white;
    border-color: #f65c8c;
}

.close {
    position: absolute;
    right: 28.8px;
    top: 23.04px;
}

a.btn.save-announcement,
.btn.save-navigation,
.btn.save-segment,
.btn.save-goal {
    margin: 0px;
    padding: 7px 12px;
}

.content-body .form-group label,
.experience-edit-container .form-group label {
    margin: 0px;
    margin-left: 10px;
    width: auto;
}

.form-group .message-content {
    width: 432px;
    padding: 14.4px;
    border: 1px solid gainsboro;
    border-radius: 2.88px;
    height: 216px;
    overflow: auto;
    padding-bottom: 57.6px;
}

.btn.announcement-btn-text {
    margin: 0px;
    position: absolute;
    bottom: 14.4px;
    left: 14.4px;
}

.content-body .form-group .sub-form-group label {
    font-size: 11.52px;
    margin-right: 7.2px;
    min-width: 86.4px;
    margin-top: 5.76px;
}

.sub-form-group input {
    border: none;
    border-bottom: 1px solid gainsboro;
    margin-right: 14.4px;
    outline: none;
}

.content-body .form-group {
    position: relative;
    margin-bottom: 28.8px;
}

span.back-angle {
    position: absolute;
    left: 28.8px;
    cursor: pointer;
    margin-top: 0px;
}

span.back-angle img {
    width: 14.4px;
}

[contenteditable="true"],
input,
textarea {
    outline: none;
}

.popup {
    padding: 50px;
    width: 50%;
    text-align: center;
    background: white;
    display: inline-block;
    margin-top: -50px;
    opacity: 0;
    transition: all 0.4s;
    border: 1px solid #efefef;
    border-top: 0px;
    position: relative;
    border-top-left-radius: 0px;
    border-top-right-radius: 0px;
}

.popup>span {
    display: inline-block;
    width: 100%;
    font-size: 16px;
    margin-bottom: 30px;
}

.popup .action {
    display: initial;
}

.popup .actions {
    display: inherit;
    position: initial;
    margin: 0px;
}

.popup .btn {
    margin-left: 14.4px;
}

.popup .btn:last-child {
    margin-left: 0px;
}

span.btn.danger-remove {
    background: #c30000;
    border-color: #c30000;
    margin-left: 0px;
}

span.btn.danger-remove:hover {
    background: white;
    color: #c30000;
}

.setup-widget-content,
.up-modal-content {
    padding: 28.8px;
    border-radius: 8.64px;
    background: #ffffff;
    border: 1px solid #eaeaea;
    box-shadow: 0px 2px 10px -3px #d8d8d8;
}

.setup-widget-title,
.up-modal-title {
    font-size: 20.16px;
    margin: 0px 0px 1;
    color: black;
    width: 100%;
    padding: 0px;
    line-height: 1.2;
    font-size: 28.8px;
    font-weight: 300;
    margin: 0px;
}

.setup-widget-body,
.up-modal-body {
    width: 100%;
    display: inline-block;
    font-weight: 300;
    color: gray;
    margin: 7.2px 0px 0.5;
    font-size: 15.84px;
    text-align: left;
    line-height: 1.2;
    padding: 28.8px;
}

.setup-widget-action,
.up-modal-action {
    display: inline-block;
    background: #339ef7;
    padding: 8.64px 23.04px;
    color: white;
    border-radius: 2.88px;
    font-size: 14.4px;
    cursor: pointer;
    font-weight: 400;
}

a.a-b-testing {
    display: inline-block;
    width: 100%;
    text-align: right;
    margin-bottom: 4.32px;
    padding-right: 10.08px;
}

span.tutorial-count {
    display: inline-block;
    width: 36px;
    height: 36px;
    vertical-align: middle;
    border: 2px solid rgba(51, 158, 247, 0.61);
    text-align: center;
    line-height: 31.68px;
    border-radius: 100%;
    margin-right: 14.4px;
    font-size: 14.4px;
}

div#content {
    height: 100%;
    /* overflow: auto; */
}

.content-header img {
    width: 15.84px;
    border-radius: 100%;
    margin-right: 0px;
    border-radius: 0px;
    vertical-align: middle;
    margin-left: 0px;
    margin-right: 14.4px;
    opacity: .3;
    display: none;
}

.error {
    border-bottom: 1px solid #ffa2a2 !important;
}

#userpilot-widget-iframe {
    display: none;
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0px;
    background: white;
    z-index: 9999999;
    border: none;
}

.a-b-test-tabs {
    text-align: left;
    position: absolute;
    margin-top: 46.08px;
}

.a-b-test-tabs span {
    padding: 4.32px 12.96px;
    display: inline-block;
    margin-right: 7.2px;
    border: 2px solid #339ef7;
    color: #339ef7;
    border-radius: 7.2px;
    cursor: pointer;
}

.a-b-test-tabs span.selected {
    background: #339ef7;
    color: white;
}

span.back-angle img {
    padding: 0px;
    background: none;
}

.audience-info {
    /* padding: 7.2px 0px; */
}

.audience-info span {
    color: #36474f;
    cursor: pointer;
}

.add-segment {
    /* display: inline-block; */
    /* width: 20.16px; */
    /* height: 20.16px; */
    /* color: #2494aa; */
    /* text-align: center; */
    /* line-height: 20.16px; */
    /* font-size: 21.6px; */
    /* border-radius: 100%; */
    /* cursor: pointer; */
    /* vertical-align: middle; */
    /* position: absolute; */
    /* right: 0px; */
    /* top: 4.32px; */
}

.segment:not(.edit):not(.remove)>*:not(.segment-actions) {
    display: inline-block;
    min-width: 0%;
    margin-right: 10px;
    vertical-align: middle;
    position: relative;
}

.operand .form-select {
    width: 100%;
}

.segment .operand {
    /* width: 110px; */
}

.segment>div[class=""] {
    position: relative;
}

.segment>.userpilot-and-or-operator {
    width: auto;
    min-width: initial !important;
    padding: 5px;
    /* background: #37474f; */
    border-radius: 20px;
    line-height: 0;
    cursor: pointer;
    position: relative;
}

.userpilot-segment-ops {
    position: absolute;
    top: 20px;
    left: 0px;
    background: white;
    border: 1px solid #36474f;
    border-radius: 5px;
    padding: 6px 0px;
    display: none;
    z-index: 9;
    font-size: 13px;
}

.segment:not(.edit):not(.remove)>.unit {
    min-width: auto;
    width: auto;
}

.segment>.userpilot-and-or-operator>div:first-child>span {
    width: 8px;
    height: 8px;
    background: #35474f;
    display: inline-block;
    margin-left: 3px;
    border-radius: 100%;
}

.segment>.userpilot-and-or-operator>div:first-child>span:first-child {
    margin: 0px;
}

.userpilot-segment-ops>span {
    padding: 15px;
    display: block;
}

.segment select {
    height: 28.8px;
    border: none !important;
}

.segment div:not(.unit):empty {
    display: none !important;
}

.segments>.segment:not(.edit):not(":last-child") {
    margin-bottom: 14.4px;
    position: relative;
}

.segment>[contenteditable="true"] {
    border-bottom: 1px solid gainsboro;
    padding: 2.88px;
}

.segment .input {
    width: 100%;
    padding: 0px 1;
    /* border-bottom: none; */
    margin-top: 0px;
}

.segment .remove-condition,
.url-match .remove-match,
.domain-match .remove-match {
    display: inline-block;
    width: auto;
    min-width: auto;
    margin: 0px;
    vertical-align: top;
}

.segment .remove-condition *,
.url-match .remove-match *,
.domain-match .remove-match * {
    pointer-events: none;
}

span.url-domain m {
    font-size: 10px;
    font-weight: bold;
    color: #80808070;
    margin-left: 4px;
    position: absolute;
    right: 0px;
    background: #f0f4f7;
    padding: 0px 7px;
}

span.url-domain i {
    width: 58%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: inline-block;
    vertical-align: middle;
}

span.url-domain {
    width: 250px;
    display: inline-block;
    margin-left: 19px;
    padding: 9px 15px;
    background: #f0f4f7;
    border: 1px solid #f0f4f7;
    border-radius: 5px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    vertical-align: middle;
    position: relative;
    font-style: italic;
}

.segment-actions {
    min-width: initial;
    display: inline-block;
    width: auto;
    line-height: 0;
    vertical-align: middle;
    margin-left: 15px;
}

.segment .add-segment.flow,
.url-match .add-url-match,
.domain-match .add-domain-match {
    display: inline-block;
    width: auto;
    min-width: initial;
    margin: 0px;
    cursor: pointer;
}

.segment .add-segment.flow *,
.url-match .add-url-match *,
.domain-match .add-domain-match * {
    pointer-events: none;
}

#userpilot-plus path {
    fill: #36474f;
}

svg#userpilot-plus {
    width: 17px;
    cursor: pointer;
}

.dash #userpilot-plus {
    transform: rotate(45deg);
}

div#inner-content {
    display: inline-block;
    width: 100%;
    vertical-align: top;
    position: absolute;
    /* overflow: auto; */
    right: 0px;
    /* background: #f0f4f7; */
    height: 100%;
}

div#side-menu {
    display: inline-block;
    width: 201.6px;
    height: 790px;
    border-right: 1px solid gainsboro;
    background: white;
}

div#side-menu ul {
    padding: 0px;
    padding-top: 23.04px;
    list-style-type: none;
}

div#side-menu ul li a {
    font-size: 12.96px;
    display: inline-block;
    font-weight: 600;
    color: #b1b1b1;
    padding: 14.4px 28.8px;
    width: 100%;
    transition: all 0.4s;
}

div#side-menu .active {}

div#side-menu .active a {
    color: #383838;
}

div#side-menu li {
    width: 95%;
    margin-left: 2.5%;
}

.colorpicker {
    width: 195.84px !important;
    position: absolute !important;
}

.colorpicker-2x .colorpicker-saturation {
    width: 181.44px !important;
    height: 181.44px !important;
}

.colorpicker-2x .colorpicker-hue {
    width: 98% !important;
    height: 18.72px !important;
}

.colorpicker-2x .colorpicker-alpha {
    width: 100% !important;
    height: 20px !important;
    display: none !important;
}

.colorpicker.colorpicker-horizontal .colorpicker-hue i,
.colorpicker.colorpicker-horizontal .colorpicker-alpha i {
    width: 4px !important;
    height: 100% !important;
    background: rgb(38, 101, 167) !important;
}

.colorpicker-2x .colorpicker-color,
.colorpicker-2x .colorpicker-color div {
    height: 30px;
}

.colorpicker-color {
    display: none;
}

.colorpicker:after {
    position: absolute;
    top: 13px !important;
    left: -13px !important;
    right: auto !important;
    display: inline-block;
    content: '';
    border-top: 6px solid transparent !important;
    border-bottom: 6px solid transparent !important;
    border-right: 6px solid white !important;
    width: 0px !important;
    height: 0px !important;
}

.colorpicker:before {
    position: absolute;
    top: 13px !important;
    left: -13px !important;
    right: auto !important;
    display: inline-block;
    content: '';
    border-top: 6px solid transparent !important;
    border-bottom: 6px solid transparent !important;
    border-right: 6px solid #ccc !important;
    width: 0px !important;
    height: 0px !important;
}

span.close-tutorial {
    display: block;
    position: fixed;
    z-index: 999999999999999999999;
    top: 2px;
    right: 2px;
    background: white;
    border: 1px solid;
    width: 20.16px;
    text-align: center;
    height: 20.16px;
    line-height: 15.84px;
    font-size: 11.52px;
    border-radius: 100%;
    box-shadow: 0px 0px 4px blue;
    cursor: pointer;
}

span.success.info {
    margin-top: 28.8px;
    font-size: 12.96px;
    color: #339ef7;
    vertical-align: middle;
    margin-left: 14.4px;
}

.content-form .content-header {
    width: 100%;
}

.content-form .content-header .title {
    color: black;
}

span.circle {
    padding: 10.08px 23.04px;
    font-size: 17.28px;
    background: #339ef7;
    display: inline-block;
    text-align: center;
    color: white;
    border-radius: 43.2px;
    font-weight: 300;
}

span.circle .plus {
    font-size: 21.6px;
    margin-right: 7.2px;
    background: white;
    color: #359ef7;
    width: 28.8px;
    height: 28.8px;
    line-height: 28.8px;
    border-radius: 100%;
}

span.circle span {
    display: inline-block;
    vertical-align: middle;
}

.add.tutorials-item.add-navigtion,
.tutorials-item.add-segment-group,
.tutorials-item.add-announcement {
    padding: 31.68px;
    background: #349ef7;
}

.page-cs-loader {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
}

.page-cs-loader-inner {
    transform: translateY(-50%);
    top: 50%;
    left: 28.8px;
    position: absolute;
    width: calc(100% - 200px);
    color: #FFF;
    padding: 0 100px;
    text-align: center;
}

.page-cs-loader-inner label {
    font-size: 14.4px;
    opacity: 0;
    display: inline-block;
    color: #21a77c;
}

@keyframes lol {
    0% {
        opacity: 0;
        transform: translateX(-300px);
    }

    33% {
        opacity: 1;
        transform: translateX(0px);
    }

    66% {
        opacity: 1;
        transform: translateX(0px);
    }

    100% {
        opacity: 0;
        transform: translateX(300px);
    }
}

@-webkit-keyframes lol {
    0% {
        opacity: 0;
        -webkit-transform: translateX(-300px);
    }

    33% {
        opacity: 1;
        -webkit-transform: translateX(0px);
    }

    66% {
        opacity: 1;
        -webkit-transform: translateX(0px);
    }

    100% {
        opacity: 0;
        -webkit-transform: translateX(300px);
    }
}

.page-cs-loader-inner label:nth-child(6) {
    -webkit-animation: lol 3s infinite ease-in-out;
    animation: lol 3s infinite ease-in-out;
}

.page-cs-loader-inner label:nth-child(5) {
    -webkit-animation: lol 3s 100ms infinite ease-in-out;
    animation: lol 3s 100ms infinite ease-in-out;
}

.page-cs-loader-inner label:nth-child(4) {
    -webkit-animation: lol 3s 200ms infinite ease-in-out;
    animation: lol 3s 200ms infinite ease-in-out;
}

.page-cs-loader-inner label:nth-child(3) {
    -webkit-animation: lol 3s 300ms infinite ease-in-out;
    animation: lol 3s 300ms infinite ease-in-out;
}

.page-cs-loader-inner label:nth-child(2) {
    -webkit-animation: lol 3s 400ms infinite ease-in-out;
    animation: lol 3s 400ms infinite ease-in-out;
}

.page-cs-loader-inner label:nth-child(1) {
    -webkit-animation: lol 3s 500ms infinite ease-in-out;
    animation: lol 3s 500ms infinite ease-in-out;
}

.btn.editor {
    margin-bottom: -14.4px;
    margin-top: 43.2px;
}

.editor-controllers {
    position: absolute;
    left: -28.8px;
    width: 316.8px;
    top: 83.52px;
    text-align: left;
    display: none;
    width: 43.2px;
}

.editor-controllers .btn.editor img {
    height: 14.4px;
    width: 14.4px;
}

.editor-controllers .btn.editor {
    margin-bottom: -14.4px;
    margin-top: 43.2px;
    background: white;
    border: none;
    line-height: 1;
    margin: 0px;
    padding: 10.08px;
    margin-bottom: 5.76px;
    border-radius: 28.8px;
}

.picker-switch .btn {
    display: none;
}

span.menu-tooltip {
    position: absolute;
    font-size: 11.52px;
    text-align: left;
    padding: 5px 12px;
    background: white;
    white-space: nowrap;
    border-radius: 0px;
    background: #616060;
    color: white;
    -webkit-transition: all 0.4s;
    box-shadow: 0px 0px 10px gainsboro;
    transition: all 0.4s;
    border-radius: 2.88px;
    visibility: hidden;
    opacity: 0;
    left: -30px;
    top: 30px;
}

#menu li:hover .menu-tooltip {
    left: -30px;
    top: 29px;
    box-shadow: none;
    visibility: visible;
    opacity: 1;
}

.select-variable-container {
    display: inline-block;
    position: relative;
}

.variables-select-dropdown {
    position: absolute;
    background: white;
    display: none;
    padding: 10.08px;
    white-space: nowrap;
    border: 1px solid gainsboro;
}

span.select-variable {
    color: #339ef7;
    cursor: pointer;
}

.variables-select-dropdown span {
    cursor: pointer;
}

.flow-picker {
    float: none !important;
    display: inline-block;
}

.flow-picker-style {
    display: inline-block;
    min-height: 360px;
    background: white;
    margin-right: 2%;
    border: 1px solid gainsboro;
    float: none !important;
    vertical-align: top;
    padding: 28.8px;
    border-radius: 5.76px;
    opacity: 0.6;
    cursor: pointer;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
    text-align: center;
    width: 27%;
}

.flow-picker-style.selected {
    opacity: 1;
}

.flow-picker-content {
    text-align: left;
    margin-top: 14.4px;
}

.flow-picker-style:last-child {
    margin: 0px;
}

.flow-picker-title {
    font-size: 14.4px;
    text-transform: capitalize;
}

.illus {
    display: inline-block;
    width: 100%;
    margin-bottom: 14.4px;
    text-align: left;
}

.illus-circle {
    width: 28.8px;
    height: 28.8px;
    border-radius: 100%;
    overflow: hidden;
    background: #a3d5e1;
    display: inline-block;
    text-align: center;
    line-height: 2.4;
    vertical-align: middle;
}

.progressive-flow-illus .illus:first-child {
    margin-top: 43.2px;
}

.illus-circle img {
    width: 50%;
}

.illus-line {
    display: inline-block;
    height: 7.2px;
    background: #a2d5e1;
    width: 80%;
    vertical-align: middle;
    border-radius: 14.4px;
    margin-left: 6%;
}

.illus.disabled .illus-circle,
.illus.disabled .illus-line {
    background: #f1f1f1;
}

.flow-picker-selected {
    width: 14.4px;
    height: 14.4px;
    border: 2px solid #bbb9be;
    border-radius: 100%;
    margin: 0px auto;
    position: absolute;
    bottom: 14.4px;
    left: 48%;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
}

.flow-picker-style.selected .flow-picker-selected {
    background: #2494aa;
    border-color: #2494aa;
}

.btn.next,
.btn.prev {
    /* border-radius: 28.8px; */
    font-size: 14.4px;
    padding: 7.2px 14.4px;
    margin-top: 57.6px;
}

.btn.prev {
    margin-right: 57.6px;
}

.widget-actions {
    text-align: right;
    padding: 0px;
    position: fixed;
    bottom: 43.2px;
    right: 43.2px;
    left: auto;
}

.btn.next span,
.btn.prev span {
    display: inline-block;
    margin-right: 28.8px;
}

.btn.prev span {
    margin: 0px;
    margin-left: 28.8px;
}

.btn.next i,
.btn.prev i {
    font-size: 18.72px;
    vertical-align: middle;
}

.widget-icon {
    width: 43.2px;
    height: 43.2px;
    background: #8dc3ce;
    border-radius: 100%;
    line-height: 3.5;
    text-align: center;
    display: inline-block;
    margin-right: 14.4px;
    overflow: visible;
    overflow: hidden;
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
}

.widget-icon img {
    width: 50%;
}

.widget-icon:last-child {
    margin: 0px;
}

.flow-picker-content.widget-picker {
    margin-top: 28.8px;
    margin-bottom: 72px;
}

.flow-picker-content.positions-picker {
    margin-top: 28.8px;
}

.widget-icons {
    display: inline-block;
    line-height: 1;
}

.widget-icon.selected {
    background: #2494aa;
}

.widget-positions {
    display: inline-block;
    margin-bottom: 14.4px;
}

.widget-position {
    width: 43.2px;
    height: 43.2px;
    background: #2494aa;
    display: inline-block;
    margin-right: 14.4px;
    border-radius: 4.32px;
    position: relative;
    opacity: 0.5;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
}

.widget-icon,
.widget-position {
    cursor: pointer;
}

.widget-position:last-child {
    margin: 0px;
}

.position-advanced-options {
    text-align: left;
    margin-top: 14.4px;
    cursor: pointer;
    color: gray;
    font-size: 11.52px;
}

.circle-positon {
    width: 8.64px;
    height: 8.64px;
    position: absolute;
    background: white;
    border-radius: 100%;
}

.widget-position.left .circle-positon {
    bottom: 5.76px;
    left: 5.76px;
}

.widget-position.center .circle-positon {
    left: 40%;
    bottom: 5.76px;
}

.widget-position.right .circle-positon {
    right: 5.76px;
    bottom: 5.76px;
}

.widget-position.selected {
    opacity: 1;
}

.dash {
    display: inline-block;
    vertical-align: middle;
    margin-left: 17px;
}

.table-cont {
    display: table;
    vertical-align: middle;
    height: 14.4px;
}

#content>.col-md-12 {
    padding: 0px !important;
}

.segments-tabs .btn {
    margin-top: 0px;
    margin-right: 14.4px;
}

.segments-tabs {
    margin-bottom: 28.8px;
    overflow: auto;
    white-space: nowrap;
}

span.segment-tab-controller-new.btn {
    /* background: white; */
    /* color: #2394ab; */
    /* border: 1px solid #2394ab; */
}

.segments-tabs .btn {
    margin-top: 0px;
    margin-right: 14.4px;
    background: white;
    color: #2494a9;
    border: 1px solid;
}

.userpilot-form-controller input {
    padding: 0px;
    border: 0px;
}

span.segment-tab-controller-new.btn:hover,
span.segment-tab-controller.btn:hover,
.segments-tabs .segment-tab-controller.btn.selected {
    /* background: #2394ab; */
    /* color: white; */
    /* border: 1px solid #2394ab; */
}

.btn.save-segment.saving {
    opacity: .4;
}

.widget-boards .btn {
    margin-top: 0px;
}

.widget-boards {
    padding: 20.16px;
    background: white;
    border-radius: 5.76px;
}

.widget-boards-settings .btn {
    margin-top: 0px;
}

.widget-boards-settings {
    margin-top: 14.4px;
    padding: 0px;
    background: white;
    border-radius: 4.32px;
}

.content-analytics>* {
    padding: 28.8px;
    background: white;
    border-radius: 4.32px;
    width: 32.6%;
    margin-right: 1%;
    min-height: 316.8px;
}

.content-analytics>*:last-child {
    margin-right: 0px;
}

.content-analytics {
    margin-top: 2%;
}

.content-flows {
    display: inline-block;
    width: 100%;
    padding: 0px;
    margin-top: 0px;
    border-radius: 0px;
    display: inline-block;
    position: relative;
    float: none;
    height: auto;
    /* overflow: hidden; */
    top: 0px;
    right: 0px;
}

.inv-btn {
    background: white;
    color: #2494aa;
    border: 1px solid white;
}

.inv-btn:hover {
    background: #27ba4f;
    color: white;
    border-color: white;
}

.widget-experience.selected {
    background: #2494aa;
    color: white;
    border-color: #2494aa;
}

.widget-boards-settings .btn {
    font-size: 8.64px;
    margin-right: 14.4px;
}

.boards-data .btn {
    margin-right: 14.4px;
}

.btn.inv-btn.new-widget-experience {
    margin: 0px;
}

.widget-tools .btn {
    margin-top: 0px;
    margin-right: 14.4px;
}

.widget-tools {
    padding: 14.4px;
    background: white;
    border-radius: 4.32px;
}

.content-flow {
    padding: 30px 40px;
    font-size: 12px;
    position: relative;
    transition: all 0.2s;
    border-bottom: 1px solid #f0f4f7;
}

.tab-content .content-flow:last-child {
    margin-bottom: 0px;
    border-bottom: 0px;
}

.content-title {
    display: inline-block;
}

.list-table-header {
    position: relative;
}

.mmnj {
    padding: 15px 40px 15px;
    background: #f9f9f9;
    position: absolute;
    z-index: 1;
    width: 100%;
    top: 0px;
}

.mmnj>* {
    font-size: 15px;
    color: #464646;
    display: inline-block;
    text-align: center;
}

.mmnj span t {
    margin-left: 5px;
    display: inline-block;
    vertical-align: middle;
}

.mmnj span img {
    vertical-align: middle;
    display: inline-block;
}

.stats {
    display: inline-block;
}

.stats span {
    width: 120px;
    display: inline-block;
    text-align: center;
    font-size: 13px;
    color: #000000;
    overflow: hidden;
    text-overflow: ellipsis;
}

#archived .stats span {
    width: 108px;
}

#archived .content-title:not(.tab) span:not(.tutorial_status) {
    width: 172.8px;
}

.content-flow .actions {
    position: relative;
    display: block;
    margin: 0px;
    top: 7.2px;
    float: right;
}

.content-flow:hover .actions {
    display: block;
}

.content-builder {
    display: inline-block;
    width: 93%;
    background: white;
    border-radius: 4.32px;
    margin-top: 28.8px;
    padding: 28.8px;
}

.add-new-section-data-container {
    position: absolute;
    right: 100.8px;
}

.add-new-sction {
    width: 28.8px;
    height: 28.8px;
    background: white;
    border-radius: 100%;
    text-align: center;
    font-size: 17.28px;
    line-height: 1.7;
    cursor: pointer;
}

.section-size {
    background: white;
    padding: 8.64px 0px;
    border-radius: 2.88px;
    margin-top: 8.64px;
    display: none;
    /* position: absolute; */
}

.section-size>* {
    padding: 8.64px 14.4px;
    width: 86.4px;
    cursor: pointer;
}

.add-new-section-data-container:hover .section-size {
    display: block;
}

.add-new-section-data-container:hover {
    right: 43.2px;
}

.section-data {
    padding: 14.4px;
    border: 1px solid gainsboro;
    border-radius: 4.32px;
    min-height: 72px;
    display: inline-block;
    margin-bottom: 14.4px;
}

.content-builder .row {
    margin: 0px;
}

.content-builder .row.row-2 .section-data {
    margin-right: 2%;
}

.content-builder .row .section-data:last-child {
    margin-right: 0px !important;
}

.content-builder .row.row-3 .section-data {
    margin-right: 2%;
}

.content-builder .row.row-4 .section-data {
    margin-right: 2%;
}

.content-flows>.content-title {
    padding: 14.4px;
    width: 100%;
    display: inline-block;
    font-size: 14.4px;
    padding: 14.4px 36px;
    border-radius: 0px;
    color: black;
    cursor: pointer;
    background: white;
    margin-top: 14.4px;
}

.flow-types-container {
    display: inline-block;
    position: absolute;
    top: 61.92px;
    left: 0px;
    background: #2394ab;
    border-radius: 2.88px;
    color: white;
    padding: 7.2px 0px;
}

.new-flows-container {
    position: relative;
    display: inline-block;
    float: right;
    vertical-align: middle;
}

.flow-types-container>* {
    padding: 14.4px 21.6px;
    cursor: pointer;
}

.userpilot-header-content {
    line-height: 1;
}

.userpilot-image-logo img {
    height: 100%;
}

.logo {
    padding: 35px 0px 0px;
    display: inline-block;
    width: 100%;
    text-align: center;
}

.logo svg {
    width: 115px;
}

.new-flows-container>* {
    position: relative;
    top: -6px;
    padding: 10px 15px;
    font-size: 16px;
    margin: 0px;
}

.new-flows-container>*:hover {
    cursor: pointer;
    background: #f65c8c;
    color: white;
    box-shadow: 0px 7px 20px -3px gainsboro;
}

.btn-action {
    margin: 0px;
    padding: 10px 15px;
    font-size: 15px;
    border: none;
    background: #f65a8b;
    font-weight: bold;
    color: #ffffff;
    float: right;
    border: 1px solid #f65a8b;
}

.btn-action:hover {
    color: white;
    box-shadow: 0px 7px 20px -3px gainsboro;
}

.tab-content-container {
    display: inline-block;
    width: 100%;
    overflow: auto;
    height: 100vh;
    padding-top: 180px;
}

.tab-content {
    display: none;
    padding-top: 50px;
}

.content-title.tab img, .content-title.tab svg {
    width: 20px;
    opacity: .6;
    margin-right: 25px;
}

.content-title.tab.selected img {
    opacity: 1;
}

.content-title.tab[page] img {
    opacity: .3;
}

.content-title.tab[page].selected img {
    opacity: 1;
}

.content-title.tab#add-group {
    border-radius: 0px;
    background: #f65a8b;
}

.content-tabs-bottom .content-title.tab {
    display: inline-block;
    background: #f65b8c;
    border-radius: 2em !important;
    margin-bottom: 10px;
    padding: 10px 20px;
    padding-left: 12px;
}

.content-tabs-bottom .content-title.tab span {
    color: white;
}

.content-title.tab {
    margin-bottom: 20px;
    display: block;
    /* padding: 10px; */
    cursor: pointer;
    border-radius: 0px;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.content-title.tab:hover {
    /* background: #f8f8f9; */
}

.content-title.tab span,
.content-title-sub-menu-container span {
    font-size: 14px;
    font-weight: 500;
    vertical-align: middle;
    color: #a7a6a6;
    width: auto;
    display: inline-block;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    max-width: 70%;
}

.content-tabs-controller-container {
    display: inline-block;
    width: 17%;
    padding: 0px;
    margin-right: -3px;
    height: 100%;
    position: relative;
    vertical-align: top;
    padding-right: 0px;
    padding-bottom: 0px;
}

.content-tabs-controller {
    width: 100%;
    display: inline-block;
    margin: 0px;
    overflow: auto;
    position: relative;
    background: #f2f2f27d;
    padding: 9px 0px;
    display: inline-block;
    height: 100%;
    left: 0px;
    border-bottom: 0px;
    box-shadow: inset -4px 0px 12px #efefef;
}

.tab-content.selected {
    display: block;
    width: 100%;
    background: white;
    white-space: nowrap;
    display: inline-block;
    overflow-x: auto;
    border-bottom: 0px;
    position: relative;
    /* min-height: 500px; */
    height: 100%;
}

.content-flows>.content-title:first-child {
    margin-top: 0px;
}

.content-title.tab.selected {
    opacity: 1;
    color: #232222;
}

.content-title.tab img[colored] {
    display: none;
}

.content-title.tab.selected img[gray] {
    display: none;
}

.content-title.tab.selected img[colored] {
    display: initial;
}

.content-title.tab a {
    width: 100%;
    padding: 10px;
    display: inline-block;
}

.content-title.tab[page] {
    padding: 0px;
}

.content-title.tab.selected span {
    color: #000000;
    font-weight: bold;
}

.content-title.tab .content-title-sub-menu-container .segment-insight span,
.content-title.tab .content-title-sub-menu-container .goal-insight span,
.content-title-sub-menu-container span {
    color: gray;
    font-weight: normal;
}

.content-title.tab .content-title-sub-menu-container .segment-insight.selected span,
.content-title.tab .content-title-sub-menu-container .goal-insight.selected span,
.content-title-sub-menu-container .selected span {
    font-weight: bold;
    color: black;
}

.content-title.tab .content-title-sub-menu-container .segment-insight img, .content-title.tab .content-title-sub-menu-container .segment-insight svg, .content-title.tab .content-title-sub-menu-container .goal-insight img {
    opacity: 0.3;
    /* display: none; */
}

div#add-new-goal img {
    opacity: 1;
}

.content-title.tab .content-title-sub-menu-container .segment-insight.selected img, .content-title.tab .content-title-sub-menu-container .segment-insight.selected svg, .content-title.tab .content-title-sub-menu-container .goal-insight.selected img {
    opacity: 1;
}

.content-title.tab .content-title-sub-menu-container .segment-insight.selected span,
.content-title.tab .content-title-sub-menu-container .goal-insight.selected span {
    color: #333333;
}

.content-title.tab.selected .content-title-sub-menu-container {
    display: inherit;
}

.content-tabs-top {
    height: 80%;
    overflow: auto;
    background: white;
    padding: 0px;
}

.content-tabs-bottom {
    position: absolute;
    width: 86%;
    left: 0px;
    padding: 10px;
    left: 7%;
    bottom: 5%;
    background: white;
    border-radius: 5px;
}

.content-tabs-bottom .content-title.tab {
    margin-bottom: 10px;
    line-height: 0;
}

.content-tabs-bottom .content-title.tab img {
    width: 15px;
    margin-right: 10px;
    opacity: 1;
    line-height: 0;
}

.content-tabs-bottom .content-title.tab span {
    font-size: 12px;
    display: inline-block;
    position: relative;
    top: 1px;
    /* line-height: 0; */
    width: auto;
    overflow: visible;
}

.content-tabs-bottom .content-title.tab:last-child {
    margin-bottom: 0px;
    background: #ff9200;
}

.new-flows span {
    display: inline-block;
    line-height: 1.3;
    border-radius: 100%;
    text-align: center;
    margin-right: 20.16px;
    color: white;
    display: none;
}

.btn.new-flows.edit-flow-steps {
    margin: 0px;
    margin-left: 10px;
    background: none;
    color: black;
    border-color: black;
    padding: 7px 15px;
    border-radius: 5px;
}

.btn.new-flows>span {
    display: inline-block;
    color: black;
    font-size: 16px;
    margin: 0px;
    vertical-align: middle;
}

.btn.new-flows>svg {
    display: inline-block;
    margin-right: 10px;
    width: 15px;
    vertical-align: middle;
}

.content-flows>.content-title i {
    font-size: 17.28px;
    margin-right: 14.4px;
}

.tab .line {
    display: inline-block;
    width: 80%;
    background: #f0f4f7;
    height: 2px;
    vertical-align: middle;
    margin-left: 14.4px;
}

.tab.selected i {
    transform: rotate(90deg);
}

.content-title:not(.tab) span:not(.tutorial_status):not(.checklist_status) {
    display: inline-block;
    width: 150px;
    font-size: 16px;
    text-overflow: ellipsis;
    overflow: hidden;
    padding-right: 15px;
    vertical-align: middle;
    color: #39393a;
    cursor: pointer;
    min-height: 18px;
}

.content-title:not(.tab) span:not(.tutorial_status):hover {
    text-decoration: underline;
}

span.tutorial_status {
    font-size: 12px;
    padding: 4px 6px;
    background: #A89FC1;
    color: white;
    border-radius: 0px;
    width: auto;
    text-align: center;
    display: inline-block;
    font-weight: 600;
    border-radius: 5px;
    vertical-align: middle;
}

span.tutorial_status[status='-9'] {
    background: #A89FC1;
}

span.tutorial_status[status="0"] {
    background: #A89FC1;
}

span.checklist_status {
    font-size: 12px;
    padding: 4px 0px;
    background: #A89FC1;
    color: white;
    border-radius: 0px;
    width: 55px;
    text-align: center;
    display: inline-block;
    font-weight: 600;
    border-radius: 5px;
    vertical-align: middle;
}

span.checklist_status[status='-9'] {
    background: #A89FC1;
}

span.checklist_status[status="0"] {
    background: #A89FC1;
}

.content-flow .actions>* {
    opacity: .35;
    transition: all 0.4s;
    position: relative;
}

.content-flow .actions>* img,
.content-flow .actions>* i {
    width: 10.08px;
    margin-right: 8.64px;
    color: #092930;
}

.content-flow .actions>*:last-child {
    margin: 0px;
}

.content-flow .actions>*:last-child img {
    margin: 0px;
}

.content-flow:hover {}

.content-flow .actions>*:hover {
    opacity: 1;
}

.actions>* .note {
    position: absolute;
    top: -28.8px;
    left: -17.28px;
    white-space: nowrap;
    background: #092930;
    color: white;
    display: none;
    padding: 5.76px;
    margin-left: 0px;
    font-size: 10.08px;
}

.actions>*:hover .note {
    display: inline-block;
}

.note .arrow-top {
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 8.7px 8px 0 8px;
    border-color: #092931 transparent transparent transparent;
    position: absolute;
    bottom: -4.32px;
    left: 9%;
}

li#settings>img {
    height: 24px !important;
}

li#settings {
    /* padding: 10.08px 18px 14.4px; */
    cursor: pointer;
    margin-top: 10px;
    border-top: 1px solid gainsboro;
    padding-top: 10px;
}

.content-analytics>.col-md-6 {
    width: 49.5%;
}

.flow-status-options {
    position: absolute;
    text-align: left;
    visibility: hidden;
    width: 200px;
    z-index: 1;
    background: white;
    left: 47px;
    top: -20px;
    box-shadow: 0px 0px 10px gainsboro;
    border-radius: 5px;
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
    opacity: 0;
}

.flow-status-options svg {
    width: 11px;
    margin-right: 14px;
    vertical-align: middle;
}

.flow-status-options ul {
    padding: 0px;
    list-style-type: none;
    margin: 0px;
}

.content-title .more {
    display: inline-block;
    margin-right: 17px;
    cursor: pointer;
    position: relative;
}

options {
    display: inline-block;
    width: 23px;
    height: 23px;
    vertical-align: middle;
    padding: 4px;
    border: 1px solid #F2F2F2;
    border-radius: 5px;
}

options::after {
    /* content: "\25CF\25CF\25CF"; */
    font-size: 11px;
    color: #b7b7b7;
}

.content-title .more>img {
    width: 21px;
}

.more i {
    font-size: 20.16px;
    vertical-align: middle;
    transform: rotate(-90deg);
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
}

.more.selected .flow-status-options {
    visibility: visible;
    opacity: 1;
    padding: 10px 0px;
}

.content-header .more .flow-status-options {
    left: -23px;
}

.content-header .more .flow-status-options .arrow-top {
    display: none;
}

.content-header .more.selected .flow-status-options {
    margin-top: 3px;
}

.flow-status-options img {
    width: 16px;
    display: inline-block;
    vertical-align: middle;
    margin-right: 8px;
}

.flow-status-options t {
    display: inline-block;
    vertical-align: middle;
}

.more .arrow-top {
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 8px 8px 8px;
    border-color: transparent transparent #3e3e3e transparent;
    position: absolute;
    top: -8px;
    margin-left: 22px;
}

.flow-status-options ul li {
    font-size: 15px;
    font-weight: 500;
    padding: 13px 17px;
}

.flow-status-options ul li:hover {
    background: #f2f2f2;
}

.actions .more {
    width: 28.8px;
    text-align: center;
}

.more.selected i {
    transform: rotate(0deg);
}

.actions .share img {
    width: 14.4px;
}

.no-data-found {
    text-align: center;
    color: #afafaf;
    padding-bottom: 0px;
    background: white;
    font-size: 14px;
    white-space: normal;
    margin-top: 40px;
}

.no-data-found span {
    display: inline-block;
    width: 100%;
    color: #5d5959;
}

.no-data-found .add {
    display: inline-block;
    color: white;
    margin-top: 25px;
    padding: 10px 30px;
    background: #f65a8b;
    border-radius: 2em;
    transition: all 0.4s;
    font-size: 13px;
}

.no-data-found .add:hover {
    background: #b54266;
}

.widget-actions .btn-action {
    float: none;
}

textarea.input {
    width: 100%;
    height: 86.4px;
    border: none;
    box-shadow: none;
    border-bottom: 1px solid gainsboro;
    padding: 10.08px 1.44px;
    margin-top: 14.4px;
    font-size: 12.96px;
    resize: none;
}

.shareable-link {
    position: absolute;
    background: white;
    top: -15px;
    z-index: 999999999;
    opacity: 1;
    right: 0px;
    padding: 0px;
    box-shadow: 0px 0px 10px gainsboro;
    color: gray;
    width: 100%;
    white-space: nowrap;
    overflow: auto;
    padding: 11.52px;
}

.segments-container {
    position: relative;
}

.add-segment.flow {
    position: relative;
    border-width: 2px;
}

.flow-segments .segment:not(.edit)>* {}

.form-group.flow-segments {
    margin-top: 14.4px;
}

.flow-domains>*,
.flow-priority>* {}

.flow-domains span {
    margin-left: 5.04px;
}

.flow-domains,
.flow-priority {
    margin-bottom: 15px;
}

.flow-domain-specific {
    margin-top: 25px;
}

.userpilot-regex-note {
    font-size: 11.52px;
    margin-top: 2.88px;
    color: green;
}

select.form-control.segments-select {
    height: 28.8px;
}

.form-group.flow-category {
    margin: 43.2px 0px;
}

select.flow-category-data.form-control {
    width: 20%;
    display: inline-block;
    padding: 8px 15px;
    text-align: center;
    margin-left: -3px;
    font-weight: lighter;
}

.input-regex[disabled] {
    opacity: .4;
}

.has-child ul li a {
    padding: 14.4px 28.8px !important;
}

.theme-color {
    position: relative;
    margin: 17px 0px;
}

.theme-color .color {
    width: 25px;
    height: 25px;
    display: inline-block;
    border-radius: 100%;
    vertical-align: middle;
    margin-right: 14.4px;
    border: 1px solid #ececec;
    box-shadow: 0px 0px 8px -5px black;
}

.enable-segments-container>* {
    /* display: inline-block; */
    /* vertical-align: text-top; */
}

.enable-segments-container span {
    margin-left: 5.04px;
}

.segmentation-container {
    /* padding: 38px; */
    background: #f8f8f8;
    padding: 35px;
}

.segmentation-container .segments-data-container {
    border-top: 0px;
    margin-top: 0px;
    padding-bottom: 10px;
    padding-top: 0px;
}

.segments-data-container,
.goals-data-container {
    margin-top: 7.2px;
    display: inline-block;
    width: 100%;
    /* border-top: 1px solid gainsboro; */
    padding-top: 17.28px;
}

.matching-criteria-container>select {
    width: auto;
    margin-left: 20px;
}

.matching-criteria-container>p>b {
    margin-right: 35px;
}

.segment-tab-container {
    background: ghostwhite;
    padding: 21.6px;
    display: inline-block;
}

.segments-data-container .audience-info {
    /*display: none;*/
}

.enable-segments-container {
    margin-bottom: 15px;
}

.flow-triggered>*,
.flow-goal>*,
.flow-page>* {
    display: inline-block;
    vertical-align: middle;
}

.flow-triggered>span,
.flow-goal>span,
.flow-page>span {
    margin-left: 7.2px;
}

.flow-triggered,
.flow-goal,
.flow-page {
    margin-bottom: 15px;
}

.flow-triggered.disabled {
    opacity: 0.5;
}

.flow-triggered.disabled * {
    pointer-events: none;
}

.form-group .note {
    margin-bottom: 7.2px;
}

.goals-data .note {
    margin: 0px;
    color: gray;
    text-align: center;
    padding-top: 14.4px;
    border-top: 1px solid gainsboro;
    margin-top: 14.4px;
}

.goals-data .note span {
    cursor: pointer;
    margin-top: 7.2px;
    display: inline-block;
}

.url-match select,
.domain-match select {
    width: auto;
    display: inline-block;
    height: 28.8px;
}

.flow-page-specific {
    padding-top: 14.4px;
    /* border-top: 1px solid gainsboro; */
    margin-top: 7.2px;
    display: inline-block;
    width: 100%;
}

.url-match,
.domain-match {
    position: relative;
}

.domain-match {
    margin-top: 10.08px;
    margin-bottom: 14.4px;
}

.url-matching {
    margin: 25px 0px;
}

.url-match input[type="text"],
.domain-match input[type="text"] {
    margin-left: 20px;
    min-width: 350px;
}

.domains-container,
.search-results-container {
    width: 400px;
    display: inline-block;
    margin-left: 142px;
    padding: 16px 0px;
    box-shadow: 0px 0px 12px -4px gray;
    border-radius: 5px;
    position: absolute;
    left: 0px;
    top: 34px;
    z-index: 99;
    background: white;
}

.search-results-container {
    width: 265px;
    left: 0px;
    right: auto;
    margin: 0px;
}

.domains-container .domain-data,
.search-results-container .search-result {
    padding: 4px 16px;
    font-size: 12px;
    cursor: pointer;
    color: #4e4e4e;
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.note.big {
    font-weight: 600;
}

.btn-close {
    background: none;
    border: 1px solid #f13535;
    color: white;
    background: #f13535;
}

.btn-close:hover {
    border: 1px solid #d02e2e;
    background: #d02e2e;
}

select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    padding: 0px 10px;
}

select.form-control {
    font-size: 10px;
    min-height: 28.8px;
    display: inline-block;
}

select.segments-select.form-control {
    margin-bottom: 14.4px;
}

span.remove-match {
    display: inline-block !important;
    cursor: pointer;
}

.goals-data {
    padding-bottom: 15px;
}

select.goals-select.form-control {
    margin-bottom: 14.4px;
}

select.form-control.variables-operand {
    width: 86%;
}

span.op {
    margin-left: 14.4px;
    display: none;
}

select.input.value.select-event-value.form-control {
    padding: 0px 1;
}

.operand span {
    cursor: initial;
    color: #2594aa;
}

select.input.value.select-flow-value.form-control {
    padding: 0px 1;
}

.theme-container {
    display: inline-block;
    width: 100%;
    text-align: center;
    overflow: auto;
}

.general-theme {
    display: inline-block;
    width: 100%;
}

.themes-menu {
    display: inline-block;
    width: 16%;
    /* background: #f0f4f7; */
    text-align: left;
    margin-top: 45px;
    float: left;
    border-right: 2px solid white;
    padding-right: 4%;
    max-height: 481.9px;
    overflow: auto;
    padding-bottom: 118.5px;
}

.themes-menu span {
    font-size: 13px;
    font-weight: 400;
    color: #b3b3b3;
    display: inline-block;
    vertical-align: middle;
    margin-bottom: 45px;
    text-align: left;
    cursor: pointer;
    width: 100%;
}

.themes-menu span:last-child {
    margin: 0px;
}

.themes-menu span.selected {
    color: #092930;
    font-weight: bold;
}

.sub-title {
    font-size: 12px;
    margin: 0px;
    display: inline-block;
    margin-left: 0px;
    vertical-align: middle;
    color: black;
}

.theme-input .sub-title {
    width: 59%;
    display: inline-block;
    margin-right: 2px;
}

.theme-input input {
    width: 40% !important;
    border: 1px solid #808080 !important;
    padding: 5px 10px !important;
    display: inline-block;
    color: black;
}

.theme-select select {
    width: 49%;
    border: none;
    background: #673ab7;
    color: white;
    border-radius: 2px;
    padding: 5px 10px;
    outline: none;
    border: 1px solid #1f2532;
}

.theme-select .form-select {
    width: 145px;
    vertical-align: middle;
}

.theme-select[class*='-sktiptips-type'] .form-select,
.theme-select[class*='x-button-behaviour'] .form-select {
    width: 100%;
    margin-top: 10px;
}

.theme-select .sub-title {
    width: 50%;
}

.theme-select {
    margin: 18px 0px;
}

.theme-container input {
    width: 100%;
    padding: 10.08px 14.4px;
    border: none;
    border-radius: 2.88px;
    margin: 5.76px 0px;
}

.add-new-popup .theme-container .title,
.theme-container .title,
.individual-container .title {
    font-size: 10px;
    font-weight: 400;
    margin: 0px;
    margin-top: 50px;
    padding-bottom: 7.2px;
    color: #a2a2a2;
    text-align: left;
    /* margin: 0px; */
    text-transform: uppercase;
}

.theme-container .title:first-child,
.individual-container .title:first-child {
    margin-top: 0px;
}

.preview {
    /*background: rgba(0, 0, 0, 0.5);*/
}

.theme-color .userpilot-color-picker-container {
    position: absolute;
    z-index: 9999999999999;
}

.theme-hotspot-color .userpilot-color-picker-container,
.theme-progress-color .userpilot-color-picker-container {
    bottom: 25.92px;
    top: auto !important;
}

.modal-preview * {
    cursor: auto !important;
}

.theme-template .modal-preview * {
    cursor: inherit !important;
}

.preview-flow[disabled] {
    opacity: .1;
}

.preview>* {
    padding: 28.8px;
}

.theme-info-section {
    padding: 0px 5px;
}

.hotspot-preview {
    padding-bottom: 100.8px;
    background: #dee9f1;
}

.slider.f-slider {
    display: inline-block !important;
    width: 100%;
    margin: 0px;
    height: 3px;
}

.slider-data {
    width: 50%;
    display: inline-block;
    position: relative;
}

.slider-container .sub-title {
    font-weight: bold;
    width: 49%;
    margin: 0px;
}

.slider-unit input {
    margin: 0px;
    margin-right: 10px;
}

.slider-unit {
    position: absolute;
    top: -14px;
    color: grey;
    right: 0px;
}

span.slider-handle {
    border-radius: 2em;
    background: #36474f;
    outline: none;
    width: 15px;
    height: 15px;
}

span.slider-fill {
    background: #35474f;
    height: 3px;
}

.slider-handle:hover {
    background: #092930;
}

.slideout-preview .userpilot-mmx-box.show {
    padding: 36px;
    width: 345.6px !important;
    box-shadow: 0px 0px 20px gainsboro;
}

.modal-preview div#userpilot-builder {
    background: white;
}

.themes-header {
    margin-bottom: 0px;
    text-align: left;
    font-size: 16px;
    font-weight: bold;
    padding: 11px 0px;
    width: auto;
    display: inline-block;
    vertical-align: middle;
}

.themes-header .title {
    font-size: 12.96px;
    font-weight: 600;
    margin: 28.8px 0px 2;
    color: #092930;
    text-align: left;
}

.btn.btn-action.remove.theme {
    background: red;
    margin-left: 14.4px;
    border-color: red;
}

.btn.btn-action.remove.theme:hover {
    background: #d00000;
    border-color: #d00000;
}

.goal-data-container.stand-alone {
    padding: 14.4px;
    border-top: 1px solid gainsboro;
    margin-top: 14.4px;
}

.goal-data-container .input-title {
    margin-bottom: 14.4px;
}

.segment-data-container.stand-alone {
    padding: 14.4px;
    border-top: 1px solid gainsboro;
    margin-top: 14.4px;
}

.segment-data-container .input-title {
    margin-bottom: 14.4px;
}

.mmnj img {
    width: 14px;
}

.selectize-container .create-option img {
    width: 18.72px;
    vertical-align: middle;
    opacity: .5;
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
}

.selectize-container .selectize-input span.placeholder-data {
    font-size: 16px;
    font-weight: 300;
    text-transform: capitalize;
    white-space: nowrap;
    display: inline-block;
    max-width: 92%;
    text-overflow: ellipsis;
    overflow-x: hidden;
    min-width: 10%;
    min-height: 18px;
    line-height: 1.8;
    color: #4c4c4c;
}

.selectize-container .create-option span {
    display: none;
    color: #092930;
    margin-right: 2.88px;
    opacity: 0;
    vertical-align: middle;
    font-size: 14.4px;
    color: #6f6f6f;
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
    position: absolute;
    right: 10.08px;
}

.selectize-container .selectize-input {
    display: inline-block;
    border-bottom: 1px solid gainsboro;
    padding-bottom: 0px;
    width: 100%;
    text-align: left;
}

.selectize-container {
    display: inline-block;
    min-width: 70%;
    width: 60%;
    text-align: center;
    position: relative;
}

.selectize-container .selectize-options {
    width: 100%;
    border: 1px solid gainsboro;
    padding: 14.4px;
    margin-top: -1px;
    display: none;
    opacity: 0;
    position: absolute;
    z-index: 999999;
    text-align: left;
    background: white;
    max-height: 174px;
    overflow: auto;
}

.selectize-container .selectize-options>* {
    display: inline-block;
    width: 100%;
    font-size: 14.4px;
    color: black;
    padding: 14.4px;
    cursor: pointer;
}

.selectize-container .create-option {
    float: right;
    margin-top: 7px;
    cursor: pointer;
}

.theme-tab {
    width: 80%;
    text-align: left;
    margin-top: 45px;
    float: right;
}

.theme-tab>div:first-child {
    padding-right: 50px !important;
    height: 474px;
    overflow: auto;
    display: inline-block;
    padding-bottom: 79px;
    height: calc(100vh - 180px) !important;
}

.theme-tab>div:last-child {
    transform-origin: top right;
}

.slider-container input {
    background: none;
    display: inline-block;
    padding: 0px;
    vertical-align: middle;
    font-size: 14.4px;
    min-width: initial;
    max-width: initial;
    padding-left: 2px;
    text-align: right;
    width: 36px;
    margin-right: 7px;
}

.slider-container .unit {
    position: relative;
    left: -2px;
    font-size: 10px;
}

.flow-theme-info #content {
    height: auto;
    overflow: auto;
    display: inline-block;
    width: 100%;
}

.new-flow-action-container {
    position: relative;
    width: 100%;
    text-align: center;
    bottom: 0px;
    left: 0px;
    padding: 28.8px;
    background: white;
    z-index: 99;
}

.new-flow-action-container>* {
    float: none;
}

.shareable-link .email_data {
    display: inline-block;
    min-height: 14.4px;
    min-width: 129.6px;
    border: 1px solid gainsboro;
    border-radius: 2px;
    padding: 7.2px 14.4px;
}

li.multipleInput-email {
    display: inline-block;
    margin-right: 2.88px;
    padding: 0px .5;
    border: 1px solid #f1f1f1;
}

.multipleInput-container ul {
    padding: 0px;
    display: inline-block;
    margin: 0px;
    vertical-align: top;
}

a.multipleInput-close {
    margin-left: 28.8px;
    vertical-align: middle;
    display: inline-block;
    line-height: 2;
    color: gainsboro;
}

.multipleInput-container span {
    display: inline-block;
    vertical-align: top;
    line-height: 2;
}

.multipleInput-container input {
    padding: 4.32px;
    border: none;
    background: whitesmoke;
}

.btn.share-with-emails {
    margin-top: 14.4px;
}

.shareable-link .close img {
    width: 100%;
}

.shareable-link .close {
    width: 10.08px;
    top: 7.2px;
    right: 14.4px;
}

.get_extension {
    padding: 7px;
    background: #27ba4f;
    color: white;
    font-size: 12.96px;
    text-align: center;
}

.chrome-not-isntalled {
    position: absolute;
    top: -61px;
    left: 32%;
    padding: 14.4px;
    background: white;
    box-shadow: 0px 0px 20px whitesmoke;
    font-size: 12.96px;
}

.extra-info label {}

span.close-popup img {
    width: 28.8px;
}

span.close-popup {
    width: 57.6px;
    height: 57.6px;
    position: fixed;
    right: 72px;
    cursor: pointer;
    top: 57.6px;
}

span.close-popup>* {
    display: table-cell;
    vertical-align: middle;
}

.add-new-popup.full-screen {
    padding: 0px;
}


.saveData, .exportData {
    display: inline-block;
    float: right;
}

.popup-tabs-controller .btn {
    margin: 0px;
    font-size: 15px;
}

.popup-tab-controller {
    display: inline-block;
    padding: 15px 0px;
    background: white;
    margin-right: 30px;
    cursor: pointer;
    color: black;
    font-size: 17px;
    margin-bottom: -2px;
}

div#header-title {
    padding: 20px 40px;
    background: #37474F;
    color: white;
}

div#header-title h2 {
    font-weight: bold;
    margin: 0px;
    min-height: 27px;
    min-width: 20px;
}

.popup-tab-controller.selected {
    border-bottom: 3px solid black;
}

.popup-tabs-controller {
    display: inline-block;
    padding: 15px 40px 0px;
    width: 100%;
    background: white;
}

.popup-tab-controller:not(.selected) img:not(.colored) {
    display: none;
}

.popup-tab-controller.selected img.colored {
    display: none;
}

ul.options-container {
    width: auto;
}

ul.options-container li img {
    width: 18px;
    margin-right: 6px;
}

ul.options-container li {
    display: inline-block;
    cursor: pointer;
    padding: 10px 10px;
}

li#back-to-list {
    padding: 10px 20px;
    background: #fa5489;
    color: white;
    font-weight: bold;
}

ul.options-container li:last-child {
    margin: 0px;
}

ul.options-container {
    display: inline-block;
    background: white;
    border-radius: 10px;
    float: right;
    margin-bottom: 22px;
    padding: 0px 10px;
    overflow: hidden;
}

ul.options-container t {
    display: inline-block;
    vertical-align: middle;
}

.experience-edit-container {
    background: white;
    padding: 30px 40px 0px;
    /* margin-bottom: 20px; */
    border-radius: 10px;
    display: inline-block;
    width: 100%;
    position: relative;
}

.flow-general-info {
    width: 100%;
    display: inline-block;
}

.userpilot.up-main-container .flow-general-info {
    width: 80%;
    text-align: left;
}

input.input,
.input-page-structure,
.input-regex,
.input-tut-description.input {
    width: 39%;
}

.form-group.flow-category {
    margin: 28.8px 0px;
}

.add-new-popup .title {
    margin-top: 8.64px;
    font-weight: normal;
    font-size: 18.72px;
    display: inline-block;
    vertical-align: middle;
    color: #09293087;
    width: 100%;
    text-align: center;
    margin-bottom: 28.8px;
    text-transform: uppercase;
}

.theme-template {
    display: inline-block;
    cursor: pointer;
    padding: 43px;
    vertical-align: top;
    background: white;
    text-align: center;
    border-radius: 12px;
    margin-right: 1.5%;
    width: 250px;
    margin-bottom: 1.5%;
    height: 171px;
    position: relative;
    transition: box-shadow 0.3s;
}

.theme-template:hover,
.theme-template.active-theme {
    box-shadow: 0px 0px 25px -9px #000000;
}

.theme-template .userpilot-slide {
    width: 100%;
}

.theme-title {
    font-size: 16px;
    margin-bottom: 15px;
    color: black;
    font-weight: bold;
}

.theme-template .modal-preview {
    background: gainsboro;
    padding: 57.6px;
}

.theme-template .userpilot-builder-section,
.theme-template .userpilot-cols-section {
    margin-top: -2px;
    width: 101%;
}

.progressive_modal_container .userpilot-slide {
    width: 100% !important;
}

.slideout-preview .userpilot-mmx-box-content {
    /* box-shadow: 0px 0px 10px whitesmoke; */
}

.add-theme.box {
    display: inline-block;
    vertical-align: top;
    width: 21.5%;
    padding: 75px 40px;
    border: none;
    font-size: 16px;
    text-align: center;
    color: #4a4a4a;
    cursor: pointer;
    height: 171px;
    border-radius: 12px;
    background: white;
    border: 1px solid #efefef;
}

div.input.input-url.inactive {
    padding: 0px 0px 2;
    font-size: 17.28px;
    text-align: center;
    color: #909090;
}

.tooltip-preview .userpilot-mmx-box-content,
.driven-preview .userpilot-mmx-box-content {
    box-shadow: 0px 0px 10px gainsboro;
}

.no-backdrop-preview {
    background: none !important;
}

.no-backdrop-preview .shadow-data-container .shadow-data {
    border: none !important;
}

.no-box {
    border: none !important;
    box-shadow: none !important;
}

.up-x-to-close.no-x-button,
.no-skip-tips {
    display: none !important;
}

.domains .domain {
    display: inline-block;
    padding: 10.08px 14.4px;
    font-size: 12.96px;
    border: 1px solid whitesmoke;
    border-radius: 2.88px;
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
    vertical-align: top;
    cursor: pointer;
    margin-bottom: 4.32px;
}

.domains .domain.selected {
    border: 1px solid #27ba4f;
}

.chrome-not-isntalled.full-modal {
    width: 100%;
    left: 0px;
    height: 100%;
    top: 0px;
    line-height: 10;
    text-align: center;
}

.theme-template .actions {
    top: 10%;
    right: 15px;
    top: 2px;
    margin: 0px;
    margin-top: 0px;
    position: absolute;
    display: block;
    visibility: hidden;
    opacity: 0;
    transition: top 0.4s, opacity 0.2s, visibility 0.2s;
    cursor: pointer;
    bottom: auto;
}

.theme-template .actions:hover {
    opacity: 1 !important;
}

.theme-template:hover .actions {
    visibility: visible;
    top: 9px;
    opacity: 1;
}

.segment .input[type="text"] {
    /* font-size: 13px; */
    /* padding: 0px; */
}

.bootstrap-select>.dropdown-toggle {
    background: #07282f;
    color: white;
    margin: 0px;
    border: none;
}

.bootstrap-select>.dropdown-toggle:focus {
    outline: none !important;
}

.individual-container .bootstrap-select>.dropdown-toggle {
    background: #07282f !important;
    color: white;
    margin: 0px;
    border: none;
    border-radius: 2px;
    font-size: 10px;
    padding: 5px 10px;
    font-weight: bold;
    outline: none !important;
}

.dropdown-menu li.selected a span,
.bootstrap-select>.dropdown-toggle span {
    color: white;
}

.dropdown-menu li a span {
    color: #092930;
}

.dropdown-menu li.selected a span {
    color: white;
}

.dropdown-menu li.selected a {
    background: #092930;
}

.bs-searchbox .form-control {
    padding: 4.32px 7.2px;
    margin-bottom: 3px;
}

ul.dropdown-menu.inner .dropdown-header span {
    color: gainsboro;
    font-weight: bold;
    margin: 6px 0px;
    display: inline-block;
}

.btn-default:hover,
.btn-default:focus,
.btn-default.focus,
.btn-default:active,
.btn-default.active,
.open>.dropdown-toggle.btn-default {
    background-color: #8c62e0;
    border-color: #8c62e0;
}

.bootstrap-select.btn-group .dropdown-menu li a {
    outline: none;
}

.form-group .segments-container .segment>.bootstrap-select.btn-group {
    display: inline-block;
    width: auto;
}

.theme-template .userpilot-slide .userpilot-builder-section.userpilot-image-section {
    padding: 0px !important;
}

.theme-actions-controller {
    position: relative;
    display: inline-block;
    float: right;
}

.theme-actions-controller .btn {
    float: none;
}

.reset-to-general {
    color: #07282f;
    float: none;
    font-size: 12px;
    cursor: pointer;
    display: inline-block;
    margin-right: 20px;
    border-right: 1px solid;
    padding-right: 20px;
}

.content-flow .clone.flow {
    display: none;
}

.btn-group.bootstrap-select.userpilot-driven-experience-continue {
    width: 100% !important;
    margin-top: 6px;
}

.btn-group.bootstrap-select.userpilot-driven-experience-continue .dropdown-menu {
    width: 100%;
}

.btn-group.bootstrap-select.userpilot-driven-experience-continue ul.dropdown-menu.inner span.text {
    word-break: break-word;
    white-space: initial;
}

select.form-control.matching-criteria {
    width: auto;
    margin-left: 20px;
}

.matching-criteria-container>* {
    display: inline-block;
}

.matching-criteria-container {
    margin-bottom: 30px;
    font-size: 15px;
}

.btn-group.bootstrap-select.matching-criteria {
    margin-left: 14.4px !important;
}

.matching-operand {
    display: inline-block;
    padding: 10px;
    border-radius: 5px;
    background: none;
    color: #23222399;
    text-transform: uppercase;
    width: 5%;
    font-weight: normal;
    font-size: 13px;
}

.add-group-segment,
.remove-group-segment {
    margin-top: 28.8px;
    text-align: center;
    position: relative;
    background: none;
    border-width: 2px;
    color: #27ba4f;
    font-weight: bold;
}

.add-group-segment span:first-child,
.remove-group-segment span:first-child {
    display: inline-block;
    width: 100%;
    height: 2px;
    background: #092930;
}

.add-group-segment span:last-child,
.remove-group-segment span:last-child {
    position: relative;
    width: 28.8px;
    height: 28.8px;
    border-radius: 100%;
    background: #092930;
    text-align: center;
    top: -20.88px;
    display: inline-block;
    line-height: 1.5;
    font-size: 20.16px;
    color: white;
    cursor: pointer;
}

.remove-group-segment span:last-child {
    transform: rotate(45deg);
}

.segments-group {
    padding: 14.4px;
    margin: 0px;
    width: 90%;
}

/*.segments-group * { font-size: 12px !important; } */
.segments-group svg#userpilot-plus {
    width: 16px;
}

.segments-group .segment-actions {
    margin-top: 7px;
}

.segments-group-expand {
    padding: 0px;
    display: inline-block;
    background: white;
    width: 21.6px;
    height: 21.6px;
    font-size: 18.72px;
    line-height: 1.2;
    text-align: center;
    position: relative;
    top: -11.52px;
    cursor: pointer;
}

.segments-group.collabsed {
    height: 0px;
    overflow: hidden;
}

.segments-group .matching-operand {}

.segments-group .segment {
    width: 95%;
    display: inline-block;
    margin-top: 8px;
}

.link.flow img {
    width: 17.28px;
}

.flow-link {
    position: absolute;
    left: 0px;
    top: 60px;
    background: #ffffff;
    color: #092930;
    padding: 12px;
    border-radius: 2px;
    font-size: 13px;
    width: auto;
    box-shadow: 0px 0px 22px -6px #e4e4e4;
    word-break: break-all;
    padding: 21px;
    z-index: 2;
    line-height: 1.5;
    visibility: hidden;
    opacity: 0;
    border: 1px solid #dadada;
    transition: all 0.4s;
}

.flow-link.animate-container {
    top: 67px;
    visibility: visible;
    opacity: 1;
}

.flow-link b span {
    position: absolute;
    top: 18px;
    right: 16px;
    font-size: 19px;
    line-height: 0;
    font-family: nunito;
    color: gray;
    cursor: pointer;
}

.flow-link>span {
    cursor: pointer;
    position: absolute;
    top: 19px;
    right: 15px;
    font-family: nunito;
    font-size: 20px;
    line-height: 0;
    color: gray;
}

.flow-link>div>span {
    color: #10d1e5;
    font-weight: bold;
}

.flow-category .domains {
    max-height: 300px;
    overflow: auto;
}

.theme-colors span {
    width: 40px;
    height: 40px;
    display: inline-block;
    border-radius: 100%;
    border: 1px solid whitesmoke;
}

.edit-theme {
    margin-top: 20px;
    opacity: 0;
    visibility: hidden;
    transition: margin-top 0.4s, opacity 0.2s, visibility 0.2s;
    display: inline-block;
}

.theme-template:hover .edit-theme,
.theme-template.active-theme .edit-theme {
    margin-top: 11px;
    visibility: visible;
    opacity: 1;
}

.theme-colors {
    line-height: 0;
}

.edit-theme svg {
    width: 12px;
    display: inline-block;
    vertical-align: middle;
    margin-right: 5px;
}

.edit-theme svg path {
    fill: #585858;
}

.edit-theme span {
    display: inline-block;
    color: #585858;
    margin-left: 0px;
    vertical-align: middle;
    margin-top: 0px;
    font-size: 13px;
    font-weight: bold;
    line-height: 0;
}

.btn.upload-font-family {
    color: white;
    border: 1px solid #746B87;
    background: #746B87;
}

.btn.upload-font-family:hover {
    /* background: #1f2532; */
    color: white;
}

span.switch {
    float: right;
    line-height: 0;
    margin-top: -1px;
    width: 42px;
    height: 20px;
    border-radius: 43.2px;
    transition: all 0.3s;
    position: relative;
    cursor: pointer;
}

span.switch#hovered-button-controller {
    float: none;
    display: inline-block;
    vertical-align: middle;
    margin-left: 20px;
}

span.switch * {
    pointer-events: none;
}

span.switch[on="1"] {
    background: #36474f;
}

span.switch[on="0"] {
    background: #c7c5c5;
}

span.switch .circle {
    width: 16px;
    height: 16px;
    display: inline-block;
    border-radius: 100%;
    background: white;
    position: absolute;
    top: 2px;
    left: 24px;
    transition: all 0.3s;
}

span.switch[on="0"] .circle {
    left: 2px;
}

.switch-controlled {
    transition: opacity 0.3s, height 0.3s;
    opacity: 1;
    height: auto;
}

.experience-edit-container c {
    display: inline-block;
    width: 100%;
    padding: 11px 0px;
}

.experience-edit-container c t {
    width: 20%;
    position: relative;
    display: inline-block;
    font-weight: bold;
    color: black;
}

.experience-edit-container .form-group.flow-category {
    margin: 0px;
    margin-bottom: 40px;
}

.experience-edit-container .form-group {
    margin: 0px;
    margin-bottom: 65px;
    margin-top: 15px !important;
    padding-top: 15px;
    border-top: 1px solid gainsboro;
}

subtitle {
    font-size: 24px;
    font-weight: bold;
    margin: 5px 0px;
    display: inline-block;
    color: #4C4C4C;
    margin-bottom: 15px;
}

.experience-edit-container h4 {
    font-size: 19px;
    margin-bottom: 22px;
}

info {
    display: inline-block;
    width: 100%;
    color: #5A5B5B;
    font-size: 15px;
}

.content-body.account-panel {
    padding: 50px 30px 0px;
    background: none;
}

.white-box {
    width: 100%;
    background: white;
    margin-bottom: 0px;
    margin-top: 0px;
    border-radius: 5px;
    font-size: 15px;
    line-height: 1.5;
    display: inline-block;
}

.installation .white-box {
    margin-top: 0px;
    margin-bottom: 10px;
    color: black;
    border-radius: 10px;
}

.table-header span {
    font-size: 14px;
    color: gray;
    margin-right: 20px;
}

.member>* {
    display: inline-block;
    margin-right: 25px;
    font-size: 15px;
    color: black;
    /* overflow: hidden; */
    text-overflow: ellipsis;
}

.member .member-actions {
    margin: 0px;
    text-align: right;
    width: 31%;
}

.member .member-email {
    width: 180px;
    word-break: break-all;
    vertical-align: middle;
}

.member .member-status {
    margin-right: 75px;
    width: 60px;
}

.member .member-role {
    margin: 0px;
}

.member .member-name {
    width: 191px;
    margin: 0px;
}

.member {
    padding: 15px;
    border-radius: 1px;
    border-bottom: 1px solid #f0f4f7;
}

.team-table .member:first-child {
    margin-top: 20px;
}

.team-table .member:last-child {
    border-bottom: 0px;
}

.team-container .table-header {
    padding: 0px 15px;
    margin-top: 20px;
}

.invite-member-box {
    width: 100%;
    position: relative;
    text-align: right;
    padding: 0px;
}

.invite-member-box .title {
    font-size: 14px;
    display: inline-block;
    vertical-align: middle;
    color: #353535;
    font-weight: 800;
    margin-top: 12px;
    margin-bottom: 0px;
    text-transform: uppercase;
    border-bottom: 2px solid #cacaca;
    padding-bottom: 4px;
}

.invite-team-member {
    display: inline-block;
    background: white;
    padding: 9px 18.72px;
    font-size: 12px;
    border-radius: 4px;
    cursor: pointer;
}

.member-actions>* {
    cursor: pointer;
}

.member-actions .remove-member {
    color: #a70808;
}

.invite-team-member-form input.member-email-address,
.invite-team-member-form input.member-name {
    border: none;
    width: 250px;
    font-size: 12px;
    padding: 6px;
}

.invite-team-member-form {
    position: absolute;
    top: 30px;
    right: 0px;
    background: white;
    padding: 7px;
    border-radius: 5px;
}

.invite-team-member-form select.form-control.member-role {
    display: inline-block;
    width: auto;
    margin: 0px 20px;
    padding: 7px;
    vertical-align: middle;
    font-size: 11px;
}

.btn.sent-member-invitation {
    /* font-size: 11px; */
}

.invite-member-box h4 {
    display: inline-block;
    margin: 0px;
    float: left;
    margin-top: 8px;
}

.member .member-actions>* {
    display: inline-block;
    margin-right: 10px;
}

.member-actions>*:last-child {
    margin: 0px;
}

.member .member-actions .cancel-invitation {
    color: white;
}

.member .member-actions .resend-invitation {
    color: white;
}

.experience-tab-container#experience-analytics {
    display: inline-block;
    width: 100%;
}

.billing-container .white-box {
    margin-bottom: 0px;
    margin-top: 0px;
    padding: 25px;
    border: none;
    margin-bottom: 10px;
    border: 1px solid #f2f2f2;
    border-radius: 5px;
    width: 100%;
}

.main-billing-container {
    display: inline-block;
    padding: 0px;
    padding-bottom: 50px;
    width: 100%;
}

.white-box .plan-info.plan-title title {
    font-size: 18px;
    color: #f8578a;
    vertical-align: middle;
    line-height: 0;
    display: inline-block;
    font-weight: bold;
}

.white-box .plan-info {
    margin-bottom: 20px;
    padding-bottom: 12px;
}

.white-box .plan-info:last-child {
    padding: 0px;
    margin: 0px;
    border: none;
}

.white-box .plan-info info {
    font-size: 15px;
    margin-bottom: 10px;
}

.white-box .plan-info span {
    font-size: 15px;
    color: black;
    font-weight: bold;
}

.billing-container[selected-plan] .white-box {
    box-shadow: 0px 3px 17px -7px #36474f42;
}

.billing-container[plan] .white-box {
    transition: box-shadow 0.4s;
    cursor: pointer;
}

.plan-details {
    margin-bottom: 30px;
}

.plan-details>div {
    display: inline-block;
    width: 50%;
    margin-right: -4px;
    vertical-align: middle;
}

.plan-details>div:last-child {
    text-align: right;
}

.plan-details>div:last-child h3 {
    color: black;
    font-weight: bold;
    margin: 0px;
}

.plan-details>div:first-child span {
    display: block;
}

.payment-footer {
    display: inline-block;
    width: 100%;
    text-align: center;
}

.discount-code {
    display: inline-block;
    width: 100%;
    text-align: center;
    margin: 50px 0px;
    padding: 12px;
    border: 1px solid #f8578a2e;
    color: #f8578a;
    border-radius: 0px;
}

.white-box .plan-info cir {
    display: inline-block;
    width: 15px;
    height: 15px;
    vertical-align: middle;
    border-radius: 100%;
    border: 1px solid #f8578a;
    margin-right: 13px;
}

[selected-plan] .white-box .plan-info cir {
    background: #f8578a;
}

.btn.upgrade-pan {
    width: 100%;
    padding: 14px;
    font-size: 15px;
}

.billing-container {
    margin-top: 0px;
}

.billing-container-header h4 {
    display: inline-block;
    float: left;
    margin-top: 6px;
    color: black;
    font-size: 19px;
    font-weight: bold;
}

.billing-container-header {
    text-align: right;
    display: inline-block;
    width: 100%;
    margin-bottom: 30px;
}

.plan-info.plan-title>div {
    display: inline-block;
    width: 50%;
    margin-right: -3px;
}

.plan-info.plan-title>div:last-child {
    text-align: right;
}

.plan-info.plan-title>div:last-child>* {
    display: inline-block;
    vertical-align: middle;
    float: none;
    line-height: 0;
}

.plan-info.plan-title>div:last-child>.billing-period {
    margin-right: 8px;
}

.plan-info.plan-title>div:last-child>.switch {
    background: #fb5188;
}

.form-info t {
    display: inline-block;
    width: 100%;
    font-size: 14px;
    margin-bottom: 10px;
    color: #36474f;
}

.form-info form-data-section {
    display: inline-block;
    width: 100%;
    margin-top: 20px;
}

.form-info form-section-title {
    font-weight: bold;
    color: black;
    font-size: 15px;
}

.form-info form-data-section:first-child {
    margin: 0px;
}

.btn.add-payment-method {
    background: #f0f4f7;
    border: none;
    color: #383535;
    padding: 20px 30px;
    border: 1px solid gainsboro;
}

form-data-section input {
    border: none;
    width: 100%;
    padding: 8px;
    font-size: 13px;
}

form-data-section textarea {
    resize: none;
    width: 100%;
    height: 79px;
    border-radius: 5px;
    border: 1px solid;
}

form-data-column {
    display: inline-block;
}

input.expiry-date-month {
    width: 40%;
}

input.expiry-date-year {
    width: 40%;
}

input.cvc {
    width: 100%;
}

.btn.add-method,
.btn.update-plan,
.btn.upgrade-plan {
    padding: 8px 20px;
    font-size: 14px;
    display: inline-block;
    font-weight: 600;
    width: auto;
    border-radius: 6px;
}

form-data-column span {
    margin: 0px 10px;
}

.content-header h3 {
    display: inline-block;
    float: left;
}

.billing-table table-header data-set {
    width: 33%;
    display: inline-block;
    margin-right: -1px;
}

.billing-table table-header {
    display: inline-block;
    width: 100%;
    padding: 12px 20px;
    background: #f0f4f7;
}

.billing-table {
    text-align: left;
    font-size: 15px;
}

.billing-table table-content data-set {
    display: inline-block;
    width: 33%;
    margin-right: -1px;
}

.billing-table table-content {
    display: inline-block;
    width: 100%;
    padding: 12px 22px;
}

span.update-payment-card {
    text-align: right;
    display: inline-block;
    cursor: pointer;
    float: right;
    position: relative;
    top: 3px;
    color: green;
}

.popup span {
    display: inline-block;
    margin-bottom: 24px;
}

.popup .actions .btn {
    margin-bottom: 0px;
    margin-top: 0px;
}

.goals-data-container .userpilot-and-or-operator {
    display: none !important;
}

.flow-manual {
    font-size: 13px;
    margin-left: 0px;
    color: gray;
    margin-top: 14.4px;
    background: #f0f4f7;
    padding: 16px 40px;
    border-radius: 5px;
}

.flow-manual m {
    float: right;
    color: black;
    font-weight: bold;
}

.cri-placeholder {
    min-width: 7% !important;
    font-weight: bold;
    color: #666666;
    font-size: 15px;
}

selectcol {
    width: 150px;
    display: inline-block;
    vertical-align: top;
}

selectcol selecttitle {
    width: 100%;
    display: inline-block;
    color: #07282f;
    font-weight: bold;
    margin: 10px 0px;
}

selectcol selecttitle[grayed] {
    color: #bfbfbf;
}

selectcol selecttitle[grayed]::before {
    content: "...";
    margin-right: 3px;
    font-size: 11px;
}

selectcol selectopt {
    /* margin: 10px 0px; */
    display: inline-block;
    width: 100%;
}

selectcol selectopt * {
    display: inline-block;
    width: 100%;
    padding: 5px 10px;
    cursor: pointer;
}

selectcol selectopt[notitle] selectvalue {
    padding-left: 0px;
    padding-right: 0px;
}

selectcol selectopt[notitle][first] {
    margin-top: 0px;
}

.select-drop-down-container {
    position: absolute;
    background: white;
    padding: 60px 25px 25px;
    border: 1px solid #07282f;
    border-radius: 3px;
    margin-top: 8px;
    z-index: 1;
    max-height: 425px;
    overflow: auto;
    min-width: 202px;
}

.dropdown-menu-search-box {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    background: #f0f4f7;
}

.dropdown-menu-search-box input {
    border: none;
    background: none;
    width: 100%;
    padding: 10px 25px;
}

.btn.form-control.variables-container {
    margin-top: 0px;
    text-align: left;
    font-size: 10px;
    padding: 6.4px 10px;
}

.btn.form-control.variables-container[menu-active] {
    background: #45267d;
    color: white;
    border-color: #45267d;
}

.segments .segment {
    position: relative;
}

.goals-empty-state,
.segments-empty-state {
    position: relative;
    font-size: 15px;
}

.goals-empty-state-container,
.segments-empty-state-container {
    display: inline-block;
    width: auto;
    vertical-align: middle;
}

.form-select.variables-options-container {
    margin-left: 10px;
    width: auto;
}

.goals-empty-state p,
.segments-empty-state p {
    display: inline-block;
    margin-right: 20px;
    margin-bottom: 0px;
}

.empty-state .header h1 {
    font-weight: 600;
}

.content-title-sub-menu-container>* {
    padding: 20px 0px;
    cursor: pointer;
}

.content-title-sub-menu-container .segment-insight.selected,
.content-title-sub-menu-container .goal-insight.selected {
    color: black;
}

.content-title-sub-menu-container {
    overflow: hidden;
    padding: 20px;
    padding-right: 0px;
    color: #ababab;
    /* display: none; */
    max-height: initial;
    overflow: auto;
    /* background: white; */
    border-radius: 5px;
}

.segment-insights-data .image img {
    height: 44px;
    width: auto;
}

.segment-insights-data .image {
    display: inline-block;
    width: 100%;
    text-align: center;
}

.btn.btn-action.add-new-segment {
    position: absolute;
    top: 30px;
    right: 30px;
}

.segment-information {
    padding: 50px;
    width: 50%;
    text-align: center;
    background: white;
    display: inline-block;
    box-shadow: 0px 0px 17px -5px gainsboro;
    margin-top: -50px;
    opacity: 0;
    transition: all 0.4s;
    position: relative;
}

.segment-information.show-container,
.popup.show-container {
    margin-top: 0px;
    opacity: 1;
}

.segment-information input {
    display: inline-block;
    width: 100%;
    margin-bottom: 50px;
    padding: 13px;
    border: none;
    font-size: 17px;
}

.segments-options-container {
    display: inline-block;
    width: 125px;
    position: relative;
    text-align: left;
    margin-left: 25px;
}

.segment-edit-container {
    text-align: left;
}

.segments-options-container .segments-options {
    position: absolute;
    right: 0px;
    width: 100%;
    padding: 10px 0px;
    background: white;
    border: 1px solid #07282f;
    border-radius: 4px;
    margin-top: 0px;
    visibility: hidden;
    opacity: 0;
    transition: all 0.4s;
}

.segments-options-container .segments-options.show-container {
    margin-top: 6px;
    opacity: 1;
    visibility: visible;
}

.segments-options-container>span {
    cursor: pointer;
}

.segments-options-container .segments-options t {
    display: block;
    padding: 6px 20px;
    cursor: pointer;
}

.waiting-for-data img {
    width: 42px;
}

.waiting-for-data {
    position: relative;
    width: 100%;
    height: 200px;
    border-radius: 4px;
    padding: 50px 25px;
    background: white;
    border: 1px solid #f9f9f9;
}

@-webkit-keyframes loadingdata {
    0% {
        background-position: 0% 39%
    }

    50% {
        background-position: 100% 62%
    }

    100% {
        background-position: 0% 39%
    }
}

@-moz-keyframes loadingdata {
    0% {
        background-position: 0% 39%
    }

    50% {
        background-position: 100% 62%
    }

    100% {
        background-position: 0% 39%
    }
}

@keyframes loadingdata {
    0% {
        background-position: 0% 39%
    }

    50% {
        background-position: 100% 62%
    }

    100% {
        background-position: 0% 39%
    }
}

.waiting-for-data h {
    display: inline-block;
    width: 100%;
    margin-bottom: 20px;
}

.waiting-for-data c {
    font-size: 14px;
    font-weight: bold;
    color: #848484;
}

.waiting-for-data .loader {
    top: 50px;
    left: 50px;
}

div#analytics-error-message img {
    width: 26px;
    display: inline-block;
    opacity: 1;
}

div#analytics-error-message span {
    display: inline-block;
    vertical-align: middle;
    font-size: 14px;
    margin-left: 25px;
    font-weight: bold;
}

.left-part.lone-part .image {
    width: auto;
    margin-right: 10px;
    vertical-align: middle;
}

.left-part.lone-part .image img {
    width: 33px;
}

.left-part.lone-part n {
    display: inline-block;
    margin-left: 14px;
    font-size: 12px;
}

.left-part.lone-part n strong {
    font-size: 12px;
}

.btn.btn-action.remove.category {}

.btn.btn-action.remove.category:hover {
    background: #a21919;
}

.checkbox-container {
    width: 50%;
    display: inline-block;
    text-align: left;
    padding: 10px;
    border: 3px solid #f0f4f7;
    border-radius: 7px;
}

.getstarted-checkbox l {
    display: inline-block;
    width: 50%;
    height: 4px;
    background: #f0f4f7;
    border-radius: 22px;
}

.getstarted-checkbox span {
    display: inline-block;
    margin: 0px;
    padding: 6px;
}

.getstarted-checkbox span img {
    width: 23px;
    display: none;
}

.getstarted-checkbox {
    margin: 17px 10px;
}

.getstarted-checkbox[done] img {
    display: initial;
}

.getstarted-checkbox img {
    display: none;
}

.getstarted-checkbox span {
    width: 25px;
    height: 25px;
    border-radius: 100%;
    background: #f0f4f7;
    margin-right: 16px;
    vertical-align: middle;
    padding: 2px;
}

.getstarted-checkbox[done] span {
    background: none;
}

.start-tutorials-list {
    padding: 35px 30px;
    background: #f0f4f7;
}

.left-contaienr {
    display: inline-block;
    vertical-align: middle;
    width: 20%;
    text-align: center;
}

.middle-container {
    display: inline-block;
    vertical-align: middle;
    width: 58%;
    padding: 32px;
}

.right-contaienr {
    text-align: center;
    display: inline-block;
    vertical-align: middle;
    width: 20%;
}

.checkbox-container {
    width: 50%;
    display: inline-block;
    text-align: left;
    padding: 10px;
    border: 3px solid #f0f4f7;
    border-radius: 7px;
}

.getstarted-checkbox l {
    display: inline-block;
    width: 50%;
    height: 4px;
    background: #f0f4f7;
    border-radius: 22px;
}

.getstarted-checkbox span {
    display: inline-block;
    margin: 0px;
    padding: 6px;
}

.getstarted-checkbox span img {
    width: 23px;
}

.getstarted-checkbox {
    margin: 17px 10px;
}

.getstarted-checkbox[done] img {
    display: initial;
}

.getstarted-checkbox img {
    display: none;
}

.getstarted-checkbox span {
    width: 25px;
    height: 25px;
    border-radius: 100%;
    background: #f0f4f7;
    margin-right: 16px;
    padding: 2px;
}

.getstarted-checkbox[done] span {
    background: none;
}

.checkbox-container-counter {
    width: 62%;
    display: inline-block;
    padding: 50px 30px;
    box-shadow: 0px 0px 16px -1px #f0f4f7;
    border-radius: 11px;
}

.checkbox-container-counter t {
    display: inline-block;
    width: 100%;
    font-size: 31px;
    color: black;
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid #f0f4f7;
}

.checkbox-container-counter k {
    font-size: 13px;
    color: #797a7a;
}

.ui-tooltip {
    box-shadow: 0px 0px 5px #f0f4f7 !important;
    border: 1px solid #dadada !important;
    word-break: break-word !important;
    padding: 6px 15px !important;
}

.theme-add-container input[type="url"] {
    display: inline-block;
    width: 100%;
    margin: 20px 0px;
    padding: 6px 10px;
    font-size: 13px;
    border: none;
    border-bottom: 1px solid gainsboro;
}

.theme-add-container t {
    font-size: 15px;
}

.popup.add-fonts.show-container {
    text-align: left;
}


li#help a {}

li#help a span {}

#menu[right] {
    position: relative;
    margin-top: 50px;
}

#menu[right] li a {
    padding: 0px;
    margin: 0px;
    margin-right: 26px;
    vertical-align: top;
}

#menu[right] img {
    height: 15px;
    opacity: .5;
}

.segment-insights-data {
    padding: 0px;
}

.userpilot-slide.no-beacon .up-t-arrow {
    display: none;
}

.content-header .more {
    display: inline-block;
    margin-left: 13px;
    cursor: pointer;
    position: relative;
    vertical-align: middle;
    margin-top: 6px;
}

.content-header .more options::after {
    content: "\25C0";
    display: inline-block;
    transform: rotate(-90deg);
    color: inherit;
}

emptystate {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    background: white;
    z-index: 1;
    text-align: center;
    height: 100%;
    padding-top: 0px;
    padding-bottom: 30px;
    overflow: auto;
    z-index: 999999;
}

emptystate img {
    width: 400px;
}

emptystate p {
    display: inline-block;
    font-size: 18px;
    color: #3c3c3c;
    line-height: 1.4;
}

emptystatedesc {
    display: inline-block;
    width: 80%;
    font-size: 13px;
    margin-top: 50px;
}

.btn.new-flows.initial.btn-action,
.btn.add.flows.btn-action,
.btn.add.checklist.btn-action {
    padding: 11px 25px;
    font-size: 14px;
    border-radius: 2em;
    float: none;
    margin-top: 30px;
}

.userpilot-up-t-pluse {
    position: fixed;
    width: 14px;
    height: 14px;
    border: none;
    border-radius: 100%;
    color: gainsboro;
    background: gainsboro;
    display: none;
    left: -84px;
    position: absolute;
    top: 90px;
}

.userpilot-up-t-pluse:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: -3px;
    top: -3px;
    background-color: transparent;
    border-radius: 50%;
    border: 7px solid;
    border-color: inherit;
    -webkit-animation: upactive 2s infinite linear;
    animation: upactive 2s infinite linear;
}

@keyframes upactive {
    0% {
        -webkit-transform: scale(.1);
        opacity: 1;
        border-color: inherit;
    }

    30% {
        -webkit-transform: scale(1);
        border: 5px solid;
        border-color: inherit;
        opacity: 1;
    }

    40% {
        -webkit-transform: scale(1.3);
        border: 0px solid;
        border-color: inherit;
    }

    100% {
        border: 0px solid;
        border-color: inherit;
    }
}

@-webkit-keyframes upactive {
    0% {
        -webkit-transform: scale(.1);
        opacity: 1;
        border-color: inherit;
    }

    30% {
        -webkit-transform: scale(1);
        border: 5px solid;
        border-color: inherit;
        opacity: 1;
    }

    40% {
        -webkit-transform: scale(1.3);
        border: 0px solid;
        border-color: inherit;
    }

    100% {
        border: 0px solid;
        border-color: inherit;
    }
}

.exiting-method .cc-card>* {
    display: inline-block;
}

.exiting-method .cc-card {
    padding: 20px;
    border: 1px solid #f0f4f7;
    color: black;
    font-weight: bold;
    border-radius: 5px;
}

.exiting-method .cc-card .cc-exp-data {
    float: right;
    position: relative;
    top: 14px;
    font-weight: normal;
    font-size: 12px;
}

.exiting-method .cc-card .cc-number-data span {
    display: inline-block;
    vertical-align: middle;
}

.exiting-method .cc-card .cc-number-data span:first-child {
    margin-top: 4px;
    margin-right: 4px;
}

.exiting-method span.new-method-data {
    display: inline-block;
    width: 100%;
    text-align: right;
    margin-top: 6px;
    font-size: 12px;
    color: #fd4e87;
    cursor: pointer;
}

data-set[paid] {
    color: green;
    font-weight: bold;
}

data-set[status]:not([paid]) {
    color: red;
}

.payment-status {
    width: 15px;
    display: inline-block;
    vertical-align: middle;
    margin-right: 4px;
    position: relative;
    top: 1px;
}

.payment-status[paid] svg[failed] {
    display: none;
}

.payment-status svg[failed] {
    display: initial;
    display: initial;
    width: 15px;
    height: 15px;
    padding: 4px;
    background: red;
    border-radius: 100%;
}

.payment-status svg[success] {
    display: none;
}

.payment-status[paid] svg[success] {
    display: initial;
    width: 15px;
    height: 15px;
    padding: 4px;
    background: green;
    border-radius: 100%;
}

.payment-status svg {
    fill: white;
}

.spot {
    position: absolute;
    right: 35px;
    top: -2px;
    display: inline-block;
    vertical-align: text-bottom;
    z-index: 2;
}

.spot-content {
    position: absolute;
    width: 190px;
    right: -91px;
    background: #2b2b2b;
    color: white;
    padding: 10px;
    border-radius: 2px;
    margin-top: 7px;
    font-size: 11px;
    visibility: hidden;
    opacity: 1;
}

.spot:hover .spot-content {
    opacity: 1;
    visibility: visible;
}

.spot span {
    display: inline-block;
    width: 15px;
    height: 15px;
    text-align: center;
    border-radius: 100%;
    background: #2b2b2b;
    color: white;
    line-height: 15px;
    font-size: 10px;
    cursor: pointer;
}

.spot-content::after {
    content: "";
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    position: absolute;
    border-bottom: 5px solid #2b2b2b;
    top: -5px;
    left: 45%;
}

#ab h4 {
    display: inline-block;
    margin: 0px;
    font-size: 14px;
    font-weight: bold;
}

#ab .ab-tab {
    display: inline-block;
    margin-left: 20px;
    vertical-align: middle;
}

.ab-tab>div {
    display: inline-block;
    margin: 0px 20px;
    padding: 7px 15px;
    border: 1px solid #f8578a;
    border-radius: 4px;
    cursor: pointer;
}

.ab-tab>div:last-child {
    margin: 0px;
}

.ab-info {
    padding: 10px 15px;
    margin-bottom: 30px;
    border: 1px solid;
    font-size: 14px;
    width: auto;
    display: inline-block;
}

.ab-tab>div.selected {
    background: #f8578a;
    color: white;
    border-color: #f8578a;
}

.ab-tab-data p {
    float: none !important;
    display: inline-block;
    vertical-align: middle;
    margin: 0px;
    cursor: default;
}

.ab-tab-data>div {
    margin-top: 25px;
}

.ab-tab-data>div p:not(:last-child):not(first-child) {
    margin: 0px 10px;
}

.ab-tab-data p.btn.tab-inv-btn {
    color: #fa5489;
    border: 1px solid;
    background: white;
}

.ab-tab-data select {
    padding: 6px;
    background: #f8578a;
    color: white;
    border: none;
    padding: 7px;
    outline: none;
    vertical-align: middle;
}

.ab-tab-data p.btn {
    background: #fa5489;
    border-color: #fa5489;
}

/* Mobile */
@media (max-width: 767px) {

    html,
    body {
        overflow: auto;

    }

    #column-left {
        overflow: auto;
        text-align: center;
    }

    #column-left+#content {
        margin-left: 0;
    }

    #column-left+#content+#footer {
        margin-left: 0;
    }

    #menu[right] {
        position: relative;
        margin: 0px;
        padding: 17px 0px 17px;
        z-index: 99999;
        float: none;
        width: 100%;
        display: inline-block;
        right: 0px;
    }

    /*
    .content-tabs-controller-container {
        width: 100%;
        padding: 35px 20px 20px;
        margin-right: 0px;
        height: auto !important;
        position: relative;
    }
*/
    /*    .content-tabs-top {
        padding: 0px;
        height: auto !important;
        overflow: auto;
        white-space: nowrap;
    }
*/
    .content-title.tab {
        display: inline-block;
        width: auto;
        margin-bottom: 0px;
    }

    .content-tabs-bottom .content-title.tab {
        margin-bottom: 0px;
    }

    .content-tabs-bottom {
        position: relative;
        width: 100%;
        left: 0px;
        left: 0px;
        bottom: 0px;
        padding-top: 25px;
    }

    /*    .content-flows {
        width: 100%;
    }
*/
}

/* UI Select */
.form-select {
    width: 200px;
    display: inline-block;
    vertical-align: top;
}

.ui-select button {
    border-radius: 5px;
    padding: 9px 30px 9px 15px;
    background: none;
    width: 100%;
    text-align: left;
    border: 1px solid #746B87;
    outline: none;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    background: white;
    padding-right: 30px !important;
}

.ui-select {
    font-size: 16px;
    position: relative;
    z-index: 1;
    height: 38px;
}

.ui-select[active] {
    z-index: 2;
}

.ui-options {
    position: absolute;
    width: auto;
    background: white;
    box-shadow: 0px 0px 13px -7px #969696;
    border-radius: 5px;
    top: 0px;
    padding: 10px 0px;
    max-height: 250px;
    min-width: 100%;
    overflow: auto;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
    height: 0px;
}
.ui-options::-webkit-scrollbar {
    display: block;
    background: #dadada;
    width: 7px;
}

.ui-options::-webkit-scrollbar-thumb {
  background: #333;
  border-radius: 2rem;
}

.ui-select[active="1"] .ui-options {
    opacity: 1;
    visibility: visible;
    height: auto;
}

.ui-options .ui-select-option {
    padding: 15px 20px;
    cursor: pointer;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    max-width: 350px;
}

.ui-options .ui-select-option:hover {
    background: whitesmoke;
}

.ui-options .ui-select-option.selected {
    background: #f2f2f2;
}

.ui-select-option[disabled] {
    pointer-events: none;
    opacity: .5;
}

.ui-select .arrow-down {
    position: absolute;
    width: 13px;
    height: 13px;
    top: 0px;
    bottom: 0px;
    margin: auto;
    right: 9px;
    line-height: 10px;
    pointer-events: none;
}

input.form-select-search {
    border: none;
    padding: 15px 20px;
    width: 100%;
}

.arrow-down svg path {
    fill: #78708b !important;
}



.flow-category .form-select {
    display: inline-block;
    vertical-align: middle;
}

.flow-category .form-select button {
    padding: 9px 15px;
}

.ui-select-option-group {
    padding: 15px 20px;
    font-size: 13px;
    font-weight: bold;
    background: #36474f;
    color: white;
}

.ui-options .ui-select-option[selected] {
    background: whitesmoke;
}

/* Experiences / Checklists filter */
[class*=hidden-] {
    display: none !important;
}


/* Autosave */

.autoSavedNotification {
    display: inline-block;
    margin-right: 20px;
    color: #55a958;
    font-size: 13px;
    pointer-events: none;
}

.autoSavedNotification svg {
    display: inline-block;
    margin-right: 3px;
    height: 9px;
}

.autoSavedNotification.danger {
    color: #F44336;
}

.autoSavedNotification.danger svg {
    transform: rotate(45deg);
}

.autoSavedNotification.danger svg path {
    fill: #F44336;
}

div#autosaved-state-actions {
    display: inline-block;
    font-size: 13px;
}

div#autosaved-state-actions>* {
    margin-right: 20px;
    cursor: pointer;
}

div#autosaved-state-actions span#unpublish {
    color: #F44336;
}

div#autosaved-state-actions span#discard-autosave {
    color: #746B87;
}

div#autosaved-state-actions svg {
    height: 9px;
    display: inline-block;
}

/* Analytics */

.segment-insights-multi .data-container {
    height: auto;
    border: none;
    margin: 0px;
    overflow: visible;
}

.segment-insights-multi .segment-insights-data {
    height: auto;
}

.segment-insights-multi .segment-insights-data>div {
    padding: 40px 0px;
    border: 1px solid #f2f2f2;
    border-radius: 5px;
    text-align: center;
    width: 95%;
    display: inline-block;
    /* margin: 0px auto; */
}

.segment-insights-multi .segment-insights-data h4 {
    margin: 0px;
    color: black;
}

.segment-insights-multi .segment-insights-data .top-container {
    min-height: auto;
    display: inline-block;
    height: auto;
    margin-bottom: 20px;
}

.segment-insights-multi .segment-insights-data b,
.segment-insights-multi .segment-insights-data h1 {
    margin: 0px;
}

.filters-used.active {
    background: #78708b;
    color: white;
    border-color: #78708b;
}

.filters-used {
    display: inline-block;
    margin-right: 15px;
    vertical-align: middle;
    padding: 9px;
    font-size: 16px;
    color: #78708b;
    border: 1px solid;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s;
}

div#analytics-error-message {
    padding: 35px;
}

.btn.categories {
    margin-right: 20px;
    background: #746B87;
    border-color: #746B87;
}

.modal-backdrop {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    background-color: #37474f40;
    width: 100%;
    height: 100%;
    z-index: 9999999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
}

.modal-backdrop.active {
    opacity: 1;
    visibility: visible;
}

.modal-backdrop svg {
    width: 15px;
}

.modal-container {
    display: inline-block;
    position: absolute;
    margin: auto;
    left: 0px;
    right: 0px;
    top: 0px;
    bottom: 0px;
    width: 400px;
    background: white;
    height: 500px;
    overflow: auto;
    border-radius: 5px;
}

.modal-content {
    box-shadow: none !important;
    border: none !important;
    padding: 20px;
    height: 432px;
    overflow: auto;
}

.modal-header .modal-title>* {
    margin: 0px;
}

.modal-header {
    padding: 20px;
}

.modal-header>div:last-child {
    position: absolute;
    right: 20px;
    top: 27px;
    cursor: pointer;
}

.category-item>* {
    display: inline-block;
    vertical-align: middle;
}

.category-item .item-title {
    font-size: 15px;
    margin: 10px;
    padding: 5px 10px;
    border-radius: 2rem;
    background: #746B87;
    color: white;
    min-width: 43px;
    min-height: 30px;
    max-width: 250px;
    overflow: auto;
    white-space: nowrap;
}

.item-actions svg {
    height: 10px;
}

.item-actions>* {
    display: inline-block;
    cursor: pointer;
    margin-right: 8px;
}

.category-item .item-actions {
    display: none;
}

.category-item.active .item-actions {
    display: inline-block;
}

.category-item:not(.new-item):hover .item-actions {
    display: inline-block;
}

.category-item:not(.new-item):not(.active) .item-apply,
.category-item:not(.new-item):not(.active) .item-cancel {
    display: none;
}

.category-item:not(.new-item).active .item-edit,
.category-item:not(.new-item).active .item-remove {
    display: none;
}

.category-item.new-item .item-title {
    background: none;
    color: #746b87;
    border: 1px solid;
    cursor: pointer;
}

.category-item.new-item {
    margin-top: 30px;
}


/* Empty State */

.empty-state {
    text-align: center;
    font-size: 20px;
    color: black;
}

.empty-state .header {
    padding: 32px 35px;
    margin-bottom: 35px;
    text-align: left;
    border-bottom: 1px solid #f2f2f2;
}

.empty-state-image svg {
    width: 100px;
    display: inline-block;
}


.empty-state-content {
    width: 70%;
    display: inline-block;
}

.empty-state-image {
    margin-bottom: 25px;
}

.empty-state-content>* {
    margin: 0px;
    margin-bottom: 25px;
}

.empty-state-content>p {
    margin-bottom: 25px;
}

.empty-state-content>h2 {
    font-weight: bold;
}

.empty-state-action {
    margin-top: 0px;
}

.content-title-sub-menu-container .theme svg {
    height: 20px;
    display: inline-block;
    vertical-align: middle;
    margin-right: 25px;
    opacity: 0.3;
}

.content-title-sub-menu-container .theme.selected svg {
    opacity: 1;
}

.new-theme.btn {
    width: 90%;
    padding: 10px 0px;
    color: white;
    background: #746b87;
    border-color: #746b87;
}

.form-group {
    /* padding: 0px 4vw; */
}

label {
    margin-bottom: 0px;
    margin-top: 10px;
}

.content-form {
    padding-top: 2vw;
}

.content-form .content-header {
    margin: 2vw 0px 0px;

    padding: 0px 4vw;
}

.btn {
    margin-top: 0px;
}

.modal-content .btn {
    margin-top: 30px;
}

.form label {
    margin: 0px;
}


.form>div {
    margin-bottom: 20px;
}

.checklist-coloring .userpilot-color-picker-container {
    margin-left: -225px !important;
    z-index: 9;
}

.checkbox-group label {
    display: inline-block;
    position: relative;
    width: auto;
}

.step-container {
    /* min-height: 90% !important; */
}

.nps-settings .form-group.flow-category p {
    display: inline-block;
    margin: 0px;
    margin-right: 20px;
    font-size: 16px;
    vertical-align: middle;
}

.nps-settings #triggering .form-group.flow-category>div {
    margin-bottom: 20px;
}

.nps-settings #triggering .form-group.flow-category>div>input {
    width: 60px;
}

span#remove-state .btn {
    background: none;
    border: none;
    box-shadow: none !important;
    color: #746B87;
}

span#remove-state {
    margin-left: 10px;
}

span#remove-state .btn svg {
    height: 10px;
}

.settings-content .form label {
    width: 300px;
}

.settings-content .form input {
    width: 30%;
}

.modal-content .modal-form h4 {
    display: inline-block;
    width: 135px;
}

.modal-content .modal-form>div {
    margin-bottom: 20px;
}

.modal-content .modal-form>div:last-child {
    margin-bottom: 0px;
}

.modal-content .modal-form>div .form-select {
    vertical-align: middle;
    width: 182px;
}

.member-role .form-select {
    width: 110px;
    vertical-align: middle;
}

.nps-col-1 {
    display: inline-block;
    width: 40%;
    padding-left: 80px;
}

.nps-col-2 {
    display: inline-block;
    width: 59%;
    vertical-align: middle;
}

.bar>* {
    display: inline-block;
    vertical-align: middle;
}

.bar>div:not(:first-child):not(:last-child) {
    vertical-align: middle;
    margin: 0px 30px;
}

div#nps-bar {
    width: 65%;
    position: relative;
    margin-left: 20px;
}

div#nps-bar div {
    min-width: 10px;
    height: 50px;
    border-radius: 2px;
}

div#nps-bar>span {
    position: absolute;
    left: 100%;
    margin-left: 10px;
    top: 18px;
}

.bar.promoters>div:not(:first-child)>div {
    background: #4CAF50;
}

.bar.passives>div:not(:first-child)>div {
    background: #2196F3;
}

.bar.detractors>div:not(:first-child)>div {
    background: #F44336;
}

.bar {
    font-size: 15px;
    margin-bottom: 30px;
}

.bar>div:first-child {
    text-align: right;
    width: 65px;
}

.nps-col-1 h1 {
    font-size: 45px;
    color: black;
}

.nps-results {
    border-bottom: 1px solid #F2F2F2;
    padding-bottom: 45px;
    margin-bottom: 45px;
}

.nps-box {
    display: inline-block;
    padding: 40px 20px;
    border: 1px solid #F2F2F2;
    text-align: center;
    width: 250px;
    margin: 0px 10px;
    border-radius: 5px;
}

.nps-box h2 {
    font-size: 17px;
}

.responses-content th {
    width: 55px;
}

.responses-content table {
    width: 100%;
}

.responses-content td#passive svg path {
    fill: #2096f3 !important;
}

.responses-content td#detractor svg path {
    fill: #F44336 !important;
}

.responses-content td svg {
    width: 33px;
    position: absolute;
    left: 0px;
    top: 19px;
}

.responses-content table td {
    line-height: 5;
}

.responses-content td {
    position: relative;
}

.responses-content table td span {
    position: relative;
    z-index: 1;
    display: inline-block;
    margin-left: 12px;
    color: white;
    top: -3px;
}

.responses-content table {
    font-size: 15px;
}

.nps-container .color {
    width: 25px;
    height: 25px;
    display: inline-block;
    border-radius: 100%;
    vertical-align: middle;
    cursor: pointer;
    margin-right: 1vw;
    border: 1px solid #ececec;
    z-index: 999999999;
    position: relative;
}

table.dataTable {
    font-size: 15px;
    color: black;
}

table.dataTable thead th,
table.dataTable thead td {
    font-size: 13px;
}

select.ui-inited {
    display: none !important;
}

.audience-info .form-select {
    width: auto;
}

.segmentation-container.users-analytics {
    background: #37474F;
}

.segmentation-container.users-analytics .goals-empty-state p,
.segmentation-container.users-analytics .segments-empty-state p {
    color: white;
}

.segmentation-container.users-analytics .matching-criteria-container>p>b {
    color: white;
}

.segmentation-container.users-analytics .segment>.userpilot-and-or-operator>div:first-child>span {
    background: white;
}

.segmentation-container.users-analytics #userpilot-plus path {
    fill: white;
}

.segmentation-container.users-analytics .unit {
    color: white;
}

.segmentation-container.users-analytics .ui-select button {
    border: none;
}

.new-checklist.nps-settings-container .form {
    overflow: visible;
}

.nps-iframe-containers {
    min-height: 300px;
    width: 100%;
    position: relative;
    padding: 10px;
    background: #4c4b4b;
}

.btn.userpilot-image-logo.nps-logo {
    background: #746b87;
    border: 1px solid #746b87;
}

.nps-settings-container .col {
    width: 100%;
    min-height: 220px;
}

.nps-settings-container .list-row#look-feel .form c,
.nps-settings-container .list-row#content .form c {
    width: 50% !important;
    margin-right: -4px;
    vertical-align: bottom;
    padding-right: 20px;
}

.nps-settings-container .list-row#look-feel .form c t {
    width: 130px;
    float: none;
    vertical-align: middle;
}

.nps-settings-container .checkbox-group>div {
    margin-bottom: 0px;
}

.list-row#content .nps-container .form c t {
    float: none;
    width: 200px;
    vertical-align: middle;
}

.nps-settings-container .list-row#content .form input[type='text'] {
    float: right;
}

div.nps-progress {
    float: right;
    position: relative;
    top: -1px;
    padding: 5px 10px;
    font-size: 14px;
    background: #746b87 !important;
    border: none !important;
    box-shadow: none !important;
}

.users-analytics .matching-operand {
    color: white;
}

.users-analytics .cri-placeholder {
    color: white;
}

#targeting .experience-edit-container c,
#triggering .experience-edit-container c {
    padding: 0px !important;
}

.goal-insight svg, .content-title.tab img, .content-title.tab svg {
    width: 15px !important;
    vertical-align: middle;
}

table.dataTable thead th,
table.dataTable thead td {
    white-space: nowrap;
    max-width: 210px;
    text-overflow: ellipsis;
    overflow: hidden;
}

table.dataTable tbody th,
table.dataTable tbody td {
    padding: 15px;
    white-space: nowrap;
    max-width: 210px;
    text-overflow: ellipsis;
    overflow: hidden;
}

.create-new-goal {
    width: 90%;
    padding: 10px 0px;
    background: #746b87 !important;
    border: 1px solid #746b87 !important;
    text-align: center;
    color: white;
    border-radius: 5px;
}

.create-new-goal span {
    color: white !important;
    font-size: 16px !important;
    max-width: 100% !important;
}

.content-header .segment-edit-container h1.title {
    height: 34px;
    min-width: 10px;
}


.table-header > div, div#stepCompletion .group div:not(.group-row):not(.step) {
    display: inline-block;
    font-size: 14px;
    padding: 15px;
    min-width: 14%;
    vertical-align: middle;
}

div#stepCompletion {
    margin-bottom: 45px;
}
div#stepCompletion .group  div#expand {
    min-width: 0px;
    float: right;
    cursor: pointer;
}
div#stepCompletion .group-row div#group-content {
    width: 180px;
    overflow: hidden;
    white-space: nowrap;
    vertical-align: middle;
    text-overflow: ellipsis;
}
.group .group-row {
    font-weight: bold;
}
.group .group-row.sub-row {
    display: none;
}
.group-row.sub-row.active {
    display: block;
}
div#stepCompletion .group  div#expand.active {
    transform: rotate(90deg);
}
.group .group-row:not(.sub-row) {
    background: whitesmoke;
    border-radius: 5px;
    margin-bottom: 5px;
}
div#stepCompletion .group div:not(.group-row):not(.step):first-child {
    width: 122px;
}

.table-header > div:first-child {
    width: 122px;
}

div#stepCompletion .group div:not(.group-row):not(.step) {
    font-weight: 600;
}

.table-header > div {
    font-weight: bold;
}

.integration-logo {
    width: auto;
    position: absolute;
    margin: auto;
    left: 0px;
    top: 0px;
    right: 0px;
    bottom: 0px;
    height: 20px;
    text-align: center;
}

div#integration {
    display: inline-block;
    width: 80%;
    height: 100px;
    position: relative;
    box-shadow: 0px 0px 13px -8px #37464f;
    border-radius: 5px;
    cursor: pointer;
    transition: border 0.3s;
    border: 2px solid transparent;
}

.integration-logo svg {
    height: 100%;
}

div#integration:hover, div#integration[active='1'] {
    border: 2px solid #f65a8b;
}
.remove-integration, .add-integration {
    position: absolute;
    right: 5px;
    font-size: 22px;
    color: #37464f;
    display: none;
}

div#integration[active='0']:hover .add-integration {
    display: block;
}

div#integration[active='1']:hover .remove-integration {
    display: block;
}
div#integration[int='mixpanel'] .integration-logo, div#integration[int='amplitude'] .integration-logo, div#integration[int='intercom'] .integration-logo, div#integration[int='segment'] .integration-logo {
  height: 30px;
}
div#integration[int='gtm'] .integration-logo {
  height: 23px;
}
div#integration-container {
  display: inline-block;
  width: 25%;
  margin-right: -4px;
  text-align: center;
}
.integration-row {
    width: 100%;
    display: inline-block;
    margin-bottom: 45px;
}
textarea.value {
    border: none;
    padding: 10px;
    vertical-align: middle;
    border-radius: 5px;
    width: 300px;
    height: 150px;
    font-size: 15px;
    color: black;
    border: 1px solid #78708b;
}



.nps-emptystate {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    background: white;
    z-index: 1;
    text-align: center;
    height: 100%;
    padding-top: 0px;
    padding-bottom: 30px;
    overflow: auto;
    z-index: 999999999999999999;
    height: 100vh;
}

div#back-btn {
    width: 20px;
    display: inline-block;
    cursor: pointer;
    margin-right: 10px;
    vertical-align: middle;
    line-height: 0;
    padding: 5px;
    position: relative;
    top: 1px;
}

div#back-btn polygon {
    fill: white;
}

#element-selector {
    width: 200px
}

input#element-selector-input {
    width: 30%;
    height: 36px;
}



.form-left {
    width: 250px;
    display: inline-block;
    float: left;
    text-align: left;
    line-height: 1;
}

#widget-manual-script {
    width: 425px;
    color: #525252;
    background: gainsboro;
    border-radius: 5px;
    font-family: sans-serif;
    font-size: 14px;
    text-align: center;
    padding: 20px;
    font-weight: bold;
}

.widget-large-text {
    width: 39%;
    font-size: 16px;
    padding: 5px 9px;
    border-radius: 5px;
    border: 1px solid #4C4C4C;
    vertical-align: middle;
    resize: none;
    height: 80px;
}

.form-submit {
    display: inline-block;
    background: #746B87;
    vertical-align: middle;
    font-size: 16px;
    padding: 10px;
    border-radius: 5px;
    color: white;
    width: 150px;
    text-align: center;
    cursor: pointer;
}

#beacon-type-options > div {
    width: fit-content;
    display: inline-block;
    margin-right: 50px;
}

input#beacon-adjust-position {
    width: 75px;
}

#enable-search {
    display: inline-block;
    margin-left: 180px;
    height: 17px;
    width: 17px;
    line-height: -1;
    margin-top: 4px;
}

input[type="checkbox"]#enable-search:checked::after {
    position: relative;
    top: 2px;
    left: 2px;
    width: 12px;
    display: block;
}

div#add-module {
    font-size: 15px;
    margin-top: 30px;
}

.submit-module {
    float: none !important;
    margin-bottom: 0px !important;
    font-size: 15px !important;
}

#widget-content-modules {
    width: 100%;
    font-size: 15px;
}

.settings-module-entry {
    padding: 15px;
    margin-bottom: 29px;
    border-radius: 5px;
    background: #f2f2f2;
    transition: transform 0.3s ease-in-out;
}

.settings-module-title {
    margin-bottom: 5px;
    margin-top: 15px;
    font-weight: bold;
    color: #37474f;
}

#module-editor-tools {
    position: absolute;
    visibility: hidden;
    opacity: 0;
    transition: visibility 0.3s linear, opacity 0.3s linear;
    width: 100%;
    left: 0px !important;
    text-align: right;
}

#module-editor-tools > div {
    display: inline-block;
    position: relative;
    background-color: #37474f;
    border-radius: 100%;
    height: 20px;
    width: 20px;
    cursor: pointer;
    text-align: center;
}
#module-editor-tools > div:last-child {
    margin-left: 10px;
}

#module-editor-tools > div svg {
    width: 8px;
    height: 100%;
}

#module-reposition-tool {
    position: absolute;
    visibility: hidden;
    opacity: 0;
    transition: visibility 0.3s linear, opacity 0.3s linear;
    background-color: #f2f2f2;
    border-radius: 0px;
    height: 20px;
    width: 25px;
    cursor: grab;
    text-align: center;
    margin-left: 10px;
    z-index: 0;
    border-bottom-left-radius: 5px;
    border-top-left-radius: 5px;
}

#module-reposition-tool svg {
    width: 12px;
    height: 100%;
}





#module-entry-editor-tools {
    position: absolute;
    visibility: hidden;
    opacity: 0;
    transition: visibility 0.3s linear, opacity 0.3s linear;
    z-index: 9;
    /* width: 62px; */
    text-align: left;
}

#module-entry-editor-tools > div {
    display: inline-block;
    position: relative;
    background-color: #1f2532;
    border-radius: 100%;
    height: 20px;
    width: 20px;
    cursor: pointer;
    text-align: center;
}

#module-entry-editor-tools > div svg {
    width: 9px;
    height: 100%;
}

#module-entry-reposition-tool {
    position: absolute;
    visibility: hidden;
    opacity: 0;
    transition: visibility 0.3s linear, opacity 0.3s linear;
    background-color: #1f2532;
    border-radius: 100%;
    height: 20px;
    width: 20px;
    cursor: grab;
    text-align: center;
    z-index: 9;
}

#module-entry-reposition-tool svg {
    width: 12px;
    height: 100%;
}

input.module-checkbox {
    display: inline-block;
    margin-top: 6px !important;
}

input.module-checkbox[type="checkbox"]:checked::after {
    top: 1.5px;
}

#custom-js-script {
    width: 500px;
    border: 1px solid;
    border-radius: 5px;
    height: 200px;
    padding: 10px 10px;
    font-size: 15px;
}



.experiences-list li {
    display: inline-block;
    margin-left: 15px;
    margin-top: 10px;
    width: 95%;
    transition: transform 0.3s ease-in-out;
}

.experiences-list li span {
    display: list-item;
    width: calc(100% - 60px);
}

#delete-module {
    visibility: hidden;
    opacity: 0;
    position: absolute;
    text-align: center;
    background: #ffffff;
    border: 1px solid #808080;
    border-radius: 5px;
    padding: 10px 10px;
    transition: opacity 0.3s linear, transform 0.5s ease-in-out;
    left: auto !important;
    right: 0px;
    z-index: 9;
}

.delete-module-btn {
    padding: 5px 15px !important;
    font-size: 14px !important;
    float: none !important;
    margin: 0px 15px !important;
}

.submit-error {
    position: absolute;
    display: block;
    margin-top: 5px;
    color: red;
    opacity: 0;
    transition: opacity 0.1s linear;
}

.flex {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
}

.flex-center {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;

    -webkit-flex-direction: row;
    -moz-flex-direction: row;
    -ms-flex-direction: row;
    -o-flex-direction: row;
    flex-direction: row;

    -webkit-box-align: center;
    -moz-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

.flex-space-between{
    justify-content: space-between;
    -webkit-box-pack: space-between;
    -moz-box-pack: space-between;
    -webkit-justify-content: space-between;
    -ms-flex-pack: space-between;
}

.flex-space-around{
    justify-content: space-around;
    -webkit-box-pack: space-around;
    -moz-box-pack: space-around;
    -webkit-justify-content: space-around;
    -ms-flex-pack: space-around;
}

.module-icon {
    cursor: pointer;
    min-width: 200px;
}

.module-icon svg{
    width: 100px;
}

.module-icon p {
    font-size: 18px;
    white-space: nowrap;
    margin-top: 11px;
}

.module-icons-row{
    margin-top: 40px;
    margin-bottom: 40px;
}

#back-module-popup {
    position: absolute;
    left: 30px;
    top: 30px;
    opacity: .5;
    cursor: pointer;
}

.module-container {
    opacity: 0;
    transition: opacity 0.7s linear;
}



/* Resource Centre dashbord */
#resource-centre-settings {
    margin-top: 0px;
    font-size: 16px;
}

#resource-centre-activity {
    padding: 0px;
    width: 100%;
}

#resource-stats {
    padding: 40px 5%;
}

.stat-box {
    min-width: 250px;
    text-align: center;
    padding: 25px 35px;
    font-size: 25px;
    border: 1px solid #F2F2F2;
    font-weight: 500;
    font-family: 'Titillium Web', 'Open Sans', sans-serif;
    color: #666666;
}

.stat-box > div:first-child {
    margin-bottom: 20px;
}

.resource-centre-stats-table span {
    width: 120px;
    text-align: center;
}

.resource-centre-stats-table > div:first-child {
    flex: 0.3;
    -webkit-flex: 0.3;
    -ms-flex: 0.3;
}

.resource-centre-stats-table > div:last-child {
    flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
}
.module-type {
    position: relative;
    font-size: 13px;
}
.middle-t
{
  float: none !important;
}
.section-option {
    margin-bottom: 20px;
}
.form-group > .section-option:last-child {
    margin-bottom: 0px;
}

.section-option t {
    font-weight: normal !important;
    vertical-align: middle !important;
}
.section-option .form-select {
    vertical-align: middle !important;
}
.new-checklist .list-row:not(#targeting):not(#triggering) .form c > .section-option:last-child {
    margin: 0px;
}

.flow-domains.flex > label {
    margin-left: 5px;
}

.flow-domains.flex {
    align-items: center;
}
.settings-module-entry .module-settings-content .module-emoji {
    position: relative;
    width: fit-content;
    font-size: 30px;
    cursor: pointer;
}

.settings-module-entry .module-settings-content .module-emoji svg {
    width: 30px;
    height: 42px;
}

.settings-module-entry .module-settings-content .module-emoji .remove-emoji {
    font-size: 10px;
    font-weight: 900;
    position: absolute;
    top: 0px;
    transform: translate(100%, -50%);
    right: 0px;
    opacity: 0;
    transition: opacity 0.3s linear;
}
-.settings-module-entry .module-settings-content .module-emoji {
    position: relative;
    width: fit-content;
    font-size: 30px;
    cursor: pointer;
}

.settings-module-entry .module-settings-content .module-emoji svg {
    width: 30px;
    height: 42px;
}

.settings-module-entry .module-settings-content .module-emoji .remove-emoji {
    font-size: 10px;
    font-weight: 900;
    position: absolute;
    top: 0px;
    transform: translate(100%, -50%);
    right: 0px;
    opacity: 0;
    transition: opacity 0.3s linear;
}

#userpilot-resource-centre-frame.settings-preview {
    height: calc(100vh - 130px) !important;
    width: calc(100% - 216px) !important;
    margin-top: 130px !important;
    box-shadow: none !important;
    transform: none !important;
    right: 0px !important;
    left: initial !important;
    top: 0px !important;
    background: whitesmoke;
    border-radius: 0px !important;
}
.resourceCentreSettings.new-checklist .list-row:not(#targeting):not(#triggering) .form c
{
  border: 0px;
  margin-bottom: 0px;
}
.segment-insight-data .dataTables_processing .fa-spinner {
  background: white;
  border-radius: 100%;
  border: 5px dashed;
  width: 30px;
  height: 30px;

}
.segment-insight-data .dataTables_processing .fa-spinner::before{
  content: ""
}
.ui-select-option[label*='-- Select'] {
    display: none;
}

.experience-edit-container .extra-info.disabled, .flow-general-info.disabled > c:last-child{
    pointer-events: none;
    opacity: 0.7;
}

.note.userpilot-note {
    position: absolute;
    z-index: 9;
    color: black;
    background: white;
    width: 280px;
    padding: 15px;
    text-align: left;
    word-break: break-all;
    box-shadow: 0px 0px 17px -7px grey;
    border-radius: 5px;
    white-space: initial;
    opacity: 0;
    visibility: hidden;
    margin-top: 0px;
    transition: margin-top 0.3s, opacity 0.2s, visibility 0.2s;
    font-size: 14px;
    line-height: 1.5;
}

.note.userpilot-note p {word-break: break-word;width: 100%;margin-bottom: 0px;}
.content-title .tutorial_status:hover .note.userpilot-note {
    opacity: 1;
    visibility: visible;
    margin-top: 10px;
}
.note.userpilot-note b {
    margin-bottom: 10px;
    display: block;
}
.note.userpilot-note .btn {
    font-size: 13px;
    margin-top: 30px;
    padding: 5px 10px;
    float: right;
}/*! Pickr 1.4.2 MIT | https://github.com/Simonwep/pickr */

.pickr {
    /* position: relative; */
    /* overflow: visible; */
    transform: translateY(0)
}

.pickr * {
    /* box-sizing: border-box; */
    /* outline: none;
    border: none; */
    /* -webkit-appearance: none */
}

.pickr .pcr-button {
    /* position: relative; */
    height: 2em;
    width: 2em;
    padding: .5em;
    cursor: pointer;
    /* font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, sans-serif; */
    border-radius: .15em;
    /* background: url('data:image/svg+xml;utf8, <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 50 50" stroke="%2342445A" stroke-width="5px" stroke-linecap="round"><path d="M45,45L5,5"></path><path d="M45,5L5,45"></path></svg>') no-repeat 50%; */
    background-size: 0;
    /* transition: all .3s */
}

.pickr .pcr-button:before {
    /* background: url('data:image/svg+xml;utf8, <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 2 2"><path fill="white" d="M1,0H2V1H1V0ZM0,1H1V2H0V1Z"/><path fill="gray" d="M0,0H1V1H0V0ZM1,1H2V2H1V1Z"/></svg>'); */
    background-size: .5em;
    z-index: -1;
    z-index: auto
}

.pickr .pcr-button:after, .pickr .pcr-button:before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* border-radius: .15em */
}

.pickr .pcr-button:after {
    transition: background .3s;
    background: currentColor
}

.pickr .pcr-button.clear {
    background-size: 70%
}

.pickr .pcr-button.clear:before {
    opacity: 0
}

.pickr .pcr-button.clear:focus {
    box-shadow: 0 0 0 1px hsla(0, 0%, 100%, .85), 0 0 0 3px currentColor
}

.pickr .pcr-button.disabled {
    cursor: not-allowed
}

.pcr-app *, .pickr * {
    box-sizing: border-box;
    outline: none;
    border: none;
    -webkit-appearance: none
}

.pcr-app button.pcr-active, .pcr-app button:focus, .pcr-app input.pcr-active, .pcr-app input:focus, .pickr button.pcr-active, .pickr button:focus, .pickr input.pcr-active, .pickr input:focus {
    box-shadow: 0 0 0 1px hsla(0, 0%, 100%, .85), 0 0 0 3px currentColor
}

.pcr-app .pcr-palette, .pcr-app .pcr-slider, .pickr .pcr-palette, .pickr .pcr-slider {
    transition: box-shadow .3s
}

.pcr-app .pcr-palette:focus, .pcr-app .pcr-slider:focus, .pickr .pcr-palette:focus, .pickr .pcr-slider:focus {
    box-shadow: 0 0 0 1px hsla(0, 0%, 100%, .85), 0 0 0 3px rgba(0, 0, 0, .25)
}

.pcr-app {
    position: fixed;
    display: flex;
    flex-direction: column;
    z-index: 10000;
    border-radius: .1em;
    background: #fff;
    opacity: 0;
    visibility: hidden;
    transition: opacity .3s, visibility 0s .3s;
    font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, sans-serif;
    box-shadow: 0 .15em 1.5em 0 rgba(0, 0, 0, .1), 0 0 1em 0 rgba(0, 0, 0, .03);
    left: 0;
    top: 0
}

.pcr-app.visible {
    transition: opacity .3s;
    visibility: visible;
    opacity: 1
}

.pcr-app .pcr-swatches {
    display: flex;
    flex-wrap: wrap;
    margin-top: .75em
}

.pcr-app .pcr-swatches.pcr-last {
    margin: 0
}

@supports (display:grid) {
    .pcr-app .pcr-swatches {
        display: grid;
        align-items: center;
        grid-template-columns: repeat(auto-fit, 1.75em)
    }
}

.pcr-app .pcr-swatches>button {
    font-size: 1em;
    position: relative;
    width: calc(1.75em - 5px);
    height: calc(1.75em - 5px);
    border-radius: .15em;
    cursor: pointer;
    margin: 2.5px;
    flex-shrink: 0;
    justify-self: center;
    transition: all .15s;
    overflow: hidden;
    background: transparent;
    z-index: 1
}

.pcr-app .pcr-swatches>button:before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8, <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 2 2"><path fill="white" d="M1,0H2V1H1V0ZM0,1H1V2H0V1Z"/><path fill="gray" d="M0,0H1V1H0V0ZM1,1H2V2H1V1Z"/></svg>');
    background-size: 6px;
    border-radius: .15em;
    z-index: -1
}

.pcr-app .pcr-swatches>button:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: currentColor;
    border: 1px solid rgba(0, 0, 0, .05);
    border-radius: .15em;
    box-sizing: border-box
}

.pcr-app .pcr-swatches>button:hover {
    -webkit-filter: brightness(1.05);
    filter: brightness(1.05)
}

.pcr-app .pcr-interaction {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin: 0 -.2em
}

.pcr-app .pcr-interaction>* {
    margin: 0 .2em
}

.pcr-app .pcr-interaction input {
    letter-spacing: .07em;
    font-size: .75em;
    text-align: center;
    cursor: pointer;
    color: #75797e;
    background: #f1f3f4;
    border-radius: .15em;
    transition: all .15s;
    padding: .45em .5em;
    margin-top: .75em
}

.pcr-app .pcr-interaction input:hover {
    -webkit-filter: brightness(.975);
    filter: brightness(.975)
}

.pcr-app .pcr-interaction input:focus {
    box-shadow: 0 0 0 1px hsla(0, 0%, 100%, .85), 0 0 0 3px rgba(66, 133, 244, .75)
}

.pcr-app .pcr-interaction .pcr-result {
    color: #75797e;
    text-align: left;
    flex: 1 1 8em;
    min-width: 8em;
    transition: all .2s;
    border-radius: .15em;
    background: #f1f3f4;
    cursor: text
}

.pcr-app .pcr-interaction .pcr-result::-moz-selection {
    background: #4285f4;
    color: #fff
}

.pcr-app .pcr-interaction .pcr-result::selection {
    background: #4285f4;
    color: #fff
}

.pcr-app .pcr-interaction .pcr-type.active {
    color: #fff;
    background: #4285f4
}

.pcr-app .pcr-interaction .pcr-cancel, .pcr-app .pcr-interaction .pcr-clear, .pcr-app .pcr-interaction .pcr-save {
    width: auto;
    color: #fff
}

.pcr-app .pcr-interaction .pcr-cancel:hover, .pcr-app .pcr-interaction .pcr-clear:hover, .pcr-app .pcr-interaction .pcr-save:hover {
    -webkit-filter: brightness(.925);
    filter: brightness(.925)
}

.pcr-app .pcr-interaction .pcr-save {
    background: #4285f4
}

.pcr-app .pcr-interaction .pcr-cancel, .pcr-app .pcr-interaction .pcr-clear {
    background: #f44250
}

.pcr-app .pcr-interaction .pcr-cancel:focus, .pcr-app .pcr-interaction .pcr-clear:focus {
    box-shadow: 0 0 0 1px hsla(0, 0%, 100%, .85), 0 0 0 3px rgba(244, 66, 80, .75)
}

.pcr-app .pcr-selection .pcr-picker {
    position: absolute;
    height: 18px;
    width: 18px;
    border: 2px solid #fff;
    border-radius: 100%;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none
}

.pcr-app .pcr-selection .pcr-color-chooser, .pcr-app .pcr-selection .pcr-color-opacity, .pcr-app .pcr-selection .pcr-color-palette {
    position: relative;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    display: flex;
    flex-direction: column;
    cursor: grab;
    cursor: -webkit-grab
}

.pcr-app .pcr-selection .pcr-color-chooser:active, .pcr-app .pcr-selection .pcr-color-opacity:active, .pcr-app .pcr-selection .pcr-color-palette:active {
    cursor: grabbing;
    cursor: -webkit-grabbing
}

.pcr-app[data-theme=nano] {
    width: 14.25em;
    max-width: 95vw
}

.pcr-app[data-theme=nano] .pcr-swatches {
    margin-top: .6em;
    padding: 0 .6em
}

.pcr-app[data-theme=nano] .pcr-interaction {
    padding: 0 .6em .6em
}

.pcr-app[data-theme=nano] .pcr-selection {
    display: grid;
    grid-gap: .6em;
    grid-template-columns: 1fr 4fr;
    grid-template-rows: 5fr auto auto;
    align-items: center;
    height: 10.5em;
    width: 100%;
    align-self: flex-start
}

.pcr-app[data-theme=nano] .pcr-selection .pcr-color-preview {
    grid-area: 2/1/4/1;
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    margin-left: .6em
}

.pcr-app[data-theme=nano] .pcr-selection .pcr-color-preview .pcr-last-color {
    display: none
}

.pcr-app[data-theme=nano] .pcr-selection .pcr-color-preview .pcr-current-color {
    position: relative;
    background: currentColor;
    width: 2em;
    height: 2em;
    border-radius: 50em;
    overflow: hidden
}

.pcr-app[data-theme=nano] .pcr-selection .pcr-color-preview .pcr-current-color:before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8, <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 2 2"><path fill="white" d="M1,0H2V1H1V0ZM0,1H1V2H0V1Z"/><path fill="gray" d="M0,0H1V1H0V0ZM1,1H2V2H1V1Z"/></svg>');
    background-size: .5em;
    border-radius: .15em;
    z-index: -1
}

.pcr-app[data-theme=nano] .pcr-selection .pcr-color-palette {
    grid-area: 1/1/2/3;
    width: 100%;
    height: 100%;
    z-index: 1
}

.pcr-app[data-theme=nano] .pcr-selection .pcr-color-palette .pcr-palette {
    border-radius: .15em;
    width: 100%;
    height: 100%
}

.pcr-app[data-theme=nano] .pcr-selection .pcr-color-palette .pcr-palette:before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8, <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 2 2"><path fill="white" d="M1,0H2V1H1V0ZM0,1H1V2H0V1Z"/><path fill="gray" d="M0,0H1V1H0V0ZM1,1H2V2H1V1Z"/></svg>');
    background-size: .5em;
    border-radius: .15em;
    z-index: -1
}

.pcr-app[data-theme=nano] .pcr-selection .pcr-color-chooser {
    grid-area: 2/2/2/2
}

.pcr-app[data-theme=nano] .pcr-selection .pcr-color-opacity {
    grid-area: 3/2/3/2
}

.pcr-app[data-theme=nano] .pcr-selection .pcr-color-chooser, .pcr-app[data-theme=nano] .pcr-selection .pcr-color-opacity {
    height: .5em;
    margin: 0 .6em
}

.pcr-app[data-theme=nano] .pcr-selection .pcr-color-chooser .pcr-picker, .pcr-app[data-theme=nano] .pcr-selection .pcr-color-opacity .pcr-picker {
    top: 50%;
    transform: translateY(-50%)
}

.pcr-app[data-theme=nano] .pcr-selection .pcr-color-chooser .pcr-slider, .pcr-app[data-theme=nano] .pcr-selection .pcr-color-opacity .pcr-slider {
    flex-grow: 1;
    border-radius: 50em
}

.pcr-app[data-theme=nano] .pcr-selection .pcr-color-chooser .pcr-slider {
    background: linear-gradient(90deg, red, #ff0, #0f0, #0ff, #00f, #f0f, red)
}

.pcr-app[data-theme=nano] .pcr-selection .pcr-color-opacity .pcr-slider {
    background: linear-gradient(90deg, transparent, #000), url('data:image/svg+xml;utf8, <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 2 2"><path fill="white" d="M1,0H2V1H1V0ZM0,1H1V2H0V1Z"/><path fill="gray" d="M0,0H1V1H0V0ZM1,1H2V2H1V1Z"/></svg>');
    background-size: 100%, .25em
}