body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main {
    flex: 1;
    overflow: hidden;
}
input::placeholder {
    opacity: .5 !important; /* Example color for placeholder text */
}
.dataTables_wrapper .dataTables_length {
    float: left;    
}

.dataTables_wrapper .dataTables_paginate {
    float: right;
}

.bottom{
    margin-bottom: 50px;
}
.custom-tab.active {
    background: transparent !important;
    color: black !important;
    border-bottom: 2px solid #6717b2 !important;
    border-radius: 0px !important;
}

.custom-nav-link{
    color: black !important;
}

/* Custom CSS for the active state of custom-nav-link */
.custom-nav-link.active, .custom-nav-link:focus{
    background-color: #6717b2  !important;
    color: white  !important;
}

.custom-nav-link:hover {
    background-color: #d0b6e7 !important;
    color: #9a71c1  !important; /* Change the background color for active, focus, and hover states */
}

.btn-danger {
    background-color: #D22B2B !important;
    border-color: #D22B2B !important;
}

.btn-danger:hover {
    background-color: #a31414  !important;
    border-color: #a31414 !important;
}

.btn-secondary {
    background-color: #A9A9A9 !important;
    border-color: #A9A9A9 !important;
}

.btn-secondary:hover {
    background-color: #818589 !important;
    border-color: #818589 !important;
}

.custom-btn {
    width: 100%;
}
.cust-outline-btn {
    border-color: transparent !important; /* Set border color to transparent */
}

.cust-outline-btn:focus,
.cust-outline-btn:active {
    outline: none; /* Remove outline on focus and active states */
    border-color: transparent !important;
}

/* Unchecked state */
.custom-btn input[type="radio"].btn-check:not(:checked) + .btn {
    background-color: #8a2be2; /* Change to desired color */
}

/* Checked state */
.custom-btn input[type="radio"].btn-check:checked + .btn {
    background-color: #6717b2; /* Custom color when selected */
    border-color: #6717b2; /* Border color when selected */
}

.service-option input[type="radio"].btn-check:checked

.wrapper {
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #ffff;
}

.checkmark__circle {
    stroke-dasharray: 166;
    stroke-dashoffset: 166;
    stroke-width: 2;
    stroke-miterlimit: 10;
    stroke: #7ac142;
    fill: none;
    animation: stroke 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
}

.checkmark {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: block;
    stroke-width: 2;
    stroke: #fff;
    stroke-miterlimit: 10;
    margin: 10% auto;
    box-shadow: inset 0px 0px 0px #7ac142;
    animation: fill .4s ease-in-out .4s forwards, scale .3s ease-in-out .9s both;
}

.checkmark__check {
    transform-origin: 50% 50%;
    stroke-dasharray: 48;
    stroke-dashoffset: 48;
    animation: stroke 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.8s forwards;
}

@keyframes stroke {
    100% {
        stroke-dashoffset: 0;
    }
}

@keyframes scale {
    0%, 100% {
        transform: none;
    }
    50% {
        transform: scale3d(1.1, 1.1, 1);
    }
}

@keyframes fill {
    100% {
        box-shadow: inset 0px 0px 0px 30px #7ac142;
    }
}


.nav-item > .nav-link[role="tab"] {
    color: slategray !important;
}
.nav-item > .active[role="tab"] {
    color: #8a2be2 !important;
}
.fs-7 {
    font-size: 14px !important;
}
.cust-bg {
    background-color: blueviolet;
}
div.bg-light {
    background-color: rgba(100, 100, 100, 0.02) !important;
}
.text-color-primary {
    color: #8a2be2 !important;
}
.btn-primary {
    background-color: #8a2be2 !important;
    border-color: #8a2be2 !important;
}

.btn-primary:hover {
    background-color: #6717b2  !important;
    border-color: #6717b2  !important;
}

.btn-outline-primary {
    background-color: transparent !important;
    color: #6717b2 !important;
    border-color: #8a2be2 !important;
}

.btn-outline-primary:hover {
    background-color: #6717b2  !important;
    border-color: #6717b2  !important;
    color: #ffffff !important;
}

/* Add styles for the checked state */
.btn-check:checked + .btn-outline-primary,
.btn-outline-primary.active {
    background-color: #6717b2 !important;
    border-color: #6717b2 !important;
    color: #ffffff !important;
}

.text-cust-color {
    color: #6717b2 !important;
}

.form-check-input:checked {
    background-color: #6717b2 !important;
    border: 0;
  }

.otp-input {
    width: 3em; /* Adjust width as needed */
    text-align: center;
    margin: 0 6px; /* Add gap between inputs */
}

.image-link {
    display: block;
    position: relative;
    overflow: hidden;
}

.image-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.3); /* Adjust opacity as needed */
    opacity: 0;
    transition: opacity 0.3s ease;
}

.image-link:hover::before {
    opacity: 1;
}

.image-link img {
    transition: transform 0.3s ease;
}

.image-link:hover img {
    transform: scale(1.1); /* Adjust scale as needed */
}

.card-link {
    text-decoration: none;
    transition: all .3s ease;
    color: slategray  !important;
}
.card-link:hover {
    border-color: #6717b2;
    outline: 1px solid #6717b2;
    background-color: rgb(250, 246, 255);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15) !important;
}
.card-link:hover .card-title {
    color: #6717b2 !important;
}
.card-title {
    display: flex;
    align-items: center;
}
.card-title span{
    min-width: 75px;
    font-size: 3.5rem;
    /* color: #6717b2; */
}
.card-hover {
    border-color: #6717b2;
    outline: 1px solid #6717b2 !important;
    background-color: rgb(250, 246, 255) !important;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15) !important;
}
.card-hover .card-title {
    color: #6717b2 !important;
}

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

span.required::before {
    content: '*';
    color: red;
}

/* ===NEKOLAIV CUSTOM STYLES=== */

/* General Input Focus Style */
.input-purple:focus {
    border-color: #6f42c1 !important;
    box-shadow: 0 0 10px #6f42c1 !important;
    outline: none !important;
}

/* Default (Mobile First) */
.typing-container {
    display: none;
    text-align: center;
    font-size: 4vw;
    font-weight: bold;
    color: purple;
    width: 80%;
    max-width: 350px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.typing-text {
    text-wrap: balance;
}

.typing-text::after {
    content: "|";
    animation: blink 0.7s infinite;
}

@keyframes blink {
    50% { opacity: 0; }
}

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

/* Tablet (768px and above) */
@media (min-width: 768px) {
    .typing-container {
        display: block;
        font-size: 2.5vw;
        width: 60%;
        left: 25%;
    }
}

/* Desktop (1024px and above) */
@media (min-width: 1024px) {
    .typing-container {
        font-size: 2vw;
        width: 50%;
        max-width: 400px;
    }
}

.text-danger {
    font-weight: bold;
    color: red;
}