:root {
  --yellow: #FFD100; 
  --gold: #FFB500;

  /* change this only using a var above */
  --yellow-or-gold: var(--gold);
}
.nowrap {
  white-space: nowrap;
}


/* Basic global styles */
body {
  font-size: 1em;
  line-height: 1.6;
  background: #f5f5f5;
  -moz-tab-size: 4;
  -o-tab-size: 4;
  tab-size: 4;
  margin: 0;
}

html,
button,
input,
select,
textarea {
  color: #666;
}

a {
  color: #d95b5b;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: Novecento, sans-serif;
}

/* Select styles */
::-moz-selection {
  background: #4d4d4d;
  color: #fff;
  text-shadow: -1px -1px 0 #222;
}

::selection {
  background: #4d4d4d;
  color: #fff;
  text-shadow: -1px -1px 0 #222;
}

/* Element styles */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #ccc;
  margin: 1em 0;
  padding: 0;
}

img {
  vertical-align: middle;
}

form {
  margin: 0 0 15px;
}

fieldset {
  padding: 0;
  margin: 0;
  border: 0;
}

legend {
  display: block;
  width: 100%;
  padding: 0;
  margin-bottom: 25px;
  font-size: 21px;
  line-height: 40px;
  border: 0;
  border-bottom: 1px solid #e5e5e5;
}

legend small {
  font-size: 15px;
  color: #999999;
}

label,
input,
button,
select,
textarea {
  font-weight: normal;
}

label {
  display: block;
  margin-bottom: 5px;
}

select,
textarea,
input[type="text"],
input[type="password"],
input[type="datetime"],
input[type="datetime-local"],
input[type="date"],
input[type="month"],
input[type="time"],
input[type="week"],
input[type="number"],
input[type="email"],
input[type="url"],
input[type="search"],
input[type="tel"],
input[type="color"] {
  display: inline-block;
  height: 20px;
  padding: 8px 10px;
  margin-bottom: 10px;
  line-height: 1.6;
  vertical-align: middle;
  border: 0;
  border-bottom: 1px solid #ddd;
}

input[type="file"],
input[type="image"],
input[type="submit"],
input[type="reset"],
input[type="button"],
input[type="radio"],
input[type="checkbox"] {
  width: auto;
}

select,
input[type="file"] {
  height: 37px;
  *margin-top: 4px;
  line-height: 37px;
}

select {
  width: 220px;
}

select[multiple],
select[size] {
  height: auto;
}

textarea:focus,
input[type="text"]:focus,
input[type="password"]:focus,
input[type="datetime"]:focus,
input[type="datetime-local"]:focus,
input[type="date"]:focus,
input[type="month"]:focus,
input[type="time"]:focus,
input[type="week"]:focus,
input[type="number"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="search"]:focus,
input[type="tel"]:focus,
input[type="color"]:focus {
  outline: 0;
  outline: thin dotted \9;
  /* IE6-9 */
  color: #fff;
  background: #3a3c47;
}

input,
textarea {
  width: 200px;
}

textarea {
  height: auto;
  resize: vertical;
}

input:-moz-placeholder,
textarea:-moz-placeholder,
input:-ms-input-placeholder,
textarea:-ms-input-placeholder,
input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
  color: #999999;
}

kbd {
  display: inline-block;
  margin: 0 0.1em;
  padding: 0.1em 0.6em;
  font-size: 14px;
  line-height: 1.4;
  font-family: sans-serif;
  white-space: nowrap;
  background-color: #fff;
  border: 1px solid #CCC;
  border-radius: 2px;
  -webkit-box-shadow: 0 1px 0px rgba(0, 0, 0, 0.2);
  box-shadow: 0 1px 0px rgba(0, 0, 0, 0.2);
}

script {
  display: none !important;
  width: 0 !important;
  height: 0 !important;
  overflow: hidden !important;
}

/* ==========================================================================
   Components
   ========================================================================== */
/* Chromeframe */
.chromeframe {
  margin: 0;
  padding: 1.5em 2em;
  background: #d95b5b;
  color: #fff;
  text-align: center;
}

.chromeframe .icon-warning-sign {
  margin: 0 10px;
}

.chromeframe a {
  color: #fff;
  text-decoration: underline;
}

.chromeframe a:hover {
  text-decoration: none;
}

/* Text colors */
.text-grey {
  color: #999;
}

.text-red {
  color: #d95b5b;
}

.text-green {
  color: #82bf4c;
}

.text-blue {
  color: #6b9fd6;
}

.text-yellow {
  color: #efcd76;
}

.text-dark {
  color: #3a3c47;
}

/* Text alignment */
.text-center {
  text-align: center;
}

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

/* Typography */
p {
  margin: 0 0 25px;
}

small {
  font-size: .8em;
}

h1 small,
h2 small,
h3 small,
h4 small,
h5 small,
h6 small {
  opacity: .6;
}

ul,
ol {
  padding: 0;
  margin: 0 0 25px 25px;
}

ul ul,
ul ol,
ol ol,
ol ul {
  margin-bottom: 0;
}

ul.inline,
ol.inline {
  margin-left: 0;
  list-style: none;
}

ul.inline>li,
ol.inline>li {
  display: inline-block;
  padding: 0 10px 0 0;
}

ul.unstyled,
ol.unstyled {
  margin-left: 0;
  list-style: none;
}

dl {
  margin-bottom: 25px;
}

dt {
  font-weight: bold;
}

dd {
  margin-left: 10px;
}

dl.horizontal {
  *zoom: 1;
}

dl.horizontal:before,
dl.horizontal:after {
  display: table;
  line-height: 0;
  content: "";
}

dl.horizontal:after {
  clear: both;
}

dl.horizontal dt {
  float: left;
  width: 160px;
  overflow: hidden;
  clear: left;
  text-align: right;
  text-overflow: ellipsis;
  white-space: nowrap;
}

dl.horizontal dd {
  margin-left: 180px;
}

hr {
  margin: 25px 0;
  border: 0;
  height: 0;
  overflow: hidden;
  border-bottom: 1px solid #ccc;
}

blockquote {
  padding: 20px 25px;
  margin: 0 20px 25px;
  font-family: Georgia, serif;
  font-style: italic;
  overflow: hidden;
  border: 1px solid #eee;
  border-bottom-color: #ddd;
  border-top-color: #f1f1f1;
  background: #fff;
}

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

blockquote.right {
  text-align: right;
}

blockquote p {
  margin: 0;
}

blockquote small {
  display: block;
  margin-top: 5px;
  color: #999;
}

blockquote small:before {
  content: '\2014 \00A0';
}

blockquote.right small:before {
  content: '';
}

blockquote.right small:after {
  content: '\00A0 \2014';
}

code,
pre {
  font-family: Monaco, Menlo, Consolas, "Courier New", monospace;
  background: #fff;
}

code {
  padding: 2px 4px;
  white-space: nowrap;
  vertical-align: middle;
  border-bottom: 1px solid #ddd;
}

pre {
  display: block;
  padding: 10px 14px;
  margin: 0 0 25px;
  word-break: break-all;
  word-wrap: break-word;
  white-space: pre;
  white-space: pre-wrap;
}

pre code {
  padding: 0;
  border: 0;
  word-break: break-all;
  word-wrap: break-word;
  white-space: pre;
  white-space: pre-wrap;
  background-color: transparent;
}

pre.scrollable {
  max-height: 340px;
  overflow-y: scroll;
}

.text-large {
  font-size: 1.4em;
  line-height: 1.6;
}

/* Rainbow theme */
pre {
  background: #363840;
  color: #f1f2f3;
  text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.3);
}

pre .comment {
  color: #888;
}

pre .constant {
  color: #A0E2AD;
}

pre .storage {
  color: #A0E2AD;
}

pre .string,
pre .comment.docstring {
  color: #A0E2AD;
}

pre .string.regexp,
pre .support.tag.script,
pre .support.tag.style {
  color: #fff;
}

pre .keyword {
  font-weight: bold;
  color: #c1c1c1;
}

pre .operator {
  color: #aaa;
}

pre .inherited-class {
  font-style: italic;
}

pre .support,
*[data-language="csharp"] .function.call {
  color: #facd22;
}

pre .attribute,
pre .numeric,
pre .integer {
  color: #F3673A;
}

pre .variable.global,
pre .variable.class,
pre .variable.instance {
  color: #ccc;
}

/* Tables */
table {
  max-width: 100%;
  background-color: transparent;
  border-collapse: collapse;
  border-spacing: 0;
}

.table {
  width: 100%;
  margin-bottom: 25px;
}

.table th,
.table td {
  padding: 8px;
  text-align: left;
  vertical-align: top;
  border-top: 1px solid #ddd;
  border-color: rgba(0, 0, 0, 0.06);
}

.table th {
  font-weight: bold;
}

.table thead th {
  vertical-align: bottom;
}

.table caption+thead tr:first-child th,
.table caption+thead tr:first-child td,
.table colgroup+thead tr:first-child th,
.table colgroup+thead tr:first-child td,
.table thead:first-child tr:first-child th,
.table thead:first-child tr:first-child td {
  border-top: 0;
}

.table tbody+tbody {
  border-top: 2px solid #ddd;
  border-color: rgba(0, 0, 0, 0.06);
}

.table-condensed th,
.table-condensed td {
  padding: 4px 5px;
}

.table-bordered {
  border: 1px solid #ddd;
  border-color: rgba(0, 0, 0, 0.06);
  border-collapse: separate;
  *border-collapse: collapse;
  border-left: 0;
}

.table-bordered th,
.table-bordered td {
  border-left: 1px solid #ddd;
  border-color: rgba(0, 0, 0, 0.06);
}

.table-bordered caption+thead tr:first-child th,
.table-bordered caption+tbody tr:first-child th,
.table-bordered caption+tbody tr:first-child td,
.table-bordered colgroup+thead tr:first-child th,
.table-bordered colgroup+tbody tr:first-child th,
.table-bordered colgroup+tbody tr:first-child td,
.table-bordered thead:first-child tr:first-child th,
.table-bordered tbody:first-child tr:first-child th,
.table-bordered tbody:first-child tr:first-child td {
  border-top: 0;
}

.table-striped tbody>tr:nth-child(odd)>td,
.table-striped tbody>tr:nth-child(odd)>th {
  background-color: #f9f9f9;
}

table td[class*="span"],
table th[class*="span"],
.row-fluid table td[class*="span"],
.row-fluid table th[class*="span"] {
  display: table-cell;
  float: none;
  margin-left: 0;
}

.table td.span1,
.table th.span1 {
  float: none;
  width: 44px;
  margin-left: 0;
}

.table td.span2,
.table th.span2 {
  float: none;
  width: 124px;
  margin-left: 0;
}

.table td.span3,
.table th.span3 {
  float: none;
  width: 204px;
  margin-left: 0;
}

.table td.span4,
.table th.span4 {
  float: none;
  width: 284px;
  margin-left: 0;
}

.table td.span5,
.table th.span5 {
  float: none;
  width: 364px;
  margin-left: 0;
}

.table td.span6,
.table th.span6 {
  float: none;
  width: 444px;
  margin-left: 0;
}

.table td.span7,
.table th.span7 {
  float: none;
  width: 524px;
  margin-left: 0;
}

.table td.span8,
.table th.span8 {
  float: none;
  width: 604px;
  margin-left: 0;
}

.table td.span9,
.table th.span9 {
  float: none;
  width: 684px;
  margin-left: 0;
}

.table td.span10,
.table th.span10 {
  float: none;
  width: 764px;
  margin-left: 0;
}

.table td.span11,
.table th.span11 {
  float: none;
  width: 844px;
  margin-left: 0;
}

.table td.span12,
.table th.span12 {
  float: none;
  width: 924px;
  margin-left: 0;
}

.table tbody tr.success td {
  background-color: #dff0d8;
}

.table tbody tr.error td {
  background-color: #f2dede;
}

.table tbody tr.warning td {
  background-color: #fcf8e3;
}

.table tbody tr.info td {
  background-color: #d9edf7;
}

/* Buttons */


.btn:first-child {
  *margin-left: 0;
}

.btn:hover {
  color: #000000;
  text-decoration: none;
}

.btn:focus {
  outline: thin dotted #333;
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}

.btn.active,
.btn:active,
.btn-group.open .btn {
  outline: 0;
  top: 1px;
  border-top-width: 2px;
  border-bottom-width: 1px;
  border-top-color: rgba(0, 0, 0, 0.2);
  -webkit-box-shadow: inset 0 60px 0 rgba(0, 0, 0, 0.1);
  -moz-box-shadow: inset 0 60px 0 rgba(0, 0, 0, 0.1);
  box-shadow: inset 0 60px 0 rgba(0, 0, 0, 0.1);
}

.btn.disabled,
.btn[disabled] {
  cursor: default;
  background-image: none;
  opacity: 0.65;
  filter: alpha(opacity=65);
}

.btn-large {
  padding: 11px 19px;
  font-size: 17.5px;
}

.btn-large [class^="icon-"],
.btn-large [class*=" icon-"] {
  margin-top: 4px;
}

.btn-small {
  padding: 2px 10px;
  font-size: 11.9px;
}

.btn-small [class^="icon-"],
.btn-small [class*=" icon-"] {
  margin-top: 0;
}

.btn-mini [class^="icon-"],
.btn-mini [class*=" icon-"] {
  margin-top: -1px;
}

.btn-mini {
  padding: 0 6px;
  font-size: 10.5px;
}

.btn-block {
  display: block;
  width: 100%;
  padding-right: 0;
  padding-left: 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.btn-block+.btn-block {
  margin-top: 5px;
}

input[type="submit"].btn-block,
input[type="reset"].btn-block,
input[type="button"].btn-block {
  width: 100%;
}

.btn-primary {
  color: #fff;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
  background-color: #6b9fd6;
}

.btn-primary:hover,
.btn-primary:active,
.btn-primary.active,
.btn-primary.disabled,
.btn-primary[disabled] {
  color: #fff;
  background-color: #6190c2;
}

.btn-info {
  color: #fff;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
  background-color: #47ABDD;
}

.btn-info:hover,
.btn-info:active,
.btn-info.active,
.btn-info.disabled,
.btn-info[disabled] {
  color: #fff;
  background-color: #1695D1;
}

.btn-warning {
  color: #5f4912;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.7);
  background-color: #efcd76;
}

.btn-warning:hover,
.btn-warning:active,
.btn-warning.active,
.btn-warning.disabled,
.btn-warning[disabled] {
  background-color: #e9bb44;
}

.btn-danger {
  color: #fff;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
  background-color: #da4f49;
}

.btn-danger:hover,
.btn-danger:active,
.btn-danger.active,
.btn-danger.disabled,
.btn-danger[disabled] {
  color: #fff;
  background-color: #bd362f;
}

.btn-success {
  color: #fff;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
  background-color: #82bf4c;
}

.btn-success:hover,
.btn-success:active,
.btn-success.active,
.btn-success.disabled,
.btn-success[disabled] {
  color: #fff;
  background-color: #5bb75b;
}

.btn-inverse {
  color: #fff;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
  background-color: #3a3c47;
}

.btn-inverse:hover,
.btn-inverse:active,
.btn-inverse.active,
.btn-inverse.disabled,
.btn-inverse[disabled] {
  color: #fff;
  background-color: #494c59;
}

button.btn,
input[type="submit"].btn {
  *padding-top: 3px;
  *padding-bottom: 3px;
}

button.btn::-moz-focus-inner,
input[type="submit"].btn::-moz-focus-inner {
  padding: 0;
  border: 0;
}

button.btn.btn-large,
input[type="submit"].btn.btn-large {
  *padding-top: 7px;
  *padding-bottom: 7px;
}

button.btn.btn-small,
input[type="submit"].btn.btn-small {
  *padding-top: 3px;
  *padding-bottom: 3px;
}

button.btn.btn-mini,
input[type="submit"].btn.btn-mini {
  *padding-top: 1px;
  *padding-bottom: 1px;
}

.btn-link,
.btn-link:active,
.btn-link[disabled] {
  background-color: transparent;
  background-image: none;
}

.btn-link {
  color: #0088cc;
  cursor: pointer;
  border-color: transparent;
}

.btn-link:hover {
  color: #000000;
  text-decoration: underline;
  background-color: transparent;
}

.btn-link[disabled]:hover {
  color: #333333;
  text-decoration: none;
}

.btn-group {
  position: relative;
  display: inline-block;
  *display: inline;
  *margin-left: .3em;
  font-size: 0;
  white-space: nowrap;
  vertical-align: middle;
  *zoom: 1;
}

.btn-group:first-child {
  *margin-left: 0;
}

.btn-group+.btn-group {
  margin-left: 5px;
}

.btn-toolbar {
  margin-top: 15px;
  margin-bottom: 15px;
  font-size: 0;
  *zoom: 1;
}

.btn-toolbar:before,
.btn-toolbar:after {
  content: " ";
  display: table;
}

.btn-toolbar:after {
  clear: both;
}

.btn-toolbar .btn-group.left {
  float: left;
}

.btn-toolbar .btn-group.right {
  float: right;
}

.btn-toolbar>.btn+.btn,
.btn-toolbar>.btn-group+.btn,
.btn-toolbar>.btn+.btn-group {
  margin-left: 5px;
}

.btn-group>.btn {
  position: relative;
}

.btn-group>.btn+.btn {
  margin-left: -1px;
}

.btn-group>.btn,
.btn-group>.dropdown-menu,
.btn-group>.popover {
  font-size: 16px;
}

.btn-group>.btn-mini {
  font-size: 10px;
}

.btn-group>.btn-small {
  font-size: 12px;
}

.btn-group>.btn-large {
  font-size: 18px;
}

.btn-group>.btn:first-child {
  margin-left: 0;
}

.btn-group>.btn.large:first-child {
  margin-left: 0;
}

.btn-group>.btn:hover,
.btn-group>.btn:focus,
.btn-group>.btn:active,
.btn-group>.btn.active {
  z-index: 2;
}

.btn-group .dropdown-toggle:active,
.btn-group.open .dropdown-toggle {
  outline: 0;
}

.btn-group>.btn+.dropdown-toggle {
  *padding-top: 5px;
  padding-right: 8px;
  *padding-bottom: 5px;
  padding-left: 8px;
}

.btn-group>.btn-mini+.dropdown-toggle {
  *padding-top: 2px;
  padding-right: 5px;
  *padding-bottom: 2px;
  padding-left: 5px;
}

.btn-group>.btn-small+.dropdown-toggle {
  *padding-top: 5px;
  *padding-bottom: 4px;
}

.btn-group>.btn-large+.dropdown-toggle {
  *padding-top: 7px;
  padding-right: 12px;
  *padding-bottom: 7px;
  padding-left: 12px;
}

.btn .caret {
  margin-top: 14px;
  margin-left: 2px;
  margin-right: 2px;
}

.btn-mini .caret,
.btn-small .caret,
.btn-large .caret {
  margin-top: 6px;
}

.btn-large .caret {
  border-top-width: 5px;
  border-right-width: 5px;
  border-left-width: 5px;
}

.dropup .btn-large .caret {
  border-bottom-width: 5px;
}

.btn-primary .caret,
.btn-warning .caret,
.btn-danger .caret,
.btn-info .caret,
.btn-success .caret,
.btn-inverse .caret {
  border-top-color: #fff;
}

/* Dropdowns */
.dropup,
.dropdown {
  position: relative;
}

.dropdown-toggle:active,
.open .dropdown-toggle {
  outline: 0;
}

.caret {
  display: inline-block;
  width: 0;
  height: 0;
  vertical-align: top;
  border: 4px solid transparent;
  border-top-color: #666;
  content: "";
}

.dropdown .caret {
  margin-top: 10px;
  margin-left: 2px;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1000;
  display: none;
  float: left;
  min-width: 160px;
  padding: 0;
  margin: 2px 0 0;
  list-style: none;
  background: #fff;
  border: 6px solid #fff;
  -webkit-box-shadow: 0 0 1px 1px rgba(0, 0, 0, 0.1), 2px 2px 1px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 0 1px 1px rgba(0, 0, 0, 0.1), 2px 2px 1px rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 1px 1px rgba(0, 0, 0, 0.1), 2px 2px 1px rgba(0, 0, 0, 0.1);
}

.dropdown-menu.right {
  right: 0;
  left: auto;
}

.dropdown-menu .divider {
  *width: 100%;
  height: 1px;
  margin: 0;
  overflow: hidden;
  background-color: #ddd;
}

.dropdown-menu li>a {
  display: block;
  padding: 8px 20px;
  clear: both;
  color: #3a3c47;
  white-space: nowrap;
}

.dropdown-menu li>a:hover,
.dropdown-menu li>a:focus,
.dropdown-submenu:hover>a,
.dropdown-menu .active>a,
.dropdown-menu .active>a:hover {
  color: #fff;
  text-decoration: none;
  background-color: #3a3c47;
  outline: 0;
  text-shadow: -1px -1px 0 #000;
}

.dropdown-menu .disabled>a,
.dropdown-menu .disabled>a:hover,
.dropdown-menu .disabled>a:hover {
  color: #999;
  text-decoration: none;
  cursor: default;
  background-color: transparent;
  text-shadow: none;
}

.open {
  *z-index: 1000;
}

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

.right>.dropdown-menu {
  right: 0;
  left: auto;
}

.dropup .caret,
.navbar-fixed-bottom .dropdown .caret {
  border-top: 0;
  border-bottom: 4px solid #000000;
  content: "";
}

.dropup .dropdown-menu {
  top: auto;
  bottom: 100%;
  margin-bottom: 1px;
}

.dropdown-submenu {
  position: relative;
}

.dropdown-submenu>.dropdown-menu {
  top: 0;
  left: 100%;
  margin-top: -1px;
  margin-left: -1px;
}

.dropdown-submenu:hover>.dropdown-menu {
  display: block;
}

.dropup .dropdown-submenu>.dropdown-menu {
  top: auto;
  bottom: 0;
  margin-top: 0;
  margin-bottom: -2px;
}

.dropdown-submenu>a:after {
  display: block;
  float: right;
  width: 0;
  height: 0;
  margin-top: 8px;
  margin-right: -10px;
  border-color: transparent;
  border-left-color: #999;
  border-style: solid;
  border-width: 5px 0 5px 5px;
  content: " ";
}

.dropdown-submenu:hover>a:after {
  border-left-color: #fff;
}

.dropdown-submenu.left {
  float: none;
}

.dropdown-submenu.left>.dropdown-menu {
  left: -100%;
  margin-left: 10px;
}

/* Lists */
ul.grid:before,
ul.grid:after {
  content: " ";
  display: table;
}

ul.grid:after {
  clear: both;
}

ul.grid {
  list-style: none;
  width: 849px;
  margin: 0 0 25px -4px;
  padding: 0;
  *zoom: 1;
}

ul.grid li {
  float: left;
  width: 279px;
  margin: 0 0 4px 4px;
  font-size: 18px;
}

ul.grid li a {
  display: block;
  padding: 20px 25px;
  color: #d95b5b;
  background: #fff;
  text-decoration: none;
}

ul.grid li a:hover {
  color: #fff;
  background: #d95b5b;
}

/* Navs */
.nav {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
}

.nav>li {
  float: left;
  margin-right: 2px;
}

.nav>li.right {
  float: right;
  margin-left: 2px;
  margin-right: 0;
}

.nav>li>a {
  display: block;
  text-decoration: none;
}

.nav>li>a:hover {
  background-color: #fff;
}

.nav>li>a>img {
  max-width: none;
}

.nav>.right {
  float: right;
}

.nav-tabs,
.nav-pills {
  *zoom: 1;
}

.nav-tabs:before,
.nav-pills:before,
.nav-tabs:after,
.nav-pills:after {
  display: table;
  line-height: 0;
  content: "";
}

.nav-tabs:after,
.nav-pills:after {
  clear: both;
}

.nav-tabs {
  border-bottom: 1px solid #3a3c47;
}

.nav-tabs>li>a,
.nav-pills>li>a {
  padding-right: 18px;
  padding-left: 18px;
}

.nav-tabs>li>a {
  padding-top: 10px;
  padding-bottom: 10px;
  color: #3a3c47;
}

.nav-tabs>.active>a,
.nav-tabs>.active>a:hover {
  color: #fff;
  cursor: default;
  background-color: #3a3c47;
}

.nav-pills>li>a {
  color: #3a3c47;
  padding-top: 8px;
  padding-bottom: 8px;
  margin-top: 2px;
  margin-bottom: 2px;
}

.nav-pills>.active>a,
.nav-pills>.active>a:hover {
  color: #fff;
  background-color: #3a3c47;
}

.nav>.disabled>a {
  color: #999999;
}

.nav>.disabled>a:hover {
  cursor: default;
  background-color: transparent;
}

/* Tabs */
.tab-content {
  overflow: auto;
}

.tab-content>.tab-pane,
.pill-content>.pill-pane {
  display: none;
}

.tab-content>.active,
.pill-content>.active {
  display: block;
}

/* Tooltips */
.tooltip {
  position: absolute;
  padding: 10px 20px;
  max-width: 300px;
  color: #fff;
  background: #3a3c47;
  text-shadow: -1px -1px 0 #000;
}

.tooltip.light {
  color: #3a3c47;
  background: #fff;
  text-shadow: none;
}

.tooltip:after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border-color: transparent;
  border-style: solid;
}

.tooltip.top {
  margin-top: -15px;
}

.tooltip.top:after {
  bottom: -8px;
  left: 50%;
  margin-left: -8px;
  border-top-color: #3a3c47;
  border-width: 8px 8px 0;
}

.tooltip.light.top:after {
  border-top-color: #fff;
}

.tooltip.right {
  margin-left: 15px;
}

.tooltip.right:after {
  top: 50%;
  left: -8px;
  margin-top: -8px;
  border-right-color: #3a3c47;
  border-width: 8px 8px 8px 0;
}

.tooltip.light.right:after {
  border-right-color: #fff;
}

.tooltip.left {
  margin-left: -15px;
}

.tooltip.left:after {
  top: 50%;
  right: -8px;
  margin-top: -8px;
  border-left-color: #3a3c47;
  border-width: 8px 0 8px 8px;
}

.tooltip.light.left:after {
  border-left-color: #fff;
}

.tooltip.bottom {
  margin-top: 15px;
}

.tooltip.bottom:after {
  top: -8px;
  left: 50%;
  margin-left: -8px;
  border-bottom-color: #3a3c47;
  border-width: 0 8px 8px;
}

.tooltip.light.bottom:after {
  border-bottom-color: #fff;
}

/* Mixed components */
.well {
  min-height: 20px;
  padding: 20px;
  margin-bottom: 25px;
  background-color: #eaeaea;
}

.img-polaroid {
  padding: 4px;
  background-color: #fff;
  border: 1px solid #ccc;
  border: 1px solid rgba(0, 0, 0, 0.2);
}

.img-circle {
  -webkit-border-radius: 500px;
  -moz-border-radius: 500px;
  border-radius: 500px;
}

/* ==========================================================================
   Page styles
   ========================================================================== */
/* Sets the page width */
.pagespan {
  width: 1140px;
}

/* Header */
header {
  margin: 60px auto;
  text-align: center;
  font-family: Novecento, sans-serif;
}

header.projecttitle {
  margin: 130px auto 100px;
}

header .titlewrap {
  position: relative;
  display: inline-block;
  margin: 0 0 20px;
}

header h1 {
  position: relative;
  display: inline-block;
  margin: 0;
  font-weight: bold;
  font-size: 80px;
  line-height: 1;
}

header .titlewrap .follow {
  position: absolute;
  display: block;
  top: 0;
  left: 100%;
  color: inherit;
  margin-left: 40px;
  opacity: .5;
  line-height: 80px;
  font-size: 16px;
  font-family: sans-serif;
  white-space: nowrap;
  text-decoration: none;
}

header .titlewrap .follow:hover {
  opacity: 1;
}

header .projectdescription {
  opacity: .7;
}

/* Download stripe */
.download {
  position: relative;
  height: 100px;
  margin: 70px auto 0;
  color: #fff;
  font-family: Novecento, sans-serif;
  text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.2);
  z-index: 2;
}

.download h2,
.download h3 {
  float: left;
  width: 216px;
  margin: 0;
  padding: 23px 40px 0 0;
  height: 77px;
  font-size: 30px;
  text-align: right;
  font-weight: normal;
  line-height: 1;
  background: #3a3c47;
  text-shadow: 1px 1px 0 #000;
}

.download h2:before {
  content: '';
  position: absolute;
  top: 50%;
  left: -50px;
  margin-top: -50px;
  width: 0;
  height: 0;
  overflow: hidden;
  border: 50px solid transparent;
  border-left: 0;
  border-right-color: #3a3c47;
}

.csstransforms .download h2:before {
  border-width: 25px;
  margin-top: -25px;
  left: -25px;
  -webkit-transform: scaleY(2);
  -moz-transform: scaleY(2);
  -ms-transform: scaleY(2);
  -o-transform: scaleY(2);
  transform: scaleY(2);
}

.lt-ie10.csstransforms .download h2:before {
  left: -24px;
}

/* IE9 makes 1 pixel gap */
.download h3 {
  width: 180px;
  font-weight: bold;
}

.download h3 small,
.download h2 small {
  display: block;
  margin-top: 8px;
  font-weight: normal;
  font-size: 16px;
  opacity: 0.8;
}

.download h3 .loading {
  display: block;
  margin-top: 20px;
  font-size: 14px;
  font-weight: normal;
}

.download h3 .loading i {
  margin-left: 5px;
}

.download a {
  float: left;
  width: 210px;
  padding: 23px 0 0;
  height: 77px;
  text-align: center;
  text-decoration: none;
  background: #d95b5b;
  color: #fff;
}

.download a:hover {
  background: #fff;
  color: #d95b5b;
  text-shadow: none;
}

.download a .title {
  display: block;
  font-size: 16px;
  line-height: 1;
}

.download a .size {
  display: block;
  margin-top: 5px;
  font-size: 40px;
  line-height: 1;
}

.download a.repo {
  position: relative;
  width: 196px;
  text-align: left;
  padding-left: 40px;
}

.download a.repo:before {
  content: '';
  position: absolute;
  top: 50%;
  right: -50px;
  margin-top: -50px;
  width: 0;
  height: 0;
  overflow: hidden;
  border: 50px solid transparent;
  border-right: 0;
  border-left-color: #d95b5b;
}

.csstransforms .download a.repo:before {
  border-width: 25px;
  margin-top: -25px;
  right: -25px;
  -webkit-transform: scaleY(2);
  -moz-transform: scaleY(2);
  -ms-transform: scaleY(2);
  -o-transform: scaleY(2);
  transform: scaleY(2);
}

.download a.repo:hover {
  background: #fff;
}

.download a.repo:hover:before {
  border-left-color: #fff;
}

.download a.repo .icon-github {
  position: absolute;
  top: 0;
  right: -5px;
  height: 100px;
  font-size: 150px;
  vertical-align: middle;
  line-height: 0.7;
  overflow: hidden;
  opacity: 0.1;
}

.download a.repo .title {
  font-size: 24px;
  margin: -1px 0 0 0;
}

.download a.repo .loading {
  font-size: 12px;
}

.download a.repo .loading i {
  margin-right: 5px;
}

.download a.repo .size {
  font-size: 32px;
  vertical-align: top;
}

.download a.repo .size small {
  font-size: 12px;
  line-height: 16px;
  vertical-align: top;
}

/* Download border - place after .download element */
.download-border {
  position: relative;
  height: 110px;
  padding: 0 4px;
  margin: -105px auto 0;
  background: #f5f5f5;
}

.download-border:before,
.download-border:after {
  content: '';
  position: absolute;
  top: 50%;
  margin-top: -55px;
  width: 0;
  height: 0;
  overflow: hidden;
  border: 55px solid transparent;
}

.csstransforms .download-border:before,
.csstransforms .download-border:after {
  border-width: 27px;
  margin-top: -27px;
  -webkit-transform: scaleY(2);
  -ms-transform: scaleY(2);
  transform: scaleY(2);
}

.download-border:before {
  left: -55px;
  border-left: 0;
  border-right-color: #f5f5f5;
}

.csstransforms .download-border:before {
  left: -27px;
}

.lt-ie10.csstransforms .download-border:before {
  left: -26px;
}

/* IE9 makes 1 pixel gap */
.download-border:after {
  right: -55px;
  border-right: 0;
  border-left-color: #f5f5f5;
}

.csstransforms .download-border:after {
  right: -27px;
}

/* Dividers */
.download h2 {
  border-right: 1px solid #fff;
}

.download a {
  border-left: 1px solid #fff;
}

.download h2,
.download a {
  border-color: rgba(255, 255, 255, 0.3);
}

.download a.repo {
  border-width: 5px;
}

/* Navigation */
.mainnav {
  position: absolute;
  top: 0;
  padding-top: 50px;
  width: 252px;
}

.mainnav.fixed {
  position: fixed;
  padding-top: 30px;
}

.mainnav.fixed.bottom {
  position: absolute;
  top: auto;
  bottom: 0;
}

.mainnav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.mainnav ul li {
  margin: 0 0 1px 0;
  padding: 0;
}

.mainnav ul li a {
  position: relative;
  display: block;
  margin: 0;
  padding-left: 30px;
  height: 60px;
  line-height: 60px;
  font-family: Novecento, sans-serif;
  font-size: 18px;
  text-decoration: none;
}

.mainnav ul li a:before {
  content: '';
  position: absolute;
  top: 50%;
  left: -30px;
  margin-top: -30px;
  width: 0;
  height: 0;
  overflow: hidden;
  border: 30px solid transparent;
  border-left: 0;
}

.csstransforms .mainnav ul li a:before {
  border-width: 15px;
  margin-top: -15px;
  left: -15px;
  -webkit-transform: scaleY(2);
  -moz-transform: scaleY(2);
  -ms-transform: scaleY(2);
  -o-transform: scaleY(2);
  transform: scaleY(2);
}

.lt-ie10.csstransforms .mainnav ul li a:before {
  left: -14px;
}

/* IE9 makes 1 pixel gap */
.mainnav ul li a:hover {
  background: #fff;
}

.mainnav ul li a:hover:before {
  border-right-color: #fff;
}

.mainnav ul li.active a {
  color: #fff;
  background: #d95b5b;
  text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.2);
}

.mainnav ul li.active a:before {
  border-right-color: #d95b5b;
}

/* Barbon ads */
#carbonads-container {
  margin: 30px 0 0;
  height: 220px;
}

.carbonad {
  margin: 0 auto;
}

/* Content. */
.content {
  position: relative;
  margin: 0 auto;
}

.content>section {
  margin-left: 295px;
  padding: 30px 0 40px;
  background: url(data:image/gif;base64,R0lGODlhDQAFAIABAObm5hoaGiH5BAEAAAEALAAAAAANAAUAAAINRA6perFvHGRyRptaAQA7) repeat-x left bottom;
}

/*.content > section:first-of-type { padding-top: 0; }*/
.content>section:last-of-type {
  background: none;
  padding-bottom: 0;
}

.content h2 {
  font-size: 30px;
}

/* Footer */
footer {
  margin: 0 auto;
  padding-top: 70px;
}

.license {
  position: relative;
  display: block;
  padding: 0 25px;
  height: 60px;
  line-height: 60px;
  background: #3a3c47;
  color: #fff;
  font-family: Novecento, sans-serif;
  font-size: 18px;
  text-align: center;
}

.license:before,
.license:after {
  content: '';
  position: absolute;
  top: 50%;
  margin-top: -30px;
  width: 0;
  height: 0;
  overflow: hidden;
  border: 30px solid transparent;
}

.csstransforms .license:before,
.csstransforms .license:after {
  border-width: 15px;
  margin-top: -15px;
  -webkit-transform: scaleY(2);
  -ms-transform: scaleY(2);
  transform: scaleY(2);
}

.license:before {
  left: -30px;
  border-left: 0;
  border-right-color: #3a3c47;
}

.csstransforms .license:before {
  left: -15px;
}

.lt-ie10.csstransforms .license:before {
  left: -14px;
}

/* IE9 makes 1 pixel gap */
.license:after {
  right: -30px;
  border-right: 0;
  border-left-color: #3a3c47;
}

.csstransforms .license:after {
  right: -15px;
}

.license:hover:before {
  border-right-color: #d95b5b;
}

.license:hover:after {
  border-left-color: #d95b5b;
}

.license:hover {
  background: #d95b5b;
  text-decoration: none;
}

.license .fl,
.license .fr {
  font-size: 36px;
  opacity: 0.4;
  font-weight: bold;
}

.repos {
  width: 1140px;
  margin: 40px 0 40px;
  text-align: center;
}

.repos ul {
  list-style: none;
  margin: 0 0 0 -43px;
  padding: 0;
  width: 1184px;
  text-align: left;
}

.repos ul li {
  float: left;
  width: 253px;
  margin: 0 0 0 43px;
}

.repos ul li a {
  display: block;
  position: relative;
  color: #3a3c47;
}

.repos ul li a:hover {
  text-decoration: none;
  color: #d95b5b;
}

.repos ul li a h4 {
  margin: 0 0 10px;
}

.repos ul li a p {
  margin: 0;
  font-size: 12px;
}

.repos ul li a .watchers {
  position: absolute;
  top: 0;
  right: 0;
  font-size: 14px;
}

/* ==========================================================================
   Helper classes
   ========================================================================== */
.fl {
  float: left;
}

.fr {
  float: right;
}

.ir {
  background-color: transparent;
  border: 0;
  overflow: hidden;
  *text-indent: -9999px;
}

.ir:before {
  content: "";
  display: block;
  width: 0;
  height: 150%;
}

.hidden {
  display: none !important;
  visibility: hidden;
}

.visuallyhidden {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

.visuallyhidden.focusable:active,
.visuallyhidden.focusable:focus {
  clip: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  position: static;
  width: auto;
}

.invisible {
  visibility: hidden;
}

.clearfix:before,
.clearfix:after {
  content: " ";
  display: table;
}

.clearfix:after {
  clear: both;
}

.clearfix {
  *zoom: 1;
}









/***********************/
/***********************/
/******* OUR CSS *******/
/***********************/
/***********************/



h2 {
  text-align: center;
}

.brmb {
  display: none;
}

.larger {
  font-size: 150%;
  line-height: 120%;
  margin-bottom: -.2em !important;
}

.wrap {
  position: relative;
  width: 100%;
  z-index: 2;
}

.wrap:nth-child(2n) {
  margin-right: 0;
}

.frame {
  width: calc(100%);
  overflow: hidden;
  transition: 0.15s;
  margin-top: -10%;
  /*8%;*/
}

.frame .slidee {
  padding: 20px 25px;
  background: #fff;
}

.frame ul.items {
  list-style: none;
  margin: 0;
  padding: 0;
  width: 100%;
  font-size: 24px;
  line-height: 100px;
}

.frame ul.items li {
  float: left;
  width: 100%;
  font-family: 'UPS Berlingske Sans';
  color: #000000;
  opacity: 0.3;
  text-align: right;
  padding-right: 5px;
  font-weight: 800;
  line-height: 5vw;
  font-size: 5vw;
  height: 5vw;
  cursor: pointer;
  letter-spacing: -0.22vw;
}

.frame ul.items li span {
  color: #ffffff;
}

.frame ul.items li:hover {
  opacity: 0.4;
}

.frame ul.items li.active {
  color: #000000;
  opacity: 1;
}

.closer {
  letter-spacing: -.05em;
}

.closer-modal {
  letter-spacing: -1em;
}

.scrollbar {
  position: absolute;
  right: -2vw;
  width: 3px;
  top: 50%;
  /*50*/
  height: 35%;
  background: #238aa2;
  line-height: 0;
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
  border-bottom-left-radius: 3px;
  border-bottom-right-radius: 3px;
}

.scrollbar .handle {
  width: 100%;
  height: 40px;
  background: rgba(255, 255, 255, 0.52);
  cursor: pointer;
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
  border-bottom-left-radius: 3px;
  border-bottom-right-radius: 3px;
}

.scrollbar .handle .mousearea {
  position: absolute;
  top: 0;
  left: -10px;
  width: 22px;
  height: 100%;
}

.hider {
  position: absolute;
  top: -15%;
  left: 0;
  height: 52%;
  width: 110%;
  background-color: #009CBD;
}

.top-logo {
  max-width: 250px;
  min-width: 122px;
  width: 100%;
  padding-bottom: .75%;
}

@media (min-width: 768px) {
  .top-logo {
    margin-top: 8px;
  }
}

.full-width {
  width: 100%;
  display: block;
  position: relative;
}

/*TOP AREA*/
.header-top {
  background: #009cbd;
  background-image: url("../images/header_mailboxes_refresh_2024.jpg");
/*  background-image: url("../images/glow.png"), linear-gradient(90deg, rgba(0, 156, 189, 1) 35%, rgba(0, 109, 132, 1) 100%);*/
  padding-bottom: 47%;
  background-size: cover;
  position: relative;
  overflow: hidden;
}

.blue-extension {
  padding-bottom: 2.5%;
  background: #009cbd;
  background: -moz-linear-gradient(90deg, rgba(0, 156, 189, 1) 35%, rgba(0, 109, 132, 1) 100%);
  background: -webkit-linear-gradient(90deg, rgba(0, 156, 189, 1) 35%, rgba(0, 109, 132, 1) 100%);
  background: linear-gradient(90deg, rgba(0, 156, 189, 1) 35%, rgba(0, 109, 132, 1) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#009cbd", endColorstr="#006d84", GradientType=1);
  position: relative;
}
/*
.lockup {
  display: block;
  text-align: center;
  position: absolute;
  top: 40%;
  right: 2%;
}*/

.lockup img {
  position: absolute;
  top:  47%;
  left:  72%;
  width:  25vw;
  filter: drop-shadow(0px 0px 8px rgb(0,0,0,.5));

  }

.offer {
  position: absolute;
  top: 22%;
  left: 10%;
  z-index: 1 !important;

}

.title {
 font-family: 'UPS Berlingske Sans';
    font-weight: 900;
    color: #ffffff;
    font-size: 4vw;
    line-height: 3.8vw;
    text-align: center;
    text-transform: uppercase;
    text-shadow: 0em 0em .5em rgba(0,0,0,.77);

}

.buttons {
  position: relative;
  text-align: center !important;
  margin: 3em auto 0 auto !important;
}


.cta, .learn-more {
  text-align: center;
  border: 3px solid #ffffff;
  color: #000000;
  background-color: var(--yellow-or-gold);
  font-family: 'UPS Berlingske Sans';
  font-weight: 700;
  padding: .4vw 1vw 0vw 1vw;
  font-size: 1.55vw;
  border-radius: 0.55vw;
  transition: 0.5s;
  z-index: 10;
  display: block;
  margin: 0 auto;
  width: 23vw;

}

.save-to-device {
  margin-top: .25em !important;
}

.cta:active,
.cta:focus,
.cta:hover,
.learn-more:active,
.learn-more:focus,
.learn-more:hover {
  outline: 0;
  background-color: #ffffff;
  text-decoration: none;
}


.learn-more {
  position: relative !important;
  left: 0 !important;
  top: 1.5vw !important;
  display:inline-block;
/*  bottom: -30vw;*/
  z-index: 3;
  transition: 0.5s;
  width: 15vw;
}



/*
.rslides_dt {
  position: absolute;
  list-style: none;
  overflow: hidden;
  width: 100%;
  padding: 0;
  margin: 0;
  z-index: 0;
}

.rslides_dt li {
  -webkit-backface-visibility: hidden;
  position: absolute;
  display: none;
  width: 100%;
  left: 0;
  top: 0;
  z-index: 0;
}

.rslides_dt li:first-child {
  position: relative;
  display: block;
  float: left;
  z-index: 300;
}

.rslides_dt img {
  display: block;
  height: auto;
  float: left;
  width: 100%;
  border: 0;
  z-index: 300;
}

.rslides_mb {
  display: none;
  position: absolute;
  list-style: none;
  overflow: hidden;
  width: 100%;
  padding: 0;
  margin: 0;
  z-index: 300;
}

.rslides_mb li {
  -webkit-backface-visibility: hidden;
  position: absolute;
  display: none;
  width: 100%;
  left: 0;
  top: 0;
  z-index: 300;
}

.rslides_mb li:first-child {
  position: relative;
  display: block;
  z-index: 300;
  float: left;
}

.rslides_mb img {
  display: block;
  height: auto;
  float: left;
  width: 100%;
  border: 0;
  z-index: 300;
}*/

.blue-bottom {
  background: #009cbd;
  background: -moz-linear-gradient(90deg, rgba(0, 156, 189, 1) 35%, rgba(0, 109, 132, 1) 100%);
  background: -webkit-linear-gradient(90deg, rgba(0, 156, 189, 1) 35%, rgba(0, 109, 132, 1) 100%);
  background: linear-gradient(90deg, rgba(0, 156, 189, 1) 35%, rgba(0, 109, 132, 1) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#009cbd", endColorstr="#006d84", GradientType=1);
  width: 100%;
  overflow: hidden;
  padding-bottom: 47.5%;
  position: relative;
}

/*END TOP AREA*/


/*MIDDLE AREA*/
.email-wrapper {
  position: relative;
}

.email-area {
  height: 240px;
  width: 28%;
  background-color: #ffffff;
  float: right;
  padding-top: 25px;
  padding-left: 3%;
  margin-right: 3%;
}

.email-label,
.locations-label {
  font-family: 'UPS Berlingske Sans';
  color: #000000;
  font-size: 12px;
  font-weight: 800 !important;
  width: 100%;
}

.headline {
  font-family: 'UPS Berlingske Sans';
  font-weight: 800;
  color: #000000;
  font-size: 22px;
}

.address1,
.address2 {
  font-family: 'UPS Berlingske Sans';
  color: #000000;
  font-size: 18px;
}

.address2 {
  margin-bottom: 15px;
}

.input-box {
  height: 38px !important;
  margin-bottom: 0px !important;
  width: 150px;
  border: 1px solid #009CBD !important;
  margin-top: 0px;
  border: 0;
  height: 40px !important;
  padding-left: 5px;
  vertical-align: middle;

}

.email-button {
  height: 40px;
  width: 40px;
  background-color: #009CBD !important;
  padding-top: 3px;
  font-size: 19px !important;
  font-weight: bold;
  font-family: 'UPS Berlingske Sans';
  color: #ffffff;
  margin-top: 0px;
  border: 0;
  line-height: 40px;
  padding-top: 1px;
  padding: 1px;
  vertical-align: middle;
  padding: 3px;
}

#myMap {
  position: relative;
  width: 69%;
  height: 240px;
  float: left;
}

/*END MIDDLE AREA*/


/*START BOTTOM AREA*/

.fa-arrow-right-long {
  color: var(--yellow-or-gold);
}

ul.arrows {
  padding: 0px;
  margin: 0 0 0 3.5vw;
}

ul.arrows li {
  list-style: none;
  padding-bottom: .75em !important;
  padding-left: 10px !important;

}


.dark-title {
  color: #000000;
  position: absolute;
  font-family: 'UPS Berlingske Sans';
  font-size: 1.8vw;
  font-weight: 800;
  top: 2%;
  left: 5%;
  z-index: 10;
}

.dark-description {
  color: #000000;
  position: absolute;
  top: 10%;
  left: 5%;
  z-index: 10;
  font-family: 'UPS Berlingske Sans';
  font-size: 1.57vw;
  line-height: 120%;
  font-weight: 500;
  letter-spacing: -0.03vw;
}


.blue-bottom {
  padding-bottom: 40%
}

/* was 103*/

.swiper-container {
  margin-top: 2vw !important;

}

.swiper-image {
  width: 35%;
  margin: 0% 8% 0 4%;
  float: left;
}

.text-wrap {
  position: relative;
  width: 50%;
  height: 100%;
  float: left;
  display: block;
  padding-bottom: 11.6%;
}

.copy-title {
  margin-top: 5%;
  position: relative;
  font-family: 'UPS Berlingske Sans';
  font-size: 2.88vw;
  font-weight: 800;
  color: #FFFFFF;
  left: 0;
  top: 0;
  white-space: nowrap;
  display: block;
  text-transform: uppercase;
}

.copy-title br {
  display: none;
}

.copy-description {
  width: 90%;
  font-family: 'UPS Berlingske Sans';
  font-size: 2.09vw;
  line-height: 2.45vw;
  height: 2.9vw;
  font-weight: 400;
  color: #000000;
  left: 0;
  top: 105%;
  display: block;
  position: relative;
  height: 100%;
  margin-top: 1%;
}



.swiper-pagination {
  position: relative !important;
  margin: -7% 0 0 0;
}

.swiper-pagination-bullets {
/*  top: 78% !important;*/

}

.swiper-button-next,
.swiper-button-prev {
  outline: none;
}

@media (max-width: 1200px) {
  .hide-tablet-mobile {
    display: none;
  }
}


.footer-left {
  width: 70%;
  float: left;
  line-height: 14px;
  padding-top: 15px;
  padding-bottom: 10px;
  padding-left: 12px;
  padding-right: 12px;
}

.footer-left a {
  color: #333333 !important;
  text-decoration: underline;
}

.modal-disclaimer a {
  color: #000000 !important;
  text-decoration: underline;
}

.footer-left a:hover,
.footer-left a:active {
  color: #000000 !important;
}

.footer-right {
  width: 100%;
  float: left;
}


.swiper-button-next {
  background-image: url('../images/arrow-right.png') !important;
  background-size: 16px 27px !important;
  top: 30% !important;
}

.swiper-button-next-text {
  top: 20% !important;
  color: #FFFFFF;
  font-family: UPS Berlingske Sans;
  font-weight: 800;
  font-size: 12px;
  line-height: 16px;
  text-align: center;

}

.swiper-button-prev {
  background-image: url('../images/arrow-right.png') !important;
  background-size: 16px 27px !important;
  transform: rotate(180deg);
  top: 30% !important;
}

.swiper-pagination-bullet-active {
  opacity: 0.7 !important;
  background: #ffffff !important;
}

.bottom-logo {
  padding-top: 0px;
}

.modal-copy {
  height: 67%;
}


/*FOOTER*/
.footer {
  display: block;
  position: absolute;
  top: 15%;
}

.bottom-logo {
  max-width: 250px;
  min-width: 122px;
  width: 100%;
  padding-bottom: 5px;
  padding-top: 15px;
}


.actions>* {
  display: none;
}

.actions>#first-element {
  display: block;
}

.footer-left {
  width: 70%;
  float: left;
  padding-left: 5%;
  box-sizing: border-box;
  padding-top: 15px;
  padding-bottom: 5px;
  font-family: 'UPS Berlingske Sans';
  font-size: 11px;
  line-height: 12px;
  text-align: left;
}

.footer-right {
  width: 30%;
  float: left;
}

.font-shrink {
  font-size: 80%;
}

.modal-header>.close:focus {
  box-shadow: 0px 0px 1px 2px #041fa5;
}

.finesse-months {
  margin-left: -3px;
  margin-right: 2px;
}

.finesse-months-modal {
  margin-left: -2px;
  margin-right: 2px;
}

@media (min-width: 1200px) {
  .footer-left {
    line-height: 13px;
    padding-bottom: 20px;
    padding-top: 20px;
  }
}

@media (max-width: 768px) {
  .hide-br {
    display: none;
  }
/*
  .swiper-pagination-bullets {
    bottom: 18% !important;
  }
*/
  .r-title {
    font-size: 1.1vw;
  }

}





/***********************/
/***********************/
/***********************/
/*       MOBILE        */
/***********************/
/***********************/
/***********************/




@media (max-width: 767px) {

/*  .rslides_dt {
    display: none;
  }

  .rslides_mb {
    display: block;
    z-index: 0;
  }
*/
  .finesse-months {
    margin-left: 0px;
    margin-right: 2px;
  }

  .finesse-months-modal {
    margin-left: 0px;
    margin-right: 2px;
  }

  iframe {
    height: 60% !important;
  }

  .r-title {
    font-size: 2.1vw;
  }

  .email-area {
    width: 95%;
    height: auto;
  }

  #myMap {
    width: 100%;
    height: 200px;
  }

  .headline {
    font-size: 16px;
  }

  .address-wrapper {
    width: 50%;
    float: left;
  }

  .map-form {
    width: 50%;
    float: left;
  }

  .address1,
  .address2 {
    font-size: 12px;
  }

  .email-label,
  .locations-label {
    font-size: 9px;
    line-height: 100%;
  }

  .input-box {
    width: calc(100% - 50px);
  }


  /*TOP PART*/

  .header-top {
    background: #009cbd;
    background-image: url("../images/header_mailboxes_refresh_2024_mobile.jpg");
    background-repeat: no-repeat;
/*    background-image: url("../images/glow_mb.png"), linear-gradient(90deg, rgba(0, 156, 189, 1) 35%, rgba(0, 109, 132, 1) 100%);*/
    /* W3C */
    padding-bottom:99%;
    background-size: cover;
  }

  .offer {
    position: absolute;
    text-align: center;
    z-index: 2 !important;
    top: 12vw !important;
    left: 4vw;

    width: 60%;
    margin: 0;
  }

  .title {

    font-size: 4.5vw;
    line-height: 5.5vw;
    letter-spacing: 0;
    text-align: center;
    text-shadow: 0 0 .3em rgba(0, 0, 0, .55);
  }

  .buttons {
    width: 100%;
    position: absolute;
    left: 0vw;
    margin: 3vw auto 0 auto !important;
  }

  .cta, .learn-more {

    border: 2px solid #ffffff !important;
    padding: 1.4vw 2vw .8vw 2vw !important;
    font-size:1.5em !important;
    border-radius: 5px !important;
    display: block !important;
    width: 36vw !important; 
  }

  .cta {
    font-size: 1.2em !important;
    width: 75% !important;
    min-width: 75% !important;
  }

  .learn-more {
    left: 0;
    z-index: 3;
    transition: 0.5s;
    width: 11em !important;
    position: relative;
    top: 2.5vw !important;
  }

  .save-to-device {
    margin: .5em auto 0 auto !important;
  }

  /*.lockup {
    width: 65%;
    left: 1vw !important;
    bottom: 29vw !important;
    top: unset;
    margin: 0 !important;
  }*/

  .lockup img {
  top:  56%;
  left:  7%;
  
    width:53vw;
    webkit-filter: drop-shadow(-.5vw .2vw .5em rgba(0,0,0,.55));
-moz-filter: drop-shadow(-.5vw .2vw .5em rgba(0,0,0,.55));
-ms-filter: drop-shadow(-.5vw .2vw .5em rgba(0,0,0,.55));
  filter: drop-shadow(-.5vw .2vw .5em rgba(0,0,0,.55));
  }

  /*BOTTOM PART*/
  .swiper-container {
    margin-top: 5vw !important;
  }

  .scroller-area,
  .scroll {
    display: none;
  }

  .scroll-description {
    display: none;
  }

  .mobile-scroll-description {
    color: #ffffff;
    font-family: 'UPS Berlingske Sans';
    font-size: 3vw;
    position: absolute;
    top: 32%;
    z-index: 3;
    font-weight: 500;
    width: 100%;
    text-align: center;
  }

  .arrow-down {
    position: absolute;
    top: 0vw;
    width: 4%;
    right: auto;
    margin-left: 2vw;
    transform: rotate(260deg);
  }

  .actions {
    display: none;
  }

  .blue-bottom {
    padding-bottom: 75%
  }

  .dark-title {
    font-size: 3.8vw;
  }

  .dark-description {
    font-size: 3.5vw;
    line-height: 4vw;
    top: 11.5%;
    padding-right: 9vw;
    letter-spacing: -0.02vw;
  }

  .swiper-image {
    width: 40%;
    margin: 0 4% 0 2%;
    float: left;
  }

  .text-wrap {
    position: relative;
    width: 50%;
    height: 100%;
    float: left;
    display: block;
    padding-bottom: 11.6%;
  }

  .copy-title {
    margin-top: 10%;
    position: relative;
    font-family: 'UPS Berlingske Sans';
    font-size: 3.8vw;
    line-height: 100%;
    font-weight: 800;
    color: #FFFFFF;
    left: 0;
    top: 0;
    white-space: nowrap;
    display: block;
  }

  .copy-title br {
    display: inline;
  }

  .copy-description {
    width: 100%;
    font-family: 'UPS Berlingske Sans';
    font-size: 2.6vw;
    line-height: 3vw;
    height: 2.5vw;
    font-weight: 500;
    color: #000000;
    left: 0;
    top: 105%;
    display: block;
    position: relative;
    height: 100%;
    margin-top: 1%;
  }

  .swiper-pagination-bullets {
    bottom: 0px !important;
  }

  .footer-left {
    width: 100%;
    float: left;
    line-height: 14px;
    padding-top: 15px;
    padding-bottom: 10px;
    padding-left: 12px;
    padding-right: 12px;
  }

  .footer-right {
    width: 100%;
    float: left;
  }

  .swiper-button-next,
  .swiper-button-prev {
    display: none;
  }

  .swiper-button-next {
    /* background-image: url('../images/arrow-right.png')!important;
      background-size: 16px 27px!important;
      top: 50%;*/
  }

  .swiper-button-prev {
    /*background-image: url('../images/arrow-right.png')!important;
      background-size: 16px 27px!important;
      transform: rotate(180deg);
      top: 50%;*/
  }

  .swiper-pagination-bullet-active {
    opacity: 0.7 !important;
    background: #ffffff !important;
  }

  .top-logo {
    max-width: 250px;
    min-width: 122px;
    width: 100%;
    padding-top: 15px;
    padding-bottom: 15px;
  }

  .bottom-logo {
    padding-top: 0px;
  }

  .modal-copy {
    height: 67%;
  }

}


@media (min-width: 768px) {
   /*.mobile-scroll-description {
        display: none;     
    }*/
}


@media (min-width: 768px) and (max-width: 1200px) {

  .headline {
    font-size: 19px;
  }

  .address1,
  .address2 {
    font-size: 16px;
  }

  .email-label,
  .locations-label {
    font-size: 11px;
  }

  .input-box {
    width: calc(100% - 50px);
  }

}
}




/***********************/
/***********************/
/***********************/
/*        MODAL        */
/***********************/
/***********************/
/***********************/



html,
body {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

body>div {
  height: 100%;
  overflow: scroll;
  -webkit-overflow-scrolling: touch;
}

.foooter,
.top {
  overflow: hidden;
}

body {
  overscroll-behavior-y: none;
}

.ups-sup {
  top: -0.45vw;
}

.modal-dialog {
  width: 550px !important;
  margin: 5% auto 0 auto !important;
  max-width: 90% !important;
}

.modal-sky {
  padding-bottom: 15% !important;
  background: #009cbd;
  background: -moz-linear-gradient(90deg, rgba(0, 156, 189, 1) 35%, rgba(0, 109, 132, 1) 100%);
  background: -webkit-linear-gradient(90deg, rgba(0, 156, 189, 1) 35%, rgba(0, 109, 132, 1) 100%);
  background: linear-gradient(90deg, rgba(0, 156, 189, 1) 35%, rgba(0, 109, 132, 1) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#009cbd", endColorstr="#006d84", GradientType=1);
}

.modal-body {
  position: relative;
  padding-bottom: 0% !important;
  margin-bottom: 0%;
}

.modal-offer {
  margin:  -5% auto 3% auto;
  width:  90%;
}

.modal-the,
.modal-store,
.modal-framed {
  color: #FFFFFF;
  font-family: 'UPS Berlingske Sans';
  font-weight: 900;
  text-align: left;
  text-transform: uppercase;
  font-size: 2.5vw !important;
}

.modal-framed {
  border-radius: 1vw;
  /*border: 6px solid #ffffff !important;*/
  /*padding: 10% 0 3% 0 !important;*/
  border:  .5vw solid #ffffff;
  padding:  .7vw 0 .3vw 0 !important;
  text-align: center;
  line-height: 100% !important;
  /*font-size: 200% !important;*/
  letter-spacing: -.01 em;
  /*margin-top: -3%;*/
  /*margin-bottom: -1%;*/
  margin: -3% 0 -.2vw 0;
  background-color: transparent !important;
  -webkit-box-shadow: 0px 0px .3em .2em rgba(255, 255, 255, 0.65), rgba(255, 255, 255, .65) 0px 0px .3em .2em inset;
  -moz-box-shadow: 0px 0px .3em .2em rgba(255, 255, 255, 0.65), rgba(255, 255, 255, .65) 0px 0px .3em .2em inset;
  box-shadow: 0px 0px .3em .2em rgba(255, 255, 255, 0.65), rgba(255, 255, 255, .65) 0px 0px .3em .2em inset;
}
.modalLG {
  display: inline-block;
  font-size: 295% !important;
  padding-bottom: 1.25vw;
}

.safari .modal-framed {
  margin-top: -7px;
  margin-bottom: 0px;
}


/*.modal-the,
.modal-store {
  font-size: 350% !important;
}*/

.modal-store {
  text-align: right;

}

.modal-lockup {
  position: relative;
  text-align: center;
  /*margin: 0 auto;*/
    margin:  -1vw auto 2vw auto !important;
  padding: 0;
  width: 100%;
}

.modal-lockup img {
  width: 45%;
  /*margin-left: 15px;*/
}

.modal-header {
  border-bottom: 0px !important;
  padding-bottom: 15px !important;
}


.modal-copy {
  position: relative;
  bottom: 16%;
  font-size: 25px;
  top: 24%;
  padding-left: 9%;
  font-family: 'UPS Berlingske Sans';
  color: #000000;
  font-weight: 800;
  letter-spacing: -0.04vw;
  width: 91%;

}

.modal-white {
  display: block;
  width: 100%;
  position: relative;
  top: 68%;
  background-color: white;
  z-index: 2;
  height: 47%;
  left: 0%;
  margin-top: -15%;
  padding-top: 5%;
  padding-bottom: 1px;
}

iframe {
  top: 35%;
  overflow: hidden;
  position: absolute;
  bottom: 19%;
  height: 50px;
  border: 0;
  width: 100%;
  bottom: 0;
  left: 0;
}

@media (min-width: 767px) {
  iframe {
    height: 60px;
  }

}

.modal-open .modal {
  padding-right: 0 !important;
}

.input-parent {
  display: flex;
  margin-bottom: 10px;
  margin-top: 0px;
}

#email_button {
  width: 40%;
  font-family: 'UPS Berlingske Sans';
  font-size: 19px;
  color: #ffffff;
  background-color: #009CBD;
  border: 0;
  vertical-align: middle;
  padding-top: 6px;
}

#email_button:hover {
  background-color: #000000;
  border: 1px solid #009CBD;
  cursor: pointer;
}

#email_button[disabled] {
  cursor: not-allowed !important;
}

#email_capture {
  width: calc(60% - 10px);
  margin-right: 8px;
  vertical-align: middle;
  padding: 0;
  height: 40px;
  margin: 0;
  margin-right: 10px;
  color: black;
  font-weight: 200;
  border: 1px solid #009CBD;
  padding-left: 10px;
  font-size: 18px;
  padding-top: 3px;
}

#email_capture:focus {
  outline: -webkit-focus-ring-color auto 5px;
  outline-offset: 1px;
}

#email_button:focus {
  outline-offset: 1px;
}

.checkbox-parent {
  position: relative;
}

#checkbox:focus+.checkbox {
  outline: -webkit-focus-ring-color auto 3px !important;
}

.green-mark {
  height: 50px;
  margin-right: 10px;
  margin-left: -15px;
}

@media (max-width: 767px) {

  .green-mark {
    height: 40px;
    margin-right: 10px;
    margin-left: -15px;
  }
}

.success-message,
.fail-message {
  text-align: center;
}

.fail-message {
  color: red;
  font-size: 16px;
}

.error-message {
  font-size: 12px;
  color: red;
  text-align: left;
  font-weight: 500;
  letter-spacing: 0px;
  margin-top: -5px;
  display: none;
}

@media (max-width: 600px) {
  .fail-message {
    color: red;
    font-size: 14px;
  }
}


@media (max-width: 600px) {

  #email_button,
  #email_capture {
    font-size: 3vw;
  }
}

@media (max-width: 390px) {
  #email_button {
    font-size: 2.7vw;
  }
}


/*CUSTOM CHECKBOX*/
.container {
  display: block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;
  cursor: pointer;
  font-size: 22px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* Hide the browser's default checkbox */
.container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

/* Create a custom checkbox */
.checkmark {
  position: absolute;
  top: 3px;
  left: 0px;
  height: 22px;
  width: 22px;
  background-color: #ffffff;
  border-radius: 6px;
  border: 1px solid #009CBD;
}

/* On mouse-over, add a grey background color */
.container:hover input~.checkmark {
  background-color: #ccc;
}

/* When the checkbox is checked, add a blue background */
.container input:checked~.checkmark {
  background-color: #009CBD;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the checkmark when checked */
.container input:checked~.checkmark:after {
  display: block;
}

/* Style the checkmark/indicator */
.container .checkmark:after {
  left: 8px;
  top: 4px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 2px 2px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.checkbox-copy {
  font-size: 15px;
  line-height: 17px;
  font-weight: 300;
  position: absolute;
  top: 5px;
  left: 35px;
  letter-spacing: 0;
}

.modal-disclaimer {
  margin-top: 50px;
  border-top: 1px solid #009CBD;
  padding-top: 10px;
  font-size: 12px;
  line-height: 13px;
  font-weight: 300;
  text-align: center;
  letter-spacing: 0;
}

#email_capture:focus {
  background: #ffffff !important;
}

#email_label {
    font-weight: 800;
    letter-spacing: -0.25px;
    font-size: 21px;
    text-align: center;
    line-height: 109%;
    width: 100%;
    margin-top: -9px;
    margin-bottom: 18px;
  }


@media (max-width: 768px) {
  .modal-sky {
    padding-bottom: 14vw !important;
  }

  .modal-the,.modal-store, .modal-framed {
    font-size: 440% !important;
  }

  .modal-framed {
  border-radius: 2vw;
  border:  5px solid #ffffff !important;
  padding:  6.5% .5% 1% .5% !important;
  }

  .modal-lockup {
    margin-top: -3vw;
    margin-bottom: 4vw !important;
  }


  .lower-blue-mobile {
    width: 100%;
    padding-bottom: 28%;
    position: relative;
    overflow: hidden;
    margin-top: -3%;
    background-color: #009CBD;
  }

  .mobile-header-image-box {
    position: absolute;
    top: 0%;
    left: 10%;
  }

  .mobile-header-image-box img {
    width: 35vw;
  }


}


@media (max-width: 500px) {


    .brmb {
      display: block;
    }

  .modal-body {
    padding-bottom: 15% !important;
  }

  .checkbox-copy {
    font-size: 11px;
    line-height: 14px;
    font-weight: 300;
    position: absolute;
    top: 12px;
    left: 35px;
    margin-top: -9px;
    margin-bottom: 18px;
  }

  .modal-disclaimer {
    margin-top: 50px;
    border-top: 1px solid #009CBD;
    padding-top: 10px;
    font-size: 9px;
    line-height: 12px;
    font-weight: 300;
    text-align: center;
  }

  .modal-framed {
    border-radius: 2vw !important;
    border: 1vw solid #ffffff !important;
    padding: 4% 0 2% 0 !important;
    font-size: 270% !important;
  }

  .modal-the,
  .modal-store {
    font-size: 270% !important;
  }

  .modal-lockup {
    margin-top: -15% !important;
    margin-bottom: 9% !important;
  }

  .modal-lockup img {
    width: 40vw;
  }

  
 }

  

  @media screen and (-ms-high-contrast: active),
  screen and (-ms-high-contrast: none) {

    @media (max-width: 767px) {
      .copy-description {
        top: 17%;
      }


    }



  }


@media (min-width: 768px) and (max-width: 1100px) {
  .email-area {
    height: 215px;
    width: 28%;
    background-color: #ffffff;
    float: right;
    padding-top: 25px;
    padding-left: 5%;
    margin-right: 3%;
  }
}
