@import './fonts/icons/icons.css';
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100;300;500;600;700;900&display=swap");
:root {
  --color-orange: #ffae17;
  --color-orange-light: #FFF3DF;
  --color-blue: #1f75ff;
  --color-black: #333333;
  --color-text: #868686;
  --color-white: #FFFFFF;
  --color-gray: #706c61;
  --color-red: #FF0000;
}

@keyframes skeleton {
  0% {
    background-position: -200px 0;
  }
  100% {
    background-position: calc(200px + 100%) 0;
  }
}
@keyframes opacity {
  0% {
    opacity: 0.2;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0.2;
  }
}
main {
  width: 100%;
}

*,
*:after,
*:before {
  box-sizing: border-box;
}

body {
  display: block !important;
  width: 100%;
  background-color: white;
  font-size: 16px;
}
body.body--with-footer .main {
  align-items: normal;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  /* display: none; <- Crashes Chrome on hover */
  -webkit-appearance: none;
  margin: 0;
  /* <-- Apparently some margin are still there even though it's hidden */
}

input,
textarea,
button,
select {
  border: none;
  background: none;
  outline: none;
  border-radius: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

input,
textarea,
select {
  background-color: #f3f4f6;
}

input[type=file] {
  padding: 10px 12px;
  border: 1px solid #D8D8D8;
  border-radius: 12px;
  background-color: #f3f4f6;
  font-size: 14px;
  color: #4b5563;
}

input[type=file]::file-selector-button {
  margin-right: 12px;
  border: 1px solid #cbd5e1;
  background-color: #ffffff;
  color: #111827;
  padding: 8px 12px;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
}

input[type=file]::-webkit-file-upload-button {
  margin-right: 12px;
  border: 1px solid #cbd5e1;
  background-color: #ffffff;
  color: #111827;
  padding: 8px 12px;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
}

.container {
  max-width: 320px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 16px;
  padding-right: 16px;
}
@media (min-width: 767px) {
  .container {
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media (min-width: 1024px) {
  .container {
    max-width: 980px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media (min-width: 1202px) {
  .container {
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
  }
}

.main-page {
  padding-top: 65px;
}
@media (min-width: 767px) {
  .main-page {
    padding-top: 100px;
  }
}

.block .block__title {
  font-size: 14px;
  margin-bottom: 23px;
}

.product-item.product-item--loading .product__image:before,
.product-item.product-item--loading .product__description h3:before,
.product-item.product-item--loading .product__price h4:before {
  content: "";
  background-color: #eee;
  background-image: linear-gradient(90deg, #eee, #f5f5f5, #eee);
  animation-name: skeleton;
  animation-duration: 1.2s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
  background-size: 200px 100%;
  background-repeat: no-repeat;
  border-radius: 4px;
  display: inline-block;
  line-height: 1;
  width: 100%;
}
.product-item.product-item--loading .product__image {
  position: relative;
}
.product-item.product-item--loading .product__image:before {
  top: 0;
  left: 0;
  position: absolute;
  width: 100%;
  height: 100%;
}
.product-item.product-item--loading .product__description h3:before {
  height: 20px;
  width: 80%;
}
.product-item.product-item--loading .product__price h4 {
  width: 40%;
}
.product-item.product-item--loading .product__price h4:before {
  height: 18px;
  width: 100%;
}
.product-item .product__image {
  height: 250px;
  background-color: #FAFAFA;
  margin-bottom: 20px;
  position: relative;
}
@media (min-width: 767px) {
  .product-item .product__image {
    height: 385px;
    margin-bottom: 30px;
  }
}
.product-item .product__image > a {
  height: 100%;
  width: 100%;
  display: block;
  padding: 18px;
}
@media (min-width: 767px) {
  .product-item .product__image > a {
    padding: 24px;
  }
}
.product-item .product__image .btn-heart {
  top: 10px;
  right: 12px;
  z-index: 10;
  width: 32px;
  font-size: 12px;
  border: none;
  height: 32px;
  background-color: #FFF;
  position: absolute;
  box-shadow: 0px 0px 3px 0px rgba(0, 0, 0, 0.16);
}
@media (min-width: 767px) {
  .product-item .product__image .btn-heart {
    height: 38px;
    width: 38px;
    top: 19px;
    right: 19px;
    font-size: 14px;
  }
}
.product-item .product__image .btn-heart:hover, .product-item .product__image .btn-heart.btn-heart--active {
  color: #FFF;
  background-color: var(--color-orange);
}
.product-item .product__image img {
  top: 0;
  left: 0;
  z-index: 5;
  width: 100%;
  height: 100%;
  -o-object-position: top center;
     object-position: top center;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
}
.product-item .product__image .product__discount {
  color: #FFF;
  padding: 5px 9px;
  border-radius: 40px;
  font-weight: 500;
  font-size: 12px;
  z-index: 10;
  position: relative;
  background-color: var(--color-red);
}
.product-item .product__description h3 {
  margin-bottom: 9px;
  font-weight: 300;
  font-size: 13px;
}
@media (min-width: 767px) {
  .product-item .product__description h3 {
    font-size: 16px;
  }
}
.product-item .product__description .product__price {
  display: flex;
}
.product-item .product__description .product__price h4 {
  font-weight: 400;
  font-size: 15px;
}
@media (min-width: 767px) {
  .product-item .product__description .product__price h4 {
    font-size: 20px;
  }
}
.product-item .product__description .product__price span {
  color: #CECECE;
  margin-left: 20px;
  font-size: 15px;
}
@media (min-width: 767px) {
  .product-item .product__description .product__price span {
    font-size: 20px;
    margin-left: 29px;
  }
}
.product-item .product__description .product__price.product__price--discount h4 {
  color: #FF0000;
}

.section-products-featured .section-products-featured__header {
  display: flex;
  align-items: center;
  margin-bottom: 35px;
  justify-content: space-between;
}
@media (min-width: 767px) {
  .section-products-featured .section-products-featured__header {
    margin-bottom: 65px;
  }
}
.section-products-featured .section-products-featured__header h3 {
  font-weight: 300;
  font-size: 18px;
}
@media (min-width: 767px) {
  .section-products-featured .section-products-featured__header h3 {
    font-size: 29px;
  }
}

.checkbox {
  font-weight: 300;
  font-size: 14px;
  display: flex;
  color: #000;
  margin-bottom: 18px;
  align-items: center;
}

.quantity-buttons {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.quantity-buttons .btn {
  margin: 0 10px;
}

.quantity-button {
  border-radius: 50px;
  height: 38px;
  padding: 0 10px;
  display: inline-flex;
  align-items: center;
  border: 1px solid #D8D8D8;
}
@media (min-width: 767px) {
  .quantity-button {
    height: 49px;
  }
}
.quantity-button .quantity-button__btn {
  font-size: 23px;
  font-weight: 400;
  margin-top: -5px;
}
.quantity-button span {
  font-size: 18px;
  color: #000;
  margin: 0 10px;
  font-weight: 700;
}

.product-single {
  margin-bottom: 70px;
}
@media (min-width: 767px) {
  .product-single {
    margin-bottom: 170px;
  }
}
.product-single .product-single__description {
  max-width: 938px;
  margin: 0 auto;
  flex-wrap: wrap;
}
@media (min-width: 767px) {
  .product-single .product-single__description {
    display: flex;
    justify-content: space-between;
  }
}
.product-single .product-single__description .product-description-block {
  text-align: center;
  width: 100%;
  margin-bottom: 60px;
}
@media (min-width: 767px) {
  .product-single .product-single__description .product-description-block {
    width: 48%;
    margin-bottom: 0;
  }
}
.product-single .product-single__description .product-description-block i {
  display: block;
  font-size: 30px;
  margin-bottom: 30px;
}
@media (min-width: 767px) {
  .product-single .product-single__description .product-description-block i {
    font-size: 38px;
    margin-bottom: 48px;
  }
}
.product-single .product-single__description .product-description-block h4 {
  color: #000;
  font-weight: 700;
  font-size: 15px;
  margin-bottom: 25px;
}
@media (min-width: 767px) {
  .product-single .product-single__description .product-description-block h4 {
    margin-bottom: 35px;
    font-size: 16px;
  }
}
.product-single .product-single__description .product-description-block p {
  color: #000;
  font-size: 13px;
  line-height: 145%;
  text-align: left;
}
@media (min-width: 767px) {
  .product-single .product-single__description .product-description-block p {
    font-size: 14px;
  }
}
.product-single .product-single__content {
  margin-bottom: 50px;
}
@media (min-width: 767px) {
  .product-single .product-single__content {
    display: flex;
    align-items: flex-start;
    margin-bottom: 100px;
  }
}
@media (min-width: 767px) {
  .product-single .product-gallery {
    margin-right: 0px;
  }
}
.product-single .product-gallery .product-gallery__thumbs {
  height: 300px;
}
@media (min-width: 767px) {
  .product-single .product-gallery .product-gallery__thumbs {
    height: 491px;
  }
}
@media (min-width: 767px) {
  .product-single .product-gallery .product-gallery__thumb {
    height: calc(20% - 15px);
  }
}
.product-single .product-content {
  flex: 1;
}
.product-single .product-single__reviews {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
}
.product-single .product-single__reviews .reviews-list {
  width: 100%;
  margin-left: auto;
}
@media (min-width: 1024px) {
  .product-single .product-single__reviews .reviews-list {
    width: 48%;
  }
}
.product-single .product-single__info .product-single__info-btns {
  display: flex;
  justify-content: center;
  margin-bottom: 90px;
}
.product-single .product-single__info .product-single__info-btns .btn {
  margin: 0 15px;
  padding: 8px 22px;
}
@media (min-width: 767px) {
  .product-single .product-single__info .product-single__info-btns .btn {
    padding: 12px 28px;
  }
}
.product-single .product-single__info .product-single__info-btns .btn.btn--active {
  border: 1px solid var(--color-orange);
}

.product-content {
  position: relative;
}
.product-content .product-content__intro {
  margin-bottom: 40px;
}
@media (min-width: 767px) {
  .product-content .product-content__intro {
    margin-bottom: 60px;
  }
}
.product-content .product-filter-item {
  margin-bottom: 38px;
}
.product-content .product-filter-item:last-of-type {
  margin-bottom: 0;
}
.product-content .product-filter-item h5 {
  font-weight: 300;
  font-size: 13px;
  margin-bottom: 19px;
}
.product-content .product-filter-item h5 strong {
  font-weight: 700;
}
.product-content .product__prices {
  display: flex;
}
.product-content .product__prices h4 {
  font-weight: 400;
  font-size: 18px;
}
@media (min-width: 767px) {
  .product-content .product__prices h4 {
    font-size: 30px;
  }
}
.product-content .product__prices span {
  margin-left: 30px;
  font-weight: 400;
  font-size: 18px;
  color: #CECECE;
}
@media (min-width: 767px) {
  .product-content .product__prices span {
    font-size: 30px;
  }
}
.product-content .product__prices .sale {
  color: #FF0000;
}
.product-content .product__id {
  top: -10px;
  right: 0;
  text-align: right;
  line-height: 146%;
  color: #CECECE;
  font-size: 12px;
  position: absolute;
}
.product-content .product__name {
  font-size: 20px;
  font-weight: 300;
  margin-bottom: 9px;
}
@media (min-width: 767px) {
  .product-content .product__name {
    font-size: 30px;
    margin-bottom: 15px;
  }
}
.product-content .product-on-sale {
  background-color: #FF0000;
  color: #FFF;
  font-size: 11px;
  font-weight: 500;
  padding: 5px 9px;
  text-transform: uppercase;
  border-radius: 40px;
  margin-bottom: 15px;
  display: inline-block;
}
@media (min-width: 767px) {
  .product-content .product-on-sale {
    font-size: 12px;
    margin-bottom: 25px;
  }
}
.product-content .inStock {
  background-color: #0b8800 !important;
}

.product-gallery {
  display: flex;
  margin-bottom: 40px;
}
@media (min-width: 767px) {
  .product-gallery {
    margin-bottom: 0;
  }
}
.product-gallery .product-gallery__thumbs {
  display: none;
}
@media (min-width: 767px) {
  .product-gallery .product-gallery__thumbs {
    width: 97px;
    display: block;
    margin-right: 28px;
  }
}
.product-gallery .product-gallery__thumb {
  width: 100%;
  height: 97px;
  margin-bottom: 15px;
}
.product-gallery .product-gallery__thumb img {
  width: 100%;
  height: 100%;
  -o-object-position: top center;
     object-position: top center;
  -o-object-fit: cover;
     object-fit: cover;
}
.product-gallery .product-gallery__image {
  height: 300px;
  width: 100%;
}
@media (min-width: 767px) {
  .product-gallery .product-gallery__image {
    width: 100%;
    height: auto;
  }
}
.product-gallery .product-gallery__image img {
  width: 100%;
  height: 100%;
  -o-object-position: top center;
     object-position: top center;
  -o-object-fit: cover;
     object-fit: cover;
}

.review-item {
  display: flex;
}
.review-item .review__avatar {
  width: 40px;
  margin-right: 27px;
  flex-shrink: 0;
  background-color: gray;
  border-radius: 100%;
  height: 40px;
}
.review-item .review__avatar img {
  border-radius: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
  width: 100%;
}
.review-item .review__content {
  flex: 1;
}
.review-item .review__content h3 {
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 4px;
}
.review-item .review__content .review__comment {
  font-size: 13px;
  color: #000;
  line-height: 155%;
}
.review-item .review__content .react-rater {
  margin-bottom: 5px;
}
.review-item .review__content .react-rater .react-rater-star {
  margin-right: 4px;
  font-size: 21px;
  line-height: 100%;
}
.review-item .review__content .react-rater .react-rater-star.is-active {
  color: var(--color-orange);
}
.review-item .review__content .react-rater .react-rater-star.is-active-half:before {
  color: var(--color-orange);
}

.reviews-list .review-item {
  margin-bottom: 35px;
}
.reviews-list .review-item:last-of-type {
  margin-bottom: 0;
}

.product-punctuation {
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 50px;
}
@media (min-width: 767px) {
  .product-punctuation {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
  }
}
@media (min-width: 1024px) {
  .product-punctuation {
    width: 52%;
  }
}
.product-punctuation .product-punctuation__values {
  text-align: center;
  margin-bottom: 25px;
}
@media (min-width: 767px) {
  .product-punctuation .product-punctuation__values {
    margin-bottom: 0;
  }
}
.product-punctuation .product-punctuation__values h3 {
  font-size: 59px;
  font-weight: 700;
  margin-bottom: 6px;
}
.product-punctuation .product-punctuation__values .react-rater {
  margin-bottom: 9px;
}
.product-punctuation .product-punctuation__values .react-rater .react-rater-star {
  margin-right: 4px;
  font-size: 23px;
  line-height: 100%;
}
.product-punctuation .product-punctuation__values .react-rater .react-rater-star.is-active {
  color: var(--color-orange);
}
.product-punctuation .product-punctuation__values .react-rater .react-rater-star.is-active-half:before {
  color: var(--color-orange);
}
.product-punctuation .product-punctuation__rates {
  width: 200px;
}
@media (min-width: 767px) {
  .product-punctuation .product-punctuation__rates {
    margin-left: 68px;
  }
}
.product-punctuation .punctuation-btn-wrapper {
  width: 100%;
  margin-top: 30px;
  text-align: center;
}
@media (min-width: 767px) {
  .product-punctuation .punctuation-btn-wrapper {
    margin-top: 50px;
  }
}

.punctuations-lists .punctuation-item {
  display: flex;
  align-items: center;
}
.punctuations-lists .punctuation-item .react-rater .react-rater-star.is-active {
  color: var(--color-orange);
}
.punctuations-lists .punctuation-item .react-rater .react-rater-star.is-active-half:before {
  color: var(--color-orange);
}
.punctuations-lists .punctuation-item > span {
  font-size: 12px;
  color: #000;
  margin: 0 auto;
}
.punctuations-lists .punctuation-item .punctuation-item__bar {
  height: 2px;
  width: 142px;
  margin-left: auto;
  border-radius: 40px;
  position: relative;
  background-color: #DBDBDB;
}
.punctuations-lists .punctuation-item .punctuation-item__bar .punctuation-item__bar__current {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 50%;
  z-index: 10;
  background-color: var(--color-orange);
}

.cart {
  padding: 52px 0;
}
.cart .cart__intro {
  display: flex;
  align-items: center;
  margin-bottom: 35px;
  justify-content: space-between;
}
@media (min-width: 767px) {
  .cart .cart__intro {
    margin-bottom: 66px;
  }
}
.cart .cart__title {
  font-size: 20px;
  font-weight: 700;
  line-height: 140%;
}
.cart .cart-actions {
  margin-top: 75px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.cart .cart-actions .btn {
  margin-left: 20px;
}
.cart .cart-actions .cart-actions__items-wrapper {
  display: flex;
  width: 100%;
  align-items: center;
}
@media (min-width: 767px) {
  .cart .cart-actions .cart-actions__items-wrapper {
    margin-top: 30px;
  }
}
@media (min-width: 1024px) {
  .cart .cart-actions .cart-actions__items-wrapper {
    width: auto;
    margin-top: 0;
  }
}
.cart .cart-actions.cart-actions--checkout {
  display: flex;
  flex-direction: column-reverse;
}
@media (min-width: 767px) {
  .cart .cart-actions.cart-actions--checkout {
    flex-direction: row;
  }
}
.cart .cart-actions.cart-actions--checkout .cart-actions__items-wrapper {
  margin-bottom: 30px;
  justify-content: space-between;
}
@media (min-width: 767px) {
  .cart .cart-actions.cart-actions--checkout .cart-actions__items-wrapper {
    width: auto;
    justify-content: flex-start;
  }
}
.cart .cart-actions.cart-actions--checkout .cart-actions__items-wrapper .btn {
  padding: 9px 13px;
  font-size: 10px;
  margin-left: 0;
}
@media (min-width: 767px) {
  .cart .cart-actions.cart-actions--checkout .cart-actions__items-wrapper .btn {
    font-size: 12px;
    padding: 11px 20px;
  }
}
.cart .cart-actions.cart-actions--checkout .cart-actions__items-wrapper .btn:first-of-type {
  margin-right: 10px;
}
.cart .icon-cancel {
  font-size: 13px;
}
.cart .cart__btn-back {
  font-weight: 700;
  font-size: 14px;
  color: #000;
  margin-right: auto;
  margin-bottom: 40px;
}
@media (min-width: 767px) {
  .cart .cart__btn-back {
    margin-bottom: 0;
  }
}
.cart .cart__btn-back i {
  margin-right: 15px;
}
.cart .cart__promo-code {
  padding: 0 20px;
  font-size: 13px;
  height: 40px;
  width: 100%;
  margin-bottom: 18px;
  border: 1px solid #D8D8D8;
  border-radius: 30px;
}
@media (min-width: 767px) {
  .cart .cart__promo-code {
    height: 49px;
    width: auto;
    margin-bottom: 0;
    margin-right: 0;
  }
}
@media (min-width: 1024px) {
  .cart .cart__promo-code {
    margin-right: 70px;
  }
}
.cart .cart__promo-code::-webkit-input-placeholder {
  color: #ABABAB;
}
.cart .cart__promo-code:-moz-placeholder {
  /* Firefox 18- */
  color: #ABABAB;
}
.cart .cart__promo-code::-moz-placeholder {
  /* Firefox 19+ */
  color: #ABABAB;
}
.cart .cart__promo-code:-ms-input-placeholder {
  color: #ABABAB;
}
.cart .cart-actions__total {
  font-weight: 300;
  margin-right: auto;
}
@media (min-width: 1024px) {
  .cart .cart-actions__total {
    margin-right: 60px;
  }
}
.cart .cart-actions__total strong {
  margin-left: 15px;
  color: #000;
  font-weight: 700;
}

.cart-list {
  width: 100%;
}
.cart-list table {
  width: 100%;
}
.cart-list tr {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  position: relative;
  padding-bottom: 18px;
  margin-bottom: 18px;
  border-bottom: 1px solid #D8D8D8;
}
@media (min-width: 767px) {
  .cart-list tr {
    display: table-row;
    padding: 0;
    margin: 0;
    border: none;
  }
}
.cart-list tr:last-of-type {
  border-bottom: none;
}
.cart-list tr:first-of-type {
  display: none;
}
@media (min-width: 767px) {
  .cart-list tr:first-of-type {
    display: table-row;
  }
}
.cart-list tr th {
  text-align: center;
  font-size: 14px;
  color: #C1C1C1;
  padding-bottom: 30px;
}
.cart-list tr td {
  display: block;
  flex-wrap: wrap;
  padding: 10px 0;
  color: #000;
}
@media (max-width: 767px) {
  .cart-list tr td {
    width: 100% !important;
  }
}
@media (min-width: 767px) {
  .cart-list tr td {
    display: table-cell;
    vertical-align: middle;
    text-align: center;
    padding: 20px 0;
  }
}
.cart-list tr td.cart-item-before:before {
  font-weight: 600;
  margin-right: 15px;
  content: attr(data-label) ": ";
}
@media (min-width: 767px) {
  .cart-list tr td.cart-item-before:before {
    display: none;
  }
}
.cart-list tr td:nth-of-type(1) {
  width: 30%;
}
.cart-list tr td:nth-of-type(2) {
  width: 12%;
}
.cart-list tr td:nth-of-type(3) {
  width: 12%;
}
.cart-list tr td:nth-of-type(4) {
  width: 50% !important;
  text-align: right;
}
@media (min-width: 767px) {
  .cart-list tr td:nth-of-type(4) {
    text-align: center;
    width: 23% !important;
  }
}
.cart-list tr td:nth-of-type(5) {
  text-align: left;
  padding-left: 15px;
  width: 50% !important;
}
@media (min-width: 767px) {
  .cart-list tr td:nth-of-type(5) {
    text-align: center;
    width: 23% !important;
  }
}
.cart-list tr td.cart-item-cancel {
  top: 5px;
  right: 0;
  width: auto !important;
  position: absolute;
}
@media (min-width: 767px) {
  .cart-list tr td.cart-item-cancel {
    position: static;
  }
}
.cart-list tr td.cart-item-cancel i {
  cursor: pointer;
}

.cart-product {
  display: flex;
  align-items: center;
}
.cart-product .cart-product__img {
  height: 70px;
  width: 70px;
  background: #FAFAFA;
  margin-right: 25px;
}
@media (min-width: 767px) {
  .cart-product .cart-product__img {
    margin-right: 48px;
  }
}
.cart-product .cart-product__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top center;
     object-position: top center;
}
.cart-product .cart-product__content {
  padding-right: 25px;
  text-align: left;
}
@media (min-width: 767px) {
  .cart-product .cart-product__content {
    padding: 0;
  }
}
.cart-product .cart-product__content h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 10px;
}
.cart-product .cart-product__content p {
  font-size: 13px;
  font-weight: 300;
  color: #C4C4C4;
}

.btn-cart {
  position: relative;
}
.btn-cart .btn-cart__count {
  top: -1px;
  right: 5%;
  font-size: 8px;
  width: 13px;
  height: 13px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #FFF;
  background-color: var(--color-blue);
  border-radius: 100%;
  position: absolute;
  z-index: 100;
}

.form-page {
  padding-bottom: 100px;
}

.form .form__input-row {
  margin-bottom: 15px;
}
.form .form__input-row.form__input-row--two {
  display: flex;
  justify-content: space-between;
}
.form .form__input-row.form__input-row--two .form__col {
  width: 49%;
}
.form .form__input {
  height: 47px;
  width: 100%;
  font-weight: 500;
  color: #808080;
  padding: 0 22px;
  border-radius: 40px;
  border: 1px solid #D8D8D8;
}
@media (min-width: 767px) {
  .form .form__input {
    height: 56px;
    padding: 0 40px;
  }
}
.form .form__input.form__input--sm {
  height: 49px;
  padding: 0 28px;
}
.form .btn-submit {
  margin-top: 20px;
  width: 100%;
  padding-top: 14px;
  padding-bottom: 14px;
  font-weight: 600;
  text-transform: none;
}
@media (min-width: 767px) {
  .form .btn-submit {
    padding-top: 19px;
    padding-bottom: 19px;
  }
}

.error-page {
  display: flex;
  align-items: center;
  text-align: center;
  padding: 60px 0;
}
.error-page h1 {
  font-size: 44px;
  margin: 0 auto 20px auto;
  text-align: center;
}
@media (min-width: 767px) {
  .error-page h1 {
    font-size: 92px;
  }
}
.error-page p {
  line-height: 160%;
  font-size: 15px;
  margin-bottom: 40px;
}
@media (min-width: 767px) {
  .error-page p {
    font-size: 17px;
    margin-bottom: 50px;
  }
}
.error-page .btn {
  margin: 0 auto;
}

* {
  box-sizing: border-box;
}

html {
  margin: 0;
  padding: 0;
  width: 100%;
  max-width: 100vw !important;
  height: 100%;
  box-sizing: border-box;
  overflow: visible;
  overflow-x: clip !important;
}

html,
body {
  max-width: 100% !important;
  padding: 0;
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
  font-display: swap;
}

a {
  color: inherit;
  text-decoration: none;
}

p {
  padding-bottom: 10px;
}

* {
  box-sizing: border-box;
}

.dividercalc {
  position: relative;
  bottom: 0px;
  width: 100%;
}

.center {
  text-align: center;
}

.lakeSpace {
  position: absolute;
  top: 50px;
}

.bold {
  font-weight: bold;
}

.ListImage {
  max-width: 250px;
}

.svg_overlay svg {
  position: relative;
  height: 300px;
  width: 100vw;
  right: 0px;
  aspect-ratio: auto;
}

.navbar-noback {
  width: 100%;
  z-index: 100;
}

.svg_overlay {
  width: 100%;
  position: absolute;
  bottom: 0px;
  right: 0px;
  margin-bottom: -50px;
  z-index: 0;
}

.z-top,
.z-top * {
  z-index: 10;
}

.z-back {
  z-index: -1;
}

.upper {
  text-transform: uppercase;
}

label {
  margin-top: 10px;
}

/* postcss-ignore */
.theme-toggle {
  z-index: 1000;
}

/* postcss-ignore */
.theme-toggle,
.toggle-image,
.theme-toggle p {
  transition: 0.2s ease;
}

.pricing-guide p {
  padding: 5px;
  margin-bottom: 10px;
}

.SVG_Layer {
  margin-top: -140px;
  margin-bottom: -70px;
  /* padding-top: 50px; */
}

.SVG_flip {
  position: relative;
  bottom: -150px;
  overflow: hidden;
  /* transform: scaleY(-1); */
}

.swoosh {
  z-index: 10;
  transform: translateY(280px);
}

.lg_padnav,
.top_padnav {
  padding-top: 150px;
}

.md_padnav {
  padding-top: 150px;
}

.site-mockup {
  max-width: 750px !important;
  margin-left: auto;
  margin-right: auto;
}

/* Bootstrap heading utility compatibility (used widely across Blade templates). */
body h6,
.h6,
body h5,
.h5,
body h4,
.h4,
body h3,
.h3,
body h2,
.h2,
body h1,
.h1 {
  margin-top: 20px;
  margin-bottom: 0.5rem;
  font-weight: 700;
  line-height: 1.2;
  font-size: 1.5rem;
}

body h4,
.h4 {
  font-size: 1.24rem;
}

body h3,
.h3 {
  font-size: 1.4rem;
}

@media (min-width: 1200px) {
  body h1,
  .h1 {
    font-size: 2.5rem;
  }
  body h2,
  .h2 {
    font-size: 2rem;
  }
  body h3,
  .h3 {
    font-size: 1.75rem;
  }
  body h4,
  .h4 {
    font-size: 1.5rem;
  }
}
body h5,
.h5 {
  font-size: 1.25rem;
}

body h6,
.h6 {
  font-size: 1rem;
}

.blankbanner {
  padding: 80px 0;
  margin-left: auto;
  margin-right: auto;
  max-width: 1340px;
}

.pointer {
  cursor: pointer;
}

input[type=number],
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  opacity: 1 !important;
}

.show-mob {
  display: none !important;
}

.card-item-frame {
  padding: 0px;
  overflow: hidden;
  position: relative;
  margin: 0px 20px;
}

.clean-pricing-item .ribbon {
  width: 160px;
  height: 32px;
  font-size: 12px;
  text-align: center;
  color: #fff;
  font-weight: bold;
  box-shadow: 0px 2px 3px rgba(136, 136, 136, 0.25);
  background: #1b58ff;
  transform: rotate(45deg);
  position: absolute;
  right: -42px;
  top: 20px;
  padding-top: 7px;
}

.selected-pricing-item .ribbon {
  color: rgb(60, 127, 226);
  background: #fff;
}

.clean-pricing-item .price h4,
.clean-pricing-item .price .h4 {
  margin: 15px 0;
  font-size: 45px;
  text-align: center;
}

.clean-pricing-item .price h5,
.clean-pricing-item .price .h5 {
  margin: 15px 0;
  font-size: 35px;
  text-align: center;
}

.clean-pricing-item .heading {
  text-align: center;
  padding-bottom: 5px;
  margin-bottom: 5px;
}

.card_dvd {
  margin: 0 -30px -279px -30px;
  position: relative;
  top: 80px;
}

.selected-pricing-item .heading {
  border-color: rgba(255, 255, 255, 0.1);
}

.text-info {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-info-rgb), var(--bs-text-opacity)) !important;
}

.hov-social:hover {
  filter: saturate(900%);
  transform: scale(125%);
}

.link-item {
  text-decoration: underline;
}

.thumb-content {
  padding-bottom: 5px;
  transition: 0.5s ease;
  font-size: larger;
}

.thumb-content:hover {
  color: var(--footerTextHover) !important;
  transform: translateX(10px);
}

.thumb-content:hover::before {
  transition: 0.2s ease;
}

.clean-block .block-heading {
  padding-top: 50px;
  margin-bottom: 40px;
  text-align: center;
}

@media (min-width: 576px) {
  .clean-block .block-heading {
    padding-top: 80px;
  }
}
.selected-pricing-item {
  --bal: math.div(0 / 8%);
  background-color: rgb(60, 127, 226);
  box-shadow: 0px 2px 10px rgb(0, 0, var(--bal));
  border-top: 2px solid #5ea4f3;
  overflow: hidden;
  position: relative;
  color: white;
}

.selected-pricing-item .btn-outline-primary,
.selected-pricing-item .btn-primary {
  --bs-btn-border-color: rgb(68, 113, 182);
  --bs-btn-color: rgb(68, 113, 182);
  --bs-btn-hover-bg: #fff;
  --bs-btn-hover-color: rgb(68, 113, 182);
  --bs-btn-bg: rgb(255, 255, 255);
  --bs-btn-hover-border-color: rgb(68, 113, 182);
  --bs-btn-hover-bg: #fff;
  --bs-btn-hover-color: rgb(68, 113, 182);
}

.selected-pricing-item .price h4 {
  color: rgb(255, 255, 255);
}

.form-wid {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.form-wid-lg {
  max-width: 80vw;
  margin-left: auto;
  margin-right: auto;
}

.store-wid {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.bordered-content {
  padding: 50px;
  border: 1pt solid var(--bs-body-color);
  border-radius: 30px;
  margin-top: 50px;
}

.tags {
  line-height: 24pt;
}

.tag-element {
  padding: 3px 5px;
  margin: 2px 2px;
  font-weight: 600;
}

.stretch {
  display: flex;
  align-items: stretch;
  align-content: stretch;
  justify-content: stretch;
  justify-items: stretch;
}

.blog-main-image {
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  height: auto;
}

.mockup-image {
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
  height: auto;
}

.blog-image {
  background-size: cover;
  height: auto;
  aspect-ratio: 1/1;
  -o-object-fit: cover;
     object-fit: cover;
}

.cat-side {
  background-color: var(--bs-primary);
}

.widget {
  width: -moz-fit-content;
  width: fit-content;
  height: -moz-fit-content !important;
  height: fit-content !important;
  padding-bottom: 25px;
}

.ispresent {
  background-color: beige !important;
}

.blogTitle {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px !important;
}

/* postcss-ignore */
.modal-open {
  padding-right: 0px !important;
}

/* postcss-ignore */
body {
  padding-right: 0 !important;
}

.flex-blog {
  margin-bottom: 20px;
}

.toggle-button {
  right: 25px;
}

.check-icon {
  width: 30px !important;
}

.t-u {
  text-decoration: underline;
}

.blogcontent img {
  max-width: 100%;
}

.shad-text {
  text-shadow: 0px 0px 7px black;
}

.flex-blog:hover .zoom .blog-image {
  transform: scale(1.05);
  clip-path: inset(0px 10px);
}

/* postcss-ignore */
.accordion,
.accordion-button,
.accordion-body {
  background: none;
  padding-top: 5px;
  padding-bottom: 5px;
  margin-bottom: 0;
  margin-top: 0;
  height: 100%;
  border: none !important;
  line-height: var(--bs-body-line-height);
}

.accordion-body[class*="in collapse"] {
  overflow: visible;
}

.carousel-indicators [data-bs-target] {
  background-color: #ffffff;
}

.carousel-dark .carousel-indicators [data-bs-target] {
  background-color: #000000;
}

/* postcss-ignore */
.accordion {
  margin-bottom: 12px;
}

.wrapper {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.parent {
  width: 100%;
  overflow: hidden;
  position: relative;
  display: inline-block;
  cursor: pointer;
}

.child {
  height: 100%;
  width: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  transition: all 0.5s;
}

.blog-item:hover .parent .child,
.blog-item:focus .parent .child {
  transform: scale(1.2);
}

.parent:hover .child:before,
.parent:focus .child:before {
  display: block;
}

.parent:hover a,
.parent:focus a {
  display: block;
}

.child:before {
  content: "";
  display: none;
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(255, 255, 255, 0.178);
  transition: 0.5s ease;
}

.larger {
  font-size: 1.55em;
}

/* Media Queries */
@media screen and (max-width: 960px) {
  .parent {
    width: 100%;
    margin: 20px 0px;
  }
  .wrapper {
    padding: 20px 20px;
  }
}
.inter-thin,
.inter-light,
.inter-medium,
.inter-bold,
.inter {
  font-family: "Inter", sans-serif;
  font-display: swap;
}

.inter-thin {
  font-weight: 100 !important;
}

.inter-light {
  font-weight: 300 !important;
}

.inter-medium {
  font-weight: 500 !important;
}

.inter-bold {
  font-weight: 700 !important;
}

.inter-black {
  font-weight: 900;
}

.head-font {
  font-weight: 700;
  font-size: 20pt;
}

.mar-0 {
  margin: 0;
}

.pad-0 {
  padding: 0;
}

.pad-5 {
  padding: 5px 0;
}

.pad-10 {
  padding: 10px;
}

.pad-20 {
  padding: 20px;
}

.pad-40 {
  padding: 40px 0;
}

.pad-t-5 {
  padding-top: 5px;
}

.pad-t-10 {
  padding-top: 10px;
}

.pad-t-20 {
  padding-top: 20px;
}

.pad-lr-10 div {
  padding-left: 10px;
  padding-right: 10px;
}

.pad-lr-20 div {
  padding-left: 20px;
  padding-right: 20px;
}

.spacer-5 {
  content: "";
  padding: 5px;
}

.spacer-10 {
  content: "";
  margin: 10px;
}

.spacer-20 {
  content: "";
  margin: 20px;
}

.spacer-40 {
  content: "";
  margin: 40px;
}

.spacer-100 {
  content: "";
  margin: 100px;
}

.rem-spacer-20 {
  margin-top: -20px;
}

.rem-spacer-40 {
  margin-top: -40px;
}

.rem-spacer-100 {
  margin-top: -100px;
}

.rem-spacer-200 {
  margin-top: -200px;
}

.c-100 {
  width: 100%;
}

.list_elem,
.check_elem {
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  white-space: initial;
  padding-bottom: 0 !important;
  min-width: 250px;
}

.left {
  text-align: left;
}

.left-always {
  text-align: left !important;
}

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

.right {
  text-align: right;
}

.flex-item {
  display: flex;
  align-items: center;
  align-content: flex-start;
  justify-content: flex-start;
}

.flex-item-center {
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
}

.footer-item {
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
}

.center-margin {
  margin-left: auto;
  margin-right: auto;
}

.package-cards {
  max-width: 1250px !important;
  margin-left: auto;
  margin-right: auto;
}

.scrolling-wrapper {
  overflow-x: scroll;
  overflow-y: hidden;
  display: flex;
  justify-content: center;
  padding-bottom: 10px;
  width: 100%;
  max-width: 100% !important;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x mandatory;
}

.scrollcard {
  max-width: 100%;
  padding: 0 5px;
  scroll-snap-align: center;
  -o-object-fit: contain;
     object-fit: contain;
}

.clean-pricing-item .features {
  max-width: 100%;
  white-space: wrap;
}

@media screen and (max-width: 1024px) {
  .package-scroll {
    display: block;
  }
  .scrolling-wrapper {
    justify-content: flex-start;
  }
  .scrolling-wrapper .scrollcard {
    display: inline-block;
  }
  .scrolling-wrapper::-webkit-scrollbar {
    padding: 0 10px;
    background: var(--rgba);
  }
  .scrolling-wrapper::-webkit-scrollbar-track {
    border-radius: 10px;
  }
  .scrolling-wrapper {
    /* Handle */
  }
  .scrolling-wrapper::-webkit-scrollbar-thumb {
    background: var(--bg-tint);
    border-radius: 10px;
  }
}
@media screen and (min-width: 1024px) {
  .package-scroll {
    display: none;
  }
  .scrolling-wrapper .scrollcard {
    display: inline-block;
  }
  .scrolling-wrapper::-webkit-scrollbar {
    display: none;
  }
  .scrolling-wrapper::-webkit-scrollbar-track {
    border-radius: 0px;
  }
  .scrolling-wrapper {
    /* Handle */
  }
}
.display-none {
  display: none !important;
}

/* Animation */
.parallax > use {
  animation: move-forever 155s cubic-bezier(0.55, 0.5, 0.45, 0.5) infinite;
}

.parallax > use:nth-child(1) {
  animation-delay: -2s;
  animation-duration: 7s;
}

.parallax > use:nth-child(2) {
  animation-delay: -3s;
  animation-duration: 10s;
}

.parallax > use:nth-child(3) {
  animation-delay: -4s;
  animation-duration: 13s;
}

.parallax > use:nth-child(4) {
  animation-delay: -5s;
  animation-duration: 20s;
}

.customShift {
  min-width: 100%;
  min-height: 100%;
  height: auto;
  display: flex;
  aspect-ratio: 1/1 !important;
  justify-content: center !important;
}

.customShift img {
  min-height: 100%;
  width: auto;
  min-width: 100%;
  aspect-ratio: 1/1 !important;
}

.customShift-inner {
  height: 100%;
}

@keyframes move-forever {
  0% {
    transform: translate3d(-90px, 0, 0);
  }
  100% {
    transform: translate3d(85px, 0, 0);
  }
}
/* postcss-ignore */
.carousel-caption,
.carousel-item {
  overflow: auto;
  position: relative;
  left: 0;
  width: 100%;
  min-height: 250px;
}

.carousel-body {
  height: auto !important;
}

.carousel {
  align-items: stretch;
  display: flex;
}

.parallax-content {
  position: relative;
  top: 0px;
}

.vertical-center {
  margin: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.carousel-control-prev, .carousel-control-next {
  display: none !important;
}

.marquee {
  display: flex;
  overflow: hidden;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  min-width: 100%;
}

.hex {
  transition: 1s ease;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='28' height='49' viewBox='0 0 28 49'%3E%3Cg fill-rule='evenodd'%3E%3Cg id='hexagons' fill='%234b4b4b' fill-opacity='0.6' fill-rule='nonzero'%3E%3Cpath d='M13.99 9.25l13 7.5v15l-13 7.5L1 31.75v-15l12.99-7.5zM3 17.9v12.7l10.99 6.34 11-6.35V17.9l-11-6.34L3 17.9zM0 15l12.98-7.5V0h-2v6.35L0 12.69v2.3zm0 18.5L12.98 41v8h-2v-6.85L0 35.81v-2.3zM15 0v7.5L27.99 15H28v-2.31h-.01L17 6.35V0h-2zm0 49v-8l12.99-7.5H28v2.31h-.01L17 42.15V49h-2z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hex-w {
  transition: 1s ease;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='28' height='49' viewBox='0 0 28 49'%3E%3Cg fill-rule='evenodd'%3E%3Cg id='hexagons' fill='%23eeeeee' fill-opacity='0.4' fill-rule='nonzero'%3E%3Cpath d='M13.99 9.25l13 7.5v15l-13 7.5L1 31.75v-15l12.99-7.5zM3 17.9v12.7l10.99 6.34 11-6.35V17.9l-11-6.34L3 17.9zM0 15l12.98-7.5V0h-2v6.35L0 12.69v2.3zm0 18.5L12.98 41v8h-2v-6.85L0 35.81v-2.3zM15 0v7.5L27.99 15H28v-2.31h-.01L17 6.35V0h-2zm0 49v-8l12.99-7.5H28v2.31h-.01L17 42.15V49h-2z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.marquee__content {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: space-around;
  list-style: none;
  padding: 0;
  padding-top: 15px;
  animation: scroll 25s linear infinite;
}

.no-list {
  list-style: none;
}

.marquee__content li {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-left: 1rem;
}
.marquee__content li svg,
.marquee__content li .codelabel {
  transition: 0.5s ease;
}

.marquee:hover .marquee__content {
  animation-play-state: paused;
}

.marquee_industries li {
  margin-right: 20px;
  transition: 0.1s ease;
}

.marquee_industries li:hover {
  color: orange;
  transform: scale(1.3);
  translate: 0 -2px;
}

.codelabel {
  opacity: 0;
  font-weight: bolder;
}

.marquee_code li {
  width: 90px;
}

.marquee svg {
  height: 70px;
  opacity: 0.3;
}

.marquee li:hover svg {
  transform: translateY(-15px);
  opacity: 1;
}
.marquee li:hover .codelabel {
  transform: translateY(-15px);
  opacity: 1;
}

@keyframes scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}
@keyframes rotate {
  100% {
    transform: rotate(1turn);
  }
}
.border-rotate {
  border-width: 1pt solid;
  margin: auto;
  border: 1px solid;
  -o-border-image: linear-gradient(45deg, rgb(0, 123, 224), rgb(255, 251, 20)) 1;
     border-image: linear-gradient(45deg, rgb(0, 123, 224), rgb(255, 251, 20)) 1;
  clip-path: inset(-1px -1px -1px -1px 10px);
  animation: huerotate 6s infinite linear;
  filter: hue-rotate(360deg);
  background-color: rgba(107, 116, 119, 0.2);
}

@keyframes huerotate {
  0% {
    filter: hue-rotate(0deg);
  }
  100% {
    filter: hue-rorate(360deg);
  }
}
.round {
  border-radius: 50%;
}

.underline {
  text-decoration: underline;
}

.img-max, .responsive-image {
  max-width: 90vw;
  height: auto;
  aspect-ratio: 1/1 !important;
}

.crop-image {
  -o-object-fit: cover;
     object-fit: cover;
}

.wallaby {
  background-color: var(--wallabyColor);
  text-align: center;
  color: #fff;
  padding: 5px 0;
  border: none;
}

.wallaby img {
  width: 175px;
}

.wallaby img:hover {
  transform: scale(1.1);
  transition: scale 1s ease;
  filter: brightness(0) saturate(100%) invert(82%) sepia(5%) saturate(3606%) hue-rotate(172deg) brightness(99%) contrast(105%);
  cursor: pointer;
}

.react-tabs__tab {
  margin-right: 4px;
  background-color: rgba(0, 0, 0, 0.3333333333);
  color: #eeeeee;
  bottom: 0 !important;
  backdrop-filter: blur(10px);
  border: none !important;
  display: inline-block;
}

.react-tabs__tab:active {
  border: none;
  box-shadow: none;
}

.react-tabs__tab--selected {
  border: none !important;
  box-shadow: none;
}

.react-tabs__tab--selected, .react-tabs__tab-panel, .react-tabs__tab-panel--selected {
  display: block;
  position: relative;
  background-color: #ffffff;
  padding: 10px;
  border-bottom: none !important;
}

.package-item {
  display: flex;
  flex-direction: column !important;
  align-items: "center";
  align-content: "center";
  flex-wrap: "wrap";
  margin-top: auto;
  margin-bottom: auto;
  text-align: center;
}

.package-item-bord {
  border-left: 1pt solid rgb(201, 201, 201);
}

.shad {
  filter: drop-shadow(3px 3px 8px rgba(177, 177, 177, 0.514));
}

.card {
  margin-bottom: 30px !important;
}

#packages {
  scroll-margin-top: 150px !important;
}

.read-or-hide {
  color: rgb(25, 65, 196);
  cursor: pointer;
  font-weight: bold;
}

.faded-text {
  background: -webkit-linear-gradient(#000000, rgba(165, 165, 165, 0.1333333333), #ffffff);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.ecwid-minicart {
  background: none !important;
  border: none !important;
  width: 60px !important;
  height: 60px !important;
}

.fixed .ecwid-minicart-clickArea,
.ecwid-minicart-clickArea {
  top: 5px !important;
  left: 0px !important;
  background-size: cover;
  width: 30px !important;
  height: 30px !important;
  background: none !important;
  background: url("/images/svgs/cart.svg") !important;
}

.ecwid-minicart-clickArea {
  filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(0%) hue-rotate(93deg) brightness(103%) contrast(103%);
}

.fixed .ecwid-minicart-clickArea {
  filter: brightness(0) saturate(100%);
}

.ecwid-minicart-caption, .ecwid-minicart-label, .ecwid-minicart-link {
  display: none !important;
}

.ecwid-popup-content * {
  color: black !important;
}

.card-img-overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 1rem;
  border-radius: 1rem;
}

/*-- -------------------------- -->
<---        Core Styles         -->
<--- -------------------------- -*/
/* Mobile */
@media only screen and (min-width: 0em) {
  body {
    transition: background-color 0.3s;
  }
  .container {
    position: relative;
    width: 92%;
    margin: auto;
  }
  a:hover,
  button:hover {
    cursor: pointer;
  }
}
/* Reset Margins */
@media only screen and (min-width: 1250px) {
  body,
  html {
    padding: 0;
    margin: 0;
    max-width: 100vw;
    overflow-x: hidden;
  }
}
/* postcss-ignore */
.dark_dvd,
.filler-flip .dark_dvd,
.filler .dark_dvd {
  --fill: #161616;
}

/* postcss-ignore */
.white_dvd,
.filler-flip .white_dvd,
.filler .white_dvd {
  --fill: #ffffff;
}

/* postcss-ignore */
.light_dvd,
.filler-flip .light_dvd,
.filler .light_dvd {
  --fill: #fcfcfc;
}

/* postcss-ignore */
.tint_dvd,
.filler-flip .tint_dvd,
.filler .tint_dvd {
  --fill: var(--bg-tint);
}

/* postcss-ignore */
.cardshade_dvd,
.filler-flip .cardshade_dvd,
.filler .cardshade_dvd {
  --fill: var(--cardshade);
}

/* postcss-ignore */
.selected_dvd,
.filler-flip .selected_dvd,
.filler .selected_dvd {
  --fill: #4471b6;
}

/* postcss-ignore */
.black_dvd,
.filler-flip .black_dvd,
.filler .black_dvd {
  --fill: black;
}

/* postcss-ignore */
.purple_dvd,
.filler-flip .purple_dvd,
.filler .purple_dvd {
  --fill: purple;
}

/* postcss-ignore */
.purple_light_dvd,
.filler-flip .purple_light_dvd,
.filler .purple_light_dvd {
  --fill: #b259ff;
}

.blue_dvd,
.filler-flip .blue_dvd,
.filler .blue_dvd {
  --fill: #3372a5;
}

.darkblue_dvd,
.filler-flip .darkblue_dvd,
.filler .darkblue_dvd {
  --fill: #002a55;
}

/* postcss-ignore */
.divider {
  max-width: 100%;
  position: relative;
  height: 142px;
  margin-bottom: 69px;
  overflow-x: clip;
}

.divider-anchor.divider {
  margin-bottom: 0 !important;
}

.divider-anchor-wrap {
  position: relative;
  display: block;
  height: 0;
  line-height: 0;
  overflow: visible;
  width: 100%;
}

.selected_dvd.divider,
.cardshade_dvd.divider {
  margin-bottom: 162px;
}

/* postcss-ignore */
.divider-flip {
  max-width: 100%;
  position: relative;
  height: 142px;
  margin-top: 69px;
  overflow-x: clip;
}

.divider-anchor.divider-flip {
  margin-top: 0 !important;
}

/* postcss-ignore */
.swoosh {
  position: relative;
  background: var(--fill);
  height: 142px;
  width: 100%;
}

/* postcss-ignore */
.swoosh-clip {
  border-bottom-left-radius: 45% 225px;
  border-bottom-right-radius: 55% 340px;
  overflow: hidden !important;
  position: relative;
  box-sizing: border-box;
}

/* postcss-ignore */
.arrow-cutout,
.cutout {
  width: 100% !important;
  max-width: 100%;
  position: relative;
  height: 142px;
  margin-bottom: 71px;
  overflow-x: clip;
}

.divider-anchor.cutout,
.divider-anchor.arrow-cutout {
  margin-bottom: 0 !important;
}

/* postcss-ignore */
.cutout:before {
  content: "";
  position: relative;
  border-bottom: 120px solid var(--fill);
  border-right: 30vw solid transparent;
}

/* postcss-ignore */
.cutout:after {
  content: "";
  border-bottom: 120px solid var(--fill);
  border-left: 75vw solid transparent;
  position: relative !important;
  right: 5vw !important;
}

/* postcss-ignore */
.arrow-cutout:before {
  content: "";
  position: relative;
  border-bottom: 120px solid var(--fill);
  border-right: 50vw solid transparent;
}

.arrow-cutout:after {
  content: "";
  border-bottom: 120px solid var(--fill);
  border-left: 55vw solid transparent;
  position: relative !important;
  right: 5vw !important;
}

/* postcss-ignore */
.cutout-flip:before {
  position: static;
  border-top: 120px solid var(--fill);
  border-right: 30vw solid transparent;
}

/* postcss-ignore */
.cutout-flip:after {
  position: relative !important;
  border-top: 120px solid var(--fill);
  border-left: 72vw solid transparent;
  max-width: 100%;
  right: -1px !important;
}

.arrow-cutout-flip:before {
  position: static;
  border-top: 120px solid var(--fill);
  border-right: 50vw solid transparent;
}

/* postcss-ignore */
.arrow-cutout-flip:after {
  border-top: 120px solid var(--fill);
  border-left: 50vw solid transparent;
  max-width: 100%;
  position: relative !important;
  right: -1px !important;
}

/* postcss-ignore */
.slant-left:after {
  border-bottom: 120px solid var(--fill);
  border-left: 105vw solid transparent;
  max-width: 100%;
  position: relative !important;
  right: 5vw !important;
}

/* postcss-ignore */
.slant-right:after {
  border-bottom: 120px solid var(--fill);
  border-right: 110vw solid transparent;
  max-width: 100%;
  position: relative !important;
  right: 5vw !important;
}

/* postcss-ignore */
.slant-left-flip:after {
  border-top: 120px solid var(--fill);
  border-left: 110vw solid transparent;
  max-width: 100%;
  position: relative !important;
  right: 10vw !important;
}

/* postcss-ignore */
.slant-right-flip:after {
  border-top: 120px solid var(--fill);
  border-right: 110vw solid transparent;
  max-width: 100%;
  position: relative !important;
  right: -5vw !important;
}

/* postcss-ignore */
.cutout::after,
.arrow-cutout::after,
.divider::after {
  border-bottom-color: var(--fill);
  border-left-color: transparent;
}

/* postcss-ignore */
.divider::before {
  content: "";
  position: static;
  left: 0;
  bottom: 0;
  height: 0;
  width: 100%;
  overflow-x: hidden;
  border-bottom-color: var(--fill);
  border-right-color: transparent;
}

/* postcss-ignore */
.filler,
.divider:after {
  content: "";
  position: static;
  right: 0;
  bottom: 0;
  height: 0;
  width: 100%;
  overflow-x: hidden;
}

/* postcss-ignore */
.divider-flip::after {
  border-top-color: var(--fill);
  border-left-color: transparent;
}

/* postcss-ignore */
.divider-flip::before {
  content: "";
  position: relative;
  left: 0;
  top: 0;
  width: 0;
  height: 0;
  border-top-color: var(--fill);
  border-right-color: transparent;
}

/* postcss-ignore */
.filler-flip,
.divider-flip:after {
  content: "";
  position: relative;
  right: 0 !important;
  top: 0px;
}

/* postcss-ignore */
.filler {
  position: relative;
  width: 100%;
  background-color: var(--fill);
  bottom: 60px !important;
}

.divider-anchor-wrap > .filler,
.divider-anchor-wrap > .filler-flip {
  position: absolute !important;
  left: 0;
  width: 100%;
  background-color: var(--fill) !important;
  box-shadow: none;
  z-index: 4;
}

.divider-anchor-wrap > .filler {
  top: 130px;
  bottom: auto !important;
}

.divider-anchor-wrap > .filler-flip {
  top: -1px;
  bottom: auto !important;
}

.filler-anchor-bottom.filler {
  position: absolute !important;
  top: 130px !important;
  bottom: auto !important;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: var(--fill) !important;
  box-shadow: none;
  z-index: 4;
}

/* postcss-ignore */
.filler-flip {
  position: relative;
  width: 100%;
  top: 0px;
  background-color: var(--fill);
}

.filler-anchor-top.filler-flip {
  position: absolute !important;
  top: -1px !important;
  bottom: auto !important;
  left: 0;
  width: 100%;
  background-color: var(--fill) !important;
  box-shadow: none;
  z-index: 4;
}

@media screen and (min-width: 1400px) {
  .g-des {
    font-family: "Inter", sans-serif;
    font-weight: 900;
    font-size: 35pt;
    line-height: 40pt;
  }
  .packlabel {
    font-weight: 900;
    font-size: 30pt;
    padding-bottom: 10px;
  }
}
@media screen and (max-width: 1399.99px) {
  .g-des {
    font-weight: 900;
    font-size: 30pt;
    line-height: 34pt;
    padding-bottom: 10px;
  }
  h1 {
    font-size: 1.5em;
  }
  .packlabel {
    font-weight: 900;
    font-size: 22pt;
    max-width: 92%;
    padding-bottom: 10px;
  }
  .lg_padnav, .top_padnav {
    padding-top: 80px;
  }
}
@media screen and (min-width: 1023.99px) {
  .whiteNavOverride * {
    color: white;
  }
  .d-block {
    height: auto !important;
    width: 100%;
  }
  .banner-container,
  .caption-content {
    height: 800px;
  }
  .icons {
    flex-direction: row;
    width: 100%;
    /* flex-basis: 50%; */
  }
  .item-list img {
    max-width: 200px;
  }
  .flex-blog {
    max-width: 33.3333333333%;
  }
  .w-50 {
    min-width: 50vw !important;
  }
  .mob-nav {
    display: none;
    width: 0px;
    position: absolute;
    margin: 0px !important;
    padding: 0;
  }
  .bord-l {
    border-left: 1pt solid rgba(128, 128, 128, 0.404);
  }
  .pricing-guide {
    max-width: 400px;
  }
  .left-lg {
    text-align: left;
  }
  .mob-list {
    display: flex;
  }
  .toggle-button {
    right: 25px;
  }
  .navbar-expand-md .navbar-nav {
    position: relative;
    left: -46.38px;
  }
  .card_dvd .slant-r {
    height: 105px !important;
  }
  .features {
    top: -30px;
    position: relative;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1399.98px) {
  .navbar-expand-md .navbar-nav {
    position: relative;
    left: -18px;
  }
}
@media screen and (min-width: 960px) and (max-width: 1023.99px) {
  .navbar-expand-md .navbar-nav {
    position: relative;
    top: 35px;
    margin-left: -60px;
    margin-right: -60px;
  }
  .navbar-expand-md {
    padding-bottom: 40px;
  }
}
@media screen and (min-width: 799.99px) {
  .clean-pricing-item, .card-item-frame {
    width: 300px !important;
  }
}
@media screen and (max-width: 1023.99px) and (min-width: 799.99px) {
  .whiteNavOverride * {
    color: white;
  }
  .mob-nav {
    display: none;
    width: 0;
    position: absolute;
  }
  .mob-list {
    display: flex;
    flex-direction: row;
    margin-left: auto;
    margin-right: auto;
  }
  .navbar-expand-md .navbar-nav {
    position: relative;
    right: -8px;
  }
  .lg_padnav {
    padding-top: 120px;
  }
}
@media screen and (max-width: 1023.99px) and (min-width: 699.99px) {
  .flex-blog {
    max-width: 50%;
    padding-left: 0px;
    padding-right: 0px;
  }
  .container {
    max-width: 95%;
  }
  .lg_padnav {
    padding-top: 60px;
  }
}
@media screen and (max-width: 1023.99px) {
  /* postcss-ignore */
  .md_padnav {
    padding-top: 100px;
  }
  .blankbanner {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }
  .site-mockup {
    margin-top: 50px;
  }
  .mob-flip {
    flex-direction: column-reverse !important;
  }
  .carousel-item {
    min-height: 400px;
    height: auto !important;
  }
  .ListImage {
    max-width: 100%;
  }
  .flex {
    display: flex;
    flex-wrap: wrap;
    margin-left: 0;
    margin-right: 0;
  }
  .rounder {
    border-radius: 25px;
  }
  .flex-dynamic {
    flex-direction: column;
    justify-content: center;
  }
  .w-50 {
    min-width: 100% !important;
  }
  .caption-small {
    max-height: 300px;
  }
  .caption-item {
    width: 90vw;
  }
  .soc-nav {
    width: -moz-fit-content;
    width: fit-content;
    bottom: 80px;
    margin: auto;
    position: absolute;
    left: 0;
    right: 0;
  }
  .d-flex {
    flex-direction: column;
  }
  .SVG_Layer {
    margin-top: -150px;
    margin-bottom: -80px;
  }
  .SVG_flip {
    margin-top: -250px;
    padding-bottom: 50px;
  }
  .swoosh {
    transform: translateY(230px);
  }
  .list_elem {
    flex-direction: column;
    margin-bottom: 30px;
  }
  .rem-spacer-100 {
    margin-top: -150px;
  }
  .list_elem .row {
    padding-bottom: 40px;
  }
  .list_elem .row .left {
    text-align: center;
  }
  .selected-pricing-item,
  .clean-pricing-item,
  .card-item-frame {
    margin: 0;
  }
  .g-des {
    font-weight: 900;
    font-size: 35pt;
    line-height: 30pt;
    margin-left: auto;
    margin-right: auto;
  }
  .flex-mob-reverse {
    flex-direction: column-reverse;
  }
  .socnav-foot {
    position: relative;
    bottom: -20px;
    height: 40px;
  }
  .clean-pricing-item,
  .card-item-frame {
    width: 100%;
  }
  .card_dvd {
    margin-bottom: -295px;
    position: relative;
    top: 80px;
  }
  .card_dvd .slant-r {
    height: 105px !important;
  }
  .features {
    top: -25px;
    position: relative;
  }
}
@media screen and (max-width: 899.99px) {
  .toggle-button {
    right: 80px;
  }
  .hide-mob {
    display: none !important;
  }
  .show-mob {
    display: block !important;
  }
  .site-mockup {
    position: relative;
    top: -20px;
  }
  .card_dvd {
    margin-bottom: -285px;
  }
  .marquee svg {
    height: 80px;
  }
}
@media screen and (max-width: 839.99px) {
  .navbar-nav {
    padding-bottom: 20px;
    text-align: center;
  }
}
@media screen and (max-width: 799.99px) {
  .clean-pricing-item,
  .card-item-frame {
    width: 50vw;
    overflow-x: hidden;
  }
  .flex {
    margin-left: 0;
    margin-right: 0;
  }
  .mob-nav {
    visibility: visible;
  }
  .g-des {
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
    padding-bottom: 20px;
  }
  .navbar-link {
    text-align: center !important;
    width: 100%;
    padding-top: 20px;
    justify-items: center;
    margin-left: auto;
    margin-right: auto;
  }
  .widget {
    text-align: center;
    width: 100%;
    padding-bottom: 40px;
  }
  .socnav-foot {
    position: relative;
    bottom: 0px;
    height: 40px;
  }
  .form-wid, .store-wid {
    max-width: 92%;
  }
  /* postcss-ignore */
  .swoosh-clip {
    border-bottom-left-radius: 45% 105px;
    border-bottom-right-radius: 55% 200px;
  }
  .sm-rem-spacer-40 {
    margin-top: -40px;
  }
  .sm-rem-spacer-80 {
    margin-top: -80px;
  }
  .left-notmob {
    text-align: center;
  }
  .toggle-button {
    right: 80px;
  }
  .flex-row-md {
    flex-direction: column !important;
  }
  .card_dvd {
    margin-bottom: -265px;
  }
  .lg_padnav {
    padding-top: 50px;
  }
}
@media screen and (max-width: 699.99px) {
  .mob-list {
    display: flex;
    flex-direction: column;
  }
  .thumb-content {
    padding-bottom: 15px;
  }
  .clean-pricing-item,
  .card-item-frame {
    width: 65vw;
    overflow-x: hidden;
  }
  .mob-nav {
    visibility: visible;
  }
  .g-des {
    font-weight: 900;
    font-size: 28pt;
    line-height: 24pt;
    margin-left: auto;
    margin-right: auto;
    max-width: 95vw;
    padding-bottom: 20px;
  }
  .row {
    --bs-gutter-x: 0;
  }
  .larger {
    font-size: 12.5vw;
    line-height: 11.1111111111vw;
  }
  .widget a {
    font-size: 100%;
    padding-bottom: 14px;
  }
  .testimonial-desc {
    min-height: "39px";
  }
  .mockup-image {
    max-width: 100%;
  }
  .card_dvd {
    margin-bottom: -231px;
  }
  .lg_padnav {
    padding-top: 100px;
  }
}
@media screen and (max-width: 499.99px) {
  .list_elem {
    padding-bottom: 20px;
    min-width: auto;
  }
  .widget a {
    font-size: 120%;
    line-height: 150%;
  }
  .lg_padnav {
    padding-top: 50px;
  }
}
@media screen and (max-width: 449.99px) {
  .clean-pricing-item,
  .card-item-frame {
    width: 90vw;
    overflow-x: hidden;
  }
}
@media screen and (max-width: 399.99px) {
  .clean-pricing-item,
  .card-item-frame {
    width: 95vw;
  }
  .g-des {
    font-weight: 900;
    font-size: 25pt;
    line-height: 28pt;
    max-width: 92%;
    padding-bottom: 10px;
  }
  .larger {
    font-size: 32pt;
    line-height: 27pt;
  }
  .logo img {
    width: 100px !important;
    height: auto;
  }
  .toggle-text {
    display: none;
  }
  .outline-button {
    border-radius: 10px !important;
  }
  .bordered-content {
    padding: 20px;
  }
  .form-wid, .store-wid {
    max-width: 95%;
  }
  .active.carousel-item,
  .active.carousel-item::after {
    height: auto;
  }
}
@media screen and (max-width: 299.99px) {
  .g-des {
    font-weight: 700;
    font-size: 22pt;
    line-height: 18pt;
  }
  #cf-turnstile {
    position: absolute;
    left: 5px;
  }
}
@media screen and (max-width: 199.99px) {
  .g-des {
    font-weight: 700;
    font-size: 15pt;
    line-height: 12pt;
  }
  h2,
  .h2 {
    font-size: 1em;
  }
  h3,
  .h3 {
    font-size: 0.9em;
  }
  h4,
  .h4 {
    font-size: 0.8em;
  }
  h5,
  .h5 {
    font-size: 0.7em;
  }
  p {
    font-size: 0.3em;
  }
}
:root {
  --theme-color-1: #3372a5;
  --theme-color-2: #090c08;
  --theme-color-3: #acccfc;
  --theme-color-4: #5b84a6;
  --theme-color-5: #64bffc;
  --theme-color-6: #F5FAFF;
  --theme-color-7: #002a55;
  --currentColor: #1c61e0;
  --footerColor: #070b20;
  --wallabyColor: #04060f;
  --footerTextHover: #0099ff;
  --bs-body-color: #212529;
  --bs-body-bg: #fcfcfc;
  --bs-border-color: #dee2e6;
  --bs-border-color-translucent: rgba(0, 0, 0, 0.175);
  /* Index colors */
  --v1: #91a2c6;
  --v2: #3a7bfc;
  --v3: #002e0c;
  --v4: #001706;
  --s1: #cbffff;
  --s2: #dffeff;
  --cloud: #ffffff;
  --currentColorOverride: #ffe875;
  --bg-tint: #eeeeee;
  --btn-color-override: #0043b0;
  --bs-accordion-color: var(--bs-body-color);
  --accordion-ovw: #e6e6e6;
  --cardshade: #eeeeee;
}

#footer {
  background: var(--footerColor);
  padding: 50px 0 0;
}

.recolor-white {
  filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(0%) hue-rotate(93deg) brightness(103%) contrast(103%);
}

.recolor-black {
  filter: brightness(0) saturate(100%);
}

.recolor-light-yellow {
  filter: brightness(0) saturate(100%) invert(100%) sepia(54%) saturate(1475%) hue-rotate(340deg) brightness(105%) contrast(102%);
}

.recolor-blue {
  filter: brightness(0) saturate(100%) invert(24%) sepia(97%) saturate(1988%) hue-rotate(202deg) brightness(91%) contrast(110%);
}

.recolor-light-blue {
  filter: brightness(0) saturate(100%) invert(82%) sepia(35%) saturate(4646%) hue-rotate(190deg) brightness(116%) contrast(115%);
}

.outline-button {
  color: white;
}

.outline-button,
.outline-button-blue,
.outline-button-dark {
  transition: 0.2s ease-out;
  margin-top: 15px;
  padding: 10px 25px;
  background: none;
  border: 1.5pt solid white !important;
  border-radius: 5px;
  font-weight: bolder;
}

.outline-button-dark {
  border-color: black !important;
  color: black;
}

.outline-button-blue {
  border-color: #003ba8 !important;
  color: #003ba8;
}

.outline-button:hover,
.outline-button:active {
  border-color: #ffffff !important;
  color: black;
  background-color: rgb(255, 255, 255);
}

.outline-button-dark:hover,
.outline-button-dark:active {
  border-color: #000000 !important;
  color: #ffffff;
  background-color: rgb(0, 0, 0);
}

.outline-button-blue:hover,
.outline-button-blue:active {
  border-color: #003ba8 !important;
  color: #ffffff;
  background-color: #003ba8;
}

.outline-button-red:hover,
.outline-button-red:active {
  border-color: #a80000 !important;
  color: #ffffff;
  background-color: #a80000;
}

.fill-button,
.fill-button-blue,
.fill-button-red,
.fill-button-dark {
  transition: 0.2s ease-out;
  margin-top: 15px;
  padding: 10px 25px;
  background: white !important;
  border: 1.5pt solid white !important;
  border-radius: 5px;
  font-weight: bolder;
}

.fill-button {
  color: #000000 !important;
}

.fill-button-dark {
  background-color: black !important;
  border-color: black !important;
  color: white;
}

.fill-button-blue {
  background-color: #0047ca !important;
  border-color: #2461d1 !important;
  color: white !important;
}

.fill-button-red {
  background-color: #ca0000 !important;
  border-color: #d12424 !important;
  color: white !important;
}

.fill-button:hover,
.fill-button:active {
  border-color: #e2e2e2 !important;
  background: #e2e2e2 !important;
  color: #000000 !important;
}

.fill-button-dark:hover,
.fill-button-dark:active {
  border-color: #202020 !important;
  background: #202020 !important;
}

.fill-button-red:hover,
.fill-button-red:active {
  border-color: #ff2929 !important;
  background: #ff2929 !important;
}

.fill-button-blue:hover,
.fill-button-blue:active {
  border-color: #2974ff !important;
  background: #2974ff !important;
}

.t-w,
.t-w p,
.t-w h1,
.t-w h2,
.t-w h3,
.t-w h4,
.t-w h5,
.t-w h6 {
  color: #ffffff;
}

.t-b,
.t-b p,
.t-b h1,
.t-b h2,
.t-b h3,
.t-b h4,
.t-b h5,
.t-b h6 {
  color: black;
}

.whitetext {
  --border: #0000007e;
  --color: #ffffff70;
  --poswidth: 1px;
  --negwidth: -1px;
  --blur: 6px;
}

.blacktext {
  --border: #ffffff7e;
  --color: #00000070;
  --poswidth: 1px;
  --negwidth: -1px;
  --blur: 6px;
}

.whitetext,
.blacktext {
  color: var(--color);
  text-shadow: var(--poswidth) var(--poswidth) var(--blur) var(--border), var(--negwidth) var(--poswidth) var(--blur) var(--border), var(--poswidth) var(--negwidth) var(--blur) var(--border), var(--negwidth) var(--negwidth) var(--blur) var(--border);
}

.bg_light {
  background-color: #430079;
  background-image: linear-gradient(24deg, #430079 21%, #c958ff 100%);
}

.bg_dark {
  --bg-dark-opac: rgba(8, 8, 8, 1);
  --bg-dark-opac2: rgb(15, 15, 15, 1);
  --bg-dark-opac3: rgb(8, 8, 8, 1);
  background: var(--bg-dark-opac);
  background: linear-gradient(0deg, var(--bg-dark-opac) 0%, var(--bg-dark-opac2) 40%, var(--bg-dark-opac3) 100%);
}

.bg-color-1 {
  background: var(--theme-color-1) !important;
}
.bg-color-2 {
  background: var(--theme-color-2) !important;
}
.bg-color-3 {
  background: var(--theme-color-3) !important;
}
.bg-color-4 {
  background: var(--theme-color-4) !important;
}
.bg-color-5 {
  background: var(--theme-color-5) !important;
}
.bg-color-6 {
  background: var(--theme-color-6) !important;
}
.bg-color-7 {
  background: var(--theme-color-7) !important;
}

.text-color-1 {
  color: var(--theme-color-1) !important;
}
.text-color-2 {
  color: var(--theme-color-2) !important;
}
.text-color-3 {
  color: var(--theme-color-3) !important;
}
.text-color-4 {
  color: var(--theme-color-4) !important;
}
.text-color-5 {
  color: var(--theme-color-5) !important;
}

.dark_SVG {
  fill: #161616;
}

.white_SVG {
  fill: #ffffff;
}

.light_SVG {
  fill: #fcfcfc;
}

.bg-light-blue {
  background-color: #D2E9FF;
}

.dark_shape {
  background-color: #161616 !important;
}

.light_shape {
  background-color: #ffffff !important;
}

.dark_shape2 {
  background-color: #111111 !important;
}

.light_shape2 {
  background-color: #ebebeb !important;
}

.gradient_primary {
  background: rgb(101, 34, 195);
  background: linear-gradient(0deg, rgb(101, 34, 195) 0%, rgb(128, 0, 32) 100%);
}

.gradient_primary_dark {
  background: #06003f;
  background: linear-gradient(to direction="up" cascade, #0d007e, #06003f);
}

.gradient_purp {
  background: rgb(66, 0, 110);
  background: linear-gradient(0deg, rgb(66, 0, 110) 0%, rgb(33, 20, 129) 50%, rgb(16, 0, 85) 100%);
}

.gradient_blue {
  background: rgb(0, 65, 110);
  background: linear-gradient(0deg, rgb(0, 65, 110) 0%, rgb(70, 132, 185) 50%, rgb(128, 188, 255) 100%);
}

.isdisabled {
  opacity: 50%;
  cursor: not-allowed !important;
}

.gradient_pulse {
  --color1: rgba(70, 0, 184, 0.7);
  --color2: rgba(0, 54, 136, 0.7);
  --color3: rgba(0, 101, 160, 0.7);
  background-image: linear-gradient(to bottom, var(--color1), var(--color2), var(--color3));
  animation: gradient 5s ease infinite;
}

@keyframes gradient {
  0% {
    filter: hue-rotate(0deg);
  }
  100% {
    filter: hue-rotate(360deg);
  }
}
.bg-dark-primary {
  background: #000081;
}

.bg-purple-dark {
  background: #3c0081;
}

.bg-purple {
  background: #5d00c7;
}

.current {
  color: var(--currentColor) !important;
  font-weight: bold;
}

.current-dark {
  color: var(--currentColor) !important;
}

.bg-tint {
  background: var(--bg-tint);
}

.bg-tint-dark {
  background: #242424;
}

.tint_SVG {
  fill: var(--bg-tint);
}

.purple_SVG {
  fill: purple;
}

.purple_light_SVG {
  fill: #b259ff;
}

.hover-line:hover {
  border-color: var(--currentColor) !important;
  color: var(--currentColor) !important;
}

.hover:hover {
  color: var(--currentColor) !important;
}

.pricing-guide p {
  border-bottom: 2pt solid rgba(0, 0, 0, 0);
}

.pricing-guide p:hover {
  border-bottom: 2pt solid var(--bs-purple);
}

.active-pricing {
  background-color: var(--bs-purple);
  color: var(--bs-body-bg);
}

:root {
  scroll-behavior: auto !important;
  --overflow-width: 1399.99px;
  --bs-blue: #0d6efd;
  --bs-indigo: #6610f2;
  --bs-purple: #6f42c1;
  --bs-pink: #d63384;
  --bs-red: #dc3545;
  --bs-orange: #fd7e14;
  --bs-yellow: #ffc107;
  --bs-green: #198754;
  --bs-teal: #20c997;
  --bs-cyan: #0dcaf0;
  --bs-black: #000;
  --bs-white: #fff;
  --bs-gray: #6c757d;
  --bs-gray-dark: #343a40;
  --bs-gray-100: #f8f9fa;
  --bs-gray-200: #e9ecef;
  --bs-gray-300: #dee2e6;
  --bs-gray-400: #ced4da;
  --bs-gray-500: #adb5bd;
  --bs-gray-600: #6c757d;
  --bs-gray-700: #495057;
  --bs-gray-800: #343a40;
  --bs-gray-900: #212529;
  --bs-primary: #0d6efd;
  --bs-secondary: #6c757d;
  --bs-success: #198754;
  --bs-info: #0dcaf0;
  --bs-warning: #ffc107;
  --bs-danger: #dc3545;
  --bs-light: #f8f9fa;
  --bs-dark: #212529;
  --bs-offcanvas-bg: #ffffff;
  --bs-offcanvas-color: #010101;
  --bs-primary-rgb: 13, 110, 253;
  --bs-secondary-rgb: 108, 117, 125;
  --bs-success-rgb: 25, 135, 84;
  --bs-info-rgb: 13, 202, 240;
  --bs-warning-rgb: 255, 193, 7;
  --bs-danger-rgb: 220, 53, 69;
  --bs-light-rgb: 248, 249, 250;
  --bs-dark-rgb: 33, 37, 41;
  --bs-white-rgb: 255, 255, 255;
  --bs-black-rgb: 0, 0, 0;
  --bs-body-color-rgb: 33, 37, 41;
  --bs-body-bg-rgb: 255, 255, 255;
  --bs-font-sans-serif: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans", "Liberation Sans", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --bs-font-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  --bs-gradient: linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0));
  --bs-body-font-family: var(--bs-font-sans-serif);
  --bs-body-font-size: 1rem;
  --bs-body-font-weight: 400;
  --bs-body-line-height: 1.5;
  --bs-border-width: 1px;
  --bs-border-style: solid;
  --bs-border-radius: 0.375rem;
  --bs-border-radius-sm: 0.25rem;
  --bs-border-radius-lg: 0.5rem;
  --bs-border-radius-xl: 1rem;
  --bs-border-radius-2xl: 2rem;
  --bs-border-radius-pill: 50rem;
  --bs-link-color: #0d6efd;
  --bs-link-hover-color: #0a58ca;
  --bs-code-color: #d63384;
  --transparentv3: #5e30d900;
}

.clean-pricing-item {
  padding: 0 30px;
  overflow: hidden;
  position: relative;
}

.card-item-frame {
  overflow: hidden;
  position: relative;
}

.theme-toggle:hover .toggle-image {
  transition: 0.5s ease-in-out;
  transform: rotate(360deg);
}

.whiteNavOverride .theme-toggle:hover .toggle-image {
  transition: 0.5s ease-in-out;
  transform: rotate(360deg);
}

.backing {
  backdrop-filter: blur(10px);
  border-radius: 16px;
}

.selected-pricing-item {
  border: none;
}

.fixed {
  position: fixed;
  backdrop-filter: blur(10px);
}

.navbar-link {
  cursor: pointer;
}

td {
  padding-bottom: 5px;
}

.orange {
  color: orange !important;
}

.purple {
  color: #b259ff;
}

.gray {
  color: #9e9e9e;
}

/*!
 * Light Theme Colors
 */
.cardshade {
  fill: var(--cardshade);
}

.card-item-frame {
  box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.3);
  border: 1px solid #fcfcfc;
  border-top: 2px solid #5ea4f3;
}

.theme-toggle:hover .toggle-image {
  filter: invert(26%) sepia(97%) saturate(6907%) hue-rotate(254deg) brightness(68%) contrast(116%);
}

.logo:hover,
.search-icon:hover {
  filter: brightness(0) saturate(100%) invert(44%) sepia(92%) saturate(2514%) hue-rotate(180deg) brightness(100%) contrast(106%) !important;
}

.whiteNavOverride .logo:hover {
  filter: brightness(0) saturate(100%) invert(64%) sepia(36%) saturate(2857%) hue-rotate(359deg) brightness(106%) contrast(106%) !important;
}

.primary_SVG {
  fill: #0d6efd;
}

.primary_dvd {
  --fill: #0d6efd;
}

.theme-toggle:hover p {
  color: #4f1fff;
}

.whiteNavOverride .theme-toggle:hover .toggle-image {
  filter: brightness(0) saturate(100%) invert(64%) sepia(36%) saturate(2857%) hue-rotate(359deg) brightness(106%) contrast(106%);
}

.whiteNavOverride .theme-toggle:hover p {
  color: orange;
}

.backing {
  background-color: rgba(0, 94, 255, 0.6039215686);
  color: var(--bs-body-bg);
  border: 1pt solid white;
  box-shadow: 5px 5px 10px rgba(190, 190, 190, 0.4784313725), -5px -5px 10px rgba(255, 255, 255, 0.4784313725);
}

.price {
  color: rgb(0, 77, 177);
}

.fixed {
  background: rgba(240, 240, 240, 0.9) !important;
  border-bottom: 0.5pt solid rgb(202, 202, 202);
}

.whiteNavOverride .current {
  color: var(--currentColorOverride) !important;
}

.fixed .current {
  color: var(--currentColor) !important;
}

.navbar-link {
  border-bottom: 2pt solid rgba(0, 0, 0, 0);
}

.navbar-link:hover {
  color: var(--footerTextHover);
  border-bottom: 2pt solid var(--footerTextHover);
}

.whiteNavOverride .navbar-link:hover {
  color: gold !important;
  border-bottom: 2pt solid gold;
}

.offcanvas {
  color: black !important;
  background-color: white !important;
}

@media screen and (max-width: 839.99px) {
  .navbar-link:hover,
  .navbar-link:active,
  .navbar-link:focus,
  .whiteNavOverride .navbar-link:hover,
  .whiteNavOverride .navbar-link:active,
  .whiteNavOverride .navbar-link:focus {
    border-bottom: 2pt solid rgba(0, 0, 0, 0);
  }
}
.accordion-item {
  color: var(--bs-accordion-color) !important;
  background-color: var(--accordion-ovw) !important;
}

.blogpost a {
  color: purple !important;
  text-decoration: underline;
  text-decoration-color: purple !important;
  font-weight: 600;
}

table {
  border-spacing: 0px !important;
}

.tablefoot, .tablefoot td {
  background-color: var(--bs-body-color) !important;
  color: var(--bs-body-bg) !important;
}

.pulse {
  animation: pulse-animation 1s infinite;
}

.border-rotate {
  border-radius: 0 !important;
}

@keyframes pulse-animation {
  0% {
    box-shadow: 0 0 0 0px rgba(0, 0, 0, 0.05);
  }
  100% {
    box-shadow: 0 0 0 15px rgba(0, 0, 0, 0);
  }
}
.screen-reader-text,
.screen-reader-text span,
.screen-reader-shortcut {
  position: absolute !important;
  clip: rect(0, 0, 0, 0) !important;
  height: 1px !important;
  width: 1px !important;
  border: 0 !important;
  overflow: hidden !important;
}

.screen-reader-text {
  border: 0 !important;
  clip: rect(0, 0, 0, 0) !important;
  height: 1px !important;
  margin: 0 !important;
  overflow: hidden !important;
  padding: 0 !important;
  position: absolute !important;
  width: 1px !important;
  word-wrap: normal !important;
}

.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  word-wrap: normal !important;
  border: 0;
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

.share-item {
  transition: 0.3s ease;
}

.share-item:hover {
  filter: brightness(0) saturate(100%) invert(58%) sepia(83%) saturate(793%) hue-rotate(358deg) brightness(100%) contrast(103%);
}

.ecwid-productBrowser-innerTable, .grid__description {
  display: none !important;
}

.details-gallery__images-spacer {
  max-width: 600px !important;
}

.product-details__top * {
  border: none !important;
}/*# sourceMappingURL=main.css.map */