﻿html {
    box-sizing: border-box;
}

*, *:before, *:after {
    box-sizing: inherit;
}

html {
    height: 100%;
    overflow-y: scroll;
}

#maindiv {
    min-height: calc(100vh - 0px);
}

/* Basic values */
:root {
    --main-link-color: #43a9b5;
    --main-link-hover: #60bac5;
    --light-grey-bg: #f8f8f8;
    --light-grey-border: #e0e0e0; /*#d2d2d2;*/
    --highlight-row: #edf8fa;
    --dark-overlay: #5A5555;
    --iw-pink: #f06273; /*#f07d75;*/
    --iw-green: #93bc24;
    --iw-yellow: #f2c900;
    --border-radius: 3px;
    --font-size: 16px;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 14px;
    line-height: 1.4;
    margin: 0px !important;
    /*background-color: #e8e8e8;*/
    background-color: #ececec;
    color: #111;
    /*overflow-x: hidden;*/
}

img, img.border0, .border0 {
    border: 0px !important;
}

input[type=checkbox],
input[type=radio] {
    border: 0px !important;
    margin-top: auto;
    margin-bottom: auto;
    vertical-align: middle;
    width:16px;
    height:16px;
}

input[type=radio] + label {
    vertical-align: middle;
}
input[type=radio] {
    filter: hue-rotate(316deg);
}
input[type=radio]:focus {
    box-shadow:none;
}

a {
    outline: none !important;
    line-height: inherit;
    color: #45a8b4;
    color: var(--main-link-color, #45a8b4);
    text-decoration: none;
}

h5 {
    font-size: 14px;
    font-weight: inherit;
}

.underline {
    text-decoration: underline;
}

.max-width {
    max-width: 1300px;
    margin: auto;
}

.talignCenter {
    text-align: center;
}
.border-radius {
    border-radius: var(--border-radius,3px);
}
textarea, input:not([type="submit"]):not([type="button"]):not([type="image"]), select, pre code,
.cke_dialog_ui_input_select, #imageDialogContents select.cke_dialog_ui_input_select,
.cke_dialog_contents select.cke_dialog_ui_input_select, input:not(.hasDatepicker).parsley-success,
select:not(.hasDatepicker).parsley-success, textarea:not(.hasDatepicker).parsley-success {
    padding: 7px;
    outline: 0;
    font-size: inherit;
    border: 1px solid #d2d2d2;
    /*border: 1px solid var(--light-grey-border, #E3E4E6);*/
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    font-family: inherit;
    line-height: 1.3;
    box-shadow: none;
    vertical-align: middle;
    background-color: #fff;
}

input:not(.fieldInput)[type=checkbox], #formsDesigner_listOptions [type=checkbox] {
    appearance: none;
    border: 1px solid #a0a0a0 !important;
    border-radius: 2px;
    outline: none;
    transition-duration: 0.3s;
    background-color: #fff;
    cursor: pointer;
    width: 16px;
    height: 16px;
    vertical-align: middle;
    /*transform: scale(1) !important;*/
    position: relative;    
}

    input:not(.fieldInput)[type=checkbox]:checked::before, #formsDesigner_listOptions [type=checkbox]:checked::before {
        content: '\2713';
        display: block;
        text-align: center;
        color: var(--main-link-color, #45a8b4);
        position: absolute;
        left: 2px;
        top: -2px;
    }


/*  Colored checkbox and Radio buttons */

input[type=checkbox]:checked {
    border: 1px solid var(--main-link-color, #45a8b4) !important;
    background-color: var(--main-link-color, #45a8b4) !important;
}
input.scaledcb[type=checkbox], .permissionsTable input[type=checkbox] {
    padding: 8px !important;
}
input:not(.fieldInput)[type=checkbox]:checked::before, input[type=checkbox]:checked::before {
    color: #fff !important;
}


input[type="text"]:disabled, input[type="number"]:disabled, textarea:disabled, select:disabled {
    background-color: #f2f2f2 !important;
    color: #868686;
    opacity: 0.7;
}

input:not(.fieldInput)[type=checkbox][disabled] {
    cursor: default;
}

.opacity07 {
    opacity: 0.7;
}

.inputWidth {
    width: 100%;
    max-width: 100px;
}

ul {
    list-style: none;
}

textarea {
    background: #fff;
    resize: vertical;
}

select {
    appearance: none;
    background-image: url('data:image/svg+xml;charset=US-ASCII,%3Csvg%20width%3D%2220%22%20height%3D%2220%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M5%206l5%205%205-5%202%201-7%207-7-7%202-1z%22%20fill%3D%22%23555%22%2F%3E%3C%2Fsvg%3E');
    background-repeat: no-repeat;
    background-size: 16px 16px;
    cursor: pointer;
    /*vertical-align: middle;*/
}

    select[multiple=multiple] {
        background-image: none;
    }
/*::marker {
    color: #888;
}*/
.box-shadow {
    box-shadow: rgba(0, 0, 0, 0.2) -1px 2px 4px;
}

#editor textarea,
#editor input:not([type="submit"]):not([type="button"]),
#editor select {
    box-sizing: border-box;
}

.description-text {
    color: #7d7d7d;
}

.text-overflow {
    display: inline-block;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}
td.td-overflow {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

ul,
ol {
    padding: 0px;
}

.selectedFormTab {
    background-color: #92CEEE;
    border-bottom: 0px;
}

.userFormTextArea, .userFormSelect {
    width: 260px;
    min-width: 60%;
    border: 1px solid #CCCCCC;
    border-radius: 0;
    padding: 7px;
    margin: 0;
    max-width: 260px;
    max-height: 60px;
    scroll: 0;
}

.helptext {
    width: 45%;
    margin-top: 0px !important;
    padding-top: 10px;
    padding-bottom: 10px;
    background-color: #CFDBEC;
}

#selectarrow {
    display: none;
    position: absolute;
}

#advanceddesign {
    display: none;
    background-color: black;
    color: #cccccc;
    height: 0px;
    padding: 5px;
    border: 1px black solid;
    max-width: 1024px;
    margin: auto auto;
    text-align: center;
}

    #advanceddesign * {
        font-size: 12px;
    }

    #advanceddesign select {
        width: 130px;
        height: 123px;
    }

.advancedselectdiv {
    padding: 2px;
    margin: 2px;
    /*text-align: center;*/
    padding-top: 0px;
    display: inline-block;
    vertical-align: top;
}

    .advancedselectdiv select {
        /* font-size: 15px;*/
    }

.property-label {
    display: block;
    margin-bottom: 5px;
    font-size: 15px;
}

/* END Form Designer */


/*input:focus, */
textarea:focus, select:focus, input:not(.btn-search):focus, input:not([type="submit"]):not([type="button"]):not([type="image"]):not([type="range"]):focus, #loginForm input[type="text"]:focus, #passwordInput input:focus,.contentarea .emoji-wysiwyg-editor:focus, .emoji-wysiwyg-editor:focus, select.cke_dialog_ui_input_select:focus, .bootstrap-select .btn:focus, .textarea-focus {
    border: 1px solid var(--main-link-color, #45a8b4);
    outline: none;
    box-shadow: inset 0 0 0 0.5px #15b5cb;
}

#mastersearch input[type="search"]:focus, input[type=radio]:focus {
    box-shadow: none !important;
}

input[type=image] {
    outline: none;
}

.floatAA {
    float: left;
}

.floatBB {
    float: right;
}

.clearRight {
    clear: right;
}

/* Internal messages */
.inner-note {
    background-color: #eee;
    padding: 8px;
    border-radius: 5px;
}

.step {
    margin: 10px;
    margin-top: 20px;
    width: 40%;
    padding: 10px;
}

.spanstat span {
    border: 2px solid #d8dfea;
    border-color: #CCC #CCC #F0EEE3;
    border-radius: 4px;
    background-color: #00ADC6;
    padding: 0 2px 0 2px;
}

#tabHolder img {
    border: 1px solid #F0EEE3;
    margin-bottom: 2px;
}

#spanStats.postTitle {
    color: #00ADC6;
}

.fbbluebox {
    background-color: #eceff6;
    border: 1px solid #d4dae8;
    color: #333333;
    padding: 10px;
    /*font-size: 14px;*/
    font-weight: bold;
}

.facebookbutton {
    padding: 3px;
    margin: 3px;
    font-weight: bold;
    display: block;
    border-radius: 4px;
    border: 2px solid #CCC;
}

/* Footer */

.FooterMenu {
    color: #DDD;
    padding-bottom: 8px;
    padding-top: 8px;
    background-color: black;
    border-top: 2px solid #00ADC6;
}

    .FooterMenu * {
        font-size: 14px;
    }

.is-collapsed .masterbottom {
    width: calc(100% - 50px);
}

.FooterMenu #FooterMenuBackground .stretch {
    width: 100%;
    height: 300px;
}

.FooterMenu #FooterMenuBackground {
    width: 100%;
    height: 10%;
}

.FooterMenu h3 {
    color: #DDD;
}

.FooterMenu ul li a {
    display: block;
    text-decoration: none;
    color: #888;
}

    .FooterMenu ul li a:hover {
        color: #EBE4E5;
        text-decoration: none;
    }

.FooterMenu ul li {
    width: 175px;
    display: list-item;
    border-bottom: 1px solid rgba(217, 217, 217, 0.5);
    padding-top: 10px;
    padding-bottom: 10px;
}

.FooterMenuInside {
    width: 95%;
    max-width: 1024px;
    margin: 0px auto;
}

.FooterColumn ul {
    list-style: none;
    margin: 0px auto;
}

.FooterColumn {
    margin-right: 2%;
    margin-left: 2%;
    width: 180px;
}

/*--------------- End Footer ----------- */

#form1,
#aspnetForm {
    margin: 0;
    min-height: 100%;
    position: relative;
}

#mastercontent {
    width: calc(100% - 220px);
    min-width: 1260px;
    max-width: 1580px;
    margin: 0 auto;
    padding-bottom: 60px;
    padding-top: 67px;
    box-sizing: border-box;
    border: 0px !important;
    box-shadow: 0px 0px 0px 0px #888 !important;
    transition: padding-left 0.6s ease;
}

/* Collapse menu */

.is-collapsed #masterside {
    max-width: 50px;
    min-width: 50px;
    transition: max-width 0.2s ease, min-width 0.2s ease;
}

.is-collapsed .logo-inner {
    background-image: url(../../interface/images/new/inwise-min.svg) !important;
    background-position: -3px;
    background-repeat: no-repeat;
    width: 36px !important;
}

.is-collapsed #mastercontent {
    transition: padding-left 0.4s ease;
}

.masterlinksItemName span, .is-collapsed .linkslist li a.masterlinksarrow {
    opacity: 1;
    transition: opacity 0.2s ease;
}

.is-collapsed .linkslist li a.masterlinksarrow {
    opacity: 0;
}

.is-collapsed #masterside.fixed-menu .linkslist li a.masterlinksarrow {
    opacity: 1;
}

.is-collapsed .masterlinksItemName span,
.is-collapsed .masterlinksarrow:after {
    opacity: 0;
}

.is-collapsed #masterside.fixed-menu {
    position: fixed;
    width: 220px;
    max-width: 220px;
    max-width: 220px;
    min-width: 220px;
    transition: max-width 0.6s ease, min-width 0.6s ease;
}

    .is-collapsed #masterside.fixed-menu .masterlinksItemName span,
    .is-collapsed #masterside.fixed-menu .masterlinksarrow:after {
        opacity: 1;
        display: inline-block;
    }

.is-collapsed #masterside .linkslist li a:not(.btn-new) {
    padding: 0.2em 0.7em;
}

.is-collapsed #masterside.fixed-menu .linkslist li a {
    padding: 0.2em 0.7em;
}



.logo-wrapper .logo {
    padding: 0;
    margin: 0;
}

    .logo-wrapper .logo .logo-inner {
        width: 154px;
        height: 44px;
        vertical-align: middle;
        border: 0;
        background-repeat: no-repeat;
        background-position: center;
        margin: auto;
    }

.top-nav {
    width: 100%;
    background: #fff;
    height: 45px;
    position: fixed;
    top: 0;
    z-index: 7;
    box-sizing: border-box;
    display: flex;
}

.top-nav-inner {
    direction: ltr;
    align-self: center;
    position: relative;
    width: calc(100% - 220px);
    min-width: 1260px;
    max-width: 1580px;
    margin: 0 auto;
    align-items: center;
}

#masterside {
    background-color: #0a0b0c;
    vertical-align: bottom;
    width: 220px;
    max-width: 220px;
    z-index: 11002;
    height: 100vh;
    box-sizing: initial;
    -webkit-box-sizing: initial;
    position: fixed;
    top: 0;
    transition: max-width 0.4s ease, min-width 0.4s ease;
}

    #masterside.fixed-header {
        position: fixed;
    }

#mastersideinner {
    width: 100%;
    margin: 0px auto;
    padding: 0;
    text-align: center;
    box-sizing: border-box;
    overflow: auto;
    height: 100vh;
}

    #mastersideinner::-webkit-scrollbar {
        width: 0.6em;
        background-color: #000;
    }

    #mastersideinner::-webkit-scrollbar-thumb {
        background-color: #383838;
    }

#mastersearch {
    position: relative;
    display: none;
}

    #mastersearch input {
        padding: 1px;
    }

.masterbottom {
    width: calc(100% - 220px);
    position: absolute;
    bottom: 0;
}

.masterlinks {
    width: auto;
    position: relative;
}

.linkslist {
    padding: 0;
    list-style-type: none;
    margin-bottom: 0px;
    margin: 0px 10px;
    padding: 5px;
    width: 100%;
    clear: both;
}

    .linkslist li {
        display: inline;
    }

        .linkslist li a {
            padding: .2em 0.9em;
            color: #f4f2f2;
            text-decoration: none;
            /*font-size: 14px;*/
            display: inline-block;
            opacity: 0.8;
        }

        .linkslist li:hover a {
            opacity: 1;
            /*color: #fff;*/
        }

.menu-icon {
    width: 24px;
    height: auto;
    max-height: 28px;
}

#masterbuttons img:not(#supportLinks img) {
    display: inline;
    border: 0;
    height: auto;
    width: 19px;
    cursor: pointer;
    vertical-align: middle;
}

#masterbuttons > div {
    padding: 0px 4px;
}

#traceDiv {
    display: none;
}

.contentarea {
    background-color: #FFFFFF;
    color: #111;
    padding: 20px 20px 25px;
    margin: 0px;
    border: 5px solid #e2e4e4;
    border-radius: 6px;
}

    .contentarea p {
        /*font-size: 15px;*/
        margin-top: 10px;
        margin-bottom: 10px;
    }

.regulatText {
    /*font-size: 13px;*/
    line-height: 1.5;
}

.dashedContentArea {
    border-style: dashed;
}

.contentarea h2.h2Title:first-of-type {
    /*margin-top: 0;*/
    margin-bottom: 20px;
}

.contentarea.borderBox h2,
#masterbuttons h2,
h2.contentareaTitle,
.contentarea h2 {
    font-size: 20px;
    margin-top: 0;
    margin-bottom: 10px;
    font-weight: 500;
}

    .h2Title,
    .contentarea h2.h2Title {
        font-size: 19px;
    }
    h2.modalTitle, .contentarea.borderBox h2.modalTitle {
        font-size: 22px;
    }

.h3-title {
    font-size: 18px;
}

.dropDownExport a,
.contentarea a:not(.backaction):not(.mediaActionLink):not(.close):not(.btn-new):not(.genBtn):not(.genBtn a):not(.dropdown-content a):not(.wel-btns a):not(a.currentLink):not(a.blueLink):not(.table-link):not(.notification-blue a):not(.sort):not(.thead a) {
    color: #111;
}

.contentwidthSmiddle {
    width: 260px;
    margin-right: 2.05%;
    margin-left: 2.05%;
}

.contentwidth {
    /*width:30%;
    */
    width: 300px;
}

.contentdoublewidth {
    /*width:64%;
    */
    width: 600px;
    margin-bottom: 20px;
}

.mainBlockMarginLeft {
    margin-bottom: 20px;
}

.contentfullwidth {
    /*width:98%;
    */
    width: 980px;
}

.contentsubheadline {
    background-color: #F4F4F4;
}

#gettingstartedbuttons {
    margin-left: auto;
    margin-right: auto;
    width: auto;
}

#gettingstartedbuttonsinner {
    margin-left: auto;
    margin-right: auto;
    max-width: 800px;
}

.gettingstartedbutton {
    background-color: #ADADAD;
    color: #fff;
    border: 1px solid #ADADAD;
    width: 25%;
    text-align: center;
    font-size: larger;
    padding: 15px;
    margin: 5px 2px 2px 2px;
    box-shadow: 1px 1px 1px 1px #888;
    border-radius: 4px;
    cursor: pointer;
}

#gettingstartedbuttons img {
    margin-top: 23px;
}

#campaigns {
    text-align: center;
    color: #fff;
    border: 1px solid #ADADAD;
    font-size: larger;
    padding: 15px;
    margin: 10px auto 10px auto;
    box-shadow: 1px 1px 1px 1px #888;
    border-radius: 4px;
    cursor: pointer;
    width: 85%;
    background-color: #EC0083;
}

.frameddiv {
    border: 1px solid #ADADAD;
    padding: 10px;
    border-radius: 8px;
}


/*.bluebutton {
     background-color:#00ADC6;
     text-align:center;
     color:#fff;
     border: 1px solid #ADADAD;
     font-size: large;
     padding:5px 1px 5px 1px;
     margin:5px 1px 2px 1px;
     -webkit-box-shadow: 1px 1px 1px 1px#888;
     -moz-box-shadow: 1px 1px 1px 1px #888;
     box-shadow: 1px 1px 1px 1px #888;
     -webkit-border-radius: 8px;
     -moz-border-radius: 8px;
     border-radius: 8px;
     cursor:pointer;
}
*/

.greenbutton {
    background-color: #A6CE39;
    text-align: center;
    color: #fff;
    border: 1px solid #ADADAD;
    font-size: large;
    padding: 5px 1px 5px 1px;
    margin: 5px 1px 2px 1px;
    box-shadow: 1px 1px 1px 1px #888;
    border-radius: 8px;
    cursor: pointer;
}

.fieldinput {
    width: 60%;
    margin-top: 10px;
    /*font-size: 14px;*/
}

@media only screen and (max-width: 1370px) {
    .fieldinput {
        width: 80%;
    }
}


#tblSettings .fieldinputwrapper .fieldinput {
    margin-top: 0px;
    width: 100%;
}



.fieldinput input:not([type=checkbox]):not([type=button]), .fieldinput textarea {
    width: 498px;
}

.fieldinput input[type=checkbox] {
    vertical-align: middle;
}

.ie9 .fieldinput input[type=file],
.ie8 .fieldinput input,
.ie8 .fieldinput select,
.ie8 .fieldinput textarea {
    width: 514px;
}

.fieldinput input[type="radio"] {
    width: 10%;
}

.fieldinputwrapper {
    width: 100%;
    margin-top: 10px;
    /*font-size: 14px;*/
}

.campaignDate .fieldinputwrapper {
    margin-top: 10px;
}


/* Advanced settings */

#tblSettings .fieldinputwrapper .fieldinput {
    width: 100%;
}


#tblSettings .fieldinputwrapper .fieldinput50 {
    width: 50%;
}

#newfacebookpostaccounts {
    width: 27%;
}

    #newfacebookpostaccounts h2 {
        -webkit-margin-after: 0px;
        margin-bottom: 0px;
    }

.loadbutton {
    border: double 2px #EC0083;
    background-color: #EC0083;
    color: White;
    width: 9.0%;
    height: 20px;
    text-align: center;
    padding-top: 5px;
    vertical-align: middle;
    font-size: 1.1em;
    font-weight: bold;
    display: block;
    cursor: pointer;
}

    .loadbutton:hover {
        border: double 2px #85b1de;
    }

#addlinkdiv,
#addimagediv {
    display: none;
}

#txtLinkUrl {
    width: 90% !important;
    height: 25px !important;
}

#imagename {
    width: 90% !important;
    margin-left: -1px !important;
}

#fieldbuttons img {
    border: 1px solid #85b1de;
    padding: 2px 2px;
    cursor: pointer;
}

    #fieldbuttons img:hover {
        border: 1px solid #00B4CB;
        border-top: 0px;
        box-shadow: 0 0 15px #00B4CB;
    }

.controller, .pointer {
    cursor: pointer;
}

.lightbox_bg {
    background: #ffffff none repeat scroll 0 0;    
    opacity: 0.3;
    z-index: 50;
}

.lightbox {    
    opacity: 0.3;
    z-index: 50;
}

.facebookspecial {
    cursor: pointer;
}

.stepcount {
    border-radius: 6px;
    color: White;
    border: 0px solid white;
    padding: 5px;
    font-size: large;
    text-align: center;
    vertical-align: middle;
    width: 35px;
    font-weight: bold;
    background-color: #f07d75;
    margin-right: 10px;
    margin-left: 10px;
    font-size: 16px;
}

.selectedstep {
    box-shadow: 0 0 15px #00ADC6;
}


/* css for timepicker */

.ui-timepicker-div .ui-widget-header {
    margin-bottom: 8px;
}

.ui-timepicker-div dl {
    text-align: left;
}

    .ui-timepicker-div dl dt {
        height: 25px;
        margin-bottom: -25px;
    }

    .ui-timepicker-div dl dd {
        margin: 0 10px 10px 65px;
    }

.ui-timepicker-div td {
    font-size: 90%;
}

.ui-tpicker-grid-label {
    background: none;
    border: none;
    margin: 0;
    padding: 0;
}


/* END css for timepicker */

input[type="search"] {
    -webkit-appearance: textfield;
}

    /* Hide the default clear (x) button in search fields for all major browsers */
    input[type="search"]::-webkit-search-cancel-button {
        -webkit-appearance: none;
        appearance: none;
        display: none;
    }

    input[type="search"]::-ms-clear {
        display: none;
    }

    input[type="search"]::-o-clear {
        display: none;
    }

    input[type="search"]::-moz-clear {
        display: none;
    }

#linktitle {
    font-size: 12px;
    font-weight: bold;
    cursor: pointer;
    color: Black;
    display: block;
    text-align: inherit;
}

#linkdescription {
    font-size: 11px;
    cursor: pointer;
    color: Black;
    display: block;
    text-align: inherit;
}

#linkurl {
    font-size: 11px;
    color: #666;
    display: block;
    text-align: left;
}

#imagethumb .thumb {
    max-height: 130px;
    max-width: 400px;
    vertical-align: middle;
    margin-top: auto;
    margin-bottom: auto;
}

#imagethumb span,
#filedrag span {
    margin-top: auto;
    margin-bottom: auto;
}

#newpostbuttons img {
    cursor: pointer;
}

#imagethumb,
#filedrag {
    height: 141px;
    width: 90%;
    border: dashed 3px #85b1de;
    text-align: center;
    padding: 5px;
}

#fileToUpload {
    width: 100%;
}

#postbody {
    height: 100px !important;
    border: solid 1px #85b1de;
    border-bottom: 0px;
    padding-bottom: 0px;
    margin-bottom: 0px;
    resize: none;
    padding: 0px;
    width: 50%;
}

#linkdescription:hover {
    background-color: #FF9;
}

#linktitle:hover {
    background-color: #FF9;
}

#facebookheadline {
    height: 91px;
    vertical-align: middle;
    border: 0px;
    width: 408px;
    padding: 10px;
    border-radius: 8px;
}

#pageheadline {
    /*height: 60px;*/
    vertical-align: middle;
    border: 0px;
    border-radius: 8px;
    margin: 0 0px 10px 0px;
    color: #111;
}

    #pageheadline > img:first-of-type {
        height: 45px;
        float: none;
        vertical-align: bottom;
        /*display: inline-block;*/
        display: none;
    }

    #pageheadline h1 {
        margin: 0px;
        padding: 0px 8px;
        font-size: 34px;
        font-family: inherit;
        color: inherit;
        /*line-height: 1.2;*/
        font-weight: 400;
        display: inline-block;
        vertical-align: text-bottom;
        float: none;
    }

h1.overflow-title {
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}
.back-link {
    border: 1px solid var(--main-link-color, #45a8b4);
    padding: 5px;
    border-radius: 50%;
    min-width: 30px;
    text-align: center;
    width: 30px;
    height:30px;
}
    input .file {
        position: relative;        
        opacity: 0;
        z-index: 2;
    }


#newfacebookpostactions {
    width: 350px;
    margin: 0px 2% 0px auto;
    max-width: 482px;
}


/* action buttons */

.blueaction {
    cursor: pointer;
    box-shadow: inset 0px 1px 0px 0px #dcecfb;
    background: -webkit-gradient( linear, left top, left bottom, color-stop(0.05, #bddbfa), color-stop(1, #80b5ea));
    background: -moz-linear-gradient( center top, #bddbfa 5%, #80b5ea 100%);
    filter: progid: DXImageTransform.Microsoft.gradient(startColorstr='#bddbfa', endColorstr='#80b5ea');
    background: #bddbfa;
    -moz-border-radius: 6px;
    -webkit-border-radius: 6px;
    border-radius: 6px;
    border: 1px solid #84bbf3;
    display: inline-block;
    color: #ffffff;
    font-family: Arial, Helvetica, sans-serif;
    /*font-size: 14px;*/
    font-weight: bold;
    padding: 3px 7px;
    text-decoration: none;
    text-shadow: 1px 1px 0px #528ecc;
}

    .blueaction:hover {
        background: -webkit-gradient( linear, left top, left bottom, color-stop(0.05, #80b5ea), color-stop(1, #bddbfa));
        background: -moz-linear-gradient( center top, #80b5ea 5%, #bddbfa 100%);
        filter: progid: DXImageTransform.Microsoft.gradient(startColorstr='#80b5ea', endColorstr='#bddbfa');
        background-color: #00ADC6;
    }

    .blueaction:active {
        position: relative;
        top: 1px;
    }

.greenaction {
    cursor: pointer;
    box-shadow: inset 0px 0px 0px 0px #A6CE30;
    background: #A6CE39;
    border-radius: 3px;
    border: 1px solid #BFCF39;
    display: inline-block;
    color: #ffffff;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 18px;
    font-weight: bold;
    padding: 6px 14px;
    text-decoration: none;
    text-shadow: 1px 1px 0px #A6AE39;
}

    .greenaction:hover {
        background-color: #A6C039;
    }

.smalleractiononpage,
.smalleractiononpage div,
.blueButton {
    cursor: pointer;
    background: #F0F0F0;
    border-radius: 3px;
    border: 1px solid #C8C8C8;
    display: inline-block;
    color: #fff;
    /*font-size: 14px;*/
    padding: 4px 10px;
    text-decoration: none;
    font-weight: bold;
}

.smallerforwardaction,
.smallerforwardaction div {
    cursor: pointer;
    padding: 6px 6px;
    text-align: center;
    color: #111;
    background-color: #f8f8f8;
    border-radius: 3px;
    border: 1px solid #DEDEDE;
    display: inline-block;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 15px;
    text-decoration: none;
    font-weight: bold;
}

    .smallerforwardaction:hover,
    .smallerforwardaction div:hover,
    .smalleractiononpage div:hover,
    .smalleractiononpage:hover {
        /*background-color: #F7F4F4;
    */
        opacity: 0.8;
    }

.forwardaction,
.forwardaction div,
.backaction div {
    cursor: pointer;
    background-color: #45a8b4;
    background-color: var(--main-link-color, #45a8b4);
    border-radius: 3px;
    border: 1px solid #45a8b4;
    border: 1px solid var(--main-link-color, #45a8b4);
    display: inline-block;
    color: #fff !important;
    /*font-family: Arial, Helvetica, sans-serif;
    font-size: 15px;
    font-weight: bold !important;
    */
    padding: 6px 13px;
    text-decoration: none;
}

    .forwardaction:hover,
    .forwardaction div:hover {
        background-color: var(--main-link-hover, #60bac5);
        border-color: var(--main-link-hover, #60bac5);
    }

.cummonActionImg {
    width: 19px;
}

.commonActionBg {
    background-color: var(--main-link-color, #43a9b5) !important;
    color: #fff !important;
}

    .commonActionBg:hover {
        background-color: var(--main-link-hover, #60bac5) !important;
        border-color: var(--main-link-hover, #60bac5);
    }

.campaigns_actions .dashforwardaction,
.campaigns_shortcuts .dashforwardaction {
    font-size: 15px;
    font-weight: normal;
    margin-bottom: 9px;
    line-height: 21px;
    padding: 11px 13px !important;
}

    .campaigns_actions .dashforwardaction span,
    .campaigns_shortcuts .dashforwardaction span {
        padding: 0;
    }

.dashforwardaction,
.dashforwardaction div,
.searchaction div {
    cursor: pointer;
    -moz-box-shadow: inset 0px 0px 0px 0px #A6CE30;
    background: #fff;
    border-radius: 3px;
    border: 1px solid #61acb5;
    display: inline-block;
    color: #45a8b4;
    color: var(--main-link-color, #45a8b4);
    /*font-family: Arial, Helvetica, sans-serif;*/
    font-size: 15px;
    padding: 6px;
    text-decoration: none;
    width: 100%;
    box-sizing: border-box;
}

    .dashforwardaction span {
        padding: 5px 3px;
    }


.dashcancelaction {
    cursor: pointer;
    -moz-box-shadow: inset 0px 0px 0px 0px #A6CE30;
    background: #f8f8f8;
    border-radius: 3px;
    border: 1px solid #666;
    display: inline-block;
    color: #666;
    /*font-family: Arial, Helvetica, sans-serif;
    font-size: 15px;*/
    font-weight: bold;
    padding: 6px;
    text-decoration: none;
    width: 100%;
    box-sizing: border-box;
}

    .dashcancelaction:hover {
        opacity: 0.8;
    }

.actiononpage,
.actiononpage div,
.pinkBtn {
    cursor: pointer;
    background: var(--main-link-color, #45a8b4);
    background: var(--main-link-color, #45a8b4);
    color: White !important;
    border-radius: 3px;
    border: 1px solid var(--main-link-color, #45a8b4);
    border: 1px solid var(--main-link-color, #45a8b4);
    display: inline-block;
    font-family: inherit;
    /*font-size: 16px;
    font-weight: bold;*/
    padding: 8px 10px;
    text-decoration: none !important;
    line-height: 18px;
}

    .pinkBtn,
    .pinkBtn:active {
        background: var(--iw-pink, #f07d75);
        border: 1px solid var(--iw-pink, #f07d75);
    }

table.greenBackground td.actiononpage {
    background-color: #a6ce39;
}

    table.greenBackground td.actiononpage:hover {
        opacity: 0.7;
    }

.actiononpage:hover,
.actiononpage div:hover {
    opacity: 0.7;
}

.backaction,
.backaction div {
    cursor: pointer;
    background-color: #67686B;
    border-color: #67686B;
    border-radius: 3px;
    display: inline-block;
    color: #ffffff;
    /*font-family: Arial, Helvetica, sans-serif;
    font-size: 15px;
    font-weight: bold;
    */
    padding: 8px 13px;
    text-decoration: none;
    line-height: 21px;
}

    .backaction:hover,
    .backaction div:hover {
        background-color: #B7B8BC;
    }

#confirmNo.actiononpage {
    background-color: #F8F8F8;
    border: 1px solid rgb(235, 235, 228);
    color: #57585a !important;
}

.maindashboardaction {
    cursor: pointer;
    box-shadow: inset 0px 0px 0px 0px #97c4fe;
    background-color: #00ADC6;
    border-radius: 3px;
    border: 1px solid #00ADC6;
    display: inline-block;
    color: #ffffff;
    /*font-family: Arial, Helvetica, sans-serif;*/
    font-size: 18px;
    font-weight: bold;
    padding: 16px 0px;
    text-decoration: none;
    text-align: center;
}

    .maindashboardaction:hover {
        background-color: #00ADC6;
    }

    .maindashboardaction:active {
        position: relative;
        top: 1px;
    }

.float {
    position: fixed;
    top: 0px;
    margin-top: 0px;
}

.floatingcommands {
    width: 100%;
}

.greenaction a,
.blueaction a,
.forwardaction a,
.backaction a,
.actiononpage a,
.backaction div a {
    display: block;
    color: #ffffff !important;
    text-decoration: none !important;
}

.genBtn a {
    color: #ffffff;
    text-decoration: none !important;
}

.linkaction {
    border: 0px;
    background-color: inherit !important;
    /*border:inherit !important;
    */
    display: inline-block;
    color: white !important;
    font-family: inherit !important;
    font-size: inherit !important;
    font-weight: inherit !important;
    padding: 0px !important;
    text-decoration: none !important;
    text-shadow: inherit !important;
}

    .linkaction div {
        margin: 0px !important;
    }

/* action buttons end */

#facebookpostaccount {
    margin-right: auto;
    margin-left: auto;
    margin-bottom: 10px;
    padding: 3px;
    border: 1px solid #98ADEB;
    width: 70px;
    height: 70px;
    text-align: center;
    cursor: pointer;
}

    #facebookpostaccount img {
        width: 50px;
        height: 50px;
        margin: 2px auto 2px auto;
    }

#facebookpostpages {
    margin: 5px auto 5px auto;
    width: 90%;
    text-align: center;
    cursor: pointer;
}

.facebookpostpage {
    margin: 5px;
    border: 1px solid #98ADEB;
    width: 70px;
    height: 100px;
    text-align: center;
}

    .facebookpostpage img {
        width: 50px;
        height: 50px;
        margin: 2px auto 2px auto;
    }

#notificationimg {
    width: 15px !important;
    height: 15px !important;
    position: absolute;
    display: none;
    margin-top: -1px !important;
}

#newNotificationsCount {
    position: absolute;
    text-decoration: none;
    z-index: 55555;
    margin-top: -4px;
    width: 17px;
    text-align: center;
    left: 17px;
}

    #newNotificationsCount span {
        background: var(--main-link-color, #45a8b4);
        border-radius: 50%;
        color: White;
        padding: 2px 3px;
        font-size: 10px;
        line-height: 1.4;
        min-width: 18px;
        display: inline-block;
    }

.stepheadline {
    padding-top: 12px;
}

.fieldmethod {
    list-style: none;
}


#configsection {
    width: 22%;
}

#sectionsdata {
    width: 78%;
}

/* New settings page */
.config-table #configsection {
    width: 19%;
    min-width: 190px;
}

.config-table #sectionsdata {
    width: 100%;
}

.config-top-tabs, .ui-tabs .ui-tabs-nav {
    margin-bottom: 32px;
    border-bottom: 1px solid #eee;
}

    .config-top-tabs > div, ul.config-top-tabs li {
        display: inline-block;
        cursor: pointer;
        /*font-size: 15px;*/
    }

        .selectedInnerTab, ul.config-top-tabs li.active {
            font-weight: 600;
            padding-bottom: 10px;
            border-bottom: 2px solid var(--main-link-color, #45a8b4);
        }

.sectionheadline {
    cursor: pointer;
    color: #6f6f6f;
    padding: 13px 20px;
    text-decoration: none;
    text-align: center;
    display: flex;
    align-items: center;
}
    .sectionheadline:not(.selectedconfigtab):hover {
        background-color: var(--light-grey-bg, #f8f8f8);
    }
    .selectedconfigtab:hover {
    /*opacity: 0.7;*/
    cursor: pointer;
}

.selectedconfigtab {
    background-color: #ebfafc;
    font-weight: 600;
    position: relative;
    color: var(--main-link-color, #45a8b4);
}

.sectiondata {
    display: none;
    padding: 10px;
    margin: 0;
    border-radius: 4px;
}

    .sectiondata #pageheadline h1 {
        font-size: 30px;
        padding: 0;
        margin-bottom: 10px;
    }

.selectedconfingcontent {
    background-color: #FFFFFF;
    display: block;
}

.RecipientUpdateTabel {
    position: relative;
}


.actions div,
.actions .linkaction {
    margin: 0px 10px;
}

#commands,
.commands {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

/*    #commands div,
    .commands div {
        margin-left: auto;
        margin-right: auto;
        text-align: center;
    }*/

.configsettingwrapper {
    margin-bottom: 13px;
    width: 100%;
}

.publish-settings .configsettingwrapper {
    padding: 0 15px;
}

.configsettingwrapper textarea {
    resize: vertical;
    min-height: 60px;
}

.sectiondata .configsettingwrapper {
    display: flex;
    align-items: baseline;
    justify-content: flex-start;
}

.configsetting {
    padding: 5px 0;
    margin: 5px;
    /*font-size: 14px;*/
    line-height: 1.7;
    width: 100%;
}

.configLabel {
    display: inline-block;
    width: 50%;
    vertical-align: top;
}

    .configLabel span {
        padding: 1px 5px;
        background: #eee;
        font-size: 12px;
    }

    .configLabel label {
        cursor: text;
    }

.configsetting input, .configsetting textarea, .configsetting select {
    width: 100%;
}

    .configsetting input[type=radio] {
        width: 10%;
    }

.configsetting select {
    resize: none;
}

.commandsdiv div {
    margin-left: auto;
    margin-right: auto;
}

#idConfirmDialog {
    z-index: 103;
    width: 300px;
}

#overlay {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 900;
    background-color: #000;    
    opacity: .10;    
}

    #overlay[id] {
        position: fixed;
    }

#ModalBG {
    width: 100%;
    display: none;
    background-color: var(--dark-overlay, #5A5555);
    opacity: 0.6;
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    z-index: 900;
}

#autoSaveDiv {
    position: fixed;
    z-index: 999;
    background-color: Yellow;
    left: 10px;
    top: 20px;
}

.defualtLink {
    width: 15px !important;
}

.black_overlay {
    display: none;
    position: fixed;
    top: 0%;
    left: 0%;
    width: 100%;
    height: 150%;
    background-color: #5A5555 !important;
    z-index: 1001;    
    opacity: .80;
}

.white_content {
    display: none;
    position: fixed;
    top: 25%;
    left: 25%;
    width: 50%;
    height: 50%;
    padding: 16px;
    /*border: 16px solid #00ADC6 !important;*/
    background-color: white !important;
    z-index: 1002;
    overflow: auto;
}

.basic-error, .basic-error:hover {
    color: #ff4848;
}

.mark-error {
    background: #ff4848;
    color: #fff;
    padding: 3px 12px;
    margin: 0 7px;
    -webkit-border-radius: 13px;
    -moz-border-radius: 13px;
    border-radius: 13px;
}

.error {
    color: #111;
    font-weight: bold;
    word-break: break-word;
}



.errorinput {
    border: 1px solid #FF1818 !important;
}

.liksGraphText {    
    color: #333;
}

.devStatGraphDiv .devStatGraphArrow {
    background-color: #fff;
    top: 110px;
    opacity: 0.8;    
    text-decoration: none;
    min-width: 41px;
}

.devStatGraphArrow:hover {
    background-color: #fff;
    opacity: 1;    
}

.devStatGraphArrow a img {
    border: none;
}

#devStatGraph,
#unsubscribedGraph,
#clicksGraph {
    position: relative;
    min-width: 500px;
    min-height: 300px;
    /*font: normal 12px/18px Arial, Helvetica, sans-serif;*/
    color: #333;
}

.graphsCentered-try {
    display: inline-block;
    margin: 0 5px;
    vertical-align: middle;
    border: none;
    overflow: hidden;
}

.legendMargin, .marginTop50 {
    margin-top: 50px;
}

.legendStyle {
    position: relative;
    bottom: 47px;
    /*left: 280px;
    width: 160px;
    height: 150px;*/
    background-color: #fff;
}

.reportLinkDiv img,
.imgMargin {
    margin-bottom: -2px;
}

.bigImgMargin {
    margin-bottom: -8px;
}
.dropDownExport .reportSimpleLink {
    padding-top: 5px;
    padding-bottom: 5px;
}
    .dropDownExport .reportSimpleLink:hover {
        background-color: #f4f4f4;
    }

.reportLink,
.reportSimpleLink,
.improveText a,
.improveText span + span {
    color: #45a8b4;
    color: var(--main-link-color, #45a8b4);
}

    .reportLink:hover,
    reportLinkActive {
        color: #45a8b4;
        color: var(--main-link-color, #45a8b4);
        cursor: pointer;
        text-decoration: none;
        border: none;
    }

    .reportLink img {
        border: none;
    }

.improveText:hover a,
.improveText:hover a *,
.improveText:hover span + span {
    color: #00ADC6 !important;
    cursor: pointer;
    text-decoration: underline;
}



.improveText:hover {
    text-decoration: none;
    color: #00ADC6 !important;
    font: bold 16px/17px Arial, Helvetica, sans-serif;
}

.recipText18:hover {
    color: #EE2F7F !important;
}

.improveText:hover span {
    color: #00ADC6;
}

.recipText:hover a {
    text-decoration: underline;
    color: #8e8c8e;
}

.improveImgMargin {
    margin-top: 15px;
}

.reportRecipEventsPadding {
    padding: 10px;
}

#recipientsEvents h3 {
    -webkit-margin-after: 10px;
}

.recipNumber {
    cursor: pointer;
    white-space: normal;
}

.recipText18 {
    font: bold 18px/20px Arial, Helvetica, sans-serif;
    cursor: pointer;
    white-space: normal;
}

.tableHeader,
.repoartDisableLink,
.repoartDisableLink:hover,
.tableHeader td a {
    background-color: #C8C8C8;
    color: #fff;
    /*font: bold 14px/20px Arial, Helvetica, sans-serif;*/
    text-align: center;
    font-family: inherit;
}

#reporttips a {
    text-decoration: none;
}

.displayBlock {
    display: block;
}

.displayInline {
    display: inline;
}

.divClear {
    clear: both;
}

.hide {
    opacity: 0;
    height: 0;
}

.fade-out {
    transition: .2s linear all;
}

.paddingLeftRight {
    padding: 0px 5px;
}

.reportRecentActionsClock {
    font-weight: bold;
}

.reportRecentActionsLine {
    margin-top: 3px;
    margin-bottom: 3px;
    /*padding: 2px;*/
}

.templatecatheadline {
    font-weight: bold;
    color: #111;
    font-size: 16px;
    margin: 10px 0 0px;
    padding: 15px 0 10px;
}

.templatesList {
    /*font-size: 14px;*/
    line-height: 1.45;
}

.clicked {
    padding: 5px 8px;
    margin: 2px 0;
}

.messagestableheader {
    border: 1px solid black;
}


/* Filter panel */

#filterlist {
    width: 29.9%;
}

.campaignlist-wrap #filterlist {
    width: 22%;
    min-width: 270px;
}


    .campaignlist-wrap #filterlist h3:first-of-type {
        margin-top: 5px;
        margin-bottom: 10px;
        
    }

/*#filterlist .filterbydiv h3,*/
#filterinfostate {
    margin: 8px 10px;
    font-weight: 700;
}

#messageslist {
    width: 70%;
}

.campaignlist-wrap #messageslist {
    width: 100%;
}

.messagelistactionsdiv,
.groupslistactionsdiv {
    text-align: center;
    margin-top: 20px;
    position: absolute;
    bottom: 14px;
}

.groupslistactionsdiv {
    text-align: center;
    width: 59%;
}

.messageslistsactions {
    cursor: pointer;
}

.sortby {
    /* margin-left: auto;
    margin-right: auto;
    text-align: center;*/
    /*width: 82%;*/
}

.sortbyitemR {
    width: 110px !important;
}

.sortbyitem {
    cursor: pointer;
    padding: 6px 0.5rem;
    border: 1px solid #dddddd;
    background-color: #F8F8F8;
    text-align: center;
    min-width: 88px;
    margin: 0px -1px;
    line-height: 19px;
}

    .sortbyitem:hover {
        background-color: #e5e7e7;
    }

    .sortbyitem img {
        margin-top: 3px;
    }

.sortybyitemselected {
    background-color: #F5F5F5;
}

.messageslistchanneltype {
    text-align: center;
}

.selectedListItem {
    background-image: url('../../Interface/images/new/icons/v.png');
}

.messageslistPreview {
    width: 100px;
    height: 120px;
    background: #fff;
    overflow: hidden;
    border-radius: 3px;
    border: 1px solid #e0e0e0;
    margin-top: 6px;
}


.smsPreview {
    border-radius: 3px;
}

.smsPreviewInner {
    background: #f3f3f3;
    padding: 4px;
    font-size: 10px;
    line-height: 1.4;
    word-wrap: break-word;
    margin: 5px;
    border-radius: 3px;
    min-height: 108px;
    text-overflow: ellipsis;
    overflow: hidden;
}

.minifiedlistitem {
    /*font-size: 14px;
    margin-bottom: 2px;*/
    border-bottom: 1px solid #ddd;
}

.listitem {
    padding: 10px 10px 14px;    
    border: 1px solid var(--light-grey-border, #E3E4E6);
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    position: relative;
    min-height: 113px;
}

    .listitem:hover {
        background-color: #f8f8f8;
        background-color: var(--light-grey-bg, #f8f8f8);
        border-color: #C8C8C8;
    }

.filterbydiv, #GridViewTablethead {
    border: 1px solid var(--light-grey-border, #E3E4E6);
    background-color: #f8f8f8;
    background-color: var(--light-grey-bg, #f8f8f8);
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    padding: 10px;
}

    .stick {
    position: sticky;
    top: 40px;
    overflow-x: hidden;
    max-height: calc(100vh - 41px);
}

    .stick::-webkit-scrollbar {
        width: 0.6em;
        background-color: #eee;
    }

    .stick::-webkit-scrollbar-thumb {
        background-color: #d2d2d2;
    }

    .stick.table-actions {
        top: 45px;
        z-index: 2;
        background-color: #fff;
        overflow-x: visible;
        /*box-shadow: 0 3px 6px -3px rgba(9,30,66,0.20), 0 0 0px rgba(9,30,66,0.24);*/
        height: 46px;
        box-shadow: rgba(9, 30, 66, 0.2) 0px 3px 6px -3px, rgba(9, 30, 66, 0.24) 0px 0px 0px;
    }

    .stick .table-icons {
        margin-top: -8px !important;
    }


.filterbylist {
    list-style: none;
    margin: 2px 0 5px;
}

    .filterbylist li {
        /*font-size: 14px;*/
        color: #111;
        padding: 5px;
        margin: 3px 0px;
    }

        .filterbylist li input[type=radio], .filterbylist li input[type=checkbox],
        .filterbylist li label {
            cursor: pointer;
            vertical-align: middle;
        }

#filterbyInfo.filterbylist li input,
#filterbyInfo.filterbylist li label {
    width: 100%;
    box-sizing: border-box;
    display: block;
}

input.hasDatepicker {
    background-image: url(../../interface/images/new/icons/Calendar.png);
    background-repeat: no-repeat;
}

.selectedfilter {
    background-color: white;
}

.messageslistchanneltype {
    font-size: 15px;
    font-weight: bold;
}

.first {
    -webkit-border-top-left-radius: 6px;
    -webkit-border-bottom-left-radius: 6px;
    -moz-border-radius-topleft: 6px;
    -moz-border-radius-bottomleft: 6px;
    border-top-left-radius: 6px;
    border-bottom-left-radius: 6px;
}

.last {
    -webkit-border-top-right-radius: 6px;
    -webkit-border-bottom-right-radius: 6px;
    -moz-border-radius-topright: 6px;
    -moz-border-radius-bottomright: 6px;
    border-top-right-radius: 6px;
    border-bottom-right-radius: 6px;
}

.listItemStrong {
    font-weight: bold;
    /*margin:2px;
    */
}

.minifiedlistItemHeadline {
    /*font-size: 16px;*/
    font-weight: 600;
    background-color: #fff;
    color: #111;
    padding: 10px;
}

.listItemHeadline {
    font-size: 15px;
    font-weight: bold;
    /*background-color: #00ADC6;
    */
    margin-left: -5px;
    margin-right: -5px;
    color: #111;
    padding: 5px;
    margin-bottom: 5px;
    /*border-bottom: 1px solid #B0BBBD;
    */
}

    .listItemHeadline .groupslisttargettype,
    .listItemHeadline .listItemName {
        display: inline-block;
        /*vertical-align:middle;*/
    }

.listsactions {
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 10px;
    text-align: center;
}

    .listsactions div, .listsactions span, .listsactions a, .listsactions a:visited {
        cursor: pointer;
        text-decoration: none;
    }

        .listsactions div:hover, .listsactions span:hover, .automation-link:hover,
        .listsactions a:hover {
            color: #61acb5 !important;
            color: var(--main-link-color, #45a8b4) !important;
        }

#MyCampaingsView .listsactions div, #MyPagesView .listsactions div {
    display: inline-block;
}

#MyCampaingsGridView .myDropdown span, #MyPagesGridView .myDropdown span {
    display: none;
}

#mainListOfGroups {
    padding: 5px;
    margin: 5px;
    /*font-size: 14px;*/
}

#messageinfo {
    padding: 5px;
    margin: 5px;
    /*font-size: 14px;*/
}

.messagefield {
    margin: 5px;
    padding: 5px;
}

.linksGraphNumbers {
    /*font: normal 14px/12px Arial, Helvetica, sans-serif;*/
    color: #333;
    text-align: left;
    padding-left: 5px;
}

.opacityImg img {
    opacity: 0.2;    
}
#campaginscommands.opacityImg img {
    opacity: 0;
}

#reportGraphsDiv {
    width: 600px;
    /*height: 320px;*/
    min-height: 320px;
}

.minHEightGraph {
    min-height: 320px;
    height: 320px;
}

.linksGraphFive {
    overflow: hidden;
}

.previewOverflow {
    overflow: auto;
}

.linksGraphClicksBar {
    /*width: 100px;*/
    position: relative;
    bottom: 7px;
}

.linksGraphAxesTable {
    width: 60%;
    position: absolute;
    left: 0px;
    min-width: 145px;
}

#topAxisNumbers,
#bottomAxisNum {
    position: relative;
    width: 60%;
}

.msgDetailsHeaderWidth {
    width: 250px;
}

.inlineClass {
    display: inline;
}

.fieldSpan {
    width: 300px;
    overflow: visible;
    white-space: nowrap;
}


/* Fix for Chrome */

body:nth-of-type(1) .inlineClass {
    display: inline-block;
}

.alignCenter,
.alignCenterall,
.alignCenterall * {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.tblInputFields td {
    padding: 7px 0;
    vertical-align: text-bottom;
}

.tblInputFields input {
    width: 500px;
    box-sizing: border-box;
}

.groupstree_folder {
    margin: 5px;
    padding: 5px;
    /*font-size: 14px;*/
    font-weight: bold;
    border-top: 1px solid black;
}

.groupstree_group label {
    padding: 2px;
    margin: 2px;
    /*font-size: 14px;*/
    cursor: pointer !important;
}

#addedsuccess {
    color: #000000;
}

/*#addedexist {
    color: #F9960C;
    margin-top: 2px;
}*/

#addedfailed {
    margin-top: 2px;
}

.funnelGraph,
#funnelGraphImg {
    width: 570px;
    height: 353px;
}

.funnelGraphSms,
#funnelGraphSmsImg {
    width: 570px;
    height: auto;
}

.funnelPadding {
    display: table;
    height: 52px;
    margin-bottom: 3px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.funnelGraphText {
    /*font-size: 14px;*/
}

.funnelDescription {
    font: normal 12px/15px Arial;
    width: 200px;
}

#lastMailing {
    /*min-height: 340px;*/
}

.graph-settings {
    position: absolute;
    top: -40px;
}

.graph-settings-filter ul.ul-filter {
    display: none;
    background-color: #fff;
    padding: 10px;
    min-width: 160px;
}

ul.ul-filter.show {
    display: block;
}


.pinkGradient {
    background-position: 0% 0%;
    -moz-border-radius-bottomright: 3px;
    -khtml-border-radius-bottomright: 3px;
    -webkit-border-bottom-right-radius: 3px;
    -moz-border-radius-topright: 3px;
    -khtml-border-radius-topright: 3px;
    -webkit-border-top-right-radius: 3px;
    border: 1px solid #fff;
    background-color: #EE3784;
    background-repeat: repeat;
    background-attachment: scroll;
    background-image: -webkit-gradient(linear, left top, right top, from(#ffffff), to(#EE3784));
}

.greenGradient {
    background-position: 0% 0%;
    -moz-border-radius-bottomright: 3px;
    -khtml-border-radius-bottomright: 3px;
    -webkit-border-bottom-right-radius: 3px;
    -moz-border-radius-topright: 3px;
    -khtml-border-radius-topright: 3px;
    -webkit-border-top-right-radius: 3px;
    border: 1px solid #fff;
    /* for non-css3 browsers */
    background-repeat: repeat;
    background-attachment: scroll;
    background-image: -webkit-gradient(linear, left top, right top, from(#ffffff), to(#A7CE3B));
    background-color: #A7CE3B;
}

.blueGradient {
    /* for non-css3 browsers */
    background-position: 0% 0%;
    -moz-border-radius-bottomright: 3px;
    -khtml-border-radius-bottomright: 3px;
    -webkit-border-bottom-right-radius: 3px;
    -moz-border-radius-topright: 3px;
    -khtml-border-radius-topright: 3px;
    -webkit-border-top-right-radius: 3px;
    border: 1px solid #fff;
    /* for non-css3 browsers */
    background-repeat: repeat;
    background-attachment: scroll;
    background-image: -webkit-gradient(linear, left top, right top, from(#fff), to(#19B6CC));
    background-color: #19B6CC;
}

.greyGradient {
    /* for non-css3 browsers */
    background-position: 0% 0%;
    -moz-border-radius-bottomright: 3px;
    -khtml-border-radius-bottomright: 3px;
    -webkit-border-bottom-right-radius: 3px;
    -moz-border-radius-topright: 3px;
    -khtml-border-radius-topright: 3px;
    -webkit-border-top-right-radius: 3px;
    border: 1px solid #fff;
    cursor: pointer;
    /* for non-css3 browsers */
    background-repeat: repeat;
    background-attachment: scroll;
    background-image: -webkit-gradient(linear, left top, right top, from(#fff), to(#6E6F73));
    background-color: #6E6F73;
}

    .greyGradient:hover,
    .blueGradient:hover,
    .greenGradient:hover,
    .pinkGradient:hover {
        border: solid 1px #BFBFBF;
        -moz-border-radius: 3px;
        -webkit-border-radius: 3px;
        -khtml-border-radius: 3px;
        cursor: pointer;
    }

.margin0, .contentarea .margin0 {
    margin: 0;
}

.margin-auto {
    margin: auto;
}
.margin-sides-auto {
    margin-right: auto;
    margin-left: auto;
}
.margin-side0 {
    margin-right: 0;
    margin-left: 0;
}
.margin2 {
    margin: 2px 0px 2px 0px;
}

.margin5 {
    margin-top: 5px;
    margin-bottom: 5px;
}

.padding5 {
    padding-top: 5px;
    padding-bottom: 5px;
}

.padding10 {
    padding-top: 10px;
    padding-bottom: 10px;
}

.linksGraphColumns {
    position: absolute;
    top: 5px;
    left: 1px;
    width: 99%;
    min-width: 245px;
}

.twoAxis {
    position: absolute;
    left: 33%;
    width: 33%;
    display: inline-block;
    border-left: solid 1px #e6e6e6;
    border-right: solid 1px #e6e6e6;
}

.oneAxis {
    position: relative;
    left: 50%;
    width: 1px;
    display: inline-block;
    border-left: solid 1px #e6e6e6;
}

.axisMaxNum {
    right: 0%;
    text-align: right;
    position: absolute;
    top: 0px;
}

.axisTwoNumSecond {
    left: 57%;
    text-align: center;
    position: absolute;
    top: 0px;
}

.axisTwoNumFirst {
    left: 24%;
    text-align: center;
    position: absolute;
    top: 0px;
}

.axisOneNum {
    left: 44%;
    text-align: center;
    position: absolute;
    top: 0px;
}

.axisNumbes {
    width: 30px;
    display: inline-block;
}

.axisHeight {
    height: 250px;
}

.linksGraphDiv {
    border-left: solid 1px #e6e6e6;
}

.tooltipimg {
    vertical-align: middle;
    /*margin-bottom: -4px;
    */
}

    .tooltipimg:hover {
        /*background-color: #E6F3F9;
    */
        opacity: 0.7;
    }

.previewimg {
    vertical-align: middle;
    cursor: pointer;
}

#lastMailing ul.tabs {
    margin: 0px 0px 0px 4px;
    padding: 0;
    list-style: none;
    text-align: left;
}

#presentFilters ul {
    padding: 0;
    list-style: none;
    margin: 20px 0px 25px 0px;
}

#lastMailing ul.tabs li {
    float: left;
    margin: 2px 5px;
    padding: 10px;
    /*font-size: 14px;*/
    font-weight: bold;
    margin-bottom: -1px;
    overflow: hidden;
    position: relative;
    background-color: #9B9B9B;
    color: #fff;
    -moz-border-radius-topright: 5px;
    -khtml-border-radius-topright: 5px;
    -webkit-border-top-right-radius: 5px;
    -moz-border-radius-topleft: 5px;
    -khtml-border-radius-topleft: 5px;
    -webkit-border-top-left-radius: 5px;
}

#lastMailing ul.tabs .active {
    background-color: White;
    color: #222;
}

#lastMailing ul.tabs li a {
    text-decoration: none;
    /*font: normal 16px/22px Arial, Helvetica, sans-serif;*/
    color: #fff;
    display: block;
    padding: 0 5px;
    outline: none;
}

#lastMailing ul.tabs li.active a {
    color: #222;
}

#lastMailing ul.tabs li:hover {
    background: #ccc;
}

#lastMailing ul.tabs li.active:hover {
    background-color: #F4F4F4;
    cursor: default;
}

#lastMailing ul.tabs li.active {
    background-color: #F4F4F4;
    /*font: normal 17px/24px Arial, Helvetica, sans-serif;*/
    border-radius: 5px;
    border-top: 5px solid #dddddd;
    border-left: 5px solid #dddddd;
    border-right: 5px solid #dddddd;
    margin: 0px 0px -1px 0px;
}

#lastMailing .tab_container {
    border-top: none;
    width: 100%;
    margin-top: -1px;
    background: #fff;
    -moz-border-radius-bottomright: 5px;
    -khtml-border-radius-bottomright: 5px;
    -webkit-border-bottom-right-radius: 5px;
    -moz-border-radius-bottomleft: 5px;
    -khtml-border-radius-bottomleft: 5px;
    -webkit-border-bottom-left-radius: 5px;
}

#lastMailing .tabBorderTop {
    border-top: 1px solid #D0D0D0;
    line-height: 2px;
    height: 5px;
}

.downList ul.ulProp {
    margin: 0px 0px 0px 4px;
    padding: 0;
    list-style: none;
    /*border-bottom: 1px solid #D0D0D0;
    */
    width: 100%;
}

.presentFilters ul {
    width: 240px;
    padding: 0;
    float: left;
    list-style: none;
    margin: 20px 0px 25px 0px;
}

.downList ul.ulProp li {
    margin: 0;
    padding: 10px;
    height: 20px;
    /*font-size: 14px;*/
    font-weight: bold;
    margin-bottom: -1px;
    overflow: hidden;
    position: relative;
    background-color: #DEDEDE;
    border: solid 1px #CCC;
    -moz-border-radius-topright: 5px;
    -khtml-border-radius-topright: 5px;
    -webkit-border-top-right-radius: 5px;
    -moz-border-radius-topleft: 5px;
    -khtml-border-radius-topleft: 5px;
    -webkit-border-top-left-radius: 5px;
}

.downList ul.ulProp .active {
    background-color: White;
}

.downList ul.ulProp li a {
    text-decoration: none;
    font: normal 17px/24px Arial, Helvetica, sans-serif;
    color: #6D6E72;
    display: block;
    padding: 4px 10px;
    outline: none;
}

.downList ul.ulProp li:hover {
    background: #ccc;
}

.downList ul.ulProp li.active:hover {
    background-color: #F4F4F4;
    cursor: default;
}

.downList ul.ulProp li.active {
    background-color: #F4F4F4;
    border-bottom: 1px solid #F4F4F4;
    font: normal 17px/24px Arial, Helvetica, sans-serif;
    -moz-border-radius-topright: 5px;
    -khtml-border-radius-topright: 5px;
    -webkit-border-top-right-radius: 5px;
    -moz-border-radius-topleft: 5px;
    -khtml-border-radius-topleft: 5px;
    -webkit-border-top-left-radius: 5px;
    border-top: 1px solid #D0D0D0;
    border-left: 1px solid #D0D0D0;
    border-right: 1px solid #D0D0D0;
}

.paddingmaring {
    margin: 5px;
    padding: 5px;
}

.paddedcontainer * {
    padding: 5px;
}

.cb1,
.cb2,
.cb3,
.cb4,
.cb5 {
    height: 15px;
    width: 15px;
    cursor: pointer;
    display: inline-block;
    background-image: url('../../Interface/images/report/graphs-cb.png');
    padding: 0px;
    vertical-align: middle;
}

.cb1 {
    background-position: 0px 0px;
}

.cb2 {
    background-position: 0px -30px;
}

.cb3 {
    background-position: 0px -60px;
}

.cb4 {
    background-position: 0px -90px;
}

.cb5 {
    background-position: 0px -120px;
}

.dropdownbutton, .dropdown-menu {
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    border-radius: 3px;
}

    .dropdownbutton .textside:hover,
    .dropdownbutton .arrowside:hover {
        opacity: 0.7;
    }

    .dropdownbutton .textside,
    .dropdownbutton .arrowside {
        display: inline-block;
        color: #ffffff;
        font-family: inherit;
        font-size: 15px;
        text-decoration: none;
        /*cursor: pointer;
        -moz-box-shadow: inset 0px 0px 0px 0px #15b5cb;
        -webkit-box-shadow: inset 0px 0px 0px 0px #15b5cb;
        box-shadow: inset 0px 0px 0px 0px #15b5cb;
        text-shadow: 1px 1px 0px #15b5cb;*/
        background-color: #15b5cb;
        background-color: var(--main-link-color, #45a8b4);
        /*line-height: 21px;*/
        user-select: none;
    }

    .dropdownbutton .textside {
        -webkit-border-top-left-radius: 3px;
        -webkit-border-bottom-left-radius: 3px;
        -moz-border-radius-topleft: 3px;
        -moz-border-radius-bottomleft: 3px;
        border-top-left-radius: 3px;
        border-bottom-left-radius: 3px;
    }

    .dropdownbutton .arrowside {
        width: 15px;
        height: 15px;
        background-image: url('../../Interface/images/new/icons/dropdownarrow.png');
        background-repeat: no-repeat;
        background-size: 34% 54%;
        background-position: center;
        -webkit-border-top-right-radius: 3px;
        -webkit-border-bottom-right-radius: 3px;
        -moz-border-radius-topright: 3px;
        -moz-border-radius-bottomright: 3px;
        border-top-right-radius: 3px;
        border-bottom-right-radius: 3px;
        padding: 7px 13px;
    }

    .dropdownbutton .activedrop {
    }

    .dropdownbutton .arrowside img {
        padding: 5px;
    }

.dropdownitem {
    cursor: pointer;
    color: #111;
    background-color: #15b5cb;
    background-color: var(--main-link-color, #45a8b4);
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    border-radius: 3px;
    border: 1px solid #DEDEDE;
    font-family: inherit;
    font-size: 15px;
    text-decoration: none;
    font-weight: bold;
    padding: 5px;
    white-space: nowrap;
    width: 130px;
    height: 18px;
    overflow: hidden;
    text-overflow: ellipsis;
}

    .dropdownitem:hover {
        background-color: #F7F4F4;
    }

.dropdownoptions {
    display: none;
    position: absolute;
    cursor: pointer;
    top: 30px;
}

.BorderTableTitle {
    background-color: #DEDEDE;
    padding: 5px;
}

    .BorderTableTitle * {
        background-color: inherit !important;
        /*color: #111 !important;*/
    }

    .BorderTableTitle a, .BorderTableTitleNew a {
        text-decoration: none;
    }

        .BorderTableTitleNew a:hover, .BorderTableTitle a:hover {
            text-decoration: underline;
        }

.butBlue {
    vertical-align: middle;
    text-align: center;
    text-decoration: none;
    white-space: nowrap;
    padding-top: 0px;
    margin-top: 0px;
    background: url(../../interface/images/butBlueM.jpg) repeat-x center right;
    height: 28px;
}

    .butBlue a,
    .butBlueTextLink {
        color: #fff;
        font: bold 12px Arial, Helvetica, sans-serif;
        text-decoration: none;
        cursor: pointer;
    }

        .butBlueTextLink over {
            color: #3A3939;
            text-decoration: underline;
        }

        .butBlue a:hover {
            color: #fff;
            font: bold 12px Arial, Helvetica, sans-serif;
            text-decoration: underline;
        }


/* pop-ups */

.popup {
    z-index: 990;
    border: 1px solid #C8C8C8;
    background-color: #F8F8F8;
    padding: 10px;
    box-shadow: rgba(0, 0, 0, 0.1) -3px 3px 3px;
    -moz-box-shadow: rgba(0, 0, 0, 0.1) -3px 3px 3px;
    -webkit-box-shadow: rgba(0, 0, 0, 0.1) -3px 3px 3px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
}

    .popup.MenuItem {
        color: #00ADC6;
    }

.ui-datepicker-next label,
.ui-datepicker-prev label {
    display: none;
}
/* Hide calendar when noDay format is set */
.ui-datepicker.noDay .ui-datepicker-calendar {
    display: none;
}

#divQRCode {
    height: auto;
}

.recipientsCountDiv {
    width: 18%;
    text-align: center;
    white-space: nowrap;
    padding: 26px 5px;
    font-size: 20px;
    background: #00ADC6;
    /* Old browsers */
    background: -moz-linear-gradient(top, #39BAE5 0%, #9ee8fa 100%);
    /* FF3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #39BAE5), color-stop(100%, #9ee8fa));
    /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(top, #39BAE5 0%, #9ee8fa 100%);
    /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(top, #39BAE5 0%, #9ee8fa 100%);
    /* Opera 11.10+ */
    background: -ms-linear-gradient(top, #39BAE5 0%, #9ee8fa 100%);
    /* IE10+ */
    background: linear-gradient(top, #39BAE5 0%, #9ee8fa 100%);
    /* W3C */
    filter: progid: DXImageTransform.Microsoft.gradient( startColorstr='#39BAE5', endColorstr='#9ee8fa', GradientType=0);
    /* IE6-9 */
    box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 8px;
    -moz-box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 8px;
    -webkit-box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 8px;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    border-radius: 6px;
    color: White;
}

#viewprocess {
    border-top: 0px;
    width: 200px;
}

#dhtmltooltip {
    font: 14px Arial, sans-serif;
    position: absolute;
    width: 100px;
    border: 1px solid #dddddd;
    border-radius: 4px;
    padding: 4px;
    background-color: #ffffff;
    visibility: hidden;
    z-index: 9999999999;
    text-align: center;
    /*direction: ltr;*/
    display: none;
    box-shadow: var(--ds-overlay,0 4px 8px -2px rgba(9,30,66,0.25),0 0 1px rgba(9,30,66,0.31));
}

#exportLinks {
    position: relative;
}

.dropDownExport {
    background: rgb(255, 255, 255);
    box-shadow: rgba(0, 0, 0, 0.1) -3px 3px 3px;
    -moz-box-shadow: rgba(0, 0, 0, 0.1) -3px 3px 3px;
    -webkit-box-shadow: rgba(0, 0, 0, 0.1) -3px 3px 3px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    border: 1px solid #DEDEDE;
    /*border-top:0px;
    */
    padding: 10px;
    position: absolute;
    width: 200px;
    z-index: 5;
}

#loadingImage {
    margin: auto auto;
}

#addBlocksDiv,
#colorButtons {
    display: none;
    background: rgb(255, 255, 255);
    box-shadow: rgba(0, 0, 0, 0.1) -3px 3px 3px;
    -moz-box-shadow: rgba(0, 0, 0, 0.1) -3px 3px 3px;
    -webkit-box-shadow: rgba(0, 0, 0, 0.1) -3px 3px 3px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    border: 1px solid #DEDEDE;
    border-top: 0px;
    margin-top: -1.6px;
    padding: 10px;
    position: absolute;
    width: 500px;
}

.topaction,
#divNotifications {
    z-index: 99999;
}

    /* New Full width user helpbar*/


    #settingsmenu.NavigationHelpBarWrap .close, .create-new-div .close,
    #viewprocess.NavigationHelpBarWrap .close,
    #divNotifications.NavigationHelpBarWrap .close,
    .welcome-inner .close, .support-menu .close, #searchresults .close,
    .automation-close, .closeWrapper .close {
        background: url('../../interface/images/new/icons/icon-close-w.svg') no-repeat center;
        background-size: 63%;
        /*padding: .2em .6em;*/
        cursor: pointer;
        display: inline-block;
        width: 20px;
        height: 20px;
        position: absolute;
        top: 20px;
        z-index: 5;
    }

.support-menu .close, #searchresults .close, .create-new-div .close {
    background: url('../../interface/images/new/icons/icon-close-w.svg') no-repeat center;
    background-size: 63%;
}

.welcome-inner .close, .content-box .close, .create-new-div .close {
    background: url('../../interface/images/new/icons/icon-close.svg') no-repeat center;
}

#settingsmenu .settingsmenuWrap {
    position: relative;
}


.hoveredsettingsbutton {
    background: rgb(255, 255, 255);
    /* Old browsers */
    background: rgba(255, 255, 255, 1);
    -webkit-border-top-left-radius: 6px;
    -webkit-border-top-right-radius: 6px;
}

#settingsmenu a:not(.genBtn),
#settingsmenu a:visited,
#viewprocess a,
#viewprocess a:visited,
#divNotifications a,
#divNotifications a:visited,
.closeWrapper .close {
    padding: 0px 0px;
    line-height: 24px;
    /*font-size: 14px;*/
    display: inline-block;
    background-size: 60% !important;
}

.dashboardmenu a {
    display: block;
}

.dashboardmenu div {
    width: 100% !important;
    padding: 6px 0px;
    text-align: center;
}


/* New ProgressTracker */

#Proctrack {
    margin: 0;
    padding: 0;
    position: relative;
    list-style: none;
}

    #Proctrack li:first-child {
        z-index: 10;
        margin-right: 0;
    }

    #Proctrack li:nth-child(2) {
        z-index: 9;
    }

    #Proctrack li:nth-child(3) {
        z-index: 8;
    }

    #Proctrack li:nth-child(4) {
        z-index: 7;
    }

    #Proctrack li:nth-child(5) {
        z-index: 6;
    }

    #Proctrack li {
        display: inline-block;
        margin-right: -4px;
        position: relative;
    }

        #Proctrack li a {
            display: inline-block;
            position: relative;
            line-height: 12px;
            min-width: 40px;
            /*padding-right: 40px;
    */
            font-size: 15px;
            /*padding-left: 5px;
    */
            /*padding-top: 10px;
    */
            font-weight: bold;
            text-align: center;
            color: #B1B1B1;
            /*background: #fff;
    */
            -webkit-transition: none 0 linear .0001s;
            -moz-transition: none 0 linear .0001s;
            -o-transition: none 0 linear .0001s;
            -ms-transition: none 0 linear .0001s;
            transition: none 0 linear .0001s;
            text-decoration: none;
        }

.progress-bottom {
    width: calc(100% - 220px);
}

.is-collapsed .progress-bottom {
    width: calc(100% - 50px);
}

span.trackerTxt {
    display: inline-block;
}

#Proctrack li.current a,
#Proctrack li.current a:before {
    color: #fff;
}

    #Proctrack li.current a:hover {
        color: #fff;
    }

#Proctrack li:last-child a:before {
    content: '';
    display: none;
}

#progress .genBtn {
    font-weight: bold;
}


/* End New ProgressTracker */

.progressbar {
    max-width: 300px;
}


.TableTitle {
    background-color: #777373;
    color: White;
    font-size: 16px;
    padding: 8px;
}

.striped {
    background-color: #EFF0F2;
}


.innertable {
    border: 2px solid #ddd !important;
}

.table table,
.table table td {
    border: 0px solid #777373;
}

.table {
    border: 1px solid #777373;
    width: 100%;
}

.innertable td {
    padding: 5px;
    /*font-size: 14px;*/
    border: 1px solid #E3E4E6 !important;
}

.table td {
    padding: 5px 1px;
    /*font-size: 14px;
    border: 1px solid #E3E4E6;*/
    border: 1px solid #d5d5d5;
}

.table a,
.innertable a {
    text-decoration: none;
}

#goalsTable,
#recipientsTable,
#MessageDetailsTable,
#dynamicPagesTable {
    /*border: 1px solid #E3E4E6;*/
    width: 100%;
    vertical-align: top;
    /*-webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;*/
    table-layout: fixed;
}

/*#goalsTable tr:not(:first-child):hover td,
    #recipientsTable tr:not(:first-child):not(.selectedTR):hover td, #dynamicPagesTable tr:not(:first-child):hover td {*/
/*background-color: #d6d8dd;*/
/*background-color: #e6e7e9;
        z-index: 999999;
    }*/

#ReviewSentMessagesSent tr:not(:first-child):hover td {
    background-color: #BDC3C7;
    color: #FFFFFF;
    z-index: 999999;
}

.listmaincommands .actionicon {
    /*width: 30px !important;
    height: 30px !important;*/
    /*margin: 0px 3px !important;*/
}

.actionicon div {
    min-width: 100px;
}

.actionicon svg {
    width: 30px;
}

.listmaincommands .actionicon div {
    /*margin: 0px -20px;*/
    z-index: 2;
}

#settingsmenu .actioniconwrap div {
    word-break: break-word;
}

.tooltip-small {
    min-width: 66px;
}

.actionicon {
    /*text-align: center;*/
    display: inline-block;
    /* cursor: pointer;*/
    border: 0px;
    /* width: 35px;*/
    position: relative;
}

    .actionicon input:hover {
        border: 0px;
        -webkit-box-shadow: rgba(0, 0, 0, 0) 0px 0px 0px;
        box-shadow: rgba(0, 0, 0, 0) 0px 0px 0px;
        -moz-box-shadow: rgba(0, 0, 0, 0) 0px 0px 0px;
    }

.top-nav .actionicon {
    width: auto;
}

.actionicon div, #exporttooltip {
    margin: 3px auto 0px auto;
    display: none;
    background-color: #333;
    text-align: center;
    padding: 5px 4px;
    /*width:75px; */
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    position: absolute;
    /*border: 1px solid #C8C8C8;*/
    color: #fff;
    z-index: 7;
    font-size: 14px;
    font-weight: normal;
}

    .actionicon div a, .actionicon div a:visited, .actionicon div a:hover {
        color: #777373;
    }

#exporttooltip, #pageheadline .actionicon div {
    top: 50px !important;
}

#pageheadline .actionicon {
    width: auto;
    /*min-width:55px;
    */
}

.topIcon {
    padding: 4px;
}

    .topIcon:hover {
        background-color: #eee;
        border-radius: 50%;
        padding: 4px;
    }

.campaignsmenu {
    text-align: center;
    width: 260px;
    padding: 10px 30px;
}

    .campaignsmenu a {
        margin-top: 2px;
        display: block;
    }

.searchaction, .searchreset {
    margin: 10px 15px;
    margin-top: 0px;
}

    .dashboardaction, .dashboardaction div, .searchreset div {
        cursor: pointer;
        padding: 6px 0px;
        text-align: center;
        width: 100%;
        color: #111;
        background-color: #f8f8f8;
        -moz-border-radius: 3px;
        -webkit-border-radius: 3px;
        border-radius: 3px;
        border: 1px solid #DEDEDE;
        display: inline-block;
        font-family: inherit;
        font-size: 15px;
        text-decoration: none;
        font-weight: bold;
        box-sizing: border-box;
    }

        .dashboardaction:hover, .dashboardaction div:hover, .searchreset div:hover {
            background-color: #F7F4F4;
        }

.answer {
    width: 700px;
    /*font-size: 14px;*/
    padding: 10px;
}

.question {
    width: 700px;
    cursor: pointer;
    font-size: 16px;
}

    .question:hover {
        color: #00ADC6;
    }

#faq li {
    list-style: none;
    margin: 10px 0px;
}

#searchresults {
    position: absolute;
    display: none;
    color: #fff;
}

    #searchresults a, #searchresults a:visited {
        color: #fff;
        line-height: 20px;
        word-break: break-word;
    }

.resultsTitle {
    margin-bottom: 10px;
}

.resultsDiv h3 {
    font-size: 15px;
}

.resultsDiv h3, .resultsDiv h4 {
    margin-top: 5px;
    margin-bottom: 5px;
}

.resultsDiv h4 {
    line-height: 1.6;
}

.resultsSubDiv {
    line-height: 16px;
    margin: 5px 0 5px;
}

    .resultsSubDiv .highlight {
        background-color: #15b5cb;
        padding: 2px;
    }

#GlobalSearch {
    width: 200px;
    line-height: 18px;
    background-color: #fff;
    border: 0;
    border-bottom: 1px solid #c8c8c8;
}

.resultsDivViewMore {
    margin-top: 10px;
    text-align: center;
}

.permissionsTable {
    padding: 5px;
}

    .permissionsTable tr {
        padding: 5px;
        margin: 5px;
    }

    .permissionsTable td {
        padding: 5px;
    }

.filtertext {
    display: none;
}

.loadinglighbox {
    display: none;
    position: fixed;
    border: 2px solid #777373;
    background-color: #DEDEDE;
    font-size: 18px;
    text-align: center;
    min-width: 24%;
    min-height: 24%;
    top: 38%;
    left: 38%;
    z-index: 1002;
    overflow: auto;
}

    .loadinglighbox div {
        margin-top: 22%;
    }

.filtergroups {
    cursor: pointer !important;
}

.highlight {
    background-color: var(--iw-pink, #f07d75);
    color: white;
    font-weight: bold;
}

.highlightW {
    background-color: #fff;
    color: var(--iw-pink, #f07d75);
    border: 1px solid var(--iw-pink, #f07d75);
}

.ai-highlight {
    background-color: #fff9db !important;
    border-color: var(--iw-yellow, #f2c900) !important;
    border-width: 2px !important;
}


/* Select template page */
#targetTBody.images-grid {
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 25px;
}

@media only screen and (max-width:1370px) {
    #targetTBody.images-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

#tbl_categories div {
    cursor: pointer;
    padding: 1px 8px;
}

#tbl_categories .clicked div label {
    color: #fff;
}

.templatewrapper {
    border: 2px solid #eee;
    background-color: #fff;
    text-align: center;
    width: 100%;
    min-height: 220px;
    max-height: 230px;
    overflow: hidden;
    border-radius: 3px;
}

.templateDesc {
    margin: 15px auto;
    width: 96%;
    padding-left: 26px;
    height: 40px;
    box-sizing: border-box;
}

.clickedtemplatewrapper {
    background-color: #00ADC6 !important;
    border: 2px solid #C8C8C8 !important;
    color: White !important;
}

    .clickedtemplatewrapper a, .clickedtemplatewrapper a:visited {
        color: White !important;
    }

.top-nav-menu #chooselanguage {
    display: none;
    position: absolute;
    padding: 0;
    z-index: 1005;
    margin: 0;
}

#settingsmenu #chooselanguage a {
    display: inline-block;
}

.templateinner img {
    width: 100%;
    vertical-align: bottom;
    /*max-height: 270px;*/
}

.selecttemplateDiv, .templatecommands {
    width: 115px;
    padding: 8px 0;
    /*background-color: #00adc6;*/
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    color: White;
    font-size: 18px;
    visibility: hidden;
    position: absolute;
    left: calc(50% - 57.5px);
    top: calc(37% - 12px);
    z-index: 2;
}

.templatecommands {
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    padding: 0;
    opacity: 0.5;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

    .templatecommands:hover, .templatecommands:hover .template-overlay, .templatecommands .genBtn:hover {
        opacity: 1 !important;
    }

    .templatecommands .template-btns-wrap {
        z-index: 1;
        justify-content: center;
        align-items: center;
        display: inline-flex;
        justify-content: center;
        align-items: center;
        box-sizing: border-box;
        flex-direction: column;
    }

        .templatecommands .template-btns-wrap .btn-reset {
            border: 1px solid transparent !important;
        }

            .templatecommands .template-btns-wrap .btn-reset:hover {
                border: 1px solid var(--main-link-color, #45a8b4) !important;
            }

    .templatecommands:hover .genBtn {
        -webkit-transition: transform .2s ease-out;
        transition: transform .2s ease-out;
        -webkit-transform: translateY(0px);
        transform: translateY(0px);
    }

    .templatecommands .genBtn {
        /*width: 108px;*/
        width: 170px;
        -webkit-transform: translateY(10px);
        transform: translateY(10px);
    }

        .templatecommands .genBtn:first-of-type {
            margin-bottom: 10px;
            transition: all .1s linear;
        }

        .templatecommands .genBtn:hover {
            border: 1px solid #fff;
        }

.template-overlay {
    background-color: rgba(22, 45, 61, 0.8);
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    pointer-events: none;
    overflow: visible;
    -webkit-transition: 0.2s ease-out opacity;
    transition: 0.2s ease-out opacity;
    opacity: 0;
}

.tempStar {
    position: absolute;
    left: 0;
    bottom: 32px;
}

.starImg {
    background: url('../../interface/images/new/icons/starl.png') no-repeat center;
    height: 20px;
    width: 20px;
    display: inline-block;
    cursor:pointer;
}

.starred .starImg {
    background: url('../../interface/images/new/icons/star.png') no-repeat center;
}

.CatList label {
    padding: 3px 14px;
    margin: 2px 0;
    background: #fff;
    line-height: 30px;
    display: block;
    cursor: pointer;
}

.CatList input {
    display: none;
}

    .CatList input[type=radio]:checked + label {
        background: var(--main-link-color, #45a8b4);
        color: #fff;
    }

.templateinner {
    margin-left: auto;
    margin-right: auto;
}

.templatewrapperEmail .templateinner img {
    width: 56%;
}

.templatewrapperEmail {
    background: #eee;
}

.templateinner h3 {
    margin: 10px 0;
    -webkit-margin-after: 10px !important;
}

#templatepreview {
    display: none;
    position: fixed;
    padding: 10px;
    background: rgb(255, 255, 255);
    box-shadow: rgba(0, 0, 0, 0.1) -3px 3px 3px;
    -moz-box-shadow: rgba(0, 0, 0, 0.1) -3px 3px 3px;
    -webkit-box-shadow: rgba(0, 0, 0, 0.1) -3px 3px 3px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    border: 1px solid #DEDEDE;
    z-index: 50;
    top: 25%;
    left: 25%;
    width: 50%;
    text-align: center;
}

#enterFormFields {
    color: White;
    font-weight: bold;
}

#tooltip {
    display: none;
    z-index: 50;
    position: absolute;
    text-align: center;
    margin: 0px;
    /*font-size: 14px;*/
}
/* Base styles for the tooltip */
[data-tooltip], .tooltip {
    position: relative;
    cursor: pointer;
    /*vertical-align: middle;
    white-space: pre-wrap;*/
}
    /* Base styles for the entire tooltip */
    [data-tooltip]:before, [data-tooltip]:after, .tooltip:before, .tooltip:after {
        position: absolute;
        visibility: hidden;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
        filter: progid: DXImageTransform.Microsoft.Alpha(Opacity=0);
        opacity: 0;
        -webkit-transition: opacity 0.2s ease-in-out, visibility 0.2s ease-in-out, -webkit-transform 0.2s cubic-bezier(0.71, 1.7, 0.77, 1.24);
        -moz-transition: opacity 0.2s ease-in-out, visibility 0.2s ease-in-out, -moz-transform 0.2s cubic-bezier(0.71, 1.7, 0.77, 1.24);
        transition: opacity 0.2s ease-in-out, visibility 0.2s ease-in-out, transform 0.2s cubic-bezier(0.71, 1.7, 0.77, 1.24);
        -webkit-transform: translate3d(0, 0, 0);
        -moz-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
        pointer-events: none;
    }
    /* Show the entire tooltip on hover and focus */
    [data-tooltip]:hover:before, [data-tooltip]:hover:after, [data-tooltip]:focus:before, [data-tooltip]:focus:after, .tooltip:hover:before, .tooltip:hover:after, .tooltip:focus:before, .tooltip:focus:after {
        visibility: visible;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
        filter: progid: DXImageTransform.Microsoft.Alpha(Opacity=100);
        opacity: 1;
    }
    /* tooltip's directional arrow */
    .tooltip:before, [data-tooltip]:before {
        z-index: 1001;
        border: 6px solid transparent;
        background: transparent;
        content: "";
    }

.tooltip-down [data-tooltip]:after {
    top: calc(100% + 32px);
    bottom: auto;
}

.tooltip-down [data-tooltip]:before {
    margin-bottom: 0;
    border-bottom-color: #333;
    border-top-color: transparent;
    top: calc(100% + 20px);
    bottom: auto;
}

.tooltip-right [data-tooltip]:after {
    right: auto;
    left: 0;
    width: 12em;
}

/* tooltip's content area */
.tooltip:after, [data-tooltip]:after, #tiptip_content {
    z-index: 11002;
    width: 17em;
    background-color: #333;
    color: #fff;
    content: attr(data-tooltip);
    padding: 16px 20px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    font-size: 14px;
    font-weight: normal;
    line-height: 1.3;
    box-sizing: border-box;
    word-break: break-word;
}

.tooltip.tooltip-width:after, [data-tooltip].tooltip-width:after {
    width: 11em;
}

[data-tooltip]:before, [data-tooltip]:after, .tooltip:before, .tooltip:after, .tooltip-top:before, .tooltip-top:after {
    bottom: 100%;
    left: 50%;
}

.showtipLabel-side[data-tooltip]:after {
    left: 360%;
    width: 12em;
}

[data-tooltip]:before, .tooltip:before, .tooltip-top:before {
    margin-left: -6px;
    margin-bottom: -12px;
    border-top-color: #333;
}
/* Horizontally align top/bottom tooltips */
[data-tooltip]:after, .tooltip:after, .tooltip-top:after {
    margin-left: -8.5em;
}

[data-tooltip]:hover:before, [data-tooltip]:hover:after, [data-tooltip]:focus:before, [data-tooltip]:focus:after, .tooltip:hover:before, .tooltip:hover:after, .tooltip:focus:before, .tooltip:focus:after, .tooltip-top:hover:before, .tooltip-top:hover:after, .tooltip-top:focus:before, .tooltip-top:focus:after {
    -webkit-transform: translateY(-12px);
    -moz-transform: translateY(-12px);
    transform: translateY(-12px);
}

#tiparrow {
    text-align: center;
    border-left: 9px solid transparent;
    border-right: 9px solid transparent;
    border-top: 10px solid #212121;
    border-bottom: 6px solid transparent;
    height: 4px;
    width: 2px;
    margin: 7px auto 0 !important;
    visibility: visible;
    display: inline-block;
}

#tipbody {
    background: #212121;
    color: #fff;
    padding: 12px 14px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: normal;
    line-height: 1.5;
    box-sizing: border-box;
    top: 10px;
    position: relative;
}
/* click tooltip */
.click-tooltip {
    display: inline-block;
    background: #c1c1c1;
    color: #fff;
    padding: 2px 7px;
    border-radius: 30px;
    position: relative;
    line-height: 1;
    font-size: 14px;
}

    .click-tooltip:hover {
        background: #939393;
    }

#MyCampaingsGridView .click-tooltip {
    background: var(--main-link-color, #45a8b4);
    padding: 2px 8px;
}

.show-tooltip:after, .automation-tooltip {
    visibility: hidden;
    z-index: 1000;
    width: 17em;
    position: absolute;
    background-color: #333;
    color: #fff;
    content: attr(data-text);
    padding: 14px 12px;
    border-radius: 3px;
    font-weight: normal;
    line-height: 1.3;
    word-break: break-word;
    transform: translateY(0px);
    transition: transform 0.3s cubic-bezier(0.47, 1.09, 0.65, 1.07);
    top: -51px;
    left: -8.5em;
    font-size: initial;
}

.automation-tooltip {
    top: 6px;
    width: 22em;
    padding: 14px 16px;
}

    .automation-tooltip p, .active-automations {
        line-height: 1.5;
    }

    .automation-tooltip .automations-actions a {
        color: var(--main-link-color, #45a8b4);
        vertical-align: middle;
    }

    .automation-tooltip .name {
        max-width: 14em;
        text-overflow: ellipsis;
        overflow: hidden;
        white-space: nowrap;
        display: inline-block;
        vertical-align: middle;
    }

.show.show-tooltip:after {
    visibility: visible;
    transform: translateY(-18px);
}

.show.automation-tooltip {
    transform: translateY(26px);
    visibility: visible;
}

.actions-tooltip p {
    margin: 5px 0;
}

.icon-scheduled {
    background-image: url(../images/timeIcon.png);
    background-repeat: no-repeat;
}

#popUpText, #confirmDialogContent {
    /*color: Black;
    font-weight: bold;
    font-size: 16px;
    line-height: 1.5;*/
    text-align: center;
    padding: 0.5em 1em;
}

#sendtotest .sendtotest-content {
    background-color: White;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    border: 1px solid #DEDEDE;
    padding: 3px;
    color: #777373;
    text-shadow: 0px 0px 0px;
    padding: 21px;
    cursor: default;
    margin: 0px;
}

#sendtotest textarea {
    width: 350px;
}

#sendtestexplanation {
    font-size: 12px;
}

#mainSendToTestSingles {
    line-height: 1.5;
}

.flex-align {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

#creationoptions div {
    /*width: 192px;*/
    text-align: center;
}

#addrecipientsoptions a {
    text-decoration: none;
    border: 1px solid #EDEAEA;
    margin: auto auto;
    padding: 1% 1.5%;
    margin: 1%;
    width: 28%;
    max-width: 300px;
    height: auto;
    min-height: 320px;
    /*flex:1;*/
}

#creationoptions a {
    text-decoration: none;
    border: 1px solid #74c0c8;
    margin: auto auto;
    padding: 1%;
    margin: 1%;
    width: 28%;
    max-width: 328px;
    height: auto;
    min-height: 320px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
}

    #creationoptions a:hover, #addrecipientsoptions a:hover {
        border: 1px solid var(--main-link-color, #45a8b4);
        box-shadow: 0 0 0px 1px var(--main-link-color, #45a8b4);        
    }

.groupname {
    margin-left: 10px;
    margin-right: 10px;
}

.groupsdashboardDiv:hover {
    opacity: 0.8;
}

.groupsdashboardDiv {
    margin: 5px auto 10px;
    background-color: #d4ecef;
    text-align: center;
    width: 7.5rem;
    height: 7.5rem;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    word-wrap: break-word;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0.4vw;
    box-sizing: content-box;
    width: clamp(6vw, 7vw, 9vw);
    height: clamp(6vw, 7vw, 9vw);
}

.groupsInfo .groupsdashboardDiv {
    width: 10rem;
    height: 10rem;
}

.groupsdashboardDiv p {
    margin: 15px 10px;
}

.groupdates {
    margin-top: 40px;
}

.recipientcount {
    width: 175px;
}

.grouptype {
    width: 125px;
}

.listmaincommands > div {
    margin: 0px 5px;
}

.noborder, .noborder tr, .noborder th, .noborder td {
    border-collapse: collapse;
    border-spacing: 0px;
    border: none;
}

.actionicon img {
    height: auto;
    vertical-align: middle;
}
.table-icons .actionicon img, .listmaincommands .actionicon img {
    width: 26px;
}

    .actionicon {
    text-decoration: none;
}

#recentcampaign .listitem {
    border: 1px solid #e6e6e6;
}

.labelinput {
    line-height: 32px;
}

#a_forgotPassword {
    /* font-size: 14px;*/
    color: #616161;
    /*margin-top: 15px;
    */
}

.tab_content {
    border-top: solid 1px #e6e6e6;
}

.filterImgPadding {
    padding: 10px 10px 0px 15px;
}

.active {
    display: block;
    /*background-color: #e6e6e6;*/
}

.tablink {
    display: block;
}

.tabs li {
    cursor: pointer;
}

.calendar input {
    width: auto;
}

.calendar {
    font-family: Helvetica, Arial, sans-serif;
    font-size: 0.8em;
    border-collapse: collapse;
    background-color: white;
    border: solid #999999 1px;
    background-color: white;
    text-align: center;
    /*prevent user from selecting text in Mozilla & Safari - check calendar constructor for IE code)*/
    -moz-user-select: none;
    position: absolute;
    /*-khtml-user-select: none;
    */
}

table.calendar input, table.calendar select {
    font-size: 12px;
}

table.calendar td {
    border: 0;
    font-size: 10px;
    text-align: center;
}

div.mainheading {
    margin: 2px;
}

table.caldayheading {
    border-collapse: collapse;
    cursor: pointer;
    empty-cells: show;
    margin: 0 6px 0 6px;
}

    table.caldayheading td {
        border: solid #CCCCCC 1px;
        text-align: left;
        color: #0054E3;
        font-weight: bold;
        width: 22px;
    }

        table.caldayheading td.wkhead {
            border-right: double #CCCCCC 3px;
        }

table.calcells {
    border-collapse: collapse;
    cursor: pointer;
    margin: 0 6px 0 6px;
}

    table.calcells td {
        border: solid #CCCCCC 1px;
        vertical-align: top;
        text-align: left;
        font-weight: bold;
        width: 22px;
        height: 20px;
        /*IE doesn't like ems*/
    }

        table.calcells td div {
            padding: 1px;
            margin: 0;
        }

        table.calcells td.wkhead {
            background-color: white;
            text-align: center;
            border-right: double #CCCCCC 3px;
            color: #0054E3;
        }

        table.calcells td.wkday {
            background-color: #DDDDDD;
        }

        table.calcells td.wkend {
            background-color: #DDDDDD;
        }

        table.calcells td.curdate {
        }

        table.calcells td.cell_selected {
            background-color: #99CCFF;
            color: black;
        }

        table.calcells td.notmnth {
            background-color: #FFFFFF;
            color: #CCCCCC;
        }

        table.calcells td.notallowed {
            background-color: white;
            color: #EEEEEE;
            font-style: italic;
        }

        table.calcells td.hover {
            background-color: #999999;
        }

.clickhere, .clickhere a {
    cursor: pointer;
    color: Black !important;
    font-weight: bold;
    text-decoration: underline;
}

.hiddencheckbox {
    display: none;
}

.checkboximage {
    cursor: pointer;
    width: 16px;
    height: 16px;
    margin: 5px;
    border: 1px solid #D0D0D0;
    vertical-align: middle;
}
/*#groupsList .checkboximage {
    border:0;
}*/
.checkboximageFileAttach {
    cursor: pointer;
    width: 16px;
    height: 16px;
    margin: 4px 6.5px;
    border: 1px solid #D0D0D0;
}

.checkboximageFeedbackFiles {
    cursor: pointer;
    width: 16px;
    height: 16px;
    margin: 4px 6.5px;
    border: 1px solid #D0D0D0;
}

.pinkborder {
    border: 1px solid var(--iw-pink, #f07d75);
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    padding: 5px 0px;
    margin: 0px 3px;
}

#importQueue .table .BorderTableTitle {
    font-size: 10px !important;
    padding: 0px !important;
}

.paddedarea {
    padding: 15px;
}

.fieldsA {
    line-height: 25px;
}

    .fieldsA .fieldSpan {
        width: auto;
        overflow: hidden;
        white-space: nowrap;
    }

    .fieldsA label {
        font-weight: bold;
        width: 200px;
    }

#inpagenotification {
    background-color: #F3F3F3;
}

#viewprocess a {
    color: #58585A;
}

#SmallUserMsg {
    text-align: center;
    /*font-size: 14px;*/
    line-height: 1.5;
    padding: 18px 25px;
    min-width: 260px;
    margin: 60px 0% 0;
    background-color: #353739;
    position: fixed;
    display: none;
    font-weight: bold;
    color: White;
    z-index: 11005;
    bottom: 80px;
    border-radius: 5px;
    transition: all .75s ease;
    transform: translateX(0px);
    -webkit-animation: slide 0.5s ease-in-out;
    -webkit-animation-delay: 2s;
    animation: slide 0.5s ease-in-out;
}

.hide-Slide {
    opacity: 0 !important;
}

@-webkit-keyframes slide {
    0% {
        transform: translateX(-36px);
        opacity: 0;
    }

    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slide {
    0% {
        transform: translateX(-36px);
        opacity: 0;
    }

    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

#SmallUserMsg a {
    text-decoration: underline;
    color: #15b5cb;
    color: var(--main-link-color, #45a8b4);
}

.linksFloating {
    right: auto;
    width: 280px !important;
}

.contactsCountSpan {
    color: #000;
}

.minifedgroupslistContactsCount .contactsCountSpan {
    /*color: #fff !important;*/
    text-decoration: underline;
}

#progresstracker {
    margin-top: 5px !important;
}

@-moz-document url-prefix() {
    #progresstracker;

{
    margin-top: 17px !important;
}

}

.ie9 #progresstracker, .ie8 #progresstracker {
    margin-top: 17px !important;
}

#progresstracker a, #progresstracker a:visited {
    color: #58585A !important;
    font-weight: bold;
}

.funnelGraphText a {
    color: black;
    text-decoration: none;
}

#bignotificationarea {
    margin-top: 0px;
    margin-bottom: 15px;
}

#facebookSetNoImage {
    width: auto;
}

.centered {
    margin-left: auto;
    margin-right: auto;
}

.ie9 #fckToolbarX, .ie8 #fckToolbarX {
    height: 200px;
}

.disabledIcon {
    opacity: 0.4;
}

    .disabledIcon input[type=checkbox] {
        background-color: #b6b6b6 !important;
        border: 1px solid #6c6c6c !important;
    }

.disabled {
    pointer-events: none;
}

.disabled-button .showtipLabel, .disabled-button .showtipLabel-secondary {
    position: absolute;
    top: -11px;
    right: 0;
}

.disabled-link, .disabled-link:hover, span.disabled-link, span.disabled-link:hover, a.disabled-link, a.disabled-link:hover {
    color: #8f8f8f !important;
    cursor: default;
}

.disabled div, .disabled-dropdown-inner {
    background: #f2f2f2 !important;
    border-color: #d5d5d5 !important;
    cursor: default !important;
}

.disabled-button, .genBtn.disabled-button, .disabled-dropdown .DDL_Style div:hover {
    background: #e5e5e5 !important;
    border-color: #d7d6d6 !important;
    cursor: not-allowed !important;
    color: #959494 !important;
    pointer-events: none;
}

    .disabled-button[class*="tooltip"] {
        pointer-events: auto;
    }

.disabled.disabled-dark, .disabled.disabled-dark div {
    color: #fff;
}

.disabled-dropdown .textside, .disabled-dropdown .arrowside, .disabled-dropdown .blueBG {
    background-color: #9b9b9b !important;
    color: #fff;
    border-color: #c3c3c3 !important;
}

.icon-blue {
    filter: invert(49%) sepia(34%) saturate(758%) hue-rotate(145deg) brightness(102%) contrast(71%);
}

.icon-black {
    filter: invert(99%) sepia(75%) saturate(758%) hue-rotate(145deg) brightness(102%) contrast(99%);
}

.icon-grey {
    filter: invert(64%) sepia(75%) saturate(209%) hue-rotate(145deg) brightness(24%) contrast(22%);
}
.icon-grey-disabled {
    filter: invert(0%) sepia(5%) saturate(0%) hue-rotate(145deg) brightness(4%) contrast(0%);
    opacity: 0.7;
}

.newdashforwardaction, .newdashforwardaction div {
    cursor: pointer;
    background: #00ADC6;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    border-radius: 3px;
    border: 1px solid #96EBF7;
    display: inline-block;
    color: #ffffff;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 15px;
    padding: 0px 3px;
    text-decoration: none;
    width: 100%;
}

.newsmalldashforwardaction, .newsmalldashforwardaction div {
    cursor: pointer;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    border-radius: 3px;
    display: inline-block;
    color: #ffffff;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 12px;
    padding: 1px 1px;
    text-decoration: none;
    width: 100%;
}

.newdahsboardheadline {
    margin-left: 10px !important;
    font-size: 20px;
    font-weight: normal;
    -webkit-border-top-left-radius: 5px;
    -moz-border-radius-topleft: 5px;
    border-top-left-radius: 5px;
    -webkit-border-bottom-left-radius: 5px;
    -moz-border-radius-bottomleft: 5px;
    border-bottom-left-radius: 5px;
}

.newdahsboardheadlineside {
    margin-left: -10px;
    width: 15px;
    height: 40px;
    -webkit-border-top-right-radius: 5px;
    -moz-border-radius-topright: 5px;
    border-top-right-radius: 5px;
    -webkit-border-bottom-right-radius: 5px;
    -moz-border-radius-bottomright: 5px;
    border-bottom-right-radius: 5px;
}

#tagsList {
    width: 100%;
}

.tagDiv {
    cursor: pointer;
    margin: 2px 0px;
    padding: 3px 0;
    border: 1px solid transparent;
    min-height: 18px;
}

    .tagDiv:hover {
        background-color: #eee;
    }

.tagsGroupsDiv, .groupsDiv {
    padding: 0 16px;
}

.scrollWrapper {
    margin: 10px 0 0;
}

#tagsDiv, #imgtagsDiv, #fbtagsDiv {
    margin: 33px 0;
}

.tagImage {
    width: 15px;
    height: 15px;
    display: inline-block;
    border: 1px solid #D0D0D0;
    vertical-align: middle;
}

.tag-span {
    padding: 2px 10px;
    background-color: #eee;
    border-radius: 11px;
    min-width: 35px;
    display: inline-block;
    text-align: center;
    line-height: 1.3;
}

.hoverMenu {
    display: none;
    background: rgb(255, 255, 255);
    box-shadow: rgba(0, 0, 0, 0.1) -3px 3px 3px;
    -moz-box-shadow: rgba(0, 0, 0, 0.1) -3px 3px 3px;
    -webkit-box-shadow: rgba(0, 0, 0, 0.1) -3px 3px 3px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    border: 1px solid #DEDEDE;
    position: absolute;
    /*max-width: 228px;*/
    padding: 14px;
}
/* Send test */
#mainSendToTest {
    height: 315px;
    margin-left: auto;
    margin-right: auto;
    justify-content: flex-start;
}

.send-test-col {
    background: #eee;
    padding: 0.5em;
    width: 239px;
}

#testFieldsList {
    margin: 0px;
    margin-top: -10px;
}

.selectedTestGroup, .selectedTestContact {
    background-color: var(--main-link-color, #45a8b4);
    color: white;
}

.testgroupLI, .testContactLI {
    margin: 0 0 3px 0;
}

.testContactLI {
    padding: 2px 5px;
    background-color: var(--main-link-color, #45a8b4);
    color: white;
}

.testFieldInputText {
    width: 201px;
    margin-top: 5px;
    display: block;
}

.testGroup {
    /*font-size: 16px;*/
    cursor: pointer;
    padding: 6px 5px;
    width: 100%;
}

.contactEmail, .contactMobile {
    margin: 3px !important;
    height: 15px !important;
    -ms-word-break: break-all;
    word-break: break-all;
    -webkit-hyphens: auto;
    -moz-hyphens: auto;
    hyphens: auto;
    overflow: hidden;
}

.selectedTestContact .testIcon {
    background-color: inherit !important;
}

.testIconSelected {
    background-color: inherit !important;
}

.testContact {
    width: 169px;
    font-size: 12px;
    cursor: pointer;
    padding: 0px 3px;
}

.testField {
    padding: 5px;
}

.testIcon {
    width: 22px;
}

.removeFromListImg {
    display: none;
    cursor: pointer;
    width: 17px;
    position: absolute;
}

.addToListImg {
    cursor: pointer;
    width: 25px;
    height: 25px;
    margin: 0 5px;
    display: inline-block;
    vertical-align: middle;
}

#addTagInput {
    width: 120px;
}

#suggestResultsDiv {
    position: absolute;
    display: none;
    width: 300px;
    padding: 10px;
    background: rgb(255, 255, 255);
    box-shadow: rgba(0, 0, 0, 0.1) -3px 3px 3px;
    -moz-box-shadow: rgba(0, 0, 0, 0.1) -3px 3px 3px;
    -webkit-box-shadow: rgba(0, 0, 0, 0.1) -3px 3px 3px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    border: 1px solid #DEDEDE;
    z-index: 50;
}

.suggestResultDiv {
    cursor: pointer;
    padding: 5px;
}

#usernameInput input, #txtCaptcha, #textCaptcha, #loginForm input, #passwordInput input {
    outline: none;
    background-color: #fff;
    border: 2px solid #ededed;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    padding: 8px 10px;
    width: 100%;
}

#groupsListLink::before, #campaignsListLink::before, #pagesListLink::before, #automationsListLink::before {
    display: block;
    content: " ";
    margin-top: -62px;
    height: 62px;
    visibility: hidden;
    pointer-events: none;
}

.tagFilterLI label, .tagCB, .groupsSelector li label {
    cursor: pointer;
}

.groupsSelector .selectAllGroups {
    padding: 3px 6px;
    margin: 2px 3px;
    line-height: 20px;
    font-size: 11px;
    display: none;
    background: #fff;
    color: #333;
    position: absolute;
    top: 4px;
}

.ContentAreaLinkToGroups .groupsSelector {
    /* select groups in popups */
    height: calc(75vh - 154px);
    overflow: auto;
}

.groupsSelector .tagsFilterList input {
    display: none;
}

.groupsSelector .tagsFilterList label {
    display: inline-block;
    width: 100%;
    font-size: 15px;
    padding: 10px;
    font-weight: 600;
}

    .groupsSelector .tagsFilterList label:hover {
        background-color: #7fc3cc;
        color: #fff;
    }

.groupsSelector .selectedFilter {
    /*background-color: var(--main-link-color, #45a8b4) !important;
    color: white;*/
    background-color:#eee;
}

.selectedGroupImageSide {
    height: 16px;
    width: 16px;
    cursor: pointer;
}

.selectedGroupDiv {
    padding: 8px;
    margin: 3px;
    min-width: 120px;
    /*max-width: 220px;*/
    overflow: hidden;
    border: 1px solid #DEDEDE;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
}

.selectedGroupTextSide {
    max-height: 15px;
    margin: 0 5px;
}

#recentcampaign .checkboximage {
    display: none;
}

#recentcampaign .forwardaction {
    width: 100px;
    background-color: #00ADC6;
    border-color: #00ADC6;
}

#recentcampaign .messageslistPreview {
    width: 130px;
    height: 171px;
}

    #recentcampaign .messageslistPreview img {
        width: 130px;
        height: 169px;
        margin-top: 1px;
    }

#recentcampaign .listitem {
    /*font-size: 14px;*/
    margin: 0px;
    padding-top: 4px;
}

#recentcampaign .messagelistactionsdiv {
    margin-top: 120px;
}

#recentcampaign .listItemHeadline {
    display: none;
}

#recentcampaign .messageslistchanneltype {
    /*font-size: 14px;*/
    /*text-align:inherit;
    */
}

#recentcampaign .listItemStrong {
    font-weight: normal;
}

#recentcampaign .listItemHeadline {
    font-weight: normal;
}

#recentcampaign .messageslistchanneltype {
    font-weight: normal;
}

#recentcampaign .listItemStrong {
    color: #9B9B9B;
}

#recentcampaign .messageslistmiddle div {
    line-height: 20px;
}

#recentcampaign {
}

.width92 {
    width: 92%;
}

/* Reset password rules */
.pass-rules {
}

ul.pass-rules li:before {
    content: "";
    display: inline-block;
    width: 8px;
    height: 8px;
    margin-left: 4px;
    border-radius: 8px;
    background: #52bad5;
}
/* New editor */
#editor {
    min-height: 600px;
}

    #editor ul {
        list-style: initial;
        list-style-type: disc;
    }

    #editor ol {
        list-style: initial;
        list-style-type: decimal;
    }

#editorMainDiv h2 {
    font-size: 24px;
    line-height: 150%;
    font-weight: normal;
    margin-top: 0;
}

#editor .campaignGlobalBGPadding {
    vertical-align: middle;
}

.defaultImage {
    padding: 18px 0 !important;
}

    .defaultImage img {
        /*max-width:116px !important;
    width: 116px !important;
    height: auto;*/
        width: 93px !important;
        height: auto !important;
    }

#editor ul, #editor ol {
    margin: 0px 40px;
}

#addBoxPanel, #editorAdvanceddesign, #designContentArea {
    position: absolute;
    width: 230px;
    border: 2px solid #ddd;
    height: auto;
    background-color: white;
    z-index: 800;
    background-position: 50% 50%;
    background-repeat: no-repeat;
    padding-bottom: 10px;
    left: 65px;
    top: 4px;
    border-radius: 5px;
    padding: 0 20px;
    box-sizing: border-box;
}

#addBoxPanel {
    padding: 0;
    overflow-y: auto;
    max-height: calc(100vh - 235px);
}

#addBoxInner {
    padding: 10px 0;
    direction: ltr;
    /* order of elements in both languages*/
    margin: 0 auto;
    /*width:180px;*/
}

#editorAdvanceddesign {
    z-index: 999;
    top: 64px;
    padding: 0;
    width: 265px;
    overflow-y: auto;
    overflow-x: hidden;
    max-height: calc(100vh - 270px);
}

#designContentArea {
    z-index: 1001;
    top: 64px;
    padding: 0;
    width: 265px;
    overflow-y: auto;
    max-height: calc(100vh - 140px);
}

.edit-area-wrap {
    position: absolute;
    width: 30px;
    /*height: 35px;*/
    margin-right: -50px;
    margin-top: 1px;
}

.editArea:hover + .button-highlight, .moveArea:hover + .button-highlight-moveArea, .moveArea:hover + .button-highlight-duplicateArea, .deleteArea:hover + .button-highlight-deleteArea {
    display: block;
}

.button-highlight.button-highlight-designArea {
    left: 42px;
}

.button-highlight.button-highlight-deleteArea {
    background: rgb(224, 57, 57) !important;
    left: 42px;
    margin-top: 114px;
}

.button-highlight.button-highlight-moveArea {
    left: 42px;
    margin-top: 76px;
}

.button-highlight.button-highlight-duplicateArea {
    left: 42px;
    margin-top: 38px;
}

.addAreaHighlight {
    /*border: 5px solid #C8C8C8;
    outline: 4px solid #C8C8C8;
    outline-offset: 0px;*/
}

.trArea.addAreaHighlight:hover {
    position: relative;
}

    .trArea.addAreaHighlight:hover:after {
        content: '↓';
        position: absolute;
        top: calc(50% - 30px);
        left: calc(50% - 20px);
        height: 40px;
        width: 40px;
        font-size: 30px;
        z-index: 99;
        color: #fff;
        background-color: #C8C8C8;
        border-radius: 50%;
        text-align: center;
        border: 10px solid #C8C8C8;
        box-sizing: content-box;
        animation: .5s ease-out slideDown forwards;
    }

@keyframes slideDown {
    0% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(20px);
    }
}

.designSections {
    padding: 18px 20px 20px;
    border-bottom: 1px solid #e5e5e5;
}

.design-area input.inputRange {
    padding: 7px 0 !important;
}

.design-area h4, h4.sidebox-title {
    margin: 0 0 10px 0;
    font-weight: 400;
    font-size: 17px;
}

.design-area input {
    padding: 7px;
    line-height: 1.3;
}

.design-area select {
    padding: 7px;
    cursor: pointer;
}

.design-area label {
    display: block;
    color: #848484;
    /*font-size: 14px;*/
    margin-bottom: 0.5em;
}

.genBtn.designBlockBtn {
    margin-top: 0;
}

#directionSelect a {
    text-decoration: none;
    margin: 0 2px;
}

.blockToolbar {
    background-color: #fff;
    border: 3px solid #ddd;
    display: none;
    position: absolute;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    border-radius: 6px;
    padding: 8px 8px 5px;
    z-index: 1500;
    width: 820px;
    height: auto !important;
}

    .blockToolbar.stick {
        position: fixed !important;
        top: 0 !important;
        overflow: inherit;
    }

.editorBlockTabSelected {
    background-color: #fff !important;
    color: var(--main-link-color, #45a8b4) !important;
    border-bottom: 2px solid var(--main-link-color, #45a8b4) !important;
}

.editorBlockTab {
    display: inline-block;
    cursor: pointer;
    font-size: 17px;
    /*font-weight: bold;*/
    color: #333;
    width: 130px;
    text-align: center;
    /*font-family: Arial, Helvetica, sans-serif;*/
    padding: 5px 4px 6px;
}

a.cke_dialog_ui_button, a.cke_dialog_ui_button:focus {
    box-shadow: none;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
}

a.cke_dialog_ui_button_ok span {
    text-shadow: none;
}
/* text fields on cke modal */
input.cke_dialog_ui_input_text, input.cke_dialog_ui_input_password, textarea.cke_dialog_ui_input_textarea, #imageDialogContents select.cke_dialog_ui_input_select, select.cke_dialog_ui_input_select {
    margin-top: 5px;
    height: auto;
}

.cke_dialog_body .cke_dialog_title {
    margin-top: 8px;
}

.propImg {
    width: 51px;
}

label[for=rad2] .propImg {
    margin: 0 2px;
}

.imageDialog {
    border: 1px solid;
    padding: 7px;
    width: auto !important;
}

.ui-dialog.imageDialog {
    z-index: 99998;
}

.editorBlockTabs {
    border-bottom: 1px solid #eee;
    padding: 0 5px;
}

.editorTabDesign {
    display: none;
    background: #fff;
    padding: 8px;
}

.jscolor {
    cursor: pointer;
    width: 60px;
    direction: ltr;
}

.jscolorValue {
    position: relative;
}

.button-arrow {
    display: inline-block;
    margin: 0 5px;
    vertical-align: middle;
}

.blockDesignArea {
    padding: 10px 5px 5px;
    min-width: 45px;
    min-height: 90px;
}

.numberInput {
    width: 90px;
}

.blockDesignAreaTwo {
    width: 350px;
}

.blockDesignAreaThree {
    width: 230px;
}

.buttonEditor .blockDesignArea {
    padding: 5px;
    min-width: 0;
    min-height: initial;
}

.blockDesignArea label {
    display: inline-block;
}

.designBlockAreaTitle, .buttonEditor .blockDesignArea label {
    /*font-size: 14px;*/
    display: block;
    width: 100%;
    color: #848484;
    margin-bottom: 0.5em;
}

.smallInput {
    width: 60px;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
    opacity: 1;
}

#tabs #closeButton.ui-icon-close {
    margin-top: 0 !important;
}
/* Horizontal form on form editor */
#mypage.isHorizontal {
    width: inherit !important;
}

    #mypage.isHorizontal #fieldsList {
        text-align: center;
        display: table;
    }

.clearDiv {
    clear: both;
}

.clearfix::after {
    content: "";
    clear: both;
    display: table;
}

.ie8 .clearDiv {
    height: 1px;
}

#resizeHelper {
    display: none;
    border: 1px solid black;
    background-color: white;
    padding: 5px;
    opacity: 0.7;
    position: absolute;
    width: 100px;
    z-index: 100001;
}

.iwMouseOver {
    outline: #c6eefa dashed 2px;
    position: relative;
    z-index: 5;
    transition: none !important;
    -webkit-transition: none !important;
}

    .iwMouseOver:hover .iwElDiv {
        background: rgba(233, 250, 255, 0.6) !important;
    }

    .iwMouseOver:hover .defaultImage {
        background: rgba(233, 250, 255, 0.005) !important;
    }

.editorAreaHover {
    outline-color: #c6e4ed !important;
    outline-style: solid;
    outline-width: 3px;
    outline-offset: 0px;
}

#editor .columnsAreaTable:hover {
    outline: 3px solid #c6eefa;
    outline-offset: 0px;
}

.cke_editable_inline:focus {
    outline-color: #c6eefa !important;
    outline-style: solid;
    outline-width: 2px;
}

.cke_editable {
    padding: 0px;
    -webkit-nbsp-mode: normal !important;
}

.cke_top {
    padding: 10px 5px 4px !important;
}

.controlBtn {
    position: absolute;
    z-index: 1001;
    cursor: pointer;
    width: 30px;
    height: 30px;
    padding: 4px;
    opacity: 0.8;    
    background-color: #787878;
    top: 6px;
    right: 12px;
    border-radius: 21px;
    box-sizing: border-box;
}

    .controlBtn:hover {
        opacity: 1;        
    }

.delEl {
    background-color: #e03939;
}

.editArea, .deleteArea, .moveArea {
    cursor: pointer;
    background-color: #45a8b4;
    background-color: var(--main-link-color, #45a8b4);
    border-radius: 21px;
    padding: 4px;
    box-sizing: border-box;
    opacity: 0.65;    
}

.deleteArea, .moveArea {
    margin-top: 3px;
}

    .editArea:hover, .deleteArea:hover, .moveArea:hover {
        opacity: 0.86;       
    }

.columnsAreaTable:hover .areaBtn, .columnsAreaTable:hover .areaBtn1 {
    display: inline-block;
}

.editorWidthLegend {
    position: absolute;
    z-index: 1001;
    cursor: pointer;
    width: 35px;
    height: 35px;
    opacity: 0.6;    
    background-color: black;
}

.originalContent {
    display: none;
}

.emptyPlace {
    display: none;
    min-height: 75px;
    padding: 10px;
    border: 1px dashed #cfcfcf;
    background-color: #f7f7f7;
    text-align: center;
    font-size: 15px;
    overflow: hidden;
}

    .emptyPlace .flex-valign {
        min-height: 75px;
        justify-content: center;
    }

.sortable-placeholder {
    height: 75px;
    padding: 10px;
    border-top: 2px solid #C9EDF1;
    border-bottom: 2px solid #C9EDF1;
    background-color: #D4FBFF;
    text-align: center;
    line-height: 55px;
    font-size: 15px;
    font-weight: bold;
    vertical-align: middle;
    z-index: 30000;
}

.newBox, .newArea {
    text-align: center;
    cursor: pointer;
    display: inline-block;
    background: #f7f7f7;
    margin-bottom: 14px;
    margin: 8px 0px 8px 20px;
    border-radius: 50%;
    width: 76px;
    height: 76px;
    box-sizing: border-box;
}

    .newBox:hover, .newArea:hover {
        background: #d6f6ff;
        cursor: move;
    }

    .newBox img, .newArea img {
        height: 53px;
        width: 53px;
        margin: 11px auto;
        opacity: 0.85;
    }

    .newArea img {
        height: 52px;
        width: 52px;
    }

    .newBox:hover img {
        opacity: 1;
    }

    .newBox img:hover + h5 {
        color: #111;
    }

.addFieldButton {
    cursor: pointer;
    border: solid 1px white;
    margin: 5px;
    display: block;
}

    .addFieldButton:hover {
        border: solid 1px #00ADC6;
    }

    .addFieldButton img {
        width: 50px;
        height: 50px;
    }

.moveEl:hover, .moveEl {
    /*cursor: url('../images/newEditor/gray_arrow_a.png'),default;*/
    left: 8px;
    right: auto;
    cursor: move;
}

    .moveEl.iwMouseOverSmall.iwMouseOverSmallWidth {
        margin-top: 6px;
    }

    .moveEl.iwMouseOverSmallWidth:not(.iwMouseOverSmall) {
        margin-top: 37px;
        right: 10px;
        left: auto;
    }

.editAIEl.iwMouseOverSmallWidth.columnSmallWidth:not(.iwMouseOverSmall) {
    margin-top: 37px;
    right: 46px;
    left: auto;
    margin-right: unset !important;
}

#editor table a {
    color: #1ab5cc;
}

#editor a:visited {
    color: #1ab5cc;
}

.browserLink a, #editor .browserLink a, #editor .browserLink a:visited, #editor table a.browserLink, #editor table .browserLink a {
    color: #5e5e5e;
    /*font-size: 14px;*/
}

#editor .tags-footer a, .tags-footer {
    color: #5e5e5e;
}

#editor .Underline {
    text-decoration: underline;
}

.imageTextTd {
    vertical-align: top;
}

.colorPickerButton {
    background-color: white;
    padding: 5px;
    border: 1px solid black;
    color: black;
    cursor: pointer;
    /*width:35px;
    */
    text-align: center;
    /*margin: 5px auto;*/
}

.upperMenu {
    padding: 10px;
    display: inline-block;
    /*position: absolute;
    */
    background: rgb(255, 255, 255);
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    /*border: 1px solid #DEDEDE;
    */
    z-index: 50000;
}

    .upperMenu h2, .upperMenu h3, .upperMenu h4 {
        /*font-size: 14px;*/
    }

.draggingImage {
    outline: 1px solid black !important;
}

#avpw_controls {
    direction: ltr;
    text-align: right;
}

.loaderGif {
    text-align: center;
    position: absolute;
    left: calc(50% - 36px);
    top: calc(50% - 36px);
}

.loader {
    text-align: center;
    /* min-height: 180px;
    position: relative; */
    display: flex;
    justify-content: center;
    align-content: center;
    align-items: center;
    margin-top: 10px;
}

#loadingDiv {
    display: none;
    /*background-color: white;*/
    position: absolute;
    z-index: 100002;
}

#avpw_controls {
    width: 795px;
}

#avpw_control_cancel_pane {
    width: 787px;
    margin-top: 10px;
}

.loadingBar {
}

    .loadingBar .loadingBarStep {
        background-color: #00ADC6;
        float: left;
    }

.loadingBarFade {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;    
    opacity: 0.55;
    background-color: grey;
    z-index: 10000;
}

#editor .fields {
    clear: none !important;
}

.inwise-ui-resizable-w {
    right: initial !important;
    left: -5px !important;
}

.inwise-ui-resizable-se {
    background-image: url('../../Interface/images/newEditor/triangle_right.png') !important;
    background-position: initial !important;
}

.ie .inwise-ui-resizable-se {
    background-image: url('../../Interface/images/newEditor/triangle_right.png') !important;
    background-position: inherit !important;
}

.inwise-ui-resizable-sw {
    background-image: url('../../Interface/images/newEditor/triangle_left.png') !important;
    background-position: initial !important;
    cursor: sw-resize !important;
    left: 1px !important;
    right: initial !important;
}

.ie .inwise-ui-resizable-sw {
    background-image: url('../../Interface/images/newEditor/triangle_left.png') !important;
    background-position: inherit !important;
    cursor: sw-resize !important;
    left: 1px !important;
    right: inherit !important;
}

#editor .blueButton {
    -webkit-box-align: center;
    text-align: center;
    cursor: default;
    color: buttontext;
    padding: 2px 6px 3px;
    border: 2px outset buttonface;
    border-image: initial;
    background-color: buttonface;
    box-sizing: border-box;
    -webkit-appearance: push-button;
    white-space: pre;
}

.iwMouseOverSmall {
    margin-top: -28px;
}

.noLeftBorder {
    border-left: none;
}

.noRightBorder {
    border-left: none;
}

.noborder {
    border: none;
}

.avpw_is_embed #avpw_controls {
    top: 40px !important;
}

.avpw_number_input {
    height: 40px !important;
}

#editor .breakLine hr {
    border: 3px solid black;
}
/* Fix elements with min-width:100% when dragging */
#editor .ui-sortable-helper.breakLine, #editor .ui-sortable-helper.imageBox, #editor .ui-sortable-helper.buttonBox, #editor .ui-sortable-helper.socialfollow, #editor .ui-sortable-helper.socialShare {
    min-width: auto !important;
}

.iwContainer td, .break-word {
    word-break: break-word;
}

.ui-sortable-helper {
}

.hrBox {
    width: 100%;
}

.editrMenuLabel {
    width: 100px;
    display: inline-block;
    /*font-size: 14px;*/
}

area .socialMainTable img {
    height: 28px;
    width: 28px;
}

#socialNetworksPicker {
    padding: 10px;
    border: solid 1px #ddd;
    background-color: #ECECEC;
    z-index: 10001;
    margin: auto auto;
    display: none;
    direction: ltr;
    overflow: auto;
    max-height: 420px;
    transform: translateY(-5px);
    transition: transform 0.2s cubic-bezier(0.47, 1.09, 0.65, 1.07);
}

    #socialNetworksPicker.show {
        transform: translateY(-1px);
    }

.followinputdiv {
    width: 100%;
}

    .followinputdiv span {
        font-size: 12px;
        display: block;
        width: 140px;
        float: left;
        margin-left: 5px;
        margin-top: 12px;
        text-align: left;
    }

#socialNetworksPicker ul {
    list-style: none !important;
    margin: 0px;
}

#socialNetworksList {
    margin: 0px;
}

    #socialNetworksList img {
        height: auto;
        width: 45px;
        display: block;
        cursor: pointer;
        align-self: center;
    }

.toolbarButton {
    background-color: #ECECEC;
    border: 1px solid;
    padding: 7px;
    font-weight: bold;
    color: black;
    display: inline-block;
    cursor: pointer;
}

.width200 {
    width: 200px;
}

.shareTable td a {
    min-width: 2px;
    display: block;
    text-decoration: none;
}

.shareTable table table:hover .shareTextTd a {
    background: rgba(0, 0, 0, 0.1);
    border: 1px solid #c6eefa;
    box-sizing: border-box;
    min-height: 16px;
}

.shareTable table table .shareTextTd a {
    border: 1px solid transparent;
    box-sizing: border-box;
}

.styleIcon {
    border: 0;
    cursor: pointer;
    margin: 5px;
    vertical-align: middle;
}
/* HTML element */
.codeBox td {
    font-size: 16px;
    line-height: 150%;
}

.blockDesignDiv input, .blockDesignDiv select {
    opacity: 1;
    /*width:40px;*/
    line-height: 1.3;
}

.blockDesignDiv select {
    min-width: 65px;
    width: auto;
}

.codeBox_editor textarea {
    font-family: Consolas, "courier new";
}

    .codeBox_editor textarea:hover {
        background: #fff;
        opacity: 1;
    }

    .codeBox_editor textarea:focus {
        border: 1px solid #00baff;
        background: #fff;
        opacity: 1;
    }
/* Class for embedding inwise style in HTML element */
#editor .iwContent {
    font-size: 16px;
    line-height: 1.5;
    color: #000;
}

    #editor .iwContent a {
        color: #1ab5cc;
    }

.SeparatorsDiv.blockDesignArea label {
    display: inline-block;
    width: auto;
}

#editor li.socialNetworksListItem {    
    opacity: 0.4;    
    margin-bottom: 8px;
}

.enabledNetwork {    
    opacity: 1 !important;   
}

.fileHeadline {
    font-size: 15px;
    font-weight: bold;
    background-color: #00ADC6;
    color: White;
    padding: 5px;
    margin-bottom: 5px;
}

.maxWidth90 {
    max-width: 90%;
}
.maxWidth250 {
    max-width: 250px;
}
/* Sale item*/
.markSaleItem {
    outline: grey dotted thin;
}

.deleteSaleItemX {
    position: absolute;
    cursor: pointer;
    z-index: 1000;
    background: url(../images/newEditor/X_3.png) no-repeat;
    width: 15px;
    height: 15px;
}

/* Menu item START */
.editAITextBG {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgb(90, 85, 85);
    z-index: 99990;
    opacity: 0.8;
}
/* AI text */
.modalEditAIText {
    position: fixed;
    background: rgb(255, 255, 255);
    z-index: 99999;
    display: block;
    opacity: 1;
    border: 5px solid #fff;
    -webkit-border-radius: 8px;
    border-radius: 8px;
}

.editAIEl {
    /*padding: 0;*/
}
/* Menu item START */
.editMenuLinksBG {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgb(90, 85, 85);
    z-index: 99990;
    opacity: 0.8;
}

.modalEditMenuLinks {
    position: fixed;
    background: rgb(255, 255, 255);
    z-index: 99999;
    display: block;
    opacity: 1;
    border: 5px solid #fff;
    -webkit-border-radius: 8px;
    border-radius: 8px;
}

.removeMenuLink {
    padding: 0 5px;
    vertical-align: middle;
    cursor: pointer;
    color: #ff4848;
}

.separatorImg {
    width: 30px;
    height: 30px;
    border: 1px solid #c8c8c8;
}

.dragLink {
    background: url(../images/newEditor/sortLines.png) no-repeat;
    display: inline-block;
    vertical-align: middle;
    margin-left: 8px;
    margin-right: 8px;
    cursor: move;
    /*font-size: 14px;*/
    width: 15px;
    height: 18px;
}

.addMenuItemButton {
    /*font-size: 14px;*/
    padding: 4px 10px;
    line-height: 20px;
    text-align: center;
    vertical-align: middle;
    cursor: pointer;
    color: #000000;
    background: rgb(248, 248, 248);
    -webkit-border-radius: 3px;
    border-radius: 3px;
    border: 1px solid #57585a;
    display: inline-block;
    margin: 10px;
    font-family: Arial, Helvetica, sans-serif;
    text-decoration: none;
    font-weight: bold;
}

.editMenuFooter {
    text-align: end;
    padding: 10px;
}

.menuInstructions {
    padding: 10px;
}

.errorsContainer {
    background-color: #eac2c2;
    color: #af2a28;
    padding: 8px 35px 8px 35px;
    margin: 20px;
    border: 2px solid #f2e1e3;
    -webkit-border-radius: 10px;
    border-radius: 10px;
}

.errors-msg {
    background-color: #f7dada;
    color: #d01d1a;
    padding: 8px 17px;
    margin: 0;
    -webkit-border-radius: 3px;
    border-radius: 3px;
}

    .errors-msg.alert-msg {
        background-color: #fff;
        color: #111;
    }

.linkHref {
    direction: ltr;
    /*margin-left: 10px;
    margin-right: 10px;*/
}

.linkText {
    margin-left: 10px;
    margin-right: 10px;
}

.editMenuHeader {
    font-size: 16px;
    line-height: 20px;
    color: black;
    padding: 10px 8px 0;
}

.menuButton {
    cursor: pointer;
    background: #F0F0F0;
    -webkit-border-radius: 3px;
    border-radius: 3px;
    border: 1px solid #C8C8C8;
    display: inline-block;
    color: var(--iw-pink, #f07d75);
    font-family: Arial, Helvetica, sans-serif;
    /*font-size: 14px;*/
    padding: 4px 10px;
    text-decoration: none;
}
/* Menu item END */
.leftTabs > li {
    background-color: #dedede;
    padding: 10px;
    /*width: 215px;*/
    /*font-size: 14px;*/
    overflow: hidden;
    position: relative;
    border-left: 1px solid #D0D0D0;
    border-top: 1px solid #D0D0D0;
    border-bottom: 1px solid #D0D0D0;
    z-index: 77;
    position: relative;
}

ul.leftTabs > li.activeFilter, ul.tabsStyle li.active {
    background-color: #fff !important;
}

ul.leftTabs > li.activeFilter {
    background-color: #fff !important;
    border-top: 5px solid #D0D0D0 !important;
    border-bottom: 5px solid #D0D0D0 !important;
    margin: 0px -3px 0 0;
    z-index: 99;
}

ul.widthDiv > li {
    width: 703px;
    z-index: 88;
    position: relative;
}

    ul.widthDiv > li > div.contentarea {
        border: 5px solid #D0D0D0;
    }

.widthDiv .floatB {
    margin: 25px 0px 0px 25px;
}

.tab_margin_container .tab_content .contentarea {
    border: 5px solid #dddddd;
    margin: -3px 0px 0px 0px;
}

.tab_margin_container .tab_content {
    border-top: 0px solid #fff !important;
}

ul.widthDiv > li > #filterOpenedMoreThan {
    -webkit-border-radius: 5px;
}

#confirmationDialogHeader {
    font-size: 22px;
    color: #111;
}

#confirmationDialogContent, .confirmationDialogMsg {
    color: #111;
    font-size: 18px;
    font-weight: normal;
}

a.fontVideo {
    padding-left: 5px;
    padding-right: 5px;
    text-decoration: none;
    color: #58585A;
    font-weight: bold;
    font-size: 16px;
}

ul.tabsStyle > li.active {
}
/* Import contacts START*/
.matchingType {
    display: block;
}

#mappedFieldsTable th {
    background-color: #F1F1F1;
    min-width: 260px;
}

#mappedFieldsTable td {
    border-top: 1px dotted #c9c9c9;
    border-left: 2px solid #c9c9c9;
    border-right: 2px solid #c9c9c9;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}

#mappingTotalTitleP {
    font-size: 18px;
    font-weight: bold;
}

.unmappedCol {
    border-left-color: #FF8C76 !important;
    border-right-color: #FF8C76 !important;
}

.unmappedHeader {
    border-left: 2px solid #FF8C76;
    border-right: 2px solid #FF8C76;
    border-top: 2px solid #FF8C76;
}

.unmappedCaption {
    background-color: #c9c9c9;
    border-left-color: #FF8C76 !important;
    border-right-color: #FF8C76 !important;
}

.mappedCaption {
    background-color: #c9c9c9;
}

.lastTr td {
    border-bottom: 2px solid #c9c9c9;
}

.lastUnMappedTd {
    border-bottom: 2px solid #FF8C76 !important;
}

.moreDefinitionsLink {
    color: #000000 !important;
    font-size: 15px;
    font-weight: bold;
    display: block;
    margin-top: 10px;
}

table th .mobileDefinitionsButton {
    margin-right: 10px;
    margin-left: 10px;
}

#mobileDefinitionsBG {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgb(90, 85, 85);
    z-index: 99990;
    opacity: 0.8;
}

#mobileDefinitions {
    position: fixed;
    /*font-family: Arial, Helvetica, sans-serif;*/
    background: rgb(255, 255, 255);
    z-index: 99999;
    display: block;
    opacity: 1;
    -webkit-border-radius: 8px;
    border-radius: 8px;
    padding: 20px;
}

table#mappedFieldsTable td, table#mappedFieldsTable th {
    padding-left: 10px;
    max-width: 260px;
}

.highlightTitle {
    font-size: 16px;
    font-weight: bold;
}
/* Import contacts END */
/* Import conflicts START */
.overallCBImage {
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;
    cursor: pointer;
}

#overallCB:hover {
    opacity: 0.8;
}

.centerButtonStyle {
    margin-left: auto;
    margin-right: auto;
    width: 25%;
    display: block !important;
    text-align: center;
    margin-top: 10px;
}

#conflictsListHeader {
    color: #ed0284;
}

#newRecordDetailsDivTitleX:hover {
    opacity: 0.6;
    cursor: pointer;
}

.newRecordDetailsDivTitle {
    background-color: gray;
    color: #ffffff;
    height: 30px;
}

#newRecordDetailsDivText {
    text-align: left;
    margin: 10px;
    line-height: 1.5;
    direction: ltr;
    overflow-y: scroll;
    max-height: 400px;
}

.importConflictNewRecordBG {
    justify-content: space-between;
    align-items: center;
}
/* Import conflicts END */
.sendProfileField {    
    margin: 15px auto;
}

.editorDivWrapper {
    display: none;
    background-color: White;
    opacity: 1;
}

#avpw_controls {
    margin: -2px 5px 4px 0px;
}

.captionDivSpanTitle {
    color: #ffffff;
    background-color: #8c8c8c;
    padding: 4px;
    display: block;
    margin-top: -1px;
    font-weight: normal;
}

#conflictsHeaderExplanations {
    border: solid #dddddd 1px;
    padding: 10px;
    border-radius: 4px;
    /*font-size: 14px;*/
    background-color: #f8f8f8;
    background-color: var(--light-grey-bg, #f8f8f8);
}

.conflictsSubHeaderExp {
    vertical-align: middle;
    display: inline-block;
}
/*-------------------------Start New Navigation Help Bar-------------------------*/
#HelpBar {
    margin: 0 auto;
    width: 100%;
    position: fixed;
    background-color: #00ADC6;
    display: none;
    z-index: 9999;
}

#NavigationHelpBar {
    width: 84%;
    height: auto;
    margin: 0 auto;
}

#menuTopBarList li, #menuBottomList li {
    position: relative;
    display: block;
    padding: 7px 0;
    margin: 0;
    width: 183px;
    box-sizing: border-box;
    width: 100%;
    white-space: nowrap;
    overflow: hidden;
}

    #menuTopBarList li:not(.btn-new-li).masterlinksItem {
        background-color: #0a0b0c;
    }

.masterlinks li.masterlinksItem > div.masterlinks-inner {
    width: 93%;
    padding: 5px 0;
    border-radius: 5px;
    margin: auto;
}
/*.is-collapsed .masterlinks li.masterlinksItem > div.masterlinks-inner {
    width: 100%;
    padding: 5px 0;
    border-radius: 5px;
    margin: auto;
}*/
.masterlinks li.masterlinksItem:hover > div {
    background-color: #3b3b3b;
}

#menuTopBarList li.selected:hover, #menuBottomList li.selected:hover {
    background: transparent;
}

.linkslist .NavigationHelpBarWrap {
    margin: 10px auto 0;
    width: 100%;
    z-index: 9999;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

.linkslist .NavigationHelpBarWrap {
    display: none;
    min-height: 0px;
}

.ShowHelpBar, .ShowUserHelpBar {
    display: table !important;
}
/*.NavigationHelpBarWrap.ShowHelpBar {
    min-height: 88px;
}*/
.NavigationHelpBar_container {
    vertical-align: middle;
    margin: 0 auto;
    text-align: center;
    width: 100%;
}

    .NavigationHelpBar_container li {
        background: #212121;
    }

.NavigationHelpBar_List {
    max-width: 1300px;
    margin: 0 auto !important;
}

#menuTopBarList li .NavigationHelpBar_List li, #menuBottomList li .NavigationHelpBar_List li {
    padding: 0;
}

.linkslist li a.masterlinksarrow {
    padding: .2em 0;
    position: absolute;
    top: 0;
    opacity: 1;
}

.masterlinksarrow:after {
    content: url('../../interface/images/new/icons/menu/menu_arrow.png');
    display: inline-block;
    width: 0;
    height: 0;
    overflow: hidden;
    margin: 0px 4px;
    position: absolute;
    top: 20px;
    vertical-align: text-bottom;
    vertical-align: middle\9;
    height: 15px;
    width: 15px;
    text-align: center;
    opacity: 0.8;
}

.linkslist li:hover a.masterlinksarrow:after {
    opacity: 1;
}

#menuTopBarList li.selected .masterlinksarrow:after, #menuBottomList li.selected .masterlinksarrow:after {
    content: url('../../interface/images/new/icons/menu/arrow-down.png');
    text-align: right;
}

.create-new-div .masterlinksarrow:after {
    content: url('../../interface/images/new/icons/icon-arrow.svg');
    width: 9px;
    height: 12px;
    transform: rotate(0deg);
}

.icon-arrow-down:after {
    content: url('../../interface/images/new/icons/icon-arrow.svg');
    width: 9px;
    height: 12px;
    display: inline-block;
    transform: rotate(90deg);
}


/* HelpBar content style */
.NavigationHelpBar_List li a {
    padding: 12px 15px;
    margin: 0px;
    text-decoration: none;
    color: #c8c7c7;
    display: block;
}

    .NavigationHelpBar_List li a:hover {
        color: #fff;
    }
/* End New help bar */
/* User Feedback*/
.floatFeedback {
    position: fixed;
    bottom: 20px;
    right: 15px;
}

.languageflag, #languageImage {
    width: auto !important;
    height: auto !important;
}

.iconsSize {
    width: 18px;
    height: auto;
}

.BackgroundTd {
    width: 40px;
}

td.BackgroundTd {
    background-color: #f1f2f4;
}

#pointingMessageDiv, #helpBarPointingMessageDiv {
    position: relative;
    visibility: hidden;
    text-align: center;
    font-weight: bold;
    font-family: Arial;
    font-size: 12px;
    border: solid var(--iw-pink, #f07d75) 1px;
    border-radius: 4px;
    margin: 0 auto;
    padding: 4px;
    background-color: var(--iw-pink, #f07d75);
    color: #fbcce6;
    opacity: 0.8;
}

    #pointingMessageDiv a, #helpBarPointingMessageDiv a {
        font-weight: normal;
        font-family: Arial;
        font-size: 11px;
        color: #fbcce6;
    }

#helpBarPointingMessageDiv {
    display: inline-block;
    width: 12%;
    margin: 20px;
    position: fixed;
    right: 354px;
    left: 336px;
}

#pointingMessageDiv {
    width: 20%;
}

    #pointingMessageDiv:hover, #helpBarPointingMessageDiv:hover {
        opacity: 1;
    }

#helpBarPointingMessageDiv:after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 100%;
    width: 0;
    height: 0;
    border-bottom: 10px solid var(--iw-pink, #f07d75);
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    display: block;
}

a.boxclose {
    cursor: pointer;
    color: #fff;
    border-radius: 30px;
    font-size: 24px !important;
    line-height: 0px;
    padding: 4px 3px;
    text-decoration: none;
    position: absolute;
    right: 7px;
    top: 8px;
}

    a.boxclose:hover {
        text-decoration: none;
    }

.boxclose:before {
    /*content: "×";
        font-size: 34px;
    */
    content: url('../../interface/images/new/icons/icon-close-w.svg');
    display: inline-block;
    width: 12px;
    height: 12px;
}

.ai-tooltip .boxclose:before {
    content: url('../../interface/images/new/icons/icon-close.svg');
}

.pointingLink {
    margin: 8px 0;
    display: inline-block;
    text-decoration: underline;
}

.striped td.BackgroundTd {
    background-color: #e5e6e8;
}

#messagesView, #pagesView {
    min-height: 100px;
}

    #messagesView h3, #pagesView h3 {
        line-height: 35px;
        font-weight: normal;
    }

#enterPage .genTable td {
    padding: 8px 6px !important;
    box-sizing: border-box;
    word-break: break-word;
}

    #enterPage .genTable td a.blueLink {
        text-decoration: underline;
    }
#enterPage h1 {
    font-size: 25px;
    font-weight: normal;
    line-height: 1.1;
    margin-top: 0;
    display: inline-block;
}
.enterpage_th td {
    width: 24%;
}

#enterPageDropZone.dropZone-highlight {
    outline: #d8d8d8 dashed 3px;
    border-radius: 3px;
    background-color: #f2f2f2;
}

#enterPageDropZone .ui-icon {
    background: none;
}

.edit-mode .content-box {
}

.content-box h1 {
    margin-bottom: 15px;
}
.content-box:hover h1 {
    text-decoration:underline;
}

.edit-mode .content-box:hover {
    outline: #92d4dd solid 3px;
}

.edit-mode .ui-draggable-dragging {
    /*outline: var(--main-link-color, #15b5cb) solid 1px;
    box-shadow: 1px 0px 1px rgb(159 156 156 / 22%);*/
    outline: #92d4dd solid 2px;
    box-shadow: rgb(132 170 173 / 40%) 3px 3px 5px;
    border-color: #b4e9f1;
    /*border-width: 3px;*/
}

.content60 {
    width: 65%;
}

.content30 {
    width: 33%;
}

.tabsArea {
    margin: 0;
}

.tabsHeader {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-align-content: space-between;
    -ms-flex-line-pack: justify;
    align-content: space-between;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
    height: 42px;
    padding: 0;
    margin: 0 0 8px;
    border-bottom: 1px solid #b8b8b8;
}

    .tabsHeader .tabLink {
        margin: 0;
        border: none;
        padding: 0 38px;
        float: left;
        position: relative;
        display: block;
        text-decoration: none;
        height: 42px;
        line-height: 48px;
        text-align: center;
        font-weight: 500;
        font-size: 16px;
        overflow: hidden;
        color: #979797;
        cursor: pointer;
    }

.content30 .tabsHeader .tabLink {
    padding: 0 22px;
}

.tabsHeader .tabLink:hover {
    color: #000;
}

.tabsHeader .tabLink.active:hover {
    color: #000;
    border-bottom: 0;
}

.tabsHeader .tabLink span {
    /*font-size: 14px;*/
    padding: 0 5px;
}

.tabsHeader .active:after {
    content: "";
    background: #15b5cb;
    background: var(--main-link-color, #45a8b4);
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    bottom: 0;
}

.tabsHeader .active {
    font-weight: 600;
    color: #000;
}

.tabsPanel {
    display: none;
    padding: 2em;
    width: 100%;
    text-align: center;
}

.contentarea .BtnDropdown div a {
    color: #fff;
    text-decoration: none;
    display: block;
    word-break: initial;
}

#enterPage .BtnDropdown .arrowside {
    background-image: url('../../Interface/images/new/icons/dropdownarrow1.png');
    background-size: auto;
    background-position: center;
    width: 42px;
    height: 43px;
    cursor: pointer;
}

#enterPage .BtnDropdown .textside, .BtnDropdown .arrowside {
    float: inherit;
}

#enterPage .BtnDropdown .textside, .textside.textsideNotClicked, .cursor-default {
    cursor: default;
    pointer-events: none;
}

/* 2 sides drop-down */
.split-dropdown {
    min-height:35px;
}
    .split-dropdown .arrowside {
        background-image: url(../../Interface/images/new/icons/arrow-down-w.png);
        background-size: auto;
        background-position: center;
        width: 35px;
        height: inherit;
    }

.split-dropdown .DDL_Style div {
    font-weight: normal;
}

.split-dropdown .textside, .split-dropdown .arrowside {
    padding: 6px 13px;
    font-weight: normal;
    border: 0;
    vertical-align: text-bottom;
}

.split-dropdown .textside {
    padding: 6px 18px;
}

.split-dropdown.dropdownbutton .arrowside {
    background-position: center;
    cursor: pointer;
}

.split-dropdown a {
    color: #fff;
    text-decoration: none;
}

.split-dropdown span {
    font-size: 13px;
}
/* 1 button drop-down */
.split-dropdown .arrowside-btn {
    background-image: url(../../Interface/images/new/icons/arrow-down-w.png);
    background-size: auto;
    background-position: center;
    background-repeat: no-repeat;
    cursor: pointer;
    border: 1px solid var(--main-link-color, #45a8b4);
}

.action-dropdown .dropdown-menu, .dot-menu .dropdown-menu {
    background-color: #fff;
    color: #111;
    box-shadow: var(--ds-shadow-overlay, 0 4px 8px -2px rgba(9, 30, 66, 0.25), 0 0 1px rgba(9, 30, 66, 0.31));
}

.action-dropdown .DDL_Style div, .action-dropdown .DDL_Style div a, .dot-menu .DDL_Style div {
    color: #111;
}
.dot-menu .DDL_Style a {
    display:block;
}
.action-dropdown .DDL_Style div:hover, .action-dropdown .DDL_Style a:hover {
    background-color: #f4f4f4;
}

/* Dots button */
.btn-dots {
    border: 1px solid var(--main-link-color, #45a8b4);
    padding: 5px;
    border-radius: 50%;
    min-width: 30px;
    text-align: center;
}
/* Dots menu */
.dot-menu .dropdown-menu {
    min-width: 146px;
}

.dot-menu {
    padding: 2px;
}

    .dot-menu svg, .dot-menu > img, .previewimg-wrap, .info-tooltip > span {
        padding: 5px;
        box-sizing: content-box;
    }

.info-tooltip > span {
    box-sizing: content-box;
    display: inline-block;
    text-align: center;
    padding: 0px 5px;
    font-family: system-ui;
    width: 16px;
}

.dot-menu:hover svg, .dot-menu:hover img, .previewimg-wrap:hover, .info-tooltip:hover > span, .float-actions span:hover {
    background-color: rgb(145 145 145 / 20%);
    border-radius: 50%;
}
.selectedTR .float-actions span:hover {
    background-color: #cde9ed;
}
.float-actions span {
    padding:5px;
}

.selectedTR .dot-menu:hover svg, .selectedTR .previewimg-wrap:hover, .selectedTR .info-tooltip:hover > span {
    background-color: #cde9ed; /*#b4dadf;*/
}

.next-arrow:after {
    width: 9px;
    height: 12px;
    line-height: 1;
    vertical-align: middle;
}

.addIcon, .arrowIcon {
    background: url('../../Interface/images/new/icons/icon_white_plus.png') no-repeat center;
    display: inline-block;
    width: 19px;
    height: 21px;
}

.arrowIcon {
    background: url('../../Interface/images/new/icons/arrowIcon.png') no-repeat center;
    width: 17px;
    height: 21px;
}

.enterGroups {
    padding: 14px 0 0 0;
}

    .enterGroups .groupsMainCatPlace {
        margin: 0;
        width: 24%;
        vertical-align: top;
        text-align: center;
    }

        .enterGroups .groupsMainCatPlace.groups30 {
            width: 30%;
        }

    .enterGroups .groupsdashboardDiv div, .groupsdashboardDiv div {
        font-size: 1.45rem;
        font-weight: normal;
        line-height: 1.2;
    }

    .enterGroups .ContactsInfo {
        font-size: 15px;
        line-height: 1.3;
        margin: 15px auto;
        text-align: center;
    }

#enterPage .goToPage {
    display: none !important;
}

#enterPage img#Chart1 {
    height: 100%;
    width: 100% !important;
}
/* End of new enter page*/
/* Dropdown button */
.dropdown-content {
    display: none;
    position: absolute;
    z-index: 8888;
    border-radius: 3px 3px;
}

.dropdown-menu {
    display: none;
    /*hide the menu*/
    position: absolute;
    top: 100%;
    left: 0;
}

.open .dropdown-menu, .dot-menu.open .dropdown-menu {
    display: block;
    /*show the menu when its parent has class "open"*/
    width: 99.9%;
    overflow: hidden;
    position: absolute;
}

.genTable.trTableBg thead tr {
    background: #fff !important;
    border-bottom: 1px solid #ddd;
}

.genTable tr, .trTableBg tr {
    /*border-top: 1px solid #ddd;*/
    border-top: 1px solid var(--light-grey-border, #E3E4E6);
}

    .genTable tr:not(.selectedTR), .trTableBg tr:not(.selectedTR) {
        background: #fff;
    }

    .genTable tr:not(thead tr):hover td, .genTable tr:not(:first-child):not(.selectedTR):hover td, .genTable tr:not(.thead):not(.selectedTR):hover td {
        background-color: #f1f1f1;
        z-index: 999999;
    }
    .genTable tr.thead:hover td, .genTable tr:hover td#noDataColspan {
        background-color: #fff;
    }
    .genTable tr.thead td, .genTable tr.thead th, .genTable tr.thead td > a, .genTable tr.thead th > a, thead tr th, thead > tr td {
        color: #6a6a6a;
        font-weight: normal;
    }
.selectedTR, .notRead {
    background-color: #edf8fa;
    background-color: var(--highlight-row, #edf8fa);
}

    .selectedTR:hover, .selectedTR:hover td, .read.selectedTR:hover td, .notRead.selectedTR:hover td, .trTableBg .selectedTR:hover {
        background-color: #e1f4f7 !important;
        border-color: #bae0e5;
    }

.White {
    color: #fff;
}

.graylinkaction {
    border: 1px solid #EBEBE4;
    background-color: #F8F8F8;
    display: inline-block;
    color: #57585a;
    font-family: inherit !important;
    font-size: inherit !important;
    font-weight: inherit !important;
    padding: 0px !important;
    text-decoration: none !important;
    text-shadow: inherit !important;
    margin-left: 10px;
    margin-right: 10px;
}

    .graylinkaction div {
        margin: 0px !important;
    }

.grayforwardaction, .grayforwardaction div {
    cursor: pointer;
    background-color: #F8F8F8;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    border-radius: 3px;
    display: inline-block;
    color: #57585a;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 15px;
    font-weight: bold;
    padding: 8px 13px;
    text-decoration: none;
}

    .grayforwardaction:hover, .grayforwardaction div:hover {
        background-color: #ddd4d4;
    }

.noHoverVideo:hover {
    background-color: transparent !important;
}
/*Start Messages Table Style*/
#ReviewSentMessagesSent td, .BuySmsTicketTable td {
    padding: 10px 2px;
    /*font-size: 14px;*/
}

.table td, #ReviewSentMessagesSent td {
    vertical-align: middle;
    /*vertical-align: bottom !important;
    */
}

#ReviewSentMessagesSent {
    border: 1px solid #E3E4E6;
    width: 100%;
    vertical-align: top;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
}
/*End Messages Table Style*/
.No_Border {
    border: 0px !important;
}

#tabs {
    background-color: inherit;
    border: 0px;
}

.contentareaImportant {
    background-color: #FFFFFF !important;
    color: #58585A !important;
    padding: 10px 10px 10px 10px !important;
    margin: 10px 0px 0px 0px !important;
    border: 5px solid #ddd !important;
    border-radius: 5px !important;
    /*height: 900px !important;*/
}

#tabs ul.tabs_UploadFiles li.active {
    background-color: #fff !important;
    font: normal 17px/24px Arial, Helvetica, sans-serif !important;
    -moz-border-radius-topright: 5px !important;
    -khtml-border-radius-topright: 5px !important;
    -webkit-border-top-right-radius: 5px !important;
    -moz-border-radius-topleft: 5px !important;
    -khtml-border-radius-topleft: 5px !important;
    -webkit-border-top-left-radius: 5px !important;
    border-top: 5px solid #ddd !important;
    border-left: 5px solid #ddd !important;
    border-right: 5px solid #ddd !important;
    margin: 0px 0px -1px 0px !important;
}

.rowImageRow {
    padding: 0px;
    margin: 5px;
    /*font-size: 14px;*/
    font-weight: bold;
    color: #57585a;
    border: 1px solid #B0BBBD;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
}

#listTableImages th, #listFBTableImages th, #listImgTableImages th, #listTableImages td, #listFBTableImages td, #listImgTableImages td {
    text-align: center;
}

#listImgTableImages td {
    height: 80px;
}

.styleDropDown {
    margin-right: -1px;
    border-right-width: 1px;
    border-right-style: solid;
    border-right-color: rgb(176, 187, 189);
    border-left-width: 1px;
    border-left-style: solid;
    border-left-color: rgb(176, 187, 189);
    border-bottom-width: 1px;
    border-bottom-style: solid;
    border-bottom-color: rgb(176, 187, 189);
    border-top-right-radius: 0px;
    border-top-left-radius: 0px;
}

.margin2px, .margin3 {
    margin: 0px 3px;
}
/*.margin2 {
    margin: auto 2px;
}*/
li.ui-tabs-active a.imageTopTabs {
    height: 18px;
    background-color: #fff !important;
}

.borderImportant {
    border: 5px solid #d0d0d0 !important;
}

.dialogHeaderStyle {
    background-color: #f2f2f2 !important;
    border-radius: 0px !important;
    padding: 10px !important;
}

.mediaActionLink {
    text-decoration: none !important;
    cursor: pointer;
}

.img-rounded {
    cursor: pointer;
}

#mediaObject, #formsBuilderObject, #automationObject, #linksObjectDiv, #anchorsObjectDiv {
    overflow: hidden;
    z-index: 99999;
    display: block;
    position: fixed;
    border-radius: 3px;
    border: 0;
}

#linksObjectDiv {
    cursor: move;
    background-color: #fff;
}

#formsBuilderObject html {
    overflow-x: hidden !important;
}

.backButton {
    background-color: #67686B;
    color: #ffffff;
}

    .backButton:hover {
        background-color: #B7B8BC;
    }

#content {
    min-width: 720px;
    padding: 10px;
    min-height: 62vh;
    /*height: 100%;*/
    background-color: white;
    border: solid 1px #a9a9a9;
}

.scrollDiv {
    height: 600px;
    overflow-y: auto;
    overflow-x: hidden;
    margin-top: 20px;
}

.mediaBGDivBG {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: var(--dark-overlay, #5A5555);
    z-index: 99990;
    opacity: 0.6 !important;
}

.placeHolderDiv {
    position: absolute;
    opacity: 0.5;
    display: none;
    font-size: 12px;
    padding: 12px 70px;
}

.feedbackImages-grid, .images-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-gap: 15px;
    grid-auto-rows: minmax(220px, auto);
}

@media only screen and (max-width:1370px) {
    .feedbackImages-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.fileThumbView {
    position: relative;
    font-weight: normal;
}

    .fileThumbView:hover {
        border-color: var(--main-link-color, #45a8b4);
    }

.fileThumbActions {
    width: 100%;
    text-align: center;
    padding: 4px;
    position: absolute;
    top: 182px;
}

.fileThumbInnerBox {
    width: 100%;
    height: auto;
    min-height: 150px;
    /*cursor: pointer;*/
    position: relative;
    text-align: center;
}

.fileThumbInnerBoxImg {
    position: absolute;
    /*clip: rect(0px,171px,128px,0px) !important;
    */
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    max-width: 100%;
    max-height: 150px;
}

.down {
    opacity: 1 !important;
}

.tagsFilterList ul {
    list-style: none;
}

.tagsFilterList li {
    display: list-item;
    position: relative;
    /*margin-bottom: 2px;*/
    border-bottom: 1px solid #ddd;
}

.filterbydiv .tagsFilterList li {
    border-bottom: 0;
    margin-bottom: 2px;
}

.noFileFoundTitle {
    text-align: center;
    margin-top: 30px !important;
    margin-bottom: 44px !important;  
    font-weight: normal;
    font-size: 19px;
}

p.noFileFoundTitle {
    margin-top: 28px !important;
    margin-bottom: 38px !important;
    font-size: 15px;
}

.fileDetailsDiv {
    background-color: #57585a;
    position: absolute;
    margin-top: 10px;
    /*border: 1px solid white;
    */
    padding: 10px;
    display: none;
    border-radius: 4px;
    z-index: 1;
    right: 5px;
    top: 17px;
    color: #ffffff;
}

#listImgTableImages .fileDetailsDiv {
    display: none !important;
}

.fileDetailsDiv:after, .fileDetailsDiv:before {
    width: 0;
    height: 0;
    content: "";
    display: block;
    position: absolute;
    bottom: 100%;
    right: 1em;
    /*left:1em;
    */
}

.fileDetailsDiv:after {
    border-bottom: 10px solid #57585a;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    z-index: 1;
    margin-top: 1px;
}

.fileDetailsDiv:before {
    border-bottom: 10px solid #000;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    margin-top: -3px;
    margin-left: -3px;
    z-index: -100;
}

.fileDetailsDiv:hover {
}

.listFileNameTd {
    overflow: hidden;
    padding-left: 10px !important;
    padding-right: 10px !important;
    direction: ltr;    
}

.fileThumbView .messageslisttags {
    display: none;
    /* Hide tags text from media area */
}

.container {
    margin-bottom: -16px;
}

.selectpicker * {
    font-family: inherit;
}

.mediaCB {
    border: solid 1px gray;
    border-radius: 2px;
}

.mediaCBDiv {
    background-color: #F8F8F8;
    padding: 3px;
    border-top-right-radius: 3px;
    border-top-left-radius: 3px;
    overflow: hidden;
    text-align: left;
    direction: ltr;
}

input[type=file] {
    transform: none !important;
}

.fileNameSpan {
    color: #ffffff;
}

.btn-group .dropdown-menu > li > a:hover, .dropdown-menu > li > a:focus {
    color: #fff;
    background-color: var(--highlight-row, #edf8fa);
}

.btn-group {
    max-width: 196px;
}

.glyphiconI {
    max-height: 10px;
    max-width: 10px;
}

.pinkButton {
    background-color: #ed0284 !important;
    border-color: #ed0284 !important;
    font-weight: bold !important;
}

    .pinkButton:hover {
        opacity: 0.8;
    }

.greenButton {
    background-color: #A6CE39 !important;
    border-color: #A6CE39 !important;
    font-weight: bold !important;
}

    .greenButton:hover {
        opacity: 0.8;
    }

.fileInputButton {
    width: 62px;
    /* For IE9 */
}

.blackButton {
    background-color: #67686B !important;
    border-color: #67686B !important;
    font-weight: bold !important;
}

    .blackButton:hover {
        opacity: 0.8;
    }

.centeredBoldSpan {
    text-align: center;
    display: block;
    font-weight: bold;
}

.leftAlignText {
    text-align: left;
    direction: ltr;
}

.leftAlign {
    text-align: left;
}

.rightAlign, .domainTable td.rightAlign {
    text-align: right;
}

.ui-dialog {
    border: 0px !important;
    border-radius: 4px;
    -webkit-box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.3);
    -moz-box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.3);
    box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.3);
}

#popFileName {
    display: none;
    text-align: center;
    min-height: 150px !important;
    min-width: 350px;
}

#accountsTable {
    border: 1px solid #E3E4E6;
    width: 100%;
    vertical-align: top;
}

#goalsTable td, #recipientsTable td, #dynamicPagesTable td {
    /*font-size: 14px;*/
    padding-top: 10px;
    padding-bottom: 10px;
    word-break: break-word;    
    vertical-align: middle;
}

.BuySmsTicketTable, #tbl_ticket_prices, .BuyRecipientPackageTable, .UserBalanceTable, #fieldsTable, .UserBalanceSmsTable, .UserBalanceEmailTable {
    /*border: 1px solid #E3E4E6;*/
    width: 100%;
    vertical-align: top;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
}

    .BuySmsTicketTable td, #tbl_ticket_prices td, .BuyRecipientPackageTable td, .UserBalanceTable td, #fieldsTable td, .UserBalanceSmsTable td, .UserBalanceEmailTable td {
        padding: 10px 15px;
        /*font-size: 14px;*/
        line-height: 1.3;
    }

tr.editRow td {
    border-top: 1px solid #EFF0F2;
    border-bottom: 1px solid #EFF0F2;
}

.UserBalanceTable {
    margin: 15px 0px;
}

.marginTop20, .contentarea .marginTop20 {
    margin-top: 20px;
}

.marginBottom20, .contentarea .marginBottom20 {
    margin-bottom: 20px;
}
.marginBottom30, .contentarea .marginBottom30 {
    margin-bottom: 30px;
}

.margin14, .contentarea .margin14 {
    margin-top: 14px;
    margin-bottom: 14px;
}

.margin-10 {
    margin-top: 10px;
    margin-bottom: 10px;
}

.margin-10, .contentarea .margin-10 {
    margin-top: 10px;
}

.marginTop10, .contentarea .marginTop10 {
    margin-top: 10px;
}

.marginBottom10, .contentarea .marginBottom10 {
    margin-bottom: 10px;
}

.marginTop0, .contentarea .marginTop0 {
    margin-top: 0;
}

.marginBottom0, .contentarea .marginBottom0 {
    margin-bottom: 0;
}

.marginTop30, .contentarea .marginTop30 {
    margin-top: 30px;
}

.inlineBlock {
    display: inline-block;
}

.newBuilderInput {
    padding: 1.4% !important;
}

.paddingBottom2 {
    padding-bottom: 2%;
}

.marginBottom2, .contentarea marginBottom2 {
    margin-bottom: 2%;
}

.borderBox {
    box-sizing: border-box;
}

.directionLtr {
    direction: ltr;
}

.displayInlineBlock, .inlineBlock {
    display: inline-block;
}

.displayNone, .disabled-button.displayNone, #msgDetailsPrint, #recipEventsPrint, #linksPrint, #printClicksTitle, #printUnsubscribedTitile, #printDeliverabilityTytle {
    display: none;
}

.display-flex {
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
}

.flex-important {
    display: -ms-flexbox !important;
    display: -webkit-flex !important;
    display: flex !important;
}

.flex-valign {
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
}

.flex-center {
    display: flex;
    align-items: center;
    justify-content: center;
}

.inline-flex {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.flex-wrap {
    flex-wrap: wrap;
}

.flex-item {
    flex: 1 1 0;
}

.align-self {
    align-self: center;
}

.align-items-start {
    align-items: flex-start;
}
.align-items-end {
    align-items: flex-end;
}

.align-self-start {
    align-self: flex-start;
}

.space-between {
    justify-content: space-between;
}

.display-none {
    display: none;
}

.p-relative {
    position: relative;
}

.p-absolute {
    position: absolute;
}

*:first-child + html .displayInlineBlock {
    display: inline;
}

#ifrmClicksOverlay #popUpMaster {
    overflow: hidden;
}

* + html .graphsCentered-try, * + html .graphsCentered-try-funnelText, * + html .graphsCentered-try-funnelTextSms {
    display: inline;
}

.valign {
    vertical-align: middle;
}

.valignTop {
    vertical-align: top;
}

.valignBottom {
    vertical-align: bottom;
}

.fontWeightBold {
    font-weight: 700;
}

.fontWeight600 {
    font-weight: 600;
}

.fontWeightNormal {
    font-weight: 400;
}

.width100 {
    width: 100%;
}

.width95 {
    width: 95%;
}

.width90 {
    width: 90%;
}

.width80 {
    width: 80%;
}

.width70 {
    width: 70%;
}

.width60 {
    width: 60%;
}

.width50 {
    width: 50%;
}
.width40 {
    width: 40%;
}
.width33 {
    width: 33%;
}
.width30 {
    width: 30%;
}

.width25 {
    width: 25%;
}

.width20 {
    width: 20%;
}

.margin-side15 {
    margin-right: 15px;
    margin-left: 15px;
}
/*Font Size*/
.fontSize14 {
    font-size: 14px;
}
/*Margins*/
.margin0_Auto, .contentarea .margin0_Auto {
    margin: 0 auto;
}

.margin4_0 {
    margin: 4% 0px;
}

.genBtn.margin0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
    margin-top: auto;
}
/* Available margin and positioning classes (in rtl/ltr.css): .direction, .margin-start35, .margin-start15, .margin-start5, .margin-end5, .margin-end15 ,.margin-end35, .margin-end45 */
/*------END - GENERALS------*/
.publish-settings textarea {
    min-width: 600px;
}

#codeTrack textarea {
    font-family: Consolas,Monaco,'Andale Mono','Ubuntu Mono',monospace;
    text-align: left;
    padding: 1em;
    direction: ltr;
}

.seoInput, .codeTrackInput {
    width: 600px;
}

#funnelGraph div, #funnelGraph a {
    color: #000000;
}

#loginWindow {
    background-color: #ffffff;
    text-align: left;
    font-size: 17px;
    width: 16%;
    border-radius: 6px;
    opacity: 1;
    box-shadow: 0 4px 6px -2px rgba(9,30,66,0.25), 0 0 1px rgba(9,30,66,0.31);
}

.credit_lb {
    margin-bottom: 15px;
}

.credit_input {
    padding: 0px 10px !important;
    height: 35px !important;
    margin-bottom: 15px;
    border: 1px solid #dddddd !important;
    border-radius: 5px !important;
    width: 160px !important;
}

.credit_list {
    padding: 0px 10px !important;
    height: 37px !important;
    margin-bottom: 15px;
    border: 1px solid #dddddd !important;
    border-radius: 5px !important;
    width: 120px !important;
}

.DDL_Style {
    font-family: inherit;
    position: absolute;
    z-index: 7;
}

    .DDL_Style div, .dot-menu .DDL_Style a {
        color: #fff;
        /*font-size: 14px;*/
        padding: 0.6em 0.8em;
    }

        .DDL_Style div:hover {
            cursor: pointer;
            /* background-color: #60bac5;
            light blue the same as opacity 0.7 */
        }

.greenBG {
    background-color: #A6CE39;
}

.blueBG {
    background-color: #15b5cb;
    background-color: var(--main-link-color, #45a8b4);
}
.blueBG.dropdown-menu {
    background-color: #fff;
    box-shadow: var(--ds-shadow-overlay, 0 4px 8px -2px rgba(9, 30, 66, 0.25), 0 0 1px rgba(9, 30, 66, 0.31));
    z-index: 11003;
    border-radius: 6px;
}
.dropdown-menu.DDL_Style div, .split-dropdown .dropdown-menu a {
    color: #111;
}
.blueBG.dropdown-menu div:hover {
    background-color: #f4f4f4;
}

/*form list css*/
    .formItem {
    width: 240px;
    border: 1px solid #B0BBBD;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    padding: 0px;
    margin: 22px;
}

.formHeader {
    padding: 9px;
    background-color: #F8F8F8;
    border-top-right-radius: 5px;
    border-top-left-radius: 5px;
    border-bottom: 1px solid #B0BBBD;
}

#notificationMarkAsRead {
    border-radius: 3px;
    background-color: #00ADC6;
    border: 0px;
    color: #fff;
    padding: 5px 10px;
    font-weight: bold;
    cursor: pointer;
}

.funnelSelect {
    width: 200px;
    border: 1px solid #DEDEDE;
    border-radius: 3px;
    /*font-weight: bold;*/
    padding: 6px 6px;
    /*font-size: 14px;*/
}

.messageslistsubject, .messageslistsendid, .messageslistcreatedate, .messageslistlastsent, .messageslisttags, .messageslistPreview, .listItemHeadline, .listsactions, .groupslisttags, .groupslistcreatedate {
    line-height: 1.5;
}
/*dynamick page categorys*/
#btnReset, #btnSearch {
    width: auto;
    padding-right: 18px;
    padding-left: 18px;
    border: 2px solid #4e4e4e;
    background-color: #4e4e4e !important;
}

.groupsMainCatPlace {
    /*margin: 0px 3%;*/
    width: 24%;
}

.gptNextBtn {
    background-color: #15b5cb !important;
    background-color: var(--main-link-color, #45a8b4) !important;
}

    .gptNextBtn:hover {
        background-color: #45a8b4 !important;
    }

.gptNextBtn, .gptBackBtn {
    position: absolute;
    background-color: #888;
    top: 11px;
    border-radius: 3px;
}

    .gptBackBtn:hover {
        opacity: 0.7;
    }

    .gptNextBtn span, .gptBackBtn span {
        line-height: 15px;
    }

.exportIcon {
    padding: 0px;
    border: 0px !important;
}
/* Search buttons styles */
.btn-reset {
    background-color: #fff !important;
    color: #15b5cb !important;
    color: var(--main-link-color, #45a8b4) !important;
    border: 1px solid #15b5cb !important;
    border: 1px solid var(--main-link-color, #45a8b4) !important;
}

.btn-search, .genRegularBtn {
    background-color: #4e4e4e;
    color: #fff !important;
    border-radius: 3px;
    display: inline-block;
    /*font-family: Arial, Helvetica, sans-serif;*/
    box-sizing: border-box;
    margin: auto 5px;
    padding: 6px 13px !important;
    /*border: 1px solid #4e4e4e !important;*/
    border: 0;
    cursor: pointer;
    /*font-size: 15px;*/
    line-height: inherit;
}
    .btn-search:hover {
        background-color: #696969;
        border-color: #4e4e4e;
    }
    .genBtn:not(.disabled-button):not(.dropdownbutton):not(.upgradeBtn):not(.genBtnAI):hover, .btn-new:not(.btn-add):hover {
        background-color: #60bac5;
        border-color: #60bac5;
    }

.genBtn.genGreyBtn:not(.disabled-button):not(.dropdownbutton):not(.upgradeBtn):hover {
    background-color: #878787;
    border-color: #878787;
}

.btn-search:active, .btn-search:focus {
    box-shadow: inset 0 0 0 0.5px #4e4e4e;
}

.genRegularBtn {
    background-color: #ffffff !important;
    color: #242424 !important;
    border: 1px solid #b1b1b1 !important;
    margin: auto;
}

    .genRegularBtn:hover {
        box-shadow: 0 1px 0px 1px rgb(159 156 156 / 12%);
    }

.blueLink, .blueTitle, .contentarea .blueLink, .contentarea a.blueLink, #fieldsTable a.searchFieldLink, .textStyle, .ui-widget-content a.blueLink, .mediaActionLink:hover {
    color: #15b5cb;
    color: var(--main-link-color, #45a8b4);
}

.whiteLink, .contentarea .whiteLink, .ui-widget-content a.whiteLink {
    color: #fff !important;
}

.contentarea a.blueLink, #fieldsTable a.searchFieldLink {
    text-decoration: underline;
}

.genBtn:disabled {
    opacity: 0.7;
    cursor: default;
}
/* Inwise generic table styles */
.genTable {
    border: 1px solid #E3E4E6;
    border: 1px solid var(--light-grey-border, #E3E4E6);
    width: 100%;
    border-collapse: collapse;
}

    .genTable .BorderTableTitle {
        background-color: #fff !important;
    }

#BlockSendingList .genTable td {
    padding: 7px 10px;
}

.genTable td, .genTable th {
    padding: 10px 8px;
}
#recipientsTable.genTable.td-height-table tr:not(.thead) td:not(.td-fixed) {
    height: 56px;
}

.genTable .table-link {
    color: #02B6D0;
    text-decoration: underline;
    font-weight: 600;
}

.genTable .tableHeader {
    color: #111;
    font-weight: normal;
}

/* Sort icons */

.sort > img:not(.sort-added) {
    visibility: hidden;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}
.sort:hover > img {
    visibility: visible;
    opacity:0.5;
}

/* Table with no bg color */
.trTableNoBg tr:nth-child(odd), .trTableNoBg tr:nth-child(even) {
    background: none !important;
}
.genTable input[type=text] {
    padding: 6px;
}
/*  Generic buttons 
    Buttons styles: .genBtn, .genGreyBtn, .btn-reset, .pinkBtn.genBtn, .btn-search, .genBtnSmall        
    */
.genBtn, .btn-reset, .ui-widget-content a.genBtn, .cke_dialog_body a.cke_dialog_ui_button, .ui-widget button:not(.ui-dialog-titlebar-close) {
    background-color: #61acb5;
    background-color: var(--main-link-color, #45a8b4);
    color: #fff;
    padding: 6px 12px;
    font-size: 15px;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    border-radius: 3px;
    border: 1px solid #61acb5;
    border: 1px solid var(--main-link-color, #45a8b4);
    cursor: pointer;
    /*line-height: 1.3;*/
    display: inline-block;
    text-decoration: none;
    box-shadow: none;
    outline: none;
} .genBtn:active, .btn-search:active {
        box-shadow: 0 0 2px 2px #d9dee4;
    } input.genBtn {
    font-family: inherit;
} .genBtn.next-arrow {
    /*line-height: 1.3;*/
} .genBtn a, .contentarea .genBtn a {
    color: #fff;
} .genBtn.margin4_0 {
    margin: 5px auto;
} .genBtn.flex-center {
    display: flex !important;
} .actions .genBtn, .contentarea a.genBtn {
    color: #fff;
} .genGreyBtn, .ui-widget-content a.genGreyBtn {
    background-color: #67686B;
    border-color: #67686B;
} .genBtnSmall {
    padding: 3px 10px !important;
    /*font-size: 14px;*/
} .editorBlockTab.genBtnSmall {
    padding: 3px 10px !important;
    margin-top: 0px !important;
    width: auto;
} .genBtn.genBtnAI, .editAIEl, .ui-widget-content .genBtn.genBtnAI {
    background-color: var(--iw-yellow, #f2c900);
    border-color: var(--iw-yellow, #f2c900);
    color: #111;
} .genBtn.genBtnAI:hover {
        opacity: 0.9 !important;
    } .btn-new {
    background-color: var(--main-link-color, #45a8b4);
    border-radius: 3px;
    opacity: 1;
    padding: 0.35em 0.8em;
    padding: 6px 15px;
    justify-content: space-between;
    align-items: center;
    border: 1px solid var(--main-link-color, #45a8b4);
    /*border: 1px solid #cdcdcd;*/
    outline: none;
    color: #fff;
    /*box-shadow: 0 1px 2px rgba(0, 0, 0, .08), inset 0 1px 2px 2px rgba(255, 255, 255, .16);*/
} .cancelLink {
    color: #fff;
    font-size: 15px;
    font-weight: bold;
    text-decoration: none;
    margin: 3px 5px;
} .highlight.genBtn {
    background-color: var(--iw-pink, #f07d75) !important;
    color: white !important;
    border: 1px solid var(--iw-pink, #f07d75) !important;
} .contentarea .highlightW.genBtn {
    background-color: #fff !important;
    color: var(--iw-pink, #f07d75) !important;
    border: 1px solid var(--iw-pink, #f07d75) !important;
} .pinkBtn.genBtn {
    background: var(--iw-pink, #f07d75);
    border: 1px solid var(--iw-pink, #f07d75);
    font-weight: normal;
} .radioSelect input {
    margin-top: 5px;
    margin-bottom: 5px;
    margin-right: 0;
    margin-left: 0;
    vertical-align: middle;
} .moveFieldArrow {
    padding: 10px 11px;
    font-size: 28px;
    cursor: pointer;
    margin-top: 50px;
    color: #333;
    text-align: center;
} .moveFieldArrow:hover {
        color: #15b5cb;
        color: var(--main-link-color, #45a8b4);
    } img.flowerPetal {
    opacity: 0.2;
    cursor: pointer;
} img.flowerPetalSelected {
    opacity: 1;
    cursor: pointer;
    border: 0.5px solid #000000;
} img.flowerPetal:hover {
    opacity: 1;
    cursor: pointer;
}
/* Unsubscribed pages Tabs */
.unsubscribedTab {
    position: absolute;
    top: -48px;
} .unsubscribedTab li.current a.actiononpage, .nav-tabs li.active a.actiononpage, .nav-tabs li.active a.actiononpage:hover, .nav-tabs li.ui-state-active a.actiononpage, .nav-tabs li.active.ui-state-hover a.actiononpage, .nav-tabs li.ui-state-active a.actiononpage:hover, .nav-tabs li.active.ui-state-hover a.actiononpage:hover {
        background: #fff;
        color: #333 !important;
        border: 5px solid #ddd !important;
        border-bottom: 0 !important;
        border-radius: 7px 7px 0 0;
        color: #333 !important;
        margin: -3px 0 2px;
        padding: 6px 26px 8px;
        opacity: 1;
    } .ui-tabs .ui-tabs-nav li.ui-tabs-active, .ui-tabs .ui-tabs-nav li.active {
    margin: unset;
    padding: unset;
    padding-bottom: 10px;
} .unsubscribedTab li a.actiononpage, .nav-tabs li a.actiononpage, .nav-tabs li a.actiononpage:hover, .nav-tabs li a.actiononpage {
    background: #919292;
    color: #fff !important;
    border: 0;
    border-bottom: 0;
    border-radius: 3px 3px 0 0;
    padding: 6px 26px 6px;
    margin: 2px 6px 5px;
} .unsubscribedTab li a.actiononpage:hover {
        opacity: 1;
    } ul.unsub-reason, ul.unsub-reason > *, #cancelUns, #cancelUns > *, #confirmUns, #confirmUns > * {
    cursor: not-allowed;
    pointer-events: none;
}
/* Media area tabs */
.nav-tabs {
    border-bottom: 0 !important;
} .nav-tabs li.active a.actiononpage {
        margin: -1px 0 2px !important;
        padding: 6px 26px 7px;
    } .nav-tabs li a.actiononpage, .nav-tabs li a.actiononpage:hover {
        padding: 5px 26px 6px !important;
    } .nav-tabs > li.active > a, .nav-tabs > li.active > a:hover, .nav-tabs > li.active > a:focus {
        color: #111 !important;
    }
/* image settings window */
#imageDialog {
    height: auto !important;
} #imageDialogTabs {
    padding: .25em 0 0;
    margin: 0px;
    left: 2px;
} #imageDialogTabs li.ui-tabs-active a {
        background: #fff;
        color: #333;
        height: 31px;
    } #imageDialogTabs li {
        margin: 0;
    } #imageDialogTabs li a {
            background: #eee;
            color: #333;
            padding: .5em 1em .28em;
            /*font-size: 14px;*/
        } #imageDialogTabs a:focus, #imageDialogTabs li:focus {
            outline: none;
        } #imageDialogContents {
    vertical-align: top;
    padding-top: 0px;
} .edit-img-name {
    border: 1px solid transparent;
    padding: 3px 4px;
    margin: 0px;
    line-height: 1.3;
    vertical-align: middle;
    display: inline-block;
} .edit-img-name:hover {
        border: 1px solid #c7c6c6;
    }
/* Recipient table search */
.recipTableSearchItem input {
    max-width: 157px;
}
/* Pointing pink tooltip */
.pointingMessageDivClass {
    visibility: hidden;
    opacity: 0;
    text-align: center;
    font-size: 16px;
    border: solid var(--iw-pink, #f07d75) 1px;
    border-radius: 4px;
    padding: 10px 20px;
    background-color: var(--iw-pink, #f07d75);
    color: #fffbfd;
    opacity: 0.8;
    box-sizing: initial;
    z-index: 11001; /*999999*/
    box-sizing: border-box;
    min-height: 85px;
    display: flex;
    justify-content: center;
    align-items: center;
} .pointingMessageDivClass h4 {
        font-size: 18px;
    } .pointingMessageDivClass p {
        font-size: inherit;
        margin: 0 0 0.2em 0;
    } .pointingMessageDivClass ul, .pointingMessageDivClass ol {
        margin: 0 25px;
    } .pointingMessageDivClass li {
        line-height: 1.5;
    } .icon-circle {
    background: #be0169;
    padding: 5px;
    border-radius: 50%;
    box-sizing: content-box;
} .pointingMessageDivClass a, .contentarea .pointingMessageDivClass a, .pointingMessageDivClass a:visited, .pointingMessageDivClass a:hover, .pointingMessageDivClass a:focus, #editor a.pointingLink:visited {
    font-weight: normal;
    font-size: 12px;
    color: #fff;
} a.pointingLink:visited, a.pointingLink:hover, a.pointingLink:focus, #editor a.pointingLink:visited {
    color: #fff;
    text-decoration: underline;
} .pointingMessageDivClass:hover {
    opacity: 1;
}
/* AI yellow tooltip */
.pointingMessageDivClass.ai-tooltip {
    border: solid var(--iw-yellow, #f2c900) 1px;
    background-color: var(--iw-yellow, #f2c900);
    color: #111;
} .pointingMessageDivClass.ai-tooltip.pointingMessageDivArrowDown:after {
        border-top: solid 10px var(--iw-yellow, #f2c900);
    } .pointingMessageDivClass.ai-tooltip a, .contentarea .pointingMessageDivClass.ai-tooltip a, .pointingMessageDivClass.ai-tooltip a:visited, .pointingMessageDivClass.ai-tooltip a:hover, .pointingMessageDivClass.ai-tooltip a:focus {
        color: #111;
    }
/* Pink Tooltip arrow down */
.pointingMessageDivClass.pointingMessageDivArrowUp {
    opacity: 0;
    -webkit-transition: opacity 0.4s ease-in-out, visibility 0.4s ease-in-out, -webkit-transform 0.4s cubic-bezier(0.47, 1.09, 0.65, 1.07);
    -moz-transition: opacity 0.4s ease-in-out, visibility 0.4s ease-in-out, -moz-transform 0.4s cubic-bezier(0.47, 1.09, 0.65, 1.07);
    transition: opacity 0.4s ease-in-out, visibility 0.4s ease-in-out, transform 0.4s cubic-bezier(0.47, 1.09, 0.65, 1.07);
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
} .pointingMessageDivClass.pointingMessageDivArrowDown:after {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 0;
    height: 0;
    border-top: solid 10px var(--iw-pink, #f07d75);
    border-left: solid 10px transparent;
    border-right: solid 10px transparent;
}
/* Pink Tooltip arrow up */
.pointingMessageDivClass.pointingMessageDivArrowUp:before {
    content: '';
    position: absolute;
    margin: 0 auto;
    width: 0;
    height: 0;
    border-top: solid 13px transparent;
    border-left: solid 13px transparent;
    border-right: solid 13px transparent;
    border-bottom: solid 14px var(--iw-pink, #f07d75);
    bottom: 100%;
    top: auto;
    left: 50%;
    margin-left: -13px;
}
/* Pink Tooltip arrow side */
.pointingMessageSide:after, .pointingMessageRightSide:after {
    top: calc(50% - 10px);
    content: '';
    position: absolute;
    margin: 0 auto;
    width: 0;
    height: 0;
} .pointingNoArrow:after {
    content: none;
}
/* Pink Tooltip animation */
.pointingMessageDivClass.slideSide {
    animation: 1s ease-out slideSide forwards;
} @keyframes slideSide {
    0% {
        transform: translateX(15px);
    }

    100% {
        transform: translateX(0);
    }
} .pointingMessageDivClass.slideUp {
    animation: 1.2s ease-out slideInup;
    /*animation-delay: 3s;*/
    opacity: 0;
    visibility: hidden;
} @keyframes slideInup {
    0% {
        transform: translateY(38px);
        opacity: 0;
    }

    100% {
        transform: translateY(0);
        opacity: 1;
    }
} .pointingMessageDivClass.slideDown {
    animation: .8s ease-out slideDown forwards;
} @keyframes slideDown {
    0% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0px);
    }
} .pointingMessageDivClass.show {
    transform: translateY(-5px);
    /* transition-delay:.4s;*/
    opacity: 1;
    visibility: visible;
}
/* Landing page details box*/
.detailsBox td {
    word-break: break-word;
    padding: 8px 6px;
} #discussionImageHeader img {
    margin: 0 auto;
    text-align: center;
} .SummaryTable {
    line-height: 1.5;
}
/* BillingInformation.aspx */
#div_paymentMethod .close:hover {
    opacity: 0.6;
}
/* Pager */
.pagerNum, .goToPage {
    /*font-size: 14px;*/
} .goToPage label {
        margin: 0 5px;
    } #tdLabelsctl00_MPC_PagesPager, #tdLabelsctl00_MPC_CampaignsPager {
    margin: 0 5px;
}
/* Payment Popup content */
#PopEditPaymentMethod {
    height: auto !important;
} .popup-content {
    padding: 0 1em;
    /*font-size: 14px;*/
    /*line-height: 1.6em;*/
    outline: 0;
    list-style: none;
} .popup-content h3 {
        font-size: 16px;
    } .popup-content label {
        display: block;
    }
/* Domain verification */
.VerifyDomain label {
    /*width: 170px;*/
    display: inline-block;
} .VerifyDomain input {
    /*margin-left: 0;
    margin-right: 0;*/
    margin-top: 5px;
    margin-bottom: 5px;
} .SendVerifyDomain span {
    font-style: italic;
    display: inline-block;
    padding-top: 5px;
} .domainTable textarea {
    vertical-align: middle;
    width: 170px;
} .domainTable td {
    text-align: center;
} .domainTable td img {
        vertical-align: middle;
    } .domainTable .table-link {
    font-weight: normal;
} .domainTable td input:focus {
    color: #111;
} .domainTable input::-webkit-input-placeholder, .domainTable textarea::-webkit-input-placeholder {
    color: #888;
} .domainTable .borderleft {
    border-right: 1px solid var(--light-grey-border, #E3E4E6);
    border-left: 0;
} .domainTable tr:nth-child(odd) .borderleft {
    border-right: 1px solid var(--light-grey-border, #E3E4E6);
    border-left: 0;
} .icon-valid {
    height: 12px;
    padding: 0 2px;
} .domainTable tr .table-title {
    font-weight: bold;
    border-bottom: 1px solid var(--light-grey-border, #E3E4E6);
} .validmsg {
    display: inline-block;
    color: green;
    padding: 2px 5px;
} .errormsg {
    color: #ff4848;
} .current-user, .admin-user {
    background-color: #e4e4e5;
    color: #111;
    padding: 3px 10px;
    border-radius: 14px;
    font-size: 13px;
    display: inline-block;
} .current-user.user-blue {
        background-color: #cce0f3;
    } .current-user.user-pink {
        background-color: #f67d85;
        color: #fff;
    } .current-user.user-yellow {
        background-color: var(--iw-yellow, #f2c900);
        color: #111;
    } .current-user.user-green {
        background-color: #c5e57b;
        color: #111;
    }
/* AB Matrix settings */
.abOptionsWrap {
    display: -webkit-flex;
    display: flex;
    width: 100%;
} .abOptionsWrapper {
    font-size: 17px;
    line-height: 1.2;
    width: 19%;
    padding: 18px 10px 10px;
    background: #f2f2f2;
    margin: 0 9px;
    border-radius: 5px;
    border: 2px solid #f2f2f2;
    display: inline-block;
    vertical-align: middle;
    text-align: center;
    box-sizing: border-box;
} .abOptionsWrapperSelected {
    border: 2px solid var(--main-link-hover);
    background: #dbf7fb;
}
/* Disabled box */
input.abOptionsInputDisabled, input.abOptionsInputDisabled:hover, input.abOptionsInputDisabled:focus {
    background: #79d1de;
    color: #fff;
    cursor: default;
    opacity: 0.7;
    outline: 0;
} .abOptionsInput {
    margin: 16px 5px 5px;
    direction: ltr;
} .abOptionsNum {
    text-align: center;
    line-height: 30px;
} .abOptionsNum input {
        background: none;
        border: 0;
        font-weight: 600;
        font-size: 19px;
        font-weight: 600;
        margin: 3px;
        width: 26px;
        text-align: center;
    } .abOptionsBtn {
    margin: 8px 3px 0;
    font-size: 24px;
    background: #15b5cb;
    background: var(--main-link-color, #45a8b4);
    color: #fff;
    border: 0;
    cursor: pointer;
    width: 38px;
    height: 34px;
    border-radius: 3px;
} .abOptionsInput input[type=number] {
    max-width: 60px;
} .abOptionsWrapper input[type=checkbox], .abOptionsWrapper input[type=radio] {
    margin: auto 7px;
    vertical-align: middle;
} .abOptionsWrapper .tooltip {
    width: 20px;
    vertical-align: top;
    display: inline-block;
    margin: 0 5px;
} .abOptionsDisabled {
    background: #eaeaea;
    color: #999;
    border: 2px solid #eaeaea;
} .abOptionsDisabled .abOptionsNum input {
        color: #999;
    } .abOptionsDisabled .abOptionsBtn {
        opacity: 0.5;
        cursor: default;
    } .abSplitRateResult h2 {
    font-size: 19px;
    font-weight: normal;
} .GaleryContentTable {
    margin: 0px;
} .sp-dd {
    display: none;
}
/* total summary box */
#summaryDiv {
    text-align: center;
    width: 18%;
    font-size: 16px;
    padding: 18px 10px 13px;
    border: 2px solid #f2f2f2;
    border-radius: 5px;
    line-height: 1.2;
    background: #fff;
} #combinationsValue {
    font-size: 41px;
    display: block;
    line-height: 1.5;
} .maxOfValueWrapper {
    margin: 16px 0;
    /*font-size: 14px;*/
} h2.abfrombox {
    background: #f2f2f2;
    padding: 1px;
    margin: 0 0 18px;
    line-height: 2;
} .tooltip-side {
    position: absolute;
    top: calc(50% - 17px);
    display: none;
    padding: 10px 12px;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    border-radius: 3px;
    color: #fff;
    line-height: 1;
    /*font-size: 14px;*/
    white-space: nowrap;
    background-color: #333;
} .bottom-actions:hover .tooltip-side {
    display: block;
}
/* Media area */
#FeedbackImages_Display, #AttachmentFiles_Display, #FeedbackFiles_Display {
    padding: 10px;
}
/* fix position of loader in media area */
#FeedbackImages #DivImagePagerTop {
    position: relative;
} #FeedbackImages #loading_img {
    position: absolute;
    left: 50%;
    margin-left: -16px;
}
/* Welcome Div */
.welcome-inner {
    position: fixed;
    z-index: 999;
    left: 50%;
    top: 15%;
    transform: translate(-50%, 0);
    width: 820px;
    font-size: 17px;
    padding: 0 !important;
    border: 0 !important;
    cursor: move;
} .wel-items > div {
    display: inline-flex;
    width: 100%;
    display: flex;
    flex-direction: column;
    margin: 0 0 1em;
} .wel-items > div:last-of-type {
        margin: 0;
    } .wel-items > div a + span {
        /*font-size: 14px;*/
        margin-top: 14px;
    } .welcome-inner header {
    padding: 0px 15px 20px;
    text-align: center;
    margin: 0 auto;
} .welcome-inner header h1 {
        font-size: 26px;
        margin: 44px auto 16px;
        width: 70%;
    } .welcome-inner header img {
        position: absolute;
        top: -25px;
    } .welcome-inner section {
    padding: 28px 25px 18px;
} .wel-items {
    display: -webkit-flex;
    display: flex;
    margin: 1em auto;
    align-items: center;
    justify-content: space-around;
    flex-direction: column;
    height: 92%;
} .wel-items a {
        transition: all .2s ease-in-out;
    } .wel-items a.wel-item:hover {
            /*background: #eff9f9;
            box-shadow: inset 0px 0px 2px var(--main-link-color, #15b5cb);*/
            outline: #80c7d0 solid 2px !important;
            color: var(--main-link-color, #45a8b4);
            /*border-color: var(--main-link-color, #15b5cb);*/
        } .wel-items a.wel-item:hover .icon-grey {
                filter: invert(30%) sepia(20%) saturate(758%) hue-rotate(145deg) brightness(102%) contrast(71%);
            } .wel-items a.wel-item:hover div {
                color: var(--main-link-color, #45a8b4);
            } .wel-items a.wel-item:hover img {
                opacity: 1;
            } .welcome-inner section h2 {
    font-size: 22px !important;
    font-weight: 400;
    margin: 1em auto;
} .welcome-inner section a.wel-item {
    padding: 0.7em 0.5em;
    background: #fff;
    border: 2px solid #e2e4e4;
    border-radius: 8px;
    flex-basis: 100%;
    text-decoration: none;
    align-self: stretch;
    color: var(--main-link-color, #45a8b4);
    display: flex;
} .welcome-inner section .wel-item img {
    margin-top: 5px;
    margin-bottom: 5px;
    opacity: 0.6;
} .wel-items-text {
    display: flex;
    justify-content: center;
    align-items: center;
} .welcome-inner section .wel-item div {
    font-size: 19px;
    color: #999;
} .wel-btns {
    margin: 18px auto 5px;
} .contentarea .wel-btns a {
    font-size: 21px;
    color: #fff;
} .wel-btns label {
    vertical-align: middle;
} .welcome-wrapper .bg-overlay, .ui-widget-overlay, .shepherd-active #shepherd-overlay {
    background: var(--dark-overlay, #5A5555);
    opacity: 0.75;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    position: fixed;
    z-index: 555;
} .ui-widget-overlay {
    z-index: 888;
} .welcome-wrapper .bg-overlay, .shepherd-active #shepherd-overlay {
    z-index: 998;
}
/* Support Menu */
.support-menu, .top-nav-menu {
    background: #363636;
    z-index: 7;
    position: absolute;
    width: 270px;
    left: 0px;
    top: 30px;
    border-radius: 6px;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out, -webkit-transform 0.3s cubic-bezier(0.47, 1.09, 0.65, 1.07);
    -moz-transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out, -moz-transform 0.3s cubic-bezier(0.47, 1.09, 0.65, 1.07);
    transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out, transform 0.3s cubic-bezier(0.47, 1.09, 0.65, 1.07);
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    box-shadow: var(--ds-overlay,0 4px 8px -2px rgba(9,30,66,0.25),0 0 1px rgba(9,30,66,0.31));
    overflow: hidden;
    user-select: text;
} .support-menu.show, .top-nav-menu.show {
        visibility: visible;
        -webkit-transform: translateY(12px);
        -moz-transform: translateY(12px);
        transform: translateY(12px);
        opacity: 1;
    } .support-menu section, .top-nav-menu section, .create-new-div section {
        padding: 20px 20px 12px;
    } .support-menu section, .top-nav-menu section:not(:last-child) {
            border-bottom: 1px solid #606060;
        } .support-menu h3, .top-nav-menu h3, .top-nav-menu h4 {
        color: #c7c7c7;
        margin: 0;
        font-size: 15px;
        font-weight: normal;
    } .support-menu ul, .top-nav-menu ul, .create-new-div section ul {
        margin: 5px 0 5px;
    } .support-menu ul li, .top-nav-menu ul li {
            color: #efefef;
        } .top-nav-menu ul li a:not(.blueLink), .top-nav-menu a:not(.blueLink) {
                /*font-size: 15px;*/
                line-height: 1.55;
                color: #efefef;
                text-decoration: none;
                display: inline-block;
            } .top-nav-menu ul li:hover a:not(.blueLink) {
                color: #fff;
            } .top-nav-menu ul li a.blueLink:hover {
                color: #45a8b4;
                color: var(--main-link-color, #45a8b4);
            } .top-nav-menu ul li a.external:hover, .settingsmenuWrap li a.external:hover {
                background: url('../../interface/images/new/icons/icon-external-w.png') no-repeat left center;
                display: block;
            } .settingsmenuWrap li a.external:hover {
    background-position: 18px center;
}
/* Side Bottom icons */
.side-icons {
    position: fixed;
    bottom: 34px;
    left: 23px;
    z-index: 11000;
} .progress-side {
    bottom: 72px;
} .progress-side .pointingMessageSide, .progress-side .pointingMessageRightSide {
        bottom: 61px !important;
    } .bottom-actions {
    background: #fff;
    padding: 18px 17px 11px;
    border-radius: 30px;
    font-size: 18px;
    text-decoration: none;
    color: #111;
    float: right;
    clear: both;
    margin-bottom: 12px;
    line-height: 1.25;
    filter: drop-shadow(0 1px 4px rgba(34,36,38,0.2));
    -webkit-filter: drop-shadow(0 1px 4px rgba(34,36,38,0.2));
} .bottom-actions:hover {
        color: #a2a2a2;
    } .bottom-actions:hover img {
            opacity: 0.7;
        } .bottom-actions img {
        width: 26px;
        vertical-align: baseline;
    } .bottom-welcome {
    padding: 19px !important;
} .side-icons-min {
    display: none;
    position: fixed;
    bottom: 60px;
    left: 10px;
    z-index: 887;
} .side-icons-min a {
        font-size: 15px;
        text-decoration: none;
        background: #fff;
        border-radius: 4px;
        padding: 0 4px 6px;
        vertical-align: middle;
        font-weight: bold;
    } .side-icons-min img {
        -ms-transform: rotate(180deg);
        /* IE 9 */
        -webkit-transform: rotate(180deg);
        /* Safari */
        transform: rotate(180deg);
        /* Standard syntax */
    }
/* Feedback */
/* Conversations */
#div_recipients div {
    /*font-size: 14px;*/
    line-height: 1.4;
    word-break: break-word;
    /*overflow: hidden;*/
} .ReplyContent {
    margin: 7px 0;
    border-radius: 3px;
    color: #111;
    font-size: 15px;
    word-break: break-word;
} .replyFrame {
    border-radius: 5px;
    width: 65%;
    max-width: 680px;
    margin: 0 0 22px;
    padding: 18px 18px 14px;
    background: #e4f9e4;
    border: 1px solid #d9ead9;
    position: relative;
} .replyFrame .replyFrameMeta, .status-div {
        color: #949494;
        font-size: 13px;
        display: inline-block;
    } .replyFrame .sentDate {
        position: absolute;
        bottom: -27px;
    } .replyFrame section {
        padding: 13px 5px;
    } .replyFrame section input, .replyFrame section textarea {
            vertical-align: middle;
            margin: 0 5px;
        } .ReplyIncoming {
    background: #fff;
    width: 65%;
    border: 1px solid #e1e6e1;
    position: relative;
} .replyFrame .divReplier {
    font-size: 12px;
    color: #6bb56b;
    font-weight: bold;
} .replyFrame.ReplyIncoming .divReplier {
    color: #949494;
} #txtReplyContent {
    resize: both;
    overflow: auto;
} .profile-name {
    position: absolute;
    top: 14px;
    font-weight: 700;
} .read td, .notRead td {
    border-top: 1px solid #dbdbdb;
    cursor: pointer;
    padding-top: 13px;
    padding-bottom: 11px;
    padding-right: 4px;
    padding-left: 4px;
    width: 25%;
    /*font-size: 14px;*/
} .read td:first-of-type, .notRead td:first-of-type {
        width: 2%;
        max-width: 40px;
    } .read td:last-of-type, .notRead td:last-of-type {
        width: 20%;
    } .read:not(.selectedTR):hover td, .notRead:not(.selectedTR):hover td {
    background: #f6f6f6;
} .notRead td {
    font-weight: 700;
} .replyArea {
    background: #f6f6f6;
    padding: 30px 30px 0;
} tr[opened="true"] {
    background: #f6f6f6 !important;
} .replyFrameWrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
} #newMessages {
    width: fit-content;
    position: absolute;
    display: none;
    right: -6px;
    font-size: 11px;
    z-index: 5;
    padding: 2px 5px;
    background: var(--iw-pink, #f07d75);
    color: #fff;
} .sendImmediateInner, .divReplayBg {
    padding: 12px 16px;
    background: #eee;
} .sendImmediateInner h2 {
        margin: 8px 0;
        font-size: 19px;
    } .SendMessageModalOptions {
    font-size: 16px;
}
/* API key */
.apiKeyWrap {
    margin: 1em 0 1.3em;
    line-height: 1.45;
    padding: 1.5em;
    border: 1px solid #ccc;
} .apiKeyWrap .genBtn.margin4_0 {
        margin: 12px auto 5px;
    }
/* Transactional */
.AggregatesTable {
    margin-top: 15px;
    width: 100%;
}
/* Upgrade account */
.upgradeBtn {
    display: inline-block;
    padding: 3px 6px;
    margin: 5px 0;
    background-color: var(--iw-pink, #f07d75);
    border: 0;
} .upgradeBtn:hover {
        background-color: #ff7889;
    } .upgradeAccount {
    /*font-size: 14px;*/
    line-height: 1.5;
} .client-id {
    position: fixed;
    bottom: 0;
    left: 0;
    background: #000;
    color: #fff;
    padding: 2px 9px;
    font-size: 12px;
    border-radius: 0 6px 0 0;
    z-index: 9999999111 !important;
}
/* Send to test */
#sendToTestTop h2 {
    font-size: 24px;
    line-height: 100%;
    font-weight: normal;
    font-family: inherit;
    color: #111;
    margin: 0;
    padding: 0;
} #mainSendToTest h3 {
    font-size: 17px;
    font-weight: 600;
    line-height: 150%;
    color: #111;
    padding: 0;
    margin: 0;
} textarea.codearea {
    background: #f1f1f1;
    border-color: #cacaca;
    padding: 1em;
    font-family: monospace;
} .scrollWrapper .viewport, .viewport {
    overflow-x: hidden;
    overflow-y: auto;
} .scrollWrapper .viewport {
    position: relative;
}

/* Scroll bar */
.viewport::-webkit-scrollbar, .contentPicker select::-webkit-scrollbar {
    width: 0.6em;
    height: 0.8em;
    background-color: #e7e7e7;
}
/* handle*/
.viewport::-webkit-scrollbar-thumb, .contentPicker select::-webkit-scrollbar-thumb {
    background-color: #bdbdbd;
    -webkit-border-radius: 10px;
    border-radius: 10px;    
}

/* Dark scrollbar */
.resultsMainDiv.viewport::-webkit-scrollbar {
    background-color: #474747;
} .resultsMainDiv.viewport::-webkit-scrollbar-thumb {
    background-color: #57585a;
}

::-webkit-scrollbar-thumb {
    background-color: rgb(96, 96, 96);
    background-clip: padding-box;
    border: 1px solid transparent;
}

    ::-webkit-scrollbar-thumb:hover {
        background-color: rgb(112, 112, 112);
    }

    ::-webkit-scrollbar-thumb:active {
        background-color: rgb(128, 128, 128);
    }

/* Buttons */
::-webkit-scrollbar-button:single-button {
    display: block;
    background-size: 10px;
    background-repeat: no-repeat;
}

/* Left arrow of horizontal scrollbar */
    ::-webkit-scrollbar-button:single-button:horizontal:decrement {
        height: 12px;
        width: 12px;
        background-position: 3px 1px;
        background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='32' height='32'><circle cx='16' cy='16' r='16' fill='%23e0e0e0'/><polygon points='20,8 10,16 20,24' fill='%23909090' style='stroke:%23909090;stroke-linejoin:round;stroke-linecap:round;stroke-width:2'/></svg>");
    }
        ::-webkit-scrollbar-button:single-button:horizontal:decrement:hover {
            background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='100' height='100' fill='rgb(112, 112, 112)'><polygon points='0,50 50,100 50,0'/></svg>");
        }

        ::-webkit-scrollbar-button:single-button:horizontal:decrement:active {
            background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='100' height='100' fill='rgb(128, 128, 128)'><polygon points='0,50 50,100 50,0'/></svg>");
        }

    /* Right arrow of horizontal scrollbar */
    ::-webkit-scrollbar-button:single-button:horizontal:increment {
        height: 12px;
        width: 12px;
        background-position: 3px 1px;
        background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='32' height='32'><circle cx='16' cy='16' r='16' fill='%23e0e0e0'/><polygon points='12,8 22,16 12,24' fill='%23909090' style='stroke:%23909090;stroke-linejoin:round;stroke-linecap:round;stroke-width:2'/></svg>");
    }

        ::-webkit-scrollbar-button:single-button:horizontal:increment:hover {
            background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='100' height='100' fill='rgb(112, 112, 112)'><polygon points='0,0 0,100 50,50'/></svg>");
        }

        ::-webkit-scrollbar-button:single-button:horizontal:increment:active {
            background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='100' height='100' fill='rgb(128, 128, 128)'><polygon points='0,0 0,100 50,50'/></svg>");
        }
    /* Up */
    ::-webkit-scrollbar-button:single-button:vertical:decrement {
        height: 1px;
        width: 15px;
        /*background-position: center 4px;
        background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='100' height='100' fill='rgb(96, 96, 96)'><polygon points='50,00 0,50 100,50'/></svg>");
   */ }

        ::-webkit-scrollbar-button:single-button:vertical:decrement:hover {
            background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='100' height='100' fill='rgb(112, 112, 112)'><polygon points='50,00 0,50 100,50'/></svg>");
        }

        ::-webkit-scrollbar-button:single-button:vertical:decrement:active {
            background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='100' height='100' fill='rgb(128, 128, 128)'><polygon points='50,00 0,50 100,50'/></svg>");
        }

    /* Down */
    ::-webkit-scrollbar-button:single-button:vertical:increment {
        height: 1px;
        width: 15px;
        /*background-position: center 2px;
        background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='100' height='100' fill='rgb(96, 96, 96)'><polygon points='0,0 100,0 50,50'/></svg>");
    */}

        ::-webkit-scrollbar-button:single-button:vertical:increment:hover {
            background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='100' height='100' fill='rgb(112, 112, 112)'><polygon points='0,0 100,0 50,50'/></svg>");
        }

        ::-webkit-scrollbar-button:single-button:vertical:increment:active {
            background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='100' height='100' fill='rgb(128, 128, 128)'><polygon points='0,0 100,0 50,50'/></svg>");
        }


  
  .btn-addTestGroupButton {
    position: absolute;
    top: 8px;
    /*font-size: 14px;*/
    cursor: pointer;
}
/* Page published */
.published-msg {
    text-align: center;
    margin: 2em auto 3em;
} .published-msg h2 {
        font-size: 28px;
        font-weight: normal;
    } .published-next h3 {
    font-size: 22px;
    font-weight: normal;
    margin-bottom: 0.7em;
} #PopSaveAsTemplate, #popUpAddToNewGroup, #popUpAddToGroup {
    height: auto !important;
    text-align: center;
}
/* Sms edit page */
.TotalMsgNotice {
    background: #eee;
    padding: 15px;
    margin-top: 25px;
} .TotalMsgNotice h3 {
        margin: 0 0 10px 0;
    } .TotalMsgNotice p {
        margin: 0 0 7px 0;
    }
/* send confirmation msg*/
.send-confirmation-msg {
    background: #e7f6f9;
    padding: 1em;
    margin: 25px auto 10px;
    border: 2px solid #b8ecf3;
    font-weight: 600;
} #popCreateLinkToMessage {
    height: auto !important;
    padding: 0 6% 20px;
} .design-area label.color-fallback {
    margin-top: 9px;
    margin-bottom: 0;
    font-size: 12px;
    color: #333;
    font-weight: 600;
    display: inline-block;
}
/*.webhook-name {
    border-top: 1px solid #ccc;
    margin-top: 1em;
    padding-top: 1em;
}*/
.transactional-options {
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    justify-content: space-between;
} .transactional-options .transactional-item:hover {
        background: #dcf9f9;
    } .transactional-item {
    background: #eee;
    padding: 1.5em 1em 2em;
    margin: 8px 0 1em;
    width: 48.5%;
} .transactional-item h3 {
        margin: 0 0 8px;
        font-size: 19px;
        font-weight: normal;
    } .transactional-item p {
        margin: 11px 0 18px;
    } .transactional-item.api .code-examples a {
        margin: 5px 2px;
        background: #00adc6;
        color: #fff;
        padding: 6px 10px;
    } .transactional-item.api .code-examples a:hover {
            background: #0297ad;
        } .nocharslefterror, input.nocharslefterror:focus, textarea.nocharslefterror:focus, select.nocharslefterror:focus {
    border: 1px solid #ff4848;
} .dashed {
    background: linear-gradient(90deg, #15b5cb 50%, transparent 50%), linear-gradient(0deg, #15b5cb 50%, transparent 50%), linear-gradient(90deg, #15b5cb 50%, transparent 50%), linear-gradient(0deg, #15b5cb 50%, transparent 50%);
    background-repeat: repeat-x, repeat-y, repeat-x, repeat-y;
    background-size: 15px 3px, 3px 15px, 15px 3px, 3px 15px;
    background-position: left top, right top, left bottom, left top;
    border-radius: 3px;
} .removed-dashed {
    background: none;
} .notification-blue, .notification-box, .notification-top {
    background: #45a8b4;
    background: var(--main-link-color,#45a8b4);
    padding: 0.5em 1.5em;
    color: #fff;
    width: auto;
    margin: 0 auto 18px;
    display: inline-block;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    font-size: 16px;
    position: relative;
} .notification-box, .notification-top, .notification-Manually2 {
    display: block;
    background-color: #fff;
    color: #111;
    overflow: hidden;
    width: 100%;
    position: relative;
    line-height: 1.4;
} .notification-Manually2 {
    background-color: transparent;
    min-height: 36px;
} .popNotificationsList {
    color: #fff;
} .popNotificationsList div {
        margin-bottom: 9px;
    } .popNotificationsList span {
        display: block;
        margin: 3px 0;
        font-size: 13px;
        color: #bebebe;
    }
/* Alert top notification */
.notification-top {
    padding: 0;
} .icon-alert, .icon-notification {
    border-bottom: 78px solid #f8bf27;
    border-left: 31px solid transparent;
    border-right: 0px solid transparent;
    height: 0;
    width: 126px;
    position: absolute;
} .icon-alert:before, .icon-notification:before {
        content: url('../../interface/images/new/icons/icon-alertw.png');
        display: inline-block;
        position: absolute;
        top: 20px;
    } .icon-notification {
    border-bottom: 78px solid var(--main-link-color,#45a8b4);
} .icon-notification:before {
        content: url('../../interface/images/new/icons/icon-notificationw.png');
    } #popNotificationsBanner {
    margin: 0 5px 34px;
} #popNotificationsBanner a {
        text-decoration: underline;
    } .notification-box h3 {
    font-size: 16px;
    line-height: 1.4;
    color: #111;
} .notification-inner {
    min-height: 68px;
} .contentarea .notification-blue a {
    color: #fff;
    text-decoration: underline;
} #activationLinkDiv .close, .notification-box .close, .notification-top .close, #mobileDefinitions .close, #accountDetailsForm .close, .notification-Manually2 .close {
    position: absolute;
    top: 14px;
    background: url('../../interface/images/new/icons/icon-close.svg') no-repeat center;
    height: 14px;
    width: 14px;
    display: inline-block;
    cursor: pointer;
    opacity: 0.9;
} #SmallUserMsg .close {
    top: 20px;
    position: absolute;
    right: 10px;
    top: 12px;
    background-color: transparent;
    cursor: pointer;
    opacity: 0.9;
    display: flex;
    justify-content: center;
    align-items: center;
} #SmallUserMsg .close:before {
        background: url('../../interface/images/new/icons/icon-close.svg') no-repeat center;
        padding: 10px;
        vertical-align: middle;
        line-height: 12px;
    } #SmallUserMsg .close:hover:before {
        background-color: #545556;
        border-radius: 50%;
    }
/* Toast Error message */
#SmallUserMsg.failSmallUserMessage {
    background-color: #d94848;
} #SmallUserMsg.failSmallUserMessage .close:hover:before {
        background-color: #f55959;
    }
/* Automation in Editor */
.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
}
/* Switch HTML checkbox start */
.switch input {
        opacity: 0;
        width: 0;
        height: 0;
    }
/* The Switch HTML slider */
.switch .slider {
        position: absolute;
        cursor: pointer;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: #ccc;
        -webkit-transition: .4s;
        transition: .4s;
    } .switch .slider:before {
            position: absolute;
            content: "";
            height: 26px;
            width: 26px;
            left: 4px;
            bottom: 4px;
            background-color: white;
            -webkit-transition: .4s;
            transition: .4s;
        } .switch input:checked + .slider {
        background-color: var(--main-link-color, #45a8b4);
    } .switch input:focus + .slider {
        box-shadow: 0 0 1px #2196F3;
    } .switch input:checked + .slider:before {
        -webkit-transform: translateX(26px);
        -ms-transform: translateX(26px);
        transform: translateX(26px);
    }
/* Rounded sliders */
.switch .slider.round {
        border-radius: 34px;
    } .switch .slider.round:before {
            border-radius: 50%;
        } .automation-active-message {
} .automation-active-message span {
        padding: 5px 0;
        display: inline-block;
    } .fade-in {
    animation: fadein .3s;
    -moz-animation: fadein .3s; /* Firefox */
    -webkit-animation: fadein .3s; /* Safari and Chrome */
    -o-animation: fadein .3s; /* Opera */
} @keyframes fadein {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
} @-moz-keyframes fadein { /* Firefox */
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
} @-webkit-keyframes fadein { /* Safari and Chrome */
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
} .fade-in-out {
    animation: fade-in-out 2s forwards;
    -moz-animation: fade-in-out 2s forwards; /* Firefox */
    -webkit-animation: fade-in-out 2s forwards; /* Safari and Chrome */
    -o-animation: fade-in-out 2s forwards; /* Opera */
} @keyframes fade-in-out {
    0% {
        opacity: 0;
    }

    28% {
        opacity: 1;
    }

    72% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}
/* Switch radio buttons with text */
.switch-field {
    display: flex;
    overflow: hidden;
} .switch-field input {
        position: absolute !important;
        clip: rect(0, 0, 0, 0);
        height: 1px;
        width: 1px;
        border: 0;
        overflow: hidden;
    } .switch-field label {
        background-color: #eff0f2;
        color: rgba(0, 0, 0, 0.4);
        /*font-size: 14px;*/
        line-height: 1;
        text-align: center;
        padding: 8px 16px;
        border: 1px solid rgb(210,210,210);
        transition: all 0.1s ease-in-out;
    } .switch-field label:hover {
            cursor: pointer;
        } .switch-field input:checked + label {
        background-color: #15b5cb;
        color: #fff;
        box-shadow: none;
        border: 1px solid rgb(14 165 186);
    } #trendsGraph img, img#Chart1, #groupssubscriptiongrpah img, #registration img, #UnsubscribtionRates {
    max-width: 100%;
} #groupssubscriptiongrpah #myChart1 {
    max-width: 100%;
    max-height: 100%;
}
/* jQuery custom style for modal window*/
.ui-dialog {
    z-index: 11002;
} .ui-widget-header {
    border: 0;
    background: none;
} .ui-dialog-titlebar.ui-widget-header {
    padding-bottom: 0;
} .ui-icon {
    display: block;
    margin-top: 0;
} .ui-state-default, .ui-widget-content .ui-state-default, .ui-widget-header .ui-state-default {
    border: 0px;
    background: transparent;
    outline: none;
} .ui-state-highlight, .ui-widget-content .ui-state-highlight, .ui-widget-header .ui-state-highlight {
    color: var(--iw-pink, #f07d75);
} .ui-button, .ui-button:hover, .ui-button:focus, .ui-dialog .ui-dialog-titlebar-close {
    background-color: transparent;
    border: 0;
    outline: 0;
} .ui-button .ui-icon, .ui-icon, .ui-widget-content .ui-icon, .ui-state-hover .ui-icon, .ui-state-focus .ui-icon, .ui-button:hover .ui-icon, .ui-button:focus .ui-icon {
        background: url('../../interface/images/new/icons/icon-close.svg') no-repeat center;
        background-size: 90%;
        cursor: pointer;
        /*margin-top: 0px;
        margin-left: -2px;*/
    } .ui-resizable-handle.ui-icon {
    background: none;
} .ui-widget input, .ui-widget select, .ui-widget textarea, .ui-widget button, .ui-dialog h2 {
    font-family: inherit;
} .ui-icon-closethick, .ui-icon-close {
    background-position: unset;
} .ui-tabs {
    position: relative; /* position: relative prevents IE scroll bug (element with position: relative inside container with overflow: auto appear as "fixed") */
    padding: .2em;
} .ui-tabs .ui-tabs-nav {
        margin: 0;
        padding: .2em .2em 0;
    } .ui-tabs .ui-tabs-nav li {
            list-style: none;
            float: none;
            position: relative;
            top: 0;
            margin: 1px .2em 0 0;
            border-bottom: 0;
            padding: 0;
            white-space: nowrap;
            background-color: transparent;
            border: 0;
            font-weight: normal;
        } .ui-state-active, .ui-widget-content .ui-state-active, .ui-widget-header .ui-state-active {
    border: 1px solid var(--iw-pink, #f07d75);
    color: var(--iw-pink, #f07d75);
    padding: .25em .5em;
    font-weight: 600;
} .ui-state-active a, .ui-state-active a:link, .ui-state-active a:visited {
        color: #e17009;
        text-decoration: none;
    } .ui-dialog .ui-dialog-content {
    border: 0;
    height: auto !important;
    padding: 0 1.5em;
} .ui-state-hover, .ui-widget-content .ui-state-hover, .ui-widget-header .ui-state-hover, .ui-state-focus, .ui-widget-content .ui-state-focus, .ui-widget-header .ui-state-focus {
    /*border: 0px;*/
    background: inherit;
} .ui-widget-header .ui-state-hover {
    font-weight: inherit;
} div .cke_dialog_ui_input_select {
    width: 100%;
}
/* jQuery UI Date picker */
.ui-datepicker .ui-datepicker-prev, .ui-datepicker .ui-datepicker-next {
    top: 6px;
    border: 0;
    background-position: center;
    background-size: auto;
} .ui-datepicker-rtl .ui-datepicker-next:hover, .ui-datepicker-rtl .ui-datepicker-prev:hover {
    top: 6px;
    border: 0;
} .ui-datepicker-next:hover, .ui-datepicker-prev:hover {
    border: 0;
    top: 6px;
} .ui-datepicker-next .ui-icon-circle-triangle-e, .ui-datepicker-prev .ui-icon-circle-triangle-w {
    background-image: url(../../Interface/images/new/icons/arrow_Right.png) !important;
    width: 16px;
    height: 16px;
    background-position: center;
    background-size: auto;
} .ui-datepicker-prev .ui-icon-circle-triangle-w {
    background-image: url(../../Interface/images/new/icons/arrow_Left.png) !important;
    background-position: center;
    background-size: auto;
}
/* RTL */
.ui-datepicker-rtl .ui-datepicker-prev .ui-icon-circle-triangle-e {
    background-image: url(../../Interface/images/new/icons/arrow_Right.png) !important;
    background-position: center;
    background-size: auto;
} .ui-datepicker-rtl .ui-datepicker-next .ui-icon-circle-triangle-w {
    background-image: url(../../Interface/images/new/icons/arrow_Left.png) !important;
    background-position: center;
    background-size: auto;
} .ui-datepicker .ui-datepicker-buttonpane button {
    padding: 4px 13px;
} .ui-datepicker-calendar td {
    font-size: unset;
    padding-right: .3em;
    padding-left: .3em;
} .timerDate {
    min-width: 120px;
} .timeIcon {
    background-image: url(../../interface/images/new/icons/Time.png);
    background-repeat: no-repeat;
    background-repeat: no-repeat;
    background-size: 19%;
    vertical-align: middle;
    min-width: 100px;
} .create-AI-image {
    overflow: auto;
    overflow-x: hidden;
    min-height: 300px;
    border: 0px;
    max-width: 660px;
    margin-right: auto;
    margin-left: auto;
} .create-AI-image label {
        vertical-align: middle;
    }
/* Dynamic Gif  */
.dynamic-gif {
    overflow: auto;
    overflow-x: hidden;
    min-height: 300px;
    border: 0px;
    text-align: center;
    max-width: 620px;
    margin-right: auto;
    margin-left: auto;
} .dynamic-gif-inner {
    align-items: self-start;
    justify-content: space-between;
    margin-top: 30px;
} .ulImages {
    max-height: 300px;
    overflow-y: auto;
    overflow-x: hidden;
    padding: 2px 7px;
    min-width: 112px;
} .ulImages img {
        cursor: move;
    } .ulImages img:active, .ulImages img:hover {
            outline: #15b5cb solid 2px;
        } .ulImages::-webkit-scrollbar {
        width: 0.6em;
        background-color: #eee;
    } .ulImages::-webkit-scrollbar-thumb {
        background-color: #c8c8c8;
    }
/* emoji picker */
.emoji-wysiwyg-editor, .contentarea .emoji-wysiwyg-editor {
    border: 1px solid #c8c8c8;
    white-space: pre-wrap;
    /*overflow-y: hidden;*/
    overflow-y: auto !important;
    background: #fff;
    line-height: 1.3 !important;
    min-height: 34px !important;
    resize: vertical;
} .emoji-menu .emoji-items-wrap {
    overflow-y: scroll;
    overflow-x: hidden !important;
} #phoneNumber.sendTest-phone .intl-tel-input input {
    width: 223px !important;
}
/* Share link modal */
.link-copy, .ui-widget-content a.link-copy {
    font-size: 16px;
    word-break: break-word;
    color: #15b5cb;
    color: var(--main-link-color, #45a8b4);
    text-decoration: underline;
    background-color: #F0F4F6;
    padding: 6px 12px;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    max-width: 80%;
    display: inline-block;
    vertical-align: middle;
} .btn-copy {
    margin: 0 !important;
} .icon-copybtn:active {
    pointer-events: none;
}
.div-copy-email {
    padding: 2px 4px;
    text-align: left;
    /* Avoid width in case of long emails addresses
    */
    cursor: pointer;
    display: inline-block;
}
.div-copy-email:hover {
    background-color: #e7e6e6;
    border-radius: 4px;
} .selectedTR .div-copy-email:hover {
    background-color: #cdebf1;
}
/* Saved Elements */
.saved-elements {
    padding: 19px;
} .saved-elements h5 {
        font-size: 13px;
        font-weight: normal;
    } .saved-elements-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    justify-content: space-around;
} .saved-elements-item {
    text-align: center;
    position: relative;
} .delete-saved-element {
    position: absolute;
    top: 10px;
    z-index: 1;
    cursor: pointer;
} .saved-elements-item h4 {
    font-size: 14px;
    width: 93px;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
} .savedElement {
    border: #c2ebfa dotted 3px;
    margin: 8px 0px;
} .savedElement img {
        margin: 7px auto;
    } #PopSaveElement h3 {
    font-size: 19px;
    font-weight: normal;
    line-height: 150%;
    margin: 0;
    padding: 0;
} .sp-picker-container .sp-input-container {
    width: 84px;
}
/* Time picker */
.contentPicker {
    background-color: #FFFFFF;
    color: #111;
    padding: 0px;
    margin: 0px;
    border: 1px solid #E3E4E6;
    border: 1px solid var(--light-grey-border, #E3E4E6);
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
} .contentPicker select {
        border: 0;
        padding: 7px 7px;
        -webkit-appearance: none;
        -moz-appearance: none;
        /*text-indent: 1px;*/
        cursor: pointer;
        background-image: none;
        /*line-height: 1.4;*/
        width: 36px;
        text-align: center;
    } .contentPicker select option {        
        width: 50px;
    } #SelectHour_timeControlfromDate::-webkit-scrollbar {
        width: 0.6em;
        background-color: #eee;
    } #SelectHour_timeControlfromDate::-webkit-scrollbar-thumb {
    background-color: #d2d2d2;
} .bootstrap-select.show-menu-arrow.open > .btn, .btn:active, .btn.active {
    box-shadow: none !important;
}
/* show Publish Information */
.PublishInformationMsg {
    background: #93bc24;
    background: var(--iw-green, #93bc24);
    padding: 7px 12px;
    margin-left: 15px;
    color: #fff;
    margin-top: 3px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
}
/* Validation */
.parsley-errors-list {
    position: static;
} input:not(.hasDatepicker).parsley-success, select:not(.hasDatepicker).parsley-success, textarea:not(.hasDatepicker).parsley-success {
    color: inherit !important;
    background-color: inherit !important;
    border: 1px solid var(--light-grey-border, #E3E4E6) !important;
} .parsley-errors-list.filled, .errordiv {
    color: #e8221f;
    padding: 4px;
    margin: 0px 0 3px;
    /*font-size: 14px;*/
    position: static;
} input.parsley-error, input.parsley-error:focus, select.parsley-error, textarea.parsley-error, .errorinput, .errorinput:focus, .emoji-wysiwyg-editor.errorinput {
    color: #e8221f;
    background-color: #f9e3e3 !important;
    border: 1px solid #f1b5be !important;
} .errorinput:focus {
        -webkit-box-shadow: inset 0 0 0 0.5px #f1b5be !important;
        -moz-box-shadow: inset 0 0 0 0.5px #f1b5be !important;
        box-shadow: inset 0 0 0 0.5px #f1b5be !important;
    } .clear-wrapper {
    cursor: pointer;
    position: relative;
    width: 17px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    position: absolute;
    top: 8px;
    text-align: center;
} .clear-wrapper .icon-clear {
        display: inline-block;
        font-size: 19px;
        line-height: 1;
        color: #666;
    }
/* Change name inline */
.name-input {
    border: 2px dashed transparent;
    padding: 2px 7px;
    vertical-align: middle;
    line-height: 1.5;
} .name-input:hover {
        border-color: rgb(195 195 195);
    } .name-edit {
    font-size: inherit !important;
    vertical-align: middle;
} .button-highlight.button-highlight-name {
    left: calc(50% - 36px);
    top: 180%;
} .campaign-name-wrap:hover .button-highlight-name {
    display: block;
} .listItemName .name-input {
    border-width: 1px;
    padding: 2px 4px;
    display: inline-block;
} .listItemName .name-input:hover {
        border-color: rgb(177 177 177);
    }
/* Icon edit */
.icon-edit {
    padding: 6px 9px;
    border-radius: 50%;
} .icon-edit:hover {
        background-color: rgb(74 74 74 / 10%);
    }
/* Automations tabs */
.automations-tabs.flex-center {
    align-items: flex-start;
} .automations-tabs h3, .flex-items h3 {
    font-weight: normal;
    margin-top: 6px;
    margin-bottom: 0px;
    min-height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
} .automations-tabs a {
    max-width: 24%;
    width: 24%;
    /*height: 145px*/
} .automations-tabs a:hover {
        background-color: #f7f7f7;
    } .automations-tabs a.active {
        border-bottom: 2px solid var(--main-link-color, #45a8b4);
        background-color: #f7f7f7;
    } .automations-tabs a div {
        padding: 12px 14px;
        margin: 5px;
    } .automations-tabs a div span, .flex-items a div.flex-items-inner, .flex-items .flex-items-number {
            vertical-align: middle;
            font-size: 24px;
            padding-top: 10px;
            display: inline-block;
            width: 100%;
            text-align: center;
        } .flex-items-inner {
    text-align: center;
    background: #eee;
    padding: 5px;
    margin: 5px auto;
    min-width: 21%;
}
/* Contact timeline*/
.actions-list li {
    margin-bottom: 15px;
}
.actions-list.form-fields li {
    margin-bottom: 7px;
}
.actions-list li:before {
        content: '\25A0';        
        color: var(--main-link-color, #45a8b4);
    }
.actions-list.form-fields li:before {
    content: '\25CF';
    color: #666;
}
.action-type {
    font-weight: 600;
} 
.action-date {
    
    margin-top: 8px;
    color: #888;
}
/* No content */
.no-content {
    border-radius: 50%;
    width: max-content;
    height: max-content;
    margin: auto;
    padding: 12px;    
}
.light-theme a, .light-theme span {
    margin: 0 4px 0 4px;
} .light-theme a:hover {
        background: #eee;
    }
/* show password */
input[type=checkbox].option__input {
    position: absolute;
    z-index: -1;
    opacity: 0;
}
/* Media Queries */
@media only screen and (max-width:1350px) {
    .side-icons {
        display: none;
        left: 12px;
    }

    .side-icons-min {
        display: block;
        vertical-align: middle;
    }

    .side-icons.show {
        display: block !important;
        bottom: 68px;
    }
} @media only screen and (max-width:1370px) {
    .welcome-inner {
        top: 10%;
    }

        .welcome-inner section .fa {
            font-size: 41px;
        }
} .btn-collapse {
    background: #fff url(../../interface/images/new/icons/menu/arrow-slideMenu.png) no-repeat center;
    /*margin: -94px auto 25px;*/
    display: block;
    padding: 1px 15px 30px;
    position: absolute;
    cursor: pointer;
    /* width: 50px;*/
    opacity: 0.8;
    transition: all .2s;
    border-radius: 50%;
    background-size: 42%;
    display: none;
} .btn-collapse:hover {
        opacity: 1;
    } .is-collapsed .btn-collapse {
    transform: rotate(-180deg);
} .is-collapsed .btn-collapse:hover {
        margin-left: 0px;
        margin-right: 0px;
    } .linkslist li.btn-new-li:hover, .masterlinks li.btn-new-li:hover > div {
    background-color: #0a0b0c;
} .linkslist li a.btn-new {
    background-color: var(--main-link-color, #45a8b4);
    border-radius: 3px;
    opacity: 1;
    padding: 0.3em 0.8em;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 3px solid transparent;
    box-shadow: none;
} 
  .linkslist li a.btn-new span {
        color: #fff;
    } .is-collapsed a.btn-new span {
    text-indent: -999999px;
} #mastersideinner:hover .btn-collapse {
    display: block;
} .is-collapsed .fixed-menu a.btn-new span {
    text-indent: unset;
} .is-collapsed .btn-new-li a.btn-new img {
    margin: 0 auto;
    max-width: 20px;
} .is-collapsed #masterside.fixed-menu a.btn-new img {
    margin: 0;
} .is-collapsed .masterlinks-inner > div {
    padding: 0;
    margin-right: 7px;
    margin-left: 7px;
} .is-collapsed .linkslist li a.btn-new {
    width: 32px;
    padding-right: 0;
    padding-left: 0;
    padding: 0.1em 0.2em;
    border-radius: 20px;
    /*max-height: 32px;*/
} .is-collapsed .fixed-menu .linkslist li a.btn-new {
    padding-right: 0.8em;
    padding-left: 0.8em;
    width: 100%;
    height: auto;
}
/* Create new div */
.create-new-div, .ul-filter {
    box-shadow: var(--ds-shadow-overlay, 0 4px 8px -2px rgba(9, 30, 66, 0.25), 0 0 1px rgba(9, 30, 66, 0.31));
    display: none;
    background-color: #fff;
    position: absolute;
    -webkit-transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out, -webkit-transform 0.3s cubic-bezier(0.47, 1.09, 0.65, 1.07);
    -moz-transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out, -moz-transform 0.3s cubic-bezier(0.47, 1.09, 0.65, 1.07);
    transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out, transform 0.3s cubic-bezier(0.47, 1.09, 0.65, 1.07);
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    z-index: 11003;
    border-radius: 6px;
} .create-new-div {
    width: 270px;
    top: 48px;
} .create-new-div .close {
        background-size: 63%;
    } .create-new-div section {
        padding: 13px 20px 9px;
    } .create-new-div.top-nav-menu section li, .create-new-div section li {
            opacity: 1;
            padding-right: 9px;
            padding-left: 9px;
            padding-bottom: 5px;
            padding-top: 3px;
        } .create-new-div.top-nav-menu section li:hover, .create-new-div section li:hover {
                background-color: #f4f4f4;
                border-radius: 4px;
            }
        .create-new-div.top-nav-menu section ul li a, .create-new-div section ul li a {
            opacity: 1;
            color: #111 !important;
            font-size: var(--font-size, inherit);            
        } 
       .create-new-div.show {
        display: block;
        visibility: visible;        
        opacity: 1;
        /*margin-top: 120px;*/
        overflow: visible;
    }
#mastersideinner #createNew.create-new-div.show {    
    top: 112px;
}
#mastersideinner .create-new-div.show {
    -webkit-transform: translate(198px, -34px);
    -moz-transform: translate(198px, -34px);
    transform: translate(198px, -34px);    
}
    .create-new-div.top-nav-menu section:not(:last-child), create-new-div section:not(:last-child) {
    border-bottom: 1px solid #d6d6d6;
} 
      .create-new-div.top-nav-menu section li .masterlinksarrow:after, section:not(:last-child) section li .masterlinksarrow:after {
        top: 4px;
        left: 208px;
        overflow: visible;
        opacity: 0.3;
    } .create-new-div.top-nav-menu section li:hover .masterlinksarrow:after, .create-new-div section li:hover .masterlinksarrow:after {
        opacity: 1;
    } .create-new-div.create-new-div-inner.show {
        -webkit-transform: translate(220px, -92px);
        -moz-transform: translate(220px, -92px);
        transform: translate(220px, -92px);
    } @media only screen and (max-height:660px) {
    .create-new-div:not(.create-new-div-inner).show {
        top: 42px;
    }
} .create-new-div ul li a, .create-new-div ul li a:not(.blueLink) {
    display: block;
}
/* Create new button on main pages */
.btn-add {
    position: relative;
    background: #fff;
    border: 1px solid var(--main-link-color, #45a8b4);
    height: 46px;
    width: 46px;
    border-radius: 50%;
    vertical-align: top;
    cursor: pointer;
    padding: 8px 6px;
}
/* Modal window */
.modalDialog {
    position: absolute;
    font-family: inherit;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1001;
    opacity: 0;
    pointer-events: none;
} .modalDialog:target {
        opacity: 1;
        pointer-events: auto;
        -webkit-transition: opacity 400ms ease-in;
        -moz-transition: opacity 400ms ease-in;
        transition: opacity 400ms ease-in;
    } .modalDialog > div {
        width: 720px;
        height: auto;
        position: relative;
        margin: 10% auto;
        padding: 7px 20px 18px 20px;
        border-radius: 6px;
        background: #fff;
        background: -moz-linear-gradient(#fff, #fff);
        background: -webkit-linear-gradient(#fff, #fff);
        background: -o-linear-gradient(#fff, #fff);
        -moz-transition: height 1s ease;
        -webkit-transition: height 1s ease;
        -o-transition: height 1s ease;
        transition: height 1s ease;
    } @media print {
    html {
        overflow: unset !important;
    }

    #masterside, .top-nav, .side-icons, .client-id, #masterbottom, .pointingMessageDivClass, .repoertAction, .hide-print, #upperPanel, #placeHolder {
        display: none !important;
    }

    #mastercontent {
        width: 100%;
        max-width: 100% !important;
        min-width: 90% !important;
        padding-right: 10px !important;
        padding-left: 10px !important;
        margin: 1em auto;
    }    

    .is-collapsed #mastercontent {
        width: 100%;
        min-width: 90%;
        max-width: 100%;
    }
} @media only screen and (max-width:1000px) {
    #mastercontent, .top-nav-inner {
        min-width: 100%;
    }
}
