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

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

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

.width-680 {
  width: 680px;
  max-width: 680px;
}

.width-1080 {
  width: 1080px;
  max-width: 1080px;
}

.width-1280 {
  width: 1280px;
  max-width: 1280px;
}

.width-1480 {
  width: 1480px;
  max-width: 1480px;
}

hr {
  display: block;
  margin-top: 10px;
  margin-bottom: 10px;
  border: none;
  border-bottom: 1px solid #e0e0e0;
}

/* rgba(255, 225, 0, 0.1),
rgba(255, 225, 0, 0.7) 4%,
rgba(255, 225, 0, 0.3) 
mark {
  margin: 0 -0.4em;
  padding: 0.1em 0.4em;
  border-radius: 0.8em 0.3em;
  background: transparent;
  background-image: linear-gradient(
    to right,
    rgba(0, 64, 128, 0.1),
    rgba(0, 64, 128, 0.15) 4%,
    rgba(0, 64, 128, 0.125)
  );
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}
*/

mark {
  position: relative;
  font-size: inherit;
  color: transparent;
  background: linear-gradient(135deg, #3060a0, #407099, #3060a0);
  background-clip: text;
  -webkit-background-clip: text;
}

mark.yellow {
  background: linear-gradient(135deg, #f4be00, #fff, #f4be00);
  background-clip: text;
  -webkit-background-clip: text;
}

mark.gold {
  background: linear-gradient(135deg, #c9b037, #d6c46e, #c9b037);
  background-clip: text;
  -webkit-background-clip: text;
}

/*
mark::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0, 64, 128, 0.5), rgba(0, 115, 166, 0.5), rgba(0, 64, 128, 0.5));
  clip-path: polygon(0 20%, 10% 10%, 20% 20%, 30% 10%, 40% 20%, 50% 10%, 60% 20%, 70% 10%, 80% 20%, 90% 10%, 100% 20%, 100% 100%, 0 100%);
  z-index: -1;
  opacity: 0.8;
}
*/

.video-container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  /* height: 100vh; */
  padding-left: 10%;
  padding-right: 10%;
  box-sizing: border-box;
}

.video-container video {
  width: calc(100% - 20%);
  height: 100%;
  object-fit: contain;
}

.video-container-play {
  position: absolute;
  opacity: 0;
  transform: scale(0.25);
  transition: opacity 0.25s ease, transform 0.25s ease;
  color: white;
  font-size: 86px;
  cursor: default;
  z-index: 5;
}

.video-container-play.visible {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
}

.carousel {
  display: block;
}

.carousel-items > * {
  display: none;
}

.carousel-items > *.active {
  display: block;
}

.carousel-switcher {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 15px;
}

.carousel-switcher > * {
  display: block;
  width: 14px;
  height: 14px;
  border-radius: 14px;
  margin-right: 8px;
  border: 2px solid #fff;
  background-color: #caddff;
  transition: all 250ms;
  cursor: pointer;
}

.carousel-switcher > *:active {
  opacity: .75;
}

.carousel-switcher > *.active {
  cursor: inherit;
  border: 2px solid #3060a0;
  background-color: #3060a0;
}

.quote {
  /* padding-left: 15px;
  border-left: 5px solid #5cb377; */
}

.quote blockquote {
  font-size: 115%;
  font-style: italic;
  font-weight: 300;
  line-height: 150%;
  text-indent: 10px;
  color: inherit;
  position: relative;
  /* padding: 20px;
  border-left: 5px solid #ed6524;
  background-color: #f5f5f5; */
}

.quote blockquote:before,
.quote blockquote:after {
  position: absolute;
  font-size: 200%;
  font-style: italic;
  line-height: 20px;
  margin-bottom: -10px;
}

.quote blockquote:before {
  content: '"';
  left: -15px;
  top: 10px;
}

/* .quote blockquote:after {
  content: '"';
} */

.quote-author {
  display: flex;
  align-items: center;
  margin-top: 15px;
}

.quote-author img {
  display: block;
  width: 100%;
  max-width: 70px;
  border-radius: 70px;
  height: auto;
  margin-right: 15px;
}

.pros,
.cons {
  list-style: none;
  padding: 0;
  margin: 0;
}

.pros li,
.cons li {
  display: flex;
  padding-bottom: 15px;
}

.pros li:last-of-type,
.cons li:last-of-type {
  padding-bottom: 0;
}

.pros li svg,
.cons li svg {
  display: block;
  margin-top: 2px;
  margin-right: 10px;
}

.pros li svg {
  fill: #4dcf42;
}

.cons li svg {
  fill: #e8377f;
}

div.features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

div.features > * {
  flex: 0 0 400px;
  /* flex-basis: 400px; */
  margin-left: 25px;
  margin-right: 25px;
  margin-top: 25px;
  margin-bottom: 25px;
}

div.features .feature {
  padding-left: 25px;
  padding-right: 25px;
}

div.features .feature.background {
  padding: 25px;
  border-radius: 10px;
}

div.features .feature.background.white {
  background-color: #fff;
}

div.features .feature.background.gray {
  background-color: #f5f5f5;
}

div.features .feature figure {
  display: inline-block;
  position: relative;
  width: 60px;
  margin-bottom: 5px;
  text-align: center;
}

div.features .feature figure img {
  display: inline-block;
  width: 100%;
  height: auto;
}

div.features .feature figure,
div.features .feature figure svg {
  color: #3060a0;
  fill: #3060a0;
}

div.features .feature figure svg {
  position: relative;
  z-index: 5;
}

div.features .feature figure i.circle {
  position: absolute;
  right: -5px;
  bottom: -5px;
  display: block;
  width: 50px;
  min-width: 50px;
  height: 50px;
  min-height: 50px;
  border-radius: 50px;
  /* background-color: rgba(244, 190, 0, .25); */
  background-color: #3060a0;
  opacity: .1;

  /* background-color: #f4be00;
  opacity: .3; */
  z-index: 1;
}

div.features .feature h3 {
  font-size: 18px;
  line-height: 26px;
  margin-bottom: 15px;
}

ul.features {
  list-style: none;
  text-align: left;
}

ul.features svg {
  color: var(--icon-color, #000);
  fill: var(--icon-color, #000);
}

/* ul.features.icons-green svg {
  color: #5cb377;
  fill: #5cb377;
} */

ul.features li {
  display: flex;
  margin-bottom: 15px;
}

ul.features li > * {
  padding: 0;
  margin: 0;
}

ul.features li h3 {
  font-size: 18px;
  line-height: 28px;
  margin-bottom: 5px;
}

ul.features li:last-of-type {
  margin-bottom: 0;
}

ul.features li svg.check {
  margin-top: 0px;
}

ul.features li svg {
  margin-right: 10px;
}

form {
  display: block;
  border-radius: 5px;
  text-align: left;
}

form.background {
  padding: 25px;
}

form.background.white {
  background-color: #fff;
}

form.background.gray {
  background-color: #f5f5f5;
}

form fieldset {
  display: block;
  padding: 0;
  margin: 0;
  margin-bottom: 15px;
  border: none;
}

form fieldset.privacy-notice {
  font-size: 90%;
  line-height: 150%;
  color: #555;
}

form fieldset.privacy-notice a {
  color: inherit;
  text-decoration: underline;
}

form fieldset:last-of-type {
  margin-bottom: 0;
}

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

form input,
form select,
form textarea {
  font-family: sans-serif;
  font-size: inherit;
  line-height: normal;
}

form input[type="text"],
form input[type="email"],
form select,
form textarea {
  display: block;
  width: 100%;
  padding: 15px;
  border-radius: 5px;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.15);
}

form textarea {
  height: 250px;
}

form input[type="text"]:focus,
form input[type="email"]:focus,
form select:focus,
form textarea:focus {
  border: 1px solid #3060a0;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.10);
}

form input[type="submit"],
form button {
  font-size: 100%;
  font-weight: bold;
  border-radius: 5px;
  border: 2px solid #3060a0;
  padding: 15px;
  padding-left: 20px;
  padding-right: 20px;
  color: #fff;
  transition: background 250ms;
  background-color: #3060a0;
  cursor: pointer;
}

form input[type="submit"]:active,
form button:active {
  background-color: #fff;
  color: #3060a0;
  fill: #3060a0;
}

form input[type="submit"].round,
form button.round {
  border-radius: 50px;
}

form input.error,
form textarea.error,
form select.error {
  color: #bb0000 !important;
  border: 1px solid #bb0000 !important;
}

details {
  padding: 0;
  margin: 0;
  text-align: left;
}

details:hover summary {
  color: #3060a0;
}

details[open]:hover summary {
  color: inherit;
}

details > summary {
  display: block;
  padding: 0;
  margin: 0;
  margin-top: 5px;
  margin-bottom: 5px;
  cursor: pointer;
  user-select: none;
}

details > summary:before {
  float: left;
  font-size: 22px;
  font-weight: 400;
  content: '+';
  margin-right: 7px;
  margin-top: -2px;
}

details[open] > summary:before {
  content: '–';
}

.faq details,
.spoiler details {
  margin-top: 10px;
  margin-bottom: 10px;
}

.faq details > summary,
.spoiler details > summary {
  font-size: 125%;
  font-weight: 300;
  line-height: inherit;
}

details > summary:active {

}

details[open] > summary,
details[open] > summary:before {
  font-weight: bold;
}

details[open] > summary {
  margin-bottom: 10px;
}

details[open] {
  padding: 10px;
  padding-left: 13px;
  background-color: rgba(48, 96, 160, .10);
  border-radius: 5px;
  margin: 0;
  margin-top: 10px;
  margin-bottom: 10px;
  padding-bottom: 10px;
}

a.button {
  display: inline-flex;
  align-items: center;
  font-size: 16px;
  font-weight: bold;
  line-height: 18px;
  padding: 15px;
  padding-left: 20px;
  padding-right: 20px;
  border-radius: 50px;
  border: 2px solid #3060a0;
  background-color: #3060a0;
  cursor: pointer;
  user-select: none;
  color: #fff;
  fill: #fff;
  text-decoration: none;
  transition: all 250ms;
}

a.button:active {
  background-color: #fff;
  color: #3060a0;
  fill: #3060a0;
}

a.button svg {
  margin-right: 5px;
}

a.button.green {
  border: 2px solid #3060a0;
  background-color: #3060a0;
}

a.button.green:active {
  background-color: #fff;
  color: #3060a0;
  fill: #3060a0;
}

a.button.white {
  background-color: #fff;
  color: #3060a0;
  fill: #3060a0;
}

a.button.white:active {
  background-color: #3060a0;
  color: #fff;
  fill: #fff;
}

.form-steps {

}

.form-steps > * {
  display: none;
}

.form-steps > *:first-child {
  display: block;
}

.pricing-table {
  display: inline-block;
  width: 100%;
  max-width: 1080px;
  text-align: left;
  overflow: scroll;
}

table.pricing,
table.pricing tr {
  border-collapse: collapse;
  width: 100%;
  text-align: left;
  user-select: none;
}

table.pricing tr {
  
}

table.pricing tr .tooltip {
  display: inline-block;
}

table.pricing tr .tooltip:before {
  display: inline-flex;
  position: relative;
  font-size: 12px;
  line-height: 12px;
  font-weight: bold;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  border-radius: 20px;
  margin-left: 2px;
  color: #fff;
  background-color: #3060a0;
  content: '?';
}

table.pricing tr .tooltip span {
  display: none;
  position: absolute;
  margin-left: 35px; 
  font-size: 90%;
  line-height: 150%;
  font-weight: normal;
  padding: 10px;
  border-radius: 5px;
  color: #fff;
  background-color: #000;
  width: 100%;
  max-width: 300px;
  white-space: normal;
  z-index: 10;
}

table.pricing tr .tooltip:hover span {
  display: block;
}

table.pricing tr:nth-child(even) {
  background-color: #fff;
}

table.pricing tr:hover {
  background-color: #caddff;
}

table.pricing tr.header:hover,
table.pricing tr.footer:hover {
  background-color: inherit;
}

table.pricing tr svg {
  color: #48c76e;
  fill: #48c76e;
}

table.pricing tr th {
  font-size: 125%;
  font-weight: bold;
  line-height: 150%;
}

table.pricing tr th,
table.pricing tr td {
  padding: 10px;
  width: 33.33%;
  min-width: 200px;
  white-space: nowrap;
}

table.pricing tr.header th {
  padding-top: 0;
  padding-bottom: 15px;
}

table.pricing tr.footer td {
  padding-top: 15px;
  padding-bottom: 0;
}

table.pricing tr th.center,
table.pricing tr td.center {
  text-align: center;
}

/* table.pricing tr td div {
  display: flex;
  align-items: center;
} */

table.pricing .price {
  display: inline-flex;
}

table.pricing .price .now {
  font-size: 22px;
  font-weight: bold;
  line-height: 22px;
}

table.pricing .price .regular {
  margin-left: 10px;
  text-decoration: line-through;
}

table.pricing .price-button {
  display: inline-flex;
  align-items: center;
  font-size: 15px;
  font-weight: bold;
  line-height: 15px;
  border-radius: 5px;
  text-decoration: none;
  color: #fff;
  background-color: #3060a0;
  padding: 12px;
  padding-left: 15px;
  padding-right: 15px;
  border-radius: 5px;
  transition: 250ms;
}

table.pricing .price-button:active {
  background-color: #4c5fa0;
}

table.pricing .price-button svg {
  margin-right: 5px;
  color: #fff;
  fill: #fff;
}