﻿/*****************/
/*----ANIMATIONS----*/
/*****************/
/* pulse animation */

@-webkit-keyframes fadeIn {
    0% {
        opacity: 0
    }

    100% {
        opacity: 1
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0
    }

    100% {
        opacity: 1
    }
}

@-webkit-keyframes pulseProgressGreen {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
        -webkit-box-shadow: 0 0 0 0 #11b7af;
        box-shadow: 0 0 0 0 #11b7af;
    }

    60% {
        -webkit-transform: scale(0.93);
        transform: scale(0.93);
        -webkit-box-shadow: 0 0 0 15px #11b7af;
        box-shadow: 0 0 0 15px #11b7af;
    }

    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
        -webkit-box-shadow: 0 0 0 0 #11b7af;
        box-shadow: 0 0 0 0 #11b7af;
    }
}

@keyframes pulseProgressGreen {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
        -webkit-box-shadow: 0 0 0 0 #11b7af;
        box-shadow: 0 0 0 0 #11b7af;
    }

    60% {
        -webkit-transform: scale(0.93);
        transform: scale(0.93);
        -webkit-box-shadow: 0 0 0 15px #11b7af;
        box-shadow: 0 0 0 15px #11b7af;
    }

    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
        -webkit-box-shadow: 0 0 0 0 #11b7af;
        box-shadow: 0 0 0 0 #11b7af;
    }
}

@-webkit-keyframes pulseProgressOrange {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
        -webkit-box-shadow: 0 0 0 0 #ffa45cb3;
        box-shadow: 0 0 0 0 #ffa45cb3;
    }

    60% {
        -webkit-transform: scale(0.93);
        transform: scale(0.93);
        -webkit-box-shadow: 0 0 0 15px #ffa45c00;
        box-shadow: 0 0 0 15px #ffa45c00;
    }

    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
        -webkit-box-shadow: 0 0 0 0 #ffa45c00;
        box-shadow: 0 0 0 0 #ffa45c00;
    }
}

@keyframes pulseProgressOrange {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
        -webkit-box-shadow: 0 0 0 0 #ffa45cb3;
        box-shadow: 0 0 0 0 #ffa45cb3;
    }

    60% {
        -webkit-transform: scale(0.93);
        transform: scale(0.93);
        -webkit-box-shadow: 0 0 0 15px #ffa45c00;
        box-shadow: 0 0 0 15px #ffa45c00;
    }

    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
        -webkit-box-shadow: 0 0 0 0 #ffa45c00;
        box-shadow: 0 0 0 0 #ffa45c00;
    }
}

@-webkit-keyframes pulseProgressRed {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
        -webkit-box-shadow: 0 0 0 0 #F85959b3;
        box-shadow: 0 0 0 0 #F85959b3;
    }

    60% {
        -webkit-transform: scale(0.93);
        transform: scale(0.93);
        -webkit-box-shadow: 0 0 0 15px #F8595900;
        box-shadow: 0 0 0 15px #F8595900;
    }

    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
        -webkit-box-shadow: 0 0 0 0 #F8595900;
        box-shadow: 0 0 0 0 #F8595900;
    }
}

@keyframes pulseProgressRed {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
        -webkit-box-shadow: 0 0 0 0 #F85959b3;
        box-shadow: 0 0 0 0 #F85959b3;
    }

    60% {
        -webkit-transform: scale(0.93);
        transform: scale(0.93);
        -webkit-box-shadow: 0 0 0 15px #F8595900;
        box-shadow: 0 0 0 15px #F8595900;
    }

    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
        -webkit-box-shadow: 0 0 0 0 #F8595900;
        box-shadow: 0 0 0 0 #F8595900;
    }
}


@-webkit-keyframes pulse {
    0% {
        opacity: 1;
        -webkit-transform: scale(1);
        transform: scale(1);
        -webkit-box-shadow: 0 0 0 0 #11b7af;
        box-shadow: 0 0 0 0 #11b7af;
    }

    5% {
        opacity: 0.2;
    }

    60% {
        opacity: 1;
        -webkit-transform: scale(0.93);
        transform: scale(0.93);
        -webkit-box-shadow: 0 0 0 40px #11b7af;
        box-shadow: 0 0 0 40px #11b7af;
    }

    100% {
        opacity: 1;
        -webkit-transform: scale(1);
        transform: scale(1);
        -webkit-box-shadow: 0 0 0 0 #11b7af;
        box-shadow: 0 0 0 0 #11b7af;
    }
}

@keyframes navAnimation {
    0% {
        opacity: 0;
        transform: translateX(40px);
    }

    65% {
        opacity: 1;
        transform: translateX(-5px);
    }

    100% {
        opacity: 1;
        transform: translateX(0px);
    }
}

@keyframes pulse {
    0% {
        opacity: 1;
        -webkit-transform: scale(1);
        transform: scale(1);
        -webkit-box-shadow: 0 0 0 0 #11b7af;
        box-shadow: 0 0 0 0 #11b7af;
    }

    5% {
        opacity: 0.2;
    }

    60% {
        opacity: 1;
        -webkit-transform: scale(0.93);
        transform: scale(0.93);
        -webkit-box-shadow: 0 0 0 40px #11b7af;
        box-shadow: 0 0 0 40px #11b7af;
    }

    100% {
        opacity: 1;
        -webkit-transform: scale(1);
        transform: scale(1);
        -webkit-box-shadow: 0 0 0 0 #11b7af;
        box-shadow: 0 0 0 0 #11b7af;
    }
}

@-webkit-keyframes slideFromLeft {
    0% {
        opacity: 0;
        -webkit-transform: translateX(-50px);
        transform: translateX(-50px);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateX(0px);
        transform: translateX(0px);
    }
}

@keyframes slideFromLeft {
    0% {
        opacity: 0;
        -webkit-transform: translateX(-50px);
        transform: translateX(-50px);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateX(0px);
        transform: translateX(0px);
    }
}

@-webkit-keyframes slideFromRight {
    0% {
        opacity: 0;
        -webkit-transform: translateX(50px);
        transform: translateX(50px);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateX(0px);
        transform: translateX(0px);
    }
}

@keyframes slideFromRight {
    0% {
        opacity: 0;
        -webkit-transform: translateX(50px);
        transform: translateX(50px);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateX(0px);
        transform: translateX(0px);
    }
}

@keyframes preLoader {
    0% {
        visibility: visible;
        opacity: 1;
        transform: translateX(-30px);
    }

    50% {
        transform: translateX(0px);
        opacity: 1;
        visibility: visible;
    }

    100% {
        visibility: hidden;
        opacity: 0;
        transform: translateX(50px);
    }
}


@keyframes pulseGreen {
    16.66% {
        box-shadow: 0 0 0 0 #11b7af;
    }

    45.33% {
        box-shadow: 0 0 0 15px #11b7af;
    }

    50% {
        box-shadow: 0 0 0 0 #11b7af;
    }

    66.66% {
        box-shadow: 0 0 0 0 #11b7af;
    }

    95% {
        box-shadow: 0 0 0 15px #11b7af;
    }

    100% {
        box-shadow: 0 0 0 0 #11b7af;
    }
}
/*-------------------------------------*/

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

:root {
    --CustomGreen: #11b7af;
    --TextBlack: #555555;
    --CustomLightGray: #929292;
    --ExtraLightGray: #dddddd;
    --CustomOrange: #ffa45c;
    --CustomBlue: #364F6b;
    --CustomRed: #F85959;
    --CustomGray: #686868;
}

body {
    min-height: 100vh;
}

.calc-full-height {
    height: calc(100vh - 65px) !important;
}

.index-container {
    min-height: calc(var(--vh, 1vh) * 100 - 65px)
}

#userAddress {
    color: var(--CustomLightGray)
}

.wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100vw;
    height: 100%;
    -ms-flex-pack: distribute;
    justify-content: space-around;
    -webkit-box-align: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

/*****************/
/*SCROLL BAR*/
/*****************/

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 5px rgba(0,0,0,0.2);
    box-shadow: inset 0 0 5px rgba(0,0,0,0.2);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb {
    background: #adadad;
    border-radius: 5px;
}
/*****************/
/*Navigation*/
/*****************/
.header {
    position: fixed;
    top: 0px;
    width: 100%;
    -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    background-color: white;
    height: 65px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: distribute;
    justify-content: space-around;
    z-index: 999;
    padding: 0 15px;
}

    .header .container {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }

.navigation {
    width: 40%;
    z-index: 999;
}

    .navigation ul {
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-pack: distribute;
        justify-content: space-around;
        margin: 0;
        padding: 0;
    }

        .navigation ul li {
            list-style: none;
        }

.link-costum {
    text-decoration: none !important;
    color: var(--TextBlack);
    -webkit-transition: all .15s;
    -o-transition: all .15s;
    transition: all .15s;
    letter-spacing: 1px;
    padding: 10px;
    font-size: 1.1rem;
}

.signout-link {
    padding: 5px;
    background-color: transparent;
    text-decoration: none !important;
    -webkit-transition: all .15s;
    -o-transition: all .15s;
    transition: all .15s;
    letter-spacing: 1px;
    color: var(--CustomOrange);
    border: 2px solid var(--CustomOrange);
}

.settings-link-wrapper {
    cursor: pointer;
    color: var(--TextBlack);
    text-align: center !important;
}

/* Dropdown Menu*/
.signout-form-navigation {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
}

.signout-form-hamburger {
    display: none;
}

.dropdown-item {
    margin: 5px 0
}

.dropdown-toggle::after {
    display: none !important
}

.dropdown-item:hover {
    background-color: rgb(255 164 92 / 0.2) !important
}

.dropdown-companyname {
    font-size: 1rem;
    color: var(--TextBlack);
    padding-right: 5px
}

.dropdown-costum {
    text-decoration: none !important;
}

.dropdown-arrow {
    color: var(--TextBlack);
    width: 15px;
    height: 15px;
    -webkit-transition: all .2s;
    -o-transition: all .2s;
    transition: all .2s;
}

.dropdown-costum:hover .dropdown-arrow {
    color: var(--CustomOrange)
}

.nav-profile-image {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-left: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--ExtraLightGray);
    font-size: 1.2rem;
    letter-spacing: 1px;
    overflow: hidden;
    position: relative;
}

.status-container {
    height: 18px;
    width: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 50%;
    position: absolute;
    right: -10%;
    top: 80%;
    transform: translate(-50%,-50%);
    border: 2px solid white;
}


#profilePhoto {
    width: 100%;
    min-height: 100%;
    filter: grayscale(1);
    object-fit: cover;
}

.dropdown-credentials p {
    margin: 0;
    letter-spacing: 1px;
    font-size: 1.2rem;
    vertical-align: middle
}

.link-costum:hover {
    color: var(--CustomGreen);
}

.signout-link:hover {
    background-color: var(--CustomOrange);
    color: white;
}

    .signout-link:hover .signout-icon {
        fill: white;
    }

.active-link {
    color: var(--CustomGreen);
}

.signout-link span {
    margin-left: 4px;
}

.signout-icon {
    fill: var(--CustomOrange);
    width: 18px;
    margin: 0 0 4px 4px;
}

/* HAMBURGER MENU */
.hamburger-menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    position: relative;
    padding: 15px 10px;
    /* display: none;
      visibility: hidden; */
    cursor: pointer;
    display: none;
}

.hamburger-line-one,
.hamburger-line-two,
.hamburger-line-three {
    background-color: var(--CustomGreen);
    position: relative;
    -webkit-transition: all .4s;
    -o-transition: all .4s;
    transition: all .4s;
    will-change: transform;
}


.hamburger-line-one {
    height: 2px;
    width: 25px;
}

.hamburger-line-two {
    height: 2px;
    width: 32px;
}

.hamburger-line-three {
    height: 2px;
    width: 29px;
}

.hamburger-line-one {
    top: -8px;
}

.hamburger-line-three {
    bottom: -8px;
}

.x.hamburger-menu .hamburger-line-one {
    -webkit-transform: rotate(-45deg) translate(-5px,9px);
    -ms-transform: rotate(-45deg) translate(-5px,9px);
    transform: rotate(-45deg) translate(-5px,9px);
    width: 32px;
}

.x.hamburger-menu .hamburger-line-two {
    visibility: hidden;
    opacity: 0;
}

.x.hamburger-menu .hamburger-line-three {
    -webkit-transform: rotate(45deg) translate(-5px,-9px);
    -ms-transform: rotate(45deg) translate(-5px,-9px);
    transform: rotate(45deg) translate(-5px,-9px);
    width: 32px;
}

/*****************/
/*Pulse button*/
/*****************/

.pulse-btn--wrapper {
    height: calc(100vh - 65px);
    padding-top: 65px;
    display: flex
}

.pulse-btn--container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-size: 0.63rem;
    -webkit-animation: fadeIn 1s;
    animation: fadeIn 1s;
    margin: 65px 15px 0px 15px;
}

.button-pulse {
    cursor: pointer;
    background-color: var(--CustomGreen);
    border-radius: 50px;
    height: 3em;
    width: 10em;
    text-transform: uppercase;
    border: none;
    color: white;
    font-size: 3em;
    font-weight: 600;
    position: relative;
    letter-spacing: 2px;
    margin: 1rem 1rem;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    will-change: transform; /*remove the blur and pixelated text whene element is scaling*/
}

.button-pulse-animation {
    -webkit-animation: pulseProgressGreen 2s infinite;
    animation: pulseProgressGreen 2s infinite;
}

.button-pulse:focus {
    outline: none;
}

/*****************/
/* end break btn*/
/*****************/

.button-pulse-Endbreak {
    -webkit-animation: pulseProgressOrange 2s infinite;
    animation: pulseProgressOrange 2s infinite;
    background: var(--CustomOrange)
}

.orange-clock,
.gray-clock {
    color: var(--CustomOrange);
    text-align: center;
    will-change: transform;
}

.orange-clock {
    color: var(--CustomOrange);
    font-size: 1.5rem;
}

.gray-clock {
    color: var(--CustomGray);
    font-size: 1.2rem;
}

    .gray-clock #activityHours,
    .gray-clock #activityMinutes,
    .gray-clock #activitySeconds {
        font-size: 22px;
        font-weight: 600;
    }

.orange-clock-animation {
    animation: fadeIn .5s
}

/*****************/
/* start break btn*/
/*****************/
.button-pulse-Startbreak {
    background-color: var(--CustomOrange);
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
    -webkit-animation: slideFromRight 1s;
    animation: slideFromRight 1s;
}


    .button-pulse-Startbreak:hover {
        -webkit-box-shadow: 0 0 20px var(--CustomOrange);
        box-shadow: 0 0 20px var(--CustomOrange);
    }

#startBreakForm {
    position: relative;
}
/*****************/
/* Clock out btn*/
/*****************/
.button-pulse-Clockout {
    background-color: #f85959;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
    -webkit-animation: slideFromLeft 1s;
    animation: slideFromLeft 1s;
}

    .button-pulse-Clockout:hover {
        -webkit-box-shadow: 0 0 20px #f85959;
        box-shadow: 0 0 20px #f85959;
    }

.add-activity-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    z-index: 1;
}

.add-activity-icon {
    width: 15px;
    height: 15px;
}

.add-activity,
.add-notes {
    display: flex;
    align-items: center;
    padding: 7px;
}

.add-activity-icon-container {
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border-bottom: 1px solid var(--ExtraLightGray);
}

.add-activity-text {
    font-size: 1.2rem;
    padding-left: 5px;
    color: var(--CustomLightGray);
    transition: all .2s
}

    .add-activity-text:hover {
        color: var(--TextBlack);
    }

/*****************/
/*Progress tracker*/
/*****************/
.progress-tracker--container {
    font-size: 1rem;
    color: var(--TextBlack);
    margin: 30px 25px;
    border-radius: 3px;
    -webkit-animation: fadeIn 1s;
    animation: fadeIn 1s;
    display: flex;
    justify-content: center;
    flex-direction: column
}

.progress-tracker--wrapper {
    margin-top: 65px;
    display: flex
}

.clock {
    font-size: 4em;
    font-weight: 600;
    text-shadow: 2px 2px 2px rgba(0,0,0,.1);
}

.totalbreak-text {
    color: white;
    width: 100%;
    text-align: center;
    font-size: 1.1rem;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 18px;
}

.date-text {
    text-align: center;
    margin-top: -1rem;
    color: #7a7a7a;
}

.horizontal-ruler {
    margin: 1.2rem 0;
    height: 1px;
    width: 100%;
    background-color: #f5f5f5
}

.progress-tracker {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 0px auto;
    padding: 0;
    list-style: none;
    font-size: 1em;
    -webkit-animation: fadeIn 1s;
    animation: fadeIn 1s;
}

.progress-step {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 0%;
    flex: 1 1 0%;
    margin: 0;
    padding: 0;
    min-width: 24px;
}

    .progress-step:last-child {
        -webkit-box-flex: 0;
        -ms-flex-positive: 0;
        flex-grow: 0;
    }

        .progress-step:last-child .progress-marker::after {
            display: none;
        }

.progress-marker {
    display: block;
    position: relative;
    margin-top: 14px;
}

    .progress-marker::before {
        content: attr(data-text);
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        position: relative;
        z-index: 20;
        width: 24px;
        height: 24px;
        padding-bottom: 2px;
        border-radius: 50%;
        -webkit-transition: background-color, border-color;
        -o-transition: background-color, border-color;
        transition: background-color, border-color;
        -webkit-transition-duration: 0.3s;
        -o-transition-duration: 0.3s;
        transition-duration: 0.3s;
    }

.stiliPikes {
    display: block;
    position: relative;
}

    .stiliPikes::after {
        width: 24px;
        height: 24px;
        padding-bottom: 2px;
        border-radius: 50%;
        background-color: #11b7af;
    }


.progress-marker::after {
    content: '';
    display: block;
    position: absolute;
    top: 10px;
    right: -12px;
    width: 100%;
    height: 4px;
    -webkit-transition: background-color 0.3s, background-position 0.3s;
    -o-transition: background-color 0.3s, background-position 0.3s;
    transition: background-color 0.3s, background-position 0.3s;
}

.progress-title {
    margin-top: 0;
}

.progress-step .progress-marker {
    color: #fff;
}

    .progress-step .progress-marker::before {
        background-color: #ddd;
    }

    .progress-step .progress-marker::after {
        background-color: var(--ExtraLightGray);
    }

.progress-step .progress-text {
    color: var(--TextBlack);
    margin-left: 15px;
    margin-top: 10px;
}

.progress-step.is-active .progress-marker::before {
    background-color: var(--CustomGreen);
    -webkit-animation: pulseProgressGreen 2s infinite;
    animation: pulseProgressGreen 2s infinite;
}

.progress-step.is-active-orange .progress-marker::before {
    background-color: var(--CustomOrange);
    -webkit-animation: pulseProgressOrange 2s infinite;
    animation: pulseProgressOrange 2s infinite;
}

.progress-step.is-active-red .progress-marker::before {
    background-color: var(--CustomRed);
    -webkit-animation: pulseProgressRed 2s infinite;
    animation: pulseProgressRed 2s infinite;
}

.progress-step.is-active .progress-marker::before {
    background-color: var(--CustomGreen);
}

.progress-step.is-active-orange .progress-marker::before {
    background-color: var(--CustomOrange);
}

.progress-step.is-complete-green .progress-marker::before, .progress-step.is-progress .progress-marker::before {
    background-color: var(--CustomGreen);
}

.progress-step.is-complete-orange .progress-marker::before, .progress-step.is-progress .progress-marker::before {
    background-color: var(--CustomOrange);
}

.progress-step.is-complete-red .progress-marker::before, .progress-step.is-progress .progress-marker::before {
    background-color: var(--CustomRed);
}

.progress-step.is-complete .progress-marker::after, .progress-step.is-progress .progress-marker::after {
    background-color: var(--ExtraLightGray);
}


.progress-tracker--vertical {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 0 15px
}

    .progress-tracker--vertical .progress-step {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
        flex: 1 1 auto;
        min-height: 70px;
    }

    .progress-tracker--vertical .progress-marker::after {
        right: auto;
        top: 26px;
        left: 10px;
        width: 4px;
        border-radius: 3px;
        height: 42px;
    }

.progress-marker-project::after {
    height: 62px !important;
}

.progress-step-no-min-height {
    min-height: initial !important;
}

.progress-step.is-complete-green .progress-marker-small-green::before, .progress-step.is-progress .progress-marker-small-green::before {
    background-color: var(--CustomGreen);
    width: 24px;
    height: 24px;
    border: 6px solid var(--ExtraLightGray);
}

.progress-step.is-complete-green .progress-marker-small-red::before, .progress-step.is-progress .progress-marker-small-red::before {
    background-color: var(--CustomRed);
    width: 24px;
    height: 24px;
    border: 6px solid var(--ExtraLightGray);
}

/*---------------------------------*/
/*-- Dashboard and memebers btns --*/
/*---------------------------------*/
.dashboard-action-btns_wrapper {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column
}

.dashboard-action-btn {
    padding: 10px;
    border-radius: 10px;
    margin: 5px;
    background: rgba( 255, 255, 255);
    box-shadow: 0 3px 10px 0 rgba( 0, 0, 0, 0.2 );
    transition: all .2s
}

    .dashboard-action-btn:hover {
        text-decoration: none;
        color: var(--CustomGreen);
    }

.invite-members-modal--wrapper, #purchaseModal {
    position: fixed;
    height: 100vh;
    width: 100vw;
    z-index: 9999;
    background-color: rgba(0,0,0,.2);
    overflow-y: auto;
    display: none;
    justify-content: center
}

.invite-members-modal {
    max-width: 800px;
    background-color: white;
    border-radius: 20px;
    padding: 20px;
    margin: 15px;
    margin-top: 200px;
    height: fit-content;
}

.invite-members-spinner {
    width: 1.5rem !important;
    height: 1.5rem !important;
    border-right: transparent !important;
    border-color: var(--CustomGreen) !important;
    margin-right: 1rem;
}

.btn-costum-three {
    background-color: var(--CustomGreen);
    border: none;
    display: inline-block;
    padding: 10px 30px;
    border-radius: 50px;
    color: white
}

    .btn-costum-three:focus {
        outline: none;
    }
/*----------------------------*/
/*-------Tutorial modal-------*/
/*----------------------------*/
.tutorial-modal--wrapper {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0,0,0,0.15);
    z-index: 9999;
    font-size: 18px;
    display: block;
}

.tutorial-modal-number--wrapper {
    color: #878787;
    font-size: 24px
}

.tutorial-modal {
    min-width: 400px;
    max-width: 400px;
    background-color: white;
    border-radius: 20px;
    padding: 20px;
    position: absolute;
    bottom: 55px;
    right: 210px;
    border: 1px solid #ddd
}

.tutorial-modal--btn:focus {
    outline: none;
}

.tutorial-modal::after {
    content: '';
    border-bottom: 10px solid transparent;
    border-top: 10px solid transparent;
    border-left: 36px solid white;
    border-right: 4px solid transparent;
    display: inline-block;
    position: absolute;
    right: -10%;
    bottom: 42px;
}
/*----------------------------*/
/*--------- Popup ---------*/
/*----------------------------*/
.overlay-container {
    z-index: 999;
    background: rgba(0,0,0,.3);
    position: fixed;
    left: 0;
    top: 0;
    /*height: 100vh;*/
    min-height: calc(var(--vh, 1vh) * 100);
    width: 100%;
    display: none
}

.popup {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%,-50%);
    -ms-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
    background-color: white;
    width: 35%;
    border-radius: 3px;
    max-height: 90vh;
    overflow: auto;
}

#popup {
    display: none;
}

.popup {
    color: var(--TextBlack)
}

    .popup .popup-close:hover {
        background: var(--ExtraLightGray);
    }

    .popup .popup-input {
        border: 1px solid var(--CustomGreen);
        padding: 5px;
        -webkit-transition: all .2s;
        -o-transition: all .2s;
        transition: all .2s
    }

        .popup .popup-input:focus {
            outline: none;
            -webkit-box-shadow: 3px 3px 5px rgba(0,0,0,.2) !important;
            box-shadow: 3px 3px 5px rgba(0,0,0,.2) !important;
        }

    .popup .btn-clockout {
        background-color: var(--CustomGreen);
        color: white;
        cursor: pointer;
        border: none;
        border-radius: 5px;
        padding: 8px;
        -webkit-transition: all .2s;
        -o-transition: all .2s;
        transition: all .2s
    }

        .popup .btn-clockout:hover {
            background-color: #10cdc5;
        }

    .popup i {
        font-size: 14px
    }

/*----------------------------*/
/*--------- PROFILE ---------*/
/*----------------------------*/

.profile-global-wrapper {
    padding-top: 65px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%
}

.padding {
    padding: 3rem !important
}

.user-card-full {
    overflow: hidden;
    height: 100%
}

.card {
    border-radius: 4px;
    -webkit-box-shadow: 0 0 20px rgba(0,0,0,0.2);
    box-shadow: 0 0 20px rgba(0,0,0,0.2);
    border: none;
    bottom: 20px;
    -webkit-animation: fadeIn 1s;
    animation: fadeIn 1s
}

.change-image--container {
    transform: translate(45px,-40px);
    min-width: 35px;
    min-height: 35px;
    border-radius: 50%;
    background-color: var(--CustomBlue);
    position: relative;
    box-shadow: 0 0 10px rgba(0,0,0,.2);
    transition: all .2s
}

.change-image--menu {
    background-color: white;
    padding: 10px;
    color: var(--TextBlack);
    border-radius: 3px
}

    .change-image--menu input {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }

    .change-image--menu div {
        margin: 5px 0;
        padding: 5px;
        cursor: default
    }

        .change-image--menu div:hover {
            background-color: var(--ExtraLightGray)
        }

.dropdown-menu-profileChange {
    width: auto;
    display: none;
    position: absolute;
    top: 90%;
    box-shadow: 0 0 10px rgba(0,0,0,0.2);
}

.change-image--container input,
.change-image--menu input {
    opacity: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: red
}

.change-image--container i {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    color: white;
}

.change-image--container:hover {
    background-color: var(--CustomRed)
}

.m-r-0 {
    margin-right: 0px
}

.m-l-0 {
    margin-left: 0px
}

.user-card-full .user-profile {
    border-radius: 5px 0 0 5px
}

.bg-c-lite-green {
    background-color: var(--CustomGreen)
}

.user-profile {
    padding: 20px 0
}

.card-block {
    padding: 1.25rem
}

.m-b-25 {
    margin-bottom: 25px
}

h6 {
    font-size: 14px
}

.card .card-block p {
    line-height: 25px
}


.card-block {
    padding: 1.25rem;
    color: var(--TextBlack)
}

.b-b-default {
    border-bottom: 1px solid #e0e0e0
}

.m-b-20 {
    margin-bottom: 20px
}

.p-b-5 {
    padding-bottom: 5px !important
}

.card .card-block p {
    line-height: 25px
}

.m-b-10 {
    margin-bottom: 10px
}

.text-muted {
    color: #919aa3 !important
}

.b-b-default {
    border-bottom: 1px solid #e0e0e0
}

.f-w-600 {
    font-weight: 600
}

.m-b-20 {
    margin-bottom: 20px
}

.m-t-40 {
    margin-top: 20px
}

.p-b-5 {
    padding-bottom: 5px !important
}

.m-b-10 {
    margin-bottom: 10px
}

.m-t-40 {
    margin-top: 20px
}

.user-card-full .social-link li {
    display: inline-block
}

    .user-card-full .social-link li a {
        font-size: 20px;
        margin: 0 10px 0 0;
        -webkit-transition: all 0.3s ease-in-out;
        -o-transition: all 0.3s ease-in-out;
        transition: all 0.3s ease-in-out
    }

.profile-image--container {
    overflow: hidden;
    max-width: 120px;
    min-height: 120px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: white;
}

.card-block > div {
    min-height: 150px
}

.profile-changePassword {
    font-weight: 600;
    border-radius: 15px;
    padding: 5px 10px;
    display: inline-block;
    margin: 20px 0;
    background-color: white;
    color: var(--CustomGreen);
    -webkit-transition: all .2s;
    -o-transition: all .2s;
    transition: all .2s
}

    .profile-changePassword:hover {
        text-decoration: none;
        color: var(--TextBlack);
        -webkit-box-shadow: 0 0 10px rgba(0,0,0,0.3);
        box-shadow: 0 0 10px rgba(0,0,0,0.3)
    }

/*----------------------------*/
/*--------- FORGOT PASSWORD ---------*/
/*----------------------------*/

.forgot-pw-icon-circle {
    position: relative;
}

    .forgot-pw-icon-circle i {
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%,-50%);
        color: var(--CustomGreen)
    }

.circle {
    stroke: var(--CustomGreen);
    animation: fadeIn 2s
}

.forgot-pw-goback-txt {
    font-size: 14px;
    cursor: pointer;
    margin-left: 5px;
    text-decoration: none;
    color: var(--TextBlack)
}

    .forgot-pw-goback-txt:hover {
        text-decoration: none;
        color: var(--TextBlack)
    }

.forgot-pw-wrapper {
    color: var(--TextBlack);
}

/*----------------------------*/
/*--------- PRELOADER ---------*/
/*----------------------------*/

.pre-loader {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-color: white;
    display: none;
    animation: preLoader 1.4s forwards;
    animation-fill-mode: forwards;
    z-index: 9999;
    /*min-height: calc(var(--vh, 1vh) * 100);*/
}

    .pre-loader .logo {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%,-50%);
    }

    .pre-loader .text {
        position: absolute;
        top: 90%;
        left: 50%;
        transform: translate(-50%,-50%);
    }

/*----------------------------*/
/*--------- addActivity ---------*/
/*----------------------------*/

.addActivity {
    width: 35vw;
    max-height: calc(100vh - 60px);
    /*overflow: auto;*/
    background: white;
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    z-index: 999;
    box-shadow: 0 5px 10px rgba(0,0,0,.2);
    border-radius: 4px;
}


#projects_wrapper,
#activities_wrapper {
    max-height: 50vh;
    overflow-y: auto;
}

    #projects_wrapper::-webkit-scrollbar,
    #activities_wrapper::-webkit-scrollbar {
        width: 5px;
    }

    #projects_wrapper::-webkit-scrollbar-track,
    #activities_wrapper::-webkit-scrollbar-track {
        -webkit-box-shadow: inset 0 0 5px rgba(0,0,0,0.2);
        box-shadow: inset 0 0 2px rgba(0,0,0,0.2);
        border-radius: 5px;
    }

    #projects_wrapper::-webkit-scrollbar-thumb,
    #activities_wrapper::-webkit-scrollbar-thumb {
        background: #e2e2e2 !important;
        border-radius: 5px;
    }

.popup-close--wrapper {
    right: 16px;
    position: absolute
}

.addActivity_txt--desktop {
    display: flex;
    align-items: center;
}

.addActivity_txt--mobile {
    display: none;
}

.delete-icon-big {
    font-size: 5.5rem !important;
    color: var(--CustomRed);
    text-align: center;
    display: block !important;
}

.addActivity-ContentOverlay {
    z-index: 999;
    position: fixed;
    left: 0;
    top: 0;
    /*height: 100vh;*/
    min-height: calc(var(--vh, 1vh) * 100);
    width: 100%;
    display: none;
    background-color: rgba(0,0,0,0.35);
}

.addActivity-btn {
    border: none;
    background-color: var(--CustomRed);
    padding: 10px;
    width: 100%;
    color: #fff;
    border-radius: 50px;
    font-size: 1rem;
    bottom: 0;
    text-transform: uppercase;
    margin: 5px 0
}

#AddActivity-default {
    background-color: white;
    color: var(--CustomOrange);
    text-decoration: underline;
    width: auto;
    margin: 0;
    padding: 5px;
    transition: all .2s;
}

    #AddActivity-default:hover {
        text-decoration: none;
    }

    #AddActivity-default:focus {
        outline: none
    }

.addActivity-btn:hover {
    background-color: #f24848
}

.addActivity-btn-green {
    background-color: var(--CustomGreen);
}

    .addActivity-btn-green:hover {
        background-color: #11b7af
    }

.addActivity-title {
    color: var(--CustomRed);
    font-weight: 300;
}

.addActivity-title,
.addActivity-text {
    text-align: center;
}

/*----------------------------*/
/*--------- addActivity ---------*/
/*----------------------------*/

.addActivity-back-icon-wrapper {
    border-radius: 3px;
    transition: all .3s;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

    .addActivity-back-icon-wrapper:hover {
        background-color: rgba(0,0,0,.1);
    }

.addActivity-input-wrapper {
    border: 1px solid var(--ExtraLightGray);
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    margin-right: 20px;
}

    .addActivity-input-wrapper input,
    .addActivity-input-wrapper select {
        width: 100%;
        border: none;
        padding: 8px 45px 8px 8px;
    }

        .addActivity-input-wrapper input:focus {
            outline: none;
        }

.addActivity-input-icon {
    width: 50px;
    min-height: 50px;
    border-radius: 50%;
    border: 1px solid var(--CustomOrange);
    cursor: pointer;
    position: absolute;
    left: 105%;
    top: 50%;
    transform: translate(-100%, -50%);
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--CustomOrange)
}

.projectCodes-list {
    background-color: #f5f5f5;
    border-radius: 10px;
    margin-bottom: 8px;
}

    .projectCodes-list label {
        cursor: pointer
    }

.activityCodes-list {
    /*max-height: 200px;*/
}

    .activityCodes-list li {
        list-style: none;
        margin-top: 10px;
    }

        .activityCodes-list li:first-child {
            margin-top: 16px;
        }

.addActivity-edit-individual {
    text-decoration: underline;
    color: var(--CustomOrange);
    cursor: pointer;
}

.active-projectDot {
    width: 10px;
    min-height: 10px;
    background-color: var(--CustomOrange);
    border-radius: 50%;
}

.active-activityDot {
    animation: pulseProgressGreen 2s infinite;
}

[class*="listActivityBasedInProject"] label {
    padding: 8px;
    margin-bottom: 5px;
    border-radius: 10px;
    border: 2px solid #f5f5f5
}
/*custom radio button*/
.radio-input-wrapper {
    cursor: pointer;
    position: relative;
    /*overflow: hidden;*/
}

.radio-input {
    position: absolute;
    visibility: hidden;
}

.custom-radio-ring-projects {
    min-width: 30px;
    max-width: 30px;
    height: 30px;
    border: 2px solid var(--CustomOrange);
    background-color: transparent;
    border-radius: 50%;
    position: relative;
    overflow: hidden;
}

    .custom-radio-ring-projects:after {
        content: "";
        min-width: 15px;
        max-width: 15px;
        height: 15px;
        border-radius: 50%;
        background-color: var(--CustomOrange);
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%,-50%) scale(0);
        opacity: 0;
        transition: all .3s;
    }

.custom-radio-ring {
    min-width: 30px;
    max-width: 30px;
    height: 30px;
    border: 4px solid var(--CustomGreen);
    background-color: transparent;
    border-radius: 50%;
    position: relative;
    overflow: hidden;
}

    .custom-radio-ring:after {
        content: "";
        min-width: 15px;
        max-width: 15px;
        height: 15px;
        border-radius: 50%;
        background-color: var(--CustomGreen);
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%,-50%);
        opacity: 0;
        transition: all .2s;
    }

.radio-input:checked ~ .custom-radio-ring:after {
    opacity: 1;
}

.custom-input-projects:checked ~ .custom-radio-ring-projects:after {
    opacity: 1;
    transform: translate(-50%,-50%) scale(1);
}

.manageActivities-link {
    cursor: pointer;
}

.associateColor-line {
    width: 1.5px;
    height: 35px;
    background: red;
    position: absolute;
    left: -1px;
    border-radius: 5px
}

/*----------------------------*/
/*--------- Request TimeOff ---------*/
/*----------------------------*/

.hourFromTo-input {
    border-color: none;
    max-width: 100%;
    padding: 9px !important;
    width: 50%;
}

.HoursToFrom-label {
    width: 48%;
    display: inline-block
}

.check-input-icon {
    color: var(--CustomGreen);
    font-size: .8rem;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    opacity: 0;
    transition: all .2s
}

.form-check-label {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row-reverse;
    cursor: pointer;
}

.check-input-square {
    border: 1.5px solid var(--CustomGreen);
    border-radius: 3px;
    position: relative;
    margin: 0 6px;
    height: 22px;
    width: 22px
}

.form-check-input {
    display: none;
}

    .form-check-input:checked ~ .check-input-icon {
        opacity: 1
    }
/*----------------------------*/
/*---------View Request TimeOff ---------*/
/*----------------------------*/
.view-timeoff-link {
    text-decoration: underline;
}

/*----------------------------*/
/*---------Add Note ---------*/
/*----------------------------*/

.addNote-textarea {
    border: none;
    outline: none;
    resize: none;
    color: var(--TextBlack)
}

.addNote-image {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px dashed var(--TextBlack);
    margin-top: 15px;
    padding: 5px;
    border-radius: 50px;
}

.addNote-image-input {
    width: 100%;
    opacity: 0;
    position: absolute;
    cursor: pointer
}
/*add Receipt btn styles*/
.addExpense-receipt {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px dashed var(--CustomGray);
    padding: 5px;

}

.addExpense-receipt-input {
    width: 100%;
    opacity: 0;
    position: absolute;
    cursor: pointer
}
/*----------------------------*/
.renderedFiles_wrapper {
    position: relative;
}


.addNote-imgPreview {
    border-radius: 5px;
    padding: 10px;
    display: flex;
    flex-wrap: wrap;
}

    .addNote-imgPreview .renderedImages {
        max-width: 65px;
        margin: 8px;
        border-radius: 5px;
        border: 1px solid var(--ExtraLightGray);
    }

.addNote-overflow-wrapper {
    overflow-y: auto;
    max-height: 300px;
    margin-bottom: 10px;
}

.renderedFile_close {
    position: absolute;
    top: -5px;
    left: -5px;
    background: var(--CustomRed);
    width: 25px;
    min-height: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-weight: bolder;
    cursor: pointer;
    border-radius: 50%;
}

/*Modal for trial*/
.modal_overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: none;
    align-items: center;
    justify-content: center;
    background-color: rgba(0,0,0,.2);
    z-index: 10000;
}

.costum_modal {
    max-width: 700px;
    padding: 50px 30px;
    border-radius: 15px;
    background-color: white;
    box-shadow: 0px 0px 25px rgba(0,0,0,.15);
    text-align: center;
    margin: 0 15px
}

.costum_modal--body {
    display: flex;
    align-items: center;
    flex-direction: column;
}

.costum_modal--title {
    margin-top: 20px;
    margin-bottom: 5px;
    color: var(--CustomGreen)
}

.costum_modal--button {
    margin: 0;
}

.costum_modal--closeSymbol {
    cursor: pointer;
    text-align: right;
    color: var(--CustomGreen);
    font-size: 30px;
    margin-top: -20px;
    margin-left: auto
}

/*Expired Subscription Modal Styles*/
.expired_subscription--modal_overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: none;
    align-items: center;
    justify-content: center;
    background-color: rgba(0,0,0,.2);
    z-index: 10000;
}
.subscribe_greenBtn--small {
    padding: 8px 30px;
    border: none;
    position: relative;
    background-color: var(--CustomGreen);
    border-radius: 50px;
    display: inline-block;
    color: white !important;
    cursor: pointer;
    transition: all .2s;
    text-align: center;
    font-weight: bold;
}
.costum_expiredSubscription--modal {
    max-width: 700px;
    padding: 50px 30px;
    border-radius: 15px;
    background-color: white;
    box-shadow: 0px 0px 25px rgba(0,0,0,.15);
    text-align: center;
    margin: 0 15px
}
.cancel_orangeBtn--small {
    padding: 5px 30px;
    border: none;
    border-radius: 50px;
    position: relative;
    display: inline-block;
    cursor: pointer;
    color: #fd7e14;
    transition: all .2s;
    text-align: center;
    font-weight: bold;
    outline: auto;
    outline-color: #fd7e14;
}
.expired_subscription--modalBody {
    display: flex;
    align-items: center;
    flex-direction: column;
}

.subscriptionCostum_modal--title {
    margin-top: 20px;
    margin-bottom: 5px;
    color: #F85959;
}

.costum_modal--button {
    margin: 0;
}

.costum_modal--closeSymbol {
    cursor: pointer;
    text-align: right;
    color: var(--CustomGreen);
    font-size: 30px;
    margin-top: -20px;
    margin-left: auto
}

/*End of expired trial modal styles*/

/*------------------------------------------*/

/*Mini preloader*/
.preloader--mini {
    position: absolute;
    top: 25%;
    left: 45%;
    visibility: hidden;
}

.index_input--email {
    width: 40%;
    font-size: 18px;
    border-top-left-radius: 50px !important;
    border-bottom-left-radius: 50px !important;
    padding: 13px 20px;
    position: relative;
    right: -40px;
    border: 2px solid var(--CustomGreen);
}

    .index_input--email:focus {
        outline: none;
        box-shadow: 0px 0px 25px rgba(0,0,0,.15)
    }

.index_input--email2 {
    width: 300px;
    flex-direction: column;
    left: 0;
    border-radius: 50px !important;
    padding: 16px 20px;
    top: -2px
}

.btn_green_trial--modal,
.index_input--email2 {
    margin: 10px !important;
}

.email_validation--error {
    color: var(--CustomRed);
    position: absolute;
    top: -40%;
    left: 70px;
    text-align: left;
    width: 100%;
    display: none
}

.email_validation--error2 {
    top: 0px !important;
}

.btn_green_trial--wrapper2 {
    margin: 0;
    position: relative;
    padding-top: 20px;
    display: flex;
    align-items: center
}

.btn_green {
    background-color: var(--CustomGreen);
    border-radius: 50px;
    display: inline-block;
    color: white !important;
    cursor: pointer;
    transition: all .2s;
    text-align: center;
    font-size: 24px;
}

.btn_green {
    padding: 17px 60px;
    box-shadow: 26px 20px 40px rgba(56,200,101,0.25);
    margin: 80px 0;
    text-align: center;
}

.btn_green--trial {
    margin: 0;
    z-index: 1;
    position: relative;
}

.btn_green--small {
    padding: 10px 40px;
    border: none;
    position: relative
}

.btn_green--small {
    background-color: var(--CustomGreen);
    border-radius: 50px;
    display: inline-block;
    color: white !important;
    cursor: pointer;
    transition: all .2s;
    text-align: center;
    font-weight: bold;
}

    
/*Track Expenses Modal Styles*/
.btn-costum {
    border: 1px solid #11b7af !important;
}

.form-control:focus {
    color: #8898aa !important;
    border-color: #11b7af !important;
    outline: 0 !important;
    background-color: #fff !important;
    box-shadow: 0 3px 9px rgba(50, 50, 9, 0), 3px 4px 8px rgba(94, 114, 228, .1) !important;
}

/* Preloader CSS */
.preloader {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(173 173 173 / 80%); 
    z-index: 9999; 
    border-radius:50px;
}

.preloader-overlay {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.preloader-content {
    text-align: center;
}

.spinner {
    border: 8px solid #f3f3f3;
    border-radius: 50%;
    border-top: 8px solid #11b7af;
    width: 50px;
    height: 50px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}



