:root {
    --primary-color: {{ setting_values.primary_color }};
    --secondary-color: {{ setting_values.secondary_color }};
    --background-color: {{ setting_values.background_color }};
}

html
{
    height: 100%;
}

@font-face {
    font-family: 'Poppins-Regular';
    src: url('fonts/Poppins-Regular.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'Poppins';
    src: url('fonts/Poppins-SemiBold.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'Mont';
    src: url('fonts/Mont-HeavyDEMO.otf') format('truetype');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'TBF';
    src: url('fonts/TBF.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'catread';
    src: url('fonts/Catread.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'molot';
    src: url('fonts/Molot.otf') format('truetype');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'chernobyl';
    src: url('fonts/Chernobyl.otf') format('truetype');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'harry';
    src: url('fonts/HARRY.TTF') format('truetype');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'sandler';
    src: url('fonts/Sandler.otf') format('truetype');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'ncl';
    src: url('fonts/NCL.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
}

.mont-font
{
    font-family: 'Mont', sans-serif !important;
}

.poppins-font
{
    font-family: 'Poppins', sans-serif !important;
}

.tbf-font
{
    font-family: 'TBF', sans-serif !important;
}

.catread-font
{
    font-family: 'catread', sans-serif !important;
}

.chernobyl-font
{
    font-family: 'chernobyl', sans-serif !important;
}

.harry-font
{
    font-family: 'harry', sans-serif !important;
}

.ncl-font
{
    font-family: 'ncl', sans-serif !important;
}

.sandler-font
{
    font-family: 'sandler', sans-serif !important;
}

.molot-font
{
    font-family: 'molot', sans-serif !important;
}

.arial-font
{
    font-family: Arial, sans-serif !important;
}

label, p
{
    font-family: 'Poppins-Regular', sans-serif !important;
}

body
{
    background-color: #313131 !important;
    color: #fff !important;
    font-family: 'Poppins', sans-serif !important;
    transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out;
    min-height: 100%; /* Ensure the body covers the full viewport height */
    display: flex;
    flex-direction: column;
    margin: 0;
    scroll-behavior: smooth;
}

.navbar-nav .nav-link {
    border-radius: 5px;
    padding: 5px;
}

.navbar-nav .nav-link:hover {
    color: #fff;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 5px;
}

.bg-main
{
    background-color: #414141 !important;
}

.loader {
    display: none;
    border: 6px solid #afadad;
    border-top: 6px solid var(--primary-color);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 2s linear infinite;
    margin: 0 auto;
}

textarea,
input[type="text"],
input[type="password"],
input[type="datetime"],
input[type="datetime-local"],
input[type="date"],
input[type="month"],
input[type="time"],
input[type="week"],
input[type="number"],
input[type="email"],
input[type="url"],
input[type="search"],
input[type="tel"],
input[type="color"],
.uneditable-input {
    border-top: none !important;
    border-left: none !important;
    border-right: none !important;
    border-bottom: 2px solid var(--primary-color); /* Bottom line border */
    background-color: transparent !important; /* Transparent background */
    outline: none !important;
    box-shadow: none !important;
    caret-color: var(--primary-color) !important; /* Color of the caret */
}

/* Apply styles when focused */
textarea:focus,
input[type="text"]:focus,
input[type="password"]:focus,
input[type="datetime"]:focus,
input[type="datetime-local"]:focus,
input[type="date"]:focus,
input[type="month"]:focus,
input[type="time"]:focus,
input[type="week"]:focus,
input[type="number"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="search"]:focus,
input[type="tel"]:focus,
input[type="color"]:focus,
.uneditable-input:focus {
    background-color: transparent !important; /* Transparent background */
}

.input-group-text {
    border: none !important;
    border-bottom: 2px solid var(--primary-color) !important; /* Bottom line border */
    background-color: transparent !important; /* Transparent background */
    outline: none !important;
    box-shadow: none !important;
    color: var(--primary-color) !important; /* Color of the caret */
}

.form-select {
    background-color: #ffffff00 !important;
    border: none !important;
    border-bottom: 2px solid var(--primary-color) !important;
}

select option {
    background: #414141 !important;
    color: #fff !important;
    }

.form-control
{
    border: none !important;
    border-bottom: 2px solid var(--primary-color) !important;
}

.form-control:focus
{
    box-shadow: 0 5px 10px -6px var(--primary-color) !important; /* Primary color box shadow */
}

.input-group:focus
{
    box-shadow: 0 0 3px var(--primary-color) !important; /* Primary color box shadow */
}

/* White placeholder text */
textarea::placeholder,
input[type="text"]::placeholder,
input[type="password"]::placeholder,
input[type="datetime"]::placeholder,
input[type="datetime-local"]::placeholder,
input[type="date"]::placeholder,
input[type="month"]::placeholder,
input[type="time"]::placeholder,
input[type="week"]::placeholder,
input[type="number"]::placeholder,
input[type="email"]::placeholder,
input[type="url"]::placeholder,
input[type="search"]::placeholder,
input[type="tel"]::placeholder,
input[type="color"]::placeholder,
.uneditable-input::placeholder {
    color: rgb(218, 218, 218); /* Light placeholder text */
}

input:-webkit-autofill,
input:-webkit-autofill:focus {
  transition: background-color 0s 600000s, color 0s 600000s !important;
}

.form-select:focus
{
    border-color: var(--primary-color) !important;
    outline: 0;
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset, 0 0 8px var(--primary-color) !important;
}

.search_input:focus
{
    border: none !important;
    border-color: none !important;
    box-shadow: none !important;
}

.search_input::placeholder
{
    color: rgb(92, 92, 92) !important;
}

.search_input
{
    color: rgb(92, 92, 92) !important;
    border: none !important;
    border-radius: 28px !important;
    background-color: #1c1c1c00 !important;
    padding: 15px !important;
}

/* Keyframes animation for the loading spinner */
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}


.blob-c {
    z-index: -2;
        min-height: 54vh;
        overflow: hidden;
        position:absolute;
        width: 66%;
        filter: blur(52px);
}

.shape-blob {
        background:var(--primary-color);
        height: 60px;
        width: 80px;
        border-radius: 40% 50% 30% 40%;
        animation:
                transform 18s ease-in-out infinite both alternate,
                movement_one 12s ease-in-out infinite both;
        opacity:.7;
        position: absolute;
        left: 75%;
        top: 40%;
}
.shape-blob.one{
        background:var(--primary-color);
        height: 150px;
        width: 200px;
        left: 10px;
        top: 10px;
        transform: rotate(-180deg);
        animation: transform 8s ease-in-out infinite both alternate, movement_two 20s ease-in-out infinite both;
}

.shape-blob.six{
        background:var(--primary-color);
        height: 70px;
        width: 100px;
        left: 160px;
        top: 200px;
        transform: rotate(-180deg);
        animation: transform 5s ease-in-out infinite both alternate, movement_two 5s ease-in-out infinite both;
}

.shape-blob.four{
        background:var(--primary-color);
        height: 100px;
        width: 80px;
        left: 350px;
        top: 60px;
        transform: rotate(-180deg);
        animation: transform 17s ease-in-out infinite both alternate, movement_two 13s ease-in-out infinite both;
}

.shape-blob.five{
        background:var(--primary-color);
        height: 100px;
        width: 80px;
        left: 480px;
        top: 30px;
        transform: rotate(-180deg);
        animation: transform 12s ease-in-out infinite both alternate, movement_two 18s ease-in-out infinite both;
}

.shape-blob.two{
        background:var(--primary-color);
        height: 150px;
        width: 150px;
        left: 600px;
        top: 150px;
        transform: rotate(-180deg);
        animation: transform 10s ease-in-out infinite both alternate, movement_two 10s ease-in-out infinite both;
}

.shape-blob.three{
        background:var(--primary-color);
        height: 150px;
        width: 150px;
        left: 800px;
        top: 30px;
        transform: rotate(-180deg);
        animation: transform 7s ease-in-out infinite both alternate, movement_two 23s ease-in-out infinite both;
}

@keyframes transform
{
    0%,
  100% { border-radius: 33% 67% 70% 30% / 30% 40% 70% 70%; }
   20% { border-radius: 37% 63% 51% 49% / 37% 35% 35% 63%; }
   40% { border-radius: 36% 64% 64% 36% / 64% 48% 52% 26%; }
   60% { border-radius: 37% 63% 51% 49% / 30% 30% 70% 73%; }
   80% { border-radius: 40% 60% 42% 58% / 51% 51% 49% 59%; }
}


@keyframes movement_one
{
    0%,
  100% { transform: none; }
   50% { transform: translate(50%, 20%) rotateY(10deg) scale(1); }
}

@keyframes movement_two
{
    0%,
  500% { transform: none; }
   50% { transform: translate(50%, 20%) rotate(-200deg) scale(1.3);}
}

/* Centered search container */
.search-container {
    background-color: rgba(255, 255, 255, 0.91);
    border-radius: 30px;
    max-width: 560px;
    margin-top: 20px;
    margin-left: auto;
    margin-right: auto;
}


::placeholder {
    color: #999;
    font-weight: bold;
    transition: color 0.3s, font-weight 0.3s;
}

/* Styling for the Dark/Light Mode Switcher */
.switcher {
    position: absolute;
    top: 20px;
    right: 83px;
    display: flex;
    align-items: center;
    color: #fff;
}

.mode-label {
    margin-left: 10px;
}

/* Additional styling for the Bootstrap navbar */
.navbar {
    margin-bottom: 20px;
}

.nav-design
{
    background-color: rgba(65, 65, 65, 0.905);
    border-bottom: 2px solid var(--primary-color);
    border-radius: 16px;
    border-top: 2px solid var(--primary-color);
}

/* Additional styling for the search button */
#searchButton {
    width: 100%;
}

/* Styling for the result divs */
.alert {
    margin-top: 10px;
    text-align: left;
}

/* Add this to your CSS file (styles.css) */
.logo-container {
    display: inline-flex;
    align-items: center;
}

.logo-text {
    font-weight: bold;
    font-size: 24px;
    margin-left: 8px; /* Adjust the margin as needed */
}


.modal-dialog {
    max-width: 80%;
}

.modal-content {
    border: none;
}

.modal-header {
    background-color: var(--primary-color);
    color: white;
    border-bottom: none;
    padding: 10px 15px;
}

.modal-title {
    font-size: 1.5rem;
    font-weight: bold;
}

.modal-body {
    background-color: #f4f4f4;
    padding: 20px;
}

.snippet {
    color: rgb(28, 28, 28);
    background-color: rgba(216, 216, 216, 0.923);
    border: 1px solid #ccc;
    border-radius: 5px;
    padding: 10px;
    font-family: 'Courier New', monospace;
    white-space: pre-wrap;
    word-wrap: break-word;
    overflow: auto;
}

.center-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh; /* Makes it occupy the full viewport height */
}

nav
{
    z-index: 100;
    position: fixed;
}

/* Style for the dropdown scrollbar */
select.form-select::-webkit-scrollbar {
    width: 10px;
}

/* Handle */
select.form-select::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 5px;
}

/* Track */
select.form-select::-webkit-scrollbar-track {
    background-color: #414141 !important;
}


#result::-webkit-scrollbar {
    width: 10px;
}

#result::-webkit-scrollbar-thumb {
    background-color: var(--primary-color); /* Color of the scrollbar thumb */
    border-radius: 5px; /* Rounded corners for the thumb */
}

/* Customize the scrollbar track on hover */
#result::-webkit-scrollbar-thumb:hover {
    background-color: var(--secondary-color); /* Color on hover */
}

#result {
    max-height: 300px;
    margin-bottom: 20px;
}

@media (min-width: 360px) and (max-height: 900px) {
    #result {
        max-height: 200px;
        margin-bottom: 20px;
    }
}

body::-webkit-scrollbar {
    width: 6px;
}

body::-webkit-scrollbar-thumb {
    background-color: var(--primary-color); /* Color of the scrollbar thumb */
    border-radius: 5px; /* Rounded corners for the thumb */
}

/* Customize the scrollbar track on hover */
body::-webkit-scrollbar-thumb:hover {
    background-color: var(--primary-color); /* Color on hover */
}

.flex-container {
    margin-top: 38px;
    margin-bottom: 22px;
    display: flex;
    gap: 20px;
    justify-content: center; /* Center horizontally */
    align-items: center; /* Center vertically */
}
.flex-item {
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 500;
    padding: 10px;
    text-align: center;
}
.custom-table
{
    border-radius: 10px; /* Rounded corners */
    height: 200px; /* Adjust the height as needed */
    overflow: hidden; /* Add scroll if content exceeds height */
}
.table-container {
    width: 95%;
    margin: 0 auto;
    border-radius: 10px;
    overflow: hidden;
}

/* API Page */
.blurry-container {
    backdrop-filter: blur(10px); /* Apply blur to the entire container */
    background-color: rgba(255, 255, 255, 0.8); /* Adjust the opacity as needed */
    padding: 20px;
    border-radius: 10px;
    position: relative; /* Create a positioning context for the lock icon */
}

.blurry-text {
    color: transparent; /* Make text transparent */
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.5); /* Apply a shadow to make text look blurry */
}

.lock-icon {
    position: absolute;
    cursor: pointer;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); /* Center the lock icon */
    background-color: #ffffff1b; /* Background color for the lock icon */
    padding: 10px; /* Add padding to the lock icon */
    border-radius: 50%; /* Make the lock icon circular */
    z-index: 1; /* Place the lock icon above the blurred background */
}
.ad-spots-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 20px;
}

.ad-spot {
    background-color: #8080809e;
    height: 80px;
    width: 468px;
    margin: 10px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    overflow: hidden;
}
.ad-spot-h1 {
    background-color: #8080809e;
    height: 250px;
    width: 300px;
    margin: 10px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    overflow: hidden;
    margin-left: 123px;
}
.ad-spot-h2 {
    background-color: #8080809e;
    height: 250px;
    width: 300px;
    margin: 10px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    overflow: hidden;
    margin-right: 123px;
}

.ad-spot img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}
.flex-ads
{
    margin-top: 5px;
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
}

footer
{
    font-weight: 700;
    color: #a9a9a9;
    display: flex;
    flex-direction: column;
    margin-top: auto;
}

@media (max-width: 768px) {
    .ad-spots-container
    {
        display: none;
    }
}


.api-endpoint {
    border: 1px solid #ccc;
    padding: 15px;
    margin-bottom: 20px;
}

.api-title {
    font-size: 24px;
    margin-bottom: 10px;
}

.api-description {
    font-size: 16px;
    margin-bottom: 10px;
}

.api-params-title {
    font-size: 18px;
    margin-top: 10px;
    margin-bottom: 5px;
}

.api-params-list {
    list-style-type: none;
    padding: 0;
}

.api-params-item {
    margin-bottom: 5px;
}

.rate-limit-title {
    font-size: 18px;
    margin-top: 10px;
    margin-bottom: 5px;
}

.rate-limit-list {
    list-style-type: none;
    padding: 0;
}

.rate-limit-item {
    margin-bottom: 5px;
}

.http-method {
    font-weight: bold;
    margin-top: 5px;
}

.response-format {
    margin-top: 5px;
}

.code-example {
    background-color: #f0f0f0;
    padding: 5px;
    border-radius: 5px;
    margin-top: 10px;
}


.card-plan {
    position: relative;
    border: none;
    padding: 10px 50px;
    background-color: #414141; /* Transparent background */
}

.card-plan::after {
    content: "";
    position: absolute;
    z-index: -1;
    opacity: 0;
    -webkit-transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, #414141 0%, #2a2a2a 100%);
}

.card-plan:hover {
    transform: scale(1.02, 1.02);
    -webkit-transform: scale(1.02, 1.02);
    backface-visibility: hidden;
    will-change: transform;
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.75) !important;
}

.card-plan:hover::after {
    opacity: 1;
}

.card-plan:hover .btn-outline-primary {
    color: white;
    background: var(--background-color);
}

.login-bg {
    background-image: url('./assets/login.svg');
    background-position: center center;
    background-repeat: no-repeat;
    background-size: 86%;
    background-color: var(--primary-color);
}

.register-bg {
    background-image: url('./assets/new_acc.svg');
    background-position: center center;
    background-repeat: no-repeat;
    background-size: 86%;
    background-color: var(--primary-color);
}

.forgot-bg {
    background-image: url('./assets/mail.svg');
    background-position: center center;
    background-repeat: no-repeat;
    background-size: 80%;
    background-color: var(--primary-color);
}

.contact-bg {
    background-image: url('./assets/contact.svg');
    background-position: center center;
    background-repeat: no-repeat;
    background-size: 96%;
    background-color: var(--primary-color);
}

.bg-clip
{
    text-align: start;
    background-color: #61616194;
    border-radius: 13px;
    padding: 6px;
    font-size: 15px;
}

.virality-score
{
    position: absolute;
    top: 23px;
    right: 6px;
    z-index: 5;
}

.common-container-lg
{
    background: var(--background-color);
    height: 600px;
    background-repeat: no-repeat;
    background-size: cover;
    color: white !important;
    border-bottom-left-radius: 16px;
    border-bottom-right-radius: 16px;
}

.common-container
{
    background: linear-gradient(var(--background-color), rgba(49, 49, 49, 0.823));
    background-repeat: no-repeat;
    background-size: cover;
    color: white !important;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
}


.common-container-pricing
{
    margin: 10px;
    background: linear-gradient(rgba(194, 194, 194, 0.434));
    background-repeat: no-repeat;
    background-size: cover;
    color: white !important;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
}

.main-title-2
{
    margin: 28px;
    font-size: 18px;
}

.main-title-3
{
    font-size: 48px;
}

.main-title
{
    margin-top: 10px;
    font-weight: 800;
    font-size: 65px;
}

.gradient-text {
    background: var(--primary-color);
    -webkit-background-clip: text;
    color: transparent;
    display: inline-block;
    position: relative;
    animation: wave 5s infinite linear;
}

@keyframes wave {
    0% {
        background-position: 0% 0%;
    }
    100% {
        background-position: 100% 0%;
    }
}

.order-card {
    color: #fff;
}

.bg-c-blue {
    background: linear-gradient(323deg,var(--primary-color), #313131);
}

.bg-c-green {
    background: linear-gradient(323deg,var(--primary-color), #313131);
}

.bg-c-yellow {
    background: linear-gradient(323deg,var(--primary-color), #313131);
}

.bg-c-purple {
    background: linear-gradient(323deg,var(--primary-color), #313131);
}

.bg-c-panel {
    background: linear-gradient(323deg,var(--primary-color), #3131310c);
}

.card {
    --bs-card-bg: #ffffff00 !important;
}

.card-main {
    border-radius: 5px;
    -webkit-box-shadow: 0 1px 2.94px 0.06px rgba(4,26,55,0.16);
    box-shadow: 0 1px 2.94px 0.06px rgba(4,26,55,0.16);
    border: none;
    margin-bottom: 30px;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.card-main .card-block {
    padding: 25px;
}

.order-card i {
    font-size: 26px;
}

.f-left {
    float: left;
}

.f-right {
    float: right;
}

.btn {
    border: var(--bs-btn-border-width) solid var(--primary-color);
}

.btn-outline-primary {
    --bs-btn-color: var(--primary-color) !important;
    --bs-btn-border-color: var(--primary-color) !important;
    --bs-btn-hover-bg: var(--primary-color) !important;
    --bs-btn-hover-border-color: var(--primary-color) !important;
    --bs-btn-active-bg: var(--primary-color) !important;
    --bs-btn-active-border-color: var(--primary-color) !important;
    --bs-btn-disabled-color: var(--primary-color) !important;
    --bs-btn-disabled-border-color: var(--primary-color) !important;
}

.btn-primary {
    --bs-btn-color: #fff;
    --bs-btn-bg: var(--primary-color) !important;
    --bs-btn-border-color: var(--primary-color) !important;
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: var(--secondary-color) !important;
    --bs-btn-hover-border-color: var(--primary-color) !important;
    --bs-btn-focus-shadow-rgb: 49,132,253;
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: var(--primary-color) !important;
    --bs-btn-active-border-color: var(--primary-color) !important;
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #fff;
    --bs-btn-disabled-bg: var(--primary-color) !important;
    --bs-btn-disabled-border-color: var(--primary-color) !important;
}

.form-check-input:checked {
    background-color: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
}

.text-decoration-none {
    text-decoration: none!important;
    color: var(--primary-color) !important;
}

.navbar-toggler {
    background-color: none !important;/* Set the background color to a light color */
    border: none; /* Add a border if needed */
}

.navbar-toggler-icon {
    background-color: none !important ; /* Set the color of the toggler icon to a dark color */
}

.navbar-toggler:focus {
    outline: none !important ; /* Remove the focus outline on the toggler button */
}

.dropdown-menu {
    --bs-dropdown-link-active-bg: var(--primary-color) !important;
}

.nav-link {
    color: #4d4747 !important;
}
.nav-pills .nav-link.active, .nav-pills .show>.nav-link {
    color: #f0f0f0 !important;
    background-color: var(--primary-color) !important;
}

.dropdown-menu {
    --bs-dropdown-bg: #5b5d5fdb !important;
    --bs-dropdown-link-hover-bg: var(--primary-color) !important;
}

.fa-cc-stripe:before {
    content: "\f1f5";
    color: #8844d6;
}

.fa-paypal:before {
    content: "\f1ed";
    color: #1b6097;
}

.fa-bitcoin:before {
    content: "\f379";
    color: orange;
}

/* FEATURES SECTION */

section {
    border-radius: 45px;
    margin: 50px;
    margin-top: 9px;
    padding: 37px 0;
}

a, a:hover, a:focus, a:active {
    text-decoration: none;
    outline: none;
}
ul {
    margin: 0;
    padding: 0;
    list-style: none;
}.bg-gray {
    background-color: #f9f9f9;
}

.site-heading h2 {
  display: block;
  font-weight: 700;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.site-heading h2 span {
  color: var(--background-color);
}

.site-heading h4 {
  display: inline-block;
  padding-bottom: 20px;
  position: relative;
  text-transform: capitalize;
  z-index: 1;
}

.site-heading h4::before {
  background: var(--background-color) none repeat scroll 0 0;
  bottom: 0;
  content: "";
  height: 2px;
  left: 50%;
  margin-left: -25px;
  position: absolute;
  width: 50px;
}

.site-heading {
  margin-bottom: 60px;
  overflow: hidden;
  margin-top: -5px;
}


.features-items,
.features-items .items-box {
  overflow: hidden;
}

.features-area .equal-height::after {
  background: #e7e7e7 none repeat scroll 0 0;
  content: "";
  height: 100%;
  position: absolute;
  right: -1px;
  top: 0;
}

.features-area.item-full .equal-height::before {
  background: #e7e7e7 none repeat scroll 0 0;
  content: "";
  height: 1px;
  position: absolute;
  bottom: -1px;
  right: 0;
  width: 100%;
}

.features-area .features-items .col-md-5,
.features-area .features-items .col-md-7 {
  display: table-cell;
  float: none;
  vertical-align: middle;
}

.features-area .features-items.reversed .col-md-5,
.features-area .features-items.reversed .col-md-7
{
  display: inline-block;
}

.features-area .features-items.reversed .info-box {
  float: right;
}

.features-area .features-items .item {
  padding: 15px 30px;
}

.features-area.item-full .features-items .item {
  padding: 30px;
}

.features-area .features-items .item h4 {
  position: relative;
}

.features-area.bottom-small {
  padding-bottom: 25px;
}

.features-area.default-padding.bottom-none {
  padding-bottom: 30px;
}

.features-area .item .icon {
  margin-bottom: 20px;
}


.features-area .item .icon i {
  background: #ffffff none repeat scroll 0 0;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  -moz-box-shadow: 0 0 10px #cccccc;
  -webkit-box-shadow: 0 0 10px #cccccc;
  -o-box-shadow: 0 0 10px #cccccc;
  box-shadow: 0 0 10px #cccccc;
  color: var(--primary-color);
  display: inline-block;
  font-size: 30px;
  height: 100px;
  line-height: 100px;
  position: relative;
  text-align: center;
  width: 100px;
  z-index: 1;
}

.features-area .features-items .items-box i {
  background: transparent;
}

.features-area .item .icon {
  margin-bottom: 25px;
}

.features-area .features-items.icon-solid i {
  border-radius: inherit;
  -moz-box-shadow: 0 0 10px #cccccc;
  -webkit-box-shadow: 0 0 10px #cccccc;
  -o-box-shadow: 0 0 10px #cccccc;
  box-shadow: 0 0 10px #cccccc;
  color: var(--primary-color);
  display: inline-block;
  font-size: 50px;
  height: 80px;
  line-height: 80px;
  position: relative;
  text-align: center;
  width: 80px;
}


.features-area .item .info h4 {
    font-weight: 600;
    text-transform: capitalize;
    font-size: 20px;
}
.features-area .item .info p {
  margin: 0;
}

.features-area .features-items.less-icon .items-box.inc-cell .item .info {
  padding-left: 0;
}

.features-area .features-items .items-box.inc-cell .item .info a {
  color: #666666;
  display: inline-block;
  margin-top: 15px;
  text-transform: uppercase;
}

.features-area .features-items .items-box.inc-cell .item .info a:hover {
  color: var(--background-color);
}

.features-section
{
    border-bottom: 2px solid var(--primary-color);
    border-radius: 16px;
    border-top: 2px solid var(--primary-color);
    background-color: #41414129;
    padding: 40px;
    border-radius: 40px;
}

.features-section-2 {
    border-radius: 16px;
    border-top: 2px solid var(--primary-color);
    background-color: #4141410a;
    padding: 40px;
    border-radius: 40px;
}

.footer-section
{
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    border-top: 2px solid var(--primary-color);
    background-color: #414141b8;
}

.cm-container
{
    max-width: 1380px !important;
}


.image-container img
{
    height: 400px;
    width: 225px;
    object-fit: cover;
    border: 2px solid black;
    border-radius: 20px;
}

.image-container-1 img
{
    height: 400px;
    object-fit: cover;
    border: 2px solid black;
    border-radius: 20px;
    width: 225px;
}


.modal-backdrop
{
    opacity: 0.95 !important;
}

@media (max-width: 991px) {
    .modal-content {
      left: 9%;
    }
  }

@media (max-width: 991px) {
    .bsb-hero-2 .col-12.text-center {
      display: none;
    }
  }

.faq-heading
{
    color: var(--background-color);
}

.user-area {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin-top: 30px;
}

.image-wrapper {
    margin-left: 111px;
    position: relative;
    display: flex;
}

.user-area .image-wrapper img {
    padding: 5px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    border-radius: 50%;
    cursor: pointer;
    transition: 0.3s;
    position: relative;
}

.user-area .image-wrapper img.one {
    z-index: 1;
    position: relative;
}
.user-area .image-wrapper img.two {
    position: absolute;
    right: 120px;
    z-index: 4;
}

.user-area .image-wrapper img.three {
    position: absolute;
    right: 90px;
    z-index: 3;
}

.user-area .image-wrapper img.four {
    position: absolute;
    right: 60px;
    z-index: 2;
}

.user-area .image-wrapper img.five {
    position: absolute;
    right: 30px;
    z-index: 1;
}

  @-webkit-keyframes fadeIn {
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
  }

  @-moz-keyframes fadeIn {
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
  }

  @keyframes fadeIn {
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
  }

  .fade-in {
    opacity: 0;
    /* make things invisible upon start */
    -webkit-animation: fadeIn ease-in 1;
    /* call our keyframe named fadeIn, use animattion ease-in and repeat it only 1 time */
    -moz-animation: fadeIn ease-in 1;
    animation: fadeIn ease-in 1;
    -webkit-animation-fill-mode: forwards;
    /* this makes sure that after animation is done we remain at the last keyframe value (opacity: 1)*/
    -moz-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
    -webkit-animation-duration: 1s;
    -moz-animation-duration: 1s;
    animation-duration: 1s;
  }


  .fade-in.panel {
    -webkit-animation-delay: 0.060s;
    -moz-animation-delay: 0.060s;
    animation-delay: 0.060s;
  }

  .fade-in.bud {
    -webkit-animation-delay: 0.079s;
    -moz-animation-delay: 0.079s;
    animation-delay: 0.079s;
  }


  .fade-in.one {
    -webkit-animation-delay: 0.1s;
    -moz-animation-delay: 0.1s;
    animation-delay: 0.1s;
  }

  .fade-in.two {
    -webkit-animation-delay: 0.3s;
    -moz-animation-delay: 0.3s;
    animation-delay: 0.3s;
  }

  .fade-in.three {
    -webkit-animation-delay: 0.7s;
    -moz-animation-delay: 0.7;
    animation-delay: 0.7s;
  }

  .fade-in.four {
    -webkit-animation-delay: 1.1s;
    -moz-animation-delay: 1.1;
    animation-delay: 1.1s;
  }


  .fade-in.five {
    -webkit-animation-delay: 1.4s;
    -moz-animation-delay: 1.4;
    animation-delay: 1.4s;
  }

  /*---make a basic box ---*/
  /* Add your custom styles here */
.switcher-container {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.switcher-label {
    font-weight: bold;
    color: #fff;
}

.switch {
    margin-left: 10px;
    margin-right: 10px;
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    -webkit-transition: .4s;
    transition: .4s;
    border-radius: 34px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: #fff;
    -webkit-transition: .4s;
    transition: .4s;
    border-radius: 50%;
}

input:checked + .slider {
    background-color: var(--primary-color);
}

input:focus + .slider {
    box-shadow: 0 0 1px var(--primary-color);
}

input:checked + .slider:before {
    -webkit-transform: translateX(26px);
    -ms-transform: translateX(26px);
    transform: translateX(26px);
}

input[type="range"]::-webkit-slider-thumb {
    background-color: var(--primary-color) !important;
}

.step-container {
    display: none;
}

.step-container.active {
    display: block;
}

.progress, .progress-stacked {
    --bs-progress-bar-bg: var(--primary-color) !important;
}

.hoverable
{
    transition: transform 0.5s, opacity 0.5s !important;
}

.hoverable:hover {
    opacity: 80% !important;
    transform: scale(1.1) !important; /* Scale the image on hover */
}

.discord-icon {
    background-color: #6F83D7 !important;
    padding: 4px 7px 5px 7px !important;
    font-size: 17px !important;
}

.table {
    --bs-table-bg: #21252900 !important;
}

.timeline-steps {
    display: flex;
    justify-content: center;
    flex-wrap: wrap
}

.timeline-steps .timeline-step {
    align-items: center;
    display: flex;
    flex-direction: column;
    position: relative;
    margin: 1rem
}

@media (min-width:768px) {
    .timeline-steps .timeline-step:not(:last-child):after {
        content: "";
        display: block;
        border-top: .25rem dotted var(--primary-color);
        width: 3.46rem;
        position: absolute;
        left: 7.5rem;
        top: .3125rem
    }
    .timeline-steps .timeline-step:not(:first-child):before {
        content: "";
        display: block;
        border-top: .25rem dotted var(--primary-color);
        width: 3.8125rem;
        position: absolute;
        right: 7.5rem;
        top: .3125rem
    }
}

.timeline-steps .timeline-content {
    width: 10rem;
    text-align: center
}

.timeline-steps .timeline-content .inner-circle {
    border-radius: 1.5rem;
    height: 1rem;
    width: 1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    background-color: var(--primary-color);
}

.timeline-steps .timeline-content .inner-circle:before {
    content: "";
    background-color: var(--primary-color);
    display: inline-block;
    height: 3rem;
    width: 3rem;
    min-width: 3rem;
    border-radius: 6.25rem;
    opacity: .5
}
