﻿/*floating button on MainLayout for schedule appointment*/
.floating-button {
    position: fixed;
    bottom: 70px;
    right: 40px;
    color: #fff;
    border: none;
    border-radius: 10%;
    font-size: 25px;
    width: 263px;
    height: 90px;
    text-align: center;
    z-index: 9999;
}

/*Applicants Page Css*/
html .accordion-modern-status-primary.accordion-modern-status > .card .card-header a:not(.collapsed) {
    background-color: rgba(233,243,252, .5) !important;
}

.applicants .pricing-block > .row > div:nth-child(2) {
    background-color: inherit;
}

.text-smaller {
    font-size: 1.0rem;
}

.btn-modern {
    text-transform: none;
}

.applicants .pricing-block > .row > div:nth-child(2) {
    border-left: none;
}

/*Rate Calculator Page*/
#resultDiv .section:hover {
    cursor: pointer;
}

/*.rate-selected {
    transform: scale(1.2);
    margin: 40px;
    background-color: rgb(232,240,254);
    border: 1px solid black !important;
}
*/
.needs-review {
    transform: scale(1.1);
    margin: 40px !important;
    background-color: rgb(232,240,254);
    border: 2px solid red !important;
}

.needs-review-text {
    transform: scale(1.2);
    padding: 10px;
    background-color: rgb(232,240,254);
    border: 2px solid red !important;
}



/*Recording Page*/
.wrapperRecording {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px 25px;
}

/*.rate-selected-mobile {
    background-color: rgb(232,240,254);

    border: 1px solid black !important;
    border-radius: unset !important;
    margin-top: 30px;
    margin-bottom: 30px;
    transform: scale(1.2);
}*/

.wrapperMedia {
    display: grid;
    grid-template-columns: repeat(auto-fill,minmax(250px, 1fr));
    gap: 20px 25px;
}

/*For the Webinar page*/
@media(max-width: 449px) {
    .wrapperWebinar {
        display: flex !important;
        justify-content: center;
        /*display: flex;
        justify-content: center;*/
    }
}

.wrapperWebinar {
    display: grid;
    grid-template-columns: repeat(auto-fill,minmax(200px, 1fr));
    gap: 20px 25px;
}

.welcomeHeaderLink {
    box-shadow: inset 0 0 0 0 #54b3d6;
    color: #54b3d6;
    margin: 0 -.25rem;
    padding: 0 .25rem;
    transition: color .3s ease-in-out, box-shadow .3s ease-in-out;
    text-decoration: none;
}

    .welcomeHeaderLink:hover {
        box-shadow: inset 700px 0 0 0 #54b3d6;
        color: white;
        text-decoration: underline overline #0000EE;
    }

.rz-textbox.invalid-text-box {
    border: 1px solid red;
}

/*overide bootstrap classes color for accessibility*/
.text-danger {
    color: #b4555b !important;
}

.text-success {
    color: #3a7b4a !important;
}

html .scroll-to-top.visible {
    display: none !important;
}

html .scroll-to-top {
    display: none !important;
}

    html .scroll-to-top .hidden-mobile {
        display: none !important;
    }

.Show-More-Effect {
    transition: transform 0.3s ease-in-out !important;
}

    .Show-More-Effect:hover {
        transform: scale(1.1) !important;
    }


.custom-label-style {
    font-size: 1.3em;
}

/*Matomo*/
.matomo-custom-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.5);
}

.matomo-custom-modal-content {
    background-color: #fff;
    margin: 10% auto;
    padding: 20px;
    border-radius: 10px;
    width: 80%;
    max-width: 800px;
    position: relative;
    animation: matomo-modal-appear 0.3s ease-in-out;
}

@keyframes matomo-modal-appear {
    from {
        transform: scale(0.8);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

#matomo-modal-okay {
    margin-top: 20px;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
}

#matomo-open-modal-button {
    display: none; /*hide the button in the beginning in footer*/
}


/*SLIDER*/
/* Button spinner inside button */
.btn-inner {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-spinner {
    width: 1rem;
    height: 1rem;
    border: 2px solid rgba(255, 255, 255, 0.45);
    border-top-color: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    display: inline-block;
    animation: btnSpin 0.75s linear infinite;
}

/* Make spinner visible on outline buttons too */
.btn-outline-secondary .btn-spinner {
    border-color: rgba(17, 24, 39, 0.25);
    border-top-color: rgba(17, 24, 39, 0.85);
}

@keyframes btnSpin {
    to {
        transform: rotate(360deg);
    }
}

@media (prefers-reduced-motion: reduce) {
    .btn-spinner {
        animation: none !important;
    }
}
/* 3s ease-in animation for changing values */
@keyframes valuePopIn {
    0% {
        opacity: 0;
        transform: translateY(10px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.value-pop {
    display: inline-block;
    animation: valuePopIn 3s cubic-bezier(.2,.8,.2,1);
}

/*SLIDER*/

/* 1 second fade-in */
.fade-in-1s {
    opacity: 0;
    animation: fadeIn1s 1s ease-out forwards;
}

@keyframes fadeIn1s {
    from {
        opacity: 0;
        transform: translateY(6px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* respects reduced-motion accessibility setting */
@media (prefers-reduced-motion: reduce) {
    .fade-in-1s {
        animation: none !important;
        opacity: 1 !important;
        transform: none !important;
    }
}

.hover-msg {
    display: none;
    position: absolute;
    right: 0;
    top: calc(100% + 6px);
    background: #333;
    color: #fff;
    padding: 6px 10px;
    border-radius: 4px;
    font-size: 1rem;
    white-space: nowrap;
    z-index: 10;
}

.decline-wrap:hover .hover-msg {
    display: block;
}
.cds {
    user-select: none;
    touch-action: none;
    display: grid;
    grid-template-rows: auto auto;
    row-gap: 10px;
}

.cds-track {
    position: relative;
    height: 8px;
    border-radius: 999px;
    background: #d1d5db; /* gray track */
    margin-top: 14px;
    cursor: pointer;
}

.cds-fill {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    border-radius: 999px;
    background: #2563eb; /* blue fill */
    width: 0%;
    transition: width 650ms cubic-bezier(.2,.8,.2,1);
}

.cds-dot {
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 15px;
    height: 15px;
    border-radius: 999px;
    background: #d0d5db;
    border: 2px solid #d0d5db;
    box-sizing: border-box;
    transition: width 220ms cubic-bezier(.2,.8,.2,1), height 220ms cubic-bezier(.2,.8,.2,1), border-color 220ms ease, background-color 220ms ease, box-shadow 220ms ease;
}

    .cds-dot.is-active {
        border-color: #2563eb;
        background: #2563eb;
    }

    .cds-dot.is-selected {
        width: 25px;
        height: 25px;
        border-color: #2563eb;
        background: #2563eb;
        box-shadow: 0 0 0 6px rgba(37, 99, 235, 0.18);
    }

.cds-labels-abs {
    position: relative;
    height: 22px;
    pointer-events: none;
}

.cds-label {
    color: black; 
    position: absolute;
    transform: translateX(-50%);
    font-size: 16px;
    white-space: nowrap;
    opacity: 0.85;
    padding: 2px 6px;
    border-radius: 6px;
    margin-top: 10px;
}

    .cds-label.selected {
        font-weight: 600;
        background: rgba(37, 99, 235, 0.18);
        opacity: 1;
        color: black;
    }

    /*CUSTOM ACCORDIAN STYLE*/
.custom-accordian {
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
    background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
    border-radius: 0 14px 14px 0 !important;
    box-shadow: 0 10px 28px rgba(0,0,0,.03), 0 2px 8px rgba(13,110,253,.10);
    transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease !important;
}

    .custom-accordian:hover {
        transform: translateY(-2px);
        border-color: rgba(13,110,253,.45);
        box-shadow: 0 16px 42px rgba(0,0,0,.18), 0 3px 12px rgba(20,110,253,.14);
    }

.accordian-text {
    margin: 0 0 .75rem 0;
    font-weight: 700;
    letter-spacing: .2px;
}

.rz-multiselect .rz-placeholder, .rz-dropdown .rz-placeholder{
    color: black !important;
}