/**
 * React Select
 * ============
 * Created by Jed Watson and Joss Mackison for KeystoneJS, http://www.keystonejs.com/
 * https://twitter.com/jedwatson https://twitter.com/jossmackison https://twitter.com/keystonejs
 * MIT License: https://github.com/keystonejs/react-select
*/
@keyframes Select-animation-spin {
  to {
    transform: rotate(1turn); } }

.Select {
  position: relative; }

.Select-control {
  position: relative;
  overflow: hidden;
  background-color: #fff;
  border: 1px solid #ccc;
  border-color: #d9d9d9 #ccc #b3b3b3;
  border-radius: 4px;
  box-sizing: border-box;
  color: #333;
  cursor: default;
  outline: none;
  padding: 8px 52px 8px 10px; }
  .Select-control:hover {
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06); }

.Select-category {
  padding: 5px 10px;
  color: #888;
  text-transform: capitalize; }

.is-categorized.Select-option, .is-categorized.Select-searching, .is-categorized.Select-noresults, .is-categorized.Select-search-prompt {
  padding-left: 20px; }

.is-searchable.is-open > .Select-control {
  cursor: text; }

.is-open > .Select-control {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
  background: #fff;
  border-color: #b3b3b3 #ccc #d9d9d9; }
  .is-open > .Select-control > .Select-arrow {
    border-color: transparent transparent #999;
    border-width: 0 5px 5px; }

.is-searchable.is-focused:not(.is-open) > .Select-control {
  cursor: text; }

.is-focused:not(.is-open) > .Select-control {
  border-color: #08c #0099e6 #0099e6;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1), 0 0 5px -1px fade(#08c, 50%); }

.Select-placeholder {
  color: #aaa;
  padding: 8px 52px 8px 10px;
  position: absolute;
  top: 0;
  left: 0;
  right: -15px;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap; }

.has-value > .Select-control > .Select-placeholder {
  color: #333; }

.Select-value {
  color: #aaa;
  padding: 8px 52px 8px 10px;
  position: absolute;
  top: 0;
  left: 0;
  right: -15px;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap; }

.has-value > .Select-control > .Select-value {
  color: #333; }

.Select-input > input {
  cursor: default;
  background: none transparent;
  box-shadow: none;
  height: auto;
  border: 0 none;
  font-family: inherit;
  font-size: inherit;
  margin: 0;
  padding: 0;
  outline: none;
  display: inline-block;
  -webkit-appearance: none; }
  .is-focused .Select-input > input {
    cursor: text; }

.Select-control:not(.is-searchable) > .Select-input {
  outline: none; }

.Select-loading {
  animation: Select-animation-spin 400ms infinite linear;
  width: 16px;
  height: 16px;
  box-sizing: border-box;
  border-radius: 50%;
  border: 2px solid #ccc;
  border-right-color: #333;
  display: inline-block;
  position: relative;
  margin-top: -8px;
  position: absolute;
  right: 30px;
  top: 50%; }

.has-value > .Select-control > .Select-loading {
  right: 46px; }

.Select-clear {
  color: #999;
  cursor: pointer;
  display: inline-block;
  font-size: 16px;
  padding: 6px 10px;
  position: absolute;
  right: 17px;
  top: 0; }
  .Select-clear:hover {
    color: #c0392b; }
  .Select-clear > span {
    font-size: 1.1em; }

.Select-arrow-zone {
  content: " ";
  display: block;
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 30px;
  cursor: pointer; }

.Select-arrow {
  border-color: #999 transparent transparent;
  border-style: solid;
  border-width: 5px 5px 0;
  content: " ";
  display: block;
  height: 0;
  margin-top: -ceil(2.5px);
  position: absolute;
  right: 10px;
  top: 14px;
  width: 0;
  cursor: pointer; }

.Select-menu-outer {
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
  background-color: #fff;
  border: 1px solid #ccc;
  border-top-color: #e6e6e6;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
  box-sizing: border-box;
  margin-top: -1px;
  max-height: 200px;
  position: absolute;
  top: 100%;
  width: 100%;
  z-index: 1000;
  -webkit-overflow-scrolling: touch; }

.Select-menu {
  max-height: 198px;
  overflow-y: auto; }

.Select-option {
  box-sizing: border-box;
  color: #666666;
  cursor: pointer;
  display: block;
  padding: 8px 10px; }
  .Select-option:last-child {
    border-bottom-right-radius: 4px;
    border-bottom-left-radius: 4px; }
  .Select-option.is-focused {
    background-color: #f2f9fc;
    color: #333; }
  .Select-option.is-disabled {
    color: #cccccc;
    cursor: not-allowed; }

.Select-noresults,
.Select-search-prompt,
.Select-searching {
  box-sizing: border-box;
  color: #999999;
  cursor: default;
  display: block;
  padding: 8px 10px; }

.Select.is-multi .Select-control {
  padding: 2px 52px 2px 3px; }

.Select.is-multi .Select-input {
  vertical-align: middle;
  border: 1px solid transparent;
  margin: 2px;
  padding: 3px 0; }

.Select-item {
  background-color: #E8E8E8;
  border-radius: 2px;
  border: 1px solid #B8B8B8;
  color: #444D51;
  display: inline-block;
  font-size: 1em;
  margin: 2px; }

.Select-item-icon,
.Select-item-label {
  display: inline-block;
  vertical-align: middle; }

.Select-item-label {
  cursor: default;
  border-bottom-right-radius: 2px;
  border-top-right-radius: 2px;
  padding: 3px 5px; }
  .Select-item-label .Select-item-label__a {
    color: #444D51;
    cursor: pointer; }

.Select-item-icon {
  cursor: pointer;
  border-bottom-left-radius: 2px;
  border-top-left-radius: 2px;
  border-right: 1px solid #B8B8B8;
  padding: 2px 5px 4px; }
  .Select-item-icon:hover, .Select-item-icon:focus {
    background-color: #dbdbdb;
    color: #384043; }
  .Select-item-icon:active {
    background-color: #B8B8B8; }

.Select.is-multi.is-disabled .Select-item {
  background-color: #f2f2f2;
  border: 1px solid #d9d9d9;
  color: #888; }

.Select.is-multi.is-disabled .Select-item-icon {
  cursor: not-allowed;
  border-right: 1px solid #d9d9d9; }
  .Select.is-multi.is-disabled .Select-item-icon:hover, .Select.is-multi.is-disabled .Select-item-icon:focus, .Select.is-multi.is-disabled .Select-item-icon:active {
    background-color: #f2f2f2; }

/*!
Chosen, a Select Box Enhancer for jQuery and Prototype
by Patrick Filler for Harvest, http://getharvest.com

Version 1.5.1
Full source at https://github.com/harvesthq/chosen
Copyright (c) 2011-2016 Harvest http://getharvest.com

MIT License, https://github.com/harvesthq/chosen/blob/master/LICENSE.md
This file is generated by `grunt build`, do not edit it by hand.
*/
/* @group Base */
.chosen-container {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  font-size: 13px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
      user-select: none; }

.chosen-container * {
  box-sizing: border-box; }

.chosen-container .chosen-drop {
  position: absolute;
  top: 100%;
  left: -9999px;
  z-index: 1010;
  width: 100%;
  border: 1px solid #aaa;
  border-top: 0;
  background: #fff; }

.chosen-container.chosen-with-drop .chosen-drop {
  left: 0; }

.chosen-container a, .chosen-container table.dashboard-table .column-editable .data-text:hover, table.dashboard-table .column-editable .chosen-container .data-text:hover, .chosen-container
table.dashboard-table.table-striped tbody tr:nth-child(odd) td.column-editable .data-text:hover,
table.dashboard-table.table-striped tbody tr:nth-child(odd) td.column-editable .chosen-container .data-text:hover {
  cursor: pointer; }

.chosen-container .search-choice .group-name, .chosen-container .chosen-single .group-name {
  margin-right: 4px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  font-weight: normal;
  color: #999999; }

.chosen-container .search-choice .group-name:after, .chosen-container .chosen-single .group-name:after {
  content: ":";
  padding-left: 2px;
  vertical-align: top; }

/* @end */
/* @group Single Chosen */
.chosen-container-single .chosen-single {
  position: relative;
  display: block;
  overflow: hidden;
  padding: 0 0 0 8px;
  height: 25px;
  border: 1px solid #aaa;
  background-color: #fff;
  background-clip: padding-box;
  color: #444;
  text-decoration: none;
  white-space: nowrap;
  line-height: 24px; }

.chosen-container-single .chosen-default {
  color: #999; }

.chosen-container-single .chosen-single span {
  display: block;
  overflow: hidden;
  margin-right: 26px;
  text-overflow: ellipsis;
  white-space: nowrap; }

.chosen-container-single .chosen-single-with-deselect span {
  margin-right: 38px; }

.chosen-container-single .chosen-single abbr {
  position: absolute;
  top: 6px;
  right: 26px;
  display: block;
  width: 12px;
  height: 12px;
  font-size: 1px; }

.chosen-container-single .chosen-single abbr:hover {
  background-position: -42px -10px; }

.chosen-container-single.chosen-disabled .chosen-single abbr:hover {
  background-position: -42px -10px; }

.chosen-container-single .chosen-single div {
  position: absolute;
  top: 0;
  right: 0;
  display: block;
  width: 18px;
  height: 100%; }

.chosen-container-single .chosen-single div b {
  display: block;
  width: 100%;
  height: 100%; }

.chosen-container-single .chosen-search {
  position: relative;
  z-index: 1010;
  margin: 0;
  padding: 3px 4px;
  white-space: nowrap; }

.chosen-container-single .chosen-search input[type="text"] {
  margin: 1px 0;
  padding: 4px 20px 4px 5px;
  width: 100%;
  height: auto;
  outline: 0;
  border: 1px solid #aaa;
  font-size: 1em;
  font-family: sans-serif;
  line-height: normal; }

.chosen-container-single .chosen-drop {
  margin-top: -1px;
  background-clip: padding-box; }

.chosen-container-single.chosen-container-single-nosearch .chosen-search {
  position: absolute;
  left: -9999px; }

/* @end */
/* @group Results */
.chosen-container .chosen-results {
  color: #444;
  position: relative;
  overflow-x: hidden;
  overflow-y: auto;
  margin: 0 4px 4px 0;
  padding: 0 0 0 4px;
  max-height: 240px;
  -webkit-overflow-scrolling: touch; }

.chosen-container .chosen-results li {
  display: none;
  margin: 0;
  padding: 5px 6px;
  list-style: none;
  line-height: 15px;
  word-wrap: break-word;
  -webkit-touch-callout: none; }

.chosen-container .chosen-results li.active-result {
  display: list-item;
  cursor: pointer; }

.chosen-container .chosen-results li.disabled-result {
  display: list-item;
  color: #ccc;
  cursor: default; }

.chosen-container .chosen-results li.highlighted {
  background-color: #3875d7;
  color: #fff; }

.chosen-container .chosen-results li.no-results {
  color: #777;
  display: list-item;
  background: #f4f4f4; }

.chosen-container .chosen-results li.group-result {
  display: list-item;
  font-weight: bold;
  cursor: default; }

.chosen-container .chosen-results li.group-option {
  padding-left: 15px; }

.chosen-container .chosen-results li em {
  font-style: normal;
  text-decoration: underline; }

/* @end */
/* @group Multi Chosen */
.chosen-container-multi .chosen-choices {
  position: relative;
  overflow: hidden;
  margin: 0;
  padding: 0 5px;
  width: 100%;
  height: auto !important;
  height: 1%;
  border: 1px solid #aaa;
  background-color: #fff;
  cursor: text; }

.chosen-container-multi .chosen-choices li {
  float: left;
  list-style: none; }

.chosen-container-multi .chosen-choices li.search-field {
  margin: 0;
  padding: 0;
  white-space: nowrap; }

.chosen-container-multi .chosen-choices li.search-field input[type="text"] {
  margin: 1px 0;
  padding: 0;
  height: 25px;
  outline: 0;
  border: 0 !important;
  background: transparent !important;
  color: #999;
  font-size: 100%;
  font-family: sans-serif;
  line-height: normal; }

.chosen-container-multi .chosen-choices li.search-choice {
  position: relative;
  margin: 3px 5px 3px 0;
  padding: 3px 20px 3px 5px;
  border: 1px solid #aaa;
  max-width: 100%;
  background-color: #eeeeee;
  background-size: 100% 19px;
  background-repeat: repeat-x;
  background-clip: padding-box;
  color: #333;
  line-height: 13px;
  cursor: default; }

.chosen-container-multi .chosen-choices li.search-choice span {
  word-wrap: break-word; }

.chosen-container-multi .chosen-choices li.search-choice .search-choice-close {
  position: absolute;
  top: 4px;
  right: 3px;
  display: block;
  width: 12px;
  height: 12px;
  font-size: 1px; }

.chosen-container-multi .chosen-choices li.search-choice .search-choice-close:hover {
  background-position: -42px -10px; }

.chosen-container-multi .chosen-choices li.search-choice-disabled {
  padding-right: 5px;
  border: 1px solid #ccc;
  background-color: #e4e4e4;
  color: #666; }

.chosen-container-multi .chosen-choices li.search-choice-focus {
  background: #d4d4d4; }

.chosen-container-multi .chosen-choices li.search-choice-focus .search-choice-close {
  background-position: -42px -10px; }

.chosen-container-multi .chosen-results {
  margin: 0;
  padding: 0; }

.chosen-container-multi .chosen-drop .result-selected {
  display: list-item;
  color: #ccc;
  cursor: default; }

/* @end */
/* @group Active  */
.chosen-container-active .chosen-single {
  border: 1px solid #5897fb; }

.chosen-container-active.chosen-with-drop .chosen-single {
  border: 1px solid #aaa; }

.chosen-container-active.chosen-with-drop .chosen-single div {
  border-left: none;
  background: transparent; }

.chosen-container-active.chosen-with-drop .chosen-single div b {
  background-position: -18px 2px; }

.chosen-container-active .chosen-choices {
  border: 1px solid #5897fb; }

.chosen-container-active .chosen-choices li.search-field input[type="text"] {
  color: #222 !important; }

/* @end */
/* @group Disabled Support */
.chosen-disabled {
  opacity: 0.5 !important;
  cursor: default; }

.chosen-disabled .chosen-single {
  cursor: default; }

.chosen-disabled .chosen-choices .search-choice .search-choice-close {
  cursor: default; }

/* @end */
/* @group Right to Left */
.chosen-rtl {
  text-align: right; }

.chosen-rtl .chosen-single {
  overflow: visible;
  padding: 0 8px 0 0; }

.chosen-rtl .chosen-single span {
  margin-right: 0;
  margin-left: 26px;
  direction: rtl; }

.chosen-rtl .chosen-single-with-deselect span {
  margin-left: 38px; }

.chosen-rtl .chosen-single div {
  right: auto;
  left: 3px; }

.chosen-rtl .chosen-single abbr {
  right: auto;
  left: 26px; }

.chosen-rtl .chosen-choices li {
  float: right; }

.chosen-rtl .chosen-choices li.search-field input[type="text"] {
  direction: rtl; }

.chosen-rtl .chosen-choices li.search-choice {
  margin: 3px 5px 3px 0;
  padding: 3px 5px 3px 19px; }

.chosen-rtl .chosen-choices li.search-choice .search-choice-close {
  right: auto;
  left: 4px; }

.chosen-rtl.chosen-container-single-nosearch .chosen-search,
.chosen-rtl .chosen-drop {
  left: 9999px; }

.chosen-rtl.chosen-container-single .chosen-results {
  margin: 0 0 4px 4px;
  padding: 0 4px 0 0; }

.chosen-rtl .chosen-results li.group-option {
  padding-right: 15px;
  padding-left: 0; }

.chosen-rtl.chosen-container-active.chosen-with-drop .chosen-single div {
  border-right: none; }

.chosen-rtl .chosen-search input[type="text"] {
  padding: 4px 5px 4px 20px;
  direction: rtl; }

.chosen-rtl.chosen-container-single .chosen-single div b {
  background-position: 6px 2px; }

.chosen-rtl.chosen-container-single.chosen-with-drop .chosen-single div b {
  background-position: -12px 2px; }

/* @end */
.cisco-banner:before {
  content: '';
  display: inline-block;
  height: 100%;
  margin-right: -0.25em;
  vertical-align: middle; }

.cisco-banner__logo, .cisco-banner__logo__img, .cisco-banner__learn, .cisco-banner__about {
  display: inline-block;
  vertical-align: middle; }

.text-input-button, .search-input-wrapper .advanced {
  cursor: pointer;
  color: #444456;
  font-size: 14px; }
  .text-input-button:hover, .search-input-wrapper .advanced:hover {
    color: #292934; }
  .text-input-button .text-input-button-icon, .search-input-wrapper .advanced .text-input-button-icon, .text-input-button .advanced-icon, .search-input-wrapper .advanced .advanced-icon {
    padding-left: 5px;
    padding-right: 5px; }

/*! normalize.css v3.0.2 | MIT License | git.io/normalize */
html {
  font-family: sans-serif;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%; }

body {
  margin: 0; }

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
  display: block; }

audio,
canvas,
progress,
video {
  display: inline-block;
  vertical-align: baseline; }

audio:not([controls]) {
  display: none;
  height: 0; }

[hidden],
template {
  display: none; }

a, table.dashboard-table .column-editable .data-text:hover,
table.dashboard-table.table-striped tbody tr:nth-child(odd) td.column-editable .data-text:hover {
  background-color: transparent; }

a:active, table.dashboard-table .column-editable .data-text:active:hover,
table.dashboard-table.table-striped tbody tr:nth-child(odd) td.column-editable .data-text:active:hover,
a:hover,
table.dashboard-table .column-editable .data-text:hover,
table.dashboard-table.table-striped tbody tr:nth-child(odd) td.column-editable .data-text:hover {
  outline: 0; }

abbr[title] {
  border-bottom: 1px dotted; }

b,
strong {
  font-weight: bold; }

dfn {
  font-style: italic; }

h1 {
  font-size: 2em;
  margin: 0.67em 0; }

mark {
  background: #ff0;
  color: #000; }

small {
  font-size: 80%; }

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline; }

sup {
  top: -0.5em; }

sub {
  bottom: -0.25em; }

img {
  border: 0; }

svg:not(:root) {
  overflow: hidden; }

figure {
  margin: 1em 40px; }

hr {
  box-sizing: content-box;
  height: 0; }

pre {
  overflow: auto; }

code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  font-size: 1em; }

button,
input,
optgroup,
select,
textarea {
  color: inherit;
  font: inherit;
  margin: 0; }

button {
  overflow: visible; }

button,
select {
  text-transform: none; }

button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  cursor: pointer; }

button[disabled],
html input[disabled] {
  cursor: default; }

button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0; }

input {
  line-height: normal; }

input[type="checkbox"],
input[type="radio"] {
  box-sizing: border-box;
  padding: 0; }

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  height: auto; }

input[type="search"] {
  -webkit-appearance: textfield;
  box-sizing: content-box; }

input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none; }

fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em; }

legend {
  border: 0;
  padding: 0; }

textarea {
  overflow: auto; }

optgroup {
  font-weight: bold; }

table {
  border-collapse: collapse;
  border-spacing: 0; }

td,
th {
  padding: 0; }

table {
  border-collapse: separate; }

table.dashboard-table,
table.dashboard-table.table-striped {
  table-layout: fixed; }
  table.dashboard-table thead tr th,
  table.dashboard-table.table-striped thead tr th {
    background: #46494d;
    color: #d2d8df;
    font-weight: normal; }
  table.dashboard-table td,
  table.dashboard-table.table-striped td {
    padding: 9px 5px 8px; }
    table.dashboard-table td.bold,
    table.dashboard-table.table-striped td.bold {
      font-weight: bold; }
  table.dashboard-table td .content,
  table.dashboard-table th.content,
  table.dashboard-table.table-striped td .content,
  table.dashboard-table.table-striped th.content {
    position: relative; }

header + .table-container > .dashboard-table.dashboard-table-bordered tr:first-child td,
header + .table-container > .dashboard-table.dashboard-table-bordered tr:first-child th {
  border-top: none; }

table.dashboard-table .external-link,
table.dashboard-table .column-editable .data-text {
  color: #00c1cc;
  cursor: pointer; }
  table.dashboard-table .external-link:hover,
  table.dashboard-table .column-editable .data-text:hover {
    text-decoration: underline; }

table.dashboard-table th.centered-text, table.dashboard-table th.centered,
table.dashboard-table td.centered-text,
table.dashboard-table td.centered {
  text-align: center; }

table.dashboard-table th.right-text,
table.dashboard-table td.right-text {
  text-align: right; }

table.dashboard-table .column-delete {
  vertical-align: middle; }
  table.dashboard-table .column-delete .icon {
    margin: 0 auto; }
  table.dashboard-table .column-delete.default .icon {
    cursor: default; }

table.dashboard-table .column-editable .data-text,
table.dashboard-table.table-striped tbody tr:nth-child(odd) td.column-editable .data-text {
  cursor: pointer;
  position: relative; }
  table.dashboard-table .column-editable .data-text:hover,
  table.dashboard-table.table-striped tbody tr:nth-child(odd) td.column-editable .data-text:hover {
    text-decoration: underline; }

table.dashboard-table .column-editable form,
table.dashboard-table .column-editable .control-group,
table.dashboard-table.table-striped tbody tr:nth-child(odd) td.column-editable form,
table.dashboard-table.table-striped tbody tr:nth-child(odd) td.column-editable .control-group {
  margin: 0;
  padding: 0; }

table.dashboard-table .column-editable:hover,
table.dashboard-table.table-striped tbody tr:nth-child(odd) td.column-editable:hover {
  background: #dfeff9; }

table.dashboard-table tr.disabled td,
table.dashboard-table tr.disabled td:hover,
table.dashboard-table tr.disabled:hover td,
table.dashboard-table tr.disabled:hover td:hover,
table.dashboard-table.table-striped tbody tr.disabled:nth-child(odd) td,
table.dashboard-table.table-striped tbody tr.disabled:nth-child(odd) td:hover {
  background: #ddd !important;
  color: #999 !important; }

table.dashboard-table tr.new td,
table.dashboard-table tr.new td:hover,
table.dashboard-table tr.new:hover td,
table.dashboard-table tr.new:hover td:hover,
table.dashboard-table.table-striped tbody tr.new:nth-child(odd) td,
table.dashboard-table.table-striped tbody tr.new:nth-child(odd) td:hover {
  background: #d8ffa5 !important; }

table.dashboard-table tbody tr.warning-alternate > td {
  background-color: #FFE6A1; }

table.dashboard-table.table-hover tbody tr.warning-alternate:hover > td {
  background-color: #ffdf88; }

table.dashboard-table .infinite_loading {
  color: #999;
  line-height: 1em;
  text-align: center;
  padding: 5px;
  background: #eee; }
  table.dashboard-table .infinite_loading .spin_container {
    display: inline-block;
    margin-right: 10px;
    position: relative;
    top: -5px; }

table.dashboard-table th.sortable {
  position: relative;
  padding: 12px 8px; }
  table.dashboard-table th.sortable .table-col-title {
    padding-right: 20px; }
  table.dashboard-table th.sortable .table-col-sort {
    position: absolute;
    right: 12px;
    top: -6px;
    height: 30px; }
  table.dashboard-table th.sortable .sort-arrow {
    font-size: 19px;
    cursor: pointer;
    position: absolute;
    transition: opacity 0.1s ease-in-out;
    opacity: 0.2;
    color: white; }
    table.dashboard-table th.sortable .sort-arrow.active-sort {
      opacity: 1.0; }
    table.dashboard-table th.sortable .sort-arrow.fa-angle-up {
      bottom: 17px; }
    table.dashboard-table th.sortable .sort-arrow.fa-angle-down {
      top: 17px; }
  table.dashboard-table th.sortable .sort-arrow:hover {
    opacity: 1.0; }

table.dashboard-table .overlay {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 11; }
  table.dashboard-table .overlay.danger {
    background: rgba(255, 230, 230, 0.8); }
  table.dashboard-table .overlay .content {
    padding-right: 10px; }
    table.dashboard-table .overlay .content .message {
      color: #633;
      margin-top: 7px;
      margin-right: 10px;
      margin-top: 10px; }
    table.dashboard-table .overlay .content .btn {
      margin-top: 6px;
      padding: 2px 7px; }

table.dashboard-table .stack-icons {
  position: absolute;
  right: 0;
  top: 1px; }
  table.dashboard-table .stack-icons.prepend {
    left: 0;
    right: auto; }
  table.dashboard-table .stack-icons .icon {
    float: left; }
  table.dashboard-table .stack-icons.compound {
    float: left;
    border: 1px solid #ccc;
    font-size: 11px;
    margin: -2px 0 0 5px;
    padding: 0 4px;
    position: relative;
    z-index: 2; }
    table.dashboard-table .stack-icons.compound.warning {
      color: #8e8f2a;
      background: #ffefcb;
      border: 1px solid #eae48c; }
      table.dashboard-table .stack-icons.compound.warning span {
        color: #8e8f2a;
        cursor: pointer; }
    table.dashboard-table .stack-icons.compound .icon {
      margin: 2px 6px 0 2px; }
    table.dashboard-table .stack-icons.compound:hover {
      text-decoration: underline; }

table.dashboard-table .centered-icons .stack-icons,
table.dashboard-table .stack-icons.centered-icon,
table.dashboard-table .stack-icons.centered-icons {
  position: static;
  right: auto;
  top: auto;
  width: 100%; }
  table.dashboard-table .centered-icons .stack-icons .icon,
  table.dashboard-table .stack-icons.centered-icon .icon,
  table.dashboard-table .stack-icons.centered-icons .icon {
    float: none !important;
    margin: 0 auto; }

table.dashboard-table .hover-appear {
  display: none; }

table.dashboard-table td:hover .icon.hover-disappear {
  display: none; }

table.dashboard-table td:hover .icon.hover-appear {
  display: block; }

table.dashboard-table.highlightRow tbody tr:hover td {
  background-color: #dfecf3; }

table.dashboard-table.editable-table i.icon.edit {
  display: none; }

table.dashboard-table.editable-table td:hover i.icon.edit {
  display: block; }

table.dashboard-table.with-subrows tbody tr:nth-child(odd) td,
table.dashboard-table.with-subrows tbody tr:nth-child(odd) th,
table.dashboard-table.table-striped.with-subrows tbody tr:nth-child(odd) td,
table.dashboard-table.table-striped.with-subrows tbody tr:nth-child(odd) th {
  background: inherit; }

table.dashboard-table.with-subrows tbody .parent-row:nth-of-type(odd) td,
table.dashboard-table.with-subrows tbody .parent-row:nth-of-type(odd) th,
table.dashboard-table.with-subrows tbody .parent-row.offset:nth-of-type(even) td,
table.dashboard-table.with-subrows tbody .parent-row.offset:nth-of-type(even) th,
table.dashboard-table.table-striped.with-subrows tbody .parent-row:nth-of-type(odd) td,
table.dashboard-table.table-striped.with-subrows tbody .parent-row:nth-of-type(odd) th,
table.dashboard-table.table-striped.with-subrows tbody .parent-row.offset:nth-of-type(even) td,
table.dashboard-table.table-striped.with-subrows tbody .parent-row.offset:nth-of-type(even) th {
  background-color: #f3f1ee; }

table.dashboard-table.with-subrows tbody .parent-row.offset:nth-of-type(odd) td,
table.dashboard-table.with-subrows tbody .parent-row.offset:nth-of-type(odd) th,
table.dashboard-table.table-striped.with-subrows tbody .parent-row.offset:nth-of-type(odd) td,
table.dashboard-table.table-striped.with-subrows tbody .parent-row.offset:nth-of-type(odd) th {
  background-color: inherit; }

table.dashboard-table.with-subrows tbody tr.subrow td,
table.dashboard-table.table-striped.with-subrows tbody tr.subrow td {
  background: #dfeff9; }

table.dashboard-table.dashboard-table-short td {
  padding: 5px; }

table.dashboard-table.dashboard-table-bordered td,
table.dashboard-table.dashboard-table-bordered th {
  border-left: 1px solid #acb5b7;
  border-top: 1px solid #acb5b7;
  background-color: #fff; }
  table.dashboard-table.dashboard-table-bordered td:last-child,
  table.dashboard-table.dashboard-table-bordered th:last-child {
    border-right: 1px solid #acb5b7; }

table.dashboard-table.dashboard-table-bordered tr:last-child td,
table.dashboard-table.dashboard-table-bordered tr:last-child th {
  border-bottom: 1px solid #acb5b7; }

table.dashboard-table.dashboard-table-bordered thead tr:last-child td,
table.dashboard-table.dashboard-table-bordered thead tr:last-child th {
  border-bottom: none; }

table.dashboard-table.dashboard-table-bordered thead.main-thead td:first-child,
table.dashboard-table.dashboard-table-bordered thead.main-thead th:first-child {
  border-left: 1px solid #46494d; }

table.dashboard-table.dashboard-table-bordered thead.main-thead td:last-child,
table.dashboard-table.dashboard-table-bordered thead.main-thead th:last-child {
  border-right: 1px solid #46494d; }

table.dashboard-table.dashboard-table-bordered thead.main-thead :hover .sort-arrow {
  opacity: 0.5; }

table.dashboard-table.dashboard-table-bordered thead.main-thead + tbody.main-tbody tr:first-child td,
table.dashboard-table.dashboard-table-bordered thead.main-thead + tbody.main-tbody tr:first-child th {
  border-top: none; }

.table-add-form {
  background: white;
  margin-left: 10px; }

.table-col-header-wrapper {
  position: relative; }

.lt-ie9 .dashboard-table.dashboard-table-bordered thead.main-thead :hover .sort-arrow {
  color: #C0C0C0; }

.lt-ie9 .dashboard-table.dashboard-table-bordered th.sortable .sort-arrow {
  color: #888888; }
  .lt-ie9 .dashboard-table.dashboard-table-bordered th.sortable .sort-arrow.active-sort {
    color: #FFFFFF; }

.lt-ie9 .dashboard-table.dashboard-table-bordered th.sortable .sort-arrow:hover {
  color: #FFFFFF; }

.dash-table th {
  color: #d2d8df;
  background-color: #46494d;
  font-weight: 500;
  padding: 15px 15px;
  font-size: 14px;
  text-align: left; }

.dash-table th, .dash-table td {
  border: 1px solid #46494d; }

.page-table-wrapper,
.search-table-wrapper {
  width: 100%; }
  .page-table-wrapper table,
  .search-table-wrapper table {
    width: 100%; }
  .page-table-wrapper .controls-wrapper,
  .search-table-wrapper .controls-wrapper {
    text-align: right;
    width: 100%; }
  .page-table-wrapper .Select,
  .search-table-wrapper .Select {
    width: 100%; }
  .page-table-wrapper .search-input-wrapper,
  .search-table-wrapper .search-input-wrapper {
    width: 100%;
    margin-bottom: 10px; }

@media screen and (min-width: 59.5em) {
  .page-table-wrapper,
  .search-table-wrapper {
    width: 100%; }
    .page-table-wrapper table,
    .search-table-wrapper table {
      width: 100%; }
    .page-table-wrapper .controls-wrapper,
    .search-table-wrapper .controls-wrapper {
      float: right;
      width: 100%;
      max-width: 415px; }
    .page-table-wrapper .Select,
    .search-table-wrapper .Select {
      width: 50%;
      max-width: 200px;
      float: left;
      margin-right: 15px; }
    .page-table-wrapper .search-input-wrapper,
    .search-table-wrapper .search-input-wrapper {
      width: 50%;
      max-width: 200px;
      float: left;
      margin-bottom: 0px; } }

.selectable-list {
  height: 100%; }
  .selectable-list .row.no-border {
    border: none; }
  .selectable-list .row {
    padding: .5em;
    border-bottom: 1px solid #CCCCCC; }
  .selectable-list .row-text {
    margin: 0 0 0 .5em;
    display: inline-block;
    vertical-align: top; }
  .selectable-list .small-text {
    font-size: small; }
  .selectable-list .search {
    width: 80%;
    margin: .2em; }
  .selectable-list .page-arrows {
    float: right; }
    .selectable-list .page-arrows .pagination-footer-text {
      display: inline-block; }
    .selectable-list .page-arrows .arrow {
      display: inline-block;
      padding: 0.3em;
      color: blue; }

.diff-list {
  height: 100%;
  border: 1px dashed #CCCCCC;
  margin-left: 1em; }
  .diff-list .row {
    padding: .5em;
    border-bottom: 1px solid #CCCCCC; }
  .diff-list .row-text {
    margin: 0 0 0 .5em;
    display: inline-block;
    vertical-align: top; }
  .diff-list .diff-list-header {
    background-color: #DDDDDD;
    padding: 1em; }
    .diff-list .diff-list-header .header-text {
      font-weight: bold;
      display: inline-block; }
    .diff-list .diff-list-header .remove-all {
      float: right; }

.two-panel {
  height: 25em; }
  .two-panel .right-panel {
    height: 100%;
    vertical-align: top;
    width: 50%;
    display: inline-block; }
  .two-panel .left-panel {
    height: 100%;
    vertical-align: top;
    width: 50%;
    display: inline-block; }

.dash-thead .dash-th, .dash-tbody .dash-th {
  min-height: 30px;
  position: relative; }
  .dash-thead .dash-th .dash-th-content, .dash-tbody .dash-th .dash-th-content {
    margin-right: 10px;
    box-sizing: border-box; }
    .dash-thead .dash-th .dash-th-content .active, .dash-tbody .dash-th .dash-th-content .active {
      color: white; }
  .dash-thead .dash-th .upsort, .dash-tbody .dash-th .upsort {
    font-size: .7em;
    position: absolute;
    right: 0px;
    top: 0px;
    padding: 3px; }
  .dash-thead .dash-th .downsort, .dash-tbody .dash-th .downsort {
    font-size: .7em;
    position: absolute;
    right: 0px;
    bottom: 0px;
    padding: 3px; }

.dash-thead .dash-td .fa-arrow-up, .dash-tbody .dash-td .fa-arrow-up {
  color: green;
  margin-right: 6px; }

.dash-thead .dash-td .fa-arrow-down, .dash-tbody .dash-td .fa-arrow-down {
  color: red;
  margin-right: 6px; }

.dash-thead .dash-td .dash-td-callout, .dash-tbody .dash-td .dash-td-callout {
  text-align: center;
  border: 1px solid;
  border-radius: 10px;
  text-decoration: underline;
  color: #747656;
  cursor: pointer; }
  .dash-thead .dash-td .dash-td-callout.yellow, .dash-tbody .dash-td .dash-td-callout.yellow {
    background-color: #FFEDB4;
    border-color: #F3DFA9; }
  .dash-thead .dash-td .dash-td-callout.yellow:hover, .dash-tbody .dash-td .dash-td-callout.yellow:hover {
    background-color: #F7E4A5; }

.ellipsis, .advanced-overlay .search-overlay-wrapper .Select .Select-item {
  overflow: hidden;
  text-overflow: ellipsis;
  -o-text-overflow: ellipsis;
  white-space: nowrap; }
  .ellipsis.wrap, .advanced-overlay .search-overlay-wrapper .Select .wrap.Select-item {
    white-space: normal; }

.summarybox {
  background: white; }
  .summarybox .body {
    border-bottom: 1px #CCC solid;
    border-left: 1px #CCC solid;
    border-right: 1px #CCC solid;
    height: 65px;
    padding: 5px 5px 5px 10px;
    width: 185px; }
  .summarybox .value {
    line-height: 43px;
    font-size: 40px;
    font-family: "tradegothic-cn"; }
  .summarybox .topbar {
    height: 7px;
    border: 1px solid;
    width: 200px; }
  .summarybox.small .body {
    width: 140px !important; }
  .summarybox.small .topbar {
    width: 155px !important; }
  .summarybox.small .value {
    font-size: 26px; }
  .summarybox.tiny .body {
    width: 100px !important; }
  .summarybox.tiny .topbar {
    width: 115px !important; }
  .summarybox.tiny .value {
    font-size: 26px; }
  @media (max-width: 1199px) {
    .summarybox .body {
      width: 140px; }
    .summarybox .topbar {
      width: 155px; } }
  .summarybox .boxlabel {
    color: #9297A0; }
  .summarybox .orange .topbar {
    background-color: #F37821;
    border-color: #F37821; }
  .summarybox .orange .body .value {
    color: #F37821; }
  .summarybox .gray .topbar, .summarybox .grey .topbar {
    background-color: #998676;
    border-color: #998676; }
  .summarybox .gray .body .value, .summarybox .grey .body .value {
    color: #998676; }
  .summarybox .blue .topbar {
    background-color: #5FB3EE;
    border-color: #5FB3EE; }
  .summarybox .blue .body .value {
    color: #5FB3EE; }

.tabnav .tab-title {
  display: inline-block;
  font-size: 18px;
  padding: 0px 10px;
  text-align: center;
  min-width: 60px;
  font-family: 'Helvetica Neue Light', Helvetica;
  text-transform: uppercase;
  cursor: pointer; }

.tabnav .tabnav-head {
  border-bottom: 1px solid #ccc;
  margin-bottom: 1em; }

.tabnav .selected-rectangle {
  border-bottom: 7px solid #666;
  width: 60px;
  margin: 5px auto 0 auto; }

.tabnav .tabnav-trans-enter {
  opacity: 0.01;
  transition: opacity .5s ease-in; }

.tabnav .tabnav-trans-enter.tabnav-trans-enter-active {
  opacity: 1; }

.page-header-dpl {
  border-bottom: 1px solid #ccc;
  margin-bottom: 15px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between; }
  .page-header-dpl .page-header-title {
    font-size: 32px;
    font-family: 'Helvetica Neue', Helvetica;
    font-weight: 300;
    letter-spacing: 0.03em;
    margin: 10px; }
  .page-header-dpl .buttons {
    -ms-flex-item-align: end;
        align-self: flex-end;
    margin-bottom: 5px; }

.summary-pip-wrapper .pip-value.pip-link {
  color: #00c1cc;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap; }
  .summary-pip-wrapper .pip-value.pip-link :hover {
    text-decoration: none; }
  @media (max-width: 1400px) {
    .summary-pip-wrapper .pip-value.pip-link {
      font-size: 14px; } }
  @media (min-width: 1401px) {
    .summary-pip-wrapper .pip-value.pip-link {
      font-size: 18px; } }

.pip-wrapper {
  display: inline-block;
  margin-right: 2%;
  vertical-align: top;
  position: relative;
  top: 10px; }
  @media (max-width: 1300px) {
    .pip-wrapper {
      top: 12px; } }
  .pip-wrapper.triple {
    float: right;
    position: relative;
    top: 12px;
    right: 20px; }

.pip {
  display: inline-block;
  width: 100%; }
  .pip .centerfix {
    line-height: 16px; }
  .pip .light-grey {
    color: #999 !important; }
  .pip .pip-label {
    color: #999; }
  .pip div.pip-value {
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    color: #333; }
    @media (max-width: 1400px) {
      .pip div.pip-value {
        font-size: 14px; } }
    @media (min-width: 1401px) {
      .pip div.pip-value {
        font-size: 18px; } }
  .pip .pip-top-tier {
    color: #555 !important; }
    .pip .pip-top-tier span {
      font-size: 14px; }
  .pip .pip-bottom-tier {
    color: #999 !important; }
    .pip .pip-bottom-tier span {
      font-size: 13px; }
  .pip input {
    width: 75%; }
  .pip .triple-pip-item {
    display: inline-block;
    border-right: 2px solid #d2d8df;
    padding: 0px 5px;
    color: #999999; }
    .pip .triple-pip-item:last-child {
      border: none;
      padding-right: none; }
    @media (max-width: 1300px) {
      .pip .triple-pip-item {
        display: block;
        float: left;
        clear: left;
        border: none;
        padding: 0; } }
  .pip .select-pip {
    width: 100%;
    float: left; }

.heading-pip .heading {
  font-size: 15px;
  color: #555;
  padding-bottom: 10px;
  border-bottom: 2px solid #D1D3D4; }

.card-wrapper .footer {
  border-top: 2px dotted #d2d8df;
  margin-top: 1px;
  padding-top: 15px; }
  .card-wrapper .footer::after {
    clear: both;
    content: "";
    display: table; }
  .card-wrapper .footer .delete-wrapper {
    display: inline-block; }
  .card-wrapper .footer .cancel-save-wrapper {
    display: inline-block;
    float: right; }

.card-wrapper {
  background: white;
  border: 1px solid #ddd;
  border-radius: 4px;
  box-shadow: 1px 1px 1px #ddd;
  min-width: 640px;
  position: relative;
  margin-bottom: 0px;
  margin-top: 0px;
  transition: margin-bottom 100ms, margin-top 100ms; }
  .card-wrapper:hover {
    cursor: pointer;
    background-color: #f5f5f5; }
  .card-wrapper.open {
    margin-bottom: 10px;
    margin-top: 10px; }
    .card-wrapper.open:hover {
      cursor: auto;
      background-color: white; }
    .card-wrapper.open .error-msg {
      margin: 15px 20px 0 0; }
    .card-wrapper.open .alert {
      margin-bottom: 0px; }
  .card-wrapper .add-wrapper {
    padding: 0 15px 15px 15px; }
  .card-wrapper .add-footer-wrapper {
    margin-top: 20px; }
  .card-wrapper .card-summary-wrapper {
    min-height: 60px; }
    .card-wrapper .card-summary-wrapper:before {
      content: '';
      display: inline-block;
      height: 100%;
      vertical-align: middle; }
    .card-wrapper .card-summary-wrapper .card-summary {
      display: inline-block;
      vertical-align: middle;
      width: 100%; }
    .card-wrapper .card-summary-wrapper .error-msg {
      margin-left: 15px;
      margin-right: 35px; }
    .card-wrapper .card-summary-wrapper .summary-pip-wrapper {
      padding: 0 15px; }
    .card-wrapper .card-summary-wrapper .chevron {
      float: right;
      position: absolute;
      top: 10px;
      right: 10px;
      cursor: pointer;
      color: #696977; }
  .card-wrapper .card-detail-wrapper {
    margin-top: 15px;
    border-top: 1px solid #D1D3D4;
    overflow: hidden;
    padding: 15px; }
    .card-wrapper .card-detail-wrapper .card-detail .heading {
      margin-bottom: 15px; }
  .card-wrapper .card-overlay-wrapper {
    width: 100%;
    background: white;
    z-index: 100;
    text-align: center;
    opacity: .9;
    border: solid #CB9695 1.5px;
    border-radius: 4px;
    position: absolute;
    height: 100%; }
    .card-wrapper .card-overlay-wrapper:before {
      content: '';
      display: inline-block;
      height: 100%;
      vertical-align: middle;
      margin-right: -0.25em;
      /* Adjusts for spacing */ }
  .card-wrapper .add-overlay-wrapper {
    position: static; }
  .card-wrapper .overlay {
    display: inline-block; }
    .card-wrapper .overlay .delete-q {
      line-height: 1.3;
      color: #8C201B;
      font-size: 21px;
      font-weight: bold; }
    .card-wrapper .overlay .warning {
      size: 15px; }
    .card-wrapper .overlay .checkbox {
      margin: 25px auto;
      padding: 10px;
      background-color: #F4F4F4;
      border-radius: 4px; }
      .card-wrapper .overlay .checkbox input {
        float: none;
        margin-right: 10px;
        vertical-align: text-bottom; }
    .card-wrapper .overlay .cancel {
      color: #8C201B;
      font-size: 14px;
      margin-right: 100px; }
  .card-wrapper .center-box {
    display: inline-block;
    vertical-align: middle; }
    .card-wrapper .center-box div {
      margin: 25px; }

.slide-enter {
  max-height: 0px; }

.slide-enter.slide-enter-active {
  max-height: 800px;
  transition: max-height 500ms ease-in; }

.slide-leave {
  max-height: 800px; }

.slide-leave.slide-leave-active {
  max-height: 0px;
  transition: max-height 500ms ease-out; }

.dpl-basic-menu {
  display: -webkit-box;
  display: -moz-box;
  display: box;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  box-align: center;
  -moz-align-items: center;
  -ms-align-items: center;
  -o-align-items: center;
  align-items: center;
  -ms-flex-align: center;
  position: relative; }

.dpl-menu-btn span {
  padding-left: 5px; }

.dpl-menu-btn i {
  padding-left: 5px;
  font-size: 15px; }

.dpl-menu-btn .menu-btn-text {
  text-transform: none;
  color: #333;
  font-size: 13px;
  font-weight: normal; }

.dpl-menu-btn .menu-btn-option-text {
  font-size: 15px;
  font-weight: 700; }

.display-menu-dropdown {
  display: block; }

.hide-menu-dropdown {
  display: none; }

.meue-dropdown-wrapper .menu-transparent-overlay {
  position: fixed;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  z-index: 99;
  background-color: transparent; }

.meue-dropdown-wrapper .menu-dropdown {
  border: 1px solid #BABABA;
  padding: 10px 0px;
  position: absolute;
  top: 30px;
  right: 8px;
  box-sizing: border-box;
  background-color: #FFF;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 1px 5px 0 rgba(0, 0, 0, 0.12);
  border-radius: 4px;
  z-index: 100;
  line-height: 20px; }
  .meue-dropdown-wrapper .menu-dropdown .menu-item-wrapper ul {
    list-style: none;
    margin: 0px;
    padding: 0px 14px; }
    .meue-dropdown-wrapper .menu-dropdown .menu-item-wrapper ul .menu-item,
    .meue-dropdown-wrapper .menu-dropdown .menu-item-wrapper ul .mode-item {
      text-align: left;
      white-space: nowrap;
      padding: 8px 4px; }
      .meue-dropdown-wrapper .menu-dropdown .menu-item-wrapper ul .menu-item.highlight,
      .meue-dropdown-wrapper .menu-dropdown .menu-item-wrapper ul .mode-item.highlight {
        background: #f3f1ee; }
      .meue-dropdown-wrapper .menu-dropdown .menu-item-wrapper ul .menu-item div,
      .meue-dropdown-wrapper .menu-dropdown .menu-item-wrapper ul .mode-item div {
        display: inline-block; }
      .meue-dropdown-wrapper .menu-dropdown .menu-item-wrapper ul .menu-item .option-icon-container,
      .meue-dropdown-wrapper .menu-dropdown .menu-item-wrapper ul .mode-item .option-icon-container {
        width: 20px; }
      .meue-dropdown-wrapper .menu-dropdown .menu-item-wrapper ul .menu-item .option-label,
      .meue-dropdown-wrapper .menu-dropdown .menu-item-wrapper ul .menu-item .mode-label,
      .meue-dropdown-wrapper .menu-dropdown .menu-item-wrapper ul .mode-item .option-label,
      .meue-dropdown-wrapper .menu-dropdown .menu-item-wrapper ul .mode-item .mode-label {
        padding-left: 12px;
        color: #444456;
        cursor: pointer; }
      .meue-dropdown-wrapper .menu-dropdown .menu-item-wrapper ul .menu-item i,
      .meue-dropdown-wrapper .menu-dropdown .menu-item-wrapper ul .mode-item i {
        color: #696978; }
    .meue-dropdown-wrapper .menu-dropdown .menu-item-wrapper ul .clickable {
      cursor: pointer !important; }
    .meue-dropdown-wrapper .menu-dropdown .menu-item-wrapper ul .not-clickable {
      cursor: default !important; }
    .meue-dropdown-wrapper .menu-dropdown .menu-item-wrapper ul .mode-top-item {
      border-top: 1px solid #DADADD; }

.summarybox {
  background: white; }
  .summarybox .body {
    border-bottom: 1px #CCC solid;
    border-left: 1px #CCC solid;
    border-right: 1px #CCC solid;
    height: 65px;
    padding: 5px 5px 5px 10px;
    width: 185px; }
  .summarybox .value {
    line-height: 43px;
    font-size: 40px;
    font-family: "tradegothic-cn"; }
  .summarybox .topbar {
    height: 7px;
    border: 1px solid;
    width: 200px; }
  .summarybox.small .body {
    width: 140px !important; }
  .summarybox.small .topbar {
    width: 155px !important; }
  .summarybox.small .value {
    font-size: 26px; }
  .summarybox.tiny .body {
    width: 100px !important; }
  .summarybox.tiny .topbar {
    width: 115px !important; }
  .summarybox.tiny .value {
    font-size: 26px; }
  @media (max-width: 1199px) {
    .summarybox .body {
      width: 140px; }
    .summarybox .topbar {
      width: 155px; } }
  .summarybox .boxlabel {
    color: #9297A0; }
  .summarybox .orange .topbar {
    background-color: #F37821;
    border-color: #F37821; }
  .summarybox .orange .body .value {
    color: #F37821; }
  .summarybox .gray .topbar, .summarybox .grey .topbar {
    background-color: #998676;
    border-color: #998676; }
  .summarybox .gray .body .value, .summarybox .grey .body .value {
    color: #998676; }
  .summarybox .blue .topbar {
    background-color: #5FB3EE;
    border-color: #5FB3EE; }
  .summarybox .blue .body .value {
    color: #5FB3EE; }

.summarybox-group-container {
  display: -ms-flexbox;
  display: flex; }

.summarybox-group .button-group-box .body {
  border-right: none; }
  @media (min-width: 1199px) {
    .summarybox-group .button-group-box .body {
      width: 186px; } }
  @media (max-width: 1199px) {
    .summarybox-group .button-group-box .body {
      width: 141px; } }

.summarybox-group .button-group-box:last-child .body {
  border-right: 1px #CCC solid; }
  @media (min-width: 1199px) {
    .summarybox-group .button-group-box:last-child .body {
      width: 185px; } }
  @media (max-width: 1199px) {
    .summarybox-group .button-group-box:last-child .body {
      width: 140px; } }

.summarybox-group .button-group-box .summarybox.small .body {
  border-right: none;
  width: 141px;
  border-left: 1px #CCC dashed; }

.summarybox-group .button-group-box:last-child .summarybox.small .body {
  border-right: 1px #CCC solid;
  width: 140px; }

.summarybox-group .button-group-box .summarybox.tiny .body {
  width: 101px;
  border-left: 1px #CCC dashed; }

.summarybox-group .button-group-box:first-child .summarybox.tiny .body {
  border-left: 1px #CCC solid; }

.summarybox-group .button-group-box:nth-last-child(2) .summarybox.tiny .body {
  border-right: 1px #CCC solid;
  width: 100px; }

.summarybox-group .subtitle {
  background-color: white;
  border-bottom: 1px #CCC solid;
  border-left: 1px #CCC solid;
  border-right: 1px #CCC solid;
  color: #696977;
  padding: 1px 8px; }

.searchbar-wrapper {
  position: relative; }
  .searchbar-wrapper .searchbar-select-wrapper {
    position: relative;
    display: table;
    border-collapse: separate; }
    .searchbar-wrapper .searchbar-select-wrapper .searchbar-select-advanced {
      display: table-cell;
      width: 100%;
      margin-bottom: 0px; }
      .searchbar-wrapper .searchbar-select-wrapper .searchbar-select-advanced .Select-control {
        border-top-right-radius: 0;
        border-bottom-right-radius: 0; }
    .searchbar-wrapper .searchbar-select-wrapper .searchbar-select {
      display: table-cell;
      width: 100%;
      margin-bottom: 0px; }
    .searchbar-wrapper .searchbar-select-wrapper .searchbar-select-advanced-wrapper {
      display: table-cell;
      position: relative;
      white-space: nowrap;
      width: 1%;
      vertical-align: middle; }
      .searchbar-wrapper .searchbar-select-wrapper .searchbar-select-advanced-wrapper .searchbar-select-advanced-button {
        height: 39px;
        background-color: #F3F1EE;
        border: 1px solid #D9D9D9;
        border-left: none;
        color: #424D51;
        padding: 0px 30px 0 15px;
        border-top-right-radius: 2px;
        border-bottom-right-radius: 2px;
        outline: none; }

.basic-searchbar-wrapper {
  position: relative; }
  .basic-searchbar-wrapper .searchbar-input-wrapper {
    display: -ms-flexbox;
    display: flex;
    display: -ms-flex; }
    .basic-searchbar-wrapper .searchbar-input-wrapper .searchbar-input, .basic-searchbar-wrapper .searchbar-input-wrapper .searchbar-input-advanced {
      margin-bottom: 0px;
      -ms-flex-positive: 1;
          flex-grow: 1;
      -ms-flex: 1 0 0px;
          flex: 1 0 0; }
    .basic-searchbar-wrapper .searchbar-input-wrapper .searchbar-input-advanced {
      border-top-right-radius: 0;
      border-bottom-right-radius: 0; }
    .basic-searchbar-wrapper .searchbar-input-wrapper .searchbar-input-advanced-button {
      border-top-right-radius: 2px;
      border-bottom-right-radius: 2px; }
    .basic-searchbar-wrapper .searchbar-input-wrapper .searchbar-input, .basic-searchbar-wrapper .searchbar-input-wrapper .searchbar-input-advanced-button {
      margin-right: 10px; }
    .basic-searchbar-wrapper .searchbar-input-wrapper .searchbar-input-advanced-button {
      height: 30px;
      background-color: #F3F1EE;
      border: 1px solid #D9D9D9;
      border-left: none;
      color: #424D51;
      padding: 0px 30px 0 15px;
      border-top-right-radius: 2px;
      border-bottom-right-radius: 2px;
      outline: none;
      position: relative; }
      .basic-searchbar-wrapper .searchbar-input-wrapper .searchbar-input-advanced-button .searchbar-input-advanced-button-icon {
        position: absolute;
        font-size: 17px;
        top: 5px;
        right: 12px; }

.searchbar-advanced-overlay {
  padding: 15px;
  border: 1px solid #BABABA;
  border-radius: 2px;
  position: absolute;
  top: 0px;
  box-sizing: border-box;
  width: 100%;
  background-color: #fff; }
  .searchbar-advanced-overlay .searchbar-advanced-overlay-close-icon {
    position: absolute;
    right: 8px;
    top: 5px;
    color: #999;
    font-size: 15px;
    cursor: pointer; }

.searchbar-select-advanced-button-icon {
  font-size: 17px;
  position: absolute;
  right: 12px;
  top: 11px; }

.multiselect-wrapper-dpl {
  border: 1px solid #ddd;
  border-radius: 4px;
  padding: 7px 5px 7px 0px;
  height: 27px;
  min-width: 250px;
  overflow-y: auto;
  overflow-x: auto;
  transition: height 1s; }
  .multiselect-wrapper-dpl .multiselect-content {
    display: inline; }
  .multiselect-wrapper-dpl .multiselect-header {
    margin: 0px 0px 0px 8px;
    padding: 0px 10px;
    font-size: 14px;
    font-weight: normal;
    height: 32px;
    width: 95%;
    text-align: left;
    border-bottom: 1px solid #ebebeb; }
    .multiselect-wrapper-dpl .multiselect-header .header-cell {
      display: inline-block;
      vertical-align: top;
      position: relative; }
  .multiselect-wrapper-dpl .search-cell {
    width: 55%; }
    .multiselect-wrapper-dpl .search-cell .search-icon {
      vertical-align: top;
      margin-top: 6px; }
    .multiselect-wrapper-dpl .search-cell .search-input {
      border: none;
      box-shadow: none;
      width: 70%;
      font-size: 13px; }
  .multiselect-wrapper-dpl .control-cell {
    width: 45%;
    margin-top: 4px;
    text-align: right; }
    .multiselect-wrapper-dpl .control-cell .multiselect-top-button {
      padding-right: 5px;
      padding-left: 5px;
      border-right: 1px solid #CCC;
      font-size: 12px; }
    .multiselect-wrapper-dpl .control-cell .last {
      border-right: none;
      margin-right: 10px; }
  .multiselect-wrapper-dpl .selection-open {
    position: absolute;
    right: 18px;
    top: 12px; }
  .multiselect-wrapper-dpl i.icon {
    display: inline-block;
    margin-right: 4px; }
  .multiselect-wrapper-dpl i.font-icon {
    font-size: 15px !important;
    margin-right: 4px; }
  .multiselect-wrapper-dpl .options-content {
    padding: 15px; }
  .multiselect-wrapper-dpl .display-table {
    display: table !important;
    width: 100%; }
    .multiselect-wrapper-dpl .display-table .display-table-cell {
      display: table-cell;
      width: 25%;
      max-width: 200px;
      vertical-align: top; }
      .multiselect-wrapper-dpl .display-table .display-table-cell .section {
        padding: 0 10px;
        margin-bottom: 20px; }
        .multiselect-wrapper-dpl .display-table .display-table-cell .section label.checkbox span {
          cursor: pointer; }
    .multiselect-wrapper-dpl .display-table .cell-right-border {
      border-right: 1px solid #acb5b7; }
    .multiselect-wrapper-dpl .display-table .display-table-cell:first-child {
      padding-left: 0px; }
    .multiselect-wrapper-dpl .display-table .display-table-cell:last-child {
      border-right: none; }
  .multiselect-wrapper-dpl .spaced-bottom {
    margin-bottom: 20px; }
  .multiselect-wrapper-dpl .checkbox {
    min-height: 18px; }
  .multiselect-wrapper-dpl .multiselect-checkbox {
    margin: 4px 0px 0px -18px; }
  .multiselect-wrapper-dpl .ellipsis, .multiselect-wrapper-dpl .advanced-overlay .search-overlay-wrapper .Select .Select-item, .advanced-overlay .search-overlay-wrapper .Select .multiselect-wrapper-dpl .Select-item {
    overflow: hidden;
    text-overflow: ellipsis;
    -o-text-overflow: ellipsis;
    white-space: nowrap; }
  .multiselect-wrapper-dpl .tokens-inner-pane {
    margin-left: 9px;
    display: inline-block; }
    .multiselect-wrapper-dpl .tokens-inner-pane .selected-text {
      font-style: italic;
      color: #30303F;
      margin-left: 0px;
      line-height: 25px; }
    .multiselect-wrapper-dpl .tokens-inner-pane .token-container {
      border: 1px solid #B8B9BA;
      border-radius: 5px;
      background-color: #666;
      padding: 1px 5px 1px 10px;
      margin: 2px;
      height: 19px;
      display: inline-block; }
      .multiselect-wrapper-dpl .tokens-inner-pane .token-container .token {
        color: #d2d8df; }
      .multiselect-wrapper-dpl .tokens-inner-pane .token-container .token-delete-btn {
        display: inline;
        border: 0px;
        border-radius: 21px;
        color: #fff;
        padding: 0px 4px 1px 4px;
        outline: none;
        cursor: pointer;
        background-color: transparent; }

.dpl-modal {
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  overflow-x: hidden;
  overflow-y: auto;
  position: fixed;
  z-index: 1040;
  box-sizing: border-box;
  background: rgba(0, 0, 0, 0.6); }
  .dpl-modal .modal-close-button-wrapper {
    width: 100%; }
    .dpl-modal .modal-close-button-wrapper > .modal-close-button {
      color: inherit;
      position: absolute;
      right: 9px;
      top: 6px; }
      .dpl-modal .modal-close-button-wrapper > .modal-close-button > i.fa {
        font-size: inherit !important; }
  .dpl-modal .dpl-modal-dialog {
    position: relative;
    z-index: 1050;
    margin: 20px;
    margin-top: 50px;
    margin-left: auto;
    margin-right: auto;
    width: 500px;
    transition: transform 0.3s ease-out; }
    .dpl-modal .dpl-modal-dialog .dpl-modal-content {
      background-color: white;
      position: relative;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
      border: 1px solid rgba(0, 0, 0, 0.2);
      border-radius: 1px; }
      .dpl-modal .dpl-modal-dialog .dpl-modal-content .dpl-modal-title {
        font-size: 21px;
        font-weight: 700;
        color: #30303F; }
      .dpl-modal .dpl-modal-dialog .dpl-modal-content .dpl-modal-header, .dpl-modal .dpl-modal-dialog .dpl-modal-content .dpl-modal-footer {
        padding-left: 20px;
        padding-right: 20px;
        padding-bottom: 15px;
        padding-top: 15px;
        position: relative;
        background-color: white; }
      .dpl-modal .dpl-modal-dialog .dpl-modal-content .dpl-modal-summary {
        padding-left: 20px;
        padding-right: 20px;
        font-weight: 700;
        font-size: 16px;
        color: #30303F; }
      .dpl-modal .dpl-modal-dialog .dpl-modal-content .dpl-modal-body {
        padding: 20px 20px; }
  .dpl-modal .dpl-modal-backdrop-close {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1030;
    background: transparent; }
  .dpl-modal .footer {
    border-top: 2px dotted #d2d8df;
    margin-top: 1px;
    padding-top: 15px; }
    .dpl-modal .footer::after {
      clear: both;
      content: "";
      display: table; }
    .dpl-modal .footer .delete-wrapper,
    .dpl-modal .footer .left-buttons {
      display: inline-block; }
      .dpl-modal .footer .delete-wrapper button,
      .dpl-modal .footer .left-buttons button {
        margin-left: 12px; }
      .dpl-modal .footer .delete-wrapper button:first-child,
      .dpl-modal .footer .left-buttons button:first-child {
        margin-left: 0; }
    .dpl-modal .footer .cancel-save-wrapper,
    .dpl-modal .footer .right-buttons {
      display: inline-block;
      float: right; }
      .dpl-modal .footer .cancel-save-wrapper button,
      .dpl-modal .footer .right-buttons button {
        margin-right: 12px; }
      .dpl-modal .footer .cancel-save-wrapper button:last-child,
      .dpl-modal .footer .right-buttons button:last-child {
        margin-right: 0; }

.dpl-button-primary, .advanced-overlay .search-overlay-wrapper .search-overlay-footer .filter-btn,
.dpl-link-primary {
  background: #5E81D3;
  border: 0;
  color: white; }
  .dpl-button-primary:hover, .advanced-overlay .search-overlay-wrapper .search-overlay-footer .filter-btn:hover, .dpl-button-primary.hover, .advanced-overlay .search-overlay-wrapper .search-overlay-footer .hover.filter-btn,
  .dpl-link-primary:hover,
  .dpl-link-primary.hover {
    background: #4b67a9; }
  .dpl-button-primary:focus, .advanced-overlay .search-overlay-wrapper .search-overlay-footer .filter-btn:focus, .dpl-button-primary.focus, .advanced-overlay .search-overlay-wrapper .search-overlay-footer .focus.filter-btn,
  .dpl-link-primary:focus,
  .dpl-link-primary.focus {
    outline: none;
    background: #4b67a9; }
  .dpl-button-primary:active, .advanced-overlay .search-overlay-wrapper .search-overlay-footer .filter-btn:active, .dpl-button-primary.active, .advanced-overlay .search-overlay-wrapper .search-overlay-footer .active.filter-btn,
  .dpl-link-primary:active,
  .dpl-link-primary.active {
    background-color: #384d7f; }
  .dpl-button-primary:disabled, .advanced-overlay .search-overlay-wrapper .search-overlay-footer .filter-btn:disabled, .dpl-button-primary.disabled, .advanced-overlay .search-overlay-wrapper .search-overlay-footer .disabled.filter-btn,
  .dpl-link-primary:disabled,
  .dpl-link-primary.disabled {
    outline: none;
    background: #5E81D3; }

.dpl-button-secondary,
.dpl-link-secondary {
  background: transparent;
  border: 1px solid;
  color: #5E81D3; }
  .dpl-button-secondary:hover, .dpl-button-secondary.hover,
  .dpl-link-secondary:hover,
  .dpl-link-secondary.hover {
    color: #4b67a9; }
  .dpl-button-secondary:focus, .dpl-button-secondary.focus,
  .dpl-link-secondary:focus,
  .dpl-link-secondary.focus {
    outline: none;
    color: #4b67a9; }
  .dpl-button-secondary:active, .dpl-button-secondary.active,
  .dpl-link-secondary:active,
  .dpl-link-secondary.active {
    outline: none;
    color: #384d7f; }
  .dpl-button-secondary:disabled, .dpl-button-secondary.disabled,
  .dpl-link-secondary:disabled,
  .dpl-link-secondary.disabled {
    outline: none;
    color: #5E81D3;
    background: transparent; }

.dpl-button-tertiary, .advanced-overlay .search-overlay-wrapper .search-overlay-footer .search-overlay-footer-cancel,
.dpl-link-tertiary {
  background: transparent;
  border: 0;
  color: #5E81D3; }
  .dpl-button-tertiary:hover, .advanced-overlay .search-overlay-wrapper .search-overlay-footer .search-overlay-footer-cancel:hover, .dpl-button-tertiary.hover, .advanced-overlay .search-overlay-wrapper .search-overlay-footer .hover.search-overlay-footer-cancel, .dpl-button-tertiary:focus, .advanced-overlay .search-overlay-wrapper .search-overlay-footer .search-overlay-footer-cancel:focus, .dpl-button-tertiary.focus, .advanced-overlay .search-overlay-wrapper .search-overlay-footer .focus.search-overlay-footer-cancel,
  .dpl-link-tertiary:hover,
  .dpl-link-tertiary.hover,
  .dpl-link-tertiary:focus,
  .dpl-link-tertiary.focus {
    outline: none;
    background: rgba(158, 158, 158, 0.2);
    color: #4b67a9; }
  .dpl-button-tertiary:active, .advanced-overlay .search-overlay-wrapper .search-overlay-footer .search-overlay-footer-cancel:active, .dpl-button-tertiary.active, .advanced-overlay .search-overlay-wrapper .search-overlay-footer .active.search-overlay-footer-cancel,
  .dpl-link-tertiary:active,
  .dpl-link-tertiary.active {
    color: #384d7f; }
  .dpl-button-tertiary:disabled, .advanced-overlay .search-overlay-wrapper .search-overlay-footer .search-overlay-footer-cancel:disabled, .dpl-button-tertiary.disabled, .advanced-overlay .search-overlay-wrapper .search-overlay-footer .disabled.search-overlay-footer-cancel,
  .dpl-link-tertiary:disabled,
  .dpl-link-tertiary.disabled {
    outline: none;
    color: #5E81D3;
    background: transparent; }

.dpl-button, .button-icon, .advanced-overlay .search-overlay-wrapper .search-overlay-footer .search-overlay-footer-cancel, .advanced-overlay .search-overlay-wrapper .search-overlay-footer .filter-btn,
.dpl-link {
  border-radius: 3px;
  box-sizing: border-box;
  cursor: pointer;
  display: inline-block;
  padding: 0 16px;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 12px;
  font-weight: bold;
  height: 30px;
  line-height: 30px;
  min-width: 65px;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  vertical-align: middle;
  /* Animation method from MDL */
  transition: background 150ms cubic-bezier(0.4, 0, 0.2, 1); }
  .dpl-button:disabled, .button-icon:disabled, .advanced-overlay .search-overlay-wrapper .search-overlay-footer .search-overlay-footer-cancel:disabled, .advanced-overlay .search-overlay-wrapper .search-overlay-footer .filter-btn:disabled, .dpl-button.disabled, .disabled.button-icon, .advanced-overlay .search-overlay-wrapper .search-overlay-footer .disabled.search-overlay-footer-cancel, .advanced-overlay .search-overlay-wrapper .search-overlay-footer .disabled.filter-btn,
  .dpl-link:disabled,
  .dpl-link.disabled {
    opacity: 0.5; }

.has-icon {
  padding: 0px 16px 0px 0px !important; }

/* For icons/1-2 letter text */
.dpl-button--circle, .button-icon,
.dpl-link--circle {
  color: #5E81D3;
  display: inline-block;
  width: 30px;
  min-width: 30px;
  height: 30px;
  padding: 0;
  border-radius: 50%;
  vertical-align: middle;
  line-height: 30px;
  text-align: center;
  /* Animation method from MDL */
  transition: all 150ms cubic-bezier(0.4, 0, 0.2, 1); }
  .dpl-button--circle:hover, .button-icon:hover, .dpl-button--circle:focus, .button-icon:focus,
  .dpl-link--circle:hover,
  .dpl-link--circle:focus {
    background: rgba(158, 158, 158, 0.2);
    cursor: pointer; }
  .dpl-button--circle:active, .button-icon:active, .dpl-button--circle.active, .active.button-icon,
  .dpl-link--circle:active,
  .dpl-link--circle.active {
    background: #5E81D3;
    color: white; }
    .dpl-button--circle:active .fa, .button-icon:active .fa, .dpl-button--circle:active .material-icons, .button-icon:active .material-icons, .dpl-button--circle.active .fa, .active.button-icon .fa, .dpl-button--circle.active .material-icons, .active.button-icon .material-icons,
    .dpl-link--circle:active .fa,
    .dpl-link--circle:active .material-icons,
    .dpl-link--circle.active .fa,
    .dpl-link--circle.active .material-icons {
      color: white; }
  .dpl-button--circle .fa, .button-icon .fa, .dpl-button--circle .material-icons, .button-icon .material-icons,
  .dpl-link--circle .fa,
  .dpl-link--circle .material-icons {
    font-size: 18px;
    line-height: 30px;
    margin: 0;
    text-align: center;
    vertical-align: middle; }

.dpl-button-default,
.dpl-button-link,
.dpl-link-default {
  color: #00B0E0;
  cursor: pointer;
  font-size: inherit;
  font-weight: inherit;
  text-transform: none; }
  .dpl-button-default:hover,
  .dpl-button-link:hover,
  .dpl-link-default:hover {
    text-decoration: underline; }

.button-icon {
  vertical-align: middle;
  display: -ms-inline-flexbox;
  display: inline-flex;
  width: 32px;
  min-width: 32px;
  height: 30px;
  line-height: 30px;
  background: none;
  border: none;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
  text-decoration: none;
  border-radius: 6px; }
  .button-icon .fa {
    font-size: 23px !important;
    line-height: 30px;
    width: 24px;
    text-align: center;
    vertical-align: middle;
    margin: 0 !important;
    /* Overriding some table styles */
    margin-top: 0 !important;
    margin-left: 0 !important; }
  .button-icon .icon {
    margin: 7px auto; }
  .button-icon:hover, .button-icon:focus {
    cursor: pointer;
    outline: none;
    text-decoration: none; }
  .button-icon:active, .button-icon:active .fa {
    color: white; }
  .button-icon.active-clicked {
    background: rgba(158, 158, 158, 0.2); }
    .button-icon.active-clicked .fa {
      color: #5E81D3; }

.arrow-button {
  display: none; }

.arrow-button {
  position: absolute;
  right: 0;
  bottom: -23px;
  display: block;
  width: 45px;
  height: 45px;
  background: #5E81D3;
  border-radius: 100%;
  cursor: pointer; }
  .arrow-button:after {
    content: ' ';
    position: absolute;
    top: 3px;
    left: 0;
    z-index: -1;
    display: block;
    width: 100%;
    height: 100%;
    background: #d0d0d5;
    border-radius: 100%; }

.arrow-button__arrow {
  position: absolute;
  top: 13px;
  left: 16px;
  width: 10px;
  height: 10px;
  border-right: 4px solid #ffffff;
  border-top: 4px solid #ffffff;
  transform: rotate(135deg); }

.text-input-button {
  position: absolute;
  right: 2.5px;
  top: 50%;
  margin-top: -8px; }

.dpl-header-bulk-action {
  padding-left: 16px;
  margin-top: 25px;
  min-height: 30px;
  min-width: 780px; }
  .dpl-header-bulk-action .header-left-side {
    display: inline-block; }
    .dpl-header-bulk-action .header-left-side div,
    .dpl-header-bulk-action .header-left-side input {
      vertical-align: middle; }
    .dpl-header-bulk-action .header-left-side .hidden {
      display: none; }
    .dpl-header-bulk-action .header-left-side .selected-items-count {
      display: inline-block;
      padding-left: 10px;
      color: #696977;
      font-weight: 700;
      font-size: 15px;
      height: 30px;
      line-height: 30px; }
    .dpl-header-bulk-action .header-left-side .select-all-or-undo {
      display: inline-block;
      color: #5E81D3;
      text-decoration: underline;
      padding: 0px;
      margin: 2px 4px 0px 15px;
      min-width: inherit; }
      .dpl-header-bulk-action .header-left-side .select-all-or-undo:hover {
        color: #4b67a9; }
    .dpl-header-bulk-action .header-left-side .bulk-header-btn {
      display: inline-block;
      font-size: 15px;
      font-weight: 700;
      margin-left: 0.5rem;
      padding: 0px 8px; }
      .dpl-header-bulk-action .header-left-side .bulk-header-btn i {
        padding-right: 0.25rem; }
  .dpl-header-bulk-action .header-right-side {
    float: right;
    text-align: right; }
    .dpl-header-bulk-action .header-right-side .items-count {
      display: inline-block;
      vertical-align: middle;
      padding-right: 10px;
      padding-top: 7px; }
    .dpl-header-bulk-action .header-right-side .sort-wrapper {
      display: inline-block;
      vertical-align: middle; }
      .dpl-header-bulk-action .header-right-side .sort-wrapper .dpl-menu-btn {
        padding: 0px 5px;
        margin-top: 2px; }

.dpl-header-bulk-action .checkbox-bulk-actions {
  display: inline-block;
  margin-top: 3px;
  height: 30px;
  line-height: 30px; }

.bulk-delete-modal .hidden {
  display: none; }

.bulk-delete-modal-body label.confirmation-row {
  margin: 0;
  display: block; }

.bulk-delete-modal-body .confirmation-cell {
  display: inline-block;
  margin-top: 20px; }

.bulk-delete-modal-body .accept-risks-checkbox {
  margin-left: 5px;
  margin-right: 10px;
  margin-top: 0;
  vertical-align: inherit; }

.bulk-delete-modal-body .body-warning {
  padding: 8px 35px 8px 14px;
  margin-top: 20px;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
  background-color: #fcf8e3;
  border: 1px solid #fbeed5;
  border-radius: 4px;
  color: #c09853; }

.animated-input-container {
  position: relative;
  margin-bottom: 1.5em; }

.animated-input-text {
  position: relative;
  background: transparent;
  box-sizing: border-box;
  width: 100%;
  padding: 10px 10px 5px;
  margin: 0 0 0.5em 0;
  border: none;
  border-bottom: 1px solid #8f8f9a;
  border-radius: 0;
  color: #696978; }
  .animated-input-text:focus {
    outline: none; }
  .animated-input-text:disabled {
    border-bottom-color: #b4b4bb; }

.input-required.input-entered .animated-input-text {
  border-bottom-color: #ab6673; }

.input-required.input-valid .animated-input-text {
  border-bottom-color: #5E81D3; }

.animated-input-label {
  font-size: 1em;
  position: absolute;
  top: 10px;
  left: 7px;
  color: #8f8f9a;
  transition: transform 300ms, font-size 300ms; }

.input-focus .animated-input-label,
.input-entered .animated-input-label {
  font-size: 0.8em;
  transform: translate3d(3px, -24px, 0px);
  transition: transform 300ms, font-size 300ms; }

.input-entered.input-required .animated-input-label {
  color: #ab6673; }

.input-required.input-valid .animated-input-label {
  color: #5E81D3; }

.input-disabled .animated-input-label {
  color: #b4b4bb; }

.animated-validation-message {
  position: absolute;
  font-size: 0.8em;
  top: -14px;
  right: 3px;
  max-width: 50%;
  max-height: 2em;
  text-align: right;
  overflow: hidden;
  display: block; }

.input-alert {
  color: #ab6673; }
  .input-alert .animated-input-label {
    color: #ab6673; }
  .input-alert .animated-input-text {
    border-bottom-color: #ab6673; }

.animated-extended-message {
  position: absolute;
  left: 0;
  bottom: 150%;
  width: 100%;
  font-size: 0.8em;
  background-color: #696978;
  color: #ffffff;
  padding: 1em;
  box-sizing: border-box;
  z-index: 10;
  opacity: 0;
  transition: opacity 300ms; }

.input-focus .animated-extended-message {
  opacity: 1; }

.animated-input-button,
.animated-input-submit {
  font-family: tradegothic;
  font-weight: normal;
  text-transform: uppercase;
  text-align: center;
  padding: 0.5em 0.75em;
  color: #ffffff;
  background: #F37821;
  border: 1px solid #F37821;
  border-radius: 3px;
  box-sizing: border-box;
  cursor: pointer;
  transition: transform 150ms; }
  .animated-input-button.full-width,
  .animated-input-submit.full-width {
    width: 100%;
    display: block; }
  .animated-input-button:disabled,
  .animated-input-submit:disabled {
    background: #f8ae7a;
    border-color: #f8ae7a;
    cursor: default; }
    .animated-input-button:disabled:hover,
    .animated-input-submit:disabled:hover {
      background: #f8ae7a;
      border-color: #f8ae7a; }
  .animated-input-button:hover,
  .animated-input-submit:hover {
    background: #f5934d;
    border-color: #f5934d; }
  .animated-input-button:active,
  .animated-input-submit:active {
    outline: none;
    box-shadow: none;
    background: #c2601a;
    border-color: #c2601a;
    transform: translateY(2px); }

.animated--select {
  position: relative;
  width: 100%;
  height: 40px; }
  .animated--select select,
  .animated--select .chosen-container,
  .animated--select label {
    position: absolute;
    top: 0;
    left: 0; }
  .animated--select label {
    padding: 10px 7px;
    font-size: 16px;
    color: #8f8f9a;
    transition: transform 300ms, font-size 300ms; }
  .animated--select .chosen-single {
    height: 35px;
    padding: 10px 10px 5px;
    border-radius: 0;
    border: none;
    border-bottom: 1px solid #8f8f9a;
    background: transparent;
    box-shadow: none; }
    .animated--select .chosen-single.focus {
      background: red; }
    .animated--select .chosen-single span {
      margin-top: -2px;
      color: #696978;
      font-size: 16px; }
  .animated--select .chosen-drop {
    border: 1px solid #8f8f9a;
    border-radius: 0;
    box-shadow: none; }
  .animated--select .chosen-single div b {
    background: none !important; }
  .animated--select .chosen-single div b::before {
    content: '\F107';
    position: absolute;
    top: 6px;
    right: 7px;
    font-family: fontawesome;
    font-smoothing: always;
    color: #b4b4bb; }
  .animated--select .chosen-with-drop .chosen-single {
    border: none; }
  .animated--select .chosen-with-drop div b::before {
    content: '\F106'; }
  .animated--select .chosen-container {
    width: 100% !important; }
  .animated--select .chosen-container .chosen-results {
    padding-top: 4px;
    font-size: 16px; }
    .animated--select .chosen-container .chosen-results .highlighted {
      background: #5E81D3;
      color: #ffffff; }
  .animated--select .chosen-container-active .chosen-single {
    background: transparent; }
  .animated--select.animated--error .animated-validation-message {
    display: block;
    color: #ab6673; }
  .animated--select.animated--error label {
    color: #ab6673; }
  .animated--select.animated--error .chosen-single {
    border-bottom: 1px solid #ab6673; }
  .animated--select.animated--error.animated--label-active .animated-validation-message {
    display: block; }

.animated--select.animated--label-active label {
  font-size: 14px;
  transform: translate3d(3px, -24px, 0px);
  transition: transform 300ms, font-size 300ms; }

.animated--select.animated--option-selected .chosen-single {
  border-bottom: 1px solid #5E81D3; }

.animated--select.animated--option-selected label {
  color: #5E81D3; }

.animated--select.no-chosen {
  height: auto; }
  .animated--select.no-chosen .animated__select {
    position: relative;
    margin-top: 0.8em; }

.fade-enter {
  opacity: 0.01; }

.fade-enter.fade-enter-active {
  opacity: 1;
  transition: opacity 300ms ease-in; }

.fade-leave {
  opacity: 1; }

.fade-leave.fade-leave-active {
  opacity: 0.01;
  transition: opacity 300ms ease-in; }

.cisco-banner {
  max-width: 59.5em;
  margin-left: auto;
  margin-right: auto;
  box-sizing: border-box;
  height: 40px;
  line-height: 40px;
  margin: 0;
  padding: 0 1em;
  background: #444456;
  border-bottom: 1px solid #ffffff; }
  .cisco-banner::after {
    clear: both;
    content: "";
    display: table; }
  .cisco-banner p, .cisco-banner a, .cisco-banner table.dashboard-table .column-editable .data-text:hover, table.dashboard-table .column-editable .cisco-banner .data-text:hover, .cisco-banner
  table.dashboard-table.table-striped tbody tr:nth-child(odd) td.column-editable .data-text:hover,
  table.dashboard-table.table-striped tbody tr:nth-child(odd) td.column-editable .cisco-banner .data-text:hover {
    font-size: 13px;
    letter-spacing: 0.5pt;
    color: #ffffff;
    display: block;
    margin: 0; }
  .cisco-banner a, .cisco-banner table.dashboard-table .column-editable .data-text:hover, table.dashboard-table .column-editable .cisco-banner .data-text:hover, .cisco-banner
  table.dashboard-table.table-striped tbody tr:nth-child(odd) td.column-editable .data-text:hover,
  table.dashboard-table.table-striped tbody tr:nth-child(odd) td.column-editable .cisco-banner .data-text:hover {
    text-decoration: none; }
    .cisco-banner a:hover, .cisco-banner table.dashboard-table .column-editable .data-text:hover, table.dashboard-table .column-editable .cisco-banner .data-text:hover, .cisco-banner
    table.dashboard-table.table-striped tbody tr:nth-child(odd) td.column-editable .data-text:hover,
    table.dashboard-table.table-striped tbody tr:nth-child(odd) td.column-editable .cisco-banner .data-text:hover {
      text-decoration: underline; }
    .cisco-banner a:active, .cisco-banner table.dashboard-table .column-editable .data-text:active:hover, table.dashboard-table .column-editable .cisco-banner .data-text:active:hover {
      color: #4b67a9; }

.cisco-banner__logo {
  float: left;
  display: block;
  margin-right: 3.57866%;
  width: 22.316%; }
  .cisco-banner__logo:last-child {
    margin-right: 0; }

.cisco-banner__logo__img {
  height: 27px;
  width: auto; }

.cisco-banner__logo__img--dark {
  display: none; }

.cisco-banner__learn {
  float: left;
  display: block;
  margin-right: 3.57866%;
  width: 74.10533%;
  margin-right: 0; }
  .cisco-banner__learn:last-child {
    margin-right: 0; }
  .cisco-banner__learn p {
    text-align: right;
    line-height: 20px; }

.cisco-banner__about {
  display: none; }

.hero-banner {
  position: relative;
  z-index: 1;
  margin-bottom: 2em;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #696978; }

@media screen and (min-width: 59.5em) {
  .cisco-banner {
    max-width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 99;
    overflow: hidden; }
  .cisco-banner__logo {
    display: inline-block;
    vertical-align: middle;
    float: left;
    display: block;
    margin-right: 1.16509%;
    width: 7.26533%; }
    .cisco-banner__logo:last-child {
      margin-right: 0; }
  .cisco-banner__learn {
    display: inline-block;
    vertical-align: middle;
    float: left;
    display: block;
    margin-right: 1.16509%;
    width: 45.20224%; }
    .cisco-banner__learn:last-child {
      margin-right: 0; }
    .cisco-banner__learn p {
      text-align: left;
      line-height: 40px; }
    .cisco-banner__learn a, .cisco-banner__learn table.dashboard-table .column-editable .data-text:hover, table.dashboard-table .column-editable .cisco-banner__learn .data-text:hover, .cisco-banner__learn
    table.dashboard-table.table-striped tbody tr:nth-child(odd) td.column-editable .data-text:hover,
    table.dashboard-table.table-striped tbody tr:nth-child(odd) td.column-editable .cisco-banner__learn .data-text:hover {
      display: inline;
      margin-left: 2em; }
  .cisco-banner__about {
    display: block;
    display: inline-block;
    vertical-align: middle;
    float: left;
    display: block;
    margin-right: 1.16509%;
    width: 45.20224%; }
    .cisco-banner__about:last-child {
      margin-right: 0; }
    .cisco-banner__about a, .cisco-banner__about table.dashboard-table .column-editable .data-text:hover, table.dashboard-table .column-editable .cisco-banner__about .data-text:hover, .cisco-banner__about
    table.dashboard-table.table-striped tbody tr:nth-child(odd) td.column-editable .data-text:hover,
    table.dashboard-table.table-striped tbody tr:nth-child(odd) td.column-editable .cisco-banner__about .data-text:hover {
      text-align: right;
      line-height: 40px; }
  .hero-banner--medium {
    height: 350px; }
    .hero-banner--medium .grid {
      height: 350px; }
  .hero-banner--large {
    height: 500px; }
    .hero-banner--large .grid {
      height: 500px; }
  .hero-banner .grid {
    overflow: visible; }
    .hero-banner .grid:before {
      content: '';
      display: inline-block;
      height: 100%;
      margin-right: -0.25em;
      vertical-align: middle; }
  .hero-banner__heading {
    padding: 0;
    font-size: 64px;
    line-height: 1.05;
    text-transform: uppercase;
    letter-spacing: 0.5pt;
    display: inline-block;
    vertical-align: middle; }
  .hero-banner__heading__super {
    font-size: 30px; }
  .hero-banner__heading__break {
    display: block; } }

.dpl-pagination-wrapper {
  width: 100%;
  height: 30px;
  padding-top: 10px;
  margin-bottom: 10px; }
  .dpl-pagination-wrapper .dpl-pagination {
    float: right;
    display: block;
    color: #696977;
    text-align: right; }
    .dpl-pagination-wrapper .dpl-pagination .jump-to-page {
      display: inline-block;
      min-height: 20px;
      vertical-align: top;
      text-align: center; }
      .dpl-pagination-wrapper .dpl-pagination .jump-to-page.focus {
        outline: thin dotted;
        outline: 5px auto -webkit-focus-ring-color;
        outline-offset: -2px; }
      .dpl-pagination-wrapper .dpl-pagination .jump-to-page .jump-to-page-label,
      .dpl-pagination-wrapper .dpl-pagination .jump-to-page .jump-to-page-select-wrapper {
        display: inline-block;
        vertical-align: top; }
      .dpl-pagination-wrapper .dpl-pagination .jump-to-page .Select {
        color: #696977; }
        .dpl-pagination-wrapper .dpl-pagination .jump-to-page .Select .Select-arrow {
          top: 6px; }
        .dpl-pagination-wrapper .dpl-pagination .jump-to-page .Select .Select-control {
          padding-top: 0;
          padding-bottom: 0;
          background: transparent;
          border: none !important; }
          .dpl-pagination-wrapper .dpl-pagination .jump-to-page .Select .Select-control:hover {
            background: transparent;
            box-shadow: none; }
          .dpl-pagination-wrapper .dpl-pagination .jump-to-page .Select .Select-control .Select-placeholder {
            padding-top: 0;
            padding-bottom: 0;
            min-width: 29px;
            color: #696977; }
          .dpl-pagination-wrapper .dpl-pagination .jump-to-page .Select .Select-control .Select-menu-item {
            color: #696977; }
    .dpl-pagination-wrapper .dpl-pagination .results-per-page {
      display: inline-block;
      margin-left: 20px;
      min-height: 20px;
      vertical-align: top;
      text-align: center; }
      .dpl-pagination-wrapper .dpl-pagination .results-per-page.focus {
        outline: thin dotted;
        outline: 5px auto -webkit-focus-ring-color;
        outline-offset: -2px; }
      .dpl-pagination-wrapper .dpl-pagination .results-per-page > span {
        display: inline-block;
        vertical-align: top; }
      .dpl-pagination-wrapper .dpl-pagination .results-per-page .Select {
        color: #696977; }
        .dpl-pagination-wrapper .dpl-pagination .results-per-page .Select .Select-arrow {
          top: 6px; }
        .dpl-pagination-wrapper .dpl-pagination .results-per-page .Select .Select-control {
          padding-top: 0;
          padding-bottom: 0;
          background: transparent;
          border: none !important;
          height: 20px; }
          .dpl-pagination-wrapper .dpl-pagination .results-per-page .Select .Select-control:hover {
            background: transparent;
            box-shadow: none; }
          .dpl-pagination-wrapper .dpl-pagination .results-per-page .Select .Select-control .Select-input {
            min-width: 5px;
            outline: none; }
          .dpl-pagination-wrapper .dpl-pagination .results-per-page .Select .Select-control .Select-placeholder {
            padding-top: 0;
            padding-bottom: 0;
            color: #696977; }
          .dpl-pagination-wrapper .dpl-pagination .results-per-page .Select .Select-control .Select-menu-item {
            color: #696977; }
    .dpl-pagination-wrapper .dpl-pagination .x-of-y {
      display: inline-block;
      margin-left: 20px;
      min-height: 20px;
      vertical-align: top;
      text-align: center; }
    .dpl-pagination-wrapper .dpl-pagination .pagination-arrows {
      display: inline-block;
      margin-left: 20px;
      margin-top: -2px;
      min-height: 20px;
      vertical-align: top;
      font-size: 22px; }
      .dpl-pagination-wrapper .dpl-pagination .pagination-arrows .right {
        padding-left: 20px;
        padding-right: 5px; }
      .dpl-pagination-wrapper .dpl-pagination .pagination-arrows .left {
        padding-right: 20px; }
      .dpl-pagination-wrapper .dpl-pagination .pagination-arrows .active {
        color: #5E81D3;
        cursor: pointer; }
      .dpl-pagination-wrapper .dpl-pagination .pagination-arrows .inactive {
        color: #becded;
        cursor: default; }

.file-upload .dropzone-wrapper {
  outline: none; }
  .file-upload .dropzone-wrapper:active .dropzone, .file-upload .dropzone-wrapper:focus .dropzone {
    border-color: rgba(94, 129, 211, 0.75); }
  .file-upload .dropzone-wrapper .dropzone {
    border-color: #b4b4bb;
    border-radius: 9px;
    border-style: dashed;
    border-width: 3px;
    cursor: pointer;
    color: #b4b4bb;
    height: 100%;
    background-color: rgba(218, 218, 221, 0.25); }
    .file-upload .dropzone-wrapper .dropzone:hover {
      border-color: rgba(94, 129, 211, 0.75); }
    .file-upload .dropzone-wrapper .dropzone.active {
      border-color: rgba(94, 129, 211, 0.75);
      color: rgba(94, 129, 211, 0.75); }
    .file-upload .dropzone-wrapper .dropzone.complete {
      border-style: solid;
      color: #5cb85c; }
    .file-upload .dropzone-wrapper .dropzone .dropzone-content {
      -ms-flex-align: stretch;
          align-items: stretch;
      display: -ms-flexbox;
      display: flex;
      -ms-flex-direction: column;
          flex-direction: column;
      height: 100%;
      -ms-flex-pack: justify;
          justify-content: space-between; }
      .file-upload .dropzone-wrapper .dropzone .dropzone-content .dropzone-icon {
        font-size: 64px;
        padding-bottom: 10px;
        padding-left: 15px;
        padding-right: 15px;
        padding-top: 25px;
        text-align: center; }
        .file-upload .dropzone-wrapper .dropzone .dropzone-content .dropzone-icon .invisible {
          visibility: hidden; }
      .file-upload .dropzone-wrapper .dropzone .dropzone-content .dropzone-text {
        color: #3c3c3c;
        font-size: 15px;
        font-weight: bold;
        text-align: center;
        font-family: CiscoSans-Bold, sans-serif;
        padding-bottom: 20px;
        padding-left: 15px;
        padding-right: 15px; }
      .file-upload .dropzone-wrapper .dropzone .dropzone-content .dropzone-action-area {
        text-align: center;
        padding-bottom: 20px;
        padding-left: 15px;
        padding-right: 15px; }
        .file-upload .dropzone-wrapper .dropzone .dropzone-content .dropzone-action-area .action-area-text {
          color: #5E81D3;
          font-family: CiscoSans, sans-serif;
          font-size: 14px; }

.notice-area {
  margin-top: 20px; }
  .notice-area .default-notice {
    font-size: 12px;
    line-height: 1.6;
    text-align: center;
    color: #8e8e99; }
  .notice-area .danger-notice {
    background-color: rgba(217, 83, 79, 0.25);
    padding-left: 16px;
    padding-top: 16px;
    padding-bottom: 16px;
    padding-right: 16px; }
    .notice-area .danger-notice .danger-icon {
      color: #dc8885;
      font-size: 24px;
      vertical-align: middle;
      margin-right: 16px;
      display: table-cell; }
    .notice-area .danger-notice .danger-text {
      display: table-cell;
      padding-left: 16px;
      color: #444456;
      vertical-align: middle; }

.dpl-progress {
  background-color: #dadadd;
  border-radius: 100px;
  height: 15px;
  overflow: hidden; }
  .dpl-progress .progress-bar {
    background-color: #049fd9;
    color: #fff;
    float: left;
    height: 100%;
    text-align: center;
    transition: width .5s ease-out;
    width: 0; }

.pill-wrapper {
  box-sizing: border-box;
  padding-left: 2px;
  padding-top: 1px;
  padding-bottom: 1px;
  font-family: 'Helvetica Neue Light', 'Helvetica Neue', Helvetica, sans-serif;
  font-size: 11px;
  cursor: default;
  -webkit-user-select: none;
  /* Chrome/Safari */
  -moz-user-select: none;
  /* Firefox */
  -ms-user-select: none;
  /* IE10+ */ }
  .pill-wrapper .pill-category {
    background-color: #D4D4D4;
    padding: 4px 3px;
    border-top-left-radius: 6px;
    border-bottom-left-radius: 6px;
    border-left: 1px solid #B8B8B8;
    border-top: 1px solid #B8B8B8;
    border-bottom: 1px solid #B8B8B8;
    display: inline-block;
    text-transform: uppercase; }
  .pill-wrapper .pill-body-wrapper {
    background-color: #E8E8E8;
    border: 1px solid #B8B8B8;
    border-top-right-radius: 6px;
    border-bottom-right-radius: 6px;
    display: inline-block;
    padding: 4px 3px; }
    .pill-wrapper .pill-body-wrapper .pill-body {
      display: inline-block;
      padding-right: 5px; }
    .pill-wrapper .pill-body-wrapper .delete-pill {
      display: inline-block; }
    .pill-wrapper .pill-body-wrapper .pill-icon {
      padding-right: 5px;
      font-size: 12px;
      display: inline-block;
      cursor: pointer; }

.padded-typeahead-search-wrapper {
  padding-right: 50px; }

.typeahead-search-wrapper {
  position: relative; }
  .typeahead-search-wrapper .search-clear-btn {
    margin-top: 2px; }

.search-wrapper {
  display: -webkit-box;
  display: -moz-box;
  display: box;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  box-align: start;
  -moz-align-items: flex-start;
  -ms-align-items: flex-start;
  -o-align-items: flex-start;
  align-items: flex-start;
  -ms-flex-align: start;
  position: relative;
  line-height: 12px; }
  .search-wrapper .search-input-container {
    width: 100%; }

.search-input-wrapper {
  border: 1px #b4b4bb solid;
  padding-left: 30px;
  position: relative;
  padding-top: 4px;
  padding-bottom: 4px;
  padding-right: 10px;
  box-sizing: border-box;
  border-radius: 4px;
  display: -webkit-box;
  display: -moz-box;
  display: box;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -moz-flex-grow: 1;
  flex-grow: 1;
  -ms-flex-positive: 1;
  background-color: #fff;
  min-height: 34px;
  -ms-flex-align: center;
      align-items: center; }
  .search-input-wrapper .input-wrapper {
    padding-left: 5px;
    padding-bottom: 1px;
    -ms-flex-positive: 1;
        flex-grow: 1;
    -ms-flex-grow: 1; }
    .search-input-wrapper .input-wrapper .select-input {
      width: 100%;
      border: none;
      outline: none;
      line-height: 20px;
      margin: 0px;
      padding: 0px;
      height: 22px;
      box-shadow: none;
      background-color: inherit; }
    .search-input-wrapper .input-wrapper .select-input:disabled {
      display: none; }
    .search-input-wrapper .input-wrapper .select-input[placeholder] {
      text-overflow: ellipsis;
      padding-top: 1px; }
    .search-input-wrapper .input-wrapper .select-input:-ms-input-placeholder {
      text-overflow: ellipsis; }
    .search-input-wrapper .input-wrapper .select-input::placeholder {
      text-overflow: ellipsis; }
    .search-input-wrapper .input-wrapper .select-input::-webkit-input-placeholder {
      text-overflow: ellipsis; }
    .search-input-wrapper .input-wrapper .select-input::-ms-input-placeholder {
      text-overflow: ellipsis; }
    .search-input-wrapper .input-wrapper .select-input:-ms-input-placeholder {
      text-overflow: ellipsis; }
  .search-input-wrapper .search-icon {
    color: #46494D;
    position: absolute;
    left: 7.5px;
    top: 50%;
    margin-top: -9.5px;
    font-size: 16px; }
  .search-input-wrapper .advanced {
    position: absolute;
    right: 7.5px;
    top: 50%;
    margin-top: -8px; }
  .search-input-wrapper.has-typeahead {
    border-bottom-left-radius: 0px;
    border-bottom-right-radius: 0px; }

.typeahead-wrapper {
  border-bottom: 1px solid #b4b4bb;
  border-left: 1px solid #b4b4bb;
  border-right: 1px solid #b4b4bb;
  padding: 0 10px;
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.2);
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
  box-sizing: border-box;
  width: 100%;
  background-color: #FFF;
  z-index: 2; }

.advanced-overlay {
  border: 1px solid #b4b4bb;
  padding: 15px 15px;
  position: absolute;
  top: 0px;
  right: 0;
  width: 100%;
  box-sizing: border-box;
  background-color: #FFF;
  box-shadow: 3px 3px 7px rgba(0, 0, 0, 0.2);
  border-radius: 4px;
  z-index: 10;
  line-height: 20px; }
  .advanced-overlay .search-overlay-wrapper {
    position: relative; }
    .advanced-overlay .search-overlay-wrapper .advanced-label {
      width: 100px;
      display: inline-block;
      margin: 0 10px 0 0;
      color: grey;
      vertical-align: middle; }
    .advanced-overlay .search-overlay-wrapper .search-overlay-close-icon {
      color: #B8B8B8;
      position: absolute;
      right: 0px;
      font-size: 15px; }
      .advanced-overlay .search-overlay-wrapper .search-overlay-close-icon:hover {
        color: black;
        cursor: pointer; }
    .advanced-overlay .search-overlay-wrapper .search-overlay-helper-text {
      line-height: 1.3em;
      margin: 7px 0 20px 0;
      color: #434D51; }
    .advanced-overlay .search-overlay-wrapper .search-overlay-header {
      font-size: 18px; }
    .advanced-overlay .search-overlay-wrapper .search-overlay-subheader {
      font-size: 15px; }
    .advanced-overlay .search-overlay-wrapper .Select {
      display: inline-block;
      width: 50%;
      vertical-align: middle; }
    .advanced-overlay .search-overlay-wrapper .dplselect-wrapper {
      margin-bottom: 5px; }
    .advanced-overlay .search-overlay-wrapper .search-overlay-footer {
      float: right; }
      .advanced-overlay .search-overlay-wrapper .search-overlay-footer .filter-btn {
        margin-left: 20px; }

.typeahead-message, .typeahead-context-name {
  padding-top: 10px;
  padding-left: 5px;
  font-size: 12px;
  color: #b4b4bb;
  display: inline-block;
  width: 100%; }

.typeahead-context-name {
  text-transform: uppercase; }

.typeahead-value-list {
  margin: 5px 0px;
  list-style: none;
  font-size: 12px; }

.typeahead-value-list li {
  padding-top: 3px;
  padding-bottom: 3px;
  cursor: pointer; }
  .typeahead-value-list li span {
    padding-left: 5px;
    padding-right: 5px; }

.typeahead-context-wrapper {
  border-bottom: 1px #b4b4bb solid; }
  .typeahead-context-wrapper:last-child {
    border: none; }
  .typeahead-context-wrapper .typeahead-context-error-message {
    margin-left: 25px;
    text-transform: none; }

.typeahead-highlighted-item {
  background-color: #DDD; }

.typeahead-item-cannot-select {
  color: #AAA;
  cursor: not-allowed !important; }

.typeahead-no-results {
  padding: 10px 5px;
  color: #888;
  font-size: 14px; }

.typeahead-fetch-placeholder {
  color: #888;
  cursor: default !important; }

.typeahead-item-type-filter, .typeahead-item-type-link {
  color: #00b0e0; }

.typeahead-item-type-link {
  text-transform: uppercase; }

.dpl-search-overlay {
  border: 1px solid #b4b4bb;
  padding: 15px 15px;
  position: absolute;
  top: -1px;
  left: -1px;
  width: 101%;
  box-sizing: border-box;
  background-color: #FFF;
  box-shadow: 3px 3px 7px rgba(0, 0, 0, 0.2);
  border-radius: 4px;
  z-index: 10;
  line-height: 20px; }
  .dpl-search-overlay .dpl-search-overlay-wrapper {
    position: relative; }
    .dpl-search-overlay .dpl-search-overlay-wrapper .dpl-search-overlay-close-icon {
      color: #b4b4bb;
      position: absolute;
      right: 0;
      font-size: 15px;
      cursor: pointer; }
    .dpl-search-overlay .dpl-search-overlay-wrapper .dpl-search-overlay-body {
      display: -ms-flexbox;
      display: flex;
      -ms-flex-direction: column;
          flex-direction: column;
      margin-top: 1em;
      margin-bottom: 1em; }
      .dpl-search-overlay .dpl-search-overlay-wrapper .dpl-search-overlay-body > * {
        margin-top: 0.5em;
        margin-bottom: 0.75em; }
    .dpl-search-overlay .dpl-search-overlay-wrapper .dpl-search-overlay-header {
      font-size: 18px;
      font-weight: 300;
      text-transform: uppercase;
      color: #444456; }
    .dpl-search-overlay .dpl-search-overlay-wrapper .dpl-search-overlay-buttons {
      text-align: right; }

.comparison-input {
  display: flex;
  display: -ms-flexbox;
  -ms-flex-align: baseline;
      align-items: baseline; }
  .comparison-input > * {
    margin-right: 1em; }
  .comparison-input .comparison-input-wrapper {
    border: 1px #b4b4bb solid;
    position: relative;
    padding-top: 4px;
    padding-bottom: 4px;
    box-sizing: border-box;
    border-radius: 4px;
    display: flex;
    display: -ms-flexbox;
    flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    background-color: #fff;
    margin-right: 0.5em; }
  .comparison-input .comparison-numeric-input {
    padding-left: 5px;
    padding-bottom: 1px; }

.overlay-row {
  display: flex;
  display: -ms-flexbox;
  -ms-flex-align: center;
      align-items: center; }
  .overlay-row select {
    width: auto;
    height: 34px;
    background-color: #fff; }
  .overlay-row input[type='text'] {
    border: none;
    outline: none;
    line-height: 20px;
    margin: 0px;
    padding: 0px;
    height: 22px;
    box-shadow: none; }
  .overlay-row .overlay-row-label {
    -ms-flex-preferred-size: 140px;
        flex-basis: 140px;
    padding-right: 1em;
    text-align: right;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    padding-top: 0px;
    color: #696977;
    font-size: 13px; }
  .overlay-row .overlay-row-body {
    -ms-flex: auto;
        flex: auto; }
    .overlay-row .overlay-row-body .search-input-wrapper {
      padding-left: 3px; }
      .overlay-row .overlay-row-body .search-input-wrapper i.search-icon {
        display: none; }
    .overlay-row .overlay-row-body .select-set {
      height: 34px;
      display: inline-block; }
    .overlay-row .overlay-row-body .help {
      padding-left: 1em;
      display: inline-block;
      padding-top: 2px;
      vertical-align: top;
      font-size: 13px; }
      .overlay-row .overlay-row-body .help a, .overlay-row .overlay-row-body .help table.dashboard-table .column-editable .data-text:hover, table.dashboard-table .column-editable .overlay-row .overlay-row-body .help .data-text:hover {
        padding: 0px !important; }

.radio-button-set {
  line-height: 34px;
  display: flex;
  display: -ms-flexbox;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap; }
  .radio-button-set .radio-set-item {
    margin-right: 1em;
    color: #444456; }
    .radio-button-set .radio-set-item input[type='radio'] {
      margin-right: 0.4em;
      margin-top: -0.1em; }
    .radio-button-set .radio-set-item label {
      display: inline-block; }

.overlay-hidden {
  display: none; }

.clearfix::after {
  clear: both;
  content: "";
  display: table; }

.center-block {
  display: block;
  margin-left: auto;
  margin-right: auto; }

.pull-right {
  float: right !important; }

.pull-left {
  float: left !important; }

.hide {
  display: none !important; }

.show {
  display: block !important; }

.invisible {
  visibility: hidden; }

.text-hide {
  overflow: hidden;
  text-indent: 101%;
  white-space: nowrap; }

.hidden {
  display: none !important; }

.offscreen {
  position: absolute;
  clip: rect(1px 1px 1px 1px);
  /* for Internet Explorer */
  clip: rect(1px, 1px, 1px, 1px);
  padding: 0;
  border: 0;
  height: 1px;
  width: 1px;
  overflow: hidden; }

.affix {
  position: fixed; }

.clickable {
  cursor: pointer; }

/* http://meyerweb.com/eric/tools/css/reset/ 
 v2.0 | 20110126
License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a,
table.dashboard-table .column-editable .data-text:hover,
table.dashboard-table.table-striped tbody tr:nth-child(odd) td.column-editable .data-text:hover, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline; }

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block; }

body {
  line-height: 1; }

ol, ul {
  list-style: none; }

blockquote, q {
  quotes: none; }

blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none; }

table {
  border-collapse: collapse;
  border-spacing: 0; }

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0); }
  40% {
    transform: translateY(-15); }
  60% {
    transform: translateY(-5); } }

@font-face {
  font-family: 'tradegothic';
  src: url("https://s3-us-west-1.amazonaws.com/webteam-font-storage/fonts/trade-gothic-standard/tradegothicltstd-bd2-webfont.eot");
  src: url("https://s3-us-west-1.amazonaws.com/webteam-font-storage/fonts/trade-gothic-standard/tradegothicltstd-bd2-webfont.eot?#iefix") format("embedded-opentype"), url("https://s3-us-west-1.amazonaws.com/webteam-font-storage/fonts/trade-gothic-standard/tradegothicltstd-bd2-webfont.woff") format("woff"), url("https://s3-us-west-1.amazonaws.com/webteam-font-storage/fonts/trade-gothic-standard/tradegothicltstd-bd2-webfont.ttf") format("truetype");
  font-weight: bold;
  font-style: normal; }

@font-face {
  font-family: 'tradegothic';
  src: url("https://s3-us-west-1.amazonaws.com/webteam-font-storage/fonts/trade-gothic-standard/tradegothicltstd-bd2obl-webfont.eot");
  src: url("https://s3-us-west-1.amazonaws.com/webteam-font-storage/fonts/trade-gothic-standardtradegothicltstd-bd2obl-webfont.eot?#iefix") format("embedded-opentype"), url("https://s3-us-west-1.amazonaws.com/webteam-font-storage/fonts/trade-gothic-standard/tradegothicltstd-bd2obl-webfont.woff") format("woff"), url("https://s3-us-west-1.amazonaws.com/webteam-font-storage/fonts/trade-gothic-standard/tradegothicltstd-bd2obl-webfont.ttf") format("truetype");
  font-weight: bold;
  font-style: italic; }

@font-face {
  font-family: 'tradegothic_light';
  src: url("https://s3-us-west-1.amazonaws.com/webteam-font-storage/fonts/trade-gothic-standard/tradegothicltstd-light-webfont.eot");
  src: url("https://s3-us-west-1.amazonaws.com/webteam-font-storage/fonts/trade-gothic-standard/tradegothicltstd-light-webfont.eot?#iefix") format("embedded-opentype"), url("https://s3-us-west-1.amazonaws.com/webteam-font-storage/fonts/trade-gothic-standard/tradegothicltstd-light-webfont.woff") format("woff"), url("https://s3-us-west-1.amazonaws.com/webteam-font-storage/fonts/trade-gothic-standard/tradegothicltstd-light-webfont.ttf") format("truetype");
  font-weight: lighter;
  font-style: normal; }

@font-face {
  font-family: 'tradegothic_light';
  src: url("https://s3-us-west-1.amazonaws.com/webteam-font-storage/fonts/trade-gothic-standard/tradegothicltstd-lightobl-webfont.eot");
  src: url("https://s3-us-west-1.amazonaws.com/webteam-font-storage/fonts/trade-gothic-standard/tradegothicltstd-lightobl-webfont.eot?#iefix") format("embedded-opentype"), url("https://s3-us-west-1.amazonaws.com/webteam-font-storage/fonts/trade-gothic-standard/tradegothicltstd-lightobl-webfont.woff") format("woff"), url("https://s3-us-west-1.amazonaws.com/webteam-font-storage/fonts/trade-gothic-standard/tradegothicltstd-lightobl-webfont.ttf") format("truetype");
  font-weight: lighter;
  font-style: italic; }

@font-face {
  font-family: 'tradegothic';
  src: url("https://s3-us-west-1.amazonaws.com/webteam-font-storage/fonts/trade-gothic-standard/tradegothicltstd-obl-webfont.eot");
  src: url("https://s3-us-west-1.amazonaws.com/webteam-font-storage/fonts/trade-gothic-standard/tradegothicltstd-obl-webfont.eot?#iefix") format("embedded-opentype"), url("https://s3-us-west-1.amazonaws.com/webteam-font-storage/fonts/trade-gothic-standard/tradegothicltstd-obl-webfont.woff") format("woff"), url("https://s3-us-west-1.amazonaws.com/webteam-font-storage/fonts/trade-gothic-standard/tradegothicltstd-obl-webfont.ttf") format("truetype");
  font-weight: normal;
  font-style: italic; }

@font-face {
  font-family: 'tradegothic';
  src: url("https://s3-us-west-1.amazonaws.com/webteam-font-storage/fonts/trade-gothic-standard/tradegothicltstd-webfont.eot");
  src: url("https://s3-us-west-1.amazonaws.com/webteam-font-storage/fonts/trade-gothic-standard/tradegothicltstd-webfont.eot?#iefix") format("embedded-opentype"), url("https://s3-us-west-1.amazonaws.com/webteam-font-storage/fonts/trade-gothic-standard/tradegothicltstd-webfont.woff") format("woff"), url("https://s3-us-west-1.amazonaws.com/webteam-font-storage/fonts/trade-gothic-standard/tradegothicltstd-webfont.ttf") format("truetype");
  font-weight: normal;
  font-style: normal; }

@font-face {
  font-family: 'tradegothic_cn';
  src: url("https://s3-us-west-1.amazonaws.com/webteam-font-storage/fonts/trade-gothic-condensed/tradegothicltstd-bdcn20-webfont.eot");
  src: url("https://s3-us-west-1.amazonaws.com/webteam-font-storage/fonts/trade-gothic-condensed/tradegothicltstd-bdcn20-webfont.eot?#iefix") format("embedded-opentype"), url("https://s3-us-west-1.amazonaws.com/webteam-font-storage/fonts/trade-gothic-condensed/tradegothicltstd-bdcn20-webfont.woff") format("woff"), url("https://s3-us-west-1.amazonaws.com/webteam-font-storage/fonts/trade-gothic-condensed/tradegothicltstd-bdcn20-webfont.ttf") format("truetype");
  font-weight: bold;
  font-style: normal; }

@font-face {
  font-family: 'tradegothic_cn';
  src: url("https://s3-us-west-1.amazonaws.com/webteam-font-storage/fonts/trade-gothic-condensed/tradegothicltstd-bdcn20obl-webfont.eot");
  src: url("https://s3-us-west-1.amazonaws.com/webteam-font-storage/fonts/trade-gothic-condensed/tradegothicltstd-bdcn20obl-webfont.eot?#iefix") format("embedded-opentype"), url("https://s3-us-west-1.amazonaws.com/webteam-font-storage/fonts/trade-gothic-condensed/tradegothicltstd-bdcn20obl-webfont.woff") format("woff"), url("https://s3-us-west-1.amazonaws.com/webteam-font-storage/fonts/trade-gothic-condensed/tradegothicltstd-bdcn20obl-webfont.ttf") format("truetype");
  font-weight: bold;
  font-style: italic; }

@font-face {
  font-family: 'tradegothic_cn';
  src: url("https://s3-us-west-1.amazonaws.com/webteam-font-storage/fonts/trade-gothic-condensed/tradegothicltstd-cn18-webfont.eot");
  src: url("https://s3-us-west-1.amazonaws.com/webteam-font-storage/fonts/trade-gothic-condensed/tradegothicltstd-cn18-webfont.eot?#iefix") format("embedded-opentype"), url("https://s3-us-west-1.amazonaws.com/webteam-font-storage/fonts/trade-gothic-condensed/tradegothicltstd-cn18-webfont.woff") format("woff"), url("https://s3-us-west-1.amazonaws.com/webteam-font-storage/fonts/trade-gothic-condensed/tradegothicltstd-cn18-webfont.ttf") format("truetype");
  font-weight: normal;
  font-style: normal; }

@font-face {
  font-family: 'tradegothic_cn';
  src: url("https://s3-us-west-1.amazonaws.com/webteam-font-storage/fonts/trade-gothic-condensed/tradegothicltstd-cn18obl-webfont.eot");
  src: url("https://s3-us-west-1.amazonaws.com/webteam-font-storage/fonts/trade-gothic-condensed/tradegothicltstd-cn18obl-webfont.eot?#iefix") format("embedded-opentype"), url("https://s3-us-west-1.amazonaws.com/webteam-font-storage/fonts/trade-gothic-condensed/tradegothicltstd-cn18obl-webfont.woff") format("woff"), url("https://s3-us-west-1.amazonaws.com/webteam-font-storage/fonts/trade-gothic-condensed/tradegothicltstd-cn18obl-webfont.ttf") format("truetype");
  font-weight: normal;
  font-style: italic; }

@-ms-viewport {
  width: device-width; }

@viewport {
  width: device-width; }

html {
  margin-top: 0 !important;
  font-size: 62.5%;
  background: #262631;
  box-sizing: content-box !important; }
  html.marketo-form, html.marketo-confirmation {
    background: transparent; }

body {
  font-size: 16px;
  font-size: 1.6rem;
  font-family: 'tradegothic_light';
  background: white; }

p {
  padding-bottom: 0.75em;
  font-size: 18px;
  font-size: 1.8rem;
  line-height: 1.7;
  letter-spacing: 0.4pt;
  color: #46494e; }

a, table.dashboard-table .column-editable .data-text:hover,
table.dashboard-table.table-striped tbody tr:nth-child(odd) td.column-editable .data-text:hover {
  color: #00b0e0;
  text-decoration: none; }
  a:hover, table.dashboard-table .column-editable .data-text:hover,
  table.dashboard-table.table-striped tbody tr:nth-child(odd) td.column-editable .data-text:hover {
    color: #00607a;
    text-decoration: underline; }

b,
strong {
  font-family: 'tradegothic';
  font-weight: bold; }

i,
em {
  font-family: 'tradegothic';
  font-style: italic; }

h4, h5, h6, .condensed.title {
  font-family: 'tradegothic_cn'; }

h2 {
  font-family: 'tradegothic';
  margin-bottom: 0.5em;
  font-size: 24px;
  font-size: 2.4rem;
  line-height: 1.25;
  color: #828282; }

h4 {
  padding-bottom: 0.5em;
  font-size: 22px;
  font-size: 2.2rem;
  line-height: 1.2;
  color: #46494e; }

ul {
  padding-bottom: 2.5em;
  list-style-type: square; }
  ul li {
    padding-bottom: 0.25em;
    font-size: 18px;
    font-size: 1.8rem;
    line-height: 1.7;
    color: #46494e; }
  ul ul {
    list-style-type: disc; }
  ul.none {
    list-style-type: none; }

ol {
  padding-bottom: 2.5em;
  padding-left: 1.25em;
  list-style: decimal; }
  ol li {
    font-size: 18px;
    font-size: 1.8rem;
    letter-spacing: 0.02em;
    line-height: 1.7;
    color: #46494e; }

blockquote,
blockquote p {
  font-size: 14px;
  font-size: 1.4rem;
  color: #828282;
  font-style: italic; }

sup {
  font-size: 0.7em;
  vertical-align: top; }

body.modal-open {
  overflow: hidden; }

h2.subhead {
  font-size: 24px;
  font-size: 2.4rem;
  margin: 0 0 0.5em; }

.page span.heading {
  display: block;
  margin-bottom: 0;
  padding: 0.25em 0;
  font-size: 30px;
  font-size: 3rem;
  line-height: 1;
  font-family: 'tradegothic_cn';
  font-weight: bold;
  text-transform: uppercase;
  color: #46494e;
  border-top: 1px dotted #828282;
  border-bottom: 1px dotted #828282; }

.topic-wrapper {
  margin: auto;
  position: relative;
  overflow: hidden; }
  .topic-wrapper:after {
    clear: both;
    content: '';
    display: table; }

.topic-title {
  padding: 20px 0 10px;
  margin-top: 1.2em;
  border-top: 1px dotted #46494e; }

.validation h3 {
  padding: 1em 0;
  font-size: 20px;
  font-size: 2rem;
  text-transform: uppercase;
  color: #b5b5b5;
  border-bottom: 1px dotted #b5b5b5; }

.clear::after {
  clear: both;
  content: "";
  display: table; }

.fancybox-outer {
  background: url(https://s3-us-west-1.amazonaws.com/webteam-cdn/opendns-www/img/preloader.gif) no-repeat center center; }
  .fancybox-outer .fancybox-nav span {
    background-image: url(https://s3-us-west-1.amazonaws.com/webteam-cdn/opendns-www/img/fancybox_sprite.png); }

.content {
  padding-top: 2em; }

body.promotion .content {
  padding-top: 6em; }

body.home .content,
body.enterprise-security .content,
body.threat-enforcement .content,
body.single-use-case .content,
body.single-video-testimonials .content,
body.single-case-studies .content,
body.single-research-papers .content,
body.single-events .content,
body.single-briefs .content,
body.single-datasheets .content,
body.single-ubernerds .content,
body.single-whitepapers .content,
body.single-webcasts .content,
body.single-videos .content,
body.contact-us .content,
body.solutions .content,
body.partners .content,
body.single-partners .content,
body.home-internet-security .content,
body.about .content,
body.support .content,
body.single-enterprise-product.threat-intelligence .content,
body.package-comparison .content {
  padding-top: 0; }

body.support-packages .content {
  padding-top: 3em; }

body.technology-partners .content {
  padding-top: 2em; }

body.technology-partners .content {
  padding-top: 6em; }

body.short-header .content {
  padding-top: 2em; }

.clean {
  list-style: none;
  list-style-type: none;
  margin-left: 0; }
  .clean > li {
    list-style: none;
    list-style-type: none; }

.hidden,
.isotope-hidden,
.overflow,
li[class*=flex-slide] {
  display: none; }

.hide-button {
  display: none !important; }

img.mobile-show {
  display: block;
  width: 100%;
  height: auto; }

.mobile-hide {
  display: none; }

.anchor {
  display: block;
  position: relative;
  top: 340px;
  visibility: hidden; }

.pagination .next {
  float: right; }

.pagination .previous {
  float: left; }

.clearfix::after {
  clear: both;
  content: "";
  display: table; }

.read-more {
  margin: 0;
  float: right;
  font-size: 14px;
  font-size: 1.4rem; }
  .read-more span.rarr {
    position: relative;
    display: inline-block;
    width: 0.8em;
    top: 0.1em;
    overflow: hidden;
    font-size: 1.3em;
    line-height: 1em;
    text-indent: -0.2em; }

.dark-qtip {
  background: #292934;
  overflow: visible; }
  .dark-qtip .fa-caret-left {
    position: absolute;
    left: -10px;
    top: 7px;
    font-size: 36px;
    font-size: 3.6rem;
    color: #292934; }
  .dark-qtip .fa-caret-right {
    display: none;
    position: absolute;
    right: -10px;
    top: 7px;
    font-size: 36px;
    font-size: 3.6rem;
    color: #292934; }
  .dark-qtip .fa-caret-up {
    position: absolute;
    left: 100px;
    top: -23px;
    font-size: 36px;
    font-size: 3.6rem;
    color: #292934; }
  .dark-qtip.secondary-nav {
    background: #363645; }
  .dark-qtip.secondary-nav p {
    color: white;
    font-size: 12px;
    font-size: 1.2rem; }
  .dark-qtip.secondary-nav .arrow {
    position: absolute;
    top: -10px;
    left: 0;
    height: 10px;
    width: 100%;
    text-align: center;
    overflow: hidden; }
    .dark-qtip.secondary-nav .arrow .fa-caret-up {
      position: relative;
      left: auto;
      top: -13px;
      color: #363645; }
  .dark-qtip p {
    padding: 0.5em;
    font-size: 12px;
    font-size: 1.2rem;
    line-height: 1.4;
    color: white; }
  .dark-qtip .qtip-content {
    overflow: visible; }
  .dark-qtip .info-window {
    padding: 0.5em;
    line-height: 1.7; }
    .dark-qtip .info-window * {
      padding: 0; }
    .dark-qtip .info-window ul {
      list-style: none; }
    .dark-qtip .info-window h3 {
      font-size: 16px;
      font-size: 1.6rem;
      color: white; }
    .dark-qtip .info-window p {
      font-size: 13px;
      font-size: 1.3rem; }
  .dark-qtip.qtip-pos-rb .fa-caret-left, .dark-qtip.qtip-pos-rt .fa-caret-left {
    display: none; }
  .dark-qtip.qtip-pos-rb .fa-caret-right, .dark-qtip.qtip-pos-rt .fa-caret-right {
    display: block; }
  .dark-qtip.qtip-pos-rb .fa-caret-right {
    top: auto;
    bottom: 14px; }

.image-banner {
  display: block;
  text-align: center;
  height: 400px; }
  .image-banner .image-banner-heading {
    padding: 0; }
  .image-banner .grid {
    top: -350px; }
  .image-banner p {
    width: 100%;
    padding: 0.25em 0 0;
    margin: 1em auto;
    font-size: 17px;
    font-size: 1.7rem;
    color: white;
    line-height: 1.4;
    letter-spacing: 0.08em;
    text-transform: none; }

.image-banner .banner {
  background-repeat: no-repeat;
  background-position: 50% 0%;
  background-size: cover;
  height: 400px;
  position: relative;
  overflow: hidden; }
  .image-banner .banner:before {
    content: ' ';
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100%;
    background: rgba(6, 41, 81, 0.5); }

.no-scrim .banner:before {
  background: none; }

.content-banner {
  margin-bottom: 3em; }
  .content-banner .image {
    width: 100%; }
    .content-banner .image img {
      height: auto;
      margin: 1em auto;
      width: 325px; }
  .content-banner .message {
    margin: 2em 0;
    width: 100%; }

.blue-background {
  padding: 2em 0;
  background: #7e9adc; }
  .blue-background .dark-column .title {
    color: white;
    font-size: 28px;
    font-size: 2.8rem;
    text-align: center; }
  .blue-background .message::after {
    clear: both;
    content: "";
    display: table; }
  .blue-background .message img {
    width: 176px;
    height: 35px;
    margin-top: 20px; }
  .blue-background .message p {
    color: #dedede;
    font-size: 16px;
    font-size: 1.6rem;
    letter-spacing: 1pt; }
  .blue-background .message .title {
    color: #292934;
    font-size: 28px;
    font-size: 2.8rem;
    padding-bottom: 0.5em; }
  .blue-background .message .button {
    float: right; }

.expandable-box p.title {
  font-family: 'tradegothic';
  font-size: 18px;
  font-size: 1.8rem; }

.expandable-box .caption {
  color: #828282;
  font-size: 16px;
  font-size: 1.6rem; }

.expandable-box .expandable p,
.expandable-box .expanded p {
  font-size: 14px;
  font-size: 1.4rem;
  padding-bottom: 1em; }

.expandable-box .expandable h4,
.expandable-box .expanded h4 {
  font-size: 18px;
  font-size: 1.8rem;
  line-height: 1.2;
  margin: 1.2em 0; }

.expandable-box .expandable ol, .expandable-box .expandable ul,
.expandable-box .expanded ol,
.expandable-box .expanded ul {
  margin-left: 25px;
  padding-bottom: 1em;
  padding-left: 0; }
  .expandable-box .expandable ol li, .expandable-box .expandable ul li,
  .expandable-box .expanded ol li,
  .expandable-box .expanded ul li {
    font-size: 14px;
    font-size: 1.4rem;
    line-height: 1.6; }

.expand-list {
  border-top: 1px dotted #e7e4df;
  list-style: none;
  margin: 0 0 16px;
  padding: 4px 0 48px; }
  .expand-list li {
    border-bottom: 1px dotted #d6d4d1;
    padding: 0 14px 0 0;
    margin: 0;
    line-height: 1; }
    .expand-list li:first-child {
      border-top: 1px dotted #d6d4d1; }
    .expand-list li p {
      display: none;
      background-color: white;
      padding: 16px;
      margin-right: -14px;
      font-size: 16px;
      font-size: 1.6rem; }
      .expand-list li p.title {
        font-family: 'tradegothic';
        font-weight: normal;
        font-size: 22px;
        font-size: 2.2rem;
        display: block;
        padding: 28px 50px 28px 10px;
        margin: 0;
        line-height: 1.25;
        background-color: transparent;
        border-top: 0;
        background-image: url(https://s3-us-west-1.amazonaws.com/webteam-cdn/opendns-www/img/expand-icon.png);
        background-repeat: no-repeat;
        background-position: right 28px;
        background-size: 16px 16px;
        cursor: pointer; }
      .expand-list li p.visible {
        display: block; }
    .expand-list li:hover {
      background: #f3f0ed; }
      .expand-list li:hover p.title {
        background-color: transparent;
        background-image: url(https://s3-us-west-1.amazonaws.com/webteam-cdn/opendns-www/img/expand-icon-active.png); }
    .expand-list li.expanded {
      background: #f3f0ed; }
      .expand-list li.expanded .title {
        background-image: url(https://s3-us-west-1.amazonaws.com/webteam-cdn/opendns-www/img/collapse-icon.png);
        background-repeat: no-repeat;
        background-position: right 34px;
        background-size: 16px 4px; }
      .expand-list li.expanded:hover p.title {
        background-image: url(https://s3-us-west-1.amazonaws.com/webteam-cdn/opendns-www/img/collapse-icon-active.png); }

footer .left-column,
.page .left-column {
  float: left;
  display: block;
  margin-right: 3.57866%;
  width: 100%; }
  footer .left-column:last-child,
  .page .left-column:last-child {
    margin-right: 0; }

footer .main-column,
.page .main-column {
  float: left;
  display: block;
  margin-right: 3.57866%;
  width: 100%; }
  footer .main-column:last-child,
  .page .main-column:last-child {
    margin-right: 0; }

footer .right-column,
.page .right-column {
  float: left;
  display: block;
  margin-right: 3.57866%;
  width: 100%; }
  footer .right-column:last-child,
  .page .right-column:last-child {
    margin-right: 0; }

.grid {
  max-width: 59.5em;
  margin-left: auto;
  margin-right: auto;
  padding-right: 0.5em;
  padding-left: 0.5em;
  overflow: hidden;
  position: relative; }
  .grid::after {
    clear: both;
    content: "";
    display: table; }
  .grid.cms-columns {
    padding: 2em 0 0; }

.content .page-title-box {
  margin: 0 0 1em; }

.cms-content,
.main-column {
  margin-bottom: 0.5em; }

#social-share-box {
  display: none; }

.embed-container {
  position: relative;
  padding-bottom: 56.25%;
  padding-top: 30px;
  height: 0;
  overflow: hidden; }
  .embed-container iframe,
  .embed-container object,
  .embed-container embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 90%;
    height: 90%; }

img.fullwidth {
  display: none;
  width: 100%;
  height: auto;
  margin-top: 3em; }

.endorsement,
.endorsements {
  list-style: none; }
  .endorsement h4,
  .endorsements h4 {
    padding: 0.25em 0;
    margin: 0 0 0.5em;
    font-size: 20px;
    font-size: 2rem;
    color: #828282;
    text-transform: uppercase;
    border-top: 1px dotted #828282;
    border-bottom: 1px dotted #828282; }
  .endorsement p,
  .endorsements p {
    padding-left: 33px;
    color: #828282;
    font-size: 13px;
    font-size: 1.3rem;
    line-height: 1.55;
    font-family: 'tradegothic'; }
  .endorsement blockquote p,
  .endorsements blockquote p {
    font-size: 16px;
    font-size: 1.6rem;
    font-style: italic; }
  .endorsement .close-quote,
  .endorsement .open-quote,
  .endorsements .close-quote,
  .endorsements .open-quote {
    float: left;
    color: #cfcfcf;
    font-size: 55px;
    font-size: 5.5rem;
    line-height: 1;
    font-family: 'tradegothic'; }
  .endorsement .close-quote,
  .endorsements .close-quote {
    line-height: 0;
    float: none;
    position: relative;
    top: 0.6em;
    right: 0.1em;
    padding-right: 0.1em; }
  .endorsement .attribution,
  .endorsements .attribution {
    font-size: 14px;
    font-size: 1.4rem; }
  .endorsement ul,
  .endorsements ul {
    list-style: none; }

.two-col-par {
  width: 100%;
  margin: 2em 0; }

.suggested-links {
  margin: 0;
  padding: 2em 0 1em;
  border-top: 1px dotted #46494e; }
  .suggested-links .title {
    font-weight: normal;
    font-size: 18px;
    font-size: 1.8rem;
    font-family: tradegothic_light, Helvetica, Arial, sans-serif;
    letter-spacing: 0.4pt;
    text-transform: none;
    padding-bottom: 0.5em; }
  .suggested-links .cta-block {
    float: left;
    display: block;
    margin-right: 3.57866%;
    width: 100%;
    text-align: center;
    padding: 1em 0;
    margin: 2em 0; }
    .suggested-links .cta-block:last-child {
      margin-right: 0; }
    .suggested-links .cta-block .cta.center {
      display: inline-block; }
    .suggested-links .cta-block .button.orange {
      margin-right: 2em; }
  .suggested-links .links {
    float: left;
    display: block;
    margin-right: 3.57866%;
    width: 100%; }
    .suggested-links .links:last-child {
      margin-right: 0; }
    .suggested-links .links ul li {
      font-size: 15px;
      font-size: 1.5rem;
      line-height: 1.4;
      list-style: disc inside;
      text-indent: -1em;
      padding: 0.5em 0 0.5em 1.5em;
      border-bottom: 1px dotted #46494e;
      letter-spacing: 0.04em; }
      .suggested-links .links ul li:last-child {
        border-bottom: none; }

#social-share-counter {
  padding: 10px 0;
  margin: 10px 0;
  border-top: 1px solid #e7e4df;
  border-bottom: 1px solid #e7e4df; }
  #social-share-counter > span,
  #social-share-counter > span > span,
  #social-share-counter > span > span > div {
    display: inline-block;
    position: relative;
    width: 80px;
    height: 15px; }
  #social-share-counter > span {
    margin-left: 10px; }
    #social-share-counter > span:first-child {
      margin-left: 0; }
  #social-share-counter .stBubble {
    position: absolute;
    left: 40px;
    top: 0;
    width: 40px;
    height: 14px;
    padding: 2px 0;
    margin: 0;
    background-image: none;
    border: 1px solid #e7e4df;
    border-left: none; }
    #social-share-counter .stBubble .stBubble_count {
      width: 40px;
      height: 15px;
      padding-top: 0;
      background: white;
      border: none;
      font-family: tradegothic_light;
      font-size: 12px;
      font-size: 1.2rem;
      color: #46494e;
      filter: none; }
  #social-share-counter .st_googleplus_vcount .stButton_gradient,
  #social-share-counter .st-facebook-counter,
  #social-share-counter .st-twitter-counter,
  #social-share-counter .st-linkedin-counter {
    position: absolute;
    top: 0;
    left: 0;
    width: 40px;
    height: 14px;
    padding: 3px 0;
    background-image: none !important;
    filter: none; }
    #social-share-counter .st_googleplus_vcount .stButton_gradient:after,
    #social-share-counter .st-facebook-counter:after,
    #social-share-counter .st-twitter-counter:after,
    #social-share-counter .st-linkedin-counter:after {
      position: absolute;
      top: 0;
      left: 0;
      width: 40px;
      height: 14px;
      padding: 3px 0;
      color: white;
      font-family: fontawesome;
      font-size: 14px;
      font-size: 1.4rem;
      font-smoothing: antialiased;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
      text-align: center;
      line-height: 15px; }
  #social-share-counter .st-facebook-counter {
    background-color: #4e7ac3; }
    #social-share-counter .st-facebook-counter:after {
      content: '\F09A'; }
  #social-share-counter .st-twitter-counter {
    background-color: #56c7f2; }
    #social-share-counter .st-twitter-counter:after {
      content: '\F099'; }
  #social-share-counter .st-linkedin-counter {
    background-color: #057ab2; }
    #social-share-counter .st-linkedin-counter:after {
      content: '\F0E1'; }
  #social-share-counter .st_googleplus_vcount .stButton_gradient {
    width: 40px !important;
    min-width: 40px !important;
    border: none !important;
    border-radius: 0 !important;
    background-color: #f65523; }
    #social-share-counter .st_googleplus_vcount .stButton_gradient:after {
      content: '\F0D5'; }
    #social-share-counter .st_googleplus_vcount .stButton_gradient span {
      display: none; }

.trending-now {
  margin: 3em 0; }

.trending-items {
  margin-top: 3em; }
  .trending-items .item {
    width: 80%;
    margin: auto;
    padding-bottom: 3em; }
  .trending-items .trending-item-title {
    text-align: center; }
  .trending-items a, .trending-items table.dashboard-table .column-editable .data-text:hover, table.dashboard-table .column-editable .trending-items .data-text:hover, .trending-items
  table.dashboard-table.table-striped tbody tr:nth-child(odd) td.column-editable .data-text:hover,
  table.dashboard-table.table-striped tbody tr:nth-child(odd) td.column-editable .trending-items .data-text:hover,
  .trending-items p {
    font-size: 14px;
    font-size: 1.4rem; }
  .trending-items img {
    width: 100%;
    margin-bottom: 1em;
    border: 1px solid #e7e4df; }
  .trending-items .learn-more {
    float: right; }
  .trending-items .ctas {
    text-align: center; }
  .trending-items .tag {
    position: relative;
    margin-bottom: 0.5em;
    color: #b5b5b5;
    text-transform: uppercase;
    font-size: 15px;
    font-size: 1.5rem; }
    .trending-items .tag:after {
      content: ' ';
      position: relative;
      top: 3px;
      display: block;
      width: 60px;
      height: 5px;
      background: #b5b5b5; }
  .trending-items .webcast-register {
    position: relative;
    margin: 1em 0 0.75em; }
    .trending-items .webcast-register:before, .trending-items .webcast-register:after {
      content: ' ';
      display: block;
      position: absolute;
      top: 18px;
      right: 105%;
      width: 50px;
      height: 0;
      border-bottom: 1px solid #e7e4df; }
    .trending-items .webcast-register:before {
      right: auto;
      left: 105%; }

.endorsements-slider#mobile-endorsements {
  display: none; }
  .endorsements-slider#mobile-endorsements .endorsement {
    position: static;
    height: auto;
    margin-top: 2em; }

.endorsements-slider .endorsements {
  position: relative;
  height: 300px;
  text-align: center; }
  .endorsements-slider .endorsements::after {
    clear: both;
    content: "";
    display: table; }
  .endorsements-slider .endorsements .endorsement {
    display: block;
    position: absolute;
    top: 0;
    width: 100%;
    opacity: 1; }
  .endorsements-slider .endorsements .endorsement + .endorsement {
    display: none; }
  .endorsements-slider .endorsements img {
    width: 90px;
    margin-bottom: 2em;
    border-radius: 100px;
    border: 1px solid #e7e4df; }
  .endorsements-slider .endorsements .attribution {
    font-size: 18px;
    font-size: 1.8rem;
    color: #46494e; }
  .endorsements-slider .endorsements blockquote {
    position: relative;
    width: 80%;
    margin: auto; }
    .endorsements-slider .endorsements blockquote p {
      color: #a8a8a8;
      font-size: 17px;
      font-size: 1.7rem;
      font-family: tradegothic_light;
      line-height: 1.8; }
    .endorsements-slider .endorsements blockquote:before {
      content: '\201C';
      position: absolute;
      top: -4px;
      right: 97%;
      color: #d2c9bc;
      font-size: 70px;
      font-size: 7rem;
      font-family: tradegothic;
      font-style: normal;
      line-height: 1; }

.endorsements-slider .logo-links {
  display: none;
  width: 560px;
  padding-bottom: 15px;
  margin: 0 auto 2em;
  text-align: center;
  border-bottom: 1px solid #dcd8d0; }
  .endorsements-slider .logo-links a, .endorsements-slider .logo-links table.dashboard-table .column-editable .data-text:hover, table.dashboard-table .column-editable .endorsements-slider .logo-links .data-text:hover {
    position: relative;
    margin: 0 1em 1em; }
    .endorsements-slider .logo-links a:hover img, .endorsements-slider .logo-links table.dashboard-table .column-editable .data-text:hover img, table.dashboard-table .column-editable .endorsements-slider .logo-links .data-text:hover img {
      opacity: 1; }
    .endorsements-slider .logo-links a.active img, .endorsements-slider .logo-links table.dashboard-table .column-editable .active.data-text:hover img, table.dashboard-table .column-editable .endorsements-slider .logo-links .active.data-text:hover img {
      opacity: 1; }
    .endorsements-slider .logo-links a.active:after, .endorsements-slider .logo-links table.dashboard-table .column-editable .active.data-text:hover:after, table.dashboard-table .column-editable .endorsements-slider .logo-links .active.data-text:hover:after {
      content: ' ';
      position: absolute;
      left: 63px;
      bottom: -21px;
      display: block;
      width: 12px;
      height: 12px;
      transform: rotate(45deg);
      background: #f9f7f6;
      border-right: 3px solid #292934;
      border-bottom: 3px solid #292934; }
    .endorsements-slider .logo-links a.active:before, .endorsements-slider .logo-links table.dashboard-table .column-editable .active.data-text:hover:before, table.dashboard-table .column-editable .endorsements-slider .logo-links .active.data-text:hover:before {
      content: ' ';
      position: absolute;
      top: 24px;
      left: 57px;
      width: 30px;
      height: 9px;
      background: #f9f7f6;
      z-index: 1; }
  .endorsements-slider .logo-links img {
    width: 140px;
    opacity: 0.4;
    transition: all 0.2s ease-in-out; }

.cta::after {
  clear: both;
  content: "";
  display: table; }

.cta.align-right {
  text-align: right; }

.button.align-right {
  float: right; }

.video-section-title {
  display: none; }

.threat-intelligence .video-section-title,
.threat-enforcement .video-section-title,
.home .video-section-title {
  display: block;
  text-align: center; }

.video-section-wrapper {
  margin: 2em auto;
  padding: 3em 0;
  background-color: #f9f7f6;
  border-top: 1px solid #e7e4df;
  border-bottom: 1px solid #e7e4df; }

.full-overlay.video-section {
  height: 295px;
  margin: auto; }
  .full-overlay.video-section video,
  .full-overlay.video-section iframe {
    display: block;
    width: 100%;
    height: 295px;
    margin: auto; }

.full-overlay .video-section-overlay {
  background-size: auto 295px;
  background-position: 50%; }

.video-section-wrapper .video-section-info {
  padding-top: 2em; }

.video-section-overlay {
  display: none; }

.video-section-video {
  position: relative; }

.full-overlay .video-section-video {
  position: relative;
  border: 1px solid #828282;
  width: 80%;
  margin: auto; }

.full .video-section-overlay {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  cursor: pointer;
  background-repeat: no-repeat; }

.cover .video-section-overlay,
.video-section-overlay.lightbox {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 294px;
  cursor: pointer;
  background-repeat: no-repeat;
  z-index: 1; }

.cover .video-section-overlay:after {
  content: ' ';
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 294px;
  background: rgba(130, 130, 130, 0.5); }

.cover .video-section-play {
  position: relative;
  width: 100px;
  height: 100px;
  margin: auto;
  z-index: 1;
  box-sizing: border-box;
  border-radius: 100px;
  border: 8px solid white;
  transform: scale(0.5, 0.5); }
  .cover .video-section-play:after {
    content: ' ';
    position: absolute;
    top: 17px;
    left: 26px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 25px 0 25px 43.3px;
    border-color: transparent transparent transparent #ffffff; }

.video-section.full {
  position: relative;
  width: 100%;
  margin-bottom: 1em; }
  .video-section.full video,
  .video-section.full iframe {
    width: 100%;
    height: 294px; }
  .video-section.full .video-section-play {
    top: 90px; }

.sidebar .video-section-overlay.lightbox {
  width: 100%;
  height: 100%; }
  .sidebar .video-section-overlay.lightbox:after {
    height: 100%; }

.sidebar.video-section {
  margin-bottom: 2em; }

.sidebar .video-section-play {
  top: 20px; }

.sidebar .video-section-video {
  margin-bottom: 1em; }

.sidebar .video-section-video video,
.sidebar .video-section-video iframe {
  width: 100%; }

.full-overlay .video-section-overlay p,
.homepage .video-section-overlay p {
  display: none; }

.full-overlay .video-section-play,
.homepage .video-section-play {
  top: 20px; }

.hosted .video-section-play {
  top: 31%; }

.hosted .video-section-overlay,
.hosted .video-section-overlay:after {
  height: 99.5%; }

.two-column.video-section {
  margin: 3em 0; }
  .two-column.video-section.bordered {
    padding: 2em 0;
    border-top: 1px solid #b4b4bb;
    border-bottom: 1px solid #b4b4bb; }

.two-column .video-section-video,
.two-column .video-section-video video,
.two-column .video-section-video iframe,
.two-column .video-section-overlay:after,
.two-column .video-section-overlay {
  width: 100%;
  height: 200px; }

.two-column .video-section-play {
  top: 40px; }

.two-column .video-section-video {
  margin-bottom: 1em; }

.two-column .video-section-title {
  font-size: 22px;
  font-size: 2.2rem;
  text-transform: uppercase;
  text-align: left; }

.two-column .cta {
  position: relative;
  padding-bottom: 1em; }
  .two-column .cta .orange.button {
    position: relative; }

.title-banner {
  text-align: center;
  padding: 3em 0;
  margin-bottom: 3em; }

.bg-grey {
  background-color: #f3f0ed;
  border-bottom: 1px solid #e7e4e1; }

body.single-partners .selected-resources::after,
body.single-enterprise-product.threat-intelligence .selected-resources::after {
  clear: both;
  content: "";
  display: table; }

body.single-partners .selected-resources img,
body.single-enterprise-product.threat-intelligence .selected-resources img {
  float: left;
  width: 20px;
  height: 20px;
  margin-top: 2px; }

body.single-partners .selected-resources a, body.single-partners .selected-resources table.dashboard-table .column-editable .data-text:hover, table.dashboard-table .column-editable body.single-partners .selected-resources .data-text:hover,
body.single-enterprise-product.threat-intelligence .selected-resources a,
body.single-enterprise-product.threat-intelligence .selected-resources table.dashboard-table .column-editable .data-text:hover, table.dashboard-table .column-editable
body.single-enterprise-product.threat-intelligence .selected-resources .data-text:hover {
  display: block;
  padding-left: 30px; }

body.single-partners .selected-resources ul,
body.single-enterprise-product.threat-intelligence .selected-resources ul {
  float: left;
  display: block;
  margin-right: 3.57866%;
  width: 74.10533%;
  margin-left: 12.94733%;
  padding-bottom: 0;
  list-style: none; }
  body.single-partners .selected-resources ul:last-child,
  body.single-enterprise-product.threat-intelligence .selected-resources ul:last-child {
    margin-right: 0; }

body.single-partners .selected-resources li,
body.single-enterprise-product.threat-intelligence .selected-resources li {
  margin-bottom: 0.5em;
  font-size: 16px;
  font-size: 1.6rem; }

body.dpa-reference ul {
  list-style: disc;
  margin-left: 2em; }

.testimonial-banner {
  background-color: #ececee;
  padding: 3em 0; }
  .testimonial-banner .section-title {
    margin-bottom: 1.5em; }

.testimonials-slider .video-section-overlay {
  background-size: auto 294px;
  background-position-x: 50%; }
  .testimonials-slider .video-section-overlay:after {
    background-color: rgba(130, 130, 130, 0); }

.testimonials-slider .video-section-play {
  top: 100px; }

.testimonials-slider .testimonials {
  position: relative;
  height: 450px;
  text-align: center;
  margin: 0 auto; }
  .testimonials-slider .testimonials::after {
    clear: both;
    content: "";
    display: table; }
  .testimonials-slider .testimonials .testimonial {
    display: block;
    position: absolute;
    top: 0;
    width: 100%;
    opacity: 1; }
  .testimonials-slider .testimonials .testimonial + .testimonial {
    display: none; }
  .testimonials-slider .testimonials blockquote p {
    font-size: 17px;
    font-size: 1.7rem;
    font-family: tradegothic_light;
    line-height: 1.8;
    font-style: normal;
    text-align: left; }

.testimonials-slider #youtube-iframe {
  height: 294px;
  width: 100%; }

.testimonials-slider .logo-links {
  display: none;
  width: 100%;
  padding-bottom: 15px;
  margin: 0 auto 2em;
  text-align: center;
  border-right: 1px solid #292934;
  height: 450px; }
  .testimonials-slider .logo-links a, .testimonials-slider .logo-links table.dashboard-table .column-editable .data-text:hover, table.dashboard-table .column-editable .testimonials-slider .logo-links .data-text:hover {
    position: relative;
    display: block;
    height: 80px; }
    .testimonials-slider .logo-links a:before, .testimonials-slider .logo-links table.dashboard-table .column-editable .data-text:hover:before, table.dashboard-table .column-editable .testimonials-slider .logo-links .data-text:hover:before {
      content: '';
      display: inline-block;
      height: 100%;
      vertical-align: middle;
      margin-right: -0.25em; }
    .testimonials-slider .logo-links a:hover, .testimonials-slider .logo-links table.dashboard-table .column-editable .data-text:hover, table.dashboard-table .column-editable .testimonials-slider .logo-links .data-text:hover {
      text-decoration: none; }
    .testimonials-slider .logo-links a:hover img, .testimonials-slider .logo-links table.dashboard-table .column-editable .data-text:hover img, table.dashboard-table .column-editable .testimonials-slider .logo-links .data-text:hover img {
      opacity: 1; }
    .testimonials-slider .logo-links a.active img, .testimonials-slider .logo-links table.dashboard-table .column-editable .active.data-text:hover img, table.dashboard-table .column-editable .testimonials-slider .logo-links .active.data-text:hover img {
      opacity: 1; }
    .testimonials-slider .logo-links a:after, .testimonials-slider .logo-links table.dashboard-table .column-editable .data-text:hover:after, table.dashboard-table .column-editable .testimonials-slider .logo-links .data-text:hover:after {
      content: '';
      display: block;
      position: absolute;
      right: -14px;
      top: -20px;
      font-size: 100px;
      color: #292934; }
    .testimonials-slider .logo-links a.active:after, .testimonials-slider .logo-links table.dashboard-table .column-editable .active.data-text:hover:after, table.dashboard-table .column-editable .testimonials-slider .logo-links .active.data-text:hover:after {
      content: '\B7'; }
  .testimonials-slider .logo-links img {
    display: inline-block;
    vertical-align: middle;
    width: 140px;
    padding: 10px 0;
    opacity: 0.4;
    transition: all 0.2s ease-in-out; }

.trending-now {
  margin: 0 3em; }
  .trending-now h2 {
    color: #292934;
    font-size: 38px;
    font-size: 3.8rem;
    margin-bottom: 1.5em; }

.trending-tiles .trending-tiles-content-wrapper {
  margin: 1em;
  padding: 0 0 2em; }
  .trending-tiles .trending-tiles-content-wrapper .tag,
  .trending-tiles .trending-tiles-content-wrapper .trending-item-title,
  .trending-tiles .trending-tiles-content-wrapper p {
    color: white;
    line-height: 1.4; }
  .trending-tiles .trending-tiles-content-wrapper .tag {
    text-transform: uppercase;
    font-size: 14px;
    font-size: 1.4rem;
    padding-bottom: 0; }
  .trending-tiles .trending-tiles-content-wrapper .trending-item-title {
    font-family: tradegothic, Helvetica, Arial, sans-serif;
    font-size: 30px;
    font-size: 3rem;
    padding-bottom: 0.5em;
    margin-top: 0.25em;
    line-height: 1.3; }
  .trending-tiles .trending-tiles-content-wrapper .cta,
  .trending-tiles .trending-tiles-content-wrapper .ctas {
    margin-top: 0.5em; }
    .trending-tiles .trending-tiles-content-wrapper .cta a, .trending-tiles .trending-tiles-content-wrapper .cta table.dashboard-table .column-editable .data-text:hover, table.dashboard-table .column-editable .trending-tiles .trending-tiles-content-wrapper .cta .data-text:hover,
    .trending-tiles .trending-tiles-content-wrapper .ctas a,
    .trending-tiles .trending-tiles-content-wrapper .ctas table.dashboard-table .column-editable .data-text:hover, table.dashboard-table .column-editable
    .trending-tiles .trending-tiles-content-wrapper .ctas .data-text:hover {
      text-transform: uppercase;
      color: white;
      font-size: 13px;
      font-size: 1.3rem; }
  .trending-tiles .trending-tiles-content-wrapper .fa-chevron-circle-right {
    color: #F37821; }
  .trending-tiles .trending-tiles-content-wrapper .webcast-register {
    margin-bottom: 0.5em; }

.trending-tiles .trending-tiles-image {
  background-color: white;
  overflow: hidden; }
  .trending-tiles .trending-tiles-image img {
    width: 100%;
    height: auto; }

.trending-tiles .item-1 {
  background-color: #7e9adc; }

.trending-tiles .item-2 {
  background-color: #5E81D3; }

.trending-tiles .item-3 {
  background-color: #4b67a9; }

@media screen and (min-width: 40em) {
  body .hosted .video-section-play {
    display: block;
    top: 140px;
    transform: scale(1); } }

@media screen and (min-width: 59.5em) {
  body {
    padding-top: 103px; }
    body.subnav--visible {
      padding-top: 140px; }
    body .title-banner p {
      width: 80%;
      margin: auto; }
    body img.mobile-show {
      display: none; }
    body .mobile-hide {
      display: block; }
    body.short-header {
      padding-top: 0; }
    body.short-header .content {
      padding-top: 8.5em; }
    body footer .grid .left-column,
    body .page .left-column {
      float: left;
      display: block;
      margin-right: 1.16509%;
      width: 28.34139%; }
      body footer .grid .left-column:last-child,
      body .page .left-column:last-child {
        margin-right: 0; }
    body footer .grid .main-column,
    body .page .main-column {
      float: left;
      display: block;
      margin-right: 1.16509%;
      width: 66.2783%;
      position: relative; }
      body footer .grid .main-column:last-child,
      body .page .main-column:last-child {
        margin-right: 0; }
      body footer .grid .main-column .cta,
      body .page .main-column .cta {
        display: block; }
    body footer .grid .right-column,
    body .page .right-column {
      float: left;
      display: block;
      margin-right: 1.16509%;
      width: 28.34139%;
      margin-right: 0;
      float: right; }
      body footer .grid .right-column:last-child,
      body .page .right-column:last-child {
        margin-right: 0; }
    body footer .grid .left-side-2up,
    body .page .left-side-2up {
      float: left;
      display: block;
      margin-right: 1.75788%;
      width: 42.76119%;
      padding-right: 1em;
      padding-top: 2em; }
      body footer .grid .left-side-2up:last-child,
      body .page .left-side-2up:last-child {
        margin-right: 0; }
    body footer .grid .right-side-2up,
    body .page .right-side-2up {
      float: left;
      display: block;
      margin-right: 1.75788%;
      width: 42.76119%;
      margin-right: 0;
      float: right;
      padding-top: 2em; }
      body footer .grid .right-side-2up:last-child,
      body .page .right-side-2up:last-child {
        margin-right: 0; }
    body footer .grid .main-column-60,
    body .page .main-column-60 {
      float: left;
      display: block;
      margin-right: 1.55951%;
      width: 54.86244%; }
      body footer .grid .main-column-60:last-child,
      body .page .main-column-60:last-child {
        margin-right: 0; }
    body footer .grid .right-column-40,
    body .page .right-column-40 {
      float: left;
      display: block;
      margin-right: 1.55951%;
      width: 32.29366%;
      margin-right: 0;
      float: right; }
      body footer .grid .right-column-40:last-child,
      body .page .right-column-40:last-child {
        margin-right: 0; }
    body.post-type-archive-infographics .page .main-column {
      float: left;
      display: block;
      margin-right: 1.16509%;
      width: 100%;
      margin-right: 0;
      float: right; }
      body.post-type-archive-infographics .page .main-column:last-child {
        margin-right: 0; }
    body img.fullwidth {
      display: block; }
    body .cms-columns .cms-column::after {
      clear: both;
      content: "";
      display: table; }
    body .cms-columns .cms-column.left {
      float: left;
      display: block;
      margin-right: 1.16509%;
      width: 66.2783%; }
      body .cms-columns .cms-column.left:last-child {
        margin-right: 0; }
    body .cms-columns .cms-column.right {
      float: left;
      display: block;
      margin-right: 1.16509%;
      width: 28.34139%;
      margin-right: 0;
      float: right; }
      body .cms-columns .cms-column.right:last-child {
        margin-right: 0; }
    body #mobile-cta {
      display: none; }
    body .image-banner {
      margin-bottom: 3em; }
      body .image-banner .banner {
        position: relative;
        display: block;
        max-width: 100%;
        background-position: 50% 50%; }
      body .image-banner p {
        font-size: 18px;
        font-size: 1.8rem;
        font-family: 'tradegothic_light'; }
      body .image-banner .grid {
        top: -300px;
        width: 100%; }
    body .image-banner .image-banner-heading {
      width: 80%;
      margin: auto;
      padding: 0.5em; }
    body .blue-background {
      height: 275px;
      padding: 0; }
      body .blue-background .dark-column {
        float: left;
        width: 300px;
        height: 275px;
        margin-right: 4em;
        background: rgba(0, 0, 0, 0.35); }
        body .blue-background .dark-column .title {
          display: inline-block;
          padding: 0;
          vertical-align: middle;
          color: white;
          font-size: 28px;
          font-size: 2.8rem;
          text-align: center;
          letter-spacing: 1pt; }
        body .blue-background .dark-column:before {
          content: '';
          display: inline-block;
          height: 100%;
          vertical-align: middle;
          margin-right: -0.3em; }
      body .blue-background .message {
        padding-top: 2em; }
    body .two-col-par {
      column-count: 2;
      column-gap: 3em;
      display: inline-block;
      overflow: hidden; }
    body .endorsement {
      margin: 1em auto;
      width: 800px; }
    body .suggested-links .cta-block {
      float: left;
      display: block;
      margin-right: 1.16509%;
      width: 62.06309%; }
      body .suggested-links .cta-block:last-child {
        margin-right: 0; }
    body .suggested-links .links {
      float: left;
      display: block;
      margin-right: 1.16509%;
      width: 28.34139%;
      margin-right: 0;
      float: right;
      border-left: 1px dotted #46494e;
      padding-left: 3em; }
      body .suggested-links .links:last-child {
        margin-right: 0; }
      body .suggested-links .links ul {
        padding-bottom: 0; }
    body .trending-items .item {
      float: left;
      width: 29%;
      margin-left: 6%; }
      body .trending-items .item:first-child {
        margin-left: 0; }
      body .trending-items .item:nth-child(3n+1) {
        clear: left;
        margin-left: 0; }
    body .endorsements-slider {
      display: block; }
      body .endorsements-slider .logo-links {
        display: block; }
      body .endorsements-slider#mobile-endorsements {
        display: none; }
    body .cover .video-section-overlay,
    body .video-section-overlay.lightbox {
      background-size: auto 100%; }
    body .full .video-section-overlay.lightbox {
      display: block; }
    body .full .video-section-overlay {
      display: none; }
    body .hosted .video-section-overlay,
    body .hosted .video-section-overlay:after {
      height: 100%; }
    body.threat-intelligence .video-section-title,
    body.threat-enforcement .video-section-title,
    body.home .video-section-title,
    body .video-section-title {
      display: none; }
    body .homepage.video-section {
      width: auto;
      height: 535px;
      margin-top: 2em; }
      body .homepage.video-section video,
      body .homepage.video-section iframe {
        display: block;
        width: 100%;
        height: 535px;
        margin: auto; }
    body .homepage .video-section-overlay {
      height: 535px;
      background-size: 100% auto; }
      body .homepage .video-section-overlay:after {
        height: 535px; }
      body .homepage .video-section-overlay p {
        position: relative;
        display: block;
        z-index: 1;
        color: white;
        text-transform: uppercase;
        text-align: center;
        font-size: 35px;
        font-size: 3.5rem; }
        body .homepage .video-section-overlay p:first-child {
          padding-top: 120px; }
    body .full-overlay .video-section-play,
    body .homepage .video-section-play {
      top: 20px;
      transform: scale(1, 1); }
    body .full-overlay.video-section {
      height: 400px; }
      body .full-overlay.video-section video,
      body .full-overlay.video-section iframe {
        height: 400px; }
    body .full-overlay .video-section-overlay {
      height: 400px;
      background-size: 100% auto; }
      body .full-overlay .video-section-overlay:after {
        height: 400px; }
      body .full-overlay .video-section-overlay p {
        position: relative;
        display: block;
        z-index: 1;
        color: white;
        text-transform: uppercase;
        text-align: center;
        font-size: 30px;
        font-size: 3rem; }
        body .full-overlay .video-section-overlay p:first-child {
          padding-top: 80px; }
    body .two-column.video-section::after {
      clear: both;
      content: "";
      display: table; }
    body .two-column .video-section-video {
      float: left;
      display: block;
      margin-right: 1.16509%;
      width: 49.41745%;
      margin-bottom: 0; }
      body .two-column .video-section-video:last-child {
        margin-right: 0; }
    body .two-column .video-section-overlay,
    body .two-column .video-section-overlay:after,
    body .two-column .video-section-video video,
    body .two-column .video-section-video iframe,
    body .two-column .video-section-video {
      height: 265px; }
    body .two-column .video-section-info {
      float: left;
      display: block;
      margin-right: 1.16509%;
      width: 45.20224%;
      margin-left: 4.21521%;
      margin-right: 0; }
      body .two-column .video-section-info:last-child {
        margin-right: 0; }
    body .two-column .video-section-title {
      display: block; }
    body .two-column .video-section-play {
      top: 80px; }
    body.single-partners .selected-resources .left-list, body.single-enterprise-product.threat-intelligence .selected-resources .left-list {
      float: left;
      display: block;
      margin-right: 1.16509%;
      width: 36.77182%;
      margin-left: 8.43042%; }
      body.single-partners .selected-resources .left-list:last-child, body.single-enterprise-product.threat-intelligence .selected-resources .left-list:last-child {
        margin-right: 0; }
    body.single-partners .selected-resources .right-list, body.single-enterprise-product.threat-intelligence .selected-resources .right-list {
      float: left;
      display: block;
      margin-right: 1.16509%;
      width: 36.77182%;
      margin-left: 4.21521%; }
      body.single-partners .selected-resources .right-list:last-child, body.single-enterprise-product.threat-intelligence .selected-resources .right-list:last-child {
        margin-right: 0; }
    body .testimonials-slider {
      display: block; }
      body .testimonials-slider .testimonials {
        float: left;
        display: block;
        margin-right: 1.55951%;
        width: 66.14683%;
        margin-right: 0;
        float: right; }
        body .testimonials-slider .testimonials:last-child {
          margin-right: 0; }
      body .testimonials-slider .video-section-video {
        height: 350px;
        width: 100%; }
      body .testimonials-slider #youtube-iframe {
        height: 350px; }
      body .testimonials-slider .video-section-overlay {
        height: 350px;
        background-size: auto 350px; }
        body .testimonials-slider .video-section-overlay:after {
          height: 350px;
          background: rgba(130, 130, 130, 0.5); }
      body .testimonials-slider .logo-links {
        float: left;
        display: block;
        margin-right: 1.55951%;
        width: 26.65146%;
        display: block; }
        body .testimonials-slider .logo-links:last-child {
          margin-right: 0; }
    body .trending-now {
      margin: 0; }
    body .trending-tiles .trending-tiles-image {
      height: 250px; }
    body .trending-tiles .item-1 {
      float: left;
      display: block;
      margin-right: 1.16509%;
      width: 45.20224%;
      height: 550px; }
      body .trending-tiles .item-1:last-child {
        margin-right: 0; }
      body .trending-tiles .item-1 .trending-tiles-content {
        height: 290px; }
    body .trending-tiles .item-2 {
      float: left;
      display: block;
      margin-right: 1.16509%;
      width: 49.41745%;
      float: right;
      margin-right: 0;
      height: 250px; }
      body .trending-tiles .item-2:last-child {
        margin-right: 0; }
      body .trending-tiles .item-2 .trending-tiles-content {
        float: left;
        display: block;
        margin-right: 2.35765%;
        width: 48.82117%; }
        body .trending-tiles .item-2 .trending-tiles-content:last-child {
          margin-right: 0; }
      body .trending-tiles .item-2 .trending-tiles-image {
        float: left;
        display: block;
        margin-right: 2.35765%;
        width: 48.82117%;
        margin-right: 0;
        float: right; }
        body .trending-tiles .item-2 .trending-tiles-image:last-child {
          margin-right: 0; }
      body .trending-tiles .item-2 .trending-item-title {
        font-size: 22px;
        font-size: 2.2rem; }
    body .trending-tiles .item-3 {
      float: left;
      display: block;
      margin-right: 1.16509%;
      width: 49.41745%;
      float: right;
      height: 250px;
      margin-top: 50px; }
      body .trending-tiles .item-3:last-child {
        margin-right: 0; }
      body .trending-tiles .item-3 .trending-tiles-content {
        float: left;
        display: block;
        margin-right: 2.35765%;
        width: 48.82117%;
        margin-right: 0;
        float: right; }
        body .trending-tiles .item-3 .trending-tiles-content:last-child {
          margin-right: 0; }
      body .trending-tiles .item-3 .trending-tiles-image {
        float: left;
        display: block;
        margin-right: 2.35765%;
        width: 48.82117%;
        margin-right: 0; }
        body .trending-tiles .item-3 .trending-tiles-image:last-child {
          margin-right: 0; }
      body .trending-tiles .item-3 .trending-item-title {
        font-size: 22px;
        font-size: 2.2rem; } }

.page-header, .image-banner .image-banner-heading, body.take-your-security-further .heading, .section-header {
  margin-bottom: 0.5em;
  color: #434356;
  font-size: 30px;
  line-height: 1.25;
  text-transform: uppercase;
  font-family: tradegothic_cn, Helvetica, Arial, sans-serif; }

.testimonial-banner .section-title, .trending-now h2 {
  margin-bottom: 0.75em;
  color: #434356;
  font-size: 24px;
  line-height: 1.25;
  text-transform: uppercase;
  text-align: center;
  font-family: tradegothic_cn, Helvetica, Arial, sans-serif; }

.sidebar-banner .button.enhanced.orange, .product-container .menu-item.button a, .product-container .menu-item.button table.dashboard-table .column-editable .data-text:hover, table.dashboard-table .column-editable .product-container .menu-item.button .data-text:hover,
.subnav-container .menu-item.button a,
.subnav-container .menu-item.button table.dashboard-table .column-editable .data-text:hover, table.dashboard-table .column-editable
.subnav-container .menu-item.button .data-text:hover, .suggested-links .cta-block .button.orange, .trending-tiles .trending-tiles-content-wrapper .webcast-register, body.page-template-page-home-test-php .nav-tiles__tile--business .nav-tiles__tile__button, .home-endorsements-button, .trending-items .webcast-register, .two-column .cta .orange.button, body.page-template-page-home-test-php .product-container .button.orange, .personalpage-tiles-button, .personal-options .personal-options-button, .personal-options-pdf .personal-options-pdf-button, body.threat-enforcement .cta-container .contact-sales,
body.package-comparison .cta-container .contact-sales, body.threat-enforcement .demo-trial .cta a, body.threat-enforcement .demo-trial .cta table.dashboard-table .column-editable .data-text:hover, table.dashboard-table .column-editable body.threat-enforcement .demo-trial .cta .data-text:hover,
body.package-comparison .demo-trial .cta a,
body.package-comparison .demo-trial .cta table.dashboard-table .column-editable .data-text:hover, table.dashboard-table .column-editable
body.package-comparison .demo-trial .cta .data-text:hover, body.threat-enforcement .content .button.free-trial,
body.package-comparison .content .button.free-trial, body.single-enterprise-product.threat-intelligence .cta-container .contact-sales, .usa-content .cta a, .usa-content .cta table.dashboard-table .column-editable .data-text:hover, table.dashboard-table .column-editable .usa-content .cta .data-text:hover, .single-articles .button.orange,
.single-technology-partners .button.orange, body.support-packages .button-orange, .product-features-page .buttons .cta .button.orange, .phishing-quiz .button.orange, body.contact-sales-full-page .content #mktoButton, body.single-events .button.orange, .suggested-links .cta-block .button.grey, body.about .button.grey, body.page-template-page-home-test-php .product-container .button.grey, .personalpage-tiles-tile-support .personalpage-tiles-button,
.personalpage-tiles-tile-ipaddresses .personalpage-tiles-button, .phishing-quiz .button.gold, .personal-prosumer-button, body.material-full-page-contact-form .left-side .partner-summit__cta .partner-summit__button, body.page-template-page-home-test-php .homehero-promo__cta a, body.page-template-page-home-test-php .homehero-promo__cta table.dashboard-table .column-editable .data-text:hover, table.dashboard-table .column-editable body.page-template-page-home-test-php .homehero-promo__cta .data-text:hover, .personal-business-button {
  display: inline-block;
  position: relative;
  margin-bottom: 0;
  padding: 0.75em 1.25em;
  border-radius: 20px;
  font-size: 16px;
  color: white;
  box-shadow: none;
  text-transform: uppercase;
  text-align: center;
  font-family: tradegothic_light, Helvetica, Arial, sans-serif;
  font-weight: normal;
  line-height: 1;
  cursor: pointer; }
  .sidebar-banner .button.enhanced.orange:hover, .product-container .menu-item.button a:hover, .product-container .menu-item.button table.dashboard-table .column-editable .data-text:hover, table.dashboard-table .column-editable .product-container .menu-item.button .data-text:hover,
  .subnav-container .menu-item.button a:hover,
  .subnav-container .menu-item.button table.dashboard-table .column-editable .data-text:hover, table.dashboard-table .column-editable
  .subnav-container .menu-item.button .data-text:hover, .suggested-links .cta-block .button.orange:hover, .trending-tiles .trending-tiles-content-wrapper .webcast-register:hover, body.page-template-page-home-test-php .nav-tiles__tile--business .nav-tiles__tile__button:hover, .home-endorsements-button:hover, .trending-items .webcast-register:hover, .two-column .cta .orange.button:hover, body.page-template-page-home-test-php .product-container .button.orange:hover, .personalpage-tiles-button:hover, .personal-options .personal-options-button:hover, .personal-options-pdf .personal-options-pdf-button:hover, body.threat-enforcement .cta-container .contact-sales:hover,
  body.package-comparison .cta-container .contact-sales:hover, body.threat-enforcement .demo-trial .cta a:hover, body.threat-enforcement .demo-trial .cta table.dashboard-table .column-editable .data-text:hover, table.dashboard-table .column-editable body.threat-enforcement .demo-trial .cta .data-text:hover,
  body.package-comparison .demo-trial .cta a:hover,
  body.package-comparison .demo-trial .cta table.dashboard-table .column-editable .data-text:hover, table.dashboard-table .column-editable
  body.package-comparison .demo-trial .cta .data-text:hover, body.threat-enforcement .content .button.free-trial:hover,
  body.package-comparison .content .button.free-trial:hover, body.single-enterprise-product.threat-intelligence .cta-container .contact-sales:hover, .usa-content .cta a:hover, .usa-content .cta table.dashboard-table .column-editable .data-text:hover, table.dashboard-table .column-editable .usa-content .cta .data-text:hover, .single-articles .button.orange:hover,
  .single-technology-partners .button.orange:hover, body.support-packages .button-orange:hover, .product-features-page .buttons .cta .button.orange:hover, .phishing-quiz .button.orange:hover, body.contact-sales-full-page .content #mktoButton:hover, body.single-events .button.orange:hover, .suggested-links .cta-block .button.grey:hover, body.about .button.grey:hover, body.page-template-page-home-test-php .product-container .button.grey:hover, .phishing-quiz .button.gold:hover, .personal-prosumer-button:hover, body.material-full-page-contact-form .left-side .partner-summit__cta .partner-summit__button:hover, body.page-template-page-home-test-php .homehero-promo__cta a:hover, body.page-template-page-home-test-php .homehero-promo__cta table.dashboard-table .column-editable .data-text:hover, table.dashboard-table .column-editable body.page-template-page-home-test-php .homehero-promo__cta .data-text:hover, .personal-business-button:hover, .sidebar-banner .button.enhanced.orange:focus, .product-container .menu-item.button a:focus, .product-container .menu-item.button table.dashboard-table .column-editable .data-text:focus:hover, table.dashboard-table .column-editable .product-container .menu-item.button .data-text:focus:hover,
  .subnav-container .menu-item.button a:focus,
  .subnav-container .menu-item.button table.dashboard-table .column-editable .data-text:focus:hover, table.dashboard-table .column-editable
  .subnav-container .menu-item.button .data-text:focus:hover, .suggested-links .cta-block .button.orange:focus, .trending-tiles .trending-tiles-content-wrapper .webcast-register:focus, body.page-template-page-home-test-php .nav-tiles__tile--business .nav-tiles__tile__button:focus, .home-endorsements-button:focus, .trending-items .webcast-register:focus, .two-column .cta .orange.button:focus, body.page-template-page-home-test-php .product-container .button.orange:focus, .personalpage-tiles-button:focus, .personal-options .personal-options-button:focus, .personal-options-pdf .personal-options-pdf-button:focus, body.threat-enforcement .cta-container .contact-sales:focus,
  body.package-comparison .cta-container .contact-sales:focus, body.threat-enforcement .demo-trial .cta a:focus, body.threat-enforcement .demo-trial .cta table.dashboard-table .column-editable .data-text:focus:hover, table.dashboard-table .column-editable body.threat-enforcement .demo-trial .cta .data-text:focus:hover,
  body.package-comparison .demo-trial .cta a:focus,
  body.package-comparison .demo-trial .cta table.dashboard-table .column-editable .data-text:focus:hover, table.dashboard-table .column-editable
  body.package-comparison .demo-trial .cta .data-text:focus:hover, body.threat-enforcement .content .button.free-trial:focus,
  body.package-comparison .content .button.free-trial:focus, body.single-enterprise-product.threat-intelligence .cta-container .contact-sales:focus, .usa-content .cta a:focus, .usa-content .cta table.dashboard-table .column-editable .data-text:focus:hover, table.dashboard-table .column-editable .usa-content .cta .data-text:focus:hover, .single-articles .button.orange:focus,
  .single-technology-partners .button.orange:focus, body.support-packages .button-orange:focus, .product-features-page .buttons .cta .button.orange:focus, .phishing-quiz .button.orange:focus, body.contact-sales-full-page .content #mktoButton:focus, body.single-events .button.orange:focus, .suggested-links .cta-block .button.grey:focus, body.about .button.grey:focus, body.page-template-page-home-test-php .product-container .button.grey:focus, .phishing-quiz .button.gold:focus, .personal-prosumer-button:focus, body.material-full-page-contact-form .left-side .partner-summit__cta .partner-summit__button:focus, body.page-template-page-home-test-php .homehero-promo__cta a:focus, body.page-template-page-home-test-php .homehero-promo__cta table.dashboard-table .column-editable .data-text:focus:hover, table.dashboard-table .column-editable body.page-template-page-home-test-php .homehero-promo__cta .data-text:focus:hover, .personal-business-button:focus, .sidebar-banner .button.enhanced.orange:active, .product-container .menu-item.button a:active, .product-container .menu-item.button table.dashboard-table .column-editable .data-text:active:hover, table.dashboard-table .column-editable .product-container .menu-item.button .data-text:active:hover,
  .subnav-container .menu-item.button a:active,
  .subnav-container .menu-item.button table.dashboard-table .column-editable .data-text:active:hover, table.dashboard-table .column-editable
  .subnav-container .menu-item.button .data-text:active:hover, .suggested-links .cta-block .button.orange:active, .trending-tiles .trending-tiles-content-wrapper .webcast-register:active, body.page-template-page-home-test-php .nav-tiles__tile--business .nav-tiles__tile__button:active, .home-endorsements-button:active, .trending-items .webcast-register:active, .two-column .cta .orange.button:active, body.page-template-page-home-test-php .product-container .button.orange:active, .personalpage-tiles-button:active, .personal-options .personal-options-button:active, .personal-options-pdf .personal-options-pdf-button:active, body.threat-enforcement .cta-container .contact-sales:active,
  body.package-comparison .cta-container .contact-sales:active, body.threat-enforcement .demo-trial .cta a:active, body.threat-enforcement .demo-trial .cta table.dashboard-table .column-editable .data-text:active:hover, table.dashboard-table .column-editable body.threat-enforcement .demo-trial .cta .data-text:active:hover,
  body.package-comparison .demo-trial .cta a:active,
  body.package-comparison .demo-trial .cta table.dashboard-table .column-editable .data-text:active:hover, table.dashboard-table .column-editable
  body.package-comparison .demo-trial .cta .data-text:active:hover, body.threat-enforcement .content .button.free-trial:active,
  body.package-comparison .content .button.free-trial:active, body.single-enterprise-product.threat-intelligence .cta-container .contact-sales:active, .usa-content .cta a:active, .usa-content .cta table.dashboard-table .column-editable .data-text:active:hover, table.dashboard-table .column-editable .usa-content .cta .data-text:active:hover, .single-articles .button.orange:active,
  .single-technology-partners .button.orange:active, body.support-packages .button-orange:active, .product-features-page .buttons .cta .button.orange:active, .phishing-quiz .button.orange:active, body.contact-sales-full-page .content #mktoButton:active, body.single-events .button.orange:active, .suggested-links .cta-block .button.grey:active, body.about .button.grey:active, body.page-template-page-home-test-php .product-container .button.grey:active, .phishing-quiz .button.gold:active, .personal-prosumer-button:active, body.material-full-page-contact-form .left-side .partner-summit__cta .partner-summit__button:active, body.page-template-page-home-test-php .homehero-promo__cta a:active, body.page-template-page-home-test-php .homehero-promo__cta table.dashboard-table .column-editable .data-text:active:hover, table.dashboard-table .column-editable body.page-template-page-home-test-php .homehero-promo__cta .data-text:active:hover, .personal-business-button:active {
    text-decoration: none; }

.sidebar-banner .button.enhanced.orange, .product-container .menu-item.button a, .product-container .menu-item.button table.dashboard-table .column-editable .data-text:hover, table.dashboard-table .column-editable .product-container .menu-item.button .data-text:hover,
.subnav-container .menu-item.button a,
.subnav-container .menu-item.button table.dashboard-table .column-editable .data-text:hover, table.dashboard-table .column-editable
.subnav-container .menu-item.button .data-text:hover, .suggested-links .cta-block .button.orange, .trending-tiles .trending-tiles-content-wrapper .webcast-register, body.page-template-page-home-test-php .nav-tiles__tile--business .nav-tiles__tile__button, .home-endorsements-button, .trending-items .webcast-register, .two-column .cta .orange.button, body.page-template-page-home-test-php .product-container .button.orange, .personalpage-tiles-button, .personal-options .personal-options-button, .personal-options-pdf .personal-options-pdf-button, body.threat-enforcement .cta-container .contact-sales,
body.package-comparison .cta-container .contact-sales, body.threat-enforcement .demo-trial .cta a, body.threat-enforcement .demo-trial .cta table.dashboard-table .column-editable .data-text:hover, table.dashboard-table .column-editable body.threat-enforcement .demo-trial .cta .data-text:hover,
body.package-comparison .demo-trial .cta a,
body.package-comparison .demo-trial .cta table.dashboard-table .column-editable .data-text:hover, table.dashboard-table .column-editable
body.package-comparison .demo-trial .cta .data-text:hover, body.threat-enforcement .content .button.free-trial,
body.package-comparison .content .button.free-trial, body.single-enterprise-product.threat-intelligence .cta-container .contact-sales, .usa-content .cta a, .usa-content .cta table.dashboard-table .column-editable .data-text:hover, table.dashboard-table .column-editable .usa-content .cta .data-text:hover, .single-articles .button.orange,
.single-technology-partners .button.orange, body.support-packages .button-orange, .product-features-page .buttons .cta .button.orange, .phishing-quiz .button.orange, body.contact-sales-full-page .content #mktoButton, body.single-events .button.orange {
  background: #F37821; }
  .sidebar-banner .button.enhanced.orange:hover, .product-container .menu-item.button a:hover, .product-container .menu-item.button table.dashboard-table .column-editable .data-text:hover, table.dashboard-table .column-editable .product-container .menu-item.button .data-text:hover,
  .subnav-container .menu-item.button a:hover,
  .subnav-container .menu-item.button table.dashboard-table .column-editable .data-text:hover, table.dashboard-table .column-editable
  .subnav-container .menu-item.button .data-text:hover, .suggested-links .cta-block .button.orange:hover, .trending-tiles .trending-tiles-content-wrapper .webcast-register:hover, body.page-template-page-home-test-php .nav-tiles__tile--business .nav-tiles__tile__button:hover, .home-endorsements-button:hover, .trending-items .webcast-register:hover, .two-column .cta .orange.button:hover, body.page-template-page-home-test-php .product-container .button.orange:hover, .personalpage-tiles-button:hover, .personal-options .personal-options-button:hover, .personal-options-pdf .personal-options-pdf-button:hover, body.threat-enforcement .cta-container .contact-sales:hover,
  body.package-comparison .cta-container .contact-sales:hover, body.threat-enforcement .demo-trial .cta a:hover, body.threat-enforcement .demo-trial .cta table.dashboard-table .column-editable .data-text:hover, table.dashboard-table .column-editable body.threat-enforcement .demo-trial .cta .data-text:hover,
  body.package-comparison .demo-trial .cta a:hover,
  body.package-comparison .demo-trial .cta table.dashboard-table .column-editable .data-text:hover, table.dashboard-table .column-editable
  body.package-comparison .demo-trial .cta .data-text:hover, body.threat-enforcement .content .button.free-trial:hover,
  body.package-comparison .content .button.free-trial:hover, body.single-enterprise-product.threat-intelligence .cta-container .contact-sales:hover, .usa-content .cta a:hover, .usa-content .cta table.dashboard-table .column-editable .data-text:hover, table.dashboard-table .column-editable .usa-content .cta .data-text:hover, .single-articles .button.orange:hover,
  .single-technology-partners .button.orange:hover, body.support-packages .button-orange:hover, .product-features-page .buttons .cta .button.orange:hover, .phishing-quiz .button.orange:hover, body.contact-sales-full-page .content #mktoButton:hover, body.single-events .button.orange:hover {
    background: #f5934d; }
  .sidebar-banner .button.enhanced.orange:active, .product-container .menu-item.button a:active, .product-container .menu-item.button table.dashboard-table .column-editable .data-text:active:hover, table.dashboard-table .column-editable .product-container .menu-item.button .data-text:active:hover,
  .subnav-container .menu-item.button a:active,
  .subnav-container .menu-item.button table.dashboard-table .column-editable .data-text:active:hover, table.dashboard-table .column-editable
  .subnav-container .menu-item.button .data-text:active:hover, .suggested-links .cta-block .button.orange:active, .trending-tiles .trending-tiles-content-wrapper .webcast-register:active, body.page-template-page-home-test-php .nav-tiles__tile--business .nav-tiles__tile__button:active, .home-endorsements-button:active, .trending-items .webcast-register:active, .two-column .cta .orange.button:active, body.page-template-page-home-test-php .product-container .button.orange:active, .personalpage-tiles-button:active, .personal-options .personal-options-button:active, .personal-options-pdf .personal-options-pdf-button:active, body.threat-enforcement .cta-container .contact-sales:active,
  body.package-comparison .cta-container .contact-sales:active, body.threat-enforcement .demo-trial .cta a:active, body.threat-enforcement .demo-trial .cta table.dashboard-table .column-editable .data-text:active:hover, table.dashboard-table .column-editable body.threat-enforcement .demo-trial .cta .data-text:active:hover,
  body.package-comparison .demo-trial .cta a:active,
  body.package-comparison .demo-trial .cta table.dashboard-table .column-editable .data-text:active:hover, table.dashboard-table .column-editable
  body.package-comparison .demo-trial .cta .data-text:active:hover, body.threat-enforcement .content .button.free-trial:active,
  body.package-comparison .content .button.free-trial:active, body.single-enterprise-product.threat-intelligence .cta-container .contact-sales:active, .usa-content .cta a:active, .usa-content .cta table.dashboard-table .column-editable .data-text:active:hover, table.dashboard-table .column-editable .usa-content .cta .data-text:active:hover, .single-articles .button.orange:active,
  .single-technology-partners .button.orange:active, body.support-packages .button-orange:active, .product-features-page .buttons .cta .button.orange:active, .phishing-quiz .button.orange:active, body.contact-sales-full-page .content #mktoButton:active, body.single-events .button.orange:active {
    background: #c2601a;
    box-shadow: none; }

.suggested-links .cta-block .button.grey, body.about .button.grey, body.page-template-page-home-test-php .product-container .button.grey {
  background: #d9d9dd;
  color: #22222b; }
  .suggested-links .cta-block .button.grey:hover, body.about .button.grey:hover, body.page-template-page-home-test-php .product-container .button.grey:hover {
    background: #e3e3e6; }
  .suggested-links .cta-block .button.grey:active, body.about .button.grey:active, body.page-template-page-home-test-php .product-container .button.grey:active {
    background: #c7c7cc;
    box-shadow: none; }

.personalpage-tiles-tile-support .personalpage-tiles-button,
.personalpage-tiles-tile-ipaddresses .personalpage-tiles-button, .phishing-quiz .button.gold {
  background: #ff9900; }
  .personalpage-tiles-tile-support .personalpage-tiles-button:hover,
  .personalpage-tiles-tile-ipaddresses .personalpage-tiles-button:hover, .phishing-quiz .button.gold:hover {
    background: #ffad33; }
  .personalpage-tiles-tile-support .personalpage-tiles-button:active,
  .personalpage-tiles-tile-ipaddresses .personalpage-tiles-button:active, .phishing-quiz .button.gold:active {
    background: #f29100;
    box-shadow: none; }

.sidebar-banner .button.enhanced.orange, .product-container .menu-item.button a, .product-container .menu-item.button table.dashboard-table .column-editable .data-text:hover, table.dashboard-table .column-editable .product-container .menu-item.button .data-text:hover,
.subnav-container .menu-item.button a,
.subnav-container .menu-item.button table.dashboard-table .column-editable .data-text:hover, table.dashboard-table .column-editable
.subnav-container .menu-item.button .data-text:hover {
  font-size: 12px; }

.suggested-links .cta-block .button.orange, .trending-tiles .trending-tiles-content-wrapper .webcast-register, body.page-template-page-home-test-php .nav-tiles__tile--business .nav-tiles__tile__button, .home-endorsements-button {
  font-size: 14px; }

.trending-items .webcast-register, .two-column .cta .orange.button, body.page-template-page-home-test-php .product-container .button.orange, .personalpage-tiles-button, .personal-options .personal-options-button, .personal-options-pdf .personal-options-pdf-button, body.threat-enforcement .cta-container .contact-sales,
body.package-comparison .cta-container .contact-sales, body.threat-enforcement .demo-trial .cta a, body.threat-enforcement .demo-trial .cta table.dashboard-table .column-editable .data-text:hover, table.dashboard-table .column-editable body.threat-enforcement .demo-trial .cta .data-text:hover,
body.package-comparison .demo-trial .cta a,
body.package-comparison .demo-trial .cta table.dashboard-table .column-editable .data-text:hover, table.dashboard-table .column-editable
body.package-comparison .demo-trial .cta .data-text:hover, body.threat-enforcement .content .button.free-trial,
body.package-comparison .content .button.free-trial, body.single-enterprise-product.threat-intelligence .cta-container .contact-sales, .usa-content .cta a, .usa-content .cta table.dashboard-table .column-editable .data-text:hover, table.dashboard-table .column-editable .usa-content .cta .data-text:hover, .single-articles .button.orange,
.single-technology-partners .button.orange, body.support-packages .button-orange, .product-features-page .buttons .cta .button.orange, .phishing-quiz .button.orange, body.contact-sales-full-page .content #mktoButton {
  font-size: 16px; }

body.single-events .button.orange {
  font-size: 18px; }

.suggested-links .cta-block .button.grey, body.about .button.grey {
  font-size: 14px; }

body.page-template-page-home-test-php .product-container .button.grey {
  font-size: 16px; }

.personalpage-tiles-tile-support .personalpage-tiles-button,
.personalpage-tiles-tile-ipaddresses .personalpage-tiles-button {
  font-size: 14px; }

.phishing-quiz .button.gold {
  font-size: 16px; }

.blue-background .message .button, body.support .community-box .cta a, body.support .community-box .cta table.dashboard-table .column-editable .data-text:hover, table.dashboard-table .column-editable body.support .community-box .cta .data-text:hover,
body.support .support-package-box .cta a,
body.support .support-package-box .cta table.dashboard-table .column-editable .data-text:hover, table.dashboard-table .column-editable
body.support .support-package-box .cta .data-text:hover,
body.support .docs-box .cta a,
body.support .docs-box .cta table.dashboard-table .column-editable .data-text:hover, table.dashboard-table .column-editable
body.support .docs-box .cta .data-text:hover, body.take-your-security-further .item .button, body.page-template-page-home-test-php .home-hero .arrow a.home, body.page-template-page-home-test-php .home-hero .arrow table.dashboard-table .column-editable .home.data-text:hover, table.dashboard-table .column-editable body.page-template-page-home-test-php .home-hero .arrow .home.data-text:hover,
body.page-template-page-home-test-php .home-hero .cta-block a.home,
body.page-template-page-home-test-php .home-hero .cta-block table.dashboard-table .column-editable .home.data-text:hover, table.dashboard-table .column-editable
body.page-template-page-home-test-php .home-hero .cta-block .home.data-text:hover, body.page-template-page-home-test-php .home-hero .arrow a.business, body.page-template-page-home-test-php .home-hero .arrow table.dashboard-table .column-editable .business.data-text:hover, table.dashboard-table .column-editable body.page-template-page-home-test-php .home-hero .arrow .business.data-text:hover,
body.page-template-page-home-test-php .home-hero .cta-block a.business,
body.page-template-page-home-test-php .home-hero .cta-block table.dashboard-table .column-editable .business.data-text:hover, table.dashboard-table .column-editable
body.page-template-page-home-test-php .home-hero .cta-block .business.data-text:hover, body.page-template-page-home-test-php .nav-tiles__tile__button {
  display: inline-block;
  padding: 0.75em 1.25em;
  border-radius: 20px;
  text-transform: none;
  line-height: 1;
  letter-spacing: 0.05em; }
  .blue-background .message .button:hover, body.support .community-box .cta a:hover, body.support .community-box .cta table.dashboard-table .column-editable .data-text:hover, table.dashboard-table .column-editable body.support .community-box .cta .data-text:hover,
  body.support .support-package-box .cta a:hover,
  body.support .support-package-box .cta table.dashboard-table .column-editable .data-text:hover, table.dashboard-table .column-editable
  body.support .support-package-box .cta .data-text:hover,
  body.support .docs-box .cta a:hover,
  body.support .docs-box .cta table.dashboard-table .column-editable .data-text:hover, table.dashboard-table .column-editable
  body.support .docs-box .cta .data-text:hover, body.take-your-security-further .item .button:hover, body.page-template-page-home-test-php .home-hero .arrow a.home:hover, body.page-template-page-home-test-php .home-hero .arrow table.dashboard-table .column-editable .home.data-text:hover, table.dashboard-table .column-editable body.page-template-page-home-test-php .home-hero .arrow .home.data-text:hover,
  body.page-template-page-home-test-php .home-hero .cta-block a.home:hover,
  body.page-template-page-home-test-php .home-hero .cta-block table.dashboard-table .column-editable .home.data-text:hover, table.dashboard-table .column-editable
  body.page-template-page-home-test-php .home-hero .cta-block .home.data-text:hover, body.page-template-page-home-test-php .home-hero .arrow a.business:hover, body.page-template-page-home-test-php .home-hero .arrow table.dashboard-table .column-editable .business.data-text:hover, table.dashboard-table .column-editable body.page-template-page-home-test-php .home-hero .arrow .business.data-text:hover,
  body.page-template-page-home-test-php .home-hero .cta-block a.business:hover,
  body.page-template-page-home-test-php .home-hero .cta-block table.dashboard-table .column-editable .business.data-text:hover, table.dashboard-table .column-editable
  body.page-template-page-home-test-php .home-hero .cta-block .business.data-text:hover, body.page-template-page-home-test-php .nav-tiles__tile__button:hover, .blue-background .message .button:focus, body.support .community-box .cta a:focus, body.support .community-box .cta table.dashboard-table .column-editable .data-text:focus:hover, table.dashboard-table .column-editable body.support .community-box .cta .data-text:focus:hover,
  body.support .support-package-box .cta a:focus,
  body.support .support-package-box .cta table.dashboard-table .column-editable .data-text:focus:hover, table.dashboard-table .column-editable
  body.support .support-package-box .cta .data-text:focus:hover,
  body.support .docs-box .cta a:focus,
  body.support .docs-box .cta table.dashboard-table .column-editable .data-text:focus:hover, table.dashboard-table .column-editable
  body.support .docs-box .cta .data-text:focus:hover, body.take-your-security-further .item .button:focus, body.page-template-page-home-test-php .home-hero .arrow a.home:focus, body.page-template-page-home-test-php .home-hero .arrow table.dashboard-table .column-editable .home.data-text:focus:hover, table.dashboard-table .column-editable body.page-template-page-home-test-php .home-hero .arrow .home.data-text:focus:hover,
  body.page-template-page-home-test-php .home-hero .cta-block a.home:focus,
  body.page-template-page-home-test-php .home-hero .cta-block table.dashboard-table .column-editable .home.data-text:focus:hover, table.dashboard-table .column-editable
  body.page-template-page-home-test-php .home-hero .cta-block .home.data-text:focus:hover, body.page-template-page-home-test-php .home-hero .arrow a.business:focus, body.page-template-page-home-test-php .home-hero .arrow table.dashboard-table .column-editable .business.data-text:focus:hover, table.dashboard-table .column-editable body.page-template-page-home-test-php .home-hero .arrow .business.data-text:focus:hover,
  body.page-template-page-home-test-php .home-hero .cta-block a.business:focus,
  body.page-template-page-home-test-php .home-hero .cta-block table.dashboard-table .column-editable .business.data-text:focus:hover, table.dashboard-table .column-editable
  body.page-template-page-home-test-php .home-hero .cta-block .business.data-text:focus:hover, body.page-template-page-home-test-php .nav-tiles__tile__button:focus, .blue-background .message .button:active, body.support .community-box .cta a:active, body.support .community-box .cta table.dashboard-table .column-editable .data-text:active:hover, table.dashboard-table .column-editable body.support .community-box .cta .data-text:active:hover,
  body.support .support-package-box .cta a:active,
  body.support .support-package-box .cta table.dashboard-table .column-editable .data-text:active:hover, table.dashboard-table .column-editable
  body.support .support-package-box .cta .data-text:active:hover,
  body.support .docs-box .cta a:active,
  body.support .docs-box .cta table.dashboard-table .column-editable .data-text:active:hover, table.dashboard-table .column-editable
  body.support .docs-box .cta .data-text:active:hover, body.take-your-security-further .item .button:active, body.page-template-page-home-test-php .home-hero .arrow a.home:active, body.page-template-page-home-test-php .home-hero .arrow table.dashboard-table .column-editable .home.data-text:active:hover, table.dashboard-table .column-editable body.page-template-page-home-test-php .home-hero .arrow .home.data-text:active:hover,
  body.page-template-page-home-test-php .home-hero .cta-block a.home:active,
  body.page-template-page-home-test-php .home-hero .cta-block table.dashboard-table .column-editable .home.data-text:active:hover, table.dashboard-table .column-editable
  body.page-template-page-home-test-php .home-hero .cta-block .home.data-text:active:hover, body.page-template-page-home-test-php .home-hero .arrow a.business:active, body.page-template-page-home-test-php .home-hero .arrow table.dashboard-table .column-editable .business.data-text:active:hover, table.dashboard-table .column-editable body.page-template-page-home-test-php .home-hero .arrow .business.data-text:active:hover,
  body.page-template-page-home-test-php .home-hero .cta-block a.business:active,
  body.page-template-page-home-test-php .home-hero .cta-block table.dashboard-table .column-editable .business.data-text:active:hover, table.dashboard-table .column-editable
  body.page-template-page-home-test-php .home-hero .cta-block .business.data-text:active:hover, body.page-template-page-home-test-php .nav-tiles__tile__button:active {
    text-decoration: none; }

.blue-background .message .button, body.support .community-box .cta a, body.support .community-box .cta table.dashboard-table .column-editable .data-text:hover, table.dashboard-table .column-editable body.support .community-box .cta .data-text:hover,
body.support .support-package-box .cta a,
body.support .support-package-box .cta table.dashboard-table .column-editable .data-text:hover, table.dashboard-table .column-editable
body.support .support-package-box .cta .data-text:hover,
body.support .docs-box .cta a,
body.support .docs-box .cta table.dashboard-table .column-editable .data-text:hover, table.dashboard-table .column-editable
body.support .docs-box .cta .data-text:hover, body.take-your-security-further .item .button {
  border: 1px solid #434356;
  color: #434356;
  background: white; }
  .blue-background .message .button:hover, body.support .community-box .cta a:hover, body.support .community-box .cta table.dashboard-table .column-editable .data-text:hover, table.dashboard-table .column-editable body.support .community-box .cta .data-text:hover,
  body.support .support-package-box .cta a:hover,
  body.support .support-package-box .cta table.dashboard-table .column-editable .data-text:hover, table.dashboard-table .column-editable
  body.support .support-package-box .cta .data-text:hover,
  body.support .docs-box .cta a:hover,
  body.support .docs-box .cta table.dashboard-table .column-editable .data-text:hover, table.dashboard-table .column-editable
  body.support .docs-box .cta .data-text:hover, body.take-your-security-further .item .button:hover {
    background: #f2f2f2; }
  .blue-background .message .button:active, body.support .community-box .cta a:active, body.support .community-box .cta table.dashboard-table .column-editable .data-text:active:hover, table.dashboard-table .column-editable body.support .community-box .cta .data-text:active:hover,
  body.support .support-package-box .cta a:active,
  body.support .support-package-box .cta table.dashboard-table .column-editable .data-text:active:hover, table.dashboard-table .column-editable
  body.support .support-package-box .cta .data-text:active:hover,
  body.support .docs-box .cta a:active,
  body.support .docs-box .cta table.dashboard-table .column-editable .data-text:active:hover, table.dashboard-table .column-editable
  body.support .docs-box .cta .data-text:active:hover, body.take-your-security-further .item .button:active {
    background: #d9d9d9; }

.blue-background .message .button, body.support .community-box .cta a, body.support .community-box .cta table.dashboard-table .column-editable .data-text:hover, table.dashboard-table .column-editable body.support .community-box .cta .data-text:hover,
body.support .support-package-box .cta a,
body.support .support-package-box .cta table.dashboard-table .column-editable .data-text:hover, table.dashboard-table .column-editable
body.support .support-package-box .cta .data-text:hover,
body.support .docs-box .cta a,
body.support .docs-box .cta table.dashboard-table .column-editable .data-text:hover, table.dashboard-table .column-editable
body.support .docs-box .cta .data-text:hover, body.take-your-security-further .item .button {
  font-size: 14px; }

body.page-template-page-home-test-php .home-hero .arrow a.home, body.page-template-page-home-test-php .home-hero .arrow table.dashboard-table .column-editable .home.data-text:hover, table.dashboard-table .column-editable body.page-template-page-home-test-php .home-hero .arrow .home.data-text:hover,
body.page-template-page-home-test-php .home-hero .cta-block a.home,
body.page-template-page-home-test-php .home-hero .cta-block table.dashboard-table .column-editable .home.data-text:hover, table.dashboard-table .column-editable
body.page-template-page-home-test-php .home-hero .cta-block .home.data-text:hover {
  border: 1px solid #b4b4bb;
  color: white;
  background: rgba(4, 9, 11, 0.5); }
  body.page-template-page-home-test-php .home-hero .arrow a.home:hover, body.page-template-page-home-test-php .home-hero .arrow table.dashboard-table .column-editable .home.data-text:hover, table.dashboard-table .column-editable body.page-template-page-home-test-php .home-hero .arrow .home.data-text:hover,
  body.page-template-page-home-test-php .home-hero .cta-block a.home:hover,
  body.page-template-page-home-test-php .home-hero .cta-block table.dashboard-table .column-editable .home.data-text:hover, table.dashboard-table .column-editable
  body.page-template-page-home-test-php .home-hero .cta-block .home.data-text:hover {
    background: rgba(67, 71, 72, 0.55); }
  body.page-template-page-home-test-php .home-hero .arrow a.home:active, body.page-template-page-home-test-php .home-hero .arrow table.dashboard-table .column-editable .home.data-text:active:hover, table.dashboard-table .column-editable body.page-template-page-home-test-php .home-hero .arrow .home.data-text:active:hover,
  body.page-template-page-home-test-php .home-hero .cta-block a.home:active,
  body.page-template-page-home-test-php .home-hero .cta-block table.dashboard-table .column-editable .home.data-text:active:hover, table.dashboard-table .column-editable
  body.page-template-page-home-test-php .home-hero .cta-block .home.data-text:active:hover {
    background: rgba(3, 7, 8, 0.55); }

body.page-template-page-home-test-php .home-hero .arrow a.home, body.page-template-page-home-test-php .home-hero .arrow table.dashboard-table .column-editable .home.data-text:hover, table.dashboard-table .column-editable body.page-template-page-home-test-php .home-hero .arrow .home.data-text:hover,
body.page-template-page-home-test-php .home-hero .cta-block a.home,
body.page-template-page-home-test-php .home-hero .cta-block table.dashboard-table .column-editable .home.data-text:hover, table.dashboard-table .column-editable
body.page-template-page-home-test-php .home-hero .cta-block .home.data-text:hover {
  font-size: 16px; }

body.page-template-page-home-test-php .home-hero .arrow a.business, body.page-template-page-home-test-php .home-hero .arrow table.dashboard-table .column-editable .business.data-text:hover, table.dashboard-table .column-editable body.page-template-page-home-test-php .home-hero .arrow .business.data-text:hover,
body.page-template-page-home-test-php .home-hero .cta-block a.business,
body.page-template-page-home-test-php .home-hero .cta-block table.dashboard-table .column-editable .business.data-text:hover, table.dashboard-table .column-editable
body.page-template-page-home-test-php .home-hero .cta-block .business.data-text:hover {
  border: 1px solid #b4b4bb;
  color: white;
  background: #F37821; }
  body.page-template-page-home-test-php .home-hero .arrow a.business:hover, body.page-template-page-home-test-php .home-hero .arrow table.dashboard-table .column-editable .business.data-text:hover, table.dashboard-table .column-editable body.page-template-page-home-test-php .home-hero .arrow .business.data-text:hover,
  body.page-template-page-home-test-php .home-hero .cta-block a.business:hover,
  body.page-template-page-home-test-php .home-hero .cta-block table.dashboard-table .column-editable .business.data-text:hover, table.dashboard-table .column-editable
  body.page-template-page-home-test-php .home-hero .cta-block .business.data-text:hover {
    background: #f5934d; }
  body.page-template-page-home-test-php .home-hero .arrow a.business:active, body.page-template-page-home-test-php .home-hero .arrow table.dashboard-table .column-editable .business.data-text:active:hover, table.dashboard-table .column-editable body.page-template-page-home-test-php .home-hero .arrow .business.data-text:active:hover,
  body.page-template-page-home-test-php .home-hero .cta-block a.business:active,
  body.page-template-page-home-test-php .home-hero .cta-block table.dashboard-table .column-editable .business.data-text:active:hover, table.dashboard-table .column-editable
  body.page-template-page-home-test-php .home-hero .cta-block .business.data-text:active:hover {
    background: #c2601a; }

body.page-template-page-home-test-php .home-hero .arrow a.business, body.page-template-page-home-test-php .home-hero .arrow table.dashboard-table .column-editable .business.data-text:hover, table.dashboard-table .column-editable body.page-template-page-home-test-php .home-hero .arrow .business.data-text:hover,
body.page-template-page-home-test-php .home-hero .cta-block a.business,
body.page-template-page-home-test-php .home-hero .cta-block table.dashboard-table .column-editable .business.data-text:hover, table.dashboard-table .column-editable
body.page-template-page-home-test-php .home-hero .cta-block .business.data-text:hover {
  font-size: 16px; }

.personal-prosumer-button, body.material-full-page-contact-form .left-side .partner-summit__cta .partner-summit__button, body.page-template-page-home-test-php .homehero-promo__cta a, body.page-template-page-home-test-php .homehero-promo__cta table.dashboard-table .column-editable .data-text:hover, table.dashboard-table .column-editable body.page-template-page-home-test-php .homehero-promo__cta .data-text:hover {
  background: #4b67a9;
  color: white; }
  .personal-prosumer-button:hover, body.material-full-page-contact-form .left-side .partner-summit__cta .partner-summit__button:hover, body.page-template-page-home-test-php .homehero-promo__cta a:hover, body.page-template-page-home-test-php .homehero-promo__cta table.dashboard-table .column-editable .data-text:hover, table.dashboard-table .column-editable body.page-template-page-home-test-php .homehero-promo__cta .data-text:hover {
    background: #5E81D3;
    color: white; }
  .personal-prosumer-button:active, body.material-full-page-contact-form .left-side .partner-summit__cta .partner-summit__button:active, body.page-template-page-home-test-php .homehero-promo__cta a:active, body.page-template-page-home-test-php .homehero-promo__cta table.dashboard-table .column-editable .data-text:active:hover, table.dashboard-table .column-editable body.page-template-page-home-test-php .homehero-promo__cta .data-text:active:hover {
    background: #4b67a9;
    color: white; }

.personal-prosumer-button, body.material-full-page-contact-form .left-side .partner-summit__cta .partner-summit__button {
  font-size: 14px; }

body.page-template-page-home-test-php .homehero-promo__cta a, body.page-template-page-home-test-php .homehero-promo__cta table.dashboard-table .column-editable .data-text:hover, table.dashboard-table .column-editable body.page-template-page-home-test-php .homehero-promo__cta .data-text:hover {
  font-size: 16px; }

.personal-business-button {
  color: white;
  background: #5E81D3; }
  .personal-business-button:hover {
    background: #7e9adc;
    color: white; }
  .personal-business-button:active {
    background: #5E81D3;
    color: white; }

.personal-business-button {
  font-size: 14px; }

body.page-template-page-home-test-php .nav-tiles__tile__button {
  padding: 0.75em 1em;
  border: 1px solid #F37821;
  color: #F37821; }
  body.page-template-page-home-test-php .nav-tiles__tile__button:hover {
    color: #c2601a;
    border-color: #c2601a; }
  body.page-template-page-home-test-php .nav-tiles__tile__button:active {
    color: #924814;
    border-color: #924814; }

body.page-template-page-home-test-php .nav-tiles__tile__button {
  font-size: 14px; }

.page-header, .image-banner .image-banner-heading, body.take-your-security-further .heading, .section-header {
  margin-bottom: 0.5em;
  color: #292934;
  font-size: 30px;
  line-height: 1.25;
  text-transform: uppercase;
  font-family: tradegothic_light, Helvetica, Arial, sans-serif;
  font-weight: normal;
  border: none;
  letter-spacing: normal; }

.image-banner .image-banner-heading, body.take-your-security-further .heading {
  font-size: 40px;
  color: #f2f2f2;
  letter-spacing: 1pt;
  text-shadow: 1px 1px 0 #363645; }

.sidebar-header {
  padding: 0.25em 0;
  margin: 0 0 0.5em;
  font-size: 18px;
  text-transform: uppercase;
  color: #8e8e99;
  border-top: 1px dotted #8e8e99;
  border-bottom: 1px dotted #8e8e99;
  font-family: tradegothic_cn, Helvetica, Arial, sans-serif;
  font-weight: normal;
  letter-spacing: 0.5pt; }

.topic-title, .trending-items .trending-item-title, body.page-template-page-home-test-php .product-container .product-column-title, body.threat-enforcement .value-list-title,
body.package-comparison .value-list-title, body.threat-enforcement .demo-trial .circle-cta-title,
body.threat-enforcement .circle-ctas .circle-cta-title,
body.package-comparison .demo-trial .circle-cta-title,
body.package-comparison .circle-ctas .circle-cta-title, body.single-enterprise-product.threat-intelligence .benefit-title,
body.single-enterprise-product.threat-intelligence .feature-title,
body.single-enterprise-product.threat-intelligence .differentiator-title, body.single-enterprise-product.threat-intelligence .use-case-title {
  font-family: tradegothic_cn, Helvetica, Arial, sans-serif;
  line-height: 1.2;
  font-weight: normal;
  text-transform: none;
  font-size: 24px;
  color: #3d3d4d;
  letter-spacing: 0.4pt;
  border: none;
  padding-bottom: 0.35em; }

.testimonial-banner .section-title, .trending-now h2 {
  color: #8e8e99;
  font-weight: normal;
  font-family: tradegothic_light, Helvetica, Arial, sans-serif;
  font-size: 30px;
  text-transform: uppercase;
  text-align: center;
  letter-spacing: 0.4pt;
  border: none; }

body.page-template-page-home-test-php h2 {
  padding-top: 0.25em;
  font-size: 30px;
  font-size: 3rem;
  text-transform: uppercase;
  text-align: center;
  letter-spacing: 0.5pt; }

body.page-template-page-home-test-php h2,
body.page-template-page-home-test-php h3 {
  font-family: 'tradegothic_light'; }

body.page-template-page-home-test-php h2 {
  margin-bottom: 1em; }

body.page-template-page-home-test-php .alignright,
body.page-template-page-home-test-php .readmore {
  font-size: 14px;
  font-size: 1.4rem; }

body.page-template-page-home-test-php .beige {
  background-color: #F7F6F3; }

body.page-template-page-home-test-php .homepage-hero {
  position: relative;
  overflow: hidden; }

body.page-template-page-home-test-php .home-hero {
  padding-bottom: 0px;
  margin-bottom: 0;
  background-color: #434356;
  border-bottom: 1px solid #dddad4; }
  body.page-template-page-home-test-php .home-hero .arrow,
  body.page-template-page-home-test-php .home-hero .cta-block {
    display: none;
    text-align: center; }
    body.page-template-page-home-test-php .home-hero .arrow a, body.page-template-page-home-test-php .home-hero .arrow table.dashboard-table .column-editable .data-text:hover, table.dashboard-table .column-editable body.page-template-page-home-test-php .home-hero .arrow .data-text:hover,
    body.page-template-page-home-test-php .home-hero .cta-block a,
    body.page-template-page-home-test-php .home-hero .cta-block table.dashboard-table .column-editable .data-text:hover, table.dashboard-table .column-editable
    body.page-template-page-home-test-php .home-hero .cta-block .data-text:hover {
      margin: 2em 1em; }
      body.page-template-page-home-test-php .home-hero .arrow a.business, body.page-template-page-home-test-php .home-hero .arrow table.dashboard-table .column-editable .business.data-text:hover, table.dashboard-table .column-editable body.page-template-page-home-test-php .home-hero .arrow .business.data-text:hover,
      body.page-template-page-home-test-php .home-hero .cta-block a.business,
      body.page-template-page-home-test-php .home-hero .cta-block table.dashboard-table .column-editable .business.data-text:hover, table.dashboard-table .column-editable
      body.page-template-page-home-test-php .home-hero .cta-block .business.data-text:hover {
        padding: 0.8em 2em; }
      body.page-template-page-home-test-php .home-hero .arrow a.home, body.page-template-page-home-test-php .home-hero .arrow table.dashboard-table .column-editable .home.data-text:hover, table.dashboard-table .column-editable body.page-template-page-home-test-php .home-hero .arrow .home.data-text:hover,
      body.page-template-page-home-test-php .home-hero .cta-block a.home,
      body.page-template-page-home-test-php .home-hero .cta-block table.dashboard-table .column-editable .home.data-text:hover, table.dashboard-table .column-editable
      body.page-template-page-home-test-php .home-hero .cta-block .home.data-text:hover {
        padding: 0.8em 2em; }
  body.page-template-page-home-test-php .home-hero .grid {
    top: -320px; }
  body.page-template-page-home-test-php .home-hero .image-banner-heading {
    display: block;
    width: auto;
    border: none;
    font-size: 50px;
    line-height: 1.1; }
  body.page-template-page-home-test-php .home-hero .image-banner-heading span {
    display: block; }

body.page-template-page-home-test-php .homehero-promo__heading--tag,
body.page-template-page-home-test-php .homehero-promo__heading--title,
body.page-template-page-home-test-php .homehero-promo__copy,
body.page-template-page-home-test-php .homehero-promo__cta {
  text-align: left; }

body.page-template-page-home-test-php .homehero-promo__heading--tag {
  font-size: 18px;
  font-size: 1.8rem;
  color: white;
  text-transform: uppercase;
  margin-bottom: 1em; }

body.page-template-page-home-test-php .homehero-promo__heading--title {
  font-size: 40px;
  font-size: 4rem;
  color: white;
  text-transform: uppercase;
  margin-bottom: 0.2em; }

body.page-template-page-home-test-php .home-hero p.homehero-promo__copy {
  display: none; }

body.page-template-page-home-test-php .stats,
body.page-template-page-home-test-php .attacks {
  height: 500px;
  padding: 0;
  border-top: 1px solid #dddad4;
  border-bottom: 1px solid #dddad4;
  background-color: #F7F6F3; }
  body.page-template-page-home-test-php .stats .grid,
  body.page-template-page-home-test-php .attacks .grid {
    top: -400px; }
  body.page-template-page-home-test-php .stats h1,
  body.page-template-page-home-test-php .attacks h1 {
    top: 0px;
    position: relative;
    font-size: 38px;
    font-size: 3.8rem;
    margin: 0;
    color: #828282; }
  body.page-template-page-home-test-php .stats p,
  body.page-template-page-home-test-php .attacks p {
    text-align: center;
    color: #46494e;
    line-height: 1.2; }
  body.page-template-page-home-test-php .stats .number,
  body.page-template-page-home-test-php .attacks .number {
    font-size: 50px;
    font-size: 5rem;
    font-family: 'tradegothic';
    font-weight: bold; }
  body.page-template-page-home-test-php .stats .type,
  body.page-template-page-home-test-php .attacks .type {
    font-size: 25px;
    font-size: 2.5rem;
    color: #F37821;
    font-family: 'tradegothic';
    font-weight: bold; }
  body.page-template-page-home-test-php .stats .left-box,
  body.page-template-page-home-test-php .stats .middle-box,
  body.page-template-page-home-test-php .stats .right-box,
  body.page-template-page-home-test-php .attacks .left-box,
  body.page-template-page-home-test-php .attacks .middle-box,
  body.page-template-page-home-test-php .attacks .right-box {
    float: left;
    display: block;
    margin-right: 3.57866%;
    width: 100%; }
    body.page-template-page-home-test-php .stats .left-box:last-child,
    body.page-template-page-home-test-php .stats .middle-box:last-child,
    body.page-template-page-home-test-php .stats .right-box:last-child,
    body.page-template-page-home-test-php .attacks .left-box:last-child,
    body.page-template-page-home-test-php .attacks .middle-box:last-child,
    body.page-template-page-home-test-php .attacks .right-box:last-child {
      margin-right: 0; }
  body.page-template-page-home-test-php .stats .banner:before,
  body.page-template-page-home-test-php .attacks .banner:before {
    display: none; }

body.page-template-page-home-test-php .attacks {
  height: 400px; }
  body.page-template-page-home-test-php .attacks h2 {
    color: #ffffff; }
  body.page-template-page-home-test-php .attacks p {
    color: #ffffff; }
    body.page-template-page-home-test-php .attacks p .type {
      color: #ffffff; }

body.page-template-page-home-test-php .customer-list.beige {
  border-top: 1px solid #dddad4;
  border-bottom: 1px solid #dddad4;
  padding: 50px 0 70px;
  margin-bottom: 3em; }
  body.page-template-page-home-test-php .customer-list.beige .title {
    font-size: 20px;
    font-size: 2rem; }

body.page-template-page-home-test-php .dns-container {
  background: #292934;
  padding: 1em 0 0; }
  body.page-template-page-home-test-php .dns-container p {
    text-align: center;
    color: #828282; }
    body.page-template-page-home-test-php .dns-container p span {
      color: #dddad4; }

body.page-template-page-home-test-php .user-container {
  display: none;
  padding-bottom: 2em; }
  body.page-template-page-home-test-php .user-container .cta-block-mobile {
    display: block;
    text-align: center;
    margin: 3em; }
    body.page-template-page-home-test-php .user-container .cta-block-mobile p {
      margin: 2em 1em; }
      body.page-template-page-home-test-php .user-container .cta-block-mobile p a, body.page-template-page-home-test-php .user-container .cta-block-mobile p table.dashboard-table .column-editable .data-text:hover, table.dashboard-table .column-editable body.page-template-page-home-test-php .user-container .cta-block-mobile p .data-text:hover {
        background: #f3f0ed;
        padding: 0.5em 2em;
        margin: 2em 1em;
        border-radius: 25px;
        border: 1px solid #828282;
        color: #828282; }
        body.page-template-page-home-test-php .user-container .cta-block-mobile p a:hover, body.page-template-page-home-test-php .user-container .cta-block-mobile p table.dashboard-table .column-editable .data-text:hover, table.dashboard-table .column-editable body.page-template-page-home-test-php .user-container .cta-block-mobile p .data-text:hover {
          background: #dddad4;
          text-decoration: none; }
  body.page-template-page-home-test-php .user-container .user-groups {
    display: none;
    background: white;
    border-top: 1px solid #dddad4;
    margin-top: -75px;
    padding-top: 50px; }
    body.page-template-page-home-test-php .user-container .user-groups ul li {
      width: 100%;
      text-align: center;
      padding: 1em 0;
      list-style: none; }
      body.page-template-page-home-test-php .user-container .user-groups ul li img {
        border: 3px solid #e7e4df;
        width: 65px;
        height: 65px;
        border-radius: 95px;
        padding: 1em; }
        body.page-template-page-home-test-php .user-container .user-groups ul li img.circle {
          background: white; }
          body.page-template-page-home-test-php .user-container .user-groups ul li img.circle:hover {
            border: 3px solid #d6d4d1;
            text-decoration: none; }
      body.page-template-page-home-test-php .user-container .user-groups ul li .user-group-title {
        width: 90px;
        padding-bottom: 0.75em;
        margin: 0 auto;
        font-size: 16px;
        font-size: 1.6rem;
        font-weight: normal;
        line-height: 1.4;
        letter-spacing: 0.4pt;
        border-bottom: #dddad4 8px solid;
        text-transform: none; }
        body.page-template-page-home-test-php .user-container .user-groups ul li .user-group-title a, body.page-template-page-home-test-php .user-container .user-groups ul li .user-group-title table.dashboard-table .column-editable .data-text:hover, table.dashboard-table .column-editable body.page-template-page-home-test-php .user-container .user-groups ul li .user-group-title .data-text:hover {
          color: #292934;
          padding-bottom: 1em; }
          body.page-template-page-home-test-php .user-container .user-groups ul li .user-group-title a:hover, body.page-template-page-home-test-php .user-container .user-groups ul li .user-group-title table.dashboard-table .column-editable .data-text:hover, table.dashboard-table .column-editable body.page-template-page-home-test-php .user-container .user-groups ul li .user-group-title .data-text:hover {
            text-decoration: none; }
        body.page-template-page-home-test-php .user-container .user-groups ul li .user-group-title:hover {
          border-bottom: #d6d4d1 8px solid; }
    body.page-template-page-home-test-php .user-container .user-groups .alignright {
      display: none; }

body.page-template-page-home-test-php .left-col,
body.page-template-page-home-test-php .right-col {
  float: left;
  display: block;
  margin-right: 3.57866%;
  width: 100%; }
  body.page-template-page-home-test-php .left-col:last-child,
  body.page-template-page-home-test-php .right-col:last-child {
    margin-right: 0; }

body.page-template-page-home-test-php .product-container {
  padding-bottom: 1em; }
  body.page-template-page-home-test-php .product-container img {
    padding: 2em 0;
    width: 100%;
    height: auto; }
  body.page-template-page-home-test-php .product-container .button.orange {
    margin-bottom: 1em; }
  body.page-template-page-home-test-php .product-container .grid.devices {
    text-align: center; }
    body.page-template-page-home-test-php .product-container .grid.devices img {
      max-width: 589px;
      max-height: 72px;
      padding: 2em 0 3em;
      border-bottom: 1px solid #dddad4; }
    body.page-template-page-home-test-php .product-container .grid.devices .cta {
      padding: 1em 0;
      margin: -2.5em 0 0 0; }

body.page-template-page-home-test-php .home-trending-container {
  padding-bottom: 3.5em; }

body.page-template-page-home-test-php .blog-container h2 {
  margin-bottom: 2em; }

body.page-template-page-home-test-php .blog-container ul {
  padding-bottom: 0;
  list-style: none; }

body.page-template-page-home-test-php .post .left {
  float: left;
  display: block;
  margin-right: 4.82916%;
  width: 12.64237%; }
  body.page-template-page-home-test-php .post .left:last-child {
    margin-right: 0; }
  body.page-template-page-home-test-php .post .left .post-date {
    text-transform: uppercase;
    color: #dddad4;
    font-size: 22px;
    font-size: 2.2rem;
    text-align: center;
    letter-spacing: 0.08em;
    line-height: 1.2; }

body.page-template-page-home-test-php .post .right {
  float: left;
  display: block;
  margin-right: 4.82916%;
  width: 82.52847%;
  margin-right: 0;
  float: right; }
  body.page-template-page-home-test-php .post .right:last-child {
    margin-right: 0; }
  body.page-template-page-home-test-php .post .right .title {
    font-size: 22px;
    font-size: 2.2rem;
    line-height: 1.2;
    letter-spacing: 0.08em;
    font-weight: bold;
    padding-bottom: 0;
    font-family: tradegothic_light, Helvetica, Arial, sans-serif; }
    body.page-template-page-home-test-php .post .right .title a, body.page-template-page-home-test-php .post .right .title table.dashboard-table .column-editable .data-text:hover, table.dashboard-table .column-editable body.page-template-page-home-test-php .post .right .title .data-text:hover {
      color: #292934; }
  body.page-template-page-home-test-php .post .right .author {
    text-transform: uppercase;
    color: #828282;
    font-size: 14px;
    font-size: 1.4rem;
    padding: 0.5em 0 1em; }
  body.page-template-page-home-test-php .post .right .excerpt p {
    font-size: 16px;
    font-size: 1.6rem;
    line-height: 1.6; }

body.page-template-page-home-test-php .video-spot {
  position: relative;
  width: 100%;
  height: 170px;
  margin-top: 2em;
  overflow: hidden; }
  body.page-template-page-home-test-php .video-spot iframe {
    display: none; }

body.page-template-page-home-test-php .video-spot-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 170px;
  padding-top: 20px;
  box-sizing: border-box;
  background: url(https://s3-us-west-1.amazonaws.com/webteam-cdn/opendns-www/img/corp-video-splash.jpg) center top no-repeat;
  background-size: 100% auto;
  text-align: center;
  cursor: pointer; }
  body.page-template-page-home-test-php .video-spot-overlay:after {
    content: ' ';
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100%;
    background: rgba(130, 130, 130, 0.5); }
  body.page-template-page-home-test-php .video-spot-overlay p {
    display: none; }

body.page-template-page-home-test-php .video-title {
  max-width: 400px;
  margin: auto;
  text-align: center; }

body.page-template-page-home-test-php .video-spot-play {
  position: relative;
  width: 100px;
  height: 100px;
  margin: auto;
  z-index: 1;
  border-radius: 100px;
  border: 8px solid white;
  transform: scale(0.5, 0.5); }
  body.page-template-page-home-test-php .video-spot-play:after {
    content: ' ';
    position: absolute;
    top: 17px;
    left: 26px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 25px 0 25px 43.3px;
    border-color: transparent transparent transparent #ffffff; }

body.page-template-page-home-test-php .info-container {
  display: none; }

body.page-template-page-home-test-php .customer-list .title {
  display: none; }

body.page-template-page-home-test-php .customer-list .logos-container {
  display: none; }

body.page-template-page-home-test-php .grey {
  background: #f3f0ed; }

body.page-template-page-home-test-php .nav-tiles {
  position: relative;
  display: block;
  margin-bottom: 50px;
  text-align: center;
  overflow: hidden;
  background: #46494e; }

body.page-template-page-home-test-php .nav-tiles__tile {
  position: relative;
  display: block;
  padding: 20px 0;
  margin-bottom: 1.25em;
  border-top: 10px solid transparent;
  color: white; }
  body.page-template-page-home-test-php .nav-tiles__tile::after {
    clear: both;
    content: "";
    display: table; }
  body.page-template-page-home-test-php .nav-tiles__tile:hover {
    text-decoration: none;
    background: rgba(70, 73, 78, 0.3); }

body.page-template-page-home-test-php .nav-tiles__tile__icon {
  height: 43px;
  margin: 0.5em 0; }

body.page-template-page-home-test-php .nav-tiles__tile--business .nav-tiles__tile__icon {
  width: 78px;
  height: auto; }

body.page-template-page-home-test-php .nav-tiles__tile--business .nav-tiles__tile__heading {
  font-size: 40px; }

body.page-template-page-home-test-php .nav-tiles__tile__heading {
  padding-bottom: 0;
  color: white;
  font-family: tradegothic, Helvetica, Arial, sans-serif;
  font-weight: bold;
  text-transform: uppercase; }

body.page-template-page-home-test-php .nav-tiles__tile__desc {
  padding-bottom: 0;
  color: white;
  font-size: 14px; }

body.page-template-page-home-test-php .nav-tiles__tile__button {
  color: white;
  background: transparent;
  cursor: pointer; }
  body.page-template-page-home-test-php .nav-tiles__tile__button:hover {
    color: white; }

body.page-template-page-home-test-php .nav-tiles__tile--personal .nav-tiles__tile__button {
  border-color: #FFCC00; }

body.page-template-page-home-test-php .nav-tiles__tile--msp .nav-tiles__tile__button {
  border-color: #98D04F; }

body.page-template-page-home-test-php .nav-tiles__tile__cta {
  margin-top: 0.75em; }

@media screen and (min-width: 40em) {
  body.home .product-container .button.orange {
    margin-right: 2em; }
  body.home .homepage-tiles-tile {
    background-size: 100% auto; }
  body.home .home-hero .grid {
    top: -280px; }
  body.home .home-hero .image-banner-heading {
    padding: 0.5em 0;
    font-size: 60px;
    text-align: left; }
  body.home .attacks .grid {
    top: -350px; } }

@media screen and (min-width: 59.5em) {
  body.home .image-banner .image-banner-heading {
    font-size: 65px; }
  body.home .homepage-hero {
    height: 650px; }
  body.home .home-stats,
  body.home .home-attacks {
    height: 345px; }
  body.home .home-hero {
    height: 650px; }
    body.home .home-hero .grid {
      top: -580px; }
    body.home .home-hero p {
      width: 65%;
      font-size: 20px;
      font-size: 2rem; }
    body.home .home-hero .cta-block {
      display: block; }
    body.home .home-hero .arrow {
      display: block;
      font-size: 18px;
      font-size: 1.8rem;
      margin: 50px auto 1em;
      text-align: center; }
      body.home .home-hero .arrow a, body.home .home-hero .arrow table.dashboard-table .column-editable .data-text:hover, table.dashboard-table .column-editable body.home .home-hero .arrow .data-text:hover {
        animation: bounce 3s 5;
        color: white;
        padding: 0.5em 0.65em;
        margin: 0.5em;
        border: 1px solid white;
        border-radius: 50px; }
        body.home .home-hero .arrow a:hover, body.home .home-hero .arrow table.dashboard-table .column-editable .data-text:hover, table.dashboard-table .column-editable body.home .home-hero .arrow .data-text:hover {
          transition: all 500ms ease-out;
          text-decoration: none;
          background: rgba(102, 102, 102, 0.5); }
  body.home .homehero-promo__heading--tag {
    font-size: 24px;
    font-size: 2.4rem;
    margin-top: 1.2em; }
  body.home .homehero-promo__heading--title {
    font-size: 72px;
    font-size: 7.2rem; }
  body.home .home-hero p.homehero-promo__copy {
    display: block;
    font-size: 18px;
    font-size: 1.8rem;
    width: 80%;
    margin: 0 0 2em; }
  body.home .stats,
  body.home .attacks {
    height: 345px; }
    body.home .stats .grid,
    body.home .attacks .grid {
      top: -305px; }
    body.home .stats .left-box,
    body.home .attacks .left-box {
      float: left;
      display: block;
      margin-right: 1.55951%;
      width: 26.65146%;
      padding: 0 0 0 2em; }
      body.home .stats .left-box:last-child,
      body.home .attacks .left-box:last-child {
        margin-right: 0; }
    body.home .stats .middle-box,
    body.home .attacks .middle-box {
      float: left;
      display: block;
      margin-right: 1.55951%;
      width: 26.65146%;
      padding: 0; }
      body.home .stats .middle-box:last-child,
      body.home .attacks .middle-box:last-child {
        margin-right: 0; }
    body.home .stats .right-box,
    body.home .attacks .right-box {
      float: left;
      display: block;
      margin-right: 1.55951%;
      width: 26.65146%;
      margin-right: 0;
      float: right;
      padding: 0 2em 0 3em; }
      body.home .stats .right-box:last-child,
      body.home .attacks .right-box:last-child {
        margin-right: 0; }
    body.home .stats h2,
    body.home .attacks h2 {
      color: #434356;
      font-size: 38px;
      font-size: 3.8rem; }
    body.home .stats p,
    body.home .attacks p {
      text-align: left; }
      body.home .stats p .number,
      body.home .attacks p .number {
        font-size: 100px;
        font-size: 10rem; }
      body.home .stats p .type,
      body.home .attacks p .type {
        font-size: 50px;
        font-size: 5rem; }
  body.home .attacks .grid {
    top: -320px; }
  body.home .attacks .left-col {
    margin-left: 5.6422%; }
    body.home .attacks .left-col p {
      padding: 0 60px; }
  body.home .attacks .right-col {
    float: left; }
  body.home .attacks h2 {
    color: #ffffff;
    font-size: 4em;
    margin: 0;
    padding: 0; }
  body.home .attacks p {
    text-align: center;
    margin: 0;
    box-sizing: border-box;
    padding: 0 50px;
    font-size: 1.7em;
    line-height: 1.1; }
    body.home .attacks p .number {
      font-family: tradegothic_cn;
      font-size: 5em;
      letter-spacing: -5px; }
    body.home .attacks p .type {
      font-size: 3em; }
  body.home .user-container .cta-block-mobile {
    display: none; }
  body.home .user-container .user-groups {
    display: block;
    background: none;
    border-top: none;
    margin-top: 0px;
    padding-top: 0px; }
    body.home .user-container .user-groups ul li {
      display: inline-block;
      width: 19.5%; }
      body.home .user-container .user-groups ul li:last-child {
        width: 19%; }
    body.home .user-container .user-groups .alignright {
      display: block; }
  body.home .left-col {
    float: left;
    display: block;
    margin-right: 1.75788%;
    width: 42.76119%; }
    body.home .left-col:last-child {
      margin-right: 0; }
  body.home .right-col {
    float: left;
    display: block;
    margin-right: 1.75788%;
    width: 42.76119%;
    margin-right: 0;
    float: right; }
    body.home .right-col:last-child {
      margin-right: 0; }
  body.home .post {
    width: 40%;
    float: left;
    height: 250px;
    margin: 0 40px 80px 40px;
    border-left: 1px solid #d6d4d1;
    list-style: none; }
    body.home .post .left {
      background: white;
      margin-left: -25px; }
      body.home .post .left .post-date {
        margin-bottom: 1em; }
  body.home .video-title {
    display: none; }
  body.home .video-spot {
    width: auto;
    height: 535px; }
    body.home .video-spot iframe {
      display: block;
      width: 100%;
      height: 535px;
      margin: auto; }
  body.home .video-spot-overlay {
    height: 535px;
    padding-top: 130px; }
    body.home .video-spot-overlay p {
      position: relative;
      display: block;
      z-index: 1;
      color: white;
      text-transform: uppercase;
      font-size: 35px;
      font-size: 3.5rem; }
  body.home .video-spot-play {
    transform: scale(1, 1); }
  body.home .logos-container {
    position: relative;
    margin-top: 20px; }
    body.home .logos-container #customer-logos {
      position: relative;
      width: 800px;
      height: 60px;
      margin: 0 auto;
      overflow: hidden; }
    body.home .logos-container .nav {
      position: absolute;
      top: 4px;
      width: 30px;
      height: 45px; }
    body.home .logos-container .nav a, body.home .logos-container .nav table.dashboard-table .column-editable .data-text:hover, table.dashboard-table .column-editable body.home .logos-container .nav .data-text:hover {
      display: block;
      width: 30px;
      height: 45px;
      opacity: 0.8;
      cursor: pointer;
      font-size: 52px;
      font-size: 5.2rem;
      color: #e7e4df; }
      body.home .logos-container .nav a:hover, body.home .logos-container .nav table.dashboard-table .column-editable .data-text:hover, table.dashboard-table .column-editable body.home .logos-container .nav .data-text:hover {
        opacity: 1; }
    body.home .logos-container #nav-right {
      right: 0; }
      body.home .logos-container #nav-right a, body.home .logos-container #nav-right table.dashboard-table .column-editable .data-text:hover, table.dashboard-table .column-editable body.home .logos-container #nav-right .data-text:hover {
        display: block;
        width: 20px;
        height: 20px; }
    body.home .logos-container #nav-left {
      left: 0; }
      body.home .logos-container #nav-left a, body.home .logos-container #nav-left table.dashboard-table .column-editable .data-text:hover, table.dashboard-table .column-editable body.home .logos-container #nav-left .data-text:hover {
        display: block;
        width: 20px;
        height: 20px;
        margin-left: 6px; }
    body.home .logos-container .slides {
      height: 60px; }
    body.home .logos-container .slides li {
      float: left;
      display: block;
      width: 145px;
      height: 60px;
      margin-right: 15px;
      text-align: center; }
      body.home .logos-container .slides li:before {
        content: ' ';
        display: inline-block;
        height: 100%;
        vertical-align: middle;
        margin-right: -0.25em; }
    body.home .logos-container .slides img {
      display: inline-block;
      vertical-align: middle;
      max-width: 145px;
      max-height: 60px; }
  body.home .customer-list {
    display: block;
    padding: 30px 0 50px; }
    body.home .customer-list .logos-container {
      display: block; }
    body.home .customer-list .title {
      display: block;
      width: 575px;
      margin: 0 auto;
      color: #b5b5b5;
      font-size: 22px;
      font-weight: normal;
      text-align: center; }
  body.home .post .blog-property {
    height: 85px; }
    body.home .post .blog-property .blog-title {
      margin-top: 2em; }
  body.home .user-container {
    display: block;
    padding-top: 40px;
    border: 1px solid #e7e4df; }
  body.home .promo-banner-wrapper--centered {
    text-align: left; }
  body.home .homepage-hero,
  body.home .home-hero {
    height: 610px; }
  body.home .home-hero .grid {
    top: -540px; }
  body.home .nav-tiles {
    position: relative;
    top: -1px;
    display: block;
    margin-top: -260px;
    margin-bottom: 0;
    overflow: hidden;
    background: rgba(14, 15, 16, 0.5); }
  body.home .nav-tiles__tile {
    float: left;
    display: block;
    margin-right: 1.16509%;
    width: 24.12618%;
    height: 210px;
    margin-bottom: 0; }
    body.home .nav-tiles__tile:last-child {
      margin-right: 0; }
  body.home .nav-tiles__tile--business {
    float: left;
    display: block;
    margin-right: 1.16509%;
    width: 49.41745%;
    text-align: left; }
    body.home .nav-tiles__tile--business:last-child {
      margin-right: 0; }
    body.home .nav-tiles__tile--business:hover {
      border-color: #7e9adc; }
  body.home .nav-tiles__tile--msp:hover {
    border-color: #98D04F; }
  body.home .nav-tiles__tile--personal {
    margin-right: 0; }
    body.home .nav-tiles__tile--personal:hover {
      border-color: #FFCC00; }
  body.home .nav-tiles__tile__cta {
    position: absolute;
    bottom: 40px;
    width: 100%;
    margin-top: 0; }
  body.home .nav-tiles__tile--business .nav-tiles__tile__icon {
    float: left;
    margin-top: -55px;
    margin-left: 10px; }
  body.home .nav-tiles__tile--business .nav-tiles__tile__heading {
    padding-left: 100px; }
  body.home .nav-tiles__tile--business .nav-tiles__tile__desc {
    padding-left: 100px; }
  body.home .nav-tiles__tile--business .nav-tiles__tile__button {
    margin-left: 100px; } }

@keyframes fadeout {
  0% {
    opacity: 1; }
  50% {
    opacity: 1; }
  100% {
    opacity: 0; } }

.personal-security-hero {
  height: 1150px; }

.personal-security-enhanced-dns {
  height: auto; }

.personal-security-hero .banner {
  height: 425px; }

.personal-security-hero .grid {
  top: -375px; }

.personal-security-enhanced-dns .grid {
  top: 0; }

.personal-security-enhanced-dns .banner {
  display: none; }

.personal-security-hero .image-banner-heading {
  display: block;
  width: auto;
  border: none;
  font-size: 50px;
  line-height: 1.1; }
  .personal-security-hero .image-banner-heading span {
    display: block; }

.personal-security-hero .image-banner-subheading {
  color: white;
  font-size: 18px;
  font-size: 1.8rem;
  text-align: left;
  padding-bottom: 0.5em; }

.personal-security-enhanced-dns .banner:before,
.personal-security-hero .banner:before {
  display: none; }

.personalpage-tiles {
  position: relative;
  top: -1px;
  display: block;
  margin-bottom: 3em;
  text-align: center;
  overflow: hidden; }

.personalpage-tiles p {
  padding: 0;
  margin: 0.5em 0;
  color: white;
  line-height: 1.3;
  font-size: 16px;
  font-size: 1.6rem; }

.personalpage-tiles ul {
  padding-bottom: 0; }
  .personalpage-tiles ul li {
    color: white;
    font-size: 14px;
    line-height: 1.3;
    list-style: none; }

.personalpage-tiles-tile {
  box-sizing: border-box;
  position: relative;
  display: block;
  width: 100%; }
  .personalpage-tiles-tile:hover {
    text-decoration: none; }

.personalpage-tiles .personalpage-tiles-price {
  display: inline-block;
  margin: 0;
  font-size: 22px;
  font-size: 2.2rem;
  font-family: tradegothic, Helvetica, Arial, sans-serif; }

.personalpage-tiles .personalpage-tiles-heading {
  display: inline-block;
  margin: 0;
  font-size: 24px;
  font-family: tradegothic, Helvetica, Arial, sans-serif;
  text-transform: uppercase;
  letter-spacing: .5pt; }

.personalpage-tiles-button {
  margin-top: 1em;
  border: none; }

.personalpage-tiles-tile-home,
.personalpage-tiles-tile-vip,
.personalpage-tiles-tile-family {
  background: #70708f;
  margin: 1em 0;
  padding: 1em; }

.personalpage-tiles-tile-support,
.personalpage-tiles-tile-ipaddresses {
  border-top: 15px solid #FFCC00;
  background: #434356;
  margin: 1em 0;
  padding: 1.4em; }
  .personalpage-tiles-tile-support p,
  .personalpage-tiles-tile-ipaddresses p {
    margin-top: 1em; }
  .personalpage-tiles-tile-support a, .personalpage-tiles-tile-support table.dashboard-table .column-editable .data-text:hover, table.dashboard-table .column-editable .personalpage-tiles-tile-support .data-text:hover, .personalpage-tiles-tile-support
  table.dashboard-table.table-striped tbody tr:nth-child(odd) td.column-editable .data-text:hover,
  table.dashboard-table.table-striped tbody tr:nth-child(odd) td.column-editable .personalpage-tiles-tile-support .data-text:hover,
  .personalpage-tiles-tile-ipaddresses a,
  .personalpage-tiles-tile-ipaddresses table.dashboard-table .column-editable .data-text:hover, table.dashboard-table .column-editable
  .personalpage-tiles-tile-ipaddresses .data-text:hover,
  .personalpage-tiles-tile-ipaddresses
  table.dashboard-table.table-striped tbody tr:nth-child(odd) td.column-editable .data-text:hover,
  table.dashboard-table.table-striped tbody tr:nth-child(odd) td.column-editable
  .personalpage-tiles-tile-ipaddresses .data-text:hover {
    color: #7e9adc; }

p.personalpage-tiles-business-intro {
  padding-top: 1em;
  border-top: 1px dotted white;
  font-weight: bold; }

.personal-looking-for-business {
  border-top: 20px #7e9adc solid;
  background: #434356;
  margin-bottom: 0; }

.personal-protect-devices .message .intro {
  font-weight: bold;
  text-transform: uppercase;
  font-size: 24px;
  font-size: 2.4rem;
  letter-spacing: 0.5pt;
  line-height: 1.4; }

.personal-protect-devices .message p {
  font-size: 20px;
  font-size: 2rem; }

.personal-protect-devices .message a, .personal-protect-devices .message table.dashboard-table .column-editable .data-text:hover, table.dashboard-table .column-editable .personal-protect-devices .message .data-text:hover {
  color: #46494e; }

.personal-prosumer .message p {
  font-size: 22px;
  font-size: 2.2rem; }

.personal-looking-for-business .message {
  margin: 3em 0; }
  .personal-looking-for-business .message p {
    color: #7e9adc;
    font-size: 22px;
    font-size: 2.2rem;
    padding-bottom: 0; }

.personal-prosumer-button {
  box-shadow: none;
  margin-top: 1em; }

.personal-business-button {
  box-shadow: none;
  margin-top: 2em; }

.home-endorsements {
  position: relative;
  margin: 0 0 4em;
  background: #434356;
  border-top: 20px solid #FFCC00; }

.home-endorsements-schools {
  margin-bottom: 3em;
  text-align: center; }
  .home-endorsements-schools h3 {
    font-size: 28px;
    font-size: 2.8rem;
    color: white;
    margin-bottom: 1em; }

.home-endorsements-banner {
  background: url("https://s3-us-west-1.amazonaws.com/webteam-cdn/opendns-www/img/school-image.jpg");
  background-size: 300px;
  background-repeat: no-repeat;
  height: 300px;
  width: 300px;
  margin: 0 auto; }

.home-endorsements-button:hover {
  color: white; }

.home-endorsements-title {
  font-size: 28px;
  font-size: 2.8rem;
  color: #FFCC00;
  text-transform: uppercase;
  line-height: 1.4;
  margin: 1em; }

.home-endorsements .slide::after {
  clear: both;
  content: "";
  display: table; }

.home-endorsements .slide .info {
  margin-left: 1.4em; }
  .home-endorsements .slide .info::after {
    clear: both;
    content: "";
    display: table; }
  .home-endorsements .slide .info p {
    font-size: 18px;
    font-size: 1.8rem;
    font-family: 'tradegothic_light';
    color: #FFCC00; }

.home-endorsements-slide-container {
  margin: auto;
  padding-bottom: 20px;
  position: relative; }
  .home-endorsements-slide-container .flex-direction-nav {
    display: none;
    position: absolute;
    right: 0;
    top: 180px;
    bottom: auto;
    width: 100%;
    margin-bottom: 35px; }
    .home-endorsements-slide-container .flex-direction-nav li {
      position: absolute;
      width: 40px;
      height: 80px;
      top: 0;
      left: 0; }
      .home-endorsements-slide-container .flex-direction-nav li::after {
        clear: both;
        content: "";
        display: table; }
    .home-endorsements-slide-container .flex-direction-nav .flex-nav-next {
      top: 0;
      right: 0;
      left: auto; }
    .home-endorsements-slide-container .flex-direction-nav a, .home-endorsements-slide-container .flex-direction-nav table.dashboard-table .column-editable .data-text:hover, table.dashboard-table .column-editable .home-endorsements-slide-container .flex-direction-nav .data-text:hover {
      position: relative;
      display: block;
      float: left;
      width: 40px;
      height: 80px;
      top: auto;
      right: auto;
      bottom: auto;
      left: auto;
      overflow: hidden;
      opacity: 0.8; }
      .home-endorsements-slide-container .flex-direction-nav a:after, .home-endorsements-slide-container .flex-direction-nav table.dashboard-table .column-editable .data-text:hover:after, table.dashboard-table .column-editable .home-endorsements-slide-container .flex-direction-nav .data-text:hover:after {
        content: ' ';
        display: block;
        position: absolute;
        width: 20px;
        height: 20px;
        top: 29px; }
      .home-endorsements-slide-container .flex-direction-nav a.flex-next, .home-endorsements-slide-container .flex-direction-nav table.dashboard-table .column-editable .flex-next.data-text:hover, table.dashboard-table .column-editable .home-endorsements-slide-container .flex-direction-nav .flex-next.data-text:hover {
        float: right; }
        .home-endorsements-slide-container .flex-direction-nav a.flex-next:after, .home-endorsements-slide-container .flex-direction-nav table.dashboard-table .column-editable .flex-next.data-text:hover:after, table.dashboard-table .column-editable .home-endorsements-slide-container .flex-direction-nav .flex-next.data-text:hover:after {
          right: 15px;
          transform: rotate(-45deg);
          -ms-transform: rotate(-45deg);
          -webkit-transform: rotate(-45deg);
          border-right: 3px solid #828282;
          border-bottom: 3px solid #828282; }
      .home-endorsements-slide-container .flex-direction-nav a.flex-prev:after, .home-endorsements-slide-container .flex-direction-nav table.dashboard-table .column-editable .flex-prev.data-text:hover:after, table.dashboard-table .column-editable .home-endorsements-slide-container .flex-direction-nav .flex-prev.data-text:hover:after {
        left: 15px;
        transform: rotate(45deg);
        -ms-transform: rotate(45deg);
        -webkit-transform: rotate(45deg);
        border-left: 3px solid #828282;
        border-bottom: 3px solid #828282; }
      .home-endorsements-slide-container .flex-direction-nav a:hover:after, .home-endorsements-slide-container .flex-direction-nav table.dashboard-table .column-editable .data-text:hover:after, table.dashboard-table .column-editable .home-endorsements-slide-container .flex-direction-nav .data-text:hover:after {
        border-color: white; }
      .home-endorsements-slide-container .flex-direction-nav a:hover, .home-endorsements-slide-container .flex-direction-nav table.dashboard-table .column-editable .data-text:hover, table.dashboard-table .column-editable .home-endorsements-slide-container .flex-direction-nav .data-text:hover {
        opacity: 1;
        background: #ff5700; }
  .home-endorsements-slide-container .flex-control-nav {
    width: 100%;
    margin-bottom: 42px;
    list-style: none;
    z-index: 10;
    height: 22px; }
    .home-endorsements-slide-container .flex-control-nav li {
      padding: 0;
      height: 12px; }
      .home-endorsements-slide-container .flex-control-nav li a, .home-endorsements-slide-container .flex-control-nav li table.dashboard-table .column-editable .data-text:hover, table.dashboard-table .column-editable .home-endorsements-slide-container .flex-control-nav li .data-text:hover {
        width: 12px;
        height: 12px;
        background: #cfcfcf;
        border: 1px solid #828282;
        box-shadow: none; }
        .home-endorsements-slide-container .flex-control-nav li a.flex-active, .home-endorsements-slide-container .flex-control-nav li table.dashboard-table .column-editable .flex-active.data-text:hover, table.dashboard-table .column-editable .home-endorsements-slide-container .flex-control-nav li .flex-active.data-text:hover {
          background: #46494e; }
        .home-endorsements-slide-container .flex-control-nav li a:hover, .home-endorsements-slide-container .flex-control-nav li table.dashboard-table .column-editable .data-text:hover, table.dashboard-table .column-editable .home-endorsements-slide-container .flex-control-nav li .data-text:hover {
          background: #828282; }
  .home-endorsements-slide-container .flex-viewport {
    z-index: 1; }

.personal-options {
  display: none; }
  .personal-options .personal-options-button:hover {
    color: white; }

.personal-options-pdf {
  display: block;
  margin: 0 auto 3em;
  text-align: center; }
  .personal-options-pdf .personal-options-pdf-button:hover {
    color: white; }

.section-header {
  text-align: center; }

body.home-internet-security footer {
  margin-top: 0; }

@media screen and (min-width: 40em) {
  body .personal-security-hero,
  body .personal-security-hero .banner {
    height: 650px; }
  body .personal-security-hero .grid {
    top: -585px; }
  body .personal-security-enhanced-dns,
  body .personal-security-enhanced-dns .banner {
    display: block;
    height: 500px; }
  body .personal-security-enhanced-dns .grid {
    top: -450px; }
  body .personal-security-hero .image-banner-heading {
    padding: 0.25em 0;
    width: 100%;
    text-align: left; }
  body .personalpage-tiles p {
    font-size: 16px;
    font-size: 1.6rem; }
  body .personalpage-tiles-tile {
    background-size: auto 100%;
    box-sizing: border-box; }
  body .personalpage-tiles-tile-family,
  body .personalpage-tiles-tile-vip,
  body .personalpage-tiles-tile-home {
    border: 1px solid white;
    border-radius: 6px;
    background: rgba(128, 128, 128, 0.2);
    float: left;
    display: block;
    margin-right: 2.35765%;
    width: 31.76157%; }
    body .personalpage-tiles-tile-family:last-child,
    body .personalpage-tiles-tile-vip:last-child,
    body .personalpage-tiles-tile-home:last-child {
      margin-right: 0; }
  body .personalpage-tiles-tile-vip {
    margin-right: 0;
    float: right; }
  body .personalpage-tiles-tile-support,
  body .personalpage-tiles-tile-ipaddresses {
    background: rgba(42, 56, 111, 0.4);
    float: left;
    display: block;
    margin-right: 1.55951%;
    width: 43.57805%; }
    body .personalpage-tiles-tile-support:last-child,
    body .personalpage-tiles-tile-ipaddresses:last-child {
      margin-right: 0; }
  body .personalpage-tiles-tile-support {
    margin-right: 0;
    float: right; }
  body .section-header {
    text-align: left; }
  body .personal-options {
    display: block;
    margin: 3em 0; }
    body .personal-options th {
      padding: 0 0 1em;
      border-bottom: 1px solid #e7e4df;
      border-left: 1px solid #e7e4df; }
      body .personal-options th:first-child {
        border-left: none; }
      body .personal-options th p {
        text-transform: uppercase;
        padding: 0;
        margin: 0;
        line-height: 1.2; }
      body .personal-options th .heading {
        font-size: 16px;
        font-size: 1.6rem;
        color: #F37821; }
      body .personal-options th .subheading {
        font-size: 24px;
        font-size: 2.4rem;
        color: #434356; }
    body .personal-options td {
      padding: 1em;
      vertical-align: top;
      border-bottom: 1px solid #e7e4df;
      border-left: 1px solid #e7e4df;
      width: 22%;
      text-align: center; }
      body .personal-options td:first-child {
        border-left: none; }
      body .personal-options td p {
        font-size: 16px;
        font-size: 1.6rem;
        padding-bottom: 0; }
      body .personal-options td .fa-check-square {
        color: #F37821; }
    body .personal-options td.feature {
      width: 34%;
      color: #46494e;
      text-align: left; }
    body .personal-options tr.price td.feature {
      font-weight: normal;
      background: white;
      border: none; }
    body .personal-options tr.price td {
      background: #ececee;
      font-family: 'tradegothic';
      font-weight: bold;
      border: none; }
      body .personal-options tr.price td p {
        font-size: 22px;
        font-size: 2.2rem;
        font-weight: bold; }
    body .personal-options tr.cta-row td {
      border: none; }
  body .personal-options-pdf {
    display: none; }
  body .personal-protect-devices .message .intro {
    line-height: 1.7; }
  body .personal-protect-devices .image img {
    margin-right: -40px;
    float: right; }
  body .personal-prosumer .image img {
    width: 400px;
    float: right; }
  body .personal-looking-for-business {
    text-align: right; }
    body .personal-looking-for-business .image img {
      float: left;
      width: 375px;
      margin-left: -65px; } }

@media screen and (min-width: 59.5em) {
  body .personal-security-hero .image-banner-heading {
    padding: 0.25em 0;
    font-size: 65px;
    width: 100%;
    text-align: left; }
  body .personal-security-enhanced-dns .grid {
    top: -520px; }
  body .personalpage-tiles {
    margin-top: 65px;
    margin-bottom: 90px; }
  body .personalpage-tiles-tile-family,
  body .personalpage-tiles-tile-vip,
  body .personalpage-tiles-tile-home {
    height: 250px;
    padding: 1em 2.4em; }
  body .personalpage-tiles-tile-support,
  body .personalpage-tiles-tile-ipaddresses {
    height: 375px; }
  body .home-endorsements {
    height: 376px; }
  body .home-endorsements-schools {
    float: left;
    display: block;
    margin-right: 1.55951%;
    width: 43.57805%;
    text-align: left; }
    body .home-endorsements-schools:last-child {
      margin-right: 0; }
  body .home-endorsements-banner {
    background-size: 419px;
    height: 419px;
    width: 466px; }
  body .home-endorsements-schools-endorsement {
    position: relative;
    top: -395px;
    padding: 0 3em 0 150px;
    line-height: 1.4; }
  body .home-endorsements-slide-container {
    float: left;
    display: block;
    margin-right: 1.55951%;
    width: 54.86244%;
    margin-right: 0; }
    body .home-endorsements-slide-container:last-child {
      margin-right: 0; }
  body .personal-looking-for-business .image,
  body .personal-prosumer .image,
  body .personal-protect-devices .image {
    float: left;
    display: block;
    margin-right: 1.55951%;
    width: 32.29366%; }
    body .personal-looking-for-business .image:last-child,
    body .personal-prosumer .image:last-child,
    body .personal-protect-devices .image:last-child {
      margin-right: 0; }
  body .personal-looking-for-business .message,
  body .personal-prosumer .message,
  body .personal-protect-devices .message {
    float: left;
    display: block;
    margin-right: 1.55951%;
    width: 66.14683%; }
    body .personal-looking-for-business .message:last-child,
    body .personal-prosumer .message:last-child,
    body .personal-protect-devices .message:last-child {
      margin-right: 0; }
  body .personal-prosumer .image,
  body .personal-protect-devices .image {
    margin-right: 0;
    float: right; }
  body .personal-looking-for-business .message {
    margin-right: 0;
    float: right; }
    body .personal-looking-for-business .message p {
      font-size: 28px;
      font-size: 2.8rem; } }

#menu-sitemap {
  list-style: none; }
  #menu-sitemap::after {
    clear: both;
    content: "";
    display: table; }
  #menu-sitemap h3 {
    padding: 0.5em 0;
    margin-right: 3em;
    margin-bottom: 0.5em;
    color: #292934;
    font-size: 16px;
    font-size: 1.6rem;
    font-family: 'tradegothic';
    font-weight: bold;
    text-transform: none;
    border-top: 1px dotted #b5b5b5;
    border-bottom: 1px dotted #b5b5b5; }
  #menu-sitemap ul {
    list-style: disc;
    padding-left: 1.5em;
    margin-right: 3em; }
    #menu-sitemap ul li {
      color: #9c9c9c;
      line-height: 1.3;
      margin-bottom: 0.7em; }
  #menu-sitemap a, #menu-sitemap table.dashboard-table .column-editable .data-text:hover, table.dashboard-table .column-editable #menu-sitemap .data-text:hover {
    font-size: 15px;
    font-size: 1.5rem;
    font-family: 'tradegothic'; }
  #menu-sitemap .column {
    float: left;
    display: block;
    margin-right: 3.57866%;
    width: 100%;
    margin-right: 0;
    float: right; }
    #menu-sitemap .column:last-child {
      margin-right: 0; }

@media screen and (min-width: 59.5em) {
  body #menu-sitemap {
    list-style: none; }
    body #menu-sitemap::after {
      clear: both;
      content: "";
      display: table; }
    body #menu-sitemap .column {
      float: left;
      display: block;
      margin-right: 1.16509%;
      width: 32.55661%; }
      body #menu-sitemap .column:last-child {
        margin-right: 0; }
      body #menu-sitemap .column:last-child {
        float: left;
        display: block;
        margin-right: 1.16509%;
        width: 32.55661%;
        margin-right: 0;
        float: right; }
        body #menu-sitemap .column:last-child:last-child {
          margin-right: 0; } }

.sidebar-banner {
  display: block;
  overflow: hidden;
  max-width: 400px;
  margin: 2em auto;
  padding: 0;
  border: 1px solid #363645; }
  .sidebar-banner div {
    padding: 1em;
    background: #363645; }
    .sidebar-banner div::after {
      clear: both;
      content: "";
      display: table; }
    .sidebar-banner div p {
      margin: 0;
      padding: 0 0 0.25em;
      font-size: 15px;
      font-size: 1.5rem;
      line-height: 1.4;
      color: white; }
      .sidebar-banner div p.title strong {
        font-size: 14px;
        font-size: 1.4rem;
        font-family: 'tradegothic';
        text-transform: uppercase;
        font-weight: bold;
        color: #00b0e0; }
    .sidebar-banner div.banner-bottom p {
      font-size: 13px;
      font-size: 1.3rem; }
  .sidebar-banner img {
    display: block;
    width: 100%;
    margin: 0 auto;
    padding: 0; }
  .sidebar-banner .button.enhanced {
    float: right;
    margin-top: 1em;
    margin-right: 0; }

.sidebar-more {
  font-size: 15px;
  font-size: 1.5rem; }

.right-column p,
.right-column-40 p {
  font-size: 15px;
  font-size: 1.5rem; }

.right-column .resources li p,
.right-column .link-list li p,
.right-column-40 .resources li p,
.right-column-40 .link-list li p {
  font-size: 15px;
  font-size: 1.5rem;
  padding-left: 2em;
  color: #00b0e0; }
  .right-column .resources li p:hover,
  .right-column .link-list li p:hover,
  .right-column-40 .resources li p:hover,
  .right-column-40 .link-list li p:hover {
    color: #00607a; }

.right-column .endorsement,
.right-column .endorsements,
.right-column-40 .endorsement,
.right-column-40 .endorsements {
  width: auto;
  padding-bottom: 1em; }

.right-column .expandable-box .expanded {
  padding: 10px 20px; }
  .right-column .expandable-box .expanded p {
    margin-top: 1em;
    font-size: 14px;
    font-size: 1.4rem; }
  .right-column .expandable-box .expanded ol, .right-column .expandable-box .expanded ul {
    margin: 0; }
  .right-column .expandable-box .expanded ul li {
    margin-top: 1em;
    list-style: none;
    font-size: 14px;
    font-size: 1.4rem; }
    .right-column .expandable-box .expanded ul li strong {
      font-size: 20px;
      font-size: 2rem;
      font-family: 'tradegothic_cn';
      font-weight: normal;
      border-bottom: 1px dotted #46494e; }

.right-column .endorsement,
.right-column .endorsements {
  width: auto;
  margin: 0;
  padding-bottom: 1em; }
  .right-column .endorsement ul,
  .right-column .endorsements ul {
    padding: 0; }
    .right-column .endorsement ul .icon,
    .right-column .endorsements ul .icon {
      text-align: right;
      margin-bottom: 1em; }

.right-column .endorsement {
  padding-top: 0; }
  .right-column .endorsement blockquote p {
    font-size: 14px;
    font-size: 1.4rem; }
  .right-column .endorsement .attribution {
    font-size: 13px;
    font-size: 1.3rem; }

.right-column .resources,
.right-column .links {
  list-style: none;
  padding-bottom: 1em; }
  .right-column .resources.sidebar,
  .right-column .links.sidebar {
    margin-bottom: 2em; }
  .right-column .resources li i,
  .right-column .links li i {
    float: left;
    position: relative;
    top: 5px;
    width: 1em;
    height: 1em;
    color: #292934;
    transform: rotate(-45deg);
    font-size: 19px;
    font-size: 1.9rem; }
  .right-column .resources li .cpt-icon,
  .right-column .links li .cpt-icon {
    position: relative;
    top: 3px;
    float: left;
    width: 20px;
    height: 20px; }
  .right-column .resources li .icon,
  .right-column .links li .icon {
    width: 1em;
    height: 1em;
    float: left;
    background: url(https://s3-us-west-1.amazonaws.com/webteam-cdn/opendns-www/img/mini-link.svg) no-repeat left center;
    position: relative;
    top: 5px; }

.right-column .cta {
  padding-bottom: 2em; }

.next-steps {
  margin-bottom: 2em; }
  .next-steps ul {
    padding: 0;
    list-style-position: inside;
    list-style-type: none; }
  .next-steps li {
    padding-bottom: 0.5em;
    padding-top: 0.5em;
    border-top: none;
    color: #828282; }
    .next-steps li::after {
      clear: both;
      content: "";
      display: table; }
    .next-steps li:first-child {
      padding-top: 0;
      border: none; }
  .next-steps img {
    float: left;
    width: 24px;
    height: 24px;
    padding: 0 0.75em 0 0.5em; }
  .next-steps a p, .next-steps table.dashboard-table .column-editable .data-text:hover p, table.dashboard-table .column-editable .next-steps .data-text:hover p, .next-steps
  table.dashboard-table.table-striped tbody tr:nth-child(odd) td.column-editable .data-text:hover p,
  table.dashboard-table.table-striped tbody tr:nth-child(odd) td.column-editable .next-steps .data-text:hover p {
    margin-left: 0;
    padding-bottom: 0;
    font-weight: normal;
    font-family: 'tradegothic';
    font-size: 15px;
    font-size: 1.5rem;
    color: #00b0e0; }
  .next-steps a:hover p, .next-steps table.dashboard-table .column-editable .data-text:hover p, table.dashboard-table .column-editable .next-steps .data-text:hover p, .next-steps
  table.dashboard-table.table-striped tbody tr:nth-child(odd) td.column-editable .data-text:hover p,
  table.dashboard-table.table-striped tbody tr:nth-child(odd) td.column-editable .next-steps .data-text:hover p {
    color: #00607a; }
  .next-steps p {
    padding-left: 50px; }
  .next-steps:first-child {
    margin-top: 2em; }

body.customers .content {
  padding-top: 0; }

body.customers .grid {
  overflow: visible; }

body.customers ul {
  list-style: none; }

body.customers .section-title {
  padding: 1em 0.5em;
  margin: auto;
  color: #696978;
  font-weight: normal;
  font-family: tradegothic_light, Helvetica, Arial, sans-serif;
  font-size: 24px;
  text-transform: uppercase;
  text-align: center;
  letter-spacing: 0.4pt;
  border: none; }

body.customers .carousel {
  position: relative;
  background: #444456; }
  body.customers .carousel::after {
    clear: both;
    content: "";
    display: table; }

body.customers .carousel__item {
  display: none;
  padding: 2em 1em 3em;
  background-size: cover;
  z-index: 1; }
  body.customers .carousel__item .grid {
    overflow: visible; }
  body.customers .carousel__item:first-child {
    display: block;
    opacity: 1; }

body.customers .carousel__item--active {
  opacity: 1;
  transition: opacity, 500ms, ease-in; }

body.customers .carousel__item--new {
  z-index: 2; }

body.customers .carousel__item__info {
  display: inline-block;
  vertical-align: middle; }
  body.customers .carousel__item__info a, body.customers .carousel__item__info table.dashboard-table .column-editable .data-text:hover, table.dashboard-table .column-editable body.customers .carousel__item__info .data-text:hover {
    font-size: 14px;
    color: white;
    text-transform: uppercase; }
    body.customers .carousel__item__info a i, body.customers .carousel__item__info table.dashboard-table .column-editable .data-text:hover i, table.dashboard-table .column-editable body.customers .carousel__item__info .data-text:hover i {
      color: #F37821; }

body.customers .carousel__item__heading {
  padding: 0;
  font-size: 32px;
  font-family: tradegothic_cn;
  font-weight: bold;
  text-transform: uppercase;
  color: white; }

body.customers .carousel__item__quote p {
  position: relative;
  padding: 0 0 20px 0;
  color: white;
  font-size: 32px;
  line-height: 1.1; }

body.customers .carousel__item__quote p::before {
  position: absolute;
  top: 0;
  left: -0.5em;
  content: '\201C'; }

body.customers .carousel__item__quote p::after {
  content: '\201D'; }

body.customers .carousel__item__attrib {
  position: relative;
  margin-bottom: 15px;
  color: white;
  font-size: 18px;
  line-height: 1.2; }
  body.customers .carousel__item__attrib::before {
    position: absolute;
    top: 0;
    left: -0.5em;
    content: '-'; }

body.customers .carousel-nav {
  display: none; }

body.customers .customer-list-wrapper {
  padding-top: 20px;
  background: #e1e1e4; }

body.customers .customer-list__item.active .customer-list__item__info {
  transform: translateY(0); }

body.customers .customer-list__item {
  position: relative;
  box-sizing: border-box;
  height: 180px;
  width: 80%;
  margin: auto;
  margin-bottom: 20px;
  padding: 0;
  text-align: center;
  overflow: hidden;
  background: white; }
  body.customers .customer-list__item:before {
    content: '';
    display: inline-block;
    height: 100%;
    vertical-align: middle;
    margin-right: -0.25em; }

body.customers .customer-list__item__img {
  display: inline-block;
  max-width: 80%;
  max-height: 80%;
  vertical-align: middle; }

body.customers .fadeIn-enter {
  opacity: 0; }

body.customers .fadeIn-enter.fadeIn-enter-active {
  opacity: 1;
  transition: opacity, 500ms, ease-in; }

body.customers .customer-list__item__info {
  position: absolute;
  transform: translateY(166px);
  transition: transform, 300ms, linear;
  top: 8px;
  left: 0;
  box-sizing: border-box;
  width: 100%;
  height: 175px;
  padding: 10px;
  background: #5E81D3; }
  body.customers .customer-list__item__info a, body.customers .customer-list__item__info table.dashboard-table .column-editable .data-text:hover, table.dashboard-table .column-editable body.customers .customer-list__item__info .data-text:hover,
  body.customers .customer-list__item__info p {
    color: white;
    text-transform: uppercase;
    font-size: 12px; }
  body.customers .customer-list__item__info p {
    margin-top: 25px; }
  body.customers .customer-list__item__info .customer-list__item__info__resources {
    position: absolute;
    left: 0;
    bottom: 35px;
    width: 100%;
    padding-bottom: 0; }
    body.customers .customer-list__item__info .customer-list__item__info__resources li {
      line-height: 1.2; }

body.customers .filters {
  padding: 0 1em;
  margin-bottom: 20px; }
  body.customers .filters::after {
    clear: both;
    content: "";
    display: table; }

body.customers .filter::before {
  content: '';
  display: inline-block;
  height: 100%;
  vertical-align: middle;
  margin-right: -0.25em; }

body.customers .filter__select-wrapper {
  position: relative;
  display: inline-block;
  width: 90%;
  background: white; }
  body.customers .filter__select-wrapper::after {
    content: '\F0D7';
    position: absolute;
    right: 15px;
    top: 17px;
    font-family: fontawesome;
    font-size: 16px;
    font-smoothing: antialiased;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    color: #444456; }

body.customers .filter__select {
  position: relative;
  z-index: 1;
  width: 100%;
  -webkit-appearance: none;
  -moz-appearance: none;
  padding: 1em 1em;
  margin-bottom: 15px;
  appearance: none;
  border: 1px solid #444456;
  border-radius: 0;
  background: transparent;
  font-size: 16px; }
  body.customers .filter__select:focus {
    outline: none; }
  body.customers .filter__select option {
    font-family: tradgothic_light;
    color: #444456; }

body.customers .filter__button {
  position: relative;
  display: inline-block;
  width: 40px;
  height: 40px;
  border: 0;
  background: white;
  vertical-align: middle; }
  body.customers .filter__button::before, body.customers .filter__button::after {
    content: '';
    position: absolute;
    display: block;
    width: 24px;
    border-top: 2px solid #8f8f9a; }
  body.customers .filter__button::before {
    transform: rotate(45deg); }
  body.customers .filter__button::after {
    transform: rotate(-45deg); }
  body.customers .filter__button:focus {
    outline: none; }

@media screen and (min-width: 40em) {
  body.customers .customer-list__item {
    float: left;
    width: 45%;
    margin-left: 5%; }
    body.customers .customer-list__item:nth-child(2n+1) {
      margin-left: 2.5%; } }

@media screen and (min-width: 59.5em) {
  body.customers .section-title {
    position: relative;
    top: -50px;
    width: 70%;
    padding: 0;
    font-size: 32px; }
  body.customers .carousel {
    height: 550px; }
  body.customers .carousel__item {
    position: absolute;
    opacity: 0;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 550px;
    padding: 0; }
    body.customers .carousel__item .grid {
      box-sizing: border-box;
      height: 100%;
      padding-bottom: 100px; }
      body.customers .carousel__item .grid::before {
        content: '';
        display: inline-block;
        height: 100%;
        vertical-align: middle;
        margin-right: -0.25em; }
  body.customers .carousel__item--active {
    opacity: 1; }
  body.customers .carousel__item__info {
    width: 50%; }
  body.customers .carousel__item__quote p {
    line-height: 1.4; }
  body.customers .carousel-nav {
    position: relative;
    top: -100px;
    z-index: 10;
    display: block;
    height: 100px; }
  body.customers .carousel-nav .grid {
    overflow: visible; }
  body.customers .carousel-nav__item {
    width: 25%;
    float: left;
    text-align: center; }
  body.customers .carousel-nav__button {
    display: block;
    width: 90%;
    height: 62px;
    margin: auto;
    background: transparent;
    border: none; }
    body.customers .carousel-nav__button img {
      max-width: 100%;
      max-height: 100%; }
    body.customers .carousel-nav__button:focus {
      outline: none; }
  body.customers .carousel-nav__arrow {
    position: absolute;
    bottom: -65px;
    left: 112px;
    width: 40px;
    height: 40px;
    transform: rotate(45deg);
    background: white; }
  body.customers .customer-list__item {
    width: 170px;
    margin-left: 23px; }
    body.customers .customer-list__item:nth-child(5n+1) {
      margin-left: 0; }
    body.customers .customer-list__item:hover .customer-list__item__info {
      transform: translateY(0); }
  body.customers .filters {
    padding: 0; }
  body.customers .filter {
    float: left;
    display: block;
    margin-right: 1.16509%;
    width: 19.91097%;
    margin-left: 4.21521%; }
    body.customers .filter:last-child {
      margin-right: 0; }
    body.customers .filter:first-child {
      margin-left: 0%; }
  body.customers .filter__select-wrapper::after {
    right: 10px;
    top: 7px;
    font-size: 12px; }
  body.customers .filter__select {
    padding: 0.5em 0.5em;
    margin-bottom: 0;
    font-size: 12px; }
  body.customers .filter__button {
    top: 2px;
    width: 20px;
    height: 20px; }
    body.customers .filter__button::before, body.customers .filter__button::after {
      content: '';
      top: 7px;
      left: 8px;
      width: 14px; } }

body.threat-enforcement .banner-wrapper,
body.package-comparison .banner-wrapper {
  position: relative;
  height: 450px;
  width: 100%;
  margin-bottom: 2em; }
  body.threat-enforcement .banner-wrapper .banner,
  body.package-comparison .banner-wrapper .banner {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 450px;
    background-size: cover;
    background-repeat: no-repeat;
    background-color: #000000;
    background-position: right bottom; }
  body.threat-enforcement .banner-wrapper .grid,
  body.package-comparison .banner-wrapper .grid {
    position: relative;
    top: auto;
    z-index: 1;
    height: 100%; }
  body.threat-enforcement .banner-wrapper h1 span,
  body.package-comparison .banner-wrapper h1 span {
    background: transparent; }
  body.threat-enforcement .banner-wrapper h1,
  body.package-comparison .banner-wrapper h1 {
    padding-top: 1em;
    color: white;
    text-align: left;
    font-size: 35px;
    font-size: 3.5rem; }
  body.threat-enforcement .banner-wrapper .page-header,
  body.package-comparison .banner-wrapper .page-header {
    margin-bottom: 0.25em; }
  body.threat-enforcement .banner-wrapper p,
  body.package-comparison .banner-wrapper p {
    color: white;
    font-size: 18px;
    font-size: 1.8rem;
    text-align: left;
    margin-bottom: 1em; }
  body.threat-enforcement .banner-wrapper:before,
  body.package-comparison .banner-wrapper:before {
    content: " ";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.5); }

body.threat-enforcement h1,
body.package-comparison h1 {
  padding-top: 1.5em; }

body.threat-enforcement h2,
body.package-comparison h2 {
  color: #828282;
  font-weight: normal;
  font-family: tradegothic_light;
  font-size: 28px;
  font-size: 2.8rem;
  text-transform: uppercase;
  text-align: center; }
  body.threat-enforcement h2.line,
  body.package-comparison h2.line {
    background: white;
    color: #b5b5b5;
    font-size: 22px;
    font-size: 2.2rem;
    font-family: tradegothic_light;
    text-transform: uppercase;
    text-align: center;
    letter-spacing: 1pt; }
  body.threat-enforcement h2.small,
  body.package-comparison h2.small {
    font-size: 24px;
    font-size: 2.4rem; }

body.threat-enforcement .cta-container,
body.package-comparison .cta-container {
  text-align: left; }
  body.threat-enforcement .cta-container a, body.threat-enforcement .cta-container table.dashboard-table .column-editable .data-text:hover, table.dashboard-table .column-editable body.threat-enforcement .cta-container .data-text:hover,
  body.package-comparison .cta-container a,
  body.package-comparison .cta-container table.dashboard-table .column-editable .data-text:hover, table.dashboard-table .column-editable
  body.package-comparison .cta-container .data-text:hover {
    display: inline-block;
    padding: 1.5em 0em;
    letter-spacing: 0.5pt; }
    body.threat-enforcement .cta-container a:hover, body.threat-enforcement .cta-container table.dashboard-table .column-editable .data-text:hover, table.dashboard-table .column-editable body.threat-enforcement .cta-container .data-text:hover,
    body.package-comparison .cta-container a:hover,
    body.package-comparison .cta-container table.dashboard-table .column-editable .data-text:hover, table.dashboard-table .column-editable
    body.package-comparison .cta-container .data-text:hover {
      text-decoration: none; }
  body.threat-enforcement .cta-container .learn-more-activation,
  body.package-comparison .cta-container .learn-more-activation {
    color: white;
    text-transform: uppercase; }
    body.threat-enforcement .cta-container .learn-more-activation .fa-chevron-circle-right,
    body.package-comparison .cta-container .learn-more-activation .fa-chevron-circle-right {
      display: inline-block;
      margin-left: 0.25em;
      padding-left: 0.3em;
      color: #F37821;
      font-size: 16px;
      font-size: 1.6rem; }

body.threat-enforcement .what-is-umbrella,
body.package-comparison .what-is-umbrella {
  width: 100%;
  padding: 3em 0;
  margin: auto;
  text-align: center; }

body.threat-enforcement .value-list,
body.package-comparison .value-list {
  padding: 0; }
  body.threat-enforcement .value-list::after,
  body.package-comparison .value-list::after {
    clear: both;
    content: "";
    display: table; }
  body.threat-enforcement .value-list .snippet,
  body.package-comparison .value-list .snippet {
    float: left;
    display: block;
    margin-right: 3.57866%;
    width: 100%;
    margin-right: 0;
    float: right;
    margin-bottom: 2em; }
    body.threat-enforcement .value-list .snippet:last-child,
    body.package-comparison .value-list .snippet:last-child {
      margin-right: 0; }
    body.threat-enforcement .value-list .snippet p,
    body.package-comparison .value-list .snippet p {
      font-size: 17px;
      font-size: 1.7rem; }
    body.threat-enforcement .value-list .snippet .value-list-title img,
    body.package-comparison .value-list .snippet .value-list-title img {
      position: relative;
      top: 13px;
      width: 40px;
      height: 40px;
      margin-right: 0.75em; }

body.threat-enforcement .demo-trial,
body.package-comparison .demo-trial {
  padding-bottom: 5em; }
  body.threat-enforcement .demo-trial::after,
  body.package-comparison .demo-trial::after {
    clear: both;
    content: "";
    display: table; }
  body.threat-enforcement .demo-trial .snippet,
  body.package-comparison .demo-trial .snippet {
    text-align: center; }

body.threat-enforcement .cta,
body.package-comparison .cta {
  margin-right: 0; }

body.threat-enforcement .demo-trial .snippet,
body.threat-enforcement .circle-ctas .snippet,
body.package-comparison .demo-trial .snippet,
body.package-comparison .circle-ctas .snippet {
  width: 60%;
  margin: auto;
  margin-bottom: 3em; }

body.threat-enforcement .demo-trial a:hover, body.threat-enforcement .demo-trial table.dashboard-table .column-editable .data-text:hover, table.dashboard-table .column-editable body.threat-enforcement .demo-trial .data-text:hover,
body.threat-enforcement .circle-ctas a:hover,
body.threat-enforcement .circle-ctas table.dashboard-table .column-editable .data-text:hover, table.dashboard-table .column-editable
body.threat-enforcement .circle-ctas .data-text:hover,
body.package-comparison .demo-trial a:hover,
body.package-comparison .demo-trial table.dashboard-table .column-editable .data-text:hover, table.dashboard-table .column-editable
body.package-comparison .demo-trial .data-text:hover,
body.package-comparison .circle-ctas a:hover,
body.package-comparison .circle-ctas table.dashboard-table .column-editable .data-text:hover, table.dashboard-table .column-editable
body.package-comparison .circle-ctas .data-text:hover {
  text-decoration: none; }

body.threat-enforcement .demo-trial img,
body.threat-enforcement .circle-ctas img,
body.package-comparison .demo-trial img,
body.package-comparison .circle-ctas img {
  width: 91px;
  height: 91px;
  padding: 20px;
  margin-bottom: 1em;
  border: 5px solid #e7e4df;
  border-radius: 150px; }
  body.threat-enforcement .demo-trial img:hover,
  body.threat-enforcement .circle-ctas img:hover,
  body.package-comparison .demo-trial img:hover,
  body.package-comparison .circle-ctas img:hover {
    box-shadow: 0 0 25px 0 rgba(130, 130, 130, 0.5); }

body.threat-enforcement .demo-trial .snippet:hover img,
body.threat-enforcement .circle-ctas .snippet:hover img,
body.package-comparison .demo-trial .snippet:hover img,
body.package-comparison .circle-ctas .snippet:hover img {
  box-shadow: 0 0 25px 0 rgba(130, 130, 130, 0.5); }

body.threat-enforcement .demo-trial .demo-request img,
body.package-comparison .demo-trial .demo-request img {
  width: 127px;
  height: 127px;
  padding: 0; }

body.threat-enforcement .grey-background,
body.package-comparison .grey-background {
  padding: 3em 0;
  border-top: 1px solid #e7e4df;
  border-bottom: 1px solid #e7e4df;
  background: #f9f7f6; }
  body.threat-enforcement .grey-background h2,
  body.package-comparison .grey-background h2 {
    margin-top: 0;
    background: transparent; }
    body.threat-enforcement .grey-background h2:before, body.threat-enforcement .grey-background h2:after,
    body.package-comparison .grey-background h2:before,
    body.package-comparison .grey-background h2:after {
      display: none; }

body.threat-enforcement .circle-ctas,
body.package-comparison .circle-ctas {
  padding: 3em 0;
  text-align: center; }
  body.threat-enforcement .circle-ctas .snippet,
  body.package-comparison .circle-ctas .snippet {
    position: relative;
    width: 60%;
    margin: auto;
    margin-bottom: 3em; }
    body.threat-enforcement .circle-ctas .snippet p,
    body.package-comparison .circle-ctas .snippet p {
      font-size: 16px;
      font-size: 1.6rem; }
  body.threat-enforcement .circle-ctas a, body.threat-enforcement .circle-ctas table.dashboard-table .column-editable .data-text:hover, table.dashboard-table .column-editable body.threat-enforcement .circle-ctas .data-text:hover,
  body.package-comparison .circle-ctas a,
  body.package-comparison .circle-ctas table.dashboard-table .column-editable .data-text:hover, table.dashboard-table .column-editable
  body.package-comparison .circle-ctas .data-text:hover {
    margin-top: 1em;
    text-transform: uppercase;
    margin-bottom: 0;
    font-size: 14px;
    font-size: 1.4rem; }
  body.threat-enforcement .circle-ctas h3,
  body.package-comparison .circle-ctas h3 {
    font-size: 20px;
    font-size: 2rem; }
  body.threat-enforcement .circle-ctas img,
  body.package-comparison .circle-ctas img {
    width: 59px;
    height: 59px;
    padding: 30px;
    border-radius: 100%; }

body.threat-enforcement .endorsements-container,
body.package-comparison .endorsements-container {
  display: none; }

body.threat-enforcement .trending-now,
body.package-comparison .trending-now {
  margin: 3em 0; }

body.package-comparison .banner-wrapper {
  height: 150px; }
  body.package-comparison .banner-wrapper .banner {
    height: 150px;
    background-position: 25% 0; }

@media screen and (min-width: 40em) {
  body.threat-enforcement .banner-wrapper {
    height: 250px; }
    body.threat-enforcement .banner-wrapper .banner {
      height: 250px;
      background-position: right bottom; }
    body.threat-enforcement .banner-wrapper h1 {
      padding-top: 1.5em;
      font-size: 25px;
      font-size: 2.5rem; }
  body.threat-enforcement .cta-container a, body.threat-enforcement .cta-container table.dashboard-table .column-editable .data-text:hover, table.dashboard-table .column-editable body.threat-enforcement .cta-container .data-text:hover {
    padding: 0.75em 2em; } }

@media screen and (min-width: 59.5em) {
  body.threat-enforcement .banner-wrapper, body.package-comparison .banner-wrapper {
    height: 500px;
    margin-bottom: 0; }
    body.threat-enforcement .banner-wrapper .banner, body.package-comparison .banner-wrapper .banner {
      height: 500px;
      background-size: cover; }
    body.threat-enforcement .banner-wrapper h1, body.package-comparison .banner-wrapper h1 {
      font-size: 65px;
      font-size: 6.5rem; }
  body.threat-enforcement.promotion h1, body.package-comparison.promotion h1 {
    padding-top: 2em; }
  body.threat-enforcement h2.line, body.package-comparison h2.line {
    position: relative;
    display: block;
    width: 350px;
    margin: 2em auto; }
    body.threat-enforcement h2.line:before, body.threat-enforcement h2.line:after, body.package-comparison h2.line:before, body.package-comparison h2.line:after {
      content: ' ';
      position: absolute;
      top: 12px;
      left: 101%;
      width: 100px;
      height: 1px;
      border-bottom: 1px solid #e7e4df; }
    body.threat-enforcement h2.line:before, body.package-comparison h2.line:before {
      left: auto;
      right: 101%; }
  body.threat-enforcement .what-is-umbrella, body.package-comparison .what-is-umbrella {
    width: 85%; }
  body.threat-enforcement .circle-ctas, body.package-comparison .circle-ctas {
    padding: 3em 0em; }
    body.threat-enforcement .circle-ctas::after, body.package-comparison .circle-ctas::after {
      clear: both;
      content: "";
      display: table; }
    body.threat-enforcement .circle-ctas .snippet, body.package-comparison .circle-ctas .snippet {
      float: left;
      width: 22%;
      margin-left: 4%;
      margin-bottom: 0; }
      body.threat-enforcement .circle-ctas .snippet:first-child, body.package-comparison .circle-ctas .snippet:first-child {
        margin-left: 0; }
  body.threat-enforcement .demo-trial .snippet,
  body.threat-enforcement .circle-ctas .snippet, body.package-comparison .demo-trial .snippet,
  body.package-comparison .circle-ctas .snippet {
    margin-bottom: 0; }
  body.threat-enforcement .demo-trial .snippet, body.package-comparison .demo-trial .snippet {
    width: 30%; }
  body.threat-enforcement .demo-trial .cta, body.package-comparison .demo-trial .cta {
    padding-top: 1em; }
  body.threat-enforcement .value-list .snippet, body.package-comparison .value-list .snippet {
    float: left;
    display: block;
    margin-right: 1.16509%;
    width: 45.20224%; }
    body.threat-enforcement .value-list .snippet:last-child, body.package-comparison .value-list .snippet:last-child {
      margin-right: 0; }
    body.threat-enforcement .value-list .snippet:nth-child(2n+2), body.package-comparison .value-list .snippet:nth-child(2n+2) {
      margin-right: 0;
      float: right; }
  body.threat-enforcement p.msp, body.package-comparison p.msp {
    color: #828282;
    margin-bottom: 3em; }
  body.threat-enforcement .endorsements-container, body.package-comparison .endorsements-container {
    display: block; }
  body.package-comparison .banner-wrapper {
    height: 260px;
    margin-bottom: 2em; }
    body.package-comparison .banner-wrapper .banner {
      height: 260px; } }

body.support .grid {
  overflow: visible; }

body.support .image-banner {
  margin-bottom: 0; }

body.support .page-header {
  text-align: center; }

body.support h2.subhead {
  text-align: center;
  font-size: 30px;
  font-size: 3rem;
  color: white; }

body.support .popular-topics {
  text-align: center;
  font-size: 16px;
  font-size: 1.6rem;
  padding-bottom: 2em;
  margin-bottom: 3em; }
  body.support .popular-topics a, body.support .popular-topics table.dashboard-table .column-editable .data-text:hover, table.dashboard-table .column-editable body.support .popular-topics .data-text:hover {
    color: white; }

body.support .search-box__search-container {
  display: block;
  position: relative;
  height: 70px;
  width: 100%;
  margin: 1em auto;
  padding: 0;
  border: 1px solid #828282;
  border-radius: 5px;
  background: #fff;
  text-align: left; }

body.support .search-box__input {
  display: block;
  box-sizing: border-box;
  width: 100%;
  line-height: 2.5em;
  font-size: 26px;
  font-size: 2.6rem;
  padding: 0 1em;
  border: 0;
  background-color: transparent; }

body.support #search_autocomplete {
  left: 0 !important;
  right: 0 !important;
  width: 100%; }

body.support .grey-background {
  padding: 3em 0;
  border-top: 1px solid #e7e4df;
  border-bottom: 1px solid #e7e4df;
  background: #d9d9dd; }
  body.support .grey-background h2 {
    margin-top: 0;
    background: transparent; }
    body.support .grey-background h2:before, body.support .grey-background h2:after {
      display: none; }
  body.support .grey-background p {
    font-size: 18px;
    font-size: 1.8rem; }

body.support .community-box,
body.support .support-package-box,
body.support .docs-box {
  width: 80%;
  background: white;
  text-align: center;
  margin: 1em auto; }
  body.support .community-box img,
  body.support .support-package-box img,
  body.support .docs-box img {
    width: 64px;
    height: 51px;
    margin: 0.5em 0 0; }
  body.support .community-box p,
  body.support .support-package-box p,
  body.support .docs-box p {
    font-size: 15px;
    font-size: 1.5rem;
    width: 80%;
    margin: 0 auto; }
  body.support .community-box h2,
  body.support .support-package-box h2,
  body.support .docs-box h2 {
    font-size: 18px;
    font-size: 1.8rem; }
  body.support .community-box .cta,
  body.support .support-package-box .cta,
  body.support .docs-box .cta {
    margin-right: 0;
    margin-top: 0.5em; }
    body.support .community-box .cta a, body.support .community-box .cta table.dashboard-table .column-editable .data-text:hover, table.dashboard-table .column-editable body.support .community-box .cta .data-text:hover,
    body.support .support-package-box .cta a,
    body.support .support-package-box .cta table.dashboard-table .column-editable .data-text:hover, table.dashboard-table .column-editable
    body.support .support-package-box .cta .data-text:hover,
    body.support .docs-box .cta a,
    body.support .docs-box .cta table.dashboard-table .column-editable .data-text:hover, table.dashboard-table .column-editable
    body.support .docs-box .cta .data-text:hover {
      border-radius: 20px;
      text-transform: uppercase; }

body.support .box-wrapper {
  padding: 1em 2em 0;
  border: 1px solid #e7e4df;
  height: 300px; }

body.support .community-box h2 {
  color: #F37821; }

body.support .community-box .cta a, body.support .community-box .cta table.dashboard-table .column-editable .data-text:hover, table.dashboard-table .column-editable body.support .community-box .cta .data-text:hover {
  color: #F37821;
  border: 1px solid #F37821; }

body.support .support-package-box h2 {
  color: #7e9adc; }

body.support .support-package-box .cta a, body.support .support-package-box .cta table.dashboard-table .column-editable .data-text:hover, table.dashboard-table .column-editable body.support .support-package-box .cta .data-text:hover {
  color: #7e9adc;
  border: 1px solid #7e9adc; }

body.support .docs-box h2 {
  color: #5E81D3; }

body.support .docs-box .cta a, body.support .docs-box .cta table.dashboard-table .column-editable .data-text:hover, table.dashboard-table .column-editable body.support .docs-box .cta .data-text:hover {
  color: #5E81D3;
  border: 1px solid #5E81D3; }

@media screen and (min-width: 59.5em) {
  body.support .image-banner .grid {
    top: -340px; }
  body.support .community-box,
  body.support .support-package-box,
  body.support .docs-box {
    float: left;
    display: block;
    margin-right: 1.16509%;
    width: 32.55661%; }
    body.support .community-box:last-child,
    body.support .support-package-box:last-child,
    body.support .docs-box:last-child {
      margin-right: 0; }
  body.support .docs-box {
    margin-right: 0;
    float: right; }
  body.support form button[type="submit"] {
    width: 7%; } }

body.single-enterprise-product.threat-intelligence .grid {
  padding: 0 1em; }

body.single-enterprise-product.threat-intelligence ul {
  padding: 0;
  margin: 0;
  list-style: none; }

body.single-enterprise-product.threat-intelligence .banner-wrapper {
  position: relative;
  height: 450px;
  width: 100%;
  margin-bottom: 2em; }
  body.single-enterprise-product.threat-intelligence .banner-wrapper .banner {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 450px;
    background-size: cover;
    background-repeat: no-repeat;
    background-color: #000000;
    background-position: right bottom; }
  body.single-enterprise-product.threat-intelligence .banner-wrapper .grid {
    position: relative;
    top: auto;
    z-index: 1;
    height: 100%; }
  body.single-enterprise-product.threat-intelligence .banner-wrapper h1 span {
    background: transparent; }
  body.single-enterprise-product.threat-intelligence .banner-wrapper h1 {
    padding-top: 1.5em;
    color: white;
    text-align: left;
    font-size: 45px;
    font-size: 4.5rem; }
  body.single-enterprise-product.threat-intelligence .banner-wrapper .page-header {
    margin-bottom: 0.25em; }
  body.single-enterprise-product.threat-intelligence .banner-wrapper p {
    color: white;
    font-size: 18px;
    font-size: 1.8rem;
    text-align: left;
    margin-bottom: 1em; }
  body.single-enterprise-product.threat-intelligence .banner-wrapper:before {
    content: " ";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.5); }

body.single-enterprise-product.threat-intelligence .cta-container {
  text-align: left; }
  body.single-enterprise-product.threat-intelligence .cta-container a, body.single-enterprise-product.threat-intelligence .cta-container table.dashboard-table .column-editable .data-text:hover, table.dashboard-table .column-editable body.single-enterprise-product.threat-intelligence .cta-container .data-text:hover {
    display: inline-block;
    padding: 1.5em 0em;
    letter-spacing: 0.5pt; }
    body.single-enterprise-product.threat-intelligence .cta-container a:hover, body.single-enterprise-product.threat-intelligence .cta-container table.dashboard-table .column-editable .data-text:hover, table.dashboard-table .column-editable body.single-enterprise-product.threat-intelligence .cta-container .data-text:hover {
      text-decoration: none; }
  body.single-enterprise-product.threat-intelligence .cta-container .learn-more-activation {
    color: white;
    text-transform: uppercase; }
    body.single-enterprise-product.threat-intelligence .cta-container .learn-more-activation .chevron-circle-right {
      background-image: url("https://s3-us-west-1.amazonaws.com/webteam-cdn/opendns-www/img/arrow.png");
      background-repeat: no-repeat;
      background-size: 15px 15px;
      height: 15px;
      width: 16px;
      display: inline-block;
      margin-left: 0.25em; }

body.single-enterprise-product.threat-intelligence h2 {
  padding-bottom: 1em;
  color: #828282;
  font-size: 28px;
  font-size: 2.8rem;
  text-transform: uppercase;
  text-align: center; }

body.single-enterprise-product.threat-intelligence .investigate-subnav {
  display: none; }

body.single-enterprise-product.threat-intelligence .benefit-title,
body.single-enterprise-product.threat-intelligence .feature-title,
body.single-enterprise-product.threat-intelligence .differentiator-title {
  text-align: center;
  margin-bottom: 0.5em;
  border-bottom: 1px solid #dddad4; }

body.single-enterprise-product.threat-intelligence .use-case-title {
  border-bottom: none;
  margin-bottom: 0;
  margin-top: 0.5em; }

body.single-enterprise-product.threat-intelligence .video-section-wrapper {
  margin-top: 0;
  margin-bottom: 4em; }
  body.single-enterprise-product.threat-intelligence .video-section-wrapper .video-section-info {
    padding-top: 2em;
    text-align: center; }

body.single-enterprise-product.threat-intelligence #benefits,
body.single-enterprise-product.threat-intelligence #features,
body.single-enterprise-product.threat-intelligence #differentiators {
  margin: 4em 0 2em; }
  body.single-enterprise-product.threat-intelligence #benefits > ul > li,
  body.single-enterprise-product.threat-intelligence #features > ul > li,
  body.single-enterprise-product.threat-intelligence #differentiators > ul > li {
    max-width: 600px;
    margin: 0 auto 2em auto;
    text-align: center; }
  body.single-enterprise-product.threat-intelligence #benefits img,
  body.single-enterprise-product.threat-intelligence #features img,
  body.single-enterprise-product.threat-intelligence #differentiators img {
    width: 100px;
    height: 75px;
    margin: auto;
    margin-bottom: 1em; }
  body.single-enterprise-product.threat-intelligence #benefits p,
  body.single-enterprise-product.threat-intelligence #features p,
  body.single-enterprise-product.threat-intelligence #differentiators p {
    font-size: 17px;
    font-size: 1.7rem;
    text-align: left; }

body.single-enterprise-product.threat-intelligence #benefits img {
  width: 88px;
  height: 91px; }

body.single-enterprise-product.threat-intelligence #capabilities {
  margin: 4em 0; }
  body.single-enterprise-product.threat-intelligence #capabilities::after {
    clear: both;
    content: "";
    display: table; }
  body.single-enterprise-product.threat-intelligence #capabilities li {
    position: relative;
    padding-bottom: 2em; }
    body.single-enterprise-product.threat-intelligence #capabilities li:before {
      content: '\F111';
      position: absolute;
      top: 4px;
      left: 0;
      font-family: fontawesome;
      color: #e7e4df;
      font-size: 14px;
      font-size: 1.4rem;
      font-smoothing: antialiased;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale; }
    body.single-enterprise-product.threat-intelligence #capabilities li p {
      margin-left: 2em;
      font-size: 15px;
      font-size: 1.5rem; }

body.single-enterprise-product.threat-intelligence #differentiators .image {
  text-align: center; }

body.single-enterprise-product.threat-intelligence #differentiators > ul > li {
  text-align: left; }
  body.single-enterprise-product.threat-intelligence #differentiators > ul > li li {
    position: relative;
    padding: 0 0 0 2em; }
    body.single-enterprise-product.threat-intelligence #differentiators > ul > li li:before {
      content: '\F111';
      position: absolute;
      top: 4px;
      left: 0;
      font-family: fontawesome;
      color: #e7e4df;
      font-size: 14px;
      font-size: 1.4rem;
      font-smoothing: antialiased;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale; }
  body.single-enterprise-product.threat-intelligence #differentiators > ul > li img {
    width: 130px;
    height: 120px; }

body.single-enterprise-product.threat-intelligence .endorsement {
  margin-bottom: 4em;
  text-align: center; }
  body.single-enterprise-product.threat-intelligence .endorsement img {
    max-height: 50px;
    margin-bottom: 0.5em; }
  body.single-enterprise-product.threat-intelligence .endorsement .company {
    padding: 0;
    color: #46494e;
    font-weight: bold;
    font-family: tradegothic;
    font-size: 18px;
    font-size: 1.8rem; }
  body.single-enterprise-product.threat-intelligence .endorsement blockquote p {
    position: relative;
    top: -1.5em;
    padding: 0; }
  body.single-enterprise-product.threat-intelligence .endorsement blockquote p:before {
    content: '\201C';
    position: relative;
    top: 37px;
    left: -25px;
    color: #b4a48e;
    font-size: 70px;
    font-size: 7rem;
    line-height: 1; }

body.single-enterprise-product.threat-intelligence #research-team {
  padding-top: 2em;
  margin-top: 2em; }
  body.single-enterprise-product.threat-intelligence #research-team .post {
    height: 265px;
    margin: 0 0 40px 40px;
    padding-bottom: 2em;
    border-left: 1px solid #d6d4d1;
    list-style: none; }
    body.single-enterprise-product.threat-intelligence #research-team .post .left {
      float: left;
      display: block;
      margin-right: 4.82916%;
      width: 12.64237%;
      background: white;
      margin-left: -25px; }
      body.single-enterprise-product.threat-intelligence #research-team .post .left:last-child {
        margin-right: 0; }
      body.single-enterprise-product.threat-intelligence #research-team .post .left .post-date {
        margin-bottom: 1em;
        text-transform: uppercase;
        color: #dddad4;
        font-size: 22px;
        font-size: 2.2rem;
        text-align: center;
        letter-spacing: 0.08em;
        line-height: 1.2; }
    body.single-enterprise-product.threat-intelligence #research-team .post .right {
      float: left;
      display: block;
      margin-right: 4.82916%;
      width: 82.52847%;
      margin-right: 0;
      float: right; }
      body.single-enterprise-product.threat-intelligence #research-team .post .right:last-child {
        margin-right: 0; }
      body.single-enterprise-product.threat-intelligence #research-team .post .right .author {
        float: left;
        display: block;
        margin-right: 3.57866%;
        width: 100%; }
        body.single-enterprise-product.threat-intelligence #research-team .post .right .author:last-child {
          margin-right: 0; }
      body.single-enterprise-product.threat-intelligence #research-team .post .right .user-photo {
        float: left;
        width: 60px;
        height: 60px;
        margin: auto;
        border-radius: 100%;
        overflow: hidden;
        border: 1px solid #e7e4df; }
        body.single-enterprise-product.threat-intelligence #research-team .post .right .user-photo img {
          width: 100%; }
      body.single-enterprise-product.threat-intelligence #research-team .post .right .user-details {
        float: left;
        padding: 0.5em 1em; }
        body.single-enterprise-product.threat-intelligence #research-team .post .right .user-details .name {
          padding: 0;
          font-size: 16px;
          font-size: 1.6rem; }
          body.single-enterprise-product.threat-intelligence #research-team .post .right .user-details .name a, body.single-enterprise-product.threat-intelligence #research-team .post .right .user-details .name table.dashboard-table .column-editable .data-text:hover, table.dashboard-table .column-editable body.single-enterprise-product.threat-intelligence #research-team .post .right .user-details .name .data-text:hover {
            color: #f5934d; }
            body.single-enterprise-product.threat-intelligence #research-team .post .right .user-details .name a:hover, body.single-enterprise-product.threat-intelligence #research-team .post .right .user-details .name table.dashboard-table .column-editable .data-text:hover, table.dashboard-table .column-editable body.single-enterprise-product.threat-intelligence #research-team .post .right .user-details .name .data-text:hover {
              color: #F37821; }
        body.single-enterprise-product.threat-intelligence #research-team .post .right .user-details .fa-rss {
          padding-left: 0.5em;
          font-size: 14px;
          font-size: 1.4rem; }
        body.single-enterprise-product.threat-intelligence #research-team .post .right .user-details .job-title {
          color: #828282;
          font-size: 14px;
          font-size: 1.4rem; }
      body.single-enterprise-product.threat-intelligence #research-team .post .right .title {
        font-size: 22px;
        font-size: 2.2rem;
        line-height: 1.2;
        letter-spacing: 0.08em;
        font-weight: bold;
        padding-bottom: 0.5em; }
        body.single-enterprise-product.threat-intelligence #research-team .post .right .title a, body.single-enterprise-product.threat-intelligence #research-team .post .right .title table.dashboard-table .column-editable .data-text:hover, table.dashboard-table .column-editable body.single-enterprise-product.threat-intelligence #research-team .post .right .title .data-text:hover {
          color: #292934; }
      body.single-enterprise-product.threat-intelligence #research-team .post .right .excerpt p {
        font-size: 16px;
        font-size: 1.6rem;
        line-height: 1.6; }

body.single-enterprise-product.threat-intelligence .promotional-banner .grid {
  padding: 0 0.5em; }

body.single-enterprise-product.threat-intelligence footer p {
  font-size: 13px;
  font-size: 1.3rem; }

body.msp-partners .features,
body.single-enterprise-product.threat-intelligence #use-cases {
  padding: 2.5em 0;
  margin-bottom: 4em; }
  body.msp-partners .features::after,
  body.single-enterprise-product.threat-intelligence #use-cases::after {
    clear: both;
    content: "";
    display: table; }
  body.msp-partners .features .features__category,
  body.msp-partners .features .use-case-category,
  body.single-enterprise-product.threat-intelligence #use-cases .features__category,
  body.single-enterprise-product.threat-intelligence #use-cases .use-case-category {
    position: relative;
    padding: 0;
    margin: 0;
    background: #f8f7f5; }
    body.msp-partners .features .features__category:before,
    body.msp-partners .features .use-case-category:before,
    body.single-enterprise-product.threat-intelligence #use-cases .features__category:before,
    body.single-enterprise-product.threat-intelligence #use-cases .use-case-category:before {
      content: ' ';
      position: absolute;
      top: 0px;
      left: 0px;
      display: block;
      width: 14px;
      height: 49px;
      z-index: 0; }
    body.msp-partners .features .features__category:after,
    body.msp-partners .features .use-case-category:after,
    body.single-enterprise-product.threat-intelligence #use-cases .features__category:after,
    body.single-enterprise-product.threat-intelligence #use-cases .use-case-category:after {
      content: ' ';
      position: absolute;
      top: 0px;
      right: 0px;
      display: block;
      width: 14px;
      height: 49px;
      z-index: 0; }
    body.msp-partners .features .features__category.speed-up-investigations:before, body.msp-partners .features .features__category.speed-up-investigations:after, body.msp-partners .features .features__category.speed-up-investigations:hover, body.msp-partners .features .features__category.speed-up-investigations.active,
    body.msp-partners .features .use-case-category.speed-up-investigations:before,
    body.msp-partners .features .use-case-category.speed-up-investigations:after,
    body.msp-partners .features .use-case-category.speed-up-investigations:hover,
    body.msp-partners .features .use-case-category.speed-up-investigations.active,
    body.single-enterprise-product.threat-intelligence #use-cases .features__category.speed-up-investigations:before,
    body.single-enterprise-product.threat-intelligence #use-cases .features__category.speed-up-investigations:after,
    body.single-enterprise-product.threat-intelligence #use-cases .features__category.speed-up-investigations:hover,
    body.single-enterprise-product.threat-intelligence #use-cases .features__category.speed-up-investigations.active,
    body.single-enterprise-product.threat-intelligence #use-cases .use-case-category.speed-up-investigations:before,
    body.single-enterprise-product.threat-intelligence #use-cases .use-case-category.speed-up-investigations:after,
    body.single-enterprise-product.threat-intelligence #use-cases .use-case-category.speed-up-investigations:hover,
    body.single-enterprise-product.threat-intelligence #use-cases .use-case-category.speed-up-investigations.active {
      background: #7e9adc; }
    body.msp-partners .features .features__category.stay-ahead-of-attacks:before, body.msp-partners .features .features__category.stay-ahead-of-attacks:after, body.msp-partners .features .features__category.stay-ahead-of-attacks:hover, body.msp-partners .features .features__category.stay-ahead-of-attacks.active,
    body.msp-partners .features .use-case-category.stay-ahead-of-attacks:before,
    body.msp-partners .features .use-case-category.stay-ahead-of-attacks:after,
    body.msp-partners .features .use-case-category.stay-ahead-of-attacks:hover,
    body.msp-partners .features .use-case-category.stay-ahead-of-attacks.active,
    body.single-enterprise-product.threat-intelligence #use-cases .features__category.stay-ahead-of-attacks:before,
    body.single-enterprise-product.threat-intelligence #use-cases .features__category.stay-ahead-of-attacks:after,
    body.single-enterprise-product.threat-intelligence #use-cases .features__category.stay-ahead-of-attacks:hover,
    body.single-enterprise-product.threat-intelligence #use-cases .features__category.stay-ahead-of-attacks.active,
    body.single-enterprise-product.threat-intelligence #use-cases .use-case-category.stay-ahead-of-attacks:before,
    body.single-enterprise-product.threat-intelligence #use-cases .use-case-category.stay-ahead-of-attacks:after,
    body.single-enterprise-product.threat-intelligence #use-cases .use-case-category.stay-ahead-of-attacks:hover,
    body.single-enterprise-product.threat-intelligence #use-cases .use-case-category.stay-ahead-of-attacks.active {
      background: #9eb3e5; }
    body.msp-partners .features .features__category.prioritize-incident-response:before, body.msp-partners .features .features__category.prioritize-incident-response:after, body.msp-partners .features .features__category.prioritize-incident-response:hover, body.msp-partners .features .features__category.prioritize-incident-response.active,
    body.msp-partners .features .use-case-category.prioritize-incident-response:before,
    body.msp-partners .features .use-case-category.prioritize-incident-response:after,
    body.msp-partners .features .use-case-category.prioritize-incident-response:hover,
    body.msp-partners .features .use-case-category.prioritize-incident-response.active,
    body.single-enterprise-product.threat-intelligence #use-cases .features__category.prioritize-incident-response:before,
    body.single-enterprise-product.threat-intelligence #use-cases .features__category.prioritize-incident-response:after,
    body.single-enterprise-product.threat-intelligence #use-cases .features__category.prioritize-incident-response:hover,
    body.single-enterprise-product.threat-intelligence #use-cases .features__category.prioritize-incident-response.active,
    body.single-enterprise-product.threat-intelligence #use-cases .use-case-category.prioritize-incident-response:before,
    body.single-enterprise-product.threat-intelligence #use-cases .use-case-category.prioritize-incident-response:after,
    body.single-enterprise-product.threat-intelligence #use-cases .use-case-category.prioritize-incident-response:hover,
    body.single-enterprise-product.threat-intelligence #use-cases .use-case-category.prioritize-incident-response.active {
      background: #bfcded; }
    body.msp-partners .features .features__category.enrich-systems-with-real-time-data:before, body.msp-partners .features .features__category.enrich-systems-with-real-time-data:after, body.msp-partners .features .features__category.enrich-systems-with-real-time-data:hover, body.msp-partners .features .features__category.enrich-systems-with-real-time-data.active,
    body.msp-partners .features .use-case-category.enrich-systems-with-real-time-data:before,
    body.msp-partners .features .use-case-category.enrich-systems-with-real-time-data:after,
    body.msp-partners .features .use-case-category.enrich-systems-with-real-time-data:hover,
    body.msp-partners .features .use-case-category.enrich-systems-with-real-time-data.active,
    body.single-enterprise-product.threat-intelligence #use-cases .features__category.enrich-systems-with-real-time-data:before,
    body.single-enterprise-product.threat-intelligence #use-cases .features__category.enrich-systems-with-real-time-data:after,
    body.single-enterprise-product.threat-intelligence #use-cases .features__category.enrich-systems-with-real-time-data:hover,
    body.single-enterprise-product.threat-intelligence #use-cases .features__category.enrich-systems-with-real-time-data.active,
    body.single-enterprise-product.threat-intelligence #use-cases .use-case-category.enrich-systems-with-real-time-data:before,
    body.single-enterprise-product.threat-intelligence #use-cases .use-case-category.enrich-systems-with-real-time-data:after,
    body.single-enterprise-product.threat-intelligence #use-cases .use-case-category.enrich-systems-with-real-time-data:hover,
    body.single-enterprise-product.threat-intelligence #use-cases .use-case-category.enrich-systems-with-real-time-data.active {
      background: #dfe6f6; }
  body.msp-partners .features .features__category:nth-of-type(1):before, body.msp-partners .features .features__category:nth-of-type(1):after, body.msp-partners .features .features__category:nth-of-type(1):hover, body.msp-partners .features .features__category:nth-of-type(1).active,
  body.single-enterprise-product.threat-intelligence #use-cases .features__category:nth-of-type(1):before,
  body.single-enterprise-product.threat-intelligence #use-cases .features__category:nth-of-type(1):after,
  body.single-enterprise-product.threat-intelligence #use-cases .features__category:nth-of-type(1):hover,
  body.single-enterprise-product.threat-intelligence #use-cases .features__category:nth-of-type(1).active {
    background: #8379b4; }
  body.msp-partners .features .features__category:nth-of-type(2):before, body.msp-partners .features .features__category:nth-of-type(2):after, body.msp-partners .features .features__category:nth-of-type(2):hover, body.msp-partners .features .features__category:nth-of-type(2).active,
  body.single-enterprise-product.threat-intelligence #use-cases .features__category:nth-of-type(2):before,
  body.single-enterprise-product.threat-intelligence #use-cases .features__category:nth-of-type(2):after,
  body.single-enterprise-product.threat-intelligence #use-cases .features__category:nth-of-type(2):hover,
  body.single-enterprise-product.threat-intelligence #use-cases .features__category:nth-of-type(2).active {
    background: #8c83ba; }
  body.msp-partners .features .features__category:nth-of-type(3):before, body.msp-partners .features .features__category:nth-of-type(3):after, body.msp-partners .features .features__category:nth-of-type(3):hover, body.msp-partners .features .features__category:nth-of-type(3).active,
  body.single-enterprise-product.threat-intelligence #use-cases .features__category:nth-of-type(3):before,
  body.single-enterprise-product.threat-intelligence #use-cases .features__category:nth-of-type(3):after,
  body.single-enterprise-product.threat-intelligence #use-cases .features__category:nth-of-type(3):hover,
  body.single-enterprise-product.threat-intelligence #use-cases .features__category:nth-of-type(3).active {
    background: #968ec0; }
  body.msp-partners .features .features__category:nth-of-type(4):before, body.msp-partners .features .features__category:nth-of-type(4):after, body.msp-partners .features .features__category:nth-of-type(4):hover, body.msp-partners .features .features__category:nth-of-type(4).active,
  body.single-enterprise-product.threat-intelligence #use-cases .features__category:nth-of-type(4):before,
  body.single-enterprise-product.threat-intelligence #use-cases .features__category:nth-of-type(4):after,
  body.single-enterprise-product.threat-intelligence #use-cases .features__category:nth-of-type(4):hover,
  body.single-enterprise-product.threat-intelligence #use-cases .features__category:nth-of-type(4).active {
    background: #a098c6; }
  body.msp-partners .features .features__category:nth-of-type(5):before, body.msp-partners .features .features__category:nth-of-type(5):after, body.msp-partners .features .features__category:nth-of-type(5):hover, body.msp-partners .features .features__category:nth-of-type(5).active,
  body.single-enterprise-product.threat-intelligence #use-cases .features__category:nth-of-type(5):before,
  body.single-enterprise-product.threat-intelligence #use-cases .features__category:nth-of-type(5):after,
  body.single-enterprise-product.threat-intelligence #use-cases .features__category:nth-of-type(5):hover,
  body.single-enterprise-product.threat-intelligence #use-cases .features__category:nth-of-type(5).active {
    background: #a9a2cb; }
  body.msp-partners .features .features__category:nth-of-type(6):before, body.msp-partners .features .features__category:nth-of-type(6):after, body.msp-partners .features .features__category:nth-of-type(6):hover, body.msp-partners .features .features__category:nth-of-type(6).active,
  body.single-enterprise-product.threat-intelligence #use-cases .features__category:nth-of-type(6):before,
  body.single-enterprise-product.threat-intelligence #use-cases .features__category:nth-of-type(6):after,
  body.single-enterprise-product.threat-intelligence #use-cases .features__category:nth-of-type(6):hover,
  body.single-enterprise-product.threat-intelligence #use-cases .features__category:nth-of-type(6).active {
    background: #b3add1; }
  body.msp-partners .features .features__category:nth-of-type(7):before, body.msp-partners .features .features__category:nth-of-type(7):after, body.msp-partners .features .features__category:nth-of-type(7):hover, body.msp-partners .features .features__category:nth-of-type(7).active,
  body.single-enterprise-product.threat-intelligence #use-cases .features__category:nth-of-type(7):before,
  body.single-enterprise-product.threat-intelligence #use-cases .features__category:nth-of-type(7):after,
  body.single-enterprise-product.threat-intelligence #use-cases .features__category:nth-of-type(7):hover,
  body.single-enterprise-product.threat-intelligence #use-cases .features__category:nth-of-type(7).active {
    background: #bcb7d7; }
  body.msp-partners .features .features__category:nth-of-type(8):before, body.msp-partners .features .features__category:nth-of-type(8):after, body.msp-partners .features .features__category:nth-of-type(8):hover, body.msp-partners .features .features__category:nth-of-type(8).active,
  body.single-enterprise-product.threat-intelligence #use-cases .features__category:nth-of-type(8):before,
  body.single-enterprise-product.threat-intelligence #use-cases .features__category:nth-of-type(8):after,
  body.single-enterprise-product.threat-intelligence #use-cases .features__category:nth-of-type(8):hover,
  body.single-enterprise-product.threat-intelligence #use-cases .features__category:nth-of-type(8).active {
    background: #c6c1dd; }
  body.msp-partners .features .features__category:nth-of-type(9):before, body.msp-partners .features .features__category:nth-of-type(9):after, body.msp-partners .features .features__category:nth-of-type(9):hover, body.msp-partners .features .features__category:nth-of-type(9).active,
  body.single-enterprise-product.threat-intelligence #use-cases .features__category:nth-of-type(9):before,
  body.single-enterprise-product.threat-intelligence #use-cases .features__category:nth-of-type(9):after,
  body.single-enterprise-product.threat-intelligence #use-cases .features__category:nth-of-type(9):hover,
  body.single-enterprise-product.threat-intelligence #use-cases .features__category:nth-of-type(9).active {
    background: #cfcce2; }
  body.msp-partners .features .active .features__category__title,
  body.msp-partners .features .active .category-title,
  body.single-enterprise-product.threat-intelligence #use-cases .active .features__category__title,
  body.single-enterprise-product.threat-intelligence #use-cases .active .category-title {
    border-bottom: 0; }
    body.msp-partners .features .active .features__category__title:after,
    body.msp-partners .features .active .category-title:after,
    body.single-enterprise-product.threat-intelligence #use-cases .active .features__category__title:after,
    body.single-enterprise-product.threat-intelligence #use-cases .active .category-title:after {
      display: none; }
  body.msp-partners .features .features__category__title,
  body.msp-partners .features .category-title,
  body.single-enterprise-product.threat-intelligence #use-cases .features__category__title,
  body.single-enterprise-product.threat-intelligence #use-cases .category-title {
    padding: 1em 1.5em;
    border-bottom: 1px solid #e7e4df;
    cursor: pointer;
    font-size: 16px;
    font-size: 1.6rem; }
    body.msp-partners .features .features__category__title:before,
    body.msp-partners .features .category-title:before,
    body.single-enterprise-product.threat-intelligence #use-cases .features__category__title:before,
    body.single-enterprise-product.threat-intelligence #use-cases .category-title:before {
      content: ' ';
      position: absolute;
      top: 22px;
      right: 29px;
      display: block;
      width: 14px;
      height: 2px;
      background: #46494e; }
    body.msp-partners .features .features__category__title:after,
    body.msp-partners .features .category-title:after,
    body.single-enterprise-product.threat-intelligence #use-cases .features__category__title:after,
    body.single-enterprise-product.threat-intelligence #use-cases .category-title:after {
      content: ' ';
      position: absolute;
      top: 17px;
      right: 35px;
      display: block;
      width: 2px;
      height: 14px;
      background: #46494e; }
  body.msp-partners .features li,
  body.single-enterprise-product.threat-intelligence #use-cases li {
    display: none;
    margin-bottom: 3em;
    background-color: white; }
    body.msp-partners .features li .inner-box,
    body.single-enterprise-product.threat-intelligence #use-cases li .inner-box {
      position: relative;
      height: 350px;
      padding: 1.5em;
      background: white;
      border-left: 1px solid #e7e4df;
      border-right: 1px solid #e7e4df;
      border-bottom: 1px solid #e7e4df;
      z-index: 10; }
    body.msp-partners .features li .video-iframe,
    body.single-enterprise-product.threat-intelligence #use-cases li .video-iframe {
      position: relative;
      height: 150px;
      margin: 0 1em 0 0;
      border: 1px solid #e7e4df;
      z-index: 0; }
      body.msp-partners .features li .video-iframe .video-section,
      body.msp-partners .features li .video-iframe .video-section-video,
      body.msp-partners .features li .video-iframe .video-section-overlay,
      body.msp-partners .features li .video-iframe .video-section-overlay:after,
      body.msp-partners .features li .video-iframe iframe,
      body.single-enterprise-product.threat-intelligence #use-cases li .video-iframe .video-section,
      body.single-enterprise-product.threat-intelligence #use-cases li .video-iframe .video-section-video,
      body.single-enterprise-product.threat-intelligence #use-cases li .video-iframe .video-section-overlay,
      body.single-enterprise-product.threat-intelligence #use-cases li .video-iframe .video-section-overlay:after,
      body.single-enterprise-product.threat-intelligence #use-cases li .video-iframe iframe {
        height: 152px; }
      body.msp-partners .features li .video-iframe h3,
      body.single-enterprise-product.threat-intelligence #use-cases li .video-iframe h3 {
        display: none; }
    body.msp-partners .features li iframe,
    body.single-enterprise-product.threat-intelligence #use-cases li iframe {
      width: 100%; }
    body.msp-partners .features li .investigate-video-link,
    body.single-enterprise-product.threat-intelligence #use-cases li .investigate-video-link {
      position: absolute;
      width: 100%;
      height: 150px;
      cursor: pointer;
      z-index: 1; }
      body.msp-partners .features li .investigate-video-link:after,
      body.single-enterprise-product.threat-intelligence #use-cases li .investigate-video-link:after {
        content: ' ';
        position: absolute;
        top: 0;
        left: 0;
        display: block;
        width: 100%;
        height: 100%;
        background: rgba(67, 67, 86, 0.4); }
      body.msp-partners .features li .investigate-video-link .play-button,
      body.single-enterprise-product.threat-intelligence #use-cases li .investigate-video-link .play-button {
        position: relative;
        top: 20px;
        width: 100px;
        height: 100px;
        margin: auto;
        z-index: 1;
        box-sizing: border-box;
        border-radius: 100px;
        border: 8px solid white;
        transform: scale(0.5, 0.5); }
        body.msp-partners .features li .investigate-video-link .play-button:after,
        body.single-enterprise-product.threat-intelligence #use-cases li .investigate-video-link .play-button:after {
          content: ' ';
          position: absolute;
          top: 17px;
          left: 26px;
          width: 0;
          height: 0;
          border-style: solid;
          border-width: 25px 0 25px 43.3px;
          border-color: transparent transparent transparent #ffffff; }
    body.msp-partners .features li .use-case-info,
    body.single-enterprise-product.threat-intelligence #use-cases li .use-case-info {
      position: relative; }

body.msp-partners .features li .inner-box {
  height: auto; }

@media screen and (min-width: 40em) {
  body.single-enterprise-product.threat-intelligence .banner-wrapper h1 {
    padding-top: 1.5em;
    font-size: 45px;
    font-size: 4.5rem; }
  body.single-enterprise-product.threat-intelligence .cta-container a, body.single-enterprise-product.threat-intelligence .cta-container table.dashboard-table .column-editable .data-text:hover, table.dashboard-table .column-editable body.single-enterprise-product.threat-intelligence .cta-container .data-text:hover {
    padding: 0.75em 2em; }
  body.single-enterprise-product.threat-intelligence #research-team .team li {
    float: left;
    width: 47%;
    margin: 0 3% 1.5em 0; }
  body.single-enterprise-product.threat-intelligence #use-cases .use-case-category:before {
    height: 67px; }
  body.single-enterprise-product.threat-intelligence #use-cases .use-case-category:after {
    height: 67px; }
  body.single-enterprise-product.threat-intelligence #use-cases .category-title {
    font-size: 22px;
    font-size: 2.2rem; }
    body.single-enterprise-product.threat-intelligence #use-cases .category-title:before {
      top: 33px; }
    body.single-enterprise-product.threat-intelligence #use-cases .category-title:after {
      top: 27px; }
  body.single-enterprise-product.threat-intelligence #use-cases .use-case-title {
    margin-top: 0; }
  body.single-enterprise-product.threat-intelligence #use-cases li .inner-box {
    height: 150px; }
  body.single-enterprise-product.threat-intelligence #use-cases .video-iframe {
    float: left;
    width: 30%; }
  body.single-enterprise-product.threat-intelligence #use-cases .use-case-info {
    float: left;
    width: 65%; } }

@media screen and (min-width: 59.5em) {
  body.single-enterprise-product.threat-intelligence .grid {
    padding: 0; }
  body.single-enterprise-product.threat-intelligence .banner-wrapper {
    height: 500px;
    margin-bottom: 0; }
    body.single-enterprise-product.threat-intelligence .banner-wrapper .banner {
      height: 500px;
      background-size: cover; }
    body.single-enterprise-product.threat-intelligence .banner-wrapper h1 {
      font-size: 65px;
      font-size: 6.5rem; }
  body.single-enterprise-product.threat-intelligence #benefits::after,
  body.single-enterprise-product.threat-intelligence #features::after,
  body.single-enterprise-product.threat-intelligence #differentiators::after {
    clear: both;
    content: "";
    display: table; }
  body.single-enterprise-product.threat-intelligence #benefits > ul > li,
  body.single-enterprise-product.threat-intelligence #features > ul > li,
  body.single-enterprise-product.threat-intelligence #differentiators > ul > li {
    float: left;
    display: block;
    width: 30%;
    max-width: auto;
    margin-left: 4.5%; }
    body.single-enterprise-product.threat-intelligence #benefits > ul > li:first-child,
    body.single-enterprise-product.threat-intelligence #features > ul > li:first-child,
    body.single-enterprise-product.threat-intelligence #differentiators > ul > li:first-child {
      margin-left: 0; }
  body.single-enterprise-product.threat-intelligence #differentiators > ul > li {
    position: relative;
    height: 560px; }
    body.single-enterprise-product.threat-intelligence #differentiators > ul > li .learn-more {
      position: absolute;
      bottom: 0;
      right: 0; }
  body.single-enterprise-product.threat-intelligence #capabilities li {
    float: left;
    width: 30%;
    margin-right: 3%; }
    body.single-enterprise-product.threat-intelligence #capabilities li.last p {
      border-bottom: none; }
  body.single-enterprise-product.threat-intelligence #capabilities p {
    display: inline-block;
    height: 90px;
    border-bottom: 2px dashed #e7e4df; }
  body.single-enterprise-product.threat-intelligence .investigate-subnav {
    display: block;
    height: 60px;
    background: #f3f0ed;
    text-align: center;
    margin-bottom: 3em; }
    body.single-enterprise-product.threat-intelligence .investigate-subnav ul {
      height: 60px; }
    body.single-enterprise-product.threat-intelligence .investigate-subnav li {
      display: inline-block;
      height: 60px; }
      body.single-enterprise-product.threat-intelligence .investigate-subnav li:first-child a, body.single-enterprise-product.threat-intelligence .investigate-subnav li:first-child table.dashboard-table .column-editable .data-text:hover, table.dashboard-table .column-editable body.single-enterprise-product.threat-intelligence .investigate-subnav li:first-child .data-text:hover {
        padding-left: 0; }
    body.single-enterprise-product.threat-intelligence .investigate-subnav a, body.single-enterprise-product.threat-intelligence .investigate-subnav table.dashboard-table .column-editable .data-text:hover, table.dashboard-table .column-editable body.single-enterprise-product.threat-intelligence .investigate-subnav .data-text:hover {
      display: block;
      padding: 0.9em;
      color: #46494e;
      letter-spacing: 0.5pt; }
      body.single-enterprise-product.threat-intelligence .investigate-subnav a:hover, body.single-enterprise-product.threat-intelligence .investigate-subnav table.dashboard-table .column-editable .data-text:hover, table.dashboard-table .column-editable body.single-enterprise-product.threat-intelligence .investigate-subnav .data-text:hover {
        color: #7e9adc;
        text-decoration: none; } }

.about .social li a, .about .social li table.dashboard-table .column-editable .data-text:hover, table.dashboard-table .column-editable .about .social li .data-text:hover,
.about-us-section .wrapper .social li a,
.about-us-section .wrapper .social li table.dashboard-table .column-editable .data-text:hover, table.dashboard-table .column-editable
.about-us-section .wrapper .social li .data-text:hover,
.about-us-section .wrapper-top .social li a,
.about-us-section .wrapper-top .social li table.dashboard-table .column-editable .data-text:hover, table.dashboard-table .column-editable
.about-us-section .wrapper-top .social li .data-text:hover {
  font-size: 20px;
  font-size: 2rem;
  text-align: center;
  color: white; }

.about h2,
.about h3,
.about p,
.about-us-section .wrapper h2,
.about-us-section .wrapper h3,
.about-us-section .wrapper p,
.about-us-section .wrapper-top h2,
.about-us-section .wrapper-top h3,
.about-us-section .wrapper-top p {
  color: #292934; }

.about .alignright,
.about-us-section .wrapper .alignright,
.about-us-section .wrapper-top .alignright {
  font-size: 16px;
  font-size: 1.6rem; }

.about h2,
.about-us-section .wrapper h2,
.about-us-section .wrapper-top h2 {
  margin: 0;
  font-size: 32px;
  font-size: 3.2rem;
  font-family: 'tradegothic_light', arial, sans-serif;
  text-align: center;
  line-height: 1.4; }

.about h2.title,
.about-us-section .wrapper h2.title,
.about-us-section .wrapper-top h2.title {
  text-align: left;
  text-transform: uppercase;
  margin-bottom: 1em; }

.about h3,
.about-us-section .wrapper h3,
.about-us-section .wrapper-top h3 {
  margin: 0;
  padding: 1em 0 0 0;
  font-size: 22px;
  font-size: 2.2rem;
  font-family: 'tradegothic', arial, sans-serif;
  text-align: center;
  text-transform: none;
  font-weight: normal;
  line-height: 1.4;
  letter-spacing: 0.05; }

.about h3.title,
.about-us-section .wrapper h3.title,
.about-us-section .wrapper-top h3.title {
  font-size: 24px;
  font-size: 2.4rem;
  text-align: left;
  text-transform: uppercase; }

.about .two-col-par p,
.about-us-section .wrapper .two-col-par p,
.about-us-section .wrapper-top .two-col-par p {
  font-size: 20px;
  font-size: 2rem;
  line-height: 1.8; }

.about-us-section h4 {
  font-family: 'tradegothic';
  font-size: 24px;
  font-size: 2.4rem; }

.about-us-section p {
  font-size: 20px;
  font-size: 2rem; }

body.about .about-community {
  padding-top: 5em;
  margin-top: 4em;
  border-top: 1px solid #d6d4d1; }

body.about .social {
  width: auto;
  padding: 0;
  margin-bottom: 2em;
  list-style: none; }
  body.about .social::after {
    clear: both;
    content: "";
    display: table; }
  body.about .social li {
    float: left;
    padding-bottom: 0; }
    body.about .social li a, body.about .social li table.dashboard-table .column-editable .data-text:hover, table.dashboard-table .column-editable body.about .social li .data-text:hover {
      display: inline-block;
      width: 30px;
      height: 30px;
      margin: 7px 5px 0 0; }
      body.about .social li a span, body.about .social li table.dashboard-table .column-editable .data-text:hover span, table.dashboard-table .column-editable body.about .social li .data-text:hover span {
        display: none; }
      body.about .social li a i:before, body.about .social li table.dashboard-table .column-editable .data-text:hover i:before, table.dashboard-table .column-editable body.about .social li .data-text:hover i:before {
        position: relative;
        top: -2px; }
      body.about .social li a.spiceworks, body.about .social li table.dashboard-table .column-editable .spiceworks.data-text:hover, table.dashboard-table .column-editable body.about .social li .spiceworks.data-text:hover {
        background: url("https://d15ni2z53ptwz9.cloudfront.net/opendns-www/img/icon-spiceworks.svg") no-repeat; }
      body.about .social li a.twitter, body.about .social li table.dashboard-table .column-editable .twitter.data-text:hover, table.dashboard-table .column-editable body.about .social li .twitter.data-text:hover {
        background: #56c7f2; }
      body.about .social li a.facebook, body.about .social li table.dashboard-table .column-editable .facebook.data-text:hover, table.dashboard-table .column-editable body.about .social li .facebook.data-text:hover {
        background: #4e7ac3; }
      body.about .social li a.google-plus, body.about .social li table.dashboard-table .column-editable .google-plus.data-text:hover, table.dashboard-table .column-editable body.about .social li .google-plus.data-text:hover {
        background: #f65523; }
      body.about .social li a.linkedin, body.about .social li table.dashboard-table .column-editable .linkedin.data-text:hover, table.dashboard-table .column-editable body.about .social li .linkedin.data-text:hover {
        background: #057ab2; }
      body.about .social li a.youtube, body.about .social li table.dashboard-table .column-editable .youtube.data-text:hover, table.dashboard-table .column-editable body.about .social li .youtube.data-text:hover {
        background: #e52d27; }
    body.about .social li:last-child a, body.about .social li:last-child table.dashboard-table .column-editable .data-text:hover, table.dashboard-table .column-editable body.about .social li:last-child .data-text:hover {
      margin-right: 0; }

body.about #newsletter-signup {
  width: 100%;
  height: 80px;
  overflow: hidden; }

.newsletter-signup-confirmation p {
  padding-bottom: 0; }

.usa-content,
.canada-content,
.uk-content {
  float: left;
  display: block;
  margin-right: 3.57866%;
  width: 100%; }
  .usa-content:last-child,
  .canada-content:last-child,
  .uk-content:last-child {
    margin-right: 0; }

.usa-content .cta {
  padding-bottom: 1.25em; }

.location {
  padding-bottom: 2em; }
  .location .vcard p {
    font-size: 20px;
    font-size: 2rem; }
  .location .map {
    height: 250px;
    border: 1px solid #ccc; }

body.dnscrypt h4,
body.ipv6 h4 {
  font-family: 'tradegothic';
  margin-top: 1.5em;
  font-size: 24px;
  font-size: 2.4rem; }

body.company-history .page .main-column {
  width: 100%; }

body.company-history .period {
  margin-top: 5em; }
  body.company-history .period:first-child {
    margin-top: 2em; }
  body.company-history .period .info {
    margin-bottom: 3em; }
  body.company-history .period .info p {
    font-size: 18px;
    font-size: 1.8rem; }
  body.company-history .period .info .title {
    position: relative;
    padding-bottom: 0.25em;
    margin-bottom: 1.5em;
    border-bottom: 1px solid #292934;
    font-size: 28px;
    font-size: 2.8rem;
    color: #292934;
    font-family: 'tradegothic_cn'; }
    body.company-history .period .info .title:after {
      content: ' ';
      position: absolute;
      bottom: -15px;
      left: 0;
      width: 100%;
      height: 10px;
      background: #292934; }
    body.company-history .period .info .title .heading {
      position: relative;
      display: inline-block;
      height: 40px;
      padding: 0 0.5em;
      margin-right: 1em;
      line-height: 40px;
      background: #292934;
      color: white;
      font-weight: normal;
      text-transform: none;
      border: none; }
      body.company-history .period .info .title .heading:after {
        content: ' ';
        top: 0;
        left: 100%;
        position: absolute;
        width: 0;
        height: 0;
        border-style: solid;
        border-width: 20px 0 20px 20px;
        border-color: transparent transparent transparent #292934; }
    body.company-history .period .info .title .subheading {
      display: block;
      padding: 0.25em 0 0 0.5em;
      line-height: 1.4; }
  body.company-history .period .event {
    z-index: 1;
    position: relative;
    width: 75%;
    padding: 15px 20px;
    margin: 0 auto 100px;
    border: 1px solid #e7e4df;
    background: white; }
    body.company-history .period .event .contents {
      position: relative;
      overflow: hidden;
      width: 100%;
      height: 100%; }
    body.company-history .period .event .fa-bars {
      position: absolute;
      right: 0;
      bottom: 0;
      color: #46494e;
      font-size: 21px;
      font-size: 2.1rem; }
    body.company-history .period .event .extra-content {
      display: none; }
    body.company-history .period .event p {
      font-size: 24px;
      font-size: 2.4rem;
      line-height: 1.3;
      color: #292934; }
    body.company-history .period .event .date {
      display: inline-block;
      padding: 0.25em 0;
      margin-bottom: 0.5em;
      border-top: 1px solid #828282;
      border-bottom: 1px solid #828282;
      font-size: 14px;
      font-size: 1.4rem; }
    body.company-history .period .event:after {
      content: ' ';
      position: absolute;
      top: 100%;
      left: -1px;
      width: 100%;
      height: 10px;
      padding: 0 1px;
      background: #292934; }
    body.company-history .period .event.milestone p {
      color: #ff5700; }
    body.company-history .period .event.milestone .date {
      border-top: 1px solid #ff5700;
      border-bottom: 1px solid #ff5700; }
    body.company-history .period .event.milestone:after {
      background: #ff5700; }

body.company-history .timeline-qtip {
  width: 75%;
  max-width: 100%;
  padding: 15px 20px;
  background: white;
  border: 2px solid #e7e4df;
  box-shadow: 0 5px 15px 0 rgba(70, 73, 78, 0.3); }
  body.company-history .timeline-qtip:after {
    content: ' ';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 99%;
    height: 15px;
    padding: 0 1px;
    background: #292934; }
  body.company-history .timeline-qtip img {
    width: 100%;
    margin-bottom: 0.5em; }
  body.company-history .timeline-qtip .contents {
    text-align: center; }
  body.company-history .timeline-qtip .fa-bars {
    display: none; }
  body.company-history .timeline-qtip p {
    font-size: 24px;
    font-size: 2.4rem;
    line-height: 1.3;
    color: #292934; }
  body.company-history .timeline-qtip .title {
    font-family: 'tradegothic';
    font-weight: bold; }
  body.company-history .timeline-qtip .date {
    display: inline-block;
    padding: 0.25em 0.5em;
    margin: 0 auto 1em auto;
    font-size: 14px;
    font-size: 1.4rem;
    background: #292934;
    color: white; }
  body.company-history .timeline-qtip .extra-content {
    display: block; }
    body.company-history .timeline-qtip .extra-content p {
      font-size: 16px;
      font-size: 1.6rem;
      line-height: 1.5;
      color: #828282; }
  body.company-history .timeline-qtip.milestone:after {
    background: #ff5700; }
  body.company-history .timeline-qtip.milestone .title {
    color: #ff5700; }
  body.company-history .timeline-qtip.milestone .date {
    background: #ff5700; }

.resource-kit .file-list {
  list-style: none; }
  .resource-kit .file-list li {
    font-size: 14px;
    font-size: 1.4rem; }
  .resource-kit .file-list .fa {
    margin-right: 0.25em;
    color: #46494e;
    font-size: 20px;
    font-size: 2rem; }
  .resource-kit .file-list .fa-link {
    transform: rotate(-45deg); }

body.about .thumbnail {
  display: none; }

body.news-room h4,
body.about h4 {
  font-size: 24px;
  font-size: 2.4rem;
  color: #292934;
  font-family: 'tradegothic';
  border-bottom: 1px solid #e7e4df;
  margin: 3em 0 0.5em;
  padding-bottom: 0.5em; }
  body.news-room h4 img,
  body.about h4 img {
    position: relative;
    top: 5px;
    width: 30px;
    height: 30px;
    margin-right: 10px; }

body.news-room .link-list span.date,
body.about .link-list span.date {
  color: #828282;
  font-size: 14px;
  font-size: 1.4rem; }

body.news-room .link-list p.title,
body.about .link-list p.title {
  font-size: 18px;
  font-size: 1.8rem;
  line-height: 1.4;
  font-family: 'tradegothic';
  padding-bottom: 0.25em; }
  body.news-room .link-list p.title a, body.news-room .link-list p.title table.dashboard-table .column-editable .data-text:hover, table.dashboard-table .column-editable body.news-room .link-list p.title .data-text:hover,
  body.about .link-list p.title a,
  body.about .link-list p.title table.dashboard-table .column-editable .data-text:hover, table.dashboard-table .column-editable
  body.about .link-list p.title .data-text:hover {
    color: #292934; }

body.news-room .link-list p.publication,
body.about .link-list p.publication {
  font-size: 16px;
  font-size: 1.6rem;
  color: #292934;
  padding-top: 0em;
  font-style: italic; }

body.news-room .link-list.clean,
body.about .link-list.clean {
  padding-bottom: 0.5em; }
  body.news-room .link-list.clean.news-articles-list p.title,
  body.about .link-list.clean.news-articles-list p.title {
    padding-bottom: 0; }

body.news-room .link-list.boxes::after,
body.about .link-list.boxes::after {
  clear: both;
  content: "";
  display: table; }

body.news-room .link-list.boxes li,
body.about .link-list.boxes li {
  display: inline-block;
  width: 90%;
  padding: 0 3%; }

body.news-room .link-list.boxes .logo,
body.about .link-list.boxes .logo {
  padding-top: 20px; }
  body.news-room .link-list.boxes .logo .thumbnail,
  body.about .link-list.boxes .logo .thumbnail {
    float: left;
    display: inline-block;
    width: 120px;
    height: 66px;
    margin: 0 20px 40px 0;
    padding: 10px;
    border: 1px solid #dbdbdb; }
    body.news-room .link-list.boxes .logo .thumbnail:hover,
    body.about .link-list.boxes .logo .thumbnail:hover {
      box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.3); }
    body.news-room .link-list.boxes .logo .thumbnail img,
    body.about .link-list.boxes .logo .thumbnail img {
      width: 120px; }
    body.news-room .link-list.boxes .logo .thumbnail:after::after,
    body.about .link-list.boxes .logo .thumbnail:after::after {
      clear: both;
      content: "";
      display: table; }

body.news-room .see-all,
body.about .see-all {
  font-size: 16px;
  font-size: 1.6rem;
  text-align: right; }
  body.news-room .see-all:after,
  body.about .see-all:after {
    content: '\2192';
    color: #00b0e0; }

ul.news-articles,
ul.press-releases {
  clear: both;
  position: relative; }
  ul.news-articles .date,
  ul.press-releases .date {
    padding: 0.5em 0;
    float: left;
    width: 18%; }
  ul.news-articles div.title,
  ul.press-releases div.title {
    float: left;
    padding: 0.5em 0;
    width: 80%; }
  ul.news-articles .logo .thumbnail,
  ul.press-releases .logo .thumbnail {
    margin: 0; }

.awards li div.title {
  padding: 0.5em 0;
  margin-left: 18%;
  border-bottom: 1px solid #e7e4df; }

.news-articles .single-title,
.awards .single-title,
.press-releases .single-title {
  font-size: 24px;
  font-size: 2.4rem; }

.news-articles h1,
.awards h1,
.press-releases h1 {
  font-size: 28px;
  font-size: 2.8rem;
  color: #292934;
  font-family: 'tradegothic';
  border-bottom: 1px solid #e7e4df;
  margin-bottom: 0.5em;
  padding-bottom: 0.2em; }

.news-articles p.title,
.awards p.title,
.press-releases p.title {
  font-size: 18px;
  font-size: 1.8rem;
  color: #292934;
  padding-bottom: 0;
  line-height: 1.4; }
  .news-articles p.title a, .news-articles p.title table.dashboard-table .column-editable .data-text:hover, table.dashboard-table .column-editable .news-articles p.title .data-text:hover,
  .awards p.title a,
  .awards p.title table.dashboard-table .column-editable .data-text:hover, table.dashboard-table .column-editable
  .awards p.title .data-text:hover,
  .press-releases p.title a,
  .press-releases p.title table.dashboard-table .column-editable .data-text:hover, table.dashboard-table .column-editable
  .press-releases p.title .data-text:hover {
    color: #292934;
    text-decoration: underline; }

.news-articles .subtitle,
.awards .subtitle,
.press-releases .subtitle {
  font-size: 16px;
  font-size: 1.6rem;
  color: #828282;
  padding-top: 0.25em; }

.news-articles > li li,
.news-articles p,
.awards > li li,
.awards p,
.press-releases > li li,
.press-releases p {
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1.4; }

.news-articles > li ul, .news-articles > li ol,
.awards > li ul,
.awards > li ol,
.press-releases > li ul,
.press-releases > li ol {
  padding-left: 2em;
  padding-bottom: 0.5em; }

.awards,
.news-articles,
.press-releases,
.events {
  padding: 0;
  list-style: none;
  float: left;
  display: block;
  margin-right: 1.75788%;
  width: 100%; }
  .awards:last-child,
  .news-articles:last-child,
  .press-releases:last-child,
  .events:last-child {
    margin-right: 0; }
  .awards::after,
  .news-articles::after,
  .press-releases::after,
  .events::after {
    clear: both;
    content: "";
    display: table; }
  .awards > li,
  .news-articles > li,
  .press-releases > li,
  .events > li {
    display: block;
    width: 100%;
    padding: 20px 0;
    border-bottom: 1px dotted #b5b5b5; }
    .awards > li::after,
    .news-articles > li::after,
    .press-releases > li::after,
    .events > li::after {
      clear: both;
      content: "";
      display: table; }
    .awards > li:last-of-type,
    .news-articles > li:last-of-type,
    .press-releases > li:last-of-type,
    .events > li:last-of-type {
      border-bottom: none; }
    .awards > li .top,
    .news-articles > li .top,
    .press-releases > li .top,
    .events > li .top {
      padding: 3px;
      overflow: visible; }
      .awards > li .top::after,
      .news-articles > li .top::after,
      .press-releases > li .top::after,
      .events > li .top::after {
        clear: both;
        content: "";
        display: table; }
    .awards > li .thumbnail,
    .news-articles > li .thumbnail,
    .press-releases > li .thumbnail,
    .events > li .thumbnail {
      display: none; }

.news-articles > li h3,
.press-releases > li h3,
.events > li h3 {
  padding-bottom: 0.5em;
  color: #00b0e0;
  font-size: 18px;
  font-size: 1.8rem;
  line-height: 1.5;
  font-family: 'tradegothic_light';
  text-transform: none;
  font-weight: normal; }

.news-articles > li .description p,
.press-releases > li .description p,
.events > li .description p {
  font-size: 16px;
  font-size: 1.6rem;
  color: #46494e; }

.news-articles > li .watch,
.press-releases > li .watch,
.events > li .watch {
  float: right;
  font-size: 16px;
  font-size: 1.6rem;
  font-family: 'tradegothic'; }
  .news-articles > li .watch .rarr,
  .press-releases > li .watch .rarr,
  .events > li .watch .rarr {
    margin-left: 5px;
    position: relative;
    display: inline-block;
    width: 0.8em;
    top: 0.1em;
    overflow: hidden;
    font-size: 1.3em;
    line-height: 1em;
    text-indent: -0.2em; }

.news-articles .info h3,
.press-releases .info h3,
.events .info h3 {
  margin-top: 0;
  font-size: 16px;
  font-size: 1.6rem;
  text-transform: none;
  font-family: 'tradegothic_light';
  font-weight: normal; }

.news-articles .info p,
.press-releases .info p,
.events .info p {
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1.7; }

body.single-events h2 {
  color: #828282;
  font-weight: normal;
  font-family: tradegothic_light;
  font-size: 28px;
  font-size: 2.8rem;
  text-transform: uppercase; }

body.single-events .trending-now::after,
body.single-events .columns::after {
  clear: both;
  content: "";
  display: table; }

body.single-events .trending-now .trending-items .item {
  padding-bottom: 2em; }

body.single-events .page-title-box.has-banner-image {
  position: relative;
  overflow: hidden; }
  body.single-events .page-title-box.has-banner-image .main-column-60 {
    position: relative;
    z-index: 1;
    padding: 10px 30px;
    box-sizing: border-box; }
    body.single-events .page-title-box.has-banner-image .main-column-60:after {
      content: ' ';
      position: absolute;
      top: 0;
      left: 0;
      display: block;
      background: rgba(0, 0, 0, 0.5);
      width: 100%;
      height: 100%;
      z-index: -1; }
  body.single-events .page-title-box.has-banner-image p,
  body.single-events .page-title-box.has-banner-image h1 {
    color: white; }

body.single-events .location {
  margin-bottom: 1em;
  border-bottom: 1px solid #e7e4df; }

body.single-events .date::after {
  clear: both;
  content: "";
  display: table; }

body.single-events .date p,
body.single-events .location p {
  font-size: 14px;
  font-size: 1.4rem; }

body.single-events .location .label,
body.single-events .date .label {
  float: left;
  display: inline-block;
  font-family: tradegothic;
  font-weight: bold; }

body.single-events .location .venue,
body.single-events .location .street,
body.single-events .location .country,
body.single-events .date .data {
  padding-left: 4em; }

body.single-events .location .street,
body.single-events .location .venue {
  padding-bottom: 0; }

body.single-events .button.orange {
  margin-bottom: 1em; }

body.single-events .right-column-40 {
  padding-top: 2em; }
  body.single-events .right-column-40 .location {
    border: none; }

body.events-confirmation .cms-content {
  padding: 1em 0 3em 0;
  background: #7e9adc; }
  body.events-confirmation .cms-content p {
    text-align: center;
    color: white; }
  body.events-confirmation .cms-content .check {
    position: relative;
    width: 60px;
    height: 60px;
    margin: 1em auto;
    border: 2px solid white;
    border-radius: 100%; }
    body.events-confirmation .cms-content .check:after {
      content: ' ';
      position: relative;
      top: 20px;
      left: 15px;
      display: block;
      width: 30px;
      height: 10px;
      border-bottom: 2px solid white;
      border-left: 2px solid white;
      transform: rotate(-50deg); }

.profiles {
  float: left;
  display: block;
  margin-right: 3.57866%;
  width: 100%; }
  .profiles:last-child {
    margin-right: 0; }

.person {
  margin: 0 3em 2em 0;
  padding: 2em 0;
  float: left;
  width: 200px;
  height: 275px; }
  .person .image {
    display: block; }
  .person p {
    font-size: 16px;
    font-size: 1.6rem; }

.headshot {
  width: 200px;
  height: auto;
  filter: grayscale(100%);
  border: 1px solid #c1c1c1; }
  .headshot:hover {
    filter: grayscale(0%); }

.advisors {
  width: 250px; }
  .advisors p {
    margin-left: 0.5em;
    padding-bottom: 0; }

.advisors .headshot {
  width: 250px; }

.single-executives .image,
.single-advisors .image {
  float: left;
  display: block;
  margin-right: 3.57866%;
  width: 100%; }
  .single-executives .image:last-child,
  .single-advisors .image:last-child {
    margin-right: 0; }

.single-executives .blurb,
.single-advisors .blurb {
  float: left;
  display: block;
  margin-right: 3.57866%;
  width: 100%; }
  .single-executives .blurb:last-child,
  .single-advisors .blurb:last-child {
    margin-right: 0; }

.single-executives .headshot,
.single-advisors .headshot {
  filter: grayscale(0); }

.single-advisors .image {
  text-align: center; }

.wrapper,
.grid.cms-columns.wrapper {
  padding: 75px 0;
  margin: 3em 0;
  border-top: 1px solid #d6d4d1;
  border-bottom: 1px solid #d6d4d1; }

.wrapper-top {
  padding: 1em 0 0;
  margin: 3em 0 0;
  border-top: 1px solid #d6d4d1; }
  .wrapper-top .left-box,
  .wrapper-top .middle-box,
  .wrapper-top .right-box {
    float: left;
    display: block;
    margin-right: 3.57866%;
    width: 100%; }
    .wrapper-top .left-box:last-child,
    .wrapper-top .middle-box:last-child,
    .wrapper-top .right-box:last-child {
      margin-right: 0; }
    .wrapper-top .left-box p,
    .wrapper-top .middle-box p,
    .wrapper-top .right-box p {
      text-align: center; }
    .wrapper-top .left-box .readmore,
    .wrapper-top .middle-box .readmore,
    .wrapper-top .right-box .readmore {
      font-size: 16px;
      font-size: 1.6rem;
      text-align: center; }
  .wrapper-top p span {
    font-size: 75px;
    font-size: 7.5rem;
    line-height: 1; }
  .wrapper-top.regular p span {
    font-size: 20px;
    font-size: 2rem;
    line-height: 1.8; }

@media screen and (min-width: 59.5em) {
  body .location .vcard .title {
    padding-top: 0;
    font-size: 28px;
    font-size: 2.8rem;
    padding-bottom: 0.5em; }
  body .location .vcard .org {
    font-size: 26px;
    font-size: 2.6rem; }
  body .location .vcard p {
    font-size: 22px;
    font-size: 2.2rem; }
  body .usa-content {
    padding-bottom: 4em; }
    body .usa-content .contact-map {
      padding-bottom: 2em; }
    body .usa-content .address {
      float: left;
      display: block;
      margin-right: 1.75788%;
      width: 36.40133%; }
      body .usa-content .address:last-child {
        margin-right: 0; }
    body .usa-content .number {
      float: left;
      display: block;
      margin-right: 1.75788%;
      width: 55.48093%;
      margin-right: 0;
      border-left: 1px solid #292934; }
      body .usa-content .number:last-child {
        margin-right: 0; }
      body .usa-content .number p {
        padding-left: 2em; }
  body .canada-content .contact-map,
  body .uk-content .contact-map {
    float: left;
    display: block;
    margin-right: 1.75788%;
    width: 36.40133%; }
    body .canada-content .contact-map:last-child,
    body .uk-content .contact-map:last-child {
      margin-right: 0; }
  body .canada-content .vcard,
  body .uk-content .vcard {
    float: left;
    display: block;
    margin-right: 1.75788%;
    width: 55.48093%;
    margin-right: 0;
    margin-left: 1em; }
    body .canada-content .vcard:last-child,
    body .uk-content .vcard:last-child {
      margin-right: 0; }
  body .awards > li .top p,
  body .news-articles > li .top p,
  body .press-releases > li .top p,
  body .events > li .top p {
    padding-left: 160px; }
  body .awards > li .award-wrapper,
  body .news-articles > li .award-wrapper,
  body .press-releases > li .award-wrapper,
  body .events > li .award-wrapper {
    float: left;
    width: 75%; }
  body .awards > li .thumbnail,
  body .news-articles > li .thumbnail,
  body .press-releases > li .thumbnail,
  body .events > li .thumbnail {
    float: left;
    display: inline-block;
    width: 120px;
    height: 66px;
    margin: 0 20px 40px 0;
    padding: 10px;
    border: 1px solid #dbdbdb; }
    body .awards > li .thumbnail:hover,
    body .news-articles > li .thumbnail:hover,
    body .press-releases > li .thumbnail:hover,
    body .events > li .thumbnail:hover {
      box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.3); }
    body .awards > li .thumbnail img,
    body .news-articles > li .thumbnail img,
    body .press-releases > li .thumbnail img,
    body .events > li .thumbnail img {
      width: 120px; }
    body .awards > li .thumbnail:after::after,
    body .news-articles > li .thumbnail:after::after,
    body .press-releases > li .thumbnail:after::after,
    body .events > li .thumbnail:after::after {
      clear: both;
      content: "";
      display: table; }
  body .awards.awards > li .thumbnail, body .awards.news-articles > li .thumbnail,
  body .news-articles.awards > li .thumbnail,
  body .news-articles.news-articles > li .thumbnail,
  body .press-releases.awards > li .thumbnail,
  body .press-releases.news-articles > li .thumbnail,
  body .events.awards > li .thumbnail,
  body .events.news-articles > li .thumbnail {
    width: 145px;
    height: 50px; }
  body .awards.awards .logo, body .awards.news-articles .logo,
  body .news-articles.awards .logo,
  body .news-articles.news-articles .logo,
  body .press-releases.awards .logo,
  body .press-releases.news-articles .logo,
  body .events.awards .logo,
  body .events.news-articles .logo {
    width: 20%;
    float: right; }
    body .awards.awards .logo .thumbnail, body .awards.news-articles .logo .thumbnail,
    body .news-articles.awards .logo .thumbnail,
    body .news-articles.news-articles .logo .thumbnail,
    body .press-releases.awards .logo .thumbnail,
    body .press-releases.news-articles .logo .thumbnail,
    body .events.awards .logo .thumbnail,
    body .events.news-articles .logo .thumbnail {
      height: auto;
      float: none; }
  body.single-events .content .right-column-40 iframe,
  body.single-events .date-container {
    width: 320px; }
  body .wrapper-top .left-box {
    float: left;
    display: block;
    margin-right: 1.55951%;
    width: 26.65146%;
    padding: 2em 3em 0 2em; }
    body .wrapper-top .left-box:last-child {
      margin-right: 0; }
  body .wrapper-top .middle-box {
    float: left;
    display: block;
    margin-right: 1.55951%;
    width: 26.65146%;
    padding: 2em 0 0; }
    body .wrapper-top .middle-box:last-child {
      margin-right: 0; }
  body .wrapper-top .right-box {
    float: left;
    display: block;
    margin-right: 1.55951%;
    width: 26.65146%;
    margin-right: 0;
    float: right;
    padding: 2em 2em 0 3em; }
    body .wrapper-top .right-box:last-child {
      margin-right: 0; }
  body.news-room .link-list.boxes::after {
    clear: both;
    content: "";
    display: table; }
  body.news-room .link-list.boxes li {
    width: 30%;
    padding: 0 3% 0 0;
    float: left; }
    body.news-room .link-list.boxes li:last-child {
      padding-right: 0;
      float: right; }
  body ul.news-articles div.title {
    width: 55%; }
  body.company-history .period {
    float: left; }
    body.company-history .period .event {
      float: left;
      width: 220px;
      height: 130px;
      margin-left: 70px;
      margin-bottom: 150px; }
      body.company-history .period .event.start, body.company-history .period .event.first {
        margin-left: 0; }
    body.company-history .period .info .title .subheading {
      display: inline;
      padding: 0; }
  body.company-history .timeline-qtip {
    width: 240px;
    max-width: 240px;
    min-height: 200px;
    padding: 15px 20px; }
    body.company-history .timeline-qtip:after {
      top: auto;
      bottom: 0; }
  body .person:nth-child(4n) {
    margin-right: 0; }
  body.single-executives .image, body.single-advisors .image {
    float: left;
    display: block;
    margin-right: 3.57866%;
    width: 22.316%; }
    body.single-executives .image:last-child, body.single-advisors .image:last-child {
      margin-right: 0; }
  body.single-executives .blurb, body.single-advisors .blurb {
    float: left;
    display: block;
    margin-right: 3.57866%;
    width: 74.10533%;
    margin-right: 0;
    float: right; }
    body.single-executives .blurb:last-child, body.single-advisors .blurb:last-child {
      margin-right: 0; } }

#search-results .grid {
  overflow: visible; }

#search-results .search-box__wrapper {
  width: 100%;
  padding: 0.5rem 0;
  background-color: #fff;
  box-shadow: inset 0px 0px 2px 2px rgba(0, 0, 0, 0.25); }

#search-results .search-box__input {
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  margin-left: 1rem;
  padding: 0.5rem 1rem;
  border: 0;
  border-radius: 0; }

#search-results .search-box__search-form {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-align: stretch;
  align-items: stretch;
  -ms-flex: 1 1 100%;
  flex: 1 1 100%; }

#search-results .search-box__button {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  padding: 0 1em; }

#search-results .button {
  transition: box-shadow 100ms linear;
  display: inline-block;
  margin: 1rem 0;
  padding: 0.05rem 1rem 0;
  border: 2px solid #f37821;
  border-radius: 30px;
  background-color: #f37821;
  color: #fff;
  font-size: 14px;
  font-weight: 400;
  line-height: 2;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
  box-shadow: 0 0 0 0 #ff7615;
  cursor: pointer;
  width: auto;
  text-align: center; }

@media screen and (min-width: 59.5em) {
  #search-results .subnav .grid {
    overflow: hidden; }
  #search-results .subnav__item {
    margin-right: 2rem;
    float: left;
    line-height: 71px; }
  #search-results .subnav__link {
    display: block;
    position: relative;
    color: #666;
    font-family: tradegothic, Arial, sans-serif;
    font-weight: 200;
    text-decoration: none; }
    #search-results .subnav__link:after {
      display: block;
      position: absolute;
      top: 93%;
      left: 0;
      width: 100%;
      height: 10px;
      background: transparent;
      content: ' '; }
    #search-results .subnav__link:hover:after, #search-results .subnav__link.subnav__link--active:after {
      background: #ff5700; } }

body.single-technology li b,
body.single-technology li strong,
body.single-technology p b,
body.single-technology p strong {
  font-family: 'tradegothic';
  font-weight: bold; }

body.single-technology .references h4 {
  font-size: 24px;
  font-size: 2.4rem;
  font-weight: normal;
  text-transform: none;
  color: #46494e;
  padding-bottom: 0.5em; }

body.single-technology .references h4 {
  padding: 10px 10px 0;
  margin-top: 40px;
  border-top: 1px dotted #46494e; }

body.single-technology .references h5 {
  margin-top: 10px;
  padding: 10px;
  padding-top: 20px;
  font-size: 16px;
  font-size: 1.6rem;
  font-family: 'tradegothic';
  font-weight: bold;
  border-top: 1px dotted #46494e; }

body.single-technology .references p {
  padding-left: 10px;
  padding-right: 10px;
  font-size: 14px;
  font-size: 1.4rem; }

body.single-technology .cta.align-center {
  text-align: center; }

body.single-technology .title {
  text-transform: none; }

body.single-technology .fa.fa-external-link {
  font-size: 10px;
  font-size: 1rem;
  vertical-align: baseline;
  position: relative;
  top: -0.7em; }

body.single-technology .reference h5:first-of-type {
  margin-top: 0; }

body.single-technology .collapsible-list,
body.single-technology .talking-points {
  padding-top: 2em; }
  body.single-technology .collapsible-list > li,
  body.single-technology .talking-points > li {
    position: relative; }
  body.single-technology .collapsible-list .top,
  body.single-technology .talking-points .top {
    margin-bottom: 30px; }
  body.single-technology .collapsible-list .hidden-content ul,
  body.single-technology .talking-points .hidden-content ul {
    padding-left: 2em; }
  body.single-technology .collapsible-list .read-more-button,
  body.single-technology .talking-points .read-more-button {
    text-align: center;
    font-size: 13px;
    font-size: 1.3rem;
    position: absolute;
    bottom: 20px;
    right: 0;
    width: 100px;
    padding: 0 10px;
    margin: 0 auto;
    border: 1px solid #dbdbdb;
    border-radius: 20px;
    cursor: pointer; }
    body.single-technology .collapsible-list .read-more-button .arrow,
    body.single-technology .talking-points .read-more-button .arrow {
      display: inline-block; }
  body.single-technology .collapsible-list .visible .read-more-button .arrow,
  body.single-technology .talking-points .visible .read-more-button .arrow {
    transform: rotate(180deg); }

@media screen and (min-width: 59.5em) {
  body.single-technology .tab-nav {
    background: #f3f0ed;
    border-bottom: none;
    text-align: center; }
    body.single-technology .tab-nav li {
      float: none;
      display: inline-block; } }

.single-articles .featured-image img,
.single-technology-partners .featured-image img {
  padding: 10px; }

.single-technology-partners .right-column .partner-module,
.single-articles .right-column .partner-module {
  padding-top: 1em;
  margin-bottom: 2em; }
  .single-technology-partners .right-column .partner-module img,
  .single-articles .right-column .partner-module img {
    width: 100%;
    height: auto; }

.expandable-box {
  list-style: none;
  margin: 4px 0 16px;
  background: #f3f0ee;
  border-top: 1px dotted #e7e4df;
  border-bottom: 1px dotted #e7e4df; }
  .expandable-box .title {
    display: block;
    padding: 20px 10px 20px 40px;
    margin: 0 0 0 20px;
    line-height: 1.25;
    background-color: #f3f0ee;
    border-top: 0;
    background-image: url(https://s3-us-west-1.amazonaws.com/webteam-cdn/opendns-www/img/expand-icon.png);
    background-repeat: no-repeat;
    background-position: left 22px;
    background-size: 16px 16px;
    cursor: pointer; }
  .expandable-box .caption {
    display: block;
    padding: 0px 10px 5px 40px;
    margin: -15px 0 0 20px;
    line-height: 1.25; }
  .expandable-box:hover .title {
    background-color: #f3f0ee;
    background-image: url(https://s3-us-west-1.amazonaws.com/webteam-cdn/opendns-www/img/expand-icon-active.png); }
  .expandable-box .expandable {
    background-color: #f3f0ed;
    display: none;
    padding: 28px 42px 28px 55px; }
  .expandable-box .expanded {
    padding: 10px 10px 0; }

body.single-articles h1.title,
body.single-technology-partners h1.title {
  text-transform: none; }

body.single-articles h2.subhead,
body.single-technology-partners h2.subhead {
  color: #828282;
  margin-top: 0;
  font-size: 22px;
  font-size: 2.2rem;
  margin-bottom: 1em; }

body.single-articles h2,
body.single-technology-partners h2 {
  font-size: 22px;
  font-size: 2.2rem;
  color: #46494e;
  margin-top: 1.5em; }

body.single-articles .main-column h4,
body.single-technology-partners .main-column h4 {
  font-family: 'tradegothic';
  font-size: 18px;
  font-size: 1.8rem; }

body.support-packages .support-packages-title {
  padding-bottom: 4em;
  text-align: center; }

body.support-packages h2 {
  margin-bottom: 1em;
  color: #828282;
  font-weight: normal;
  font-family: tradegothic_light;
  font-size: 28px;
  font-size: 2.8rem;
  text-transform: uppercase;
  text-align: center; }

body.support-packages .support-pdf {
  padding-bottom: 3em;
  text-align: center; }

body.support-packages .support-options {
  display: none; }

body.support-packages .grey-background {
  padding: 4em 0;
  margin-bottom: 4em;
  background: #f9f7f6; }

body.support-packages .support-details p {
  padding: 0;
  font-size: 14px;
  font-size: 1.4rem; }

body.support-packages .support-details > li {
  position: relative;
  padding: 0;
  margin: 0; }
  body.support-packages .support-details > li:first-child > p {
    border-top: 1px solid #e7e4df; }
  body.support-packages .support-details > li.active > p {
    background: white; }
  body.support-packages .support-details > li.active > p:after {
    display: none; }
  body.support-packages .support-details > li > p {
    padding: 0.5em 1em;
    border-bottom: 1px solid #e7e4df;
    cursor: pointer; }
    body.support-packages .support-details > li > p:hover {
      background: #f1efec; }
    body.support-packages .support-details > li > p:before {
      content: ' ';
      position: absolute;
      top: 19px;
      right: 15px;
      display: block;
      width: 14px;
      height: 2px;
      background: #46494e; }
    body.support-packages .support-details > li > p:after {
      content: ' ';
      position: absolute;
      top: 13px;
      right: 21px;
      display: block;
      width: 2px;
      height: 14px;
      background: #46494e; }
  body.support-packages .support-details > li.support-details-banner > p {
    padding-left: 4em; }

body.support-packages .extra-info {
  display: none; }

body.support-packages .support-details-table {
  margin-top: 1em;
  border-collapse: collapse;
  border-spacing: 0; }
  body.support-packages .support-details-table p {
    color: #828282; }
  body.support-packages .support-details-table td {
    padding: 1em;
    vertical-align: top;
    border-bottom: 1px solid #e7e4df;
    background: white; }
    body.support-packages .support-details-table td:first-child {
      width: 25%;
      background: #f9f7f6;
      color: #46494e; }
      body.support-packages .support-details-table td:first-child p {
        color: #46494e; }
      body.support-packages .support-details-table td:first-child .small-text {
        color: #828282;
        font-size: 13px;
        font-size: 1.3rem; }
  body.support-packages .support-details-table ul {
    position: relative;
    top: -5px;
    padding-bottom: 0;
    padding-left: 1em; }
  body.support-packages .support-details-table li {
    color: #cdcdcd; }

body.support-packages .cta {
  padding-bottom: 1em;
  margin: 2em auto 0;
  text-align: center; }

body.support-packages .pdf-link {
  display: none; }

body.support-packages .support-details-banner img {
  position: absolute;
  top: 9px;
  left: 1em; }

body.support-packages .support-details-banner .filled {
  display: none; }

body.support-packages .support-details-banner.active .filled,
body.support-packages .support-details-banner:hover .filled {
  display: block; }

body.support-packages .support-details-banner.active .outlined,
body.support-packages .support-details-banner:hover .outlined {
  display: none; }

body.support-packages .quote {
  position: relative;
  padding: 0 60px;
  margin: 2em 0 4em; }
  body.support-packages .quote:before, body.support-packages .quote:after {
    position: absolute;
    top: -36px;
    font-size: 170px;
    font-style: normal;
    color: #46494e; }
  body.support-packages .quote:before {
    content: '\201C';
    left: -15px; }
  body.support-packages .quote:after {
    content: '\201D';
    right: -15px; }

body.support-packages .quote__body p {
  font-size: 24px;
  line-height: 1.4;
  text-align: center;
  color: #46494e; }

body.support-packages .quote__attr {
  padding: 0;
  text-align: right;
  font-style: normal;
  color: #46494e; }

body.support-packages .quote__link {
  float: right;
  font-style: normal; }

@media screen and (min-width: 59.5em) {
  body.support-packages .pdf-link {
    display: inline-block;
    margin-left: 1em; }
  body.support-packages .support-pdf {
    display: none; }
  body.support-packages .support-options {
    display: block;
    margin-bottom: 4em;
    border-collapse: separate;
    border-spacing: 0; }
    body.support-packages .support-options p {
      padding: 0;
      margin: 0;
      font-size: 13px;
      font-size: 1.3rem; }
    body.support-packages .support-options th,
    body.support-packages .support-options td {
      position: relative;
      padding: 0;
      vertical-align: middle;
      text-align: center;
      border-left: 1px solid white;
      border-right: 1px solid white; }
    body.support-packages .support-options th {
      width: 19%;
      padding: 1.25em 0;
      background: #7e9adc; }
    body.support-packages .support-options td {
      padding-top: 1em;
      padding-bottom: 1em;
      background: #f3f3f3; }
      body.support-packages .support-options td:before {
        content: ' ';
        position: absolute;
        top: 0;
        left: 0;
        display: block;
        width: 100%;
        height: 1px;
        background: white; }
      body.support-packages .support-options td:after {
        content: ' ';
        position: absolute;
        bottom: 0;
        left: 0;
        display: block;
        width: 100%;
        height: 1px;
        background: #dadada; }
    body.support-packages .support-options .heading {
      position: relative;
      padding: 0;
      margin-bottom: 1em;
      color: white;
      text-transform: uppercase;
      font-size: 22px;
      font-size: 2.2rem;
      line-height: 1; }
      body.support-packages .support-options .heading:after {
        content: ' ';
        display: block;
        position: absolute;
        bottom: -10px;
        left: 15%;
        width: 70%;
        height: 1px;
        background: white;
        opacity: 0.6; }
    body.support-packages .support-options .subheading {
      height: 3.5em;
      font-size: 13px;
      font-size: 1.3rem;
      color: white; }
    body.support-packages .support-options .mid-header {
      padding-left: 1em;
      background: #ececee;
      font-size: 15px;
      font-size: 1.5rem;
      text-align: left;
      border-top: 3px solid white; }
      body.support-packages .support-options .mid-header:before, body.support-packages .support-options .mid-header:after {
        display: none; }
    body.support-packages .support-options .mid-header p {
      font-family: tradegothic;
      font-weight: bold; }
    body.support-packages .support-options .empty {
      background: white; }
      body.support-packages .support-options .empty:before, body.support-packages .support-options .empty:after {
        display: none; }
    body.support-packages .support-options th.empty {
      width: 24%; }
    body.support-packages .support-options th.empty:after {
      content: ' ';
      position: absolute;
      bottom: 0;
      left: 0;
      display: block;
      width: 100%;
      height: 1px;
      background: #dadada; }
    body.support-packages .support-options .basic {
      background: #a8a8a8; }
    body.support-packages .support-options .feature {
      padding-left: 1em;
      background: white;
      text-align: left; }
    body.support-packages .support-options .feature p {
      font-size: 14px;
      font-size: 1.4rem;
      letter-spacing: 0; }
    body.support-packages .support-options .check {
      display: block;
      width: 20px;
      height: 5px;
      margin: 0 auto;
      border-bottom: 1px solid #46494e;
      border-left: 1px solid #46494e;
      transform: rotate(-45deg); }
    body.support-packages .support-options tbody:first-of-type td {
      border-top: 3px solid white; }
    body.support-packages .support-options tr:last-child td:after {
      display: none; }
    body.support-packages .support-options .small-text {
      color: #828282;
      font-size: 13px;
      font-size: 1.3rem; }
    body.support-packages .support-options td:not(.banner) .tam-link {
      display: inline-block;
      margin-top: 1em; }
    body.support-packages .support-options .banner {
      position: relative;
      height: 80px; }
    body.support-packages .support-options .banner img {
      position: absolute;
      top: 0;
      left: 1em; }
    body.support-packages .support-options .banner {
      position: relative;
      height: 80px; }
    body.support-packages .support-options .banner img {
      position: absolute;
      top: 0;
      left: 1em; } }

.product-features-page #hero-content img {
  display: none; }

.product-features-page #hero-content .learn-more {
  display: block; }

.product-features-page #hero-content .buttons {
  padding-top: 0;
  text-align: left; }

.product-features-page .buttons {
  padding-top: 2em;
  margin-bottom: 10px;
  text-align: center; }
  .product-features-page .buttons .cta {
    display: inline; }
    .product-features-page .buttons .cta:after {
      content: none; }

.product-tour .tour-image {
  margin: 2em 0 1em; }
  .product-tour .tour-image img {
    width: 100%;
    height: auto; }

.product-tour .tour-item {
  padding: 4em 0; }
  .product-tour .tour-item::after {
    clear: both;
    content: "";
    display: table; }
  .product-tour .tour-item.item-1 {
    padding-top: 0; }
  .product-tour .tour-item .text-content {
    width: 100%; }
    .product-tour .tour-item .text-content h2 {
      padding-bottom: 0.5em;
      font-size: 30px;
      font-size: 3rem;
      font-weight: bold;
      font-family: tradegothic_cn, Helvetica, Arial, sans-serif;
      color: #46494e;
      text-transform: uppercase; }
      .product-tour .tour-item .text-content h2::after {
        clear: both;
        content: "";
        display: table; }
    .product-tour .tour-item .text-content h3 {
      float: left;
      display: block;
      width: 1em;
      font-size: 40px;
      font-size: 4rem;
      margin: 0;
      padding: 0; }
    .product-tour .tour-item .text-content ul li {
      list-style: none;
      margin: 0 0 0.5em; }
      .product-tour .tour-item .text-content ul li::after {
        clear: both;
        content: "";
        display: table; }
      .product-tour .tour-item .text-content ul li .icon {
        display: block;
        float: left;
        width: 64px; }
        .product-tour .tour-item .text-content ul li .icon img {
          display: block;
          margin: auto; }
      .product-tour .tour-item .text-content ul li p {
        padding-left: 74px; }
        .product-tour .tour-item .text-content ul li p a.learn-more, .product-tour .tour-item .text-content ul li p table.dashboard-table .column-editable .learn-more.data-text:hover, table.dashboard-table .column-editable .product-tour .tour-item .text-content ul li p .learn-more.data-text:hover {
          display: block;
          text-align: right; }
  .product-tour .tour-item .image {
    margin: 0 auto; }
    .product-tour .tour-item .image a img, .product-tour .tour-item .image table.dashboard-table .column-editable .data-text:hover img, table.dashboard-table .column-editable .product-tour .tour-item .image .data-text:hover img {
      overflow: hidden;
      width: 100%;
      height: auto;
      border: 1px solid #777c83; }
  .product-tour .tour-item.sixty-forty {
    padding: 4em 0 0 0;
    border-bottom: 1px dashed #d6d4d1; }
    .product-tour .tour-item.sixty-forty:first-child {
      border-top: 1px dashed #d6d4d1; }
    .product-tour .tour-item.sixty-forty:last-child {
      border-bottom: 0; }
    .product-tour .tour-item.sixty-forty .text-content > p {
      padding-bottom: 2em;
      font-size: 21px;
      font-size: 2.1rem;
      line-height: 1.4; }
    .product-tour .tour-item.sixty-forty .text-content h2 {
      padding-bottom: 1em;
      line-height: 50px; }
      .product-tour .tour-item.sixty-forty .text-content h2 img {
        display: inline-block;
        position: relative;
        top: 12px;
        width: 44px;
        height: 44px;
        margin-right: 0.5em; }
    .product-tour .tour-item.sixty-forty .text-content ul li {
      padding-bottom: 1em; }
      .product-tour .tour-item.sixty-forty .text-content ul li p {
        font-size: 18px;
        font-size: 1.8rem;
        padding-left: 2.5em; }
      .product-tour .tour-item.sixty-forty .text-content ul li i {
        float: left;
        padding-top: 0.25em;
        font-size: 24px;
        font-size: 2.4rem; }
      .product-tour .tour-item.sixty-forty .text-content ul li a.learn-more, .product-tour .tour-item.sixty-forty .text-content ul li table.dashboard-table .column-editable .learn-more.data-text:hover, table.dashboard-table .column-editable .product-tour .tour-item.sixty-forty .text-content ul li .learn-more.data-text:hover {
        display: inline;
        float: right;
        font-size: 18px;
        font-size: 1.8rem; }
        .product-tour .tour-item.sixty-forty .text-content ul li a.learn-more:after, .product-tour .tour-item.sixty-forty .text-content ul li table.dashboard-table .column-editable .learn-more.data-text:hover:after, table.dashboard-table .column-editable .product-tour .tour-item.sixty-forty .text-content ul li .learn-more.data-text:hover:after {
          content: '\F061';
          padding-left: 0.25em;
          font-family: FontAwesome;
          font-size: 13px;
          font-size: 1.3rem;
          font-smoothing: antialiased;
          -webkit-font-smoothing: antialiased;
          -moz-osx-font-smoothing: grayscale; }

@media screen and (min-width: 59.5em) {
  body.product-features-page #hero-content {
    padding-top: 2em;
    padding-bottom: 2em; }
    body.product-features-page #hero-content::after {
      clear: both;
      content: "";
      display: table; }
    body.product-features-page #hero-content img {
      display: block;
      float: right; }
  body .product-tour .tour-image {
    height: 35em; }
  body .product-tour .tour-item.even .text {
    width: 43%;
    float: right; }
  body .product-tour .tour-item.even .image {
    width: 53%;
    float: left;
    margin-right: 4%; }
  body .product-tour .tour-item.even.sixty-forty .text {
    float: left;
    display: block;
    margin-right: 1.16509%;
    width: 57.84788%;
    margin-right: 0;
    float: right; }
    body .product-tour .tour-item.even.sixty-forty .text:last-child {
      margin-right: 0; }
  body .product-tour .tour-item.even.sixty-forty .image {
    float: left;
    display: block;
    margin-right: 1.16509%;
    width: 36.77182%;
    margin-top: 6em; }
    body .product-tour .tour-item.even.sixty-forty .image:last-child {
      margin-right: 0; }
  body .product-tour .tour-item.odd .text {
    width: 43%;
    float: left;
    margin-right: 4%; }
  body .product-tour .tour-item.odd .image {
    width: 53%;
    float: right; }
  body .product-tour .tour-item.odd.sixty-forty .text {
    float: left;
    display: block;
    margin-right: 1.16509%;
    width: 57.84788%; }
    body .product-tour .tour-item.odd.sixty-forty .text:last-child {
      margin-right: 0; }
  body .product-tour .tour-item.odd.sixty-forty .image {
    float: left;
    display: block;
    margin-right: 1.16509%;
    width: 36.77182%;
    margin-right: 0;
    float: right;
    margin-top: 6em; }
    body .product-tour .tour-item.odd.sixty-forty .image:last-child {
      margin-right: 0; } }

#google-network-map {
  width: 100%;
  height: 485px;
  max-width: 100%;
  max-height: 100%;
  margin-bottom: 1em; }

body.network-map h4,
body.network-map #network-map {
  display: none; }

#networks {
  display: none;
  width: 100%;
  margin: 2em auto 0 auto; }
  #networks th {
    background: #292934;
    color: white;
    padding: 1em;
    text-transform: uppercase;
    font-size: 15px;
    font-size: 1.5rem;
    font-family: 'tradegothic';
    font-weight: normal; }
  #networks td {
    padding: 0.6em 1.3em;
    color: #828282;
    border: 1px solid #b5b5b5;
    font-size: 14px;
    font-size: 1.4rem;
    font-family: 'tradegothic'; }

@media screen and (min-width: 59.5em) {
  body #networks {
    display: table;
    padding: 0;
    border-collapse: collapse;
    border-spacing: 0; }
    body #networks th {
      background: #292934;
      padding: 1em; }
    body #networks td {
      padding: 0.6em 1.3em;
      border: 1px solid #b5b5b5; } }

body.no-ads .fb_iframe_widget {
  overflow: hidden; }

body.no-ads .column-0 ol {
  margin-top: 2em; }
  body.no-ads .column-0 ol li {
    margin-bottom: 2em; }
    body.no-ads .column-0 ol li strong {
      font-size: 18px;
      font-size: 1.8rem; }

body.no-ads .right-column {
  margin-top: 2em; }
  body.no-ads .right-column ul li {
    list-style: none;
    border-top: 1px dotted #828282;
    margin: 1em 0;
    padding: 1em 0;
    text-align: center;
    font-size: 16px;
    font-size: 1.6rem; }
    body.no-ads .right-column ul li:last-child {
      border-bottom: 1px dotted #828282; }
    body.no-ads .right-column ul li ul.share-icons {
      padding-bottom: 0; }
      body.no-ads .right-column ul li ul.share-icons li {
        display: inline-block;
        border-top: none;
        border-bottom: none;
        margin: 0;
        padding: 0; }
    body.no-ads .right-column ul li .cta {
      margin-top: 1em;
      padding-bottom: 0; }

#ad-countdown {
  display: none; }

@media screen and (min-width: 59.5em) {
  body #ad-countdown {
    display: block;
    padding: 2em 0;
    margin: 2em 0;
    border-top: 1px dotted #b5b5b5;
    border-bottom: 1px dotted #b5b5b5;
    text-align: center; }
    body #ad-countdown ul {
      display: inline-block;
      padding: 0;
      list-style: none; }
      body #ad-countdown ul::after {
        clear: both;
        content: "";
        display: table; }
    body #ad-countdown li {
      float: left;
      width: 200px;
      text-align: center; }
    body #ad-countdown .thin {
      width: 10px; }
    body #ad-countdown p {
      padding: 0; }
    body #ad-countdown .number {
      font-family: 'tradegothic_cn';
      font-size: 100px;
      font-size: 10rem;
      line-height: 1;
      color: #ff5700; }
    body #ad-countdown .label {
      color: #b5b5b5;
      text-transform: lowercase; } }

body.cisco-opendns .section-title {
  margin-top: 2em; }

body.cisco-opendns .right-column .topic-title {
  text-align: center;
  border: none;
  padding-bottom: 0; }

body.cisco-opendns .right-column ul li {
  list-style: none;
  border-top: 1px dotted #828282;
  margin: 1em 0;
  padding: 1em 0 0;
  text-align: center;
  font-size: 15px;
  font-size: 1.5rem; }
  body.cisco-opendns .right-column ul li:last-child {
    border-bottom: 1px dotted #828282;
    padding-bottom: 1em; }

body.material-full-page-contact-form .content {
  padding-top: 0; }

body.material-full-page-contact-form .page-title-box {
  display: none; }

body.material-full-page-contact-form .partner-summit-banner {
  margin-bottom: 2em; }

body.material-full-page-contact-form .image-banner {
  height: 200px; }

body.material-full-page-contact-form .image-banner .banner {
  height: 200px; }

body.material-full-page-contact-form .partner-summit-banner .image-banner-heading {
  display: block;
  width: auto;
  border: none;
  font-size: 38px;
  font-size: 3.8rem;
  line-height: 1.1em;
  text-transform: none; }
  body.material-full-page-contact-form .partner-summit-banner .image-banner-heading span {
    display: block; }

body.material-full-page-contact-form .partner-summit-banner .grid {
  top: -150px; }

body.material-full-page-contact-form .grid.cms-columns {
  padding: 0; }

body.material-full-page-contact-form #contact-sales-form {
  position: relative;
  display: block;
  width: 100%;
  max-width: none;
  height: 1050px;
  margin: auto;
  overflow: hidden;
  z-index: 1;
  border: none; }

body.material-full-page-contact-form .contact-sales-list-title {
  padding: 1em 0 0.5em;
  color: #5E81D3;
  font-size: 18px;
  font-size: 1.8rem;
  text-transform: uppercase;
  font-weight: bold; }

body.material-full-page-contact-form .left-side h2 {
  font-size: 22px;
  font-size: 2.2rem; }

body.material-full-page-contact-form .left-side p {
  line-height: 1.4; }

body.material-full-page-contact-form .left-side ul {
  padding: 0 0 1.5em 0;
  margin: 0;
  list-style: none; }
  body.material-full-page-contact-form .left-side ul li {
    position: relative; }
  body.material-full-page-contact-form .left-side ul p {
    padding-left: 2em;
    padding-bottom: 0;
    color: #828282;
    font-size: 15px;
    font-size: 1.5rem;
    letter-spacing: 0.5pt;
    line-height: 1.4; }
  body.material-full-page-contact-form .left-side ul .check {
    float: left;
    position: absolute;
    top: 2px;
    left: -10px;
    width: 5px;
    height: 11px;
    margin-left: 1em;
    border-bottom: 2px solid #5E81D3;
    border-right: 2px solid #5E81D3;
    transform: rotate(45deg); }

body.material-full-page-contact-form .left-side .partner-summit__cta {
  text-align: center;
  margin: 0 2em 2em; }
  body.material-full-page-contact-form .left-side .partner-summit__cta p {
    font-size: 14px;
    font-size: 1.4rem; }

body.material-full-page-contact-form .left-side img {
  height: auto;
  width: 100%; }

body.material-full-page-contact-form .right-side {
  position: relative;
  min-height: 200px;
  overflow: visible; }

body.material-full-page-contact-form .spinner {
  position: absolute;
  top: 150px;
  width: 95%;
  height: 50px;
  text-align: center;
  background: white; }
  body.material-full-page-contact-form .spinner .fa-spinner {
    font-size: 30px;
    font-size: 3rem;
    color: #828282; }

body.material-two-column-contact-form.single-marketo-form .content {
  padding: 0 !important;
  margin: 0;
  background: white !important; }
  body.material-two-column-contact-form.single-marketo-form .content p {
    max-width: none !important;
    text-align: left; }
  body.material-two-column-contact-form.single-marketo-form .content .privacy {
    font-size: 12px;
    font-size: 1.2rem; }
    body.material-two-column-contact-form.single-marketo-form .content .privacy a, body.material-two-column-contact-form.single-marketo-form .content .privacy table.dashboard-table .column-editable .data-text:hover, table.dashboard-table .column-editable body.material-two-column-contact-form.single-marketo-form .content .privacy .data-text:hover {
      color: #5E81D3; }

body.material-two-column-contact-form.single-marketo-form .mktoForm {
  max-width: none !important;
  width: 95% !important; }
  body.material-two-column-contact-form.single-marketo-form .mktoForm .mktoFormRow {
    background: white; }
  body.material-two-column-contact-form.single-marketo-form .mktoForm .mktoFormCol textarea,
  body.material-two-column-contact-form.single-marketo-form .mktoForm .mktoFormCol input[type=tel],
  body.material-two-column-contact-form.single-marketo-form .mktoForm .mktoFormCol input[type=date],
  body.material-two-column-contact-form.single-marketo-form .mktoForm .mktoFormCol input[type=text],
  body.material-two-column-contact-form.single-marketo-form .mktoForm .mktoFormCol input[type=email],
  body.material-two-column-contact-form.single-marketo-form .mktoForm .mktoFormCol input[type=number] {
    box-shadow: none !important;
    font-size: 14px;
    font-size: 1.4rem;
    padding: 10px 1% 0px; }
  body.material-two-column-contact-form.single-marketo-form .mktoForm #Expected_Close_Date__c {
    text-align: right; }
  body.material-two-column-contact-form.single-marketo-form .mktoForm label {
    font-size: 14px;
    font-size: 1.4rem;
    width: 170px !important; }
  body.material-two-column-contact-form.single-marketo-form .mktoForm fieldset {
    border: none !important;
    padding-bottom: 1em;
    margin-bottom: 2em !important; }
  body.material-two-column-contact-form.single-marketo-form .mktoForm fieldset legend {
    margin: 0;
    padding: 0 0 2em;
    font-weight: bold;
    width: 100%; }
    body.material-two-column-contact-form.single-marketo-form .mktoForm fieldset legend .required {
      float: right;
      font-weight: normal; }
  body.material-two-column-contact-form.single-marketo-form .mktoForm .mktoButtonRow,
  body.material-two-column-contact-form.single-marketo-form .mktoForm .mktoRow-column .mktoFormRow {
    width: 47%;
    float: left;
    margin-right: 3%;
    clear: none !important; }
  body.material-two-column-contact-form.single-marketo-form .mktoForm .mktoRow-column .mktoFormRow {
    height: 55px; }
  body.material-two-column-contact-form.single-marketo-form .mktoForm textarea[rows="2"] {
    height: 25px !important; }
  body.material-two-column-contact-form.single-marketo-form .mktoForm #mktoButton {
    font-size: 13px;
    font-size: 1.3rem; }

body.single-marketo-confirmation .single-marketo-confirmation__title {
  font-size: 24px;
  font-size: 2.4rem;
  color: #5E81D3;
  letter-spacing: 1.25pt; }

body.single-marketo-confirmation .single-marketo-confirmation__disclaimer {
  font-size: 15px;
  font-size: 1.5rem;
  font-weight: bold;
  color: #828282; }

@media screen and (min-width: 59.5em) {
  body.material-full-page-contact-form {
    padding-top: 103px; }
    body.material-full-page-contact-form .left-side {
      margin-top: 1.5em;
      float: left;
      display: block;
      margin-right: 1.16509%;
      width: 28.34139%; }
      body.material-full-page-contact-form .left-side:last-child {
        margin-right: 0; }
    body.material-full-page-contact-form .right-side {
      margin-top: 1.5em;
      float: left;
      display: block;
      margin-right: 1.16509%;
      width: 66.2783%;
      margin-right: 0;
      float: right; }
      body.material-full-page-contact-form .right-side:last-child {
        margin-right: 0; } }

body.setupguide .content {
  padding-top: 0; }

body.setupguide .image-banner {
  height: 300px;
  padding-bottom: 2em; }

body.setupguide .image-banner .grid {
  top: -250px; }

body.setupguide .image-banner .banner {
  height: 300px; }

body.setupguide .image-banner-heading {
  display: block;
  width: auto;
  border: none;
  font-size: 50px;
  line-height: 1.1; }

body.setupguide .image-banner-heading span {
  display: block; }

.setup-guide__familyshield-icon {
  display: none; }

.setup-guide__familyshield-nameservers {
  display: none; }

:target {
  display: block; }

:target + .setup-guide__nameservers {
  display: none; }

.setup-guide__familyshield-nameserver-copy {
  width: 100%; }
  .setup-guide__familyshield-nameserver-copy ul {
    list-style: none; }

.setup-guide__categories {
  list-style: none; }

.setup-guide__categories li {
  margin: 1.5em 2em 0 0;
  border: 1px solid #434356; }

.setup-guide__category-icon {
  position: relative;
  height: 250px;
  width: 250px;
  background-size: 140px 111px;
  background-position: 50% 40%;
  background-repeat: no-repeat;
  margin: 0 auto; }
  .setup-guide__category-icon.icon-wifi {
    background-image: url("https://s3-us-west-1.amazonaws.com/webteam-cdn/opendns-www/img/Router-Icon-Gray.png"); }
    .setup-guide__category-icon.icon-wifi:hover {
      background-image: url("https://s3-us-west-1.amazonaws.com/webteam-cdn/opendns-www/img/Router-Icon-Orange.png"); }
  .setup-guide__category-icon.icon-laptop {
    background-image: url("https://s3-us-west-1.amazonaws.com/webteam-cdn/opendns-www/img/Computer-Icon-Gray.png"); }
    .setup-guide__category-icon.icon-laptop:hover {
      background-image: url("https://s3-us-west-1.amazonaws.com/webteam-cdn/opendns-www/img/Computer-Icon-Orange.png"); }
  .setup-guide__category-icon.icon-phone-mobile {
    background-image: url("https://s3-us-west-1.amazonaws.com/webteam-cdn/opendns-www/img/Device-Icon-Gray.png"); }
    .setup-guide__category-icon.icon-phone-mobile:hover {
      background-image: url("https://s3-us-west-1.amazonaws.com/webteam-cdn/opendns-www/img/Device-Icon-Orange.png"); }
  .setup-guide__category-icon.icon-server {
    background-image: url("https://s3-us-west-1.amazonaws.com/webteam-cdn/opendns-www/img/Server-Icon-Gray.png"); }
    .setup-guide__category-icon.icon-server:hover {
      background-image: url("https://s3-us-west-1.amazonaws.com/webteam-cdn/opendns-www/img/Server-Icon-Orange.png"); }

a.setup-guide__category, table.dashboard-table .column-editable .setup-guide__category.data-text:hover,
table.dashboard-table.table-striped tbody tr:nth-child(odd) td.column-editable .setup-guide__category.data-text:hover {
  font-size: 15px;
  font-size: 1.5rem;
  text-align: center;
  color: #434356;
  font-weight: bold;
  margin-top: -75px; }
  a.setup-guide__category span, table.dashboard-table .column-editable .setup-guide__category.data-text:hover span,
  table.dashboard-table.table-striped tbody tr:nth-child(odd) td.column-editable .setup-guide__category.data-text:hover span {
    font-weight: normal; }
  a.setup-guide__category:hover, table.dashboard-table .column-editable .setup-guide__category.data-text:hover,
  table.dashboard-table.table-striped tbody tr:nth-child(odd) td.column-editable .setup-guide__category.data-text:hover {
    color: #F37821;
    text-decoration: none; }

.setup-guide__category-label {
  position: relative;
  top: 175px; }

.setup-guide__dnstest {
  border: 1px solid #434356;
  padding: 2em; }

.setup-guide__dnstest-results {
  display: none; }

.setup-guide__dnstest-results.show {
  display: block; }

.setup-guide__heading {
  font-size: 28px;
  font-size: 2.8rem;
  font-family: 'tradegothic_light';
  text-transform: uppercase;
  padding-bottom: 0.25em; }

.setup-guide__dnstest--success,
.setup-guide__dnstest--error {
  border-top: 1px solid #434356;
  padding-top: 1em; }

.setup-guide__dnstest--error-icon,
.setup-guide__dnstest--success-icon {
  width: 39px;
  height: 44px;
  background-repeat: no-repeat;
  background-size: 39px 44px;
  display: inline-block;
  margin-top: 20px; }

.setup-guide__dnstest--success-icon {
  background-image: url("https://s3-us-west-1.amazonaws.com/webteam-cdn/opendns-www/img/Thumbsup-icon.png"); }

.setup-guide__dnstest--error-icon {
  background-image: url("https://s3-us-west-1.amazonaws.com/webteam-cdn/opendns-www/img/Error-icon.png"); }

.setup-guide__dnstest--success-title,
.setup-guide__dnstest--error-title {
  display: inline-block;
  font-size: 24px;
  font-size: 2.4rem;
  font-family: 'tradegothic_light';
  margin-top: 35px;
  vertical-align: top; }

.setup-guide__dnstest--success-title {
  color: #98D04F; }

.setup-guide__dnstest--error-title {
  color: #730015; }

@media screen and (min-width: 40em) {
  body.setupguide .image-banner-heading {
    padding: 0.5em 0;
    font-size: 60px;
    text-align: left; } }

@media screen and (min-width: 59.5em) {
  body.setupguide .image-banner {
    padding-bottom: 0; }
  body.setupguide .setup-guide__categories li {
    display: inline-block; }
  body.setupguide .setup-guide__familyshield-icon {
    display: inline-block;
    width: 15%;
    margin-top: 20px;
    margin-right: 2%;
    vertical-align: top; }
  body.setupguide .setup-guide__familyshield-nameserver-copy {
    display: inline-block;
    width: 80%; } }

body.take-your-security-further {
  background: url(https://s3-us-west-1.amazonaws.com/webteam-cdn/opendns-www/img/blue-web-opt.jpg) no-repeat center top;
  background-size: auto 130%; }
  body.take-your-security-further .orange-container {
    width: 100%;
    margin-bottom: 10em;
    background: rgba(243, 120, 33, 0.8);
    text-align: center; }
  body.take-your-security-further .heading {
    padding: 0;
    padding-bottom: 1em;
    text-align: center; }
  body.take-your-security-further .trending-items {
    display: inline-block;
    padding: 0 3em;
    text-align: left; }
    body.take-your-security-further .trending-items::after {
      clear: both;
      content: "";
      display: table; }
  body.take-your-security-further .trending-item-title {
    color: white;
    text-transform: uppercase; }
  body.take-your-security-further .item {
    position: relative;
    max-width: 500px; }
    body.take-your-security-further .item::after {
      clear: both;
      content: "";
      display: table; }
    body.take-your-security-further .item p {
      font-size: 18px;
      line-height: 1.4;
      color: white;
      clear: both; }
  body.take-your-security-further .video-section {
    overflow: hidden; }
  body.take-your-security-further footer {
    padding-top: 0; }
  body.take-your-security-further footer .top {
    display: none; }
  body.take-your-security-further .video-section.trending {
    margin-bottom: 1em;
    text-align: center; }
  body.take-your-security-further .trending .video-section-overlay {
    position: static;
    height: auto; }
    body.take-your-security-further .trending .video-section-overlay img {
      margin: 0;
      border: 0; }
    body.take-your-security-further .trending .video-section-overlay:after {
      content: ' ';
      display: block;
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 99%;
      background: rgba(67, 67, 86, 0.4); }
  body.take-your-security-further .trending iframe {
    display: none; }
  body.take-your-security-further .trending .play-container {
    position: absolute;
    top: 24%;
    width: 100%;
    text-align: center; }
  body.take-your-security-further .trending .video-section-play {
    display: inline-block;
    position: relative; }

@media screen and (min-width: 59.5em) {
  body.take-your-security-further .item {
    min-height: 500px;
    padding-bottom: 0; }
    body.take-your-security-further .item:before {
      content: ' ';
      position: absolute;
      top: 100px;
      left: -10%;
      display: block;
      width: 1px;
      height: 300px;
      background: white;
      opacity: 0.5; }
    body.take-your-security-further .item:first-child:before {
      display: none; }
    body.take-your-security-further .item .cta {
      margin-bottom: 3em; } }

body.welcome .content .welcome {
  text-align: center; }
  body.welcome .content .welcome h3 {
    font-family: 'tradegothic';
    font-weight: normal;
    margin-top: 1em;
    font-size: 28px;
    font-size: 2.8rem; }
  body.welcome .content .welcome ol,
  body.welcome .content .welcome ul {
    margin-left: 15px; }
  body.welcome .content .welcome .box {
    border-top: 1px solid #dddad4;
    margin-left: auto;
    margin-right: auto;
    float: none;
    margin-top: 2em;
    padding: 0.25em 1.5em 0;
    text-align: left; }

@media screen and (min-width: 59.5em) {
  body.welcome .content .welcome ol,
  body.welcome .content .welcome ul {
    margin-left: 30px; }
  body.welcome .content .welcome div.box {
    float: left;
    display: block;
    margin-right: 1.16509%;
    width: 66.2783%;
    margin-left: 16.86085%; }
    body.welcome .content .welcome div.box:last-child {
      margin-right: 0; } }

.phishing-quiz .cta {
  cursor: pointer; }

.phishing-quiz #start .cta {
  position: absolute;
  z-index: 10;
  top: 200px;
  left: 275px;
  width: 30%;
  padding: 2em;
  border: 1px solid #46494e;
  border-radius: 10px;
  background: white; }

.phishing-quiz .align-center {
  text-align: center; }

.phishing-quiz .best,
.phishing-quiz .better,
.phishing-quiz .good {
  display: none; }

.phishing-quiz #browser {
  position: relative;
  width: 850px;
  margin: 0 auto 25px auto;
  padding: 25px 0;
  border: 1px solid #e7e4df; }

.phishing-quiz #screen {
  min-height: 500px;
  text-align: center;
  opacity: 0.6; }
  .phishing-quiz #screen img {
    display: none;
    border: 1px solid #dddad4; }

.phishing-quiz #results {
  display: none;
  background: #f3f0ed;
  padding: 40px;
  width: 800px;
  margin: auto;
  border: 1px solid #46494e; }
  .phishing-quiz #results img {
    margin: 5px 10px 5px 10px; }

.phishing-quiz #buttons {
  display: none; }

.phishing-quiz .browser-th {
  width: 240px;
  height: 179px;
  margin-right: 40px;
  margin-bottom: 40px;
  position: relative; }

.phishing-quiz .th-inner {
  width: 240px;
  height: 174px; }

.phishing-quiz td {
  padding: 0 0 60px 0;
  text-align: center;
  vertical-align: top; }
  .phishing-quiz td p {
    padding: 0;
    margin: 0 !important;
    font-size: 13px; }
  .phishing-quiz td h4 {
    position: relative;
    font-weight: normal; }

.phishing-quiz .info {
  display: block;
  width: 105px;
  height: 22px;
  padding-top: 4px;
  margin: 0 auto;
  font-size: 12px;
  font-size: 1.2rem;
  font-weight: bold;
  text-align: center;
  text-decoration: none;
  color: white !important;
  background: url("https://s3-us-west-1.amazonaws.com/webteam-cdn/opendns-www/img/quiz-button.png") no-repeat; }

.phishing-quiz .info:hover {
  text-decoration: none !important; }

.phishing-quiz div#cboxClose {
  top: auto;
  bottom: 0; }

.phishing-quiz .share {
  margin-bottom: 35px;
  text-align: center; }

.phishing-quiz h4 img {
  position: absolute;
  top: -7px; }

body.page-template-page-banner.contact header .persona-menu .current-menu-parent:after {
  display: none; }

body.page-template-page-banner.contact .contact-hero-banner {
  background: #384d7f; }
  body.page-template-page-banner.contact .contact-hero-banner h1 {
    padding: 0;
    margin: 1.5em 0 0.75em;
    position: relative;
    color: white;
    font-size: 34px;
    font-size: 3.4rem;
    font-family: tradegothic_light;
    font-weight: normal;
    text-transform: none; }
  body.page-template-page-banner.contact .contact-hero-banner p {
    margin-bottom: 3em;
    color: white;
    font-size: 16px;
    font-size: 1.6rem; }
    body.page-template-page-banner.contact .contact-hero-banner p br {
      display: none; }
  body.page-template-page-banner.contact .contact-hero-banner .phone {
    color: #FFCC00; }

body.page-template-page-banner.contact #contact-sales-form {
  position: relative;
  display: block;
  width: 100%;
  max-width: 380px;
  height: 750px;
  margin: auto;
  overflow: hidden;
  z-index: 1;
  border: none; }

body.page-template-page-banner.contact .contact-sales-list-title {
  padding: 0 0 1em 1em;
  margin-bottom: 2em;
  color: #46494e;
  font-family: tradegothic_light;
  font-size: 16px;
  font-size: 1.6rem;
  text-transform: none;
  letter-spacing: 1pt;
  line-height: 35px;
  border-bottom: 1px dotted #46494e; }

body.page-template-page-banner.contact .right-side ul {
  padding: 0 0 1.5em 0;
  margin: 0;
  list-style: none; }
  body.page-template-page-banner.contact .right-side ul li {
    position: relative; }
  body.page-template-page-banner.contact .right-side ul p {
    padding-left: 3.25em;
    color: #828282;
    font-size: 15px;
    font-size: 1.5rem;
    letter-spacing: 0.5pt;
    line-height: 1.4; }
  body.page-template-page-banner.contact .right-side ul .check {
    float: left;
    position: absolute;
    top: 2px;
    width: 7px;
    height: 16px;
    margin-left: 1em;
    border-bottom: 2px solid #828282;
    border-right: 2px solid #828282;
    transform: rotate(45deg); }
  body.page-template-page-banner.contact .right-side ul img {
    float: left;
    width: 66px;
    height: 51px;
    margin: 0 1em 0 0; }
  body.page-template-page-banner.contact .right-side ul.whos-using li {
    margin-bottom: 1em; }

body.page-template-page-banner.contact .left-side {
  position: relative;
  min-height: 200px;
  overflow: visible; }

.spinner {
  position: absolute;
  top: 150px;
  width: 95%;
  height: 50px;
  text-align: center;
  background: white; }
  .spinner .fa-spinner {
    font-size: 30px;
    font-size: 3rem;
    color: #828282; }

body.contact-sales-full-page .content h2,
body.contact-sales-full-page .content p,
body.contact-sales-confirmation-full-page .content h2,
body.contact-sales-confirmation-full-page .content p {
  text-align: left; }

body.contact-sales-full-page .content {
  padding: 0 !important;
  margin: 0;
  background: white !important; }
  body.contact-sales-full-page .content h2 {
    margin-bottom: 0.25em;
    color: #46494e;
    font-family: tradegothic_light;
    font-weight: normal;
    font-size: 22px;
    font-size: 2.2rem;
    letter-spacing: 0.5pt; }
  body.contact-sales-full-page .content .all-fields {
    margin-bottom: 1em;
    color: #828282;
    font-size: 14px;
    font-size: 1.4rem;
    border: none; }
  body.contact-sales-full-page .content form {
    position: relative;
    width: 95% !important;
    padding: 0;
    margin: 0;
    background: white;
    z-index: 1; }
  body.contact-sales-full-page .content .mktoAsterix {
    display: none; }
  body.contact-sales-full-page .content ::-webkit-input-placeholder,
  body.contact-sales-full-page .content :-moz-placeholder,
  body.contact-sales-full-page .content ::-moz-placeholder,
  body.contact-sales-full-page .content :-ms-input-placeholder {
    color: #d6d4d1;
    font-family: Helvetica, Arial, sans-serif;
    font-weight: normal;
    font-size: 15px;
    font-size: 1.5rem; }
  body.contact-sales-full-page .content input {
    width: 100% !important;
    height: auto;
    padding: 1em 2em;
    border: 1px solid #e7e4df;
    border-radius: 2px;
    font-family: Helvetica, Arial, sans-serif;
    color: #46494e;
    font-size: 15px;
    font-size: 1.5rem; }
  body.contact-sales-full-page .content select {
    width: 100% !important;
    margin-left: 1px; }
  body.contact-sales-full-page .content .mktoFormCol,
  body.contact-sales-full-page .content .mktoFieldWrap {
    width: 100% !important; }
  body.contact-sales-full-page .content .employees .chosen-drop .chosen-results {
    max-height: 180px; }
  body.contact-sales-full-page .content .IN-widget {
    padding: 0 0 20px;
    margin: 0; }
  body.contact-sales-full-page .content .mktoButtonRow {
    width: 100%; }
    body.contact-sales-full-page .content .mktoButtonRow .mktoButtonWrap {
      width: 100%;
      margin: 0 !important; }
  body.contact-sales-full-page .content #mktoButton {
    box-sizing: border-box;
    width: 100%;
    font-style: normal; }
  body.contact-sales-full-page .content .mktoFormRow.checkbox {
    margin-bottom: 1em; }
    body.contact-sales-full-page .content .mktoFormRow.checkbox label {
      display: block;
      float: right;
      width: 87% !important;
      color: #828282;
      font-size: 15px;
      font-size: 1.5rem;
      font-family: tradegothic_light;
      line-height: 1.4; }
    body.contact-sales-full-page .content .mktoFormRow.checkbox input {
      display: block;
      position: relative;
      top: 1px;
      left: 6px;
      padding: 0; }
    body.contact-sales-full-page .content .mktoFormRow.checkbox .mktoLogicalField {
      width: 10% !important; }
  body.contact-sales-full-page .content .mktoOffset {
    display: none; }
  body.contact-sales-full-page .content .mktoError {
    left: 0;
    right: auto;
    bottom: -26px !important; }
    body.contact-sales-full-page .content .mktoError:after {
      content: '\F0D8';
      display: block;
      position: absolute;
      top: -6px;
      left: 8px;
      font-smoothing: antialiased;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
      color: #46494e;
      font-family: fontawesome;
      font-size: 20px;
      font-size: 2rem; }
    body.contact-sales-full-page .content .mktoError .mktoErrorArrowWrap {
      display: none; }
    body.contact-sales-full-page .content .mktoError .mktoErrorMsg {
      background: #46494e;
      color: white;
      border-radius: 0;
      border: none;
      box-shadow: none;
      text-shadow: none; }

body.contact-sales-confirmation-full-page p {
  color: #828282;
  font-size: 15px;
  font-size: 1.5rem;
  letter-spacing: 0.5pt;
  line-height: 1.4; }

body.contact-sales-confirmation-full-page h2 {
  margin-bottom: 0.25em;
  color: #46494e;
  font-family: tradegothic_light;
  font-weight: normal;
  font-size: 20px;
  font-size: 2rem;
  letter-spacing: 0.5pt; }

body.contact-sales-confirmation-full-page .strong {
  padding-bottom: 1em;
  color: #46494e; }

@media screen and (min-width: 59.5em) {
  body.page-template-page-banner.contact {
    padding-top: 103px; }
    body.page-template-page-banner.contact .left-side {
      margin-top: 1.5em;
      float: left;
      display: block;
      margin-right: 1.16509%;
      width: 36.77182%; }
      body.page-template-page-banner.contact .left-side:last-child {
        margin-right: 0; }
    body.page-template-page-banner.contact .right-side {
      margin-top: 1.5em;
      float: left;
      display: block;
      margin-right: 1.16509%;
      width: 45.20224%;
      margin-right: 0;
      float: right; }
      body.page-template-page-banner.contact .right-side:last-child {
        margin-right: 0; }
    body.page-template-page-banner.contact .contact-hero-banner h1,
    body.page-template-page-banner.contact .contact-hero-banner p {
      padding: 0 75px; }
    body.page-template-page-banner.contact .contact-hero-banner p {
      margin: 0; }
      body.page-template-page-banner.contact .contact-hero-banner p br {
        display: block; }
    body.page-template-page-banner.contact .contact-hero-banner .heading {
      float: left;
      display: block;
      margin-right: 1.16509%;
      width: 53.63267%;
      height: 270px;
      background: rgba(56, 77, 127, 0.75); }
      body.page-template-page-banner.contact .contact-hero-banner .heading:last-child {
        margin-right: 0; }
    body.page-template-page-banner.contact .contact-hero-banner .heading-container {
      width: 100%;
      height: 270px;
      background: url(https://s3-us-west-1.amazonaws.com/webteam-cdn/opendns-www/img/contact-sales-banner.jpg) center top no-repeat;
      background-size: 100% auto; } }

.header-offscreen-nav-trigger {
  position: absolute;
  top: 3px;
  left: 137px;
  cursor: pointer;
  box-sizing: border-box;
  width: 22px;
  height: 17px;
  margin-top: 20px;
  border-top: 3px solid white;
  border-bottom: 3px solid white; }
  .header-offscreen-nav-trigger:after {
    content: ' ';
    position: absolute;
    top: 4px;
    left: 0;
    width: 100%;
    height: 3px;
    background: white; }

.product-container,
.subnav-container {
  display: none; }
  .product-container .menu-item.button a, .product-container .menu-item.button table.dashboard-table .column-editable .data-text:hover, table.dashboard-table .column-editable .product-container .menu-item.button .data-text:hover,
  .subnav-container .menu-item.button a,
  .subnav-container .menu-item.button table.dashboard-table .column-editable .data-text:hover, table.dashboard-table .column-editable
  .subnav-container .menu-item.button .data-text:hover {
    padding: 0.5em 1.25em; }

body.msp-section .header-menu .current-menu-ancestor > a:after, body.msp-section .header-menu table.dashboard-table .column-editable .current-menu-ancestor > .data-text:hover:after, table.dashboard-table .column-editable body.msp-section .header-menu .current-menu-ancestor > .data-text:hover:after,
body.msp-section .header-menu .current-menu-parent > a:after,
body.msp-section .header-menu table.dashboard-table .column-editable .current-menu-parent > .data-text:hover:after, table.dashboard-table .column-editable
body.msp-section .header-menu .current-menu-parent > .data-text:hover:after,
body.msp-section .header-menu .current-menu-item > a:after,
body.msp-section .header-menu table.dashboard-table .column-editable .current-menu-item > .data-text:hover:after, table.dashboard-table .column-editable
body.msp-section .header-menu .current-menu-item > .data-text:hover:after,
body.personal-section .header-menu .current-menu-ancestor > a:after,
body.personal-section .header-menu table.dashboard-table .column-editable .current-menu-ancestor > .data-text:hover:after, table.dashboard-table .column-editable
body.personal-section .header-menu .current-menu-ancestor > .data-text:hover:after,
body.personal-section .header-menu .current-menu-parent > a:after,
body.personal-section .header-menu table.dashboard-table .column-editable .current-menu-parent > .data-text:hover:after, table.dashboard-table .column-editable
body.personal-section .header-menu .current-menu-parent > .data-text:hover:after,
body.personal-section .header-menu .current-menu-item > a:after,
body.personal-section .header-menu table.dashboard-table .column-editable .current-menu-item > .data-text:hover:after, table.dashboard-table .column-editable
body.personal-section .header-menu .current-menu-item > .data-text:hover:after {
  background: #292934; }

.header {
  position: relative;
  height: 60px;
  background: #292934;
  color: #828282;
  letter-spacing: 0.5pt;
  border-bottom: 1px solid white;
  overflow: visible; }
  .header.sticky {
    position: fixed; }
  .header ul {
    padding: 0; }
  .header .grid {
    height: 63px;
    overflow: visible; }
  .header a, .header table.dashboard-table .column-editable .data-text:hover, table.dashboard-table .column-editable .header .data-text:hover, .header
  table.dashboard-table.table-striped tbody tr:nth-child(odd) td.column-editable .data-text:hover,
  table.dashboard-table.table-striped tbody tr:nth-child(odd) td.column-editable .header .data-text:hover {
    color: #b5b5b5;
    text-decoration: none; }
    .header a.highlight, .header table.dashboard-table .column-editable .highlight.data-text:hover, table.dashboard-table .column-editable .header .highlight.data-text:hover {
      color: white; }
  .header .header-logo-link {
    display: inline-block; }
  .header .header-logo-img {
    display: inline-block;
    height: 46px;
    margin: 7px 0 11px; }

.header-persona-top,
.header-menu {
  display: none; }

#wpadminbar {
  z-index: 1000001 !important; }

#cisco-banner {
  width: 100%;
  background: #292934;
  border-bottom: 1px solid white; }
  #cisco-banner .cisco-banner-logo {
    position: relative;
    float: left;
    width: 70px;
    padding: 0.5em 0 0; }
    #cisco-banner .cisco-banner-logo img {
      top: 7px;
      left: 0;
      height: 27px;
      width: auto; }
  #cisco-banner .cisco-logo--dark {
    display: none; }
  #cisco-banner .cisco-banner-learn-more {
    width: 70%;
    float: left; }
    #cisco-banner .cisco-banner-learn-more a:before, #cisco-banner .cisco-banner-learn-more table.dashboard-table .column-editable .data-text:hover:before, table.dashboard-table .column-editable #cisco-banner .cisco-banner-learn-more .data-text:hover:before {
      display: inline-block;
      content: '\2014';
      line-height: 1; }
  #cisco-banner .cisco-banner-about {
    display: none; }
  #cisco-banner p, #cisco-banner a, #cisco-banner table.dashboard-table .column-editable .data-text:hover, table.dashboard-table .column-editable #cisco-banner .data-text:hover {
    font-size: 13px;
    font-size: 1.3rem;
    letter-spacing: 0.5pt;
    color: white;
    display: inline;
    line-height: 24px; }

body.personal-section #cisco-banner,
body.msp-section #cisco-banner {
  border-bottom: 1px solid #292934; }

body.personal-section #cisco-banner .cisco-logo--light,
body.msp-section #cisco-banner .cisco-logo--light {
  display: none; }

body.personal-section #cisco-banner .cisco-logo--dark,
body.msp-section #cisco-banner .cisco-logo--dark {
  display: block; }

.promo-banner {
  display: none; }

body.business-section .header {
  background: #7e9adc; }

body.business-section .subnav-container {
  background: #5E81D3; }

body.business-section #cisco-banner {
  background: #7e9adc; }

body.msp-section .header {
  background: #98D04F;
  border-bottom: 1px solid #292934; }
  body.msp-section .header .header-persona-top .menu-item a, body.msp-section .header .header-persona-top .menu-item table.dashboard-table .column-editable .data-text:hover, table.dashboard-table .column-editable body.msp-section .header .header-persona-top .menu-item .data-text:hover,
  body.msp-section .header .header-menu .menu-item a,
  body.msp-section .header .header-menu .menu-item table.dashboard-table .column-editable .data-text:hover, table.dashboard-table .column-editable
  body.msp-section .header .header-menu .menu-item .data-text:hover,
  body.msp-section .header .header-menu .menu-item p,
  body.msp-section .header .header-menu .menu-item:before {
    color: #292934; }

body.msp-section .subnav-container {
  background: #7aa63f;
  border-bottom: 1px solid #292934; }

body.msp-section #cisco-banner {
  background: #98D04F; }
  body.msp-section #cisco-banner a, body.msp-section #cisco-banner table.dashboard-table .column-editable .data-text:hover, table.dashboard-table .column-editable body.msp-section #cisco-banner .data-text:hover,
  body.msp-section #cisco-banner p {
    color: #292934; }

body.personal-section .header {
  background: #FFCC00;
  border-bottom: 1px solid #292934; }
  body.personal-section .header .header-persona-top ul .menu-item a, body.personal-section .header .header-persona-top ul .menu-item table.dashboard-table .column-editable .data-text:hover, table.dashboard-table .column-editable body.personal-section .header .header-persona-top ul .menu-item .data-text:hover,
  body.personal-section .header .header-menu .menu-item a,
  body.personal-section .header .header-menu .menu-item table.dashboard-table .column-editable .data-text:hover, table.dashboard-table .column-editable
  body.personal-section .header .header-menu .menu-item .data-text:hover,
  body.personal-section .header .header-menu .menu-item p,
  body.personal-section .header .header-menu .menu-item:before {
    color: #292934; }

body.personal-section .subnav-container {
  background: #cca300;
  border-bottom: 1px solid #292934; }

body.personal-section #cisco-banner {
  background: #FFCC00; }
  body.personal-section #cisco-banner a, body.personal-section #cisco-banner table.dashboard-table .column-editable .data-text:hover, table.dashboard-table .column-editable body.personal-section #cisco-banner .data-text:hover,
  body.personal-section #cisco-banner p {
    color: #292934; }

@media screen and (min-width: 40em) {
  body #cisco-banner .cisco-banner-learn-more {
    padding: 0.5em 0 0.5em 0.5em; }
    body #cisco-banner .cisco-banner-learn-more a, body #cisco-banner .cisco-banner-learn-more table.dashboard-table .column-editable .data-text:hover, table.dashboard-table .column-editable body #cisco-banner .cisco-banner-learn-more .data-text:hover {
      padding-left: 65px; }
      body #cisco-banner .cisco-banner-learn-more a:before, body #cisco-banner .cisco-banner-learn-more table.dashboard-table .column-editable .data-text:hover:before, table.dashboard-table .column-editable body #cisco-banner .cisco-banner-learn-more .data-text:hover:before {
        display: none; }
    body #cisco-banner .cisco-banner-learn-more .fa-caret-right {
      padding-left: 1em; }
  body #cisco-banner .cisco-banner-about {
    display: block;
    text-align: right;
    padding: 0.5em 0 0.5em 0.5em;
    float: right; }
    body #cisco-banner .cisco-banner-about a, body #cisco-banner .cisco-banner-about table.dashboard-table .column-editable .data-text:hover, table.dashboard-table .column-editable body #cisco-banner .cisco-banner-about .data-text:hover {
      text-decoration: underline;
      font-size: 12px;
      font-size: 1.2rem; } }

@media screen and (min-width: 59.5em) {
  body .header-menu {
    position: absolute;
    top: 14px;
    left: 180px;
    display: block;
    height: 48px;
    overflow: hidden; }
    body .header-menu .menu-item {
      display: inline-block; }
    body .header-menu .menu-item p,
    body .header-menu .menu-item a,
    body .header-menu .menu-item table.dashboard-table .column-editable .data-text:hover, table.dashboard-table .column-editable
    body .header-menu .menu-item .data-text:hover {
      display: inline-block;
      margin: 0 1em;
      color: white;
      text-transform: uppercase;
      font-family: tradegothic_light, Helvetica, Arial, sans-serif;
      font-weight: normal;
      font-size: 13px;
      font-size: 1.3rem; }
    body .header-menu .button {
      display: none; }
    body .header-menu .investigate-menu {
      display: none; }
    body .header-menu .subnav {
      display: none; }
    body .header-menu .subnav.depth-0 {
      position: relative;
      left: -0.5em;
      display: inline-block; }
      body .header-menu .subnav.depth-0 .menu-item p,
      body .header-menu .subnav.depth-0 .menu-item a,
      body .header-menu .subnav.depth-0 .menu-item table.dashboard-table .column-editable .data-text:hover, table.dashboard-table .column-editable
      body .header-menu .subnav.depth-0 .menu-item .data-text:hover {
        padding: 0.25em; }
      body .header-menu .subnav.depth-0 .menu-item:before {
        content: '\2022';
        position: relative;
        top: -1px;
        color: white;
        font-size: 10px;
        font-size: 1rem;
        line-height: 13px; }
    body .header-menu .product-link {
      margin-right: 0.5em; }
      body .header-menu .product-link a, body .header-menu .product-link table.dashboard-table .column-editable .data-text:hover, table.dashboard-table .column-editable body .header-menu .product-link .data-text:hover {
        position: relative; }
    body .header-menu .product-link > a:before, body .header-menu table.dashboard-table .column-editable .product-link > .data-text:hover:before, table.dashboard-table .column-editable body .header-menu .product-link > .data-text:hover:before {
      content: '\F0D7';
      position: absolute;
      top: 0;
      right: -1em;
      font-smoothing: antialiased;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
      font-family: FontAwesome; }
    body .header-menu .product-link--active > a:before, body .header-menu table.dashboard-table .column-editable .product-link--active > .data-text:hover:before, table.dashboard-table .column-editable body .header-menu .product-link--active > .data-text:hover:before {
      content: '\F0D8'; }
  body .subnav-container {
    display: block; }
  body .product-container,
  body .subnav-container {
    height: 35px;
    background: #23232c;
    border-bottom: 1px solid white;
    overflow: hidden; }
    body .product-container .subnav,
    body .subnav-container .subnav {
      position: relative;
      top: 1px; }
    body .product-container .subnav .subnav,
    body .subnav-container .subnav .subnav {
      display: none; }
    body .product-container .menu-item,
    body .subnav-container .menu-item {
      display: inline-block; }
      body .product-container .menu-item a, body .product-container .menu-item table.dashboard-table .column-editable .data-text:hover, table.dashboard-table .column-editable body .product-container .menu-item .data-text:hover,
      body .subnav-container .menu-item a,
      body .subnav-container .menu-item table.dashboard-table .column-editable .data-text:hover, table.dashboard-table .column-editable
      body .subnav-container .menu-item .data-text:hover {
        display: inline-block;
        padding: 0 1em;
        color: white;
        font-family: tradegothic_light, Helvetica, Arial, sans-serif;
        font-weight: normal;
        font-size: 13px;
        font-size: 1.3rem; }
      body .product-container .menu-item:after,
      body .subnav-container .menu-item:after {
        content: " | ";
        position: relative;
        top: 2px;
        color: white;
        opacity: 0.5; }
      body .product-container .menu-item.no-line:after, body .product-container .menu-item:last-child:after,
      body .subnav-container .menu-item.no-line:after,
      body .subnav-container .menu-item:last-child:after {
        display: none; }
    body .product-container .button,
    body .subnav-container .button {
      position: absolute;
      top: 0;
      right: 0.5em;
      z-index: 1; }
    body .product-container .product-menu,
    body .subnav-container .product-menu {
      display: none; }
  body .product-container {
    position: relative;
    z-index: 1;
    display: none;
    height: 40px;
    border-bottom: none;
    background: #4b67a9; }
    body .product-container .subnav {
      top: 3px; }
  body .subnav-container .current-menu-ancestor > a, body .subnav-container table.dashboard-table .column-editable .current-menu-ancestor > .data-text:hover, table.dashboard-table .column-editable body .subnav-container .current-menu-ancestor > .data-text:hover,
  body .subnav-container .current-menu-parent > a,
  body .subnav-container table.dashboard-table .column-editable .current-menu-parent > .data-text:hover, table.dashboard-table .column-editable
  body .subnav-container .current-menu-parent > .data-text:hover,
  body .subnav-container .current-menu-item > a,
  body .subnav-container table.dashboard-table .column-editable .current-menu-item > .data-text:hover, table.dashboard-table .column-editable
  body .subnav-container .current-menu-item > .data-text:hover,
  body .header-menu .current-menu-ancestor > a,
  body .header-menu table.dashboard-table .column-editable .current-menu-ancestor > .data-text:hover, table.dashboard-table .column-editable
  body .header-menu .current-menu-ancestor > .data-text:hover,
  body .header-menu .current-menu-parent > a,
  body .header-menu table.dashboard-table .column-editable .current-menu-parent > .data-text:hover, table.dashboard-table .column-editable
  body .header-menu .current-menu-parent > .data-text:hover,
  body .header-menu .current-menu-item > a,
  body .header-menu table.dashboard-table .column-editable .current-menu-item > .data-text:hover, table.dashboard-table .column-editable
  body .header-menu .current-menu-item > .data-text:hover {
    font-family: tradegothic, Helvetica, Arial, sans-serif;
    font-weight: bold; }
  body .header-menu .current-menu-ancestor > a, body .header-menu table.dashboard-table .column-editable .current-menu-ancestor > .data-text:hover, table.dashboard-table .column-editable body .header-menu .current-menu-ancestor > .data-text:hover,
  body .header-menu .current-menu-parent > a,
  body .header-menu table.dashboard-table .column-editable .current-menu-parent > .data-text:hover, table.dashboard-table .column-editable
  body .header-menu .current-menu-parent > .data-text:hover,
  body .header-menu .current-menu-item > a,
  body .header-menu table.dashboard-table .column-editable .current-menu-item > .data-text:hover, table.dashboard-table .column-editable
  body .header-menu .current-menu-item > .data-text:hover {
    position: relative; }
    body .header-menu .current-menu-ancestor > a:after, body .header-menu table.dashboard-table .column-editable .current-menu-ancestor > .data-text:hover:after, table.dashboard-table .column-editable body .header-menu .current-menu-ancestor > .data-text:hover:after,
    body .header-menu .current-menu-parent > a:after,
    body .header-menu table.dashboard-table .column-editable .current-menu-parent > .data-text:hover:after, table.dashboard-table .column-editable
    body .header-menu .current-menu-parent > .data-text:hover:after,
    body .header-menu .current-menu-item > a:after,
    body .header-menu table.dashboard-table .column-editable .current-menu-item > .data-text:hover:after, table.dashboard-table .column-editable
    body .header-menu .current-menu-item > .data-text:hover:after {
      content: ' ';
      position: absolute;
      bottom: -21px;
      left: 0;
      display: block;
      width: 100%;
      height: 3px;
      background: white; }
  body .subnav-container .arrow {
    position: relative;
    padding-right: 20px; }
    body .subnav-container .arrow:after {
      content: ' ';
      position: absolute;
      top: 1px;
      right: 7px;
      display: block;
      width: 30px;
      height: 30px;
      border-top: 1px solid white;
      border-right: 1px solid white;
      transform: rotate(45deg);
      opacity: 1; }
  body.about-section .subnav-container .contact-link a, body.about-section .subnav-container .contact-link table.dashboard-table .column-editable .data-text:hover, table.dashboard-table .column-editable body.about-section .subnav-container .contact-link .data-text:hover {
    font-family: tradegothic_light, Helvetica, Arial, sans-serif;
    font-weight: normal; }
  body .header-persona-top {
    display: block; }
  body .header-persona-top ul {
    position: absolute;
    top: 20px;
    right: 0.5em; }
  body .header-persona-top .menu-item {
    display: inline-block;
    text-transform: uppercase;
    font-family: tradegothic_light, Helvetica, Arial, sans-serif;
    font-weight: normal;
    font-size: 13px;
    font-size: 1.3rem;
    margin-left: 0.75em; }
  body .header-persona-top .menu-item a, body .header-persona-top .menu-item table.dashboard-table .column-editable .data-text:hover, table.dashboard-table .column-editable body .header-persona-top .menu-item .data-text:hover {
    display: inline-block;
    padding: 0;
    color: white; }
  body .header-persona-top .hidden {
    display: none; }
  body .header-persona-top .contact-sales-link {
    display: none; }
  body .header-persona-top .search-link {
    text-indent: -9999px;
    text-align: left; }
    body .header-persona-top .search-link a, body .header-persona-top .search-link table.dashboard-table .column-editable .data-text:hover, table.dashboard-table .column-editable body .header-persona-top .search-link .data-text:hover {
      position: relative;
      display: block;
      width: 20px;
      height: 20px;
      padding: 0; }
      body .header-persona-top .search-link a:before, body .header-persona-top .search-link table.dashboard-table .column-editable .data-text:hover:before, table.dashboard-table .column-editable body .header-persona-top .search-link .data-text:hover:before {
        content: '\F002';
        position: absolute;
        top: -3px;
        left: 0;
        display: block;
        width: 20px;
        height: 20px;
        font-size: 15px;
        font-family: FontAwesome;
        font-smoothing: antialiased;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
        text-indent: 0; }
  body.home .header-persona-top .menu-item a, body.home .header-persona-top .menu-item table.dashboard-table .column-editable .data-text:hover, table.dashboard-table .column-editable body.home .header-persona-top .menu-item .data-text:hover {
    color: #F37821; }
  body .promo-banner {
    position: absolute;
    display: block;
    width: 100%;
    z-index: 1000; }
  body .promo-banner {
    top: 133px; }
  body.admin-bar .promo-banner {
    top: 165px; }
  body.subnav--visible .promo-banner {
    top: 170px; }
  body.subnav--visible.admin-bar .promo-banner {
    top: 202px; }
  body.promotion.single-enterprise-product.threat-intelligence .banner-wrapper .banner {
    height: 543px; }
  body .promo-banner-wrapper a:hover, body .promo-banner-wrapper table.dashboard-table .column-editable .data-text:hover, table.dashboard-table .column-editable body .promo-banner-wrapper .data-text:hover, body .promo-banner-wrapper
  table.dashboard-table.table-striped tbody tr:nth-child(odd) td.column-editable .data-text:hover,
  table.dashboard-table.table-striped tbody tr:nth-child(odd) td.column-editable body .promo-banner-wrapper .data-text:hover {
    text-decoration: none; }
  body .promo-banner-wrapper.centered {
    text-align: center; }
  body .promo-banner-wrapper.right {
    text-align: right; }
  body .promo-banner-message {
    display: inline-block;
    padding: 0.25em 0.75em;
    border: 1px solid white;
    border-radius: 5px;
    background: rgba(28, 29, 31, 0.3); }
    body .promo-banner-message::after {
      clear: both;
      content: "";
      display: table; }
  body .promo-banner-message p {
    float: left;
    display: inline-block;
    padding: 0;
    font-size: 13px;
    color: white; }
  body .promo-banner-message.orange p {
    color: #c2601a; }
  body .promo-banner-message.blue p {
    color: #c2601a; }
  body .promo-banner-message.grey p {
    color: #1c1d1f; }
  body .promo-banner.no-stroke .promo-banner-message {
    border: none;
    background: none;
    padding: 0; }
    body .promo-banner.no-stroke .promo-banner-message p {
      font-size: 14px;
      font-size: 1.4rem; }
  body .promo-banner-cta:before {
    content: '|';
    display: inline-block;
    padding: 0 1.25em; }
  body .promo-banner-cta i {
    padding-left: 0.25em; }
  body .promo-banner-icon {
    position: relative;
    top: -3px;
    display: inline-block;
    width: 23px;
    height: 26px;
    margin-right: 5px;
    background-image: url(https://s3-us-west-1.amazonaws.com/webteam-cdn/opendns-www/img/icon-alert-white.png);
    background-repeat: no-repeat;
    background-size: 100%; }
  body .promo-banner.dark .promo-banner-message {
    border: 1px solid #1c1d1f;
    background: rgba(28, 29, 31, 0.2); }
  body .promo-banner.dark .promo-banner-message p {
    color: #1c1d1f; }
  body .promo-banner.dark .promo-banner-icon {
    background-image: url(https://s3-us-west-1.amazonaws.com/webteam-cdn/opendns-www/img/icon-alert-dark.png); }
  body #cisco-banner {
    position: absolute;
    left: 0;
    top: 0;
    height: 40px;
    z-index: 10000;
    overflow: hidden; }
    body #cisco-banner .cisco-banner-learn-more {
      width: 50%; }
    body #cisco-banner .cisco-banner-about {
      width: 20%; }
  body.admin-bar #cisco-banner {
    top: 32px; }
  body #qtip-search-box.qtip.search-box {
    z-index: 1100009 !important;
    width: 281px;
    height: 75px;
    padding: 0;
    border: 0 !important;
    border-radius: 0;
    box-shadow: 0 20px 40px 0 rgba(0, 0, 0, 0.3); }
    body #qtip-search-box.qtip.search-box:before, body #qtip-search-box.qtip.search-box:after {
      display: none;
      border: 0; }
    body #qtip-search-box.qtip.search-box .qtip-close {
      position: static; }
    body #qtip-search-box.qtip.search-box .qtip-icon {
      background: transparent;
      border: none; }
    body #qtip-search-box.qtip.search-box .ui-icon.ui-icon-close {
      position: absolute;
      top: -40px;
      right: 20px;
      width: 40px;
      height: 40px;
      padding-top: 15px;
      box-sizing: border-box;
      background: white;
      cursor: pointer;
      font-size: 14px;
      font-size: 1.4rem;
      text-align: center;
      border-radius: 0; }
    body #qtip-search-box.qtip.search-box .qtip-content {
      width: 251px !important;
      height: 35px !important;
      padding: 20px 15px !important;
      background: white !important;
      border-radius: 0;
      overflow: visible; }
      body #qtip-search-box.qtip.search-box .qtip-content form {
        width: 255px;
        height: 35px;
        border: 0;
        background: white;
        padding: 0;
        overflow: hidden; }
        body #qtip-search-box.qtip.search-box .qtip-content form::after {
          clear: both;
          content: "";
          display: table; }
      body #qtip-search-box.qtip.search-box .qtip-content label {
        display: none; }
      body #qtip-search-box.qtip.search-box .qtip-content hr {
        border: none;
        height: 1px;
        background: #dddad4;
        margin: -20px auto 2em; }
      body #qtip-search-box.qtip.search-box .qtip-content p {
        font-size: 13px;
        font-size: 1.3rem;
        text-align: center;
        font-family: tradegothic_light; }
      body #qtip-search-box.qtip.search-box .qtip-content span {
        background: white;
        padding: 10px; }
      body #qtip-search-box.qtip.search-box .qtip-content .text {
        border: 0;
        width: 190px;
        height: 35px;
        line-height: 20px;
        font-size: 13px;
        font-size: 1.3rem;
        padding: 0 5px;
        float: left;
        color: #292934;
        outline: none; }
      body #qtip-search-box.qtip.search-box .qtip-content .submit {
        float: right;
        display: block;
        height: 22px;
        width: 27px;
        padding: 0;
        margin: 3px 8px 3px 0;
        border-radius: 0;
        border: 0;
        cursor: pointer;
        background: white;
        text-decoration: none;
        color: #46494e;
        font-size: 20px;
        font-size: 2rem; }
        body #qtip-search-box.qtip.search-box .qtip-content .submit i {
          display: block;
          margin: -2px 0 0 5px; }
  body .header {
    position: absolute;
    top: 41px;
    left: 0;
    display: block;
    width: 100%;
    height: 62px;
    z-index: 1000001; }
    body .header .header-logo-img {
      height: 46px;
      margin: 8px 0 6px; }
    body .header .mobile-nav-wrapper {
      display: none; }
    body .header ul {
      list-style: none; }
    body .header.short .logo img {
      height: 35px; }
  body .header-offscreen-nav-trigger {
    top: 1px; }
  body.admin-bar .header {
    top: 73px; }
    body.admin-bar .header.sticky {
      top: 32px; }
  body .header.sticky {
    top: 0; }
  body.contact-us .header .header-persona-top .current-menu-item::after {
    content: none; }
  body.enterprise-security header .subnav-container .subnav .current-menu-item.products a:after, body.enterprise-security header .subnav-container .subnav .current-menu-item.products table.dashboard-table .column-editable .data-text:hover:after, table.dashboard-table .column-editable body.enterprise-security header .subnav-container .subnav .current-menu-item.products .data-text:hover:after {
    background: none; }
  body.msp-section .header .header-persona-top .contact-sales-link,
  body.business-section .header .header-persona-top .contact-sales-link {
    display: inline-block; }
  body.msp-section .header .header-persona-top .support-link,
  body.msp-section .header .header-persona-top .logout,
  body.msp-section .header .header-persona-top .login,
  body.about-section .header .header-persona-top .support-link,
  body.about-section .header .header-persona-top .logout,
  body.about-section .header .header-persona-top .login,
  body.personal-section .header .header-persona-top .support-link,
  body.personal-section .header .header-persona-top .logout,
  body.personal-section .header .header-persona-top .login,
  body.business-section .header .header-persona-top .support-link,
  body.business-section .header .header-persona-top .logout,
  body.business-section .header .header-persona-top .login {
    text-indent: -9999px;
    text-align: left; }
    body.msp-section .header .header-persona-top .support-link a, body.msp-section .header .header-persona-top .support-link table.dashboard-table .column-editable .data-text:hover, table.dashboard-table .column-editable body.msp-section .header .header-persona-top .support-link .data-text:hover,
    body.msp-section .header .header-persona-top .logout a,
    body.msp-section .header .header-persona-top .logout table.dashboard-table .column-editable .data-text:hover, table.dashboard-table .column-editable
    body.msp-section .header .header-persona-top .logout .data-text:hover,
    body.msp-section .header .header-persona-top .login a,
    body.msp-section .header .header-persona-top .login table.dashboard-table .column-editable .data-text:hover, table.dashboard-table .column-editable
    body.msp-section .header .header-persona-top .login .data-text:hover,
    body.about-section .header .header-persona-top .support-link a,
    body.about-section .header .header-persona-top .support-link table.dashboard-table .column-editable .data-text:hover, table.dashboard-table .column-editable
    body.about-section .header .header-persona-top .support-link .data-text:hover,
    body.about-section .header .header-persona-top .logout a,
    body.about-section .header .header-persona-top .logout table.dashboard-table .column-editable .data-text:hover, table.dashboard-table .column-editable
    body.about-section .header .header-persona-top .logout .data-text:hover,
    body.about-section .header .header-persona-top .login a,
    body.about-section .header .header-persona-top .login table.dashboard-table .column-editable .data-text:hover, table.dashboard-table .column-editable
    body.about-section .header .header-persona-top .login .data-text:hover,
    body.personal-section .header .header-persona-top .support-link a,
    body.personal-section .header .header-persona-top .support-link table.dashboard-table .column-editable .data-text:hover, table.dashboard-table .column-editable
    body.personal-section .header .header-persona-top .support-link .data-text:hover,
    body.personal-section .header .header-persona-top .logout a,
    body.personal-section .header .header-persona-top .logout table.dashboard-table .column-editable .data-text:hover, table.dashboard-table .column-editable
    body.personal-section .header .header-persona-top .logout .data-text:hover,
    body.personal-section .header .header-persona-top .login a,
    body.personal-section .header .header-persona-top .login table.dashboard-table .column-editable .data-text:hover, table.dashboard-table .column-editable
    body.personal-section .header .header-persona-top .login .data-text:hover,
    body.business-section .header .header-persona-top .support-link a,
    body.business-section .header .header-persona-top .support-link table.dashboard-table .column-editable .data-text:hover, table.dashboard-table .column-editable
    body.business-section .header .header-persona-top .support-link .data-text:hover,
    body.business-section .header .header-persona-top .logout a,
    body.business-section .header .header-persona-top .logout table.dashboard-table .column-editable .data-text:hover, table.dashboard-table .column-editable
    body.business-section .header .header-persona-top .logout .data-text:hover,
    body.business-section .header .header-persona-top .login a,
    body.business-section .header .header-persona-top .login table.dashboard-table .column-editable .data-text:hover, table.dashboard-table .column-editable
    body.business-section .header .header-persona-top .login .data-text:hover {
      position: relative;
      display: block;
      width: 20px;
      height: 20px;
      padding: 0; }
      body.msp-section .header .header-persona-top .support-link a:before, body.msp-section .header .header-persona-top .support-link table.dashboard-table .column-editable .data-text:hover:before, table.dashboard-table .column-editable body.msp-section .header .header-persona-top .support-link .data-text:hover:before,
      body.msp-section .header .header-persona-top .logout a:before,
      body.msp-section .header .header-persona-top .logout table.dashboard-table .column-editable .data-text:hover:before, table.dashboard-table .column-editable
      body.msp-section .header .header-persona-top .logout .data-text:hover:before,
      body.msp-section .header .header-persona-top .login a:before,
      body.msp-section .header .header-persona-top .login table.dashboard-table .column-editable .data-text:hover:before, table.dashboard-table .column-editable
      body.msp-section .header .header-persona-top .login .data-text:hover:before,
      body.about-section .header .header-persona-top .support-link a:before,
      body.about-section .header .header-persona-top .support-link table.dashboard-table .column-editable .data-text:hover:before, table.dashboard-table .column-editable
      body.about-section .header .header-persona-top .support-link .data-text:hover:before,
      body.about-section .header .header-persona-top .logout a:before,
      body.about-section .header .header-persona-top .logout table.dashboard-table .column-editable .data-text:hover:before, table.dashboard-table .column-editable
      body.about-section .header .header-persona-top .logout .data-text:hover:before,
      body.about-section .header .header-persona-top .login a:before,
      body.about-section .header .header-persona-top .login table.dashboard-table .column-editable .data-text:hover:before, table.dashboard-table .column-editable
      body.about-section .header .header-persona-top .login .data-text:hover:before,
      body.personal-section .header .header-persona-top .support-link a:before,
      body.personal-section .header .header-persona-top .support-link table.dashboard-table .column-editable .data-text:hover:before, table.dashboard-table .column-editable
      body.personal-section .header .header-persona-top .support-link .data-text:hover:before,
      body.personal-section .header .header-persona-top .logout a:before,
      body.personal-section .header .header-persona-top .logout table.dashboard-table .column-editable .data-text:hover:before, table.dashboard-table .column-editable
      body.personal-section .header .header-persona-top .logout .data-text:hover:before,
      body.personal-section .header .header-persona-top .login a:before,
      body.personal-section .header .header-persona-top .login table.dashboard-table .column-editable .data-text:hover:before, table.dashboard-table .column-editable
      body.personal-section .header .header-persona-top .login .data-text:hover:before,
      body.business-section .header .header-persona-top .support-link a:before,
      body.business-section .header .header-persona-top .support-link table.dashboard-table .column-editable .data-text:hover:before, table.dashboard-table .column-editable
      body.business-section .header .header-persona-top .support-link .data-text:hover:before,
      body.business-section .header .header-persona-top .logout a:before,
      body.business-section .header .header-persona-top .logout table.dashboard-table .column-editable .data-text:hover:before, table.dashboard-table .column-editable
      body.business-section .header .header-persona-top .logout .data-text:hover:before,
      body.business-section .header .header-persona-top .login a:before,
      body.business-section .header .header-persona-top .login table.dashboard-table .column-editable .data-text:hover:before, table.dashboard-table .column-editable
      body.business-section .header .header-persona-top .login .data-text:hover:before {
        position: absolute;
        left: 0;
        display: block;
        width: 20px;
        height: 20px;
        font-family: FontAwesome;
        font-smoothing: antialiased;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
        text-indent: 0; }
  body.msp-section .header .header-persona-top .support-link a:before, body.msp-section .header .header-persona-top .support-link table.dashboard-table .column-editable .data-text:hover:before, table.dashboard-table .column-editable body.msp-section .header .header-persona-top .support-link .data-text:hover:before,
  body.about-section .header .header-persona-top .support-link a:before,
  body.about-section .header .header-persona-top .support-link table.dashboard-table .column-editable .data-text:hover:before, table.dashboard-table .column-editable
  body.about-section .header .header-persona-top .support-link .data-text:hover:before,
  body.personal-section .header .header-persona-top .support-link a:before,
  body.personal-section .header .header-persona-top .support-link table.dashboard-table .column-editable .data-text:hover:before, table.dashboard-table .column-editable
  body.personal-section .header .header-persona-top .support-link .data-text:hover:before,
  body.business-section .header .header-persona-top .support-link a:before,
  body.business-section .header .header-persona-top .support-link table.dashboard-table .column-editable .data-text:hover:before, table.dashboard-table .column-editable
  body.business-section .header .header-persona-top .support-link .data-text:hover:before {
    content: '\F1CD';
    top: -3px;
    font-size: 16px; }
  body.msp-section .header .header-persona-top .logout a:before, body.msp-section .header .header-persona-top .logout table.dashboard-table .column-editable .data-text:hover:before, table.dashboard-table .column-editable body.msp-section .header .header-persona-top .logout .data-text:hover:before,
  body.about-section .header .header-persona-top .logout a:before,
  body.about-section .header .header-persona-top .logout table.dashboard-table .column-editable .data-text:hover:before, table.dashboard-table .column-editable
  body.about-section .header .header-persona-top .logout .data-text:hover:before,
  body.personal-section .header .header-persona-top .logout a:before,
  body.personal-section .header .header-persona-top .logout table.dashboard-table .column-editable .data-text:hover:before, table.dashboard-table .column-editable
  body.personal-section .header .header-persona-top .logout .data-text:hover:before,
  body.business-section .header .header-persona-top .logout a:before,
  body.business-section .header .header-persona-top .logout table.dashboard-table .column-editable .data-text:hover:before, table.dashboard-table .column-editable
  body.business-section .header .header-persona-top .logout .data-text:hover:before {
    content: '\F0E4';
    top: -5px;
    font-size: 18px; }
  body.msp-section .header .header-persona-top .login a:before, body.msp-section .header .header-persona-top .login table.dashboard-table .column-editable .data-text:hover:before, table.dashboard-table .column-editable body.msp-section .header .header-persona-top .login .data-text:hover:before,
  body.about-section .header .header-persona-top .login a:before,
  body.about-section .header .header-persona-top .login table.dashboard-table .column-editable .data-text:hover:before, table.dashboard-table .column-editable
  body.about-section .header .header-persona-top .login .data-text:hover:before,
  body.personal-section .header .header-persona-top .login a:before,
  body.personal-section .header .header-persona-top .login table.dashboard-table .column-editable .data-text:hover:before, table.dashboard-table .column-editable
  body.personal-section .header .header-persona-top .login .data-text:hover:before,
  body.business-section .header .header-persona-top .login a:before,
  body.business-section .header .header-persona-top .login table.dashboard-table .column-editable .data-text:hover:before, table.dashboard-table .column-editable
  body.business-section .header .header-persona-top .login .data-text:hover:before {
    content: '\F090';
    top: -4px;
    font-size: 18px; }
  body.subnav--visible .product-container {
    top: -36px; } }

.offscreen-nav-container {
  height: 100%;
  padding-bottom: 1em;
  margin-top: 1em;
  overflow-y: auto; }

.offscreen-nav {
  position: fixed;
  top: 0;
  right: 100%;
  z-index: 1000003;
  display: block;
  box-sizing: border-box;
  width: 250px;
  height: 100%;
  padding-top: 50px;
  background: #292934; }
  .offscreen-nav:before {
    content: ' ';
    position: absolute;
    top: 0;
    right: 100%;
    display: block;
    width: 1600px;
    height: 100%;
    background: #292934; }
  .offscreen-nav a, .offscreen-nav table.dashboard-table .column-editable .data-text:hover, table.dashboard-table .column-editable .offscreen-nav .data-text:hover, .offscreen-nav
  table.dashboard-table.table-striped tbody tr:nth-child(odd) td.column-editable .data-text:hover,
  table.dashboard-table.table-striped tbody tr:nth-child(odd) td.column-editable .offscreen-nav .data-text:hover {
    color: white;
    text-transform: uppercase;
    font-family: tradegothic, Helvetica, Arial, sans-serif;
    font-size: 14px; }
  .offscreen-nav .search-link {
    text-indent: -9999px;
    text-align: left; }
    .offscreen-nav .search-link a, .offscreen-nav .search-link table.dashboard-table .column-editable .data-text:hover, table.dashboard-table .column-editable .offscreen-nav .search-link .data-text:hover {
      position: relative;
      display: block;
      width: 16px;
      height: 34px;
      padding: 0; }
      .offscreen-nav .search-link a:before, .offscreen-nav .search-link table.dashboard-table .column-editable .data-text:hover:before, table.dashboard-table .column-editable .offscreen-nav .search-link .data-text:hover:before {
        content: '\F002';
        position: absolute;
        top: 4px;
        left: 0;
        display: block;
        width: 16px;
        height: 34px;
        font-family: FontAwesome;
        font-smoothing: antialiased;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
        text-indent: 0; }
  .offscreen-nav .menu a, .offscreen-nav .menu table.dashboard-table .column-editable .data-text:hover, table.dashboard-table .column-editable .offscreen-nav .menu .data-text:hover {
    color: #bfbfbf; }

.offscreen-nav-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 20px;
  height: 20px;
  cursor: pointer; }
  .offscreen-nav-close:before, .offscreen-nav-close:after {
    content: ' ';
    position: absolute;
    top: 8px;
    left: 0;
    display: block;
    width: 20px;
    height: 3px;
    background: #bfbfbf; }
  .offscreen-nav-close:before {
    transform: rotate(45deg); }
  .offscreen-nav-close:after {
    transform: rotate(-45deg); }

.offscreen-nav-menu {
  padding: 0; }
  .offscreen-nav-menu .button {
    display: none; }
  .offscreen-nav-menu .subnav {
    display: none;
    padding-bottom: 0;
    list-style: none; }
    .offscreen-nav-menu .subnav .subnav a, .offscreen-nav-menu .subnav .subnav table.dashboard-table .column-editable .data-text:hover, table.dashboard-table .column-editable .offscreen-nav-menu .subnav .subnav .data-text:hover {
      color: #bfbfbf; }

.offscreen-nav .offscreen-nav-section-heading {
  font-size: 18px; }

#menu-header-nav-business .offscreen-nav-section-heading {
  color: #7e9adc; }

#menu-header-nav-msp .offscreen-nav-section-heading {
  color: #98D04F; }

#menu-header-nav-personal .offscreen-nav-section-heading {
  color: #FFCC00; }

#menu-header-nav-business .product-link > .subnav {
  padding-left: 0.5em; }

.offscreen-nav-logo {
  width: 100px; }

.offscreen-nav-scrim {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000002;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4); }

footer {
  padding-top: 2.75em;
  margin-top: 4em;
  font-family: tradegothic_light;
  background: #2d2d39;
  letter-spacing: 0.05em; }

footer .top .title {
  position: relative;
  display: inline-block;
  padding: 0 0.5em 1.25em 0.5em;
  margin: 0 auto;
  background: #2d2d39;
  color: #828282;
  font-size: 18px;
  font-size: 1.8rem;
  line-height: 1;
  text-transform: uppercase;
  z-index: 1;
  font-family: tradegothic_light, Helvetica, Arial, sans-serif;
  font-weight: normal; }

footer .top .phone-number {
  display: inline-block;
  margin-bottom: 1.5em;
  color: #dbdbdb;
  font-size: 15px;
  font-size: 1.5rem;
  letter-spacing: 2pt; }

footer .top .columns {
  float: left;
  display: block;
  margin-right: 3.57866%;
  width: 100%;
  position: relative; }
  footer .top .columns:last-child {
    margin-right: 0; }
  footer .top .columns:after {
    content: ' ';
    position: absolute;
    left: 0;
    top: 0.5em;
    display: block;
    width: 100%;
    height: 0;
    border-bottom: 1px solid #8f8f8f; }

footer .top ul {
  list-style: none; }
  footer .top ul li {
    line-height: 1;
    padding-bottom: 0;
    font-size: 13px;
    font-size: 1.3rem; }

footer .top a, footer .top table.dashboard-table .column-editable .data-text:hover, table.dashboard-table .column-editable footer .top .data-text:hover, footer .top
table.dashboard-table.table-striped tbody tr:nth-child(odd) td.column-editable .data-text:hover,
table.dashboard-table.table-striped tbody tr:nth-child(odd) td.column-editable footer .top .data-text:hover {
  display: block;
  padding: 0.75em 0;
  margin-bottom: 0.25em;
  background: rgba(255, 255, 255, 0.025);
  color: #a8a8a8;
  font-size: 17px;
  font-size: 1.7rem;
  text-align: center;
  letter-spacing: 1pt; }
  footer .top a:hover, footer .top table.dashboard-table .column-editable .data-text:hover, table.dashboard-table .column-editable footer .top .data-text:hover, footer .top
  table.dashboard-table.table-striped tbody tr:nth-child(odd) td.column-editable .data-text:hover,
  table.dashboard-table.table-striped tbody tr:nth-child(odd) td.column-editable footer .top .data-text:hover {
    color: #a8a8a8;
    background: rgba(255, 255, 255, 0.05);
    text-decoration: none; }

footer .top .contact-info {
  display: inline-block; }
  footer .top .contact-info .title {
    display: inline-block; }

footer .top .right-column {
  text-align: center; }

footer .top .social {
  display: block;
  width: 190px;
  padding: 0;
  padding-bottom: 2.5em;
  margin: 0 auto 2.5em auto;
  list-style: none; }
  footer .top .social li {
    float: left;
    padding-bottom: 0; }
    footer .top .social li a, footer .top .social li table.dashboard-table .column-editable .data-text:hover, table.dashboard-table .column-editable footer .top .social li .data-text:hover {
      display: inline-block;
      width: 25px;
      height: 25px;
      padding: 0;
      margin: 0 10px 0 0;
      color: white;
      font-size: 16px;
      font-size: 1.6rem;
      text-align: center; }
      footer .top .social li a span, footer .top .social li table.dashboard-table .column-editable .data-text:hover span, table.dashboard-table .column-editable footer .top .social li .data-text:hover span {
        display: none; }
      footer .top .social li a i:before, footer .top .social li table.dashboard-table .column-editable .data-text:hover i:before, table.dashboard-table .column-editable footer .top .social li .data-text:hover i:before {
        position: relative;
        top: 6px; }
      footer .top .social li a.spiceworks, footer .top .social li table.dashboard-table .column-editable .spiceworks.data-text:hover, table.dashboard-table .column-editable footer .top .social li .spiceworks.data-text:hover {
        background: url("https://d15ni2z53ptwz9.cloudfront.net/opendns-www/img/icon-spiceworks.svg") no-repeat; }
        footer .top .social li a.spiceworks:hover, footer .top .social li table.dashboard-table .column-editable .spiceworks.data-text:hover, table.dashboard-table .column-editable footer .top .social li .spiceworks.data-text:hover {
          background: linear-gradient(rgba(255, 255, 255, 0.25), rgba(255, 255, 255, 0.25)), url("https://d15ni2z53ptwz9.cloudfront.net/opendns-www/img/icon-spiceworks.svg"); }
      footer .top .social li a.twitter, footer .top .social li table.dashboard-table .column-editable .twitter.data-text:hover, table.dashboard-table .column-editable footer .top .social li .twitter.data-text:hover {
        background: #56c7f2; }
        footer .top .social li a.twitter:hover, footer .top .social li table.dashboard-table .column-editable .twitter.data-text:hover, table.dashboard-table .column-editable footer .top .social li .twitter.data-text:hover {
          background: #85d7f6; }
      footer .top .social li a.facebook, footer .top .social li table.dashboard-table .column-editable .facebook.data-text:hover, table.dashboard-table .column-editable footer .top .social li .facebook.data-text:hover {
        background: #4e7ac3; }
        footer .top .social li a.facebook:hover, footer .top .social li table.dashboard-table .column-editable .facebook.data-text:hover, table.dashboard-table .column-editable footer .top .social li .facebook.data-text:hover {
          background: #7497d0; }
      footer .top .social li a.google-plus, footer .top .social li table.dashboard-table .column-editable .google-plus.data-text:hover, table.dashboard-table .column-editable footer .top .social li .google-plus.data-text:hover {
        background: #f65523; }
        footer .top .social li a.google-plus:hover, footer .top .social li table.dashboard-table .column-editable .google-plus.data-text:hover, table.dashboard-table .column-editable footer .top .social li .google-plus.data-text:hover {
          background: #f87b54; }
      footer .top .social li a.linkedin, footer .top .social li table.dashboard-table .column-editable .linkedin.data-text:hover, table.dashboard-table .column-editable footer .top .social li .linkedin.data-text:hover {
        background: #057ab2; }
        footer .top .social li a.linkedin:hover, footer .top .social li table.dashboard-table .column-editable .linkedin.data-text:hover, table.dashboard-table .column-editable footer .top .social li .linkedin.data-text:hover {
          background: #069ce4; }
    footer .top .social li:last-child a, footer .top .social li:last-child table.dashboard-table .column-editable .data-text:hover, table.dashboard-table .column-editable footer .top .social li:last-child .data-text:hover {
      margin-right: 0; }

footer .bottom {
  position: relative;
  padding-bottom: 2.25em;
  background: #262631; }
  footer .bottom a, footer .bottom table.dashboard-table .column-editable .data-text:hover, table.dashboard-table .column-editable footer .bottom .data-text:hover, footer .bottom
  table.dashboard-table.table-striped tbody tr:nth-child(odd) td.column-editable .data-text:hover,
  table.dashboard-table.table-striped tbody tr:nth-child(odd) td.column-editable footer .bottom .data-text:hover {
    color: #a8a8a8;
    font-size: 13px;
    font-size: 1.3rem; }
    footer .bottom a:hover, footer .bottom table.dashboard-table .column-editable .data-text:hover, table.dashboard-table .column-editable footer .bottom .data-text:hover, footer .bottom
    table.dashboard-table.table-striped tbody tr:nth-child(odd) td.column-editable .data-text:hover,
    table.dashboard-table.table-striped tbody tr:nth-child(odd) td.column-editable footer .bottom .data-text:hover {
      color: #b5b5b5; }
  footer .bottom p {
    padding: 10px 0;
    font-size: 13px;
    font-size: 1.3rem;
    line-height: 1.7;
    color: #a8a8a8;
    text-align: center; }
  footer .bottom .ips {
    margin-left: 2em;
    font-family: 'tradegothic_cn';
    font-size: 20px;
    font-size: 2rem;
    color: #F37821; }
  footer .bottom ul {
    padding-bottom: 1.25em;
    text-align: center; }
    footer .bottom ul li {
      display: inline-block;
      padding: 0.5em;
      line-height: 1; }
      footer .bottom ul li.hidden {
        display: none; }

@media screen and (min-width: 59.5em) {
  body footer .top .main-column {
    position: relative; }
    body footer .top .main-column:after {
      content: ' ';
      display: block;
      position: absolute;
      right: 0;
      top: 0;
      width: 0;
      height: 140px;
      border-right: 1px solid #46494e; }
  body footer .top a, body footer .top table.dashboard-table .column-editable .data-text:hover, table.dashboard-table .column-editable body footer .top .data-text:hover, body footer .top
  table.dashboard-table.table-striped tbody tr:nth-child(odd) td.column-editable .data-text:hover,
  table.dashboard-table.table-striped tbody tr:nth-child(odd) td.column-editable body footer .top .data-text:hover {
    display: inline;
    padding: 0;
    margin: 0;
    font-size: 13px;
    font-size: 1.3rem;
    line-height: 1.7;
    text-align: left;
    background: transparent; }
    body footer .top a:hover, body footer .top table.dashboard-table .column-editable .data-text:hover, table.dashboard-table .column-editable body footer .top .data-text:hover, body footer .top
    table.dashboard-table.table-striped tbody tr:nth-child(odd) td.column-editable .data-text:hover,
    table.dashboard-table.table-striped tbody tr:nth-child(odd) td.column-editable body footer .top .data-text:hover {
      color: #b5b5b5;
      background: transparent;
      text-decoration: underline; }
  body footer .top .title {
    width: auto;
    padding: 0 0 1.25em 0;
    text-align: left; }
  body footer .top .columns {
    float: left;
    display: block;
    margin-right: 1.16509%;
    width: 28.34139%;
    margin-left: 2em; }
    body footer .top .columns:last-child {
      margin-right: 0; }
    body footer .top .columns:first-child {
      margin-left: 0; }
    body footer .top .columns:after {
      display: none; }
  body footer .top .phone-number {
    padding-bottom: 1em;
    margin-bottom: 1.5em;
    border-bottom: 1px solid #46494e; }
  body footer .top .social {
    padding: 0;
    margin: 0; }
  body footer .top .social li a i:before, body footer .top .social li table.dashboard-table .column-editable .data-text:hover i:before, table.dashboard-table .column-editable body footer .top .social li .data-text:hover i:before {
    top: -1px;
    left: 2px; }
  body footer .top .right-column {
    text-align: left; }
  body footer .bottom p {
    text-align: left; }
  body footer .bottom ul {
    position: absolute;
    top: 0;
    right: 0;
    padding: 20px 0;
    text-align: left; }
    body footer .bottom ul li {
      display: inline-block;
      padding: 0;
      margin-left: 1em; } }

.persona-top {
  padding-bottom: 32px; }

body.about .about-li a, body.about .about-li table.dashboard-table .column-editable .data-text:hover, table.dashboard-table .column-editable body.about .about-li .data-text:hover {
  font-family: tradegothic;
  font-weight: bold; }

body.company-history .company-history-li a, body.company-history .company-history-li table.dashboard-table .column-editable .data-text:hover, table.dashboard-table .column-editable body.company-history .company-history-li .data-text:hover {
  font-family: tradegothic;
  font-weight: bold; }

body.leadership .leadership-li a, body.leadership .leadership-li table.dashboard-table .column-editable .data-text:hover, table.dashboard-table .column-editable body.leadership .leadership-li .data-text:hover {
  font-family: tradegothic;
  font-weight: bold; }

body.innovations .innovations-li a, body.innovations .innovations-li table.dashboard-table .column-editable .data-text:hover, table.dashboard-table .column-editable body.innovations .innovations-li .data-text:hover {
  font-family: tradegothic;
  font-weight: bold; }

/*

Theme Name: OpenDNS
Description: Based on Carrington JAM by Crowd Favorite.
Version: 1.0
Author: OpenDNS
Author URI: http://www.opendns.com

*/
/* including for compatibility */
.alignleft {
  float: left;
  margin-right: 1em;
  margin-bottom: 1em; }

.alignright {
  float: right;
  margin-left: 1em;
  margin-bottom: 1em; }

.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto; }

.wp-caption {
  border: 1px solid #ddd;
  text-align: center;
  background-color: #f3f3f3;
  padding-top: 4px;
  margin: 10px;
  /* optional rounded corners for browsers that support it */
  border-radius: 3px; }

.wp-caption img {
  margin: 0;
  padding: 0;
  border: 0 none; }

.wp-caption p.wp-caption-text {
  font-size: 11px;
  line-height: 17px;
  padding: 0 4px 5px;
  margin: 0; }
