.dialog {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 300;
  overflow: hidden;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  margin: 12px 20px;
  max-width: 15.5em;
  border-radius: 0.75em;
  background: #fff;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1), 0 2px 4px rgba(0, 0, 0, 0.1);
  color: #303030;
  text-align: center;
  font-size: 14px;
  font-family: 'Roboto', sans-serif;
  line-height: 1.3;
  line-height: 27px;
  opacity: 0.98;
  cursor: default;
  transition: all 0.75s, height 0s;
  transition-timing-function: cubic-bezier(0.25, 1.37, 0.44, 0.93);
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  pointer-events: all;
  -webkit-tap-highlight-color: transparent;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.dialog:hover {
  opacity: 1;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  transition: 0.35s;
}
.dialog *,
.dialog :after,
.dialog :before {
  box-sizing: inherit;
}
.dialog a,
.dialog div,
.dialog h3,
.dialog h4,
.dialog p,
.dialog span {
  border: 0;
  vertical-align: baseline;
  margin: 0;
  padding: 0;
}
.dialog .button {
  position: relative;
  display: inline-block;
  overflow: hidden;
  margin-right: 7px;
  margin-bottom: 10px;
  margin-left: 7px;
  padding: 16px 24px 17px;
  outline: 0;
  border: none;
  border-radius: 40px;
  background: #202020;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1), 0 2px 4px rgba(0, 0, 0, 0.1);
  color: #fff;
  vertical-align: top;
  white-space: nowrap;
  letter-spacing: normal !important;
  font-weight: 500;
  font-size: 18px;
  cursor: pointer;
  transition: 0.3s;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-appearance: none;
  -webkit-user-select: none !important;
  -moz-user-select: none !important;
  -ms-user-select: none !important;
  user-select: none !important;
}
.dialog .button:hover {
  box-shadow: 0 6px 7px 0 rgba(0, 0, 0, 0.15), 0 0 5px 0 rgba(0, 0, 0, 0.1);
  opacity: 1;
  -webkit-transform: translateY(-2px) !important;
  transform: translateY(-2px) !important;
  transition: 0.35s !important;
}
.dialog .button:hover:after {
  opacity: 0.5;
}
.dialog .button:active {
  box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.1), 0 0 10px 0 rgba(0, 0, 0, 0.1),
    0 1px 4px -1px rgba(0, 0, 0, 0.1);
  -webkit-transform: translateY(0) !important;
  transform: translateY(0) !important;
  transition: 0.35s !important;
}
.dialog .button:active:after {
  opacity: 1;
}
.dialog a {
  cursor: pointer;
  color: inherit;
  transition: 0.35s;
  -webkit-transition: color 0.3s ease-in-out;
  -ms-transition: color 0.3s ease-in-out;
  -o-transition: color 0.3s ease-in-out;
  transition: color 0.3s ease-in-out;
}
.dialog a:hover {
  transition: 0.15s;
  opacity: 0.8;
}
.dialog h3 {
  font-weight: 400;
  font-weight: 200;
  font-size: 1.65em;
  line-height: 1.25em;
}
.dialog h3 {
  font-size: 20px;
  margin-bottom: 12px;
}
.dialog h4 {
  margin-bottom: 10px;
  font-weight: 300;
  font-size: 1.44em;
  line-height: 1.25em;
}
.dialog p.micro {
  font-size: 14px;
  line-height: 1.5714;
  margin-bottom: 20px;
  margin-top: 2px;
}
.dialog .close,
.dialog [data-dialog-action="close"] {
  cursor: pointer;
}
.dialog .close {
  padding: 12px;
  position: absolute;
  font-size: 0;
  top: 0;
  right: 0;
  transition: 0.35s;
  opacity: 0.2;
  z-index: 10;
}
.dialog .close:after,
.dialog .close:before {
  content: "";
  width: 14px;
  height: 2px;
  border-radius: 2px;
  background: #202020;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  position: absolute;
  right: 6px;
}
.dialog .close:before {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.dialog .close:active {
  opacity: 1;
}
.dialog:hover .close {
  opacity: 0.5;
}
.dialog .close:hover {
  opacity: 1 !important;
}
.dialog .dialogContent {
  padding: 15px;
}
.dialog .hiddenContent {
  overflow: hidden;
  display: block;
  max-height: 0;
  opacity: 0;
  transition: 0.5s;
}
.dialog:hover .hiddenContent {
  max-height: 90px;
  opacity: 1;
}
@media (max-width: 414px) {
  .dialog {
    margin: 10px;
  }
}
.dialog.bottom {
  top: inherit;
  bottom: 0;
}
.dialog.left {
  right: inherit;
  left: 0;
}
.crop {
  margin: 0 !important;
}
.left {
  text-align: left !important;
}
.center {
  text-align: center !important;
}
.bottom {
  vertical-align: bottom !important;
}
.block {
  display: block !important;
}
.margin-bottom-2 {
  margin-bottom: 20px !important;
}
.dialog p {
  font-weight: 300;
  text-shadow: 0 -1px 0 rgba(0, 0, 30, 0.4);
}
.dialog h3,
.dialog h4,
.dialog span {
  text-rendering: optimizeLegibility;
}
.dialog a,
.dialog a:link,
.dialog a:visited,
.dialog a:active {
  text-decoration: none;
}
.dialog a.button,
.dialog a.button:link,
.dialog a.button:visited,
.dialog a.button:active {
  text-decoration: none;
}
.dialog a.button:not(.bg-light-navy-lt),
.dialog a.button:not(.bg-light-navy-lt):link,
.dialog a.button:not(.bg-light-navy-lt):visited,
.dialog a.button:not(.bg-light-navy-lt):active {
  color: #fff;
}
.dialog .button.bg-orange {
  background-color: #e8663b;
}
.dialog .text * {
  text-shadow: none;
}
.dialog .button {
  box-shadow: none;
  display: inline-block;
  margin-left: 2px;
  padding: 0 1.4em;
  height: 2.55em;
  outline: 0;
  border: none;
  border-radius: 20px;
  background-color: #5495cf;
  color: #ffffff;
  text-align: center;
  text-decoration: none;
  text-shadow: 0 -1px 0 rgba(0, 0, 10, 0.15);
  white-space: nowrap;
  font-weight: 400;
  font-size: 1rem;
  line-height: 2.65em;
  cursor: pointer;
  -webkit-transition: background-color 0.3s ease-in-out;
  -moz-transition: background-color 0.3s ease-in-out;
  -o-transition: background-color 0.3s ease-in-out;
  transition: background-color 0.3s ease-in-out;
  margin-top: -0.25em;
}
.dialog .button:hover {
  background-color: #68a1d5;
}
.dialog .button.bg-orange:hover {
  background-color: #fb8873;
}
.dialog .center {

}
.dialog.dialog--csf .button {
  margin-bottom: 0;
}
.dialog.dialog--csf p {
  font-size: 0.93em;
  line-height: 1.45em;
  font-weight: 400;
  margin-bottom: 1.75em;
  opacity: 0.85em;
}
#countdown {
  font-weight: 400;
}
.dialog.dialog--csf .micro {
  font-size: 0.75em;
  line-height: 1.3em;
  margin: 1.3em 0 0 0;
}
.dialog.dialog--csf p.micro a {
  text-decoration: underline;
  color: #3d81be;
}
.dialog .countdown {
  color: #fff;
  background-color: #18212d;
  padding: 10px 20px;
}
.dialog.hidden {
  display: none;
}
.dialog.hide {
  -webkit-transform: scale(0.5);
          transform: scale(0.5);
  opacity: 0 !important;
  transition: height 0s, opacity 0.5s, -webkit-transform 0.5s !important;
  transition: height 0s, opacity 0.5s, transform 0.5s !important;
  transition: height 0s, opacity 0.5s, transform 0.5s, -webkit-transform 0.5s !important;
}
@media screen and (max-width: 900px) {
  .dialog.bottom {
      bottom: 90px;
      z-index: 501;
  }
}

@media screen and (min-width: 1200px) {
  .dialog.left {
    right: 0;
    left: inherit;
  }
}
@media screen and (max-width: 500px) {
  .dialog {
    font-size: 13px;
  }
  #countdown {
    font-size: 1em;
    display: inline-block;
    font-weight: 500;
  }
  .dialog .countdown span {
    font-style: italic;
    margin-right: 3px;
  }
  .dialog .countdown {
    white-space: nowrap;
    text-align: left;
    padding: 8px 20px 5px 20px;
  }
  .dialog.dialog--csf .button {
    height: 2.4em;
    line-height: 2.4em;
  }
  .countdown {
    display: none;
  }
}
