/* Mark Web Font */

@font-face {
  font-family: MarkWeb;
  src: url("https://storage.googleapis.com/switch_static/fonts/MarkWeb.woff") format("woff");
}

@font-face {
  font-family: MarkWeb-Bold;
  src: url("https://storage.googleapis.com/switch_static/fonts/MarkWeb-Bold.woff") format("woff"), url("https://storage.googleapis.com/switch_static/fonts/MarkWeb-Bold.eot") format("eot");
}

@font-face {
  font-family: MarkWeb-BoldItalic;
  src: url("https://dialpad.com/static/fonts/MarkWeb-BoldItalic.woff") format("woff");
 }

@font-face {
  font-family: MarkWeb-Medium;
  src: url("https://storage.googleapis.com/switch_static/fonts/MarkWeb-Medium.woff") format("woff");
}

@font-face {
  font-family: MarkWeb-MediumItalic;
  src: url("https://storage.googleapis.com/switch_static/fonts/MarkWeb-MediumItalic.woff") format("woff");
}

@font-face {
  font-family: MarkWeb-Light;
  src: url("https://storage.googleapis.com/switch_static/fonts/MarkWeb-Light.woff") format("woff");
}

@font-face {
  font-family: MarkWeb-LightItalic;
  src: url("https://storage.googleapis.com/switch_static/fonts/MarkWeb-LightItalic.woff") format("woff");
}

@font-face {
  font-family: MarkWeb-ExtraLight;
  src: url("https://storage.googleapis.com/switch_static/fonts/MarkWeb-ExtraLight.woff") format("woff");
}

@font-face {
  font-family: MarkWeb-Italic;
  src: url("https://storage.googleapis.com/switch_static/fonts/MarkWeb-Italic.woff") format("woff");
}

.float {
  float: left;
}

.rfloat {
  float: right;
}

.center {
  margin: auto;
  text-align: center;
}

.ghost {
  -webkit-transition: opacity 300ms ease, margin 300ms ease-out;
  -moz-transition: opacity 300ms ease, margin 300ms ease-out;
  -o-transition: opacity 300ms ease, margin 300ms ease-out;
  transition: opacity 300ms ease, margin 300ms ease-out;
  opacity: 1;
}

.ghost-hide {
  opacity: 0 !important;
}

.snappy {
  -webkit-transition: all 0.18s ease-in-out;
  -moz-transition: all 0.18s ease-in-out;
  -o-transition: all 0.18s ease-in-out;
  transition: all 0.18s ease-in-out;
}

.standard-transition{
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

.btn {
  display: inline-block;
  padding: 16px 30px;
  min-width: 208px;
  max-width: 300px;
  font-family: MarkWeb-Bold, helvetica, arial, sans-serif;
  font-size : 14px;
  line-height : 14px;
  letter-spacing : 2px;
  text-transform: uppercase;
  text-align: center;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

.btn:hover {
  cursor: pointer;
}

.p-btn-inv {
  background-color: #ffffff;
  color: #252525;
}

.p-btn-inv:hover {
  background-color: #4880f8;
  color: #ffffff;
}

.s-btn-inv {
  padding: 15px 29px;
  background-color: transparent;
  border: 1px solid #00d0b4;
  color: #00d0b4;
}

.s-btn-inv:hover {
  background-color: #00d0b4;
  color: #ffffff;
}

.hd .s-btn-inv {
  background-color: transparent;
  border-color: #ffffff;
  color: #ffffff;
}

.hd .s-btn-inv:hover {
  background-color: #4880f8;
  border-color: #4880f8;
}

#sprite {
  position: absolute;
  visibility: hidden;
  height: 0;
}

svg:not(.no-vertical-flip) {
  -ms-transform: scaleY(-1);
  -webkit-transform: scaleY(-1);
  -moz-transform: scaleY(1) !important;
  transform: scaleY(-1);
}

.layout-content .container {
	  margin-top: 20px !important;
}

.layout-content.status .custom-header-container {
	  margin-bottom: 0;
}

.title-container {
  margin-top: 20px;
}

.title-container img {
  display: block;
  margin: 0 auto;
}

.title-container img:first-child {
  margin-bottom: 30px;
}

.status-header-title {
  font-family: MarkWeb-Light, helvetica, arial, sans-serif;
  font-size: 40px;
  line-height: 50px;
  text-align: center;
}

/* Tab Container Styles */
.tab-container {
  max-width: 1028px;
  margin: 40px auto 20px;
  padding: 0 24px;
}

.tab-navigation {
  display: flex;
  background-color: #f5f5f5;
  border-radius: 8px;
  padding: 4px;
  margin-bottom: 30px;
  gap: 4px;
}

.tab-button {
  flex: 1;
  padding: 12px 24px;
  background: transparent;
  border: none;
  border-radius: 6px;
  font-family: MarkWeb-Medium, helvetica, arial, sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #666;
  cursor: pointer;
  transition: all 0.2s ease;
  text-align: center;
}

.tab-button.active {
  background-color: white;
  color: #252525;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.tab-button:hover:not(.active) {
  color: #252525;
}

.tab-content {
  display: none;
  animation: fadeIn 0.3s ease-in-out;
}

.tab-content.active {
  display: block;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Core Services Styles */
.services-table {
  width: 100%;
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.services-header {
  background: #f8f9fa;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  padding: 20px 24px;
  font-family: MarkWeb-Medium, helvetica, arial, sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #666;
  border-bottom: 1px solid #e9ecef;
}

.services-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  padding: 16px 24px;
  border-bottom: 1px solid #f1f3f4;
  align-items: center;
}

.services-row:last-child {
  border-bottom: none;
}

.service-name {
  font-family: MarkWeb, helvetica, arial, sans-serif;
  font-size: 15px;
  color: #252525;
}

/* Status icon styles */
.status-check {
  text-align: center;
  font-size: 18px;
  font-weight: bold;
}

.status-check.operational {
  color: #28a745;
}

.status-check.degraded {
  color: #007bff;
}

.status-check.partial {
  color: #ffc107;
}

.status-check.major {
  color: #dcad35;
}

/* Status icons using Unicode symbols */
.status-check.operational::before {
  content: "✓";
}

.status-check.degraded::before {
  content: "ⓘ";
}

.status-check.partial::before {
  content: "⚠";
}

.status-check.major::before {
  content: "⚠";
}

.status-update {
  background: #f8f9fa;
  padding: 16px 24px;
  font-family: MarkWeb, helvetica, arial, sans-serif;
  font-size: 14px;
  color: #666;
  border-top: 1px solid #e9ecef;
}

/* History Styles */
.history-intro {
  background: white;
  padding: 24px;
  border-radius: 12px;
  margin-bottom: 30px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.history-intro p {
  font-family: MarkWeb, helvetica, arial, sans-serif;
  font-size: 14px;
  line-height: 1.6;
  color: #666;
  margin: 0 0 12px 0;
}

.history-intro p:last-child {
  margin-bottom: 0;
  font-weight: 500;
}

.uptime-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.uptime-card {
  background: white;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.uptime-period {
  font-family: MarkWeb-Medium, helvetica, arial, sans-serif;
  font-size: 14px;
  color: #666;
  margin-bottom: 16px;
  text-align: center;
  padding: 8px 12px;
  background: #f8f9fa;
  border-radius: 6px;
}

.uptime-service {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
  padding: 8px 0;
  gap: 12px;
}

.uptime-service:last-child {
  margin-bottom: 0;
}

.service-label {
  font-family: MarkWeb, helvetica, arial, sans-serif;
  font-size: 13px;
  color: #252525;
  padding-right: 12px;
  flex: 1;
}

.uptime-percentage {
  font-family: MarkWeb-Medium, helvetica, arial, sans-serif;
  font-size: 13px;
  color: #28a745;
  font-weight: 500;
}

.uptime-charts {
  background: white;
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.chart-row {
  margin-bottom: 32px;
}

.chart-row:last-child {
  margin-bottom: 0;
}

.chart-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.chart-title {
  font-family: MarkWeb, helvetica, arial, sans-serif;
  font-size: 14px;
  color: #252525;
}

.chart-status {
  font-family: MarkWeb-Medium, helvetica, arial, sans-serif;
  font-size: 12px;
  color: #28a745;
  background: #f0f9f0;
  padding: 4px 8px;
  border-radius: 4px;
}

.chart-bar {
  height: 30px;
  background: #f8f9fa;
  border-radius: 4px;
  position: relative;
  overflow: hidden;
}

.chart-fill {
  height: 100%;
  background: linear-gradient(90deg, #28a745 0%, #28a745 98%, #ffc107 98%, #ffc107 100%);
  width: 100%;
}

/* [Primary Header] */
.hd {
  position: fixed;
  z-index: 100000000; /* super high to cover olark chat tab */
  top: 0;
  left: 0;
  vertical-align: middle;
  width: 100%;
  height: 80px;
}

.hd.opaque {
  background-color: #252525;
}

.hd p,
.hd a,
.hd a:link,
.hd a:visited,
.hd p {
  display: inline;
  font-family: MarkWeb-Bold, helvetica, arial, sans-serif;
  font-size: 10px;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.hd a:hover,
.hd a:active,
.hd p:hover {
  color: #222528;
  cursor: pointer;
}

.hd .btn {
  padding: 12px 15px 10px;
  font-family: MarkWeb-Bold, helvetica, arial, sans-serif;
  font-size: 10px;
  line-height: 1.3;
  text-align: center;
  min-width: auto;
}

.hd .s-btn-inv {
  padding: 11px 15px 9px;
  margin-right: 12px;
}

.hd .s-btn-inv:hover {
  background-color: #e0dcce;
  border-color: #e0dcce;
}

.hd .section {
  padding: 0;
}

.hd-logo {
  margin: 20px 35px 25px 20px;
}

.hd-logo img {
  width: 94px;
  height: auto;
}

.hd-logo .dialpad-logo {
  width: 111px;
  height: 27px;
  fill: #ffffff;
}

.hd-contact-links {
  margin: 24px 20px 0 0;
  line-height: 30px;
}

.hd-contact-links a {
  float: left;
}

.contact-sales-dialog {
  margin-right: 10px;
}

.hd-contact-links svg {
  height: 21px;
  width: 21px;
  vertical-align: middle;
  margin-right: 20px;
  -ms-transform: scaleY(1);
  -webkit-transform: scaleY(1);
  -moz-transform: scaleY(1);
  transform: scaleY(1);
}

.hd-contact-links svg path,
.hd-contact-links svg circle {
  fill: #ffffff;
  opacity: 1;
}

.hd-contact-links svg .fill {
  fill: none;
  opacity: 0;
}

.hd-contact-links svg:hover .stroke,
.hd-contact-links svg:hover .fill {
  fill: #e0dcce;
  opacity: 1;
}

.hd-contact-links svg:hover circle {
  fill: none;
  opacity: 0;
}

.call-us-drop {
  height: 40px;
  width: 180px;
  margin-top: 45px;
  margin-left: -80px;
  position: absolute;
  text-align: center;
  pointer-events: auto;
}

.call-us-drop.ghost-hide  {
  margin-top: 65px;
  pointer-events: none;
}

.call-us-drop:before {
  content: "";
  border: 5px solid transparent;
  border-bottom: 5px solid #ffffff;
  margin: -10px 0 0 85px;
  position: relative;
  width: 0;
  height: 0;
  display: block;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}

.call-us-drop:hover:before {
  border-bottom-color: #e0dcce;
}

a.tel-link:link {
  background: #ffffff;
  color: #252525;
  float: none;
  display: block;
  vertical-align: middle;
  line-height: 40px;
  font-family: 'MarkWeb-Light', sans-serif;
  text-transform: inherit;
  letter-spacing: 0;
  font-size: 14px;
  box-shadow: 0 2px 2px 0 rgba(0,0,0,.15);
}

.call-us-drop:hover a.tel-link:link {
  background-color: #e0dcce;
  text-decoration: none;
  color: #222528;
}

.hd-nav {
  margin-top: 32px;
}

.hd-main-link {
  position: relative;
  display: inline-block;
  margin-right: 12px;
}

.hd-main-link a {
  border-radius: 4px;
  padding: 12px 14px 11px;
}

.hd-main-link a:hover,
.hd-main-link.selected a {
  background-color: rgba(0,0,0,.35);
  color: #ffffff;
  text-decoration: none;
}

#hd-blog {
  margin-right: 0;
}

.hd-link-stroke {
  position: absolute;
  bottom: -7px;
  left: 0;
  right: 0;
  height: 2px;
  width: 100%;
  margin: 0 auto;
  background-color: #222528;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  filter: alpha(opacity=0);
  opacity:.0;
 }

.hd-main-link.selected .hd-link-stroke {
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  filter: alpha(opacity=100);
  opacity: 1.0;
}

.web-clear {
  clear: both;
}

.hd-user-links {
  display: none;
  margin: 10px 20px 0 0;
  line-height: 14px;
}

.hd-help-link {
  margin-right: 20px;
}

#hd-login {
  min-width: 76px;
  padding: 10px 13px 8px;
  margin-right: 12px;
  background-color: transparent;
  border: 1px solid #ffffff;
  color: #ffffff;
}

#hd-login:hover {
  background-color: #e0dcce;
  border-color: #e0dcce;
  color: #252525;
}

#hd-signup {
  min-width: 137px;
  padding: 11px 15px 9px;
  font-family: MarkWeb-Bold, helvetica, arial, sans-serif;
  font-size: 10px;
  line-height: 1.3;
  text-align: center;
  background-color: #ffffff;
  color: #252525;
}

#hd-signup:hover {
  background-color: #e0dcce;
}

a.hd-login-link,
a.hd-login-link:link,
a.hd-login-link:visited {
  color: #0080ff;
}

a.hd-login-link:hover,
a.hd-login-link:active {
  color: #0e74ff;
}

/* header mobile base styling */
.hd-mobile-menu,
.hd-mobile-nav,
.hd-contact-links-mobile {
  display: none;
}

.hd-mobile-menu {
  margin: 20px 60px 0 0;
  font-family: MarkWeb-Medium, helvetica, arial, sans-serif;
  font-size: 0.667em;
  text-transform: uppercase;
  cursor: pointer;
}

.g-xs-sprite {
  display: inline-block;
  vertical-align: text-bottom;
  height: 16px;
  background: url(/static/img/guest/webicons_master.svg) no-repeat;
  cursor: pointer;
}

.g-menu-icon {
  width: 24px;
  margin-left: 10px;
  background-size: 170px 95px;
  background-position: -71px -3px;
}

.g-menu-close {
  width: 16px;
  margin: 0 4px 0 14px;
  background-size: 113.3px 63.3px;
  background-position: -67px 0;
}

/* [Footer] */

footer {
  padding: 40px 20px;
  background-color: #252525;
  color: #ffffff;
}

footer:before {
  content: 'web';
  display: none;
}

footer .section {
  padding: 0 0 10px;
}

footer .four-col:last-of-type {
  padding-right: 0;
}

footer a:hover {
  text-decoration: none;
}

.ft-sub-links {
  display: block;
  margin: 0 0 50px;
}

footer h4 {
  font-family: MarkWeb-Bold, helvetica, arial, sans-serif;
  font-size: 12px;
  line-height: 18px;
  color: #ffffff;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin: 0 0 25px;
}

.ft-down {
  display: none;
}

.ft-link,
.ft-link:link,
.ft-link:visited,
.trademark {
  display: block;
  color: #ffffff;
  font-size: 0.78em;        /* 14px */
  line-height: 1.2em;
  margin-bottom: 8px;
}

.ft-link:hover {
  color: #3c66dc;
}

.ft {
  display: block;
  width: 30px;
  height: 37px;
  margin: 0 auto 20px;
  fill: #e1e1e1;
}

/* fixes for FF targeting */
.ft-download-icon svg {
  transform-origin: 0 18.5px;
}

.ft-download-icon use svg {
  fill: #ffffff;
}

.ft-download-icon:hover,
.ft-link:hover .ft-download-icon,
  /* fix for FF targeting */
.ft-download-icon:hover use svg,
.ft-link:hover .ft-download-icon use svg{
  fill: #d8f0f2;
}

.ft-social {
  margin-bottom: 20px;
}

.ft-social-btn {
  display: inline-block;
  width: 40px;
  height: 40px;
  margin: 0 10px;
  fill: #ffffff;
}

/* fixes for FF targeting */
.ft-social-btn svg {
  transform-origin: 0 20px;
}

.ft-social-btn use svg {
  fill: #ffffff;
}

.ft-social-btn:hover,
  /* fix for FF targeting */
.ft-social-btn:hover use svg {
  fill: #d8f0f2;
}

footer sup {
  font-size: 6px;
}

a[href].sw-phone {
  font-size: inherit !important;
  color: #ffffff !important;
}

/* [Sections Styling] */
.section {
  max-width: 1028px;
  padding: 100px 24px;
  margin: 0 auto;
}

.column {
  display: inline-block;
  vertical-align: top;
  float: left;
}

.section:after {
  clear: both;
  content: ".";
  display: block;
  height: 0;
  line-height: 0;
  visibility: hidden;
}

.four-col {
  width: 24.9%;
  padding: 0 20px;
}

.four-col:first-of-type,
.four-col:nth-of-type(2) {
  margin-bottom: 0;
}

/* [Hamburgers] */
/*!
 * Hamburgers
 * @description Tasty CSS-animated hamburgers
 * @author Jonathan Suh @jonsuh
 * @site https://jonsuh.com/hamburgers
 * @link https://github.com/jonsuh/hamburgers
 */
.hamburger {
  display: inline-block;
  cursor: pointer;
  transition-property: opacity, -webkit-filter;
  transition-property: opacity, filter;
  transition-property: opacity, filter, -webkit-filter;
  transition-duration: 0.15s;
  transition-timing-function: linear;
  font: inherit;
  color: inherit;
  text-transform: none;
  background-color: transparent;
  border: 0;
  margin: 0;
  overflow: visible;
}
.hamburger:focus {
  outline: none;
}

.hamburger-box {
  width: 24px;
  height: 24px;
  display: inline-block;
  position: relative; }

.hamburger-inner {
  display: block;
  top: 50%;
  margin-top: -2px;
}
.hamburger-inner,
.hamburger-inner::before,
.hamburger-inner::after {
  width: 24px;
  height: 2px;
  background-color: #ffffff;
  border-radius: 4px;
  position: absolute;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  transition-duration: 0.15s;
  transition-timing-function: ease;
}
.hamburger-inner::before,
.hamburger-inner::after {
  content: "";
  display: block;
}
.hamburger-inner::before {
  top: -7px;
}
.hamburger-inner::after {
  bottom: -7px;
}

/*
 * Spin
 */
.hamburger--spin .hamburger-inner {
  transition-duration: 0.3s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--spin .hamburger-inner::before {
  transition: top 0.1s 0.34s ease-in, opacity 0.1s ease-in;
}
.hamburger--spin .hamburger-inner::after {
  transition: bottom 0.1s 0.34s ease-in, -webkit-transform 0.3s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: bottom 0.1s 0.34s ease-in, transform 0.3s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: bottom 0.1s 0.34s ease-in, transform 0.3s cubic-bezier(0.55, 0.055, 0.675, 0.19), -webkit-transform 0.3s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--spin.is-active .hamburger-inner {
  -webkit-transform: rotate(225deg);
  transform: rotate(225deg);
  transition-delay: 0.14s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
.hamburger--spin.is-active .hamburger-inner::before {
  top: 0;
  opacity: 0;
  transition: top 0.1s ease-out, opacity 0.1s 0.14s ease-out;
}
.hamburger--spin.is-active .hamburger-inner::after {
  bottom: 0;
  -webkit-transform: rotate(-90deg);
  transform: rotate(-90deg);
  transition: bottom 0.1s ease-out, -webkit-transform 0.3s 0.14s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: bottom 0.1s ease-out, transform 0.3s 0.14s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: bottom 0.1s ease-out, transform 0.3s 0.14s cubic-bezier(0.215, 0.61, 0.355, 1), -webkit-transform 0.3s 0.14s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/* Andrew Paugh - July 8, 2025 - Remove uptime calculations */
.shared-partial.uptime-90-days-wrapper .legend {
  display: none;
}

small.month-uptime {
  display: none;
}

/* Corey Burke - July 11, 2025 - Hide outage information section in tooltip */
#uptime-tooltip .outage-field {
  display: none !important;
}

/* Hide "RELATED" header in tooltip */
#uptime-tooltip .related-events #related-event-header {
  display: none !important;
}

/* Hide "No Data" message in tooltip */
#uptime-tooltip .no-data-msg {
  display: none !important;
}

/* Hide "No downtime" message in tooltip */
#uptime-tooltip .no-outages-msg {
  display: none !important;
}

/* Hide link to historical uptime view */
.components-section .components-uptime-link {
  display: none !important;
}

.history-footer-link {
  display: none !important;
}

/* Hide past incidents list */
.layout-content.status .incidents-list {
  display: none !important;
}

/* Hide overall page status */
.page-status {
  display: none !important;
}

/* Hide components section unless looking at History */
.components-section {
  display: none;
}