/* Placeholders Visibility */

[data-placeholder] {
  visibility: hidden;
}

/*Reset apple form styles*/
input,
textarea,
select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 0;
  background-image: none;
}

/* TABS INDICATOR */

.code-examples-tabs_tab-link div {
  pointer-events: none;
}

@media screen and (max-width: 991px) {
  .slider-arrow {
    display: none !important;
  }
}

/* Tooltip */
.tooltip_content {
  opacity: 0;
  transition: opacity 300ms ease-in-out, transform 300ms ease-in-out;
}

.tooltip-animation {
  transition: opacity 300ms ease-in-out, transform 300ms ease-in-out;
  opacity: 1;
}

.tooltip[data-show] {
  display: block;
}

.tooltip-arrow,
.tooltip-arrow::before {
  position: absolute;
  width: 8px;
  height: 8px;
  transform: rotate(45deg);
  background: var(--color--black);
}

.tooltip-arrow {
  visibility: hidden;
}

.tooltip-arrow::before {
  visibility: visible;
  content: '';
  transform: rotate(45deg);
}

.tooltip[data-popper-placement^='top'] > .tooltip-arrow {
  bottom: -4px;
}
.tooltip[data-popper-placement^='bottom'] > .tooltip-arrow {
  top: -4px;
}
.tooltip[data-popper-placement^='left'] > .tooltip-arrow {
  right: -4px;
}
.tooltip[data-popper-placement^='right'] > .tooltip-arrow {
  left: -4px;
}

/* Compatibility Matrix */
.compatibility-matrix-container {
  width: 110%;
  transform: translateX(-5%);
}

@media (max-width: 1200px) {
  .compatibility-matrix-container {
    width: 100%;
    transform: translateX(0);
  }
}

.compatibility-matrix-container #compatibility-filters {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row-reverse;
  justify-content: flex-end;
  gap: 24px;
  align-items: stretch;
}

@media (max-width: 480px) {
  .compatibility-matrix-container #compatibility-filters {
    flex-direction: column-reverse;
    gap: 8px;
  }
}

.compatibility-matrix-container select {
  padding: 18px 48px 18px 14px;
  font-size: 16px;
  font-weight: 600;
  width: 311px;
  margin-right: 24px;
  border-radius: 4px;
  border: 1px solid var(--color--light-gray);
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 250ms;
  cursor: pointer;
  background: url(https://uploads-ssl.webflow.com/651f1f10260bafeeb322049f/65709a2fe2bdc84b7fd152de_accordion-chevron.svg);
  background-repeat: no-repeat;
  background-position: top 50% right 17px;
  background-size: 16px;
}

@media (max-width: 480px) {
  .compatibility-matrix-container select:first-of-type {
    margin-bottom: 0.5rem;
  }
}

.compatibility-matrix-container select:hover {
  border: 1px solid var(--color--primary);
}

.compatibility-matrix-container select:focus-visible {
  outline-color: var(--color--primary);
}

.compatibility-matrix-container #region-select button {
  padding: 12px 16px;
  border: none;
  font-weight: bold;
  height: 54px;
  border: 1px solid #efefef;
}

.compatibility-matrix-container #region-select button:first-of-type {
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
}

.compatibility-matrix-container #region-select button:last-of-type {
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
}

.compatibility-matrix-container #region-select button.current-region {
  background-color: white;
  border: 1px solid var(--color--light-gray);
}

#compatibility-matrix {
  margin-top: 40px;
  width: 100%;
  max-height: 700px;
  overflow: auto;
}

#compatibility-matrix table,
#compatibility-matrix th,
#compatibility-matrix td {
  border-right: 1px solid var(--color--light-gray);
  border-bottom: 1px solid var(--color--light-gray);
  border-collapse: collapse;
  font-size: 14px;
}

#compatibility-matrix th,
#compatibility-matrix td {
  padding: 8px;
  min-width: 113px;
}

#compatibility-matrix th:first-child {
  text-transform: uppercase;
  z-index: 2;
  border-left: 0;
  border-top: 0;
}

#compatibility-matrix th:not(:first-child) {
  padding: 8px 4px;
}

.table-cell-head {
  position: sticky;
  top: 0;
  background-color: #ffffff;
  border-top: 0;
}

.table-cell-head::before {
  content: '';
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-color: transparent;
  border-top: 1px solid var(--color--light-gray);
}

.table-cell-head::after {
  content: '';
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-color: transparent;
  border-bottom: 1px solid var(--color--light-gray);
}

#compatibility-matrix tr > *:first-child {
  position: sticky;
  left: 0;
  background-color: #fff;
  border-left: 0;
}

#compatibility-matrix tr > *:first-child::before {
  content: '';
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-color: transparent;
  border-left: 1px solid var(--color--light-gray);
}

#compatibility-matrix tr > *:first-child::after {
  content: '';
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-color: transparent;
  border-right: 1px solid var(--color--light-gray);
}

#compatibility-matrix th:first-child::before {
  content: '';
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-color: transparent;
  border-top: 1px solid var(--color--light-gray);
  border-left: 1px solid var(--color--light-gray);
}

#compatibility-matrix th:first-child::after {
  content: '';
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-color: transparent;
  border-bottom: 1px solid var(--color--light-gray);
  border-right: 1px solid var(--color--light-gray);
}

.table-cell {
  line-height: 140%;
}

#compatibility-matrix tbody tr td:not(:first-child) {
  text-align: center;
}

.th-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 46px;
}

#compatibility-matrix th:first-child .th-content {
  align-items: flex-start;
}

.th-content .tooltip-component-wrapper {
  padding: 2px;
  height: auto;
  width: 100%;
  display: block;
}

.th-content .tooltip-component-wrapper p {
  display: inline;
  padding-right: 2px;
}

.th-content .tooltip-component-wrapper .tooltip_icon {
  width: 10px;
  height: 10px;
  position: absolute;
}

.table-cell div:first-child {
  font-weight: 600;
  color: var(--color--black);
}

.table-cell div:nth-child(2) {
  color: var(--color--dim-gray);
}

.card-container {
  padding: 24px 0px;
  border-bottom: 1px solid #b6b6b6;
}

.card-container h3 {
  font-size: 1.125rem;
  font-weight: 600;
}

.card-container .subtext {
  font-weight: 400;
}

.mobile-card-feature {
  margin-bottom: 8px;
}

.mobile-card-feature .checkmark {
  margin-right: 16px;
}

.mobile-card-feature-text {
  font-size: 1.125rem;
  line-height: 150%;
}

/* Ortto embed forms */
div[class^='ap3w-embeddable-form'] {
  width: 100%;
}

form[class^='ap3w-embeddable-form']:not(.roi-form) {
  font-family: inherit;
  border: 2px solid #00819d;
  box-shadow: 8px -8px 0 0 #00819d;
  padding: 24px;
  background-color: #ffffff;
  width: 100%;
  color: #282828;
}

form[class^='ap3w-embeddable-form'] .ap3w-form-input-label {
  display: block;
  margin-bottom: 8px;
  font-weight: normal;
}

form[class^='ap3w-embeddable-form'] input[id^='ap3w-form-input'],
form[class^='ap3w-embeddable-form'] textarea[id^='ap3w-form-input'] {
  border-radius: 4px;
  border: 1px solid #b6b6b6;
  min-height: 58px;
  margin-bottom: 16px;
  padding: 18.5px 14px;
  width: 100%;
  font-family: inherit;
  font-size: 1.125rem;
}

form[class^='ap3w-embeddable-form'] textarea[id^='ap3w-form-input'] {
  min-height: 150px;
}

form[class^='ap3w-embeddable-form'] input[id^='ap3w-form-input']:hover,
form[class^='ap3w-embeddable-form'] input[id^='ap3w-form-input']:focus,
form[class^='ap3w-embeddable-form'] textarea[id^='ap3w-form-input']:hover,
form[class^='ap3w-embeddable-form'] textarea[id^='ap3w-form-input']:focus {
  border: 1px solid #00819d;
  outline: none !important;
}

form[class^='ap3w-embeddable-form']:not(.roi-form) div[data-field-id='str::first'] {
  width: 49%;
  float: left;
}

form[class^='ap3w-embeddable-form']:not(.roi-form) div[data-field-id='str::last'] {
  width: 49%;
  float: right;
}

form[class^='ap3w-embeddable-form']:not(.roi-form) button[type='submit'] {
  min-height: 58px;
  padding: 16px 24px;
  background-color: #00819d;
  color: #ffffff;
  font-weight: bold;
  outline: 0;
  border: none;
  border-radius: 4px;
  font-family: inherit;
  font-size: 1.125rem;
}

form[class^='ap3w-embeddable-form']:not(.roi-form) button[type='submit']:hover {
  background-color: #00404e;
}

/* roi form button styling */
form[class^='ap3w-embeddable-form'].roi-form button[type='submit'] {
  padding: 16px 24px;
  line-height: 1.5rem;
  width: 100%;
  background-color: white;
  color: #00819d;
  font-weight: bold;
  outline: 0;
  border: 1px solid #00819d;
  border-radius: 4px;
  font-family: inherit;
  font-size: 1.125rem;
}

form[class^='ap3w-embeddable-form'].roi-form button[type='submit']:hover {
  background-color: #dcecef;
}
