@charset "UTF-8";
fieldset[disabled] .multiselect {
    pointer-events: none;
  }
.multiselect__spinner {
    position: absolute;
    right: 1px;
    top: 1px;
  width: 40px;
  height: 38px;
    background: #fff;
    display: block;
  }
.multiselect__spinner::before,
  .multiselect__spinner::after {
    position: absolute;
    content: "";
    top: 50%;
    left: 50%;
    margin: -8px 0 0 -8px;
    width: 16px;
    height: 16px;
    border-radius: 100%;
    border-color: #41b883 transparent transparent;
    border-style: solid;
    border-width: 2px;
    box-shadow: 0 0 0 1px transparent;
  }
.multiselect__spinner::before {
    animation: spinning 2.4s cubic-bezier(0.41, 0.26, 0.2, 0.62);
    animation-iteration-count: infinite;
  }
.multiselect__spinner::after {
    animation: spinning 2.4s cubic-bezier(0.51, 0.09, 0.21, 0.8);
    animation-iteration-count: infinite;
  }
.multiselect__loading-enter-active,
  .multiselect__loading-leave-active {
    transition: opacity 0.4s ease-in-out;
    opacity: 1;
  }
.multiselect__loading-enter,
  .multiselect__loading-leave-active {
    opacity: 0;
  }
.multiselect,
  .multiselect__input,
  .multiselect__single {
    font-family: inherit;
    font-size: 16px;
    touch-action: manipulation;
  }
.multiselect {
    box-sizing: content-box;
    display: block;
    position: relative;
    width: 100%;
    min-height: 40px;
    text-align: left;
    color: #35495e;
  }
.multiselect * {
    box-sizing: border-box;
  }
.multiselect:focus {
    outline: none;
  }
.multiselect--disabled {
    background: #ededed;
    pointer-events: none;
    opacity: 0.6;
  }
.multiselect--active {
    z-index: 50;
  }
.multiselect--active:not(.multiselect--above) .multiselect__current,
  .multiselect--active:not(.multiselect--above) .multiselect__input,
  .multiselect--active:not(.multiselect--above) .multiselect__tags {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
  }
.multiselect--active .multiselect__select {
    transform: rotateZ(180deg);
  }
.multiselect--above.multiselect--active .multiselect__current,
  .multiselect--above.multiselect--active .multiselect__input,
  .multiselect--above.multiselect--active .multiselect__tags {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
  }
.multiselect__input,
  .multiselect__single {
    position: relative;
    display: inline-block;
    min-height: 20px;
    line-height: 20px;
    border: none;
    border-radius: 5px;
    background: #fff;
    padding: 0 0 0 5px;
    width: calc(100%);
    transition: border 0.1s ease;
    box-sizing: border-box;
    margin-bottom: 8px;
    vertical-align: top;
  }
.multiselect__input::placeholder {
    color: #35495e;
  }
.multiselect__tag ~ .multiselect__input,
  .multiselect__tag ~ .multiselect__single {
    width: auto;
  }
.multiselect__input:hover,
  .multiselect__single:hover {
    border-color: #cfcfcf;
  }
.multiselect__input:focus,
  .multiselect__single:focus {
    border-color: #a8a8a8;
    outline: none;
  }
.multiselect__single {
    padding-left: 5px;
    margin-bottom: 8px;
  }
.multiselect__tags-wrap {
    display: inline;
  }
.multiselect__tags {
    min-height: 40px;
    display: block;
    padding: 8px 40px 0 8px;
    border-radius: 5px;
    border: 1px solid #e8e8e8;
    background: #fff;
    font-size: 14px;
  }
.multiselect__tag {
    position: relative;
    display: inline-block;
    padding: 4px 26px 4px 10px;
    border-radius: 5px;
    margin-right: 10px;
    color: #fff;
    line-height: 1;
    background: #41b883;
    margin-bottom: 5px;
    white-space: nowrap;
    overflow: hidden;
    max-width: 100%;
    text-overflow: ellipsis;
  }
.multiselect__tag-icon {
    cursor: pointer;
    margin-left: 7px;
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    font-weight: 700;
    font-style: initial;
    width: 22px;
    text-align: center;
    line-height: 22px;
    transition: all 0.2s ease;
    border-radius: 5px;
  }
.multiselect__tag-icon::after {
    content: "×";
    color: #266d4d;
    font-size: 14px;
  }
/* // Remove these lines to avoid green closing button
  //.multiselect__tag-icon:focus,
  //.multiselect__tag-icon:hover {
  //  background: #369a6e;
  //} */
.multiselect__tag-icon:focus::after,
  .multiselect__tag-icon:hover::after {
    color: white;
  }
.multiselect__current {
    line-height: 16px;
    min-height: 40px;
    box-sizing: border-box;
    display: block;
    overflow: hidden;
    padding: 8px 12px 0;
    padding-right: 30px;
    white-space: nowrap;
    margin: 0;
    text-decoration: none;
    border-radius: 5px;
    border: 1px solid #e8e8e8;
    cursor: pointer;
  }
.multiselect__select {
    line-height: 16px;
    display: block;
    position: absolute;
    box-sizing: border-box;
    width: 40px;
    height: 38px;
    right: 1px;
    top: 1px;
    padding: 4px 8px;
    margin: 0;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    transition: transform 0.2s ease;
  }
.multiselect__select::before {
    position: relative;
    right: 0;
    top: 65%;
    color: #999;
    margin-top: 4px;
    border-style: solid;
    border-width: 5px 5px 0 5px;
    border-color: #999 transparent transparent transparent;
    content: "";
  }
.multiselect__placeholder {
    color: #adadad;
    display: inline-block;
    margin-bottom: 10px;
    padding-top: 2px;
  }
.multiselect--active .multiselect__placeholder {
    display: none;
  }
.multiselect__content-wrapper {
    position: absolute;
    display: block;
    background: #fff;
    width: 100%;
    max-height: 240px;
    overflow: auto;
    border: 1px solid #e8e8e8;
    border-top: none;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
    z-index: 50;
    -webkit-overflow-scrolling: touch;
  }
.multiselect__content {
    list-style: none;
    display: inline-block;
    padding: 0;
    margin: 0;
    min-width: 100%;
    vertical-align: top;
  }
.multiselect--above .multiselect__content-wrapper {
    bottom: 100%;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    border-bottom: none;
    border-top: 1px solid #e8e8e8;
  }
.multiselect__content::-webkit-scrollbar {
    display: none;
  }
.multiselect__element {
    display: block;
  }
.multiselect__option {
    display: block;
    padding: 12px;
    min-height: 40px;
    line-height: 16px;
    text-decoration: none;
    text-transform: none;
    vertical-align: middle;
    position: relative;
    cursor: pointer;
    white-space: nowrap;
  }
.multiselect__option::after {
    top: 0;
    right: 0;
    position: absolute;
    line-height: 40px;
    padding-right: 12px;
    padding-left: 20px;
    font-size: 13px;
  }
.multiselect__option--highlight {
    background: #41b883;
    outline: none;
    color: white;
  }
.multiselect__option--highlight::after {
    content: attr(data-select);
    background: #41b883;
    color: white;
  }
.multiselect__option--selected {
    background: #f3f3f3;
    color: #35495e;
    font-weight: bold;
  }
.multiselect__option--selected::after {
    content: attr(data-selected);
    color: silver;
  background: inherit;
  }
.multiselect__option--selected.multiselect__option--highlight {
    background: #ff6a6a;
    color: #fff;
  }
.multiselect__option--selected.multiselect__option--highlight::after {
    background: #ff6a6a;
    content: attr(data-deselect);
    color: #fff;
  }
.multiselect--disabled .multiselect__current,
  .multiselect--disabled .multiselect__select {
    background: #ededed;
    color: #a6a6a6;
  }
.multiselect__option--disabled {
    background: #ededed !important;
    color: #a6a6a6 !important;
    cursor: text;
    pointer-events: none;
  }
.multiselect__option--group {
    background: #ededed;
    color: #35495e;
  }
.multiselect__option--group.multiselect__option--highlight {
    background: #35495e;
    color: #fff;
  }
.multiselect__option--group.multiselect__option--highlight::after {
    background: #35495e;
  }
.multiselect__option--disabled.multiselect__option--highlight {
    background: #dedede;
  }
.multiselect__option--group-selected.multiselect__option--highlight {
    background: #ff6a6a;
    color: #fff;
  }
.multiselect__option--group-selected.multiselect__option--highlight::after {
    background: #ff6a6a;
    content: attr(data-deselect);
    color: #fff;
  }
.multiselect-enter-active,
  .multiselect-leave-active {
    transition: all 0.15s ease;
  }
.multiselect-enter,
  .multiselect-leave-active {
    opacity: 0;
  }
.multiselect__strong {
    margin-bottom: 8px;
    line-height: 20px;
    display: inline-block;
    vertical-align: top;
  }
*[dir="rtl"] .multiselect {
    text-align: right;
  }
*[dir="rtl"] .multiselect__select {
    right: auto;
    left: 1px;
  }
*[dir="rtl"] .multiselect__tags {
    padding: 8px 8px 0 40px;
  }
*[dir="rtl"] .multiselect__content {
    text-align: right;
  }
*[dir="rtl"] .multiselect__option::after {
    right: auto;
    left: 0;
  }
*[dir="rtl"] .multiselect__clear {
    right: auto;
    left: 12px;
  }
*[dir="rtl"] .multiselect__spinner {
    right: auto;
    left: 1px;
  }
@keyframes spinning {
    from {
      transform: rotate(0);
    }

    to {
      transform: rotate(2turn);
    }
  }
@font-face {
  font-family: "Misettings";
  src: url("../fonts/icons.woff2?v=7.5.0") format("woff2"), url("../fonts/icons.woff?v=7.5.0") format("woff"), url("../fonts/icons.ttf?v=7.5.0") format("truetype"), url("../fonts/icons.otf?v=7.5.0") format("opentype");
  font-weight: 400;
  font-style: normal;
}
[class*=monstericon-]:before {
  display: inline-block;
  font-family: "Misettings";
  font-style: normal;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.monstericon-times-circle:before {
  content: "\f01b";
}
.monstericon-times:before {
  content: "\f021";
}
.monstericon-info-circle-regular:before {
  content: "\f01e";
}
.monstericon-arrow {
  transition: transform 500ms ease;
  transform: rotate(180deg);
  display: inline-block;
}
.monstericon-arrow.monstericon-down {
  transform: rotate(0);
}
.monstericon-arrow:before {
  content: "\f01f";
}
.monstericon-check:before {
  content: "\f015";
}
.monstericon-warning-triangle:before {
  content: "\f020";
}
.monstericon-star:before {
  content: "\f025";
}
.monstericon-files:before {
  content: "\f028";
}
.monstericon-search:before {
  content: "\f029";
}
.monstericon-user:before {
  content: "\f02a";
}
.monstericon-eye:before {
  content: "\f02b";
}
.monstericon-cog:before {
  content: "\f02c";
}
.monstericon-expand:before {
  content: "\f02d";
}
.monstericon-compress:before {
  content: "\f02f";
}
.monstericon-life-ring:before {
  content: "\f030";
}
.monstericon-wpbeginner:before {
  content: "\f031";
}
.monstericon-lightbulb:before {
  content: "\f032";
}
.monstericon-shopping-cart:before {
  content: "\f033";
}
.monstericon-calendar-alt:before {
  content: "\f04e";
}
.monstericon-long-arrow-right-light:before {
  content: "\f06a";
}
.monstericon-download:before {
  content: "F";
}
.monsterinsights-tooltip {
  display: block !important;
  z-index: 10000;
  max-width: 350px;
}
.monsterinsights-tooltip .monsterinsights-tooltip-inner {
  background: #5f6197;
  color: #fff;
  border-radius: 5px;
  padding: 16px 20px;
  font-size: 14px;
  font-family: "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
}
.monsterinsights-tooltip .monsterinsights-tooltip-inner a {
  color: #fff;
  font-weight: 700;
}
.monsterinsights-tooltip .monsterinsights-tooltip-arrow {
  width: 0;
  height: 0;
  border-style: solid;
  position: absolute;
  margin: 5px;
  border-color: #5f6197;
  z-index: 1;
}
.monsterinsights-tooltip[x-placement^=top] {
  padding-bottom: 5px;
}
.monsterinsights-tooltip[x-placement^=top] .monsterinsights-tooltip-arrow {
  border-width: 5px 5px 0 5px;
  border-left-color: transparent !important;
  border-right-color: transparent !important;
  border-bottom-color: transparent !important;
  bottom: 0;
  left: calc(50% - 5px);
  margin-top: 0;
  margin-bottom: 0;
}
.monsterinsights-tooltip[x-placement^=bottom] {
  padding-top: 5px;
}
.monsterinsights-tooltip[x-placement^=bottom] .monsterinsights-tooltip-arrow {
  border-width: 0 5px 5px 5px;
  border-left-color: transparent !important;
  border-right-color: transparent !important;
  border-top-color: transparent !important;
  top: 0;
  left: calc(50% - 5px);
  margin-top: 0;
  margin-bottom: 0;
}
.monsterinsights-tooltip[x-placement^=right] {
  padding-left: 5px;
}
.monsterinsights-tooltip[x-placement^=right] .monsterinsights-tooltip-arrow {
  border-width: 5px 5px 5px 0;
  border-left-color: transparent !important;
  border-top-color: transparent !important;
  border-bottom-color: transparent !important;
  left: 0px;
  top: calc(50% - 5px);
  margin-left: 0;
  margin-right: 0;
}
.monsterinsights-tooltip[x-placement^=left] {
  padding-right: 5px;
}
.monsterinsights-tooltip[x-placement^=left] .monsterinsights-tooltip-arrow {
  border-width: 5px 0 5px 5px;
  border-top-color: transparent !important;
  border-right-color: transparent !important;
  border-bottom-color: transparent !important;
  right: 0;
  top: calc(50% - 5px);
  margin-left: 0;
  margin-right: 0;
}
.monsterinsights-tooltip.popover .popover-inner {
  background: #fff;
  color: #5f6197;
  padding: 24px;
  border-radius: 5px;
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
}
.monsterinsights-tooltip.popover .popover-arrow {
  border-color: #fff;
}
.monsterinsights-tooltip[aria-hidden=true] {
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.15s, visibility 0.15s;
}
.monsterinsights-tooltip[aria-hidden=false] {
  visibility: visible;
  opacity: 1;
  transition: opacity 0.15s;
}
/*!
 * Generated with CSS Flag Sprite generator (https://www.flag-sprites.com/)
 */
.monsterinsights-flag {
  display: inline-block;
  width: 32px;
  height: 32px;
  background: url("../assets/flags-Ck9rBLLL.png") no-repeat;
}
.monsterinsights-flag.monsterinsights-flag-ad {
  background-position: -32px 0;
}
.monsterinsights-flag.monsterinsights-flag-ae {
  background-position: -64px 0;
}
.monsterinsights-flag.monsterinsights-flag-af {
  background-position: -96px 0;
}
.monsterinsights-flag.monsterinsights-flag-ag {
  background-position: -128px 0;
}
.monsterinsights-flag.monsterinsights-flag-ai {
  background-position: -160px 0;
}
.monsterinsights-flag.monsterinsights-flag-al {
  background-position: -192px 0;
}
.monsterinsights-flag.monsterinsights-flag-am {
  background-position: -224px 0;
}
.monsterinsights-flag.monsterinsights-flag-an {
  background-position: -256px 0;
}
.monsterinsights-flag.monsterinsights-flag-ao {
  background-position: -288px 0;
}
.monsterinsights-flag.monsterinsights-flag-ar {
  background-position: -320px 0;
}
.monsterinsights-flag.monsterinsights-flag-as {
  background-position: -352px 0;
}
.monsterinsights-flag.monsterinsights-flag-at {
  background-position: -384px 0;
}
.monsterinsights-flag.monsterinsights-flag-au {
  background-position: -416px 0;
}
.monsterinsights-flag.monsterinsights-flag-aw {
  background-position: -448px 0;
}
.monsterinsights-flag.monsterinsights-flag-ax {
  background-position: -480px 0;
}
.monsterinsights-flag.monsterinsights-flag-az {
  background-position: 0 -32px;
}
.monsterinsights-flag.monsterinsights-flag-ba {
  background-position: -32px -32px;
}
.monsterinsights-flag.monsterinsights-flag-bb {
  background-position: -64px -32px;
}
.monsterinsights-flag.monsterinsights-flag-bd {
  background-position: -96px -32px;
}
.monsterinsights-flag.monsterinsights-flag-be {
  background-position: -128px -32px;
}
.monsterinsights-flag.monsterinsights-flag-bf {
  background-position: -160px -32px;
}
.monsterinsights-flag.monsterinsights-flag-bg {
  background-position: -192px -32px;
}
.monsterinsights-flag.monsterinsights-flag-bh {
  background-position: -224px -32px;
}
.monsterinsights-flag.monsterinsights-flag-bi {
  background-position: -256px -32px;
}
.monsterinsights-flag.monsterinsights-flag-bj {
  background-position: -288px -32px;
}
.monsterinsights-flag.monsterinsights-flag-bl {
  background-position: -320px -32px;
}
.monsterinsights-flag.monsterinsights-flag-bm {
  background-position: -352px -32px;
}
.monsterinsights-flag.monsterinsights-flag-bn {
  background-position: -384px -32px;
}
.monsterinsights-flag.monsterinsights-flag-bo {
  background-position: -416px -32px;
}
.monsterinsights-flag.monsterinsights-flag-br {
  background-position: -448px -32px;
}
.monsterinsights-flag.monsterinsights-flag-bs {
  background-position: -480px -32px;
}
.monsterinsights-flag.monsterinsights-flag-bt {
  background-position: 0 -64px;
}
.monsterinsights-flag.monsterinsights-flag-bw {
  background-position: -32px -64px;
}
.monsterinsights-flag.monsterinsights-flag-by {
  background-position: -64px -64px;
}
.monsterinsights-flag.monsterinsights-flag-bz {
  background-position: -96px -64px;
}
.monsterinsights-flag.monsterinsights-flag-ca {
  background-position: -128px -64px;
}
.monsterinsights-flag.monsterinsights-flag-cd {
  background-position: -160px -64px;
}
.monsterinsights-flag.monsterinsights-flag-cf {
  background-position: -192px -64px;
}
.monsterinsights-flag.monsterinsights-flag-cg {
  background-position: -224px -64px;
}
.monsterinsights-flag.monsterinsights-flag-ch {
  background-position: -256px -64px;
}
.monsterinsights-flag.monsterinsights-flag-ci {
  background-position: -288px -64px;
}
.monsterinsights-flag.monsterinsights-flag-ck {
  background-position: -320px -64px;
}
.monsterinsights-flag.monsterinsights-flag-cl {
  background-position: -352px -64px;
}
.monsterinsights-flag.monsterinsights-flag-cm {
  background-position: -384px -64px;
}
.monsterinsights-flag.monsterinsights-flag-cn {
  background-position: -416px -64px;
}
.monsterinsights-flag.monsterinsights-flag-co {
  background-position: -448px -64px;
}
.monsterinsights-flag.monsterinsights-flag-cr {
  background-position: -480px -64px;
}
.monsterinsights-flag.monsterinsights-flag-cu {
  background-position: 0 -96px;
}
.monsterinsights-flag.monsterinsights-flag-cv {
  background-position: -32px -96px;
}
.monsterinsights-flag.monsterinsights-flag-cw {
  background-position: -64px -96px;
}
.monsterinsights-flag.monsterinsights-flag-cy {
  background-position: -96px -96px;
}
.monsterinsights-flag.monsterinsights-flag-cz {
  background-position: -128px -96px;
}
.monsterinsights-flag.monsterinsights-flag-de {
  background-position: -160px -96px;
}
.monsterinsights-flag.monsterinsights-flag-dj {
  background-position: -192px -96px;
}
.monsterinsights-flag.monsterinsights-flag-dk {
  background-position: -224px -96px;
}
.monsterinsights-flag.monsterinsights-flag-dm {
  background-position: -256px -96px;
}
.monsterinsights-flag.monsterinsights-flag-do {
  background-position: -288px -96px;
}
.monsterinsights-flag.monsterinsights-flag-dz {
  background-position: -320px -96px;
}
.monsterinsights-flag.monsterinsights-flag-ec {
  background-position: -352px -96px;
}
.monsterinsights-flag.monsterinsights-flag-ee {
  background-position: -384px -96px;
}
.monsterinsights-flag.monsterinsights-flag-eg {
  background-position: -416px -96px;
}
.monsterinsights-flag.monsterinsights-flag-eh {
  background-position: -448px -96px;
}
.monsterinsights-flag.monsterinsights-flag-er {
  background-position: -480px -96px;
}
.monsterinsights-flag.monsterinsights-flag-es {
  background-position: 0 -128px;
}
.monsterinsights-flag.monsterinsights-flag-et {
  background-position: -32px -128px;
}
.monsterinsights-flag.monsterinsights-flag-eu {
  background-position: -64px -128px;
}
.monsterinsights-flag.monsterinsights-flag-fi {
  background-position: -96px -128px;
}
.monsterinsights-flag.monsterinsights-flag-fj {
  background-position: -128px -128px;
}
.monsterinsights-flag.monsterinsights-flag-fk {
  background-position: -160px -128px;
}
.monsterinsights-flag.monsterinsights-flag-fm {
  background-position: -192px -128px;
}
.monsterinsights-flag.monsterinsights-flag-fo {
  background-position: -224px -128px;
}
.monsterinsights-flag.monsterinsights-flag-fr {
  background-position: -256px -128px;
}
.monsterinsights-flag.monsterinsights-flag-ga {
  background-position: -288px -128px;
}
.monsterinsights-flag.monsterinsights-flag-gb {
  background-position: -320px -128px;
}
.monsterinsights-flag.monsterinsights-flag-gd {
  background-position: -352px -128px;
}
.monsterinsights-flag.monsterinsights-flag-ge {
  background-position: -384px -128px;
}
.monsterinsights-flag.monsterinsights-flag-gg {
  background-position: -416px -128px;
}
.monsterinsights-flag.monsterinsights-flag-gh {
  background-position: -448px -128px;
}
.monsterinsights-flag.monsterinsights-flag-gi {
  background-position: -480px -128px;
}
.monsterinsights-flag.monsterinsights-flag-gl {
  background-position: 0 -160px;
}
.monsterinsights-flag.monsterinsights-flag-gm {
  background-position: -32px -160px;
}
.monsterinsights-flag.monsterinsights-flag-gn {
  background-position: -64px -160px;
}
.monsterinsights-flag.monsterinsights-flag-gp {
  background-position: -96px -160px;
}
.monsterinsights-flag.monsterinsights-flag-gq {
  background-position: -128px -160px;
}
.monsterinsights-flag.monsterinsights-flag-gr {
  background-position: -160px -160px;
}
.monsterinsights-flag.monsterinsights-flag-gs {
  background-position: -192px -160px;
}
.monsterinsights-flag.monsterinsights-flag-gt {
  background-position: -224px -160px;
}
.monsterinsights-flag.monsterinsights-flag-gu {
  background-position: -256px -160px;
}
.monsterinsights-flag.monsterinsights-flag-gw {
  background-position: -288px -160px;
}
.monsterinsights-flag.monsterinsights-flag-gy {
  background-position: -320px -160px;
}
.monsterinsights-flag.monsterinsights-flag-hk {
  background-position: -352px -160px;
}
.monsterinsights-flag.monsterinsights-flag-hn {
  background-position: -384px -160px;
}
.monsterinsights-flag.monsterinsights-flag-hr {
  background-position: -416px -160px;
}
.monsterinsights-flag.monsterinsights-flag-ht {
  background-position: -448px -160px;
}
.monsterinsights-flag.monsterinsights-flag-hu {
  background-position: -480px -160px;
}
.monsterinsights-flag.monsterinsights-flag-ic {
  background-position: 0 -192px;
}
.monsterinsights-flag.monsterinsights-flag-id {
  background-position: -32px -192px;
}
.monsterinsights-flag.monsterinsights-flag-ie {
  background-position: -64px -192px;
}
.monsterinsights-flag.monsterinsights-flag-il {
  background-position: -96px -192px;
}
[dir=rtl] .monsterinsights-flag.monsterinsights-flag-il {
  background-position: -96px -192px;
}
.monsterinsights-flag.monsterinsights-flag-im {
  background-position: -128px -192px;
}
.monsterinsights-flag.monsterinsights-flag-in {
  background-position: -160px -192px;
}
.monsterinsights-flag.monsterinsights-flag-iq {
  background-position: -192px -192px;
}
.monsterinsights-flag.monsterinsights-flag-ir {
  background-position: -224px -192px;
}
.monsterinsights-flag.monsterinsights-flag-is {
  background-position: -256px -192px;
}
.monsterinsights-flag.monsterinsights-flag-it {
  background-position: -288px -192px;
}
.monsterinsights-flag.monsterinsights-flag-je {
  background-position: -320px -192px;
}
.monsterinsights-flag.monsterinsights-flag-jm {
  background-position: -352px -192px;
}
.monsterinsights-flag.monsterinsights-flag-jo {
  background-position: -384px -192px;
}
.monsterinsights-flag.monsterinsights-flag-jp {
  background-position: -416px -192px;
}
.monsterinsights-flag.monsterinsights-flag-ke {
  background-position: -448px -192px;
}
.monsterinsights-flag.monsterinsights-flag-kg {
  background-position: -480px -192px;
}
.monsterinsights-flag.monsterinsights-flag-kh {
  background-position: 0 -224px;
}
.monsterinsights-flag.monsterinsights-flag-ki {
  background-position: -32px -224px;
}
.monsterinsights-flag.monsterinsights-flag-km {
  background-position: -64px -224px;
}
.monsterinsights-flag.monsterinsights-flag-kn {
  background-position: -96px -224px;
}
.monsterinsights-flag.monsterinsights-flag-kp {
  background-position: -128px -224px;
}
.monsterinsights-flag.monsterinsights-flag-kr {
  background-position: -160px -224px;
}
.monsterinsights-flag.monsterinsights-flag-kw {
  background-position: -192px -224px;
}
.monsterinsights-flag.monsterinsights-flag-ky {
  background-position: -224px -224px;
}
.monsterinsights-flag.monsterinsights-flag-kz {
  background-position: -256px -224px;
}
.monsterinsights-flag.monsterinsights-flag-la {
  background-position: -288px -224px;
}
.monsterinsights-flag.monsterinsights-flag-lb {
  background-position: -320px -224px;
}
.monsterinsights-flag.monsterinsights-flag-lc {
  background-position: -352px -224px;
}
.monsterinsights-flag.monsterinsights-flag-li {
  background-position: -384px -224px;
}
.monsterinsights-flag.monsterinsights-flag-lk {
  background-position: -416px -224px;
}
.monsterinsights-flag.monsterinsights-flag-lr {
  background-position: -448px -224px;
}
.monsterinsights-flag.monsterinsights-flag-ls {
  background-position: -480px -224px;
}
.monsterinsights-flag.monsterinsights-flag-lt {
  background-position: 0 -256px;
}
.monsterinsights-flag.monsterinsights-flag-lu {
  background-position: -32px -256px;
}
.monsterinsights-flag.monsterinsights-flag-lv {
  background-position: -64px -256px;
}
.monsterinsights-flag.monsterinsights-flag-ly {
  background-position: -96px -256px;
}
.monsterinsights-flag.monsterinsights-flag-ma {
  background-position: -128px -256px;
}
.monsterinsights-flag.monsterinsights-flag-mc {
  background-position: -160px -256px;
}
.monsterinsights-flag.monsterinsights-flag-md {
  background-position: -192px -256px;
}
.monsterinsights-flag.monsterinsights-flag-me {
  background-position: -224px -256px;
}
.monsterinsights-flag.monsterinsights-flag-mf {
  background-position: -256px -256px;
}
.monsterinsights-flag.monsterinsights-flag-mg {
  background-position: -288px -256px;
}
.monsterinsights-flag.monsterinsights-flag-mh {
  background-position: -320px -256px;
}
.monsterinsights-flag.monsterinsights-flag-mk {
  background-position: -352px -256px;
}
.monsterinsights-flag.monsterinsights-flag-ml {
  background-position: -384px -256px;
}
.monsterinsights-flag.monsterinsights-flag-mm {
  background-position: -416px -256px;
}
.monsterinsights-flag.monsterinsights-flag-mn {
  background-position: -448px -256px;
}
.monsterinsights-flag.monsterinsights-flag-mo {
  background-position: -480px -256px;
}
.monsterinsights-flag.monsterinsights-flag-mp {
  background-position: 0 -288px;
}
.monsterinsights-flag.monsterinsights-flag-mq {
  background-position: -32px -288px;
}
.monsterinsights-flag.monsterinsights-flag-mr {
  background-position: -64px -288px;
}
.monsterinsights-flag.monsterinsights-flag-ms {
  background-position: -96px -288px;
}
.monsterinsights-flag.monsterinsights-flag-mt {
  background-position: -128px -288px;
}
.monsterinsights-flag.monsterinsights-flag-mu {
  background-position: -160px -288px;
}
.monsterinsights-flag.monsterinsights-flag-mv {
  background-position: -192px -288px;
}
.monsterinsights-flag.monsterinsights-flag-mw {
  background-position: -224px -288px;
}
.monsterinsights-flag.monsterinsights-flag-mx {
  background-position: -256px -288px;
}
.monsterinsights-flag.monsterinsights-flag-my {
  background-position: -288px -288px;
}
.monsterinsights-flag.monsterinsights-flag-mz {
  background-position: -320px -288px;
}
.monsterinsights-flag.monsterinsights-flag-na {
  background-position: -352px -288px;
}
.monsterinsights-flag.monsterinsights-flag-nc {
  background-position: -384px -288px;
}
.monsterinsights-flag.monsterinsights-flag-ne {
  background-position: -416px -288px;
}
.monsterinsights-flag.monsterinsights-flag-nf {
  background-position: -448px -288px;
}
.monsterinsights-flag.monsterinsights-flag-ng {
  background-position: -480px -288px;
}
.monsterinsights-flag.monsterinsights-flag-ni {
  background-position: 0 -320px;
}
.monsterinsights-flag.monsterinsights-flag-nl {
  background-position: -32px -320px;
}
.monsterinsights-flag.monsterinsights-flag-no {
  background-position: -64px -320px;
}
.monsterinsights-flag.monsterinsights-flag-np {
  background-position: -96px -320px;
}
.monsterinsights-flag.monsterinsights-flag-nr {
  background-position: -128px -320px;
}
.monsterinsights-flag.monsterinsights-flag-nu {
  background-position: -160px -320px;
}
.monsterinsights-flag.monsterinsights-flag-nz {
  background-position: -192px -320px;
}
.monsterinsights-flag.monsterinsights-flag-om {
  background-position: -224px -320px;
}
.monsterinsights-flag.monsterinsights-flag-pa {
  background-position: -256px -320px;
}
.monsterinsights-flag.monsterinsights-flag-pe {
  background-position: -288px -320px;
}
.monsterinsights-flag.monsterinsights-flag-pf {
  background-position: -320px -320px;
}
.monsterinsights-flag.monsterinsights-flag-pg {
  background-position: -352px -320px;
}
.monsterinsights-flag.monsterinsights-flag-ph {
  background-position: -384px -320px;
}
.monsterinsights-flag.monsterinsights-flag-pk {
  background-position: -416px -320px;
}
.monsterinsights-flag.monsterinsights-flag-pl {
  background-position: -448px -320px;
}
.monsterinsights-flag.monsterinsights-flag-pn {
  background-position: -480px -320px;
}
.monsterinsights-flag.monsterinsights-flag-pr {
  background-position: 0 -352px;
}
.monsterinsights-flag.monsterinsights-flag-ps {
  background-position: -32px -352px;
}
.monsterinsights-flag.monsterinsights-flag-pt {
  background-position: -64px -352px;
}
.monsterinsights-flag.monsterinsights-flag-pw {
  background-position: -96px -352px;
}
.monsterinsights-flag.monsterinsights-flag-py {
  background-position: -128px -352px;
}
.monsterinsights-flag.monsterinsights-flag-qa {
  background-position: -160px -352px;
}
.monsterinsights-flag.monsterinsights-flag-re {
  background-position: -192px -352px;
}
.monsterinsights-flag.monsterinsights-flag-ro {
  background-position: -224px -352px;
}
.monsterinsights-flag.monsterinsights-flag-rs {
  background-position: -256px -352px;
}
.monsterinsights-flag.monsterinsights-flag-ru {
  background-position: -288px -352px;
}
.monsterinsights-flag.monsterinsights-flag-rw {
  background-position: -320px -352px;
}
.monsterinsights-flag.monsterinsights-flag-sa {
  background-position: -352px -352px;
}
.monsterinsights-flag.monsterinsights-flag-sb {
  background-position: -384px -352px;
}
.monsterinsights-flag.monsterinsights-flag-sc {
  background-position: -416px -352px;
}
.monsterinsights-flag.monsterinsights-flag-sd {
  background-position: -448px -352px;
}
.monsterinsights-flag.monsterinsights-flag-se {
  background-position: -480px -352px;
}
.monsterinsights-flag.monsterinsights-flag-sg {
  background-position: 0 -384px;
}
.monsterinsights-flag.monsterinsights-flag-sh {
  background-position: -32px -384px;
}
.monsterinsights-flag.monsterinsights-flag-si {
  background-position: -64px -384px;
}
.monsterinsights-flag.monsterinsights-flag-sk {
  background-position: -96px -384px;
}
.monsterinsights-flag.monsterinsights-flag-sl {
  background-position: -128px -384px;
}
.monsterinsights-flag.monsterinsights-flag-sm {
  background-position: -160px -384px;
}
.monsterinsights-flag.monsterinsights-flag-sn {
  background-position: -192px -384px;
}
.monsterinsights-flag.monsterinsights-flag-so {
  background-position: -224px -384px;
}
.monsterinsights-flag.monsterinsights-flag-sr {
  background-position: -256px -384px;
}
.monsterinsights-flag.monsterinsights-flag-ss {
  background-position: -288px -384px;
}
.monsterinsights-flag.monsterinsights-flag-st {
  background-position: -320px -384px;
}
.monsterinsights-flag.monsterinsights-flag-sv {
  background-position: -352px -384px;
}
.monsterinsights-flag.monsterinsights-flag-sy {
  background-position: -384px -384px;
}
.monsterinsights-flag.monsterinsights-flag-sz {
  background-position: -416px -384px;
}
.monsterinsights-flag.monsterinsights-flag-tc {
  background-position: -448px -384px;
}
.monsterinsights-flag.monsterinsights-flag-td {
  background-position: -480px -384px;
}
.monsterinsights-flag.monsterinsights-flag-tf {
  background-position: 0 -416px;
}
.monsterinsights-flag.monsterinsights-flag-tg {
  background-position: -32px -416px;
}
.monsterinsights-flag.monsterinsights-flag-th {
  background-position: -64px -416px;
}
.monsterinsights-flag.monsterinsights-flag-tj {
  background-position: -96px -416px;
}
.monsterinsights-flag.monsterinsights-flag-tk {
  background-position: -128px -416px;
}
.monsterinsights-flag.monsterinsights-flag-tl {
  background-position: -160px -416px;
}
.monsterinsights-flag.monsterinsights-flag-tm {
  background-position: -192px -416px;
}
.monsterinsights-flag.monsterinsights-flag-tn {
  background-position: -224px -416px;
}
.monsterinsights-flag.monsterinsights-flag-to {
  background-position: -256px -416px;
}
.monsterinsights-flag.monsterinsights-flag-tr {
  background-position: -288px -416px;
}
.monsterinsights-flag.monsterinsights-flag-tt {
  background-position: -320px -416px;
}
.monsterinsights-flag.monsterinsights-flag-tv {
  background-position: -352px -416px;
}
.monsterinsights-flag.monsterinsights-flag-tw {
  background-position: -384px -416px;
}
.monsterinsights-flag.monsterinsights-flag-tz {
  background-position: -416px -416px;
}
.monsterinsights-flag.monsterinsights-flag-ua {
  background-position: -448px -416px;
}
.monsterinsights-flag.monsterinsights-flag-ug {
  background-position: -480px -416px;
}
.monsterinsights-flag.monsterinsights-flag-us {
  background-position: 0 -448px;
}
.monsterinsights-flag.monsterinsights-flag-uy {
  background-position: -32px -448px;
}
.monsterinsights-flag.monsterinsights-flag-uz {
  background-position: -64px -448px;
}
.monsterinsights-flag.monsterinsights-flag-va {
  background-position: -96px -448px;
}
.monsterinsights-flag.monsterinsights-flag-vc {
  background-position: -128px -448px;
}
.monsterinsights-flag.monsterinsights-flag-ve {
  background-position: -160px -448px;
}
.monsterinsights-flag.monsterinsights-flag-vg {
  background-position: -192px -448px;
}
.monsterinsights-flag.monsterinsights-flag-vi {
  background-position: -224px -448px;
}
.monsterinsights-flag.monsterinsights-flag-vn {
  background-position: -256px -448px;
}
.monsterinsights-flag.monsterinsights-flag-vu {
  background-position: -288px -448px;
}
.monsterinsights-flag.monsterinsights-flag-wf {
  background-position: -320px -448px;
}
.monsterinsights-flag.monsterinsights-flag-ws {
  background-position: -352px -448px;
}
.monsterinsights-flag.monsterinsights-flag-ye {
  background-position: -384px -448px;
}
.monsterinsights-flag.monsterinsights-flag-yt {
  background-position: -416px -448px;
}
.monsterinsights-flag.monsterinsights-flag-za {
  background-position: -448px -448px;
}
.monsterinsights-flag.monsterinsights-flag-zm {
  background-position: -480px -448px;
}
.monsterinsights-flag.monsterinsights-flag-zw {
  background-position: 0 -480px;
}
.display-flex-important {
  display: flex !important;
}
.monsterinsights-report-year-in-review {
  margin-left: auto;
  margin-right: auto;
  max-width: 960px;
  margin-bottom: 90px;
  color: #111827;
  padding-top: 30px;
}
@media (max-width: 1072px) {
  .monsterinsights-report-year-in-review {
    margin-bottom: 10px;
  }
}
.monsterinsights-report-year-in-review .monsterinsights-yir-title.monsterinsights-yir-purple-title {
  display: flex;
  margin: 50px 0 20px;
  padding-bottom: 30px;
  border-bottom: 2px solid #F2F2F2;
  color: #6F4BBB;
  font-family: Lato;
  font-size: 36px;
  font-weight: 900;
  line-height: 38px;
  letter-spacing: 0em;
  text-align: left;
}
.monsterinsights-report-year-in-review .monsterinsights-yir-title:after, .monsterinsights-report-year-in-review .with-outbound-icon:after {
  margin-left: 10px;
}
.monsterinsights-report-year-in-review p {
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 24px;
}
.monsterinsights-report-year-in-review h2.monsterinsights-yir-title {
  font-family: Roboto;
  font-size: 32px;
  font-weight: 700;
  line-height: 44px;
  text-align: center;
  color: #393F4C;
}
.monsterinsights-report-year-in-review .monsterinsights-header {
  background-color: #FFFFFF;
  display: flex;
}
.monsterinsights-report-year-in-review .monsterinsights-yir-pdf-section {
  display: flex;
  justify-content: flex-end;
  padding-bottom: 20px;
}
.monsterinsights-report-year-in-review .monsterinsights-export-button {
  display: flex;
  align-items: center;
  gap: 6px;
}
.monsterinsights-report-year-in-review .monsterinsights-export-button svg {
  width: 20px;
  height: 20px;
}
.monsterinsights-report-year-in-review .monsterinsights-export-button .monsterinsights-yir-export-link {
  font-size: 15px;
  display: inline-block;
  text-decoration: none;
  font-weight: 700;
}
.monsterinsights-report-year-in-review .monsterinsights-logo-area {
  margin: 0 auto;
  display: none;
  justify-content: center;
  float: none;
}
.monsterinsights-report-year-in-review .monsterinsights-logo-area.display-flex-important {
  padding: 40px 20px 0 20px;
  display: flex;
}
.monsterinsights-report-year-in-review .monsterinsights-logo-area.display-flex-important img {
  width: 239px;
  height: auto;
}
.monsterinsights-report-year-in-review .monsterinsights-yir-top-header img {
  width: 100%;
  height: auto;
}
.monsterinsights-report-year-in-review .monsterinsights-yir-audience {
  margin: 0 60px 50px 60px;
  position: relative;
}
@media (max-width: 767px) {
  .monsterinsights-report-year-in-review .monsterinsights-yir-audience {
    margin: 0 15px;
    padding: 0;
  }
}
.monsterinsights-report-year-in-review .monsterinsights-yir-audience .monsterinsights-yir-summary strong {
  color: #338EEF;
}
.monsterinsights-report-year-in-review .monsterinsights-yir-audience .monsterinsights-yir-purple-title.monsterinsights-yir-title:after {
  content: "😍";
}
.monsterinsights-report-year-in-review .monsterinsights-yir-summary {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 400;
  font-size: 28px;
  line-height: 2;
  color: #393F4C;
}
.monsterinsights-report-year-in-review .monsterinsights-yir-summary strong {
  color: #393F4C;
  font-weight: 700;
}
.monsterinsights-report-year-in-review .monsterinsights-yir-thank-you {
  background-image: url("../assets/thankyou-bg-CXOBcxig.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center top;
  background-color: #6F4BBB;
  padding: 362px 60px 60px 60px;
  color: #FFFFFF;
}
.monsterinsights-report-year-in-review .monsterinsights-yir-thank-you .monsterinsights-yir-thankyou-summary {
  font-size: 20px;
  line-height: 1.4;
  text-align: center;
  color: #FFFFFF;
  font-weight: 400;
  margin: 0;
}
.monsterinsights-report-year-in-review .monsterinsights-yir-thank-you .monsterinsights-yir-thankyou-title {
  color: #FFFFFF;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.3;
  text-align: center;
  margin: 0 0 10px 0;
}
.monsterinsights-report-year-in-review .monsterinsights-yir-thank-you .monsterinsights-yir-dashboard-preview {
  width: 100%;
  height: 342px;
  position: relative;
  margin: 40px 0 50px 0;
  background-image: url("../assets/dashboard-preview-B7S76NX3.png");
  background-size: contain;
  background-position: center top;
  background-repeat: no-repeat;
}
.monsterinsights-report-year-in-review .monsterinsights-yir-thank-you .monsterinsights-yir-write-review {
  background: #FFFFFF;
  border-radius: 4px;
  width: 492px;
  margin: 0 auto;
  padding: 40px;
}
.monsterinsights-report-year-in-review .monsterinsights-yir-thank-you .monsterinsights-yir-write-review .monsterinsights-yir-content {
  text-align: center;
}
.monsterinsights-report-year-in-review .monsterinsights-yir-thank-you .monsterinsights-yir-write-review .monsterinsights-yir-content span {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.4;
  color: #6F4BBB;
}
.monsterinsights-report-year-in-review .monsterinsights-yir-thank-you .monsterinsights-yir-write-review .monsterinsights-yir-content h3 {
  font-size: 26px;
  font-weight: 700;
  line-height: 1.4;
  color: #393F4C;
  margin: 10px 0 0 0;
}
.monsterinsights-report-year-in-review .monsterinsights-yir-thank-you .monsterinsights-yir-write-review .monsterinsights-yir-rating {
  margin: 20px 0;
}
.monsterinsights-report-year-in-review .monsterinsights-yir-thank-you .monsterinsights-yir-write-review .monsterinsights-yir-rating .monsterinsights-yir-five-star {
  margin: 0;
  padding: 0;
  text-align: center;
}
.monsterinsights-report-year-in-review .monsterinsights-yir-thank-you .monsterinsights-yir-write-review .monsterinsights-yir-rating .monsterinsights-yir-five-star li {
  list-style: none;
  display: inline-block;
  margin: 0 7px 0 0;
}
.monsterinsights-report-year-in-review .monsterinsights-yir-thank-you .monsterinsights-yir-write-review .monsterinsights-yir-rating .monsterinsights-yir-five-star .monsterinsights-yir-five-star-icon {
  content: "";
  background-image: url("data:image/svg+xml,%3csvg%20width='29'%20height='28'%20viewBox='0%200%2029%2028'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cpath%20d='M14.5717%2022.1742L23.3267%2027.4584L21.0034%2017.4992L28.7384%2010.7984L18.5525%209.93425L14.5717%200.541748L10.5909%209.93425L0.405029%2010.7984L8.14003%2017.4992L5.8167%2027.4584L14.5717%2022.1742Z'%20fill='%23F2994A'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: center center;
  width: 28px;
  height: 28px;
}
.monsterinsights-report-year-in-review .monsterinsights-yir-thank-you .monsterinsights-yir-write-review .monsterinsights-yir-review-button {
  text-align: center;
}
.monsterinsights-report-year-in-review .monsterinsights-yir-thank-you .monsterinsights-yir-write-review .monsterinsights-yir-review-button a {
  background: #338EEF;
  border-radius: 4px;
  text-align: center;
  padding: 12px 60px;
  display: inline-block;
  color: #FFFFFF;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
}
.monsterinsights-report-year-in-review .monsterinsights-yir-thank-you .monsterinsights-yir-write-review .monsterinsights-yir-review-button a:hover, .monsterinsights-report-year-in-review .monsterinsights-yir-thank-you .monsterinsights-yir-write-review .monsterinsights-yir-review-button a:focus, .monsterinsights-report-year-in-review .monsterinsights-yir-thank-you .monsterinsights-yir-write-review .monsterinsights-yir-review-button a:active {
  background: #123C68;
}
.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-plugins-block {
  margin: 0;
  padding: 60px 0 40px 0;
}
.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-plugins-block .monsterinsights-yir-plugins-section-title {
  width: 600px;
  margin: 0 auto 30px auto;
  font-size: 36px;
  font-weight: 700;
  line-height: 1.3;
  text-align: center;
  color: #393F4C;
}
@media (max-width: 767px) {
  .monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-plugins-block .monsterinsights-yir-plugins-section-title {
    width: 100%;
  }
}
.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-plugins-block .monsterinsights-yir-plugins {
  display: flex;
  gap: 20px;
  flex-flow: wrap;
  overflow: hidden;
}
.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-plugins-block .monsterinsights-addon {
  width: 300px;
  border: 1px solid #DDDDDD;
  background-color: #FFFFFF;
  border-radius: 4px;
}
.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-plugins-block .monsterinsights-addon-top {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding: 12px;
  gap: 10px;
}
.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-plugins-block .monsterinsights-addon-top .monsterinsights-addon-text {
  display: flex;
  flex-direction: column;
}
.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-plugins-block .monsterinsights-addon-top .monsterinsights-addon-text .monsterinsights-addon-excerpt {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.3;
  margin: 0;
  color: #210F59;
  height: 73px;
  overflow: hidden;
}
.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-plugins-block .monsterinsights-addon-top .monsterinsights-addon-text .monsterinsights-addon-title {
  font-size: 15px;
  font-weight: 700;
  line-height: 1.2;
  color: #210F59;
  margin: 0 0 6px 0;
}
.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-plugins-block .monsterinsights-addon-image {
  width: 43px;
  height: 43px;
  border-radius: 2px;
  border: 1px solid #EFEFEF;
  display: flex;
  justify-content: center;
  align-items: center;
}
.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-plugins-block .monsterinsights-addon-image img {
  width: 42px;
  height: 42px;
  padding: 6px;
}
.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-plugins-block .monsterinsights-addon-message {
  border-top: 1px solid #DDDDDD;
  padding: 8px;
}
.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-plugins-block .monsterinsights-addon-status {
  display: none;
}
.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-plugins-block .monsterinsights-addon-action {
  text-align: right;
}
.monsterinsights-report-year-in-review .monsterinsights-yir-year-in-review-plugins-block .monsterinsights-addon-action .monsterinsights-button {
  background-color: #3C6DF1;
  padding: 4px 15px;
}
.monsterinsights-report-year-in-review .monsterinsights-yir-footer {
  text-align: center;
}
.monsterinsights-report-year-in-review .monsterinsights-yir-footer img {
  width: 260px;
  height: auto;
}
.monsterinsights-report-year-in-review .with-icon-map:after {
  content: url("data:image/svg+xml,%3csvg%20width='67'%20height='67'%20viewBox='0%200%2067%2067'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cpath%20d='M35.3182%200.708315C53.4066%201.71884%2067.3012%2017.2809%2066.2907%2035.4197C65.2802%2053.5081%2049.7182%2067.4028%2031.5793%2066.3417C13.491%2065.3312%20-0.403725%2049.7691%200.606796%2031.6303C1.66785%2013.5419%2017.1794%20-0.352733%2035.3182%200.708315Z'%20fill='%23D3E8EF'/%3e%3cpath%20d='M8.48922%2049.7697C5.1545%2044.6161%203.33556%2038.4014%203.68924%2031.7824C4.44713%2018.6962%2013.4913%208.03517%2025.466%204.75098C26.426%2016.0688%2027.4365%2027.1846%2028.4976%2038.6035C24.506%2040.2203%2014.1987%2045.374%208.48922%2049.7697Z'%20fill='white'/%3e%3cpath%20d='M35.824%204.34634C51.5881%205.25581%2063.6638%2018.7463%2062.7038%2034.5104C62.5522%2036.7336%2062.1986%2038.9062%2061.5923%2040.9272C61.6428%2040.4725%2061.6933%2040.0178%2061.6933%2039.5125C62.7038%2021.2221%2048.7586%205.55897%2030.4682%204.49792H30.3166C32.085%204.34634%2033.9545%204.24529%2035.824%204.34634Z'%20fill='white'/%3e%3cpath%20d='M61.592%2050.5273C60.9857%2051.5378%2060.3289%2052.4978%2059.6215%2053.4073L49.9205%2039.9673L27.588%2049.2641L14.6533%2022.5358L1.66808%2025.0116C2.02177%2023.799%202.37544%2022.5863%202.83018%2021.4242L16.4722%2018.7969L29.1543%2045.0199L50.9816%2035.9252L61.592%2050.5273Z'%20fill='%236F4BBB'/%3e%3cpath%20d='M50.88%2031.1762C47.1411%2030.9741%2043.9579%2033.8036%2043.7558%2037.5425C43.5537%2041.2814%2046.3832%2044.4646%2050.1221%2044.6667C53.861%2044.8688%2057.0442%2042.0393%2057.2463%2038.3004C57.4989%2034.612%2054.6189%2031.4288%2050.88%2031.1762Z'%20fill='%231EC185'/%3e%3cpath%20d='M28.8009%2040.4223C25.062%2040.2202%2021.8788%2043.0497%2021.6767%2046.7886C21.4746%2050.5275%2024.3041%2053.7107%2028.043%2053.9128C31.7819%2054.1149%2034.9651%2051.2854%2035.1672%2047.5465C35.4198%2043.8075%2032.5398%2040.6244%2028.8009%2040.4223Z'%20fill='%23FF893A'/%3e%3c/svg%3e");
}
.monsterinsights-report-year-in-review .with-icon-chart:after {
  content: url("data:image/svg+xml,%3csvg%20width='36'%20height='36'%20viewBox='0%200%2036%2036'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cpath%20d='M26.1667%203.56203C25.6804%203.56203%2025.2141%203.37439%2024.8703%203.04038C24.5265%202.70638%2024.3333%202.25337%2024.3333%201.78102C24.3333%201.30866%2024.5265%200.855652%2024.8703%200.521647C25.2141%200.187642%2025.6804%200%2026.1667%200H33.5C33.9862%200%2034.4525%200.187642%2034.7964%200.521647C35.1402%200.855652%2035.3333%201.30866%2035.3333%201.78102V8.90508C35.3333%209.37743%2035.1402%209.83044%2034.7964%2010.1644C34.4525%2010.4984%2033.9862%2010.6861%2033.5%2010.6861C33.0138%2010.6861%2032.5475%2010.4984%2032.2036%2010.1644C31.8598%209.83044%2031.6667%209.37743%2031.6667%208.90508V6.08039L21.0462%2016.3978C20.7024%2016.7317%2020.2361%2016.9193%2019.75%2016.9193C19.2639%2016.9193%2018.7976%2016.7317%2018.4538%2016.3978L13.3333%2011.4234L3.6295%2020.8503C3.28373%2021.1748%202.82062%2021.3543%202.33993%2021.3502C1.85924%2021.3462%201.39941%2021.1589%201.0595%2020.8286C0.719585%2020.4984%200.526775%2020.0517%200.522598%2019.5848C0.518421%2019.1178%200.70321%2018.6679%201.03717%2018.332L12.0372%207.6459C12.381%207.31201%2012.8472%207.12444%2013.3333%207.12444C13.8195%207.12444%2014.2857%207.31201%2014.6295%207.6459L19.75%2012.6203L29.0743%203.56203H26.1667ZM4.16667%2028.4962V33.8393C4.16667%2034.3116%203.97351%2034.7646%203.6297%2035.0987C3.28588%2035.4327%202.81956%2035.6203%202.33333%2035.6203C1.8471%2035.6203%201.38079%2035.4327%201.03697%2035.0987C0.693154%2034.7646%200.5%2034.3116%200.5%2033.8393V28.4962C0.5%2028.0239%200.693154%2027.5709%201.03697%2027.2369C1.38079%2026.9029%201.8471%2026.7152%202.33333%2026.7152C2.81956%2026.7152%203.28588%2026.9029%203.6297%2027.2369C3.97351%2027.5709%204.16667%2028.0239%204.16667%2028.4962ZM13.3333%2021.3722C13.3333%2020.8998%2013.1402%2020.4468%2012.7964%2020.1128C12.4525%2019.7788%2011.9862%2019.5912%2011.5%2019.5912C11.0138%2019.5912%2010.5475%2019.7788%2010.2036%2020.1128C9.85982%2020.4468%209.66667%2020.8998%209.66667%2021.3722V33.8393C9.66667%2034.3116%209.85982%2034.7646%2010.2036%2035.0987C10.5475%2035.4327%2011.0138%2035.6203%2011.5%2035.6203C11.9862%2035.6203%2012.4525%2035.4327%2012.7964%2035.0987C13.1402%2034.7646%2013.3333%2034.3116%2013.3333%2033.8393V21.3722ZM20.6667%2023.1532C21.1529%2023.1532%2021.6192%2023.3408%2021.963%2023.6748C22.3068%2024.0088%2022.5%2024.4619%2022.5%2024.9342V33.8393C22.5%2034.3116%2022.3068%2034.7646%2021.963%2035.0987C21.6192%2035.4327%2021.1529%2035.6203%2020.6667%2035.6203C20.1804%2035.6203%2019.7141%2035.4327%2019.3703%2035.0987C19.0265%2034.7646%2018.8333%2034.3116%2018.8333%2033.8393V24.9342C18.8333%2024.4619%2019.0265%2024.0088%2019.3703%2023.6748C19.7141%2023.3408%2020.1804%2023.1532%2020.6667%2023.1532ZM31.6667%2016.0291C31.6667%2015.5568%2031.4735%2015.1038%2031.1297%2014.7698C30.7859%2014.4358%2030.3196%2014.2481%2029.8333%2014.2481C29.3471%2014.2481%2028.8808%2014.4358%2028.537%2014.7698C28.1932%2015.1038%2028%2015.5568%2028%2016.0291V33.8393C28%2034.3116%2028.1932%2034.7646%2028.537%2035.0987C28.8808%2035.4327%2029.3471%2035.6203%2029.8333%2035.6203C30.3196%2035.6203%2030.7859%2035.4327%2031.1297%2035.0987C31.4735%2034.7646%2031.6667%2034.3116%2031.6667%2033.8393V16.0291Z'%20fill='%236F4BBB'/%3e%3c/svg%3e");
  background: #ffffff;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}
.monsterinsights-report-year-in-review .monsterinsights-yir-report-calculating {
  margin: 50px 0;
  background-image: url("../assets/yir-mi-hero-DPm5eoml.svg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: right bottom;
  height: 400px;
  padding: 50px;
}
.monsterinsights-report-year-in-review .monsterinsights-yir-report-calculating .monsterinsights-yir-summary {
  font-size: 20px;
  line-height: 1.5;
  color: #FFFFFF;
  margin: 0;
}
.monsterinsights-report-year-in-review .monsterinsights-yir-report-calculating .monsterinsights-navigation-tab-link {
  color: #FFFFFF;
}
/* 2025 changes */
.monsterinsights-report-year-in-review * {
  font-family: "DM Sans", sans-serif;
}
.monsterinsights-yir-section-padding {
  padding: 60px 0;
}
.monsterinsights-yir-annual-summary {
  box-shadow: 0px 16px 32px 8px rgba(220, 224, 238, 0.5019607843);
  border-radius: 12px;
  background-color: #FFFFFF;
  padding: 60px 70px;
  margin-bottom: 40px;
}
.monsterinsights-yir-annual-summary-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.monsterinsights-yir-annual-summary-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 40px;
}
@media (max-width: 991px) {
  .monsterinsights-yir-annual-summary-grid {
    grid-template-columns: 1fr;
  }
}
.monsterinsights-yir-annual-summary-card {
  padding: 24px;
  border-radius: 8px;
  background-color: #F4EDFF;
  display: flex;
  line-height: 1;
}
.monsterinsights-yir-annual-summary-card .monsterinsights-yir-annual-summary-icon {
  margin-right: 16px;
}
.monsterinsights-yir-annual-summary-card .monsterinsights-yir-annual-summary-label {
  font-size: 16px;
  line-height: 1.2;
  color: #111827;
}
.monsterinsights-yir-annual-summary-card .monsterinsights-yir-annual-summary-value {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.2;
  color: #111827;
  text-transform: uppercase;
}
.monsterinsights-yir-annual-summary-card.is-blue {
  background: #E8F0FF;
}
.monsterinsights-yir-annual-summary-card.is-seafoam {
  background: #E4FAF1;
}
.monsterinsights-yir-annual-summary-card.is-rose {
  background: #FFEAF0;
}
h2.monsterinsights-yir-section-title {
  font-weight: 700;
  font-size: 32px;
  line-height: 1.25;
  text-align: center;
  text-transform: uppercase;
  color: #222222;
  margin: 0 0 10px 0;
}
h2.monsterinsights-yir-section-title span {
  margin: 0 10px;
}
p.monsterinsights-yir-section-subtitle {
  font-weight: 400;
  font-size: 20px;
  line-height: 28px;
  text-align: center;
  color: #393E4B;
  margin: 0 0 35px 0;
}
.monsterinsights-yir-visitors-by-month {
  box-shadow: 0px 16px 32px 8px rgba(220, 224, 238, 0.5019607843);
  border-radius: 12px;
  background-color: #FFFFFF;
  padding: 60px 45px 40px 45px;
  margin-bottom: 40px;
}
.monsterinsights-yir-demographics-summary {
  box-shadow: 0px 16px 32px 8px rgba(220, 224, 238, 0.5019607843);
  border-radius: 12px;
  background-color: #FFFFFF;
  padding: 60px 45px;
}
.monsterinsights-yir-demographics-summary-visitors-wrapper {
  position: relative;
  margin-bottom: 35px;
}
.monsterinsights-yir-demographics-summary-visitors-inner {
  border: 1px solid #DCE0EE;
  border-radius: 12px;
  padding: 8px;
  max-width: 570px;
}
.monsterinsights-yir-demographics-summary-visitors-inner-row {
  display: flex;
  padding: 20px 40px;
  color: #19121C;
}
.monsterinsights-yir-demographics-summary-visitors-inner-row.is-green {
  background-color: #2EB188;
  border-radius: 8px;
  color: #fff;
}
.monsterinsights-yir-demographics-summary-visitors-inner-item {
  flex: 1;
  display: flex;
  line-height: 1;
  align-items: center;
}
.monsterinsights-yir-demographics-summary-visitors-icon {
  margin-right: 12px;
  line-height: 1;
  font-size: 0;
}
.monsterinsights-yir-demographics-summary-visitors-label {
  font-size: 16px;
}
.monsterinsights-yir-demographics-summary-visitors-value {
  font-size: 24px;
  font-weight: 700;
}
.monsterinsights-yir-demographics-summary-visitors-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 48px;
}
.monsterinsights-yir-demographics-charlie {
  position: absolute;
  bottom: -35px;
  right: -20px;
  width: 205px;
  height: 200px;
  background-size: contain;
  background-repeat: no-repeat;
}
.monsterinsights-yir-big-table {
  border-radius: 8px;
  background-color: #F3F5F7;
  overflow: hidden;
  margin-bottom: 32px;
}
.monsterinsights-yir-big-table h3 {
  background-color: #338EEF;
  font-weight: 700;
  font-size: 24px;
  line-height: 1.6;
  text-align: center;
  text-transform: uppercase;
  color: #FFFFFF;
  margin: 0;
  padding: 5px 0;
}
.monsterinsights-yir-big-table-wrapper {
  padding: 30px 40px;
}
.monsterinsights-yir-big-table-header {
  display: flex;
  margin-bottom: 12px;
}
.monsterinsights-yir-big-table-header .monsterinsights-yir-big-table-first-column {
  padding-left: 10px;
}
.monsterinsights-yir-big-table-header .monsterinsights-yir-big-table-last-column {
  padding-right: 24px;
}
.monsterinsights-yir-big-table-column {
  font-size: 14px;
  line-height: 1.2;
  color: #111827;
}
.monsterinsights-yir-big-table-column a {
  color: #111827;
  text-decoration: none;
}
.monsterinsights-yir-big-table-first-column {
  flex-basis: 50%;
  padding-right: 10px;
}
.monsterinsights-yir-big-table-middle-column {
  flex-basis: 25%;
}
.monsterinsights-yir-big-table-last-column {
  text-align: right;
  flex-basis: 25%;
}
.monsterinsights-yir-big-table-row {
  display: flex;
  margin-bottom: 12px;
  border-radius: 12px;
  padding: 22px 24px;
  background-color: #FFFFFF;
  box-shadow: 0px 16px 32px 8px rgba(220, 224, 238, 0.5019607843);
}
.monsterinsights-yir-big-table-row .monsterinsights-yir-big-table-column {
  font-size: 20px;
}
.monsterinsights-yir-big-table-row-count {
  margin-right: 15px;
}
.monsterinsights-yir-big-table.monsterinsights-yir-big-table-2-columns .monsterinsights-yir-big-table-first-column {
  flex-basis: 75%;
}
.monsterinsights-yir-demographics-summary-row-2-columns {
  display: flex;
  gap: 30px;
  margin-bottom: 32px;
}
.monsterinsights-yir-demographics-summary-row-2-columns .monsterinsights-yir-small-table {
  flex: 1;
}
.monsterinsights-yir-small-table {
  border-radius: 8px;
  background-color: #F3F5F7;
  overflow: hidden;
}
.monsterinsights-yir-small-table h3 {
  background-color: #338EEF;
  font-weight: 700;
  font-size: 19px;
  line-height: 1.5;
  text-transform: uppercase;
  color: #FFFFFF;
  margin: 0;
  padding: 5px 24px;
}
.monsterinsights-yir-small-table-wrapper {
  padding: 24px;
}
.monsterinsights-yir-small-table-header {
  display: flex;
  margin-bottom: 15px;
}
.monsterinsights-yir-small-table-column {
  font-size: 14px;
  line-height: 1.2;
  color: #111827;
}
.monsterinsights-yir-small-table-first-column {
  flex-basis: 70%;
}
.monsterinsights-yir-small-table-last-column {
  text-align: right;
  flex-basis: 30%;
}
.monsterinsights-yir-small-table-row {
  display: flex;
}
.monsterinsights-yir-small-table-row + .monsterinsights-yir-small-table-row {
  margin-top: 27px;
}
.monsterinsights-yir-small-table-row .monsterinsights-yir-small-table-column {
  font-size: 16px;
}
.monsterinsights-yir-small-table-row-count {
  margin-right: 10px;
}
.monsterinsights-yir-demographics-summary-row-3-columns {
  display: flex;
  gap: 23px;
}
.monsterinsights-yir-demographics-summary-card {
  border: 1px solid #DCE0EE;
  border-radius: 8px;
  padding: 20px 24px;
  flex: 1;
}
p.monsterinsights-yir-demographics-summary-card-text {
  font-weight: 400;
  font-size: 16px;
  line-height: 1.3;
  margin: 0;
}
p.monsterinsights-yir-demographics-summary-card-value {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.3;
  margin: 0;
  padding: 10px 0;
}
.monsterinsights-yir-devices-summary {
  background-color: #FFFFFF;
  padding: 60px 80px;
}
.monsterinsights-yir-top-device-card {
  background-color: #2EB188;
  padding: 25px 52px;
  border-radius: 16px;
  display: flex;
  gap: 32px;
  align-items: center;
  line-height: 1;
  margin-bottom: 40px;
  position: relative;
}
.monsterinsights-yir-top-device-card:before {
  content: url("../assets/devices-summary-left-icon-gX_b0Ok3.svg");
  background-size: contain;
  position: absolute;
  left: -15px;
  top: -44px;
}
.monsterinsights-yir-top-device-card:after {
  content: url("../assets/devices-summary-right-icon-BoEqE0Bn.svg");
  background-size: contain;
  position: absolute;
  right: -25px;
  bottom: -27px;
}
.monsterinsights-yir-top-device-card-content {
  color: #FFFFFF;
}
p.monsterinsights-yir-top-device-card-title {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 7px 0;
}
p.monsterinsights-yir-top-device-card-subtitle {
  font-size: 16px;
  line-height: 1.2;
  margin: 0;
}
.monsterinsights-yir-all-devices-card {
  display: flex;
  gap: 25px;
}
.monsterinsights-yir-single-devices-card-item {
  flex: 1;
  border-radius: 12px;
  padding: 24px;
  border: 1px solid #DADADA;
  display: flex;
  align-items: center;
}
.monsterinsights-yir-single-devices-card-icon {
  margin-right: 17px;
}
p.monsterinsights-yir-single-devices-card-value {
  font-size: 48px;
  margin: 0;
  line-height: 1.2;
  font-weight: 700;
}
p.monsterinsights-yir-single-devices-card-title {
  font-size: 20px;
  margin: 0 0 5px 0;
  line-height: 1.2;
}
.monsterinsights-yir-behavior-summary-section {
  background-image: url("../assets/behavior-section-bg-C1O08P4E.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  padding: 60px 80px;
  background-color: #5F3EA7;
  margin-bottom: 50px;
}
.monsterinsights-yir-behavior-summary-box {
  border-radius: 12px;
  padding: 40px 32px 32px 32px;
  background-color: #FFFFFF;
  box-shadow: 0px 16px 32px 8px #4E2E94;
}
.monsterinsights-yir-behavior-summary-overview-card {
  display: flex;
  gap: 48px;
  padding: 25px 30px 25px 180px;
  background-color: #2EB188;
  border-radius: 16px;
  position: relative;
  margin-bottom: 30px;
}
.monsterinsights-yir-behavior-summary-overview-card:before {
  content: "";
  background-image: url("../assets/behavior-funnel-Bqu0VQSD.png");
  background-size: contain;
  position: absolute;
  left: 0;
  top: 44%;
  transform: translateY(-50%);
  width: 173px;
  height: 173px;
}
.monsterinsights-yir-behavior-summary-overview-card-value {
  font-weight: 700;
  font-size: 32px;
  line-height: 1.2;
  color: #FFFFFF;
  margin-bottom: 6px;
}
.monsterinsights-yir-behavior-summary-overview-card-text {
  font-size: 16px;
  line-height: 1.2;
  color: #FFFFFF;
}
.monsterinsights-yir-ecommerce-summary {
  background-color: #FFFFFF;
  padding: 40px 32px 32px 32px;
  box-shadow: 0px 16px 32px 8px rgba(220, 224, 238, 0.5019607843);
  border-radius: 12px;
  margin-bottom: 50px;
  position: relative;
}
.monsterinsights-yir-ecommerce-summary:before {
  content: "";
  background-image: url("../assets/ecommerce-cart-image-Ci8PdgXd.svg");
  background-size: contain;
  position: absolute;
  right: -41px;
  top: 10px;
  width: 227px;
  height: 143px;
}
.monsterinsights-yir-ecommerce-summary .monsterinsights-yir-big-table-first-column {
  flex-basis: 62%;
  width: 62%;
  display: flex;
}
.monsterinsights-yir-ecommerce-summary .monsterinsights-yir-big-table-middle-column {
  flex-basis: 18%;
}
.monsterinsights-yir-ecommerce-summary .monsterinsights-yir-big-table-last-column {
  flex-basis: 20%;
}
.monsterinsights-yir-ecommerce-summary .monsterinsights-yir-big-table {
  margin-bottom: 0;
}
.monsterinsights-yir-product-sales-by-month-chart {
  margin-bottom: 40px;
}
.monsterinsights-yir-big-table-product-name {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: block;
}
.monsterinsights-yir-ecommerce-summary-cards {
  background-color: #E4FFF0;
  padding: 24px;
  border-radius: 8px;
  margin-bottom: 50px;
}
.monsterinsights-yir-ecommerce-summary-top-cards {
  display: flex;
  gap: 32px;
  margin-bottom: 32px;
}
.monsterinsights-yir-ecommerce-summary-top-card {
  flex: 1;
  border: 1px solid #DADADA;
  border-radius: 12px;
  padding: 24px;
  background-color: #FFFFFF;
}
.monsterinsights-yir-ecommerce-summary-top-card h3 {
  font-size: 48px;
  margin: 0 0 8px 0;
  font-weight: 700;
  color: #1EC185;
  line-height: 1.2;
}
.monsterinsights-yir-ecommerce-summary-top-card h4 {
  font-size: 28px;
  margin: 0 0 8px 0;
  font-weight: 700;
  line-height: 1.2;
}
p.monsterinsights-yir-ecommerce-summary-top-card-title {
  font-size: 20px;
  margin: 0 0 10px 0;
  line-height: 1.2;
  display: flex;
  align-items: center;
  gap: 12px;
}
p.monsterinsights-yir-ecommerce-summary-top-card-subtitle {
  font-size: 20px;
  margin: 0;
  line-height: 1.2;
}
p.monsterinsights-yir-ecommerce-summary-top-card-subtitle strong {
  margin-right: 5px;
}
.monsterinsights-yir-ecommerce-summary-bottom-cards {
  display: flex;
  gap: 22px;
}
.monsterinsights-yir-ecommerce-summary-bottom-card {
  flex: 1;
  border: 1px solid #DADADA;
  border-radius: 12px;
  padding: 21px;
  background-color: #FFFFFF;
}
p.monsterinsights-yir-ecommerce-summary-bottom-card-title {
  font-size: 19px;
  margin: 0 0 8px 0;
  line-height: 1.2;
}
p.monsterinsights-yir-ecommerce-summary-bottom-card-value {
  font-size: 46px;
  margin: 0;
  font-weight: 700;
  line-height: 1.2;
}
.monsterinsights-yir-ecommerce-summary-coupons {
  display: flex;
  gap: 35px;
  margin-top: 32px;
}
.monsterinsights-yir-ecommerce-summary-coupons-card {
  width: calc(50% - 19px);
  flex-shrink: 0;
  border: 1px solid #DADADA;
  border-radius: 12px;
  padding: 24px;
  background-color: #FFFFFF;
  display: flex;
  align-items: center;
}
.monsterinsights-yir-ecommerce-summary-coupons-card-icon {
  margin-right: 17px;
}
.monsterinsights-yir-ecommerce-summary-coupons-card-content {
  overflow: hidden;
}
p.monsterinsights-yir-ecommerce-summary-coupons-card-value {
  font-size: 42px;
  margin: 0;
  font-weight: 700;
  line-height: 1.2;
  overflow: hidden;
  text-overflow: ellipsis;
}
p.monsterinsights-yir-ecommerce-summary-coupons-card-title {
  font-size: 20px;
  margin: 0 0 8px 0;
  line-height: 1.2;
}
.monsterinsights-yir-form-insights {
  background-color: #FFFFFF;
  padding: 40px 32px 32px 32px;
  box-shadow: 0px 16px 32px 8px rgba(220, 224, 238, 0.5019607843);
  border-radius: 12px;
  margin-bottom: 50px;
}
.monsterinsights-yir-form-insights-bar {
  display: flex;
  align-items: center;
  gap: 48px;
  background-color: #2EB188;
  border-radius: 16px;
  padding: 30px 30px 30px 220px;
  position: relative;
  margin-bottom: 60px;
}
.monsterinsights-yir-form-insights-bar:before {
  content: url("../assets/form-insights-bar-left-icon-CYSAcDYA.svg");
  background-size: contain;
  position: absolute;
  left: 0;
  top: 0;
}
.monsterinsights-yir-form-insights-bar-item {
  flex: 1;
}
p.monsterinsights-yir-form-insights-bar-item-title {
  font-size: 16px;
  line-height: 1.2;
  color: #FFFFFF;
  margin: 0;
}
p.monsterinsights-yir-form-insights-bar-item-value {
  font-size: 32px;
  margin: 0 0 8px 0;
  font-weight: 700;
  line-height: 1.2;
  color: #FFFFFF;
}
.monsterinsights-yir-form-insights-cards {
  display: flex;
  gap: 30px;
  margin-top: 30px;
}
.monsterinsights-yir-form-insights-card {
  flex: 1;
  border: 1px solid #DADADA;
  border-radius: 12px;
  padding: 24px;
  background-color: #FFFFFF;
}
.monsterinsights-yir-form-insights-card-title {
  font-size: 20px;
  line-height: 1.2;
  margin: 0 0 8px 0;
}
.monsterinsights-yir-form-insights-card-value {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
}
.monsterinsights-yir-google-performance-insights {
  background-color: #FFFFFF;
  padding: 40px 32px 32px 32px;
  box-shadow: 0px 16px 32px 8px rgba(220, 224, 238, 0.5019607843);
  border-radius: 12px;
}
.monsterinsights-yir-google-performance-insights .monsterinsights-yir-big-table {
  margin: 40px 0 0 0;
}
.monsterinsights-yir-google-performance-bar {
  background-color: #2EB188;
  border-radius: 16px;
  padding: 30px 30px 30px 270px;
  position: relative;
  display: flex;
  gap: 10px;
  margin-bottom: 60px;
}
.monsterinsights-yir-google-performance-bar:before {
  content: "";
  background-image: url("../assets/google-performance-bar-left-icon-7ZPbul8K.svg");
  background-size: contain;
  position: absolute;
  width: 247px;
  height: 158px;
  left: 0;
  top: -12px;
}
.monsterinsights-yir-google-performance-bar-item {
  flex: 1;
}
.monsterinsights-yir-google-performance-bar-item-value {
  font-size: 32px;
  margin: 0 0 6px 0;
  font-weight: 700;
  line-height: 1.2;
  color: #FFFFFF;
}
.monsterinsights-yir-google-performance-bar-item-title {
  font-size: 16px;
  line-height: 1.2;
  color: #FFFFFF;
}
.monsterinsights-yir-google-performance-impressions-extremes p.monsterinsights-yir-ecommerce-summary-coupons-card-value {
  font-size: 38px;
}
/* End of 2025 changes */
.monsterinsights-report-site-speed .monsterinsights-site-speed-blur {
  width: 100%;
  padding-top: 70%;
  background-image: url("../assets/site-speed-blur-DoVih4Q8.png");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
@media screen and (max-width: 767px) {
  .monsterinsights-report-site-speed .monsterinsights-report-top {
    display: flex;
  }
}
.monsterinsights-report-site-speed .monsterinsights-report-top h2.monsterinsights-report-top-title {
  margin-top: 10px;
}
.monsterinsights-report-site-speed .monsterinsights-report-top .monsterinsights-export-pdf-report {
  margin-right: 16px;
}
@media screen and (max-width: 767px) {
  .monsterinsights-report-site-speed .monsterinsights-report-top .monsterinsights-export-pdf-report {
    margin-right: 0;
    margin-left: 15px;
  }
}
.monsterinsights-report-site-speed .monsterinsights-report-top .monsterinsights-export-pdf-report button {
  background-color: #f5f5f5;
  color: #4c6577;
  border-color: #dcdcdc;
}
@media screen and (max-width: 767px) {
  .monsterinsights-report-site-speed .monsterinsights-report-top .monsterinsights-run-audit-btn {
    margin-left: 5px;
  }
}
.monsterinsights-report-site-speed .monsterinsights-report-top .monsterinsights-run-audit-btn .monsterinsights-run-audit {
  background-color: #3990ec;
  height: 39px;
}
.monsterinsights-report-site-speed .monsterinsights-report-top .monsterinsights-run-audit-btn .monsterinsights-run-audit:hover {
  background-color: rgba(57, 144, 236, 0.8);
}
.monsterinsights-report-site-speed .monsterinsights-choose-device-button {
  margin-left: 15px;
}
@media screen and (max-width: 767px) {
  .monsterinsights-report-site-speed .monsterinsights-choose-device-button {
    margin-left: 0;
  }
}
.monsterinsights-report-site-speed .monsterinsights-choose-device-button button {
  display: inline-block;
  text-align: center;
  background-color: #f5f5f5;
  color: #444;
  border-color: #dcdcdc;
  border-radius: 5px;
  outline: none;
}
.monsterinsights-report-site-speed .monsterinsights-choose-device-button button:hover {
  background-color: #3990ec;
  border-color: #1c77db;
  outline: none;
}
.monsterinsights-report-site-speed .monsterinsights-choose-device-button button:hover .svg-icons {
  fill: #ffffff;
}
.monsterinsights-report-site-speed .monsterinsights-choose-device-button button.active {
  background-color: #3990ec;
  border-color: #1c77db;
  color: #ffffff;
  outline: none;
}
.monsterinsights-report-site-speed .monsterinsights-choose-device-button button.active .svg-icons {
  fill: #ffffff;
}
.monsterinsights-report-site-speed .monsterinsights-choose-device-button button.mobile {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-right: 0;
  width: 45px;
  height: 40px;
}
.monsterinsights-report-site-speed .monsterinsights-choose-device-button button.mobile svg {
  margin-left: -6px;
  margin-top: -1px;
}
.monsterinsights-report-site-speed .monsterinsights-choose-device-button button.desktop {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  border-left: 0;
  width: 54px;
  height: 40px;
}
.monsterinsights-report-site-speed .monsterinsights-choose-device-button button.desktop svg {
  margin-left: -6px;
  margin-top: -1px;
}
.monsterinsights-report-site-speed .monsterinsights-site-speed-container {
  max-width: 1010px;
}
.monsterinsights-report-site-speed .monsterinsights-site-speed-device {
  display: flex;
  justify-content: center;
}
.monsterinsights-report-site-speed .monsterinsights-site-speed-indicator {
  width: 338px;
}
@media screen and (max-width: 767px) {
  .monsterinsights-report-site-speed .monsterinsights-site-speed-indicator {
    width: 100%;
    margin-bottom: 25px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .monsterinsights-report-site-speed .monsterinsights-site-speed-indicator {
    width: 100%;
    margin-bottom: 25px;
  }
}
.monsterinsights-report-site-speed .monsterinsights-site-speed-indicator {
  margin-right: 10px;
  max-height: 304px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.monsterinsights-report-site-speed .monsterinsights-site-speed-indicator .monsterinsights-indicator-device-icon {
  margin-bottom: 40px;
  text-align: center;
}
.monsterinsights-report-site-speed .monsterinsights-site-speed-indicator .monsterinsights-indicator-device-icon .desktop {
  width: 80px;
}
.monsterinsights-report-site-speed .monsterinsights-site-speed-indicator .monsterinsights-indicator-percent-text {
  font-size: 5em;
  color: #f2994a;
  text-align: center;
  font-weight: 700;
}
.monsterinsights-report-site-speed .monsterinsights-site-speed-indicator .monsterinsights-indicator-overall-text {
  display: inline-block;
  padding-top: 2rem;
  font-weight: 600;
  font-size: 16px;
  text-align: center;
}
.monsterinsights-report-site-speed .monsterinsights-site-speed-indicator .monsterinsights-progress-circle {
  max-width: 300px;
  max-height: 255px;
  width: 100%;
  transform: scaleX(-1) rotate(-55deg);
  overflow: visible;
}
.monsterinsights-report-site-speed .monsterinsights-site-speed-indicator .monsterinsights-progress-circle__percent {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.monsterinsights-report-site-speed .monsterinsights-site-speed-indicator .monsterinsights-progress-circle__container {
  display: inline-block;
  position: relative;
}
.monsterinsights-report-site-speed .monsterinsights-site-speed-indicator .monsterinsights-progress-circle__path {
  transition: 0.5s ease-in-out all;
  overflow: visible;
}
.monsterinsights-report-site-speed .monsterinsights-site-speed-stats {
  width: 662px;
}
@media screen and (max-width: 767px) {
  .monsterinsights-report-site-speed .monsterinsights-site-speed-stats {
    width: 100%;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .monsterinsights-report-site-speed .monsterinsights-site-speed-stats {
    width: 100%;
  }
}
.monsterinsights-report-site-speed .monsterinsights-site-speed-stats .monsterinsights-report-flex {
  text-align: center;
}
@media screen and (max-width: 767px) {
  .monsterinsights-report-site-speed .monsterinsights-site-speed-stats .monsterinsights-report-flex.monsterinsights-report-2-columns {
    justify-content: center !important;
  }
}
.monsterinsights-report-site-speed .monsterinsights-site-speed-stats .monsterinsights-site-speed-stat {
  width: 49%;
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  min-height: 135px;
  margin-bottom: 15px;
  padding-top: 1.2rem;
}
@media screen and (max-width: 767px) {
  .monsterinsights-report-site-speed .monsterinsights-site-speed-stats .monsterinsights-site-speed-stat {
    width: 100%;
    margin-top: 15px;
    margin-right: 0;
  }
}
.monsterinsights-report-site-speed .monsterinsights-site-speed-stats .monsterinsights-site-speed-stat h2 {
  font-size: 40px;
  margin: 0;
  padding: 20px 0 10px 0;
}
.monsterinsights-report-site-speed .monsterinsights-site-speed-stats .monsterinsights-site-speed-stat p {
  color: #828282;
}
.monsterinsights-report-site-speed .monsterinsights-site-speed-stats .monsterinsights-site-speed-stat .monsterinsights-stat-icon {
  display: inline-block;
  width: 16px;
  height: 16px;
}
.monsterinsights-report-site-speed .monsterinsights-how-to-improve h2.title {
  font-size: 22px;
  color: #393f4c;
}
div.monsterinsights-pdf-score {
  position: relative;
  margin: 80px;
  left: -1px;
  top: 1px;
}
.monsterinsights-notes-show {
  width: 112px;
  height: 35px;
  background: url("data:image/svg+xml,%3c?xml%20version='1.0'%20encoding='utf-8'?%3e%3c!--%20Generator:%20Adobe%20Illustrator%2026.5.0,%20SVG%20Export%20Plug-In%20.%20SVG%20Version:%206.00%20Build%200)%20--%3e%3csvg%20version='1.1'%20id='Layer_1'%20xmlns='http://www.w3.org/2000/svg'%20xmlns:xlink='http://www.w3.org/1999/xlink'%20x='0px'%20y='0px'%20viewBox='0%200%2025%2025'%20style='enable-background:new%200%200%2025%2025;'%20xml:space='preserve'%3e%3cstyle%20type='text/css'%3e%20.st0{fill:%232579C0;}%20%3c/style%3e%3cpath%20class='st0'%20d='M22.6,0.3H2.4c-1,0-1.9,0.8-1.9,1.9v16.3c0,1,0.8,1.9,1.9,1.9h2.5v3.6c0,0.7,0.9,1.1,1.4,0.6l4.9-4.2h11.4%20c1,0,1.9-0.8,1.9-1.9V2.1C24.5,1.1,23.6,0.3,22.6,0.3z%20M15.4,10.3c-1.7,1.7-3.4,3.4-5.1,5.1c-0.2,0.2-2.3,0.8-3.2,0.9%20c-0.5,0.2-0.8,0-0.6-0.6c0.2-0.9,0.6-3.2,0.8-3.4c1.7-1.9,3.5-3.5,5.4-5.4c0.9,1.1,2,2.2,2.9,3.2L15.4,10.3z%20M18.7,7.4%20c-0.4,0.4-1.6,1.5-1.8,1.6c-1.1-1.2-2-2.1-3.1-3.2c0.6-0.6,1.1-1.1,1.7-1.5c0.5-0.3,1.2-0.3,1.7,0.2c0.5,0.5,0.9,0.9,1.3,1.3%20C19.1,6.3,19.3,6.7,18.7,7.4z'/%3e%3c/svg%3e") no-repeat 10px center #fff;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-left: 40px;
  background-size: 22px;
  margin-bottom: -35px;
  margin-left: auto;
  margin-right: auto;
  border: 1px solid #d6e2ed;
  border-radius: 0 0 3px 3px;
}
.monsterinsights-notes-hide {
  width: 150px;
  height: 35px;
  text-align: center;
  line-height: 35px;
  display: block;
  margin-top: -26px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 20px;
  padding-left: 30px;
  border: 1px solid #d6e2ed;
  border-radius: 0 0 3px 3px;
  background: url("data:image/svg+xml,%3c?xml%20version='1.0'%20encoding='utf-8'?%3e%3c!--%20Generator:%20Adobe%20Illustrator%2026.5.0,%20SVG%20Export%20Plug-In%20.%20SVG%20Version:%206.00%20Build%200)%20--%3e%3csvg%20version='1.1'%20id='Layer_1'%20xmlns='http://www.w3.org/2000/svg'%20xmlns:xlink='http://www.w3.org/1999/xlink'%20x='0px'%20y='0px'%20viewBox='0%200%2025%2025'%20style='enable-background:new%200%200%2025%2025;'%20xml:space='preserve'%3e%3cstyle%20type='text/css'%3e%20.st0{fill:%232579C0;}%20%3c/style%3e%3cpath%20class='st0'%20d='M22.6,0.3H2.4c-1,0-1.9,0.8-1.9,1.9v16.3c0,1,0.8,1.9,1.9,1.9h2.5v3.6c0,0.7,0.9,1.1,1.4,0.6l4.9-4.2h11.4%20c1,0,1.9-0.8,1.9-1.9V2.1C24.5,1.1,23.6,0.3,22.6,0.3z%20M15.4,10.3c-1.7,1.7-3.4,3.4-5.1,5.1c-0.2,0.2-2.3,0.8-3.2,0.9%20c-0.5,0.2-0.8,0-0.6-0.6c0.2-0.9,0.6-3.2,0.8-3.4c1.7-1.9,3.5-3.5,5.4-5.4c0.9,1.1,2,2.2,2.9,3.2L15.4,10.3z%20M18.7,7.4%20c-0.4,0.4-1.6,1.5-1.8,1.6c-1.1-1.2-2-2.1-3.1-3.2c0.6-0.6,1.1-1.1,1.7-1.5c0.5-0.3,1.2-0.3,1.7,0.2c0.5,0.5,0.9,0.9,1.3,1.3%20C19.1,6.3,19.3,6.7,18.7,7.4z'/%3e%3c/svg%3e") no-repeat 10px center #f9fbff;
  background-size: 22px;
}
.monsterinsights-notes-hide:focus {
  outline: none;
  box-shadow: none;
}
.monsterinsights-overview-notes {
  margin-bottom: 25px;
}
.monsterinsights-overview-notes .monsterinsights-toggle-note-important:active, .monsterinsights-overview-notes .monsterinsights-toggle-note-important:focus {
  outline: none;
  box-shadow: none;
}
.monsterinsights-overview-notes .monsterinsights-notes-button {
  background: #ffffff;
  border: 1px solid #d7dbe9;
  border-radius: 3px;
  padding: 10px 21px;
  color: #000000;
  display: inline-block;
  font-size: 14px;
  line-height: 14px;
}
.monsterinsights-overview-notes .monsterinsights-notes-button-grey {
  background: #eceff5;
  border: 1px solid #d6e2ed;
}
.monsterinsights-overview-notes .monsterinsights-notes-button-blue {
  background: #509fe2;
  border: 1px solid #2e7fbe;
  color: #ffffff;
}
.monsterinsights-overview-notes .monsterinsights-buttons {
  margin-top: 15px;
}
.monsterinsights-overview-notes .monsterinsights-buttons button {
  margin-right: 15px;
}
.monsterinsights-overview-notes-category {
  border-radius: 3px;
  width: 100%;
  height: 25px;
  text-align: center;
  display: block;
  padding: 3px;
}
.monsterinsights-overview-notes .site-notes-media-container {
  margin-left: 20px;
}
.monsterinsights-overview-notes .monsterinsights-star,
.monsterinsights-overview-notes .monsterinsights-star-empty {
  width: 16px;
  height: 16px;
  display: block;
  background-repeat: no-repeat;
  background-position: center center;
  margin-top: 8px;
  margin-right: 20px;
}
.monsterinsights-overview-notes .monsterinsights-star:focus,
.monsterinsights-overview-notes .monsterinsights-star-empty:focus {
  outline: none;
  box-shadow: none;
  border: 0;
}
.monsterinsights-overview-notes .monsterinsights-star {
  background-image: url("data:image/svg+xml,%3csvg%20width='18'%20height='17'%20viewBox='0%200%2018%2017'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cpath%20d='M9%200L11.6699%205.47761L18%206.18785L13.32%2010.2834L14.5623%2016.2L9%2013.2536L3.43769%2016.2L4.68%2010.2834L0%206.18785L6.33009%205.47761L9%200Z'%20fill='%23F4B400'/%3e%3c/svg%3e");
}
.monsterinsights-overview-notes .monsterinsights-star-empty {
  background: url("data:image/svg+xml,%3csvg%20width='19'%20height='17'%20viewBox='0%200%2019%2017'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cpath%20d='M9.44%201.14117L11.6605%205.69668L11.7809%205.94383L12.0542%205.97449L17.2575%206.5583L13.4307%209.90717L13.2106%2010.0999L13.2707%2010.3862L14.2938%2015.2589L9.67405%2012.8118L9.44%2012.6878L9.20596%2012.8118L4.58621%2015.2589L5.60933%2010.3862L5.66945%2010.0999L5.44928%209.90717L1.62255%206.5583L6.82585%205.97449L7.09908%205.94383L7.21955%205.69668L9.44%201.14117Z'%20stroke='%23AFB3BE'/%3e%3c/svg%3e") no-repeat center center;
}
.monsterinsights-overview-notes .monsterinsights-flex-container {
  display: flex;
  margin: 0;
}
.monsterinsights-overview-notes__header {
  display: flex;
  margin-bottom: 20px;
}
.monsterinsights-overview-notes__header-left {
  display: flex;
}
.monsterinsights-overview-notes__header-left-links {
  font-size: 15px;
  line-height: 37px;
  color: #444444;
  margin-right: 10px;
}
.monsterinsights-overview-notes__header-left-links a {
  color: #444444;
  position: relative;
  padding-right: 10px;
  text-decoration: none;
}
.monsterinsights-overview-notes__header-left-links a span.important {
  display: inline-block;
  padding-left: 22px;
  background: url("data:image/svg+xml,%3csvg%20width='18'%20height='17'%20viewBox='0%200%2018%2017'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cpath%20d='M9%200L11.6699%205.47761L18%206.18785L13.32%2010.2834L14.5623%2016.2L9%2013.2536L3.43769%2016.2L4.68%2010.2834L0%206.18785L6.33009%205.47761L9%200Z'%20fill='%23F4B400'/%3e%3c/svg%3e") no-repeat left center;
}
.monsterinsights-overview-notes__header-left-links a.selected span.text {
  font-weight: bold;
}
.monsterinsights-overview-notes__header-left-links a:focus {
  outline: none;
  box-shadow: none;
  border: 0;
}
.monsterinsights-overview-notes__header-left-links a:last-child:after {
  display: none;
}
.monsterinsights-overview-notes__header-right {
  margin-left: auto;
  margin-right: 0;
}
.monsterinsights-overview-notes__header-right .monsterinsights-button-group button {
  margin-left: 20px;
}
.monsterinsights-overview-notes .monsterinsights-site-notes-create__table {
  border: 1px solid #b7c9d9;
  width: 100%;
  border-collapse: collapse;
}
.monsterinsights-overview-notes .monsterinsights-site-notes-create__table thead tr {
  background-color: #fff;
}
.monsterinsights-overview-notes .monsterinsights-site-notes-create__table thead tr th {
  padding: 16px 30px;
  text-align: left;
  font-weight: 700;
  font-size: 15px;
  line-height: 22px;
  color: #393f4c;
}
.monsterinsights-overview-notes .monsterinsights-site-notes-create__table th,
.monsterinsights-overview-notes .monsterinsights-site-notes-create__table td {
  border: 1px solid #b7c9d9;
}
.monsterinsights-overview-notes .monsterinsights-site-notes-create__table tbody tr {
  background: #f9fbff;
}
.monsterinsights-overview-notes .monsterinsights-site-notes-create__table tbody tr td {
  padding: 22px 30px;
  vertical-align: top;
}
.monsterinsights-overview-notes .monsterinsights-site-notes-create__table-column-notedate {
  width: 25%;
}
.monsterinsights-overview-notes .monsterinsights-site-notes-create__table-column-notedate #note_date {
  width: 100%;
}
.monsterinsights-overview-notes .monsterinsights-site-notes-create__table-column-notedate input {
  border: 1px solid #b7c9d9;
  height: 35px;
}
.monsterinsights-overview-notes .monsterinsights-site-notes-create__table-column-note textarea {
  width: 100%;
  height: 35px;
  border: 1px solid #b7c9d9;
  line-height: 200%;
  flex: 1;
}
.monsterinsights-overview-notes .monsterinsights-site-notes-create__table-column-notecategory {
  width: 25%;
}
.monsterinsights-overview-notes .monsterinsights-site-notes-create__table-column-notecategory select {
  width: 100%;
  height: 35px;
}
.monsterinsights-overview-notes .monsterinsights-site-notes-create__table-column-notecategory select option {
  font-family: Arial, serif;
}
.monsterinsights-overview-notes .monsterinsights-site-notes-create__table.loading {
  opacity: 0.4;
}
.monsterinsights-overview-notes__body {
  background: #fff;
}
.monsterinsights-overview-notes__body-list-table {
  border: 1px solid #b7c9d9;
  width: 100%;
  border-collapse: collapse;
  font-weight: 400;
  font-size: 14px;
  color: #393f4c;
}
.monsterinsights-overview-notes__body-list-table thead tr {
  background-color: #fff;
}
.monsterinsights-overview-notes__body-list-table thead tr th {
  padding: 16px 30px;
  text-align: left;
  font-weight: 700;
  font-size: 15px;
  line-height: 22px;
  color: #393f4c;
}
.monsterinsights-overview-notes__body-list-table th,
.monsterinsights-overview-notes__body-list-table td {
  border: 1px solid #b7c9d9;
}
.monsterinsights-overview-notes__body-list-table tbody tr {
  background: #f9fbff;
}
.monsterinsights-overview-notes__body-list-table tbody tr.edit-row .monsterinsights-star,
.monsterinsights-overview-notes__body-list-table tbody tr.edit-row .monsterinsights-star-empty {
  margin-top: 8px;
  display: inline-block;
  width: 18px;
  height: 18px;
  background-size: 17px;
}
.monsterinsights-overview-notes__body-list-table tbody tr:nth-child(even) {
  background-color: #fff;
}
.monsterinsights-overview-notes__body-list-table tbody tr td {
  vertical-align: top;
}
.monsterinsights-overview-notes__body-list-table-column-notedate {
  width: 25%;
  padding: 12px 30px;
}
.monsterinsights-overview-notes__body-list-table-column-notedate #note_date {
  width: 100%;
}
.monsterinsights-overview-notes__body-list-table-column-notedate .monsterinsights-star,
.monsterinsights-overview-notes__body-list-table-column-notedate .monsterinsights-star-empty {
  margin-top: 0;
}
.monsterinsights-overview-notes__body-list-table-column-notedate input {
  border: 1px solid #b7c9d9;
  height: 35px;
}
.monsterinsights-overview-notes__body-list-table-column-note {
  padding: 12px 30px;
  position: relative;
}
.monsterinsights-overview-notes__body-list-table-column-note div {
  margin-right: 34px;
}
.monsterinsights-overview-notes__body-list-table-column-note div:last-child {
  margin-right: 0;
}
.monsterinsights-overview-notes__body-list-table-column-note-edit {
  position: absolute;
  right: 34px;
  top: 13px;
  color: #393f4c;
  text-decoration: none;
  display: none;
}
.monsterinsights-overview-notes__body-list-table-column-note textarea {
  width: 100%;
  height: 60px;
  border: 1px solid #b7c9d9;
  line-height: 200%;
  flex: 1;
}
.monsterinsights-overview-notes__body-list-table-column-note:hover .monsterinsights-overview-notes__body-list-table-column-note-edit {
  display: block;
}
.monsterinsights-overview-notes__body-list-table-column-notecategory {
  padding: 10px 30px;
  width: 25%;
}
.monsterinsights-overview-notes__body-list-table-column-notecategory .monsterinsights-category-without-bg {
  color: #509fe2;
}
.monsterinsights-overview-notes__body-list-table-column-notecategory .monsterinsights-category-with-bg {
  display: inline-block;
  color: #fff;
  border-radius: 3px;
  text-align: center;
  padding: 3px 10px;
}
.monsterinsights-overview-notes__body-list-table-column-notecategory select {
  width: 100%;
  height: 35px;
}
.monsterinsights-overview-notes__body-list-table-column-notecategory select option {
  font-family: Arial, serif;
}
.monsterinsights-overview-notes__body-list-table-empty {
  text-align: center;
  font-size: 16px;
  padding: 20px;
  color: #888888;
}
.monsterinsights-overview-notes .button-dropdown {
  position: relative;
  width: 100%;
}
.monsterinsights-overview-notes .button-dropdown-main {
  width: 100%;
  background: #fff;
  border: 1px solid #b7c9d9;
  border-radius: 2px;
  display: block;
  position: relative;
  text-align: left;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  padding: 7px 13px;
}
.monsterinsights-overview-notes .button-dropdown-main.lite {
  color: #393f4c;
}
.monsterinsights-overview-notes .button-dropdown-main.pro {
  color: #fff;
}
.monsterinsights-overview-notes .button-dropdown-main.default {
  color: #393f4c !important;
}
.monsterinsights-overview-notes .button-dropdown-main:after {
  content: "";
  width: 14px;
  height: 8px;
  background: url("data:image/svg+xml,%3csvg%20width='14'%20height='8'%20viewBox='0%200%2014%208'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M0.256282%200.256282C0.59799%20-0.0854272%201.15201%20-0.0854272%201.49372%200.256282L7%205.76256L12.5063%200.256282C12.848%20-0.0854272%2013.402%20-0.0854272%2013.7437%200.256282C14.0854%200.59799%2014.0854%201.15201%2013.7437%201.49372L7.61872%207.61872C7.27701%207.96043%206.72299%207.96043%206.38128%207.61872L0.256282%201.49372C-0.0854272%201.15201%20-0.0854272%200.59799%200.256282%200.256282Z'%20fill='%23777777'/%3e%3c/svg%3e") no-repeat center center;
  position: absolute;
  right: 13px;
  top: 13px;
}
.monsterinsights-overview-notes .button-dropdown__list {
  display: flex;
  flex-direction: column;
  border-radius: 3px;
  overflow: hidden;
  z-index: 1;
  padding: 13px;
  width: 100%;
  max-height: 129px;
  overflow-y: scroll;
  position: absolute;
  background-color: #fff;
}
.monsterinsights-overview-notes .button-dropdown__item.button {
  font-weight: normal;
  font-size: 12px;
  margin-bottom: 12px;
  border: 0;
  background: transparent;
  position: relative;
  padding-left: 32px;
}
.monsterinsights-overview-notes .button-dropdown__item.button span {
  background: #e2effb;
  display: block;
  padding: 3px 19px;
  border-radius: 3px;
  color: #393f4c;
}
.monsterinsights-overview-notes .button-dropdown__item.button.selected {
  background: url("data:image/svg+xml,%3csvg%20width='16'%20height='12'%20viewBox='0%200%2016%2012'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cpath%20d='M1%207L5%2011L15%201'%20stroke='%23393F4C'%20stroke-width='2'%20stroke-linecap='round'%20stroke-linejoin='round'/%3e%3c/svg%3e") no-repeat center left;
}
.monsterinsights-overview-notes .button-dropdown__item.button:last-child {
  margin-bottom: 0;
}
.monsterinsights-overview-notes .button-dropdown__item.button .icon:first-child {
  margin-right: 10px;
}
.monsterinsights-overview-notes .button-dropdown__item.button .icon:last-child {
  margin-left: 10px;
}
.monsterinsights-overview-notes .button-dropdown__item.button:hover {
  background-color: #f9f9f9;
}
.monsterinsights-overview-notes .button-dropdown__item.button[disabled] {
  background-color: transparent !important;
}
.monsterinsights-overview-notes .monsterinsights-site-notes-media-icon {
  margin-right: 16px;
}
.monsterinsights-overview-notes .monsterinsights-site-notes-media-icon-item {
  margin-top: 3px;
  display: block;
  width: 12px;
  height: 13px;
  background: url("data:image/svg+xml,%3csvg%20width='12'%20height='13'%20viewBox='0%200%2012%2013'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cpath%20fill-rule='evenodd'%20clip-rule='evenodd'%20d='M6.4005%202.14599L2.35281%206.30195C1.12142%207.53334%201.12138%209.52977%202.35277%2010.7611C3.58415%2011.9925%205.58062%2011.9925%206.812%2010.7611L6.81252%2010.7606L10.7586%206.82382C11.0052%206.57784%2011.4045%206.57831%2011.6505%206.82487C11.8964%207.07144%2011.896%207.47073%2011.6494%207.71672L7.70385%2011.653C7.70375%2011.6531%207.70394%2011.6529%207.70385%2011.653C5.97989%2013.3766%203.18476%2013.3768%201.46092%2011.653C-0.261994%209.93008%20-0.263015%207.13732%201.45786%205.41313L5.50588%201.25683C6.73726%200.0254478%208.73377%200.0254867%209.96515%201.25687C11.1955%202.48722%2011.1965%204.48138%209.96824%205.71301L5.92019%209.86934C5.18136%2010.6082%203.98344%2010.6081%203.24461%209.8693C2.50578%209.13047%202.50578%207.93259%203.24461%207.19376L7.39781%203.04056C7.64409%202.79429%208.04338%202.79429%208.28966%203.04056C8.53594%203.28684%208.53594%203.68613%208.28966%203.93241L4.13646%208.08561C3.89018%208.33188%203.89018%208.73118%204.13646%208.97745C4.38192%209.22291%204.77939%209.22373%205.02585%208.97989L9.07327%204.82422C9.8121%204.08539%209.81214%202.88755%209.07331%202.14872C8.33539%201.4108%207.13955%201.40989%206.4005%202.14599Z'%20fill='%23777777'/%3e%3c/svg%3e") no-repeat center center;
}
.monsterinsights-overview-notes .monsterinsights-site-notes-media-icon-empty {
  display: block;
  color: #777777;
  font-size: 30px;
  width: 12px;
}
.monsterinsights-overview-notes .monsterinsights-loader {
  border-radius: 50%;
  width: 10em;
  height: 10em;
  margin: 0 auto;
  font-size: 10px;
  position: relative;
  text-indent: -9999em;
  border-top: 1.1em solid rgba(80, 159, 226, 0.2);
  border-right: 1.1em solid rgba(80, 159, 226, 0.2);
  border-bottom: 1.1em solid rgba(80, 159, 226, 0.2);
  border-left: 1.1em solid #509fe2;
  -webkit-transform: translateZ(0);
  -ms-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-animation: load8 1.1s infinite linear;
  animation: load8 1.1s infinite linear;
}
.monsterinsights-overview-notes .monsterinsights-loader.is-inline {
  width: 24px;
  height: 24px;
  border-width: 4px;
  margin: 0;
}
@-webkit-keyframes load8 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes load8 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
.monsterinsights-datepicker-input-switch {
  border-top: 1px solid #D6E2ED;
  padding: 14px 20px 5px 20px;
  margin-top: 10px;
}
.monsterinsights-datepicker-input-switch label {
  cursor: pointer;
}
.monsterinsights-datepicker-input-switch label input {
  display: none;
}
.monsterinsights-datepicker-input-switch .monsterinsights-checkbox-label {
  font-size: 14px;
  vertical-align: middle;
  font-weight: 700;
}
.monsterinsights-datepicker-input-switch .monsterinsights-styled-checkbox {
  width: 27px;
  height: 18px;
  position: relative;
  display: inline-block;
  border-radius: 10px;
  margin-right: 9px;
  background-color: #acbdc9;
  vertical-align: middle;
}
.monsterinsights-datepicker-input-switch .monsterinsights-styled-checkbox.monsterinsights-styled-checkbox-checked {
  background-color: #509fe2;
}
.monsterinsights-datepicker-input-switch .monsterinsights-styled-checkbox.monsterinsights-styled-checkbox-checked:after {
  right: 2px;
  left: auto;
}
.monsterinsights-datepicker-input-switch .monsterinsights-styled-checkbox:after {
  left: 2px;
  top: 2px;
  bottom: 2px;
  width: 14px;
  position: absolute;
  content: "";
  background: #fff;
  display: block;
  border-radius: 50%;
}
.monsterinsights-reports-intervals-dropdown {
  position: absolute;
  z-index: 100;
  background: #fff;
  border: 1px solid #d6e2ed;
  border-radius: 3px;
  margin-top: 0;
  box-shadow: 0 10px 20px rgba(48, 44, 62, 0.05);
  right: 0;
  top: 100%;
  display: flex;
}
.monsterinsights-datepicker-default-buttons {
  width: 315px;
  flex-shrink: 0;
  padding: 12px;
  border-right: 1px solid #d6e2ed;
}
.monsterinsights-datepicker-default-buttons button.monsterinsights-button {
  display: block;
  width: 100%;
  margin-bottom: 5px;
  text-align: left;
  background-color: #fff;
  color: #444;
  border: none;
}
.monsterinsights-datepicker-default-buttons button.monsterinsights-button:hover, .monsterinsights-datepicker-default-buttons button.monsterinsights-button:active, .monsterinsights-datepicker-default-buttons button.monsterinsights-button.monsterinsights-interval-active {
  background-color: #eceff4;
  color: #444;
}
.monsterinsights-datepicker-default-buttons button.monsterinsights-button i {
  margin-right: 10px;
}
.monsterinsights-datepicker-range-inputs {
  background: #F9FBFF;
  border-bottom: 1px solid #D6E2ED;
  display: flex;
}
.monsterinsights-datepicker-range-input {
  padding: 12px;
}
.monsterinsights-datepicker-range-input h3 {
  font-size: 14px;
  font-weight: 700;
  margin: 0 0 5px 0;
}
.monsterinsights-datepicker-range-input + .monsterinsights-datepicker-range-input {
  border-left: 1px solid #D6E2ED;
}
.monsterinsights-datepicker-range-input-fields {
  display: flex;
  justify-content: space-between;
  position: relative;
}
.monsterinsights-datepicker-range-input-fields::after {
  content: "";
  position: absolute;
  left: calc(50% - 5px);
  top: 50%;
  height: 1px;
  width: 10px;
  background-color: #393F4C;
}
.monsterinsights-datepicker-range-input-fields input {
  border: 1px solid #D6E2ED;
  width: 45%;
  background-color: #fff;
  height: 30px;
}
.monsterinsights-datepicker-calenders {
  display: flex;
}
.monsterinsights-datepicker-calender {
  border-bottom: 1px solid #D6E2ED;
  padding: 12px;
}
.monsterinsights-datepicker-calender + .monsterinsights-datepicker-calender {
  border-left: 1px solid #D6E2ED;
}
.monsterinsights-datepicker-calender .flatpickr-wrapper {
  display: block;
}
.monsterinsights-datepicker-calender .flatpickr-wrapper .flatpickr-calendar {
  box-shadow: 0 0 0;
}
.monsterinsights-datepicker-calender .flatpickr-wrapper .flatpickr-calendar.inline {
  position: static;
}
.monsterinsights-datepicker-calenders-bottom {
  display: flex;
  padding: 12px;
  justify-content: space-between;
}
.monsterinsights-datepicker-calenders-bottom button.monsterinsights-button {
  width: 49%;
  padding: 7px;
}
.monsterinsights-datepicker-calenders-bottom button.monsterinsights-button.monsterinsights-button-secondary {
  color: #393F4C;
  background-color: #E2E4E9;
  border-color: #E2E4E9;
}
.monsterinsights-datepicker-calenders-bottom button.monsterinsights-button.monsterinsights-button-secondary:hover, .monsterinsights-datepicker-calenders-bottom button.monsterinsights-button.monsterinsights-button-secondary:focus {
  background-color: #d7d9dd;
  border-color: #d7d9dd;
  color: #393F4C;
}
.apexcharts-grid-borders line:nth-last-child(2) {
  display: none;
}
.apexcharts-grid-borders line:last-child {
  display: none;
}
.apexcharts-xaxis-texts-g text {
  font-weight: normal;
}
.apexcharts-point-annotations image {
  transform: translate(0, -15px);
}
/**
 * Override apechart default tooltip.
 */
.apexcharts-tooltip {
  font-family: "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
  padding: 15px;
  background-color: #fff !important;
  border-radius: 4px !important;
  box-shadow: 0 0 24px rgba(89, 164, 234, 0.33) !important;
  transform: translateY(-10px) !important;
}
.apexcharts-tooltip .monsterinsights-reports-apex-datagraph-tooltip-sitenotes {
  font-size: 13px;
}
.apexchart-pie-chart .apexcharts-tooltip-series-group {
  background: transparent !important;
  border: 0;
  color: #000;
  padding: 0;
  text-align: left;
}
.apexchart-pie-chart .apexcharts-tooltip-series-group .apexcharts-tooltip-text .apexcharts-tooltip-text-y-label {
  font-size: 14px;
  font-weight: normal;
  display: block;
  border-bottom: 1px solid #d6e2ed;
  padding-bottom: 8px;
}
.apexchart-pie-chart .apexcharts-tooltip-series-group .apexcharts-tooltip-text .apexcharts-tooltip-text-y-value {
  font-size: 24px;
  font-weight: normal;
  display: block;
  margin-left: 0;
  padding-top: 8px;
}
.apexchart-pie-chart .apexcharts-tooltip-series-group .apexcharts-tooltip-text .apexcharts-tooltip-text-y-value:after {
  content: "%";
}
.monsterinsights-report-table-wrapper .monsterinsights-report-title {
  font-size: 24px;
  display: inline-block;
}
.monsterinsights-report-table-wrapper .monsterinsights-table-box {
  padding-top: 0;
  margin-left: 0;
}
.monsterinsights-report-table-wrapper .search-filters {
  margin-top: -10px;
}
.monsterinsights-report-table-wrapper .search-filters input {
  width: 250px;
  height: 40px;
  border-radius: 0;
  border: 1px solid #d6e2ed;
  background-color: #ffffff;
  background-repeat: no-repeat;
  background-position: 10px;
  text-indent: 20px;
  background-image: url('data:image/svg+xml;utf8,<svg width="12" height="12" viewBox="0 0 12 12" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M5.15535 0C5.34738 0.0295434 5.53942 0.049239 5.73145 0.0886301C7.71087 0.531781 8.99601 1.72829 9.5081 3.69292C9.88232 5.1307 9.58196 6.47 8.72027 7.68128C8.69565 7.71574 8.67103 7.75021 8.63164 7.8093C8.67103 7.83884 8.71042 7.86346 8.74489 7.893C9.76414 8.90733 10.7785 9.92657 11.7928 10.9409C11.9651 11.1132 12.039 11.3053 11.9799 11.5465C11.8765 11.9651 11.3792 12.1374 11.0394 11.8764C10.9902 11.837 10.9459 11.7927 10.9016 11.7484C9.89216 10.739 8.88768 9.73454 7.87828 8.72514C7.84874 8.6956 7.82412 8.67098 7.78965 8.64144C7.45482 8.89748 7.1003 9.10428 6.72116 9.27169C3.91452 10.4731 0.654882 8.74976 0.0935546 5.75603C0.0541632 5.55908 0.0295435 5.3572 0 5.15532C0 4.93867 0 4.71709 0 4.50044C0.0295435 4.30348 0.0541632 4.1016 0.0935546 3.90465C0.428381 2.05326 1.94495 0.497313 3.7865 0.118173C4.02777 0.0689345 4.27889 0.0393912 4.52509 0C4.73682 0 4.94854 0 5.16027 0H5.15535ZM1.19651 4.82049C1.19159 6.81467 2.81648 8.4494 4.82052 8.45925C6.81471 8.4691 8.45438 6.83929 8.4593 4.84019C8.46423 2.84109 6.83933 1.20635 4.83529 1.20143C2.8411 1.19651 1.20144 2.82632 1.19651 4.82049V4.82049Z" fill="%23AFAFAF"/></svg>');
}
.monsterinsights-report-table-wrapper .sorting-indicator {
  float: none;
  display: inline-block;
  margin: 0 0 0 8px;
  height: 10px;
  width: 10px;
  position: relative;
}
.monsterinsights-report-table-wrapper .sorting-indicator::before {
  color: #d0d0ce;
  top: unset;
  position: absolute;
}
.monsterinsights-report-table-wrapper .monsterinsights-table-box-table:has(table.monsterinsights-report-table-compare-report-table) {
  overflow-x: auto;
}
.monsterinsights-report-table-wrapper table {
  table-layout: fixed;
}
.monsterinsights-report-table-wrapper table.monsterinsights-report-table-compare-report-table {
  table-layout: auto;
  /* Sticky first column when the table scrolls horizontally.
     Sticky cells need solid backgrounds so the scrolling columns
     slide behind them cleanly. Header sits above body cells. */
}
.monsterinsights-report-table-wrapper table.monsterinsights-report-table-compare-report-table thead > tr:first-child > th:first-child,
.monsterinsights-report-table-wrapper table.monsterinsights-report-table-compare-report-table tbody > tr > td.monsterinsights-table-cell-1 {
  position: sticky;
  left: 0;
  background: #fff;
  z-index: 1;
}
.monsterinsights-report-table-wrapper table.monsterinsights-report-table-compare-report-table thead > tr:first-child > th:first-child {
  min-width: 160px;
  z-index: 2;
}
.monsterinsights-report-table-wrapper table.monsterinsights-report-table-compare-report-table {
  /* Match the striped row background on the sticky first cell. */
}
.monsterinsights-report-table-wrapper table.monsterinsights-report-table-compare-report-table tbody > tr:nth-child(odd) > td.monsterinsights-table-cell-1 {
  background: #F9FBFF;
}
.monsterinsights-report-table-wrapper table th, .monsterinsights-report-table-wrapper table td {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.monsterinsights-report-table-wrapper table thead th {
  padding-left: 0px;
}
.monsterinsights-report-table-wrapper table thead th a {
  text-align: right;
}
.monsterinsights-report-table-wrapper table thead th a span {
  float: none;
}
.monsterinsights-report-table-wrapper table thead th:first-child a {
  text-align: left;
}
.monsterinsights-report-table-wrapper table thead th:first-child a span:first-child {
  padding-left: 0px;
}
.monsterinsights-report-table-wrapper table thead th a, .monsterinsights-report-table-wrapper table thead th a.visited {
  text-decoration: none;
  color: #000000;
}
.monsterinsights-report-table-wrapper table thead th .sorting-indicator {
  visibility: visible;
}
.monsterinsights-report-table-wrapper table thead th.sorted .sorting-indicator::before {
  color: #000000;
}
.monsterinsights-report-table-wrapper table thead th:hover a, .monsterinsights-report-table-wrapper table thead th:hover a.visited {
  text-decoration: none;
  color: #509fe2;
}
.monsterinsights-report-table-wrapper table thead th:hover .sorting-indicator {
  visibility: visible;
}
.monsterinsights-report-table-wrapper table thead th:hover .sorting-indicator::before {
  color: #509fe2;
}
.monsterinsights-report-table-wrapper table thead th.asc span.sorting-indicator:before {
  content: "\f142";
}
.monsterinsights-report-table-wrapper table thead th.desc span.sorting-indicator:before, .monsterinsights-report-table-wrapper table thead th span.sorting-indicator:before {
  content: "\f140";
}
.monsterinsights-report-table-wrapper table td {
  padding-right: 40px;
}
.monsterinsights-report-table-wrapper table td .monsterinsights-table-item-content span {
  display: flex;
}
.monsterinsights-report-table-wrapper table td .monsterinsights-table-item-content {
  justify-content: right;
}
.monsterinsights-report-table-wrapper table td:first-child .monsterinsights-table-item-content {
  justify-content: left;
}
.monsterinsights-report-table-wrapper table td:last-child {
  padding-right: 50px;
}
.monsterinsights-table-box-table a .monsterinsights-inline {
  display: inline;
  position: relative;
  top: 0;
  right: -4px;
}
.monsterinsights-table-box-table .monsterinsights-report-table-head-date-range-row th:first-child {
  padding-left: 10px;
}
.monsterinsights-table-box-table .monsterinsights-report-table-head-date-range-row th {
  font-size: 11px;
  color: #777777;
  font-weight: 400;
  padding-left: 10px;
}
.monsterinsights-table-box-table .monsterinsights-report-box-table-compare-report {
  border-top: 1px solid #D6E2ED;
}
.monsterinsights-table-box-table .monsterinsights-report-box-table-compare-report .monsterinsights-report-box-table-head-columns th:nth-child(n+2) {
  text-align: center;
}
.monsterinsights-table-box-table .monsterinsights-report-table-head-compare-report th {
  border-bottom: 1px solid #D6E2ED;
  border-right: 1px solid #D6E2ED;
}
.monsterinsights-table-box-table .monsterinsights-report-table-head-compare-report .monsterinsights-report-table-head-columns th:last-child,
.monsterinsights-table-box-table .monsterinsights-report-table-head-compare-report .monsterinsights-report-table-head-date-range-row th:last-child,
.monsterinsights-table-box-table .monsterinsights-report-table-head-compare-report .monsterinsights-report-table-head-date-range-row th:nth-child(2n+1) {
  border-right: 0 none;
}
.monsterinsights-table-box-table .monsterinsights-report-table-head-compare-report .monsterinsights-report-table-head-date-range-row.monsterinsights-report-table-head-date-range-row-has-change-col th {
  border-right: 0 none;
}
.monsterinsights-table-box-table .monsterinsights-report-table-head-compare-report .monsterinsights-report-table-head-date-range-row.monsterinsights-report-table-head-date-range-row-has-change-col th:nth-child(3n) {
  border-right: 1px solid #D6E2ED;
}
.monsterinsights-table-box-table .monsterinsights-report-table-head-compare-report .monsterinsights-report-table-head-columns th.compare-single-column {
  border-left: 1px solid #D6E2ED;
  text-align: center;
  padding-left: 10px;
  padding-right: 10px;
}
.monsterinsights-table-box-table .monsterinsights-report-table-head-compare-report .monsterinsights-report-table-head-columns th:first-child a {
  text-align: left;
}
.monsterinsights-table-box-table .monsterinsights-report-table-head-compare-report .monsterinsights-report-table-head-columns th:first-child a span:first-child {
  padding-left: 0;
}
.monsterinsights-table-box-table .monsterinsights-report-table-head-compare-report .monsterinsights-report-table-head-columns th a {
  text-align: center;
  padding: 2px;
}
.monsterinsights-report-table-wrapper table .monsterinsights-report-table-body-compare-report td {
  padding-right: 10px;
}
.monsterinsights-report-table-wrapper table .monsterinsights-report-table-body-compare-report td.monsterinsights-table-cell-1 {
  min-width: 140px;
}
.monsterinsights-report-table-wrapper table .monsterinsights-report-table-body-compare-report td:not(.monsterinsights-table-cell-1) .monsterinsights-table-item-content {
  justify-content: center;
}
.monsterinsights-report-table-body-compare-report td:not(.monsterinsights-table-cell-1) .monsterinsights-table-item-content {
  justify-content: center;
}
.monsterinsights-table-item-compare-report-content {
  text-align: center;
  display: block;
}
.monsterinsights-table-item-compare-report-change {
  min-width: 65px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.monsterinsights-table-item-extend-button {
  padding: 0 5px;
  cursor: pointer;
  height: 20px;
  width: 40px;
  display: flex;
  vertical-align: top;
  text-align: center;
  justify-content: center;
}
tr.monsterinsights-table-is-extended {
  font-size: 13px;
  filter: grayscale(60%);
}
tr.monsterinsights-table-is-extended td {
  padding: 6px;
}
tr.monsterinsights-table-is-extended td:first-child {
  padding-left: 40px;
}
.monsterinsights-report-ecommerce-funnel {
  min-height: 700px;
}
.monsterinsights-ecommerce-funnel-table thead th:not(:first-child) {
  text-align: right;
}
.monsterinsights-ecommerce-funnel-table .monsterinsights-table-list-item .monsterinsights-reports-list-count {
  display: none;
}
@media (max-width: 782px) {
  .monsterinsights-ecommerce-funnel-table.monsterinsights-table-box-mobile .monsterinsights-table-list-item-empty {
    display: none;
  }
  .monsterinsights-ecommerce-funnel-table.monsterinsights-table-box-mobile .monsterinsights-table-list-item-empty.monsterinsights-table-list-item-active {
    display: flex;
  }
  .monsterinsights-ecommerce-funnel-table.monsterinsights-table-box-mobile .monsterinsights-table-list-item-empty.monsterinsights-table-list-item-active .monsterinsights-table-cell-1 {
    padding: 0;
  }
  .monsterinsights-ecommerce-funnel-table.monsterinsights-table-box-mobile .monsterinsights-table-list-item-empty.monsterinsights-table-list-item-active .monsterinsights-table-cell-2 {
    border-top-width: 3px;
  }
}
.monsterinsights-ecommerce-funnel-table-header {
  margin-bottom: 8px;
}
.monsterinsights-ecommerce-funnel-table-header p {
  margin: 0 0 8px 0;
  font-weight: 700;
}
.monsterinsights-ecommerce-funnel-table-header .multiselect {
  max-width: 300px;
}
.monsterinsights-report .multiselect__option--highlight {
  background: #acbdc9;
  outline: none;
  color: #fff;
}
#monsterinsights-report-ecommerce-funnel-chart {
  width: 40%;
  height: 405px;
  padding-right: 50px;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
}
@media (max-width: 782px) {
  #monsterinsights-report-ecommerce-funnel-chart {
    padding-right: 15px;
    width: 70%;
    height: 300px;
  }
}
.monsterinsights-report-ecommerce-funnel-chart-wrapper {
  border: 1px solid #d6e2ed;
  background: #FFF;
}
.monsterinsights-report-ecommerce-funnel-box-header {
  border-bottom: 1px solid #d6e2ed;
  display: flex;
  justify-content: flex-end;
  font-size: 14px;
  padding: 15px 0;
  text-align: center;
}
@media (max-width: 782px) {
  .monsterinsights-report-ecommerce-funnel-box-header {
    display: none;
  }
}
.monsterinsights-report-ecommerce-funnel-box-header-col-1, .monsterinsights-report-ecommerce-funnel-box-header-col-2, .monsterinsights-report-ecommerce-funnel-box-body-col-1, .monsterinsights-report-ecommerce-funnel-box-body-col-3, .monsterinsights-report-ecommerce-funnel-box-body-col-4 {
  width: 20%;
}
.monsterinsights-report-ecommerce-funnel-box-body {
  display: flex;
  padding: 20px 0;
}
.monsterinsights-report-ecommerce-funnel-box-body-col-1, .monsterinsights-report-ecommerce-funnel-box-body-col-4, .monsterinsights-report-ecommerce-funnel-box-body-col-3 {
  display: flex;
  font-size: 20px;
  font-weight: 700;
  flex-direction: column;
  justify-content: space-around;
  flex-shrink: 0;
}
.monsterinsights-report-ecommerce-funnel-box-body-col-1 {
  padding-left: 15px;
}
@media (max-width: 782px) {
  .monsterinsights-report-ecommerce-funnel-box-body-col-1 {
    width: 30%;
    font-size: 14px;
  }
}
.monsterinsights-report-ecommerce-funnel-box-body-col-1-item-border {
  position: relative;
}
.monsterinsights-report-ecommerce-funnel-box-body-col-1-item-border:before, .monsterinsights-report-ecommerce-funnel-box-body-col-1-item-border:after {
  position: absolute;
  content: "";
  height: 1px;
  background-color: #d6e2ed;
  right: -90%;
  left: 0;
}
.monsterinsights-report-ecommerce-funnel-box-body-col-1-item-border:before {
  top: -58px;
}
@media (max-width: 782px) {
  .monsterinsights-report-ecommerce-funnel-box-body-col-1-item-border:before {
    top: -40px;
  }
}
.monsterinsights-report-ecommerce-funnel-box-body-col-1-item-border:after {
  bottom: -59px;
}
@media (max-width: 782px) {
  .monsterinsights-report-ecommerce-funnel-box-body-col-1-item-border:after {
    bottom: -42px;
  }
}
.monsterinsights-report-ecommerce-funnel-box-body-col-3 {
  justify-content: space-evenly;
  padding: 24px 0;
}
.monsterinsights-report-ecommerce-funnel-box-body-col-3-item {
  position: relative;
}
.monsterinsights-report-ecommerce-funnel-box-body-col-3-item:before, .monsterinsights-report-ecommerce-funnel-box-body-col-3-item:after {
  background-color: #d6e2ed;
  position: absolute;
  content: "";
  height: 1px;
  right: 50%;
  left: -100%;
}
.monsterinsights-report-ecommerce-funnel-box-body-col-3-item:before {
  top: -28px;
}
.monsterinsights-report-ecommerce-funnel-box-body-col-3-item:after {
  bottom: -28px;
}
.monsterinsights-report-ecommerce-funnel-box-body-col-3-item-inner {
  display: inline-block;
  border: 1px solid #d6e2ed;
  padding: 22px 34px;
  background: #fff;
  position: relative;
  z-index: 2;
}
.monsterinsights-report-ecommerce-funnel-box-body-col-3-item-inner-bg-border {
  content: "";
  position: absolute;
  background: #d6e2ed;
  left: 50%;
  width: 1px;
  top: -28px;
  bottom: -28px;
}
.monsterinsights-report-ecommerce-funnel-box-body-col-3, .monsterinsights-report-ecommerce-funnel-box-body-col-4 {
  text-align: center;
}
@media (max-width: 782px) {
  .monsterinsights-report-ecommerce-funnel-box-body-col-3, .monsterinsights-report-ecommerce-funnel-box-body-col-4 {
    display: none;
  }
}
.monsterinsights-report-ecommerce-funnel-box-body-col-4-item-border {
  position: relative;
}
.monsterinsights-report-ecommerce-funnel-box-body-col-4-item-border:before, .monsterinsights-report-ecommerce-funnel-box-body-col-4-item-border:after {
  background-color: #d6e2ed;
  position: absolute;
  content: "";
  height: 1px;
  right: 10px;
  left: -40%;
}
.monsterinsights-report-ecommerce-funnel-box-body-col-4-item-border:before {
  top: -60px;
}
.monsterinsights-report-ecommerce-funnel-box-body-col-4-item-border:after {
  bottom: -60px;
}
.monsterinsights-report-ecommerce-funnel-box-visibility-hidden {
  visibility: hidden;
}
.monsterinsights-admin-page.monsterinsights-reports-page .monsterinsights-container {
  padding-left: 10px;
  padding-right: 10px;
  width: auto;
}
.monsterinsights-admin-page .monsterinsights-user-journey-report {
  /* Select Field Start */
}
.monsterinsights-admin-page .monsterinsights-user-journey-report .multiselect__select {
  line-height: 16px;
  display: block;
  position: absolute;
  box-sizing: border-box;
  width: 40px;
  height: 38px;
  right: 1px;
  top: 1px;
  padding: 4px 8px;
  margin: 0;
  text-decoration: none;
  text-align: center;
  cursor: pointer;
  transition: transform 0.2s ease;
}
.monsterinsights-admin-page .monsterinsights-user-journey-report .multiselect__select:before {
  position: relative;
  right: 0;
  top: 65%;
  color: #999;
  margin-top: 4px;
  border-style: solid;
  border-width: 5px 5px 0 5px;
  border-color: #999999 transparent transparent transparent;
  content: " ";
}
.monsterinsights-admin-page .monsterinsights-user-journey-report .multiselect {
  min-width: 160px;
  max-width: 200px;
  margin-right: 15px;
}
@media (max-width: 1130px) {
  .monsterinsights-admin-page .monsterinsights-user-journey-report .multiselect {
    min-width: initial;
    max-width: initial;
    flex-basis: 31%;
    margin-bottom: 15px;
  }
}
@media (max-width: 782px) {
  .monsterinsights-admin-page .monsterinsights-user-journey-report .multiselect {
    flex-basis: 100%;
    margin-right: 0;
  }
}
.monsterinsights-admin-page .monsterinsights-user-journey-report .multiselect .multiselect__placeholder {
  margin-bottom: 9px;
}
.monsterinsights-admin-page .monsterinsights-user-journey-report .multiselect__single {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.monsterinsights-admin-page .monsterinsights-user-journey-report .multiselect__option--highlight {
  background: #acbdc9;
  outline: none;
  color: #fff;
}
.monsterinsights-admin-page .monsterinsights-user-journey-report .multiselect__option--selected {
  background: #f3f3f3;
  color: #35495e;
  font-weight: 700;
}
.monsterinsights-admin-page .monsterinsights-user-journey-report .multiselect__option--selected.multiselect__option--highlight {
  background: #509fe2;
  color: #fff;
}
.monsterinsights-admin-page .monsterinsights-user-journey-report {
  /* Select Field End */
  /* Datepicker start */
}
.monsterinsights-admin-page .monsterinsights-user-journey-report .monsterinsights-reports-datepicker {
  height: 40px;
  margin-right: 15px;
}
@media (max-width: 782px) {
  .monsterinsights-admin-page .monsterinsights-user-journey-report .monsterinsights-reports-datepicker {
    flex-basis: 100%;
    margin-right: 0;
    margin-bottom: 15px;
  }
  .monsterinsights-admin-page .monsterinsights-user-journey-report .monsterinsights-reports-datepicker .monsterinsights-buttons-toggle {
    width: 100%;
    margin-right: 0;
  }
  .monsterinsights-admin-page .monsterinsights-user-journey-report .monsterinsights-reports-datepicker .monsterinsights-buttons-toggle .monsterinsights-button {
    width: 50%;
  }
}
@media (min-width: 783px) and (max-width: 1130px) {
  .monsterinsights-admin-page .monsterinsights-user-journey-report .monsterinsights-reports-datepicker {
    flex-basis: 31%;
    margin-bottom: 15px;
  }
}
.monsterinsights-admin-page .monsterinsights-user-journey-report .monsterinsights-reports-datepicker .monsterinsights-custom-dates-label {
  display: none;
}
.monsterinsights-admin-page .monsterinsights-user-journey-report .monsterinsights-datepicker {
  width: 200px;
  background-color: #8ea4b4;
  font-weight: 700;
  color: #fff;
  text-align: center;
  border-color: #708c9f;
  border-width: 1px 1px 2px;
  border-radius: 3px;
  height: 40px;
  margin: 0;
}
.monsterinsights-admin-page .monsterinsights-user-journey-report .monsterinsights-datepicker::-webkit-input-placeholder {
  color: #fff;
}
.monsterinsights-admin-page .monsterinsights-user-journey-report .monsterinsights-datepicker:-moz-placeholder {
  color: #fff;
}
.monsterinsights-admin-page .monsterinsights-user-journey-report .monsterinsights-datepicker::-moz-placeholder {
  color: #fff;
}
.monsterinsights-admin-page .monsterinsights-user-journey-report .monsterinsights-datepicker:-ms-input-placeholder {
  color: #fff;
}
@media (max-width: 782px) {
  .monsterinsights-admin-page .monsterinsights-user-journey-report .monsterinsights-datepicker {
    width: calc(50% - 5px);
    margin-bottom: 20px;
    margin-top: 10px;
    font-size: 14px;
  }
}
.monsterinsights-admin-page .monsterinsights-user-journey-report .monsterinsights-button.monsterinsights-mobile-details-toggle,
.monsterinsights-admin-page .monsterinsights-user-journey-report .monsterinsights-datepicker, .monsterinsights-admin-page .monsterinsights-user-journey-report .monsterinsights-hide {
  display: none;
}
.monsterinsights-admin-page .monsterinsights-user-journey-report .monsterinsights-reports-interval-dropdown-container {
  position: relative;
  height: 100%;
}
@media (max-width: 782px) {
  .monsterinsights-admin-page .monsterinsights-user-journey-report .monsterinsights-reports-interval-dropdown-container {
    max-width: 100%;
    width: 100%;
  }
}
.monsterinsights-admin-page .monsterinsights-user-journey-report .monsterinsights-reports-interval-dropdown-container.monsterinsights-hide,
.monsterinsights-admin-page .monsterinsights-user-journey-report .monsterinsights-reports-interval-dropdown-container .monsterinsights-hide {
  display: none;
}
.monsterinsights-admin-page .monsterinsights-user-journey-report .monsterinsights-reports-interval-dropdown-container .flatpickr-wrapper {
  display: block;
}
.monsterinsights-admin-page .monsterinsights-user-journey-report .monsterinsights-reports-interval-dropdown-container .flatpickr-wrapper .flatpickr-calendar {
  width: 100%;
}
.monsterinsights-admin-page .monsterinsights-user-journey-report .monsterinsights-reports-interval-dropdown-container .flatpickr-calendar.static.open {
  position: relative;
  box-shadow: none;
  border: none;
  width: 100%;
}
.monsterinsights-admin-page .monsterinsights-user-journey-report .monsterinsights-reports-interval-dropdown-container .flatpickr-calendar.arrowTop:after,
.monsterinsights-admin-page .monsterinsights-user-journey-report .monsterinsights-reports-interval-dropdown-container .flatpickr-calendar.arrowTop:before {
  display: none;
}
.monsterinsights-admin-page .monsterinsights-user-journey-report .monsterinsights-reports-interval-dropdown-container .flatpickr-rContainer {
  width: 100%;
  display: block;
}
.monsterinsights-admin-page .monsterinsights-user-journey-report .monsterinsights-reports-interval-dropdown-container .flatpickr-days,
.monsterinsights-admin-page .monsterinsights-user-journey-report .monsterinsights-reports-interval-dropdown-container .dayContainer {
  width: 100%;
  max-width: 100%;
}
.monsterinsights-admin-page .monsterinsights-user-journey-report .monsterinsights-reports-interval-dropdown-container .flatpickr-day {
  max-width: 100%;
}
.monsterinsights-admin-page .monsterinsights-user-journey-report .monsterinsights-reports-interval-dropdown-container .flatpickr-day.selected,
.monsterinsights-admin-page .monsterinsights-user-journey-report .monsterinsights-reports-interval-dropdown-container .flatpickr-day.startRange,
.monsterinsights-admin-page .monsterinsights-user-journey-report .monsterinsights-reports-interval-dropdown-container .flatpickr-day.endRange,
.monsterinsights-admin-page .monsterinsights-user-journey-report .monsterinsights-reports-interval-dropdown-container .flatpickr-day.selected.inRange,
.monsterinsights-admin-page .monsterinsights-user-journey-report .monsterinsights-reports-interval-dropdown-container .flatpickr-day.startRange.inRange,
.monsterinsights-admin-page .monsterinsights-user-journey-report .monsterinsights-reports-interval-dropdown-container .flatpickr-day.endRange.inRange,
.monsterinsights-admin-page .monsterinsights-user-journey-report .monsterinsights-reports-interval-dropdown-container .flatpickr-day.selected:focus,
.monsterinsights-admin-page .monsterinsights-user-journey-report .monsterinsights-reports-interval-dropdown-container .flatpickr-day.startRange:focus,
.monsterinsights-admin-page .monsterinsights-user-journey-report .monsterinsights-reports-interval-dropdown-container .flatpickr-day.endRange:focus,
.monsterinsights-admin-page .monsterinsights-user-journey-report .monsterinsights-reports-interval-dropdown-container .flatpickr-day.selected:hover,
.monsterinsights-admin-page .monsterinsights-user-journey-report .monsterinsights-reports-interval-dropdown-container .flatpickr-day.startRange:hover,
.monsterinsights-admin-page .monsterinsights-user-journey-report .monsterinsights-reports-interval-dropdown-container .flatpickr-day.endRange:hover,
.monsterinsights-admin-page .monsterinsights-user-journey-report .monsterinsights-reports-interval-dropdown-container .flatpickr-day.selected.prevMonthDay,
.monsterinsights-admin-page .monsterinsights-user-journey-report .monsterinsights-reports-interval-dropdown-container .flatpickr-day.startRange.prevMonthDay,
.monsterinsights-admin-page .monsterinsights-user-journey-report .monsterinsights-reports-interval-dropdown-container .flatpickr-day.endRange.prevMonthDay,
.monsterinsights-admin-page .monsterinsights-user-journey-report .monsterinsights-reports-interval-dropdown-container .flatpickr-day.selected.nextMonthDay,
.monsterinsights-admin-page .monsterinsights-user-journey-report .monsterinsights-reports-interval-dropdown-container .flatpickr-day.startRange.nextMonthDay,
.monsterinsights-admin-page .monsterinsights-user-journey-report .monsterinsights-reports-interval-dropdown-container .flatpickr-day.endRange.nextMonthDay {
  background-color: #509fe2;
  border-color: #509fe2;
}
.monsterinsights-admin-page .monsterinsights-user-journey-report .monsterinsights-reports-interval-dropdown-container .flatpickr-months {
  padding-bottom: 6px;
}
.monsterinsights-admin-page .monsterinsights-user-journey-report .monsterinsights-reports-interval-dropdown-container .flatpickr-months .flatpickr-month {
  height: 36px;
}
.monsterinsights-admin-page .monsterinsights-user-journey-report .monsterinsights-reports-interval-dropdown-container .dayContainer {
  padding: 0 28px;
}
.monsterinsights-admin-page .monsterinsights-user-journey-report .monsterinsights-reports-interval-dropdown-container .flatpickr-weekdays {
  height: 40px;
}
.monsterinsights-admin-page .monsterinsights-user-journey-report .monsterinsights-reports-interval-dropdown-container .flatpickr-weekdaycontainer {
  background: #eceff4;
  padding: 14px 28px;
}
.monsterinsights-admin-page .monsterinsights-user-journey-report .monsterinsights-reports-interval-dropdown-container .flatpickr-current-month {
  font-size: 15px;
  color: #444;
}
.monsterinsights-admin-page .monsterinsights-user-journey-report .monsterinsights-reports-interval-dropdown-container .flatpickr-current-month .numInputWrapper {
  width: 55px;
}
.monsterinsights-admin-page .monsterinsights-user-journey-report .monsterinsights-reports-interval-dropdown-container .flatpickr-current-month .numInputWrapper input.cur-year {
  padding: 0 10px 0 5px;
  min-height: 25px;
  height: auto;
  border: 0 none;
}
.monsterinsights-admin-page .monsterinsights-user-journey-report .monsterinsights-reports-intervals-dropdown {
  position: absolute;
  z-index: 100;
  background: #fff;
  border: 1px solid #d6e2ed;
  border-radius: 3px;
  margin-top: 6px;
  box-shadow: 0 10px 20px rgba(48, 44, 62, 0.05);
  padding: 7px 8px;
  width: 100%;
  left: 0;
  top: 100%;
  min-width: 320px;
}
.monsterinsights-admin-page .monsterinsights-user-journey-report .monsterinsights-reports-intervals-dropdown.monsterinsights-p-0 {
  padding: 0;
  max-width: initial;
  border: 0;
}
.monsterinsights-admin-page .monsterinsights-user-journey-report .monsterinsights-reports-intervals-dropdown button {
  display: block;
  width: 100%;
  margin-bottom: 5px;
  text-align: left;
  background-color: #fff;
  color: #444;
  border: none;
  padding: 10px 12px;
}
.monsterinsights-admin-page .monsterinsights-user-journey-report .monsterinsights-reports-intervals-dropdown button:hover, .monsterinsights-admin-page .monsterinsights-user-journey-report .monsterinsights-reports-intervals-dropdown button:active, .monsterinsights-admin-page .monsterinsights-user-journey-report .monsterinsights-reports-intervals-dropdown button.monsterinsights-interval-active {
  background-color: #eceff4;
  color: #444;
}
.monsterinsights-admin-page .monsterinsights-user-journey-report .monsterinsights-reports-intervals-dropdown button i {
  margin-right: 10px;
}
.monsterinsights-admin-page .monsterinsights-user-journey-report .monsterinsights-reports-interval-date-info {
  background: #fff;
  border: 1px solid #d8d8d8;
  border-radius: 5px;
  cursor: pointer;
  display: inline-block;
  font-size: 14px;
  font-weight: 400;
  padding: 6px 20px 3px 10px;
  position: relative;
  text-align: left;
  width: 100%;
  margin: 0;
  height: 100%;
  color: #35495e;
}
.monsterinsights-admin-page .monsterinsights-user-journey-report .monsterinsights-reports-interval-date-info:hover, .monsterinsights-admin-page .monsterinsights-user-journey-report .monsterinsights-reports-interval-date-info:focus {
  background: #fff;
}
.monsterinsights-admin-page .monsterinsights-user-journey-report .monsterinsights-reports-interval-date-info b {
  font-weight: 400;
}
.monsterinsights-admin-page .monsterinsights-user-journey-report .monsterinsights-reports-interval-date-info > span {
  overflow: hidden;
  white-space: pre;
  text-overflow: ellipsis;
  max-width: 100%;
  display: inline-block;
  line-height: 14px;
}
.monsterinsights-admin-page .monsterinsights-user-journey-report .monsterinsights-reports-interval-date-info i {
  display: none;
}
.monsterinsights-admin-page .monsterinsights-user-journey-report .monsterinsights-reports-interval-date-info:after {
  color: #72777c;
  content: "\f140";
  display: inline-block;
  font: normal 20px/1 dashicons;
  position: absolute;
  right: 20px;
  top: 8px;
  margin: 0;
  border: 0 none;
}
.monsterinsights-admin-page .monsterinsights-user-journey-report .monsterinsights-reports-interval-date-info .monsterinsights-datepicker-interval-dates,
.monsterinsights-admin-page .monsterinsights-user-journey-report .monsterinsights-reports-interval-date-info .monsterinsights-datepicker-colon {
  display: none;
}
.monsterinsights-admin-page .monsterinsights-user-journey-report {
  /* Datepicker end */
}
.monsterinsights-admin-page .monsterinsights-user-journey-report input.monsterinsights-search-transaction-id {
  max-width: 250px;
}
@media (max-width: 1130px) {
  .monsterinsights-admin-page .monsterinsights-user-journey-report input.monsterinsights-search-transaction-id {
    max-width: initial;
    width: 31%;
  }
}
@media (max-width: 782px) {
  .monsterinsights-admin-page .monsterinsights-user-journey-report input.monsterinsights-search-transaction-id {
    width: 50%;
  }
}
.monsterinsights-user-journey-navbar h1 {
  font-size: 23px;
  color: #000;
  line-height: 2.7;
  margin: 0;
}
.monsterinsights-user-journey-report {
  padding: 20px 10px 0 10px;
  position: relative;
}
.monsterinsights-user-journey-report-filters-left {
  display: flex;
  flex-wrap: nowrap;
  padding-right: 15px;
}
@media (max-width: 1130px) {
  .monsterinsights-user-journey-report-filters-left {
    flex-wrap: wrap;
    padding-right: 0;
  }
}
@media (max-width: 1130px) {
  .monsterinsights-user-journey-report-filters-left .monsterinsights-button {
    margin-bottom: 15px;
  }
}
.monsterinsights-user-journey-report-filters {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 1130px) {
  .monsterinsights-user-journey-report-filters {
    display: block;
  }
}
.monsterinsights-user-journey-report-filters-right {
  display: flex;
  flex-grow: 1;
  justify-content: flex-end;
}
@media (max-width: 1130px) {
  .monsterinsights-user-journey-report-filters-right {
    display: block;
  }
}
.monsterinsights-user-journey-report-filters-right button {
  margin-left: 15px;
  flex-shrink: 0;
}
.monsterinsights-user-journey-report .monsterinsights-container {
  min-height: 750px;
}
.monsterinsights-user-journey-report {
  /* Upsell overlay start */
}
.monsterinsights-user-journey-report.monsterinsights-blur .monsterinsights-container {
  filter: blur(5px);
}
.monsterinsights-user-journey-report .monsterinsights-upsell-overlay {
  position: absolute;
  top: 125px;
  left: 50%;
  transform: translateX(-50%);
  width: 750px;
  max-width: 100%;
  box-shadow: 0 5px 25px 0 rgba(0, 0, 0, 0.15);
  background-color: #fff;
  border: 1px solid #d6e2ed;
}
.monsterinsights-user-journey-report .monsterinsights-upsell-overlay .monsterinsights-upsell-top {
  padding: 26px 40px;
  display: flex;
  gap: 16px;
}
@media (max-width: 782px) {
  .monsterinsights-user-journey-report .monsterinsights-upsell-overlay .monsterinsights-upsell-top {
    padding: 0 20px;
  }
}
@media (max-width: 782px) {
  .monsterinsights-user-journey-report .monsterinsights-upsell-overlay {
    top: 70px;
    width: calc(100% - 40px);
  }
}
.monsterinsights-user-journey-report .monsterinsights-upsell-overlay h3 {
  text-align: left;
  color: #23262E;
  font-size: 20px;
  line-height: 100%;
  margin: 0;
}
.monsterinsights-user-journey-report .monsterinsights-upsell-overlay h4 {
  font-size: 16px;
  line-height: 140%;
  color: #444444;
}
.monsterinsights-user-journey-report .monsterinsights-upsell-overlay p {
  margin: 24px 0;
  font-size: 15px;
  line-height: 140%;
  color: #444444;
}
.monsterinsights-user-journey-report .monsterinsights-upsell-overlay .monsterinsights-upsell-content {
  border-top: 1px solid #E2E4E9;
  padding: 32px 0 0 40px;
  display: flex;
  gap: 32px;
  max-width: 750px;
}
.monsterinsights-user-journey-report .monsterinsights-upsell-overlay .monsterinsights-upsell-content__features {
  margin-bottom: 46px;
  flex: 1;
}
.monsterinsights-user-journey-report .monsterinsights-upsell-overlay .monsterinsights-upsell-content__img {
  width: 278px;
  background-position: bottom right;
  background-repeat: no-repeat;
  background-size: contain;
}
.monsterinsights-user-journey-report .monsterinsights-upsell-overlay .monsterinsights-upsell-content__img.upsell-userjourney {
  background-image: url("../assets/bg-user-journey-CpHFTtAb.svg");
  background-position: center right;
}
@media (max-width: 782px) {
  .monsterinsights-user-journey-report .monsterinsights-upsell-overlay .monsterinsights-upsell-content {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.monsterinsights-user-journey-report .monsterinsights-upsell-overlay .monsterinsights-upsell-content h3 {
  font-size: 23px;
  line-height: 120%;
}
.monsterinsights-user-journey-report .monsterinsights-upsell-overlay .monsterinsights-upsell-content ul {
  margin: 16px auto 24px;
  display: grid;
  grid-gap: 10px;
}
.monsterinsights-user-journey-report .monsterinsights-upsell-overlay .monsterinsights-upsell-content ul.columns-1 {
  grid-template-columns: 1fr;
}
.monsterinsights-user-journey-report .monsterinsights-upsell-overlay .monsterinsights-upsell-content ul.columns-2 {
  grid-template-columns: 1fr 1fr;
}
.monsterinsights-user-journey-report .monsterinsights-upsell-overlay .monsterinsights-upsell-content ul li {
  color: #393F4C;
  font-size: 13px;
  padding-left: 24px;
  position: relative;
  line-height: 17px;
}
.monsterinsights-user-journey-report .monsterinsights-upsell-overlay .monsterinsights-upsell-content ul li:before {
  position: absolute;
  width: 16px;
  height: 17px;
  background: url("data:image/svg+xml,%3csvg%20width='16'%20height='17'%20viewBox='0%200%2016%2017'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3crect%20y='0.5'%20width='16'%20height='16'%20rx='8'%20fill='%23EAFAEE'/%3e%3cpath%20d='M11%207.75H8.75V5.5C8.75%205.23438%208.51562%205%208.25%205H7.75C7.46875%205%207.25%205.23438%207.25%205.5V7.75H5C4.71875%207.75%204.5%207.98438%204.5%208.25V8.75C4.5%209.03125%204.71875%209.25%205%209.25H7.25V11.5C7.25%2011.7812%207.46875%2012%207.75%2012H8.25C8.51562%2012%208.75%2011.7812%208.75%2011.5V9.25H11C11.2656%209.25%2011.5%209.03125%2011.5%208.75V8.25C11.5%207.98438%2011.2656%207.75%2011%207.75Z'%20fill='%2346BF40'/%3e%3c/svg%3e") no-repeat center center;
  left: 0;
  display: inline-block;
  top: -1px;
  content: "";
}
.monsterinsights-user-journey-report .monsterinsights-upsell-overlay .monsterinsights-upsell-content a.monsterinsights-button {
  display: inline-flex;
  align-items: center;
  font-weight: bold;
  font-size: 18px;
  line-height: 140%;
  background: #338EEF;
  border: 1px solid #1177E3;
  box-sizing: border-box;
  border-radius: 4px;
  padding: 12px 24px;
  position: relative;
  color: #fff;
}
.monsterinsights-user-journey-report .monsterinsights-upsell-overlay .monsterinsights-upsell-content a.monsterinsights-button:after {
  content: "";
  width: 13px;
  height: 15px;
  margin-left: 12px;
  background: url("data:image/svg+xml,%3csvg%20width='13'%20height='15'%20viewBox='0%200%2013%2015'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cpath%20d='M11.3125%207.75H4.53125V4.93359C4.53125%203.86719%205.37891%202.96484%206.47266%202.9375C7.56641%202.9375%208.46875%203.83984%208.46875%204.90625V5.34375C8.46875%205.72656%208.74219%206%209.125%206H10C10.3555%206%2010.6562%205.72656%2010.6562%205.34375V4.90625C10.6562%202.60938%208.76953%200.75%206.47266%200.75C4.17578%200.777344%202.34375%202.66406%202.34375%204.96094V7.75H1.6875C0.949219%207.75%200.375%208.35156%200.375%209.0625V13.4375C0.375%2014.1758%200.949219%2014.75%201.6875%2014.75H11.3125C12.0234%2014.75%2012.625%2014.1758%2012.625%2013.4375V9.0625C12.625%208.35156%2012.0234%207.75%2011.3125%207.75Z'%20fill='white'/%3e%3c/svg%3e") no-repeat center center;
}
.monsterinsights-user-journey-report {
  /* Upsell overlay end */
}
.monsterinsights-user-journey-report-table {
  margin-top: 20px;
  width: 100%;
  background-color: #fff;
  border: 1px solid #D6E2ED;
  border-collapse: collapse;
}
.monsterinsights-user-journey-report-table th {
  font-size: 15px;
  padding: 14px 12px 12px 12px;
  font-family: "Roboto";
  border-bottom: 1px solid #D6E2ED;
}
.monsterinsights-user-journey-report-table td {
  text-align: center;
  font-size: 14px;
  padding: 16px 10px;
  border-bottom: 1px solid #D6E2ED;
}
.monsterinsights-user-journey-report-table td a {
  text-decoration: none;
}
.monsterinsights-user-journey-report-table tr:nth-child(odd) {
  background-color: #F9FBFF;
}
.monsterinsights-user-journey-report-table .monsterinsights-ujr-table-small-device-label {
  display: none;
}
.monsterinsights-user-journey-report-table.monsterinsights-ujr-table-small-device thead {
  display: none;
}
.monsterinsights-user-journey-report-table.monsterinsights-ujr-table-small-device .monsterinsights-ujr-table-small-device-row {
  position: relative;
}
.monsterinsights-user-journey-report-table.monsterinsights-ujr-table-small-device .monsterinsights-ujr-table-small-device-row.monsterinsights-ujr-table-small-device-row-expanded .monsterinsights-ujr-table-small-device-content {
  display: flex;
}
.monsterinsights-user-journey-report-table.monsterinsights-ujr-table-small-device .monsterinsights-ujr-table-small-device-row.monsterinsights-ujr-table-small-device-row-expanded .monsterinsights-ujr-table-small-device-heading:after {
  transform: rotate(0deg);
}
.monsterinsights-user-journey-report-table.monsterinsights-ujr-table-small-device .monsterinsights-ujr-table-small-device-heading {
  display: flex;
  text-align: left;
  border-top: 1px solid #D6E2ED;
}
.monsterinsights-user-journey-report-table.monsterinsights-ujr-table-small-device .monsterinsights-ujr-table-small-device-heading:after {
  content: "\f01f";
  font-family: Misettings;
  position: absolute;
  right: 10px;
  top: 16px;
  font-size: 18px;
  transform: rotate(180deg);
}
.monsterinsights-user-journey-report-table.monsterinsights-ujr-table-small-device .monsterinsights-ujr-table-small-device-heading .monsterinsights-ujr-table-small-device-label {
  font-weight: bold;
}
.monsterinsights-user-journey-report-table.monsterinsights-ujr-table-small-device .monsterinsights-ujr-table-small-device-content {
  display: none;
  text-align: left;
  margin-left: 30px;
  padding: 10px 5px 10px 0;
}
.monsterinsights-user-journey-report-table.monsterinsights-ujr-table-small-device .monsterinsights-ujr-table-small-device-label {
  flex-basis: 45%;
  flex-shrink: 0;
  display: inline-block;
}
/* Blur contents when needed */
.monsterinsights-blur .monsterinsights-user-journey-report .monsterinsights-container {
  filter: blur(5px);
}
/* Pagination Start */
.user-journey-report-pagination span.pagination-links > .tablenav-pages-navspan:not(:last-child),
.user-journey-report-pagination span.pagination-links > .paging-input:not(:last-child),
.user-journey-report-pagination span.pagination-links > .button:not(:last-child) {
  margin-right: 4px;
}
.user-journey-report-pagination .paging-input input[type=text] {
  padding: 0 4px;
  width: 30px;
  height: 30px;
}
/* Pagination End */
.monsterinsights-table-list-item .monsterinsights-table-exceptions-action a {
  display: flex;
  align-items: center;
  color: #EB5757;
}
.monsterinsights-table-list-item .monsterinsights-table-exceptions-action a:hover {
  color: #EB5757;
}
.monsterinsights-table-list-item .monsterinsights-table-exceptions-action a:focus {
  color: #EB5757;
  outline: 0 none;
  box-shadow: 0 0 0 0;
}
.monsterinsights-table-list-item .monsterinsights-table-exceptions-action svg {
  margin-right: 5px;
}
.monsterinsights-report-exceptions-top .multiselect__select {
  line-height: 16px;
  display: block;
  position: absolute;
  box-sizing: border-box;
  width: 40px;
  height: 38px;
  right: 1px;
  top: 1px;
  padding: 4px 8px;
  margin: 0;
  text-decoration: none;
  text-align: center;
  cursor: pointer;
  transition: transform 0.2s ease;
}
.monsterinsights-report-exceptions-top .multiselect__select:before {
  position: relative;
  right: 0;
  top: 65%;
  color: #999;
  margin-top: 4px;
  border-style: solid;
  border-width: 5px 5px 0 5px;
  border-color: #999999 transparent transparent transparent;
  content: " ";
}
.monsterinsights-report-exceptions-top .multiselect {
  min-width: 160px;
  max-width: 200px;
  margin-right: 15px;
}
@media (max-width: 1130px) {
  .monsterinsights-report-exceptions-top .multiselect {
    min-width: initial;
    max-width: initial;
    flex-basis: 31%;
    margin-bottom: 15px;
  }
}
@media (max-width: 782px) {
  .monsterinsights-report-exceptions-top .multiselect {
    flex-basis: 100%;
    margin-right: 0;
  }
}
.monsterinsights-report-exceptions-top .multiselect .multiselect__placeholder {
  margin-bottom: 9px;
}
.monsterinsights-report-exceptions-top .multiselect__single {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.monsterinsights-report-exceptions-top .multiselect__option--highlight {
  background: #acbdc9;
  outline: none;
  color: #fff;
}
.monsterinsights-report-exceptions-top .multiselect__option--selected {
  background: #f3f3f3;
  color: #35495e;
  font-weight: 700;
}
.monsterinsights-report-exceptions-top .multiselect__option--selected.multiselect__option--highlight {
  background: #509fe2;
  color: #fff;
}
.monsterinsights-report-exceptions-top .multiselect {
  float: right;
}
.monsterinsights-table-box-footer .tablenav {
  margin: 0;
  padding: 0;
}
.monsterinsights-table-box-footer .tablenav .tablenav-pages {
  margin: 0;
}
.monsterinsights-table-box-footer-items-per-page {
  float: left;
}
.monsterinsights-table-box-footer-items-per-page label {
  margin-right: 6px;
}
.monsterinsights-report-exceptions .user-journey-report-pagination {
  float: right;
  clear: unset;
}
body.monsterinsights-reporting-page .monsterinsights-report-exceptions .monsterinsights-export-pdf-report {
  margin: 0;
}
.monsterinsights-exceptions-export {
  margin: 20px 0 80px 0;
}
.monsterinsights-exceptions-export::after {
  display: table;
  content: "";
  clear: both;
}
.monsterinsights-upsell-overlay {
  position: absolute;
  top: 25px;
  left: 50%;
  transform: translateX(-50%);
  width: 750px;
  max-width: 100%;
  box-shadow: 0 5px 25px 0 rgba(0, 0, 0, 0.15);
  background-color: #fff;
  border: 1px solid #d6e2ed;
}
.monsterinsights-upsell-overlay .monsterinsights-upsell-top {
  padding: 26px 40px;
  display: flex;
  gap: 16px;
}
@media (max-width: 782px) {
  .monsterinsights-upsell-overlay {
    top: 70px;
    width: calc(100% - 40px);
  }
}
.monsterinsights-upsell-overlay h3 {
  text-align: left;
  color: #23262E;
  font-size: 20px;
  line-height: 100%;
  margin: 0;
}
.monsterinsights-upsell-overlay h4 {
  font-size: 16px;
  line-height: 140%;
  color: #444444;
}
.monsterinsights-upsell-overlay p {
  margin: 24px 0;
  font-size: 15px;
  line-height: 140%;
  color: #444444;
}
.monsterinsights-upsell-overlay .monsterinsights-upsell-content {
  border-top: 1px solid #E2E4E9;
  padding: 32px 0 0 40px;
}
@media (max-width: 767px) {
  .monsterinsights-upsell-overlay .monsterinsights-upsell-content {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.monsterinsights-upsell-overlay .monsterinsights-upsell-content h3 {
  font-size: 23px;
  line-height: 120%;
}
.monsterinsights-upsell-overlay .monsterinsights-upsell-content ul {
  margin: 16px auto 24px;
  display: grid;
  grid-gap: 10px;
}
.monsterinsights-upsell-overlay .monsterinsights-upsell-content ul.columns-1 {
  grid-template-columns: 1fr;
}
.monsterinsights-upsell-overlay .monsterinsights-upsell-content ul.columns-2 {
  grid-template-columns: 1fr 1fr;
}
.monsterinsights-upsell-overlay .monsterinsights-upsell-content ul li {
  color: #393F4C;
  font-size: 13px;
  padding-left: 24px;
}
@media screen and (max-width: 767px) {
  .monsterinsights-upsell-overlay .monsterinsights-upsell-content ul li {
    padding-left: 0;
  }
}
.monsterinsights-upsell-overlay .monsterinsights-upsell-content ul li {
  position: relative;
  line-height: 17px;
}
.monsterinsights-upsell-overlay .monsterinsights-upsell-content ul li:before {
  position: absolute;
  width: 16px;
  height: 17px;
  background: url("data:image/svg+xml,%3csvg%20width='16'%20height='17'%20viewBox='0%200%2016%2017'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3crect%20y='0.5'%20width='16'%20height='16'%20rx='8'%20fill='%23EAFAEE'/%3e%3cpath%20d='M11%207.75H8.75V5.5C8.75%205.23438%208.51562%205%208.25%205H7.75C7.46875%205%207.25%205.23438%207.25%205.5V7.75H5C4.71875%207.75%204.5%207.98438%204.5%208.25V8.75C4.5%209.03125%204.71875%209.25%205%209.25H7.25V11.5C7.25%2011.7812%207.46875%2012%207.75%2012H8.25C8.51562%2012%208.75%2011.7812%208.75%2011.5V9.25H11C11.2656%209.25%2011.5%209.03125%2011.5%208.75V8.25C11.5%207.98438%2011.2656%207.75%2011%207.75Z'%20fill='%2346BF40'/%3e%3c/svg%3e") no-repeat center center;
  left: 0;
  display: inline-block;
  top: -1px;
  content: "";
}
.monsterinsights-upsell-overlay .monsterinsights-upsell-content .monsterinsights-button {
  display: inline-flex;
  align-items: center;
  font-weight: bold;
  font-size: 18px;
  line-height: 140%;
  background: #338EEF;
  border: 1px solid #1177E3;
  box-sizing: border-box;
  border-radius: 4px;
  padding: 12px 24px;
  position: relative;
}
.monsterinsights-upsell-overlay .monsterinsights-upsell-content .monsterinsights-button:after {
  content: "";
  width: 13px;
  height: 15px;
  margin-left: 12px;
  background: url("data:image/svg+xml,%3csvg%20width='13'%20height='15'%20viewBox='0%200%2013%2015'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cpath%20d='M11.3125%207.75H4.53125V4.93359C4.53125%203.86719%205.37891%202.96484%206.47266%202.9375C7.56641%202.9375%208.46875%203.83984%208.46875%204.90625V5.34375C8.46875%205.72656%208.74219%206%209.125%206H10C10.3555%206%2010.6562%205.72656%2010.6562%205.34375V4.90625C10.6562%202.60938%208.76953%200.75%206.47266%200.75C4.17578%200.777344%202.34375%202.66406%202.34375%204.96094V7.75H1.6875C0.949219%207.75%200.375%208.35156%200.375%209.0625V13.4375C0.375%2014.1758%200.949219%2014.75%201.6875%2014.75H11.3125C12.0234%2014.75%2012.625%2014.1758%2012.625%2013.4375V9.0625C12.625%208.35156%2012.0234%207.75%2011.3125%207.75Z'%20fill='white'/%3e%3c/svg%3e") no-repeat center center;
}
.monsterinsights-upsell-overlay a {
  color: #509fe2;
}
.monsterinsights-upsell-overlay a:hover {
  text-decoration: none;
}
.monsterinsights-upsell-overlay .monsterinsights-upsell-content {
  display: flex;
  gap: 32px;
}
@media screen and (max-width: 767px) {
  .monsterinsights-upsell-overlay .monsterinsights-upsell-content {
    display: block;
  }
}
.monsterinsights-upsell-content {
  max-width: 750px;
}
.monsterinsights-upsell-content p {
  font-size: 16px;
  color: #393f4c;
  line-height: 1.8;
}
.monsterinsights-upsell-content__features {
  margin-bottom: 46px;
  flex: 1;
}
.monsterinsights-upsell-content__features-cliff {
  margin-top: -14px;
}
.monsterinsights-upsell-content__features-cliff p {
  font-size: 13px !important;
  line-height: 17px;
  color: #393F4C !important;
  margin: 0 !important;
}
.monsterinsights-upsell-content__img {
  width: 278px;
  background-position: bottom right;
  background-repeat: no-repeat;
  background-size: contain;
}
.monsterinsights-upsell-content__img.upsell-publisher, .monsterinsights-upsell-content__img.upsell-engagement_overview {
  background-image: url("../assets/bg-publisher@2x-DV7AEtV1.png");
}
.monsterinsights-upsell-content__img.upsell-queries {
  background-image: url("../assets/bg-queries@2x-hMqBKeO_.png");
}
.monsterinsights-upsell-content__img.upsell-forms {
  background-image: url("../assets/bg-forms@2x-DDCVkM3t.png");
}
.monsterinsights-upsell-content__img.upsell-realtime {
  background-image: url("../assets/bg-realtime@2x-Bj4r4U3g.png");
}
.monsterinsights-upsell-content__img.upsell-ecommerce {
  background-image: url("../assets/bg-ecommerce@2x-DqQIAx_E.png");
}
.monsterinsights-upsell-content__img.upsell-ecommerce_funnel {
  background-image: url("../assets/ecommerce-funnel@2x-BfPSZdMV.png");
}
.monsterinsights-upsell-content__img.upsell-dimensions {
  background-image: url("../assets/bg-dimensions@2x-Dygf0shE.png");
  background-position: center center;
}
.monsterinsights-upsell-content__img.upsell-sitespeed {
  background-image: url("../assets/bg-sitespeed@2x-DwC9jlLe.png");
}
.monsterinsights-upsell-content__img.upsell-media {
  background-image: url("../assets/bg-media-upsell-DnlL8gmw.svg");
  background-position: center right;
}
.monsterinsights-upsell-content__img.upsell-traffic {
  background-image: url("../assets/bg-traffic-overview@2x-W3v8TZRO.png");
}
.monsterinsights-upsell-content__img.upsell-traffic_landing_pages {
  background-image: url("../assets/bg-traffic-landing-page@2x-Do5N_DFy.png");
}
.monsterinsights-upsell-content__img.upsell-traffic_technology {
  background-image: url("../assets/bg-traffic-technology@2x-pzDGfzkl.png");
}
.monsterinsights-upsell-content__img.upsell-traffic_source_medium {
  background-image: url("../assets/bg-traffic-source-medium@2x-BEWmnm2N.png");
}
.monsterinsights-upsell-content__img.upsell-traffic_campaign {
  background-image: url("../assets/bg-traffic-campaigns@2x-BEsLG5lW.png");
}
.monsterinsights-upsell-content__img.upsell-ecommerce_product_sales {
  background-image: url("../assets/bg-ecommerce-product-sales@2x-Cn07L8ZY.png");
}
.monsterinsights-upsell-content__img.upsell-ecommerce_coupons {
  background-image: url("../assets/bg-ecommerce-coupons@2x-D9yDcdG9.png");
}
.monsterinsights-upsell-content__img.upsell-cart_abandonment {
  background-image: url("../assets/bg-cart-abandonment@2x-CY5dDLOX.png");
}
.monsterinsights-upsell-content__img.upsell-engagement_pages {
  background-image: url("../assets/bg-engagement-pages@2x-Cy1-nvFe.png");
}
.monsterinsights-upsell-content__img.upsell-countries {
  background-image: url("../assets/bg-countries-DLn_BDC3.png");
}
.monsterinsights-upsell-content__img.upsell-custom_events {
  background-image: url("../assets/custom-events-report-screen-D5UtywA8.png");
}
.monsterinsights-upsell-content__img.upsell-traffic_social {
  background-image: url("../assets/social-media-report@2x-CcLLHYek.png");
}
.monsterinsights-upsell-content__img.upsell-exceptions {
  background-image: url("../assets/exceptions-report-BYAZOdma.png");
}
.monsterinsights-upsell-content .monsterinsights-light {
  color: #657086;
}
.monsterinsights-upsell-content .monsterinsights-button {
  font-size: 17px;
  font-weight: 700;
  padding: 15px 25px;
  line-height: 1;
}
@media (max-width: 782px) {
  .monsterinsights-upsell-content .monsterinsights-button {
    font-size: 15px;
  }
}
.monsterinsights-upsell-content-buttons {
  display: flex;
  flex-direction: column;
  width: max-content;
  align-items: center;
}
.monsterinsights-upsell-content-button-sample-report {
  font-size: 16px;
  margin-top: 20px;
  text-decoration: none;
}
.monsterinsights-report-site-summary {
  padding: 10px 0;
}
.monsterinsights-report-site-summary-title {
  font-size: 24px;
  font-weight: 700;
  line-height: 29px;
}
.monsterinsights-report-site-summary-cards {
  border: 1px solid #D6E2ED;
  background: #fff;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  overflow: hidden;
}
@media (max-width: 1440px) {
  .monsterinsights-report-site-summary-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 960px) {
  .monsterinsights-report-site-summary-cards {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}
.monsterinsights-report-site-summary-card {
  min-height: 100px;
  padding: 25px 15px 15px 25px;
  position: relative;
}
.monsterinsights-report-site-summary-card::before, .monsterinsights-report-site-summary-card::after {
  content: "";
  position: absolute;
  background-color: #D6E2ED;
  z-index: 1;
}
.monsterinsights-report-site-summary-card::after {
  width: 100vw;
  height: 1px;
  left: 0;
  top: -1px;
}
.monsterinsights-report-site-summary-card::before {
  width: 1px;
  height: 100vh;
  left: -1px;
  top: 0;
}
.monsterinsights-report-site-summary-card-title {
  font-size: 18px;
  font-weight: 700;
  line-height: 22px;
  color: #393F4C;
  margin-top: 0;
}
.monsterinsights-report-site-summary-all-time-stats ul {
  margin: 0;
}
.monsterinsights-report-site-summary-all-time-stats ul li {
  display: flex;
  gap: 10px;
  justify-content: space-between;
  margin-bottom: 15px;
}
.monsterinsights-report-site-summary-all-time-stats span {
  font-family: Helvetica;
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  text-align: left;
}
.monsterinsights-report-site-summary-all-time-stats .dashicons-before::before {
  margin-right: 5px;
  font-size: 18px;
  line-height: 1.4;
}
.monsterinsights-report-site-summary-all-time-stats a {
  color: inherit;
  text-decoration: none;
}
.monsterinsights-report-site-summary-all-time-stats a:hover {
  color: #2271b1;
}
.monsterinsights-report-site-summary-most-popular-times h4 {
  font-family: Helvetica;
  font-size: 14px;
  font-weight: 700;
  line-height: 26px;
  text-align: left;
  margin: 0;
}
@media (max-width: 1120px) {
  .monsterinsights-report-site-summary-most-popular-times h4 {
    font-family: Helvetica Neue;
    font-size: 24px;
    font-weight: 400;
    line-height: 34px;
    text-align: left;
    margin: 0;
  }
}
.monsterinsights-report-site-summary-most-popular-times h3 {
  font-family: Helvetica Neue;
  font-size: 24px;
  font-weight: 400;
  line-height: 34px;
  text-align: left;
  margin: 0;
}
@media (max-width: 1220px) {
  .monsterinsights-report-site-summary-most-popular-times h3 {
    font-size: 20px;
  }
}
@media (max-width: 1120px) {
  .monsterinsights-report-site-summary-most-popular-times h3 {
    font-family: Helvetica;
    font-size: 14px;
    font-weight: 700;
    line-height: 26px;
    text-align: left;
    margin: 0;
  }
}
.monsterinsights-report-site-summary-most-popular-times span {
  font-family: Helvetica;
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
}
.monsterinsights-report-site-summary-most-popular-days, .monsterinsights-report-site-summary-most-popular-hours {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
@media (max-width: 1120px) {
  .monsterinsights-report-site-summary-most-popular-days, .monsterinsights-report-site-summary-most-popular-hours {
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 0;
  }
}
.monsterinsights-report-site-summary-most-popular-days > div, .monsterinsights-report-site-summary-most-popular-hours > div {
  margin: 10px 0;
  position: relative;
}
@media (max-width: 1120px) {
  .monsterinsights-report-site-summary-most-popular-days > div, .monsterinsights-report-site-summary-most-popular-hours > div {
    display: flex;
    justify-content: space-between;
    margin: 0;
  }
}
.monsterinsights-report-site-summary-most-popular-days > div:first-child::after, .monsterinsights-report-site-summary-most-popular-days > div:last-child::before, .monsterinsights-report-site-summary-most-popular-hours > div:first-child::after, .monsterinsights-report-site-summary-most-popular-hours > div:last-child::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
}
@media (max-width: 1120px) {
  .monsterinsights-report-site-summary-most-popular-days > div:first-child::after, .monsterinsights-report-site-summary-most-popular-days > div:last-child::before, .monsterinsights-report-site-summary-most-popular-hours > div:first-child::after, .monsterinsights-report-site-summary-most-popular-hours > div:last-child::before {
    content: none;
  }
}
.monsterinsights-report-site-summary-most-popular-days > div:last-child::before, .monsterinsights-report-site-summary-most-popular-hours > div:last-child::before {
  border-left: 1px solid #D6E2ED;
  left: -15%;
}
.monsterinsights-report-site-summary-most-popular-days > div:first-child::after, .monsterinsights-report-site-summary-most-popular-hours > div:first-child::after {
  right: 15%;
  border-left: 1px solid #D6E2ED;
}
.monsterinsights-report-site-summary-two-column {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  row-gap: 15px;
}
@media (max-width: 960px) {
  .monsterinsights-report-site-summary-two-column {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}
.monsterinsights-report-site-summary-quarters div {
  display: flex;
  flex-direction: column;
}
.monsterinsights-report-site-summary-quarters strong {
  font-family: Helvetica;
  font-size: 14px;
  font-weight: 700;
  line-height: 26px;
}
.monsterinsights-report-site-summary-quarters span {
  font-family: Helvetica;
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  text-align: left;
}
.monsterinsights-report-site-summary-subtitle {
  font-family: Helvetica;
  font-size: 17px;
  font-weight: 400;
  line-height: 25px;
  margin-bottom: 20px;
  word-wrap: break-word;
}
.monsterinsights-report-site-summary-most-popular-page {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 160px);
}
.monsterinsights-report-site-summary-most-popular-placeholder::before {
  width: 100%;
  font-size: 120px;
  opacity: 0.3;
}
.monsterinsights-report-site-summary-most-popular-image {
  width: 160px;
  text-align: center;
}
.monsterinsights-report-site-summary-most-popular-image img {
  box-shadow: 0px 15px 35px 0px rgba(0, 0, 0, 0.1019607843);
  max-width: 100%;
  height: auto;
}
.monsterinsights-report-site-summary-table li {
  margin-bottom: 15px;
}
.monsterinsights-report-site-summary-table li::marker {
  font-family: Helvetica;
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  text-align: left;
}
.monsterinsights-report-site-summary-table li span {
  display: flex;
  justify-content: space-between;
  font-family: Helvetica;
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  text-align: left;
}
.monsterinsights-report-site-summary-table a {
  color: inherit;
  text-decoration: none;
}
.monsterinsights-report-site-summary-table a:hover {
  color: #2271b1;
}
.monsterinsights-report-site-summary-upsell {
  position: relative;
}
.monsterinsights-report-site-summary-upsell-blur {
  filter: blur(3px);
}
.monsterinsights-report-site-summary-upsell-banner {
  position: absolute;
  top: 50%;
  right: 50%;
  transform: translate(50%, -50%);
  width: 400px;
  gap: 10px;
  padding: 12px 12px 12px 26px;
  display: flex;
  z-index: 10;
  justify-content: space-between;
  align-items: center;
  vertical-align: middle;
  box-shadow: 0px 15px 35px 0px rgba(0, 0, 0, 0.1019607843);
  background: #ffffff;
}
.monsterinsights-report-site-summary-upsell-banner span {
  font-family: Helvetica Neue;
  font-size: 14px;
  font-weight: 400;
  line-height: 16.7px;
  text-align: center;
}
.monsterinsights-report-site-summary-upsell-banner .dashicons-before::before {
  color: #338EEF;
}
.monsterinsights-report-site-summary-table-item-title {
  text-transform: capitalize;
}
.monsterinsights-reports-page .monsterinsights-header .monsterinsights-container,
.monsterinsights-reports-page .monsterinsights-navigation-bar .monsterinsights-container {
  padding-left: 10px;
  padding-right: 10px;
  width: auto;
}
@media (max-width: 782px) {
  .monsterinsights-reports-page .monsterinsights-header .monsterinsights-container,
  .monsterinsights-reports-page .monsterinsights-navigation-bar .monsterinsights-container {
    padding: 0;
  }
}
@media (max-width: 782px) {
  .monsterinsights-reports-page .monsterinsights-report-top {
    margin-bottom: 25px;
  }
}
.monsterinsights_page.monsterinsights-downloading-pdf-report #wpbody {
  -webkit-filter: blur(15px);
  filter: blur(15px);
}
.monsterinsights_page.monsterinsights-downloading-pdf-report .monsterinsights-pdf-score,
.monsterinsights_page.monsterinsights-downloading-pdf-report .monsterinsights-accordion-item-details {
  display: block !important;
}
.monsterinsights_page.monsterinsights-downloading-pdf-report .monsterinsights-accordion,
.monsterinsights_page.monsterinsights-downloading-pdf-report .monsterinsights-accordion-item-title {
  border: none !important;
}
.monsterinsights_page.monsterinsights-downloading-pdf-report .monsterinsights-accordion .monsterinsights-accordion div:not(:last-child) {
  border: none !important;
}
.monsterinsights_page.monsterinsights-downloading-pdf-report .monsterinsights-progress-circle,
.monsterinsights_page.monsterinsights-downloading-pdf-report .monsterinsights-accordion-item-trigger-icon {
  display: none;
}
.monsterinsights_page.monsterinsights-downloading-pdf-report .monsterinsights-notificationsv3-container {
  display: none;
}
.monsterinsights_page.monsterinsights-downloading-pdf-report .monsterinsights-report-flex {
  display: flex !important;
  flex-flow: row !important;
  -ms-flex-flow: row !important;
}
.monsterinsights_page.monsterinsights-downloading-pdf-report .monsterinsights-report-flex .monsterinsights-reports-pie-chart {
  width: 50% !important;
  border: 1px solid #8da4b5 !important;
  padding: 32px 20px 32px 32px !important;
}
.monsterinsights_page.monsterinsights-downloading-pdf-report .monsterinsights-report-flex .monsterinsights-reports-pie-chart .monsterinsights-reports-pie-chart-holder {
  margin-left: 20px !important;
  justify-content: flex-start !important;
  align-items: flex-start !important;
  flex-flow: row !important;
}
.monsterinsights_page.monsterinsights-downloading-pdf-report .monsterinsights-report-flex .monsterinsights-reports-pie-chart .monsterinsights-reports-pie-chart-and-legend {
  display: flex !important;
  flex-flow: row !important;
  align-items: center !important;
}
.monsterinsights_page.monsterinsights-downloading-pdf-report .monsterinsights-report-flex .monsterinsights-table-box {
  width: 50% !important;
  margin-left: 20px !important;
  margin-top: 0 !important;
}
.monsterinsights_page.monsterinsights-downloading-pdf-report .monsterinsights-report-flex .monsterinsights-table-box:first-child {
  margin-left: 0 !important;
}
.monsterinsights_page.monsterinsights-downloading-pdf-report .monsterinsights-report-site-summary-title {
  font-size: 20px !important;
  line-height: 24px !important;
}
.monsterinsights_page.monsterinsights-downloading-pdf-report .monsterinsights-report-site-summary-card {
  padding: 15px 10px 10px 15px !important;
  min-height: 80px !important;
}
.monsterinsights_page.monsterinsights-downloading-pdf-report .monsterinsights-report-site-summary-card-title {
  font-size: 14px !important;
  line-height: 18px !important;
  margin-bottom: 10px !important;
}
.monsterinsights_page.monsterinsights-downloading-pdf-report .monsterinsights-report-site-summary-all-time-stats ul li {
  margin-bottom: 8px !important;
  gap: 5px !important;
}
.monsterinsights_page.monsterinsights-downloading-pdf-report .monsterinsights-report-site-summary-all-time-stats span {
  font-size: 12px !important;
  line-height: 18px !important;
}
.monsterinsights_page.monsterinsights-downloading-pdf-report .monsterinsights-report-site-summary-all-time-stats .dashicons-before::before {
  font-size: 14px !important;
  margin-right: 3px !important;
}
.monsterinsights_page.monsterinsights-downloading-pdf-report .monsterinsights-report-site-summary-most-popular-times h4 {
  font-size: 12px !important;
  line-height: 16px !important;
  margin-bottom: 5px !important;
}
.monsterinsights_page.monsterinsights-downloading-pdf-report .monsterinsights-report-site-summary-most-popular-times h3 {
  font-size: 16px !important;
  line-height: 20px !important;
}
.monsterinsights_page.monsterinsights-downloading-pdf-report .monsterinsights-report-site-summary-most-popular-times span {
  font-size: 11px !important;
  line-height: 16px !important;
}
.monsterinsights_page.monsterinsights-downloading-pdf-report .monsterinsights-report-site-summary-subtitle {
  font-size: 13px !important;
  line-height: 18px !important;
  margin-bottom: 10px !important;
}
.monsterinsights_page.monsterinsights-downloading-pdf-report .monsterinsights-report-site-summary-quarters strong {
  font-size: 11px !important;
  line-height: 16px !important;
}
.monsterinsights_page.monsterinsights-downloading-pdf-report .monsterinsights-report-site-summary-quarters span {
  font-size: 12px !important;
  line-height: 18px !important;
}
.monsterinsights_page.monsterinsights-downloading-pdf-report .monsterinsights-report-site-summary-table li {
  margin-bottom: 8px !important;
}
.monsterinsights_page.monsterinsights-downloading-pdf-report .monsterinsights-report-site-summary-table li::marker {
  font-size: 12px !important;
  line-height: 18px !important;
}
.monsterinsights_page.monsterinsights-downloading-pdf-report .monsterinsights-report-site-summary-table li span {
  font-size: 12px !important;
  line-height: 18px !important;
}
.monsterinsights_page.monsterinsights-downloading-pdf-report .monsterinsights-report-site-summary-table-item-title {
  font-size: 12px !important;
  line-height: 16px !important;
}
.monsterinsights_page.monsterinsights-downloading-pdf-report .monsterinsights-report-site-summary-most-popular-days > div, .monsterinsights_page.monsterinsights-downloading-pdf-report .monsterinsights-report-site-summary-most-popular-hours > div {
  margin: 5px 0 !important;
}
.monsterinsights_page.monsterinsights-downloading-pdf-report .monsterinsights-report-site-summary-most-popular-days > div h3, .monsterinsights_page.monsterinsights-downloading-pdf-report .monsterinsights-report-site-summary-most-popular-hours > div h3 {
  font-size: 14px !important;
  line-height: 18px !important;
}
.monsterinsights_page.monsterinsights-downloading-pdf-report .monsterinsights-report-site-summary-most-popular-days > div span, .monsterinsights_page.monsterinsights-downloading-pdf-report .monsterinsights-report-site-summary-most-popular-hours > div span {
  font-size: 10px !important;
  line-height: 14px !important;
}
.monsterinsights_page.monsterinsights-downloading-pdf-report .monsterinsights-report-site-summary-two-column {
  row-gap: 8px !important;
}
.monsterinsights_page.monsterinsights-downloading-pdf-report .monsterinsights-reports-page {
  width: 1120px;
}
.monsterinsights_page.monsterinsights-downloading-pdf-report .monsterinsights-reports-page .monsterinsights-report-tabs-navigation button:first-child, .monsterinsights_page.monsterinsights-downloading-pdf-report .monsterinsights-reports-page .monsterinsights-report-tabs-navigation--home button:first-child {
  border-right: 0;
}
@media (max-width: 782px) {
  .monsterinsights_page.monsterinsights-downloading-pdf-report .monsterinsights-reports-page .monsterinsights-report-tabs-navigation button, .monsterinsights_page.monsterinsights-downloading-pdf-report .monsterinsights-reports-page .monsterinsights-report-tabs-navigation--home button {
    font-size: 16px;
    padding: 23px 20px 25px;
    text-align: left;
  }
  .monsterinsights_page.monsterinsights-downloading-pdf-report .monsterinsights-reports-page .monsterinsights-report-infobox-row .monsterinsights-reports-infobox {
    width: 25%;
  }
  .monsterinsights_page.monsterinsights-downloading-pdf-report .monsterinsights-reports-page .monsterinsights-report-infobox-row .monsterinsights-reports-infobox:nth-child(3) {
    border-left: 1px solid #d6e2ed;
  }
  .monsterinsights_page.monsterinsights-downloading-pdf-report .monsterinsights-reports-page .monsterinsights-report-infobox-row .monsterinsights-reports-infobox:nth-child(3),
  .monsterinsights_page.monsterinsights-downloading-pdf-report .monsterinsights-reports-page .monsterinsights-report-infobox-row .monsterinsights-reports-infobox:nth-child(4) {
    border-top: 0;
  }
  .monsterinsights_page.monsterinsights-downloading-pdf-report .monsterinsights-reports-page .monsterinsights-report-flex .monsterinsights-reports-pie-chart .monsterinsights-pie-chart {
    margin: inherit;
  }
  .monsterinsights_page.monsterinsights-downloading-pdf-report .monsterinsights-reports-page .monsterinsights-report-flex .monsterinsights-reports-pie-chart .monsterinsights-pie-chart-legend {
    position: absolute;
    left: 250px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    margin-top: 0;
    margin: 0;
  }
  .monsterinsights_page.monsterinsights-downloading-pdf-report .monsterinsights-reports-page .monsterinsights-report-flex .monsterinsights-report-box {
    width: calc(50% - 12.5px);
    margin-top: 0;
  }
}
@media (max-width: 991px) {
  .monsterinsights_page.monsterinsights-downloading-pdf-report .monsterinsights-reports-page .monsterinsights-report-flex {
    -ms-flex-flow: inherit;
    flex-flow: inherit;
  }
  .monsterinsights_page.monsterinsights-downloading-pdf-report .monsterinsights-reports-page .monsterinsights-report-flex .monsterinsights-reports-pie-chart {
    width: 50%;
  }
  .monsterinsights_page.monsterinsights-downloading-pdf-report .monsterinsights-reports-page .monsterinsights-report-flex .monsterinsights-reports-pie-chart:first-child {
    margin: 0 25px 0 0;
  }
  .monsterinsights_page.monsterinsights-downloading-pdf-report .monsterinsights-reports-page .monsterinsights-report-flex .monsterinsights-table-box {
    margin-left: 20px;
    margin-top: 0;
  }
  .monsterinsights_page.monsterinsights-downloading-pdf-report .monsterinsights-reports-page .monsterinsights-report-flex .monsterinsights-table-box:first-child {
    margin-left: 0;
  }
  .monsterinsights_page.monsterinsights-downloading-pdf-report .monsterinsights-reports-page .monsterinsights-report-flex .monsterinsights-report-2-columns .monsterinsights-table-box {
    width: calc(50% - 12.5px);
  }
  .monsterinsights_page.monsterinsights-downloading-pdf-report .monsterinsights-reports-page .monsterinsights-report-flex.monsterinsights-interests-scroll-report .monsterinsights-table-box {
    width: 100%;
  }
  .monsterinsights_page.monsterinsights-downloading-pdf-report .monsterinsights-reports-page .monsterinsights-reports-pie-chart {
    width: calc(50% - 12.5px);
  }
  .monsterinsights_page.monsterinsights-downloading-pdf-report .monsterinsights-reports-page .monsterinsights-reports-pie-chart:first-child {
    margin: 0 25px 0 0;
  }
  .monsterinsights_page.monsterinsights-downloading-pdf-report .monsterinsights-reports-page .monsterinsights-report-scroll:nth-child(2) {
    width: calc(50% - 12.5px);
    margin-left: 25px;
    margin-top: 0;
  }
}
.monsterinsights-report {
  padding: 20px;
  position: relative;
}
body.monsterinsights-reporting-page #wpbody-content {
  padding-bottom: 0;
}
body.monsterinsights-reporting-page #wpfooter {
  padding-top: 0;
}
body.monsterinsights-reporting-page #wpfooter:before {
  display: none;
}
body.monsterinsights-reporting-page .monsterinsights-red {
  color: #d73638;
}
body.monsterinsights-reporting-page .monsterinsights-green {
  color: #5cc0a5;
  padding-right: 14px;
}
body.monsterinsights-reporting-page .monsterinsights-report-top {
  margin-top: 14px;
}
@media (min-width: 783px) and (max-width: 1130px) {
  body.monsterinsights-reporting-page .monsterinsights-report-top {
    margin-bottom: 25px;
  }
}
body.monsterinsights-reporting-page .monsterinsights-report-top h2 {
  margin: 14px 0 28px;
  display: inline-block;
  color: #393f4c;
  font-size: 24px;
}
@media (max-width: 782px) {
  body.monsterinsights-reporting-page .monsterinsights-report-top h2 {
    display: none;
  }
}
@media (min-width: 783px) and (max-width: 1130px) {
  body.monsterinsights-reporting-page .monsterinsights-report-top h2 {
    display: block;
    margin: 0 0 25px 0;
  }
}
body.monsterinsights-reporting-page .monsterinsights-export-pdf-report {
  float: right;
  margin-right: 25px;
  position: relative;
}
@media (max-width: 782px) {
  body.monsterinsights-reporting-page .monsterinsights-export-pdf-report {
    float: none;
    margin-right: 0;
    margin-bottom: 0;
    text-align: center;
  }
}
@media (min-width: 783px) and (max-width: 1130px) {
  body.monsterinsights-reporting-page .monsterinsights-export-pdf-report {
    float: none;
    margin-bottom: 0;
  }
}
body.monsterinsights-reporting-page .monsterinsights-export-pdf-report .monsterinsights-button {
  background-color: #eceff5;
  color: #444;
  border-color: #d6e2ed;
}
body.monsterinsights-reporting-page .monsterinsights-export-pdf-report .monsterinsights-button:hover, body.monsterinsights-reporting-page .monsterinsights-export-pdf-report .monsterinsights-button:focus {
  background-color: #fff;
}
body.monsterinsights-reporting-page .monsterinsights-export-pdf-report .monsterinsights-button[disabled=disabled] {
  cursor: not-allowed;
}
body.monsterinsights-reporting-page .monsterinsights-export-pdf-report .monsterinsights-export-pdf-report-dropdown {
  margin: 0;
  padding: 0;
  list-style: none;
  width: 230px;
  position: absolute;
  left: 0;
  top: 100%;
  background-color: #fff;
  z-index: 1;
  border: 1px solid #d6e2ed;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.15);
  border-radius: 4px;
}
body.monsterinsights-reporting-page .monsterinsights-export-pdf-report .monsterinsights-export-pdf-report-dropdown li {
  color: #444;
  font-size: 15px;
  margin: 0;
  padding: 10px 20px;
  cursor: pointer;
  border-bottom: 1px solid #eef4fa;
}
body.monsterinsights-reporting-page .monsterinsights-export-pdf-report .monsterinsights-export-pdf-report-dropdown li:last-child {
  border-bottom: none;
}
body.monsterinsights-reporting-page .monsterinsights-export-pdf-report .monsterinsights-export-pdf-report-dropdown li:hover {
  background-color: #f9fbff;
}
body.monsterinsights-reporting-page .monsterinsights-report-realtime .monsterinsights-export-pdf-report {
  margin-right: 0;
}
body.monsterinsights-reporting-page .monsterinsights-reports-datepicker {
  display: flex;
  float: right;
}
@media (max-width: 782px) {
  body.monsterinsights-reporting-page .monsterinsights-reports-datepicker {
    float: none;
    width: 100%;
    flex-flow: wrap;
  }
  body.monsterinsights-reporting-page .monsterinsights-reports-datepicker .monsterinsights-buttons-toggle {
    width: 100%;
    margin-right: 0;
  }
  body.monsterinsights-reporting-page .monsterinsights-reports-datepicker .monsterinsights-buttons-toggle .monsterinsights-button {
    width: 50%;
  }
}
@media (min-width: 783px) and (max-width: 1130px) {
  body.monsterinsights-reporting-page .monsterinsights-reports-datepicker {
    float: right;
  }
}
body.monsterinsights-reporting-page .monsterinsights-datepicker {
  width: 200px;
  background-color: #8ea4b4;
  font-weight: 700;
  color: #fff;
  text-align: center;
  border-color: #708c9f;
  border-width: 1px 1px 2px;
  border-radius: 3px;
  height: 40px;
  margin: 0;
}
body.monsterinsights-reporting-page .monsterinsights-datepicker::-webkit-input-placeholder {
  color: #fff;
}
body.monsterinsights-reporting-page .monsterinsights-datepicker:-moz-placeholder {
  color: #fff;
}
body.monsterinsights-reporting-page .monsterinsights-datepicker::-moz-placeholder {
  color: #fff;
}
body.monsterinsights-reporting-page .monsterinsights-datepicker:-ms-input-placeholder {
  color: #fff;
}
@media (max-width: 782px) {
  body.monsterinsights-reporting-page .monsterinsights-datepicker {
    width: calc(50% - 5px);
    margin-bottom: 20px;
    margin-top: 10px;
    font-size: 14px;
  }
}
body.monsterinsights-reporting-page .monsterinsights-mobile-details-toggle {
  width: calc(50% - 5px);
  margin-bottom: 20px;
  margin-top: 10px;
  margin-left: 10px;
  font-weight: 700;
}
@media (min-width: 783px) {
  body.monsterinsights-reporting-page .monsterinsights-mobile-details-toggle {
    display: none;
  }
}
body.monsterinsights-reporting-page .monsterinsights-info {
  color: #b6c9da;
  cursor: help;
  font-size: 15px;
}
body.monsterinsights-reporting-page .monsterinsights-report-row {
  margin-bottom: 45px;
}
body.monsterinsights-reporting-page .monsterinsights-buttons-toggle .monsterinsights-button {
  background: #eceff5;
  color: #464c57;
  border-bottom-width: 1px;
  border-color: #d6e2ed;
  border-radius: 0;
  line-height: 18px;
  border-right: 0;
  margin: 0;
}
body.monsterinsights-reporting-page .monsterinsights-buttons-toggle .monsterinsights-button:hover {
  background: #fff;
}
body.monsterinsights-reporting-page .monsterinsights-buttons-toggle .monsterinsights-button:focus {
  z-index: 10;
  position: relative;
}
body.monsterinsights-reporting-page .monsterinsights-buttons-toggle .monsterinsights-button:first-child {
  border-top-left-radius: 3px;
  border-bottom-left-radius: 3px;
}
body.monsterinsights-reporting-page .monsterinsights-buttons-toggle .monsterinsights-button:last-child {
  border-top-right-radius: 3px;
  border-bottom-right-radius: 3px;
  border-right: 1px solid #d6e2ed;
}
body.monsterinsights-reporting-page .monsterinsights-buttons-toggle .monsterinsights-button.monsterinsights-selected-interval {
  background: #fff;
  color: #509fe2;
  font-weight: 700;
}
body.monsterinsights-reporting-page .monsterinsights-reports-interval-date-info {
  background: #8ea4b4;
  border-radius: 3px;
  color: #fff;
  border-style: solid;
  border-color: #708c9f;
  border-width: 1px 1px 2px 1px;
  position: relative;
  text-align: left;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.1;
  padding: 10px 20px;
}
body.monsterinsights-reporting-page .monsterinsights-reports-interval-date-info:hover, body.monsterinsights-reporting-page .monsterinsights-reports-interval-date-info:focus {
  background: #3a93dd;
  cursor: pointer;
}
@media (max-width: 782px) {
  body.monsterinsights-reporting-page .monsterinsights-reports-interval-date-info {
    max-width: 100%;
    width: 100%;
    padding: 12px 20px 8px;
  }
  body.monsterinsights-reporting-page .monsterinsights-reports-interval-date-info > span {
    overflow: hidden;
    white-space: pre;
    text-overflow: ellipsis;
    max-width: calc(100% - 40px);
    display: inline-block;
  }
}
body.monsterinsights-reporting-page .monsterinsights-reports-interval-date-info i {
  margin-left: 38px;
  margin-right: 12px;
}
@media (max-width: 782px) {
  body.monsterinsights-reporting-page .monsterinsights-reports-interval-date-info i {
    margin-left: 10px;
    margin-right: 10px;
    vertical-align: top;
    display: inline-block;
  }
}
body.monsterinsights-reporting-page .monsterinsights-reports-interval-date-info:after {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 5px 3.5px 0 3.5px;
  border-color: #fff transparent transparent transparent;
  content: "";
  position: absolute;
  top: 50%;
  margin-top: -2px;
  right: 20px;
}
body.monsterinsights-reporting-page .monsterinsights-datepicker {
  display: none;
}
body.monsterinsights-reporting-page .monsterinsights-hide {
  display: none;
}
body.monsterinsights-reporting-page .monsterinsights-reports-interval-dropdown-container {
  position: relative;
}
@media (max-width: 782px) {
  body.monsterinsights-reporting-page .monsterinsights-reports-interval-dropdown-container {
    max-width: 100%;
    width: 100%;
  }
}
body.monsterinsights-reporting-page .monsterinsights-reports-interval-dropdown-container.monsterinsights-hide,
body.monsterinsights-reporting-page .monsterinsights-reports-interval-dropdown-container .monsterinsights-hide {
  display: none;
}
body.monsterinsights-reporting-page .monsterinsights-reports-interval-dropdown-container .flatpickr-calendar.static.open {
  position: relative;
  box-shadow: none;
  border: none;
  width: 100%;
}
body.monsterinsights-reporting-page .monsterinsights-reports-interval-dropdown-container .flatpickr-calendar.arrowTop:after,
body.monsterinsights-reporting-page .monsterinsights-reports-interval-dropdown-container .flatpickr-calendar.arrowTop:before {
  display: none;
}
body.monsterinsights-reporting-page .monsterinsights-reports-interval-dropdown-container .flatpickr-rContainer {
  width: 100%;
  display: block;
}
body.monsterinsights-reporting-page .monsterinsights-reports-interval-dropdown-container .flatpickr-days,
body.monsterinsights-reporting-page .monsterinsights-reports-interval-dropdown-container .dayContainer {
  width: 100%;
  max-width: 100%;
}
body.monsterinsights-reporting-page .monsterinsights-reports-interval-dropdown-container .flatpickr-day {
  max-width: 100%;
}
body.monsterinsights-reporting-page .monsterinsights-reports-interval-dropdown-container .flatpickr-day.selected,
body.monsterinsights-reporting-page .monsterinsights-reports-interval-dropdown-container .flatpickr-day.startRange,
body.monsterinsights-reporting-page .monsterinsights-reports-interval-dropdown-container .flatpickr-day.endRange,
body.monsterinsights-reporting-page .monsterinsights-reports-interval-dropdown-container .flatpickr-day.selected.inRange,
body.monsterinsights-reporting-page .monsterinsights-reports-interval-dropdown-container .flatpickr-day.startRange.inRange,
body.monsterinsights-reporting-page .monsterinsights-reports-interval-dropdown-container .flatpickr-day.endRange.inRange,
body.monsterinsights-reporting-page .monsterinsights-reports-interval-dropdown-container .flatpickr-day.selected:focus,
body.monsterinsights-reporting-page .monsterinsights-reports-interval-dropdown-container .flatpickr-day.startRange:focus,
body.monsterinsights-reporting-page .monsterinsights-reports-interval-dropdown-container .flatpickr-day.endRange:focus,
body.monsterinsights-reporting-page .monsterinsights-reports-interval-dropdown-container .flatpickr-day.selected:hover,
body.monsterinsights-reporting-page .monsterinsights-reports-interval-dropdown-container .flatpickr-day.startRange:hover,
body.monsterinsights-reporting-page .monsterinsights-reports-interval-dropdown-container .flatpickr-day.endRange:hover,
body.monsterinsights-reporting-page .monsterinsights-reports-interval-dropdown-container .flatpickr-day.selected.prevMonthDay,
body.monsterinsights-reporting-page .monsterinsights-reports-interval-dropdown-container .flatpickr-day.startRange.prevMonthDay,
body.monsterinsights-reporting-page .monsterinsights-reports-interval-dropdown-container .flatpickr-day.endRange.prevMonthDay,
body.monsterinsights-reporting-page .monsterinsights-reports-interval-dropdown-container .flatpickr-day.selected.nextMonthDay,
body.monsterinsights-reporting-page .monsterinsights-reports-interval-dropdown-container .flatpickr-day.startRange.nextMonthDay,
body.monsterinsights-reporting-page .monsterinsights-reports-interval-dropdown-container .flatpickr-day.endRange.nextMonthDay {
  background-color: #509fe2;
  border-color: #509fe2;
}
body.monsterinsights-reporting-page .monsterinsights-reports-interval-dropdown-container .flatpickr-months {
  padding-bottom: 10px;
}
body.monsterinsights-reporting-page .monsterinsights-reports-interval-dropdown-container .dayContainer {
  padding: 0 28px;
}
body.monsterinsights-reporting-page .monsterinsights-reports-interval-dropdown-container .flatpickr-weekdays {
  height: 40px;
}
body.monsterinsights-reporting-page .monsterinsights-reports-interval-dropdown-container .flatpickr-weekdaycontainer {
  background: #eceff4;
  padding: 14px 28px;
}
body.monsterinsights-reporting-page .monsterinsights-reports-interval-dropdown-container .flatpickr-current-month {
  font-size: 15px;
  color: #444;
}
body.monsterinsights-reporting-page .monsterinsights-reports-interval-dropdown-container .flatpickr-current-month .numInputWrapper {
  width: 55px;
}
body.monsterinsights-reporting-page .monsterinsights-reports-interval-dropdown-container .flatpickr-current-month .numInputWrapper input.cur-year {
  padding: 0 10px 0 5px;
  min-height: 25px;
}
.monsterinsights-reports-overview-datagraph-tooltip-container {
  padding: 15px;
  background-color: #fff;
  border-radius: 4px;
  box-shadow: 0 0 24px rgba(89, 164, 234, 0.33);
}
#monsterinsights-chartjs-line-overview-tooltip {
  min-width: 100px;
}
.monsterinsights-reports-overview-datagraph-tooltip-title {
  color: #23282d;
  font-size: 14px;
  font-weight: 400;
  border-bottom: 1px solid #d4e2ef;
  padding-bottom: 5px;
}
.monsterinsights-reports-overview-datagraph-tooltip-title-compare {
  margin-top: 13px;
}
.monsterinsights-reports-overview-datagraph-tooltip-number {
  color: #23282d;
  font-size: 24px;
  font-weight: 400;
  margin-top: 5px;
  margin-bottom: 5px;
}
.monsterinsights-reports-overview-datagraph-tooltip-descriptor {
  color: #23282d;
  font-size: 12px;
  font-weight: 400;
  margin-bottom: 10px;
}
.monsterinsights-reports-overview-datagraph-tooltip-trend {
  color: #23282d;
  font-size: 16px;
  font-weight: 400;
}
.monsterinsights-line-chart-tooltip,
#monsterinsights-chartjs-bar-tooltip {
  opacity: 1;
  position: absolute;
  margin-left: -55px;
}
.monsterinsights-report-tabs-navigation, .monsterinsights-report-tabs-navigation--home {
  display: flex;
}
.monsterinsights-report-tabs-navigation button, .monsterinsights-report-tabs-navigation--home button {
  border-color: #d6e2ed;
  border-style: solid;
  border-width: 1px 0 1px 0;
  background: #eceff4;
  color: #444;
  width: 100%;
  font-weight: 700;
  text-align: left;
  font-size: 18px;
  padding: 23px 20px 25px;
  cursor: pointer;
  margin: 0;
  position: relative;
  border-right: 1px solid #d6e2ed;
}
@media (max-width: 782px) {
  .monsterinsights-report-tabs-navigation button, .monsterinsights-report-tabs-navigation--home button {
    font-size: 14px;
    padding: 13px 20px 15px;
    text-align: center;
  }
}
.monsterinsights-report-tabs-navigation button:focus, .monsterinsights-report-tabs-navigation--home button:focus {
  z-index: 10;
}
.monsterinsights-report-tabs-navigation button.monsterinsights-active-tab-button, .monsterinsights-report-tabs-navigation--home button.monsterinsights-active-tab-button, .monsterinsights-report-tabs-navigation button.monsterinsights-active-tab-button--home, .monsterinsights-report-tabs-navigation--home button.monsterinsights-active-tab-button--home {
  background: #fff;
  color: #509fe2;
  border-bottom: none;
  border-top: 2px solid #3a93dd;
  padding-top: 20px;
}
@media (max-width: 782px) {
  .monsterinsights-report-tabs-navigation button.monsterinsights-active-tab-button, .monsterinsights-report-tabs-navigation--home button.monsterinsights-active-tab-button, .monsterinsights-report-tabs-navigation button.monsterinsights-active-tab-button--home, .monsterinsights-report-tabs-navigation--home button.monsterinsights-active-tab-button--home {
    padding-top: 12px;
  }
}
.monsterinsights-report-tabs-navigation button.monsterinsights-active-tab-button--home, .monsterinsights-report-tabs-navigation--home button.monsterinsights-active-tab-button--home {
  padding-top: 10px;
  border-top: 1px solid #d6e2ed;
  border-bottom: 3px solid #3a93dd;
  background: #f9fbff;
}
.monsterinsights-report-tabs-navigation button i, .monsterinsights-report-tabs-navigation--home button i {
  margin-right: 10px;
  color: #8ba4b7;
}
.monsterinsights-report-tabs-navigation__top-value {
  margin-top: 10px;
  color: #393F4C;
}
.monsterinsights-report-tabs-navigation--home button {
  border-color: #d6e2ed;
  border-style: solid;
  border-width: 1px 0 1px 0;
  background: #fff;
  color: #393F4C;
  width: 100%;
  font-weight: 500;
  text-align: left;
  font-size: 16px;
  padding: 11px 20px 11px;
  cursor: pointer;
  margin: 0;
  position: relative;
  border-right: 1px solid #d6e2ed;
}
.monsterinsights-report-tabs {
  background: #fff;
  border: 1px solid #d6e2ed;
  border-top: none;
}
.monsterinsights-report-tabs .monsterinsights-report-tabs-content {
  padding: 20px;
  position: relative;
}
.monsterinsights-report-tabs .monsterinsights-report-tabs-content-overlay {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
}
.monsterinsights-report-tabs .monsterinsights-report-tabs-content-overlay-box {
  border-radius: 6px;
  border: 2px solid #338EEF;
  text-align: center;
  padding: 0 30px;
  background-color: #fff;
}
.monsterinsights-report-tabs .monsterinsights-report-tabs-content-overlay-box h3 {
  font-size: 24px;
}
.monsterinsights-report-tabs .monsterinsights-report-tabs-content-overlay-box p {
  font-size: 16px;
}
.monsterinsights-report-tabs .monsterinsights-report-tabs-content-overlay-box-icon {
  background-color: #1177E3;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  padding-top: 8px;
  margin: -20px auto 0 auto;
}
.monsterinsights-report-infobox-row {
  display: flex;
  border: 1px solid #d6e2ed;
}
@media (max-width: 782px) {
  .monsterinsights-report-infobox-row {
    flex-flow: wrap;
  }
}
.monsterinsights-report-infobox-row .monsterinsights-reports-infobox {
  width: 25%;
  background: #fff;
  border-left: 1px solid #d6e2ed;
  padding: 17px 20px 15px;
  position: relative;
  box-sizing: border-box;
}
.monsterinsights-report-infobox-row .monsterinsights-reports-infobox .monsterinsights-info {
  position: absolute;
  right: 20px;
  top: 18px;
}
.monsterinsights-report-infobox-row .monsterinsights-reports-infobox:first-child {
  border-left: none;
}
@media (max-width: 782px) {
  .monsterinsights-report-infobox-row .monsterinsights-reports-infobox {
    width: 50%;
  }
  .monsterinsights-report-infobox-row .monsterinsights-reports-infobox:nth-child(3), .monsterinsights-report-infobox-row .monsterinsights-reports-infobox:nth-child(4) {
    border-top: 1px solid #d6e2ed;
  }
  .monsterinsights-report-infobox-row .monsterinsights-reports-infobox:nth-child(3) {
    border-left: none;
  }
}
.monsterinsights-report-infobox-row .monsterinsights-reports-infobox .monsterinsights-report-title {
  padding-right: 18px;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: pre;
  line-height: 1.2;
}
.monsterinsights-report-title {
  font-size: 18px;
  color: #393f4c;
  font-weight: bold;
  margin-top: 0;
}
.monsterinsights-reports-infobox-number {
  font-size: 40px;
  font-weight: 200;
  display: inline-block;
  line-height: 1;
  margin-top: 11px;
  float: left;
}
@media (max-width: 782px) {
  .monsterinsights-reports-infobox-number {
    font-size: 36px;
    float: none;
  }
}
.monsterinsights-reports-infobox-compare,
.monsterinsights-reports-infobox-prev {
  float: right;
}
@media (max-width: 1280px) {
  .monsterinsights-reports-infobox-compare,
  .monsterinsights-reports-infobox-prev {
    float: none;
    clear: both;
  }
}
.monsterinsights-reports-infobox-prev {
  font-size: 16px;
  margin-top: 15px;
}
.monsterinsights-reports-infobox-compare {
  clear: right;
  font-size: 12px;
  color: #acbdc9;
}
.monsterinsights-reports-compare-infobox-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 20px;
}
.monsterinsights-reports-compare-infobox-row .monsterinsights-reports-infobox-number {
  margin: 0;
  float: none;
}
.monsterinsights-reports-compare-infobox-row .monsterinsights-reports-infobox-date-range {
  color: #777777;
  font-size: 14px;
  padding-top: 5px;
}
.monsterinsights-reports-compare-infobox-row .monsterinsights-reports-infobox-prev {
  float: none;
  font-size: 18px;
  margin: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.monsterinsights-buttons-toggle {
  margin-right: 25px;
}
.monsterinsights-report-flex {
  display: flex;
}
@media (max-width: 991px) {
  .monsterinsights-report-flex {
    flex-flow: wrap;
  }
}
@media (min-width: 992px) and (max-width: 1210px) {
  .monsterinsights-reports-pie-chart .monsterinsights-pie-chart-legend {
    left: 210px !important;
  }
}
.monsterinsights-pie-chart-legend-color {
  width: 12px;
  height: 12px;
  display: inline-block;
  margin-right: 5px;
  border-radius: 50%;
}
a.monsterinsights-pie-chart-legend-text-and-value {
  text-decoration: none;
}
a.monsterinsights-pie-chart-legend-text-and-value:hover, a.monsterinsights-pie-chart-legend-text-and-value:focus {
  text-decoration: none;
  outline: none;
  box-shadow: none;
}
.monsterinsights-pie-chart-legend-text {
  min-width: 130px;
  margin-right: 10px;
  display: inline-block;
  font-size: 16px;
  color: #393f4c;
}
@media (min-width: 992px) and (max-width: 1210px) {
  .monsterinsights-pie-chart-legend-text {
    font-size: 14px;
    min-width: auto;
  }
}
.monsterinsights-pie-chart-legend-value {
  color: #393f4c;
  font-size: 18px;
  font-weight: 500;
}
@media (min-width: 992px) and (max-width: 1210px) {
  .monsterinsights-pie-chart-legend-value {
    font-size: 16px;
  }
}
.monsterinsights-reports-pie-chart {
  width: 50%;
  padding: 20px;
  background: #fff;
  border: 1px solid #d6e2ed;
  position: relative;
}
.monsterinsights-reports-pie-chart:first-child {
  margin-right: 25px;
}
@media (max-width: 991px) {
  .monsterinsights-reports-pie-chart:first-child {
    margin: 0 0 25px;
  }
}
@media (max-width: 991px) {
  .monsterinsights-reports-pie-chart {
    width: 100%;
  }
}
.monsterinsights-reports-pie-chart .monsterinsights-reports-pie-chart-holder {
  position: relative;
}
@media (max-width: 782px) {
  .monsterinsights-reports-pie-chart .monsterinsights-pie-chart {
    margin: 0 auto;
  }
}
.monsterinsights-reports-pie-chart .monsterinsights-pie-chart-legend {
  position: absolute;
  left: 250px;
  top: 50%;
  transform: translateY(-50%);
  margin: 0;
}
@media (max-width: 782px) {
  .monsterinsights-reports-pie-chart .monsterinsights-pie-chart-legend {
    position: relative;
    left: auto;
    top: auto;
    transform: none;
    margin-top: 20px;
  }
  .monsterinsights-reports-pie-chart .monsterinsights-pie-chart-legend .monsterinsights-pie-chart-legend-value {
    float: right;
  }
}
.monsterinsights-reports-pie-chart .monsterinsights-pie-chart-tooltip {
  position: absolute;
  pointer-events: none;
}
.monsterinsights-reports-pie-chart .monsterinsights-info {
  position: absolute;
  top: 20px;
  right: 20px;
}
.monsterinsights-reports-pie-chart .monsterinsights-reports-compare-pie-chart-holder {
  margin-top: 30px;
}
.monsterinsights-reports-pie-chart p.monsterinsights-reports-pie-chart-holder-compare-date {
  color: #777777;
  font-size: 15px;
  margin: 0 0 8px 8px;
}
.monsterinsights-table-box {
  border: 1px solid #d6e2ed;
  background: #fff;
  width: 100%;
  padding-top: 18px;
  position: relative;
  display: flex;
  flex-flow: column;
}
.monsterinsights-table-box:first-child {
  margin-left: 0;
  margin-top: 0;
}
.monsterinsights-table-box h3 {
  margin-left: 20px;
}
.monsterinsights-table-box .monsterinsights-info {
  position: absolute;
  top: 20px;
  right: 20px;
}
.monsterinsights-table-box .monsterinsights-has-th-border th {
  border-bottom: 1px solid #d6e2ed;
}
.monsterinsights-table-box.monsterinsights-table-box-no-title {
  padding-top: 0;
}
.monsterinsights-table-box.monsterinsights-table-box-no-title.monsterinsights-table-box-compare-report {
  border-top: 0 none;
}
@media (max-width: 991px) {
  .monsterinsights-table-box {
    margin-left: 0;
    margin-top: 20px;
  }
}
.monsterinsights-table-box-footer {
  background: #f9fbff;
  border-top: 1px solid #d6e2ed;
  padding: 20px;
}
.monsterinsights-table-box-footer:after {
  display: table;
  clear: both;
  content: "";
}
@media (max-width: 782px) {
  .monsterinsights-table-box-footer > .monsterinsights-button {
    width: 100%;
    text-align: center;
  }
}
.monsterinsights-table-list-item {
  padding: 12px 20px;
  min-height: 43px;
  font-size: 14px;
  display: flex;
}
table .monsterinsights-table-list-item {
  display: table-row;
}
.monsterinsights-table-list-item:nth-child(2n+1) {
  background-color: #f9fbff;
}
.monsterinsights-table-list-item .monsterinsights-reports-list-text {
  color: #393f4c;
  white-space: break-spaces;
  text-overflow: ellipsis;
  overflow: hidden;
  vertical-align: middle;
  display: inline-block;
  padding: 1px;
  margin: -1px;
}
.monsterinsights-table-list-item .monsterinsights-reports-list-text a {
  display: inline-block;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
}
.monsterinsights-table-list-item .monsterinsights-reports-list-text img {
  display: inline-block;
  margin-right: 10px;
  vertical-align: middle;
}
.monsterinsights-table-list-item .monsterinsights-flag {
  transform: scale(0.5);
  display: inline-block;
  margin: -12px 0 -10px -8px;
}
.monsterinsights-table-list-item a {
  text-decoration: none;
  color: #393f4c;
}
.monsterinsights-table-list-item a:hover, .monsterinsights-table-list-item a:focus {
  color: #777;
}
.monsterinsights-table-list-item .monsterinsights-reports-list-count {
  display: inline-block;
  min-width: 30px;
  color: #657086;
  font-weight: 400;
  vertical-align: middle;
}
.monsterinsights-table-list-item .monsterinsights-reports-list-number {
  color: #393f4c;
  font-size: 15px;
  text-align: right;
  display: block;
  padding-left: 5px;
}
.monsterinsights-table-box-pagination {
  float: right;
  display: flex;
  align-items: center;
}
@media (max-width: 782px) {
  .monsterinsights-table-box-pagination {
    float: none;
    width: 100%;
    margin-top: 20px;
    justify-content: center;
  }
}
.monsterinsights-table-box-pagination span {
  margin-right: 20px;
  color: #8ba4b7;
}
.monsterinsights-table-box-pagination .monsterinsights-buttons-toggle {
  margin-right: 0;
}
.monsterinsights-table-box-list {
  height: 100%;
}
.monsterinsights-table-box-table .monsterinsights-table-item-content {
  display: flex;
  word-break: break-all;
  align-items: center;
}
@media (max-width: 782px) {
  .monsterinsights-table-box-table .monsterinsights-table-item-content {
    flex-flow: wrap;
  }
}
.monsterinsights-table-box-table .monsterinsights-table-item-content span {
  display: flex;
}
.monsterinsights-table-box-mobile .monsterinsights-table-box-table {
  overflow: auto;
}
.monsterinsights-table-box-mobile .monsterinsights-table-box-table tr {
  display: flex;
  flex-flow: wrap;
  justify-content: space-evenly;
  padding: 0;
}
.monsterinsights-table-box-mobile .monsterinsights-table-box-table tr.monsterinsights-table-list-item-active td {
  display: flex;
  order: 3;
  padding-left: 0;
  margin-left: 50px;
  border-top: 1px solid #d6e2ed;
  font-size: 13px;
  color: #657086;
  padding-top: 8px;
  padding-bottom: 8px;
}
.monsterinsights-table-box-mobile .monsterinsights-table-box-table tr.monsterinsights-table-list-item-active td.monsterinsights-table-cell-1 {
  margin-left: 0;
  order: 1;
  width: 100%;
  padding-left: 20px;
  font-size: 15px;
  color: #393f4c;
  padding-top: 12px;
  padding-bottom: 12px;
  border-top: none;
}
.monsterinsights-table-box-mobile .monsterinsights-table-box-table tr.monsterinsights-table-list-item-active td.monsterinsights-table-cell-1 .monsterinsights-table-item-content:after {
  transform: translateY(-50%) rotate(0);
}
.monsterinsights-table-box-mobile .monsterinsights-table-box-table th,
.monsterinsights-table-box-mobile .monsterinsights-table-box-table td {
  display: none;
  width: 100%;
}
.monsterinsights-table-box-mobile .monsterinsights-table-box-table th.monsterinsights-table-cell-1,
.monsterinsights-table-box-mobile .monsterinsights-table-box-table td.monsterinsights-table-cell-1 {
  display: block;
  width: 100%;
}
.monsterinsights-table-box-mobile .monsterinsights-table-box-table th.monsterinsights-table-cell-1 .monsterinsights-table-item-content,
.monsterinsights-table-box-mobile .monsterinsights-table-box-table td.monsterinsights-table-cell-1 .monsterinsights-table-item-content {
  padding-right: 30px;
  position: relative;
  white-space: pre;
  text-overflow: ellipsis;
  overflow: hidden;
  width: 100%;
}
.monsterinsights-table-box-mobile .monsterinsights-table-box-table th.monsterinsights-table-cell-1 .monsterinsights-table-item-content:after,
.monsterinsights-table-box-mobile .monsterinsights-table-box-table td.monsterinsights-table-cell-1 .monsterinsights-table-item-content:after {
  content: "\f01f";
  display: inline-block;
  font-family: "Misettings";
  font-style: normal;
  font-weight: 400;
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%) rotate(180deg);
  color: #acbdc9;
  transform-origin: 50% 50%;
}
.monsterinsights-table-box-mobile .monsterinsights-table-box-table .monsterinsights-table-mobile-heading {
  min-width: 125px;
}
.monsterinsights-table-box-mobile .monsterinsights-table-box-table .monsterinsights-table-list-item-empty td:first-child .monsterinsights-table-item-content:after {
  display: none;
}
.monsterinsights-table-box-table table {
  width: 100%;
  border-collapse: collapse;
}
.monsterinsights-table-box-mobile .monsterinsights-table-box-table table {
  table-layout: fixed;
}
.monsterinsights-table-box-table th {
  text-align: left;
  font-size: 15px;
}
.monsterinsights-table-box-table td,
.monsterinsights-table-box-table th {
  border: none;
  padding: 12px 10px;
  line-height: 19px;
}
.monsterinsights-table-box-table td:first-child,
.monsterinsights-table-box-table th:first-child {
  padding-left: 20px;
}
.monsterinsights-table-box-table td:last-child,
.monsterinsights-table-box-table th:last-child {
  padding-right: 20px;
}
.monsterinsights-table-box-table td.text-align-center,
.monsterinsights-table-box-table th.text-align-center {
  text-align: center;
}
.monsterinsights-report-2-columns {
  flex-wrap: wrap;
  justify-content: space-between;
}
.monsterinsights-report-2-columns .monsterinsights-table-box {
  width: calc(50% - 12.5px);
}
@media (max-width: 991px) {
  .monsterinsights-report-2-columns .monsterinsights-table-box {
    width: 100%;
  }
}
.monsterinsights-report-2-columns.monsterinsights-report-infobox-row .monsterinsights-reports-infobox {
  width: 50%;
}
.monsterinsights-report-2-columns .monsterinsights-table-box:nth-child(n+1) {
  margin-left: 0;
}
.monsterinsights-report-2-columns .monsterinsights-table-box:nth-child(n+3) {
  margin-top: 25px;
}
.monsterinsights-report-flex .monsterinsights-report-box {
  width: calc(50% - 12.5px);
}
@media (max-width: 782px) {
  .monsterinsights-report-flex .monsterinsights-report-box {
    width: 100%;
    margin-top: 20px;
  }
  .monsterinsights-report-flex .monsterinsights-report-box:first-child {
    margin-top: 0;
  }
}
.monsterinsights-reports-tooltip {
  font-family: "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
}
/*Arrows*/
.monsterinsights-arrow {
  width: 12.5px;
  height: 13px;
  display: inline-block;
  background-size: contain;
  background-repeat: no-repeat;
  margin: 4px;
}
.monsterinsights-arrow.monsterinsights-down {
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABkAAAAaCAMAAAB1owf/AAAAXVBMVEUAAADYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjip09rAAAAHnRSTlMA8IciAeKVlnAwD/bp1ci5on1URtyyl2dhPzccFQOiNcZVAAAAg0lEQVQoz9XNWQ6DMAxFUUNCmwBl7Dx4/8tsjCAvQd4A98OWdT5MaOr74UtaLTOPqhRByuNL7fxefs9ZoOPmlYsdmB3RLdzFOxV759BMHQv5REqWJjKV7NZEGRc4WVqpMqu4CBtdP4s8IoAujQwACAFAAI3OABAgJ4BGgJzkuVrt0+sPB0gVjZ7FTpgAAAAASUVORK5CYII=");
}
.monsterinsights-arrow.monsterinsights-down.monsterinsights-green {
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABkAAAAaCAMAAAB1owf/AAAAWlBMVEUAAABcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKXnJVaBAAAAHXRSTlMADloG+qFg0bOrm1RNGJCAd3FoRe/Zyci8kjIuLCxb7jsAAACJSURBVCjP3cpbFsIgDEXRC8G29mVrfWvmP00DcREtHYHnI0A2sB7T5LEVnZh52RLHkv8DeblCnhTnnc/DSlquZXWQd+1+ZIwrwoWlqzORv7EBS4jnjbLMCUYAfaKGPlIlaIFMO5UuKGidUhp6BYwsAULOhxVYldFewagAowxFxwiNQkkKZf38DW9jKhaFyDomEwAAAABJRU5ErkJggg==");
}
.monsterinsights-arrow.monsterinsights-up {
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABkAAAAaCAMAAAB1owf/AAAAWlBMVEUAAABcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKVcwKXnJVaBAAAAHXRSTlMA8Icj45jrlzD20bqkfXJkV0sUD9zWxbaLcT43HO3asg8AAACASURBVCjP3clJFsIgEADRisRA5slZuf81ReQ1UZILpBa1+SyaDeup3OotsPa4AUIJCCUQKYVIERKKcC7dKqEIp1fmfugDRcgVXui+JFAogtB60nDxYBDh5mng6p49WQj6IyNTZcsHP0JjbQfMd8Of0I9IIqEdSOGkXZWhrpsJ6Q1+nBSNjDcDLgAAAABJRU5ErkJggg==");
}
.monsterinsights-arrow.monsterinsights-up.monsterinsights-red {
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAZCAMAAAAc9R5vAAAAV1BMVEUAAADYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjjYNjhHHlCMAAAAHHRSTlMALTzj+N0V79kkHNVD0U5IIBnqy8K3VTcSB704vhc5cQAAAJRJREFUKM/VjUkSwyAMBIeACRhsvC+J/v/ORErZcOADmYOm1F0lIccH51HJoIl0xbQNfaOHKhdT4ZKmLfnoiGrGOirixpsH3p8ySmM7+Zp4bvIrWOaH8MkrrofXlzlmOaHwE1ATd2fx4jZvXAK7/FmgmUdkgWj4hFSPUqA3ZBIQ1w2FELMm5GTB+XOxV8S5EM3nvX4AV4MVrf6KAvgAAAAASUVORK5CYII=");
}
.monsterinsights-reports-overview-datagraph-tooltip-trend {
  font-weight: 700;
}
.monsterinsights-reports-overview-datagraph-tooltip-trend .monsterinsights-arrow {
  margin-right: 5px;
}
.monsterinsights-report-box {
  background: #fff;
  border: 1px solid #d6e2ed;
  padding: 0 20px 20px;
  position: relative;
}
.monsterinsights-report-box .monsterinsights-info {
  position: absolute;
  right: 20px;
  top: 20px;
}
.monsterinsights-report-box-icon-heading {
  display: flex;
  align-items: center;
}
.monsterinsights-report-box-icon-heading h3 {
  color: #509fe2;
  margin-left: 15px;
}
.monsterinsights-realtime-large {
  font-size: 150px;
  text-align: center;
  line-height: 1.5;
  color: #393f4c;
}
.monsterinsights-realtime-active {
  text-align: center;
  width: 100%;
  font-size: 25px;
  line-height: 1;
  margin-top: -50px;
  color: #393f4c;
}
.monsterinsights-realtime-box-content .monsterinsights-line-chart-tooltip {
  max-width: 115px;
}
#monsterinsights-chartjs-pie-age-tooltip {
  margin-left: 23px;
  min-width: 95px;
}
.monsterinsights-blur .monsterinsights-report-top {
  pointer-events: none;
  filter: blur(5px);
}
.monsterinsights-blur .monsterinsights-site-speed-device,
.monsterinsights-blur .monsterinsights-report-row {
  filter: blur(5px);
}
.monsterinsights-blur .monsterinsights-report {
  min-height: 850px;
}
.monsterinsights-blur .upsell-blur {
  background: #fff;
  width: 100%;
  min-height: 100vh;
}
.monsterinsights-blur .upsell-blur img {
  max-width: 100%;
}
.monsterinsights-reports-referral-icon {
  vertical-align: middle;
  margin-right: 10px;
  margin-left: 2px;
}
.monsterinsights-upsell-inline {
  background-image: url("../assets/reports-upsell-bg-Ce6isHlL.png");
  background-repeat: no-repeat;
  background-position: right top;
  background-color: #fff;
  background-size: 452px;
}
@media (max-width: 991px) {
  .monsterinsights-upsell-inline .monsterinsights-upsell-inline-content {
    margin: -20px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.3);
  }
}
.monsterinsights-upsell-content {
  max-width: 750px;
}
.monsterinsights-upsell-content p {
  font-size: 16px;
  color: #393f4c;
  line-height: 1.8;
}
.monsterinsights-upsell-content__features {
  margin-bottom: 46px;
  flex: 1;
}
.monsterinsights-upsell-content__features-cliff {
  margin-top: -14px;
}
.monsterinsights-upsell-content__features-cliff p {
  font-size: 13px !important;
  line-height: 17px;
  color: #393F4C !important;
  margin: 0 !important;
}
.monsterinsights-upsell-content__img {
  width: 278px;
  background-position: bottom right;
  background-repeat: no-repeat;
  background-size: contain;
}
.monsterinsights-upsell-content__img.upsell-publisher, .monsterinsights-upsell-content__img.upsell-engagement_overview {
  background-image: url("../assets/bg-publisher@2x-DV7AEtV1.png");
}
.monsterinsights-upsell-content__img.upsell-queries {
  background-image: url("../assets/bg-queries@2x-hMqBKeO_.png");
}
.monsterinsights-upsell-content__img.upsell-forms {
  background-image: url("../assets/bg-forms@2x-DDCVkM3t.png");
}
.monsterinsights-upsell-content__img.upsell-realtime {
  background-image: url("../assets/bg-realtime@2x-Bj4r4U3g.png");
}
.monsterinsights-upsell-content__img.upsell-ecommerce {
  background-image: url("../assets/bg-ecommerce@2x-DqQIAx_E.png");
}
.monsterinsights-upsell-content__img.upsell-ecommerce_funnel {
  background-image: url("../assets/ecommerce-funnel@2x-BfPSZdMV.png");
}
.monsterinsights-upsell-content__img.upsell-dimensions {
  background-image: url("../assets/bg-dimensions@2x-Dygf0shE.png");
  background-position: center center;
}
.monsterinsights-upsell-content__img.upsell-sitespeed {
  background-image: url("../assets/bg-sitespeed@2x-DwC9jlLe.png");
}
.monsterinsights-upsell-content__img.upsell-media {
  background-image: url("../assets/bg-media-upsell-DnlL8gmw.svg");
  background-position: center right;
}
.monsterinsights-upsell-content__img.upsell-traffic {
  background-image: url("../assets/bg-traffic-overview@2x-W3v8TZRO.png");
}
.monsterinsights-upsell-content__img.upsell-traffic_landing_pages {
  background-image: url("../assets/bg-traffic-landing-page@2x-Do5N_DFy.png");
}
.monsterinsights-upsell-content__img.upsell-traffic_technology {
  background-image: url("../assets/bg-traffic-technology@2x-pzDGfzkl.png");
}
.monsterinsights-upsell-content__img.upsell-traffic_source_medium {
  background-image: url("../assets/bg-traffic-source-medium@2x-BEWmnm2N.png");
}
.monsterinsights-upsell-content__img.upsell-traffic_campaign {
  background-image: url("../assets/bg-traffic-campaigns@2x-BEsLG5lW.png");
}
.monsterinsights-upsell-content__img.upsell-ecommerce_product_sales {
  background-image: url("../assets/bg-ecommerce-product-sales@2x-Cn07L8ZY.png");
}
.monsterinsights-upsell-content__img.upsell-ecommerce_coupons {
  background-image: url("../assets/bg-ecommerce-coupons@2x-D9yDcdG9.png");
}
.monsterinsights-upsell-content__img.upsell-cart_abandonment {
  background-image: url("../assets/bg-cart-abandonment@2x-CY5dDLOX.png");
}
.monsterinsights-upsell-content__img.upsell-engagement_pages {
  background-image: url("../assets/bg-engagement-pages@2x-Cy1-nvFe.png");
}
.monsterinsights-upsell-content__img.upsell-countries {
  background-image: url("../assets/bg-countries-DLn_BDC3.png");
}
.monsterinsights-upsell-content__img.upsell-traffic_social {
  background-image: url("../assets/social-media-report@2x-CcLLHYek.png");
}
.monsterinsights-upsell-content__img.upsell-exceptions {
  background-image: url("../assets/exceptions-report-BYAZOdma.png");
}
.monsterinsights-upsell-content__img.upsell-traffic_ai {
  background-image: url("../assets/bg-traffic-ai-BccoVVrZ.jpeg");
  background-position: center right;
}
.monsterinsights-upsell-content__img.upsell-ecommerce_refunds {
  background-image: url("../assets/bg-ecommerce-refunds-DxdhP2e9.png");
}
.monsterinsights-upsell-content__img.upsell-ecommerce_refunds_by_geo {
  background-image: url("../assets/bg-ecommerce-refunds-by-geo-CF8FERm4.png");
}
.monsterinsights-upsell-content__img.upsell-ecommerce_purchases_by_location {
  background-image: url("../assets/bg-ecommerce-purchases-by-location-BmdZbgBZ.png");
}
.monsterinsights-upsell-content__img.upsell-ecommerce_spend_by_day {
  background-image: url("../assets/bg-ecommerce-spend-by-day-DIonvSx0.png");
}
.monsterinsights-upsell-content__img.upsell-ecommerce_spend_by_hour {
  background-image: url("../assets/bg-ecommerce-spend-by-hour-q1WFcc3y.png");
}
.monsterinsights-upsell-content .monsterinsights-light {
  color: #657086;
}
.monsterinsights-upsell-content .monsterinsights-button {
  font-size: 17px;
  font-weight: 700;
  padding: 15px 25px;
  line-height: 1;
}
@media (max-width: 782px) {
  .monsterinsights-upsell-content .monsterinsights-button {
    font-size: 15px;
  }
}
.monsterinsights-upsell-content-buttons {
  display: flex;
  flex-direction: column;
  width: max-content;
  align-items: center;
}
.monsterinsights-upsell-content-button-sample-report {
  font-size: 16px;
  margin-top: 20px;
  text-decoration: none;
}
.monsterinsights-upsell-overlay {
  position: absolute;
  top: 25px;
  left: 50%;
  transform: translateX(-50%);
  width: 750px;
  max-width: 100%;
  box-shadow: 0 5px 25px 0 rgba(0, 0, 0, 0.15);
  background-color: #fff;
  border: 1px solid #d6e2ed;
}
.monsterinsights-upsell-overlay .monsterinsights-upsell-top {
  padding: 26px 40px;
  display: flex;
  gap: 16px;
}
@media (max-width: 782px) {
  .monsterinsights-upsell-overlay {
    top: 70px;
    width: calc(100% - 40px);
  }
}
.monsterinsights-upsell-overlay h3 {
  text-align: left;
  color: #23262E;
  font-size: 20px;
  line-height: 100%;
  margin: 0;
}
.monsterinsights-upsell-overlay h4 {
  font-size: 16px;
  line-height: 140%;
  color: #444444;
}
.monsterinsights-upsell-overlay p {
  margin: 24px 0;
  font-size: 15px;
  line-height: 140%;
  color: #444444;
}
.monsterinsights-upsell-overlay .monsterinsights-upsell-content {
  border-top: 1px solid #E2E4E9;
  padding: 32px 0 0 40px;
}
@media (max-width: 767px) {
  .monsterinsights-upsell-overlay .monsterinsights-upsell-content {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.monsterinsights-upsell-overlay .monsterinsights-upsell-content h3 {
  font-size: 23px;
  line-height: 120%;
}
.monsterinsights-upsell-overlay .monsterinsights-upsell-content ul {
  margin: 16px auto 24px;
  display: grid;
  grid-gap: 10px;
}
.monsterinsights-upsell-overlay .monsterinsights-upsell-content ul.columns-1 {
  grid-template-columns: 1fr;
}
.monsterinsights-upsell-overlay .monsterinsights-upsell-content ul.columns-2 {
  grid-template-columns: 1fr 1fr;
}
.monsterinsights-upsell-overlay .monsterinsights-upsell-content ul li {
  color: #393F4C;
  font-size: 13px;
  padding-left: 24px;
}
@media screen and (max-width: 767px) {
  .monsterinsights-upsell-overlay .monsterinsights-upsell-content ul li {
    padding-left: 0;
  }
}
.monsterinsights-upsell-overlay .monsterinsights-upsell-content ul li {
  position: relative;
  line-height: 17px;
}
.monsterinsights-upsell-overlay .monsterinsights-upsell-content ul li:before {
  position: absolute;
  width: 16px;
  height: 17px;
  background: url("data:image/svg+xml,%3csvg%20width='16'%20height='17'%20viewBox='0%200%2016%2017'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3crect%20y='0.5'%20width='16'%20height='16'%20rx='8'%20fill='%23EAFAEE'/%3e%3cpath%20d='M11%207.75H8.75V5.5C8.75%205.23438%208.51562%205%208.25%205H7.75C7.46875%205%207.25%205.23438%207.25%205.5V7.75H5C4.71875%207.75%204.5%207.98438%204.5%208.25V8.75C4.5%209.03125%204.71875%209.25%205%209.25H7.25V11.5C7.25%2011.7812%207.46875%2012%207.75%2012H8.25C8.51562%2012%208.75%2011.7812%208.75%2011.5V9.25H11C11.2656%209.25%2011.5%209.03125%2011.5%208.75V8.25C11.5%207.98438%2011.2656%207.75%2011%207.75Z'%20fill='%2346BF40'/%3e%3c/svg%3e") no-repeat center center;
  left: 0;
  display: inline-block;
  top: -1px;
  content: "";
}
.monsterinsights-upsell-overlay .monsterinsights-upsell-content .monsterinsights-button {
  display: inline-flex;
  align-items: center;
  font-weight: bold;
  font-size: 18px;
  line-height: 140%;
  background: #338EEF;
  border: 1px solid #1177E3;
  box-sizing: border-box;
  border-radius: 4px;
  padding: 12px 24px;
  position: relative;
}
.monsterinsights-upsell-overlay .monsterinsights-upsell-content .monsterinsights-button:after {
  content: "";
  width: 13px;
  height: 15px;
  margin-left: 12px;
  background: url("data:image/svg+xml,%3csvg%20width='13'%20height='15'%20viewBox='0%200%2013%2015'%20fill='none'%20xmlns='http://www.w3.org/2000/svg'%3e%3cpath%20d='M11.3125%207.75H4.53125V4.93359C4.53125%203.86719%205.37891%202.96484%206.47266%202.9375C7.56641%202.9375%208.46875%203.83984%208.46875%204.90625V5.34375C8.46875%205.72656%208.74219%206%209.125%206H10C10.3555%206%2010.6562%205.72656%2010.6562%205.34375V4.90625C10.6562%202.60938%208.76953%200.75%206.47266%200.75C4.17578%200.777344%202.34375%202.66406%202.34375%204.96094V7.75H1.6875C0.949219%207.75%200.375%208.35156%200.375%209.0625V13.4375C0.375%2014.1758%200.949219%2014.75%201.6875%2014.75H11.3125C12.0234%2014.75%2012.625%2014.1758%2012.625%2013.4375V9.0625C12.625%208.35156%2012.0234%207.75%2011.3125%207.75Z'%20fill='white'/%3e%3c/svg%3e") no-repeat center center;
}
.monsterinsights-upsell-overlay a {
  color: #509fe2;
}
.monsterinsights-upsell-overlay a:hover {
  text-decoration: none;
}
.monsterinsights-center {
  text-align: center;
}
.monsterinsights-mobile-upsell {
  text-align: center;
}
.monsterinsights-mobile-upsell .monsterinsights-notice {
  border-top: 1px solid #d6e2ed;
  border-right: 1px solid #d6e2ed;
  border-bottom: 1px solid #d6e2ed;
}
.monsterinsights-mobile-upsell .monsterinsights-notice-inner {
  margin-top: 0;
}
@media (min-width: 783px) {
  .monsterinsights-mobile-upsell {
    display: none;
  }
}
.monsterinsights-mobile-upsell .monsterinsights-notice-success .monsterinsights-notice-button {
  margin-right: 0;
}
@media (max-width: 782px) {
  .monsterinsights-overview-upsell-desktop {
    display: none;
  }
}
.monsterinsights-report-realtime .monsterinsights-table-box th:first-child {
  width: auto;
}
.monsterinsights-reports-list-title {
  display: inline-block;
  word-break: break-all;
}
@media (max-width: 782px) {
  .monsterinsights-reports-list-title {
    width: calc(100% - 30px);
    text-overflow: ellipsis;
    overflow: hidden;
  }
}
.monsterinsights-report-traffic-social .monsterinsights-reports-list-title,
.monsterinsights-report-traffic-ai .monsterinsights-reports-list-title {
  display: flex;
  align-items: center;
}
.monsterinsights-report-traffic-social .monsterinsights-reports-list-title img,
.monsterinsights-report-traffic-ai .monsterinsights-reports-list-title img {
  width: 22px;
  max-height: 22px;
}
.monsterinsights-report-traffic-social .monsterinsights-reports-list-title span,
.monsterinsights-report-traffic-ai .monsterinsights-reports-list-title span {
  margin-left: 6px;
}
.monsterinsights-report-scroll {
  display: flex;
  justify-content: center;
  flex-flow: column;
}
.monsterinsights-report-scroll:nth-child(2) {
  width: calc(50% - 12.5px);
  margin-left: 25px;
}
@media (max-width: 991px) {
  .monsterinsights-report-scroll:nth-child(2) {
    width: 100%;
    margin-left: 0;
    margin-top: 25px;
  }
}
@media (max-width: 782px) {
  .monsterinsights-report-scroll {
    width: 100%;
    margin-left: 0;
  }
}
.monsterinsights-report-scroll > h3 {
  position: absolute;
  top: 0;
}
.monsterinsights-report-scroll .monsterinsights-realtime-active {
  margin: 0 0 50px;
}
.monsterinsights-report-scroll .monsterinsights-realtime-box-content {
  margin: 25px 0;
}
.monsterinsights-report-scroll .monsterinsights-realtime-large {
  line-height: 1;
  margin: 50px 0 0;
  font-size: 80px;
}
.monsterinsights-not-authenticated-notice {
  position: fixed;
  top: 40%;
  left: 50%;
  width: 750px;
  max-width: 100%;
  margin-left: -295px;
  background: #fff;
  padding: 0 20px 20px;
  box-shadow: 0 5px 25px 0 rgba(0, 0, 0, 0.15);
  border: 1px solid #d6e2ed;
  text-align: center;
}
@media (min-width: 783px) {
  .folded .monsterinsights-not-authenticated-notice {
    margin-left: -357px;
  }
}
@media (max-width: 960px) {
  .monsterinsights-not-authenticated-notice {
    margin-left: -357px;
  }
}
@media (max-width: 750px) {
  .monsterinsights-not-authenticated-notice {
    left: 0;
    margin-left: 0;
  }
}
@media (min-width: 750px) and (max-width: 782px) {
  .monsterinsights-not-authenticated-notice {
    margin-left: -375px;
  }
}
.monsterinsights-not-authenticated-notice .monsterinsights-auth-manual-connect-paragraph {
  display: none;
}
.monsterinsights-not-authenticated-notice h3 {
  text-align: center;
  color: #393f4c;
  font-size: 20px;
  margin: 32px 0 20px;
  line-height: 1.4;
}
.monsterinsights-not-authenticated-notice .monsterinsights-settings-input-authenticate {
  text-align: center;
}
.monsterinsights-not-authenticated-notice .monsterinsights-license-button {
  line-height: 1;
  margin-top: 20px;
}
.monsterinsights-not-authenticated-notice .monsterinsights-settings-input .monsterinsights-button {
  font-size: 16px;
  padding: 20px 40px;
  margin: 20px 20px 10px;
  background: #8da4b5;
  border-color: #6f8ca0;
  color: #fff;
}
.monsterinsights-not-authenticated-notice .monsterinsights-settings-input .monsterinsights-button:hover, .monsterinsights-not-authenticated-notice .monsterinsights-settings-input .monsterinsights-button:focus {
  background-color: #7e98ab;
  border-color: #627f94;
  color: #fff;
}
.monsterinsights-not-authenticated-notice .monsterinsights-settings-input .monsterinsights-button.monsterinsights-button-alt {
  background: #509fe2;
  border-color: #2e7fbe;
  color: #fff;
}
.monsterinsights-not-authenticated-notice .monsterinsights-settings-input .monsterinsights-button.monsterinsights-button-alt:hover, .monsterinsights-not-authenticated-notice .monsterinsights-settings-input .monsterinsights-button.monsterinsights-button-alt:focus {
  background-color: #3a93dd;
  border-color: #2971a9;
  color: #fff;
}
.monsterinsights-not-authenticated-notice .monsterinsights-settings-input .monsterinsights-button.monsterinsights-button-disabled {
  background: #f3f6ff;
  border-color: #d6e2eb;
  color: #8ba4b7;
}
.monsterinsights-reports-list-has-overflow {
  cursor: pointer;
}
.monsterinsights-admin-page .monsterinsights-lite-datepicker {
  text-align: center;
  padding: 12px 12px 27px;
}
.monsterinsights-admin-page .monsterinsights-lite-datepicker p {
  color: #444;
  font-size: 15px;
  line-height: 1.5;
  font-weight: 700;
}
.monsterinsights-admin-page .monsterinsights-lite-datepicker .monsterinsights-button-text {
  color: #509fe2;
  display: inline-block;
  width: auto;
}
.monsterinsights-admin-page .monsterinsights-lite-datepicker .monsterinsights-button-text:focus, .monsterinsights-admin-page .monsterinsights-lite-datepicker .monsterinsights-button-text:hover {
  color: #3a93dd;
}
.monsterinsights-admin-page .monsterinsights-lite-datepicker .monsterinsights-button-text i {
  margin-left: 10px;
}
body.monsterinsights-reporting-page .monsterinsights-export-pdf-report-lite .monsterinsights-reports-intervals-dropdown {
  min-width: 250px;
}
body.monsterinsights-reporting-page .monsterinsights-export-pdf-report-lite .monsterinsights-reports-intervals-dropdown .monsterinsights-button {
  background: transparent;
  color: #509fe2;
}
body.monsterinsights-reporting-page .monsterinsights-export-pdf-report-lite .monsterinsights-reports-intervals-dropdown .monsterinsights-button:focus, body.monsterinsights-reporting-page .monsterinsights-export-pdf-report-lite .monsterinsights-reports-intervals-dropdown .monsterinsights-button:hover {
  color: #3a93dd;
}
body.monsterinsights-reporting-page .monsterinsights-notice-error.monsterinsights-license_expired {
  display: none !important;
}
body.monsterinsights-reporting-page .monsterinsights-expired-license-alert-toast .monsterinsights-expired-license-alert {
  text-align: left;
  padding-right: 39px;
}
body.monsterinsights-reporting-page .monsterinsights-expired-license-alert-toast .monsterinsights-expired-license-alert h3 {
  font-size: 40px;
  margin: 0 0 8px 0;
  padding: 0 0 0 0;
}
body.monsterinsights-reporting-page .monsterinsights-expired-license-alert-toast .monsterinsights-expired-license-alert h4 {
  font-size: 20px;
  margin: 0 0 10px 0;
  padding: 0 0 0 0;
}
body.monsterinsights-reporting-page .monsterinsights-expired-license-alert-toast .monsterinsights-expired-license-alert p {
  font-size: 16px;
  margin: 0 0 10px 0;
  padding: 0 0 0 0;
}
.monsterinsights-report-ecommerce-coupons,
.monsterinsights-report-ecommerce-product-sales,
.monsterinsights-report-engagement-pages {
  padding-top: 40px;
}
.monsterinsights-report-ecommerce-coupons .monsterinsights-report-title,
.monsterinsights-report-ecommerce-product-sales .monsterinsights-report-title,
.monsterinsights-report-engagement-pages .monsterinsights-report-title {
  margin-bottom: 30px;
}
.monsterinsights-report-ecommerce-coupons .search-filters,
.monsterinsights-report-ecommerce-product-sales .search-filters,
.monsterinsights-report-engagement-pages .search-filters {
  padding-bottom: 10px;
  margin-right: 25px;
}
.monsterinsights-report-ecommerce-coupons .monsterinsights-reports-datepicker,
.monsterinsights-report-ecommerce-coupons .monsterinsights-export-pdf-report,
.monsterinsights-report-ecommerce-product-sales .monsterinsights-reports-datepicker,
.monsterinsights-report-ecommerce-product-sales .monsterinsights-export-pdf-report,
.monsterinsights-report-engagement-pages .monsterinsights-reports-datepicker,
.monsterinsights-report-engagement-pages .monsterinsights-export-pdf-report {
  margin-top: -10px;
  margin-bottom: 10px;
}
@media (max-width: 782px) {
  .monsterinsights-report-ecommerce-coupons .monsterinsights-report-title,
  .monsterinsights-report-ecommerce-product-sales .monsterinsights-report-title,
  .monsterinsights-report-engagement-pages .monsterinsights-report-title {
    display: none;
  }
  .monsterinsights-report-ecommerce-coupons .search-filters,
  .monsterinsights-report-ecommerce-product-sales .search-filters,
  .monsterinsights-report-engagement-pages .search-filters {
    float: none;
    margin: 0;
  }
  .monsterinsights-report-ecommerce-coupons .search-filters input,
  .monsterinsights-report-ecommerce-product-sales .search-filters input,
  .monsterinsights-report-engagement-pages .search-filters input {
    width: 100%;
  }
  .monsterinsights-report-ecommerce-coupons .monsterinsights-table-mobile,
  .monsterinsights-report-ecommerce-product-sales .monsterinsights-table-mobile,
  .monsterinsights-report-engagement-pages .monsterinsights-table-mobile {
    margin-top: 0;
  }
}
.monsterinsights-report-traffic-technology {
  min-height: 700px;
}
.monsterinsights-report-traffic-technology .monsterinsights-reports-pie-chart.--long-list .monsterinsights-pie-chart {
  position: absolute;
  float: left;
}
.monsterinsights-report-traffic-technology .monsterinsights-reports-pie-chart.--long-list .monsterinsights-pie-chart-legend {
  transform: translateY(0);
  top: 0;
  position: relative;
  width: 50%;
}
@media (max-width: 782px) {
  .monsterinsights-report-traffic-technology .monsterinsights-reports-pie-chart.--long-list .monsterinsights-pie-chart {
    position: relative;
    float: none;
  }
  .monsterinsights-report-traffic-technology .monsterinsights-reports-pie-chart.--long-list .monsterinsights-pie-chart-legend {
    width: 100%;
  }
}
/* Social Report */
.monsterinsights-report-traffic-social .monsterinsights-report-table-wrapper table thead th:first-child a,
.monsterinsights-report-traffic-social .monsterinsights-report-table-wrapper table thead th:first-child a span:first-child,
.monsterinsights-report-traffic-ai .monsterinsights-report-table-wrapper table thead th:first-child a,
.monsterinsights-report-traffic-ai .monsterinsights-report-table-wrapper table thead th:first-child a span:first-child {
  padding-left: 0;
}
.monsterinsights-report-traffic-social .monsterinsights-reports-list-count,
.monsterinsights-report-traffic-ai .monsterinsights-reports-list-count {
  display: none;
}
/* Compare Report Table */
.monsterinsights-table-box-list-compare-thead {
  display: flex;
  padding: 0 20px;
}
.monsterinsights-table-box-list-compare-thead .monsterinsights-table-box-list-compare-th {
  color: #393F4C;
  font-size: 13px;
  font-weight: 500;
}
.monsterinsights-table-box-list-compare-thead .monsterinsights-table-box-list-compare-th-text {
  flex-grow: 1;
}
.monsterinsights-table-box-list-compare-thead .monsterinsights-table-box-list-compare-th-date {
  width: 16%;
  text-align: center;
}
.monsterinsights-table-box-list-compare-thead .monsterinsights-table-box-list-compare-th-change {
  width: 16%;
  text-align: right;
}
.monsterinsights-table-box-list-compare-date-legends {
  padding: 0 0 0 20px;
  margin: 0 0 12px 0;
}
.monsterinsights-table-box-list-compare-date-legends li {
  margin: 0;
  color: #777777;
  position: relative;
  padding: 0 0 0 22px;
}
.monsterinsights-table-box-list-compare-date-legends li + li {
  margin-top: 7px;
}
.monsterinsights-table-box-list-compare-date-legends li:before {
  content: "";
  background-color: #3a93dd;
  position: absolute;
  left: 0;
  top: 50%;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  transform: translateY(-50%);
}
.monsterinsights-table-box-list-compare-date-legends li:nth-child(2):before {
  background-color: #5CC0A5;
}
.monsterinsights-table-list-item-compare .monsterinsights-table-list-item-td-number {
  width: 16%;
}
.monsterinsights-table-list-item-compare .monsterinsights-table-list-item-td-number .monsterinsights-reports-list-number {
  padding: 0;
  text-align: center;
}
.monsterinsights-table-list-item-compare .monsterinsights-table-list-item-td-text {
  flex-grow: 0;
  width: 52%;
}
.monsterinsights-table-list-item-td-text {
  flex-grow: 1;
}
.monsterinsights-table-list-item-td-number {
  flex: 1;
}
.monsterinsights-table-list-header {
  display: flex;
  padding-inline: 20px;
  padding-block: 16px;
  border-block: 1px solid #E2E4E9;
}
.monsterinsights-table-list-header__item {
  flex: 1;
  text-align: right;
  font-weight: 700;
}
.monsterinsights-table-list-header__item:nth-child(1) {
  flex: 1.5;
  text-align: left;
}
.monsterinsights-table-list-header--no-border {
  border-block: none;
}
.monsterinsights-table-list-item-td-change {
  width: 16%;
  text-align: right;
}
.monsterinsights-metric-settings {
  position: absolute;
  right: 20px;
  background-color: #FFF;
  max-width: 366px;
  min-height: 504px;
  z-index: 11;
  border: 1px solid #d6e2ed;
  width: 100%;
  color: #393F4C;
  padding: 40px;
  box-shadow: -10px 14px 34px 0px rgba(0, 0, 0, 0.0588235294);
}
.monsterinsights-metric-settings__title {
  font-weight: 700;
  font-size: 24px;
  color: #393F4C;
  margin-top: 0px;
}
.monsterinsights-metric-settings__description {
  font-weight: 700;
  font-size: 15px;
  padding-bottom: 20px;
  display: block;
  color: #393F4C;
}
.monsterinsights-metric-settings__header {
  cursor: pointer;
  float: right;
  color: #393F4C;
}
.monsterinsights-metric-settings__header .icon--tab {
  width: 16px;
  height: 16px;
}
.monsterinsights-metric-settings__unsaved {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  margin: 16px 0;
  background-color: #FFF3CD;
  border: 1px solid #FFE69C;
  border-radius: 4px;
  font-size: 14px;
  color: #856404;
}
.monsterinsights-metric-settings__unsaved .dashicons {
  color: #856404;
  font-size: 18px;
}
.monsterinsights-metric-settings__actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid #D6E2ED;
}
.monsterinsights-metric-settings__actions button {
  width: 100%;
  padding: 12px 20px;
  font-size: 14px;
  font-weight: 500;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.2s ease;
  text-align: center;
}
.monsterinsights-metric-settings__actions button.monsterinsights-button {
  background-color: #509FE2;
  color: #FFFFFF;
  border: 1px solid #509FE2;
}
.monsterinsights-metric-settings__actions button.monsterinsights-button:hover:not(:disabled) {
  background-color: #3D8FD1;
  border-color: #3D8FD1;
}
.monsterinsights-metric-settings__actions button.monsterinsights-button:disabled, .monsterinsights-metric-settings__actions button.monsterinsights-button.monsterinsights-button-disabled {
  background-color: #E5E5E5;
  border-color: #CCCCCC;
  color: #999999;
  cursor: not-allowed;
  opacity: 0.6;
}
.monsterinsights-metric-settings__actions button.monsterinsights-button-secondary {
  background-color: #FFFFFF;
  color: #509FE2;
  border: 1px solid #509FE2;
}
.monsterinsights-metric-settings__actions button.monsterinsights-button-secondary:hover {
  background-color: #F7FBFF;
}
.monsterinsights-metric-settings-item, .monsterinsights-metric-settings-item--disabled {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}
.monsterinsights-metric-settings-item input[type=checkbox], .monsterinsights-metric-settings-item--disabled input[type=checkbox] {
  display: none;
}
.monsterinsights-metric-settings-item input[type=checkbox]:checked + label .checkbox, .monsterinsights-metric-settings-item--disabled input[type=checkbox]:checked + label .checkbox {
  background-color: #509FE2;
}
.monsterinsights-metric-settings-item input[type=checkbox]:checked + label .checkbox::after, .monsterinsights-metric-settings-item--disabled input[type=checkbox]:checked + label .checkbox::after {
  opacity: 1;
}
.monsterinsights-metric-settings-item label, .monsterinsights-metric-settings-item--disabled label {
  font-size: 14px;
  color: #333;
  cursor: pointer;
}
.monsterinsights-metric-settings-item--disabled {
  opacity: 0.7;
}
.monsterinsights-metric-settings-item .checkbox, .monsterinsights-metric-settings-item--disabled .checkbox {
  display: inline-block;
  width: 20px;
  height: 20px;
  background-color: #509FE2;
  border-radius: 4px;
  position: relative;
  margin-right: 12px;
  vertical-align: middle;
  transition: transform 0.2s ease, background-color 0.2s ease;
}
.monsterinsights-metric-settings-item .checkbox::after, .monsterinsights-metric-settings-item--disabled .checkbox::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 8px;
  height: 4px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: translate(-50%, -50%) rotate(135deg) scaleY(-1);
  opacity: 0;
  transition: opacity 0.2s ease;
}
.monsterinsights-toggle-report {
  position: absolute;
  top: 20px;
  right: 20px;
}
.monsterinsights-toggle-report a {
  font-weight: 700;
  font-size: 15px;
  color: #509FE2;
  text-decoration: underline;
  cursor: pointer;
}
.monsterinsights-toggle-report a.active {
  color: #393F4C;
  text-decoration: none;
  cursor: auto;
}
.monsterinsights-settings-button {
  width: auto !important;
  padding: 10px !important;
}
.icon--tab {
  display: inline-flex;
  width: 20px;
  height: 20px;
  vertical-align: bottom;
  margin-right: 4px;
}
.monsterinsights-reports-metric-upsell {
  position: absolute;
  z-index: 100;
  background: #fff;
  border: 1px solid #d6e2ed;
  border-radius: 3px;
  margin-top: 6px;
  box-shadow: 0 10px 20px rgba(48, 44, 62, 0.05);
  right: 0;
  top: 50%;
  display: flex;
  min-width: 300px;
  justify-content: center;
  font-weight: 700;
}
.monsterinsights-reports-metric-upsell__text {
  padding: 10px;
}
#monsterinsights_reports_widget *, #monsterinsights_reports_widget {
  box-sizing: border-box;
  font-family: "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
}
#monsterinsights_reports_widget .inside {
  margin: 0;
  padding: 0;
}
#monsterinsights_reports_widget button:focus,
#monsterinsights_reports_widget a:focus,
#monsterinsights_reports_widget .monsterinsights-info:focus {
  outline: none;
  box-shadow: 0 0 0 1px #5b9dd9, 0 0 2px 1px rgba(30, 140, 190, 0.8);
}
#monsterinsights_reports_widget .handlediv:focus {
  outline: none;
  box-shadow: none;
}
#monsterinsights_reports_widget .postbox-header .handle-actions {
  display: none;
}
#dashboard-widgets .monsterinsights-reports-link,
#dashboard-widgets .monsterinsights-widget-toggle,
.postbox .inside .monsterinsights-reports-link,
.postbox .inside .monsterinsights-widget-toggle {
  background-color: #fafafa;
  border-bottom: 1px solid #eee;
  cursor: pointer;
  padding: 11px 12px;
  line-height: 1;
  position: relative;
}
#dashboard-widgets .monsterinsights-reports-link:focus,
#dashboard-widgets .monsterinsights-widget-toggle:focus,
.postbox .inside .monsterinsights-reports-link:focus,
.postbox .inside .monsterinsights-widget-toggle:focus {
  outline: none;
  box-shadow: 0 0 0 1px #5b9dd9, 0 0 2px 1px rgba(30, 140, 190, 0.8);
  z-index: 10;
}
#dashboard-widgets .monsterinsights-reports-link h2,
#dashboard-widgets .monsterinsights-widget-toggle h2,
.postbox .inside .monsterinsights-reports-link h2,
.postbox .inside .monsterinsights-widget-toggle h2 {
  display: inline-block;
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
  margin: 0;
  padding: 0;
  color: #23282c;
}
#dashboard-widgets .monsterinsights-reports-link.monsterinsights-widget-toggle-active:after,
#dashboard-widgets .monsterinsights-widget-toggle.monsterinsights-widget-toggle-active:after,
.postbox .inside .monsterinsights-reports-link.monsterinsights-widget-toggle-active:after,
.postbox .inside .monsterinsights-widget-toggle.monsterinsights-widget-toggle-active:after {
  transform: rotate(0deg);
}
#dashboard-widgets .monsterinsights-reports-link,
.postbox .inside .monsterinsights-reports-link {
  cursor: default;
}
#dashboard-widgets .monsterinsights-reports-link .monsterinsights-button,
.postbox .inside .monsterinsights-reports-link .monsterinsights-button {
  font-size: 12px;
  font-weight: bold;
  padding: 5px 9px 4px;
  margin-left: 10px;
}
#dashboard-widgets .monsterinsights-widget-toggle:after,
#dashboard-widgets .monsterinsights-btn-group-label:after,
.postbox .inside .monsterinsights-widget-toggle:after,
.postbox .inside .monsterinsights-btn-group-label:after {
  color: #72777c;
  content: "\f142";
  display: inline-block;
  font: normal 20px/1 dashicons;
  position: absolute;
  right: 7px;
  text-decoration: none !important;
  text-indent: -1px;
  transform: rotate(180deg);
  speak: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  top: 8px;
}
#dashboard-widgets .monsterinsights-btn-group-label:after,
.postbox .inside .monsterinsights-btn-group-label:after {
  right: 2px;
  top: 2px;
}
#dashboard-widgets .monsterinsights-upsell-overlay h3,
.postbox .inside .monsterinsights-upsell-overlay h3 {
  text-align: left;
  color: #393f4c;
  font-size: 20px;
  margin: 12px 0 20px;
  font-weight: 700;
  line-height: 1.4;
}
#dashboard-widgets .monsterinsights-upsell-overlay .monsterinsights-upsell-subtitle,
.postbox .inside .monsterinsights-upsell-overlay .monsterinsights-upsell-subtitle {
  text-align: left;
}
#dashboard-widgets .monsterinsights-upsell-overlay .monsterinsights-upsell-top,
.postbox .inside .monsterinsights-upsell-overlay .monsterinsights-upsell-top {
  padding: 0 20px;
}
#dashboard-widgets .monsterinsights-upsell-overlay .monsterinsights-upsell-content,
.postbox .inside .monsterinsights-upsell-overlay .monsterinsights-upsell-content {
  padding: 20px;
  width: 100%;
}
#dashboard-widgets .monsterinsights-upsell-overlay .monsterinsights-upsell-content ul,
.postbox .inside .monsterinsights-upsell-overlay .monsterinsights-upsell-content ul {
  display: none;
}
#dashboard-widgets .monsterinsights-upsell-overlay .monsterinsights-upsell-content .monsterinsights-button,
.postbox .inside .monsterinsights-upsell-overlay .monsterinsights-upsell-content .monsterinsights-button {
  margin-top: 0;
  font-size: 13px;
  padding: 8px 10px;
}
#dashboard-widgets .monsterinsights-upsell-overlay .monsterinsights-upsell-content .monsterinsights-center,
.postbox .inside .monsterinsights-upsell-overlay .monsterinsights-upsell-content .monsterinsights-center {
  text-align: left;
}
#dashboard-widgets .monsterinsights-button-full-report,
.postbox .inside .monsterinsights-button-full-report {
  font-size: 12px;
  padding: 5px 9px 4px;
  font-weight: 700;
  line-height: 1;
  margin-right: -5px;
  margin-left: 5px;
}
.monsterinsights-widget-cog {
  margin: 0 0 0 10px;
  border: none;
  cursor: pointer;
  display: block;
  height: 20px;
  padding: 0;
  width: 20px;
  color: #72777c;
  background: none;
  font-size: 16px;
}
.monsterinsights-widget-cog:hover, .monsterinsights-widget-cog:focus {
  color: #393f4c;
}
.monsterinsights-widget-dropdown {
  position: relative;
  display: inline-block;
  vertical-align: middle;
}
.monsterinsights-widget-dropdown-content {
  background: #fff;
  border: 1px solid #d8d8d8;
  border-radius: 5px;
  cursor: initial;
  font-weight: 400;
  margin-right: -11px;
  margin-top: 5px;
  padding: 0 10px 10px;
  position: absolute;
  right: 0;
  top: 100%;
  width: 180px;
  z-index: 999;
}
.monsterinsights-widget-dropdown-content:before {
  border-color: transparent transparent #d8d8d8 transparent;
  border-style: solid;
  border-width: 0 4px 4px 4px;
  bottom: 100%;
  content: "";
  height: 0;
  position: absolute;
  right: 16px;
  width: 0;
}
.monsterinsights-widget-dropdown-content:after {
  border-color: transparent transparent #fff transparent;
  border-style: solid;
  border-width: 0 3px 3px 3px;
  bottom: 100%;
  content: "";
  height: 0;
  position: absolute;
  right: 17px;
  width: 0;
}
.monsterinsights-widget-dropdown-content > span {
  color: #999;
  font-size: 10px;
  margin-top: 12px;
  display: block;
}
.monsterinsights-widget-dropdown-content label {
  padding-left: 16px;
  color: #393f4c;
  font-size: 12px;
  position: relative;
  margin-bottom: 4px;
  display: block;
}
.monsterinsights-widget-dropdown-content label:before {
  content: "";
  border: 1px solid #d6e2ed;
  width: 10px;
  height: 10px;
  display: block;
  position: absolute;
  left: 0;
  top: 3px;
}
.monsterinsights-widget-dropdown-content label input[type=checkbox] {
  display: none;
}
.monsterinsights-widget-dropdown-content label.monsterinsights-checked:after {
  content: "";
  border-style: solid;
  border-color: #509fe2;
  border-width: 1px 0 0 1px;
  display: block;
  width: 6px;
  height: 10px;
  position: absolute;
  left: 3px;
  top: 2px;
  transform: rotate(216deg);
}
.monsterinsights-widget-dropdown-content label:focus {
  outline: none;
  box-shadow: 0 0 0 1px #5b9dd9, 0 0 2px 1px rgba(30, 140, 190, 0.8);
}
.monsterinsights-red {
  color: #d73638;
}
.monsterinsights-green {
  color: #5cc0a5;
}
.monsterinsights-btn-group {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  width: 110px;
  margin-right: 0;
}
.monsterinsights-btn-group .monsterinsights-btn-group-list-button,
.monsterinsights-btn-group .monsterinsights-btn-group-label {
  background: #fff;
  border: 1px solid #d8d8d8;
  border-radius: 5px;
  cursor: pointer;
  display: inline-block;
  font-size: 13px;
  font-weight: 400;
  line-height: 1;
  padding: 5px 14px 5px 10px;
  position: relative;
  text-align: left;
  width: 100%;
  margin: 0;
}
.monsterinsights-btn-group-list {
  border-left: 1px solid #d8d8d8;
  border-right: 1px solid #d8d8d8;
  position: absolute;
  top: 100%;
  z-index: 1000;
  right: 0;
  left: 0;
}
.monsterinsights-btn-group-list .monsterinsights-btn-group-list-button {
  border-radius: 0;
  border-width: 0 0 1px 0;
}
.monsterinsights-btn-group-list .monsterinsights-btn-group-list-button.monsterinsights-btn-group-list-button-selected {
  background: #1f76c4;
  color: #fff;
}
.monsterinsights-btn-group-open .monsterinsights-btn-group-label {
  border-radius: 5px 5px 0 0;
}
#monsterinsights_reports_widget.closed .inside {
  display: block;
}
#monsterinsights_reports_widget .monsterinsights-widget-settings {
  position: absolute;
  bottom: 100%;
  right: 12px;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 782px) {
  #monsterinsights_reports_widget .monsterinsights-widget-settings {
    right: 10px;
  }
}
#monsterinsights_reports_widget .hndle {
  font-size: 14px;
}
#monsterinsights_reports_widget .toggle-indicator {
  display: none;
}
#monsterinsights_reports_widget .monsterinsights-not-authenticated-notice {
  box-shadow: none;
  position: relative;
  width: 100%;
  margin: 0;
  left: 0;
  top: 0;
  padding-top: 50px;
  border: none;
}
#monsterinsights_reports_widget .monsterinsights-not-authenticated-notice h3 {
  font-size: 18px;
  font-weight: 700;
}
@media only screen and (max-width: 1890px) and (min-width: 1800px), (max-width: 936px) and (min-width: 800px), (max-width: 1040px) and (min-width: 962px), (max-width: 430px) {
  #monsterinsights_reports_widget .monsterinsights-button-full-report {
    display: none;
  }
}
#monsterinsights_reports_widget.monsterinsights-widget-full-width .monsterinsights-button-full-report {
  display: block;
  padding: 12px 12px 11px;
  line-height: 1;
  font-size: 14px;
  margin-right: 0;
}
.monsterinsights-report-tabs {
  margin: 20px;
}
.monsterinsights-report-infobox-row {
  margin: 0 20px 20px;
  flex-flow: wrap;
}
.monsterinsights-report-infobox-row .monsterinsights-reports-infobox {
  width: 50%;
  padding: 12px 10px 10px 15px;
}
.monsterinsights-report-infobox-row .monsterinsights-reports-infobox:nth-child(3), .monsterinsights-report-infobox-row .monsterinsights-reports-infobox:nth-child(5) {
  border-left: none;
}
@media (min-width: 783px) {
  .monsterinsights-report-infobox-row .monsterinsights-reports-infobox:nth-child(1), .monsterinsights-report-infobox-row .monsterinsights-reports-infobox:nth-child(2), .monsterinsights-report-infobox-row .monsterinsights-reports-infobox:nth-child(3), .monsterinsights-report-infobox-row .monsterinsights-reports-infobox:nth-child(4) {
    border-bottom: 1px solid #d6e2ed;
  }
}
.monsterinsights-report-infobox-row .monsterinsights-reports-infobox .monsterinsights-info {
  top: 12px;
  right: 15px;
}
.monsterinsights-reports-infobox-number {
  font-size: 36px;
  float: none;
}
.monsterinsights-reports-infobox-compare,
.monsterinsights-reports-infobox-prev {
  float: none;
}
.monsterinsights-reports-infobox-prev {
  margin-top: 15px;
}
.monsterinsights-info {
  color: #b6c9da;
  cursor: help;
  font-size: 15px;
}
.monsterinsights-widget-regular-width .monsterinsights-report-tabs-navigation button, .monsterinsights-widget-regular-width .monsterinsights-report-tabs-navigation--home button {
  font-size: 14px;
  padding: 11px 9px 12px;
  line-height: 1;
  text-align: left;
  font-weight: 400;
}
.monsterinsights-widget-regular-width .monsterinsights-report-tabs-navigation button.monsterinsights-active-tab-button, .monsterinsights-widget-regular-width .monsterinsights-report-tabs-navigation--home button.monsterinsights-active-tab-button, .monsterinsights-widget-regular-width .monsterinsights-report-tabs-navigation button.monsterinsights-active-tab-button--home, .monsterinsights-widget-regular-width .monsterinsights-report-tabs-navigation--home button.monsterinsights-active-tab-button--home {
  padding-top: 9px;
}
.monsterinsights-widget-regular-width .monsterinsights-report-tabs-navigation button i, .monsterinsights-widget-regular-width .monsterinsights-report-tabs-navigation--home button i {
  margin-right: 7px;
}
.monsterinsights-widget-regular-width .monsterinsights-table-list-item {
  font-size: 14px;
  padding: 11px 12px;
  min-height: 36px;
}
.monsterinsights-widget-regular-width .monsterinsights-table-box-table td, .monsterinsights-widget-regular-width .monsterinsights-table-box-table th, .monsterinsights-widget-regular-width .monsterinsights-table-box-table td:first-child, .monsterinsights-widget-regular-width .monsterinsights-table-box-table th:first-child {
  padding-left: 12px;
  padding-right: 12px;
}
.monsterinsights-widget-report-title .monsterinsights-info {
  margin-left: 10px;
  color: #b4b9be;
}
.monsterinsights-widget-content {
  border-bottom: 1px solid #eee;
  height: 100%;
}
.monsterinsights-widget-content .monsterinsights-table-box {
  padding-top: 0;
  border: none;
}
.monsterinsights-dashboard-widget-page.monsterinsights-blur .monsterinsights-widget-content {
  height: auto;
}
.monsterinsights-button {
  background: #509fe2;
  border-style: solid;
  border-color: #2e7fbe;
  border-width: 1px 1px 2px 1px;
  border-radius: 3px;
  color: #fff;
  cursor: pointer;
  display: inline-block;
  font-size: 14px;
  font-weight: 400;
  padding: 10px 20px;
  text-decoration: none;
}
.monsterinsights-button:hover, .monsterinsights-button:focus {
  background-color: #3a93dd;
  border-color: #2971a9;
  color: #fff;
}
.monsterinsights-button.monsterinsights-button-green {
  background: #5cc0a5;
  border-color: #40a88d;
  color: #fff;
}
.monsterinsights-button.monsterinsights-button-green:hover, .monsterinsights-button.monsterinsights-button-green:focus {
  background-color: #4ab99b;
  border-color: #39967e;
  color: #fff;
}
.monsterinsights-table-box-footer {
  text-align: left;
}
.monsterinsights-table-box-pagination {
  display: none;
}
.monsterinsights-buttons-toggle .monsterinsights-button {
  background: #eceff5;
  color: #464c57;
  border-bottom-width: 1px;
  border-color: #d6e2ed;
  border-radius: 0;
  line-height: 18px;
  border-right: 0;
  margin: 0;
}
.monsterinsights-buttons-toggle .monsterinsights-button:hover {
  background: #fff;
}
.monsterinsights-buttons-toggle .monsterinsights-button:focus {
  z-index: 10;
  position: relative;
}
.monsterinsights-buttons-toggle .monsterinsights-button:first-child {
  border-top-left-radius: 3px;
  border-bottom-left-radius: 3px;
}
.monsterinsights-buttons-toggle .monsterinsights-button:last-child {
  border-top-right-radius: 3px;
  border-bottom-right-radius: 3px;
  border-right: 1px solid #d6e2ed;
}
.monsterinsights-buttons-toggle .monsterinsights-button.monsterinsights-selected-interval {
  background: #fff;
  color: #509fe2;
  font-weight: 700;
}
.monsterinsights-reports-pie-chart {
  border: none;
  width: 100%;
}
.monsterinsights-reports-pie-chart .monsterinsights-pie-chart-legend {
  left: 220px;
}
@media (max-width: 782px) {
  .monsterinsights-reports-pie-chart .monsterinsights-pie-chart-legend {
    left: auto;
  }
}
.monsterinsights-reports-pie-chart .monsterinsights-pie-chart-legend .monsterinsights-pie-chart-legend-text {
  min-width: 75px;
}
.monsterinsights-upsell-overlay {
  position: relative;
  transform: none;
  left: 0;
  top: 0;
  box-shadow: none;
  border-radius: 0;
  padding-top: 0;
  border: none;
}
.monsterinsights-upsell-overlay .monsterinsights-button {
  color: #fff;
}
.monsterinsights-ecommerce-overview {
  padding-top: 20px;
}
.monsterinsights-ecommerce-overview .monsterinsights-upsell-overlay {
  padding-top: 0;
}
.monsterinsights-report-title {
  font-size: 16px;
}
.mi-dw-not-authed {
  padding: 20px;
  text-align: center;
}
.mi-dw-not-authed h2 {
  font-size: 18px;
  margin: 0;
}
.mi-dw-not-authed p {
  font-size: 14px;
  margin: 18px auto;
  max-width: 280px;
}
.mi-dw-license-expired {
  padding: 20px;
  text-align: center;
  margin-top: 31px;
}
.mi-dw-license-expired h2 {
  font-size: 16px;
  margin: 0 0 20px 0;
}
.mi-dw-license-expired p {
  font-size: 14px;
  margin: 0 auto;
  max-width: 500px;
  margin-bottom: 23px;
}
.mi-dw-btn-large {
  background: #1f76c4;
  border-radius: 5px;
  color: #fff;
  display: inline-block;
  font-size: 14px;
  line-height: 1;
  margin-bottom: 10px;
  padding: 14px 28px;
  text-decoration: none;
  cursor: pointer;
}
.mi-dw-btn-large:hover {
  color: #fff;
}
@keyframes monsterinsights-widget-rotate-loading {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}
.monsterinsights-widget-loading {
  animation: monsterinsights-widget-rotate-loading 1.5s linear 0s infinite normal;
  -webkit-animation: monsterinsights-widget-rotate-loading 1.5s linear 0s infinite normal;
  background-color: transparent !important;
  border: 0.25em solid #4b9ce4;
  border-bottom-color: transparent;
  border-radius: 100%;
  border-top-color: transparent;
  box-sizing: border-box;
  color: transparent;
  cursor: default;
  height: 2.5em;
  margin: 50px auto;
  padding: 0;
  width: 2.5em;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.monsterinsights-widget-full-width .monsterinsights-widget-accordion {
  display: flex;
  flex-flow: wrap;
  padding: 20px 22px 22px;
  justify-content: space-between;
}
.monsterinsights-widget-full-width .monsterinsights-widget-accordion:after {
  width: calc(33.333% - 13px);
  display: block;
  content: "";
}
@media (max-width: 782px) {
  .monsterinsights-widget-full-width .monsterinsights-widget-accordion {
    padding: 0;
  }
}
@media (max-width: 782px) {
  #monsterinsights_reports_widget.monsterinsights-widget-full-width .monsterinsights-table-box {
    padding-top: 0 !important;
  }
  #monsterinsights_reports_widget.monsterinsights-widget-full-width .monsterinsights-widget-content > div:not(.monsterinsights-widget-loading) {
    height: auto !important;
  }
}
#monsterinsights_reports_widget.monsterinsights-widget-full-width .monsterinsights-reports-interval-date-info {
  font-size: 14px;
  padding: 12px 30px 10px 20px;
}
#monsterinsights_reports_widget.monsterinsights-widget-full-width .monsterinsights-reports-interval-date-info > span {
  line-height: 1.2;
}
#monsterinsights_reports_widget.monsterinsights-widget-full-width .monsterinsights-reports-interval-date-info:after {
  top: 11px;
  right: 7px;
}
#monsterinsights_reports_widget.monsterinsights-widget-full-width .monsterinsights-widget-datepicker {
  width: auto;
}
@media (max-width: 782px) {
  #monsterinsights_reports_widget.monsterinsights-widget-full-width .monsterinsights-widget-datepicker {
    width: 100%;
    margin: 10px 0;
  }
}
.monsterinsights-table-box .monsterinsights-info {
  top: 20px;
  right: 20px;
}
.monsterinsights-table-box .monsterinsights-info,
.monsterinsights-table-box .monsterinsights-report-title,
.monsterinsights-reports-pie-chart .monsterinsights-report-title,
.monsterinsights-reports-pie-chart .monsterinsights-info {
  display: none;
}
.monsterinsights-hide-button,
.monsterinsights-width-button {
  border: none;
  background: none;
  padding: 0;
  margin: 0 0 0 8px;
  color: #72777c;
  cursor: pointer;
}
.monsterinsights-hide-button:hover, .monsterinsights-hide-button:focus,
.monsterinsights-width-button:hover,
.monsterinsights-width-button:focus {
  color: #393f4c;
}
.monsterinsights-hide-button i,
.monsterinsights-width-button i {
  font-size: 16px;
}
.monsterinsights-widget-full-width .monsterinsights-hide-button i,
.monsterinsights-widget-full-width .monsterinsights-width-button i {
  font-size: 20px;
}
.monsterinsights-hide-button {
  margin-left: 0;
  margin-top: 5px;
  color: #000;
}
.monsterinsights-report-tabs .monsterinsights-report-tabs-content {
  padding: 10px 5px 7px 9px;
}
#monsterinsights_reports_widget.monsterinsights-widget-full-width {
  margin: 16px 0;
}
#monsterinsights_reports_widget.monsterinsights-widget-full-width .monsterinsights-table-box .monsterinsights-info,
#monsterinsights_reports_widget.monsterinsights-widget-full-width .monsterinsights-table-box .monsterinsights-report-title,
#monsterinsights_reports_widget.monsterinsights-widget-full-width .monsterinsights-reports-pie-chart .monsterinsights-report-title,
#monsterinsights_reports_widget.monsterinsights-widget-full-width .monsterinsights-reports-pie-chart .monsterinsights-info {
  display: block;
}
@media (max-width: 782px) {
  #monsterinsights_reports_widget.monsterinsights-widget-full-width .monsterinsights-table-box .monsterinsights-info,
  #monsterinsights_reports_widget.monsterinsights-widget-full-width .monsterinsights-table-box .monsterinsights-report-title,
  #monsterinsights_reports_widget.monsterinsights-widget-full-width .monsterinsights-reports-pie-chart .monsterinsights-report-title,
  #monsterinsights_reports_widget.monsterinsights-widget-full-width .monsterinsights-reports-pie-chart .monsterinsights-info {
    display: none;
  }
}
#monsterinsights_reports_widget.monsterinsights-widget-full-width .monsterinsights-report-tabs .monsterinsights-report-tabs-content {
  padding-left: 20px;
  padding-bottom: 20px;
}
@media (max-width: 782px) {
  #monsterinsights_reports_widget.monsterinsights-widget-full-width .monsterinsights-report-tabs .monsterinsights-report-tabs-content {
    padding-left: 5px;
    padding-bottom: 5px;
  }
}
#monsterinsights_reports_widget.monsterinsights-widget-full-width .monsterinsights-table-box {
  padding-top: 22px;
}
#monsterinsights_reports_widget.monsterinsights-widget-full-width .hndle {
  padding: 22px 22px 22px 72px;
  border-bottom: none;
  height: auto;
  margin: 0;
  position: relative;
  font-size: 16px;
  color: #657086;
  font-weight: 400;
  cursor: default;
}
#monsterinsights_reports_widget.monsterinsights-widget-full-width .monsterinsights-widget-report-element {
  border: 1px solid #d6e2ed;
  display: block;
  padding: 0;
  width: calc(33.333% - 13px);
  margin-top: 20px;
}
@media (max-width: 1280px) {
  #monsterinsights_reports_widget.monsterinsights-widget-full-width .monsterinsights-widget-report-element {
    width: calc(50% - 10px);
  }
}
@media (max-width: 782px) {
  #monsterinsights_reports_widget.monsterinsights-widget-full-width .monsterinsights-widget-report-element {
    width: 100%;
    padding: 0;
    border: none;
    margin-right: 0;
    margin-top: 0;
  }
}
#monsterinsights_reports_widget.monsterinsights-widget-full-width .monsterinsights-widget-report-element:first-child {
  width: 100%;
  border: none;
  padding: 0;
  margin: 0;
}
#monsterinsights_reports_widget.monsterinsights-widget-full-width .monsterinsights-widget-settings {
  right: 22px;
  margin-bottom: 4px;
}
@media (max-width: 806px) {
  #monsterinsights_reports_widget.monsterinsights-widget-full-width .monsterinsights-widget-settings {
    right: 0;
    margin-right: 10px;
    position: relative;
    bottom: 0;
    margin-left: 10px;
    float: none;
    margin-bottom: 0;
  }
}
@media (max-width: 494px) {
  #monsterinsights_reports_widget.monsterinsights-widget-full-width .monsterinsights-widget-settings .monsterinsights-button-full-report {
    display: none;
  }
}
#monsterinsights_reports_widget.monsterinsights-widget-full-width .monsterinsights-widget-settings .monsterinsights-btn-group {
  width: auto;
}
#monsterinsights_reports_widget.monsterinsights-widget-full-width .monsterinsights-btn-group-list {
  width: auto;
  position: relative;
  top: 0;
  border: none;
  border-radius: 0;
}
@media (max-width: 782px) {
  #monsterinsights_reports_widget.monsterinsights-widget-full-width .monsterinsights-btn-group-list {
    margin: 20px 0;
  }
}
#monsterinsights_reports_widget.monsterinsights-widget-full-width .monsterinsights-btn-group-list .monsterinsights-btn-group-list-button {
  background: #eceff5;
  color: #464c57;
  border-radius: 0;
  line-height: 18px;
  display: inline-block;
  margin: 0;
  width: auto;
  border: 1px solid #d6e2ed;
  padding: 10px 20px;
  font-size: 14px;
}
@media (max-width: 782px) {
  #monsterinsights_reports_widget.monsterinsights-widget-full-width .monsterinsights-btn-group-list .monsterinsights-btn-group-list-button {
    padding: 10px 15px;
  }
}
@media (max-width: 374px) {
  #monsterinsights_reports_widget.monsterinsights-widget-full-width .monsterinsights-btn-group-list .monsterinsights-btn-group-list-button {
    font-size: 12px;
    padding-left: 10px;
    padding-right: 10px;
  }
}
#monsterinsights_reports_widget.monsterinsights-widget-full-width .monsterinsights-btn-group-list .monsterinsights-btn-group-list-button:hover {
  background: #fff;
}
#monsterinsights_reports_widget.monsterinsights-widget-full-width .monsterinsights-btn-group-list .monsterinsights-btn-group-list-button:focus {
  z-index: 10;
  position: relative;
}
#monsterinsights_reports_widget.monsterinsights-widget-full-width .monsterinsights-btn-group-list .monsterinsights-btn-group-list-button:first-child {
  border-top-left-radius: 3px;
  border-bottom-left-radius: 3px;
  border-right: 0;
}
#monsterinsights_reports_widget.monsterinsights-widget-full-width .monsterinsights-btn-group-list .monsterinsights-btn-group-list-button:last-child {
  border-top-right-radius: 3px;
  border-bottom-right-radius: 3px;
}
#monsterinsights_reports_widget.monsterinsights-widget-full-width .monsterinsights-btn-group-list .monsterinsights-btn-group-list-button.monsterinsights-btn-group-list-button-selected {
  background: #fff;
  color: #509fe2;
  font-weight: 700;
}
@media (max-width: 782px) {
  #monsterinsights_reports_widget.monsterinsights-widget-full-width .monsterinsights-widget-report-overview .monsterinsights-widget-content {
    padding: 20px;
  }
}
#monsterinsights_reports_widget.monsterinsights-widget-full-width .monsterinsights-widget-report-overview .monsterinsights-report-infobox-row {
  margin: 20px 0 0;
}
@media (min-width: 783px) {
  #monsterinsights_reports_widget.monsterinsights-widget-full-width .monsterinsights-widget-report-overview .monsterinsights-report-infobox-row .monsterinsights-reports-infobox {
    width: 25%;
    padding: 17px 20px 15px;
  }
  #monsterinsights_reports_widget.monsterinsights-widget-full-width .monsterinsights-widget-report-overview .monsterinsights-report-infobox-row .monsterinsights-reports-infobox:nth-child(1), #monsterinsights_reports_widget.monsterinsights-widget-full-width .monsterinsights-widget-report-overview .monsterinsights-report-infobox-row .monsterinsights-reports-infobox:nth-child(2) {
    border-bottom: 0;
  }
  #monsterinsights_reports_widget.monsterinsights-widget-full-width .monsterinsights-widget-report-overview .monsterinsights-report-infobox-row .monsterinsights-reports-infobox:nth-child(3) {
    border-left: 1px solid #d6e2ed;
  }
  #monsterinsights_reports_widget.monsterinsights-widget-full-width .monsterinsights-widget-report-overview .monsterinsights-report-infobox-row .monsterinsights-reports-infobox .monsterinsights-reports-infobox-number {
    font-size: 36px;
    float: left;
  }
  #monsterinsights_reports_widget.monsterinsights-widget-full-width .monsterinsights-widget-report-overview .monsterinsights-report-infobox-row .monsterinsights-reports-infobox .monsterinsights-reports-infobox-compare,
  #monsterinsights_reports_widget.monsterinsights-widget-full-width .monsterinsights-widget-report-overview .monsterinsights-report-infobox-row .monsterinsights-reports-infobox .monsterinsights-reports-infobox-prev {
    float: right;
  }
}
#monsterinsights_reports_widget.monsterinsights-widget-full-width .monsterinsights-widget-content {
  border-bottom: 0;
}
#monsterinsights_reports_widget.monsterinsights-widget-full-width .monsterinsights-report-tabs {
  margin: 0;
}
#monsterinsights_reports_widget.monsterinsights-widget-full-width .monsterinsights-width-button,
#monsterinsights_reports_widget.monsterinsights-widget-full-width .monsterinsights-widget-cog {
  background: #8ea4b4;
  border: 1px solid #708c9f;
  padding: 9px;
  color: #fff;
  font-size: 20px;
  line-height: 1;
  min-width: 40px;
  height: auto;
  width: auto;
  border-radius: 5px;
}
#monsterinsights_reports_widget.monsterinsights-widget-full-width .monsterinsights-width-button:focus, #monsterinsights_reports_widget.monsterinsights-widget-full-width .monsterinsights-width-button:hover,
#monsterinsights_reports_widget.monsterinsights-widget-full-width .monsterinsights-widget-cog:focus,
#monsterinsights_reports_widget.monsterinsights-widget-full-width .monsterinsights-widget-cog:hover {
  background-color: #708c9f;
}
@media (max-width: 374px) {
  #monsterinsights_reports_widget.monsterinsights-widget-full-width .monsterinsights-width-button,
  #monsterinsights_reports_widget.monsterinsights-widget-full-width .monsterinsights-widget-cog {
    padding: 8px;
    min-width: 38px;
  }
}
#monsterinsights_reports_widget.monsterinsights-widget-full-width .monsterinsights-widget-toggle {
  display: none;
}
@media (max-width: 782px) {
  #monsterinsights_reports_widget.monsterinsights-widget-full-width .monsterinsights-widget-toggle {
    display: block;
  }
}
#monsterinsights_reports_widget.monsterinsights-widget-full-width .monsterinsights-widget-content > div:not(.monsterinsights-widget-loading) {
  height: 100%;
}
#monsterinsights_reports_widget.monsterinsights-widget-full-width .monsterinsights-widget-content > div:not(.monsterinsights-widget-loading) .monsterinsights-upsell-overlay {
  display: flex;
  flex-flow: wrap;
  height: 100%;
}
.monsterinsights-report-2-columns.monsterinsights-report-infobox-row .monsterinsights-reports-infobox:nth-child(1), .monsterinsights-report-2-columns.monsterinsights-report-infobox-row .monsterinsights-reports-infobox:nth-child(2) {
  border-bottom: 0;
}
.monsterinsights-fullwidth-mascot {
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAFIAAABQCAMAAAC9OtKiAAAC91BMVEUAAABvS7ttSbluSrpvS7tuSrpvS7tvS7tvSrtsSLdsTLFvS7tuSrluSrpvS7tvS7ttSblvS7tpRrRvS7tvS7tvS7tvS7tvS7tgP6lhP6pvS7tvS7s0OkZvS7tvS7tvS7s5P0xnRbJsSLc2PElvS7s5P0w5P0w5P0w6P05vS7tvS7thP6lfPqc5P0wvMUFgPqg5P0xfPqcrMDk5P0xfPqcrMDlXRolqR7U5P0xfPqeUeM+ljdTT6O////9vS7t9XcI5P0xfPqfqTmQjIyOSdc1/X8OiitOkjNQyMjKYftCGZ8d4VcDsYndxTbxkQqyLbcmagdFmRLChh9N2U7+DZMZ6WMFzUL1yTr2fhdKQc80ewYX/iTrY6/GXe9CPcsx7W8H9/v6BYcUrMDqNb8uIasmdhNGcgtGVec9uSrrv9/lsSbb4/P1pRrTz+fvQ5u2Ia8fn8vfg7/SOcsqEZsTb7PJzVLY+Q1OsotugoqJESFrk8PXS5u/O4+pTT3FUXWkvLi/V4+ihsbr8+vvr9PjAw+XG2eDA09r0sbyZmZlKSmRMVGE9NV9BSFUxNETk5PTO3uzK2evEzejM4OeljNS3ydGLccJ/YcB5WruJlqDyiprweoxteINganVbZHCcRVMoKCrx8/n98PLRzeu2teClktbNzc2Xf8u0w8r0usO2t7jkvqBwYZx1folncX1LO3rdS2Dq6uq8vuO+sOGxqd2x4duY3M3ausWtvsSF18KDbrfgqbWYp7FeP6OEj5hYPpV5hpBhWoToboHtZnrLSFxzOkXs7Pf84eTW2ODY09e6zdXb1s6vwMjdtb52Vb2ss7Vs0LKKebLkxa2kqqx7aKtHyZ1pWJZkWopROonndYfoWGzrVmzQWWtFPGr5llRSUlI/Pz88MjQ4KCouJSbX39/l2tvAwb6XyL2Sf7x+Ybv0pbHfl6ZbuJfihZbig5RnqpHss4mrlomIiIjNaXfTY3PHWGiDV2bxnWTSkGRiYmKmQ1NTQVBENkBUODwEKmHaAAAAOnRSTlMA7wscTEHV+/QT/tyvt5+JXjYE4cmWVij05W9nWoV8dkA6LxGlJerYxMGofEnhx8ChkXZrJOnf0JN2dWY7XQAACrdJREFUWMOdmGVgWlcUgEnSxaVpI+187dxdHo/DI+WRAcECgbAREgKBuGuTZsvqXTvptnbd1s7bbpW5u7u7u7vrj51773s8LMuW7weFW/hy7rn3XHmqydm1MD1V8275qumSkwaZ5Umt6fsCzJiushQAsssSGsszsTVz1vSMGVngFwH2iGuckQ0ekwdmTk9ZCGb7eTaA/JiE7gng9NtEmD2tMHOywGZUq40WyMyQmmYVAmg5LiROL0wMyMnVqdXqWjfkZTDjwQAujuNMWhFKpqOcDSaOUyPVZsjLIS37AjYhLlTCvP8sSi/IYW+KwaLnOANxGsxQgvncgxoRUautiY5a0ZQTahfIK2dfhRr8da2axumGQlWZbNRrtRhmJosgH4qmUu4lT8VMKgirKWGAvdJA5ChBqoQMaZIeNJXyYPAAlKar0gG8+HOjmuEHwNFihLSIE8qwMrPBAtlTKTPB2wswu2wX8HCESqY8rx4gKCkDWgIUzTsIwBwi4f47aeCvDJsB0kgqaTIZTdhthpcaRfwGWAJcwA37TKHE/taqK70eYArsuYRJr/QbCQBAjR/9zinWEJpCMr8NvW4XMxgkZS0nIUpR1pBEmKZSIlmYsmqiqLTXUYOdTCJ91wW9UpQ2LcXkl+aTG3aZsmZC0c7WGjmk+oLW1mYAaB2wEYlIQjR5o0kAKP+3Xs8ozQMIRMcEQ60O69En0bwee+oy2fychJfmNO3gmZMMetlBWYDU6yNcpFIts9naLvmI+RnJpUwnlxkImXumUhYBZtxuwKExKuPcZNVZobndqiNYHa0iK8lQSM9WJBt+sIlOgJLUpdgniwy18jgPoAmtA+u6/KSjtui6Ieo5byjISbigIJVyJgTUiWzWIbl9XDxBLWKLywAUplLOgBppTJRMfo4xojABf5JSm3o9KgY37TTOnLpqSZmry/VzyZhwWOIa6mGvlBsiADFGOILktObquVR4/fIb9v9mmDlJLeKg2LnY0nbQn6qvOOuRxd39Z597w5AxMVyROierymzA2Oo4BlvNScJuvEzDaGjx8Z03GGKVopRTNxSnVOZBU1QZYYs5xw1RoSzt5nn+BruiDElRTrZoloAd5zZHsVOlkbuiQRNHCzrPvkpx6tkrQHpKZQFgBitpturYPKo7S5PIYnSODiXOqsl2i0Lg2PpjbEIjAY1J9PBIgjMIs1Mri8CvjuMKTQraiHJU7vsF2+5fhOw8fr9J9ltbnPFGzONkYZ5jJCnctlKIcsAx81MVuSlOGR3rpBFCruS4bSOCsHrHhRO33TZx4cWrBWH/Y5KLnK4b0QJfoklNG1V2bl4kCON3jfG8z+cjnyc2CsKB85OKvIZUj3GyIM9YvuGiizYsv5wql60SVt816uvu6OjuQWV3Sz8/MSIclpDSDLJuRPfEoUThhiqJL0+nxvFlfHcDmigtGk2Hb+lGYf/9EoucRplyuB99oEqmourxsXFh41pfWxsKGR2ktnrGLhEOmJ9Q5DTA1HOyYeuDVW9t2vQzKive2C6sWtrf0OHjZdo0hIVrx4UjE4q8WlEu1CTy9PsnI+9vqqh4SBC2+Bo6eIUGzeUb3qxa3vPEoLB3fJE3KcqeJGXDeycTLt1U8bBwH9/Rxseg0VxUgWz1XSgcGKvMB7ui9GmS+J0YT1uw4A9hcGlPQz+v4NNcXkF4feHYSFyYpWBUlJ1tScp3aZALFvwlbOfbFvMx9EvKn1YM3yOcGHeH4BTl2d2Ki1Xm41KQC9YIE/0Nvlhlj9TxO6++5kXhsNjrJvQqynN4JcytxHn9u9SICMLa7hY+FhzLj39848HlWK6jq4X5scouRbmE70cRY8NFy7f+8J5svFRYxbf0xCmxR9cMn8HKdWNMMovToE9R3oTdkZ1f4ARnvWbKS3gyJW++/ZZOSblYc/2KqzUU/mJh96gx2wNaRXlVJ2a9TSodVP5NRoZymrCDx34/d8opp7wsOVtokEy5PaosT3P3gjl6CmwKL6FJYtIHq6rewhAlJUbZzd98CuF2qR5JkIlRpmdagpzFIhm9ASeA7Uo65RYubmlZ/iaWzAfM+OEmYZzv4W+hyuckZTTINv4SOZeFEMIdXi7yWtwqTR7oPYeX+AZnyHUPf4DChx+6Thgc80lRfvvsMp4//YVrv5eD7OBHhP2k5dcWwXOIrDyPHgxEEGXn6Q+gE63Xkdc/hadw+/mK5PK24RXDn7xz6qmnXruQjWX3E8L+7FqcZya7bT0r8ujaboOuUdn5dUWUX7DE+S0rPiUj3nn+i7+dSjidX0ykWORHSjPSTg4FYmyRM+cQL3Pr60z4wNNbhNVrl654lpf4lSqfxLR3aFo6V7FUzpqtxX6Sk2ed5DJ5r6L/itpRPspjt955562P4XFjpXDh8PCY3PydFCWy0HeXcADLJInOgAcx0DNjNYQ1Z9xYiW88S/hEzrW/JKweXsrLfERzyVOWjkhTqMCJ41GJpyawSan0WB7R2O2k6/bOeOHZ5KSxSNgYDZKOOHabMHqJtFzmZPmJJ8IFozt5F0TOEg0YpsFlv+mcmAhvqqOHjBFhRyefzH3CYO4+7ExQy5ReECWlwQmmXpKBaj2etA1DVy4599wlVw41cRJ3DAo71iYKxy4WBp8X0zJQua+TavDvKxUZdkM9nVEk0rAxwskozlVPxRvPH0cjBlNA7o0hWemxqKNOM1j6jJXoNLCCSnTieejiLTHC7YKw8jOigWI8EkSYklWkjMFkAbA4zZbeRCVD/+ogHmHumTh/2bLzJ+4ZFwTh/iYD+aKlFKdQk6yskbddfSXefqqD9R6AmurUShyk+1EaZU3jK45cdIbrM1W7Ais/rEitXJFdXecZw8RlUK74KdC/9OrbIyMjKxctWtPYeKa1uXW9ujISyFKVOllHMcqAvEcawWQIRyJ1RruiTI0lwCGbiREArGE75wJVAZ05dg4xRffIPnAGmwzVGP8USo/IIZGVa+5ubXdYdXg9FLNUJSY1rR0kpOyRxq6uCAqnVJrNHGFb42s6wjockBJVni2qDILZz9XZw7XVBgPxTa7U671BW8hkcpnJI6qugdy77yVOjFJvKVKl0cjC0v0yBo+7pkYrii6CyVVjpjidbrfHAjFgz9c3Q7N155qd1mZHMADlqqwutlTQ6vWboGCP0vws8FgsMDkWC2pLSov23HXmvhDk1rW363Rvn+kAaM61FJJjZT1WiXzX08OueOCy1Gtl6hEn7DZvXraHvNVGcaflsI3QE/TrEDKJ8JHFbGydC81gcentvXpZWQyiKyBqFczkYVCaW6sgBlwuzx7sQJ5nca3T6e49U0chK9ERYLW2y/2xACrzzfIY6P1JyhC2chRXWjpbHPPBXb/+lcYz70bjnFnYcghGOxfA6nCcUNDe3tp6SE5WSBnZJKVNuehDmfwgFZPf2ti4Zue9c06igc/RHXVUayv+gWNnzdU52g8tA/9USoa7ULk7FM84vBE5mn08dBfVPg6Hbs6hKtW8udY56Rl5Tu9/UdZnYavC7kwZ5Yg5+cfSvBwyE+PO9AQG+jjvgCO3L0nZN2DN7eJsA+vM2fFPH+Yf13i4fMKiqvT459aOdt2Ao7lZpxuoQZxU6SFvn7Hq2sGxXudonVuu+h/MmosrgM6B2dDpgECVQMAmq4O+WCd9vPoPhumB3HmlMigAAAAASUVORK5CYII=");
  width: 41px;
  height: 40px;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  left: 22px;
  bottom: 100%;
  margin-bottom: 4px;
}
.monsterinsights-fullwidth-report-title {
  position: absolute;
  left: 72px;
  font-size: 20px;
  color: #393f4c;
  font-weight: 700;
  bottom: 100%;
  margin-bottom: 0;
}
.monsterinsights-blur .monsterinsights-report-row {
  filter: none;
}
#dashboard-widgets .monsterinsights-widget-footer {
  padding: 11px 12px;
  line-height: 1;
  font-size: 13px;
  color: #72777c;
}
#dashboard-widgets .monsterinsights-widget-footer .monsterinsights-dark {
  color: #23282c;
  font-weight: 500;
}
#dashboard-widgets .monsterinsights-widget-footer a {
  margin-right: 10px;
  text-decoration: underline;
  color: #1c75a6;
}
#dashboard-widgets .monsterinsights-widget-footer a:focus, #dashboard-widgets .monsterinsights-widget-footer a:hover {
  text-decoration: none;
  color: #393f4c;
}
@media (max-width: 782px) {
  #dashboard-widgets .monsterinsights-upsell-overlay {
    width: 100%;
  }
}
#dashboard-widgets .monsterinsights-upsell-overlay a {
  text-decoration: underline;
}
#dashboard-widgets .monsterinsights-upsell-overlay a:hover, #dashboard-widgets .monsterinsights-upsell-overlay a:focus {
  text-decoration: none;
}
#dashboard-widgets .monsterinsights-upsell-overlay a.monsterinsights-button {
  text-decoration: none;
}
.monsterinsights-flex {
  display: flex;
}
.monsterinsights-height100 {
  height: 100%;
}
@media (max-width: 782px) {
  .monsterinsights-height100 {
    height: auto;
  }
}
.monsterinsights-table-item-content {
  word-break: break-all;
}
.monsterinsights-table-box.monsterinsights-table-box-mobile .monsterinsights-reports-list-title {
  width: calc(100% - 30px);
  text-overflow: ellipsis;
  overflow: hidden;
}
#monsterinsights-chartjs-line-overview-tooltip {
  margin-top: -60px;
}
.folded #monsterinsights-chartjs-line-overview-tooltip {
  margin-left: -118px;
}
#monsterinsights_reports_widget .monsterinsights-widget-error {
  padding: 50px 25px;
  text-align: center;
}
#monsterinsights_reports_widget .monsterinsights-widget-error .monsterinsights-error-title {
  font-weight: 700;
  font-size: 24px;
}
#monsterinsights_reports_widget .monsterinsights-widget-error .monsterinsights-error-content {
  font-size: 16px;
}
#monsterinsights_reports_widget .monsterinsights-widget-error .monsterinsights-error-footer {
  margin: 35px 0 0;
  padding: 15px 0 0;
  border-top: 1px solid #ccc;
}
.monsterinsights-widget-accordion-lite .monsterinsights-widget-report-overview .monsterinsights-widget-content {
  padding-top: 20px;
}
#monsterinsights_reports_widget.monsterinsights-widget-full-width .monsterinsights-widget-accordion-lite .monsterinsights-widget-report-overview .monsterinsights-report-infobox-row {
  margin: 0 0 20px;
}
#monsterinsights_reports_widget.monsterinsights-widget-full-width .monsterinsights-widget-accordion-lite .monsterinsights-upsell-overlay {
  display: flex;
  flex-flow: column;
}
#monsterinsights_reports_widget.monsterinsights-widget-full-width .monsterinsights-widget-accordion-lite .monsterinsights-upsell-overlay .monsterinsights-upsell-content {
  height: 100%;
}
.monsterinsights-faded {
  opacity: 0.5;
}
.monsterinsights-lite-overview-buttons {
  border-top: 1px solid #d6e2ed;
  background: #f9fbff;
  padding: 20px;
}
.monsterinsights-lite-overview-buttons .monsterinsights-button {
  margin-top: 0;
  font-size: 13px;
  padding: 8px 10px;
}
#dashboard-widgets .monsterinsights-tips {
  border: 1px solid #5fa6e7;
  margin: 0 20px 20px 20px;
  padding: 17px 15px;
  color: #393f4c;
  display: flex;
  align-items: center;
  justify-content: center;
}
#dashboard-widgets .monsterinsights-tips .monstericon-star {
  color: #5fa6e7;
  font-size: 19px;
  margin-right: 14px;
}
#dashboard-widgets .monsterinsights-tips a {
  color: #5fa6e7;
  text-decoration: underline;
}
#dashboard-widgets .monsterinsights-tips a:hover {
  text-decoration: none;
}
.monsterinsights-widget-full-width .monsterinsights-tips {
  display: none;
}
.monsterinsights-widget-regular-width .monsterinsights-lite-datepicker p br {
  display: none;
}
.monsterinsights-widget-datepicker {
  width: 110px;
  display: inline-block;
  vertical-align: middle;
}
.monsterinsights-widget-datepicker .monsterinsights-reports-interval-date-info .monsterinsights-datepicker-interval-dates,
.monsterinsights-widget-datepicker .monsterinsights-reports-interval-date-info .monsterinsights-datepicker-colon {
  display: none;
}
.monsterinsights-datepicker {
  display: none;
}
.monsterinsights-reports-interval-dropdown-container {
  position: relative;
}
@media (max-width: 782px) {
  .monsterinsights-reports-interval-dropdown-container {
    max-width: 100%;
    width: 100%;
  }
}
.monsterinsights-reports-interval-dropdown-container.monsterinsights-hide,
.monsterinsights-reports-interval-dropdown-container .monsterinsights-hide {
  display: none;
}
.monsterinsights-reports-interval-dropdown-container .flatpickr-wrapper {
  display: block;
}
.monsterinsights-reports-interval-dropdown-container .flatpickr-wrapper .flatpickr-calendar {
  left: -45px;
}
.monsterinsights-reports-interval-dropdown-container .flatpickr-calendar.static.open {
  position: relative;
  box-shadow: none;
  border: none;
  width: 100%;
}
.monsterinsights-reports-interval-dropdown-container .flatpickr-calendar.arrowTop:after,
.monsterinsights-reports-interval-dropdown-container .flatpickr-calendar.arrowTop:before {
  display: none;
}
.monsterinsights-reports-interval-dropdown-container .flatpickr-rContainer {
  width: 100%;
  display: block;
}
.monsterinsights-reports-interval-dropdown-container .flatpickr-days,
.monsterinsights-reports-interval-dropdown-container .dayContainer {
  width: 100%;
  max-width: 100%;
}
.monsterinsights-reports-interval-dropdown-container .flatpickr-day {
  max-width: 100%;
}
.monsterinsights-reports-interval-dropdown-container .flatpickr-day.selected, .monsterinsights-reports-interval-dropdown-container .flatpickr-day.startRange, .monsterinsights-reports-interval-dropdown-container .flatpickr-day.endRange, .monsterinsights-reports-interval-dropdown-container .flatpickr-day.selected.inRange, .monsterinsights-reports-interval-dropdown-container .flatpickr-day.startRange.inRange, .monsterinsights-reports-interval-dropdown-container .flatpickr-day.endRange.inRange, .monsterinsights-reports-interval-dropdown-container .flatpickr-day.selected:focus, .monsterinsights-reports-interval-dropdown-container .flatpickr-day.startRange:focus, .monsterinsights-reports-interval-dropdown-container .flatpickr-day.endRange:focus, .monsterinsights-reports-interval-dropdown-container .flatpickr-day.selected:hover, .monsterinsights-reports-interval-dropdown-container .flatpickr-day.startRange:hover, .monsterinsights-reports-interval-dropdown-container .flatpickr-day.endRange:hover, .monsterinsights-reports-interval-dropdown-container .flatpickr-day.selected.prevMonthDay, .monsterinsights-reports-interval-dropdown-container .flatpickr-day.startRange.prevMonthDay, .monsterinsights-reports-interval-dropdown-container .flatpickr-day.endRange.prevMonthDay, .monsterinsights-reports-interval-dropdown-container .flatpickr-day.selected.nextMonthDay, .monsterinsights-reports-interval-dropdown-container .flatpickr-day.startRange.nextMonthDay, .monsterinsights-reports-interval-dropdown-container .flatpickr-day.endRange.nextMonthDay {
  background-color: #509fe2;
  border-color: #509fe2;
}
.monsterinsights-reports-interval-dropdown-container .flatpickr-months {
  padding-bottom: 10px;
}
.monsterinsights-reports-interval-dropdown-container .dayContainer {
  padding: 0;
}
.monsterinsights-reports-interval-dropdown-container .flatpickr-weekdays {
  height: 40px;
}
.monsterinsights-reports-interval-dropdown-container .flatpickr-weekdaycontainer {
  background: #eceff4;
  padding: 14px 28px;
}
.monsterinsights-reports-interval-dropdown-container .flatpickr-current-month {
  font-size: 15px;
  color: #444;
}
.monsterinsights-reports-interval-dropdown-container .flatpickr-current-month .numInputWrapper {
  width: 55px;
}
.monsterinsights-reports-interval-dropdown-container .flatpickr-current-month .numInputWrapper input.cur-year {
  padding: 0 10px 0 5px;
  min-height: 25px;
}
.monsterinsights-reports-interval-date-info {
  background: #fff;
  border: 1px solid #d8d8d8;
  border-radius: 5px;
  cursor: pointer;
  display: inline-block;
  font-size: 13px;
  font-weight: 400;
  line-height: 1;
  padding: 4px 14px 3px 10px;
  position: relative;
  text-align: left;
  width: 100%;
  margin: 0;
}
.monsterinsights-reports-interval-date-info b {
  font-weight: 400;
}
.monsterinsights-reports-interval-date-info > span {
  overflow: hidden;
  white-space: pre;
  text-overflow: ellipsis;
  max-width: 100%;
  display: inline-block;
  line-height: 14px;
}
.monsterinsights-reports-interval-date-info i {
  display: none;
}
.monsterinsights-reports-interval-date-info:after {
  color: #72777c;
  content: "\f142";
  display: inline-block;
  font: normal 20px/1 dashicons;
  position: absolute;
  right: 2px;
  text-decoration: none !important;
  text-indent: -1px;
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
  speak: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  top: 2px;
}
.monsterinsights-reports-intervals-dropdown {
  position: absolute;
  z-index: 100;
  background: #fff;
  border: 1px solid #d6e2ed;
  border-radius: 3px;
  margin-top: 6px;
  box-shadow: 0 10px 20px rgba(48, 44, 62, 0.05);
  width: fit-content;
  left: 0;
  top: 100%;
  display: flex;
}
.monsterinsights-reports-intervals-dropdown.monsterinsights-p-0 {
  padding: 0;
  max-width: auto;
  border: 0;
}
@media (max-width: 782px) {
  .monsterinsights-reports-intervals-dropdown {
    left: auto;
    right: -20px;
  }
}
.monsterinsights-reports-intervals-dropdown a,
.monsterinsights-reports-intervals-dropdown button {
  display: block;
  width: 100%;
  margin-bottom: 5px;
  text-align: left;
  background-color: #fff;
  color: #444;
  border: none;
}
.monsterinsights-reports-intervals-dropdown a:hover, .monsterinsights-reports-intervals-dropdown a:active, .monsterinsights-reports-intervals-dropdown a.monsterinsights-interval-active,
.monsterinsights-reports-intervals-dropdown button:hover,
.monsterinsights-reports-intervals-dropdown button:active,
.monsterinsights-reports-intervals-dropdown button.monsterinsights-interval-active {
  background-color: #eceff4;
  color: #444;
}
.monsterinsights-reports-intervals-dropdown a i,
.monsterinsights-reports-intervals-dropdown button i {
  margin-right: 10px;
}
.monsterinsights-mobile-details-toggle {
  display: none;
}
.monsterinsights-reports-widget-empty {
  padding: 11px 12px;
  margin: 0;
}
.monsterinsights-setup-wizard-link {
  cursor: pointer;
}
#monsterinsights_reports_widget .monsterinsights-widget-settings .monsterinsights-btn-group {
  width: auto;
}
#monsterinsights_reports_widget .monsterinsights-widget-content {
  padding-top: 20px;
}
#monsterinsights_reports_widget .monsterinsights-report-infobox-row, #monsterinsights_reports_widget.monsterinsights-widget-full-width .monsterinsights-widget-report-overview .monsterinsights-report-infobox-row {
  margin: 0 0 20px;
}
#monsterinsights_reports_widget .monsterinsights-widget-report-error {
  padding: 16px 20px;
  color: #d4393d;
  font-size: 13px;
}
#monsterinsights_reports_widget .monsterinsights-widget-chart-empty {
  padding: 30px 20px;
  text-align: center;
  color: #777;
  font-size: 13px;
}
#monsterinsights_reports_widget .monsterinsights-widget-pro-upsell {
  padding: 24px 20px;
  text-align: center;
}
#monsterinsights_reports_widget .monsterinsights-widget-pro-upsell__title {
  font-weight: 700;
  font-size: 15px;
  margin: 0 0 6px;
  color: #393f4c;
}
#monsterinsights_reports_widget .monsterinsights-widget-pro-upsell__body {
  margin: 0 0 16px;
  color: #777;
  font-size: 13px;
}
#monsterinsights_reports_widget .monsterinsights-widget-simple-metric {
  padding: 20px;
}
#monsterinsights_reports_widget .monsterinsights-widget-simple-metric__value {
  font-size: 30px;
  font-weight: 700;
  margin: 10px 0 0;
  color: #393f4c;
}
#monsterinsights_reports_widget .monsterinsights-widget-setting-hide {
  padding: 8px 12px;
  font-size: 12px;
}
#monsterinsights_reports_widget .monsterinsights-widget-setting-hide a {
  color: #509fe2;
  text-decoration: none;
}
#monsterinsights_reports_widget.monsterinsights-widget-full-width .monsterinsights-widget-settings .monsterinsights-widget-upsell-dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  left: auto;
  width: auto;
  min-width: 200px;
}
#monsterinsights_reports_widget .monsterinsights-upsell-overlay .monsterinsights-upsell-content ul {
  display: block;
}
#monsterinsights_reports_widget .monsterinsights-upsell-overlay .monsterinsights-button.monsterinsights-button-green {
  background: #338eef;
  border: 1px solid #1177e3;
  color: #fff;
}
#monsterinsights_reports_widget .monsterinsights-upsell-overlay .monsterinsights-button.monsterinsights-button-green:hover, #monsterinsights_reports_widget .monsterinsights-upsell-overlay .monsterinsights-button.monsterinsights-button-green:focus {
  background: #1177e3;
  border-color: #0e6dd6;
  color: #fff;
}