﻿
@font-face {
    font-family: 'Poppins-Light';
    src: url('../fonts/Poppins-Light.ttf') format("truetype"); /*Make sure your file location is right */
}

@font-face {
    font-family: 'Poppins-Medium';
    src: url('../fonts/Poppins-Medium.ttf') format("truetype"); /*Make sure your file location is right */
}

@font-face {
    font-family: 'Poppins-Bold';
    src: url('../fonts/Poppins-Bold.ttf') format("truetype"); /*Make sure your file location is right */
}

@font-face {
    font-family: 'Poppins-Regular';
    src: url('../fonts/Poppins-Regular.ttf') format("truetype"); /*Make sure your file location is right */
}

@font-face {
    font-family: 'Poppins-SemiBold';
    src: url('../fonts/Poppins-SemiBold.ttf') format("truetype"); /*Make sure your file location is right */
}

@font-face {
    font-family: 'Urbanist';
    src: url('../fonts/Urbanist-VariableFont_wght.ttf') format("truetype"); /*Make sure your file location is right */
}

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}


html {
    overflow: scroll;
    overflow-x: hidden;
}

::-webkit-scrollbar {
    width: 0; /* Remove scrollbar space */
    background: transparent; /* Optional: just make scrollbar invisible */
}
/* Optional: show position indicator in red */
::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background-color: #F4FF8F;
}

body {
    font-family: Poppins-Regular, sans-serif;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    margin: 0;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    background-color: #292929;
}

h1, h2, h3, h4 {
    font-family: Urbanist;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: #F5EDE0;
    margin:0;
}

a{
    text-decoration:none !important;
}


h1 {
    font-size: 56px;
    font-weight: 400;
    line-height: 64px;
}

#body-container {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.roix-container {
    margin: 0 auto;
    width: 100%;
    max-width: 1440px;
    padding: 0 120px;
}

@media (max-width: 1200px){
    .roix-container {
        padding: 0 40px;
    }
}

@media (max-width: 744px) {
    .roix-container {
        padding: 0 20px;
    }
}

/*HEADER START*/
header {
    padding: 12px 32px;
}

    header .navigation-bar {
        max-width: 1440px;
        margin: 0 auto;
        height: 56px;
        padding: 0 32px;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

        header .navigation-bar .nav-logo {
        }
        header .navigation-bar .nav-links, header .nav-links {
            width: 50%;
            display: flex;
            gap: 23px;
            align-items: center;
            justify-content: center;
        }

            header .navigation-bar .nav-links .btn-x {
                display: none;
            }

            header.nav-links a:link, header .nav-links a:visited,
            header .navigation-bar .nav-links a:link, header .navigation-bar .nav-links a:visited {
                font-family: Poppins-Light;
                font-size: 14px;
                font-weight: 300;
                line-height: 20px;
                color: #F6EDE0;
                /*transition: all 0.5s;*/
            }
            header .nav-links a:active, header .nav-links a:hover, header .nav-links a.selected,
            header .navigation-bar .nav-links a:active, header .navigation-bar .nav-links a:hover, header .navigation-bar .nav-links a.selected {
                color: #F4FF8F
            }

            header .navigation-bar .nav-buttons{
                display:flex;
                gap:12px;
                justify-content:right;
            }



/*MENU BUTTONS START*/
button.menu {
    min-width: 24px;
    height: 24px;
    background-image: url(Images/roix/defaults/menu/main.svg);
    border:none;
    background-color:inherit;
    margin:auto 0;
    display:none;
}
    button.menu:hover {
        background-image: url(Images/roix/defaults/menu/main-hover.svg);
    }
/*MENU BUTTONS END*/

#header-user-profile2 {
    display: none;
}


@media (max-width: 1200px) {

    header .navigation-bar {
        height: auto;
        flex-wrap: wrap;
        padding:0;
    }

        header .navigation-bar .nav-links {
            display:none;
          
        }

        header .navigation-bar.mv-show .nav-links {
            display: flex;
            content: "";
            position: fixed;
            top: 0;
            right: 0;
            width: 420px;
            height: 100vh;
            order: 3;
            background-color: #292929;
            z-index: 20;
            flex-direction: column;
            justify-content: flex-start;
            padding: 144px 40px;
            gap: 40px;
            align-items: start;
        }

            header .navigation-bar.mv-show .nav-links a, header .navigation-bar.mv-show .nav-links a:link {
                font-family: Urbanist;
                font-weight: 400;
                font-size: 32px;
                line-height: 40px;
                color: #F6EDE0;
            }
                header .navigation-bar.mv-show .nav-links a:active, header .navigation-bar.mv-show .nav-links a:hover, header .navigation-bar.mv-show .nav-links a.selected {
                    color: #F4FF8F
                }

            header .navigation-bar.mv-show .nav-links a, header .navigation-bar.mv-show .nav-links button {
                z-index: 20;
            }

            header .navigation-bar.mv-show .nav-links::before {
                content: "";
                position: fixed;
                top: 0;
                left: 0;
                width: 100%;
                height: 100vh;
                background-color: #292929;
                opacity: 75%;
                z-index: 10;
            }


            header .navigation-bar.mv-show .nav-links .btn-x {
                position: fixed;
                top: 20px;
                right: 20px;
                display: block;
            }



        header .navigation-bar .nav-buttons {
            width: 70%;
        }
    button.menu{
        display:block;
    }

    #header-register-btn{
        width:187px;
    }
}

@media (max-width: 774px){
    header {
        padding: 12px 20px;
    }

    header img.roix-logo {
        width:107px;
        height:32px;
    }

        header .navigation-bar.mv-show .nav-links {
            padding: 148px 20px;
            gap: 32px;
            width: 280px;
        }

            header .navigation-bar.mv-show .nav-links a, header .navigation-bar.mv-show .nav-links a:link {
                font-size: 24px;
                line-height: 24px;
            }

        #header-user-profile {
            display: none;
        }

    #header-user-profile2 {
        display: block;
        font-size: 16px;
        line-height: 24px;
        position:absolute;
        bottom:20px;
        right:20px;
    }

    header .navigation-bar .nav-buttons {
        width: auto;
    }

    #header-register-btn {
        width: auto;
        padding-left:40px;
        padding-right:40px;
    }

}


@media (max-width: 500px){

    header .navigation-bar #header-register-btn{
        padding:16px 12px;
    }

    header .navigation-bar #header-register-btn::after {
        display: none;
    }
}

@media (max-width: 400px) {
    header .navigation-bar #header-register-btn {
        padding: 16px 5px;
    }
}
/*HEADER END*/
/*SUBHEADER START*/
.page-title-section {
    margin: 40px 0;
    display: flex;
    gap: 40px;
    position: relative;
}

        .page-title-section.space-between {
            justify-content: space-between;
        }

        .page-title-section .page-title-section--button {
            margin-top: 8px;
        }

        .page-title-section .page-title-section--navs {
            display: flex;
            gap: 12px;
            align-items: center;
        }

@media (max-width: 1200px){
    .page-title-section {
        margin: 32px 0;
    }

    .page-title-section.space-between {
        justify-content: unset;
        display: flex;
        flex-direction: column; 
    }
}

@media (max-width: 744px) {
    .page-title-section--navs {
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        min-width: 0;
    }

        .page-title-section--navs::-webkit-scrollbar {
            display: none;
        }

    h1 {
        font-size: 32px;
        line-height: 40px;
    }
}


/*SUBHEADER END*/
footer {
    max-width: 1440px;
    margin: 0 auto;
    padding: 120px 120px 32px;
}

        footer .footer-main {
            display: flex;
            justify-content: space-between;
        }

            footer .footer-main .footer-links {
                display: flex;
                gap: 16px;
                margin-bottom: 56px;
            }

            footer .footer-main .footer-links .dropdown input {
                display: none;
            }

            footer .footer-links .dropdown label {
                cursor: default;
                display: block;
                font-size: 16px;
                font-weight: 500;
                color: #fff;
            }

                footer .footer-links .dropdown label .arrow {
                    display: none;
                }

                footer .footer-main .footer-links .sublinks {
                    display: flex;
                    flex-direction: column;
                    gap: 32px;
                    width: 187px;
                    font-family: Poppins-Light;
                    font-size: 14px;
                    font-weight: 300;
                    line-height: 20px;
                    text-align: left;
                    text-underline-position: from-font;
                    text-decoration-skip-ink: none;
                    color: #fff;
                }

                    footer .footer-main .footer-links .sublinks .subheader {
                        font-family: Poppins-Medium;
                        font-size: 16px;
                        font-weight: 500;
                        line-height: 24px;
                    }

                    footer .footer-main .footer-links .sublinks a:link, footer .footer-main .footer-links .sublinks a:visited {
                        color: #fff;
                        text-decoration: none;
                    }

                    footer .footer-main .footer-links .sublinks a:hover, footer .footer-main .footer-links .subheader a:active {
                        color: #F4FF8F;
                    }

                    footer .footer-main .footer-links .sublinks img {
                        width: 20px;
                        height: 20px;
                        margin-right: 12px;
                    }

        footer .footer-description {
            font-family: Poppins-Light;
            font-size: 12px;
            font-weight: 300;
            line-height: 16px;
            text-align: left;
            text-underline-position: from-font;
            text-decoration-skip-ink: none;
            color: #9E9DA8;
            margin-bottom: 16px;
        }

        footer .footer-copyrights {
            font-family: Poppins-Light;
            font-size: 14px;
            font-weight: 300;
            line-height: 20px;
            text-align: left;
            text-underline-position: from-font;
            text-decoration-skip-ink: none;
            color: #fff;
        }


    .roix-logo {
        height: 40px;
        width: 134px;
        cursor: pointer;
    }

@media (max-width: 1200px) {
    footer {
        padding: 80px 40px 20px;
    }

        footer .footer-main {
            flex-direction: column;
            align-items: flex-start;
        }

            footer .footer-main .footer-logo {
                margin-bottom: 40px;
            }

            footer .footer-main .footer-links {
                width: 100%;
                justify-content: space-between;
                margin-bottom: 40px;
            }

                footer .footer-main .footer-links .sublinks {
                    width:166px;
                }
}

@media (max-width: 774px) {
    footer {
        padding: 56px 20px 20px;
    }

        footer .footer-main {
            flex-direction: column;
            align-items: flex-start;
        }

            footer .footer-main .footer-logo {
                margin-bottom: 48px;
            }

            footer .footer-main .footer-links {
                display: block;
                width: 100%;
                margin-bottom: 48px;
            }

                footer .footer-main .footer-links .sublinks {
                    width: 100%;
                    margin-bottom: 20px;
                }

                footer .footer-main .footer-links .sublinks:last-of-type {
                    margin-bottom: unset !important;
                }

        footer .footer-links .dropdown label {
            cursor: pointer;
            display: flex;
            justify-content: space-between;
        }

            footer .footer-links .dropdown label .arrow {
                display: inline-block;
                transition: transform 0.3s ease;
            }

        footer .footer-main .footer-links .sublinks:nth-last-of-type(2) {
            margin-bottom: 32px;
        }

        footer .footer-links .dropdown a {
            display: none;
        }

        footer .footer-links .dropdown input:checked ~ a {
            display: block;
        }

        footer .footer-links .dropdown input:checked + label .arrow {
            transform: rotate(180deg);
        }
}

    .btn {
        width: 280px;
        height: 56px;
        padding: 16px;
        border-radius: 10px;
        font-family: Poppins-Medium;
        font-size: 16px;
        font-weight: 500;
        line-height: 24px;
        text-align: center;
        text-underline-position: from-font;
        text-decoration-skip-ink: none;
        position: relative;
        /*transition: all 0.3s;*/
    }

        .btn:active {
            box-shadow: none;
        }


        .btn.btn-1, a.btn.btn-1:link, a.btn.btn-1:visited {
            background: #F4FF8F;
            color: #292929;
        }

            .btn.btn-1:hover, .btn.btn-1:active, a.btn.btn-1:active, a.btn.btn-1:hover {
                background: #DCE779;
            }

            .btn.btn-1:active, a.btn.btn-1:active {
                color: transparent !important;
                background-image: url("Images/roix/defaults/loader/Loader-dark.svg");
                background-repeat: no-repeat;
                background-position: center;
                background-size: 24px 24px;
            }

            .btn.btn-1:disabled, a.btn.btn-1.disabled {
                background: #FBFFD6;
                color: #9E9DA8;
            }




        .btn.btn-2, a.btn.btn-2:link, a.btn.btn-2:visited {
            border: 1px solid #F6EDE0;
            color: #F6EDE0;
            background-color: inherit;
        }



            .btn.btn-2:hover, .btn.btn-2:active, a.btn.btn-2:active, a.btn.btn-2:hover {
                border: 1px solid #FFD06B;
                color: #FFD06B;
            }



            .btn.btn-2:disabled, a.btn.btn-2.disabled {
                background: #595145;
                color: #595145;
            }

            .btn.btn-2.btn-logout, a.btn.btn-2:link.btn-logout, a.btn.btn-2:visited.btn-logout {
                min-width: 56px;
                color: transparent;
                background-image: url("Images/roix/defaults/logout/log-out-main-light.svg");
                background-repeat: no-repeat;
                background-position: center;
                background-size: 24px 24px;
            }

            .btn.btn-2:hover.btn-logout, a.btn.btn-2:hover.btn-logout {
                color: transparent;
                background-image: url("Images/roix/defaults/logout/log-out-secondary.svg");
                background-repeat: no-repeat;
                background-position: center;
                background-size: 24px 24px;
            }

            .btn.btn-2:active, a.btn.btn-2:active,
            .btn.btn-2:active.btn-logout, a.btn.btn-2:active.btn-logout {
                color: transparent;
                background-image: url("Images/roix/defaults/loader/Loader-secondary.svg");
                background-repeat: no-repeat;
                background-position: center;
                background-size: 24px 24px;
            }

        .btn.btn-3, a.btn.btn-3:link, a.btn.btn-3:visited {
            background-color: inherit;
            border: 1px solid #292929;
            color: #292929;
        }


            .btn.btn-3:hover, .btn.btn-3:active, a.btn.btn-3:active, a.btn.btn-3:hover {
                background-color: #292929;
                color: #FFF;
            }

            .btn.btn-3:active, a.btn.btn-3:active {
                color: transparent;
                background-image: url("Images/roix/defaults/loader/Loader-white.svg");
                background-repeat: no-repeat;
                background-position: center;
                background-size: 24px 24px;
            }

            .btn.btn-3:disabled, a.btn.btn-3.disabled {
                background-color: #fff;
                border: 1px solid #9E9DA8;
                color: #9E9DA8;
            }


        .btn.btn-4, a.btn.btn-4:link, a.btn.btn-4:visited {
            font-family: Poppins-Light;
            font-size: 14px;
            font-weight: 300;
            line-height: 20px;
            border: 1px solid #F6EDE0;
            color: #F6EDE0;
            background-color: inherit;
            width: 140px;
            height: 40px;
            padding: 9px 11px 11px;
            border-radius: 40px;
        }

            .btn.btn-4:hover, .btn.btn-4:active, a.btn.btn-4:active, a.btn.btn-4:hover {
                border: 1px solid #FFD06B;
                color: #FFD06B;
            }

            .btn.btn-4:active, a.btn.btn-4:active, .btn.btn-4.active, a.btn.btn-4.active {
                background-color: #FFD06B;
                color: #292929;
                border-color: #FFD06B;
            }

        .btn.btn-5:active, a.btn.btn-5:active {
            color: transparent!important;
            background-image: url("Images/roix/defaults/loader/Loader-dark.svg");
            background-repeat: no-repeat;
            background-position: center;
            background-size: 24px 24px;
        }


        .btn.btn-1-1 {
            width: 148px;
        }

        .btn.btn-s1 {
            width: 240px;
        }

        .btn.btn-mw {
            width: 100%;
        }

        /*   .btn.el1,.btn.el2, .btn.el3 {
        padding: 16px 40px;
    }*/

        .btn.el1::before, .btn.el2::after {
            content: "";
            display: block;
            width: 24px;
            height: 24px;
            position: absolute;
            top: 16px;
        }


        .btn.el1::before, a.btn.el1:link::before, a.btn.el1:visited::before {
            background-image: url("Images/roix/defaults/user/user-main-light.svg");
            left: 16px;
        }

        .btn.el2::after, a.btn.el2:link::after, a.btn.el2:visited::after {
            background-image: url("Images/roix/defaults/arrow/arrow-right-main-light.svg");
            right: 16px;
        }

        .btn.btn-3.el2:hover::after, .btn.btn-2.el2:active::after, a.btn.btn-2.el2:active::after, a.btn.btn-2.el2:hover::after {
            background-image: url("Images/roix/defaults/arrow/arrow-right-secondary.svg");
            right: 16px;
        }


    a.btn-x:link, a.btn-x:visited, .btn-x {
        max-width: 48px;
        max-height: 48px;
        min-width: 48px;
        min-height: 48px;
        background: inherit;
        border: 1px solid #292929;
        border-radius: 50%;
        background-image: url(Images/roix/defaults/close/close-dark.svg);
        background-repeat: no-repeat;
        background-position: center;
        background-size: 24px 24px;
        color: inherit;
        overflow: hidden;
    }

        a.btn-x:hover, a.btn-x:active, .btn-x:hover {
            background: #292929;
            background-image: url(Images/roix/defaults/close/close-white.svg);
            background-repeat: no-repeat;
            background-position: center;
        }

        a.btn-x:active, .btn-x:active {
            background-image: url("Images/roix/defaults/loader/Loader-white.svg");
            background-repeat: no-repeat;
            background-position: center;
        }

        .btn-x:disabled, .btn-x.disabled {
            background: inherit;
            border-color: #9E9DA8;
            background-image: url("Images/roix/defaults/close/close-shadow-light.svg");
            background-repeat: no-repeat;
            background-position: center;
        }

        a.btn-x:link.x2, a.btn-x.x2:visited, .btn-x.x2 {
            border: 1px solid #F5EDE0;
            background-image: url(Images/roix/defaults/close/close-main-light.svg);
        }
            a.btn-x:hover.x2, a.btn-x:active.x2, .btn-x.x2:hover, .btn-x.x2:active {
                border: 1px solid #F4FF8F;
                background-image: url(Images/roix/defaults/close/close-main.svg);
            }

        a.btn-x.btn-left:link, a.btn-x.btn-left:visited, .btn-x.btn-left {
            border-color: #F6EDE0;
            background-image: url(Images/roix/defaults/arrow/arrow-left-main-light.svg);
        }

        a.btn-x:link.x3, a.btn-x.x3:visited, .btn-x.x3 {
            border: 1px solid #F5EDE0;
            background-image: url(Images/roix/defaults/close/close-main-light.svg);
        }

            a.btn-x:hover.x3, a.btn-x:active.x3, .btn-x.x3:hover, .btn-x.x3:active {
                border: 1px solid #FFD06B;
                background: inherit;
                background-image: url(Images/roix/defaults/close/close-secondary.svg);
                background-repeat: no-repeat;
                background-position: center;
            }

        a.btn-x.btn-left:link, a.btn-x.btn-left:visited, .btn-x.btn-left {
            border-color: #F6EDE0;
            background-image: url(Images/roix/defaults/arrow/arrow-left-main-light.svg);
        }



            a.btn-x.btn-left:hover, a.btn-x.btn-left:active, .btn-x.btn-left:hover {
                background: inherit;
                border-color: #FFD06B;
                /* background-image: url(Images/roix/defaults/chevron/chevron-left-secondary.svg);*/
                background-image: url(Images/roix/defaults/arrow/arrow-left-secondary.svg);
                background-size: 24px 24px;
                background-position: center;
            }

            a.btn-x.btn-left:active, .btn-x.btn-left:active {
                background-image: url("Images/roix/defaults/loader/Loader-secondary.svg");
                border-color: #FFD06B;
            }

            .btn-x.btn-left:disabled, .btn-x.btn-left.disabled {
                background: inherit;
                border-color: #9E9DA8;
                /*background-image: url("Images/roix/defaults/chevron/chevron-left-shadow-light.svg");*/
                background-image: url("Images/roix/defaults/arrow/arrow-left-shadow-light.svg");
                background-size: 24px 24px;
                background-position: center;
            }

        a.btn-x.btn-right:link, a.btn-x.btn-right:visited, .btn-x.btn-right {
            border-color: #F6EDE0;
            /*background-image: url(Images/roix/defaults/chevron/chevron-right-main-light.svg);*/
            background-image: url(Images/roix/defaults/arrow/arrow-right-main-light.svg);
        }

            a.btn-x.btn-right:hover, a.btn-x.btn-right:active, .btn-x.btn-right:hover {
                background: inherit;
                border-color: #FFD06B;
                /*background-image: url(Images/roix/defaults/chevron/chevron-right-secondary.svg);*/
                background-image: url(Images/roix/defaults/arrow/arrow-right-secondary.svg);
                background-size: 24px 24px;
                background-position: center;
            }

            a.btn-x:active.btn-right, .btn-x.btn-right:active {
                background-image: url("Images/roix/defaults/loader/Loader-secondary.svg");
                border-color: #FFD06B;
            }

            .btn-x.btn-right:disabled, .btn-x.btn-right.disabled {
                background: inherit;
                border-color: #9E9DA8;
                /*background-image: url("Images/roix/defaults/chevron/chevron-right-shadow-light.svg");*/
                background-image: url("Images/roix/defaults/arrow/arrow-right-shadow-light.svg");
                background-size: 24px 24px;
                background-position: center;
            }


            a.btn-x.btn-right.dark:link, a.btn-x.btn-right.dark:visited, .btn-x.btn-right.dark {
                border-color: #292929;
                background-image: url(Images/roix/defaults/arrow/arrow-right.svg);
            }

                a.btn-x.btn-right.dark:hover, a.btn-x.btn-right.dark:active, .btn-x.btn-right.dark:hover {
                    background-image: url(Images/roix/defaults/arrow/arrow-right-white.svg);
                    background-repeat: no-repeat;
                    background-size: 24px 24px;
                    background-position: center;
                    background-color: #292929;
                }

                a.btn-x:active.btn-right.dark, .btn-x.btn-right.dark:active {
                    background-image: url("Images/roix/defaults/loader/Loader-white.svg");
                }



.roix-card {
    box-sizing: border-box;
    /*background: #fff;*/
    background: #EFEFEF;
    overflow: hidden;
    padding: 48px 32px 48px 32px;
    border-radius: 16px;
}

        .roix-card.secondary {
            padding: 32px;
        }

        .roix-card .roix-card-title {
            font-family: Urbanist;
            font-size: 32px;
            font-weight: 400;
            line-height: 40px;
            letter-spacing: -0.01em;
            color: #292929;
            margin-bottom: 24px;
            position: relative;
            width: 100%;
        }

            .roix-card .roix-card-title div:first-child {
                max-width: 80%;
            }

            .roix-card .roix-card-title.only-one div:first-child {
                max-width: 100%;
            }

            .roix-card .roix-card-title .btn-x {
                position: absolute;
                top: -20px;
                right: 0px;
            }

            .roix-card .roix-card-title.flex {
                display: flex;
                /*flex-wrap: wrap;*/
                justify-content: space-between;
                align-items: center;
            }

                .roix-card .roix-card-title.flex .card-title-main {
                    display: flex;
                    flex-direction: column;
                    gap: 8px;
                }

                .roix-card .roix-card-title.flex .roix-card-title-subtitle {
                    font-family: Poppins-Light;
                    font-size: 16px;
                    font-weight: 300;
                    line-height: 24px;
                    color: #58575D;
                    min-width: 250px;
                }

                .roix-card .roix-card-title.flex .roix-card-title-big {
                    font-family: Urbanist;
                    font-size: 56px;
                    font-weight: 400;
                    line-height: 64px;
                    color: #292929;
                    white-space: nowrap;
                }

                .roix-card .roix-card-title.flex .roix-card-title--buttons {
                    text-align: right;
                }


    .card-content .card-content--content {
        margin-bottom: 24px;
    }

    .roix-card-content, .roix-card-content .roix-card-content--content-2 {
        font-family: Poppins-Light;
        font-size: 14px;
        font-weight: 300;
        line-height: 20px;
        color: #58575D;
        margin-bottom: 24px;
    }

        .roix-card-content.lms-html ul, .project-investor-comment-card ul {
            padding-left: 27px;
        }

            .roix-card-content ul.parsley-errors-list {
                padding-left: 0px;
                padding-bottom:10px;
            }

            .roix-card a:link, .roix-card a:visited, .roix-cardt a:active, .roix-card a:hover,
            .roix-card-content a:link, .roix-card-content a:visited, .roix-card-content a:active, .roix-card-content a:hover {
                font-family: Poppins-Medium;
                font-size: 14px;
                font-weight: 500;
                line-height: 20px;
                text-align: left;
                text-decoration-line: underline;
                text-decoration-style: solid;
                text-underline-position: from-font;
                text-decoration-skip-ink: none;
                color: #000;
            }

        .roix-card-content.lms-html {
            font-family: Poppins-Light;
            font-weight: 300;
            font-size: 16px;
            line-height: 24px;
            color: #292929;
            margin-bottom: 32px;
        }

            .roix-container b, .roix-card-content.lms-html b {
                /*font-family: Poppins-Light;*/
                font-family: Poppins-Regular;
                font-weight: 600;
            }

            .roix-card-2, .roix-card-3, .roix-card-4, .roix-card-5 {
                box-sizing: border-box;
                overflow: hidden;
                padding: 12px 24px;
                background-color: #C6E3C5;
                text-align: center;
                margin-bottom: 24px;
            }

    .roix-card-3 {
        background: #FEEBA6;
    }

    .roix-card-4 {
        background: #FFFFFF;
    }

.roix-card-5 {
    background: #FBFFD6;
}

        .roix-card-2 .roix-card-title, .roix-card-3 .roix-card-title,
        .roix-card-4 .roix-card-title, .roix-card-5 .roix-card-title {
            margin-bottom: 0;
        }

            .roix-card .roix-card-title .roix-card-title-subtitle,
            .roix-card-2 .roix-card-title .roix-card-title-subtitle,
            .roix-card-3 .roix-card-title .roix-card-title-subtitle,
            .roix-card-4 .roix-card-title .roix-card-title-subtitle,
            .roix-card-5 .roix-card-title .roix-card-title-subtitle {
                font-family: Poppins-Light;
                font-size: 16px;
                font-weight: 300;
                line-height: 24px;
                color: #58575D;
            }

    .roix-card .roix-card-footer {
        margin-top: 20px;
    }

.roix-card .roix-card-footer.buttons {
    display: flex;
    gap: 16px;
}


    .roix-card .roix-card-interest {
        font-family: Poppins-Medium;
        font-size: 12px;
        font-weight: 500;
        line-height: 12px;
        color: #292929;
        background-color: #FEEBA6;
        padding: 12px;
        vertical-align: central;
        height: 34px;
    }





.roix-card .box {
    margin-top: 16px;
    margin-bottom: 16px;
    display: flex;
    justify-content: space-between;
}

    .roix-card .box:first-child {
        margin-top: -4px;
    }

    .roix-card .box:last-child {
        margin-bottom: -4px;
    }

    .roix-card .box p {
        font-weight: 500;
        font-size: 14px;
        line-height: 17px;
        color: #9E9DA8;
        font-family: 'Poppins-Regular';
        margin-top: 4px;
        margin-bottom: 4px
    }

        .roix-card .box p.bold {
            font-weight: 700;
            font-family: Poppins-Bold;
            cursor: pointer
        }

    .color-status, .roix-card .box .color-status {
        font-weight: 700;
        font-size: 14px;
        line-height: 17px;
    }

        .color-status.orange, .roix-card .box .color-status.orange {
            color: #EE9630;
            color: #FFD069;
        }

        .color-status.red, .roix-card .box .color-status.red {
            color: #D62B2B;
            color: #FF9F52;
        }

        .color-status.green, .roix-card .box .color-status.green {
            color: #4BC16C;
            color: #19C595;
        }

        .color-status.purple, .roix-card .box .color-status.purple {
            color: #BF40BF;
        }

        .color-status.black, .roix-card .box .color-status.black {
            color: #364140;
        }





@media (max-width: 582px) {
    .roix-card .box {
        display: block;
    }

    .roix-card .roix-card-title.flex {
        flex-wrap: wrap;
    }

        .roix-card .roix-card-title.flex .roix-card-title--buttons {
            text-align: left;
        }
}



    .form-group label, label {
        font-family: Poppins-Light;
        font-size: 14px;
        font-weight: 300;
        line-height: 20px;
        color: #292929;
        margin-bottom: 0px;
    }


a.developer-link, a.developer-link:visited, a.developer-link:link {
    font-family: Poppins-Medium;
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
    color: #292929;
    text-decoration: none;
}

    a.developer-link:hover, a.developer-link:active {
        font-family: Poppins-Medium !important;
        font-size: 14px;
        font-weight: 700 !important;
        line-height: 20px;
        color: #292929 !important;
    }


    .overview-table {
        width: 100%;
    }

        .overview-table td {
            font-family: Poppins-Light;
            font-size: 14px;
            font-weight: 300;
            line-height: 20px;
            vertical-align: top;
        }

        .overview-table tr td:nth-child(even),
        .overview-table tr th:nth-child(even),
        .simple-table tr td:nth-child(even) {
            font-family: Poppins-Medium;
            font-size: 14px;
            font-weight: 500;
            line-height: 20px;
            text-align: right;
            padding-bottom: 16px;
        }

        
        .overview-table.ovrw tr td:nth-child(even){
            white-space:nowrap;
        }



    .main-table table, .simple-table table {
        font-family: Poppins-Light;
        font-size: 14px;
        font-weight: 300;
        line-height: 20px;
        vertical-align: top;
        color: #292929;
        width: 100%;
        /*margin-bottom: 24px;*/
    }

        .main-table table thead {
            text-align: left;
            border-bottom: 1px solid #000;
        }

        /*    .main-table table thead tr:first-child {
                border-bottom: 1px solid #292929;
            }*/

        .main-table table tbody tr {
            cursor: pointer;
            background-color: #FAFAFA;
            /*border-bottom: 1px solid #DADADA;*/
        }

            .main-table table tbody tr:nth-child(2n) {
                background-color: #FFF;
            }

        /*    .main-table table tbody tr:hover {
                background-color: #EFEFEF;
            }*/
            /*   .main-table table tbody tr:nth-of-type(even) {
                background-color: #EFEFEF;
            }*/
            .main-table thead th, .main-table tbody td, .simple-table thead th, .simple-table tbody td {
                padding: 16px 0;
            }

        .main-table thead th, .simple-table thead th.main-table th, .simple-table th {
            font-family: Poppins-Medium;
            font-size: 14px;
            font-weight: 500;
            line-height: 20px;
            color: #292929;
            padding: 0 30px 20px 0;
        }




            .main-table thead th:first-child, .main-table tbody td:first-child,
            .simple-table thead th:first-child, .simple-table tbody td:first-child {
                padding-left: 16px;
            }

            .main-table thead th:last-child, .main-table tbody td:last-child,
            .simple-table thead th:last-child, .simple-table tbody td:last-child {
                padding-right: 16px;
            }




    .main-table tbody tr:first-child {
        border-top: none;
    }

    .main-table tbody tr.completed td {
        background: #F0EAEA;
        border-width: 2px 0px;
        border-style: solid;
        border-color: #9E9DA8;
        box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.04);
        border-top: 2px solid #9E9DA8;
    }

    .simple-table tbody td {
        border-bottom: 1px solid rgba(54, 65, 64, 0.16);
    }

    .main-table .main-table-footer {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding-top: 15px;
    }

        .main-table .main-table-footer .pagination-showing {
            font-family: Poppins-Light;
            font-size: 14px;
            font-weight: 300;
            line-height: 20px;
            color: #9E9DA8;
            text-align: center;
        }

    .main-table .pagination-stepper, .main-table .pagination-stepper .page-numbers {
        display: flex;
        gap: 10px;
        align-items: center;
    }

        .main-table .pagination-stepper .page-numbers div, .back, .forward {
            padding: 15px 20px;
            border-radius: 50%;
            cursor: pointer;
            /* background: #F0EAEA;*/
            border: 1px solid rgba(54, 65, 64, 0.08);
            /*box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.04);*/
        }

        .main-table .pagination-stepper img.active {
            background: rgba(54, 65, 64, 0.10);
            cursor: not-allowed;
            color: rgba(54, 65, 64, 0.32);
            border: none;
            opacity: 0.5;
        }

        .main-table .pagination-stepper .page-numbers div.active {
            border: 1px transparent;
            box-shadow: none;
            cursor: not-allowed;
            color: rgba(54, 65, 64, 0.32);
        }

        .main-table .pagination-stepper .page-numbers div {
            font-weight: 500;
            font-size: 14px;
            line-height: 15px;
            text-align: center;
        }

    .main-table .pagination-rows {
        display: flex;
        align-items: center;
        gap: 5px;
    }

        .main-table .pagination-rows div:first-child {
            min-width: 120px;
            font-family: Poppins-Light;
            font-size: 14px;
            font-weight: 300;
            line-height: 20px;
        }

    .main-table .pagination-showing {
        min-width: 130px;
    }



    .no-margin-bottom {
        margin-bottom: 0 !important;
    }

    .dmc-overlay .errorwindow {
        background-color: #f2dede;
        color: #D0011B;
        border-bottom: 2px solid #D0011B;
        width: 100%;
        height: 30px;
        display: block;
        line-height: 30px;
        margin-bottom: 20px;
        display: none;
    }

    .dmc-overlay .close:active {
        outline: 0;
    }

    .dmc-overlay .comment-textarea {
        width: 456px;
        min-width: 100%;
        height: 17px;
        max-width: 100%;
        border: 1px solid #d9d9d9;
        padding: 5px;
        height: 70px;
        min-height: 70px;
        color: #4A4A4A;
        font-family: "Poppins-Regular";
        font-size: 12px;
        line-height: 17px;
        margin-bottom: -9px;
    }

        .dmc-overlay .comment-textarea:focus {
            outline: 0;
        }

    .dmc-overlay .smalltitle {
        color: #4A4A4A;
        font-family: "Open Sans";
        font-size: 14px;
        font-weight: 600;
        line-height: 19px;
    }

    .dmc-overlay .form-group {
        margin-top: -12px;
    }

    .dmc-overlay .table {
        margin-top: 30px;
    }

    .dmc-overlay .modal-title {
        color: #58585A;
        font-family: "Poppins-Regular";
        font-size: 16px;
        font-weight: bold;
        line-height: 22px;
        margin-top: 10px;
        margin-bottom: 10px;
    }

    .dmc-overlay .modal-footer {
        text-align: center;
        border: 0 !important;
    }

        .dmc-overlay .modal-footer .btn[data-twobuttons] {
            width: 120px;
            padding: 0 0;
        }


    @media (min-width: 768px) {
        .btn[data-twobuttons] {
            width: 205px !important;
        }
    }

    header .logo {
        width: 156px;
        height: 59px;
        display: block;
        margin-top: 18px;
        float: left;
    }

    @media (min-width: 992px) {
        header .logo {
            margin-top: 32px;
        }
    }

    header .langs-menu {
        float: right;
    }

    .status-bar {
        background-color: #505152;
    }

        .status-bar .status-bar-content {
            height: 60px;
            padding: 10px 0;
        }

            .status-bar .status-bar-content .link-home, .status-bar .status-bar-content .link-user, .status-bar .status-bar-content .link-logout {
                font-size: 11px;
                color: #F0EAEA;
                font-weight: 600;
                position: relative;
                line-height: 20px;
            }

                .status-bar .status-bar-content .link-home:hover, .status-bar .status-bar-content .link-user:hover, .status-bar .status-bar-content .link-logout:hover {
                    text-decoration: none;
                    color: #CCDDEC;
                }

            .status-bar .status-bar-content .link-home {
                float: left;
                padding-left: 47px;
            }

                .status-bar .status-bar-content .link-home:before {
                    content: "";
                    display: block;
                    width: 120px;
                    height: 30px;
                    background-image: url("Images/admin/img/lend-logo-white.png");
                    position: absolute;
                    left: 0;
                    top: 5px;
                }

            .status-bar .status-bar-content .link-user {
                float: right;
                padding-right: 27px;
                margin-right: 20px;
            }

                .status-bar .status-bar-content .link-user:before {
                    content: "";
                    display: block;
                    margin-top: 5px;
                    width: 20px;
                    height: 20px;
                    background-image: url("Images/leftsidemenu//bars-solid.svg");
                    position: absolute;
                    right: 0;
                    top: 0;
                }

            .status-bar .status-bar-content .link-logout {
                float: right;
                padding-right: 27px;
                margin-right: 33px;
            }

                .status-bar .status-bar-content .link-logout:before {
                    content: "";
                    display: block;
                    width: 23px;
                    height: 23px;
                    background-repeat: no-repeat;
                    background-image: url("Images/ico-logout.svg");
                    position: absolute;
                    right: 0;
                    top: 0;
                    z-index: 1000;
                }

        .status-bar .user-menu {
            display: none;
        }

    @media (min-width: 768px) {
        .status-bar .user-menu {
            width: 320px;
            position: absolute;
            right: 35px;
            z-index: 20;
            top: 56px;
            border-bottom: 3px solid #0056A3;
        }

            .status-bar .user-menu:before {
                display: block;
                content: '';
                width: 0;
                height: 0;
                border-style: solid;
                border-width: 0 14.5px 11px 14.5px;
                border-color: transparent transparent #c8dbf1 transparent;
                position: absolute;
                top: -11px;
                right: 15px;
            }
    }

    .status-bar .user-menu ul {
        margin: 0 -15px;
        padding: 0;
    }

    @media (min-width: 768px) {
        .status-bar .user-menu ul {
            margin: 0;
        }
    }

    .status-bar .user-menu li {
        height: 41px;
        list-style: none;
        display: block;
        background: #C8DBF1;
        font-weight: 600;
        font-size: 14px;
        color: #00569E;
        text-transform: uppercase;
        line-height: 20px;
        padding: 10px 15px;
        border-bottom: 1px solid #F0EAEA;
    }

        .status-bar .user-menu li:last-child {
            border-bottom: none;
            height: 40px;
        }

        .status-bar .user-menu li a {
            display: block;
            position: relative;
        }

        .status-bar .user-menu li.profile-link a:after {
            content: "";
            display: block;
            width: 7px;
            height: 12px;
            position: absolute;
            right: 0;
            top: 4px;
        }

    .status-bar.user-menu-on .user-menu {
        display: block;
    }

    @media (max-width: 700px) {
        .status-bar .user-menu li {
            margin-left: 20px;
        }
    }

    .langs-menu {
        padding-right: 22px;
        padding-left: 22px;
        padding-bottom: 8px;
        position: absolute;
        right: 0px;
        margin-top: 0px;
        background-color: #0056A3;
        z-index: 7;
    }

        .langs-menu.open .active a:after {
            transform: rotate(180deg);
        }

        .langs-menu.open li {
            display: block;
        }

        .langs-menu li {
            list-style: none;
            font-size: 11px;
            line-height: 20px;
            font-weight: 600;
            text-transform: uppercase;
            display: none;
        }

            .langs-menu li a {
                color: #F0EAEA;
            }

                .langs-menu li a:hover, .langs-menu li a:focus, .langs-menu li a:active {
                    text-decoration: none;
                    color: #CCDDEC;
                }

            .langs-menu li.active {
                display: block;
            }

                .langs-menu li.active a:after {
                    display: block;
                    height: 8px;
                    width: 12px;
                    content: "";
                    background-image: url("Images/ico-expand-white.svg");
                    position: absolute;
                    right: 6px;
                    top: 6px;
                    transform: rotate(0);
                    transition: transform .3s;
                }

                .langs-menu li.active a {
                    color: #F0EAEA;
                }

    .onb-screen .onb-headings {
        color: #4A4A4A;
        font-weight: 500;
        text-align: center;
    }

        .onb-screen .onb-headings h1 {
            font-size: 20px;
        }

    @media (min-width: 768px) {
        .onb-screen .onb-headings h1 {
            font-size: 28px;
        }
    }

    .onb-screen .onb-headings h2 {
        font-size: 14px;
    }

    @media (min-width: 768px) {
        .onb-screen .onb-headings h2 {
            font-size: 22px;
        }
    }

    .onb-screen .onb-images {
        width: 300px;
        margin: 0 auto;
        text-align: center;
    }

        .onb-screen .onb-images img {
            width: 170px;
            height: 170px;
            display: block;
            margin: 0 auto;
            opacity: 0;
            transition: opacity .3s;
        }

    @media (min-width: 768px) {
        .onb-screen .onb-images img {
            width: 260px;
            height: 260px;
        }
    }

    .onb-screen .onb-images .slick-active img {
        opacity: 1;
    }

    .onb-screen .onb-descrs {
        text-align: center;
        position: relative;
    }

        .onb-screen .onb-descrs .onb-descr {
            margin-bottom: 14px;
        }

            .onb-screen .onb-descrs .onb-descr h3 {
                font-size: 21px;
                color: #4A4A4A;
            }

    @media (min-width: 992px) {
        .onb-screen .onb-descrs .onb-descr h3 {
            font-size: 24px;
        }
    }

    .onb-screen .btn-block {
        max-width: 300px;
        margin: 0 auto;
    }

    .onb-screen .slick-prev, .onb-screen .slick-next {
        width: 24px;
        height: 24px;
        padding: 0;
        display: inline-block;
        border: 1px solid #78B737;
        border-radius: 50%;
        font-size: 0;
        vertical-align: middle;
        background-color: #F0EAEA;
    }

        .onb-screen .slick-prev:focus, .onb-screen .slick-prev:active, .onb-screen .slick-next:focus, .onb-screen .slick-next:active {
            box-shadow: none;
            outline: none;
        }

    .onb-screen .slick-prev {
        left: 0;
        margin-right: 60px;
        background-image: url("Images/carousel-prev.svg");
    }

    .onb-screen .slick-next {
        right: 0;
        margin-left: 60px;
        background-image: url("Images/carousel-next.svg");
    }

    .onb-screen .onb-controls {
        text-align: center;
    }

    .onb-screen .slick-dots {
        text-align: center;
        padding: 0;
        margin-bottom: 20px;
        line-height: 24px;
        display: inline-block;
    }

        .onb-screen .slick-dots li {
            list-style: none;
            display: inline-block;
            width: 10px;
            height: 10px;
            font-size: 0;
            margin: 0 8px;
            vertical-align: middle;
            overflow: visible;
        }

            .onb-screen .slick-dots li button {
                font-size: 0;
                width: 10px;
                height: 10px;
                display: block;
                border: 1px solid #78B737;
                border-radius: 50%;
                overflow: hidden;
                padding: 0;
                background: #F0EAEA;
                transition: transform .3s;
            }

                .onb-screen .slick-dots li button:focus, .onb-screen .slick-dots li button:active {
                    box-shadow: none;
                    outline: none;
                }

            .onb-screen .slick-dots li.slick-active button {
                background: #78B737;
                transform: scale(2);
                transform-origin: center center;
            }



    .info-title {
        font-weight: 600;
        font-size: 16px;
        color: #78B737;
        text-align: center;
        padding-top: 50px;
        background-position: center top;
        background-repeat: no-repeat;
        background-size: 50px 50px;
    }

        .info-title.info-wallet {
            background-image: url("Images/icon-wallet.svg");
        }

    .btn-holder {
        margin-bottom: 30px;
    }

    /* Sticky footer styles
-------------------------------------------------- */
    html {
        position: relative;
        min-height: 100%;
    }

    body {
        /* Margin bottom by footer height */
    }

    @media (max-width: 768px) {
        body {
            /* margin-bottom: 50px;*/
        }
    }

    body.no-footer, body.error-page {
        margin-bottom: 0;
    }


    .clearfix:before, .clearfix:after {
        content: " ";
        display: table;
    }

    .clearfix:after {
        clear: both;
    }

    .relative {
        position: relative;
    }

    *, *:before, *:after {
        background-repeat: no-repeat;
        background-size: 100% auto;
    }

    .page-dashboard {
        background: rgba(120, 183, 55, 0.1);
    }

    .view-title-container {
        min-height: 40px;
        background: #CCE3B5;
        box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.5);
        position: relative;
        z-index: 6;
    }

        .view-title-container h1 {
            font-weight: 600;
            font-size: 16px;
            color: #4A4A4A;
            text-align: center;
            margin: 0;
            line-height: 40px;
            text-transform: uppercase;
        }

    .panel-info {
        border: none;
    }

        .panel-info .form-group, .panel-info .checkbox {
            padding-left: 34px;
            padding-right: 34px;
        }

    @media (min-width: 768px) {
        .panel-info .form-group, .panel-info .checkbox {
            padding-left: 50px;
            padding-right: 50px;
        }

            .panel-info .form-group.form-group, .panel-info .form-group.checkbox, .panel-info .checkbox.form-group, .panel-info .checkbox.checkbox {
                max-width: 400px;
            }
    }

    .panel-info > .panel-heading {
        background: #CCE3B5;
        border: none;
        border-radius: 0;
        padding: 6px 20px 5px 20px;
    }

        .panel-info > .panel-heading .panel-title {
            font-weight: 600;
            font-size: 16px;
            color: #78B737;
            line-height: 26px;
        }

    .relative {
        position: relative;
    }

    .error-holder {
        text-align: center;
        color: #555A5F;
        display: flex;
        align-items: center;
        justify-content: center;
        /*height: 80vh;*/
    }

        .error-holder .error-icon {
            display: block;
            width: 186px;
            height: 186px;
            background-image: url("Images/error.svg");
            margin: 0 auto 35px;
        }

            .error-holder .error-icon.error-404, .error-holder .error-icon.error-500 {
                width: 236px;
                height: 236px;
            }

            .error-holder .error-icon.error-404 {
                background-image: url("Images/404.svg");
            }

            .error-holder .error-icon.error-500 {
                background-image: url("Images/500.svg");
            }

        .error-holder .error-title {
            font-size: 25px;
            line-height: 32px;
            font-weight: 600;
            margin-bottom: 32px;
        }

            .error-holder .error-title.error-404, .error-holder .error-title.error-500 {
                text-transform: uppercase;
                margin-bottom: 0;
            }

        .error-holder .error-txt {
            font-size: 20px;
            line-height: 32px;
            font-weight: 600;
            margin-bottom: 66px;
        }

            .error-holder .error-txt.error-404, .error-holder .error-txt.error-500 {
                font-weight: normal;
                font-size: 14px;
                line-height: inherit;
            }

                .error-holder .error-txt.error-404 p > a, .error-holder .error-txt.error-500 p > a {
                    color: #78B737;
                }

        .error-holder .dmc-logo {
            width: 150px;
            height: 60px;
            margin: 0 auto;
            background-image: url("Images/admin/img/lend-logo.png");
        }

    .onb-screen {
        /*  WTF??*/
        margin-bottom: 400px;
    }

    .modal-header {
        border: none;
        z-index: 2;
    }

        .modal-header .close {
            display: block;
            width: 16px;
            height: 16px;
            background-image: url("Images/close-popup.svg");
            font-size: 0;
            opacity: 1;
            background-repeat: no-repeat;
        }

    .user-form .modal-body .panel-info {
        width: auto;
        max-width: none;
    }

        .user-form .modal-body .panel-info .panel-heading {
            margin-top: 0;
        }

    .modal-dialog {
        background-color: #F0EAEA;
    }


    @media (max-width: 768px) {
        .modal-dialog {
            margin: 0;
            min-height: 100%;
        }

        .modal-content {
            min-height: 100%;
            border-radius: 0;
        }
    }

    @media (min-width: 768px) {
        .modal-content {
            border-radius: 0;
        }

        .modal-body {
            width: 400px;
            margin: 16px auto 60px;
        }
    }

 
    .helper-holder {
        text-align: center;
    }

        .helper-holder ul {
            margin: 0;
            padding: 0;
        }

        .helper-holder li {
            list-style: none;
        }

        .helper-holder .bg-success, .helper-holder .bg-danger, .helper-holder .parsley-required, .helper-holder .parsley-length, .helper-holder .parsley-pattern, .helper-holder .parsley-type, .helper-holder .parsley-range,
        .helper-holder .parsley-equalto,
        .helper-holder .parsley-iban,
        .helper-holder .parsley-personname,
        .helper-holder .parsley-companyname,
        .helper-holder .parsley-companycode,
        .helper-holder .parsley-address,
        .helper-holder .parsley-fullphonenumber,
        .helper-holder .parsley-phonenumber,
        .helper-holder .parsley-phonecountrycode,
        .helper-holder .parsley-personalid,
        .helper-holder .parsley-onlyletters,
        .helper-holder .parsley-onlyucLetters,
        .helper-holder .parsley-notes,
        .helper-holder .parsley-name,
        .helper-holder .parsley-vat,
        .helper-holder .parsley-zip,
        .helper-holder .parsley-invoiceno,
        .helper-holder .parsley-errors-list .parsley-custom-error-message, .parsley-errors-list .helper-holder .parsley-custom-error-message, .helper-holder .parsley-errors-list .parsley-min, .parsley-errors-list .helper-holder .parsley-min, .helper-holder .parsley-errors-list .parsley-max, .parsley-errors-list .helper-holder .parsley-max, .helper-holder .parsley-errors-list .parsley-lte, .parsley-errors-list .helper-holder .parsley-lte, .helper-holder .parsley-errors-list .parsley-lt, .parsley-errors-list .helper-holder .parsley-lt, .helper-holder .parsley-errors-list .parsley-remote, .parsley-errors-list .helper-holder .parsley-remote, .helper-holder .parsley-errors-list .parsley-maxlength, .parsley-errors-list .helper-holder .parsley-maxlength, .helper-holder .parsley-errors-list .parsley-minlength, .parsley-errors-list .helper-holder .parsley-minlength, .helper-holder .parsley-errors-list .parsley-improvements, .parsley-errors-list .helper-holder .parsley-improvements, .helper-holder .parsley-errors-list .parsley-downpayment, .parsley-errors-list .helper-holder .parsley-downpayment, .helper-holder .parsley-errors-list .parsley- *, .parsley-errors-list .parsley- .helper-holder *, .helper-holder .bg-warning, .helper-holder .bg-info {
            display: inline-block;
        }

        .helper-holder.on-left {
            text-align: left;
        }

    #phone_confirmed {
        width: 100%;
    }

    #resend_code_loading {
        width: 100%;
    }

    .panel-info .infobox .form-group {
        max-width: none;
    }

    .with-margin {
        margin: 11px;
    }

.arrow_box, .bg-success, .bg-danger, .helper-holder .parsley-required,
.helper-holder .parsley-length,
.helper-holder .parsley-pattern,
.helper-holder .parsley-type,
.helper-holder .parsley-range,
.helper-holder .parsley-equalto,
.helper-holder .parsley-iban,
.helper-holder .parsley-personname,
.helper-holder .parsley-companyname,
.helper-holder .parsley-companycode,
.helper-holder .parsley-address,
.helper-holder .parsley-fullphonenumber,
.helper-holder .parsley-phonenumber,
.helper-holder .parsley-phonecountrycode,
.helper-holder .parsley-personalid,
.helper-holder .parsley-onlyletters,
.helper-holder .parsley-onlyucLetters,
.helper-holder .parsley-notes,
.helper-holder .parsley-name,
.helper-holder .parsley-vat,
.helper-holder .parsley-zip,
.helper-holder .parsley-invoiceno,
.parsley-errors-list .parsley-custom-error-message, .parsley-errors-list .parsley-required, .parsley-errors-list .parsley-min, .parsley-errors-list .parsley-max, .parsley-errors-list .parsley-lte, .parsley-errors-list .parsley-lt, .parsley-errors-list .parsley-gt .parsley-max, .parsley-errors-list .parsley-remote, .parsley-errors-list .parsley-maxlength, .parsley-errors-list .parsley-minlength, .parsley-errors-list .parsley-improvements, .parsley-errors-list .parsley-downpayment, .parsley-errors-list .parsley- *, .bg-warning, .bg-info {
    position: relative;
    margin-top: 10px;
    font-size: 12px;
    line-height: 14px;
    padding: 8px 15px 8px 15px;
}

    .arrow_box:after, .bg-success:after, .bg-danger:after, .helper-holder .parsley-required:after,
    .helper-holder .parsley-length:after,
    .helper-holder .parsley-pattern:after,
    .helper-holder .parsley-type:after,
    .helper-holder .parsley-range:after,
    .helper-holder .parsley-equalto:after,
    .helper-holder .parsley-iban:after,
    .helper-holder .parsley-personname:after,
    .helper-holder .parsley-companyname:after,
    .helper-holder .parsley-companycode:after,
    .helper-holder .parsley-address:after,
    .helper-holder .parsley-fullphonenumber:after,
    .helper-holder .parsley-phonenumber:after,
    .helper-holder .parsley-phonecountrycode:after,
    .helper-holder .parsley-personalid:after,
    .helper-holder .parsley-onlyletters:after,
    .helper-holder .parsley-onlyucLetters:after,
    .helper-holder .parsley-notes:after,
    .helper-holder .parsley-name:after,
    .helper-holder .parsley-vat:after,
    .helper-holder .parsley-zip:after,
    .helper-holder .parsley-invoiceno:after,
    .parsley-errors-list .parsley-custom-error-message:after, .parsley-errors-list .parsley-required:after, .parsley-errors-list .parsley-min:after, .parsley-errors-list .parsley-max:after, .parsley-errors-list .parsley-lte:after, .parsley-errors-list .parsley-lt:after, .parsley-errors-list .parsley-gt .parsley-max:after, .parsley-errors-list .parsley-remote:after, .parsley-errors-list .parsley-maxlength:after, .parsley-errors-list .parsley-minlength:after, .parsley-errors-list .parsley-improvements:after, .parsley-errors-list .parsley-downpayment:after, .parsley-errors-list .parsley- :after, .bg-warning:after, .bg-info:after, .arrow_box:before, .bg-success:before, .bg-danger:before,
    .parsley-errors-list .parsley-iban:after,
    .parsley-errors-list .parsley-personname:after,
    .parsley-errors-list .parsley-companyname:after,
    .parsley-errors-list .parsley-companycode:after,
    .parsley-errors-list .parsley-address:after,
    .parsley-errors-list .parsley-fullphonenumber:after,
    .parsley-errors-list .parsley-phonenumber:after,
    .parsley-errors-list .parsley-phonecountrycode:after,
    .parsley-errors-list .parsley-personalid:after,
    .parsley-errors-list .parsley-onlyletters:after,
    .parsley-errors-list .parsley-onlyucLetters:after,
    .parsley-errors-list .parsley-notes:after,
    .parsley-errors-list .parsley-name:after,
    .parsley-errors-list .parsley-vat:after,
    .parsley-errors-list .parsley-zip:after,
    .parsley-errors-list .parsley-invoiceno:after,
    .helper-holder .parsley-required:before,
    .helper-holder .parsley-length:before,
    .helper-holder .parsley-pattern:before,
    .helper-holder .parsley-type:before,
    .helper-holder .parsley-range:before,
    .helper-holder .parsley-equalto:before,
    .parsley-errors-list .parsley-iban:before,
    .parsley-errors-list .parsley-personname:before,
    .parsley-errors-list .parsley-companyname:before,
    .parsley-errors-list .parsley-companycode:before,
    .parsley-errors-list .parsley-address:before,
    .parsley-errors-list .parsley-fullphonenumber:before,
    .parsley-errors-list .parsley-phonenumber:before,
    .parsley-errors-list .parsley-phonecountrycode:before,
    .parsley-errors-list .parsley-personalid:before,
    .parsley-errors-list .parsley-onlyletters:before,
    .parsley-errors-list .parsley-onlyucLetters:before,
    .parsley-errors-list .parsley-notes:before,
    .parsley-errors-list .parsley-name:before,
    .parsley-errors-list .parsley-vat:before,
    .parsley-errors-list .parsley-zip:before,
    .parsley-errors-list .parsley-invoiceno:before,
    .parsley-errors-list .parsley-custom-error-message:before, .parsley-errors-list .parsley-required:before, .parsley-errors-list .parsley-min:before, .parsley-errors-list .parsley-max:before, .parsley-errors-list .parsley-lte:before, .parsley-errors-list .parsley-lt:before, .parsley-errors-list .parsley-gt .parsley-max:before, .parsley-errors-list .parsley-remote:before, .parsley-errors-list .parsley-maxlength:before, .parsley-errors-list .parsley-minlength:before, .parsley-errors-list .parsley-improvements:before, .parsley-errors-list .parsley-downpayment:before, .parsley-errors-list .parsley- :before, .bg-warning:before, .bg-info:before {
        bottom: 100%;
        left: 50%;
        border: solid transparent;
        content: " ";
        height: 0;
        width: 0;
        position: absolute;
        pointer-events: none;
    }

    .arrow_box:after, .bg-success:after, .bg-danger:after, .helper-holder .parsley-required:after,
    .helper-holder .parsley-length:after,
    .helper-holder .parsley-pattern:after,
    .helper-holder .parsley-type:after,
    .helper-holder .parsley-range:after,
    .helper-holder .parsley-equalto:after,
    .parsley-errors-list .parsley-custom-error-message:after,
    .parsley-errors-list .parsley-required:after,
    .parsley-errors-list .parsley-iban:after,
    .parsley-errors-list .parsley-personname:after,
    .parsley-errors-list .parsley-companyname:after,
    .parsley-errors-list .parsley-companycode:after,
    .parsley-errors-list .parsley-address:after,
    .parsley-errors-list .parsley-fullphonenumber:after,
    .parsley-errors-list .parsley-phonenumber:after,
    .parsley-errors-list .parsley-phonecountrycode:after,
    .parsley-errors-list .parsley-personalid:after,
    .parsley-errors-list .parsley-onlyletters:after,
    .parsley-errors-list .parsley-onlyucLetters:after,
    .parsley-errors-list .parsley-notes:after,
    .parsley-errors-list .parsley-name:after,
    .parsley-errors-list .parsley-vat:after,
    .parsley-errors-list .parsley-zip:after,
    .parsley-errors-list .parsley-invoiceno:after,
    .parsley-errors-list .parsley-min:after, .parsley-errors-list .parsley-max:after, .parsley-errors-list .parsley-lte:after, .parsley-errors-list .parsley-lt:after, .parsley-errors-list .parsley-gt .parsley-max:after, .parsley-errors-list .parsley-remote:after, .parsley-errors-list .parsley-maxlength:after, .parsley-errors-list .parsley-minlength:after, .parsley-errors-list .parsley-improvements:after, .parsley-errors-list .parsley-downpayment:after, .parsley-errors-list .parsley- :after, .bg-warning:after, .bg-info:after {
        border-color: rgba(136, 183, 213, 0);
        border-bottom-color: #88b7d5;
        border-width: 5px;
        margin-left: -5px;
    }

    .arrow_box.bg-success, .bg-success, .helper-holder .bg-success.parsley-required,
    .helper-holder .bg-success.parsley-length,
    .helper-holder .bg-success.parsley-pattern,
    .helper-holder .bg-success.parsley-type,
    .helper-holder .bg-success.parsley-range,
    .helper-holder .bg-success.parsley-iban,
    .helper-holder .bg-success.parsley-personname,
    .helper-holder .bg-success.parsley-companyname,
    .helper-holder .bg-success.parsley-companycode,
    .helper-holder .bg-success.parsley-address,
    .helper-holder .bg-success.parsley-fullphonenumber,
    .helper-holder .bg-success.parsley-phonenumber,
    .helper-holder .bg-success.parsley-phonecountrycode,
    .helper-holder .bg-success.parsley-personalid,
    .helper-holder .bg-success.parsley-onlyletters,
    .helper-holder .bg-success.parsley-onlyucLetters,
    .helper-holder .bg-success.parsley-notes,
    .helper-holder .bg-success.parsley-name,
    .helper-holder .bg-success.parsley-vat,
    .helper-holder .bg-success.parsley-zip,
    .helper-holder .bg-success.parsley-invoiceno,
    .helper-holder .bg-success.parsley-equalto,
    .parsley-errors-list .bg-success.parsley-iban,
    .parsley-errors-list .bg-success.parsley-personname,
    .parsley-errors-list .bg-success.parsley-companyname,
    .parsley-errors-list .bg-success.parsley-companycode,
    .parsley-errors-list .bg-success.parsley-address,
    .parsley-errors-list .bg-success.parsley-fullphonenumber,
    .parsley-errors-list .bg-success.parsley-phonenumber,
    .parsley-errors-list .bg-success.parsley-phonecountrycode,
    .parsley-errors-list .bg-success.parsley-personalid,
    .parsley-errors-list .bg-success.parsley-onlyletters,
    .parsley-errors-list .bg-success.parsley-onlyucLetters,
    .parsley-errors-list .bg-success.parsley-notes,
    .parsley-errors-list .bg-success.parsley-name,
    .parsley-errors-list .bg-success.parsley-vat,
    .parsley-errors-list .bg-success.parsley-zip,
    .parsley-errors-list .bg-success.parsley-invoiceno, 
    .parsley-errors-list .bg-success.parsley-custom-error-message, .parsley-errors-list .bg-success.parsley-required, .parsley-errors-list .bg-success.parsley-min, .parsley-errors-list .bg-success.parsley-max, .parsley-errors-list .bg-success.parsley-lte, .parsley-errors-list .bg-success.parsley-lt, .parsley-errors-list .bg-success.parsley-remote, .parsley-errors-list .bg-success.parsley-maxlength, .parsley-errors-list .bg-success.parsley-minlength, .parsley-errors-list .bg-success.parsley-improvements, .parsley-errors-list .bg-success.parsley-downpayment, .parsley-errors-list .parsley- .bg-success {
        background-color: #DDE8C7;
        color: #56A500;
        display: inline-block;
        border-bottom: 2px solid #56A500;
    }

        .arrow_box.bg-success:after, .bg-success:after, .helper-holder .bg-success.parsley-required:after,
        .helper-holder .bg-success.parsley-length:after,
        .helper-holder .bg-success.parsley-pattern:after,
        .helper-holder .bg-success.parsley-type:after,
        .helper-holder .bg-success.parsley-range:after,
        .helper-holder .bg-success.parsley-iban:after,
        .helper-holder .bg-success.parsley-personname:after,
        .helper-holder .bg-success.parsley-companyname:after,
        .helper-holder .bg-success.parsley-companycode:after,
        .helper-holder .bg-success.parsley-address:after,
        .helper-holder .bg-success.parsley-fullphonenumber:after,
        .helper-holder .bg-success.parsley-phonenumber:after,
        .helper-holder .bg-success.parsley-phonecountrycode:after,
        .helper-holder .bg-success.parsley-personalid:after,
        .helper-holder .bg-success.parsley-onlyletters:after,
        .helper-holder .bg-success.parsley-onlyucLetters:after,
        .helper-holder .bg-success.parsley-notes:after,
        .helper-holder .bg-success.parsley-name:after,
        .helper-holder .bg-success.parsley-vat:after,
        .helper-holder .bg-success.parsley-zip:after,
        .helper-holder .bg-success.parsley-invoiceno:after,
        .helper-holder .bg-success.parsley-equalto:after, .parsley-errors-list .bg-success.parsley-custom-error-message:after,
        .parsley-errors-list .bg-success.parsley-required:after,
        .parsley-errors-list .bg-success.parsley-iban:after,
        .parsley-errors-list .bg-success.parsley-personname:after,
        .parsley-errors-list .bg-success.parsley-companyname:after,
        .parsley-errors-list .bg-success.parsley-companycode:after,
        .parsley-errors-list .bg-success.parsley-address:after,
        .parsley-errors-list .bg-success.parsley-fullphonenumber:after,
        .parsley-errors-list .bg-success.parsley-phonenumber:after,
        .parsley-errors-list .bg-success.parsley-phonecountrycode:after,
        .parsley-errors-list .bg-success.parsley-personalid:after,
        .parsley-errors-list .bg-success.parsley-onlyletters:after,
        .parsley-errors-list .bg-success.parsley-onlyucLetters:after,
        .parsley-errors-list .bg-success.parsley-notes:after,
        .parsley-errors-list .bg-success.parsley-name:after,
        .parsley-errors-list .bg-success.parsley-vat:after,
        .parsley-errors-list .bg-success.parsley-zip:after,
        .parsley-errors-list .bg-success.parsley-invoiceno:after,
        .parsley-errors-list .bg-success.parsley-min:after, .parsley-errors-list .bg-success.parsley-max:after, .parsley-errors-list .bg-success.parsley-lte:after, .parsley-errors-list .bg-success.parsley-lt:after, .parsley-errors-list .bg-success.parsley-remote:after, .parsley-errors-list .bg-success.parsley-maxlength:after, .parsley-errors-list .bg-success.parsley-minlength:after, .parsley-errors-list .bg-success.parsley-improvements:after, .parsley-errors-list .bg-success.parsley-downpayment:after, .parsley-errors-list .parsley- .bg-success:after {
            border-color: rgba(223, 240, 216, 0);
            border-bottom-color: #DDE8C7;
        }

    .arrow_box.bg-danger, .helper-holder .arrow_box.parsley-required, .helper-holder .parsley-required.bg-success, .helper-holder .parsley-required.bg-danger, .helper-holder .parsley-required.parsley-length, .helper-holder .parsley-required.parsley-pattern, .helper-holder .parsley-required.parsley-type, .helper-holder .parsley-required.parsley-range,
    .helper-holder .parsley-required.parsley-equalto,
    .helper-holder .parsley-required.parsley-iban,
    .helper-holder .parsley-required.parsley-personname,
    .helper-holder .parsley-required.parsley-companyname,
    .helper-holder .parsley-required.parsley-companycode,
    .helper-holder .parsley-required.parsley-address,
    .helper-holder .parsley-required.parsley-fullphonenumber,
    .helper-holder .parsley-required.parsley-phonenumber,
    .helper-holder .parsley-required.parsley-phonecountrycode,
    .helper-holder .parsley-required.parsley-personalid,
    .helper-holder .parsley-required.parsley-onlyletters,
    .helper-holder .parsley-required.parsley-onlyucLetters,
    .helper-holder .parsley-required.parsley-notes,
    .helper-holder .parsley-required.parsley-name,
    .helper-holder .parsley-required.parsley-vat,
    .helper-holder .parsley-required.parsley-zip,
    .helper-holder .parsley-required.parsley-invoiceno,
    .helper-holder .parsley-errors-list .parsley-required,
    .parsley-errors-list .helper-holder .parsley-required, .helper-holder .parsley-required.bg-warning, .helper-holder .parsley-required.bg-info,
    .helper-holder .arrow_box.parsley-length,
    .helper-holder .parsley-length.bg-success,
    .helper-holder .parsley-length.bg-danger,
    .helper-holder .parsley-errors-list .parsley-length.parsley-custom-error-message, .parsley-errors-list
    .helper-holder .parsley-length.parsley-custom-error-message,
    .helper-holder .parsley-errors-list .parsley-length.parsley-min, .parsley-errors-list
    .helper-holder .parsley-length.parsley-min,
    .helper-holder .parsley-errors-list .parsley-length.parsley-max, .parsley-errors-list
    .helper-holder .parsley-length.parsley-max,
    .helper-holder .parsley-errors-list .parsley-length.parsley-lte, .parsley-errors-list
    .helper-holder .parsley-length.parsley-lte,
    .helper-holder .parsley-errors-list .parsley-length.parsley-lt, .parsley-errors-list
    .helper-holder .parsley-length.parsley-lt,
    .helper-holder .parsley-errors-list .parsley-length.parsley-remote, .parsley-errors-list
    .helper-holder .parsley-length.parsley-remote,
    .helper-holder .parsley-errors-list .parsley-length.parsley-maxlength, .parsley-errors-list
    .helper-holder .parsley-length.parsley-maxlength,
    .helper-holder .parsley-errors-list .parsley-length.parsley-minlength, .parsley-errors-list
    .helper-holder .parsley-length.parsley-minlength,
    .helper-holder .parsley-errors-list .parsley-length.parsley-improvements, .parsley-errors-list
    .helper-holder .parsley-length.parsley-improvements,
    .helper-holder .parsley-errors-list .parsley-length.parsley-downpayment, .parsley-errors-list
    .helper-holder .parsley-length.parsley-downpayment,
    .helper-holder .parsley-errors-list .parsley- .parsley-length, .parsley-errors-list .parsley-
    .helper-holder .parsley-length,
    .helper-holder .parsley-length.bg-warning,
    .helper-holder .parsley-length.bg-info,
    .helper-holder .arrow_box.parsley-pattern,
    .helper-holder .parsley-pattern.bg-success,
    .helper-holder .parsley-pattern.bg-danger,
    .helper-holder .parsley-errors-list .parsley-pattern.parsley-custom-error-message, .parsley-errors-list
    .helper-holder .parsley-pattern.parsley-custom-error-message,
    .helper-holder .parsley-errors-list .parsley-pattern.parsley-min, .parsley-errors-list
    .helper-holder .parsley-pattern.parsley-min,
    .helper-holder .parsley-errors-list .parsley-pattern.parsley-max, .parsley-errors-list
    .helper-holder .parsley-pattern.parsley-max,
    .helper-holder .parsley-errors-list .parsley-pattern.parsley-lte, .parsley-errors-list
    .helper-holder .parsley-pattern.parsley-lte,
    .helper-holder .parsley-errors-list .parsley-pattern.parsley-lt, .parsley-errors-list
    .helper-holder .parsley-pattern.parsley-lt,
    .helper-holder .parsley-errors-list .parsley-pattern.parsley-remote, .parsley-errors-list
    .helper-holder .parsley-pattern.parsley-remote,
    .helper-holder .parsley-errors-list .parsley-pattern.parsley-maxlength, .parsley-errors-list
    .helper-holder .parsley-pattern.parsley-maxlength,
    .helper-holder .parsley-errors-list .parsley-pattern.parsley-minlength, .parsley-errors-list
    .helper-holder .parsley-pattern.parsley-minlength,
    .helper-holder .parsley-errors-list .parsley-pattern.parsley-improvements, .parsley-errors-list
    .helper-holder .parsley-pattern.parsley-improvements,
    .helper-holder .parsley-errors-list .parsley-pattern.parsley-downpayment, .parsley-errors-list
    .helper-holder .parsley-pattern.parsley-downpayment,
    .helper-holder .parsley-errors-list .parsley- .parsley-pattern, .parsley-errors-list .parsley-
    .helper-holder .parsley-pattern,
    .helper-holder .parsley-pattern.bg-warning,
    .helper-holder .parsley-pattern.bg-info,
    .helper-holder .arrow_box.parsley-type,
    .helper-holder .parsley-type.bg-success,
    .helper-holder .parsley-type.bg-danger,
    .helper-holder .parsley-errors-list .parsley-type.parsley-custom-error-message, .parsley-errors-list
    .helper-holder .parsley-type.parsley-custom-error-message,
    .helper-holder .parsley-errors-list .parsley-type.parsley-min, .parsley-errors-list
    .helper-holder .parsley-type.parsley-min,
    .helper-holder .parsley-errors-list .parsley-type.parsley-max, .parsley-errors-list
    .helper-holder .parsley-type.parsley-max,
    .helper-holder .parsley-errors-list .parsley-type.parsley-lte, .parsley-errors-list
    .helper-holder .parsley-type.parsley-lte,
    .helper-holder .parsley-errors-list .parsley-type.parsley-lt, .parsley-errors-list
    .helper-holder .parsley-type.parsley-lt,
    .helper-holder .parsley-errors-list .parsley-type.parsley-remote, .parsley-errors-list
    .helper-holder .parsley-type.parsley-remote,
    .helper-holder .parsley-errors-list .parsley-type.parsley-maxlength, .parsley-errors-list
    .helper-holder .parsley-type.parsley-maxlength,
    .helper-holder .parsley-errors-list .parsley-type.parsley-minlength, .parsley-errors-list
    .helper-holder .parsley-type.parsley-minlength,
    .helper-holder .parsley-errors-list .parsley-type.parsley-improvements, .parsley-errors-list
    .helper-holder .parsley-type.parsley-improvements,
    .helper-holder .parsley-errors-list .parsley-type.parsley-downpayment, .parsley-errors-list
    .helper-holder .parsley-type.parsley-downpayment,
    .helper-holder .parsley-errors-list .parsley- .parsley-type, .parsley-errors-list .parsley-
    .helper-holder .parsley-type,
    .helper-holder .parsley-type.bg-warning,
    .helper-holder .parsley-type.bg-info,
    .helper-holder .arrow_box.parsley-range,
    .helper-holder .parsley-range.bg-success,
    .helper-holder .parsley-range.bg-danger,
    .helper-holder .parsley-errors-list .parsley-range.parsley-custom-error-message, .parsley-errors-list
    .helper-holder .parsley-range.parsley-custom-error-message,
    .helper-holder .parsley-errors-list .parsley-range.parsley-min, .parsley-errors-list
    .helper-holder .parsley-range.parsley-min,
    .helper-holder .parsley-errors-list .parsley-range.parsley-max, .parsley-errors-list
    .helper-holder .parsley-range.parsley-max,
    .helper-holder .parsley-errors-list .parsley-range.parsley-lte, .parsley-errors-list
    .helper-holder .parsley-range.parsley-lte,
    .helper-holder .parsley-errors-list .parsley-range.parsley-lt, .parsley-errors-list
    .helper-holder .parsley-range.parsley-lt,
    .helper-holder .parsley-errors-list .parsley-range.parsley-remote, .parsley-errors-list
    .helper-holder .parsley-range.parsley-remote,
    .helper-holder .parsley-errors-list .parsley-range.parsley-maxlength, .parsley-errors-list
    .helper-holder .parsley-range.parsley-maxlength,
    .helper-holder .parsley-errors-list .parsley-range.parsley-minlength, .parsley-errors-list
    .helper-holder .parsley-range.parsley-minlength,
    .helper-holder .parsley-errors-list .parsley-range.parsley-improvements, .parsley-errors-list
    .helper-holder .parsley-range.parsley-improvements,
    .helper-holder .parsley-errors-list .parsley-range.parsley-downpayment, .parsley-errors-list
    .helper-holder .parsley-range.parsley-downpayment,
    .helper-holder .parsley-errors-list .parsley- .parsley-range, .parsley-errors-list .parsley-
    .helper-holder .parsley-range,
    .helper-holder .parsley-range.bg-warning,
    .helper-holder .parsley-range.bg-info,
    .helper-holder .arrow_box.parsley-equalto,
    .helper-holder .parsley-equalto.bg-success,
    .helper-holder .parsley-equalto.bg-danger,
    .helper-holder .parsley-errors-list .parsley-equalto.parsley-custom-error-message, .parsley-errors-list
    .helper-holder .parsley-equalto.parsley-custom-error-message,
    .helper-holder .parsley-errors-list .parsley-equalto.parsley-min, .parsley-errors-list
    .helper-holder .parsley-equalto.parsley-min,
    .helper-holder .parsley-errors-list .parsley-equalto.parsley-max, .parsley-errors-list
    .helper-holder .parsley-equalto.parsley-max,
    .helper-holder .parsley-errors-list .parsley-equalto.parsley-lte, .parsley-errors-list
    .helper-holder .parsley-equalto.parsley-lte,
    .helper-holder .parsley-errors-list .parsley-equalto.parsley-lt, .parsley-errors-list
    .helper-holder .parsley-equalto.parsley-lt,
    .helper-holder .parsley-errors-list .parsley-equalto.parsley-remote, .parsley-errors-list
    .helper-holder .parsley-equalto.parsley-remote,
    .helper-holder .parsley-errors-list .parsley-equalto.parsley-maxlength, .parsley-errors-list
    .helper-holder .parsley-equalto.parsley-maxlength,
    .helper-holder .parsley-errors-list .parsley-equalto.parsley-minlength, .parsley-errors-list
    .helper-holder .parsley-equalto.parsley-minlength,
    .helper-holder .parsley-errors-list .parsley-equalto.parsley-improvements, .parsley-errors-list
    .helper-holder .parsley-equalto.parsley-improvements,
    .helper-holder .parsley-errors-list .parsley-equalto.parsley-downpayment, .parsley-errors-list
    .helper-holder .parsley-equalto.parsley-downpayment,
    .helper-holder .parsley-errors-list .parsley- .parsley-equalto, .parsley-errors-list .parsley-
    .helper-holder .parsley-equalto,
    .helper-holder .parsley-equalto.bg-warning,
    .helper-holder .parsley-equalto.bg-info, .bg-danger.bg-success, .parsley-errors-list .bg-success.parsley-custom-error-message, .parsley-errors-list .bg-success.parsley-required, .parsley-errors-list .bg-success.parsley-min, .parsley-errors-list .bg-success.parsley-max, .parsley-errors-list .bg-success.parsley-lte, .parsley-errors-list .bg-success.parsley-lt, .parsley-errors-list .bg-success.parsley-remote, .parsley-errors-list .bg-success.parsley-maxlength, .parsley-errors-list .bg-success.parsley-minlength, .parsley-errors-list .bg-success.parsley-improvements, .parsley-errors-list .bg-success.parsley-downpayment, .parsley-errors-list .parsley- .bg-success, .bg-danger, .helper-holder .parsley-required,
    .helper-holder .parsley-length,
    .helper-holder .parsley-pattern,
    .helper-holder .parsley-type,
    .helper-holder .parsley-range,
    .helper-holder .parsley-equalto, .parsley-errors-list .parsley-custom-error-message,
    .parsley-errors-list .parsley-required,
    .parsley-errors-list .parsley-iban,
    .parsley-errors-list .parsley-personname,
    .parsley-errors-list .parsley-companyname,
    .parsley-errors-list .parsley-companycode,
    .parsley-errors-list .parsley-address,
    .parsley-errors-list .parsley-fullphonenumber,
    .parsley-errors-list .parsley-phonenumber,
    .parsley-errors-list .parsley-phonecountrycode,
    .parsley-errors-list .parsley-personalid,
    .parsley-errors-list .parsley-onlyletters,
    .parsley-errors-list .parsley-onlyucLetters,
    .parsley-errors-list .parsley-notes,
    .parsley-errors-list .parsley-name,
    .parsley-errors-list .parsley-vat,
    .parsley-errors-list .parsley-zip,
    .parsley-errors-list .parsley-invoiceno,
    .parsley-errors-list .parsley-type,
    .parsley-errors-list .parsley-min, .parsley-errors-list .parsley-max, .parsley-errors-list .parsley-lte, .parsley-errors-list .parsley-lt, .parsley-errors-list .parsley-gt .parsley-max, .parsley-errors-list .parsley-remote, .parsley-errors-list .parsley-maxlength, .parsley-errors-list .parsley-minlength, .parsley-errors-list .parsley-improvements, .parsley-errors-list .parsley-downpayment, .parsley-errors-list .parsley- *, .bg-danger.bg-warning, .parsley-errors-list .bg-warning.parsley-custom-error-message, .parsley-errors-list .bg-warning.parsley-required, .parsley-errors-list .bg-warning.parsley-min, .parsley-errors-list .bg-warning.parsley-max, .parsley-errors-list .bg-warning.parsley-lte, .parsley-errors-list .bg-warning.parsley-lt, .parsley-errors-list .bg-warning.parsley-remote, .parsley-errors-list .bg-warning.parsley-maxlength, .parsley-errors-list .bg-warning.parsley-minlength, .parsley-errors-list .bg-warning.parsley-improvements, .parsley-errors-list .bg-warning.parsley-downpayment, .parsley-errors-list .parsley- .bg-warning, .bg-danger.bg-info, .parsley-errors-list .bg-info.parsley-custom-error-message, .parsley-errors-list .bg-info.parsley-required, .parsley-errors-list .bg-info.parsley-min, .parsley-errors-list .bg-info.parsley-max, .parsley-errors-list .bg-info.parsley-lte, .parsley-errors-list .bg-info.parsley-lt, .parsley-errors-list .bg-info.parsley-remote, .parsley-errors-list .bg-info.parsley-maxlength, .parsley-errors-list .bg-info.parsley-minlength, .parsley-errors-list .bg-info.parsley-improvements, .parsley-errors-list .bg-info.parsley-downpayment, .parsley-errors-list .parsley- .bg-info, .parsley-errors-list .arrow_box.parsley-custom-error-message, .parsley-errors-list .parsley-custom-error-message.bg-danger, .parsley-errors-list .helper-holder .parsley-custom-error-message.parsley-required, .helper-holder .parsley-errors-list .parsley-custom-error-message.parsley-required, .parsley-errors-list .arrow_box.parsley-required, .parsley-errors-list .parsley-required.bg-danger, .parsley-errors-list .arrow_box.parsley-min, .parsley-errors-list .parsley-min.bg-danger, .parsley-errors-list .helper-holder .parsley-min.parsley-required, .helper-holder .parsley-errors-list .parsley-min.parsley-required, .parsley-errors-list .arrow_box.parsley-max, .parsley-errors-list .parsley-max.bg-danger, .parsley-errors-list .helper-holder .parsley-max.parsley-required, .helper-holder .parsley-errors-list .parsley-max.parsley-required, .parsley-errors-list .arrow_box.parsley-lte, .parsley-errors-list .parsley-lte.bg-danger, .parsley-errors-list .helper-holder .parsley-lte.parsley-required, .helper-holder .parsley-errors-list .parsley-lte.parsley-required, .parsley-errors-list .arrow_box.parsley-lt, .parsley-errors-list .parsley-lt.bg-danger, .parsley-errors-list .helper-holder .parsley-lt.parsley-required, .helper-holder .parsley-errors-list .parsley-lt.parsley-required, .parsley-errors-list .parsley-gt .arrow_box.parsley-max, .parsley-errors-list .parsley-gt .parsley-max.bg-success, .parsley-errors-list .parsley-gt .parsley-max.bg-danger, .parsley-errors-list .parsley-gt .helper-holder .parsley-max.parsley-required, .helper-holder .parsley-errors-list .parsley-gt .parsley-max.parsley-required, .parsley-errors-list .parsley-gt
    .helper-holder .parsley-max.parsley-length,
    .helper-holder .parsley-errors-list .parsley-gt .parsley-max.parsley-length, .parsley-errors-list .parsley-gt
    .helper-holder .parsley-max.parsley-pattern,
    .helper-holder .parsley-errors-list .parsley-gt .parsley-max.parsley-pattern, .parsley-errors-list .parsley-gt
    .helper-holder .parsley-max.parsley-type,
    .helper-holder .parsley-errors-list .parsley-gt .parsley-max.parsley-type, .parsley-errors-list .parsley-gt
    .helper-holder .parsley-max.parsley-range,
    .helper-holder .parsley-errors-list .parsley-gt .parsley-max.parsley-range, .parsley-errors-list .parsley-gt
    .helper-holder .parsley-max.parsley-equalto,
    .helper-holder .parsley-errors-list .parsley-gt .parsley-max.parsley-equalto,
    .parsley-errors-list .parsley-gt .parsley-max.bg-warning, .parsley-errors-list .parsley-gt .parsley-max.bg-info, .parsley-errors-list .arrow_box.parsley-remote, .parsley-errors-list .parsley-remote.bg-danger, .parsley-errors-list .helper-holder .parsley-remote.parsley-required, .helper-holder .parsley-errors-list .parsley-remote.parsley-required, .parsley-errors-list .arrow_box.parsley-maxlength, .parsley-errors-list .parsley-maxlength.bg-danger, .parsley-errors-list .helper-holder .parsley-maxlength.parsley-required, .helper-holder .parsley-errors-list .parsley-maxlength.parsley-required, .parsley-errors-list .arrow_box.parsley-minlength, .parsley-errors-list .parsley-minlength.bg-danger, .parsley-errors-list .helper-holder .parsley-minlength.parsley-required, .helper-holder .parsley-errors-list .parsley-minlength.parsley-required, .parsley-errors-list .arrow_box.parsley-improvements, .parsley-errors-list .parsley-improvements.bg-danger, .parsley-errors-list .helper-holder .parsley-improvements.parsley-required, .helper-holder .parsley-errors-list .parsley-improvements.parsley-required, .parsley-errors-list .arrow_box.parsley-downpayment, .parsley-errors-list .parsley-downpayment.bg-danger, .parsley-errors-list .helper-holder .parsley-downpayment.parsley-required, .helper-holder .parsley-errors-list .parsley-downpayment.parsley-required, .parsley-errors-list .parsley- .arrow_box, .parsley-errors-list .parsley- .bg-danger, .parsley-errors-list .parsley- .helper-holder .parsley-required, .helper-holder .parsley-errors-list .parsley- .parsley-required {
        background-color: #f2dede;
        color: #D0011B;
        border-bottom: 2px solid #D0011B;
        width: 100%;
    }

        .arrow_box.bg-danger:after, .helper-holder .arrow_box.parsley-required:after, .helper-holder .parsley-required.bg-success:after, .helper-holder .parsley-required.bg-danger:after, .helper-holder .parsley-required.parsley-length:after, .helper-holder .parsley-required.parsley-pattern:after, .helper-holder .parsley-required.parsley-type:after, .helper-holder .parsley-required.parsley-range:after, .helper-holder .parsley-required.parsley-equalto:after,
        .helper-holder .parsley-errors-list .parsley-required:after,
        .parsley-errors-list .helper-holder .parsley-required:after, .helper-holder .parsley-required.bg-warning:after, .helper-holder .parsley-required.bg-info:after,
        .helper-holder .arrow_box.parsley-length:after,
        .helper-holder .parsley-length.bg-success:after,
        .helper-holder .parsley-length.bg-danger:after,
        .helper-holder .parsley-errors-list .parsley-length.parsley-custom-error-message:after, .parsley-errors-list
        .helper-holder .parsley-length.parsley-custom-error-message:after,
        .helper-holder .parsley-errors-list .parsley-length.parsley-min:after, .parsley-errors-list
        .helper-holder .parsley-length.parsley-min:after,
        .helper-holder .parsley-errors-list .parsley-length.parsley-max:after, .parsley-errors-list
        .helper-holder .parsley-length.parsley-max:after,
        .helper-holder .parsley-errors-list .parsley-length.parsley-lte:after, .parsley-errors-list
        .helper-holder .parsley-length.parsley-lte:after,
        .helper-holder .parsley-errors-list .parsley-length.parsley-lt:after, .parsley-errors-list
        .helper-holder .parsley-length.parsley-lt:after,
        .helper-holder .parsley-errors-list .parsley-length.parsley-remote:after, .parsley-errors-list
        .helper-holder .parsley-length.parsley-remote:after,
        .helper-holder .parsley-errors-list .parsley-length.parsley-maxlength:after, .parsley-errors-list
        .helper-holder .parsley-length.parsley-maxlength:after,
        .helper-holder .parsley-errors-list .parsley-length.parsley-minlength:after, .parsley-errors-list
        .helper-holder .parsley-length.parsley-minlength:after,
        .helper-holder .parsley-errors-list .parsley-length.parsley-improvements:after, .parsley-errors-list
        .helper-holder .parsley-length.parsley-improvements:after,
        .helper-holder .parsley-errors-list .parsley-length.parsley-downpayment:after, .parsley-errors-list
        .helper-holder .parsley-length.parsley-downpayment:after,
        .helper-holder .parsley-errors-list .parsley- .parsley-length:after, .parsley-errors-list .parsley-
        .helper-holder .parsley-length:after,
        .helper-holder .parsley-length.bg-warning:after,
        .helper-holder .parsley-length.bg-info:after,
        .helper-holder .arrow_box.parsley-pattern:after,
        .helper-holder .parsley-pattern.bg-success:after,
        .helper-holder .parsley-pattern.bg-danger:after,
        .helper-holder .parsley-errors-list .parsley-pattern.parsley-custom-error-message:after, .parsley-errors-list
        .helper-holder .parsley-pattern.parsley-custom-error-message:after,
        .helper-holder .parsley-errors-list .parsley-pattern.parsley-min:after, .parsley-errors-list
        .helper-holder .parsley-pattern.parsley-min:after,
        .helper-holder .parsley-errors-list .parsley-pattern.parsley-max:after, .parsley-errors-list
        .helper-holder .parsley-pattern.parsley-max:after,
        .helper-holder .parsley-errors-list .parsley-pattern.parsley-lte:after, .parsley-errors-list
        .helper-holder .parsley-pattern.parsley-lte:after,
        .helper-holder .parsley-errors-list .parsley-pattern.parsley-lt:after, .parsley-errors-list
        .helper-holder .parsley-pattern.parsley-lt:after,
        .helper-holder .parsley-errors-list .parsley-pattern.parsley-remote:after, .parsley-errors-list
        .helper-holder .parsley-pattern.parsley-remote:after,
        .helper-holder .parsley-errors-list .parsley-pattern.parsley-maxlength:after, .parsley-errors-list
        .helper-holder .parsley-pattern.parsley-maxlength:after,
        .helper-holder .parsley-errors-list .parsley-pattern.parsley-minlength:after, .parsley-errors-list
        .helper-holder .parsley-pattern.parsley-minlength:after,
        .helper-holder .parsley-errors-list .parsley-pattern.parsley-improvements:after, .parsley-errors-list
        .helper-holder .parsley-pattern.parsley-improvements:after,
        .helper-holder .parsley-errors-list .parsley-pattern.parsley-downpayment:after, .parsley-errors-list
        .helper-holder .parsley-pattern.parsley-downpayment:after,
        .helper-holder .parsley-errors-list .parsley- .parsley-pattern:after, .parsley-errors-list .parsley-
        .helper-holder .parsley-pattern:after,
        .helper-holder .parsley-pattern.bg-warning:after,
        .helper-holder .parsley-pattern.bg-info:after,
        .helper-holder .arrow_box.parsley-type:after,
        .helper-holder .parsley-type.bg-success:after,
        .helper-holder .parsley-type.bg-danger:after,
        .helper-holder .parsley-errors-list .parsley-type.parsley-custom-error-message:after, .parsley-errors-list
        .helper-holder .parsley-type.parsley-custom-error-message:after,
        .helper-holder .parsley-errors-list .parsley-type.parsley-min:after, .parsley-errors-list
        .helper-holder .parsley-type.parsley-min:after,
        .helper-holder .parsley-errors-list .parsley-type.parsley-max:after, .parsley-errors-list
        .helper-holder .parsley-type.parsley-max:after,
        .helper-holder .parsley-errors-list .parsley-type.parsley-lte:after, .parsley-errors-list
        .helper-holder .parsley-type.parsley-lte:after,
        .helper-holder .parsley-errors-list .parsley-type.parsley-lt:after, .parsley-errors-list
        .helper-holder .parsley-type.parsley-lt:after,
        .helper-holder .parsley-errors-list .parsley-type.parsley-remote:after, .parsley-errors-list
        .helper-holder .parsley-type.parsley-remote:after,
        .helper-holder .parsley-errors-list .parsley-type.parsley-maxlength:after, .parsley-errors-list
        .helper-holder .parsley-type.parsley-maxlength:after,
        .helper-holder .parsley-errors-list .parsley-type.parsley-minlength:after, .parsley-errors-list
        .helper-holder .parsley-type.parsley-minlength:after,
        .helper-holder .parsley-errors-list .parsley-type.parsley-improvements:after, .parsley-errors-list
        .helper-holder .parsley-type.parsley-improvements:after,
        .helper-holder .parsley-errors-list .parsley-type.parsley-downpayment:after, .parsley-errors-list
        .helper-holder .parsley-type.parsley-downpayment:after,
        .helper-holder .parsley-errors-list .parsley- .parsley-type:after, .parsley-errors-list .parsley-
        .helper-holder .parsley-type:after,
        .helper-holder .parsley-type.bg-warning:after,
        .helper-holder .parsley-type.bg-info:after,
        .helper-holder .arrow_box.parsley-range:after,
        .helper-holder .parsley-range.bg-success:after,
        .helper-holder .parsley-range.bg-danger:after,
        .helper-holder .parsley-errors-list .parsley-range.parsley-custom-error-message:after, .parsley-errors-list
        .helper-holder .parsley-range.parsley-custom-error-message:after,
        .helper-holder .parsley-errors-list .parsley-range.parsley-min:after, .parsley-errors-list
        .helper-holder .parsley-range.parsley-min:after,
        .helper-holder .parsley-errors-list .parsley-range.parsley-max:after, .parsley-errors-list
        .helper-holder .parsley-range.parsley-max:after,
        .helper-holder .parsley-errors-list .parsley-range.parsley-lte:after, .parsley-errors-list
        .helper-holder .parsley-range.parsley-lte:after,
        .helper-holder .parsley-errors-list .parsley-range.parsley-lt:after, .parsley-errors-list
        .helper-holder .parsley-range.parsley-lt:after,
        .helper-holder .parsley-errors-list .parsley-range.parsley-remote:after, .parsley-errors-list
        .helper-holder .parsley-range.parsley-remote:after,
        .helper-holder .parsley-errors-list .parsley-range.parsley-maxlength:after, .parsley-errors-list
        .helper-holder .parsley-range.parsley-maxlength:after,
        .helper-holder .parsley-errors-list .parsley-range.parsley-minlength:after, .parsley-errors-list
        .helper-holder .parsley-range.parsley-minlength:after,
        .helper-holder .parsley-errors-list .parsley-range.parsley-improvements:after, .parsley-errors-list
        .helper-holder .parsley-range.parsley-improvements:after,
        .helper-holder .parsley-errors-list .parsley-range.parsley-downpayment:after, .parsley-errors-list
        .helper-holder .parsley-range.parsley-downpayment:after,
        .helper-holder .parsley-errors-list .parsley- .parsley-range:after, .parsley-errors-list .parsley-
        .helper-holder .parsley-range:after,
        .helper-holder .parsley-range.bg-warning:after,
        .helper-holder .parsley-range.bg-info:after,
        .helper-holder .arrow_box.parsley-equalto:after,
        .helper-holder .parsley-equalto.bg-success:after,
        .helper-holder .parsley-equalto.bg-danger:after,
        .helper-holder .parsley-errors-list .parsley-equalto.parsley-custom-error-message:after, .parsley-errors-list
        .helper-holder .parsley-equalto.parsley-custom-error-message:after,
        .helper-holder .parsley-errors-list .parsley-equalto.parsley-min:after, .parsley-errors-list
        .helper-holder .parsley-equalto.parsley-min:after,
        .helper-holder .parsley-errors-list .parsley-equalto.parsley-max:after, .parsley-errors-list
        .helper-holder .parsley-equalto.parsley-max:after,
        .helper-holder .parsley-errors-list .parsley-equalto.parsley-lte:after, .parsley-errors-list
        .helper-holder .parsley-equalto.parsley-lte:after,
        .helper-holder .parsley-errors-list .parsley-equalto.parsley-lt:after, .parsley-errors-list
        .helper-holder .parsley-equalto.parsley-lt:after,
        .helper-holder .parsley-errors-list .parsley-equalto.parsley-remote:after, .parsley-errors-list
        .helper-holder .parsley-equalto.parsley-remote:after,
        .helper-holder .parsley-errors-list .parsley-equalto.parsley-maxlength:after, .parsley-errors-list
        .helper-holder .parsley-equalto.parsley-maxlength:after,
        .helper-holder .parsley-errors-list .parsley-equalto.parsley-minlength:after, .parsley-errors-list
        .helper-holder .parsley-equalto.parsley-minlength:after,
        .helper-holder .parsley-errors-list .parsley-equalto.parsley-improvements:after, .parsley-errors-list
        .helper-holder .parsley-equalto.parsley-improvements:after,
        .helper-holder .parsley-errors-list .parsley-equalto.parsley-downpayment:after, .parsley-errors-list
        .helper-holder .parsley-equalto.parsley-downpayment:after,
        .helper-holder .parsley-errors-list .parsley- .parsley-equalto:after, .parsley-errors-list .parsley-
        .helper-holder .parsley-equalto:after,
        .helper-holder .parsley-equalto.bg-warning:after,
        .helper-holder .parsley-equalto.bg-info:after, .bg-danger.bg-success:after, .parsley-errors-list .bg-success.parsley-custom-error-message:after, .parsley-errors-list .bg-success.parsley-required:after, .parsley-errors-list .bg-success.parsley-min:after, .parsley-errors-list .bg-success.parsley-max:after, .parsley-errors-list .bg-success.parsley-lte:after, .parsley-errors-list .bg-success.parsley-lt:after, .parsley-errors-list .bg-success.parsley-remote:after, .parsley-errors-list .bg-success.parsley-maxlength:after, .parsley-errors-list .bg-success.parsley-minlength:after, .parsley-errors-list .bg-success.parsley-improvements:after, .parsley-errors-list .bg-success.parsley-downpayment:after, .parsley-errors-list .parsley- .bg-success:after, .bg-danger:after, .helper-holder .parsley-required:after,
        .helper-holder .parsley-length:after,
        .helper-holder .parsley-pattern:after,
        .helper-holder .parsley-type:after,
        .helper-holder .parsley-range:after,
        .helper-holder .parsley-equalto:after,
        .parsley-errors-list .parsley-custom-error-message:after,
        .parsley-errors-list .parsley-required:after,
        .parsley-errors-list .parsley-iban:after,
        .parsley-errors-list .parsley-personname:after,
        .parsley-errors-list .parsley-companyname:after,
        .parsley-errors-list .parsley-companycode:after,
        .parsley-errors-list .parsley-address:after,
        .parsley-errors-list .parsley-fullphonenumber:after,
        .parsley-errors-list .parsley-phonenumber:after,
        .parsley-errors-list .parsley-phonecountrycode:after,
        .parsley-errors-list .parsley-personalid:after,
        .parsley-errors-list .parsley-onlyletters:after,
        .parsley-errors-list .parsley-onlyucLetters:after,
        .parsley-errors-list .parsley-notes:after,
        .parsley-errors-list .parsley-name:after,
        .parsley-errors-list .parsley-vat:after,
        .parsley-errors-list .parsley-zip:after,
        .parsley-errors-list .parsley-invoiceno:after,
        .parsley-errors-list .parsley-type:after,
        .parsley-errors-list .parsley-min:after, .parsley-errors-list .parsley-max:after, .parsley-errors-list .parsley-lte:after, .parsley-errors-list .parsley-lt:after, .parsley-errors-list .parsley-gt .parsley-max:after, .parsley-errors-list .parsley-remote:after, .parsley-errors-list .parsley-maxlength:after, .parsley-errors-list .parsley-minlength:after, .parsley-errors-list .parsley-improvements:after, .parsley-errors-list .parsley-downpayment:after, .parsley-errors-list .parsley- :after, .bg-danger.bg-warning:after, .parsley-errors-list .bg-warning.parsley-custom-error-message:after, .parsley-errors-list .bg-warning.parsley-required:after, .parsley-errors-list .bg-warning.parsley-min:after, .parsley-errors-list .bg-warning.parsley-max:after, .parsley-errors-list .bg-warning.parsley-lte:after, .parsley-errors-list .bg-warning.parsley-lt:after, .parsley-errors-list .bg-warning.parsley-remote:after, .parsley-errors-list .bg-warning.parsley-maxlength:after, .parsley-errors-list .bg-warning.parsley-minlength:after, .parsley-errors-list .bg-warning.parsley-improvements:after, .parsley-errors-list .bg-warning.parsley-downpayment:after, .parsley-errors-list .parsley- .bg-warning:after, .bg-danger.bg-info:after, .parsley-errors-list .bg-info.parsley-custom-error-message:after, .parsley-errors-list .bg-info.parsley-required:after, .parsley-errors-list .bg-info.parsley-min:after, .parsley-errors-list .bg-info.parsley-max:after, .parsley-errors-list .bg-info.parsley-lte:after, .parsley-errors-list .bg-info.parsley-lt:after, .parsley-errors-list .bg-info.parsley-remote:after, .parsley-errors-list .bg-info.parsley-maxlength:after, .parsley-errors-list .bg-info.parsley-minlength:after, .parsley-errors-list .bg-info.parsley-improvements:after, .parsley-errors-list .bg-info.parsley-downpayment:after, .parsley-errors-list .parsley- .bg-info:after, .parsley-errors-list .arrow_box.parsley-custom-error-message:after, .parsley-errors-list .parsley-custom-error-message.bg-danger:after, .parsley-errors-list .helper-holder .parsley-custom-error-message.parsley-required:after, .helper-holder .parsley-errors-list .parsley-custom-error-message.parsley-required:after, .parsley-errors-list .arrow_box.parsley-required:after, .parsley-errors-list .parsley-required.bg-danger:after, .parsley-errors-list .arrow_box.parsley-min:after, .parsley-errors-list .parsley-min.bg-danger:after, .parsley-errors-list .helper-holder .parsley-min.parsley-required:after, .helper-holder .parsley-errors-list .parsley-min.parsley-required:after, .parsley-errors-list .arrow_box.parsley-max:after, .parsley-errors-list .parsley-max.bg-danger:after, .parsley-errors-list .helper-holder .parsley-max.parsley-required:after, .helper-holder .parsley-errors-list .parsley-max.parsley-required:after, .parsley-errors-list .arrow_box.parsley-lte:after, .parsley-errors-list .parsley-lte.bg-danger:after, .parsley-errors-list .helper-holder .parsley-lte.parsley-required:after, .helper-holder .parsley-errors-list .parsley-lte.parsley-required:after, .parsley-errors-list .arrow_box.parsley-lt:after, .parsley-errors-list .parsley-lt.bg-danger:after, .parsley-errors-list .helper-holder .parsley-lt.parsley-required:after, .helper-holder .parsley-errors-list .parsley-lt.parsley-required:after, .parsley-errors-list .parsley-gt .arrow_box.parsley-max:after, .parsley-errors-list .parsley-gt .parsley-max.bg-success:after, .parsley-errors-list .parsley-gt .parsley-max.bg-danger:after, .parsley-errors-list .parsley-gt .helper-holder .parsley-max.parsley-required:after, .helper-holder .parsley-errors-list .parsley-gt .parsley-max.parsley-required:after, .parsley-errors-list .parsley-gt
        .helper-holder .parsley-max.parsley-length:after,
        .helper-holder .parsley-errors-list .parsley-gt .parsley-max.parsley-length:after, .parsley-errors-list .parsley-gt
        .helper-holder .parsley-max.parsley-pattern:after,
        .helper-holder .parsley-errors-list .parsley-gt .parsley-max.parsley-pattern:after, .parsley-errors-list .parsley-gt
        .helper-holder .parsley-max.parsley-type:after,
        .helper-holder .parsley-errors-list .parsley-gt .parsley-max.parsley-type:after, .parsley-errors-list .parsley-gt
        .helper-holder .parsley-max.parsley-range:after,
        .helper-holder .parsley-errors-list .parsley-gt .parsley-max.parsley-range:after, .parsley-errors-list .parsley-gt
        .helper-holder .parsley-max.parsley-equalto:after,
        .helper-holder .parsley-errors-list .parsley-gt .parsley-max.parsley-equalto:after, .parsley-errors-list .parsley-gt .parsley-max.bg-warning:after, .parsley-errors-list .parsley-gt .parsley-max.bg-info:after, .parsley-errors-list .arrow_box.parsley-remote:after, .parsley-errors-list .parsley-remote.bg-danger:after, .parsley-errors-list .helper-holder .parsley-remote.parsley-required:after, .helper-holder .parsley-errors-list .parsley-remote.parsley-required:after, .parsley-errors-list .arrow_box.parsley-maxlength:after, .parsley-errors-list .parsley-maxlength.bg-danger:after, .parsley-errors-list .helper-holder .parsley-maxlength.parsley-required:after, .helper-holder .parsley-errors-list .parsley-maxlength.parsley-required:after, .parsley-errors-list .arrow_box.parsley-minlength:after, .parsley-errors-list .parsley-minlength.bg-danger:after, .parsley-errors-list .helper-holder .parsley-minlength.parsley-required:after, .helper-holder .parsley-errors-list .parsley-minlength.parsley-required:after, .parsley-errors-list .arrow_box.parsley-improvements:after, .parsley-errors-list .parsley-improvements.bg-danger:after, .parsley-errors-list .helper-holder .parsley-improvements.parsley-required:after, .helper-holder .parsley-errors-list .parsley-improvements.parsley-required:after, .parsley-errors-list .arrow_box.parsley-downpayment:after, .parsley-errors-list .parsley-downpayment.bg-danger:after, .parsley-errors-list .helper-holder .parsley-downpayment.parsley-required:after, .helper-holder .parsley-errors-list .parsley-downpayment.parsley-required:after, .parsley-errors-list .parsley- .arrow_box:after, .parsley-errors-list .parsley- .bg-danger:after, .parsley-errors-list .parsley- .helper-holder .parsley-required:after, .helper-holder .parsley-errors-list .parsley- .parsley-required:after {
            border-color: rgba(242, 222, 222, 0);
            border-bottom-color: #f2dede;
        }

    .arrow_box.bg-warning, .helper-holder .bg-warning.parsley-required,
    .helper-holder .bg-warning.parsley-length,
    .helper-holder .bg-warning.parsley-pattern,
    .helper-holder .bg-warning.parsley-type,
    .helper-holder .bg-warning.parsley-range,
    .helper-holder .bg-warning.parsley-equalto,
    .helper-holder .bg-warning.parsley-iban,
    .helper-holder .bg-warning.parsley-personname,
    .helper-holder .bg-warning.parsley-companyname,
    .helper-holder .bg-warning.parsley-companycode,
    .helper-holder .bg-warning.parsley-address,
    .helper-holder .bg-warning.parsley-fullphonenumber,
    .helper-holder .bg-warning.parsley-phonenumber,
    .helper-holder .bg-warning.parsley-phonecountrycode,
    .helper-holder .bg-warning.parsley-personalid,
    .helper-holder .bg-warning.parsley-onlyletters,
    .helper-holder .bg-warning.parsley-onlyucLetters,
    .helper-holder .bg-warning.parsley-notes,
    .helper-holder .bg-warning.parsley-name,
    .helper-holder .bg-warning.parsley-vat,
    .helper-holder .bg-warning.parsley-zip,
    .helper-holder .bg-warning.parsley-invoiceno, 
    .parsley-errors-list .bg-warning.parsley-custom-error-message, .parsley-errors-list .bg-warning.parsley-required, .parsley-errors-list .bg-warning.parsley-min, .parsley-errors-list .bg-warning.parsley-max, .parsley-errors-list .bg-warning.parsley-lte, .parsley-errors-list .bg-warning.parsley-lt, .parsley-errors-list .bg-warning.parsley-remote, .parsley-errors-list .bg-warning.parsley-maxlength, .parsley-errors-list .bg-warning.parsley-minlength, .parsley-errors-list .bg-warning.parsley-improvements, .parsley-errors-list .bg-warning.parsley-downpayment, .parsley-errors-list .parsley- .bg-warning, .bg-warning {
        background-color: #FEECBD;
        color: #EB9A38;
        border-bottom: 2px solid #EB9A38;
    }

            .arrow_box.bg-warning:after, .helper-holder .bg-warning.parsley-required:after,
            .helper-holder .bg-warning.parsley-length:after,
            .helper-holder .bg-warning.parsley-pattern:after,
            .helper-holder .bg-warning.parsley-type:after,
            .helper-holder .bg-warning.parsley-range:after,
            .helper-holder .bg-warning.parsley-equalto:after,
            .helper-holder .bg-warning.parsley-iban:after,
            .helper-holder .bg-warning.parsley-personname:after,
            .helper-holder .bg-warning.parsley-companyname:after,
            .helper-holder .bg-warning.parsley-companycode:after,
            .helper-holder .bg-warning.parsley-address:after,
            .helper-holder .bg-warning.parsley-fullphonenumber:after,
            .helper-holder .bg-warning.parsley-phonenumber:after,
            .helper-holder .bg-warning.parsley-phonecountrycode:after,
            .helper-holder .bg-warning.parsley-personalid:after,
            .helper-holder .bg-warning.parsley-onlyletters:after,
            .helper-holder .bg-warning.parsley-onlyucLetters:after,
            .helper-holder .bg-warning.parsley-notes:after,
            .helper-holder .bg-warning.parsley-name:after,
            .helper-holder .bg-warning.parsley-vat:after,
            .helper-holder .bg-warning.parsley-zip:after,
            .helper-holder .bg-warning.parsley-invoiceno:after, 
            .parsley-errors-list .bg-warning.parsley-custom-error-message:after, .parsley-errors-list .bg-warning.parsley-required:after, .parsley-errors-list .bg-warning.parsley-min:after, .parsley-errors-list .bg-warning.parsley-max:after, .parsley-errors-list .bg-warning.parsley-lte:after, .parsley-errors-list .bg-warning.parsley-lt:after, .parsley-errors-list .bg-warning.parsley-remote:after, .parsley-errors-list .bg-warning.parsley-maxlength:after, .parsley-errors-list .bg-warning.parsley-minlength:after, .parsley-errors-list .bg-warning.parsley-improvements:after, .parsley-errors-list .bg-warning.parsley-downpayment:after, .parsley-errors-list .parsley- .bg-warning:after, .bg-warning:after {
                border-color: rgba(254, 246, 233, 0);
                border-bottom-color: #FEECBD;
            }

    .arrow_box.bg-info, .helper-holder .bg-info.parsley-required,
    .helper-holder .bg-info.parsley-length,
    .helper-holder .bg-info.parsley-pattern,
    .helper-holder .bg-info.parsley-type,
    .helper-holder .bg-info.parsley-range,
    .helper-holder .bg-info.parsley-equalto,
    .helper-holder .bg-info.parsley-iban,
    .helper-holder .bg-info.parsley-personname,
    .helper-holder .bg-info.parsley-companyname,
    .helper-holder .bg-info.parsley-companycode,
    .helper-holder .bg-info.parsley-address,
    .helper-holder .bg-info.parsley-fullphonenumber,
    .helper-holder .bg-info.parsley-phonenumber,
    .helper-holder .bg-info.parsley-phonecountrycode,
    .helper-holder .bg-info.parsley-personalid,
    .helper-holder .bg-info.parsley-onlyletters,
    .helper-holder .bg-info.parsley-onlyucLetters,
    .helper-holder .bg-info.parsley-notes,
    .helper-holder .bg-info.parsley-name,
    .helper-holder .bg-info.parsley-vat,
    .helper-holder .bg-info.parsley-zip,
    .helper-holder .bg-info.parsley-invoiceno, 
    .parsley-errors-list .bg-info.parsley-custom-error-message, .parsley-errors-list .bg-info.parsley-required, .parsley-errors-list .bg-info.parsley-min, .parsley-errors-list .bg-info.parsley-max, .parsley-errors-list .bg-info.parsley-lte, .parsley-errors-list .bg-info.parsley-lt, .parsley-errors-list .bg-info.parsley-remote, .parsley-errors-list .bg-info.parsley-maxlength, .parsley-errors-list .bg-info.parsley-minlength, .parsley-errors-list .bg-info.parsley-improvements, .parsley-errors-list .bg-info.parsley-downpayment, .parsley-errors-list .parsley- .bg-info, .bg-info {
        background-color: #CBE6FF;
        color: #095AA5;
        border-bottom: 2px solid #095AA5;
    }

            .arrow_box.bg-info:after, .helper-holder .bg-info.parsley-required:after,
            .helper-holder .bg-info.parsley-length:after,
            .helper-holder .bg-info.parsley-pattern:after,
            .helper-holder .bg-info.parsley-type:after,
            .helper-holder .bg-info.parsley-range:after,
            .helper-holder .bg-info.parsley-equalto:after,
            .helper-holder .bg-info.parsley-iban:after,
            .helper-holder .bg-info.parsley-personname:after,
            .helper-holder .bg-info.parsley-companyname:after,
            .helper-holder .bg-info.parsley-companycode:after,
            .helper-holder .bg-info.parsley-address:after,
            .helper-holder .bg-info.parsley-fullphonenumber:after,
            .helper-holder .bg-info.parsley-phonenumber:after,
            .helper-holder .bg-info.parsley-phonecountrycode:after,
            .helper-holder .bg-info.parsley-personalid:after,
            .helper-holder .bg-info.parsley-onlyletters:after,
            .helper-holder .bg-info.parsley-onlyucLetters:after,
            .helper-holder .bg-info.parsley-notes:after,
            .helper-holder .bg-info.parsley-name:after,
            .helper-holder .bg-info.parsley-vat:after,
            .helper-holder .bg-info.parsley-zip:after,
            .helper-holder .bg-info.parsley-invoiceno:after, 
            .parsley-errors-list .bg-info.parsley-custom-error-message:after, .parsley-errors-list .bg-info.parsley-required:after, .parsley-errors-list .bg-info.parsley-min:after, .parsley-errors-list .bg-info.parsley-max:after, .parsley-errors-list .bg-info.parsley-lte:after, .parsley-errors-list .bg-info.parsley-lt:after, .parsley-errors-list .bg-info.parsley-remote:after, .parsley-errors-list .bg-info.parsley-maxlength:after, .parsley-errors-list .bg-info.parsley-minlength:after, .parsley-errors-list .bg-info.parsley-improvements:after, .parsley-errors-list .bg-info.parsley-downpayment:after, .parsley-errors-list .parsley- .bg-info:after, .bg-info:after {
                border-color: rgba(254, 246, 233, 0);
                border-bottom-color: #8DB9E0;
            }

    .arrow_box.no-arrow:after, .no-arrow.bg-success:after, .no-arrow.bg-danger:after, .helper-holder .no-arrow.parsley-required:after,
    .helper-holder .no-arrow.parsley-length:after,
    .helper-holder .no-arrow.parsley-pattern:after,
    .helper-holder .no-arrow.parsley-type:after,
    .helper-holder .no-arrow.parsley-range:after,
    .helper-holder .no-arrow.parsley-equalto:after,
    .helper-holder .no-arrow.parsley-iban:after,
    .helper-holder .no-arrow.parsley-personname:after,
    .helper-holder .no-arrow.parsley-companyname:after,
    .helper-holder .no-arrow.parsley-companycode:after,
    .helper-holder .no-arrow.parsley-address:after,
    .helper-holder .no-arrow.parsley-fullphonenumber:after,
    .helper-holder .no-arrow.parsley-phonenumber:after,
    .helper-holder .no-arrow.parsley-phonecountrycode:after,
    .helper-holder .no-arrow.parsley-personalid:after,
    .helper-holder .no-arrow.parsley-onlyletters:after,
    .helper-holder .no-arrow.parsley-onlyucLetters:after,
    .helper-holder .no-arrow.parsley-notes:after,
    .helper-holder .no-arrow.parsley-name:after,
    .helper-holder .no-arrow.parsley-vat:after,
    .helper-holder .no-arrow.parsley-zip:after,
    .helper-holder .no-arrow.parsley-invoiceno:after,
    .parsley-errors-list .no-arrow.parsley-custom-error-message:after, .parsley-errors-list .no-arrow.parsley-required:after, .parsley-errors-list .no-arrow.parsley-min:after, .parsley-errors-list .no-arrow.parsley-max:after, .parsley-errors-list .no-arrow.parsley-lte:after, .parsley-errors-list .no-arrow.parsley-lt:after, .parsley-errors-list .no-arrow.parsley-remote:after, .parsley-errors-list .no-arrow.parsley-maxlength:after, .parsley-errors-list .no-arrow.parsley-minlength:after, .parsley-errors-list .no-arrow.parsley-improvements:after, .parsley-errors-list .no-arrow.parsley-downpayment:after, .parsley-errors-list .parsley- .no-arrow:after, .no-arrow.bg-warning:after, .no-arrow.bg-info:after {
        display: none;
    }

    .delete-coborrower, .close-coborrower, .reinvite-coborrower {
        display: block;
        font-size: 11px;
        color: #D0011B;
        text-decoration: none;
    }

    .delete-coborrower {
        background-image: url(Images/close-popup.svg);
        background-size: 9px;
        background-position-y: center;
        padding-left: 14px;
    }

    .reinvite-coborrower {
        color: #78B737;
    }

    .close-coborrower {
        font-weight: 600;
        margin-left: 20px;
        display: none;
    }

    .info-seciton {
        margin-left: 11px;
        margin-right: 11px;
        background: #CBE6FF;
        font-size: 12px;
        color: #095AA5;
        line-height: 14px;
        padding: 10px 19px;
        border-bottom: 2px solid #00549E;
        margin-bottom: 20px;
    }

    .document-item {
        text-align: center;
        margin-bottom: 20px;
    }

        .document-item .title {
            display: inline-block;
            vertical-align: top;
            position: relative;
            padding-left: 37px;
        }

    @media (max-width: 768px) {
        .document-item .title {
            margin-bottom: 15px;
        }
    }

    .document-item .link-holder {
        display: inline-block;
        vertical-align: top;
    }

        .document-item .link-holder .helper-holder {
            margin-left: 20px;
        }

    .document-item a {
        text-decoration: none;
        color: inherit;
        margin-left: 20px;
        position: relative;
    }

    @media (max-width: 768px) {
        .document-item a {
            margin: 0 10px;
        }
    }

    .document-item .download {
        padding-left: 26px;
    }

        .document-item .download:before {
            content: "";
            display: inline-block;
            width: 16px;
            height: 18px;
            background-image: url(Images/ico-download.svg);
            margin-right: 10px;
            top: 2px;
            position: absolute;
            left: 0;
        }

    .document-item .email {
        padding-left: 26px;
    }

        .document-item .email:before {
            content: "";
            display: inline-block;
            width: 20px;
            height: 16px;
            background-image: url(Images/ico-email.svg);
            margin-right: 10px;
            position: absolute;
            top: 2px;
            left: 0;
        }

    .input-lang-label {
        text-align: center;
    }

    .documents-lang-select {
        width: 300px;
        margin: 0 auto;
    }

    .info-icon {
        display: inline-block;
        width: 10px;
        height: 10px;
        background-image: url(Images/ico-question.svg);
    }

    .in-progress {
        text-align: center;
    }

        .in-progress .in-progress-gears {
            display: inline-block;
            width: 72px;
            height: 72px;
            background-image: url(Images/gears.svg);
        }

    .popover {
        border-radius: 0;
    }

        .popover .popover-title {
            border-bottom: 1px solid #B8B8B8;
            color: #56A500;
            font-size: 14px;
            font-weight: 600;
            font-family: "Poppins-Regular";
        }

        .popover .popover-content {
            font-family: "Poppins-Regular";
            font-size: 11px;
            color: #58585A;
        }

        .popover.right {
            margin-left: 16px;
        }

    .why {
        font-size: 11px;
        color: #9B9B9B;
        margin-left: 30px;
        text-decoration: none;
    }

    .no-left-margin {
        margin-left: 0;
    }

    .instantor-holder {
        padding: 0 20px;
    }

    .margin-left {
        margin-left: 20px;
    }

    .delete-warning .panel-title {
        min-height: 123px;
        margin-bottom: 10px;
        font-size: 20px;
        color: #4A4A4A;
        line-height: 30px;
        font-weight: 600;
        text-transform: uppercase;
        text-align: center;
    }

    .delete-warning .btn-5 {
        margin-top: 20px;
    }

    .form-inline .form-group label {
        display: inline-block;
        line-height: 40px;
        margin-bottom: 0;
    }

    .input-group-addon {
        border-radius: 0;
    }

    .form-control[type="text"], .form-control[type="password"], .form-control[type="phone"], .form-control[type="email"], .form-control[type="number"], .form-control[type="date"], .form-control:focus, select.form-control, textarea.form-control {
        font-family: Poppins-Light;
        font-size: 16px;
        font-weight: 300;
        line-height: 24px;
        text-align: left;
        text-underline-position: from-font;
        text-decoration-skip-ink: none;
        box-sizing: border-box;
        height: 56px;
        background: #ffffff;
        border: 1px solid #DADADA;
        border-radius: 8px;
        font-weight: 600;
        line-height: 17px;
        padding: 16px;
        margin: 8px 0px;
        color: #292929;
    }


/*    select.form-control, textarea.form-control {
        margin-bottom: 10px;
    }*/

        select.form-control.language {
            font-weight: 700;
            font-size: 12px;
            line-height: 15px;
            color: #F0EAEA;
            padding: 12px 16px;
            background: #F4FF8F;
            border: 1px solid #F0EAEA;
            box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.04);
            border-radius: 8px;
            width: 80px;
            height: 40px;
            float: right;
            background-position: calc(100% - 8px) center;
            -webkit-appearance: none;
            background-color: #FFF;
            background-image: url('images/crowd-funding/dropdown-img.svg');
            background-size: 10px;
            background-repeat: no-repeat;
            background-position: calc(100% - 15px) center;
            cursor: pointer;
        }

    select.larger-input-2 {
        padding: 2px;
        border-radius: 8px;
        border: none;
        font-size: 95%;
        /*background-color: #F0EAEA;*/
        border: 1px solid #9E9DA8;
    }

        select.larger-input-2 option {
            font-size: 80%;
        }


    select.form-control:focus, select.form-control:active {
        outline: none;
    }

    select.form-control:-moz-focusring {
        color: transparent;
        text-shadow: 0 0 0 #000;
    }

    select.form-control::-ms-expand {
        display: none;
    }


    select.form-control.counter, select.form-control.counter:focus {
        width: auto;
        height: 56px;
        padding: 16px;
        padding-right: 53px;
        font-family: Poppins-Regular;
        background-color: #ffffff;
        font-family: Poppins-Light;
        font-size: 16px;
        font-weight: 300;
        line-height: 24px;
        color: #292929;
        border-radius: 10px;
        border: 1px solid #DADADA;
        -webkit-appearance: none;
        background-image: url('Images/roix/defaults/chevron/chevron-down.svg');
        background-size: 24px;
        background-repeat: no-repeat;
        background-position: calc(100% - 16px) center;
    }

    .show-password, .hide-password {
        color: #58585A;
        position: absolute;
        right: 12px;
        top: -32px;
        height: 24px;
        background-size: 16px 21px;
        background-position: left 1px;
        padding-left: 26px;
        line-height: 25px;
        width: auto;
    }

    select.form-control {
        background-position: calc(100% - 8px) center;
        -webkit-appearance: none;
        /*background-color: #F0EAEA;*/
        background-color: #FFF;
        background-image: url('Images/crowd-funding/dropdown-img.svg');
        background-size: 10px;
        background-repeat: no-repeat;
        background-position: calc(100% - 15px) center;
    }

        select.form-control:focus {
            background-position: calc(100% - 8px) center;
            -webkit-appearance: none;
            /*background-color: #F0EAEA;*/
            background-color: #FFF;
            background-image: url('Images/crowd-funding/dropdown-img.svg');
            background-size: 10px;
            background-repeat: no-repeat;
            background-position: calc(100% - 15px) center;
        }

    input[type="checkbox"] {
        margin: 0;
        margin-right: 8px;
    }

    .pass-entered .show-password {
        display: block;
    }

    .password-visible.pass-entered .show-password {
        display: none;
    }

    .password-visible.pass-entered .hide-password {
        display: block;
    }

    .parsley-errors-list {
        margin: 0;
        padding: 0;
        list-style: none;
        text-align: center;
    }

        .parsley-errors-list .parsley-custom-error-message,
        .parsley-errors-list .parsley-required,
        .parsley-errors-list .parsley-min,
        .parsley-errors-list .parsley-max,
        .parsley-errors-list .parsley-lte,
        .parsley-errors-list .parsley-lt,
        .parsley-errors-list .parsley-gt .parsley-max,
        .parsley-errors-list .parsley-remote,
        .parsley-errors-list .parsley-maxlength,
        .parsley-errors-list .parsley-minlength,
        .parsley-errors-list .parsley-improvements,
        .parsley-errors-list .parsley-downpayment,
        .parsley-errors-list .parsley-iban,
        .parsley-errors-list .parsley-personname,
        .parsley-errors-list .parsley-companyname,
        .parsley-errors-list .parsley-companycode,
        .parsley-errors-list .parsley-address,
        .parsley-errors-list .parsley-fullphonenumber,
        .parsley-errors-list .parsley-phonenumber,
        .parsley-errors-list .parsley-phonecountrycode,
        .parsley-errors-list .parsley-personalid,
        .parsley-errors-list .parsley-onlyletters,
        .parsley-errors-list .parsley-onlyucLetters,
        .parsley-errors-list .parsley-notes,
        .parsley-errors-list .parsley-name,
        .parsley-errors-list .parsley-vat,
        .parsley-errors-list .parsley-zip,
        .parsley-errors-list .parsley-invoiceno,
        .parsley-errors-list .parsley- *,
        .parsley-errors-list .parsley-type {
            position: relative;
            margin-top: 10px;
            font-size: 12px;
            line-height: 14px;
            padding: 8px 15px;
            display: inline-block;
        }

    .helper-holder {
        text-align: center;
    }

        .helper-holder ul {
            margin: 0;
            padding: 0;
        }

        .helper-holder li {
            list-style: none;
        }

        .helper-holder .bg-success, .helper-holder .bg-danger, .helper-holder .parsley-required, .helper-holder .parsley-length, .helper-holder .parsley-pattern, .helper-holder .parsley-type, .helper-holder .parsley-range,
        .helper-holder .parsley-equalto,
        .helper-holder .parsley-iban,
        .helper-holder .parsley-personname,
        .helper-holder .parsley-companyname,
        .helper-holder .parsley-companycode,
        .helper-holder .parsley-address,
        .helper-holder .parsley-fullphonenumber,
        .helper-holder .parsley-phonenumber,
        .helper-holder .parsley-phonecountrycode,
        .helper-holder .parsley-personalid,
        .helper-holder .parsley-onlyletters,
        .helper-holder .parsley-onlyucLetters,
        .helper-holder .parsley-notes,
        .helper-holder .parsley-name,
        .helper-holder .parsley-vat,
        .helper-holder .parsley-zip,
        .helper-holder .parsley-invoiceno, 
        .helper-holder .parsley-errors-list .parsley-custom-error-message, .parsley-errors-list .helper-holder .parsley-custom-error-message, .helper-holder .parsley-errors-list .parsley-min, .parsley-errors-list .helper-holder .parsley-min, .helper-holder .parsley-errors-list .parsley-max, .parsley-errors-list .helper-holder .parsley-max, .helper-holder .parsley-errors-list .parsley-lte, .parsley-errors-list .helper-holder .parsley-lte, .helper-holder .parsley-errors-list .parsley-lt, .parsley-errors-list .helper-holder .parsley-lt, .helper-holder .parsley-errors-list .parsley-remote, .parsley-errors-list .helper-holder .parsley-remote, .helper-holder .parsley-errors-list .parsley-maxlength, .parsley-errors-list .helper-holder .parsley-maxlength, .helper-holder .parsley-errors-list .parsley-minlength, .parsley-errors-list .helper-holder .parsley-minlength, .helper-holder .parsley-errors-list .parsley-improvements, .parsley-errors-list .helper-holder .parsley-improvements, .helper-holder .parsley-errors-list .parsley-downpayment, .parsley-errors-list .helper-holder .parsley-downpayment, .helper-holder .parsley-errors-list .parsley- *, .parsley-errors-list .parsley- .helper-holder *, .helper-holder .bg-warning, .helper-holder .bg-info {
            display: inline-block;
        }

        .helper-holder.on-left {
            text-align: left;
        }

    .errorwindow ul {
        padding-left: 0;
    }

    .errorwindow li {
        background-color: #f2dede;
        color: #D0011B;
        border-bottom: 2px solid #D0011B;
        width: 100%;
        height: 30px;
        display: block;
        line-height: 30px;
        margin-bottom: 20px;
        text-align: center;
        margin-bottom: 5px;
    }

    .width22 {
        width: 22em;
    }

    @media (min-width: 320px) {
        .width22 {
            max-width: 22em;
        }
    }

    @media (min-width: 768px) {
        .width22 {
            max-width: 22em;
        }
    }

    @media (min-width: 992px) {
        .width22 {
            max-width: 22em;
        }
    }

    @media (min-width: 1200px) {
        .width22 {
            max-width: 22em;
        }
    }

    .noselect {
        -webkit-touch-callout: none;
        /* iOS Safari */
        -webkit-user-select: none;
        /* Safari */
        -moz-user-select: none;
        /* Firefox */
        -ms-user-select: none;
        /* Internet Explorer/Edge */
        user-select: none;
        /* Non-prefixed version, currently
                                  supported by Chrome and Opera */
    }

    .redrow {
        background-color: #ff00001f !important;
    }

    .redrowselected {
        background-color: #ff000042 !important;
    }

    .listtitle {
        color: #4A4A4A;
        font-family: "Poppins-Regular";
        font-size: 24px;
        line-height: 33px;
        margin-top: 20px;
    }

    @media (max-width: 768px) {
        .content-aligner {
            width: 300px;
            margin: 0 auto;
        }
    }

    @media (min-width: 768px) and (max-width: 996px) {
        .content-aligner {
            width: 97.5%;
            margin: 0 auto;
        }
    }

    .navigateback-section {
        position: absolute;
        width: 100%;
        left: 0;
        background-color: #F9F9F9;
        height: 40px;
        line-height: 40px;
        padding-left: 5.5%;
    }

    .navigate-back {
        margin-top: 10px;
    }

        .navigate-back a {
            color: #58585A;
            font-family: "Poppins-Regular";
            font-size: 13px;
            line-height: 18px;
            position: relative;
            margin-left: 10px;
        }

            .navigate-back a:hover {
                text-decoration: none;
            }

            .navigate-back a:focus {
                text-decoration: none;
            }

            .navigate-back a:before {
                content: url("Images/ic-left.svg");
                transform: scale(0.7);
                color: transparent;
                padding-right: 10px;
                position: relative;
                top: 1px;
            }


    /*To keep items centered when screen is big*/
    @media (min-width:996px) {
        .centered {
            margin-left: 25%;
        }

        .centered-md-10 {
            margin-left: 10%;
        }
    }

    .reason-notes, .notes {
        background-color: #F0EAEA !important;
        border: 1px solid #dadada !important;
        color: #4A4A4A !important;
        font-family: "Poppins-Regular";
        font-size: 13px !important;
        font-weight: 600 !important;
        line-height: 18px !important;
        height: 30px !important;
        margin-bottom: 2px;
    }

    .invite-field {
        margin-bottom: 10px;
    }


    .larger-input {
        font-size: 15px !important;
    }

    .invite-overlay {
        position:relative;
        overflow-y: auto;
        position: fixed; /* Sit on top of the page content */
        display: none; /* Hidden by default */
        width: 100%; /* Full width (cover the whole page) */
        height: 100%; /* Full height (cover the whole page) */
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: rgba(0,0,0,0.5); /* Black background with opacity */
        z-index: 2000; /* Specify a stack order in case you're using a different order for other elements */
    }

    .response-message {
        width: 45em;
        margin: 0 auto; /* Added */
        float: none; /* Added */
        margin-bottom: 10px; /* Added */
    }

    .pointer {
        cursor: pointer;
    }


/*For TOC page lists*/
.nestedList ol, .nestedList2 ol {
    counter-reset: item;
    padding-left: 0px;
    margin-top: 8px;
    font-weight: bold;
}

.nestedList2 ol {
    font-weight: initial;
}

.nestedList ol ol {
    font-weight: initial;
}

    .nestedList ol ol ol {
        padding-left: 40px;
        font-weight: initial;
    }

.nestedList li, .nestedList2 li {
    display: block;
    margin-bottom: 8px;
    width: calc(100%-40px)
}

    .nestedList li:before, .nestedList2 li:before {
        content: counters(item, ".") " ";
        counter-increment: item;
        width: 40px;
        display: inline-block;
    }

    .nestedList2 li:before {
        content: "(" counters(item, ".") ") ";
    }


    .fit-image {
        display: block;
        margin-left: auto;
        margin-right: auto;
        width: 100px;
        object-fit: cover
    }


    .main {
        transition: margin-left .5s;
        padding: 16px;
        margin-top: 30px;
    }


    img.close-x {
        height: 20px;
        cursor: pointer;
        border: 1px solid black;
        border-radius: 50%;
        padding: 15px;
        content: url('Images/leftsidemenu/x-solid.svg');
    }

        img.close-x:hover {
            content: url('Images/leftsidemenu/x-solid.svg');
        }



    /*//NewTables*/
    .table-responsive {
        margin: auto;
        display: flex;
        justify-content: center;
    }

    .table-wrapper {
        background: #FBFBFB;
        padding: 20px 25px 10px;
        margin: 10px;
        border-radius: 5px;
        box-shadow: 0 1px 1px rgba(0,0,0,.05);
    }

    .table-title {
        color: #F0EAEA;
        padding: 16px 30px;
        border-radius: 3px 3px 3px 3px;
    }

        .table-title h2 {
            margin: 5px 0 0;
            font-size: 24px;
        }

        .table-title .btn {
            color: #566787;
            float: right;
            font-size: 13px;
            background: #F0EAEA;
            border: none;
            min-width: 50px;
            border-radius: 2px;
            border: none;
            outline: none !important;
            margin-left: 10px;
        }

            .table-title .btn:hover, .table-title .btn:focus {
                color: #566787;
                background: #f2f2f2;
            }

            .table-title .btn i {
                float: left;
                font-size: 21px;
                margin-right: 5px;
            }

            .table-title .btn span {
                float: left;
                margin-top: 2px;
            }

        .table-title table a {
            color: #79aefe;
        }

        .table-title table td {
            padding: 5px;
        }

    table.table tr th, table.table tr td {
        border-color: #e9e9e9;
        padding: 12px 15px;
        vertical-align: middle;
    }

    table.table-striped tbody tr:nth-of-type(odd) {
        background-color: #f9f9f9;
    }

    table.table-striped.table-hover tbody tr:hover {
        background: #f5f5f5;
    }

    table.table-striped.table-hover.tr-odd-ta-right td:nth-of-type(odd) {
        text-align: right;
    }

    table.table tbody th {
        padding: 20px 15px;
        font-size: 120%;
    }

    table.table th i {
        font-size: 13px;
        margin: 0 5px;
        cursor: pointer;
    }

    table.table td:last-child i {
        opacity: 0.9;
        font-size: 22px;
        margin: 0 5px;
    }

    table.table td a {
        font-weight: bold;
        color: #566787;
        display: inline-block;
        text-decoration: none;
    }

        table.table td a:hover {
            color: #2196F3;
        }

        table.table td a.settings {
            color: #2196F3;
        }

        table.table td a.delete {
            color: #F44336;
        }

    table.table td i {
        font-size: 19px;
    }

    .text-success {
        color: #10c469;
    }

    .text-info {
        color: #62c9e8;
    }

    .text-warning {
        color: #FFC107;
    }

    .text-danger {
        color: #ff5b5b;
    }

    .pagination {
        float: right;
        margin: 0 0 5px;
    }

        .pagination li a {
            border: none;
            font-size: 13px;
            min-width: 30px;
            min-height: 30px;
            color: #999;
            margin: 0 2px;
            line-height: 30px;
            border-radius: 2px !important;
            text-align: center;
            padding: 0 6px;
        }

            .pagination li a:hover {
                color: #666;
            }

        .pagination li.active a, .pagination li.active a.page-link {
            background: #03A9F4;
        }

            .pagination li.active a:hover {
                background: #0397d6;
            }

        .pagination li.disabled i {
            color: #ccc;
        }

        .pagination li i {
            font-size: 16px;
            padding-top: 6px
        }

    .hint-text {
        float: left;
        margin-top: 10px;
        font-size: 13px;
    }

    .center {
        margin-left: auto;
        margin-right: auto;
    }

    .max-width-500 {
        max-width: 500px;
    }

.max-width-592 {
    max-width: 592px;
}


    @media (min-width: 300px) {
        .table-responsive {
            border: none;
        }
    }


    img.img-content {
        padding: 0px 5px 0px 5px;
        height: 16px;
        width: 35px;
        float: left;
        margin-left: -10px;
        margin-top: 10px;
        margin-bottom: auto;
    }

    img.img-content-file {
        padding: 0px 0px 0px 0px;
        height: 16px;
        width: 15px;
        float: left;
        margin-left: -10px;
        margin-top: 10px;
        margin-bottom: auto;
        /*border:1px solid black;*/
    }

    img.img-login {
        padding: 0px 0px 0px 0px;
        height: 60px;
        float: left;
        margin-top: auto;
        margin-bottom: auto;
        /*border:1px solid black;*/
    }


    /*Members table*/

    .member-table2, .member-table3 {
        display: none;
    }

    .member-table2-2 {
        display: none;
    }



    @media (max-width: 1250px) {
        .member-table1 {
            display: none;
        }

        .member-table2 {
            display: block;
        }
    }


    @media (max-width: 700px) {

        .member-table2-3 {
            display: none;
        }
    }

    @media (max-width: 650px) {
        .member-table2 {
            display: none;
        }

        .member-table3 {
            display: block;
        }
    }

    /*Survey*/

    .surveygroup {
        height: 0;
        width: 100%;
        z-index: 1;
        transition: 0.5s;
    }

    @media (max-width: 582px) {
        .survey-group-name {
            display: none;
        }
    }

    /*Statement*/
    /*Bank Account*/
    #statement-table-header {
        margin-bottom: 0px;
        gap:20px;
    }

        #statement-table-header > div:first-child {
            width: auto;
        }

        #statement-table-header > div:last-child {
            width: 100%;
        }

        #statement-table-header .card-slim.card-centered {
            width: 280px;
        }

    #statement-table-header-2 {
    }

#statement-pagination .pagination-showing {
    font-weight: 500;
    font-size: 12px;
    line-height: 15px;
    color: #F6EDE0;
    margin-top: 16px;
    margin-bottom: 16px;
    text-align: left;
    font-family: Poppins-Medium;
}


    @media (max-width: 1200px) {
        #statement-table-header > div:first-child {
            width:100%;
            justify-content: space-between;
        }

        #statement-table-header > div:last-child {
            width: 100%;
            justify-content: space-between;
        }

        #statement-table-header-2 .primary-table-actions, #statement-table-header-2 .secondary-table-actions {
            width: 100%;
            text-align: center;
        }

        #statement-table-header-2 > div > div {
            width: 49%;
        }

            #statement-table-header-2 > div > div .form-control.card-input {
                width: 100%;
            }
    }


@media (max-width: 840px) {
    #statement-table-header .box {
        display: block;
    }

    #statement-table-header {
        flex-wrap: wrap;
    }

        #statement-table-header .roix-card-title--buttons {
            text-align: left;
        }
}


    @media (max-width:768px) {
        #statement-table-header .card-slim.card-centered {
            width: 100%;
        }

        #statement-table-header-2 > div > div {
            width: 100%;
        }
    }


    /*Company*/

    .setting-table2 {
        display: none;
    }


    @media (max-width: 500px) {
        .setting-table1 {
            display: none;
        }

        .setting-table2 {
            display: block;
        }

        .text-hide-500 {
            display: none;
        }
    }


    /*Donut animation*/

    .svg-item {
        width: 100%;
        font-size: 16px;
        margin: 0 auto;
        animation: donutfade 1s;
        width: 150px;
        height: 150px;
    }

    .donut-ring {
        stroke: #C6E3C5;
    }

    .donut-segment {
        transform-origin: center;
        stroke: #19C595;
        animation: donut1 1s;
    }


    .donut-text {
        font-family: Poppins-Light;
        fill: #292929;
        font-size: 6px;
    }

    .donut-data {
        font-size: 4px;
        line-height: 1;
        transform: translateY(0.5em);
        text-align: center;
        text-anchor: middle;
        color: #292929;
        fill: #292929;
        animation: donutfadelong 1s;
    }

    @keyframes donutfade {
        /*this applies to the whole svg item wrapper */
        0% {
            opacity: .2;
        }

        100% {
            opacity: 1;
        }
    }

    @keyframes donutfadelong {
        0% {
            opacity: 0;
        }

        100% {
            opacity: 1;
        }
    }

    @keyframes donut1 {

        0% {
            stroke-dasharray: 0, 100;
        }

        100% {
            stroke-dasharray: var(--donut1-1), var(--donut1-2);
        }
    }


    img.close {
        height: 20px;
        cursor: pointer;
        content: url('Images/leftsidemenu/x-solid.svg');
        float: right;
        margin-right: 10px;
    }

    img.close {
        content: url('Images/leftsidemenu/x-solid-hover.svg');
    }


    .profile-menu {
        margin-bottom: 20px;
        margin-left: calc(50% - 215px);
        display: inline-block;
    }

        .profile-menu a {
            padding: 0px 5px;
            color: black;
            text-decoration: none;
        }

            .profile-menu a:hover {
                border-bottom: 3px solid black
            }

    .card {
        box-sizing: border-box;
        background: #fff;
        border: 0px;
        box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.04);
        border-radius: 0px;
        padding: 24px 24px;
        overflow: hidden;
    }

        .card.card-2 {
            background: rgba(54,65,64,.04);
            background-color: #F5EDE0;
            /* background-color: #C6E3C5;*/
            border: none;
        }

        .card.card-3 {
            background: #FEEBA6;
            border: none;
            opacity: .6;
        }

        .card.card-4 {
            background: #F7F8F8;
        }

        .card.card-5 {
            background: rgba(54, 65, 64, 0.04);
            border: none
        }

        .card.card-hover {
            cursor: pointer;
        }

        .card.card-slim {
            padding: 0px;
        }

        .card.card-no-margins.completed, .card.completed {
            background-color: #F5FCFB;
            border: 2px solid #9E9DA8;
            box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.04);
        }

            .card.card-no-margins.completed .card.card-no-margins, .card.completed {
                background-color: #F5FCFB;
            }

        .card.card-centered {
            display: flex;
            justify-content: center;
            align-items: center;
            text-align: center;
        }

        .card.card-hover:hover {
            background: #C6E3C5;
        }

        .card.card-hover:active {
            background: #FF9F52;
        }

        .card .register {
            max-width: 400px;
        }

    .card-title {
        position: relative;
        margin-bottom: 32px;
        font-family: 'Poppins-Bold';
        font-style: normal;
        font-weight: 700;
        font-size: 20px;
        line-height: 24px;
        color: #9E9DA8;
    }

        .card-title.flex {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between
        }


        .card-title.card-title-no-margins {
            margin: 0;
        }

        .card-title .card-title-big {
            font-size: 32px;
            line-height: 39px;
        }

        .card-title .card-title-subtitle {
            font-family: 'Poppins-Regular', Arial;
            font-style: normal;
            font-weight: 400;
            font-size: 12px;
            line-height: 15px;
            color: #9E9DA8;
            margin-top: 8px;
        }

    .card-title-description {
        font-weight: 400;
        font-size: 12px;
        line-height: 15px;
        color: #9E9DA8;
        margin-top: -22px;
        margin-bottom: 30px;
    }

    /*ADD Deposit*/
    .card-content .card-content--content {
        font-family: Poppins-Regular;
        margin-bottom: 24px;
        font-weight: 500;
        font-size: 12px;
        line-height: 15px;
        color: #364140;
    }

    .card-content .card-content--content-2 {
        font-family: Poppins-Regular;
        font-weight: 400;
        margin-bottom: 32px;
        font-size: 12px;
        line-height: 15px;
        color: #364140;
    }


    .card-content a:link, .card-content a:visited, .card-content a:active, .card-content a:hover {
        font-family: Poppins-Bold;
        font-weight: 700;
        color: #FF9F52;
        text-decoration: underline;
    }


    .card .box {
        margin-top: 16px;
        margin-bottom: 16px;
        display: flex;
        justify-content: space-between;
    }

        .card .box:first-child {
            margin-top: -4px;
        }

        .card .box:last-child {
            margin-bottom: -4px;
        }

        .card .box p {
            font-weight: 500;
            font-size: 14px;
            line-height: 17px;
            color: #9E9DA8;
            font-family: 'Poppins-Regular';
            margin-top: 4px;
            margin-bottom: 4px
        }

    .card .box p.bold {
        font-weight: 700;
        font-family: Poppins-Bold;
        cursor: pointer
    }

    table.profile-table {
        margin: 30px 0px;
        font-weight: 500;
        font-size: 14px;
        line-height: 17px;
        color: #364140;
        width: 100%;
    }

        table.profile-table tr {
            height: 64px;
        }

            table.profile-table tr th {
                /*background: #F7F8F8;*/
                padding-left: 20px;
            }

            table.profile-table tr td {
                border-top: 1px solid rgba(54, 65, 64, 0.16);
                padding-left: 20px;
            }


                table.profile-table tr td a {
                    font-weight: 800;
                    font-size: 14px;
                    line-height: 17px;
                    color: #9E9DA8;
                }

    .card-footer.buttons {
        display: grid;
        grid-template-columns: 1fr 1fr;
        column-gap: 16px;
    }


    .color-status, .card .box .color-status {
        font-weight: 700;
        font-size: 14px;
        line-height: 17px;
    }

        .color-status.orange, .card .box .color-status.orange {
            color: #EE9630;
            color: #FFD069;
        }

        .color-status.red, .card .box .color-status.red {
            color: #D62B2B;
            color: #FF9F52;
        }

        .color-status.green, .card .box .color-status.green {
            color: #4BC16C;
            color: #19C595;
        }

        .color-status.purple, .card .box .color-status.purple {
            color: #BF40BF;
        }

        .color-status.black, .card .box .color-status.black {
            color: #364140;
        }

    .mobile-view {
        display: none !important;
    }

        .mobile-view .roix-card{
            margin-bottom:20px;
        }



        @media (max-width: 992px) {
            .card {
            padding: 32px;
        }

        .computer-view {
            display: none !important;
        }

        .mobile-view {
            display: block !important;
        }
    }

    @media (max-width: 582px) {
        .card .box {
            display: block;
        }
    }

    @media (min-width: 500px) {
        .card {
            margin-bottom: 30px;
        }
    }

    .input-subtitle {
        font-family: 'Poppins-Regular', Arial;
        font-style: normal;
        font-weight: 400;
        font-size: 14px;
        color: rgba(54, 65, 64, 0.64);
        padding-top: 10px;
    }



    @media (max-width: 600px) {
        .card-title.flex {
            display: block;
        }

        .card .card-title.flex .buttons button {
            width: 100%;
        }
    }


    .register-started-icon {
        background: rgba(0, 172, 153, 0.08);
        padding: 20px;
        border-radius: 50%;
    }

    .register-started-icon-text {
        font-weight: 700;
        font-size: 16px;
        text-align: center;
        color: #364140;
        padding-top: 5px;
    }

    .overview-cards {
        display: flex;
        align-items: stretch;
    }

        .overview-cards .card-content .details {
            font-family: Poppins-Bold;
            font-style: normal;
            font-weight: 800;
            font-size: 14px;
            line-height: 17px;
            text-align: center;
            color: #9E9DA8;
            cursor: pointer;
            display: none;
        }

            .overview-cards .card-content .details.open img.rotateble {
                transform: rotate(180deg);
            }

    @media (max-width: 992px) {
        .overview-cards {
            display: block;
        }

            .overview-cards .card-content .details {
                display: block;
                margin-top: 10px;
            }
    }









    .newsletter-title {
        display: flex;
        align-items: center;
        gap: 5px;
        margin-bottom: 24px;
    }

        .newsletter-title div {
            font-family: Poppins-Light;
            font-size: 16px;
            font-weight: 300;
            line-height: 24px;
            color: #292929;
        }


    .carousel-wrapper {
        /*border:1px solid red;*/
        padding: 40px 0px;
    }

        .carousel-wrapper .carousel-header {
            display: flex;
            justify-content: space-between;
        }

        .carousel-wrapper .carousel-title {
            font-family: Urbanist;
            font-size: 32px;
            font-weight: 400;
            line-height: 40px;
            letter-spacing: -0.01em;
            color: #F6EDE0;
        }

        .carousel-wrapper .carousel-controlls {
            display: flex;
            gap: 10px;
            align-items: center;
            margin-bottom: 20px;
        }

        .carousel-wrapper .investment-image {
            border-radius: 16px;
        }

        .carousel-wrapper .carousel-bottom-text {
            font-weight: 400;
            font-size: 16px;
            line-height: 32px;
            text-align: justify;
        }

        .carousel-wrapper .carousel-controlls img {
            width: 48px;
            height: 48px;
            border-radius: 50%;
            cursor: pointer;
            border: 1px solid #F6EDE0;
            padding: 10px;
            object-fit: cover;
        }


    .carousel-inner .item {
        width: calc(103%);
    }


        .carousel-inner .item .item {
            display: inline-flex;
            width: 30%;
        }

        .carousel-inner .item .item {
     /*       min-height: 300px;
            max-height: 300px;*/
     height:300px;
            /*margin-left: auto;
            margin-right: auto;*/
            margin-right: 3%;
            overflow: hidden;
        }

button.show-more-items {
    display: none;
}


/* Carousel container */
.carousel-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    max-width: 1200px;
}

/* Carousel */
.carousel {
    display: flex;
    gap: 16px;
    transition: transform 0.5s ease-in-out;
}

/* Carousel items */
.carousel-item {
    /*flex: 0 0 33.33%;*/
    /*min-width: 389px;
    max-width: 389px;*/
    min-width: 322px;
    max-width: 322px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #222;
    overflow: hidden;
    aspect-ratio: 1 / 1; /* Ensure the containers are square */
}

    .carousel-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        cursor: pointer;
    }

@media (max-width: 992px) {


    .carousel-inner .carousel-item {
        height: auto;
    }

    .carousel-inner .item .item {
        display: block;
        max-width: 100%;
        min-height: auto;
        max-height: auto;
        width: auto;
        height: auto;
        overflow: visible;
        margin-bottom: 20px;
    }

    #carusel-controls {
        display: none;
    }

    .carousel-inner .item .item .card {
        width: auto;
        height: auto;
    }

    button.show-more-items {
        display: block;
    }
}


@media (max-width: 744px) {


}




    .investment-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 15px;
    }

        .investment-header .investment-header-start {
            font-weight: 700;
            font-size: 20px;
            line-height: 24px;
        }

        .investment-header .investment-header-end {
            display: flex;
            align-items: center;
            gap: 5px;
        }

        .investment-header .investment-view-switch {
            display: flex;
            align-items: center;
            gap: 5px;
            padding: 18px;
            border-radius: 27px;
            background: rgba(54, 65, 64, 0.04);
            cursor: pointer;
            font-weight: 500;
            font-size: 12px;
        }

            .investment-header .investment-view-switch.active {
                background: rgba(54, 65, 64, 0.16);
            }


    /*Project datalist View*/
    .investment-content .investment-card-wrappers {
        display:grid;
        grid-template-columns:repeat(3,1fr);
        gap:15px;
        margin-bottom: 40px;
    }


    .investment-card-wrapper {
        width: 100%;
        cursor:pointer;
    }

        .investment-card-wrapper.auto-height {
            height: auto;
            min-height: auto;
            max-height: auto;
        }

            .investment-card-wrapper.auto-height .roix-card {
                padding: 32px;
            }

                .investment-card-wrapper.auto-height .roix-card .investment-image {
                    width: calc(100% + 64px);
                    margin-left: -32px;
                    margin-top: -32px;
                }

        .investment-card-wrapper .roix-card {
            padding: 0 20px 20px;
            height: 100%;
        }


            .investment-card-wrapper .roix-card .roix-card-title {
                width: auto;
            }

            .investment-card-wrapper .roix-card .investment-image {
                height: 292px;
                width: calc(100% + 40px);
                margin-left: -20px;
                overflow: hidden;
                position: relative;
            }

                .investment-card-wrapper .roix-card .investment-image img.investment-image--main {
                    width: 100%;
                    height: 100%;
                    object-fit: cover;
                    object-position: center;
                }

                .investment-card-wrapper .roix-card .investment-image .investment-image--status-bar, .investment-image--status-bar {
                    padding: 12px;
                    height: 48px;
                    font-family: Poppins-Medium;
                    font-size: 16px;
                    font-weight: 500;
                    line-height: 24px;
                    position: absolute;
                    background-color: #FF9F52;
                    color: #292929;
                    top: 20px;
                    left: 0;
                }

                    .investment-card-wrapper .roix-card .investment-image .investment-image--status-bar.completed, .investment-image--status-bar.completed {
                        background-color: #19C595;
                    }

                    .investment-card-wrapper .roix-card .investment-image .investment-image--status-bar.canceled, .investment-image--status-bar.canceled {
                        background-color: #FEEBA6;
                    }

            .investment-card-wrapper .roix-card .investment-title {
                /*height: 28px;*/
                font-family: Urbanist, sans-serif;
                font-size: 24px;
                font-weight: 400;
                line-height: 28px;
                color: #292929;
                margin: 20px 0;
                height: 56px;
                text-overflow: ellipsis;
                overflow: hidden;
            }


            .investment-card-wrapper .roix-card .investment-collected-goal,
            .investment-card-wrapper .roix-card .investment-collected-goal-titles,
            .investment-card-wrapper .roix-card .investment-completion {
                display: flex;
                align-items: center;
                justify-content: space-between;
            }

            .investment-card-wrapper .roix-card .investment-collected-goal {
                font-family: Poppins-Medium;
                font-weight: 500;
                font-size: 16px;
                line-height: 24px;
                color: #292929;
                margin-bottom: 4px;
            }

            .investment-card-wrapper .roix-card .investment-collected-goal-titles {
                font-family: Poppins-Light;
                font-weight: 300;
                font-size: 14px;
                line-height: 20px;
                margin-bottom: 20px;
            }



            .investment-card-wrapper .roix-card .investment-flexbox {
                display: flex;
                flex-wrap: wrap;
                flex-flow: row wrap;
                row-gap: 20px;
                margin-bottom:20px;
            }

                .investment-card-wrapper .roix-card .investment-flexbox .flex-item {
                    flex: 1 calc(100%/3);
                    box-sizing: border-box;
                    border-right: 1px solid #9E9DA8;
                    padding-left: 12px;
                    color: #58575D
                }

                    .investment-card-wrapper .roix-card .investment-flexbox .flex-item img{
                        margin-right:4px;
                    }

                    .investment-card-wrapper .roix-card .investment-flexbox .flex-item:nth-child(3n) {
                        border-right: none;
                    }

                    .investment-card-wrapper .roix-card .investment-flexbox .flex-item:nth-child(-n+3) {
                        font-family:Poppins-Bold;
                        font-weight:700;
                    }

            .investment-card-wrapper .roix-card .investment-progress {
                background-color: #ffffff51;
            }


                .investment-card-wrapper .roix-card .investment-progress .progress, .progress {
                    height: 4px;
                    background-color: #DADADA;
                }

                    .investment-card-wrapper .roix-card .investment-progress .progress .progress-bar, .progress-bar {
                        background-color: #19C595;
                    }

                .investment-content .investment-card-wrappers.type2 {
                    gap: 0px;
                    min-height: 629px;
                }

        .investment-content .investment-card-wrappers.type2 .investment-card-wrapper:first-child {
            flex: 1;
        }

        .investment-content .investment-card-wrappers.type2 .investment-card-wrapper:last-child {
            width: 427px;

        }


            .investment-content .investment-card-wrappers.type2 .investment-card-wrapper .roix-card .investment-image {
                height: calc(100% + 70px);
            }

            .investment-content .investment-card-wrappers.type2 .investment-card-wrapper .roix-card .roix-card-title .roix-card-title-subtitle {
                margin-top: 12px;
            }

    .investment-content .list-2 {
        display: none;
    }


.invesments-first-project1{
    display:none;
}


.investment-card-wrapper .roix-card.invesments-comming-soon {
    height: 100%;
    min-height: 636px;
    position: relative;
    overflow: hidden;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    background: #292929;
    border: dashed #F4FF8F 1px;
}


.investment-card-wrapper .roix-card.invesments-comming-soon .coming-soon-img{
    width: 100%;
    height: 100%;
    min-width: 100%;
    min-height: 100%;
    object-fit: cover;
    /*flex: 1;*/
    justify-self: stretch;
    opacity:5%;
    position:absolute;
}

    .investment-card-wrapper .roix-card.invesments-comming-soon .coming-soon-content {
        position: absolute;
        top: auto;
        bottom: auto;
        color: #F6EDE0;
        text-align: center;
        font-family: Poppins-Light;
        font-weight: 275;
        font-weight: 100;
        font-size: 16px;
        line-height: 24px;
        letter-spacing: 0%;
        text-align: center;
    }
    .investment-card-wrapper .roix-card.invesments-comming-soon .coming-soon-content img {
        width: 56px;
        margin: 0 auto;
    }
        .investment-card-wrapper .roix-card.invesments-comming-soon .coming-soon-content .coming-soon-content-title {
            font-family: Urbanist;
            font-weight: 400;
            font-size: 24px;
            line-height: 24px;
            text-align: center;
            letter-spacing: -1%;
            margin-bottom: 8px;
            margin-top: 8px;
        }


@media (max-width: 1200px) {
    .invesments-first-project0 {
        display: none !important;
    }

    .invesments-first-project1 {
        display: block !important;
    }
    .investment-card-wrapper .roix-card .investment-flexbox .flex-item {
        flex: 1 calc(100%/2);
    }

        .investment-card-wrapper .roix-card .investment-flexbox .flex-item {
            border-right: 1px solid #9E9DA8 !important;
        }

        .investment-card-wrapper .roix-card .investment-flexbox .flex-item:nth-child(2n) {
            border-right: none !important;
        }

    .investment-card-wrapper .roix-card.invesments-comming-soon {
        height: 100%;
        min-height: 684px;
    }
}



    @media (max-width: 992px) {

        .investment-content .investment-card-wrappers {
            grid-template-columns: repeat(2,1fr);
        }
        .investment-content .list-2 {
            display: block;
        }

        .investment-content .list-1 {
            display: none;
        }

        .investment-header .investment-header-end .img-title {
            display: none;
        }
    }



    @media (max-width: 575px) {
        .investment-content .investment-card-wrappers {
            grid-template-columns: repeat(1,1fr);
        }
    }



    table.two-column-table {
        width: 100%;
        text-align: right;
        font-family: Poppins-Regular;
        font-weight: 500;
        font-size: 14px;
        line-height: 17px;
    }

        table.two-column-table tr td:first-child {
            width: 50%;
            text-align: left;
        }

        table.two-column-table tr td:last-child {
            font-weight: 600;
        }

    .investment-top {
        display: flex;
        align-items: stretch;
    }


    @media (max-width: 768px) {
        .investment-top {
            display: block;
        }
    }

    .download-file-link {
        display: flex;
        align-items: center;
        justify-content: flex-end;
        gap: 5px;
    }

        .download-file-link a {
            font-weight: 800;
            color: #9E9DA8 !important;
        }

    .investment-breakdown-progress {
        margin-bottom: 20px;
        font-family: Poppins-Medium;
        font-size: 14px;
        font-weight: 500;
        line-height: 20px;
    }

        .investment-breakdown-progress .progress {
            margin-bottom: 5px;
        }

    .investment-legend ul {
        list-style: none;
        padding: 10px;
        margin-bottom: 0;
    }

        .investment-legend ul li {
            display: flex;
            align-items: baseline;
            gap: 8px;
        }

            .investment-legend ul li .legend-circle {
                width: 8px;
                height: 8px;
                border-radius: 50%;
            }

            .investment-legend ul li p {
                font-weight: 500;
                font-size: 12px;
                line-height: 15px;
                color: rgba(54, 65, 64, 0.64);
            }

    .table-actions {
        margin-bottom: 24px;
    }

        .table-actions .small-select {
            border: 1px solid rgba(0, 0, 0, 0.16)
        }

    .table-actions, .primary-table-actions, .table-action .secondary-table-actions {
        display: flex;
        justify-content: space-between;
        align-items: end;
        gap: 10px;
        flex-wrap: wrap;
    }

        .table-actions .secondary-table-actions {
            margin-bottom: 8px;
        }


        .table-actions .table-action-datepicker {
            position: relative;
            min-width: 200px;
            /* height: 58px;*/
        }



    /*Questionnaire*/
    .questionnaire .group {
        font-family: Urbanist;
        font-size: 24px;
        font-weight: 400;
        line-height: 24px;
        letter-spacing: -0.01em;
        border-top: 1px solid #DADADA;
        padding: 24px 0px;
        cursor: pointer;
    }

        .questionnaire .group c {
            float: right;
        }

    .questionnaire table {
        margin-left: 20px;
        width: 100%;
    }

        .questionnaire table tr td, .questionnaire table tr th {
            padding: 5px 0px;
        }

    .questionnaire .question {
        font-weight: 600;
        font-size: 16px;
        line-height: 20px;
    }

    .questionnaire .button-box {
        margin-bottom: 20px;
        display: flex;
        justify-content: space-between
    }

.questionnaire span {
    cursor: pointer;
}

.questionnaire .form-control{
    max-width: 520px;
}

.survey-group-status-text, .title-alert-message .survey-group-status-text {
    font-family: Poppins-Medium;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    text-align: right;
    margin-left: 8px;
    padding-top:2px;
}


.img-alert {
    content: url("Images/crowd-funding/alert.svg");
    width: 20px;
}

    .img-done {
        content: url("Images/roix/defaults/check2.svg");
        width: 24px;
    }

    .alert-message {
        color: red;
    }

    @media (max-width: 768px) {
        .questionnaire .group {
            font-weight: 600;
            font-size: 14px;
            line-height: 17px;
            padding: 10px;
            margin: 0px -10px;
        }

            .questionnaire .group img{
                margin-top:-5px;
            }

            .survey-group-status-text, .title-alert-message .survey-group-status-text {
                display: none;
            }
    }

    @media (max-width: 582px) {
        .questionnaire .button-box {
            flex-direction:column;
            gap:10px;
        }

            .questionnaire .button-box .btn {
                width: 100%;
            }
    }

    .title-alert-message {
        float: right;
    }

        .title-alert-message .img-alert {
            width: 30px;
        }

    .identification-card {
        background: #F0EAEA;
        box-shadow: 0px 16px 32px rgba(54, 65, 64, 0.04);
        border-radius: 32px;
        padding: 30px 32px 20px;
        margin-top: 10px;
        width: 260px;
        display: inline-block;
        margin: 10px;
    }

        .identification-card p {
            font-weight: 700;
            font-size: 20px;
            line-height: 24px;
            color: #364140;
            text-align: center;
        }


        .identification-card .type {
            height: 30px;
            margin-right: 17px;
        }

  

    img.close {
        height: 20px;
        cursor: pointer;
        content: url('Images/crowd-funding/x-solid.svg');
        float: right;
        margin-right: 10px;
        margin-bottom: -30px;
    }

    img.close {
        content: url('Images/crowd-funding/x-solid-hover.svg');
    }

    #transfer-fee-details {
        list-style-type: none;
        font-size: 16px;
        font-weight: 600;
    }


    @media (max-width: 582px) {
        .identification-card {
            width: calc(100%);
            margin: 10px auto;
        }

        .agr-text {
            display: none;
        }
    }

    .phone-number-box {
        display: flex;
    }

        .phone-number-box .country-code {
            width: 40%;
            margin-right: 10px;
        }

        .phone-number-box .phone-no {
            width: 59%;
        }

 /*   @media (max-width: 600px) {
        .phone-number-box {
            display: block;
        }

            .phone-number-box .country-code, .phone-number-box .phone-no {
                width: 100%;
                margin-right: 0px;
            }
    }*/

    img.rotateble {
        width: 20px;
    }




    /*investment project message 2023-05-09*/
    .pr-message {
        max-height: 540px;
    }

        .pr-message textarea, .pr-message textarea:focus {
            height: 150px;
            resize: none;
            background: rgba(54, 65, 64, 0.04);
        }

        .pr-message .message-tab {
            background: #9E9DA8;
            box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.08);
            /*border-radius: 16px 16px 0px 0px;*/
            display: flex;
            gap: 14px;
            padding: 10px 23px;
            align-items: center;
            /*font-weight: 800;*/
            font-size: 14px;
            line-height: 17px;
            color: #EFEFEF;
            font-family: Poppins-Bold;
            cursor: pointer;
            position: fixed;
            bottom: 0;
            right: 40px;
            width: 300px;
            z-index: 5;
            border-top-left-radius:16px;
            border-top-right-radius:16px;
        }

            .pr-message .message-tab:hover {
                background: #F4FF8F;
                color: #292929;
            }

        .pr-message.open .message-tab {
            /*display: none;*/
        }

        .pr-message .message-tab img.search-icon {
            width: 20px;
            height: 20px;
            content: url(Images/roix/defaults/search/light.svg);
        }

        .pr-message .message-tab:hover img.search-icon {
            content: url(Images/roix/defaults/search/dark.svg);
        }


        .pr-message .message-content {
            background: #EFEFEF;
            box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.08);
            /*border-radius: 24px 24px 0px 0px;*/
            padding: 24px;
            /*height: 540px;*/
            position: fixed;
            bottom: -700px;
            right: 40px;
            width: 340px;
            z-index: 10;
            transition: all 0.5s ease;
            border-top-left-radius: 16px;
            border-top-right-radius: 16px;
        }

        .pr-message.open .message-content {
            bottom: 0px;
            transition: all 0.5s ease;
        }

        .pr-message.open.sended .message-content .message-form {
            display: none;
        }

        .pr-message .message-content .message-form .header {
            display: flex;
            justify-content: space-between;
            gap: 40px;
            /*font-weight: 700;*/
            font-size: 16px;
            line-height: 20px; /* black/solid/500 */
            color: #364140;
            font-family: Poppins-Bold;
        }

        .pr-message .message-content .message-form .expl-message {
            font-weight: 400;
            font-size: 12px;
            line-height: 15px; /* black/solid/500 */
            color: #364140;
            font-family: 'Poppins-Regular';
            margin-top: 16px;
            margin-bottom: 24px;
        }

        .pr-message .message-content .message-success {
            /*    background: #F0EAEA;
        box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.08);
        border-radius: 24px 24px 0px 0px;
        padding: 24px;*/
            text-align: center;
            /*height: 540px;*/
            display: flex;
            align-items: center;
            justify-content: center;
            display: none;
            transition: all 1s ease;
            margin-top: 150px;
        }

        .pr-message.open.sended .message-content .message-success {
            display: block;
        }

        .pr-message .message-content .message-success .success-header {
            font-weight: 700;
            font-size: 16px;
            line-height: 20px;
            text-align: center;
            color: #9E9DA8;
            font-family: Poppins-Bold;
            margin-top: 24px;
            margin-bottom: 8px;
        }

        .pr-message .message-content .message-success .expl-message {
            font-family: 'Poppins-Regular';
            font-style: normal;
            font-weight: 400;
            font-size: 12px;
            line-height: 15px;
            text-align: center;
            color: #364140;
            margin-bottom: 48px;
        }


@media (max-width: 500px) {
    .pr-message .message-content {
        right: 0;
        width: 100%;
    }
}

    .flex-box-2 {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 16px;
        margin-bottom: 12px;
        flex-wrap: wrap;
    }

        .flex-box-2.no-margin-bottom {
            margin-bottom: 0;
        }

    table.amount-currency {
        width: 100%
    }

        table.amount-currency td {
            vertical-align: top;
        }

            table.amount-currency td:first-child {
                padding-right: 10px;
            }

            table.amount-currency td:nth-child(2) {
                min-width: 130px;
            }


    .amount-currency-grid {
        display: grid;
        grid-template-columns: 1fr 128px;
        gap: 16px;
        margin-bottom: 6px;
    }

    .cash-operation-container {
        max-width: 864px;
        margin-left: auto;
        margin-right: auto;
    }

    .cash-operation-container--footer {
        display: flex;
        align-items: center;
        justify-content: space-around;
        padding: 0 100px;
        background: rgba(54, 65, 64, 0.04);
        margin: 0 -40px -35px -40px;
        height: 112px;
    }


        .cash-operation-container--footer p {
            font-weight: 500;
            font-size: 12px;
            line-height: 15px;
            color: rgba(54, 65, 64, 0.64);
            margin-top: 8px;
            text-align: center;
            margin-bottom: 0;
        }

        .cash-operation-container--footer.type-2 {
            padding: 20px 40px;
            height: auto;
            display: block;
        }

            .cash-operation-container--footer.type-2 .title {
                width: 100%;
                font-weight: 700;
                font-size: 18px;
                margin-top: 10px;
                margin-bottom: 10px;
            }

            .cash-operation-container--footer.type-2 p {
                font-size: 18px;
                line-height: 22px;
            }

    /*2023-08-16 datepicker*/
    .date-input-container {
        max-width: 100%;
        position: relative;
        height: 56px;
        margin:8px 0;
    }

        .date-input-container .date-input {
            position: absolute;
            right: 0;
            top: 0;
            bottom: 0;
            /*border: none !important;*/
            outline: none !important;
            /*  background: inherit !important;*/
            box-shadow: none;
            z-index: 0;
            margin:0;
           /* color: rgba(54, 65, 64, 0.01) !important;*/
        }

            .date-input-container .date-input::selection {
                background-color: red !important; /* Background color for selected text */
                color: red; /* Text color for selected text */
            }


        .date-input-container .date-input-field {
            width: calc(100% - 40px) !important;
            position: absolute;
            left: 2px;
            top: 3px;
            bottom: 0;
            box-sizing: border-box;
            height: 50px;
            background: #F8F9F9;
            /* background: rgba(54, 65, 64, 0.04);*/
            /*border: 1px solid rgba(54, 65, 64, 0.08);*/
            background: #fff;
            border: none;
            border-right: none;
            border-radius: 8px;
            font-weight: 600;
            line-height: 17px;
            padding: 16px;
            outline: none !important;
            color: #292929;
            font-family: Poppins-Light;
            font-size: 16px;
        }

        .date-input-container .floating-label {
            z-index: 1;
        }


    .dropdown-box-relative {
        height: 56px;
        margin-bottom: 12px;
    }


    .auto-width {
        width: auto !important;
    }

    .main-logo {
        content: url('Images/crowd-funding/logo/ROIX_Gray.png');
        width: 200px;
        height: auto;
        display: block;
        margin: 0 auto;
    }

    pre {
        background-color: #F0EAEA !important;
    }


    img.close-icon-x, img.icon {
        cursor: pointer;
        opacity: 0.7;
    }

        img.close-icon-x:hover, img.icon:hover {
            opacity: 1;
        }


    .margin-bottom-20 {
        margin-bottom: 20px !important;
    }

    .margin-bottom-40 {
        margin-bottom: 40px !important;
    }


    /* Optional: Apply to your custom class only */
    .no-spinner::-webkit-inner-spin-button,
    .no-spinner::-webkit-outer-spin-button {
        -webkit-appearance: none;
    }

    .no-spinner {
        -moz-appearance: textfield;
    }


    /* Buttons */
    .prev-btn,
    .next-btn {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        background: rgba(0, 0, 0, 0.5);
        color: white;
        border: none;
        font-size: 2rem;
        cursor: pointer;
        z-index: 10;
        padding: 10px;
    }

    .prev-btn {
        left: 10px;
        display: none;
    }

    .next-btn {
        right: 10px;
        display: none;
    }

    /* Fullscreen view */
    .fullscreen {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.9);
        display: flex;
        justify-content: center;
        align-items: center;
        z-index: 1000;
    }

        .fullscreen img {
            max-width: 90%;
            max-height: 90%;
        }

    .hidden {
        display: none;
    }

    .close-btn {
        position: absolute;
        top: 20px;
        right: 20px;
        font-size: 2rem;
        color: white;
        cursor: pointer;
    }

    /*ALERT MESSAGE*/

.alert-message-box {
    font-family: Poppins-Light;
    font-size: 14px;
    font-weight: 300;
    line-height: 20px;
    padding: 14px 48px;
    background-color: #FF9F52;
    color: #58575D;
    margin-bottom: 20px;
    position: relative;
    display: block;
    z-index: 10;
    cursor: pointer;
    color: #58575D;
    border-radius:8px;
}


    .alert-message-box:hover {
        color: #292929;
    }

    .alert-message-box:before {
        content: "";
        display: block;
        background-image: url('Images/roix/defaults/Alert.svg');
        position: absolute;
        width: 24px;
        height: 24px;
        left: 16px;
        top: 12px;
    }

    .alert-message-box:after {
        content: "";
        display: block;
        background-image: url('Images/roix/defaults/close/close-dark.svg');
        position: absolute;
        width: 24px;
        height: 24px;
        right: 16px;
        top: 12px;
        cursor: pointer;
    }

    .alert-message-box.success {
        background-color: #C6E3C5;
    }

        .alert-message-box.success:before {
            background-image: url('Images/roix/defaults/Check.svg');
        }


    .alert-message-box b {
        text-decoration: underline;
    }
/*OverlayCard START*/
.overlay-card {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 584px;
}

    .overlay-card .roix-card{
        position:unset;
    }

    @media (max-width: 744px) {
        .overlay-card {
        width: calc(100%);
        padding: 0 20px;
    }
}
/*OverlayCard END*/

/*DEFAULTS START*/

.loader {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: inline-block;
    border-top: 4px solid #292929;
    border-right: 4px solid transparent;
    box-sizing: border-box;
    animation: rotation 2s linear infinite;
}

    .loader::after {
        content: '';
        box-sizing: border-box;
        position: absolute;
        left: 0;
        top: 0;
        width: 48px;
        height: 48px;
        border-radius: 50%;
        border-bottom: 4px solid #FFD06B;
        border-left: 4px solid transparent;
    }

@keyframes rotation {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.flex-2 {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    justify-content: space-between;
    align-items: stretch;
}

    .flex-2 > * {
        flex: 0 0 calc(50% - 32px);
        box-sizing: border-box;
    }

    .flex-2.secondary {
        gap: 48px;
    }

        .flex-2.secondary > * {
            flex: 0 0 calc(50% - 48px);
        }

    .flex-2.overview {
        gap: 8px;
    }

        .flex-2.overview > * {
            flex: 0 0 calc(50% - 4px);
            box-sizing: border-box;
        }
    

.flex-3 {
    display: flex;
    gap: 16px;
    justify-content: space-between;
    align-items: stretch;
}


@media (max-width: 1440px) {
    .flex-2.tablet-view {
        flex-direction: column;
    }
}

@media (max-width: 992px) {
    .flex-3.overview{
        flex-wrap:wrap;
        gap:0;
        width:100%;
    }

        .flex-3.overview > * {
            flex: 0 0 100%;
        }
    .roix-card .roix-card-title.flex.ovrw div:first-child {
        width:100%;
        max-width:100%;
    }

    .roix-card .roix-card-title.flex.ovrw {
        flex-wrap: wrap;
    }
}

@media (max-width: 744px) {
    .flex-2.overview {
        flex-direction:column
    }

        .flex-2.overview > * {
            flex: 0 0 100%;
        }
}

/*DEFAULTS END*/


/*REGISTRATION STEP BAR START*/

.register-progress {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    list-style-type: none;
    display: flex;
    justify-content: center;
    gap: 15px;
}

.register-progress-item {
    width: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    cursor: pointer;
}

    .register-progress-item.active .register-progress-item-number {
        color: #292929;
        background: #FF9F52;
        border: 1px solid #FF9F52;
    }

.register-progress-item-number {
    font-family: Urbanist;
    font-size: 24px;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: -0.01em;
    max-width: 48px;
    max-height: 48px;
    min-width: 48px;
    min-height: 48px;
    text-align: center;
    color: #F6EDE0;
    border-radius: 50%;
    background-color: inherit;
    border: 1px solid #F6EDE0;
    padding: 12px;
}

.register-progress-item-text {
    color: #F6EDE0;
    text-align:center;
}

.register-progress-item.active .register-progress-item-text {
    color: #FF9F52;
}

@media (max-width: 1200px) {
    .register-progress {
        transform: none;
    }
}

@media (max-width: 992px) {

    .register-progress-item{
        width:80px;
    }
}

@media (max-width: 744px) {
    .register-progress-item {
        width: auto;
    }
    .register-progress-item-text {
        display: none;
    }
}

@media (max-width: 582px) {
    .register-progress {
        transform: none;
        right:0;
        gap:5px;
        margin-top:4px;
    }

    .register-progress-item-number {
        font-family: Urbanist;
        font-size: 24px;
        font-weight: 400;
        line-height: 24px;
        max-width: 32px;
        max-height: 32px;
        min-width: 32px;
        min-height: 32px;
        padding: 4px;
    }

}
/*REGISTRATION STEP BAR END*/




@media (max-width: 1440px) {
}

@media (max-width: 1200px) {
}

@media (max-width: 992px) {

}
@media (max-width: 744px) {
}

@media (max-width: 582px) {

}


/*Project*/

.project-invest-card {
    display: flex;
    height: 630px;
    margin-bottom: 40px;
    align-items: stretch;
}

    .project-invest-card div.project-image {
        position: relative;
        overflow: hidden;
        flex: 1;
        display: flex;
        align-items: center;
        justify-content: center;
        border-bottom-left-radius:16px;
        border-top-left-radius:16px;
    }

        .project-invest-card .project-image .investment-image {
            width: 100%;
            height: 100%;
            min-width: 100%;
            min-height: 100%;
            object-fit: cover;
            flex: 1;
            justify-self: stretch;
        }

    .project-invest-card .project-info {
        width: 427px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

        .project-invest-card .project-info .project-info-title {
            font-family: Poppins-Light;
            font-size: 14px;
            font-weight: 300;
            line-height: 20px;
        }

            .project-invest-card .project-info .project-info-title.align-right {
                text-align: right
            }

        .project-invest-card .project-info .project-info-value {
            font-family: Urbanist;
            font-size: 32px;
            font-weight: 400;
            line-height: 40px;
            letter-spacing: -0.01em;
        }

            .project-invest-card .project-info .project-info-value.align-right {
                text-align: right
            }

        .project-invest-card .project-info .project-info-progress {
            font-family: Poppins-Medium;
            font-size: 16px;
            font-weight: 500;
            line-height: 24px;
        }

            .project-invest-card .project-info .project-info-progress.align-right {
                text-align: right
            }



    .project-info.only-one {
        border-bottom-left-radius: 0px;
        border-top-left-radius: 0px;
    }

.project-supplementary-services-card {
    padding: 40px;
    background-color: #EFEFEF;
    margin-bottom: 40px;
    border-radius: 16px;
}

    .supplementary-services-container {
        display: grid !important;
        grid-template-columns: repeat(5, 1fr);
        gap: 32px;
        margin-bottom: 32px;
        overflow: hidden;
        height: 165px;
        transition: all 0.3s ease;

    }

        .supplementary-services-container .code {
            margin: 16px 0 12px;
            font-family: Urbanist;
            font-size: 24px;
            font-weight: 400;
            line-height: 24px;
            letter-spacing: -0.01em;
        }

        .supplementary-services-container .title {
            font-family: Poppins-Light;
            font-size: 14px;
            font-weight: 300;
            line-height: 20px;
            color: #58575D;
        }

.project-investor-comment-title {
    margin: 120px auto 108px;
    font-family: Urbanist;
    font-weight: 400;
    font-size: 56px;
    line-height: 64px;
    color: #F5F5F5;
    max-width: 794px;
    text-align: center;
}

#comment-container {
    position:relative!important;
}

.project-investor-comment-container {
    background-color: #EFEFEF;
    padding: 72px 72px 44px;
    max-width: calc(100% - 307px);
    margin: 0 0 20px auto;
    min-height: 400px;
    border-radius: 16px;
}

    .project-investor-comment-container .project-investor-name {
        font-family: Urbanist;
        font-weight: 400;
        font-size: 32px;
        line-height: 40px;
        /*letter-spacing: -1%;*/
        color: #292929;
        margin-bottom:12px;
    }

    .project-investor-comment-container .project-investor-company {
        font-family: Urbanist;
        font-weight: 400;
        font-size: 24px;
        line-height: 24px;
        /*letter-spacing: -1%;*/
        color: #9E9DA8;
        margin-bottom: 32px;
    }

    .project-investor-comment-container .project-investor-comment {
        font-family: Poppins-Light;
        font-weight: 300;
        font-size: 16px;
        line-height: 24px;
        color: #292929;
        margin-bottom: 32px;
    }

#project-investor-photo {
    width: 445px;
    height: 445px;
    position: absolute;
    bottom:0;
    left: -106px;
    /*top: 50%;*/
    /*transform: translateY(-50%);*/
    object-fit: cover;
    object-position:top;
}

.project-summary-photo-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

    .project-summary-photo-container .photo-container-title {
        font-family: Urbanist;
        font-size: 32px;
        font-weight: 400;
        line-height: 40px;
        letter-spacing: -0.01em;
        color: #F6EDE0;
        margin: 40px 0;
    }

#comment-container {
    position: relative;
}

.project-summary-photo-container .carousel-controls {
    display: flex;
    gap: 12px;
}

@media (max-width: 1200px) {
    .project-invest-card {
        height: 1060px;
        flex-direction: column;
    }

        .project-invest-card .project-image {
            flex: unset !important;
        }

        .project-invest-card .project-image .investment-image {
            height: 480px;
            object-fit: fill;
        }

        .project-invest-card .project-info {
            width: auto;
        }
    
        .project-supplementary-services-card {
            padding: 40px 40px 24px;
        }

    .supplementary-services-container {
        display: grid !important;
        grid-template-columns: repeat(3, 1fr);
        gap: 32px;
        margin-bottom: 32px;
        overflow: hidden;
        height: 165px;
        transition: all 0.3s ease;
    }

        .supplementary-services-container > div {
            width: 100% !important;
            text-align: center;
        }

        .supplementary-services-container:not(.show-all) > div:nth-child(n+4) {
            display: none;
        }

        .supplementary-services-container.show-all {
            height: auto;
        }

        #comment-container {
            display: flex;
            flex-direction: column;
        }

    .project-investor-comment-container {
        order: 2;
        /*max-width: unset;*/
        max-width: 100%;
        width: 100%;
        margin-left: 0;
        border-top-left-radius: 0;
        border-top-right-radius: 0;
    }

    #project-investor-photo {
        width: auto;
        height: 412px;
        position: static;
        transform: none;
        /*object-fit: fill;*/
        object-fit: cover;
        object-position: top;
    }

    #loan-info {
        flex-direction: column;
    }

    .project-info.only-one {
        border-bottom-left-radius: 16px;
        border-top-right-radius: 0px;
    }

    .project-invest-card div.project-image {
        border-bottom-left-radius: 0px;
        border-top-right-radius: 16px;
    }
}

@media (max-width: 774px) {
    .project-invest-card {
        height: 820px;
    }

    .project-invest-card .project-image .investment-image {
        height: 240px;
    }

    .project-supplementary-services-card {
        padding: 32px 16px 32px;
    }

    .project-investor-comment-container {
        padding: 56px 16px 32px;
    }

    .supplementary-services-container {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
        margin-bottom: 32px;
        overflow: hidden;
        height: 165px;
        transition: all 0.3s ease;
    }

        .supplementary-services-container:not(.show-all) > div:nth-child(n+3) {
            display: none;
        }

        .supplementary-services-container.show-all {
            height: auto;
        }

}

@media (max-width: 500px) {
    .project-invest-card {
        height:  auto;
    }

        .project-invest-card .project-info .project-info-value {
            font-size: 24px;
        }
}

@media (max-width: 400px){
    .supplementary-services-container .code {
        font-size: 20px;
    }
}

@media (max-width: 1200px) {
    .carousel-item {
        min-width: unset;
    }

    .project-summary-photo-container .carousel-controls {
        display: none;
    }
}

    .password-container {
        position: relative;
    }

    /*    .password-container input {
        width: 100%;
        padding: 10px 40px 10px 10px;
        font-size: 16px;
        border: 1px solid #ccc;
        border-radius: 4px;
    }*/

    .show-hide-btn {
        content: "";
        display: block;
        background-image: url('Images/roix/defaults/show.svg');
        position: absolute;
        right: 16px;
        top: 28px;
        transform: translateY(-50%);
        cursor: pointer;
        width: 20px;
        height: 20px;
        opacity: 0.3;
    }

        .show-hide-btn.texton {
            background-image: url('Images/roix/defaults/hide.svg');
        }


        .show-hide-btn:hover {
            opacity: 0.6;
        }


    .invest-card {
        max-width: 600px;
        margin: auto;
        background-color: #F6EDE0;
    }

        .invest-card .invest-content {
            display: flex;
            justify-content: space-between;
            gap: 32px;
        }

            .invest-card .invest-content .btn-invest {
                padding: 15px 0 5px;
            }

            .invest-card .invest-content .invest-content-value {
                font-family: Poppins-Medium;
                font-size: 16px;
                font-weight: 500;
                line-height: 24px;
                color: #292929;
            }

            .invest-card .invest-content .invest-content-range-values {
                display: flex;
                justify-content: space-between;
                align-items: center
            }

            .invest-card .invest-content .invest-content-loan-value-container {
                display: flex;
                flex-direction: column;
                justify-content: space-around;
                font-family: Poppins-Light;
                font-size: 14px;
                font-weight: 300;
                line-height: 20px;
                color: #292929;
                width: 202px;
            }

                .invest-card .invest-content .invest-content-loan-value-container .invest-content-loan-value {
                    font-family: Poppins-Medium;
                    font-size: 14px;
                    font-weight: 500;
                    line-height: 20px;
                    text-align: left;
                }

    #inv-expected-return {
        background-color: #FAFAFA;
        padding: 16px;
        border: 1px solid #DADADA;
        border-radius: 10px;
        margin-bottom: 0px;
    }

    @media (max-width: 1200px) {
        .invest-card .invest-content {
            flex-direction: column;
        }

            .invest-card .invest-content .btn-invest {
                justify-self: center;
            }

            .invest-card .invest-content .invest-content-loan-value-container {
                display: grid;
                grid-template-columns: 1fr 1fr;
                gap: 10px;
                font-family: Poppins-Light;
                font-size: 14px;
                font-weight: 300;
                line-height: 20px;
                color: #292929;
                width: 100%;
            }

                .invest-card .invest-content .invest-content-loan-value-container label {
                    text-align: left;
                    align-self: center;
                }

                .invest-card .invest-content .invest-content-loan-value-container p.invest-content-loan-value {
                    text-align: right;
                    align-self: center;
                }

                .invest-card .invest-content .invest-content-loan-value-container > div {
                    grid-column: 1 / -1;
                }

        #inv-expected-return {
            margin-top: 10px;
        }
    }

    @media (max-width: 370px) {
        #goal {
            text-align: unset !important;
        }

        #inv-expected-return {
            margin-top: 8px;
        }
    }



    .tooltip-container {
        position: relative;
    }

        .tooltip-container .tooltip {
            visibility: hidden;
            opacity: 0;
            background-color: rgba(41, 41, 41, 1);
            color: #fff;
            padding: 4px 8px;
            font-size: 14px;
            font-weight: 300;
            line-height: 20px;
            position: absolute;
            z-index: 100;
            bottom: calc(100% + 6px);
            left: 24px;
            margin-left: 0;
            white-space: nowrap;
            transition: opacity 0.3s;
        }


   /*         .tooltip-container .tooltip::after {
                content: "";
                position: absolute;
                top: 100%;
                left: 8px;
                border-width: 5px;
                border-style: solid;
                border-color: rgba(41, 41, 41, 1) transparent transparent transparent;
            }*/

        .tooltip-container:hover .tooltip {
            visibility: visible;
            opacity: 1;
        }

        .tooltip-container.registration img {
            width: 20px;
            height: 20px;
        }

        .tooltip-container.registration .tooltip {
            left: -373px;
            white-space: normal;
            word-wrap: break-word;
            width: 400px;
            transition: opacity 0.2s ease-in-out;
            bottom: unset;
            top: calc(100% + 6px);
            background-color: rgba(41, 41, 41, 1);
        }

/*        .tooltip-container .tooltip::after {
            content: "";
            position: absolute;
            top: -5px;
            left: 380px;
            border-width: 5px;
            border-style: solid;
            border-color: rgba(41, 41, 41, 1) transparent transparent transparent;
        }*/

@media (max-width: 500px) {

    .tooltip-container.registration .tooltip {
        left: -300px;
        width: auto;
    }
}

@media (max-width: 440px) {

    .tooltip-container.registration .tooltip {
        left: -250px;
        width: auto;
    }
}

@media (max-width: 390px) {

    .tooltip-container.registration .tooltip {
        left: -200px;
        width: auto;
    }
}

    .cookie-button {
        font-family: Poppins-Bold;
        position: fixed;
        background-color: #58575e;
        font-size: 16px;
        line-height: 20px;
        color: #fff;
        bottom: -35px;
        right: 40px;
        z-index: 10;
        padding: 15px;
        border-top-left-radius: 12px;
        border-top-right-radius: 12px;
        transition: all 0.3s ease;
        border: none;
    }

        .cookie-button:hover {
            bottom: -1px;
        }

    .cookie-container {
        position: fixed;
        background-color: #58575e;
        padding: 16px;
        bottom: 10px;
        right: 10px;
        left: auto;
        z-index: 11;
        width: 525px;
        border-radius: 12px;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: auto;
        grid-gap: 10px;
        color: #ffffff;
    }

        .cookie-container.open {
            display: block;
        }

        .cookie-container img.c-logo {
            width: 100px;
            height: 30px;
        }

        .cookie-container .grid-item:nth-child(2) {
            font-size: 14px;
            font-family: Poppins-Medium;
            text-align: center;
        }

        .cookie-container .grid-item:nth-child(3) {
            text-align: right;
        }


        .cookie-container .grid-item:nth-child(4) {
            padding: 10px 0;
            grid-column: span 3;
            font-size: 12px;
            line-height: 18px;
        }

        .cookie-container button.btn.btn-1, .cookie-container button.btn.btn-5 {
            width: 150px;
            height: 40px;
            padding: 5px;
            font-size: 14px;
            color: #292929;
        }



        .cookie-container .cookie-container--parinktis {
            background-color: #9E9DA8;
            display: flex;
            justify-content: space-between;
            margin-top: 10px;
            padding: 10px;
            font-family: Poppins-Bold;
            font-size: 14px;
            line-height: 20px;
        }


            .cookie-container .cookie-container--parinktis span:nth-child(2) {
                color: rgb(0, 128, 0);
            }

            .cookie-container .cookie-container--parinktis img.cookie-container--parinktis-chevron {
                /*transform: rotate(180deg);*/
                cursor: pointer;
                border-top-right-radius: 12px;
                transition: all 0.3s ease;
            }

                .cookie-container .cookie-container--parinktis img.cookie-container--parinktis-chevron.open {
                    transform: rotate(180deg);
                }


        .cookie-container .cookie-container--parinktis-description {
            background-color: #9E9DA8;
            padding: 10px;
            color: #292929;
            display: none;
              margin-top:-1px;
        }

    @media (max-width: 744px) {
        .cookie-container {
            width: 100%;
            right: 0;
            bottom: 0;
        }
    }

    @media (max-width: 500px) {
        .cookie-container .grid-item:nth-child(5) {
            grid-column: span 3;
        }

        .cookie-container .grid-item:nth-child(6) {
            grid-column: span 3;
        }

        .cookie-container .grid-item:nth-child(7) {
            grid-column: span 3;
        }

            .cookie-container .grid-item:nth-child(5) .btn,
            .cookie-container .grid-item:nth-child(6) .btn,
            .cookie-container .grid-item:nth-child(7) .btn {
                width: 100%;
            }
    }

    .checkbox-container {
        position: relative;
        padding: 8px 0 4px;
        display: flex;
        justify-content: start;
        align-items: start;
    }

    img.leftbarimage {
        height: 20px;
        margin-right: 5px;
    }


    /*.checkbox-container {
    display: flex;
    position: relative;
    gap: 16px;
    padding: 8px 0 4px;
    align-items: start;
}

    .checkbox-container .checkbox-input {*/
    /*margin-left: 3px;*/
    /*width: 0;
        height: 0;
    }


        .checkbox-container .checkbox-input + .img {
            position: absolute;
            display: inline-block;
            width: 24px;
            height: 24px;
            background: url('Images/roix/defaults/checkbox_off.svg') no-repeat center center;
            background-size: contain;
            cursor: pointer
        }


        .checkbox-container .checkbox-input:checked + .img {
            background: url('Images/roix/defaults/checkbox_on.svg') no-repeat center center;
            background-size: contain;
        }*/


    /* .checkbox-container .checkbox-input::before {
            content: "";
            margin-left: -3px;
            cursor: pointer;
            display: block;
            width: 24px;
            height: 24px;
            background: url('Images/roix/defaults/checkbox_off.svg') no-repeat center center;
            background-size: contain;
        }*/

    /*       .checkbox-container .checkbox-input:checked::before {
            background: url('Images/roix/defaults/checkbox_on.svg') no-repeat center center;
            background-size: contain;
        }*/

    /*.checkbox-container label {
        margin-top: 2px;
        margin-left: 15px;
    }*/



    .checkbox-container {
        position: relative !important;
        display: inline-block;
        gap: 16px;
        padding: 8px 0 4px;
        align-items: start;
        width: 100%;
    }

        .checkbox-container label {
            display: flex;
            align-items: start;
            cursor: pointer;
            gap: 15px;
            position: relative;
        }

        /* Hidden checkbox */
        .checkbox-container .checkbox-input {
            width: 0;
            height: 0;
            opacity: 0;
            position: absolute;
        }

        /* Custom checkbox styling */
        .checkbox-container .custom-checkbox {
            width: 24px !important;
            height: 24px !important;
            min-width: 24px;
            background: url('Images/roix/defaults/checkbox_off.svg') no-repeat center center;
            background-size: contain;
            margin-left: -3px;
        }

        /* Checked state styling */
        .checkbox-container .checkbox-input:checked + .custom-checkbox {
            background: url('Images/roix/defaults/checkbox_on.svg') no-repeat center center;
            background-size: contain;
        }

        .checkbox-container .parsley-errors-list {
            width: 100%;
            margin-top: 4px;
            margin-left: 0;
            padding-left: 0;
            color: #d9534f; /* Optional: red text for error */
            font-size: 0.875rem;
            list-style: none;
        }


    /*.radio-button-container {
    display: flex;
    position: relative;
    gap: 16px;
    padding: 8px 0 4px;
    align-items: start;
}

    .radio-button-container .radio-button-input {*/
    /*        margin-left: 5px;
        margin-top:5px;*/
    /*width:0;
        height:0;
    }

        .radio-button-container .radio-button-input::before {
            content: "";
            margin-left: -3px;
            cursor: pointer;
            display: block;
            width: 24px;
            height: 24px;
            background: url('Images/roix/defaults/radio_button_off.svg') no-repeat center center;
            background-size: contain;
        }

        .radio-button-container .radio-button-input:checked::before {
            background: url('Images/roix/defaults/radio_button_on.svg') no-repeat center center;
            background-size: contain;
        }

    .radio-button-container label {
       margin-top: 6px;
       margin-left:20px;
    }*/


    .radio-button-container {
        display: inline-block;
        gap: 16px;
        padding: 8px 0 4px;
        align-items: start;
        width: 100%;
    }

        .radio-button-container label {
            display: flex;
            align-items: start;
            cursor: pointer;
            gap: 15px;
            position: relative;
        }

        /* Hidden radio input */
        .radio-button-container .radio-button-input {
            width: 0;
            height: 0;
            opacity: 0;
            position: absolute;
        }

        /* Custom radio button styling */
        .radio-button-container .custom-radio {
            width: 24px !important;
            height: 24px !important;
            min-width: 24px;
            background: url('Images/roix/defaults/radio_button_off.svg') no-repeat center center;
            background-size: contain;
            margin-left: -3px;
        }

        /* Checked state styling */
        .radio-button-container .radio-button-input:checked + .custom-radio {
            background: url('Images/roix/defaults/radio_button_on.svg') no-repeat center center;
            background-size: contain;
        }

        /* Optional error message styling, similar to checkbox */
        .radio-button-container .parsley-errors-list {
            width: 100%;
            margin-top: 4px;
            margin-left: 0;
            padding-left: 0;
            color: #d9534f;
            font-size: 0.875rem;
            list-style: none;
        }


.roix-documents-container {
    overflow: hidden;
}

.roix-documents {
    display: flex;
    /*flex-wrap: wrap;*/
    margin-bottom: 40px;
    gap: 32px;
    width: auto;
}

    .roix-documents .roix-documents--item {
        background-color: #EFEFEF;
        padding: 24px;
        border-radius: 16px;
        display: flex;
        flex-direction: column;
        gap: 16px;
        align-items: center;
        width: calc(25% - 24px);
        flex: 0 0 calc(25% - 24px);
        box-sizing: border-box;
        justify-content: space-between;
        transition: 0.5s ease;
    }

            .roix-documents--item:first-of-type .roix-documents--item-title {
                font-family:Poppins-Bold;
            }

            .roix-documents .roix-documents--item::before {
                content: "";
                margin-left: -3px;
                cursor: pointer;
                display: block;
                width: 56px;
                height: 56px;
                background: url('Images/roix/defaults/document.svg') no-repeat center center;
                background-size: contain;
            }

        .roix-documents .roix-documents--item-title {
            font-family: Poppins-Light;
            font-weight: 300;
            font-size: 14px;
            line-height: 20px;
            text-align: center;
            word-wrap: anywhere;
            /*height: 60px;*/
        }

    @media (max-width: 1200px) {
        .roix-documents .roix-documents--item {
            width: calc(33% - 24px);
            flex: 0 0 calc(33% - 24px);
        }
    }


    @media (max-width: 900px) {
        .roix-documents .roix-documents--item {
            width: calc(50% - 16px);
            flex: 0 0 calc(50% - 16px);
        }
    }

    @media (max-width: 582px) {
        .roix-documents .roix-documents--item {
            width: 100%;
            flex: 0 0 100%;
        }
    }


.switch {
    position: relative;
    display: inline-block;
    width: 30px;
    height: 16px;
}

    .switch input {
        opacity: 0;
        width: 0;
        height: 0;
    }

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ff6900;
    -webkit-transition: .4s;
    transition: .4s;
}

    .slider:before {
        position: absolute;
        content: "";
        height: 10px;
        width: 10px;
        left: 4px;
        bottom: 3px;
        background-color: white;
        -webkit-transition: .4s;
        transition: .4s;
    }

input:checked + .slider {
    background-color: #f4ff8f;
}

input:focus + .slider {
    box-shadow: 0 0 1px #f4ff8f;
}

input:checked + .slider:before {
    -webkit-transform: translateX(12px);
    -ms-transform: translateX(12px);
    transform: translateX(12px);
}

/* Rounded sliders */
.slider.round {
    border-radius: 20px;
}

    .slider.round:before {
        border-radius: 50%;
    }



.custom-range {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 6px;
    border-radius: 3px;
    background: #ddd; /* fallback */
    outline: none;
    background-image: linear-gradient(to right, #19C595 0%, #19C595 50%, #ddd 50%, #ddd 100%);
    background-size: 100% 100%;
    background-repeat: no-repeat;
}

    .custom-range::-webkit-slider-thumb {
        -webkit-appearance: none;
        height: 16px;
        width: 16px;
        border-radius: 50%;
        background: #19C595;
        cursor: pointer;
        /*margin-top: -5px;*/
    }

    .custom-range::-moz-range-thumb {
        height: 16px;
        width: 16px;
        border-radius: 50%;
        background: #19C595;
        border: none;
        cursor: pointer;
    }

@media (max-width: 400px) {

    #login-page #submit_button, #login-page #register_account_lint {
        width: 200px;
    }
}

#rp-0-1, #rp-0-1 a {
    color: red;
    font-size: 12px;
}