:root {
    --animate-duration: 1s;
    --animate-delay: 1s;
    --animate-repeat: 1;
}

body {
    font-weight: 400;
    color: #121212;
    line-height: 1.66;
}

html {
    overflow-x: hidden;
    scroll-behavior: smooth;
}

.container,
.container-fluid {
    position: relative;
    overflow: hidden;
    padding-left: 16px;
    padding-right: 16px;
}

html,
body,
a,
p,
h1,
h2,
h3,
h4,
h5,
h6,
.btn,
.badge,
.not-rtl {
    font-family: "Inter", sans-serif;
}

.font-inter {
    font-family: 'Inter', sans-serif !important; /* Don't mix this !important one with general one */
}

p,
.h1, .h2, .h3, .h4, .h5, .h6,
h1, h2, h3, h4, h5, h6 {
    margin: 0;
}

.h1, .h2, .h3, .h4, .h5, .h6,
h1, h2, h3, h4, h5, h6 {
    color: #143a68;
    font-weight: 600;
}

h1,
.h1 {
    font-size: 42px;
    line-height: 3.5rem;
}

h2,
.h2 {
    font-size: 38px;
    line-height: 3.2rem;
}

h3,
.h3 {
    font-size: 32px;
    line-height: 2.7rem;
}

h4,
.h4 {
    font-size: 28px;
    line-height: 2.4rem;
}

h5,
.h5 {
    font-size: 24px;
    line-height: 2rem;
}

h6,
.h6 {
   font-size: 20px;
   line-height: 1.65rem;
}

b, strong {
    font-weight: 500;
}

.badge {
    font-weight: 600;
}

.max-width-general,
.max-width-1440,
.max-width-1140,
.max-width-1000,
.max-width-850,
.max-width-650,
.max-width-500,
.max-width-430,
.max-width-380 {
    width: 100%;
    max-width: 750px;
    margin: auto;
}

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

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

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

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

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

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

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

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

.fs-10 {
    font-size: 10px !important;
}

.fs-12 {
    font-size: 12px !important;
}

.fs-13 {
    font-size: 13px !important;
}

.fs-14 {
    font-size: 14px !important;
}

.fs-15 {
    font-size: 15px !important;
}

.fs-16 {
    font-size: 16px !important;
}

.fs-17 {
    font-size: 17px !important;
}

.fs-18 {
    font-size: 18px !important;
}

.fs-20 {
    font-size: 20px !important;
}

.fs-22 {
    font-size: 22px !important;
}

.fs-24 {
    font-size: 24px !important;
}

.fs-28 {
    font-size: 28px !important;
}

.fw-400 {
    font-weight: 400 !important;
}

.fw-500 {
    font-weight: 500 !important;
}

.fw-600 {
    font-weight: 600 !important;
}

.mvh-100 {
    min-height: 100vh !important;
}

.mvh-100-compact {
    min-height: calc(100vh - 250px); /* subtraction for header footer */
}

.mh-inherit {
    min-height: inherit !important;
}

.mt-25 {
    margin-top: 0.75rem !important;
}

.mb-25 {
    margin-bottom: 0.75rem !important;
}

.mt-35 {
    margin-top: 1.25rem !important;
}

.mb-35 {
    margin-bottom: 1.25rem !important;
}

.mt-45 {
    margin-top: 2rem !important;
}

.mb-45 {
    margin-bottom: 2rem !important;
}

.mb-55 {
    margin-bottom: 3.5rem !important;
}

.pt-25 {
    padding-top: 0.75rem !important;
}

.pb-25 {
    padding-bottom: 0.75rem !important;
}

.pt-35 {
    padding-top: 1.25rem !important;
}

.pb-35 {
    padding-bottom: 1.25rem !important;
}

.pt-45 {
    padding-top: 2rem !important;
}

.pb-45 {
    padding-bottom: 2rem !important;
}

.pb-8 {
    padding-bottom: 8rem !important;
}

img {
    width: auto;
    height: auto;
    max-width: 100%;
}

.overflow-y-auto {
    overflow-y: auto !important;
}

.bg-primary-light {
    background: #F0F7FF !important;
}

.bg-primary-dark {
    background: #0066DA !important;
}

.bg-primary-darkest {
    background: #2E466B !important;
}

.bg-dash {
    background: #f7f8fa !important;
}

.bg-white {
    background: white !important;
}

.bg-dark {
    background: #121212 !important;
}

.bg-gray {
    background: #dddbdd;
}

.bg-gradient-gray {
    background: linear-gradient(to right, #ffffff 50%, #FAFAFA 100%);
}

.bg-gradient-flashy {
    background: linear-gradient(300deg, #00a3ff, #00aeff, #0679fc, #007BFF, #007BFF, #0098ff, #2c8fff);
}

.bg-gradient-animated {
    background: linear-gradient(46deg, #0067dd, #007BFF, #009ff7, #00b8fd, #007BFF, #007BFF, #0067dd) !important;
    background-size: 1000% 1000% !important;
    animation: gradient 5s ease infinite !important;
}

@keyframes gradient {
    0% { background-position: 90% 0% }
    50% { background-position: 11% 100% }
    100% { background-position: 90% 0% }
}

.d-grid {
    display: grid !important;
}

.w-fit-content {
    width: fit-content;
}

.hero-content,
.flex-column-center-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.user-select-none,
.badge,
.custom-control.custom-radio,
.custom-control.custom-checkbox {
    -webkit-user-select: none;
    /* Safari */
    -khtml-user-select: none;
    /* Konqueror HTML */
    -moz-user-select: none;
    /* Old versions of Firefox */
    -ms-user-select: none;
    /* Internet Explorer/Edge */
    user-select: none;
}

.cursor-default {
  cursor: default !important;
}

.cursor-pointer {
  cursor: pointer !important;
}

.hide {
    display: none;
}

.pointer-events-none {
    pointer-events: none !important;
}

.grid-container {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

.grid-container.grid-cols-1 {
    grid-template-columns: 100%;
}

.grid-container.grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-container .card-post {
    margin: 0;
    box-shadow: 0px 3px 12px rgba(0, 0, 0, 0.12), 0px 3px 8px rgba(0, 0, 0, 0.04);
    transition: box-shadow 0.2s ease;
}

.grid-container .card-post:hover {
    box-shadow: 0px 6px 20px rgba(0, 0, 0, 0.12), 0px 6px 20px rgba(0, 0, 0, 0.08);
}

.grid-container .img-container {
    margin: 0 !important;
}

.grid-span-2 {
    grid-column: span 2;
}

/* form-control / inputs */

.form-control {
    border: 1.2px solid #D6D6D6;
    border-radius: 8px;
    padding: 8px 12px;
    font-size: 14px;
    height: auto;
    font-weight: 400 !important;
    color: #000 !important;
}

.form-control.rounded-pill {
    padding-left: 20px;
    padding-right: 20px;
}

.input-container {
    position: relative;
}

.input-container.with-left-icon input {
    padding-left: 42px;
}

.input-container.with-left-icon .left-icon {
    position: absolute;
    top: 50%;
    left: 8px;
    transform: translateY(-50%);
}

select.form-control {
    font-weight: 300;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.select-group::after {
    position: absolute;
    font-family: 'Material Symbols Outlined';
    font-weight: 400;
    content: "\e5e1";
    top: 50%;
    right: 20px;
    color: #616870;
    transform: translateY(-50%) rotate(90deg);
    font-size: 14px;
    pointer-events: none;
}

.select-group select.form-control {
    padding-right: 30px;
}

select.form-control:not([size]):not([multiple]) {
    height: auto;
}

label {
    cursor: pointer;
    line-height: normal;
}

textarea.form-control {
    min-height: 150px;
    max-height: 500px;
}

[data-toggle="popover"][data-type="tooltip"] {
    cursor: pointer;
}

/* Custom scrollbar */

.custom-scrollbar::-webkit-scrollbar {
    width: 6px;
}

.table-mobile-overflow::-webkit-scrollbar {
    height: 6px;
}

.custom-scrollbar::-webkit-scrollbar-track,
.table-mobile-overflow::-webkit-scrollbar-track {
    background: none;
}

.custom-scrollbar::-webkit-scrollbar-thumb,
.table-mobile-overflow::-webkit-scrollbar-thumb {
    background: #ced4da;
    border-radius: 50px;
}

.custom-scrollbar::-webkit-scrollbar-thumb:hover,
.table-mobile-overflow::-webkit-scrollbar-thumb:hover {
    background: #abb6bf;
}

.hidden-scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.hidden-scrollbar::-webkit-scrollbar {
    display: none;
}

input[type=number] {
    -moz-appearance: textfield;
}

/* Removing arrows on input type number */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.custom-control.bubbly {
    padding: 0 !important;
}

.custom-control.bubbly .custom-control-label {
    border: 1.2px solid #D6D6D6;
    padding: 6px 16px 6px 40px !important;
    border-radius: 8px;
    width: 100%;
    line-height: 1.6rem;
    font-size: 15px;
}

.custom-control.bubbly .custom-control-label::before,
.custom-control.bubbly .custom-control-label::after {
    transform: translate(40px, 6px) !important;
}

.custom-control.bubbly input:not(:checked) + .custom-control-label:hover {
    background: #FBFBFB;
}

.custom-control.bubbly input:checked + .custom-control-label {
    background: #F0F7FF;
    border-color: #96c7ff;
}

.custom-control.no-radio {
    padding-left: 0;
}

.custom-control.no-radio .custom-control-label::before,
.custom-control.no-radio .custom-control-label::after {
    display: none;
    content: none;
}

a {
    color: #007bff;
    text-decoration: none !important;
}

a:hover {
    color: #0056b3;
}

.btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: fit-content;
    font-size: 16px;
    font-weight: 500;
    padding: 8px 20px;
    line-height: normal;
    border-radius: 200px;
    transition: all 0.25s ease;
    outline: none !important;
}

.btn.btn-sm {
    font-size: 14px;
    padding: 8px 16px;
}

.btn.btn-lg {
    font-size: 18px;
    padding: 10px 26px;
}

.btn.btn-xl {
    font-size: 20px;
    padding: 10px 32px;
}

.btn.btn-primary.shadow {
    box-shadow: 0 4px 11px rgb(0 123 255 / 25%);
}

.btn.btn-white {
    border: 1px solid #e1e5eb !important;
    background: white !important;
    color: #121212 !important;
    box-shadow: 0 3px 8px #00000010;
}

.btn.btn-white:hover {
    box-shadow: 0 0.325rem 1.2rem rgb(129 142 163 / 25%),
        0 0.125rem 0.425rem rgb(129 142 163 / 40%);
}

.btn.btn-purple {
    color: white;
    background: linear-gradient(90deg, #A000D8 0%, #BA17F2 91.69%) !important;
    box-shadow: 0px 2px 8px 0px rgba(142, 0, 191, 0.12) !important;
}

.btn.btn-purple:hover {
    background: linear-gradient(90deg, #9200c5 0%, #BA17F2 100%) !important;
    box-shadow: 0px 4px 12px 0px rgba(142, 0, 191, 0.24) !important;
}

.btn.btn-outline-purple {
    color: #8E00BF;
    background: transparent;
    border: 1px solid #8E00BF;
}

.btn-success {
    background: #24C30A !important;
    border-color: #24C30A !important;
}

.btn-success:hover {
    background: #138600 !important;
    border-color: #138600 !important;
}

.btn-outline-success {
    color: #24C30A !important;
    border-color: #24C30A !important;
}

.btn-outline-success:hover {
    color: white !important;
    background: #24C30A !important;
}

.btn-golden {
    background: #FFD34F;
}

.btn-outline-golden {
    background: transparent;
    border: 1px solid #F4B800;
}

.btn-outline-golden:hover {
    background: #FFD34F;
}

.btn.disabled {
    pointer-events: none;
}

.btn img {
    max-width: 20px;
    max-height: 20px;
}

.btn.btn-lg img {
    max-width: 24px;
    max-height: 24px;
}

.rounded-pill {
    border-radius: 200px !important;
}

/* Google Material icons */
.material-symbols-outlined {
    color: transparent;
    width: 1em;
    min-width: 1em;
    text-align: center;
    overflow: hidden;
    line-height: 1;

    /* Important: Must set font-family to override the RTL classes fonts */
    font-family: 'Material Symbols Outlined' !important;
}

/* Show icons only when font is loaded - via JS */
.fonts-loaded .material-symbols-outlined {
  color: inherit;
}


/* Dropdown */

.btn.dropdown-toggle {
    gap: 6px;
    cursor: pointer;
    outline: none;
}

.btn.dropdown-toggle,
.btn.dropdown-toggle:hover,
.btn.dropdown-toggle:focus {
    box-shadow: none !important;
}

.btn.dropdown-toggle img {
    width: 20px;
}

.btn.dropdown-toggle::after {
    display: none;
    content: "";
}

.btn.dropdown-toggle .material-symbols-outlined.arrow {
    transition: transform 0.2s ease;
}

.dropdown.show .btn.dropdown-toggle .material-symbols-outlined.arrow {
    transform: rotate(180deg);
}

.dropdown-menu {
    z-index: 99999;
    margin: 0 !important;
    background: none !important;
    border: none !important;
    box-shadow: none !important;
    outline: none !important;
}

.dropdown-menu-inner {
    padding: 8px 0 !important;
    margin: 0 !important;
    box-shadow: 0px 6px 13px 2px rgba(0, 0, 0, 0.07);
    border-radius: 8px;
    border: 1px solid #E3E4ED;
    background: white;
}

.btn.dropdown-toggle.btn-pill+.dropdown-menu .dropdown-menu-inner {
    border-radius: 16px;
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #121212;
    letter-spacing: normal;
    line-height: normal;
    padding: 0.48rem 1.25rem;
    font-weight: 500;
    font-size: 13px;
}

.dropdown-item .material-symbols-outlined {
    color: #121212;
    font-size: 16px;
}

.dropdown-divider {
    margin: 8px 0;
    border-top: 1px solid #E3E4ED;
}

.dropdown.dropdown-lg .dropdown-item {
    font-size: 14px;
}

/* Dropdown dark version */

.dropdown.dark .dropdown-menu-inner {
    background: #222;
    border: 1px solid #abb6bf;
    box-shadow: 0px 6px 24px rgba(0, 0, 0, 0.2);
}

.dropdown.dark .dropdown-item {
    font-weight: 400;
    color: white;
}

.dropdown.dark .dropdown-item:focus,
.dropdown.dark .dropdown-item:hover {
    color: white;
    background-color: #f8f9fa29;
}

.dropdown.dark .dropdown-item .material-symbols-outlined {
    color: white;
}

.dropdown.dark .dropdown-divider {
    border-top: 1px solid #abb6bf;
}

.no-icon .material-symbols-outlined {
    display: none;
}

.view-all {
    color: #007bff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2px;
    width: fit-content;
    font-weight: 600;
}

.view-all .material-symbols-outlined {
    transition: all 0.25s ease;
}

.view-all:hover .material-symbols-outlined {
    margin-left: 3px;
}

.text-wrap {
    white-space: normal;
}

.text-underline {
    text-decoration: underline !important;
}

.zero-margins-children * {
    margin: 0 !important;
}

.flip-x {
    transform: scale(-1);
}

.overflow-hidden {
    overflow: hidden !important;
}

.nav-tabs .nav-item.show .nav-link,
.nav-tabs .nav-link.active {
    color: white;
    background-color: #007bff;
}

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

.shimmer-animation {
    -webkit-animation: shimmer 2s infinite;
    animation: shimmer 2s infinite;
}

/* Shine animation for badges etc to show new feature */
.new-shine-effect {
    position: relative;
    overflow: hidden;
}

.new-shine-effect:after {
  content: "";
  top: 0;
  left: 0;
  transform: translateX(-100%);
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 1;
  animation: shiny 3s infinite;

  background: -webkit-linear-gradient(
    left,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.8) 50%,
    rgba(128, 186, 232, 0) 99%,
    rgba(125, 185, 232, 0) 100%
  );
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.8) 50%,
    rgba(128, 186, 232, 0) 99%,
    rgba(125, 185, 232, 0) 100%
  );
}

@keyframes shiny {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}

/* Skeleton loader effect for lazyloading images */
.skeleton-box {
    position: relative;
    background-color: #dddbdd !important;
    overflow: hidden;
}

.skeleton-box::after {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    transform: translateX(-100%);
    background-image: linear-gradient(90deg,
            rgba(255, 255, 255, 0) 0,
            rgba(255, 255, 255, 0.2) 20%,
            rgba(255, 255, 255, 0.5) 60%,
            rgba(255, 255, 255, 0));
    -webkit-animation: skeleton 1.5s infinite;
    animation: skeleton 1.5s infinite;
    content: "";
}

@-webkit-keyframes skeleton {
    100% {
        transform: translateX(100%);
    }
}

@keyframes skeleton {
    100% {
        transform: translateX(100%);
    }
}

.line-clamp-1,
.line-clamp-2,
.line-clamp-3,
.line-clamp-4,
.line-clamp-5 {
    display: -webkit-box;
    line-clamp: 1;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.line-clamp-2 {
    line-clamp: 2;
    -webkit-line-clamp: 2;
}

.line-clamp-3 {
    line-clamp: 3;
    -webkit-line-clamp: 3;
}

.line-clamp-4 {
    line-clamp: 4;
    -webkit-line-clamp: 4;
}

.line-clamp-5 {
    line-clamp: 5;
    -webkit-line-clamp: 5;
}

img.full-width {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.img-container {
    border-radius: 10px;
    overflow: hidden;
}

.book-img-con {
    background: #222222;
}

.book-img-con img {
    object-fit: contain !important;
}

.border {
    border: 1px solid #E0E0E0 !important;
}

.border-dashed {
    border: 2px dashed #E0E0E0 !important;
}

img.border {
    border-radius: 10px;
}

.shadow {
    box-shadow: 0 0.46875rem 2rem rgba(90, 97, 105, .15),
        0 0.25rem 0.53125rem rgba(90, 97, 105, .12),
        0 0.125rem 0.1875rem rgba(90, 97, 105, .1);
}

.shadow-3d {
    border-bottom: 8px solid #E0E0E0 !important;
}

.shadow-primary {
    box-shadow: 0 2px 12px rgba(0, 123, 255, .3) !important;
}

.shadow-primary-lg {
    box-shadow: 0px 8px 20px 0px rgba(1, 118, 252, 0.24) !important;
}

.shadow-success-lg {
    box-shadow: 0px 8px 20px 0px rgba(29, 205, 0, 0.24) !important;
}

.shadow-primary-3d {
    border-bottom: 8px solid #004DA5 !important;
}

.shadow-dark-3d {
    border-bottom: 8px solid #3F3F3F !important;
}

.hover-shadow:hover {
    box-shadow: 0 0.46875rem 2rem rgba(90, 97, 105, .15),
        0 0.25rem 0.53125rem rgba(90, 97, 105, .12),
        0 0.125rem 0.1875rem rgba(90, 97, 105, .1);
}

.no-shadow {
    box-shadow: none !important;
}

.transition-ease {
    transition: all 0.25s ease;
}

.absolute-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.absolute-bg.hero-bg {
    background: linear-gradient(180deg, #ffffff 50%, #F1F5FF 100%);
    border-bottom: 1px solid #0066FF80;
}

.absolute-bg video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    opacity: 0.4;
}

.text-white {
    color: white !important;
}

.text-dark {
    color: #121212 !important;
}

.text-secondary {
    color: #616870 !important;
}

.text-primary-darkest {
    color: #143a68 !important;
}

.text-success {
    color: #24C30A !important;
}

.text-success-dark {
    color: #138600 !important;
}

.text-golden {
    color: #EBA900 !important;
}

.text-purple {
    color: #8E00BF !important;
}

.text-strike {
    text-decoration: line-through;
}

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

.border-radius-6 {
    border-radius: 6px !important;
}

.border-radius-10 {
    border-radius: 10px !important;
}

.border-radius-12 {
    border-radius: 12px !important;
}

.border-radius-16 {
    border-radius: 16px !important;
}

.border-radius-20 {
    border-radius: 20px !important;
}

.border-radius-24 {
    border-radius: 24px !important;
}

.border-radius-28 {
    border-radius: 28px !important;
}

.border-primary {
    border: 1px solid #007bff;
}

.border-primary-darkest {
    border: 1px solid #2E466B;
}

.border-success {
    border: 1px solid #24C30A;
}

.border-width-2 {
    border-width: 2px !important;
}

.line-height-normal {
    line-height: normal !important;
}

.line-height-14 {
    line-height: 1.4;
}

.line-height-16 {
    line-height: 1.6;
}

.line-height-19 {
    line-height: 1.9;
}

.word-break-all {
    word-break: break-all;
}

.white-space-normal {
    white-space: normal !important;
}

.white-space-break-spaces {
    white-space: break-spaces;
}

.white-space-pre-line {
    white-space: pre-line;
}

.gap-4 {
    gap: 4px !important;
}

.gap-6 {
    gap: 6px !important;
}

.gap-8 {
    gap: 8px !important;
}

.gap-10 {
    gap: 10px !important;
}

.gap-12 {
    gap: 12px !important;
}

.gap-16 {
    gap: 16px !important;
}

.gap-20 {
    gap: 20px !important;
}

.gap-24 {
    gap: 24px !important;
}

.gap-32 {
    gap: 32px !important;
}

.gap-42 {
    gap: 42px !important;
}

.z-index-0 {
    z-index: 0;
    position: relative;
}

.z-index-10 {
    z-index: 10;
    position: relative;
}

.z-index-50 {
    z-index: 50;
    position: relative;
}

.z-index-max {
    z-index: 9999;
    position: relative;
}

.op-0 {
    opacity: 0 !important;
}

.op-04 {
    opacity: 0.4 !important;
}

.op-06 {
    opacity: 0.6 !important;
}

.op-08 {
    opacity: 0.8 !important;
}

.op-09 {
    opacity: 0.9 !important;
}

.progress-bar-animated {
    animation-direction: reverse;
}

.progress.green .progress-bar {
    background-color: #24C30A;
}

.progress.progress-lg {
    height: 1.2rem;
    border-radius: 6px;
}

.card {
    box-shadow: 0 .46875rem 2.1875rem rgba(90, 97, 105, .1), 0 .9375rem 1.40625rem rgba(90, 97, 105, .1), 0 .25rem .53125rem rgba(90, 97, 105, .12), 0 .125rem .1875rem rgba(90, 97, 105, .1)
}

.card-post {
    width: 100%;
    box-shadow: 0 2px 6px rgb(90 97 105 / 6%), 0 4px 8px rgb(90 97 105 / 12%),
        0 10px 10px rgb(90 97 105 / 6%), 0 7px 70px rgb(90 97 105 / 10%);
    border-radius: 16px;
    overflow: hidden;
}

.card-small {
    box-shadow: 0px 4px 18px rgb(0 0 0 / 8%), 0px 2px 6px rgb(0 0 0 / 10%);
}

.card-post .card-post__image {
    min-height: unset;
}

.scale-on-hover {
    transition: transform 0.25s ease;
}

.scale-on-hover:hover {
    transform: scale(1.03);
}

.text-overflow-ellipsis {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Magnific popup */

.mfp-bg {
    opacity: 0.85;
    z-index: 99998;
}

.mfp-wrap {
    backdrop-filter: blur(12px);
    z-index: 99999;
}

.mfp-gallery {
    -webkit-user-select: none;
    /* Safari */
    -khtml-user-select: none;
    /* Konqueror HTML */
    -moz-user-select: none;
    /* Old versions of Firefox */
    -ms-user-select: none;
    /* Internet Explorer/Edge */
    user-select: none;
}

.mfp-close {
    width: auto !important;
    height: auto !important;
    padding: 24px !important;
    line-height: normal;
    opacity: 1;
    z-index: 99999;
}

.mfp-close .close-icon {
    color: #b6bdc2 !important;
    font-size: 28px;
}

.mfp-close:hover .close-icon {
    color: white !important;
}

.mfp-figure:after {
    box-shadow: none !important;
}

.mfp-arrow {
    height: 100%;
    top: auto;
    bottom: 0;
    margin: 0 !important;
    width: 200px;
    opacity: 0.65 !important;
    transition: all 0.2s ease;
}

.mfp-arrow:hover {
    background: linear-gradient(to right, #12121200 0%, #121212 100%);
    opacity: 1 !important;
}

.mfp-arrow.mfp-arrow-left:hover {
    background: linear-gradient(to left, #12121200 0%, #121212 100%);
}

.mfp-arrow:before,
.mfp-arrow:after {
    top: 50%;
    left: 60px;
    transform: translateY(-50%);
    margin: 0 !important;
    border: none !important;
}

.mfp-arrow::after {
    font-family: 'Material Symbols Outlined';
    content: "\e5e1";
    font-size: 22px;
    color: white;
}

.mfp-arrow.mfp-arrow-right:before,
.mfp-arrow.mfp-arrow-right:after {
    right: 60px;
    left: auto;
}

.mfp-arrow.mfp-arrow-left::after {
    transform: translateY(-50%) scaleX(-1);
}

img.mfp-img {
    padding: 0 !important;
    border-radius: 10px !important;
    overflow: hidden;
    max-height: calc(100vh - 18vh) !important;
}

.mfp-image-holder .mfp-content {
    max-width: calc(100% - 140px);
}

.mfp-counter {
    top: 48px;
}

.mfp-zoom-out-cur,
.mfp-zoom-out-cur .mfp-image-holder .mfp-close {
    cursor: default;
}

.mfp-no-margins img.mfp-img {
    padding: 0;
}

.mfp-no-margins .mfp-figure:after {
    top: 0;
    bottom: 0;
}

.mfp-no-margins .mfp-container {
    padding: 0;
}

.mfp-with-zoom .mfp-container,
.mfp-with-zoom.mfp-bg {
    opacity: 0;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    transition: all 0.3s ease-out;
}

.mfp-with-zoom.mfp-ready .mfp-container {
    opacity: 1;
}

.mfp-with-zoom.mfp-ready.mfp-bg {
    opacity: 0.8;
}

.mfp-with-zoom.mfp-removing .mfp-container,
.mfp-with-zoom.mfp-removing.mfp-bg {
    opacity: 0;
}

/* Page headers common */

.page-title,
.page-header .page-title {
    font-weight: 600;
    font-size: 28px;
    line-height: normal !important;
}

.page-subtitle,
.page-header .page-subtitle {
    font-size: 14px;
    color: #818ea3;
}

/* Badge tags / Pills */

.badge {
    position: relative;
    width: fit-content;
    height: auto;
    letter-spacing: 0.3px;
    transition: all 0.2s ease;
    text-decoration: none;

    padding: 4px 8px;
    border-radius: 5px;
    background: #F1F1F1;
    color: #616870;
    font-size: 14px;
}

.badge:not(.static):hover {
    background: #616870;
    color: white;
}

.badge.small {
    border-radius: 4px;
    font-size: 12px;
}

.badge.large {
    padding: 6px 12px;
    font-size: 15px;
}

.badge.xlarge {
    padding: 6px 12px;
    font-size: 16px;
}

.badge.outline {
    background: transparent;
    border: 1px solid #616870;
    color: #616870;
}

.badge.outline:not(.static):hover {
    background: #616870;
    color: white;
}

.badge.primary {
    background: #007bff !important;
    color: white !important;
}

.badge.primary-light {
    background: #ddeeff !important;
    color: #007bff !important;
}

.badge.outline-primary {
    background: #007bff08;
    border: 1px solid #007bff;
    color: #007bff;
}

.badge.outline-primary:not(.static):hover {
    background: #007bff;
    color: white;
}

.badge.dark {
    background: #767f8b !important;
    color: white !important;
}

.badge.bg-danger {
    color: white !important;
}

.badge.golden-light {
    background: #FFF9D8 !important;
    border: 1px solid #F4B800 !important;
    color: #826D00 !important;
}

.badge.golden,
.badge.golden:not(.static):hover {
    background: #F8DA40 !important;
    color: #826D00 !important;
}

.badge.success-light {
    background: #D3FFCC !important;
    color: #138600 !important;
}

.badge.success,
.badge.success-light:not(.static):hover {
    background: #24C30A !important;
    color: white !important;
}

.badge.purple-light {
    background: #EDD5FF !important;
    color: #6C00BF !important;
}

.tags-parent {
    position: relative;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    width: 100%;
    gap: 8px;

    -webkit-user-select: none;
    /* Safari */
    -ms-user-select: none;
    /* IE 10 and IE 11 */
    user-select: none;
    /* Standard syntax */
}

.tags-parent::-webkit-scrollbar {
    display: none;
}


/* List view */

.list-view-entry {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 10px 0;
    padding: 12px 16px;
    transition: all 0.2s ease;
    border-radius: 10px;
    gap: 12px;
    background: #f7f7f7;
}

.list-view-entry:hover {
    background: white;
}

.list-view-entry a:hover h5 {
    color: #007bff !important;
}

.list-view-entry p {
    color: #121212 !important;
    font-weight: 500;
}

.list-view-entry h5 {
    color: #121212;
    font-size: 17px;
    line-height: 1.65rem;
}


/* Phone input intl */

.iti {
    width: 100%;
}

.iti-mobile .iti--container {
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    position: fixed;
}

.iti__country-list {
    font-size: 14px;
    overflow-x: hidden;
}

.plain-phone-con {
    display: grid;
    grid-template-columns: 60px 1fr;
    gap: 10px;
}

.close-btn {
    cursor: pointer;
}

/* ALERTS */

.alerts {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin: auto;
}

.single-alert {
    width: 100%;
    display: flex;
    color: white !important;
    box-shadow: 0px 4px 10px rgb(0 0 0 / 18%);
    border-radius: 8px;
    min-height: 50px;
    text-align: left;
    font-size: 14px;
    line-height: 1.4em;
}

.single-alert .message {
    padding: 12px 18px;
}

.single-alert.success {
    background: #00bb34;
}

.single-alert.warning {
    background: #F05353;
}

.single-alert.note {
    background: #444;
}

.single-alert .close-btn {
    background: none;
    border: none;
    outline: none !important;
    box-shadow: none;
    color: white !important;
    transition: all 0.2s ease;
    padding: 8px 12px;
    border-radius: 0 8px 8px 0;
    display: flex;
    align-items: center;
}

.single-alert.warning .close-btn {
    background: #d43535 !important;
}

.single-alert.success .close-btn {
    background: #03a948 !important;
}

.single-alert.note .close-btn {
    background: #323232 !important;
}

.single-alert .material-symbols-outlined {
    font-size: 20px;
}

/* Slide aspect ratio */

.slide-aspect-ratio {
    position: relative;
    padding-bottom: 56.25%;
    overflow: hidden;
    height: 0;
}

.slide-aspect-ratio img,
.slide-aspect-ratio .video-wrapper,
.slide-aspect-ratio video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    min-width: 100%;
    height: 100%;
    min-height: 100%;
}

.slide-aspect-ratio img {
    object-fit: cover;
}

/* Animate CSS */

.animate__animated {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-duration: var(--animate-duration);
    animation-duration: var(--animate-duration);
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both
}

@media (prefers-reduced-motion:reduce),
print {
    .animate__animated {
        -webkit-animation-duration: 1ms !important;
        animation-duration: 1ms !important;
        -webkit-transition-duration: 1ms !important;
        transition-duration: 1ms !important;
        -webkit-animation-iteration-count: 1 !important;
        animation-iteration-count: 1 !important
    }
}

/* Step index */

.step-index {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 36px;
    min-height: 36px;
    width: 36px;
    height: 36px;
    border: 1px solid #E0E0E0;
    border-radius: 100px;
    padding: 10px 12px;
    white-space: nowrap;
    transition: all 0.3s ease;
}

.step-index.large {
    min-width: 50px;
    min-height: 50px;
    width: 50px;
    height: 50px;
    font-size: 18px;
}

/* absolute emoji on CTAs and sections */

.abs-pill {
    position: absolute;
    background: white;
    z-index: 3;
    cursor: default;
}

.abs-pill img {
    height: auto;
    max-height: unset;
    transition: all 0.2s ease;
    transform: scale(1);
}

.abs-pill img:nth-of-type(2) {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
}

.row:hover .abs-pill img:nth-of-type(2) {
    transform: translate(-50%, -50%) scale(1);
}

.row:hover .abs-pill img:nth-of-type(1) {
    transform: scale(0);
}

/* you exec intro section  */

.you-exec-intro>.row {
    position: relative;
    border-radius: 16px;
    background: #0166D9;
    color: white;
}

@media not all and (min-resolution:.001dpcm) {
  @supports (-webkit-appearance:none) {
    /* Safari-specific style */
    .you-exec-intro>.row {
       background: #0F6FD9;
    }
  }
}

.you-exec-intro .list-style-none li>p {
    margin: -2px 0 0 12px;
}


.you-exec-intro .list-style-none li>svg {
    min-width: 20px;
}

.you-exec-intro .intro-img-con {
    display: flex;
    align-items: flex-end;
    border-radius: 16px;
    overflow: hidden;
}

/* Dot details - elements separated with center dot  */

.dot-details {
    display: flex;
    align-items: center;
    gap: 10px;
}

.dot-details .dot {
    width: 4px;
    height: 4px;
    background: #ABB6BF;
    border-radius: 100px;
}

/* Spinner - loader */
.spinner {
   width: 24px;
   height: 24px;
   display: inline-block;
   padding: 0px;
   border-radius: 100%;
   border: 3px solid;
   border-top-color: rgba(255,255,255, 0.8);
   border-bottom-color: rgba(255,255,255, 0.4);
   border-left-color: rgba(255,255,255, 0.8);
   border-right-color: rgba(255,255,255, 0.4);
   -webkit-animation: spinner 1s ease infinite;
   animation: spinner 1s ease infinite;
}

.btn .spinner {
    width: 20px;
    height: 20px;
}

@keyframes spinner {
   from {transform: rotate(0deg);}
   to {transform: rotate(360deg);}
}

@-webkit-keyframes spinner {
   from {-webkit-transform: rotate(0deg);}
   to {-webkit-transform: rotate(360deg);}
}

.toggle-show-element {
    display: none;
}

.toggle-show-element.show {
    display: block;
}

/* entry card */
.single-entry-card {
    transition: all .25s cubic-bezier(.345,.115,.135,1.42);
}

.single-entry-card:hover {
    transform: scale(1.02);
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

/* View all toggler dynamic height based */

.view-all-toggler-container .view-all-toggler-content {
    overflow: hidden;
    position: relative;
}

.view-all-toggler-container.show-gradient.collapsed .view-all-toggler-content:before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 20%;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0), rgba(255, 255, 255, 1));;
    z-index: 1000;
}



/* Wistia video */

.w-video-wrapper.w-css-reset{
    background-color: transparent !important;
}

.bounce {
  animation: bounce 400ms ease;
  animation-iteration-count: 1;
}

@keyframes bounce {
  0%, 100% {
    transform: scale(1);
  }
  25% {
    transform: scale(1.08);
  }
  50% {
    transform: scale(0.92);
  }
  75% {
    transform: scale(1.03);
  }
}


.table.small-table tr th,
.table.small-table tr td {
    padding: 8px 12px;
}

/* Mini input holder */

.mini-btn-holder {
    position: relative;
    width: 100%;
}

.mini-btn-holder .form-control {
    padding: 10px 70px 10px 20px;
}

.mini-btn-holder .btn.mini {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 6px;
    font-weight: 500;
    font-size: 15px !important;
    padding: 6px 18px;
}



/* Share buttons */
.share-buttons {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}

.share-buttons .btn {
    transition: all 0.2s ease;
}

.share-buttons .btn:hover {
    transform: scale(1.04);
}

.share-buttons .copy-link {
    border: 1px solid #8523EE;
    color: #8523EE;
    background: #FAF5FF;
}

.share-buttons .copy-link:hover {
    background: #F2E6FF;
}

.share-buttons .email {
    border: 1px solid #E56829;
    color: #E56829;
    background: #FFF8F4;
}

.share-buttons .email:hover {
    background: #FFE7DB;
}

.share-buttons .whatsapp {
    border: 1px solid #01B745;
    color: #01B745;
    background: #F0FFF6;
}

.share-buttons .whatsapp:hover {
    background: #D4FFE4;
}

.share-buttons .facebook {
    border: 1px solid #0E6DE8;
    color: #0E6DE8;
    background: #EDF5FF;
}

.share-buttons .facebook:hover {
    background: #D7E8FF;
}

.share-buttons .twitter {
    border: 1px solid #444444;
    color: #444444;
    background: #F7F7F7;
}

.share-buttons .twitter:hover {
    background: #E8E8E8;
}

.share-buttons .linkedin {
    border: 1px solid #0659AC;
    color: #0659AC;
    background: #EFF7FF;
}

.share-buttons .linkedin:hover {
    background: #D0E8FF;
}

.single-gradient-line {
    width: 100%;
    height: 2px;
    background: linear-gradient(to right, #fff 0%, #00000022 50%, #fff 100%);
}

.line-middle-text {
    display: flex;
    align-items: center;
    gap: 12px;
    width: calc(100% - 42px);
    margin: auto;
}

.line-middle-text .line {
    width: 100%;
    height: 1px;
    flex: 1;
    background-color: #00000022;
}

.google-auth-btn .line-middle-text {
    margin: 14px 0;
    max-width: 160px;
}

.google-auth-btn .line-middle-text .text {
    color: #616870;
}

.google-auth-btn.outline .line-middle-text .text {
    color: #ffffffe3;
}

.google-auth-btn.outline .line-middle-text .line {
    background: #ffffff50;
}



/* Download btns */

.download-btns-holder.capture .download-btns {
    transform: translateX(0) scale(1);
    transition: all 0.6s ease;
}

.download-btns-holder.capture .capture-cta-container {
    position: absolute;
    top: 0;
    opacity: 0;
    transform: translateX(100%) scale(0);
    transition: all 0.5s ease;
}

.download-btns-holder.capture .download-btns.animate-hide {
    position: absolute;
    transform: translateX(-100%) scale(0);
}

.download-btns-holder.capture .capture-cta-container.animate-show {
    position: relative;
    opacity: 1;
    transform: translateX(0) scale(1);
}

.download-btns > .downloadable-group-heading {
    grid-column: span 2;
}

.download-btns > .downloadable-group-heading:first-child {
    padding-top: 0 !important;
}



/* main CTA white */

.main-cta-overlap-above > * {
    margin-top: -108px;
}

.main-cta {
    position: relative;
    padding: 28px;
    color: white;
}

.main-cta.d-grid {
    grid-template-columns: 54% 46%;
}

.main-cta.capture-cta.d-grid {
    grid-template-columns: 1fr 1fr;
}

.main-cta .btn.btn-white {
    box-shadow: 0px 4px 8px 0px #005BC2;
}

.main-cta .abs-pill {
    top: -23px;
    left: 28px;
    padding: 8px 16px;
    border-radius: 200px;
}

.main-cta .abs-pill img {
    min-width: 28px;
    width: 28px;
}



/* tooltip popover styles */

[data-toggle="popover"][data-type="tooltip"] .material-symbols-outlined {
    line-height: 0.8;
}

.popover[role="tooltip"] {
    max-width: 300px;
    box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.23);
    border: none;
    z-index: 999999;
}

.popover[role="tooltip"] .popover-body {
    font-size: 13px;
    font-weight: 400;
    max-width: 300px;
    padding: 12px 20px;
}

/* Sliding text button */
.sliding-text-button {
    position: relative;
    overflow: hidden;
}

.sliding-text-button .text-slide {
    position: absolute;
    width: 100%;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    text-align: center;
}

.sliding-text-button .text-slide:nth-of-type(1) {
    animation: slideLeft 3.5s infinite;
}

.sliding-text-button .text-slide:nth-of-type(2) {
    animation: slideRight 3.5s infinite;
}

@keyframes slideLeft {
    0%, 40% { transform: translate(0, -50%); opacity: 1; }
    50%, 90% { transform: translate(-100%, -50%); opacity: 0; }
    100% { transform: translate(0, -50%); opacity: 1; }
}

@keyframes slideRight {
    0%, 40% { transform: translate(100%, -50%); opacity: 0; }
    50%, 90% { transform: translate(0, -50%); opacity: 1; }
    100% { transform: translate(100%, -50%); opacity: 0; }
}

.overflow-gradient {
    position: absolute;
    top: 0;
    right: 0;
    width: 74px;
    height: 100%;
    pointer-events: none;
    background: linear-gradient(270deg, #222222 20%, rgba(34, 34, 34, 0) 100%);
}

.overflow-gradient.white {
    width: 40px;
    background: linear-gradient(270deg, #ffffff 10%, rgba(255, 255, 255, 0) 100%);
}

/* Pricing , plans */

.plus-plans-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 24px;
}

.plus-plans-grid > .plus-plan {
    grid-column: span 2;
}

.plus-plans-grid > .plus-plan.horizontal {
    grid-column: span 6;
}

.plus-plan {
    position: relative;
    display: block;
    width: 100%;
    padding: 28px 32px;
    background: #FFFFFF;
    border-radius: 24px;
    border: 1px solid #e0e0e0;
    box-shadow: 0px 4px 24px rgba(0, 0, 0, 0.04), 0px 36px 62px -40px rgba(0, 0, 0, 0.24);
    transition: all 0.3s ease;
}

.plus-plan:hover {
    transform: scale(1.02);
    border-color: #cdcdcd;
    box-shadow: 0px 6px 32px rgba(0, 0, 0, 0.06), 0px 46px 100px -60px rgba(0, 0, 0, 0.60);
}

.plus-plan.highlight {
    border: 1px solid #007BFF;
    box-shadow: 0px 4px 24px rgba(1, 118, 252, 0.1), 0px 36px 62px -40px rgba(1, 118, 252, 0.42);
}

.plus-plan.highlight:hover {
    box-shadow: 0px 6px 32px rgba(1, 118, 252, 0.2), 0px 46px 100px -60px rgba(1, 118, 252, 0.80);
}

.plus-plan.unlimited.highlight {
    border: 1px solid #8E00BF;
    box-shadow: 0px 4px 24px rgba(142, 0, 191, 0.1), 0px 36px 62px -40px rgba(142, 0, 191, 0.42);
}

.plus-plan.unlimited.highlight:hover {
    box-shadow: 0px 6px 32px rgba(142, 0, 191, 0.16), 0px 46px 100px -60px rgba(142, 0, 191, 0.60);
}

.plus-plan.horizontal {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: 24px;
}

.plus-plan.horizontal .price {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 280px;
}

.plus-plan.horizontal .limits-below-price {
    display: none;
}

.plus-plan .limits {
    display: flex;
    flex-direction: column;
    gap: 12px;
    font-size: 15px;
}

.plus-plan.horizontal .limits-below-heading .limits {
    display: grid;
    grid-template-columns: 1fr 1fr;
    row-gap: 12px;
    column-gap: 32px;
    font-size: 16px;
}

.plus-plan .price h2 {
    font-weight: 500;
    font-size: 38px;
    line-height: normal;
}

.plus-plan .badge.position-absolute {
    top: -12px;
}

.plus-plan:not(.horizontal) .badge.position-absolute {
    left: 50%;
    transform: translateX(-50%);
}

.ribbon {
  position: absolute;
  top: 24px;
  font-size: 14px;
  border-block: .5em solid #0000;
  padding-inline: 1em calc(var(--r) + 0.7em);
  line-height: normal;
  clip-path: polygon(100% 0,0 0,0 100%,100% 100%,100% calc(100% - .25em),calc(100% - var(--r)) 50%,100% .25em);
  background: radial-gradient(0.8em 80% at left, #00000047, #ffffff00) border-box;
  width: fit-content;
  --r: .8em; /* control the cutout */
}


/* Media queries */

@media (min-width: 576px) {
    .fs-sm-18 {
        font-size: 18px !important;
    }
}

@media (min-width: 768px) {

    .container-fluid.wide-padding {
        padding-left: 42px;
        padding-right: 42px;
    }

    .fs-md-16 {
        font-size: 16px !important;
    }

    .fs-md-18 {
        font-size: 18px !important;
    }

    .fs-md-20 {
        font-size: 20px !important;
    }

    .d-md-grid {
        display: grid !important;
    }
}

@media (min-width: 992px) {

    .line-middle-text.lg-vertical {
        flex-direction: column;
        width: auto;
        height: calc(100% - 42px);
    }

    .line-middle-text.lg-vertical .line {
        width: 1px;
        height: 100%;
    }

    .main-cta:not(.capture-cta) {
        padding: 30px 42px;
    }

    .fs-lg-20 {
        font-size: 20px !important;
    }
}

@media (max-width: 1200px) {
     img.mfp-img {
        max-height: calc(100vh - 35vh) !important;
    }

    .mfp-image-holder .mfp-content {
        max-width: calc(100% - 10px);
    }

    .mfp-arrow {
        transform: none !important;
        width: 100px;
        height: 100px;
        background: #121212 !important;
    }

    .mfp-arrow::after {
        transform: none;
        top: 34px;
    }

    .mfp-arrow.mfp-arrow-left::after {
        transform: scaleX(-1);
    }
}

@media (min-width: 992px) and (max-width: 1200px) {
    .you-exec-intro .intro-img-con img,
    .you-exec-intro .intro-img-con video {
       position: relative;
       width: 120%;
       left: -70px;
    }
}

@media (max-width: 1199.97px) {
    .plus-plans-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .plus-plans-grid > .plus-plan,
    .plus-plans-grid > .plus-plan.horizontal {
        grid-column: span 1;
    }

    .plus-plan.horizontal {
        display: block;
        margin-top: 0;
    }

    .plus-plan.horizontal .price {
        display: block;
        max-width: none;
    }

    .plus-plan.horizontal .limits-below-heading {
        display: none;
    }

    .plus-plan.horizontal .limits-below-price {
        display: block;
    }

    .plus-plan .badge.position-absolute {
        left: 50%;
        transform: translateX(-50%);
    }
}

@media (max-width: 991.97px) {

    h1,
    .h1 {
        font-size: 36px;
        line-height: 3rem;
    }

    h2,
    .h2 {
        font-size: 32px;
        line-height: 2.66rem;
    }

    .grid-container.grid-cols-3 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .you-exec-intro .intro-img-con video {
        max-width: 620px;
    }

    .main-cta:not(.d-grid) {
        max-width: 550px;
    }

    .main-cta p.fs-20 {
        font-size: 18px !important;
    }

    .plus-plan p.font-italic.text-secondary {
        font-size: 14px;
    }
}

@media (max-width: 767.97px) {

    h1,
    .h1 {
        font-size: 34px;
        line-height: 2.8rem;
    }

    h2,
    .h2 {
        font-size: 30px;
        line-height: 2.5rem;
    }

    h3,
    .h3 {
        font-size: 28px;
        line-height: 2.3rem;
    }

    h4,
    .h4 {
        font-size: 26px;
        line-height: 2.1rem;
    }

    h5,
    .h5 {
        font-size: 22px;
        line-height: 1.8rem;
    }

    h6,
    .h6 {
        font-size: 18px;
        line-height: 1.5rem;
    }

    .fs-17 {
        font-size: 16px !important;
    }

    .single-entry-card .fs-20 {
        font-size: 18px !important;
    }

    .table-mobile-overflow {
        overflow-x: auto;
        white-space: nowrap;
    }

    .you-exec-intro .list-style-none li>svg {
        min-width: 16px;
        width: 16px;
    }

    .share-buttons {
        grid-template-columns: repeat(2, 1fr);
    }

    .main-cta {
        padding: 24px;
    }

    .main-cta:not(.capture-cta) {
        max-width: 460px;
    }

    .main-cta:not(.capture-cta) {
        padding-top: 38px !important;
    }

    .main-cta.d-grid {
        grid-template-columns: auto !important;
    }

    .main-cta .abs-pill {
        left: 50%;
        transform: translateX(-50%);
    }

    .download-btn {
        font-size: 14px;
    }

    .download-btn img {
        width: auto;
        height: auto;
        max-height: 20px !important;
        max-width: 20px !important;
    }

    .plus-plans-grid {
        grid-template-columns: 1fr;
        justify-items: center;
        gap: 32px;
    }

    .plus-plans-grid > .plus-plan {
        width: 100%;
        max-width: 360px;
    }
}

@media (max-width: 575.97px) {

    h1,
    .h1 {
        font-size: 30px;
        line-height: 2.6rem;
    }

    h2,
    .h2 {
        font-size: 28px;
        line-height: 2.3rem;
    }

    h3,
    .h3 {
        font-size: 26px;
        line-height: 2.1rem;
    }

    h4,
    .h4 {
        font-size: 24px;
        line-height: 1.9rem;
    }

    h5,
    .h5 {
        font-size: 20px;
        line-height: 1.66rem;
    }

    .you-exec-intro .list-style-none li>img {
        width: 18px;
    }

    .you-exec-intro .list-style-none li>p {
        margin-top: -3px;
    }

    .fs-28 {
        font-size: 24px !important;
    }

    .page-title,
    .page-header .page-title {
        font-size: 26px;
    }

    .list-view-entry {
        flex-direction: column;
        align-items: flex-start;
    }

    .btn.dropdown-toggle img {
        width: 16px;
    }

    .grid-container,
    .grid-container.grid-cols-3 {
        grid-template-columns: 100%;
    }

    .grid-container.strict-2 {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }

    .download-btns-holder .downloadable-group-heading {
        grid-column: span 1;
    }

    .custom-control.bubbly .custom-control-label {
        padding: 6px 12px 6px 36px !important;
    }

    .custom-control.bubbly .custom-control-label::before,
    .custom-control.bubbly .custom-control-label::after {
        transform: translate(36px, 6px);
    }

    .main-cta p.fs-20 {
        font-size: 16px; !important;
        line-height: 1.66;
    }
}

@media (max-width: 450px) {

    .mini-btn-holder .form-control {
        padding: 10px 20px;
    }

    .mini-btn-holder .btn.mini {
        position: relative;
        padding: 10px 24px;
        margin: 16px auto 0;
        top: 0;
        right: auto;
        transform: none;
    }

    .mini-btn-holder:not(.filled_black) .btn.mini {
        background: white !important;
        color: #121212 !important;
    }
}

@media (max-width: 420px) {

    .share-buttons {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 400px) {

    .grid-container.strict-2 {
        gap: 12px;
    }

    img-container {
        border-radius: 6px;
    }

    .main-cta .abs-pill img {
        min-width: 26px;
        width: 26px;
    }
}

@media (max-width: 375px) {

    .plus-plan {
        padding: 24px 28px;
    }
}

@media (max-width: 350px) {

    .main-cta {
        padding: 24px 20px;
    }

    .step-index {
        min-width: 32px;
        min-height: 32px;
        width: 32px;
        height: 32px;
        font-size: 14px;
    }

    .step-index.large {
        min-width: 42px;
        min-height: 42px;
        width: 42px;
        height: 42px;
        font-size: 16px;
    }

    .download--btns-heading-icon,
    .download-btn img {
        display: none;
    }

    .download-btns-holder.capture .capture-cta p.fs-18 {
        font-size: 16px !important;
    }
}

@media (max-width: 320px) {

    .main-cta {
        padding: 24px 16px;
    }

    .you-exec-intro.section-padding {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    .plus-plans-grid > .plus-plan {
        width: 100%;
    }

    .plus-plan {
        padding: 24px;
    }
}



/*
  Internet Explorer specific CSS
*/

@media all and (-ms-high-contrast: none),
(-ms-high-contrast: active) {

    /* IE10+ CSS */

    .line-clamp-1,
    .line-clamp-2,
    .line-clamp-3,
    .line-clamp-4,
    .line-clamp-5 {
        display: block;
        overflow: hidden;
        position: relative;
        line-height: 1.5em;
        /* max-height: (number of lines) * (line-height) */
        max-height: 1.5em;
        text-align: justify;
        margin-right: -1em;
        padding-right: 1em;
    }

    .line-clamp-2 {
        max-height: 3em;
    }

    .line-clamp-3 {
        max-height: 4.5em;
    }

    .line-clamp-4 {
        max-height: 6em;
    }

    .line-clamp-5 {
        max-height: 7.5em;
    }

    .line-clamp-1:before,
    .line-clamp-2:before,
    .line-clamp-3:before,
    .line-clamp-4:before,
    .line-clamp-5:before {
        content: '...';
        position: absolute;
        right: 0;
        bottom: 0;
    }
}