html, body {
    background-color: #f1f5ff;
}

a {
    color: #4B7EED;
}

a:hover {
    color: #4B7EED;
}

.connect-telegram-tutorial {
    background-color: #f2f5ff;
    padding: 15px;
    border-radius: 10px;
    margin-top: 10px;
}

.tool-button {
    position: relative;
    background: #4B7EED;
    border-radius: 10px;
    box-shadow: 0 0 15px -3px rgb(0 0 0 / 11%);
    margin-bottom: 15px;
    transition: 0.2s;
}

.tool-button-body {
    padding: 18px 20px;
}

.tool-button.inactive {
    background: #bdbfc4;
    box-shadow: none;
}

.tool-button.inactive:hover, .tool-button.inactive p:hover, .tool-button.inactive a:hover {
    cursor: no-drop;
}

.tool-button.inactive:hover i {
    transform: scale(1);
}

.tool-button a:hover {
    text-decoration: none;
}

.tool-button i {
    transition: 0.2s;
}

.tool-button:hover i {
    transform: scale(1.3);
}

.tool-button:hover {
    cursor: pointer;
    text-decoration: none;
}

.tool-button i {
    position: absolute;
    color: white;
    font-size: 30px;
    right: 23px;
    bottom: 27px;
}

.tool-button p:first-of-type {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    color: white;
}

.tool-button p:last-of-type {
    margin-top: 2px;
    margin-bottom: 0;
    font-size: 14px;
    color: #ffffffc9;
}

.table > thead > tr > th {
    background-color: rgb(74, 125, 235);
    color: rgb(255, 255, 255);
    font-size: 14px;
    font-family: 'Instrument Sans Regular', serif;
}

.table-borderless tbody+tbody, .table-borderless td, .table-borderless th, .table-borderless thead th {
    font-size: 14px;
}

.table-responsive>.table-bordered {
    margin: 0;
}

.table-responsive.table-borderless.tableFixHead {
    border-radius: 10px;
}

.nav-tabs {
    border-bottom: 1px solid #4b7eed30;
}

.nav.nav-tabs .nav-item {
    padding: 0;
}

.nav.nav-tabs .nav-item .nav-link.active {
    border-bottom: 1px solid #4B7EED;
}

.skeleton {
    display: inline-block;
    width: 145px;
    height: 25px;
    padding-top: 31px;
    border-radius: 4px;
    background: linear-gradient(90deg, #f0f0f0, #e2e5e7, #f0f0f0);
    background-size: 200% 100%;
    animation: skeleton-loading 1.5s infinite;
}

@keyframes skeleton-loading {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}

section.highlight {
    background-color: #ffffff;
    /*border-top: 2px solid #24222217;*/
    border-radius: 15px 15px 0px 0px;
}

section {
    padding-top: 50px;
    padding-bottom: 50px;
}

.form-group.frame {
    background-color: #efefef;
    padding: 10px 10px;
    border-radius: 10px;
}

h1 {
    color: #434343;
}

h2 {
    font-family: "Instrument Sans SemiBold";
    font-size: 25px;
    padding-bottom: 7px;
    color: rgb(65, 65, 65);
}

h3 {
    font-family: "Instrument Sans SemiBold";
    font-size: 20px;
    color: rgb(65, 65, 65);
}

b, strong {
    font-family: "Instrument Sans SemiBold" !important;
    font-weight: normal !important;
}

label {
    font-family: 'Instrument Sans Regular';
}

span {
    font-family: "Instrument Sans Regular";
}

.vw-h2 {
    font-family: "Inter Medium";
}

.live-dot {
    position: relative;
    height: 9px;
    width: 9px;
    border-radius: 50%;
    background: #06D6A0;
}

.live-dot:after,
.live-dot:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 9px;
    width: 9px;
    border-radius: 50%;
    background: #06D6A0;
    display: block;
}

.live-dot:after {
    animation: pulse-dot 2s ease infinite;
}

.live-dot:before {
    animation: pulse-dot2 2s ease infinite;
}

@keyframes pulse-dot {
    0% {
        opacity: 1;
        transform: scale(1);
    }
    80% {
        opacity: 0;
        transform: scale(2.5);
    }
    100% {
        opacity: 0;
        transform: scale(3);
    }
}

@keyframes pulse-dot2 {
    0% {
        opacity: 1;
        transform: scale(1);
    }
    30% {
        opacity: 1;
        transform: scale(1);
    }
    100% {
        opacity: 0;
        transform: scale(2.5);
    }
}


.vw-background {
    background-color: white;
    padding: 20px;
    border-radius: 15px;
    border: 1px solid #f6f6f6;
}

.vw-dashboard-card {
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    min-width: 0;
    word-wrap: break-word;
    background-color: #fff;
    background-clip: border-box;
    border: none;
    border-radius: 20px;
    box-shadow: 0px 0px 9px -3px rgba(0, 0, 0, 0.06);
}

.vw-dashboard-card > .card-body > .row > div > p:first-of-type, .vw-dashboard-card > .card-body > .d-flex > p:first-of-type {
    font-size: 15px;
    font-family: "Instrument Sans Medium";
    margin-bottom: 2px;
    color: rgba(67, 67, 67, 0.6);
}

.vw-dashboard-card > .card-body > .row > div > p:nth-of-type(2) {
    font-size: 25px;
    font-family: "Instrument Sans Bold";
    margin-bottom: 2px;
    color: #434343;
}

.vw-dashboard-card > .card-body > .row > div > i {
    font-size: 40px;
    color: rgba(0, 0, 0, 0.22);
    transition: transform 0.2s;
}

.vw-dashboard-card:hover > .card-body > .row > div > i {
    transform: rotate(-5deg) scale(1.1);
}

.vw-dashboard-card > .card-body > h2 {
    font-size: 22px;
    font-family: "Inter Medium";
}

.vw-dashboard-card-big {
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    min-width: 0;
    word-wrap: break-word;
    background-color: #fff;
    background-clip: border-box;
    border: none;
    border-radius: 20px;
    box-shadow: 0px 0px 9px -3px rgba(0, 0, 0, 0.06);
}

.vw-dashboard-card-big > .card-body > p:first-of-type, .vw-dashboard-card-big > .card-body > .d-flex > p:first-of-type, .vw-dashboard-card-big > .card-body > p:first-of-type, .vw-dashboard-card-big > .card-body > .text-center > p:first-of-type {
    font-size: 22px;
    font-family: "Instrument Sans SemiBold";
    margin-bottom: 2px;
    color: #434343;
}

.shadow-strong {
    box-shadow: 0px 0px 17px -9px rgb(0 0 0 / 33%);
}

.profile-avatar {
    border-radius: 100%;
}

.vw-dashboard-setup-wizard {
    background-color: #F9F9F9;
    border: 1px solid #ECECEC;
    padding: 16px;
    border-radius: 15px;
}

.vw-dashboard-setup-wizard > p:first-of-type {
    font-size: 16px;
    font-family: "Instrument Sans SemiBold";
    margin-bottom: 16px;
    color: #434343;
}

.vw-mini-button {
    background: linear-gradient(360deg, #1a46b782 -17.11%, transparent) #3168f8 281%;
    font-family: 'Instrument Sans SemiBold';
    color: white;
    padding: 8px 10px;
    font-size: 12px;
    border-radius: 12px;
}

.cursor-pointer {
    cursor: pointer;
}

span .vw-status-point-green {
    color: #65ED72;
}

span .vw-status-point-red {
    color: #db3f3f;
}

.fancy-underline {
    position:relative;
    display:inline-block;
    color: #3168f8;
}

.fancy-underline:after {
    content:'';
    position:absolute;
    top:100%;
    left:0;
    width:25%;
    border-bottom: 3px solid #3168f8;
}

.vw-dashboard-tool, .vw-dashboard-tool:hover {
    background: linear-gradient(360deg, #1A46B7 -17.11%, transparent) #3168f8 281%;
    padding: 12px 7px;
    border-radius: 11px;
    color: white;
    font-size: 14px;
    text-align: center;
    transition: 0.2s;
}

.vw-dashboard-tool:hover {
    transform: scale(0.95);
}

.vw-dashboard-tool > a, .vw-dashboard-tool > a:hover {
    text-decoration: none;
    color: white;
}

.vw-dashboard-alert {
    background-color: #94ecb9;
    border: 1px solid #3ca9552e;
    font-family: "Inter Light";
    border-radius: 10px;
    padding: 13px;
    color: #1b5126;
}

.telegram-group-card p {
    font-size: 18px;
    font-family: 'Instrument Sans SemiBold', serif;
}

.btn-primary:not(:disabled):not(.disabled).active:focus, .btn-primary:not(:disabled):not(.disabled):active:focus, .show>.btn-primary.dropdown-toggle:focus {
    box-shadow: none;
}

.btn-primary.focus, .btn-primary:focus {
    box-shadow: none;
}

.btn.btn-primary, .btn.btn-primary:focus, .btn.btn-primary:active {
    background: linear-gradient(360deg, #3157aa -17.11%, transparent) #4B7EED 281%;
    border: none;
    display: block;
    outline: none;
    border-radius: 10px;
    padding: 11px 33px;
    color: rgb(255, 255, 255) !important;
    margin-top: 13px;
    transition: 0.3s;
    cursor: pointer;
    font-family: "Instrument Sans Regular";
    width: 100%;
    text-align: center;
    user-select: none;
    font-size: 15px;
}

.btn.btn-danger, .btn.btn-danger:focus, .btn.btn-danger:active {
    background: linear-gradient(360deg, #c52323 -17.11%, transparent) #f15050 281%;
    border: none;
    display: block;
    outline: none;
    border-radius: 10px;
    padding: 11px 33px;
    color: rgb(255, 255, 255) !important;
    margin-top: 13px;
    transition: 0.3s;
    cursor: pointer;
    font-family: "Instrument Sans Regular";
    width: 100%;
    text-align: center;
    user-select: none;
    font-size: 15px;
}

.btn.btn-danger:hover {
    background-color: #c52323;
}

.btn-danger:not(:disabled):not(.disabled).active, .btn-danger:not(:disabled):not(.disabled):active, .show>.btn-danger.dropdown-toggle {
    background-color: #c52323;
    text-decoration: none;
}

.btn-danger.focus, .btn-danger:focus {
    box-shadow: none !important;
}

.btn.btn-primary:hover {
    background-color: #4170d7;
    text-decoration: none;
}

.btn-primary:not(:disabled):not(.disabled).active, .btn-primary:not(:disabled):not(.disabled):active, .show>.btn-primary.dropdown-toggle {
    background-color: #4170d7;
    text-decoration: none;
}

.btn.btn-primary.pulse-shadow:not(:disabled):not(.disabled).active:focus, .btn.btn-primary.pulse-shadow:not(:disabled):not(.disabled):active:focus, .show > .btn.btn-primary.pulse-shadow.dropdown-toggle:focus, .btn.btn-primary.pulse-shadow {
    animation: pulse-shadow 1.55s infinite cubic-bezier(0.51, 1.06, 0.94, 1.32);
    box-shadow: 0 0 0 0 rgb(42, 84, 226);
}

.grid {
    position: absolute;
    inset: 0;
    height: 100%;
    width: 100%;
    background-image: linear-gradient(to right, #80808012 1px, transparent 1px),
    linear-gradient(to bottom, #80808012 1px, transparent 1px);
    background-size: 24px 24px;
    opacity: 0.5;
}

.grid.mask {
    -webkit-mask-image: radial-gradient(ellipse 70% 80% at 50% 50%, #000 60%, transparent 100%);
    mask-image: radial-gradient(ellipse 70% 80% at 50% 50%, #000 60%, transparent 100%);
}

.grid.mask.lp {
    -webkit-mask-image: radial-gradient(ellipse 45% 46% at 49% 42%, #000 60%, transparent 100%);
    mask-image: radial-gradient(ellipse 45% 46% at 49% 42%, #000 60%, transparent 100%);
}

@media all and (max-width: 959px) {
    .dashboard-heading-element {
        position: relative;
        text-align: center;
    }
    .dashboard-heading-element > h1 {
        font-family: 'Instrument Sans SemiBold';
        font-size: 25px;
        color: #434343;
        margin-bottom: 4px;
    }

    .dashboard-heading-element > p {
        font-family: 'Instrument Sans Regular';
        font-size: 16px;
        color: #434343;
    }
    .dashboard-heading-element > a {
        font-size: 13px;
    }
}

p {
    font-family: 'Instrument Sans Regular';
}

@media all and (min-width: 959px) {
    .dashboard-heading-element {
        position: relative;
        text-align: left;
    }
    .dashboard-heading-element > h1 {
        font-family: 'Instrument Sans SemiBold';
        font-size: 30px;
        color: #434343;
        margin-bottom: 4px;
    }

    .dashboard-heading-element > p {
        font-family: 'Instrument Sans Regular';
        font-size: 18px;
        color: #434343;
    }
}

@keyframes pulse-shadow {
    to {
        box-shadow: 0 0 0 16px rgba(232, 76, 61, 0);
    }
}

.form-control:focus {
    border-color: #4b7eed;
    box-shadow: none;
}

.form-control:disabled,.form-control[readonly] {
    background-color: #f6f9ff;
    opacity: 1
}

.vw-dashboard-select:active, .vw-dashboard-select:focus {
    box-shadow: none;
    border: 1px solid #0000004d;
}

.products-recommendations > .row > .col-md-6 > .product-spotlight {
    border: 2px solid #4e76dda1;
    background-color: #4e76dd2e;
    border-radius: 15px;
}

.products-recommendations > .row > .col-md-6 > .product-spotlight > .product-container {
    padding: 20px;
    cursor: pointer;
    transition: 0.2s;
}

.products-recommendations > .row > .col-md-6 > .product-spotlight > .product-container > h1:first-of-type {
    font-size: 18px;
    font-family: 'Instrument Sans SemiBold';
    text-align: center;
    color: #2c4891;
    margin-top: 5px;
    margin-bottom: 0;
    transition: 0.2s;
}

.products-recommendations > .row > .col-md-6 > .product-spotlight:hover > .product-container {
    transform: scale(0.95);
}

.products-recommendations > .row > .col-md-6 > .product-link {
    margin-bottom: 10px;
    background-color: #4e76dd2e;
    padding: 4px 8px;
    border-radius: 7px;
    color: #2c4891;
    border: 2px solid #4e76dda1;
}

.integration-list-item {
    background-color: #4c7cf821;
    border: 1px solid #3a66d730;
    color: #1c214fb0;
    font-family: 'Instrument Sans Medium';
    padding: 10px 19px;
    border-radius: 10px;
}

.integration-list-item > * > * > i {
    cursor: pointer;
}

.integration-notadd-card {
    background-color: #820f0f21;
    border: 1px solid #9c212130;
    color: #4f1c1cb0;
    font-family: 'Instrument Sans Medium';
    padding: 50px 19px;
    border-radius: 10px;
    text-align: center;
    cursor: no-drop;
}

/*
 * Responsive
 */
@media all and (max-width: 959px) {
    .desktopContent {
        display: block !important;
    }
}

@media all and (max-width: 999px) {
    .desktopContent {
        display: none !important;
    }
}

@media all and (min-width: 959px) {
    .mobileContent {
        display: block !important;
    }
}

@media all and (min-width: 999px) {
    .mobileContent {
        display: none !important;
    }
}

.card-row > h1 {
    font-size: 22px;
    font-family: 'Instrument Sans Bold';
    color: #434343;
}

.card-row > hr {
    margin-top: 8px;
    margin-bottom: 25px;
}

.card-row > .background-container {
    border-radius: 20px;
}

.card.hover-shrink {
    transition: all 0.2s ease;
}

.card.hover-shrink:hover {
    transform: scale(0.96);
}

.card.course {
    border-radius: 20px;
    box-shadow: 0px 0px 9px -3px rgb(0 0 0 / 25%);
    border: 0px solid #d6dbe95c;
}

.card.course > .card-body > h1:first-of-type {
    font-size: 19px;
    text-align: center;
    margin-bottom: 20px;
}

.card.course > .card-body > img {
    width: 135px;
    margin-top: -10px;
}

.card.course.locked > .card-body > img {
    filter: brightness(0.8) saturate(0) blur(1.3px);
}

.icon-btn {
    transition: 0.2s;
}

.icon-btn:hover {
    transform: scale(1.1);
    cursor: pointer;
    color: #4E76DD;
}

body.modal-open {
    overflow: inherit;
    padding-right: 0 !important;
}

.modal-content {
    border-radius: 12px;
    padding: 8px;
}

h5 {
    font-family: 'Instrument Sans Medium';
    color: #434343;
}

img {
    user-drag: none;
    user-select: none;
    pointer-events: none;
}

button .raw-btn, input[type="submit"] .raw-btn, input[type="reset"] .raw-btn {
    background: none;
    color: inherit;
    border: none;
    padding: 0;
    font: inherit;
    cursor: pointer;
    outline: inherit;
}

.online-badge {
    background-color: #45cb75b8;
    padding: 5px 10px;
    color: white;
    font-size: 12px;
    border-radius: 7px;
}

.offline-badge {
    background-color: #cb4545a3;
    padding: 5px 10px;
    color: white;
    font-size: 12px;
    border-radius: 7px;
}

.card {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 0 10px -5px rgba(0, 0, 0, 0.18);
    border: none;
}

.card .progress {
    background-color: rgb(248 248 248);
    height: 5px;
    border-radius: 10px 10px 0 0;
}

.card .progress-bar {
    background-color: #4B7EED;
}

.card-header {
    margin-bottom: 0;
    background-color: rgb(248 248 248);
    border-bottom: none;
}

.card-header > p:first-of-type {
    font-size: 22px;
    font-family: "Instrument Sans SemiBold";
    margin-bottom: 0;
    color: #434343;
}

.card-header:first-child {
    border-radius: 10px 10px 0 0;
}

.card-body {
    padding: 25px 30px 25px 30px;
}

.card > p:first-of-type {
    font-size: 22px;
    font-family: "Instrument Sans SemiBold";
    margin-bottom: 2px;
    color: #434343;
}

.login-form {
    background-color: white;
    padding: 25px 30px 25px 30px;
    margin: 0 auto;
    border-radius: 10px;
    box-shadow: 0 0 10px -5px rgba(0, 0, 0, 0.18);
}

.login-form > p:first-of-type {
    font-size: 22px;
    font-family: "Instrument Sans SemiBold";
    margin-bottom: 2px;
    color: #434343;
}

.custom-checkbox .custom-control-input:checked ~ .custom-control-label::before {
    background-color: #4B7EED;
    box-shadow: none;
}

.custom-checkbox .custom-control-input ~ .custom-control-label::before {
    box-shadow: none;
}

.alert-success {
    color: #257036;
    background-color: #c3ffd2;
    border-color: #c3e6cb;
    font-family: "Instrument Sans Regular";
}

.alert-info {
    color: #565656;
    background-color: #ffffff;
    border-color: #ffeeba;
}

.alert {
    position: relative;
    padding: .75rem 1.25rem;
    margin-bottom: 1rem;
    border: 1px solid transparent;
    border-radius: 10px;
}

.alert i {
    margin-right: 5px;
}

.accordion {
    border: 0;
}

.accordion > .card {
    border-radius: 8px;
    border: 0;
    border-radius: 8px;
}

.accordion > .card > button, .accordion > .card > button:focus {
    text-align: left;
    background-color: #cb4545a3;
    border: 0;
    color: white;
    font-family: "Instrument Sans Regular";
    text-decoration: none;
}

.badge-o {
    border: 1px solid #cbcbcb;
    border-radius: 9px;
    padding: 3px 11px;
    font-size: 13px;
}

.social-button-icon {
    background: #3168f8;
    border-radius: 9px;
    padding: 7px 12px;
    margin-right: 10px;
    display: inline-block;
    text-align: center;
    transition: 0.2s;
}

.social-button-icon:hover {
    opacity: 0.7;
    cursor: pointer;
}

.social-button-icon > i {
    color: #ffffff;
}

.social-button-icon:last-child {
    margin-right: 0;
}

.card.card-stats {
    background: #4b7eed;
    border-radius: 10px;
}

.card.card-stats > .card-body > a:hover {
    text-decoration: none !important;
}

.card.card-stats i {
    color: #FFF;
    font-size: 34px;
    transition: transform 0.6s;
}

.card.card-stats:hover i {
    transform: scale(1.08);
}

.card.card-stats p:first-of-type {
    color: rgba(255,255,255,0.91);
    font-family: "Instrument Sans Regular";
    font-weight: 200;
    font-size: 14px;
    text-transform: initial;
    margin-bottom: -3px;
}

.card.card-stats p:last-of-type {
    color: rgb(255,255,255);
    font-family: "Instrument Sans Regular";
    font-weight: 400;
    font-size: 23px;
    margin-bottom: 0px;
}

.card.guide {
    box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.1);
    border-radius: 15px;
    border: 0;
    text-align: center;
    transition: transform .3s ease;
}

.card.guide a:hover {
    text-decoration: none;
}

.card.guide > * > .card-header {
    border-radius: 15px 15px 0 0;
    background-color: #3168f82b;
    object-fit: cover;
    height: 120px;
    border: 0px;
    position: relative;
    overflow: hidden;
}

.card.guide > * > .card-header > i {
    position: absolute;
    font-size: 92px;
    top: 15px;
    left: 0;
    right: 0px;
    bottom: 0;
    color: #bfd0ff;
}

.card.guide > * > .card-body > h3 {
    color: #3168f8c7;
    font-size: 20px;
    font-family: 'Instrument Sans Medium';
}

.card.guide > * > .card-body > p {
    color: #444444;
    font-size: 13px;
    margin-bottom: 0px;
}

.card.guide:hover {
    transform: scale(0.97);
}

.card.guide h1 {
    font-size: 18px;
    color: #444444;
    color: #444444;
    font-family: "Instrument Sans Regular";
    font-weight: 700;
}

.nav.nav-tabs .nav-item > .nav-link.active, .nav.nav-tabs .nav-item > .nav-link.active:hover {
    background: #4B7EED;
    border: 0;
    color: white;
    border-radius: 10px 10px 0 0;
    border-bottom: 1px solid #4B7EED;
}

.nav.nav-tabs .nav-item > .nav-link {
    color: #3168f8;
}

.nav.nav-tabs .nav-item > .nav-link:hover {
    color: #3168f8;
    border-radius: 10px 10px 0px 0px;
    border: 1px solid #3168f82b;
}

.lp-header {
    position: relative;
    width: 100%;
    max-width: 1200px;
    padding: 0 14%;
    box-sizing: border-box;
    margin: 0 auto 50px;
}

.lp-header .badge {
    background-color: #295ce10f;
    font-size: 12px;
    font-family: 'Instrument Sans Regular', serif;
    color: #295ce166;
    padding: 6px 14px;
    border-radius: 30px;
    border: 2px solid #295ce11a;
    text-align: center;
    margin-bottom: 10px;
}

.lp-header .badge i {
    padding-right: 8px;
}

.lp-header h1 {
    text-align: center;
    font-family: 'Instrument Sans Bold', serif;
    font-size: 45px;
    color: #434343;
    margin-bottom: 15px;
}

.lp-header h1 > span {
    font-family: 'Instrument Sans Bold', serif;
    color: #295CE1;
}

.lp-header p {
    text-align: center;
    font-family: 'Instrument Sans Medium', serif;
    font-size: 18px;
    color: #0000008c;
    margin-bottom: 25px;
}

h1 {
    font-family: 'Instrument Sans SemiBold', serif;
    padding: 6px 0;
}

.lp-heading {
    font-family: "Instrument Sans Bold", serif;
    font-size: 45px;
    color: #434343;
}

.lp-heading.small {
    font-size: 25px;
}

.lp-heading span {
    font-family: 'Instrument Sans Bold', serif;
    color: #295CE1;
}

.lp-icon-list p {
    font-size: 18px;
    font-family: 'Instrument Sans Medium';
    margin-bottom: 10px;
}

.lp-icon-list p i {
    color: #295CE1;
    padding-right: 12px;
    font-size: 20px;
}

@media all and (max-width: 959px) {
    .lp-heading {
        font-size: 35px;
    }

    .lp-header {
        padding: 0 6%;
    }

    .lp-header .badge {
        font-size: 10px;
    }

    .lp-header h1 {
        font-size: 35px;
    }

    .lp-header p {
        font-size: 15px;
    }

    h1 {
        font-size: 30px;
    }

    .text-center-mobile {
        text-align: center;
    }
}

.lp-btn-primary {
    background: linear-gradient(360deg, #1A46B7 -17.11%, transparent) #3168f8 281%;
    border: none;
    display: block;
    outline: none;
    border-radius: 15px;
    padding: 12px 55px;
    color: rgb(255, 255, 255) !important;
    transition: 0.3s;
    cursor: pointer;
    font-family: "Instrument Sans Regular", serif;
    text-align: center;
    user-select: none;
    font-size: 16px;
    text-decoration: none;
}

.lp-btn-primary:hover {
    text-decoration: none;
}

.card-btn {
    background-color: #ffff;
    padding: 25px 20px;
    box-shadow: 0px 0px 9px -3px rgba(0, 0, 0, 0.1);
    border-radius: 15px;
    overflow: hidden;
    max-width: 400px;
    transition: 0.2s;
    cursor: pointer;
    text-decoration: none;
}

.card-btn:hover {
    transform: scale(1.05);
    text-decoration: none;
    /*outline: 5px solid #295ce185;*/
}

.card-btn .pulse-rotate-animation,.scroll-animation,.opacity-animation {
    transition: 0.2s;
}

.lp-design-card .pulse-rotate-animation,.scroll-animation,.opacity-animation {
    transition: 0.2s;
}

.card-btn:hover .pulse-rotate-animation {
    transform: scale(1.03) rotate(-3deg);
}

.card-btn:hover .shrink-animation {
    transform: scale(0.92);
}

.card-btn:hover .opacity-animation {
    opacity: 0.5;
}

.card-btn:hover .scroll-animation.left {
    transform: translateX(15px);
}

.card-btn:hover .scroll-animation.right {
    transform: translateX(-15px);
}

.card-btn .rotate {
    transform: rotate(352deg)
}

.card-btn p {
    font-family: 'Instrument Sans Medium', serif;
    color: #00000080;
    font-size: 12px;
    text-align: center;
    margin-bottom: 0px;
}

.card-btn h1 {
    font-family: 'Instrument Sans SemiBold', serif;
    color: #434343;
    font-size: 25px;
    text-align: center;
    margin-bottom: 0px;
}

.carousel-indicators li {
    width: 10px;
    height: 10px;
    border-radius: 100%;
}

.carousel-indicators li {
    background-color: #295ce196;
}

.carousel-indicators .active {
    background-color: #295CE1;
}

li {
    font-family: 'Instrument Sans Regular', serif;
}

.intro-card {
    position: relative;
    background-color: #FFFFFF;
    border-radius: 15px;
    padding: 35px 30px 25px 30px;
    box-shadow: 0px 0px 9px -3px rgba(0, 0, 0, 0.1);
}

.intro-card p {
    margin: 0;
}

.intro-card ul {
    padding: 20px 0;
    list-style: none;
    margin: 0;
}

.intro-card i {
    color: #295CE1;
    padding-right: 7px;
}

.intro-card .bar {
    position: absolute;
    top: 0;
    left: 0;
    color: #fff;
    background-color: #666B77;
    width: 100%;
    padding: 8px 30px;
    border-radius: 15px 15px 0 0;
    font-family: 'Instrument Sans Regular', serif;
    font-size: 12px;
}

.metadata-card {
    position: relative;
    background-color: #FFFFFF;
    border-radius: 15px;
    padding: 14px 19px 14px 19px;
    box-shadow: 0 0 9px -3px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

.metadata-card h3 {
    font-family: 'Instrument Sans SemiBold', serif;
    font-size: 16px;
    padding-bottom: 7px;
}

.metadata-card p {
    font-size: 14px;
    margin: 6px 0;
}

.metadata-card ul {
    padding: 0;
    list-style: none;
    font-size: 14px;
    margin: 5px 0;
}

.metadata-card ul > li i {
    padding-right: 5px;
    color: rgb(65, 65, 65);
}

.fa.fa-star {
    color: #d9c13e;
}

.fa.fa-gift {
    color: #c02929;
}

fa.fa-diamond {
    color: #295CE1;
}

.lp-card {
    position: relative;
    background-color: #FFFFFF;
    border-radius: 15px;
    padding: 20px 25px 20px 25px;
    box-shadow: 0px 0px 9px -3px rgba(0, 0, 0, 0.1);
}

.lp-card h2 {
    font-size: 19px;
}

.contrast-background {
    background-color: #EDF2FF;
    border-radius: 15px;
    border: 2px solid rgb(42 94 228 / 4%);
}

.lp-design-card {
    position: relative;
    background-color: #FFFFFF;
    border-radius: 15px;
    padding: 20px 25px 20px 25px;
    box-shadow: 0px 0px 9px -3px rgba(0, 0, 0, 0.1);
    height: 250px;
    overflow: hidden;
}

.lp-design-card h2 span {
    font-family: 'Instrument Sans Bold', serif;
    color: #295CE1;
}

.custom-file {
    margin-bottom: 1rem;
}

.tag-list {
    max-width: 90vw;
    display: flex;
    flex-shrink: 0;
    flex-direction: column;
    gap: 1rem 0;
    position: relative;
    padding: 1.5rem 0;
    overflow: hidden;
}

.loop-slider .inner {
    display: flex;
    width: fit-content;
    animation-name: loop;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    animation-direction: var(--direction);
    animation-duration: var(--duration);
}

.tag {
    display: flex;
    align-items: center;
    gap: 0 0.2rem;
    color: #e2e8f0;
    font-size: 0.9rem;
    background-color: #334155;
    border-radius: 0.4rem;
    padding: 0.7rem 1rem;
    margin-right: 1rem; // Must used margin-right instead of gap for the loop to be smooth
    box-shadow:
    0 0.1rem 0.2rem rgb(0 0 0 / 20%),
    0 0.1rem 0.5rem rgb(0 0 0 / 30%),
    0 0.2rem 1.5rem rgb(0 0 0 / 40%);
}

.tag span {
    font-size: 1.2rem;
    color: #64748b;
}

.faded {
    pointer-events: none;
    background: linear-gradient(90deg, #F6F8FC, transparent 22%, transparent 70%, #F6F8FC);
    position: absolute;
    inset: 0;
}

@keyframes loop {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}