@import url(https://fonts.googleapis.com/css?family=Raleway:400,100,200,300);

* {
    margin: 0;
    padding: 0;
}

html {
    box-sizing: border-box;
    overflow: auto;
    
}

*, *:before, *:after {
    margin: 0;
    padding: 0;
    box-sizing: inherit;
}

a {
    color: var(--link);
    text-decoration: none;
}

    a:hover {
        color: var(--hover);
    }
.active, .accordion:hover {
    color: #157347;
   border-color: none !important; 
  background-color: transparent !important;
}
/* BODY */
    body {
    position: relative;
    color: var(--link);
    font-family: 'Galano_Grotesque Regular', Arial, sans-serif !important;
    text-align: center;
    height: 100%;
    overflow: hidden;
    background-color: #f3f3f3;
    font-size: var(--parafont);
}
.fa, .far, .fas {
    font-family: "Font Awesome 5 Free" !important;
}
.button {
    margin: 1em 0;
    padding: 0.5em 3em;
    width: auto;
    display: block;
    border: none;
    color: #fff;
    cursor: pointer;
    font-size: 1em;
    border-radius: .25em;
    background-color: var(--lightsidegrad1);
}

    .button:hover {
        background-color: var(--hover);
        -webkit-box-shadow: 0px 0px 30px -9px rgb(48 80 43 / 75%);
        -moz-box-shadow: 0px 0px 30px -9px rgba(48,80,43,0.75);
        box-shadow: 0px 0px 30px -9px rgb(48 80 43 / 75%);
    }
/* BUTTON */
a.button {
    position: absolute;
    left: 20px;
    top: 20px;
    height: auto;
    padding: .8rem 1.0rem;
    font-size: .8rem;
    line-height: normal;
    text-transform: uppercase;
    font-family: 'Galano_Grotesque Regular', Arial, sans-serif;
    font-weight: 700;
    letter-spacing: 0;
    border-radius: 0;
    text-decoration: none;
    color: #fff;
    background-color: transparent;
    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}
.btn {
    font-size: var(--parafont);
}

    a.button:hover {
        color: #fff;
        padding: 1.0rem 3.2rem;
    }

@media only screen and (min-width: 22em) {
    a.button {
        padding: 1.0rem 2.8rem;
        font-size: 1.0rem;
    }
}

/* LOGIN */
.login, .form-design {
    margin: 0;
    width: 100%;
    height: 100%;
    min-height: 100vh;
}

/* WRAP */
.wrap {
    position: static;
    margin: auto;
    width: 100%;
    height: auto;
    overflow: hidden;
}

    .wrap:after {
        content: "";
        display: table;
        clear: both;
    }

/* LOGO */
.logo {
    position: absolute;
    z-index: 2;
    top: 0;
    left: 0;
    width: 40px;
    height: 40px;
}

    .logo img {
        position: absolute;
        margin: auto;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        width: 30px;
    }

    .logo a {
        width: 100%;
        height: 100%;
        display: block;
    }
.formcard h3, h3.card-title {
    font-weight: bolder;
 
}
    h3.card-title.mb-3.customeGlobal {
        font-size: 1.25rem !important;
    }
    h3.card-title.secondHeading.mb-3 {
        font-size: 16px !important;
    }

.user {
    position: relative;
    z-index: 0;
    float: none;
    margin: 0 auto;
    padding-top: 40px;
    width: 100%;
    min-height: 100vh;
    overflow: auto;
    background-color: #fff;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
    border-radius: 0;
}

.formcard {
    padding: 15px;
    width: 100%;
    overflow: auto;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
    border-radius: .5em;
}

.user .actions {
    margin: 1em 0 0;
    padding-right: 10px;
    width: 100%;
    display: block;
    text-align: center;
}

    .user .actions a {
        margin: 1em 0;
        width: 90px;
        display: inline-block;
        padding: .2em 0em;
        border: none;
        cursor: pointer;
        text-align: center;
        font-size: .8em;
        border-radius: 30px 0 0 30px;
    }

        .user .actions a:last-child {
            color: #fff;
            border-radius: 0 30px 30px 0;
            background-color: var( --lightsidegrad1);
            background: -moz-linear-gradient(270deg, var( --lightsidegrad1) 0%, var( --lightsidegrad2) 100%);
            background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, var( --lightsidegrad1)), color-stop(100%, var( --lightsidegrad2)));
            background: -webkit-linear-gradient(270deg, var( --lightsidegrad1) 0%, var( --lightsidegrad2) 100%);
            background: linear-gradient(180deg, var( --lightsidegrad1) 0%, var( --lightsidegrad2) 100%);
        }

/* TERMS */
@keyframes show_terms {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-110%);
        -moz-transform: translateY(-110%);
        -o-transform: translateY(-110%);
        transform: translateY(-110%);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        -moz-transform: translateY(0);
        -o-transform: translateY(0);
        transform: translateY(0);
    }
}

@keyframes hide_terms {
    0% {
        -webkit-transform: translateY(0);
        -moz-transform: translateY(0);
        -o-transform: translateY(0);
        transform: translateY(0);
        opacity: 1;
    }

    100% {
        -webkit-transform: translateY(-110%);
        -moz-transform: translateY(-110%);
        -o-transform: translateY(-110%);
        transform: translateY(-110%);
        opacity: 0;
    }
}

.terms, .recovery {
    position: absolute;
    z-index: 3;
    margin: 40px 0 0;
    padding: 1.5em 1em;
    width: 100%;
    height: calc(100% - 40px);
    border-radius: 0;
    background: #fff;
    text-align: left;
    overflow: auto;
    will-change: transform;
    -webkit-transform: translateY(-110%);
    -moz-transform: translateY(-110%);
    -o-transform: translateY(-110%);
    transform: translateY(-110%);
    opacity: 0;
    border-radius: 0;
}

    .terms.open, .recovery.open {
        -webkit-transform: translateY(0);
        -moz-transform: translateY(0);
        -o-transform: translateY(0);
        transform: translateY(0);
        animation: show_terms .5s .2s 1 ease normal forwards;
    }

    .terms.closed, .recovery.closed {
        -webkit-transform: translateY(0);
        -moz-transform: translateY(0);
        -o-transform: translateY(0);
        transform: translateY(0);
        opacity: 1;
        animation: hide_terms .6s .2s 1 ease normal forwards;
    }

    .terms p, .recovery p {
        margin: 1em 0;
        font-size: .9em;
    }

    .terms h3, .recovery h3 {
        margin: 2em 0 .2em;
    }

    .terms p.small {
        margin: 0 0 1.5em;
        font-size: .8em;
    }

    .recovery form .input {
        margin: 0 0 .8em 0;
        padding: 5px 2em 5px 0;
        width: 100%;
        display: inline-block;
        background: transparent;
        border: 0;
        border-bottom: 1px solid var(--input);
        outline: 0;
        box-sizing: border-box;
        -moz-box-sizing: border-box;
        color: inherit;
        font-family: inherit;
        color: var(--link);
    }
    .recovery p.mssg {
        opacity: 0;
        -webkit-transition: opacity 1s .5s ease;
        -moz-transition: opacity 1s .5s ease;
        -o-transition: opacity 1s .5s ease;
        transition: opacity 1s .5s ease;
    }

        .recovery p.mssg.animate {
            opacity: 1;
        }

.content {
    position: fixed;
    z-index: 1;
    float: none;
    margin: 0 auto;
    width: 100%;
    height: 40px;
    background: -moz-linear-gradient(90deg, var(--btnbg) 0%, var(--content) 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, var(--content)), color-stop(100%, var(--btnbg)));
    background: -webkit-linear-gradient(90deg, var(--btnbg) 0%, var(--content) 100%);
    background: linear-gradient(0deg, var(--btnbg) 0%, var(--content) 100%);
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
    overflow: hidden;
}

#toggle-wrap {
    position: absolute;
    z-index: 4;
    top: 40px;
    right: 17px;
    width: 80px;
    height: 1px;
}

#toggle-terms span {
    background: #fff;
    border-radius: 0;
}

#toggle-terms {
    position: absolute;
    z-index: 4;
    right: 0;
    top: 0;
    width: 40px;
    height: 40px;
    margin: auto;
    display: block;
    cursor: pointer;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 100%;
    opacity: 0;
    -webkit-transform: translate(-6px, 20px);
    -moz-transform: translate(-6px, 20px);
    -o-transform: translate(-6px, 20px);
    transform: translate(-6px, 20px);
}

    #toggle-terms:after {
        position: absolute;
        width: 100%;
        height: 100%;
        pointer-events: none;
        border-radius: 50%;
        content: '';
        -webkit-box-sizing: content-box;
        -moz-box-sizing: content-box;
        box-sizing: content-box;
    }

    #toggle-terms:before {
        speak: none;
        display: block;
        -webkit-font-smoothing: antialiased;
    }

#toggle-terms {
    box-shadow: 0 0 0 0px var(--darkbg);
    -webkit-transition: color 0.3s ease;
    -moz-transition: color 0.3s ease;
    -o-transition: color 0.3s ease;
    transition: color 0.3s ease;
}

    #toggle-terms:after {
        top: 0px;
        left: 0px;
        padding: 0;
        z-index: -1;
        background: var(--darkbg);
        -webkit-transition: -webkit-transform 0.2s, opacity 0.3s;
        -moz-transition: -moz-transform 0.2s, opacity 0.3s;
        -o-transition: -o-transform 0.2s, opacity 0.3s;
        transition: transform 0.2s, opacity 0.3s;
    }

    #toggle-terms.closed {
        color: var(--darkbg);
    }

        #toggle-terms.closed:after {
            -webkit-transform: scale(1.6);
            -moz-transform: scale(1.6);
            -ms-transform: scale(1.6);
            transform: scale(1.6);
            opacity: 0;
        }

@keyframes show_close {
    0% {
        opacity: 0;
        -webkit-transform: translate(-6px, -100px);
        -moz-transform: translate(-6px, -100px);
        -o-transform: translate(-6px, -100px);
        transform: translate(-6px, -100px);
    }

    100% {
        opacity: 1;
        -webkit-transform: translate(-6px, 20px);
        -moz-transform: translate(-6px, 20px);
        -o-transform: translate(-6px, 20px);
        transform: translate(-6px, 20px);
    }
}

@keyframes hide_close {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

#toggle-terms.open {
    animation: show_close .4s .5s 1 ease normal forwards;
}

#toggle-terms.closed {
    animation: hide_close .2s .0s 1 ease normal forwards;
}

#toggle-terms:hover {
    background: var(--darkbghover);
}

#toggle-terms #cross {
    position: absolute;
    z-index: 4;
    height: 100%;
    width: 100%;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
}

#toggle-terms.open #cross {
    -webkit-transition-delay: .9s;
    -moz-transition-delay: .9s;
    -o-transition-delay: .9s;
    transition-delay: .9s;
    -webkit-transition-duration: .2s;
    -moz-transition-duration: .2s;
    -o-transition-duration: .2s;
    transition-duration: .2s;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
}

    #toggle-terms.open #cross span {
        position: absolute;
        z-index: 4;
        -webkit-transition-delay: 0s;
        -moz-transition-delay: 0s;
        -o-transition-delay: 0s;
        transition-delay: 0s;
        -webkit-transition-duration: 0s;
        -moz-transition-duration: 0s;
        -o-transition-duration: 0s;
        transition-duration: 0s;
    }

        #toggle-terms.open #cross span:nth-child(1) {
            top: 15%;
            left: 19px;
            height: 70%;
            width: 1px;
        }

        #toggle-terms.open #cross span:nth-child(2) {
            left: 15%;
            top: 19px;
            width: 70%;
            height: 1px;
        }

#toggle-terms #cross span:nth-child(1) {
    height: 0;
    -webkit-transition-delay: .625s;
    -moz-transition-delay: .625s;
    -o-transition-delay: .625s;
    transition-delay: .625s;
}

#toggle-terms #cross span:nth-child(2) {
    width: 0;
    -webkit-transition-delay: .375s;
    -moz-transition-delay: .375s;
    -o-transition-delay: .375s;
    transition-delay: .375s;
}

/* SLIDESHOW */
#slideshow {
    position: relative;
    margin: 0 auto;
    width: 100%;
    height: 100%;
    padding: 10px;
    border-radius: 10px 0 0 10px;
}

    #slideshow h2 {
        margin: .0em auto .0em auto;
        text-align: center;
        font-size: 1.4em;
        color: #fff;
        line-height: .5em;
    }

    #slideshow p {
        color: #fff;
        display: none;
        text-align: center;
    }

    #slideshow div {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        padding: 1em 3em;
        background-repeat: no-repeat;
        -webkit-background-size: cover;
        -moz-background-size: cover;
        -o-background-size: cover;
        background-size: cover;
    }

    #slideshow .one {
        background-image: url("http://res.cloudinary.com/dpcloudinary/image/upload/v1506186248/splat.png");
        background-repeat: no-repeat;
        background-position: 0% 50%;
    }

    #slideshow .two {
        background-image: url("http://res.cloudinary.com/dpcloudinary/image/upload/v1506186248/gears.png");
        background-repeat: no-repeat;
        background-position: 0% 50%;
    }

    #slideshow .three {
        background-image: url("http://res.cloudinary.com/dpcloudinary/image/upload/v1506186248/splat.png");
        background-repeat: no-repeat;
        background-position: 0% 5%;
    }

    #slideshow .four {
        background-image: url("http://res.cloudinary.com/dpcloudinary/image/upload/v1506186248/ray.png");
        background-repeat: no-repeat;
        background-position: 0% 50%;
    }

/* FORM ELEMENTS */
input {
    font-family: 'Galano_Grotesque Regular', Arial, sans-serif !important;
    font-size: var(--parafont);
}
phone {
    font-family: 'Galano_Grotesque Regular', Arial, sans-serif !important;
    font-size: var(--parafont);
}
.form-wrap {
    width: 100%;
    margin: 2em auto 0;
}

    .form-wrap a {
        color: rgb(129, 129, 129);
        padding-bottom: 4px;
        border-bottom: 1px solid var(--bdbtm);
    }

        .form-wrap a:hover {
            color: var(--hover);
        }

    .form-wrap .tabs {
        overflow: hidden;
    }

        .form-wrap .tabs * {
            -webkit-transition: .25s ease-in-out;
            -moz-transition: .25s ease-in-out;
            -o-transition: .25s ease-in-out;
            transition: .25s ease-in-out;
        }


        .form-wrap .tabs h3 {
            float: left;
            width: 50%;
        }

            .form-wrap .tabs h3 a {
                padding: 0.5em 0;
                text-align: center;
                font-weight: 400;
                display: block;
                color: #999;
                border: 0;
            }

                .form-wrap .tabs h3 a.active {
                    color: #484848;
                    ;
                }

                    .form-wrap .tabs h3 a.active span {
                        padding-bottom: 4px;
                        border-bottom: 1px solid var(--bdbtm);
                    }

    .form-wrap .tabs-content {
        padding: 1.5em 3em;
        text-align: left;
        width: auto;
    }

.help-action {
    padding: .4em 0 0;
    font-size: var(--parafont);
    color: rgb(129, 129, 129);
}

.remember_me {
    color: rgba(34,46,64,1);
}

.form-wrap .tabs-content div[id$="tab-content"] {
    display: none;
}

.form-wrap .tabs-content .active {
    display: block !important;
}

.login .form-wrap form .input {
    margin: 0 0 .2em 0;
    padding: .75em 2em .75em 0;
    width: 100%;
    display: inline-block;
    background: transparent;
    border: 0;
    border-bottom: 1px solid var(--input);
    outline: 0;
    color: var(--link);
}

table .form-wrap form .input {
    margin: 0 0 .2em 0;
    /* padding: 5px 2em 5px 0; */
    width: 100%;
    display: inline-block;
    background: transparent;
    border: 0;
    border-bottom: 1px solid var(--input);
    outline: 0;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    color: inherit;
    font-family: 'Galano_Grotesque Regular', Arial, sans-serif;
    color: var(--link);
}

table .form-wrap form input[type=number] {
    margin: 0 0 0.2em 0;
    /* padding: 5px 2em 5px 0; */
    width: 100%;
    display: inline-block;
    background: transparent;
    border: 0;
    border-bottom: 1px solid var(--input);
    outline: 0;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    color: inherit;
    font-family: 'Galano_Grotesque Regular', Arial, sans-serif;
    color: var(--link);
}
.form-wrap form .remember_me {
    padding: 20px;
    visibility: hidden;
    text-align: left;
}

    .form-wrap form .remember_me:checked + label:after {
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
        filter: alpha(opacity=100);
        opacity: 1;
    }

.form-wrap form label .remember_me {
    position: relative;
    padding-left: 12px;
    cursor: pointer;
    color: rgba(34,46,64,1);
}

.form-wrap form label .checkmarks:before {
    position: absolute;
    width: 17px;
    height: 17px;
    top: 3px;
    left: -14px;
    content: '';
    border: 1px solid var(--input);
}

.form-wrap form label .checkmarks:after {
    position: absolute;
    top: 3px;
    left: -10px;
    width: 15px;
    height: 8px;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    filter: alpha(opacity=0);
    opacity: 0;
    content: '';
    background-color: transparent;
    border: solid var(--borderafter);
    border-width: 0 0 3px 3px;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.form-wrap .help-text {
    margin-top: .6em;
}

    .form-wrap .help-text p {
        text-align: left;
        font-size: var(--parafont);
    }

.fa {
    display: none;
}
/* MEDIUM VIEWPORT */
@media only screen and (min-width: 40em) {
    /* GLOBAL TRANSITION */
    * {
        transition: .25s ease-in-out;
    }
    /* WRAP */
    .wrap {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        width: 600px;
        height: 500px;
        margin: auto;
        border-radius: 10px;
    }
    /* LOGO */
    .logo {
        top: 10px;
        left: 10px;
        width: 40px;
        height: 40px;
        background: none;
    }

        .logo img {
            width: 100%;
        }

    @keyframes show_close {
        0% {
            opacity: 0;
            -webkit-transform: translate(-6px, -100px);
            -moz-transform: translate(-6px, -100px);
            -o-transform: translate(-6px, -100px);
            transform: translate(-6px, -100px);
        }

        100% {
            opacity: 1;
            -webkit-transform: translate(-6px, 18px);
            -moz-transform: translate(-6px, 18px);
            -o-transform: translate(-6px, 18px);
            transform: translate(-6px, 18px);
        }
    }
    /* TOGGLE WRAP */
    #toggle-wrap {
        top: 60px;
        right: calc(50% + 17px);
        height: 80px;
        overflow: hidden;
    }

        #toggle-wrap.closed {
            width: 50%;
        }
    /* TOGGLE TERMS */
    #toggle-terms {
        opacity: 1;
        -webkit-transform: translate(-6px, -100px);
        -moz-transform: translate(-6px, -100px);
        -o-transform: translate(-6px, -100px);
        transform: translate(-6px, -100px);
    }

        #toggle-terms.closed {
            opacity: 1;
            -webkit-transform: translate(-6px, 18px);
            -moz-transform: translate(-6px, 18px);
            -o-transform: translate(-6px, 18px);
            transform: translate(-6px, 18px);
        }

    /* SLIDESHOW */
    #slideshow h2 {
        margin: 4.5em 0 1em;
        font-size: 2em;
    }

        #slideshow h2 span {
            padding: 5px 0;
            border: solid var( --slideshowspan);
            border-width: 1px 0;
        }

    #slideshow p {
        display: block;
    }

    #slideshow div {
        -webkit-background-size: auto;
        -moz-background-size: auto;
        -o-background-size: auto;
        background-size: auto;
    }

    #slideshow .one {
        background-position: center 320px;
    }

    #slideshow .two {
        background-position: 50% 200%;
    }

    #slideshow .three {
        background-position: 50% 300%;
    }

    #slideshow .four {
        background-position: -40% -80%;
    }

    /* CONTENT */
    .content, .content.full {
        position: relative;
        float: left;
        width: 50%;
        height: 500px;
        -webkit-box-shadow: -3px 0px 45px -6px var(--darkshadow);
        -moz-box-shadow: -3px 0px 45px -6px var(--darkshadow);
        box-shadow: -3px 0px 45px -6px var(--darkshadow);
        border-radius: 10px 0 0 10px;
    }
    /* TERMS */
    .terms, .recovery {
        position: absolute;
        width: 50%;
        height: 440px;
        float: left;
        margin: 60px 0 0;
        -webkit-box-shadow: -3px 0px 45px -6px var(--darkshadow);
        -moz-box-shadow: -3px 0px 45px -6px var(--darkshadow);
        box-shadow: -3px 0px 45px -6px var(--darkshadow);
        border-radius: 0 0 0 10px;
    }

        .terms h2, .recovery h2 {
            max-width: 90%;
        }
    /* USER (FORM WRAPPER) */
    .user {
        padding-top: 0;
        float: left;
        width: 50%;
        height: 500px;
        -webkit-box-shadow: -3px 0px 45px -6px var(--darkshadow);
        -moz-box-shadow: -3px 0px 45px -6px var(--darkshadow);
        box-shadow: -3px 0px 45px -6px var(--darkshadow);
        border-radius: 0 10px 10px 0;
        border: 0;
    }

        .user .actions {
            margin: 0;
            text-align: right;
        }
    /* FORM ELEMENTS */
    .form-wrap {
        margin: 3em auto 0;
    }

        .form-wrap .tabs-content {
            padding: 1.5em 2.5em;
        }

    .tabs-content p {
        position: relative;
    }
    /* ARROW */
    .tabs-content .fa {
        position: absolute;
        top: 8px;
        left: -16px;
        display: block;
        font-size: .8em;
        color: #fff;
        opacity: .3;
        -webkit-transform: translate(0, 0);
        -moz-transform: translate(0, 0);
        -o-transform: translate(0, 0);
        transform: translate(0, 0);
        -webkit-transition: transform .3s .3s ease, opacity .6s .0s ease;
        -moz-transition: transform .3s .3s ease, opacity .6s .0s ease;
        -o-transition: transform .3s .3s ease, opacity .6s .0s ease;
        transition: transform .3s .3s ease, opacity .6s .0s ease;
    }

        .tabs-content .fa.active {
            -webkit-transform: translate(-3px, 0);
            -moz-transform: translate(-3px, 0);
            -o-transform: translate(-3px, 0);
            transform: translate(-3px, 0);
            opacity: .8;
        }

        .tabs-content .fa.inactive {
            -webkit-transform: translate(0, 0);
            -moz-transform: translate(0, 0);
            -o-transform: translate(0, 0);
            transform: translate(0, 0);
            opacity: .3;
        }
}
/* LARGE VIEWPORT */
@media only screen and (min-width: 60em) {
    /* WRAP */
    .wrap {
        width: 900px;
        height: 550px;
    }
    /* CONTENT */
    .content, .content.full {
        height: 550px;
    }

    .terms, .recovery {
        height: 490px;
    }
    /* SLIDESHOW */
    #slideshow h2 {
        margin: 3em 0 1em;
        font-size: 3em;
    }

    #slideshow .four {
        background-position: -82% -330%;
    }
    /* USER (FORM WRAPPER) */
    .user {
        height: 550px;
    }
    .form-wrap .tabs-content {
        padding: 1.5em 4.9em;
    }
}


/* CSS */
.element {
    opacity: 0.0;
    transform: scale(0.95) translate3d(0,100%,0);
    transition: transform 400ms ease, opacity 400ms ease;
}

    .element.active {
        opacity: 1.0;
        transform: scale(1.0) translate3d(0,0,0);
    }

    .element.inactive {
        opacity: 0.0;
        transform: scale(1) translate3d(0,0,0);
    }

a {
    text-decoration: none !important;
}

.borderbox {
    border: 1px solid var(--borderbox)  !important;
    padding: 8px 10px;
}

tbody td.borderbox {
    border-top: 0px;
    border-bottom: 0px;
}
/* RadioButton */
.containerss {
    display: block;
    position: relative;
    padding-left: 22px;
    cursor: pointer;
    font-size: var(--parafont);
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

    /* Hide the browser's default radio button */
    .containerss input {
        position: absolute;
        opacity: 0;
        cursor: pointer;
    }

/* Create a custom radio button */
.checkmark {
    position: absolute;
    top: 3px;
    left: 0;
    height: 18px;
    width: 18px;
    background-color: #eee;
    border-radius: 50%;
}

/* On mouse-over, add a grey background color */
.containerss:hover input ~ .checkmark {
    background-color: #ccc;
}

/* When the radio button is checked, add a blue background */
.containerss input:checked ~ .checkmark {
    background-color: var(--lightshade);
}

/* Create the indicator (the dot/circle - hidden when not checked) */
.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

/* Show the indicator (dot/circle) when checked */
.containerss input:checked ~ .checkmark:after {
    display: block;
}

/* Style the indicator (dot/circle) */
.containerss .checkmark:after {
    top: 4px;
    left: 4px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: white;
}

th.borderbox {
    color: #212529;
    min-height: 33px !important;
    max-height: 35px !important;
}

td.borderbox {
    color: rgba(34,46,64,1);
    min-height: 33px !important;
    max-height: 35px !important;
}

.text-darks {
    color: rgba(34,46,64,1);
    font-weight: bold;
    font-size: 1.25rem !important;
    line-height: 1.2;
}

.textcolored {
    color: rgba(34,46,64,1);
    padding: 5px;
}

.ft-15 {
    font-size: var(--parafont);
}

/* new checkbox */
.containereds {
    display: block;
    position: relative;
    padding-left: 20px;
    cursor: pointer;
    font-size: var(--parafont);
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    margin-top: 6px;
}

    /* Hide the browser's default checkbox */
    .containereds input {
        position: absolute;
        opacity: 0;
        cursor: pointer;
        height: 0;
        width: 0;
    }

/* Create a custom checkbox */
.checkmarked {
    position: absolute;
    top: 3px;
    left: 0;
    height: 15px;
    width: 15px;
    background-color: #eee;
}

/* On mouse-over, add a grey background color */
.containereds:hover input ~ .checkmarked {
    background-color: #ccc;
}

/* When the checkbox is checked, add a blue background */
.containereds input:checked ~ .checkmarked {
    background-color: var(--lightsidegrad1);
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmarked:after {
    content: "";
    position: absolute;
    display: none;
}

/* Show the checkmark when checked */
.containereds input:checked ~ .checkmarked:after {
    display: block;
}

/* Style the checkmark/indicator */
.containereds .checkmarked:after {
    left: 5px;
    top: 1px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}


/* header */
.header {
    background-color: white;
    padding: 8px 12px;
    height: 82px;
    box-shadow: rgba(0, 0, 0, 0.05) 0px 0px 0px 1px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

    .header .header-logo {
        height: 50px;
    }

.logOut {
    background-color: none;
    border: none;
    background: transparent;
}
/* Data Table from here */
table.dataTable tbody th, table.dataTable tbody td {
    padding: 16px 18px;
    border-color: #ffffff00;
}

.table.table-striped.table-bordered tbody tr td {
    border-bottom: 1px solid transparent !important;
}

.table.table-striped.table-bordered thead tr th {
    border-bottom: 2px solid transparent !important;
}

table.table.table-striped.table-bordered tbody tr:last-child {
    border-bottom: 1.5px solid #111 !important;
}

table#table_id {
    width: 100%;
    margin-top: 50px;
}

.todolists table#table_id {
    margin-top: 20px;
}

.dt-buttons button.dt-button {
    display: inline-block;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
    text-align: center;
    text-decoration: none;
    vertical-align: middle;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    background-color: transparent;
    border: 1px solid transparent;
    padding: 0.375rem 0.75rem;
    font-size: var(--parafont);
    border-radius: 0.25rem;
    transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
    color: #fff;
    background-color: #157347 !important;
    border-color: #157347 !important;
}
.dataTables_wrapper .dataTables_paginate .paginate_button.current, .dataTables_wrapper .dataTables_paginate .paginate_button.current:hover {
    background-image: none;
}

button.edit {
    background: transparent;
    outline: none;
    border: 0px;
    color: var(--btnbg);
}

.btn-success {
    background-color: var(--lightsidegrad2);
    border-color: var(--lightsidegrad2);
    width:fit-content !important;
}
.loader {
    border: 16px solid #f3f3f3; /* Light grey */
    border-top: 16px solid #3498db; /* Blue */
    border-radius: 50%;
    width: 120px;
    height: 120px;
    animation: spin 2s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.hide-loader {
    display: none;
}

.loader-style {
    display: inline-block;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    z-index: 999;
}

.load-section {
    filter: blur(2px);
}



/*MenuBar*/
.dropbtn {
    background-color: #198754;
    color: white;
    padding: 9px;
    font-size: var(--parafont);
    border: none;
    cursor: pointer;
    border-radius: 3px;
}

.dropdown {
    position: relative;
    display: inline-block;
    margin-left: 35px;
    margin-top: 15px
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 200px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
}

    .dropdown-content a {
        color: black;
        padding: 12px 16px;
        text-decoration: none;
        display: block;
    }

        .dropdown-content a:hover {
            background-color: #f1f1f1
        }

.dropdown:hover .dropdown-content {
    display: block;
}

.dropdown:hover .dropbtn {
    background-color: #3e8e41;
}

nav ul li a:hover {
    color: #fff;
}


nav ul li ul li a:hover {
    border-left: 4px solid #3498db;
}



#data {
    border: solid 2px blue;
    width: 100px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

    #data:hover {
        overflow: visible;
        white-space: normal;
        width: auto;
    }

.tr-position {
    position: unset !important;
}

/*New Style classes here*/
html {
    scroll-behavior: smooth;
    transition: 0.5s;
}

body {
    font-family: 'Galano_Grotesque Regular', Arial, sans-serif;
    color: #000;
    margin: 0 auto;
    padding: 0;
    font-weight: normal;
    font-style: normal;
    line-height: 1.5;
    text-align: left;
}

.btn-primary {
    color: #fff;
    background-color: #157347 !important;
    border-color: #157347 !important;
}

    .btn-primary, .btn-primary:hover {
        color: #fff;
        background-color: #157347;
        border-color: #157347;
    }

        .btn-check:focus + .btn-primary, .btn-primary:focus {
            color: #fff;
            background-color: #157347;
            border-color: #157347;
            box-shadow: 0 0 0 0.25rem rgb(60 153 110 / 50%);
        }

        .btn-check:active + .btn-primary:focus, .btn-check:checked + .btn-primary:focus, .btn-primary.active:focus, .btn-primary:active:focus, .show > .btn-primary.dropdown-toggle:focus {
            box-shadow: 0 0 0 0.25rem rgb(60 153 110 / 50%);
        }

.form-control:focus {
    box-shadow: 0 0 0 0.25rem rgb(60 153 110 / 50%);
    border-color: #157347;
}

.header {
    padding: 8px;
    margin-bottom: 30px;
    -webkit-box-shadow: inset 0px -1px 0px #f3f3f4;
    box-shadow: inset 0px -1px 0px #f3f3f4;
}

    .header .navbar .navbar-brand img {
        width: 95px;
    }

    .header .navbar .navbar-nav {
        display: flex;
        align-items: center;
    }

        .header .navbar .navbar-nav .nav-item a {
            font-style: normal;
            font-weight: 500;
            font-size: 16px;
            line-height: 27px;
            margin: 0 5px;
        }

    .header .banner-text-cover {
        max-width: 700px;
    }

    .header .banner-subheading,
    .header .emaillogin {
        max-width: 580px;
    }

    .header .banner-text-cover h1.banner-heading {
        font-family: 'Galano_Grotesque Bold';
        font-style: normal;
        font-weight: bold;
        font-size: 70px;
        line-height: 99px;
    }

    .header .banner-subheading {
        font-style: normal;
        font-weight: 500;
        font-size: 20px;
        line-height: 30px;
        letter-spacing: -0.3px;
        color: #000000;
    }

    .header .bannercontent {
        margin: 85px 0 8px 0;
    }

    .header li.nav-item {
        margin: 0px;
    }

.cardParatext {
    font-size: var(--parafont);
    line-height: normal;
}

.header input {
    width: 100%;
    height: 40px;
    border-radius: 30px;
    outline: none;
    padding: 0 50px 0 20px;
    box-shadow: 0px 0px 4px rgba(231, 162, 162, 0.08);
    position: relative;
}

.header .emaillogin .user input::placeholder {
    color: #000;
    font-size: var(--parafont);
}


.header button.btn.btn-primary.searchbtn {
    position: absolute;
    right: 0;
    border-radius: 0px 30px 30px 0px;
    padding: 7px 23px;
}

.header img.sideimgs {
    width: 850px;
}

.header img.app {
    width: 226px;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.header i.fas.fa-bell {
    margin: 0 15px;
    font-size: 20px;
    color: rgba(0, 0, 0, .55);
}

.header button.profile {
    background: transparent !important;
    border: 0px !important;
    font-size: 20px;
    color: rgba(0, 0, 0, .55);
}

.tiles svg.tilesImg {
    width: 40px;
    color: #157347;
    fill: #157347;
}

.card.tilescards:hover {
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.dropdown-item.active, .dropdown-item:active {
    background-color: #157347;
}

table.dataTable.no-footer {
    border-top: 1px solid #dee2e6;
    margin-top: 50px;
}

.pl-5 {
    padding-left: 3rem;
}



.mb-80 {
    margin-bottom: 130px;
}

.pb-22 {
    padding-bottom: 22px;
}

.mobileview {
    display: none;
}

.menus {
    width: 100%;
}

th, td {
    font-size: 12px;
}

.table.table-striped.table-bordered.dataTable.no-footer {
    overflow-x: auto;
}


/* checkbox aspect */
input[type="text"] {
    width: 100%;
    height: 32px;
    border-radius: 3px;
    outline: none;
    padding: 0 2px 0 5px;
    box-shadow: 0px 0px 4px rgb(231 162 162 / 8%);
    position: relative;
    border: 1px solid #aaa;
}

.without_search .dataTables_length, .without_search .dataTables_filter {
    display: none;
}

.without_search table.dataTable.no-footer {
    margin-top: 20px;
}

.actions {
    border: 0px !important;
    background: transparent !important;
}

table.table.table-striped.table-bordered, .smalltables {
    overflow-x: auto;
}

.dataTables_wrapper {
    position: initial !important;
}

.dataTables_length, .dataTables_filter {
    position: inherit !important;
}

.dataTables_length {
    left: 15px;
}

.dataTables_filter {
    right: 15px;
}
.todomobile{
    display:none;
}

@media (min-width: 1200px) {
    .container {
        max-width: 100% !important;
    }
}

@media (min-width: 1600px) {
    .container {
        max-width: 100%;
    }
}

@media (min-width: 1750px) {
    .container {
        max-width: 100%;
    }
}

@media screen and (max-width:1600px) {
    .dataTables_wrapper {
        overflow-x: auto;
    }

    .header img.sideimgs,
    .contentsection .contentimagesone,
    .featuresection .featuresimagesone,
    .advertisesection .advertiseimg {
        width: 500px;
    }

    .header .banner-text-cover h1.banner-heading {
        font-size: 35px;
        line-height: 52px;
    }

    .header .bannercontent {
        margin: 65px 0 8px 0;
    }

    .header img.app,
    .advertisesection img.app {
        width: 180px;
    }

    .mb-80 {
        margin-bottom: 50px;
    }

    .header .banner-text-cover {
        max-width: 520px;
    }



    .header .banner-subheading {
        font-size: 14px;
        line-height: 21px;
        margin-bottom: 12px;
    }

    .navbar {
        padding: 0px;
    }

    .header .emaillogin i {
        top: 43px;
    }

    .advertisesection .emaillogin .user input::placeholder {
        color: #000;
        font-size: var(--parafont);
        line-height: normal;
        padding: 8px 5px;
    }
}

@media screen and (max-width:992px) {
    .mtm-2 {
        margin-top: 15px;
    }

    .navbar-brand {
        margin: 0px;
    }

    .tilescards {
        margin-bottom: 15px;
    }

    .desktop {
        display: none !important;
    }

    .mobileview {
        display: block;
    }



    .navbar > .container,
    .navbar > .container-fluid,
    .navbar > .container-lg,
    .navbar > .container-md,
    .navbar > .container-sm,
    .navbar > .container-xl,
    .navbar > .container-xxl {
        justify-content: space-between;
    }

    .header {
        background-image: none;
        padding: 15px 0;
    }

        .header img.sideimgs,
        .contentsection .contentimagesone,
        .featuresection .featuresimagesone,
        .advertisesection .advertiseimg {
            width: 500px;
            margin-bottom: 30px;
        }

        .header .navbar .navbar-nav {
            align-items: flex-start;
        }

        .header li.nav-item {
            margin: 0;
        }

    .navbar-light .navbar-nav .nav-link.active,
    .navbar-light .navbar-nav .show > .nav-link i {
        color: #157347;
    }

    .navbar-light .navbar-nav .nav-link i.active {
        color: #157347;
    }

    .header .navbar .navbar-nav .nav-item a:hover {
        color: #157347;
    }

    .header .navbar .navbar-nav .nav-item a {
        text-align: left;
        margin: 0;
        padding: 0;
        margin-bottom: 25px;
    }

    .header img.sideimgs {
        margin: 30px 0;
    }

    .header .banner-text-cover {
        max-width: 100%;
    }

        .header .banner-text-cover h1.banner-heading {
            font-size: 50px;
            line-height: 77px;
        }

    .header .banner-subheading {
        font-size: 20px;
        line-height: 30px;
        margin-bottom: 12px;
    }

    .header .banner-subheading,
    .header .emaillogin {
        max-width: 700px;
    }

    .advertisesection {
        padding: 230px 0;
    }

    .header .d-flex.mt-4 {
        justify-content: center;
    }

    .header img.app,
    .advertisesection img.app {
        width: 230px;
    }

    div.dt-buttons {
        margin-top: 15px !important;
    }
    .tododesktop{
        display:none;
    }
    .todomobile {
        display: block;
    }

    /* 
	
	temporary disable form by mattias
	
	*/
	
	.tododesktop.todoforms{
        display:none;
    }
    .todomobile.todoforms {
        display: block;
    } 
}

#profileImage {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #512DA8;
    font-size: 15px;
    color: #fff;
    text-align: center;
    padding: 5px;
    overflow: hidden;
}
@media screen and (max-width:576px) {

    .dataTables_length label {
        display: none;
    }

    .header {
        background-image: none;
        padding: 15px 0;
    }

        .header .bannercontent {
            margin: 15px 0;
        }

        .header img.sideimgs {
            width: 300px;
            margin-left: auto;
            margin-right: auto;
            display: flex;
            margin-top: 30px;
        }


    .pl-5 {
        padding-left: 15px;
    }


    .header .emaillogin .user .btn-signupnow.mobile {
        display: block;
        right: 19px;
        top: 40px;
        padding: 5px 12px;
        font-size: 12px;
    }

    .advertisesection .emaillogin .user .btn-signupnow.mobile {
        display: block;
        right: 5px;
        top: 40px;
        padding: 5px 12px;
        font-size: 12px
    }

    .header img.app,
    .advertisesection img.app {
        width: 150px;
    }

    .header .banner-text-cover h1.banner-heading,
    .contentsection .content-text-cover h1.content-heading {
        font-size: 28px;
        line-height: 36px;
    }



    .header .banner-subheading {
        font-size: 15px;
        line-height: 22px;
    }


    .header img.sideimgs,
    .contentsection .contentimagesone,
    .featuresection .featuresimagesone,
    .advertisesection .advertiseimg {
        width: 320px;
    }

    .offcanvas-start {
        max-width: 320px;
    }

    .advertisesection .container {
        top: -66px;
    }
}


.col-md-3 {
    position: relative;
}

.collapse.navbar-collapse {
    margin-top: 20px;
}

.navbar {
    display: flex;
    flex-wrap: wrap;
}

.navbar-light .desktop .navbar-brand {
    width: 100%;
}

.nav-link {
    padding: 0.5rem 2rem !important;
    outline: none !important;
}

    .nav-link:first-child {
        padding-left: 0px !important;
    }

.profile.nav-link.fw-bold {
    font-size: 16px !important;
    line-height: 27px !important;
    margin: 0 5px !important;
}
.todoforms{
    background-color:
}

.header .dropdown-menu[data-bs-popper] {
    left: auto;
}

.header {
    height: auto !important;
}

.navbar .desktop {
    flex-wrap: wrap !important;
}

tr:hover {
    background-color: lightgray !important;
    cursor: pointer !important;
}

.summary .dataTables_length, .summary .dataTables_filter {
    position: initial !important;
    margin-bottom: 15px;
}

.header .dropdown {
    margin-left: 10px !important;
}

table {
    border-bottom: 1px solid #111 !important;
}

    table thead {
        border-bottom: 1px solid #111 !important;
    }

    table tbody tr:nth-child(odd) {
        background-color: rgba(0, 0, 0, 0.05);
    }

    table.dataTable tbody tr:nth-child(odd) {
        background-color: rgba(0, 0, 0, 0.05) ;
    }

    table.dataTable thead tr th {
        border: 1px solid rgba(0, 0, 0, 0.05) !important;
        padding: 8px 10px !important;
    }

    table.dataTable tbody tr td {
        border: 1px solid rgba(0, 0, 0, 0.05) !important;
        border-top: 0px !important;
        border-bottom: 0px !important;
        padding: 8px 10px !important;
    }
    /*New Style classes here*/
    table.dataTable thead th, table.dataTable tfoot th {
        font-weight: 600 !important;
    }

    table thead th, table tfoot th {
        font-weight: 600 !important;
    }

h3 {
    font-size: 1.25rem !important;
    font-weight: bolder;
}

.header .dropdown-item {
    display: block;
    width: 100%;
    padding: 0.25rem 1rem;
    clear: both;
    font-weight: 400;
    color: #212529;
    text-align: inherit;
    text-decoration: none;
    white-space: nowrap;
    background-color: transparent;
    border: 0;
}

ul.dropdown-menu.show .nav-link {
    padding: 4px 16px !important;
    font-weight: 500 !important;
}

    ul.dropdown-menu.show .nav-link:focus, ul.dropdown-menu.show .nav-link:hover {
        background-color: #157347;
        color: white !important;
        border: 0px !important;
    }

.form-control {
    max-height: 32px !important;
    border-radius: 3px !important;
    margin:0px;
}

i.fa.fa-file.details {
    color: #157347 !important;
    font-size: 22px;
}
.todomobile h2.headeingTodo {
    color: #323742;
    font-size: 2em;
}
.todomobile .haedings i {
    color: #b1afaf;
    font-size:18px;
    cursor:pointer;
}
.tagsDesigns {
    width: 100px;
    height: 25px;
    border-radius: 35px;
    margin-top: 8px;
  
}
    .tagsDesigns.tagsDesignsImp {
        background-color: antiquewhite;
    }

    .tagsDesigns.tagsDesignsOrange {
        background-color: orange;
    }
    .tagsDesigns.tagsDesignsMed {
        background-color: yellow;
    }
    .tagsDesigns.tagsDesignsnormal {
        background-color: green;
    }
.todomobile h4.subHeading {
    font-size: 20px !important;
    color: #323742;
    font-weight: 700;
    margin-bottom: 15px;
    margin-top: 15px;
}
.ProfileImg{
    width:50px;
    height:50px;
    border-radius:50%;
}
    .ProfileImg img {
        object-fit: cover;
        overflow: hidden;
        object-position: 50% 50%;
        width: 30px;
        height: 30px;
        border-radius: 50%;
    }




.bottom-footers p {
    margin-right: 15px;
    font-size:18px;
    color: #323742;
    margin-bottom:0px;
    font-weight:700;
}
    .bottom-footers p i {
        font-size: 18px;
    }
.custoemAddbutton {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: #157347;
    border: 0px;
    outline: none;
    color: white;
    position: fixed;
    z-index: 99999;
    bottom: 30px;
    right: 30px;
}
    .custoemAddbutton:hover, .custoemAddbutton:focus {
        background: #1b543a;
    }
.mobileLabeldesign {
    font-size: 20px;
    font-weight: 600;
    color: #323742;
    margin-bottom: 6px;
}
.todoforms {
    background-color: #f3f3f3;

}
.todomobile textarea.input.form-control, .todomobile input.input.form-control{
    border: 0px;
    border-bottom: 2px solid #b7b7b7ee;
    border-radius: 0px;
}
    .todomobile textarea.input.form-control{
        min-height:100px;
    }
    .todomobile textarea.input.form-control:focus, .todomobile input.input.form-control:focus {
        box-shadow: none;
        border-color: #6e6d6dee;
    
        }
.customemargins{
    margin-bottom:35px;
}
i.editIcons {
 
    width: 40px;
    height: 40px;
    padding: 10px;
    border-radius: 50%;
    color: white !important;
    background: #157347;
}

.formdesignsMobile .card.tilescards.p-3 {
    margin: auto -15px 15px -15px;
}
.iconsTodoForm i{
    font-size:20px;
    margin-right:15px;
}
.setupdeatils{
    margin-bottom:30px;
}
th.borderbox,td.borderbox b {
    font-size: 16px !important;
}
td.borderbox label {
    font-size: var(--paratext) !important;
}
h4.card-title, h5.card-title b{
    font-size: 1.25rem !important;
}
h6.card-title b {
    font-size: 18px !important;
}
.markstotall h5.card-title b {
    font-size: 16px !important;
    margin-bottom:0.8rem !important;
}
.markstotall h5.card-title.mb-3 {
    margin-bottom: 0.6rem !important;
}

.modal-backdrop.show  {
    display: none !important;
}

#timeline .container {
    width: 100%;
    margin: 0 auto;
}
#timeline .gantt-container{
    position: relative;
    display: flex;
    flex-direction: column;
    min-width: 0;
    word-wrap: break-word;
    background-color: #fff;
    background-clip: border-box;
    
    border-radius: .75rem;
}

/* custom class */
#timeline .gantt .bar-milestone .bar {
    fill: tomato;
}


#timeline .btn-light:not(:disabled):not(.disabled):active, #timeline .btn-default:not(:disabled):not(.disabled):active, #timeline .btn-light:not(:disabled):not(.disabled).active, #timeline .btn-default:not(:disabled):not(.disabled).active, #timeline .show>.btn-light.dropdown-toggle, #timeline .show>.dropdown-toggle.btn-default {
    color: #192734;
    background-color: #dde3e3;
    border-color: #d6dddd;
}
#timeline .btn-light, #timeline .btn-default {
    color: #192734;
    background-color: #f9fafa;
    border-color: #f9fafa;
}

#timeline .mt-3, #timeline .my-3 {
    margin-top: .75rem !important;
}
#timeline .btn-group, #timeline .btn-group-vertical {
    position: relative;
    display: inline-flex;
    vertical-align: middle;
    margin-bottom: 20px;
}

#timeline .gantt{
	max-width:1680px;
}
.newLocation i{
    color: #323742;
    font-size:24px;
}
.ProfileImg {
    width: 60px;
    justify-content: space-between;
}

#locationIcon {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #512DA8;
    font-size: 18px;
    color: #fff;
    text-align: center;
    padding: 0px;
    overflow: hidden;
}
.calculusPage h6.card-title.mb-3, .calculusPage h6.card-title.mb-3 b {
    font-size: 16px !important;
}
h6.card-title.mb-3.headingTitleThird b {
    font-size: 15px !important;
}
.markstotall h5.card-title b {
    font-size: 15px !important;
}
.dataTables_wrapper.no-footer{
    font-size:var(--parafont) !important;
}
.card.formcard label.mt-2 {
    font-size: var(--parafont) !important;
}
select {
    font-size: var(--parafont) !important;
    min-height:32px;
}
input[type="text"], input[type="date"], input[type="number"] {
    font-size: var(--parafont) !important;
}
.select2-container .select2-selection--single {
   min-height:32px;
}
.checkboxOption label {
    font-size: var(--parafont) !important;
}
label {
    font-size: var(--parafont) !important;
}
.btn {
    font-size: var(--parafont) !important;
}
.dropdown.dropstart button.profile {
    font-size: var(--parafont) !important;
}
.customeUserIcon{
    font-size:22px;
    margin-right:5px;
}
nav.navbar.navbar-expand-lg.navbar-light button.profile {
    display: flex;
    align-items: center;
}
.multiselect-container .multiselect-all {
    padding: 0px !important;
}
.multiselect-container > li > a > label {
    padding: 3px 20px 3px 10px !important;
}
.bgcolored{
    background-color:#eee;
}
.tokenfield form-control{
    position:relative;
}
input.token-input.valid {
    max-width: 100px !important;
}

.controlNavigationToggle {
    display: none;
    transition: 0.2s all;
}


/*#donut-chart .bb-arcs-NY .bb-arc-NY, .bb-legend-item-NY .bb-legend-item-tile {
    fill: #acb9ff !important;
}
#donut-chart .bb-legend-item-NY .bb-legend-item-tile {
    stroke: #acb9ff !important;
}
#donut-chart .bb-arcs-Bestalid .bb-arc-Bestalid {
    fill: #abffbd !important;
}
#donut-chart .bb-legend-item-Bestalid .bb-legend-item-tile {
    stroke: #abffbd !important;
}
#donut-chart .bb-arcs-Paborjad .bb-arc-Paborjad {
    fill: #ffebab !important;
}
#donut-chart .bb-legend-item-Paborjad .bb-legend-item-tile {
    stroke: #ffebab !important;
}
#donut-chart .bb-arcs-Forfalien .bb-arc-Forfalien {
    fill: #ffabb5 !important;
}
#donut-chart .bb-legend-item-Forfalien .bb-legend-item-tile {
    stroke: #ffabb5 !important;
}*/

.progress .bar_colr-1 {
    background-color: #acb9ff !important;
    border-left: 2px solid #ccc;
}
.progress .bar_colr-2 {
    background-color: #abffbd !important;
    border-left: 2px solid #ccc;
}
.progress .bar_colr-3 {
    background-color: #ffebab !important;
    border-left: 2px solid #ccc;
    border-right: 2px solid #ccc;
}
.progress-bar-data-list .progress {
    height: 2rem;
    border-radius: 0;
    
}
.progress-bar-data-list td {
    padding: 0 !important;
}
td.data-list {
    width: 15%;
    border-left: 2px solid #ccc;
}
td.data-list-custom {
    width: 70%;
}
.desktop .my-account {
    border: 1px solid rgba(0,0,0,.125);
    padding: 4px 10px;
    display: flex;
    align-items: center;
    font-size: 16px !important;
    line-height: 27px !important;
    margin: 0 5px !important;
    background: none;
    font-weight: 700;
    color: rgba(0,0,0,.7);
    border-radius: .25rem;
}
.my-account i {
    margin-left:6px;
}
.bg-cutom-1 {
    background: #e8ecff;
    margin-right: 10px !important;
    border-radius: .25rem;
    padding: 8px;
}
.bg-cutom-2 {
    background: #fff4d0;
    margin-right: 10px !important;
    border-radius: .25rem;
    padding: 8px;
}
.bg-cutom-3 {
    background: #cff3d7;
    border-radius: .25rem;
    padding: 8px;
}
.custom-accordin:after {
    display:none;
}
.custom-accordin .accordion-button {
    padding:0 !important;
}


.dropdown-menu ul {
    font-family: 'Galano_Grotesque Regular', Arial, sans-serif !important;
    font-size: 12px;
    font-style:normal;
    transform: none;
    word-wrap: break-word;
    color:black;
}
.inner.show {
    overflow-x:hidden;
}

/*.filter-option-inner-inner {*/
    /* Hide the "Nothing selected" text */
    /*display: none;
}*/

#searchInput {
            width: 100%;
            padding: 10px;
            font-size: 16px;
        }

        /* Style the search results */
        #searchResults {
            list-style-type: none;
            padding: 0;
            margin-top: 5px;
            border: 1px solid #ccc;
            height: 100%;
            overflow-y: auto;
        }

        #searchResults li {
            padding: 10px;
            border-bottom: 1px solid #eee;
        }

        #searchResults li:last-child {
            border-bottom: none;
        }

        #searchResults li a {
            text-decoration: none;
            color: #333;
            display: block;
        }

        #searchResults li a:hover {
            background-color: #f0f0f0;
        }          
.modal {
    display: none; 
    position: fixed; 
    z-index: 1; 
    left: 0;
    top: 0;
    width: 100%; 
    height: 100%; 
    background-color: rgba(0, 0, 0, 0.5); 
}

.modal-content {
    background-color: #fefefe;
    padding: 20px;
    border: 1px solid #888;
    width: auto; 
    max-width: 95vw; 
    min-width: 300px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2); 
    border-radius: 10px; 

    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); 
}

/* Specific styling for search modal to prevent line breaks */
#searchModal .modal-content {
    width: 80vw !important; /* Default 80% of viewport width */
    height: auto !important; /* Let height grow with content */
    max-width: 95vw !important;
    min-width: 400px !important;
}

#searchModal #searchResults {
    max-width: 100% !important;
    overflow-x: auto;
}
.modal-content ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}
#searchModal .search-modal-header {
    font-family: 'Galano_Grotesque Regular', Arial, sans-serif !important;
    color: rgba(0, 0, 0, .7) !important;
    text-align: left !important; /* Changed from center to left */
    margin-top: 20px !important;
    margin-bottom: 10px !important;
    font-size: 18px !important;
    white-space: nowrap !important;
    cursor: pointer !important;
    padding: 10px !important;
    background-color: #f8f9fa !important;
    border: 1px solid #dee2e6 !important;
    border-radius: 5px !important;
    transition: background-color 0.2s !important;
    position: relative !important;
    display: flex !important; /* Use flexbox for better layout control */
    justify-content: space-between !important; /* Space between text and icon */
    align-items: center !important; /* Center vertically */
}

#searchModal .search-modal-header:hover {
    background-color: #e9ecef !important;
}

#searchModal .search-modal-header .toggle-icon {
    font-size: 14px !important;
    transition: transform 0.2s !important;
    /* Remove float: right since we're using flexbox now */
}

#searchModal .search-modal-header.expanded .toggle-icon {
    transform: rotate(90deg) !important;
}

#searchModal .search-modal-header .item-count {
    color: #6c757d !important;
    font-size: 14px !important;
    font-weight: normal !important;
    margin-left: 8px !important; /* Add some space between title and count */
}

#searchModal .search-modal-header .header-text {
    display: flex !important;
    align-items: center !important;
}

.search-section {
    margin-bottom: 15px;
}

#searchModal .search-section ul {
    display: none !important; /* Start with all sections collapsed */
    margin-top: 10px;
    list-style-type: none;
    padding: 0;
    margin: 0;
}

#searchModal .search-section.expanded ul {
    display: block !important;
}

/* Search results styling to prevent wrapping */
#searchResults li {
    margin-bottom: 5px;
}

#searchResults li a {
    display: block;
    text-decoration: none;
    color: #333;
    padding: 5px;
    border-radius: 3px;
}

#searchResults li a:hover {
    background-color: #f0f0f0;
}

/* Loading spinner for search modal */
.search-spinner {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 60px 40px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 12px;
    margin: 20px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    border: 1px solid rgba(76, 175, 80, 0.1);
}

.search-spinner .spinner {
    width: 50px;
    height: 50px;
    border: 4px solid transparent;
    border-radius: 50%;
    background: conic-gradient(from 0deg, #4CAF50, #81C784, #4CAF50);
    animation: spin 1.2s linear infinite;
    position: relative;
    margin-bottom: 20px;
    filter: drop-shadow(0 2px 4px rgba(76, 175, 80, 0.3));
}

.search-spinner .spinner::before {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    right: 2px;
    bottom: 2px;
    background: #fff;
    border-radius: 50%;
    box-shadow: inset 0 2px 8px rgba(0,0,0,0.1);
}

.search-spinner p {
    margin: 0;
    color: #2e7d32;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.5px;
    animation: pulse 1.5s ease-in-out infinite;
    text-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

.search-spinner span {
    font-size: 12px !important;
    color: #666 !important; 
    margin-top: 8px !important;
    opacity: 0.8 !important;
    text-align: center;
    font-style: italic;
    animation: fadeInOut 2s ease-in-out infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes pulse {
    0%, 100% { 
        opacity: 0.8;
        transform: scale(1);
    }
    50% { 
        opacity: 1;
        transform: scale(1.02);
    }
}

@keyframes fadeInOut {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 0.9; }
}

.close {
    position: absolute;
    top: -5px;
    right: 5px;
    color: #aaa;
    font-size: 28px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}      