.disabled-link {
    opacity: 0.7;
    color: #a0a0a0;
    cursor: not-allowed;
    pointer-events: none;
    text-decoration: none;
}

.v-none {
	visibility:hidden;
}

label.required:after {
    content: "*";
    color: #ff0000;
}

input.ploading20x {
    background: url("/media/loading-blue-cricle.gif") no-repeat right center;

    padding-right: 30px; /* Add padding so the text doesn't overlap the image */
    background-size: 20px 20px;
    background-color: transparent; /* Ensure the background color is transparent */
    background-blend-mode: normal; /* Use normal blending to avoid image issues */
}

/*
* Gallery
* --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
*/

.row-gallery-scroll-h {
    overflow-x: scroll;
    white-space: nowrap;
}

.row-gallery {
    display: flex;
    padding: 0 4px;
}

/* Create two equal columns that sits next to each other */
.row-gallery {
    flex: 50%;
    padding: 0 4px;
}

.row-gallery img {
    margin-top: 8px;
    vertical-align: middle;
}

.zoom-avatar {
    transition: transform .2s; /* Animation */
    width: 80px;
    height: 80px;
    margin: 0 auto;
}

.zoom-avatar:hover {
    transform: scale(1.5); /* (150% zoom - Note: if the zoom is too large, it will go outside of the viewport) */
}

/*
* Loader Class
* --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
*/

.loader {
    width: 100vw;
    height: 100vh;
    /*background: #fff;*/
    background: rgba(0, 0, 0, 0.2);
    position: fixed;
    top: 0;
    left: 4;
}

.loader-inner {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.lds-roller {
    display: inline-block;
    position: relative;
    width: 64px;
    height: 64px;
}

.lds-roller div {
    animation: lds-roller 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
    transform-origin: 32px 32px;
}

.lds-roller div:after {
    content: " ";
    display: block;
    position: absolute;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #333;
    margin: -3px 0 0 -3px;
}

.lds-roller div:nth-child(1) {
    animation-delay: -0.036s;
}

.lds-roller div:nth-child(1):after {
    top: 50px;
    left: 50px;
}

.lds-roller div:nth-child(2) {
    animation-delay: -0.072s;
}

.lds-roller div:nth-child(2):after {
    top: 54px;
    left: 45px;
}

.lds-roller div:nth-child(3) {
    animation-delay: -0.108s;
}

.lds-roller div:nth-child(3):after {
    top: 57px;
    left: 39px;
}

.lds-roller div:nth-child(4) {
    animation-delay: -0.144s;
}

.lds-roller div:nth-child(4):after {
    top: 58px;
    left: 32px;
}

.lds-roller div:nth-child(5) {
    animation-delay: -0.18s;
}

.lds-roller div:nth-child(5):after {
    top: 57px;
    left: 25px;
}

.lds-roller div:nth-child(6) {
    animation-delay: -0.216s;
}

.lds-roller div:nth-child(6):after {
    top: 54px;
    left: 19px;
}

.lds-roller div:nth-child(7) {
    animation-delay: -0.252s;
}

.lds-roller div:nth-child(7):after {
    top: 50px;
    left: 14px;
}

.lds-roller div:nth-child(8) {
    animation-delay: -0.288s;
}

.lds-roller div:nth-child(8):after {
    top: 45px;
    left: 10px;
}

@keyframes lds-roller {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@media screen and (min-width: 481px) {
    .active-tab {
        border-width: 4px !important;
        border-top: 4px solid black;
        padding-top: 5px;
        color: #227bbc !important;
        text-decoration: none;
    }
}

/*
*  Dropdown Submenu
* --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
*/

.dropdown-submenu {
    position: relative;
}

.dropdown-submenu>.dropdown-menu {
    top: 0;
    left: 100%;
    margin-top: -6px;
    margin-left: -1px;
    -webkit-border-radius: 0 6px 6px 6px;
    -moz-border-radius: 0 6px 6px;
    border-radius: 0 6px 6px 6px;
}

.dropdown-submenu:hover>.dropdown-menu {
    display: block;
}

.dropdown-submenu>a:after {
    display: block;
    content: " ";
    float: right;
    width: 0;
    height: 0;
    border-color: transparent;
    border-style: solid;
    border-width: 5px 0 5px 5px;
    border-left-color: #ccc;
    margin-top: 5px;
    margin-right: 5px;
}

.dropdown-submenu:hover>a:after {
    border-left-color: #fff;
}

.dropdown-submenu.pull-left {
    float: none;
}

.dropdown-submenu.pull-left>.dropdown-menu {
    left: -100%;
    margin-left: 10px;
    -webkit-border-radius: 6px 0 6px 6px;
    -moz-border-radius: 6px 0 6px 6px;
    border-radius: 6px 0 6px 6px;
}

/*
*  Nav Stepper
* --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
*/
.stepper-link:hover {
    transform: scale(1.3);
    transition: all 0.3s ease-in-out;
}

/*
*  Shake Animation
* --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
*/

.shake-slow {
    transition: transform 0.2s ease-in-out;
}

.shake-slow:hover {
    animation: shake-slow 0.8s ease-in-out;
}

@keyframes shake-slow {
    0% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    50% { transform: translateX(5px); }
    75% { transform: translateX(-5px); }
    100% { transform: translateX(0); }
}

/*
*  Div Overlay
* --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
*/

.overlay-parent {
    position: relative;
}

.overlay-blockdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

/*
*  Transparent Button
* --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
*/

.btn-trans {
    box-shadow: none !important;
    background-color: transparent !important;
    border: none !important; /* Remove the button border */

    &:hover {
        background-color: transparent !important;
        border: none !important; /* Remove the hover border */
    }
}

/*
*  Textarea Spinner
* --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
*/

.spinner-icon {
    display: none; /* Initially hidden */
}

.with-spinner-icon:focus + .spinner-icon {
    display: inline-block;
}

/*
*  Boarder Color Extended
* --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
*/

.border-pink {
    border-color: #FF69B4 !important;
  }

/*
*  Badge Color Extended
* --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
*/

.badge-orange {
    background-color: #FF8C00; /* Apple green color */
    color: white; /* Text color for better visibility */
}

.badge-applegreen {
    background-color: #8DB600; /* Apple green color */
    color: white; /* Text color for better visibility */
}

.badge-darkgreen {
    background-color: #005B33; /* Dark green color */
    color: white; /* Text color for better visibility */
}

.badge-yellow {
    background-color: #FFD700; /* Yellow color */
    color: black; /* Text color for better visibility */
}

.badge-pink {
    background-color: #FF69B4; /* Hot pink color */
    color: white; /* Text color for better visibility */
}

.badge-brown {
    background-color: #8B4513; /* SaddleBrown color */
    color: white; /* Text color for better visibility */
}

.badge-magenta {
    background-color: #FF00FF; /* Magenta color */
    color: white; /* Text color for better visibility */
}

.badge-turquoise {
    background-color: #40E0D0; /* Turquoise color */
    color: white; /* Text color for better visibility */
}

.badge-plum {
  background-color: #8E4585;
  color: white;
}

.badge-cyan {
    background-color: #17a2b8; /* Cyan */
    color: white;
}

/*
*  Badge Color Extended
* --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
*/

.text-orange {
    color: #FF8C00; /* Apple green color */
}

.text-applegreen {
    color: #8DB600; /* Apple green color */
}

.text-darkgreen {
    color: #005B33; /* Dark green color */
}

.text-yellow {
    color: #FFD700; /* Yellow color */
}

.text-pink {
    color: #FF69B4; /* Hot pink color */
}

.text-brown {
    color: #8B4513; /* SaddleBrown color */
}

.text-plum {
    color: #8E4585;
}

.text-cyan {
    color: #17a2b8;
}

/*
*  Progress Bar Color Extended
* --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
*/

.bg-light-orange {
    background-color: #FFA07A; /* Light Salmon (light orange) */
    color: #333333; /* Dark text for better contrast on light background */
}

.bg-orange {
    background-color: #FF8C00; /* Dark Orange */
    color: white; /* White text for good visibility on dark background */
}

.bg-light-brown {
    background-color: #D2B48C; /* Tan (light brown) */
    color: #333333; /* Dark text for better contrast on light background */
}

.bg-brown {
    background-color: #8B4513; /* SaddleBrown (darker brown) */
    color: white; /* White text for good visibility on dark background */
}

.bg-light-pink {
    background-color: #FFC0CB; /* Light Pink */
    color: white; /* Text color for better visibility */
}

.bg-pink {
    background-color: #FF69B4; /* Pink */
    color: white; /* Text color for better visibility */
}

.bg-applegreen {
    background-color: #8DB600; /* Apple green color */
    color: white; /* Text color for better visibility */
}

.bg-light-applegreen {
    background-color: #B2EC5D; /* Light apple green color */
    color: black; /* Text color for better contrast */
}

.bg-darkgreen {
    background-color: #005B33; /* Dark green color */
    color: white; /* Text color for better visibility */
}

.bg-light-darkgreen {
    background-color: #228B22; /* Light dark green color (forest green) */
    color: white; /* Text color for better visibility */
}

.bg-plum {
    background-color: #8E4585;
    color: white;
}

.bg-cyan {
    background-color: #17a2b8;
    color: white;
}

/*
*  User Account Menu Extended
* --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
*/

.menu-item .menu-content .d-flex.flex-column a {
    max-width: 180px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

/*
*  Ellipsis
* --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
*/

.ellipsis-100 {
    max-width: 100px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.ellipsis-150 {
    max-width: 100px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

/*
*  Zoom
* --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
*/

.zoom-card {
    transition: transform 0.2s ease-in-out;
    overflow: hidden; /* Ensure smooth zooming effect */
}

.zoom-card:hover {
    transform: scale(1.03); /* Adjust zoom level as needed */
}

/*
*  Blinker
* --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
*/

.blinker {
    animation: blinker 1s infinite;
}

@keyframes blinker {
    0% {
        opacity: 1;
    }
    50% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

/*
*  Thumbnail Container
* --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
*/

.thumbnail-w150 {
    width: 150px;
    height: auto; /* Maintain aspect ratio */
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden; /* Hide any overflow outside the container */
}

.thumbnail-w150 img {
    max-width: 100%; 
    max-height: 100%; 
    object-fit: cover; /* Scale to cover the container, cropping if necessary */
}

/*
*  Steps Horizonta
* --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
*/

.steps-horizontal {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
    position: relative;
    padding: 0;
    margin: 0 auto;
}

/* Background progress line */
.steps-horizontal::before {
    content: '';
    position: absolute;
    top: 16px;
    left: 15px;
    right: 15px;
    height: 2px;
    background: #e9ecef;
    z-index: 1;
}

.step-horizontal {
    flex: 1;
    text-align: center;
    position: relative;
    z-index: 2;
    padding: 0 5px;
}

/* Step circle */
.step-icon {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: white;
    border: 2px solid #dee2e6;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 8px;
    font-size: 14px;
    color: #6c757d;
    transition: all 0.3s ease;
    position: relative;
}

/* Text elements */
.step-title {
    font-size: 13px;
    color: #495057;
    margin-bottom: 4px;
    font-weight: 600;
    line-height: 1.2;
}

.step-description {
    font-size: 11px;
    color: #6c757d;
    width: 100%;
    margin: 0 auto;
    line-height: 1.3;
}

/* Active State */
.step-horizontal.active .step-icon {
    background: #4361ee;
    border-color: #4361ee;
    color: white;
    box-shadow: 0 0 0 3px rgba(67, 97, 238, 0.2);
}

/* Complete State */
.step-horizontal.complete .step-icon {
    background: #2ecc71;
    border-color: #2ecc71;
    color: white;
}

/* Half Complete State */
.step-horizontal.on-going .step-icon {
    background: white;
    border-color: #2ecc71;
    color: #2ecc71;
}

/* Connecting lines */
.step-horizontal:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 16px;
    left: calc(50% + 15px);
    width: calc(100% - 30px);
    height: 2px;
    background: #e9ecef;
    z-index: 1;
}

/* Completed progress line */
.step-horizontal.complete:not(:last-child)::after {
    background: #2ecc71;
}

/* Half Completed progress line */
.step-horizontal.on-going:not(:last-child)::after {
    background: #2ecc71;
}

/* Parallel steps special styling */
.step-horizontal.step-parallel .step-icon {
    border-color: #8E4585;
    color: #8E4585;
    border-style: dashed;
}
.step-horizontal.step-parallel.complete .step-icon {
    background: #8E4585;
    color: #fff;
    border-style: solid;
}
.step-horizontal.step-parallel .step-title {
    color: #8E4585;
}

/* Note styling */
.steps-note {
    margin-top: 0px;
    font-size: 12px;
    color: #6c757d;
}

/* Responsive adjustments */
@media (max-width: 576px) {
    .step-title {
        font-size: 12px;
    }
    .step-description {
        font-size: 10px;
        max-width: 100px;
    }
    .step-icon {
        width: 26px;
        height: 26px;
        font-size: 12px;
    }
    .steps-horizontal::before,
    .step-horizontal:not(:last-child)::after {
        top: 14px;
    }
}
