.cursor-pointer {
    cursor: pointer;
}

.rg-d-grid {
    display: grid !important;
}

.rg-d-block {
    display: block !important;
}

.rg-d-flex {
    display: flex !important;
}

.rg-d-inline-block {
    display: inline-block !important;
}

.rg-d-inline {
    display: inline !important;
}

.rg-d-none {
    display: none !important;
}

.rg-border {
    border: solid 1px #e6e8ec;
}

.rg-border-top {
    border: 0;
    border-top: solid 1px #e6e8ec !important;
}

.rg-border-right {
    border: 0;
    border-right: solid 1px #e6e8ec !important;
}

.rg-border-bottom {
    border: 0;
    border-bottom: solid 1px #e6e8ec !important;
}

.rg-border-left {
    border: 0;
    border-left: solid 1px #e6e8ec !important;
}

.rg-border-style-solid {
    border-style: solid !important;
}

.rg-border-style-dotted {
    border-style: dotted !important;
}

.rg-border-style-dashed {
    border-style: dashed !important;
}

.rg-border-thin {
    border-width: 1px !important;
}

.rg-border-normal {
    border-width: 2px !important;
}

.rg-border-fat {
    border-width: 4px !important;
}

.rg-border-primary {
    border-color: #e6e8ec !important;
}

.rg-border-secondary {
    border-color: #252525 !important;
}

.rg-border-inverse {
    border-color: #ffffff !important;
}

.rg-border-radius-rectangle {
    border-radius: 0 !important;
}

.rg-border-radius-rounded {
    border-radius: 0.25rem !important;
}

.rg-border-radius-capsule {
    border-radius: 100px !important;
}

.rg-box-shadow-angled-flat-extra-small {
    box-shadow: 2px 2px 0 rgba(0, 0, 0, 0.1) !important;
}

.rg-box-shadow-angled-blur-extra-small {
    box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.1) !important;
}

.rg-box-shadow-blur-extra-small {
    box-shadow: 0 0 2px rgba(0, 0, 0, 0.1) !important;
}

.rg-box-shadow-angled-flat-small {
    box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.1) !important;
}

.rg-box-shadow-angled-blur-small {
    box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.1) !important;
}

.rg-box-shadow-blur-small {
    box-shadow: 0 0 4px rgba(0, 0, 0, 0.1) !important;
}

.rg-box-shadow-angled-flat-medium {
    box-shadow: 6px 6px 0 rgba(0, 0, 0, 0.1) !important;
}

.rg-box-shadow-angled-blur-medium {
    box-shadow: 6px 6px 6px rgba(0, 0, 0, 0.1) !important;
}

.rg-box-shadow-blur-medium {
    box-shadow: 0 0 6px rgba(0, 0, 0, 0.1) !important;
}

.rg-box-shadow-angled-flat-large {
    box-shadow: 8px 8px 0 rgba(0, 0, 0, 0.1) !important;
}

.rg-box-shadow-angled-blur-large {
    box-shadow: 8px 8px 8px rgba(0, 0, 0, 0.1) !important;
}

.rg-box-shadow-blur-large {
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.1) !important;
}

.rg-box-shadow-angled-flat-extra-large {
    box-shadow: 10px 10px 0 rgba(0, 0, 0, 0.1) !important;
}

.rg-box-shadow-angled-blur-extra-large {
    box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.1) !important;
}

.rg-box-shadow-blur-extra-large {
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1) !important;
}

.rg-bg-primary {
    background-color: #e6e8ec !important;
}

.rg-lighten-bg-primary {
    background-color: white !important;
}

.rg-bg-secondary {
    background-color: #252525 !important;
}

.rg-lighten-bg-secondary {
    background-color: #727272 !important;
}

.rg-bg-header {
    background-color: #ffffff !important;
}

.rg-lighten-bg-header {
    background-color: white !important;
}

.rg-box-50 {
    height: 50px;
    width: 50px;
}

.rg-box-80 {
    height: 80px;
    width: 80px;
}

.rg-box-100 {
    height: 100px;
    width: 100px;
}

.rg-box-120 {
    height: 120px;
    width: 120px;
}

.rg-box-150 {
    height: 150px;
    width: 150px;
}

.rg-box-200 {
    height: 200px;
    width: 200px;
}

.rg-box-250 {
    height: 250px;
    width: 250px;
}

.rg-w-10 {
    width: 10%;
}

.rg-w-20 {
    width: 20%;
}

.rg-w-25 {
    width: 25%;
}

.rg-w-30 {
    width: 30%;
}

.rg-w-40 {
    width: 40%;
}

.rg-w-50 {
    width: 50%;
}

.rg-w-60 {
    width: 60%;
}

.rg-w-70 {
    width: 70%;
}

.rg-w-80 {
    width: 80%;
}

.rg-w-90 {
    width: 90%;
}

.rg-w-100 {
    width: 100%;
}

.rg-list-style-none {
    list-style: none;
}

.rg-m-l-auto {
    margin-left: auto;
}

.rg-m-r-auto {
    margin-right: auto;
}

@-webkit-keyframes anim-fade-in {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes anim-fade-in {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@-webkit-keyframes anim-move-down {
    from {
        margin-top: -10px;
    }

    to {
        margin-top: 0;
    }
}

@keyframes anim-move-down {
    from {
        margin-top: -10px;
    }

    to {
        margin-top: 0;
    }
}

@-webkit-keyframes anim-move-up {
    from {
        margin-top: 10px;
    }

    to {
        margin-top: 0;
    }
}

@keyframes anim-move-up {
    from {
        margin-top: 10px;
    }

    to {
        margin-top: 0;
    }
}

@-webkit-keyframes topNav-drop-down-move-up {
    from {
        margin-top: 20px;
    }

    to {
        margin-top: 10px;
    }
}

@keyframes topNav-drop-down-move-up {
    from {
        margin-top: 20px;
    }

    to {
        margin-top: 10px;
    }
}

main {
    display: flex;
    min-height: 100vh;
    min-height: 100vh;
    background: rgb(248 250 252);
}

    main > aside {
        display: flex;
        width: 260px;
        height: 100%;
        left: 0;
        top: 0;
        position: fixed;
        background: #f1f5f9;
        border-right: 1px solid #e2e8f0; 
        /*background: linear-gradient(65deg, #311a41 0%, #1a2841 100%);*/
        z-index: 1;
        flex-direction: column;
        -webkit-transition: "", all, 0.5s, ease-in-out;
        -moz-transition: "", all, 0.5s, ease-in-out;
        -ms-transition: "", all, 0.5s, ease-in-out;
        -o-transition: "", all, 0.5s, ease-in-out;
        transition: "", all, 0.5s, ease-in-out;
    }

        main > aside .brand-bar {
            min-height: 60px;
            display: flex;
            justify-content: space-between;
        }

            main > aside .brand-bar .logo {
                -webkit-transition: "", all, 0.5s, ease-in-out;
                -moz-transition: "", all, 0.5s, ease-in-out;
                -ms-transition: "", all, 0.5s, ease-in-out;
                -o-transition: "", all, 0.5s, ease-in-out;
                transition: "", all, 0.5s, ease-in-out;
                opacity: 1;
                width: 134px;
                margin-left: 1.9rem;
                margin-right: 1.9rem;
            }

            main > aside .brand-bar .rg-toggle-button {
                display: flex;
                text-align: center;
                background: #ffffff;
                height: 40px;
                width: 40px;
                border-radius: 100%;
                transform: translateX(50%);
                justify-content: center;
                -webkit-transition: "", all, 0.5s, ease-in-out;
                -moz-transition: "", all, 0.5s, ease-in-out;
                -ms-transition: "", all, 0.5s, ease-in-out;
                -o-transition: "", all, 0.5s, ease-in-out;
                transition: "", all, 0.5s, ease-in-out;
                cursor: pointer;
            }

				/*
        main > aside .main-nav-collapsible-active {
            background: rgba(0, 0, 0, 0.2);
        }
        */

        main > aside .main-navigation {
            position: relative;
            top: 0;
            bottom: 0;
            height: calc(100vh - 80px);
            display: block;
        }

            main > aside .main-navigation a > .more_horiz {
                margin-left: 1.9rem;
            }

            main > aside .main-navigation > span {
                display: block;
                color: #c9c9d0;
                margin-top: 1.2rem;
                opacity: 1;
                height: auto;
                margin-left: 1.9rem;
                margin-right: 1.9rem;
                -webkit-transition: "", all, 0.5s, ease-in-out;
                -moz-transition: "", all, 0.5s, ease-in-out;
                -ms-transition: "", all, 0.5s, ease-in-out;
                -o-transition: "", all, 0.5s, ease-in-out;
                transition: "", all, 0.5s, ease-in-out;
            }

            main > aside .main-navigation ul {
                margin: 0;
            }

                main > aside .main-navigation ul li {
                    display: flex;
                    flex-direction: column;
                    overflow: hidden;
                    -webkit-transition: "", all, 0.5s, ease-in-out;
                    -moz-transition: "", all, 0.5s, ease-in-out;
                    -ms-transition: "", all, 0.5s, ease-in-out;
                    -o-transition: "", all, 0.5s, ease-in-out;
                    transition: "", all, 0.5s, ease-in-out;
                }

                    main > aside .main-navigation ul li a {
                        position: relative;
                        display: flex;
                        flex-direction: row;
                        justify-content: space-between;
                        align-items: center;
                        color: #64748b;
                        width: 100%;
                        padding-top: 10px;
                        padding-bottom: 10px;
                        cursor: pointer;
                        font-size: 14px;
                        font-weight: 500;
                    }

                        main > aside .main-navigation ul li a .material-icons-outlined {
                            pointer-events: none;
                            color: #64748b;
                            -webkit-transition: "", all, 0.5s, ease-in-out;
                            -moz-transition: "", all, 0.5s, ease-in-out;
                            -ms-transition: "", all, 0.5s, ease-in-out;
                            -o-transition: "", all, 0.5s, ease-in-out;
                            transition: "", all, 0.5s, ease-in-out;
                            margin-right: 1rem;
                        }

                            main > aside .main-navigation ul li a .material-icons-outlined.main-nav-icon {
                                margin-left: 1.9rem;
                            }

                        main > aside .main-navigation ul li a span {
                            pointer-events: none;
                            width: 100%;
                            -webkit-transition: "", all, 0.5s, ease-in-out;
                            -moz-transition: "", all, 0.5s, ease-in-out;
                            -ms-transition: "", all, 0.5s, ease-in-out;
                            -o-transition: "", all, 0.5s, ease-in-out;
                            transition: "", all, 0.5s, ease-in-out;
                        }

                        main > aside .main-navigation ul li a:hover {
                            color: #ffffff;
                            background: rgba(0, 0, 0, 0.2);
                        }

                            main > aside .main-navigation ul li a:hover:before {
                                content: '';
                                display: block;
                                position: absolute;
                                left: 0;
                                top: 0;
                                height: 100%;
                                width: 4px;
                                border-top-right-radius: 0.25rem;
                                border-bottom-right-radius: 0.25rem;
                                background: #93939a;
                            }

                            main > aside .main-navigation ul li a:hover .material-icons-outlined {
                                color: #ffffff;
                            }

                        main > aside .main-navigation ul li a.active {
                            color: #06b9d4;
                            background: rgba(0, 0, 0, 0.2);
                        }

                            main > aside .main-navigation ul li a.active:before {
                                content: '';
                                display: block;
                                position: absolute;
                                left: 0;
                                top: 0;
                                height: 100%;
                                width: 4px;
                                border-top-right-radius: 0.25rem;
                                border-bottom-right-radius: 0.25rem;
                                background: #06b9d4;
                            }

                            main > aside .main-navigation ul li a.active .material-icons-outlined {
                                color: #06b9d4;
                            }

                    main > aside .main-navigation ul li.active {
                        background: rgba(0, 0, 0, 0.2);
                    }

                    main > aside .main-navigation ul li ul {
                        display: none;
                        flex-direction: column;
                        width: 100%;
                    }

                        main > aside .main-navigation ul li ul li.active {
                            background: transparent;
                        }

                        main > aside .main-navigation ul li ul li a {
                            padding-left: 2.5rem;
                        }

                            main > aside .main-navigation ul li ul li a .material-icons-outlined {
                                font-size: 14px;
                                font-size: 1rem;
                            }

                        main > aside .main-navigation ul li ul ul a {
                            padding-left: 3.5rem;
                        }

                            main > aside .main-navigation ul li ul ul a .material-icons-outlined {
                                font-size: 10px;
                                font-size: 0.71429rem;
                            }

    main.rg-collapse > aside {
        width: 80px;
    }

        main.rg-collapse > aside .brand-bar .logo {
            opacity: 0;
            width: 0;
            margin-left: 0;
        }

        main.rg-collapse > aside .rg-toggle-button {
            transform: translateX(-60%);
        }

        main.rg-collapse > aside .main-navigation > span {
            opacity: 0;
            height: 0;
            margin-top: 0;
        }

        main.rg-collapse > aside .main-navigation > ul > li > a span {
            opacity: 0;
        }

        main.rg-collapse > aside .main-navigation > ul > li > a + ul {
            display: none;
        }

        main.rg-collapse > aside:hover {
            width: 260px;
        }

            main.rg-collapse > aside:hover .brand-bar .logo {
                opacity: 1;
                width: 134px;
                margin-left: 1.9rem;
            }

            main.rg-collapse > aside:hover .rg-toggle-button {
                transform: translateX(50%);
            }

            main.rg-collapse > aside:hover .main-navigation > span {
                opacity: 1;
                height: auto;
                margin-top: 1.2rem;
            }

            main.rg-collapse > aside:hover .main-navigation > ul > li > a span {
                opacity: 1;
            }

    main.rg-collapse > section {
        padding-left: 80px;
    }

        main.rg-collapse > section > header {
            width: calc(100% - 80px);
        }

    main > section {
        display: flex;
        flex-flow: column;
        padding-left: 260px;
        width: 100%;
        height: 100%;
        z-index: 0;
        -webkit-transition: "", all, 0.5s, ease-in-out;
        -moz-transition: "", all, 0.5s, ease-in-out;
        -ms-transition: "", all, 0.5s, ease-in-out;
        -o-transition: "", all, 0.5s, ease-in-out;
        transition: "", all, 0.5s, ease-in-out;
    }

        main > section > header {
            display: flex;
            flex-direction: row;
            background: #fff;
            box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.1);
            min-height: 60px;
            position: fixed;
            z-index: 2;
            width: calc(100% - 260px);
            -webkit-transition: "", width, 0.5s, ease-in-out;
            -moz-transition: "", width, 0.5s, ease-in-out;
            -ms-transition: "", width, 0.5s, ease-in-out;
            -o-transition: "", width, 0.5s, ease-in-out;
            transition: "", width, 0.5s, ease-in-out;
        }

            main > section > header .notification-bar {
                display: inline-block;
                margin-left: auto;
            }

                main > section > header .notification-bar .notification-item-list {
                    display: flex;
                }

                    main > section > header .notification-bar .notification-item-list .notification-item {
                        display: flex;
                        align-items: center;
                        cursor: pointer;
                    }

                        main > section > header .notification-bar .notification-item-list .notification-item > .material-icons {
                            color: #7688aa;
                            padding: 0 0.5rem;
                            margin: 0 0.3rem;
                            height: 2.5rem;
                            line-height: 2.5rem;
                            -webkit-transition: 0, all, 0.5s, ease;
                            -moz-transition: 0, all, 0.5s, ease;
                            -ms-transition: 0, all, 0.5s, ease;
                            -o-transition: 0, all, 0.5s, ease;
                            transition: 0, all, 0.5s, ease;
                        }

                            main > section > header .notification-bar .notification-item-list .notification-item > .material-icons:hover {
                                color: #59388b;
                                background: #f4f5f7;
                                border-radius: 0.25rem;
                            }

                        main > section > header .notification-bar .notification-item-list .notification-item .dropdown-toggle:after {
                            display: none;
                        }

                        main > section > header .notification-bar .notification-item-list .notification-item .dropdown-menu {
                            margin-top: 10px;
                            -webkit-animation: topNav-drop-down-move-up .3s ease-out 1, anim-fade-in .3s ease-out 1;
                            animation: topNav-drop-down-move-up .3s ease-out 1, anim-fade-in .3s ease-out 1;
                            backface-visibility: hidden;
                            -webkit-font-smoothing: subpixel-antialiased;
                        }

            main > section > header .user-info {
                display: inline-block;
                color: #5d5d6d;
                margin-right: 1.9rem;
                margin-left: 1.9rem;
            }

                main > section > header .user-info .user-name {
                    font-weight: 400;
                }

        main > section > section {
            padding: 1.9rem;
            /*padding-top: calc(60px + 1.9rem);*/
            position: relative;
            z-index: 1;
        }

/*******************************************************/
/* Responsive Media Queries */
/*******************************************************/
@media (max-width: 1024px) {
    main > aside {
        transform: translateX(0);
    }

    main > section {
        padding-left: 0;
    }

        main > section > header {
            width: 100%;
        }

    main.rg-collapse > aside {
        transform: translateX(-260px);
        width: 260px;
    }

        main.rg-collapse > aside:hover .rg-toggle-button {
            transform: translateX(150%);
        }

        main.rg-collapse > aside .rg-toggle-button {
            transform: translateX(150%);
        }

    main.rg-collapse > section {
        padding-left: 0;
    }

        main.rg-collapse > section > header {
            width: 100%;
        }
}

@media (max-width: 568px) {
    main > section > header .notification-bar {
        position: absolute;
        width: 100%;
        top: 60px;
        background: #f4f5f7;
        display: flex;
    }

        main > section > header .notification-bar .notification-item-list {
            margin-left: auto;
        }

    main > section > header .user-info {
        margin-left: auto;
    }
}

.rg-group > div {
    border-bottom: dotted;
    margin-bottom: 15px;
    border-color: #e6e8ec;
}

main.public-main {
    background-color: #ffffff;
    display: flex;
}

    main.public-main aside.public-aside {
        background: #311a41;
        background: linear-gradient(0deg, #311a41 0%, #1a2841 100%);
        background: url(../images/public_layout_bg.jpg) center center no-repeat;
        width: 50%;
        padding: 15px 0;
        color: #ffffff;
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 0;
        bottom: 0;
        left: 0;
        z-index: 1;
    }

        main.public-main aside.public-aside section h1 {
            color: #f2f2f2;
        }

        main.public-main aside.public-aside section p {
            font-size: 1.5rem;
            color: #a6a6a6;
        }

        main.public-main aside.public-aside footer .footer-nav-copyright {
            color: #a6a6a6;
        }

        main.public-main aside.public-aside footer .footer-nav {
            display: flex;
        }

            main.public-main aside.public-aside footer .footer-nav .footer-nav-link {
                display: flex;
            }

                main.public-main aside.public-aside footer .footer-nav .footer-nav-link a {
                    padding: 0 15px;
                    color: #ffffff;
                }

        main.public-main aside.public-aside footer:after:before {
            content: "";
            display: table;
            clear: both;
        }

        main.public-main aside.public-aside footer:after:after {
            content: "";
            display: table;
            clear: both;
        }

    main.public-main section.public-section {
        background: #ffffff;
        height: auto;
        padding: 0;
        padding-left: 50%;
    }

        main.public-main section.public-section h1 {
            font-size: 2rem;
            color: #a6a6a6;
            margin-bottom: 2rem;
        }

        main.public-main section.public-section .social-media-buttons {
            margin-bottom: 2rem;
        }

/* ---------------------------------------------------
    MEDIAQUERIES
----------------------------------------------------- */
@media (max-width: 1024px) {
    main.public-main {
        display: block;
    }

        main.public-main aside.public-aside {
            position: relative;
            width: 100%;
            display: block;
            padding: 50px 15px 150px;
        }

        main.public-main section.public-section {
            width: auto;
            position: relative;
            z-index: 1;
            margin-top: -100px;
            flex-flow: none;
            display: block;
            margin-left: 15px;
            margin-right: 15px;
            padding: 15px 0;
            border-radius: 0.25rem;
        }
}

@media (max-width: 768px) {
    main.public-main aside.public-aside footer .footer-nav {
        display: block;
        text-align: left;
    }

        main.public-main aside.public-aside footer .footer-nav .footer-nav-link {
            text-align: left;
            display: block;
            width: 100%;
        }

            main.public-main aside.public-aside footer .footer-nav .footer-nav-link li {
                display: inline;
            }

    main.public-main section.public-section .social-media-buttons .btn + .btn {
        margin-left: 0.2rem;
    }
}

.cursor-pointer {
    cursor: pointer;
}

.rg-d-grid {
    display: grid !important;
}

.rg-d-block {
    display: block !important;
}

.rg-d-flex {
    display: flex !important;
}

.rg-d-inline-block {
    display: inline-block !important;
}

.rg-d-inline {
    display: inline !important;
}

.rg-d-none {
    display: none !important;
}

.rg-border {
    border: solid 1px #e6e8ec;
}

.rg-border-top {
    border: 0;
    border-top: solid 1px #e6e8ec !important;
}

.rg-border-right {
    border: 0;
    border-right: solid 1px #e6e8ec !important;
}

.rg-border-bottom {
    border: 0;
    border-bottom: solid 1px #e6e8ec !important;
}

.rg-border-left {
    border: 0;
    border-left: solid 1px #e6e8ec !important;
}

.rg-border-style-solid {
    border-style: solid !important;
}

.rg-border-style-dotted {
    border-style: dotted !important;
}

.rg-border-style-dashed {
    border-style: dashed !important;
}

.rg-border-thin {
    border-width: 1px !important;
}

.rg-border-normal {
    border-width: 2px !important;
}

.rg-border-fat {
    border-width: 4px !important;
}

.rg-border-primary {
    border-color: #e6e8ec !important;
}

.rg-border-secondary {
    border-color: #252525 !important;
}

.rg-border-inverse {
    border-color: #ffffff !important;
}

.rg-border-radius-rectangle {
    border-radius: 0 !important;
}

.rg-border-radius-rounded {
    border-radius: 0.25rem !important;
}

.rg-border-radius-capsule {
    border-radius: 100px !important;
}

.rg-box-shadow-angled-flat-extra-small {
    box-shadow: 2px 2px 0 rgba(0, 0, 0, 0.1) !important;
}

.rg-box-shadow-angled-blur-extra-small {
    box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.1) !important;
}

.rg-box-shadow-blur-extra-small {
    box-shadow: 0 0 2px rgba(0, 0, 0, 0.1) !important;
}

.rg-box-shadow-angled-flat-small {
    box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.1) !important;
}

.rg-box-shadow-angled-blur-small {
    box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.1) !important;
}

.rg-box-shadow-blur-small {
    box-shadow: 0 0 4px rgba(0, 0, 0, 0.1) !important;
}

.rg-box-shadow-angled-flat-medium {
    box-shadow: 6px 6px 0 rgba(0, 0, 0, 0.1) !important;
}

.rg-box-shadow-angled-blur-medium {
    box-shadow: 6px 6px 6px rgba(0, 0, 0, 0.1) !important;
}

.rg-box-shadow-blur-medium {
    box-shadow: 0 0 6px rgba(0, 0, 0, 0.1) !important;
}

.rg-box-shadow-angled-flat-large {
    box-shadow: 8px 8px 0 rgba(0, 0, 0, 0.1) !important;
}

.rg-box-shadow-angled-blur-large {
    box-shadow: 8px 8px 8px rgba(0, 0, 0, 0.1) !important;
}

.rg-box-shadow-blur-large {
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.1) !important;
}

.rg-box-shadow-angled-flat-extra-large {
    box-shadow: 10px 10px 0 rgba(0, 0, 0, 0.1) !important;
}

.rg-box-shadow-angled-blur-extra-large {
    box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.1) !important;
}

.rg-box-shadow-blur-extra-large {
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1) !important;
}

.rg-bg-primary {
    background-color: #e6e8ec !important;
}

.rg-lighten-bg-primary {
    background-color: white !important;
}

.rg-bg-secondary {
    background-color: #252525 !important;
}

.rg-lighten-bg-secondary {
    background-color: #727272 !important;
}

.rg-bg-header {
    background-color: #ffffff !important;
}

.rg-lighten-bg-header {
    background-color: white !important;
}

.rg-box-50 {
    height: 50px;
    width: 50px;
}

.rg-box-80 {
    height: 80px;
    width: 80px;
}

.rg-box-100 {
    height: 100px;
    width: 100px;
}

.rg-box-120 {
    height: 120px;
    width: 120px;
}

.rg-box-150 {
    height: 150px;
    width: 150px;
}

.rg-box-200 {
    height: 200px;
    width: 200px;
}

.rg-box-250 {
    height: 250px;
    width: 250px;
}

.rg-w-10 {
    width: 10%;
}

.rg-w-20 {
    width: 20%;
}

.rg-w-25 {
    width: 25%;
}

.rg-w-30 {
    width: 30%;
}

.rg-w-40 {
    width: 40%;
}

.rg-w-50 {
    width: 50%;
}

.rg-w-60 {
    width: 60%;
}

.rg-w-70 {
    width: 70%;
}

.rg-w-80 {
    width: 80%;
}

.rg-w-90 {
    width: 90%;
}

.rg-w-100 {
    width: 100%;
}

.rg-list-style-none {
    list-style: none;
}

.rg-m-l-auto {
    margin-left: auto;
}

.rg-m-r-auto {
    margin-right: auto;
}

@media (max-width: 1200px) {
    .rg-m-0 {
        margin: 0rem !important;
    }

    .rg-p-0 {
        padding: 0rem !important;
    }

    .rg-m-t-0 {
        margin-top: 0rem !important;
    }

    .rg-p-t-0 {
        padding-top: 0rem !important;
    }

    .rg-m-b-0 {
        margin-bottom: 0rem !important;
    }

    .rg-p-b-0 {
        padding-bottom: 0rem !important;
    }

    .rg-m-l-0 {
        margin-left: 0rem !important;
    }

    .rg-p-l-0 {
        padding-left: 0rem !important;
    }

    .rg-m-r-0 {
        margin-right: 0rem !important;
    }

    .rg-p-r-0 {
        padding-right: 0rem !important;
    }

    .rg-m-5 {
        margin: 0.5rem !important;
    }

    .rg-p-5 {
        padding: 0.5rem !important;
    }

    .rg-m-t-5 {
        margin-top: 0.5rem !important;
    }

    .rg-p-t-5 {
        padding-top: 0.5rem !important;
    }

    .rg-m-b-5 {
        margin-bottom: 0.5rem !important;
    }

    .rg-p-b-5 {
        padding-bottom: 0.5rem !important;
    }

    .rg-m-l-5 {
        margin-left: 0.5rem !important;
    }

    .rg-p-l-5 {
        padding-left: 0.5rem !important;
    }

    .rg-m-r-5 {
        margin-right: 0.5rem !important;
    }

    .rg-p-r-5 {
        padding-right: 0.5rem !important;
    }

    .rg-m-10 {
        margin: 1rem !important;
    }

    .rg-p-10 {
        padding: 1rem !important;
    }

    .rg-m-t-10 {
        margin-top: 1rem !important;
    }

    .rg-p-t-10 {
        padding-top: 1rem !important;
    }

    .rg-m-b-10 {
        margin-bottom: 1rem !important;
    }

    .rg-p-b-10 {
        padding-bottom: 1rem !important;
    }

    .rg-m-l-10 {
        margin-left: 1rem !important;
    }

    .rg-p-l-10 {
        padding-left: 1rem !important;
    }

    .rg-m-r-10 {
        margin-right: 1rem !important;
    }

    .rg-p-r-10 {
        padding-right: 1rem !important;
    }

    .rg-m-15 {
        margin: 1.5rem !important;
    }

    .rg-p-15 {
        padding: 1.5rem !important;
    }

    .rg-m-t-15 {
        margin-top: 1.5rem !important;
    }

    .rg-p-t-15 {
        padding-top: 1.5rem !important;
    }

    .rg-m-b-15 {
        margin-bottom: 1.5rem !important;
    }

    .rg-p-b-15 {
        padding-bottom: 1.5rem !important;
    }

    .rg-m-l-15 {
        margin-left: 1.5rem !important;
    }

    .rg-p-l-15 {
        padding-left: 1.5rem !important;
    }

    .rg-m-r-15 {
        margin-right: 1.5rem !important;
    }

    .rg-p-r-15 {
        padding-right: 1.5rem !important;
    }

    .rg-m-20 {
        margin: 2rem !important;
    }

    .rg-p-20 {
        padding: 2rem !important;
    }

    .rg-m-t-20 {
        margin-top: 2rem !important;
    }

    .rg-p-t-20 {
        padding-top: 2rem !important;
    }

    .rg-m-b-20 {
        margin-bottom: 2rem !important;
    }

    .rg-p-b-20 {
        padding-bottom: 2rem !important;
    }

    .rg-m-l-20 {
        margin-left: 2rem !important;
    }

    .rg-p-l-20 {
        padding-left: 2rem !important;
    }

    .rg-m-r-20 {
        margin-right: 2rem !important;
    }

    .rg-p-r-20 {
        padding-right: 2rem !important;
    }

    .rg-m-30 {
        margin: 3rem !important;
    }

    .rg-p-30 {
        padding: 3rem !important;
    }

    .rg-m-t-30 {
        margin-top: 3rem !important;
    }

    .rg-p-t-30 {
        padding-top: 3rem !important;
    }

    .rg-m-b-30 {
        margin-bottom: 3rem !important;
    }

    .rg-p-b-30 {
        padding-bottom: 3rem !important;
    }

    .rg-m-l-30 {
        margin-left: 3rem !important;
    }

    .rg-p-l-30 {
        padding-left: 3rem !important;
    }

    .rg-m-r-30 {
        margin-right: 3rem !important;
    }

    .rg-p-r-30 {
        padding-right: 3rem !important;
    }

    .rg-m-40 {
        margin: 4rem !important;
    }

    .rg-p-40 {
        padding: 4rem !important;
    }

    .rg-m-t-40 {
        margin-top: 4rem !important;
    }

    .rg-p-t-40 {
        padding-top: 4rem !important;
    }

    .rg-m-b-40 {
        margin-bottom: 4rem !important;
    }

    .rg-p-b-40 {
        padding-bottom: 4rem !important;
    }

    .rg-m-l-40 {
        margin-left: 4rem !important;
    }

    .rg-p-l-40 {
        padding-left: 4rem !important;
    }

    .rg-m-r-40 {
        margin-right: 4rem !important;
    }

    .rg-p-r-40 {
        padding-right: 4rem !important;
    }

    .rg-m-50 {
        margin: 5rem !important;
    }

    .rg-p-50 {
        padding: 5rem !important;
    }

    .rg-m-t-50 {
        margin-top: 5rem !important;
    }

    .rg-p-t-50 {
        padding-top: 5rem !important;
    }

    .rg-m-b-50 {
        margin-bottom: 5rem !important;
    }

    .rg-p-b-50 {
        padding-bottom: 5rem !important;
    }

    .rg-m-l-50 {
        margin-left: 5rem !important;
    }

    .rg-p-l-50 {
        padding-left: 5rem !important;
    }

    .rg-m-r-50 {
        margin-right: 5rem !important;
    }

    .rg-p-r-50 {
        padding-right: 5rem !important;
    }

    .rg-m-60 {
        margin: 6rem !important;
    }

    .rg-p-60 {
        padding: 6rem !important;
    }

    .rg-m-t-60 {
        margin-top: 6rem !important;
    }

    .rg-p-t-60 {
        padding-top: 6rem !important;
    }

    .rg-m-b-60 {
        margin-bottom: 6rem !important;
    }

    .rg-p-b-60 {
        padding-bottom: 6rem !important;
    }

    .rg-m-l-60 {
        margin-left: 6rem !important;
    }

    .rg-p-l-60 {
        padding-left: 6rem !important;
    }

    .rg-m-r-60 {
        margin-right: 6rem !important;
    }

    .rg-p-r-60 {
        padding-right: 6rem !important;
    }

    .rg-m-70 {
        margin: 7rem !important;
    }

    .rg-p-70 {
        padding: 7rem !important;
    }

    .rg-m-t-70 {
        margin-top: 7rem !important;
    }

    .rg-p-t-70 {
        padding-top: 7rem !important;
    }

    .rg-m-b-70 {
        margin-bottom: 7rem !important;
    }

    .rg-p-b-70 {
        padding-bottom: 7rem !important;
    }

    .rg-m-l-70 {
        margin-left: 7rem !important;
    }

    .rg-p-l-70 {
        padding-left: 7rem !important;
    }

    .rg-m-r-70 {
        margin-right: 7rem !important;
    }

    .rg-p-r-70 {
        padding-right: 7rem !important;
    }

    .rg-m-80 {
        margin: 8rem !important;
    }

    .rg-p-80 {
        padding: 8rem !important;
    }

    .rg-m-t-80 {
        margin-top: 8rem !important;
    }

    .rg-p-t-80 {
        padding-top: 8rem !important;
    }

    .rg-m-b-80 {
        margin-bottom: 8rem !important;
    }

    .rg-p-b-80 {
        padding-bottom: 8rem !important;
    }

    .rg-m-l-80 {
        margin-left: 8rem !important;
    }

    .rg-p-l-80 {
        padding-left: 8rem !important;
    }

    .rg-m-r-80 {
        margin-right: 8rem !important;
    }

    .rg-p-r-80 {
        padding-right: 8rem !important;
    }

    .rg-m-90 {
        margin: 9rem !important;
    }

    .rg-p-90 {
        padding: 9rem !important;
    }

    .rg-m-t-90 {
        margin-top: 9rem !important;
    }

    .rg-p-t-90 {
        padding-top: 9rem !important;
    }

    .rg-m-b-90 {
        margin-bottom: 9rem !important;
    }

    .rg-p-b-90 {
        padding-bottom: 9rem !important;
    }

    .rg-m-l-90 {
        margin-left: 9rem !important;
    }

    .rg-p-l-90 {
        padding-left: 9rem !important;
    }

    .rg-m-r-90 {
        margin-right: 9rem !important;
    }

    .rg-p-r-90 {
        padding-right: 9rem !important;
    }

    .rg-m-100 {
        margin: 10rem !important;
    }

    .rg-p-100 {
        padding: 10rem !important;
    }

    .rg-m-t-100 {
        margin-top: 10rem !important;
    }

    .rg-p-t-100 {
        padding-top: 10rem !important;
    }

    .rg-m-b-100 {
        margin-bottom: 10rem !important;
    }

    .rg-p-b-100 {
        padding-bottom: 10rem !important;
    }

    .rg-m-l-100 {
        margin-left: 10rem !important;
    }

    .rg-p-l-100 {
        padding-left: 10rem !important;
    }

    .rg-m-r-100 {
        margin-right: 10rem !important;
    }

    .rg-p-r-100 {
        padding-right: 10rem !important;
    }

    .rg-m-200 {
        margin: 20rem !important;
    }

    .rg-p-200 {
        padding: 20rem !important;
    }

    .rg-m-t-200 {
        margin-top: 20rem !important;
    }

    .rg-p-t-200 {
        padding-top: 20rem !important;
    }

    .rg-m-b-200 {
        margin-bottom: 20rem !important;
    }

    .rg-p-b-200 {
        padding-bottom: 20rem !important;
    }

    .rg-m-l-200 {
        margin-left: 20rem !important;
    }

    .rg-p-l-200 {
        padding-left: 20rem !important;
    }

    .rg-m-r-200 {
        margin-right: 20rem !important;
    }

    .rg-p-r-200 {
        padding-right: 20rem !important;
    }
}

@media (min-width: 1200px) {
    .rg-m-0 {
        margin: 0rem !important;
    }

    .rg-p-0 {
        padding: 0rem !important;
    }

    .rg-m-t-0 {
        margin-top: 0rem !important;
    }

    .rg-p-t-0 {
        padding-top: 0rem !important;
    }

    .rg-m-b-0 {
        margin-bottom: 0rem !important;
    }

    .rg-p-b-0 {
        padding-bottom: 0rem !important;
    }

    .rg-m-l-0 {
        margin-left: 0rem !important;
    }

    .rg-p-l-0 {
        padding-left: 0rem !important;
    }

    .rg-m-r-0 {
        margin-right: 0rem !important;
    }

    .rg-p-r-0 {
        padding-right: 0rem !important;
    }

    .rg-m-5 {
        margin: 0.5rem !important;
    }

    .rg-p-5 {
        padding: 0.5rem !important;
    }

    .rg-m-t-5 {
        margin-top: 0.5rem !important;
    }

    .rg-p-t-5 {
        padding-top: 0.5rem !important;
    }

    .rg-m-b-5 {
        margin-bottom: 0.5rem !important;
    }

    .rg-p-b-5 {
        padding-bottom: 0.5rem !important;
    }

    .rg-m-l-5 {
        margin-left: 0.5rem !important;
    }

    .rg-p-l-5 {
        padding-left: 0.5rem !important;
    }

    .rg-m-r-5 {
        margin-right: 0.5rem !important;
    }

    .rg-p-r-5 {
        padding-right: 0.5rem !important;
    }

    .rg-m-10 {
        margin: 1rem !important;
    }

    .rg-p-10 {
        padding: 1rem !important;
    }

    .rg-m-t-10 {
        margin-top: 1rem !important;
    }

    .rg-p-t-10 {
        padding-top: 1rem !important;
    }

    .rg-m-b-10 {
        margin-bottom: 1rem !important;
    }

    .rg-p-b-10 {
        padding-bottom: 1rem !important;
    }

    .rg-m-l-10 {
        margin-left: 1rem !important;
    }

    .rg-p-l-10 {
        padding-left: 1rem !important;
    }

    .rg-m-r-10 {
        margin-right: 1rem !important;
    }

    .rg-p-r-10 {
        padding-right: 1rem !important;
    }

    .rg-m-15 {
        margin: 1.5rem !important;
    }

    .rg-p-15 {
        padding: 1.5rem !important;
    }

    .rg-m-t-15 {
        margin-top: 1.5rem !important;
    }

    .rg-p-t-15 {
        padding-top: 1.5rem !important;
    }

    .rg-m-b-15 {
        margin-bottom: 1.5rem !important;
    }

    .rg-p-b-15 {
        padding-bottom: 1.5rem !important;
    }

    .rg-m-l-15 {
        margin-left: 1.5rem !important;
    }

    .rg-p-l-15 {
        padding-left: 1.5rem !important;
    }

    .rg-m-r-15 {
        margin-right: 1.5rem !important;
    }

    .rg-p-r-15 {
        padding-right: 1.5rem !important;
    }

    .rg-m-20 {
        margin: 2rem !important;
    }

    .rg-p-20 {
        padding: 2rem !important;
    }

    .rg-m-t-20 {
        margin-top: 2rem !important;
    }

    .rg-p-t-20 {
        padding-top: 2rem !important;
    }

    .rg-m-b-20 {
        margin-bottom: 2rem !important;
    }

    .rg-p-b-20 {
        padding-bottom: 2rem !important;
    }

    .rg-m-l-20 {
        margin-left: 2rem !important;
    }

    .rg-p-l-20 {
        padding-left: 2rem !important;
    }

    .rg-m-r-20 {
        margin-right: 2rem !important;
    }

    .rg-p-r-20 {
        padding-right: 2rem !important;
    }

    .rg-m-30 {
        margin: 3rem !important;
    }

    .rg-p-30 {
        padding: 3rem !important;
    }

    .rg-m-t-30 {
        margin-top: 3rem !important;
    }

    .rg-p-t-30 {
        padding-top: 3rem !important;
    }

    .rg-m-b-30 {
        margin-bottom: 3rem !important;
    }

    .rg-p-b-30 {
        padding-bottom: 3rem !important;
    }

    .rg-m-l-30 {
        margin-left: 3rem !important;
    }

    .rg-p-l-30 {
        padding-left: 3rem !important;
    }

    .rg-m-r-30 {
        margin-right: 3rem !important;
    }

    .rg-p-r-30 {
        padding-right: 3rem !important;
    }

    .rg-m-40 {
        margin: 4rem !important;
    }

    .rg-p-40 {
        padding: 4rem !important;
    }

    .rg-m-t-40 {
        margin-top: 4rem !important;
    }

    .rg-p-t-40 {
        padding-top: 4rem !important;
    }

    .rg-m-b-40 {
        margin-bottom: 4rem !important;
    }

    .rg-p-b-40 {
        padding-bottom: 4rem !important;
    }

    .rg-m-l-40 {
        margin-left: 4rem !important;
    }

    .rg-p-l-40 {
        padding-left: 4rem !important;
    }

    .rg-m-r-40 {
        margin-right: 4rem !important;
    }

    .rg-p-r-40 {
        padding-right: 4rem !important;
    }

    .rg-m-50 {
        margin: 5rem !important;
    }

    .rg-p-50 {
        padding: 5rem !important;
    }

    .rg-m-t-50 {
        margin-top: 5rem !important;
    }

    .rg-p-t-50 {
        padding-top: 5rem !important;
    }

    .rg-m-b-50 {
        margin-bottom: 5rem !important;
    }

    .rg-p-b-50 {
        padding-bottom: 5rem !important;
    }

    .rg-m-l-50 {
        margin-left: 5rem !important;
    }

    .rg-p-l-50 {
        padding-left: 5rem !important;
    }

    .rg-m-r-50 {
        margin-right: 5rem !important;
    }

    .rg-p-r-50 {
        padding-right: 5rem !important;
    }

    .rg-m-60 {
        margin: 6rem !important;
    }

    .rg-p-60 {
        padding: 6rem !important;
    }

    .rg-m-t-60 {
        margin-top: 6rem !important;
    }

    .rg-p-t-60 {
        padding-top: 6rem !important;
    }

    .rg-m-b-60 {
        margin-bottom: 6rem !important;
    }

    .rg-p-b-60 {
        padding-bottom: 6rem !important;
    }

    .rg-m-l-60 {
        margin-left: 6rem !important;
    }

    .rg-p-l-60 {
        padding-left: 6rem !important;
    }

    .rg-m-r-60 {
        margin-right: 6rem !important;
    }

    .rg-p-r-60 {
        padding-right: 6rem !important;
    }

    .rg-m-70 {
        margin: 7rem !important;
    }

    .rg-p-70 {
        padding: 7rem !important;
    }

    .rg-m-t-70 {
        margin-top: 7rem !important;
    }

    .rg-p-t-70 {
        padding-top: 7rem !important;
    }

    .rg-m-b-70 {
        margin-bottom: 7rem !important;
    }

    .rg-p-b-70 {
        padding-bottom: 7rem !important;
    }

    .rg-m-l-70 {
        margin-left: 7rem !important;
    }

    .rg-p-l-70 {
        padding-left: 7rem !important;
    }

    .rg-m-r-70 {
        margin-right: 7rem !important;
    }

    .rg-p-r-70 {
        padding-right: 7rem !important;
    }

    .rg-m-80 {
        margin: 8rem !important;
    }

    .rg-p-80 {
        padding: 8rem !important;
    }

    .rg-m-t-80 {
        margin-top: 8rem !important;
    }

    .rg-p-t-80 {
        padding-top: 8rem !important;
    }

    .rg-m-b-80 {
        margin-bottom: 8rem !important;
    }

    .rg-p-b-80 {
        padding-bottom: 8rem !important;
    }

    .rg-m-l-80 {
        margin-left: 8rem !important;
    }

    .rg-p-l-80 {
        padding-left: 8rem !important;
    }

    .rg-m-r-80 {
        margin-right: 8rem !important;
    }

    .rg-p-r-80 {
        padding-right: 8rem !important;
    }

    .rg-m-90 {
        margin: 9rem !important;
    }

    .rg-p-90 {
        padding: 9rem !important;
    }

    .rg-m-t-90 {
        margin-top: 9rem !important;
    }

    .rg-p-t-90 {
        padding-top: 9rem !important;
    }

    .rg-m-b-90 {
        margin-bottom: 9rem !important;
    }

    .rg-p-b-90 {
        padding-bottom: 9rem !important;
    }

    .rg-m-l-90 {
        margin-left: 9rem !important;
    }

    .rg-p-l-90 {
        padding-left: 9rem !important;
    }

    .rg-m-r-90 {
        margin-right: 9rem !important;
    }

    .rg-p-r-90 {
        padding-right: 9rem !important;
    }

    .rg-m-100 {
        margin: 10rem !important;
    }

    .rg-p-100 {
        padding: 10rem !important;
    }

    .rg-m-t-100 {
        margin-top: 10rem !important;
    }

    .rg-p-t-100 {
        padding-top: 10rem !important;
    }

    .rg-m-b-100 {
        margin-bottom: 10rem !important;
    }

    .rg-p-b-100 {
        padding-bottom: 10rem !important;
    }

    .rg-m-l-100 {
        margin-left: 10rem !important;
    }

    .rg-p-l-100 {
        padding-left: 10rem !important;
    }

    .rg-m-r-100 {
        margin-right: 10rem !important;
    }

    .rg-p-r-100 {
        padding-right: 10rem !important;
    }

    .rg-m-200 {
        margin: 20rem !important;
    }

    .rg-p-200 {
        padding: 20rem !important;
    }

    .rg-m-t-200 {
        margin-top: 20rem !important;
    }

    .rg-p-t-200 {
        padding-top: 20rem !important;
    }

    .rg-m-b-200 {
        margin-bottom: 20rem !important;
    }

    .rg-p-b-200 {
        padding-bottom: 20rem !important;
    }

    .rg-m-l-200 {
        margin-left: 20rem !important;
    }

    .rg-p-l-200 {
        padding-left: 20rem !important;
    }

    .rg-m-r-200 {
        margin-right: 20rem !important;
    }

    .rg-p-r-200 {
        padding-right: 20rem !important;
    }
}

@media (max-width: 992px) {
    .rg-m-0 {
        margin: 0rem !important;
    }

    .rg-p-0 {
        padding: 0rem !important;
    }

    .rg-m-t-0 {
        margin-top: 0rem !important;
    }

    .rg-p-t-0 {
        padding-top: 0rem !important;
    }

    .rg-m-b-0 {
        margin-bottom: 0rem !important;
    }

    .rg-p-b-0 {
        padding-bottom: 0rem !important;
    }

    .rg-m-l-0 {
        margin-left: 0rem !important;
    }

    .rg-p-l-0 {
        padding-left: 0rem !important;
    }

    .rg-m-r-0 {
        margin-right: 0rem !important;
    }

    .rg-p-r-0 {
        padding-right: 0rem !important;
    }

    .rg-m-5 {
        margin: 0.375rem !important;
    }

    .rg-p-5 {
        padding: 0.375rem !important;
    }

    .rg-m-t-5 {
        margin-top: 0.375rem !important;
    }

    .rg-p-t-5 {
        padding-top: 0.375rem !important;
    }

    .rg-m-b-5 {
        margin-bottom: 0.375rem !important;
    }

    .rg-p-b-5 {
        padding-bottom: 0.375rem !important;
    }

    .rg-m-l-5 {
        margin-left: 0.375rem !important;
    }

    .rg-p-l-5 {
        padding-left: 0.375rem !important;
    }

    .rg-m-r-5 {
        margin-right: 0.375rem !important;
    }

    .rg-p-r-5 {
        padding-right: 0.375rem !important;
    }

    .rg-m-10 {
        margin: 0.75rem !important;
    }

    .rg-p-10 {
        padding: 0.75rem !important;
    }

    .rg-m-t-10 {
        margin-top: 0.75rem !important;
    }

    .rg-p-t-10 {
        padding-top: 0.75rem !important;
    }

    .rg-m-b-10 {
        margin-bottom: 0.75rem !important;
    }

    .rg-p-b-10 {
        padding-bottom: 0.75rem !important;
    }

    .rg-m-l-10 {
        margin-left: 0.75rem !important;
    }

    .rg-p-l-10 {
        padding-left: 0.75rem !important;
    }

    .rg-m-r-10 {
        margin-right: 0.75rem !important;
    }

    .rg-p-r-10 {
        padding-right: 0.75rem !important;
    }

    .rg-m-15 {
        margin: 1.125rem !important;
    }

    .rg-p-15 {
        padding: 1.125rem !important;
    }

    .rg-m-t-15 {
        margin-top: 1.125rem !important;
    }

    .rg-p-t-15 {
        padding-top: 1.125rem !important;
    }

    .rg-m-b-15 {
        margin-bottom: 1.125rem !important;
    }

    .rg-p-b-15 {
        padding-bottom: 1.125rem !important;
    }

    .rg-m-l-15 {
        margin-left: 1.125rem !important;
    }

    .rg-p-l-15 {
        padding-left: 1.125rem !important;
    }

    .rg-m-r-15 {
        margin-right: 1.125rem !important;
    }

    .rg-p-r-15 {
        padding-right: 1.125rem !important;
    }

    .rg-m-20 {
        margin: 1.5rem !important;
    }

    .rg-p-20 {
        padding: 1.5rem !important;
    }

    .rg-m-t-20 {
        margin-top: 1.5rem !important;
    }

    .rg-p-t-20 {
        padding-top: 1.5rem !important;
    }

    .rg-m-b-20 {
        margin-bottom: 1.5rem !important;
    }

    .rg-p-b-20 {
        padding-bottom: 1.5rem !important;
    }

    .rg-m-l-20 {
        margin-left: 1.5rem !important;
    }

    .rg-p-l-20 {
        padding-left: 1.5rem !important;
    }

    .rg-m-r-20 {
        margin-right: 1.5rem !important;
    }

    .rg-p-r-20 {
        padding-right: 1.5rem !important;
    }

    .rg-m-30 {
        margin: 2.25rem !important;
    }

    .rg-p-30 {
        padding: 2.25rem !important;
    }

    .rg-m-t-30 {
        margin-top: 2.25rem !important;
    }

    .rg-p-t-30 {
        padding-top: 2.25rem !important;
    }

    .rg-m-b-30 {
        margin-bottom: 2.25rem !important;
    }

    .rg-p-b-30 {
        padding-bottom: 2.25rem !important;
    }

    .rg-m-l-30 {
        margin-left: 2.25rem !important;
    }

    .rg-p-l-30 {
        padding-left: 2.25rem !important;
    }

    .rg-m-r-30 {
        margin-right: 2.25rem !important;
    }

    .rg-p-r-30 {
        padding-right: 2.25rem !important;
    }

    .rg-m-40 {
        margin: 3rem !important;
    }

    .rg-p-40 {
        padding: 3rem !important;
    }

    .rg-m-t-40 {
        margin-top: 3rem !important;
    }

    .rg-p-t-40 {
        padding-top: 3rem !important;
    }

    .rg-m-b-40 {
        margin-bottom: 3rem !important;
    }

    .rg-p-b-40 {
        padding-bottom: 3rem !important;
    }

    .rg-m-l-40 {
        margin-left: 3rem !important;
    }

    .rg-p-l-40 {
        padding-left: 3rem !important;
    }

    .rg-m-r-40 {
        margin-right: 3rem !important;
    }

    .rg-p-r-40 {
        padding-right: 3rem !important;
    }

    .rg-m-50 {
        margin: 3.75rem !important;
    }

    .rg-p-50 {
        padding: 3.75rem !important;
    }

    .rg-m-t-50 {
        margin-top: 3.75rem !important;
    }

    .rg-p-t-50 {
        padding-top: 3.75rem !important;
    }

    .rg-m-b-50 {
        margin-bottom: 3.75rem !important;
    }

    .rg-p-b-50 {
        padding-bottom: 3.75rem !important;
    }

    .rg-m-l-50 {
        margin-left: 3.75rem !important;
    }

    .rg-p-l-50 {
        padding-left: 3.75rem !important;
    }

    .rg-m-r-50 {
        margin-right: 3.75rem !important;
    }

    .rg-p-r-50 {
        padding-right: 3.75rem !important;
    }

    .rg-m-60 {
        margin: 4.5rem !important;
    }

    .rg-p-60 {
        padding: 4.5rem !important;
    }

    .rg-m-t-60 {
        margin-top: 4.5rem !important;
    }

    .rg-p-t-60 {
        padding-top: 4.5rem !important;
    }

    .rg-m-b-60 {
        margin-bottom: 4.5rem !important;
    }

    .rg-p-b-60 {
        padding-bottom: 4.5rem !important;
    }

    .rg-m-l-60 {
        margin-left: 4.5rem !important;
    }

    .rg-p-l-60 {
        padding-left: 4.5rem !important;
    }

    .rg-m-r-60 {
        margin-right: 4.5rem !important;
    }

    .rg-p-r-60 {
        padding-right: 4.5rem !important;
    }

    .rg-m-70 {
        margin: 5.25rem !important;
    }

    .rg-p-70 {
        padding: 5.25rem !important;
    }

    .rg-m-t-70 {
        margin-top: 5.25rem !important;
    }

    .rg-p-t-70 {
        padding-top: 5.25rem !important;
    }

    .rg-m-b-70 {
        margin-bottom: 5.25rem !important;
    }

    .rg-p-b-70 {
        padding-bottom: 5.25rem !important;
    }

    .rg-m-l-70 {
        margin-left: 5.25rem !important;
    }

    .rg-p-l-70 {
        padding-left: 5.25rem !important;
    }

    .rg-m-r-70 {
        margin-right: 5.25rem !important;
    }

    .rg-p-r-70 {
        padding-right: 5.25rem !important;
    }

    .rg-m-80 {
        margin: 6rem !important;
    }

    .rg-p-80 {
        padding: 6rem !important;
    }

    .rg-m-t-80 {
        margin-top: 6rem !important;
    }

    .rg-p-t-80 {
        padding-top: 6rem !important;
    }

    .rg-m-b-80 {
        margin-bottom: 6rem !important;
    }

    .rg-p-b-80 {
        padding-bottom: 6rem !important;
    }

    .rg-m-l-80 {
        margin-left: 6rem !important;
    }

    .rg-p-l-80 {
        padding-left: 6rem !important;
    }

    .rg-m-r-80 {
        margin-right: 6rem !important;
    }

    .rg-p-r-80 {
        padding-right: 6rem !important;
    }

    .rg-m-90 {
        margin: 6.75rem !important;
    }

    .rg-p-90 {
        padding: 6.75rem !important;
    }

    .rg-m-t-90 {
        margin-top: 6.75rem !important;
    }

    .rg-p-t-90 {
        padding-top: 6.75rem !important;
    }

    .rg-m-b-90 {
        margin-bottom: 6.75rem !important;
    }

    .rg-p-b-90 {
        padding-bottom: 6.75rem !important;
    }

    .rg-m-l-90 {
        margin-left: 6.75rem !important;
    }

    .rg-p-l-90 {
        padding-left: 6.75rem !important;
    }

    .rg-m-r-90 {
        margin-right: 6.75rem !important;
    }

    .rg-p-r-90 {
        padding-right: 6.75rem !important;
    }

    .rg-m-100 {
        margin: 7.5rem !important;
    }

    .rg-p-100 {
        padding: 7.5rem !important;
    }

    .rg-m-t-100 {
        margin-top: 7.5rem !important;
    }

    .rg-p-t-100 {
        padding-top: 7.5rem !important;
    }

    .rg-m-b-100 {
        margin-bottom: 7.5rem !important;
    }

    .rg-p-b-100 {
        padding-bottom: 7.5rem !important;
    }

    .rg-m-l-100 {
        margin-left: 7.5rem !important;
    }

    .rg-p-l-100 {
        padding-left: 7.5rem !important;
    }

    .rg-m-r-100 {
        margin-right: 7.5rem !important;
    }

    .rg-p-r-100 {
        padding-right: 7.5rem !important;
    }

    .rg-m-200 {
        margin: 15rem !important;
    }

    .rg-p-200 {
        padding: 15rem !important;
    }

    .rg-m-t-200 {
        margin-top: 15rem !important;
    }

    .rg-p-t-200 {
        padding-top: 15rem !important;
    }

    .rg-m-b-200 {
        margin-bottom: 15rem !important;
    }

    .rg-p-b-200 {
        padding-bottom: 15rem !important;
    }

    .rg-m-l-200 {
        margin-left: 15rem !important;
    }

    .rg-p-l-200 {
        padding-left: 15rem !important;
    }

    .rg-m-r-200 {
        margin-right: 15rem !important;
    }

    .rg-p-r-200 {
        padding-right: 15rem !important;
    }
}

@media (max-width: 576px) {
    .rg-m-0 {
        margin: 0rem !important;
    }

    .rg-p-0 {
        padding: 0rem !important;
    }

    .rg-m-t-0 {
        margin-top: 0rem !important;
    }

    .rg-p-t-0 {
        padding-top: 0rem !important;
    }

    .rg-m-b-0 {
        margin-bottom: 0rem !important;
    }

    .rg-p-b-0 {
        padding-bottom: 0rem !important;
    }

    .rg-m-l-0 {
        margin-left: 0rem !important;
    }

    .rg-p-l-0 {
        padding-left: 0rem !important;
    }

    .rg-m-r-0 {
        margin-right: 0rem !important;
    }

    .rg-p-r-0 {
        padding-right: 0rem !important;
    }

    .rg-m-5 {
        margin: 0.25rem !important;
    }

    .rg-p-5 {
        padding: 0.25rem !important;
    }

    .rg-m-t-5 {
        margin-top: 0.25rem !important;
    }

    .rg-p-t-5 {
        padding-top: 0.25rem !important;
    }

    .rg-m-b-5 {
        margin-bottom: 0.25rem !important;
    }

    .rg-p-b-5 {
        padding-bottom: 0.25rem !important;
    }

    .rg-m-l-5 {
        margin-left: 0.25rem !important;
    }

    .rg-p-l-5 {
        padding-left: 0.25rem !important;
    }

    .rg-m-r-5 {
        margin-right: 0.25rem !important;
    }

    .rg-p-r-5 {
        padding-right: 0.25rem !important;
    }

    .rg-m-10 {
        margin: 0.5rem !important;
    }

    .rg-p-10 {
        padding: 0.5rem !important;
    }

    .rg-m-t-10 {
        margin-top: 0.5rem !important;
    }

    .rg-p-t-10 {
        padding-top: 0.5rem !important;
    }

    .rg-m-b-10 {
        margin-bottom: 0.5rem !important;
    }

    .rg-p-b-10 {
        padding-bottom: 0.5rem !important;
    }

    .rg-m-l-10 {
        margin-left: 0.5rem !important;
    }

    .rg-p-l-10 {
        padding-left: 0.5rem !important;
    }

    .rg-m-r-10 {
        margin-right: 0.5rem !important;
    }

    .rg-p-r-10 {
        padding-right: 0.5rem !important;
    }

    .rg-m-15 {
        margin: 0.75rem !important;
    }

    .rg-p-15 {
        padding: 0.75rem !important;
    }

    .rg-m-t-15 {
        margin-top: 0.75rem !important;
    }

    .rg-p-t-15 {
        padding-top: 0.75rem !important;
    }

    .rg-m-b-15 {
        margin-bottom: 0.75rem !important;
    }

    .rg-p-b-15 {
        padding-bottom: 0.75rem !important;
    }

    .rg-m-l-15 {
        margin-left: 0.75rem !important;
    }

    .rg-p-l-15 {
        padding-left: 0.75rem !important;
    }

    .rg-m-r-15 {
        margin-right: 0.75rem !important;
    }

    .rg-p-r-15 {
        padding-right: 0.75rem !important;
    }

    .rg-m-20 {
        margin: 1rem !important;
    }

    .rg-p-20 {
        padding: 1rem !important;
    }

    .rg-m-t-20 {
        margin-top: 1rem !important;
    }

    .rg-p-t-20 {
        padding-top: 1rem !important;
    }

    .rg-m-b-20 {
        margin-bottom: 1rem !important;
    }

    .rg-p-b-20 {
        padding-bottom: 1rem !important;
    }

    .rg-m-l-20 {
        margin-left: 1rem !important;
    }

    .rg-p-l-20 {
        padding-left: 1rem !important;
    }

    .rg-m-r-20 {
        margin-right: 1rem !important;
    }

    .rg-p-r-20 {
        padding-right: 1rem !important;
    }

    .rg-m-30 {
        margin: 1.5rem !important;
    }

    .rg-p-30 {
        padding: 1.5rem !important;
    }

    .rg-m-t-30 {
        margin-top: 1.5rem !important;
    }

    .rg-p-t-30 {
        padding-top: 1.5rem !important;
    }

    .rg-m-b-30 {
        margin-bottom: 1.5rem !important;
    }

    .rg-p-b-30 {
        padding-bottom: 1.5rem !important;
    }

    .rg-m-l-30 {
        margin-left: 1.5rem !important;
    }

    .rg-p-l-30 {
        padding-left: 1.5rem !important;
    }

    .rg-m-r-30 {
        margin-right: 1.5rem !important;
    }

    .rg-p-r-30 {
        padding-right: 1.5rem !important;
    }

    .rg-m-40 {
        margin: 2rem !important;
    }

    .rg-p-40 {
        padding: 2rem !important;
    }

    .rg-m-t-40 {
        margin-top: 2rem !important;
    }

    .rg-p-t-40 {
        padding-top: 2rem !important;
    }

    .rg-m-b-40 {
        margin-bottom: 2rem !important;
    }

    .rg-p-b-40 {
        padding-bottom: 2rem !important;
    }

    .rg-m-l-40 {
        margin-left: 2rem !important;
    }

    .rg-p-l-40 {
        padding-left: 2rem !important;
    }

    .rg-m-r-40 {
        margin-right: 2rem !important;
    }

    .rg-p-r-40 {
        padding-right: 2rem !important;
    }

    .rg-m-50 {
        margin: 2.5rem !important;
    }

    .rg-p-50 {
        padding: 2.5rem !important;
    }

    .rg-m-t-50 {
        margin-top: 2.5rem !important;
    }

    .rg-p-t-50 {
        padding-top: 2.5rem !important;
    }

    .rg-m-b-50 {
        margin-bottom: 2.5rem !important;
    }

    .rg-p-b-50 {
        padding-bottom: 2.5rem !important;
    }

    .rg-m-l-50 {
        margin-left: 2.5rem !important;
    }

    .rg-p-l-50 {
        padding-left: 2.5rem !important;
    }

    .rg-m-r-50 {
        margin-right: 2.5rem !important;
    }

    .rg-p-r-50 {
        padding-right: 2.5rem !important;
    }

    .rg-m-60 {
        margin: 3rem !important;
    }

    .rg-p-60 {
        padding: 3rem !important;
    }

    .rg-m-t-60 {
        margin-top: 3rem !important;
    }

    .rg-p-t-60 {
        padding-top: 3rem !important;
    }

    .rg-m-b-60 {
        margin-bottom: 3rem !important;
    }

    .rg-p-b-60 {
        padding-bottom: 3rem !important;
    }

    .rg-m-l-60 {
        margin-left: 3rem !important;
    }

    .rg-p-l-60 {
        padding-left: 3rem !important;
    }

    .rg-m-r-60 {
        margin-right: 3rem !important;
    }

    .rg-p-r-60 {
        padding-right: 3rem !important;
    }

    .rg-m-70 {
        margin: 3.5rem !important;
    }

    .rg-p-70 {
        padding: 3.5rem !important;
    }

    .rg-m-t-70 {
        margin-top: 3.5rem !important;
    }

    .rg-p-t-70 {
        padding-top: 3.5rem !important;
    }

    .rg-m-b-70 {
        margin-bottom: 3.5rem !important;
    }

    .rg-p-b-70 {
        padding-bottom: 3.5rem !important;
    }

    .rg-m-l-70 {
        margin-left: 3.5rem !important;
    }

    .rg-p-l-70 {
        padding-left: 3.5rem !important;
    }

    .rg-m-r-70 {
        margin-right: 3.5rem !important;
    }

    .rg-p-r-70 {
        padding-right: 3.5rem !important;
    }

    .rg-m-80 {
        margin: 4rem !important;
    }

    .rg-p-80 {
        padding: 4rem !important;
    }

    .rg-m-t-80 {
        margin-top: 4rem !important;
    }

    .rg-p-t-80 {
        padding-top: 4rem !important;
    }

    .rg-m-b-80 {
        margin-bottom: 4rem !important;
    }

    .rg-p-b-80 {
        padding-bottom: 4rem !important;
    }

    .rg-m-l-80 {
        margin-left: 4rem !important;
    }

    .rg-p-l-80 {
        padding-left: 4rem !important;
    }

    .rg-m-r-80 {
        margin-right: 4rem !important;
    }

    .rg-p-r-80 {
        padding-right: 4rem !important;
    }

    .rg-m-90 {
        margin: 4.5rem !important;
    }

    .rg-p-90 {
        padding: 4.5rem !important;
    }

    .rg-m-t-90 {
        margin-top: 4.5rem !important;
    }

    .rg-p-t-90 {
        padding-top: 4.5rem !important;
    }

    .rg-m-b-90 {
        margin-bottom: 4.5rem !important;
    }

    .rg-p-b-90 {
        padding-bottom: 4.5rem !important;
    }

    .rg-m-l-90 {
        margin-left: 4.5rem !important;
    }

    .rg-p-l-90 {
        padding-left: 4.5rem !important;
    }

    .rg-m-r-90 {
        margin-right: 4.5rem !important;
    }

    .rg-p-r-90 {
        padding-right: 4.5rem !important;
    }

    .rg-m-100 {
        margin: 5rem !important;
    }

    .rg-p-100 {
        padding: 5rem !important;
    }

    .rg-m-t-100 {
        margin-top: 5rem !important;
    }

    .rg-p-t-100 {
        padding-top: 5rem !important;
    }

    .rg-m-b-100 {
        margin-bottom: 5rem !important;
    }

    .rg-p-b-100 {
        padding-bottom: 5rem !important;
    }

    .rg-m-l-100 {
        margin-left: 5rem !important;
    }

    .rg-p-l-100 {
        padding-left: 5rem !important;
    }

    .rg-m-r-100 {
        margin-right: 5rem !important;
    }

    .rg-p-r-100 {
        padding-right: 5rem !important;
    }

    .rg-m-200 {
        margin: 10rem !important;
    }

    .rg-p-200 {
        padding: 10rem !important;
    }

    .rg-m-t-200 {
        margin-top: 10rem !important;
    }

    .rg-p-t-200 {
        padding-top: 10rem !important;
    }

    .rg-m-b-200 {
        margin-bottom: 10rem !important;
    }

    .rg-p-b-200 {
        padding-bottom: 10rem !important;
    }

    .rg-m-l-200 {
        margin-left: 10rem !important;
    }

    .rg-p-l-200 {
        padding-left: 10rem !important;
    }

    .rg-m-r-200 {
        margin-right: 10rem !important;
    }

    .rg-p-r-200 {
        padding-right: 10rem !important;
    }
}

html {
    font-size: 13px;
}

body {
    font-family: "Inter var", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji" !important;
    font-size: 16px;
    font-size: 1.14286rem;
    font-weight: 400;
    color: #141727;
}

a {
    color: #0066ff;
    text-decoration: none;
    outline: none;
    font-size: 16px;
    font-size: 1.14286rem;
}

    a:active, a:hover, a:focus {
        color: #0052cc;
        text-decoration: none;
        outline: none;
    }

p {
    font-size: 16px;
    font-size: 1.14286rem;
}

h1, .h1 {
    font-family: "Inter var", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji" !important;
    font-weight: 600 !important;
    margin-bottom: 0.5rem;
    font-size: 2.25rem !important;
}

h2, .h2 {
    font-family: "Inter var", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji" !important;
    font-weight: 600 !important;
    margin-bottom: 0.5rem;
    font-size: 2rem !important;
}

h3, .h3 {
    font-family: "Inter var", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji" !important;
    font-weight: 600 !important;
    margin-bottom: 0.5rem;
    font-size: 1.75rem !important;
}

h4, .h4 {
    font-family: "Inter var", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji" !important;
    font-weight: 600 !important;
    margin-bottom: 0.5rem;
    font-size: 1.5rem !important;
}

h5, .h5 {
    font-family: "Inter var", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji" !important;
    font-weight: 600 !important;
    margin-bottom: 0.5rem;
    font-size: 1.25rem !important;
}

h6, .h6 {
    font-family: "Inter var", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji" !important;
    font-weight: 600 !important;
    margin-bottom: 0.5rem;
    font-size: 1rem !important;
}

.title-extra-large {
    font-weight: 700 !important;
    font-size: 3rem !important;
}

.title-large {
    font-weight: 700 !important;
    font-size: 2.75rem !important;
}

.title-medium {
    font-weight: 700 !important;
    font-size: 2.5rem !important;
}

.title-regula {
    font-weight: 700 !important;
    font-size: 1.625rem !important;
}

.title-small {
    font-weight: 700 !important;
    font-size: 1.375rem !important;
}

.title-extra-small {
    font-weight: 700 !important;
    font-size: 1.125rem !important;
}

.text-extra-large {
    font-size: 20px !important;
}

.text-large {
    font-size: 18px !important;
}

.text-medium {
    font-size: 16px !important;
}

.text-small {
    font-size: 14px !important;
}

.text-primary {
    color: #59388b !important;
}

.text-secondary {
    color: #7688aa !important;
}

.text-light {
    color: #e6e8ec !important;
}

.text-dark {
    color: #171e34 !important;
}

.text-error {
    color: #ff4444 !important;
}

.text-warning {
    color: #ff9f40 !important;
}

.text-info {
    color: #0066ff !important;
}

.text-success {
    color: #54ca62 !important;
}

.text-inverse {
    color: #ffffff !important;
}

.link {
    color: #0066ff;
}

.text-weight-thin {
    font-weight: 200 !important;
}

.text-weight-light {
    font-weight: 300 !important;
}

.text-weight-normal {
    font-weight: 400 !important;
}

.text-weight-strong {
    font-weight: 500 !important;
}

.text-weight-bold {
    font-weight: 600 !important;
}

.text-weight-bolder {
    font-weight: 700 !important;
}

.ellipsis {
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    max-width: 100%;
}

::selection {
    background: #59388b;
    /* WebKit/Blink Browsers */
    color: #e6e8ec;
}

::-moz-selection {
    background: #59388b;
    /* Gecko Browsers */
    color: #e6e8ec;
}

blockquote {
    border-left: solid 4px #59388b;
    padding: 2rem 2rem;
}

.material-icons.primary {
    color: #59388b !important;
}

    .material-icons.primary.link {
        cursor: pointer;
    }

        .material-icons.primary.link:hover {
            -webkit-transition: 0, all, 0.5s, ease;
            -moz-transition: 0, all, 0.5s, ease;
            -ms-transition: 0, all, 0.5s, ease;
            -o-transition: 0, all, 0.5s, ease;
            transition: 0, all, 0.5s, ease;
            border-radius: 0.25rem;
            background: #ded4ee;
        }

.material-icons.secondary {
    color: #7688aa !important;
}

    .material-icons.secondary.link {
        cursor: pointer;
    }

        .material-icons.secondary.link:hover {
            -webkit-transition: 0, all, 0.5s, ease;
            -moz-transition: 0, all, 0.5s, ease;
            -ms-transition: 0, all, 0.5s, ease;
            -o-transition: 0, all, 0.5s, ease;
            transition: 0, all, 0.5s, ease;
            border-radius: 0.25rem;
            background: white;
        }

.material-icons.light {
    color: #e6e8ec !important;
}

    .material-icons.light.link {
        cursor: pointer;
    }

        .material-icons.light.link:hover {
            -webkit-transition: 0, all, 0.5s, ease;
            -moz-transition: 0, all, 0.5s, ease;
            -ms-transition: 0, all, 0.5s, ease;
            -o-transition: 0, all, 0.5s, ease;
            transition: 0, all, 0.5s, ease;
            border-radius: 0.25rem;
            background: white;
        }

.material-icons.dark {
    color: #171e34 !important;
}

    .material-icons.dark.link {
        cursor: pointer;
    }

        .material-icons.dark.link:hover {
            -webkit-transition: 0, all, 0.5s, ease;
            -moz-transition: 0, all, 0.5s, ease;
            -ms-transition: 0, all, 0.5s, ease;
            -o-transition: 0, all, 0.5s, ease;
            transition: 0, all, 0.5s, ease;
            border-radius: 0.25rem;
            background: #8293c8;
        }

.material-icons.error {
    color: #ff4444 !important;
}

    .material-icons.error.link {
        cursor: pointer;
    }

        .material-icons.error.link:hover {
            -webkit-transition: 0, all, 0.5s, ease;
            -moz-transition: 0, all, 0.5s, ease;
            -ms-transition: 0, all, 0.5s, ease;
            -o-transition: 0, all, 0.5s, ease;
            transition: 0, all, 0.5s, ease;
            border-radius: 0.25rem;
            background: white;
        }

.material-icons.warning {
    color: #ff9f40 !important;
}

    .material-icons.warning.link {
        cursor: pointer;
    }

        .material-icons.warning.link:hover {
            -webkit-transition: 0, all, 0.5s, ease;
            -moz-transition: 0, all, 0.5s, ease;
            -ms-transition: 0, all, 0.5s, ease;
            -o-transition: 0, all, 0.5s, ease;
            transition: 0, all, 0.5s, ease;
            border-radius: 0.25rem;
            background: white;
        }

.material-icons.info {
    color: #0066ff !important;
}

    .material-icons.info.link {
        cursor: pointer;
    }

        .material-icons.info.link:hover {
            -webkit-transition: 0, all, 0.5s, ease;
            -moz-transition: 0, all, 0.5s, ease;
            -ms-transition: 0, all, 0.5s, ease;
            -o-transition: 0, all, 0.5s, ease;
            transition: 0, all, 0.5s, ease;
            border-radius: 0.25rem;
            background: white;
        }

.material-icons.success {
    color: #54ca62 !important;
}

    .material-icons.success.link {
        cursor: pointer;
    }

        .material-icons.success.link:hover {
            -webkit-transition: 0, all, 0.5s, ease;
            -moz-transition: 0, all, 0.5s, ease;
            -ms-transition: 0, all, 0.5s, ease;
            -o-transition: 0, all, 0.5s, ease;
            transition: 0, all, 0.5s, ease;
            border-radius: 0.25rem;
            background: white;
        }

.material-icons.small {
    font-size: 0.75rem;
}

.material-icons.medium {
    font-size: 1.5rem;
}

.material-icons.large {
    font-size: 2.5rem;
}

.fab, .fas, .fa {
    font-size: 1.5rem;
}

.media-image.full-width {
    height: auto;
    width: 100%;
}

.media-image.user-extra-small {
    height: 32px;
    width: 32px;
}

.media-image.user-small {
    height: 48px;
    width: 48px;
}

.media-image.user-medium {
    height: 64px;
    width: 64px;
}

.media-image.user-large {
    height: 128px;
    width: 128px;
}

.media-image.user-extra-large {
    height: 256px;
    width: 256px;
}

.media-image.blog-extra-small {
    width: 80px;
    height: 45px;
}

.media-image.blog-small {
    width: 160px;
    height: 90px;
}

.media-image.blog-medium {
    width: 320px;
    height: 180px;
}

.media-image.blog-large {
    width: 480px;
    height: 270px;
}

.media-image.blog-extra-large {
    width: 800px;
    height: 450px;
}

.media-image.rectangle {
    border-radius: 0;
}

.media-image.rounded-corner {
    border-radius: 0.25rem;
}

.media-image.round {
    border-radius: 100px;
}

.linked-users {
    display: flex;
    align-items: center;
}

    .linked-users h4 {
        margin-left: 0.6rem;
        margin-top: 0.3rem;
    }

    .linked-users img {
        width: 2.8rem;
        height: 2.8rem;
        border-radius: 100%;
        border: solid 1px #e6e8ec;
    }

        .linked-users img + img {
            margin-left: -1.5em;
        }

/*******************************************************/
/* product listing page */
/*******************************************************/
.card-filters .toggle-filters {
    position: absolute;
    right: 0.6rem;
    top: 1.1rem;
}

.card-filters > header {
    margin-bottom: 0px;
}

.card-filters .accordion .card .card-header {
    padding: 0rem;
    border-bottom: none;
    height: auto;
}

    .card-filters .accordion .card .card-header button {
        line-height: 2.2rem;
    }

        .card-filters .accordion .card .card-header button .material-icons {
            line-height: 2.2rem;
        }

.card-filters .accordion .card .card-body {
    padding: 0.25rem;
}

.card-filters .rating > div {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
}

    .card-filters .rating > div span.material-icons {
        font-size: 18px;
        font-size: 1.28571rem;
        color: #ff4444;
    }

.sort-container select {
    margin-right: 0.6rem;
    width: auto;
    vertical-align: top;
    display: inline-block;
}

.sort-container .result-count {
    vertical-align: middle;
    color: #ff9f40;
    line-height: 2.5rem;
}

/*******************************************************/
/* product Details page */
/*******************************************************/
.product-details-card {
    padding: 2rem;
    display: flex;
}

    .product-details-card .product-description {
        flex: 1;
        padding-right: 2rem;
    }

        .product-details-card .product-description .rating {
            color: red;
            font-size: 1rem;
            margin-bottom: 1rem;
        }

            .product-details-card .product-description .rating .material-icons {
                font-size: 1.2rem;
            }

        .product-details-card .product-description .discription-details h5 {
            margin: 0;
        }

        .product-details-card .product-description .product-preview-tiles img {
            width: 100%;
            border: 3px solid #e6e8ec;
            border-radius: 0.25rem;
        }

    .product-details-card .product-image {
        flex: 1;
        border-radius: 0.25rem;
        border: 3px solid #e6e8ec;
        display: flex;
        align-items: center;
    }

        .product-details-card .product-image img {
            width: 100%;
        }

    .product-details-card .product-inventry {
        flex: 1;
        padding-left: 2rem;
    }

        .product-details-card .product-inventry .product-price {
            display: flex;
            align-items: baseline;
        }

            .product-details-card .product-inventry .product-price * {
                margin-right: 0.5rem;
            }

        .product-details-card .product-inventry .product-sizes > div {
            display: flex;
            align-items: center;
        }

        .product-details-card .product-inventry .product-sizes .size-chart {
            margin-left: 1rem;
        }

        .product-details-card .product-inventry .product-sizes .sizes {
            justify-content: space-between;
        }

            .product-details-card .product-inventry .product-sizes .sizes .btn-capsule {
                width: 3.5rem;
                height: 3.5rem;
                padding: 0;
            }

/*******************************************************/
/* product Checkout page */
/*******************************************************/
.product-checkout {
    display: flex;
    align-items: center;
}

    .product-checkout .product-img {
        flex: 1;
        padding-right: 1rem;
    }

        .product-checkout .product-img img {
            width: 100%;
        }

    .product-checkout .product-description {
        flex: 2;
        padding-right: 1rem;
        padding-left: 1rem;
        overflow: hidden;
    }

        .product-checkout .product-description h3, .product-checkout .product-description h6 {
            margin: 0;
        }

        .product-checkout .product-description .select-quantity {
            display: flex;
            align-items: center;
        }

            .product-checkout .product-description .select-quantity input {
                max-width: 8rem;
                margin: 0 0.5rem;
            }

    .product-checkout .product-price {
        flex: 1;
        padding-left: 1rem;
        border-left: solid 1px #e6e8ec;
    }

        .product-checkout .product-price h6 {
            display: inline-block;
        }

        .product-checkout .product-price i {
            font-size: 1rem;
        }

        .product-checkout .product-price .action button {
            margin: 0;
            width: 100%;
        }

.billing-summary .coupon-section {
    display: flex;
    align-items: center;
}

    .billing-summary .coupon-section .coupon-code {
        padding-left: 1rem;
    }

        .billing-summary .coupon-section .coupon-code * {
            margin: 0;
        }

.billing-summary .price-breakdown h6 {
    margin-bottom: 1rem;
}

.billing-summary .price-breakdown .price {
    display: flex;
    font-size: 12px;
    font-size: 0.85714rem;
    font-weight: 500;
}

    .billing-summary .price-breakdown .price span {
        margin-left: auto;
    }

.billing-summary .total {
    display: flex;
}

    .billing-summary .total span {
        margin-left: auto;
        font-weight: 500;
    }

.billing-summary button {
    width: 100%;
}

/*******************************************************/
/* product Create and Edit page */
/*******************************************************/
.product-photo {
    display: flex;
}

    .product-photo img {
        margin-right: 1rem;
    }

/*******************************************************/
/* Responsive Media Queries */
/*******************************************************/
@media (max-width: 992px) {
    .rg-card-simple.equal-height.card-filters {
        position: fixed;
        overflow: auto;
        z-index: 1;
        left: 0;
        top: 70px;
        bottom: 0;
        height: auto;
        margin-bottom: 0;
        transform: translateX(-100%);
        -webkit-transition: 0.1s, all, 0.5s, ease-in-out;
        -moz-transition: 0.1s, all, 0.5s, ease-in-out;
        -ms-transition: 0.1s, all, 0.5s, ease-in-out;
        -o-transition: 0.1s, all, 0.5s, ease-in-out;
        transition: 0.1s, all, 0.5s, ease-in-out;
    }

        .rg-card-simple.equal-height.card-filters.show {
            transform: translateX(0%);
        }

    .product-details-card {
        display: block;
    }

        .product-details-card .product-image {
            margin: 2rem 0;
        }

        .product-details-card .product-inventry {
            padding-left: 0;
        }
}

@media (max-width: 767px) {
    .product-checkout {
        display: block;
    }

        .product-checkout .product-price {
            padding-left: 0;
            border-left: 0;
        }
}

@media (min-width: 992px) {
    .card-filters .toggle-filters {
        display: none;
    }
}

@media (max-width: 568px) {
    .sort-container select {
        width: calc(100% - 89px);
    }
}

.email-inbox .email-filters .toggle-email-filters {
    float: right;
    display: none;
}

.email-inbox .email-filters button {
    width: 100%;
}

.email-inbox .email-container .email-actions {
    padding-bottom: 1rem;
    border-bottom: solid 1px #e6e8ec;
    display: flex;
    align-items: center;
}

    .email-inbox .email-container .email-actions .inline-actions {
        display: flex;
    }

        .email-inbox .email-container .email-actions .inline-actions .custom-control {
            padding-top: 0.3rem;
            padding-bottom: 0.3rem;
        }

        .email-inbox .email-container .email-actions .inline-actions .actions span {
            color: #5d5d6d;
            margin: 0 0.4rem;
            padding: 0.3rem;
        }

    .email-inbox .email-container .email-actions .pagination-info {
        margin-left: auto;
    }

.email-inbox .email-container .email-list .email-header {
    display: flex;
    padding: 1rem 0px;
}

    .email-inbox .email-container .email-list .email-header img {
        margin-right: 0.5rem;
    }

    .email-inbox .email-container .email-list .email-header p {
        width: calc(100% - 350px);
        color: #7688aa;
        margin: 0;
    }

    .email-inbox .email-container .email-list .email-header .user-name {
        width: 10rem;
        color: #141727;
        margin: 0;
    }

    .email-inbox .email-container .email-list .email-header .time {
        width: 80px;
        text-align: right;
        color: #7688aa;
        font-size: 12px;
        font-size: 0.85714rem;
    }

    .email-inbox .email-container .email-list .email-header span.material-icons {
        color: #5d5d6d;
        font-size: 20px;
        margin: 3px 5px;
        padding: 0 5px;
    }

body.modal-open {
    overflow: auto !important;
    padding: 0 !important;
}

.rg-modal.email-modal {
    position: fixed;
    left: auto;
    top: auto;
    right: 30px;
    bottom: 30px;
    height: calc(100% - 120px);
    width: 600px;
    margin: 0;
    overflow: visible;
}

    .rg-modal.email-modal.show {
        display: flex;
    }

    .rg-modal.email-modal .modal-dialog {
        display: flex;
        height: 100%;
        margin: 0;
        width: 100%;
        padding: 0;
        max-width: inherit;
    }

        .rg-modal.email-modal .modal-dialog .modal-content {
            margin: 0;
            padding: 0 1.2rem;
        }

            .rg-modal.email-modal .modal-dialog .modal-content .modal-body {
                padding: 0;
            }

            .rg-modal.email-modal .modal-dialog .modal-content .email-to {
                display: flex;
                border-bottom: solid 1px #e6e8ec;
                padding: 1rem;
            }

                .rg-modal.email-modal .modal-dialog .modal-content .email-to .email-to-tags {
                    margin-right: 1rem;
                    margin-left: 1rem;
                }

                .rg-modal.email-modal .modal-dialog .modal-content .email-to .email-to-tools {
                    margin-left: auto;
                }

            .rg-modal.email-modal .modal-dialog .modal-content .email-subject {
                border-bottom: solid 1px #e6e8ec;
            }

                .rg-modal.email-modal .modal-dialog .modal-content .email-subject .form-group {
                    margin: 0;
                }

                    .rg-modal.email-modal .modal-dialog .modal-content .email-subject .form-group .form-control {
                        border: 0;
                        height: 3rem;
                    }

                        .rg-modal.email-modal .modal-dialog .modal-content .email-subject .form-group .form-control:focus {
                            box-shadow: none;
                        }

            .rg-modal.email-modal .modal-dialog .modal-content .email-body {
                padding-top: 1rem;
                padding-bottom: 1rem;
            }

                .rg-modal.email-modal .modal-dialog .modal-content .email-body .form-group {
                    margin: 0;
                }

                    .rg-modal.email-modal .modal-dialog .modal-content .email-body .form-group .form-control {
                        border: 0;
                        max-height: 320px;
                    }

                        .rg-modal.email-modal .modal-dialog .modal-content .email-body .form-group .form-control:focus {
                            box-shadow: none;
                        }

/*******************************************************/
/* Responsive Media Queries */
/*******************************************************/
@media (max-width: 992px) {
    .rg-card-simple.equal-height.email-filters {
        position: fixed;
        overflow: auto;
        z-index: 1;
        left: 0;
        top: 60px;
        bottom: 0;
        height: auto;
        margin-bottom: 0;
        transform: translateX(-100%);
        -webkit-transition: 0.1s, all, 0.5s, ease-in-out;
        -moz-transition: 0.1s, all, 0.5s, ease-in-out;
        -ms-transition: 0.1s, all, 0.5s, ease-in-out;
        -o-transition: 0.1s, all, 0.5s, ease-in-out;
        transition: 0.1s, all, 0.5s, ease-in-out;
    }

        .rg-card-simple.equal-height.email-filters.show {
            transform: translateX(0%);
        }

        .rg-card-simple.equal-height.email-filters .toggle-email-filters {
            display: block;
        }

    .rg-modal.email-modal .modal-dialog {
        position: relative;
        right: auto;
        bottom: auto;
        height: auto;
        width: auto;
        display: flex;
        margin: 1.75rem auto 0;
    }
}

@media (max-width: 568px) {
    .email-inbox .email-container .email-actions {
        display: block;
    }

    .email-inbox .email-container .email-list {
        overflow: auto;
    }

        .email-inbox .email-container .email-list .email-header h6 {
            min-width: 6rem;
        }

        .email-inbox .email-container .email-list .email-header p {
            min-width: 20rem;
        }

        .email-inbox .email-container .email-list .email-header .time {
            min-width: 6rem;
        }
}

.rg-chat-box header .chat-header {
    display: flex;
    width: 100%;
    border-bottom: solid 1px #e6e8ec;
}

    .rg-chat-box header .chat-header .inline-actions {
        display: flex;
        align-items: center;
    }

        .rg-chat-box header .chat-header .inline-actions span {
            padding: 0.3rem;
        }

    .rg-chat-box header .chat-header .heading {
        display: flex;
    }

        .rg-chat-box header .chat-header .heading .user-pic {
            margin-right: 1rem;
        }

        .rg-chat-box header .chat-header .heading .user-details h6 {
            margin-bottom: 0;
        }

        .rg-chat-box header .chat-header .heading .user-details p {
            color: #5d5d6d;
        }

.rg-chat-box header .rg-user-list .rg-user-list-item {
    border-bottom: solid 1px #e6e8ec;
}

    .rg-chat-box header .rg-user-list .rg-user-list-item .user-details {
        width: calc(100% - 120px);
        min-width: calc(100% - 120px);
    }

.rg-chat-box header .user-action {
    color: #5d5d6d;
}

.rg-chat-box section {
    height: calc(100% - 77px);
}

    .rg-chat-box section .conversation-container {
        height: calc(100% - 84px);
        max-height: 800px;
        padding: 20px 0px;
    }

        .rg-chat-box section .conversation-container .conversation {
            display: flex;
            margin-bottom: 1rem;
        }

            .rg-chat-box section .conversation-container .conversation.send-to {
                justify-content: flex-end;
            }

                .rg-chat-box section .conversation-container .conversation.send-to .message {
                    margin-right: 0.5rem;
                    background-color: #0066ff;
                    border: 1px solid #0066ff;
                    color: #ffffff;
                }

            .rg-chat-box section .conversation-container .conversation .message {
                margin-left: 0.5rem;
                background-color: #e6e8ec;
                border: 1px solid #ffffff;
                border-radius: 20px;
                width: 70%;
                padding: 0.2rem 1rem;
                color: #141727;
            }

                .rg-chat-box section .conversation-container .conversation .message p {
                    margin: 0px;
                }

    .rg-chat-box section .send-text input {
        height: 54px;
        border-right: none;
    }

    .rg-chat-box section .send-text .input-group-append {
        border: 1px solid #e6e8ec;
        border-left: none;
        padding: 5px;
        border-top-right-radius: 0.25rem;
        border-bottom-right-radius: 0.25rem;
    }

        .rg-chat-box section .send-text .input-group-append span {
            padding: 6px;
            color: #5d5d6d;
            cursor: pointer;
        }

            .rg-chat-box section .send-text .input-group-append span:hover {
                -webkit-transition: 0, all, 0.5s, ease;
                -moz-transition: 0, all, 0.5s, ease;
                -ms-transition: 0, all, 0.5s, ease;
                -o-transition: 0, all, 0.5s, ease;
                transition: 0, all, 0.5s, ease;
                color: #2e2e36;
            }

            .rg-chat-box section .send-text .input-group-append span.send-btn {
                border-radius: 50%;
                color: #ffffff;
                background-color: #7688aa;
                font-size: 1.3rem;
                padding: 10px 10px 10px 12px;
                cursor: pointer;
            }

                .rg-chat-box section .send-text .input-group-append span.send-btn:hover {
                    -webkit-transition: 0, all, 0.5s, ease;
                    -moz-transition: 0, all, 0.5s, ease;
                    -ms-transition: 0, all, 0.5s, ease;
                    -o-transition: 0, all, 0.5s, ease;
                    transition: 0, all, 0.5s, ease;
                    background-color: #475673;
                }

.fc .fc-toolbar .fc-button-primary {
    background-color: #59388b;
    border-color: #59388b;
}

    .fc .fc-toolbar .fc-button-primary:not(:disabled).fc-button-active {
        background-color: #422967;
        border-color: #422967;
    }

/*******************************************************/
/* MEDIAQUERIES */
/*******************************************************/
@media (max-width: 666px) {
    .fc-toolbar.fc-header-toolbar {
        display: block;
    }
}

.kanban {
    display: flex;
    overflow-x: auto;
    padding: 0 10px;
    overflow-y: hidden;
}

    .kanban .bucket {
        min-width: 340px;
        margin-right: 2rem;
    }

        .kanban .bucket > header {
            margin-bottom: 1rem;
        }

            .kanban .bucket > header .heading span {
                font-size: 12px;
                font-size: 0.85714rem;
                margin-right: 0.5rem;
            }

        .kanban .bucket > section {
            height: 100%;
        }

        .kanban .bucket .card.rg-card-action {
            box-shadow: none;
            border: solid 1px #e6e8ec;
        }

        .kanban .bucket .card .inline-actions span {
            font-size: 14px;
            font-size: 1rem;
            color: #5d5d6d;
        }

        .kanban .bucket .card > header .heading .tag-colors {
            font-size: 10px;
            font-size: 0.71429rem;
            padding-bottom: 0.8rem;
        }

            .kanban .bucket .card > header .heading .tag-colors span {
                width: 4rem;
                height: 0.3rem;
                display: inline-block;
            }

                .kanban .bucket .card > header .heading .tag-colors span.primary {
                    background-color: #59388b;
                }

                .kanban .bucket .card > header .heading .tag-colors span.secondary {
                    background-color: #7688aa;
                }

                .kanban .bucket .card > header .heading .tag-colors span.light {
                    background-color: #e6e8ec;
                }

                .kanban .bucket .card > header .heading .tag-colors span.dark {
                    background-color: #171e34;
                }

                .kanban .bucket .card > header .heading .tag-colors span.error {
                    background-color: #ff4444;
                }

                .kanban .bucket .card > header .heading .tag-colors span.warning {
                    background-color: #ff9f40;
                }

                .kanban .bucket .card > header .heading .tag-colors span.info {
                    background-color: #0066ff;
                }

                .kanban .bucket .card > header .heading .tag-colors span.success {
                    background-color: #54ca62;
                }

        .kanban .bucket .card section .due-date-container {
            color: #5d5d6d;
            padding: 1rem 0;
        }

            .kanban .bucket .card section .due-date-container .due-date span {
                background-color: #e6e8ec;
                display: flex;
                border-radius: 0.25rem;
                padding: 0.1rem;
                align-items: center;
            }

            .kanban .bucket .card section .due-date-container .attachment-comment-count {
                padding-right: 0rem;
            }

                .kanban .bucket .card section .due-date-container .attachment-comment-count > span {
                    margin-right: 0.8rem;
                }

                    .kanban .bucket .card section .due-date-container .attachment-comment-count > span:nth-child(1) span {
                        padding-right: 0rem;
                    }

                .kanban .bucket .card section .due-date-container .attachment-comment-count span {
                    display: flex;
                    width: 3.4rem;
                    float: left;
                    padding-right: 0.3rem;
                }

        .kanban .bucket .card section .assignees .add-assignees {
            height: 2.6rem;
            width: 2.6rem;
            border: 1px dashed #e6e8ec;
            padding: 0.5rem;
            color: #5d5d6d;
        }

        .kanban .bucket .card section .assignees .btn {
            box-shadow: none;
        }

/*******************************************************/
/* Users default list page */
/*******************************************************/
.user-default-list {
    display: flex;
}

    .user-default-list .left-pane {
        flex: 1;
        background-color: #7688aa;
        display: flex;
        align-items: center;
        justify-content: center;
        border-top-left-radius: 0.25rem;
        border-bottom-left-radius: 0.25rem;
    }

    .user-default-list .right-pane {
        flex: 5;
        padding: 2rem 2rem;
    }

    .user-default-list header {
        margin-bottom: 1.5rem;
    }

        .user-default-list header .user-info-container {
            display: flex;
            border-bottom: 1px solid #e6e8ec;
            width: 100%;
        }

            .user-default-list header .user-info-container .user-info {
                margin-bottom: 1rem;
            }

                .user-default-list header .user-info-container .user-info h6 {
                    margin-bottom: 0;
                }

            .user-default-list header .user-info-container .user-details {
                display: flex;
                align-items: center;
            }

    .user-default-list section .attribute-container {
        display: flex;
    }

        .user-default-list section .attribute-container .attribute {
            display: flex;
            align-items: center;
        }

            .user-default-list section .attribute-container .attribute > span {
                margin-top: 10px;
                margin-right: 1rem;
                font-size: 3em;
                color: #b5bfd1;
            }

            .user-default-list section .attribute-container .attribute div h4 {
                margin-bottom: 0;
            }

            .user-default-list section .attribute-container .attribute div span {
                font-size: 14px;
                font-size: 1rem;
                color: #5d5d6d;
            }

/*******************************************************/
/* Users cards page */
/*******************************************************/
.user-card header {
    position: relative;
    min-height: 12rem;
}

    .user-card header .user-wall-image {
        position: absolute;
        z-index: 0;
        left: 0;
        right: 0;
        top: 0;
        bottom: 0;
        overflow: hidden;
        border-radius: 0.25rem;
    }

        .user-card header .user-wall-image img {
            width: 100%;
            height: auto;
        }

    .user-card header .user-image {
        position: absolute;
        bottom: 0;
        left: 50%;
        z-index: 1;
        margin: auto;
        transform: translate(-50%, 50%);
    }

.user-card section .social-media {
    border-top: dashed 1px #e6e8ec;
    border-bottom: dashed 1px #e6e8ec;
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
    display: flex;
    justify-content: center;
}

.user-card section .user-card-action button {
    width: 100%;
}

/*******************************************************/
/* Users data table page */
/*******************************************************/
.user-data-table .company-info {
    display: flex;
}

    .user-data-table .company-info img {
        margin-right: 0.5rem;
    }

    .user-data-table .company-info p {
        margin-bottom: 0;
    }

    .user-data-table .company-info .name {
        margin-bottom: 0;
    }

    .user-data-table .company-info .location {
        color: #5d5d6d;
    }

.user-data-table table .rg-status-badge {
    width: 6.5rem;
    display: inline-block;
    text-align: center;
}

.user-data-table table.dataTable thead th.select-all-container {
    padding-left: 0.6rem;
}

/*******************************************************/
/* Users Create and edit page */
/*******************************************************/
.profile-photo {
    display: flex;
}

    .profile-photo img {
        margin-right: 1rem;
    }

/*******************************************************/
/* media queries */
/*******************************************************/
@media (max-width: 568px) {
    .user-default-list header .heading {
        display: block;
    }

    .user-card .heading {
        display: block;
    }

        .user-card .heading .user-info {
            margin-left: 0;
        }
}

.light-navigation ul.sidenav-collapsible {
    margin-left: -1rem;
}

    .light-navigation ul.sidenav-collapsible li {
        padding-left: 1rem;
        margin: 0.2rem 0;
        -webkit-transition: 0, all, 0.5s, ease;
        -moz-transition: 0, all, 0.5s, ease;
        -ms-transition: 0, all, 0.5s, ease;
        -o-transition: 0, all, 0.5s, ease;
        transition: 0, all, 0.5s, ease;
    }

        .light-navigation ul.sidenav-collapsible li.active {
            background: #e6e8ec;
            border-top-right-radius: 3rem;
            border-bottom-right-radius: 3rem;
        }

            .light-navigation ul.sidenav-collapsible li.active a {
                color: #0066ff;
            }

        .light-navigation ul.sidenav-collapsible li:hover {
            background: #f4f5f7;
            border-top-right-radius: 3rem;
            border-bottom-right-radius: 3rem;
        }

    .light-navigation ul.sidenav-collapsible a {
        display: flex;
        padding: 0.5rem 0;
        color: #7688aa;
    }

.rg-breadcrumb {
    display: flex;
    margin-bottom: 1.9rem;
    align-items: center;
}

    .rg-breadcrumb .toggle-page-nav-button {
        margin-top: 0.4rem;
        margin-right: 1rem;
    }

    .rg-breadcrumb h4 {
        padding-right: 1rem;
        margin-right: 1rem;
        margin-bottom: 0;
        border-right: solid 1px #59388b;
    }

    .rg-breadcrumb .breadcrumb {
        padding: 0;
        margin-bottom: 0;
        display: flex;
        align-items: center;
    }

        .rg-breadcrumb .breadcrumb .breadcrumb-item-first + .breadcrumb-item::before {
            content: "";
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: #141727;
            display: inline-block;
            margin: 0 0.75rem 0 0;
        }

        .rg-breadcrumb .breadcrumb .breadcrumb-item + .breadcrumb-item + .breadcrumb-item::before {
            content: '>';
        }

        .rg-breadcrumb .breadcrumb .breadcrumb-item-first a {
            color: #141727;
        }

        .rg-breadcrumb .breadcrumb .breadcrumb-item.active a {
            color: #7688aa;
        }

/*******************************************************/
/* MEDIAQUERIES */
/*******************************************************/
@media (min-width: 992px) {
    .rg-breadcrumb .toggle-page-nav-button {
        display: none;
    }
}

@media (max-width: 992px) {
    .rg-breadcrumb .breadcrumb {
        display: none;
    }
}

.rg-card-simple {
    background: #ffffff;
    box-shadow: 0 0 6px 0 rgba(0, 0, 0, 0.1);
    border: none;
    margin-bottom: 2rem;
    border-radius: 0.25rem;
}

    .rg-card-simple.no-header > section {
        padding: 2rem 2rem;
    }

    .rg-card-simple > header {
        margin-bottom: 2rem;
        padding: 2rem 2rem 0;
    }

        .rg-card-simple > header:before {
            content: "";
            display: table;
            clear: both;
        }

        .rg-card-simple > header:after {
            content: "";
            display: table;
            clear: both;
        }

        .rg-card-simple > header h1, .rg-card-simple > header h2, .rg-card-simple > header h3, .rg-card-simple > header h4, .rg-card-simple > header h5, .rg-card-simple > header h6 {
            margin-bottom: 0;
            color: #141727;
        }

            .rg-card-simple > header h1 + span, .rg-card-simple > header h2 + span, .rg-card-simple > header h3 + span, .rg-card-simple > header h4 + span, .rg-card-simple > header h5 + span, .rg-card-simple > header h6 + span {
                font-size: 14px;
                font-size: 1rem;
                color: #5d5d6d;
            }

    .rg-card-simple > section {
        padding: 0 2rem 2rem;
    }

    .rg-card-simple.equal-height {
        height: calc(100% - 2rem);
    }

    .rg-card-simple > footer {
        display: flex;
        padding: 0 2rem 2rem;
    }

.background-pattern-01, .rg-card-statistics .statistics-data:before {
    background: url(../images/background-pattern-01.png) repeat left top;
}

.background-pattern-02 {
    background: url(../images/background-pattern-02.png) no-repeat center center;
}

.rg-card-tabs {
    background: #ffffff;
    box-shadow: 0 0 6px 0 rgba(0, 0, 0, 0.1);
    border: none;
    margin-bottom: 2rem;
    border-radius: 0.25rem;
}

    .rg-card-tabs.no-header > section {
        padding: 2rem 2rem;
    }

    .rg-card-tabs > header {
        margin-bottom: 2rem;
        padding: 2rem 2rem 0;
    }

        .rg-card-tabs > header:before {
            content: "";
            display: table;
            clear: both;
        }

        .rg-card-tabs > header:after {
            content: "";
            display: table;
            clear: both;
        }

        .rg-card-tabs > header h1, .rg-card-tabs > header h2, .rg-card-tabs > header h3, .rg-card-tabs > header h4, .rg-card-tabs > header h5, .rg-card-tabs > header h6 {
            margin-bottom: 0;
            color: #141727;
        }

            .rg-card-tabs > header h1 + span, .rg-card-tabs > header h2 + span, .rg-card-tabs > header h3 + span, .rg-card-tabs > header h4 + span, .rg-card-tabs > header h5 + span, .rg-card-tabs > header h6 + span {
                font-size: 14px;
                font-size: 1rem;
                color: #5d5d6d;
            }

    .rg-card-tabs > section {
        padding: 0 2rem 2rem;
    }

    .rg-card-tabs.equal-height {
        height: calc(100% - 2rem);
    }

    .rg-card-tabs > footer {
        display: flex;
        padding: 0 2rem 2rem;
    }

    .rg-card-tabs header .heading {
        float: left;
    }

    .rg-card-tabs header .inline-tabs {
        float: right;
    }

        .rg-card-tabs header .inline-tabs ul {
            margin: 0;
        }

            .rg-card-tabs header .inline-tabs ul li {
                display: inline-block;
            }

                .rg-card-tabs header .inline-tabs ul li a {
                    color: #7d87bd;
                    font-size: 12px;
                    font-size: 0.85714rem;
                    font-weight: 500;
                    padding: 0.3rem 0.8rem;
                }

                    .rg-card-tabs header .inline-tabs ul li a.active {
                        background: #cce0ff;
                        color: #0066ff;
                        border-radius: 0;
                    }

.rg-card-action {
    background: #ffffff;
    box-shadow: 0 0 6px 0 rgba(0, 0, 0, 0.1);
    border: none;
    margin-bottom: 2rem;
    border-radius: 0.25rem;
}

    .rg-card-action.no-header > section {
        padding: 2rem 2rem;
    }

    .rg-card-action > header {
        margin-bottom: 2rem;
        padding: 2rem 2rem 0;
    }

        .rg-card-action > header:before {
            content: "";
            display: table;
            clear: both;
        }

        .rg-card-action > header:after {
            content: "";
            display: table;
            clear: both;
        }

        .rg-card-action > header h1, .rg-card-action > header h2, .rg-card-action > header h3, .rg-card-action > header h4, .rg-card-action > header h5, .rg-card-action > header h6 {
            margin-bottom: 0;
            color: #141727;
        }

            .rg-card-action > header h1 + span, .rg-card-action > header h2 + span, .rg-card-action > header h3 + span, .rg-card-action > header h4 + span, .rg-card-action > header h5 + span, .rg-card-action > header h6 + span {
                font-size: 14px;
                font-size: 1rem;
                color: #5d5d6d;
            }

    .rg-card-action > section {
        padding: 0 2rem 2rem;
    }

    .rg-card-action.equal-height {
        height: calc(100% - 2rem);
    }

    .rg-card-action > footer {
        display: flex;
        padding: 0 2rem 2rem;
    }

    .rg-card-action header {
        display: flex;
        flex-wrap: wrap;
    }

        .rg-card-action header .inline-actions {
            position: relative;
            margin-left: auto;
        }

            .rg-card-action header .inline-actions span {
                cursor: pointer;
            }

.rg-card-highlight-header {
    background: #ffffff;
    box-shadow: 0 0 6px 0 rgba(0, 0, 0, 0.1);
    border: none;
    margin-bottom: 2rem;
    border-radius: 0.25rem;
    padding: 0;
}

    .rg-card-highlight-header.no-header > section {
        padding: 2rem 2rem;
    }

    .rg-card-highlight-header > header {
        margin-bottom: 2rem;
        padding: 2rem 2rem 0;
    }

        .rg-card-highlight-header > header:before {
            content: "";
            display: table;
            clear: both;
        }

        .rg-card-highlight-header > header:after {
            content: "";
            display: table;
            clear: both;
        }

        .rg-card-highlight-header > header h1, .rg-card-highlight-header > header h2, .rg-card-highlight-header > header h3, .rg-card-highlight-header > header h4, .rg-card-highlight-header > header h5, .rg-card-highlight-header > header h6 {
            margin-bottom: 0;
            color: #141727;
        }

            .rg-card-highlight-header > header h1 + span, .rg-card-highlight-header > header h2 + span, .rg-card-highlight-header > header h3 + span, .rg-card-highlight-header > header h4 + span, .rg-card-highlight-header > header h5 + span, .rg-card-highlight-header > header h6 + span {
                font-size: 14px;
                font-size: 1rem;
                color: #5d5d6d;
            }

    .rg-card-highlight-header > section {
        padding: 0 2rem 2rem;
    }

    .rg-card-highlight-header.equal-height {
        height: calc(100% - 2rem);
    }

    .rg-card-highlight-header > footer {
        display: flex;
        padding: 0 2rem 2rem;
    }

    .rg-card-highlight-header header {
        position: relative;
        border-top-left-radius: 0.25rem;
        border-top-right-radius: 0.25rem;
        min-height: 12rem;
    }

        .rg-card-highlight-header header h1, .rg-card-highlight-header header h2, .rg-card-highlight-header header h3, .rg-card-highlight-header header h4, .rg-card-highlight-header header h5, .rg-card-highlight-header header h6 {
            color: #ffffff;
        }

            .rg-card-highlight-header header h1 + span, .rg-card-highlight-header header h2 + span, .rg-card-highlight-header header h3 + span, .rg-card-highlight-header header h4 + span, .rg-card-highlight-header header h5 + span, .rg-card-highlight-header header h6 + span {
                color: #ffffff;
            }

        .rg-card-highlight-header header .inline-actions span {
            color: #ffffff;
        }

        .rg-card-highlight-header header .heightlight-content {
            margin: 2rem 0 0;
            flex-basis: 100%;
        }

            .rg-card-highlight-header header .heightlight-content:before {
                content: "";
                display: table;
                clear: both;
            }

            .rg-card-highlight-header header .heightlight-content:after {
                content: "";
                display: table;
                clear: both;
            }

            .rg-card-highlight-header header .heightlight-content h1, .rg-card-highlight-header header .heightlight-content h2, .rg-card-highlight-header header .heightlight-content h3, .rg-card-highlight-header header .heightlight-content h4, .rg-card-highlight-header header .heightlight-content h5, .rg-card-highlight-header header .heightlight-content h6 {
                color: #ffffff;
                float: none;
            }

                .rg-card-highlight-header header .heightlight-content h1 span, .rg-card-highlight-header header .heightlight-content h2 span, .rg-card-highlight-header header .heightlight-content h3 span, .rg-card-highlight-header header .heightlight-content h4 span, .rg-card-highlight-header header .heightlight-content h5 span, .rg-card-highlight-header header .heightlight-content h6 span {
                    padding: 0 0 0 0.7rem;
                }

            .rg-card-highlight-header header .heightlight-content.floating-highlight-content {
                position: absolute;
                left: 2rem;
                bottom: 0;
            }

    .rg-card-highlight-header.heightlight-primary header {
        background: #59388b;
    }

    .rg-card-highlight-header.heightlight-secondary header {
        background: #7688aa;
    }

    .rg-card-highlight-header.heightlight-light header {
        background: #e6e8ec;
    }

    .rg-card-highlight-header.heightlight-dark header {
        background: #171e34;
    }

    .rg-card-highlight-header.heightlight-error header {
        background: #ff4444;
    }

    .rg-card-highlight-header.heightlight-warning header {
        background: #ff9f40;
    }

    .rg-card-highlight-header.heightlight-info header {
        background: #0066ff;
    }

    .rg-card-highlight-header.heightlight-success header {
        background: #54ca62;
    }

.rg-card-solid-skin {
    background: #ffffff;
    box-shadow: 0 0 6px 0 rgba(0, 0, 0, 0.1);
    border: none;
    margin-bottom: 2rem;
    border-radius: 0.25rem;
}

    .rg-card-solid-skin.no-header > section {
        padding: 2rem 2rem;
    }

    .rg-card-solid-skin > header {
        margin-bottom: 2rem;
        padding: 2rem 2rem 0;
    }

        .rg-card-solid-skin > header:before {
            content: "";
            display: table;
            clear: both;
        }

        .rg-card-solid-skin > header:after {
            content: "";
            display: table;
            clear: both;
        }

        .rg-card-solid-skin > header h1, .rg-card-solid-skin > header h2, .rg-card-solid-skin > header h3, .rg-card-solid-skin > header h4, .rg-card-solid-skin > header h5, .rg-card-solid-skin > header h6 {
            margin-bottom: 0;
            color: #141727;
        }

            .rg-card-solid-skin > header h1 + span, .rg-card-solid-skin > header h2 + span, .rg-card-solid-skin > header h3 + span, .rg-card-solid-skin > header h4 + span, .rg-card-solid-skin > header h5 + span, .rg-card-solid-skin > header h6 + span {
                font-size: 14px;
                font-size: 1rem;
                color: #5d5d6d;
            }

    .rg-card-solid-skin > section {
        padding: 0 2rem 2rem;
    }

    .rg-card-solid-skin.equal-height {
        height: calc(100% - 2rem);
    }

    .rg-card-solid-skin > footer {
        display: flex;
        padding: 0 2rem 2rem;
    }

    .rg-card-solid-skin header h1, .rg-card-solid-skin header h2, .rg-card-solid-skin header h3, .rg-card-solid-skin header h4, .rg-card-solid-skin header h5, .rg-card-solid-skin header h6 {
        color: #ffffff;
    }

        .rg-card-solid-skin header h1 + span, .rg-card-solid-skin header h2 + span, .rg-card-solid-skin header h3 + span, .rg-card-solid-skin header h4 + span, .rg-card-solid-skin header h5 + span, .rg-card-solid-skin header h6 + span {
            color: #ffffff;
        }

    .rg-card-solid-skin.skin-primary {
        background: #59388b;
        color: #ffffff;
        border-color: #4d3179;
    }

    .rg-card-solid-skin.skin-secondary {
        background: #7688aa;
        color: #ffffff;
        border-color: #667aa0;
    }

    .rg-card-solid-skin.skin-light {
        background: #e6e8ec;
        color: #ffffff;
        border-color: #d8dbe1;
    }

    .rg-card-solid-skin.skin-dark {
        background: #171e34;
        color: #ffffff;
        border-color: #0f1422;
    }

    .rg-card-solid-skin.skin-error {
        background: #ff4444;
        color: #ffffff;
        border-color: #ff2b2b;
    }

    .rg-card-solid-skin.skin-warning {
        background: #ff9f40;
        color: #ffffff;
        border-color: #ff9227;
    }

    .rg-card-solid-skin.skin-info {
        background: #0066ff;
        color: #ffffff;
        border-color: #005ce6;
    }

    .rg-card-solid-skin.skin-success {
        background: #54ca62;
        color: #ffffff;
        border-color: #41c450;
    }

.rg-card-header-image {
    background: #ffffff;
    box-shadow: 0 0 6px 0 rgba(0, 0, 0, 0.1);
    border: none;
    margin-bottom: 2rem;
    border-radius: 0.25rem;
}

    .rg-card-header-image.no-header > section {
        padding: 2rem 2rem;
    }

    .rg-card-header-image > header {
        margin-bottom: 2rem;
        padding: 2rem 2rem 0;
    }

        .rg-card-header-image > header:before {
            content: "";
            display: table;
            clear: both;
        }

        .rg-card-header-image > header:after {
            content: "";
            display: table;
            clear: both;
        }

        .rg-card-header-image > header h1, .rg-card-header-image > header h2, .rg-card-header-image > header h3, .rg-card-header-image > header h4, .rg-card-header-image > header h5, .rg-card-header-image > header h6 {
            margin-bottom: 0;
            color: #141727;
        }

            .rg-card-header-image > header h1 + span, .rg-card-header-image > header h2 + span, .rg-card-header-image > header h3 + span, .rg-card-header-image > header h4 + span, .rg-card-header-image > header h5 + span, .rg-card-header-image > header h6 + span {
                font-size: 14px;
                font-size: 1rem;
                color: #5d5d6d;
            }

    .rg-card-header-image > section {
        padding: 0 2rem 2rem;
    }

    .rg-card-header-image.equal-height {
        height: calc(100% - 2rem);
    }

    .rg-card-header-image > footer {
        display: flex;
        padding: 0 2rem 2rem;
    }

    .rg-card-header-image header {
        position: relative;
        overflow: hidden;
        border-top-left-radius: 0.25rem;
        border-top-right-radius: 0.25rem;
        padding: 0;
    }

        .rg-card-header-image header img {
            position: relative;
        }

        .rg-card-header-image header .heading {
            position: absolute;
            left: 0;
            bottom: 0;
            padding: 2rem 2rem;
            width: 100%;
            background-color: rgba(0, 0, 0, 0.3);
        }

            .rg-card-header-image header .heading h1, .rg-card-header-image header .heading h2, .rg-card-header-image header .heading h3, .rg-card-header-image header .heading h4, .rg-card-header-image header .heading h5, .rg-card-header-image header .heading h6 {
                color: #ffffff;
            }

                .rg-card-header-image header .heading h1 + span, .rg-card-header-image header .heading h2 + span, .rg-card-header-image header .heading h3 + span, .rg-card-header-image header .heading h4 + span, .rg-card-header-image header .heading h5 + span, .rg-card-header-image header .heading h6 + span {
                    color: #ffffff;
                }

.rg-card-social-media {
    background: #ffffff;
    box-shadow: 0 0 6px 0 rgba(0, 0, 0, 0.1);
    border: none;
    margin-bottom: 2rem;
    border-radius: 0.25rem;
}

    .rg-card-social-media.no-header > section {
        padding: 2rem 2rem;
    }

    .rg-card-social-media > header {
        margin-bottom: 2rem;
        padding: 2rem 2rem 0;
    }

        .rg-card-social-media > header:before {
            content: "";
            display: table;
            clear: both;
        }

        .rg-card-social-media > header:after {
            content: "";
            display: table;
            clear: both;
        }

        .rg-card-social-media > header h1, .rg-card-social-media > header h2, .rg-card-social-media > header h3, .rg-card-social-media > header h4, .rg-card-social-media > header h5, .rg-card-social-media > header h6 {
            margin-bottom: 0;
            color: #141727;
        }

            .rg-card-social-media > header h1 + span, .rg-card-social-media > header h2 + span, .rg-card-social-media > header h3 + span, .rg-card-social-media > header h4 + span, .rg-card-social-media > header h5 + span, .rg-card-social-media > header h6 + span {
                font-size: 14px;
                font-size: 1rem;
                color: #5d5d6d;
            }

    .rg-card-social-media > section {
        padding: 0 2rem 2rem;
    }

    .rg-card-social-media.equal-height {
        height: calc(100% - 2rem);
    }

    .rg-card-social-media > footer {
        display: flex;
        padding: 0 2rem 2rem;
    }

    .rg-card-social-media.light {
        background: #ffffff;
    }

    .rg-card-social-media.dark {
        background: #171e34;
        color: #ffffff;
    }

        .rg-card-social-media.dark header .heading h1, .rg-card-social-media.dark header .heading h2, .rg-card-social-media.dark header .heading h3, .rg-card-social-media.dark header .heading h4, .rg-card-social-media.dark header .heading h5, .rg-card-social-media.dark header .heading h6 {
            color: #ffffff;
        }

    .rg-card-social-media .user-details {
        margin-bottom: 1.5rem;
    }

        .rg-card-social-media .user-details .user-pic {
            box-shadow: 0 0 1rem 0.3rem rgba(0, 0, 0, 0.1);
            border-radius: 5rem;
            width: 10rem;
            height: 10rem;
            display: inline-block;
            overflow: hidden;
            margin: 1.5rem 0 0.5rem;
        }

            .rg-card-social-media .user-details .user-pic img {
                max-width: 10rem;
            }

    .rg-card-social-media .action {
        margin-bottom: 2rem;
    }

        .rg-card-social-media .action button {
            min-width: 8rem;
        }

.rg-card-ecommerce {
    background: #ffffff;
    box-shadow: 0 0 6px 0 rgba(0, 0, 0, 0.1);
    border: none;
    margin-bottom: 2rem;
    border-radius: 0.25rem;
}

    .rg-card-ecommerce.no-header > section {
        padding: 2rem 2rem;
    }

    .rg-card-ecommerce > header {
        margin-bottom: 2rem;
        padding: 2rem 2rem 0;
    }

        .rg-card-ecommerce > header:before {
            content: "";
            display: table;
            clear: both;
        }

        .rg-card-ecommerce > header:after {
            content: "";
            display: table;
            clear: both;
        }

        .rg-card-ecommerce > header h1, .rg-card-ecommerce > header h2, .rg-card-ecommerce > header h3, .rg-card-ecommerce > header h4, .rg-card-ecommerce > header h5, .rg-card-ecommerce > header h6 {
            margin-bottom: 0;
            color: #141727;
        }

            .rg-card-ecommerce > header h1 + span, .rg-card-ecommerce > header h2 + span, .rg-card-ecommerce > header h3 + span, .rg-card-ecommerce > header h4 + span, .rg-card-ecommerce > header h5 + span, .rg-card-ecommerce > header h6 + span {
                font-size: 14px;
                font-size: 1rem;
                color: #5d5d6d;
            }

    .rg-card-ecommerce > section {
        padding: 0 2rem 2rem;
    }

    .rg-card-ecommerce.equal-height {
        height: calc(100% - 2rem);
    }

    .rg-card-ecommerce > footer {
        display: flex;
        padding: 0 2rem 2rem;
    }

    .rg-card-ecommerce .product-details .product-pic img {
        max-width: 100%;
    }

    .rg-card-ecommerce .product-details .product-heading {
        margin-top: 2rem;
        display: flex;
    }

        .rg-card-ecommerce .product-details .product-heading .rating .material-icons {
            letter-spacing: -3px;
            font-size: 20px;
            font-size: 1.42857rem;
        }

    .rg-card-ecommerce .product-details h4 {
        margin: 0;
        font-size: 16px;
        font-size: 1.14286rem;
    }

    .rg-card-ecommerce .product-details p {
        font-size: 14px;
        font-size: 1rem;
        overflow: hidden;
        text-overflow: ellipsis;
        height: 1.5rem;
        white-space: pre;
    }

.rg-card-data-tile {
    display: flex;
    margin-bottom: 2rem;
}

    .rg-card-data-tile .tile-icon {
        width: 4rem;
        height: 4rem;
        border-radius: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

        .rg-card-data-tile .tile-icon.primary {
            background: #59388b;
        }

        .rg-card-data-tile .tile-icon.secondary {
            background: #7688aa;
        }

        .rg-card-data-tile .tile-icon.light {
            background: #e6e8ec;
        }

        .rg-card-data-tile .tile-icon.dark {
            background: #171e34;
        }

        .rg-card-data-tile .tile-icon.error {
            background: #ff4444;
        }

        .rg-card-data-tile .tile-icon.warning {
            background: #ff9f40;
        }

        .rg-card-data-tile .tile-icon.info {
            background: #0066ff;
        }

        .rg-card-data-tile .tile-icon.success {
            background: #54ca62;
        }

        .rg-card-data-tile .tile-icon span {
            color: #ffffff;
        }

    .rg-card-data-tile .tile-data {
        display: flex;
        width: calc(100% - 4rem);
        padding-left: 0.8rem;
        flex-direction: column;
    }

        .rg-card-data-tile .tile-data h2 {
            margin: 0;
        }

        .rg-card-data-tile .tile-data span {
            color: #5d5d6d;
        }

.rg-card-statistics {
    background: #ffffff;
    box-shadow: 0 0 6px 0 rgba(0, 0, 0, 0.1);
    border: none;
    margin-bottom: 2rem;
    border-radius: 0.25rem;
}

    .rg-card-statistics.no-header > section {
        padding: 2rem 2rem;
    }

    .rg-card-statistics > header {
        margin-bottom: 2rem;
        padding: 2rem 2rem 0;
    }

        .rg-card-statistics > header:before {
            content: "";
            display: table;
            clear: both;
        }

        .rg-card-statistics > header:after {
            content: "";
            display: table;
            clear: both;
        }

        .rg-card-statistics > header h1, .rg-card-statistics > header h2, .rg-card-statistics > header h3, .rg-card-statistics > header h4, .rg-card-statistics > header h5, .rg-card-statistics > header h6 {
            margin-bottom: 0;
            color: #141727;
        }

            .rg-card-statistics > header h1 + span, .rg-card-statistics > header h2 + span, .rg-card-statistics > header h3 + span, .rg-card-statistics > header h4 + span, .rg-card-statistics > header h5 + span, .rg-card-statistics > header h6 + span {
                font-size: 14px;
                font-size: 1rem;
                color: #5d5d6d;
            }

    .rg-card-statistics > section {
        padding: 0 2rem 2rem;
    }

    .rg-card-statistics.equal-height {
        height: calc(100% - 2rem);
    }

    .rg-card-statistics > footer {
        display: flex;
        padding: 0 2rem 2rem;
    }

    .rg-card-statistics.highlight-primary {
        border-bottom: solid 4px #59388b;
    }

    .rg-card-statistics.highlight-secondary {
        border-bottom: solid 4px #7688aa;
    }

    .rg-card-statistics.highlight-light {
        border-bottom: solid 4px #e6e8ec;
    }

    .rg-card-statistics.highlight-dark {
        border-bottom: solid 4px #171e34;
    }

    .rg-card-statistics.highlight-error {
        border-bottom: solid 4px #ff4444;
    }

    .rg-card-statistics.highlight-warning {
        border-bottom: solid 4px #ff9f40;
    }

    .rg-card-statistics.highlight-info {
        border-bottom: solid 4px #0066ff;
    }

    .rg-card-statistics.highlight-success {
        border-bottom: solid 4px #54ca62;
    }

    .rg-card-statistics .statistics-data {
        height: 120px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        position: relative;
    }

        .rg-card-statistics .statistics-data > * {
            position: relative;
        }

        .rg-card-statistics .statistics-data:before {
            content: "";
            display: block;
            left: 0;
            top: 0;
            bottom: 0;
            width: 80%;
            position: absolute;
            z-index: 0;
        }

.rg-card-chart-elated {
    background: #ffffff;
    box-shadow: 0 0 6px 0 rgba(0, 0, 0, 0.1);
    border: none;
    margin-bottom: 2rem;
    border-radius: 0.25rem;
    margin-top: 30px;
}

    .rg-card-chart-elated.no-header > section {
        padding: 2rem 2rem;
    }

    .rg-card-chart-elated > header {
        margin-bottom: 2rem;
        padding: 2rem 2rem 0;
    }

        .rg-card-chart-elated > header:before {
            content: "";
            display: table;
            clear: both;
        }

        .rg-card-chart-elated > header:after {
            content: "";
            display: table;
            clear: both;
        }

        .rg-card-chart-elated > header h1, .rg-card-chart-elated > header h2, .rg-card-chart-elated > header h3, .rg-card-chart-elated > header h4, .rg-card-chart-elated > header h5, .rg-card-chart-elated > header h6 {
            margin-bottom: 0;
            color: #141727;
        }

            .rg-card-chart-elated > header h1 + span, .rg-card-chart-elated > header h2 + span, .rg-card-chart-elated > header h3 + span, .rg-card-chart-elated > header h4 + span, .rg-card-chart-elated > header h5 + span, .rg-card-chart-elated > header h6 + span {
                font-size: 14px;
                font-size: 1rem;
                color: #5d5d6d;
            }

    .rg-card-chart-elated > section {
        padding: 0 2rem 2rem;
    }

    .rg-card-chart-elated.equal-height {
        height: calc(100% - 2rem);
    }

    .rg-card-chart-elated > footer {
        display: flex;
        padding: 0 2rem 2rem;
    }

    .rg-card-chart-elated .elated-chart {
        background: #ffffff;
        box-shadow: 0 0 6px 0 rgba(0, 0, 0, 0.1);
        border: none;
        margin-bottom: 2rem;
        border-radius: 0.25rem;
        margin-top: -45px;
        height: 200px;
        width: 100%;
    }

        .rg-card-chart-elated .elated-chart.no-header > section {
            padding: 2rem 2rem;
        }

        .rg-card-chart-elated .elated-chart > header {
            margin-bottom: 2rem;
            padding: 2rem 2rem 0;
        }

            .rg-card-chart-elated .elated-chart > header:before {
                content: "";
                display: table;
                clear: both;
            }

            .rg-card-chart-elated .elated-chart > header:after {
                content: "";
                display: table;
                clear: both;
            }

            .rg-card-chart-elated .elated-chart > header h1, .rg-card-chart-elated .elated-chart > header h2, .rg-card-chart-elated .elated-chart > header h3, .rg-card-chart-elated .elated-chart > header h4, .rg-card-chart-elated .elated-chart > header h5, .rg-card-chart-elated .elated-chart > header h6 {
                margin-bottom: 0;
                color: #141727;
            }

                .rg-card-chart-elated .elated-chart > header h1 + span, .rg-card-chart-elated .elated-chart > header h2 + span, .rg-card-chart-elated .elated-chart > header h3 + span, .rg-card-chart-elated .elated-chart > header h4 + span, .rg-card-chart-elated .elated-chart > header h5 + span, .rg-card-chart-elated .elated-chart > header h6 + span {
                    font-size: 14px;
                    font-size: 1rem;
                    color: #5d5d6d;
                }

        .rg-card-chart-elated .elated-chart > section {
            padding: 0 2rem 2rem;
        }

        .rg-card-chart-elated .elated-chart.equal-height {
            height: calc(100% - 2rem);
        }

        .rg-card-chart-elated .elated-chart > footer {
            display: flex;
            padding: 0 2rem 2rem;
        }

    .rg-card-chart-elated .time {
        border-top: 1px solid #e6e8ec;
    }

    .rg-card-chart-elated .stat-blocks .text-block {
        padding: 0.5rem;
        flex: 1;
        border: 1px solid #e6e8ec;
    }

        .rg-card-chart-elated .stat-blocks .text-block .icon .fa, .rg-card-chart-elated .stat-blocks .text-block .icon .fab, .rg-card-chart-elated .stat-blocks .text-block .icon .fas {
            font-size: 2.5rem;
        }

.rg-card-numbers {
    background: #ffffff;
    box-shadow: 0 0 6px 0 rgba(0, 0, 0, 0.1);
    border: none;
    margin-bottom: 2rem;
    border-radius: 0.25rem;
}

    .rg-card-numbers.no-header > section {
        padding: 2rem 2rem;
    }

    .rg-card-numbers > header {
        margin-bottom: 2rem;
        padding: 2rem 2rem 0;
    }

        .rg-card-numbers > header:before {
            content: "";
            display: table;
            clear: both;
        }

        .rg-card-numbers > header:after {
            content: "";
            display: table;
            clear: both;
        }

        .rg-card-numbers > header h1, .rg-card-numbers > header h2, .rg-card-numbers > header h3, .rg-card-numbers > header h4, .rg-card-numbers > header h5, .rg-card-numbers > header h6 {
            margin-bottom: 0;
            color: #141727;
        }

            .rg-card-numbers > header h1 + span, .rg-card-numbers > header h2 + span, .rg-card-numbers > header h3 + span, .rg-card-numbers > header h4 + span, .rg-card-numbers > header h5 + span, .rg-card-numbers > header h6 + span {
                font-size: 14px;
                font-size: 1rem;
                color: #5d5d6d;
            }

    .rg-card-numbers > section {
        padding: 0 2rem 2rem;
    }

    .rg-card-numbers.equal-height {
        height: calc(100% - 2rem);
    }

    .rg-card-numbers > footer {
        display: flex;
        padding: 0 2rem 2rem;
    }

    .rg-card-numbers .rg-badge.rg-badge-xl {
        padding: 1rem;
        font-size: 2rem;
    }

.form-control {
    height: auto;
    color: #5d5d6d;
    border-color: #e6e8ec;
    background-color: #fff;
}

    .form-control::-webkit-input-placeholder {
        color: #5d5d6d;
    }

    .form-control::-moz-placeholder {
        color: #5d5d6d;
    }

    .form-control:-ms-input-placeholder {
        color: #5d5d6d;
    }

    .form-control:-moz-placeholder {
        color: #5d5d6d;
    }

    .form-control:focus {
        border-color: #c3b0df;
        box-shadow: 0 0 0 0.2rem rgba(0, 0, 0, 0.1);
    }

    .form-control:disabled {
        background: #e6e8ec;
        opacity: 0.3;
    }

.custom-control-label::before {
    border-color: #c9cdd6;
    background-color: #fff;
}

.custom-file-label {
    background: #fff;
    color: #5d5d6d;
    border-color: #e6e8ec;
}

    .custom-file-label:after {
        background: #fff;
        border-left: 1px solid #e6e8ec;
    }

.custom-select {
    color: #5d5d6d;
    border-color: #e6e8ec;
    background-color: #fff;
}

.custom-control-input:focus ~ .custom-control-label::before {
    border-color: #c3b0df;
    box-shadow: 0 0 0 0.2rem rgba(0, 0, 0, 0.1);
}

.form-control-rectangle {
    border-radius: 0;
}

.form-control-rounded {
    border-radius: 0.25rem;
}

.form-control-capsule {
    border-radius: 100px;
}

.form-control-sm {
    padding: 0.25rem 0.5rem;
}

.form-control-small {
    padding: 0.25rem 0.5rem;
}

.form-control-lg {
    padding: 0.65625rem 1.3125rem;
}

.form-control-large {
    padding: 0.65625rem 1.3125rem;
}

.form-control-extra-large {
    padding: 0.9375rem 1.875rem;
}

.sizing-buttons button {
    vertical-align: top;
}

.form-group label {
    font-weight: 400;
}

.thick-slider {
    height: 18px;
    background: #fff;
    border-radius: 100px;
}

textarea {
    resize: vertical;
}

.search-input {
    display: flex;
    border: 1px solid #e6e8ec;
    border-radius: 0.25rem;
    background: #fff;
    transition: all .15s ease-in-out;
}

    .search-input input {
        border: none;
        transition: none;
    }

    .search-input .btn {
        background: #fff;
        border-left: 1px solid #e6e8ec;
        left: 0px;
        border: none;
        color: #5d5d6d;
        padding: 0px 10px 0px;
        margin: 0px;
    }

        .search-input .btn span {
            margin-top: 5px;
        }

.rg-form-wizard .icon-image-preview {
    float: left;
    margin-left: -20px;
}

.rg-form-wizard ul {
    display: flex;
    background-color: #e6e8ec;
}

    .rg-form-wizard ul li {
        flex: 1;
        padding: 20px 10px;
        text-align: center;
    }

        .rg-form-wizard ul li:hover {
            background-color: #7688aa;
            cursor: pointer;
        }

        .rg-form-wizard ul li.active {
            background-color: #c9cdd6;
        }

        .rg-form-wizard ul li span {
            padding: 20px 10px;
        }

form.was-validated .form-control:valid {
    border-color: #54ca62;
}

form.was-validated .form-control:invalid {
    border-color: #ff4444;
}

form.was-validated .custom-select:valid {
    border-color: #54ca62;
}

form.was-validated .custom-select:invalid {
    border-color: #ff4444;
}

form.was-validated .custom-control-input:valid ~ .custom-control-label::before {
    border-color: #54ca62;
}

form.was-validated .custom-control-input:invalid ~ .custom-control-label::before {
    border-color: #ff4444;
}

form.was-validated .custom-control-input:valid:checked ~ .custom-control-label::before {
    border-color: #54ca62;
    background-color: #54ca62;
}

form.was-validated .custom-control-input:invalid:checked ~ .custom-control-label::before {
    border-color: #ff4444;
    background-color: #ff4444;
}

form.was-validated .custom-control-input:valid ~ .custom-control-label {
    color: #54ca62;
}

form.was-validated .custom-control-input:invalid ~ .custom-control-label {
    color: #ff4444;
}

form .form-control.is-valid {
    border-color: #54ca62;
}

form .form-control.is-invalid {
    border-color: #ff4444;
}

form .valid-feedback {
    color: #54ca62;
}

form .invalid-feedback {
    color: #ff4444;
}

.rg-data-list {
    margin: 0 1rem;
    font-weight: 400;
}

    .rg-data-list li {
        font-display: flex;
        justify-content: space-between;
        padding: 0.5rem 1rem;
        border-radius: 0.25rem;
        -webkit-transition: 0.1s, all, 0.5s, ease-in-out;
        -moz-transition: 0.1s, all, 0.5s, ease-in-out;
        -ms-transition: 0.1s, all, 0.5s, ease-in-out;
        -o-transition: 0.1s, all, 0.5s, ease-in-out;
        transition: 0.1s, all, 0.5s, ease-in-out;
    }

        .rg-data-list li:hover {
            background: #e6f0ff;
        }

        .rg-data-list li span {
            flex: 1;
            text-align: center;
        }

            .rg-data-list li span:first-child {
                text-align: left;
            }

            .rg-data-list li span:last-child {
                text-align: right;
            }

.rg-timeline {
    position: relative;
    font-size: 12px;
    font-size: 0.85714rem;
}

    .rg-timeline .rg-timeline-event {
        position: relative;
        display: flex;
    }

        .rg-timeline .rg-timeline-event:before {
            content: "";
            display: table;
            clear: both;
        }

        .rg-timeline .rg-timeline-event:after {
            content: "";
            display: table;
            clear: both;
        }

        .rg-timeline .rg-timeline-event .rg-timeline-event-left {
            display: flex;
            width: 12rem;
            margin-bottom: 1rem;
        }

        .rg-timeline .rg-timeline-event .rg-timeline-event-bullet {
            border-left: solid 4px #e6e8ec;
            background: #ffffff;
            width: 1rem;
            margin: 0 1rem;
            position: relative;
        }

            .rg-timeline .rg-timeline-event .rg-timeline-event-bullet:before {
                content: "";
                display: block;
                width: 0.8rem;
                height: 0.8rem;
                border-radius: 100%;
                border-style: solid;
                border-width: 0.2rem;
                margin-right: 1rem;
                margin-left: -0.55rem;
                background: #ffffff;
                position: relative;
                z-index: 1;
            }

            .rg-timeline .rg-timeline-event .rg-timeline-event-bullet:after {
                position: absolute;
                z-index: 0;
                content: "";
                display: block;
                width: 1.2rem;
                height: 1.2rem;
                border-radius: 100%;
                left: -0.7rem;
                top: -0.17rem;
                background: #ffffff;
            }

            .rg-timeline .rg-timeline-event .rg-timeline-event-bullet.bullet-primary:before {
                border-color: #59388b;
            }

            .rg-timeline .rg-timeline-event .rg-timeline-event-bullet.bullet-secondary:before {
                border-color: #7688aa;
            }

            .rg-timeline .rg-timeline-event .rg-timeline-event-bullet.bullet-light:before {
                border-color: #e6e8ec;
            }

            .rg-timeline .rg-timeline-event .rg-timeline-event-bullet.bullet-dark:before {
                border-color: #171e34;
            }

            .rg-timeline .rg-timeline-event .rg-timeline-event-bullet.bullet-error:before {
                border-color: #ff4444;
            }

            .rg-timeline .rg-timeline-event .rg-timeline-event-bullet.bullet-warning:before {
                border-color: #ff9f40;
            }

            .rg-timeline .rg-timeline-event .rg-timeline-event-bullet.bullet-info:before {
                border-color: #0066ff;
            }

            .rg-timeline .rg-timeline-event .rg-timeline-event-bullet.bullet-success:before {
                border-color: #54ca62;
            }

            .rg-timeline .rg-timeline-event .rg-timeline-event-bullet.bullet-normal:before {
                border-color: #59388b;
            }

        .rg-timeline .rg-timeline-event .rg-timeline-event-right {
            width: calc(100% - 12rem);
            margin-bottom: 1rem;
        }

.rg-task-list .rg-task-list-item {
    position: relative;
    padding: 1rem 0;
    display: flex;
    border-radius: 0.25rem;
    align-items: flex-start;
    border-bottom: dashed 1px #e6e8ec;
}

    .rg-task-list .rg-task-list-item:after:before {
        content: "";
        display: table;
        clear: both;
    }

    .rg-task-list .rg-task-list-item:after:after {
        content: "";
        display: table;
        clear: both;
    }

    .rg-task-list .rg-task-list-item .task-checkbox {
        display: flex;
        align-items: center;
        font-variant-position: relative;
        width: 2rem;
    }

        .rg-task-list .rg-task-list-item .task-checkbox .custom-control {
            display: flex;
            padding: 0;
            min-height: auto;
            margin: 0;
        }

            .rg-task-list .rg-task-list-item .task-checkbox .custom-control .custom-control-label:before, .rg-task-list .rg-task-list-item .task-checkbox .custom-control .custom-control-label:after {
                top: 1px;
                bottom: 0;
                left: 0;
            }

    .rg-task-list .rg-task-list-item .time {
        width: 6rem;
    }

    .rg-task-list .rg-task-list-item .material-icons {
        font-size: 18px;
        font-size: 1.28571rem;
    }

    .rg-task-list .rg-task-list-item .task-details {
        width: calc(100% - 220px);
    }

        .rg-task-list .rg-task-list-item .task-details p {
            font-weight: 400;
            line-height: 1.2rem;
            margin: 0;
        }

        .rg-task-list .rg-task-list-item .task-details span.asignee {
            color: #5d5d6d;
        }

    .rg-task-list .rg-task-list-item .task-list-action {
        display: none;
        width: 50px;
        text-align: center;
        align-items: center;
        justify-content: space-around;
        cursor: pointer;
        margin-left: auto;
    }

    .rg-task-list .rg-task-list-item:hover {
        background-color: #f7f8f9;
    }

.rg-user-list .rg-user-list-item {
    position: relative;
    padding: 1rem 0;
    border-bottom: dashed 1px #e6e8ec;
    display: flex;
    align-items: center;
    -webkit-transition: 0.1s, all, 0.5s, ease-in-out;
    -moz-transition: 0.1s, all, 0.5s, ease-in-out;
    -ms-transition: 0.1s, all, 0.5s, ease-in-out;
    -o-transition: 0.1s, all, 0.5s, ease-in-out;
    transition: 0.1s, all, 0.5s, ease-in-out;
}

    .rg-user-list .rg-user-list-item:after:before {
        content: "";
        display: table;
        clear: both;
    }

    .rg-user-list .rg-user-list-item:after:after {
        content: "";
        display: table;
        clear: both;
    }

    .rg-user-list .rg-user-list-item:hover {
        background-color: #f7f8f9;
    }

    .rg-user-list .rg-user-list-item .user-pic {
        display: block;
    }

    .rg-user-list .rg-user-list-item .user-details {
        display: block;
        padding-left: 1rem;
    }

        .rg-user-list .rg-user-list-item .user-details p {
            margin: 0;
        }

    .rg-user-list .rg-user-list-item .user-action {
        display: flex;
        cursor: pointer;
        align-items: center;
        margin-left: auto;
    }

        .rg-user-list .rg-user-list-item .user-action span {
            display: inline-block;
        }

.rg-notification-list .rg-notification-list-item {
    position: relative;
    padding: 1rem 0;
    display: flex;
    align-items: center;
    border-bottom: solid 1px #e6e8ec;
    -webkit-transition: 0.1s, all, 0.5s, ease-in-out;
    -moz-transition: 0.1s, all, 0.5s, ease-in-out;
    -ms-transition: 0.1s, all, 0.5s, ease-in-out;
    -o-transition: 0.1s, all, 0.5s, ease-in-out;
    transition: 0.1s, all, 0.5s, ease-in-out;
}

    .rg-notification-list .rg-notification-list-item:after:before {
        content: "";
        display: table;
        clear: both;
    }

    .rg-notification-list .rg-notification-list-item:after:after {
        content: "";
        display: table;
        clear: both;
    }

    .rg-notification-list .rg-notification-list-item .notification-icon {
        width: 3rem;
    }

    .rg-notification-list .rg-notification-list-item:hover {
        background-color: #f7f8f9;
    }

    .rg-notification-list .rg-notification-list-item .notification-details {
        width: 100%;
    }

        .rg-notification-list .rg-notification-list-item .notification-details p {
            margin: 0;
        }

        .rg-notification-list .rg-notification-list-item .notification-details span {
            color: #5d5d6d;
        }

    .rg-notification-list .rg-notification-list-item .notification-action {
        width: 2rem;
    }

.rg-message-list .rg-message-list-item {
    position: relative;
    padding: 1rem 0;
    border-bottom: dashed 1px #e6e8ec;
    display: flex;
    align-items: center;
    -webkit-transition: 0.1s, all, 0.5s, ease-in-out;
    -moz-transition: 0.1s, all, 0.5s, ease-in-out;
    -ms-transition: 0.1s, all, 0.5s, ease-in-out;
    -o-transition: 0.1s, all, 0.5s, ease-in-out;
    transition: 0.1s, all, 0.5s, ease-in-out;
}

    .rg-message-list .rg-message-list-item:after:before {
        content: "";
        display: table;
        clear: both;
    }

    .rg-message-list .rg-message-list-item:after:after {
        content: "";
        display: table;
        clear: both;
    }

    .rg-message-list .rg-message-list-item:hover {
        background-color: #f7f8f9;
    }

    .rg-message-list .rg-message-list-item .user-pic {
        cursor: pointer;
    }

    .rg-message-list .rg-message-list-item .message-details {
        padding-left: 1rem;
        width: 100%;
    }

        .rg-message-list .rg-message-list-item .message-details .message {
            display: flex;
            align-items: center;
        }

        .rg-message-list .rg-message-list-item .message-details h6 {
            margin: 0;
            display: flex;
        }

            .rg-message-list .rg-message-list-item .message-details h6 span {
                display: inline-block;
            }

.rg-blog-list .rg-blog-list-item {
    position: relative;
    padding: 1rem 0;
    border-bottom: dashed 1px #e6e8ec;
    display: flex;
    align-items: top;
    -webkit-transition: 0.1s, all, 0.5s, ease-in-out;
    -moz-transition: 0.1s, all, 0.5s, ease-in-out;
    -ms-transition: 0.1s, all, 0.5s, ease-in-out;
    -o-transition: 0.1s, all, 0.5s, ease-in-out;
    transition: 0.1s, all, 0.5s, ease-in-out;
}

    .rg-blog-list .rg-blog-list-item:after:before {
        content: "";
        display: table;
        clear: both;
    }

    .rg-blog-list .rg-blog-list-item:after:after {
        content: "";
        display: table;
        clear: both;
    }

    .rg-blog-list .rg-blog-list-item:hover {
        background-color: #f7f8f9;
    }

    .rg-blog-list .rg-blog-list-item .blog-pic {
        display: block;
    }

    .rg-blog-list .rg-blog-list-item .blog-details {
        display: block;
        padding-left: 1rem;
    }

        .rg-blog-list .rg-blog-list-item .blog-details p {
            margin: 0;
        }

    .rg-blog-list .rg-blog-list-item .blog-action {
        display: flex;
        align-items: center;
        margin-left: auto;
    }

        .rg-blog-list .rg-blog-list-item .blog-action span {
            display: inline-block;
        }

.rg-chart-list .rg-chart-list-item {
    position: relative;
    padding: 1rem 0;
    border-bottom: dashed 1px #e6e8ec;
    display: flex;
    align-items: top;
    -webkit-transition: 0.1s, all, 0.5s, ease-in-out;
    -moz-transition: 0.1s, all, 0.5s, ease-in-out;
    -ms-transition: 0.1s, all, 0.5s, ease-in-out;
    -o-transition: 0.1s, all, 0.5s, ease-in-out;
    transition: 0.1s, all, 0.5s, ease-in-out;
}

    .rg-chart-list .rg-chart-list-item:after:before {
        content: "";
        display: table;
        clear: both;
    }

    .rg-chart-list .rg-chart-list-item:after:after {
        content: "";
        display: table;
        clear: both;
    }

    .rg-chart-list .rg-chart-list-item:hover {
        background-color: #f7f8f9;
    }

    .rg-chart-list .rg-chart-list-item .chart {
        min-width: 10rem;
        max-width: 10rem;
        display: block;
    }

    .rg-chart-list .rg-chart-list-item .chart-details {
        display: block;
        padding-left: 1rem;
    }

        .rg-chart-list .rg-chart-list-item .chart-details p {
            margin: 0;
        }

    .rg-chart-list .rg-chart-list-item .chart-statistics {
        display: flex;
        flex-direction: column;
    }

        .rg-chart-list .rg-chart-list-item .chart-statistics .statistics-data {
            display: flex;
            justify-content: center;
        }

.rg-user-data-list .rg-user-data-list-item {
    padding: 1rem 0;
    border-bottom: dashed 1px #e6e8ec;
    display: flex;
    align-items: center;
    -webkit-transition: 0.1s, all, 0.5s, ease-in-out;
    -moz-transition: 0.1s, all, 0.5s, ease-in-out;
    -ms-transition: 0.1s, all, 0.5s, ease-in-out;
    -o-transition: 0.1s, all, 0.5s, ease-in-out;
    transition: 0.1s, all, 0.5s, ease-in-out;
}

    .rg-user-data-list .rg-user-data-list-item:after:before {
        content: "";
        display: table;
        clear: both;
    }

    .rg-user-data-list .rg-user-data-list-item:after:after {
        content: "";
        display: table;
        clear: both;
    }

    .rg-user-data-list .rg-user-data-list-item:hover {
        background-color: #f7f8f9;
    }

    .rg-user-data-list .rg-user-data-list-item .progress {
        width: 10rem;
    }

.rg-pagination {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
}

    .rg-pagination .page-item {
        margin-right: 1rem;
    }

        .rg-pagination .page-item.previous .page-link, .rg-pagination .page-item.first .page-link, .rg-pagination .page-item.next .page-link, .rg-pagination .page-item.last .page-link {
            background-color: transparent;
            color: #141727;
            border: solid 1px #e6e8ec;
        }

        .rg-pagination .page-item .page-link {
            border: none;
            color: #ffffff;
            background-color: #0066ff;
        }

            .rg-pagination .page-item .page-link:hover, .rg-pagination .page-item .page-link.active {
                background-color: #0043a7;
                color: #ffffff;
            }

            .rg-pagination .page-item .page-link .material-icons {
                font-size: 100%;
            }

.rg-table {
    margin: 0;
    color: #141727;
}

    .rg-table > thead tr.table-primary {
        background-color: #8b67c2;
    }

        .rg-table > thead tr.table-primary th {
            background-color: #8b67c2;
        }

    .rg-table > thead tr.table-secondary {
        background-color: #b5bfd1;
    }

        .rg-table > thead tr.table-secondary th {
            background-color: #b5bfd1;
        }

    .rg-table > thead tr.table-light {
        background-color: white;
    }

        .rg-table > thead tr.table-light th {
            background-color: white;
        }

    .rg-table > thead tr.table-dark {
        background-color: #36477b;
    }

        .rg-table > thead tr.table-dark th {
            background-color: #36477b;
        }

    .rg-table > thead tr.table-error {
        background-color: #ffaaaa;
    }

        .rg-table > thead tr.table-error th {
            background-color: #ffaaaa;
        }

    .rg-table > thead tr.table-warning {
        background-color: #ffd2a6;
    }

        .rg-table > thead tr.table-warning th {
            background-color: #ffd2a6;
        }

    .rg-table > thead tr.table-info {
        background-color: #66a3ff;
    }

        .rg-table > thead tr.table-info th {
            background-color: #66a3ff;
        }

    .rg-table > thead tr.table-success {
        background-color: #a2e2a9;
    }

        .rg-table > thead tr.table-success th {
            background-color: #a2e2a9;
        }

    .rg-table > thead th {
        padding: 1rem 1rem;
        font-weight: 500;
        border-bottom: none;
    }

        .rg-table > thead th .form-group {
            margin: 0em;
        }

    .rg-table > tbody tr.table-primary {
        background-color: #8b67c2;
    }

        .rg-table > tbody tr.table-primary td {
            background-color: #8b67c2;
        }

    .rg-table > tbody tr.table-secondary {
        background-color: #b5bfd1;
    }

        .rg-table > tbody tr.table-secondary td {
            background-color: #b5bfd1;
        }

    .rg-table > tbody tr.table-light {
        background-color: white;
    }

        .rg-table > tbody tr.table-light td {
            background-color: white;
        }

    .rg-table > tbody tr.table-dark {
        background-color: #36477b;
    }

        .rg-table > tbody tr.table-dark td {
            background-color: #36477b;
        }

    .rg-table > tbody tr.table-error {
        background-color: #ffaaaa;
    }

        .rg-table > tbody tr.table-error td {
            background-color: #ffaaaa;
        }

    .rg-table > tbody tr.table-warning {
        background-color: #ffd2a6;
    }

        .rg-table > tbody tr.table-warning td {
            background-color: #ffd2a6;
        }

    .rg-table > tbody tr.table-info {
        background-color: #66a3ff;
    }

        .rg-table > tbody tr.table-info td {
            background-color: #66a3ff;
        }

    .rg-table > tbody tr.table-success {
        background-color: #a2e2a9;
    }

        .rg-table > tbody tr.table-success td {
            background-color: #a2e2a9;
        }

    .rg-table > tbody td {
        padding: 1rem 1rem;
        vertical-align: middle;
        border-top: solid 1px #e6e8ec;
    }

        .rg-table > tbody td .form-group {
            margin: 0em;
        }

    .rg-table.full-width {
        width: 100%;
    }

    .rg-table.rg-table-simple > thead th {
        border-top: 0;
        border-bottom: solid 1px #e6e8ec;
    }

    .rg-table.table-borderless > thead th {
        border: 0;
    }

    .rg-table.table-borderless > tbody td {
        border: 0;
    }

    .rg-table.dataTable > thead th {
        border-bottom: 0;
        padding: 1rem 1rem;
    }

    .rg-table.dataTable.no-footer {
        border-bottom: 0;
    }

    .rg-table.table-dark {
        background-color: #171e34;
        color: #ffffff;
    }

        .rg-table.table-dark.table-striped tbody tr:nth-of-type(even) {
            background-color: #273257;
        }

        .rg-table.table-dark.table-striped tbody tr:nth-of-type(odd) {
            background-color: #1f2846;
        }

    .rg-table.rg-table-capsule-rows {
        border-collapse: separate;
        border-spacing: 0 1rem;
    }

        .rg-table.rg-table-capsule-rows > thead th, .rg-table.rg-table-capsule-rows > thead td, .rg-table.rg-table-capsule-rows > tbody th, .rg-table.rg-table-capsule-rows > tbody td {
            border: none;
            background: #e6e8ec;
        }

            .rg-table.rg-table-capsule-rows > thead th:first-child, .rg-table.rg-table-capsule-rows > thead td:first-child, .rg-table.rg-table-capsule-rows > tbody th:first-child, .rg-table.rg-table-capsule-rows > tbody td:first-child {
                border-top-left-radius: 0.25rem;
                border-bottom-left-radius: 0.25rem;
            }

            .rg-table.rg-table-capsule-rows > thead th:last-child, .rg-table.rg-table-capsule-rows > thead td:last-child, .rg-table.rg-table-capsule-rows > tbody th:last-child, .rg-table.rg-table-capsule-rows > tbody td:last-child {
                border-top-right-radius: 0.25rem;
                border-bottom-right-radius: 0.25rem;
            }

.accordion button[data-toggle="collapse"] {
    width: 100%;
    text-align: left;
    text-decoration: none;
    border: none;
    background: none;
    font-size: 1rem;
    color: #141727;
}

    .accordion button[data-toggle="collapse"]:focus {
        border: none;
        outline: none;
    }

    .accordion button[data-toggle="collapse"] > i {
        float: right;
        font-size: 1rem;
        color: #5d5d6d;
    }

    .accordion button[data-toggle="collapse"] > span > i {
        margin-right: 0.5rem;
        float: left;
        font-size: 1rem;
    }

.accordion .card {
    background: #ffffff;
    box-shadow: 0 0 6px 0 rgba(0, 0, 0, 0.1);
    border: none;
    margin-bottom: 2rem;
    border-radius: 0.25rem;
    margin-bottom: 0;
    box-shadow: none;
}

    .accordion .card.no-header > section {
        padding: 2rem 2rem;
    }

    .accordion .card > header {
        margin-bottom: 2rem;
        padding: 2rem 2rem 0;
    }

        .accordion .card > header:before {
            content: "";
            display: table;
            clear: both;
        }

        .accordion .card > header:after {
            content: "";
            display: table;
            clear: both;
        }

        .accordion .card > header h1, .accordion .card > header h2, .accordion .card > header h3, .accordion .card > header h4, .accordion .card > header h5, .accordion .card > header h6 {
            margin-bottom: 0;
            color: #141727;
        }

            .accordion .card > header h1 + span, .accordion .card > header h2 + span, .accordion .card > header h3 + span, .accordion .card > header h4 + span, .accordion .card > header h5 + span, .accordion .card > header h6 + span {
                font-size: 14px;
                font-size: 1rem;
                color: #5d5d6d;
            }

    .accordion .card > section {
        padding: 0 2rem 2rem;
    }

    .accordion .card.equal-height {
        height: calc(100% - 2rem);
    }

    .accordion .card > footer {
        display: flex;
        padding: 0 2rem 2rem;
    }

    .accordion .card .card-header {
        position: relative;
        padding: 0.75rem 0.75rem;
        background: #e6e8ec;
    }

        .accordion .card .card-header button {
            line-height: 2.8rem;
        }

            .accordion .card .card-header button .material-icons {
                line-height: 2.8rem;
            }

            .accordion .card .card-header button span.icon {
                float: left;
                margin-right: 0.75rem;
            }

.accordion.solid-highlighted-accordion .card {
    border: none;
    margin-bottom: 0.75rem;
    border-radius: 0;
}

    .accordion.solid-highlighted-accordion .card .card-header {
        border-radius: 0;
        border-bottom: 0;
        background-color: #e6e8ec;
        padding-left: calc(70px + 0.75rem);
    }

        .accordion.solid-highlighted-accordion .card .card-header .highlight {
            position: absolute;
            left: 0;
            top: 0;
            bottom: 0;
            padding: 0.75rem 0.75rem;
            width: 70px;
            background-color: #7688aa;
            font-size: 1.5rem;
            text-align: center;
            font-weight: 500;
            color: #ffffff;
        }

            .accordion.solid-highlighted-accordion .card .card-header .highlight:after {
                position: absolute;
                content: "";
                display: block;
                width: 0;
                height: 0;
                border-left: 10px solid transparent;
                border-right: 10px solid transparent;
                border-top: 10px solid #7688aa;
                bottom: -10px;
                left: 15px;
            }

            .accordion.solid-highlighted-accordion .card .card-header .highlight.highlight-primary {
                background-color: #59388b;
                color: #ffffff;
            }

                .accordion.solid-highlighted-accordion .card .card-header .highlight.highlight-primary:after {
                    border-top: 10px solid #59388b;
                }

            .accordion.solid-highlighted-accordion .card .card-header .highlight.highlight-secondary {
                background-color: #7688aa;
                color: #ffffff;
            }

                .accordion.solid-highlighted-accordion .card .card-header .highlight.highlight-secondary:after {
                    border-top: 10px solid #7688aa;
                }

            .accordion.solid-highlighted-accordion .card .card-header .highlight.highlight-light {
                background-color: #e6e8ec;
                color: #ffffff;
            }

                .accordion.solid-highlighted-accordion .card .card-header .highlight.highlight-light:after {
                    border-top: 10px solid #e6e8ec;
                }

            .accordion.solid-highlighted-accordion .card .card-header .highlight.highlight-dark {
                background-color: #171e34;
                color: #ffffff;
            }

                .accordion.solid-highlighted-accordion .card .card-header .highlight.highlight-dark:after {
                    border-top: 10px solid #171e34;
                }

            .accordion.solid-highlighted-accordion .card .card-header .highlight.highlight-error {
                background-color: #ff4444;
                color: #ffffff;
            }

                .accordion.solid-highlighted-accordion .card .card-header .highlight.highlight-error:after {
                    border-top: 10px solid #ff4444;
                }

            .accordion.solid-highlighted-accordion .card .card-header .highlight.highlight-warning {
                background-color: #ff9f40;
                color: #ffffff;
            }

                .accordion.solid-highlighted-accordion .card .card-header .highlight.highlight-warning:after {
                    border-top: 10px solid #ff9f40;
                }

            .accordion.solid-highlighted-accordion .card .card-header .highlight.highlight-info {
                background-color: #0066ff;
                color: #ffffff;
            }

                .accordion.solid-highlighted-accordion .card .card-header .highlight.highlight-info:after {
                    border-top: 10px solid #0066ff;
                }

            .accordion.solid-highlighted-accordion .card .card-header .highlight.highlight-success {
                background-color: #54ca62;
                color: #ffffff;
            }

                .accordion.solid-highlighted-accordion .card .card-header .highlight.highlight-success:after {
                    border-top: 10px solid #54ca62;
                }

.accordion.solid-light-accordion .card {
    border: none;
    margin-bottom: 0.75rem;
    border-radius: 0;
    box-shadow: 0 0 0.5rem 0 rgba(0, 0, 0, 0.1);
}

    .accordion.solid-light-accordion .card .card-header {
        border-radius: 0;
        background-color: #ffffff;
    }

        .accordion.solid-light-accordion .card .card-header span.highlight-icon {
            float: left;
            margin-right: 0.75rem;
        }

.accordion.list-accordion .card {
    border: 0px;
}

    .accordion.list-accordion .card .card-header {
        background: none;
        margin-bottom: 0;
    }

.accordion.light-accordion .card {
    border: 0px;
    margin-bottom: 0.75rem;
    border-radius: 0;
    box-shadow: 0 0 0.5rem 0 rgba(0, 0, 0, 0.1);
}

    .accordion.light-accordion .card .card-header {
        background: none;
        box-shadow: 1px 1px 1px 1px #e6e8ec;
    }

        .accordion.light-accordion .card .card-header h5::before {
            content: '\00a0 ';
            position: absolute;
            left: 0;
            top: 0px;
            bottom: 0;
            background-color: #54ca62;
        }

    .accordion.light-accordion .card .card-body {
        background-color: #e6e8ec;
    }

.accordion.striped-accordion .card {
    border: 0px;
}

    .accordion.striped-accordion .card .card-header {
        border-radius: unset;
    }

    .accordion.striped-accordion .card:nth-child(odd) .card-header {
        background: #e6e8ec;
    }

    .accordion.striped-accordion .card:nth-child(even) .card-header {
        background: #f2f3f5;
    }

.accordion.dark-accordion .card {
    margin-bottom: 0.75rem;
    border-radius: 0;
}

    .accordion.dark-accordion .card .card-header {
        background-color: #171e34;
    }

        .accordion.dark-accordion .card .card-header h5::before {
            content: '\00a0';
            position: absolute;
            left: 0;
            top: 0px;
            bottom: 0;
            background-color: #54ca62;
        }

        .accordion.dark-accordion .card .card-header button {
            color: #ffffff;
        }

.accordion.dark-accordion .card-body {
    background-color: #e6e8ec;
}

.rg-alert {
    display: block;
    align-items: center;
    border-radius: 0.25rem;
    padding: 0.75rem 1.25rem;
    font-weight: 400;
}

    .rg-alert > .material-icons {
        display: inline-block;
        margin-right: 0.375rem;
    }

    .rg-alert > span {
        display: inline-block;
        vertical-align: middle;
    }

    .rg-alert.alert-primary {
        color: #130c1e;
        background: #a78cd0;
    }

    .rg-alert.alert-solid-primary {
        color: #ffffff;
        background: #59388b;
    }

    .rg-alert.alert-primary-transparent {
        color: #59388b;
        border-color: #59388b;
    }

    .rg-alert.alert-secondary {
        color: #343f53;
        background: #d4dae5;
    }

    .rg-alert.alert-solid-secondary {
        color: #ffffff;
        background: #7688aa;
    }

    .rg-alert.alert-secondary-transparent {
        color: #7688aa;
        border-color: #7688aa;
    }

    .rg-alert.alert-light {
        color: #8f98aa;
        background: white;
        background: #f4f5f7;
    }

    .rg-alert.alert-solid-light {
        color: #ffffff;
        background: #e6e8ec;
        color: #141727;
    }

    .rg-alert.alert-light-transparent {
        color: #e6e8ec;
        border-color: #e6e8ec;
    }

    .rg-alert.alert-dark {
        color: black;
        background: #465b9e;
    }

    .rg-alert.alert-solid-dark {
        color: #ffffff;
        background: #171e34;
    }

    .rg-alert.alert-dark-transparent {
        color: #171e34;
        border-color: #171e34;
    }

    .rg-alert.alert-error {
        color: #aa0000;
        background: #ffdddd;
    }

    .rg-alert.alert-solid-error {
        color: #ffffff;
        background: #ff4444;
    }

    .rg-alert.alert-error-transparent {
        color: #ff4444;
        border-color: #ff4444;
    }

    .rg-alert.alert-warning {
        color: #a65300;
        background: #ffecd9;
    }

    .rg-alert.alert-solid-warning {
        color: #ffffff;
        background: #ff9f40;
    }

    .rg-alert.alert-warning-transparent {
        color: #ff9f40;
        border-color: #ff9f40;
    }

    .rg-alert.alert-info {
        color: #002966;
        background: #99c2ff;
    }

    .rg-alert.alert-solid-info {
        color: #ffffff;
        background: #0066ff;
    }

    .rg-alert.alert-info-transparent {
        color: #0066ff;
        border-color: #0066ff;
    }

    .rg-alert.alert-success {
        color: #1f6628;
        background: #c9eecd;
    }

    .rg-alert.alert-solid-success {
        color: #ffffff;
        background: #54ca62;
    }

    .rg-alert.alert-success-transparent {
        color: #54ca62;
        border-color: #54ca62;
    }

    .rg-alert.alert-small {
        padding: 0.375rem 0.625rem;
    }

    .rg-alert.alert-large {
        padding: 1.5rem 2.5rem;
    }

    .rg-alert.alert-white {
        background: #ffffff;
        box-shadow: 0 0 10px 5px rgba(0, 0, 0, 0.1);
    }

    .rg-alert.alert-black {
        background-color: #171e34;
    }

    .rg-alert.alert-card {
        padding: 1.25rem;
    }

        .rg-alert.alert-card header {
            display: flex;
            margin-bottom: 1.5rem;
            align-items: center;
        }

            .rg-alert.alert-card header .alert-heading {
                padding-left: 1.25rem;
                width: calc(100% - 50px);
            }

        .rg-alert.alert-card section p {
            margin-bottom: 0;
        }

        .rg-alert.alert-card footer {
            margin-top: 1.5rem;
        }

            .rg-alert.alert-card footer .btn {
                margin-bottom: 0;
            }

.rg-badge {
    display: inline-block;
    padding: 0.25em 0.5em;
    font-size: 1em;
    font-weight: 500;
    line-height: 1;
    text-align: center;
    white-space: nowrap;
    vertical-align: baseline;
    border-radius: 0.25rem;
    color: #ffffff;
    transition: all .15s ease-in-out;
}

    .rg-badge.rg-badge-primary {
        background-color: #59388b;
    }

    .rg-badge.rg-badge-secondary {
        background-color: #7688aa;
    }

    .rg-badge.rg-badge-light {
        background-color: #e6e8ec;
        color: #141727;
    }

    .rg-badge.rg-badge-dark {
        background-color: #171e34;
    }

    .rg-badge.rg-badge-error {
        background-color: #ff4444;
    }

    .rg-badge.rg-badge-warning {
        background-color: #ff9f40;
    }

    .rg-badge.rg-badge-info {
        background-color: #0066ff;
    }

    .rg-badge.rg-badge-success {
        background-color: #54ca62;
    }

    .rg-badge.rg-badge-outline-primary {
        color: #59388b;
        border: 1px solid #59388b;
    }

    .rg-badge.rg-badge-outline-secondary {
        color: #7688aa;
        border: 1px solid #7688aa;
    }

    .rg-badge.rg-badge-outline-light {
        color: #e6e8ec;
        border: 1px solid #e6e8ec;
        color: #8f98aa;
    }

    .rg-badge.rg-badge-outline-dark {
        color: #171e34;
        border: 1px solid #171e34;
    }

    .rg-badge.rg-badge-outline-error {
        color: #ff4444;
        border: 1px solid #ff4444;
    }

    .rg-badge.rg-badge-outline-warning {
        color: #ff9f40;
        border: 1px solid #ff9f40;
    }

    .rg-badge.rg-badge-outline-info {
        color: #0066ff;
        border: 1px solid #0066ff;
    }

    .rg-badge.rg-badge-outline-success {
        color: #54ca62;
        border: 1px solid #54ca62;
    }

    .rg-badge.rg-badge-highlight-primary {
        background: #a78cd0;
        color: #130c1e;
    }

    .rg-badge.rg-badge-highlight-secondary {
        background: #d4dae5;
        color: #343f53;
    }

    .rg-badge.rg-badge-highlight-light {
        background: white;
        color: #8f98aa;
        background: #f4f5f7;
        color: #8f98aa;
    }

    .rg-badge.rg-badge-highlight-dark {
        background: #465b9e;
        color: black;
    }

    .rg-badge.rg-badge-highlight-error {
        background: #ffdddd;
        color: #aa0000;
    }

    .rg-badge.rg-badge-highlight-warning {
        background: #ffecd9;
        color: #a65300;
    }

    .rg-badge.rg-badge-highlight-info {
        background: #99c2ff;
        color: #002966;
    }

    .rg-badge.rg-badge-highlight-success {
        background: #c9eecd;
        color: #1f6628;
    }

    .rg-badge.rg-badge-rectangle {
        border-radius: 0;
    }

    .rg-badge.rg-badge-rounded {
        border-radius: 0.25rem;
    }

    .rg-badge.rg-badge-capsule {
        border-radius: 100px;
    }

    .rg-badge.rg-badge-xs {
        padding: 0.125em 0.5em;
    }

    .rg-badge.rg-badge-sm {
        padding: 0.25em 0.5em;
    }

    .rg-badge.rg-badge-md {
        padding: 0.375em 0.75em;
    }

    .rg-badge.rg-badge-lg {
        padding: 0.5em 1em;
    }

    .rg-badge.rg-badge-xl {
        padding: 0.625em 1.25em;
    }

.btn {
    padding: 0.375rem 0.75rem;
    border-radius: 0.25rem;
}

    .btn.btn-danger {
        background: #ff4444;
        border: none;
        color: #ffffff;
    }

        .btn.btn-danger:hover {
            background: #ff1111;
            color: #ffffff;
        }

        .btn.btn-danger:not(:disabled):not(.disabled):active {
            background: #ff1111;
            border-color: white;
            box-shadow: 0 0 0 0.2rem white;
            color: #ffffff;
        }

        .btn.btn-danger.focus, .btn.btn-danger:focus {
            border-color: white;
            box-shadow: 0 0 0 0.2rem white;
        }

        .btn.btn-danger.btn-gradient {
            background: linear-gradient(90deg, #dd0000 0%, #ff1111 100%);
        }

            .btn.btn-danger.btn-gradient:hover {
                background: linear-gradient(90deg, #aa0000 0%, #ff1111 100%);
                color: #ffffff;
            }

            .btn.btn-danger.btn-gradient:not(:disabled):not(.disabled):active {
                background: linear-gradient(90deg, #aa0000 0%, #ff1111 100%);
                color: #ffffff;
            }

            .btn.btn-danger.btn-gradient.focus, .btn.btn-danger.btn-gradient:focus {
                border-color: white;
                box-shadow: 0 0 0 0.2rem white;
            }

    .btn.btn-primary {
        background: #59388b;
        border: none;
        color: #ffffff;
    }

        .btn.btn-primary:hover {
            background: #422967;
            color: #ffffff;
        }

        .btn.btn-primary:not(:disabled):not(.disabled):active {
            background: #422967;
            border-color: #c3b0df;
            box-shadow: 0 0 0 0.2rem #c3b0df;
            color: #ffffff;
        }

        .btn.btn-primary.focus, .btn.btn-primary:focus {
            border-color: #c3b0df;
            box-shadow: 0 0 0 0.2rem #c3b0df;
        }

        .btn.btn-primary.btn-gradient {
            background: linear-gradient(90deg, #2a1b42 0%, #422967 100%);
        }

            .btn.btn-primary.btn-gradient:hover {
                background: linear-gradient(90deg, #130c1e 0%, #422967 100%);
                color: #ffffff;
            }

            .btn.btn-primary.btn-gradient:not(:disabled):not(.disabled):active {
                background: linear-gradient(90deg, #130c1e 0%, #422967 100%);
                color: #ffffff;
            }

            .btn.btn-primary.btn-gradient.focus, .btn.btn-primary.btn-gradient:focus {
                border-color: #c3b0df;
                box-shadow: 0 0 0 0.2rem #c3b0df;
            }

    .btn.btn-secondary {
        background: #7688aa;
        border: none;
        color: #ffffff;
    }

        .btn.btn-secondary:hover {
            background: #5b6e92;
            color: #ffffff;
        }

        .btn.btn-secondary:not(:disabled):not(.disabled):active {
            background: #5b6e92;
            border-color: #f4f5f8;
            box-shadow: 0 0 0 0.2rem #f4f5f8;
            color: #ffffff;
        }

        .btn.btn-secondary.focus, .btn.btn-secondary:focus {
            border-color: #f4f5f8;
            box-shadow: 0 0 0 0.2rem #f4f5f8;
        }

        .btn.btn-secondary.btn-gradient {
            background: linear-gradient(90deg, #475673 0%, #5b6e92 100%);
        }

            .btn.btn-secondary.btn-gradient:hover {
                background: linear-gradient(90deg, #343f53 0%, #5b6e92 100%);
                color: #ffffff;
            }

            .btn.btn-secondary.btn-gradient:not(:disabled):not(.disabled):active {
                background: linear-gradient(90deg, #343f53 0%, #5b6e92 100%);
                color: #ffffff;
            }

            .btn.btn-secondary.btn-gradient.focus, .btn.btn-secondary.btn-gradient:focus {
                border-color: #f4f5f8;
                box-shadow: 0 0 0 0.2rem #f4f5f8;
            }

    .btn.btn-light {
        background: #e6e8ec;
        border: none;
        color: #ffffff;
        color: #141727;
    }

        .btn.btn-light:hover {
            background: #c9cdd6;
            color: #ffffff;
            color: #141727;
        }

        .btn.btn-light:not(:disabled):not(.disabled):active {
            background: #c9cdd6;
            border-color: white;
            box-shadow: 0 0 0 0.2rem white;
            color: #ffffff;
            color: #141727;
        }

        .btn.btn-light.focus, .btn.btn-light:focus {
            border-color: white;
            box-shadow: 0 0 0 0.2rem white;
        }

        .btn.btn-light.btn-gradient {
            background: linear-gradient(90deg, #acb3c0 0%, #c9cdd6 100%);
        }

            .btn.btn-light.btn-gradient:hover {
                background: linear-gradient(90deg, #8f98aa 0%, #c9cdd6 100%);
                color: #ffffff;
                color: #141727;
            }

            .btn.btn-light.btn-gradient:not(:disabled):not(.disabled):active {
                background: linear-gradient(90deg, #8f98aa 0%, #c9cdd6 100%);
                color: #ffffff;
                color: #141727;
            }

            .btn.btn-light.btn-gradient.focus, .btn.btn-light.btn-gradient:focus {
                border-color: white;
                box-shadow: 0 0 0 0.2rem white;
            }

    .btn.btn-dark {
        background: #171e34;
        border: none;
        color: #ffffff;
    }

        .btn.btn-dark:hover {
            background: #070a11;
            color: #ffffff;
        }

        .btn.btn-dark:not(:disabled):not(.disabled):active {
            background: #070a11;
            border-color: #5f74b8;
            box-shadow: 0 0 0 0.2rem #5f74b8;
            color: #ffffff;
        }

        .btn.btn-dark.focus, .btn.btn-dark:focus {
            border-color: #5f74b8;
            box-shadow: 0 0 0 0.2rem #5f74b8;
        }

        .btn.btn-dark.btn-gradient {
            background: linear-gradient(90deg, black 0%, #070a11 100%);
        }

            .btn.btn-dark.btn-gradient:hover {
                background: linear-gradient(90deg, black 0%, #070a11 100%);
                color: #ffffff;
            }

            .btn.btn-dark.btn-gradient:not(:disabled):not(.disabled):active {
                background: linear-gradient(90deg, black 0%, #070a11 100%);
                color: #ffffff;
            }

            .btn.btn-dark.btn-gradient.focus, .btn.btn-dark.btn-gradient:focus {
                border-color: #5f74b8;
                box-shadow: 0 0 0 0.2rem #5f74b8;
            }

    .btn.btn-error {
        background: #ff4444;
        border: none;
        color: #ffffff;
    }

        .btn.btn-error:hover {
            background: #ff1111;
            color: #ffffff;
        }

        .btn.btn-error:not(:disabled):not(.disabled):active {
            background: #ff1111;
            border-color: white;
            box-shadow: 0 0 0 0.2rem white;
            color: #ffffff;
        }

        .btn.btn-error.focus, .btn.btn-error:focus {
            border-color: white;
            box-shadow: 0 0 0 0.2rem white;
        }

        .btn.btn-error.btn-gradient {
            background: linear-gradient(90deg, #dd0000 0%, #ff1111 100%);
        }

            .btn.btn-error.btn-gradient:hover {
                background: linear-gradient(90deg, #aa0000 0%, #ff1111 100%);
                color: #ffffff;
            }

            .btn.btn-error.btn-gradient:not(:disabled):not(.disabled):active {
                background: linear-gradient(90deg, #aa0000 0%, #ff1111 100%);
                color: #ffffff;
            }

            .btn.btn-error.btn-gradient.focus, .btn.btn-error.btn-gradient:focus {
                border-color: white;
                box-shadow: 0 0 0 0.2rem white;
            }

    .btn.btn-warning {
        background: #ff9f40;
        border: none;
        color: #ffffff;
    }

        .btn.btn-warning:hover {
            background: #ff850d;
            color: #ffffff;
        }

        .btn.btn-warning:not(:disabled):not(.disabled):active {
            background: #ff850d;
            border-color: white;
            box-shadow: 0 0 0 0.2rem white;
            color: #ffffff;
        }

        .btn.btn-warning.focus, .btn.btn-warning:focus {
            border-color: white;
            box-shadow: 0 0 0 0.2rem white;
        }

        .btn.btn-warning.btn-gradient {
            background: linear-gradient(90deg, #d96c00 0%, #ff850d 100%);
        }

            .btn.btn-warning.btn-gradient:hover {
                background: linear-gradient(90deg, #a65300 0%, #ff850d 100%);
                color: #ffffff;
            }

            .btn.btn-warning.btn-gradient:not(:disabled):not(.disabled):active {
                background: linear-gradient(90deg, #a65300 0%, #ff850d 100%);
                color: #ffffff;
            }

            .btn.btn-warning.btn-gradient.focus, .btn.btn-warning.btn-gradient:focus {
                border-color: white;
                box-shadow: 0 0 0 0.2rem white;
            }

    .btn.btn-info {
        background: #0066ff;
        border: none;
        color: #ffffff;
    }

        .btn.btn-info:hover {
            background: #0052cc;
            color: #ffffff;
        }

        .btn.btn-info:not(:disabled):not(.disabled):active {
            background: #0052cc;
            border-color: #cce0ff;
            box-shadow: 0 0 0 0.2rem #cce0ff;
            color: #ffffff;
        }

        .btn.btn-info.focus, .btn.btn-info:focus {
            border-color: #cce0ff;
            box-shadow: 0 0 0 0.2rem #cce0ff;
        }

        .btn.btn-info.btn-gradient {
            background: linear-gradient(90deg, #003d99 0%, #0052cc 100%);
        }

            .btn.btn-info.btn-gradient:hover {
                background: linear-gradient(90deg, #002966 0%, #0052cc 100%);
                color: #ffffff;
            }

            .btn.btn-info.btn-gradient:not(:disabled):not(.disabled):active {
                background: linear-gradient(90deg, #002966 0%, #0052cc 100%);
                color: #ffffff;
            }

            .btn.btn-info.btn-gradient.focus, .btn.btn-info.btn-gradient:focus {
                border-color: #cce0ff;
                box-shadow: 0 0 0 0.2rem #cce0ff;
            }

    .btn.btn-success {
        background: #54ca62;
        border: none;
        color: #ffffff;
    }

        .btn.btn-success:hover {
            background: #38b346;
            color: #ffffff;
        }

        .btn.btn-success:not(:disabled):not(.disabled):active {
            background: #38b346;
            border-color: #f0faf1;
            box-shadow: 0 0 0 0.2rem #f0faf1;
            color: #ffffff;
        }

        .btn.btn-success.focus, .btn.btn-success:focus {
            border-color: #f0faf1;
            box-shadow: 0 0 0 0.2rem #f0faf1;
        }

        .btn.btn-success.btn-gradient {
            background: linear-gradient(90deg, #2c8c37 0%, #38b346 100%);
        }

            .btn.btn-success.btn-gradient:hover {
                background: linear-gradient(90deg, #1f6628 0%, #38b346 100%);
                color: #ffffff;
            }

            .btn.btn-success.btn-gradient:not(:disabled):not(.disabled):active {
                background: linear-gradient(90deg, #1f6628 0%, #38b346 100%);
                color: #ffffff;
            }

            .btn.btn-success.btn-gradient.focus, .btn.btn-success.btn-gradient:focus {
                border-color: #f0faf1;
                box-shadow: 0 0 0 0.2rem #f0faf1;
            }

    .btn.btn-brand {
        background: #a649e0;
        color: #ffffff;
    }

        .btn.btn-brand:hover {
            color: #ffffff;
            background: #8f24d2;
        }

        .btn.btn-brand:not(:disabled):not(.disabled):active {
            color: #ffffff;
            background: #8f24d2;
        }

        .btn.btn-brand.btn-gradient {
            background: linear-gradient(90deg, #5688ec 0%, #a649e0 100%);
        }

            .btn.btn-brand.btn-gradient:hover {
                color: #ffffff;
                background: linear-gradient(90deg, #54157b 0%, #8f24d2 100%);
            }

            .btn.btn-brand.btn-gradient:not(:disabled):not(.disabled):active {
                color: #ffffff;
                background: linear-gradient(90deg, #54157b 0%, #8f24d2 100%);
            }

    .btn.btn-inverse {
        background: #fff;
        border: none;
        color: #141727;
    }

        .btn.btn-inverse:hover {
            color: #141727;
            background: #f2f2f2;
        }

        .btn.btn-inverse:not(:disabled):not(.disabled):active {
            color: #141727;
            background: #e6e6e6;
        }

        .btn.btn-inverse.btn-gradient {
            background: linear-gradient(90deg, #cccccc 0%, #fff 100%);
        }

            .btn.btn-inverse.btn-gradient:hover {
                color: #141727;
                background: linear-gradient(90deg, #b3b3b3 0%, #e6e6e6 100%);
            }

            .btn.btn-inverse.btn-gradient:not(:disabled):not(.disabled):active {
                color: #141727;
                background: linear-gradient(90deg, #b3b3b3 0%, #e6e6e6 100%);
            }

    .btn.btn-link {
        color: #0066ff;
    }

    .btn.btn-rectangle {
        border-radius: 0;
    }

    .btn.btn-rounded {
        border-radius: 0.25rem;
    }

    .btn.btn-capsule {
        border-radius: 100px;
    }

    .btn.btn-elevated {
        box-shadow: 0 3px 4px 0 rgba(0, 0, 0, 0.1);
    }

    .btn.btn-outline {
        background: transparent;
        border-style: solid;
        border-width: 1px;
    }

        .btn.btn-outline.btn-danger {
            border-color: #ff4444;
            color: #ff4444;
        }

            .btn.btn-outline.btn-danger:hover {
                color: #ffffff;
            }

            .btn.btn-outline.btn-danger:not(:disabled):not(.disabled):active {
                color: #ffffff;
            }

        .btn.btn-outline.btn-primary {
            border-color: #59388b;
            color: #59388b;
        }

            .btn.btn-outline.btn-primary:hover {
                color: #ffffff;
            }

            .btn.btn-outline.btn-primary:not(:disabled):not(.disabled):active {
                color: #ffffff;
            }

        .btn.btn-outline.btn-secondary {
            border-color: #7688aa;
            color: #7688aa;
        }

            .btn.btn-outline.btn-secondary:hover {
                color: #ffffff;
            }

            .btn.btn-outline.btn-secondary:not(:disabled):not(.disabled):active {
                color: #ffffff;
            }

        .btn.btn-outline.btn-light {
            border-color: #e6e8ec;
            color: #e6e8ec;
            color: #141727;
        }

            .btn.btn-outline.btn-light:hover {
                color: #ffffff;
            }

            .btn.btn-outline.btn-light:not(:disabled):not(.disabled):active {
                color: #ffffff;
            }

        .btn.btn-outline.btn-dark {
            border-color: #171e34;
            color: #171e34;
        }

            .btn.btn-outline.btn-dark:hover {
                color: #ffffff;
            }

            .btn.btn-outline.btn-dark:not(:disabled):not(.disabled):active {
                color: #ffffff;
            }

        .btn.btn-outline.btn-error {
            border-color: #ff4444;
            color: #ff4444;
        }

            .btn.btn-outline.btn-error:hover {
                color: #ffffff;
            }

            .btn.btn-outline.btn-error:not(:disabled):not(.disabled):active {
                color: #ffffff;
            }

        .btn.btn-outline.btn-warning {
            border-color: #ff9f40;
            color: #ff9f40;
        }

            .btn.btn-outline.btn-warning:hover {
                color: #ffffff;
            }

            .btn.btn-outline.btn-warning:not(:disabled):not(.disabled):active {
                color: #ffffff;
            }

        .btn.btn-outline.btn-info {
            border-color: #0066ff;
            color: #0066ff;
        }

            .btn.btn-outline.btn-info:hover {
                color: #ffffff;
            }

            .btn.btn-outline.btn-info:not(:disabled):not(.disabled):active {
                color: #ffffff;
            }

        .btn.btn-outline.btn-success {
            border-color: #54ca62;
            color: #54ca62;
        }

            .btn.btn-outline.btn-success:hover {
                color: #ffffff;
            }

            .btn.btn-outline.btn-success:not(:disabled):not(.disabled):active {
                color: #ffffff;
            }

    .btn.tone-solid.btn-danger {
        background: #ffaaaa;
        color: #dd0000;
    }

        .btn.tone-solid.btn-danger:hover {
            background: white;
        }

        .btn.tone-solid.btn-danger:not(:disabled):not(.disabled):active {
            background: white;
        }

    .btn.tone-solid.btn-primary {
        background: #8b67c2;
        color: #2a1b42;
    }

        .btn.tone-solid.btn-primary:hover {
            background: #c3b0df;
        }

        .btn.tone-solid.btn-primary:not(:disabled):not(.disabled):active {
            background: #c3b0df;
        }

    .btn.tone-solid.btn-secondary {
        background: #b5bfd1;
        color: #475673;
    }

        .btn.tone-solid.btn-secondary:hover {
            background: #f4f5f8;
        }

        .btn.tone-solid.btn-secondary:not(:disabled):not(.disabled):active {
            background: #f4f5f8;
        }

    .btn.tone-solid.btn-light {
        background: white;
        color: #acb3c0;
        background: #f4f5f7;
        color: #727d94;
    }

        .btn.tone-solid.btn-light:hover {
            background: white;
        }

        .btn.tone-solid.btn-light:not(:disabled):not(.disabled):active {
            background: white;
        }

    .btn.tone-solid.btn-dark {
        background: #36477b;
        color: black;
    }

        .btn.tone-solid.btn-dark:hover {
            background: #5f74b8;
        }

        .btn.tone-solid.btn-dark:not(:disabled):not(.disabled):active {
            background: #5f74b8;
        }

    .btn.tone-solid.btn-error {
        background: #ffaaaa;
        color: #dd0000;
    }

        .btn.tone-solid.btn-error:hover {
            background: white;
        }

        .btn.tone-solid.btn-error:not(:disabled):not(.disabled):active {
            background: white;
        }

    .btn.tone-solid.btn-warning {
        background: #ffd2a6;
        color: #d96c00;
    }

        .btn.tone-solid.btn-warning:hover {
            background: white;
        }

        .btn.tone-solid.btn-warning:not(:disabled):not(.disabled):active {
            background: white;
        }

    .btn.tone-solid.btn-info {
        background: #66a3ff;
        color: #003d99;
    }

        .btn.tone-solid.btn-info:hover {
            background: #cce0ff;
        }

        .btn.tone-solid.btn-info:not(:disabled):not(.disabled):active {
            background: #cce0ff;
        }

    .btn.tone-solid.btn-success {
        background: #a2e2a9;
        color: #2c8c37;
    }

        .btn.tone-solid.btn-success:hover {
            background: #f0faf1;
        }

        .btn.tone-solid.btn-success:not(:disabled):not(.disabled):active {
            background: #f0faf1;
        }

    .btn.btn-disabled.btn-danger {
        background: #ffdddd;
        color: white;
    }

    .btn.btn-disabled.btn-primary {
        background: #a78cd0;
        color: #c3b0df;
    }

    .btn.btn-disabled.btn-secondary {
        background: #d4dae5;
        color: #f4f5f8;
    }

    .btn.btn-disabled.btn-light {
        background: white;
        color: white;
        background: #f4f5f7;
        color: #acb3c0;
    }

    .btn.btn-disabled.btn-dark {
        background: #465b9e;
        color: #5f74b8;
    }

    .btn.btn-disabled.btn-error {
        background: #ffdddd;
        color: white;
    }

    .btn.btn-disabled.btn-warning {
        background: #ffecd9;
        color: white;
    }

    .btn.btn-disabled.btn-info {
        background: #99c2ff;
        color: #cce0ff;
    }

    .btn.btn-disabled.btn-success {
        background: #c9eecd;
        color: #f0faf1;
    }

    .btn.btn-icon {
        font-size: 1rem;
        padding: 0.375rem 0.75rem;
        line-height: 1.75rem;
    }

        .btn.btn-icon .material-icons {
            font-size: 1rem;
            vertical-align: middle;
        }

        .btn.btn-icon svg {
            display: inline-block;
            height: 20px;
            width: 20px;
            fill: #ffffff;
            vertical-align: text-bottom;
        }

        .btn.btn-icon.btn-light svg {
            fill: #141727;
        }

    .btn.btn-icon-text .material-icons {
        font-size: 1rem;
        vertical-align: middle;
    }

        .btn.btn-icon-text .material-icons + .text {
            padding-right: 0;
            padding-left: 0.75rem;
        }

    .btn.btn-icon-text svg {
        display: inline-block;
        height: 20px;
        width: 20px;
        fill: #ffffff;
        vertical-align: text-bottom;
    }

        .btn.btn-icon-text svg + .text {
            padding-right: 0;
            padding-left: 0.75rem;
        }

    .btn.btn-icon-text > .text {
        padding-right: 0.75rem;
    }

    .btn.btn-sm {
        padding: 0.25rem 0.5rem;
    }

    .btn.btn-small {
        padding: 0.25rem 0.5rem;
    }

    .btn.btn-lg {
        padding: 0.65625rem 1.3125rem;
    }

    .btn.btn-large {
        padding: 0.65625rem 1.3125rem;
    }

    .btn.btn-extra-large {
        padding: 0.9375rem 1.875rem;
    }

    .btn + .btn {
        margin-left: 0.75rem;
    }

.rg-spinner-rotator {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    border: solid 3px #e6e8ec;
    height: 30px;
    width: 30px;
    border-radius: 100px;
}

    .rg-spinner-rotator.small {
        height: 20px;
        width: 20px;
    }

        .rg-spinner-rotator.small:before {
            height: 20px;
            width: 20px;
        }

    .rg-spinner-rotator.medium {
        height: 30px;
        width: 30px;
    }

        .rg-spinner-rotator.medium:before {
            height: 30px;
            width: 30px;
        }

    .rg-spinner-rotator.large {
        height: 40px;
        width: 40px;
    }

        .rg-spinner-rotator.large:before {
            height: 40px;
            width: 40px;
        }

    .rg-spinner-rotator.extra-large {
        height: 60px;
        width: 60px;
    }

        .rg-spinner-rotator.extra-large:before {
            height: 60px;
            width: 60px;
        }

    .rg-spinner-rotator:before {
        content: "";
        position: absolute;
        left: -3px;
        top: -3px;
        display: block;
        height: 30px;
        width: 30px;
        border-radius: 100px;
        border-top: 2px solid #0066ff;
        border-right: 2px solid transparent;
        border-left: 2px solid transparent;
        border-bottom: 2px solid transparent;
        animation: rg-spinner-rotator 500ms linear infinite;
    }

    .rg-spinner-rotator.primary:before {
        border-top: 2px solid #59388b;
    }

    .rg-spinner-rotator.secondary:before {
        border-top: 2px solid #7688aa;
    }

    .rg-spinner-rotator.light:before {
        border-top: 2px solid #e6e8ec;
    }

    .rg-spinner-rotator.dark:before {
        border-top: 2px solid #171e34;
    }

    .rg-spinner-rotator.error:before {
        border-top: 2px solid #ff4444;
    }

    .rg-spinner-rotator.warning:before {
        border-top: 2px solid #ff9f40;
    }

    .rg-spinner-rotator.info:before {
        border-top: 2px solid #0066ff;
    }

    .rg-spinner-rotator.success:before {
        border-top: 2px solid #54ca62;
    }

@keyframes rg-spinner-rotator {
    to {
        transform: rotate(360deg);
    }
}

.rg-spinner-shape-transform {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    left: 0;
    width: 30px;
    height: 30px;
}

    .rg-spinner-shape-transform.small {
        width: 20px;
        height: 20px;
    }

        .rg-spinner-shape-transform.small span {
            width: 10px;
            height: 10px;
        }

            .rg-spinner-shape-transform.small span:nth-child(2) {
                left: 10px;
            }

            .rg-spinner-shape-transform.small span:nth-child(4) {
                left: 10px;
            }

    .rg-spinner-shape-transform.medium {
        width: 30px;
        height: 30px;
    }

        .rg-spinner-shape-transform.medium span {
            width: 15px;
            height: 15px;
        }

            .rg-spinner-shape-transform.medium span:nth-child(2) {
                left: 15px;
            }

            .rg-spinner-shape-transform.medium span:nth-child(4) {
                left: 15px;
            }

    .rg-spinner-shape-transform.large {
        width: 40px;
        height: 40px;
    }

        .rg-spinner-shape-transform.large span {
            width: 20px;
            height: 20px;
        }

            .rg-spinner-shape-transform.large span:nth-child(2) {
                left: 20px;
            }

            .rg-spinner-shape-transform.large span:nth-child(4) {
                left: 20px;
            }

    .rg-spinner-shape-transform.extra-large {
        width: 60px;
        height: 60px;
    }

        .rg-spinner-shape-transform.extra-large span {
            width: 30px;
            height: 30px;
        }

            .rg-spinner-shape-transform.extra-large span:nth-child(2) {
                left: 30px;
            }

            .rg-spinner-shape-transform.extra-large span:nth-child(4) {
                left: 30px;
            }

    .rg-spinner-shape-transform.primary span {
        background: #59388b;
    }

    .rg-spinner-shape-transform.secondary span {
        background: #7688aa;
    }

    .rg-spinner-shape-transform.light span {
        background: #e6e8ec;
    }

    .rg-spinner-shape-transform.dark span {
        background: #171e34;
    }

    .rg-spinner-shape-transform.error span {
        background: #ff4444;
    }

    .rg-spinner-shape-transform.warning span {
        background: #ff9f40;
    }

    .rg-spinner-shape-transform.info span {
        background: #0066ff;
    }

    .rg-spinner-shape-transform.success span {
        background: #54ca62;
    }

    .rg-spinner-shape-transform span {
        display: block;
        bottom: 0px;
        width: 15px;
        height: 15px;
        background: #e6e8ec;
        position: absolute;
    }

        .rg-spinner-shape-transform span:nth-child(1) {
            animation: preloader_2_1 1.5s infinite ease-in-out;
        }

        .rg-spinner-shape-transform span:nth-child(2) {
            left: 15px;
            animation: preloader_2_2 1.5s infinite ease-in-out;
        }

        .rg-spinner-shape-transform span:nth-child(3) {
            top: 0px;
            animation: preloader_2_3 1.5s infinite ease-in-out;
        }

        .rg-spinner-shape-transform span:nth-child(4) {
            top: 0px;
            left: 15px;
            animation: preloader_2_4 1.5s infinite ease-in-out;
        }

@keyframes preloader_2_1 {
    0% {
        transform: translateX(0px) translateY(0px) rotate(0deg);
        border-radius: 0px;
    }

    50% {
        transform: translateX(-50%) translateY(-50%) rotate(-180deg);
        border-radius: 20px;
        background: #e6e8ec;
    }

    80% {
        transform: translateX(0px) translateY(0px) rotate(-360deg);
        border-radius: 0px;
    }

    100% {
        transform: translateX(0px) translateY(0px) rotate(-360deg);
        border-radius: 0px;
    }
}

@keyframes preloader_2_2 {
    0% {
        transform: translateX(0px) translateY(0px) rotate(0deg);
        border-radius: 0px;
    }

    50% {
        transform: translateX(50%) translateY(-50%) rotate(180deg);
        border-radius: 20px;
        background: #e6e8ec;
    }

    80% {
        transform: translateX(0px) translateY(0px) rotate(360deg);
        border-radius: 0px;
    }

    100% {
        transform: translateX(0px) translateY(0px) rotate(360deg);
        border-radius: 0px;
    }
}

@keyframes preloader_2_3 {
    0% {
        transform: translateX(0px) translateY(0px) rotate(0deg);
        border-radius: 0px;
    }

    50% {
        transform: translateX(-50%) translateY(50%) rotate(-180deg);
        border-radius: 20px;
        background: #e6e8ec;
    }

    80% {
        transform: translateX(0px) translateY(0px) rotate(-360deg);
        border-radius: 0px;
    }

    100% {
        transform: translateX(0px) translateY(0px) rotate(-360deg);
        border-radius: 0px;
    }
}

@keyframes preloader_2_4 {
    0% {
        transform: translateX(0px) translateY(0px) rotate(0deg);
        border-radius: 0px;
    }

    50% {
        transform: translateX(50%) translateY(50%) rotate(180deg);
        border-radius: 20px;
        background: #e6e8ec;
    }

    80% {
        transform: translateX(0px) translateY(0px) rotate(360deg);
        border-radius: 0px;
    }

    100% {
        transform: translateX(0px) translateY(0px) rotate(360deg);
        border-radius: 0px;
    }
}

.rg-spinner-pendulum {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    height: 30px;
    width: 30px;
}

    .rg-spinner-pendulum.small {
        height: 20px;
        width: 20px;
    }

        .rg-spinner-pendulum.small:before {
            width: 20px;
            height: 20px;
            border-radius: 20px;
        }

        .rg-spinner-pendulum.small:after {
            width: 20px;
            height: 20px;
            border-radius: 20px;
        }

    .rg-spinner-pendulum.medium {
        height: 30px;
        width: 30px;
    }

        .rg-spinner-pendulum.medium:before {
            width: 30px;
            height: 30px;
            border-radius: 30px;
        }

        .rg-spinner-pendulum.medium:after {
            width: 30px;
            height: 30px;
            border-radius: 30px;
        }

    .rg-spinner-pendulum.large {
        height: 40px;
        width: 40px;
    }

        .rg-spinner-pendulum.large:before {
            width: 40px;
            height: 40px;
            border-radius: 40px;
        }

        .rg-spinner-pendulum.large:after {
            width: 40px;
            height: 40px;
            border-radius: 40px;
        }

    .rg-spinner-pendulum.extra-large {
        height: 60px;
        width: 60px;
    }

        .rg-spinner-pendulum.extra-large:before {
            width: 60px;
            height: 60px;
            border-radius: 60px;
        }

        .rg-spinner-pendulum.extra-large:after {
            width: 60px;
            height: 60px;
            border-radius: 60px;
        }

    .rg-spinner-pendulum.primary:before {
        background: #59388b;
    }

    .rg-spinner-pendulum.primary:after {
        background: #59388b;
    }

    .rg-spinner-pendulum.secondary:before {
        background: #7688aa;
    }

    .rg-spinner-pendulum.secondary:after {
        background: #7688aa;
    }

    .rg-spinner-pendulum.light:before {
        background: #e6e8ec;
    }

    .rg-spinner-pendulum.light:after {
        background: #e6e8ec;
    }

    .rg-spinner-pendulum.dark:before {
        background: #171e34;
    }

    .rg-spinner-pendulum.dark:after {
        background: #171e34;
    }

    .rg-spinner-pendulum.error:before {
        background: #ff4444;
    }

    .rg-spinner-pendulum.error:after {
        background: #ff4444;
    }

    .rg-spinner-pendulum.warning:before {
        background: #ff9f40;
    }

    .rg-spinner-pendulum.warning:after {
        background: #ff9f40;
    }

    .rg-spinner-pendulum.info:before {
        background: #0066ff;
    }

    .rg-spinner-pendulum.info:after {
        background: #0066ff;
    }

    .rg-spinner-pendulum.success:before {
        background: #54ca62;
    }

    .rg-spinner-pendulum.success:after {
        background: #54ca62;
    }

    .rg-spinner-pendulum:before {
        width: 30px;
        height: 30px;
        border-radius: 30px;
        content: '';
        position: absolute;
        background: #0066ff;
        animation: rg_pendulum_spinner_before 1.5s infinite ease-in-out;
    }

    .rg-spinner-pendulum:after {
        width: 30px;
        height: 30px;
        border-radius: 30px;
        content: '';
        position: absolute;
        background: #0066ff;
        left: 22px;
        animation: rg_pendulum_spinner_after 1.5s infinite ease-in-out;
    }

@keyframes rg_pendulum_spinner_before {
    0% {
        transform: translateX(0px) rotate(0deg);
    }

    50% {
        transform: translateX(100%) scale(0.5) rotate(260deg);
        background: #e6e8ec;
    }

    100% {
        transform: translateX(0px) rotate(0deg);
    }
}

@keyframes rg_pendulum_spinner_after {
    0% {
        transform: translateX(0px);
    }

    50% {
        transform: translateX(-100%) scale(0.5) rotate(-260deg);
        background: #e6e8ec;
    }

    100% {
        transform: translateX(0px);
    }
}

.rg-spinner-disk {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    width: 30px;
    height: 30px;
    animation: rg_disk_spinner 1.5s infinite linear;
}

    .rg-spinner-disk.small {
        width: 20px;
        height: 20px;
    }

        .rg-spinner-disk.small:before {
            width: 4px;
            height: 4px;
            top: 8px;
            left: 8px;
        }

        .rg-spinner-disk.small:after {
            width: 20px;
            height: 20px;
            border-top: 3px solid #0066ff;
            border-bottom: 3px solid #0066ff;
            border-left: 3px solid transparent;
            border-right: 3px solid transparent;
        }

    .rg-spinner-disk.medium {
        width: 30px;
        height: 30px;
    }

        .rg-spinner-disk.medium:before {
            width: 6px;
            height: 6px;
            top: 12px;
            left: 12px;
        }

        .rg-spinner-disk.medium:after {
            width: 30px;
            height: 30px;
            border-top: 4px solid #0066ff;
            border-bottom: 4px solid #0066ff;
            border-left: 4px solid transparent;
            border-right: 4px solid transparent;
        }

    .rg-spinner-disk.large {
        width: 50px;
        height: 50px;
    }

        .rg-spinner-disk.large:before {
            width: 10px;
            height: 10px;
            top: 20px;
            left: 20px;
        }

        .rg-spinner-disk.large:after {
            width: 50px;
            height: 50px;
            border-top: 6px solid #0066ff;
            border-bottom: 6px solid #0066ff;
            border-left: 6px solid transparent;
            border-right: 6px solid transparent;
        }

    .rg-spinner-disk.extra-large {
        width: 70px;
        height: 70px;
    }

        .rg-spinner-disk.extra-large:before {
            width: 16px;
            height: 16px;
            top: 27px;
            left: 27px;
        }

        .rg-spinner-disk.extra-large:after {
            width: 70px;
            height: 70px;
            border-top: 10px solid #0066ff;
            border-bottom: 10px solid #0066ff;
            border-left: 10px solid transparent;
            border-right: 10px solid transparent;
        }

    .rg-spinner-disk.primary:before {
        background: #59388b;
    }

    .rg-spinner-disk.primary:after {
        border-top-color: #59388b;
        border-bottom-color: #59388b;
    }

    .rg-spinner-disk.secondary:before {
        background: #7688aa;
    }

    .rg-spinner-disk.secondary:after {
        border-top-color: #7688aa;
        border-bottom-color: #7688aa;
    }

    .rg-spinner-disk.light:before {
        background: #e6e8ec;
    }

    .rg-spinner-disk.light:after {
        border-top-color: #e6e8ec;
        border-bottom-color: #e6e8ec;
    }

    .rg-spinner-disk.dark:before {
        background: #171e34;
    }

    .rg-spinner-disk.dark:after {
        border-top-color: #171e34;
        border-bottom-color: #171e34;
    }

    .rg-spinner-disk.error:before {
        background: #ff4444;
    }

    .rg-spinner-disk.error:after {
        border-top-color: #ff4444;
        border-bottom-color: #ff4444;
    }

    .rg-spinner-disk.warning:before {
        background: #ff9f40;
    }

    .rg-spinner-disk.warning:after {
        border-top-color: #ff9f40;
        border-bottom-color: #ff9f40;
    }

    .rg-spinner-disk.info:before {
        background: #0066ff;
    }

    .rg-spinner-disk.info:after {
        border-top-color: #0066ff;
        border-bottom-color: #0066ff;
    }

    .rg-spinner-disk.success:before {
        background: #54ca62;
    }

    .rg-spinner-disk.success:after {
        border-top-color: #54ca62;
        border-bottom-color: #54ca62;
    }

    .rg-spinner-disk:before {
        content: "";
        display: block;
        position: absolute;
        width: 6px;
        height: 6px;
        background: #0066ff;
        border-radius: 100%;
        top: 12px;
        left: 12px;
    }

    .rg-spinner-disk:after {
        position: absolute;
        width: 30px;
        height: 30px;
        border-top: 4px solid #0066ff;
        border-bottom: 4px solid #0066ff;
        border-left: 4px solid transparent;
        border-right: 4px solid transparent;
        border-radius: 100%;
        content: '';
        top: 0;
        left: 0;
    }

@keyframes rg_disk_spinner {
    to {
        transform: rotate(360deg);
    }
}

.rg-spinner-square {
    display: inline-block;
    vertical-align: middle;
    width: 30px;
    height: 30px;
    background-color: #0066ff;
    -webkit-animation: rg-rotate-square 1.2s infinite ease-in-out;
    animation: rg-rotate-square 1.2s infinite ease-in-out;
}

    .rg-spinner-square.small {
        width: 20px;
        height: 20px;
    }

    .rg-spinner-square.medium {
        width: 30px;
        height: 30px;
    }

    .rg-spinner-square.large {
        width: 45px;
        height: 45px;
    }

    .rg-spinner-square.extra-large {
        width: 60px;
        height: 60px;
    }

    .rg-spinner-square.primary {
        background: #59388b;
    }

    .rg-spinner-square.secondary {
        background: #7688aa;
    }

    .rg-spinner-square.light {
        background: #e6e8ec;
    }

    .rg-spinner-square.dark {
        background: #171e34;
    }

    .rg-spinner-square.error {
        background: #ff4444;
    }

    .rg-spinner-square.warning {
        background: #ff9f40;
    }

    .rg-spinner-square.info {
        background: #0066ff;
    }

    .rg-spinner-square.success {
        background: #54ca62;
    }

@keyframes rg-rotate-square {
    0% {
        transform: perspective(120px) rotateX(0deg) rotateY(0deg);
    }

    50% {
        transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg);
    }

    100% {
        transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
    }
}

.rg-spinner-chase {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    width: 30px;
    height: 30px;
    animation: rg-chase 2.5s infinite linear both;
}

    .rg-spinner-chase.small {
        width: 20px;
        height: 20px;
    }

    .rg-spinner-chase.medium {
        width: 30px;
        height: 30px;
    }

    .rg-spinner-chase.large {
        width: 45px;
        height: 45px;
    }

    .rg-spinner-chase.extra-large {
        width: 60px;
        height: 60px;
    }

    .rg-spinner-chase.primary .rg-chase-dot:before {
        background: #59388b;
    }

    .rg-spinner-chase.secondary .rg-chase-dot:before {
        background: #7688aa;
    }

    .rg-spinner-chase.light .rg-chase-dot:before {
        background: #e6e8ec;
    }

    .rg-spinner-chase.dark .rg-chase-dot:before {
        background: #171e34;
    }

    .rg-spinner-chase.error .rg-chase-dot:before {
        background: #ff4444;
    }

    .rg-spinner-chase.warning .rg-chase-dot:before {
        background: #ff9f40;
    }

    .rg-spinner-chase.info .rg-chase-dot:before {
        background: #0066ff;
    }

    .rg-spinner-chase.success .rg-chase-dot:before {
        background: #54ca62;
    }

    .rg-spinner-chase .rg-chase-dot {
        width: 100%;
        height: 100%;
        position: absolute;
        left: 0;
        top: 0;
        animation: rg-chase-dot 2.0s infinite ease-in-out both;
    }

        .rg-spinner-chase .rg-chase-dot:before {
            content: '';
            display: block;
            width: 25%;
            height: 25%;
            background-color: #0066ff;
            border-radius: 100%;
            animation: rg-chase-dot-before 2.0s infinite ease-in-out both;
        }

.rg-chase-dot:nth-child(1) {
    animation-delay: -1.1s;
}

.rg-chase-dot:nth-child(2) {
    animation-delay: -1.0s;
}

.rg-chase-dot:nth-child(3) {
    animation-delay: -0.9s;
}

.rg-chase-dot:nth-child(4) {
    animation-delay: -0.8s;
}

.rg-chase-dot:nth-child(5) {
    animation-delay: -0.7s;
}

.rg-chase-dot:nth-child(6) {
    animation-delay: -0.6s;
}

.rg-chase-dot:nth-child(1):before {
    animation-delay: -1.1s;
}

.rg-chase-dot:nth-child(2):before {
    animation-delay: -1.0s;
}

.rg-chase-dot:nth-child(3):before {
    animation-delay: -0.9s;
}

.rg-chase-dot:nth-child(4):before {
    animation-delay: -0.8s;
}

.rg-chase-dot:nth-child(5):before {
    animation-delay: -0.7s;
}

.rg-chase-dot:nth-child(6):before {
    animation-delay: -0.6s;
}

@keyframes rg-chase {
    100% {
        transform: rotate(360deg);
    }
}

@keyframes rg-chase-dot {
    80%, 100% {
        transform: rotate(360deg);
    }
}

@keyframes rg-chase-dot-before {
    50% {
        transform: scale(0.4);
    }

    100%, 0% {
        transform: scale(1);
    }
}

.rg-spinner-ripple {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    width: 30px;
    height: 30px;
}

    .rg-spinner-ripple.small {
        width: 20px;
        height: 20px;
    }

    .rg-spinner-ripple.medium {
        width: 30px;
        height: 30px;
    }

    .rg-spinner-ripple.large {
        width: 50px;
        height: 50px;
    }

    .rg-spinner-ripple.extra-large {
        width: 70px;
        height: 70px;
    }

    .rg-spinner-ripple.primary .rg-ripple-bounce-1, .rg-spinner-ripple.primary .rg-ripple-bounce-2 {
        background: #59388b;
    }

    .rg-spinner-ripple.secondary .rg-ripple-bounce-1, .rg-spinner-ripple.secondary .rg-ripple-bounce-2 {
        background: #7688aa;
    }

    .rg-spinner-ripple.light .rg-ripple-bounce-1, .rg-spinner-ripple.light .rg-ripple-bounce-2 {
        background: #e6e8ec;
    }

    .rg-spinner-ripple.dark .rg-ripple-bounce-1, .rg-spinner-ripple.dark .rg-ripple-bounce-2 {
        background: #171e34;
    }

    .rg-spinner-ripple.error .rg-ripple-bounce-1, .rg-spinner-ripple.error .rg-ripple-bounce-2 {
        background: #ff4444;
    }

    .rg-spinner-ripple.warning .rg-ripple-bounce-1, .rg-spinner-ripple.warning .rg-ripple-bounce-2 {
        background: #ff9f40;
    }

    .rg-spinner-ripple.info .rg-ripple-bounce-1, .rg-spinner-ripple.info .rg-ripple-bounce-2 {
        background: #0066ff;
    }

    .rg-spinner-ripple.success .rg-ripple-bounce-1, .rg-spinner-ripple.success .rg-ripple-bounce-2 {
        background: #54ca62;
    }

    .rg-spinner-ripple .rg-ripple-bounce-1, .rg-spinner-ripple .rg-ripple-bounce-2 {
        width: 100%;
        height: 100%;
        border-radius: 50%;
        background-color: #0066ff;
        opacity: 0.6;
        position: absolute;
        top: 0;
        left: 0;
        -webkit-animation: rg-ripple-bounce 2.0s infinite ease-in-out;
        animation: rg-ripple-bounce 2.0s infinite ease-in-out;
    }

    .rg-spinner-ripple .rg-ripple-bounce-2 {
        -webkit-animation-delay: -1.0s;
        animation-delay: -1.0s;
    }

@keyframes rg-ripple-bounce {
    0%, 100% {
        transform: scale(0);
    }

    50% {
        transform: scale(1);
    }
}

.rg-spinner-wave-rectangle {
    display: inline-block;
    vertical-align: middle;
    width: 30px;
    height: 30px;
    text-align: center;
    font-size: 9px;
}

    .rg-spinner-wave-rectangle.small {
        width: 20px;
        height: 20px;
        font-size: 7px;
    }

        .rg-spinner-wave-rectangle.small > div {
            width: 2px;
        }

    .rg-spinner-wave-rectangle.medium {
        width: 30px;
        height: 30px;
        font-size: 9px;
    }

        .rg-spinner-wave-rectangle.medium > div {
            width: 4px;
        }

    .rg-spinner-wave-rectangle.large {
        width: 40px;
        height: 40px;
        font-size: 10px;
    }

        .rg-spinner-wave-rectangle.large > div {
            width: 5px;
        }

    .rg-spinner-wave-rectangle.extra-large {
        width: 60px;
        height: 60px;
        font-size: 12px;
    }

        .rg-spinner-wave-rectangle.extra-large > div {
            width: 7px;
        }

    .rg-spinner-wave-rectangle.primary > div {
        background-color: #59388b;
    }

    .rg-spinner-wave-rectangle.secondary > div {
        background-color: #7688aa;
    }

    .rg-spinner-wave-rectangle.light > div {
        background-color: #e6e8ec;
    }

    .rg-spinner-wave-rectangle.dark > div {
        background-color: #171e34;
    }

    .rg-spinner-wave-rectangle.error > div {
        background-color: #ff4444;
    }

    .rg-spinner-wave-rectangle.warning > div {
        background-color: #ff9f40;
    }

    .rg-spinner-wave-rectangle.info > div {
        background-color: #0066ff;
    }

    .rg-spinner-wave-rectangle.success > div {
        background-color: #54ca62;
    }

    .rg-spinner-wave-rectangle > div {
        background-color: #0066ff;
        height: 100%;
        width: 4px;
        display: inline-block;
        -webkit-animation: rg--wave-rectangle-stretchdelay 1.2s infinite ease-in-out;
        animation: rg--wave-rectangle-stretchdelay 1.2s infinite ease-in-out;
    }

    .rg-spinner-wave-rectangle .rg-wave-rect-2 {
        -webkit-animation-delay: -1.1s;
        animation-delay: -1.1s;
    }

    .rg-spinner-wave-rectangle .rg-wave-rect-3 {
        -webkit-animation-delay: -1.0s;
        animation-delay: -1.0s;
    }

    .rg-spinner-wave-rectangle .rg-wave-rect-4 {
        -webkit-animation-delay: -0.9s;
        animation-delay: -0.9s;
    }

    .rg-spinner-wave-rectangle .rg-wave-rect-5 {
        -webkit-animation-delay: -0.8s;
        animation-delay: -0.8s;
    }

@keyframes rg--wave-rectangle-stretchdelay {
    0%, 40%, 100% {
        transform: scaleY(0.4);
    }

    20% {
        transform: scaleY(1);
    }
}

.rg-spinner-wave-circle {
    display: inline-block;
    vertical-align: middle;
    width: 60px;
    text-align: center;
}

    .rg-spinner-wave-circle.small {
        width: 40px;
    }

        .rg-spinner-wave-circle.small > div {
            width: 10px;
            height: 10px;
        }

    .rg-spinner-wave-circle.medium {
        width: 60px;
    }

        .rg-spinner-wave-circle.medium > div {
            width: 15px;
            height: 15px;
        }

    .rg-spinner-wave-circle.large {
        width: 80px;
    }

        .rg-spinner-wave-circle.large > div {
            width: 20px;
            height: 20px;
        }

    .rg-spinner-wave-circle.extra-large {
        width: 120px;
    }

        .rg-spinner-wave-circle.extra-large > div {
            width: 30px;
            height: 30px;
        }

    .rg-spinner-wave-circle.primary > div {
        background-color: #59388b;
    }

    .rg-spinner-wave-circle.secondary > div {
        background-color: #7688aa;
    }

    .rg-spinner-wave-circle.light > div {
        background-color: #e6e8ec;
    }

    .rg-spinner-wave-circle.dark > div {
        background-color: #171e34;
    }

    .rg-spinner-wave-circle.error > div {
        background-color: #ff4444;
    }

    .rg-spinner-wave-circle.warning > div {
        background-color: #ff9f40;
    }

    .rg-spinner-wave-circle.info > div {
        background-color: #0066ff;
    }

    .rg-spinner-wave-circle.success > div {
        background-color: #54ca62;
    }

    .rg-spinner-wave-circle > div {
        width: 15px;
        height: 15px;
        background-color: #0066ff;
        border-radius: 100%;
        display: inline-block;
        -webkit-animation: rg-wave-circle-bouncedelay 1.4s infinite ease-in-out both;
        animation: rg-wave-circle-bouncedelay 1.4s infinite ease-in-out both;
    }

    .rg-spinner-wave-circle .rg-wave-bounce-1 {
        -webkit-animation-delay: -0.32s;
        animation-delay: -0.32s;
    }

    .rg-spinner-wave-circle .rg-wave-bounce-2 {
        -webkit-animation-delay: -0.16s;
        animation-delay: -0.16s;
    }

@keyframes rg-wave-circle-bouncedelay {
    0%, 80%, 100% {
        transform: scale(0);
    }

    40% {
        transform: scale(1);
    }
}

.progress.small {
    height: 2px;
}

.progress.medium {
    height: 5px;
}

.progress.large {
    height: 10px;
}

.progress.extra-large {
    height: 20px;
}

.progress .progress-bar.primary {
    background: #59388b;
}

.progress .progress-bar.secondary {
    background: #7688aa;
}

.progress .progress-bar.light {
    background: #e6e8ec;
}

.progress .progress-bar.dark {
    background: #171e34;
}

.progress .progress-bar.error {
    background: #ff4444;
}

.progress .progress-bar.warning {
    background: #ff9f40;
}

.progress .progress-bar.info {
    background: #0066ff;
}

.progress .progress-bar.success {
    background: #54ca62;
}

.progress .progress-bar.progress-bar-striped {
    background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
    background-size: 1rem 1rem;
}

.rg-progress {
    display: flex;
    height: 1rem;
    overflow: hidden;
    border-radius: .25rem;
    background: #e6e8ec;
    font-size: 12px;
    font-size: 0.85714rem;
}

    .rg-progress.small {
        height: 2px;
    }

    .rg-progress.medium {
        height: 5px;
    }

    .rg-progress.large {
        height: 10px;
    }

    .rg-progress.extra-large {
        height: 20px;
    }

    .rg-progress .rg-progress-bar {
        display: flex;
        justify-content: space-between;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-direction: column;
        flex-direction: column;
        -ms-flex-pack: center;
        justify-content: center;
        color: #ffffff;
        text-align: center;
        white-space: nowrap;
        background-color: #0066ff;
        transition: width .6s ease;
    }

        .rg-progress .rg-progress-bar .caption {
            font-size: 12px;
            font-size: 0.85714rem;
        }

        .rg-progress .rg-progress-bar.primary {
            background: #59388b;
        }

        .rg-progress .rg-progress-bar.secondary {
            background: #7688aa;
        }

        .rg-progress .rg-progress-bar.light {
            background: #e6e8ec;
        }

        .rg-progress .rg-progress-bar.dark {
            background: #171e34;
        }

        .rg-progress .rg-progress-bar.error {
            background: #ff4444;
        }

        .rg-progress .rg-progress-bar.warning {
            background: #ff9f40;
        }

        .rg-progress .rg-progress-bar.info {
            background: #0066ff;
        }

        .rg-progress .rg-progress-bar.success {
            background: #54ca62;
        }

        .rg-progress .rg-progress-bar.progress-bar-striped {
            background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
            background-size: 1rem 1rem;
        }

.rg-tabs .nav-item .nav-link {
    font-weight: 500;
    color: #5d5d6d;
}

    .rg-tabs .nav-item .nav-link .material-icons, .rg-tabs .nav-item .nav-link .fa, .rg-tabs .nav-item .nav-link .fab, .rg-tabs .nav-item .nav-link .fas {
        vertical-align: middle;
        margin-right: 0.5rem;
        font-size: 20px;
        font-size: 1.42857rem;
    }

.rg-tabs .rg-outline-tabs .nav-link:hover {
    border-color: #e6e8ec;
    border-bottom-color: transparent;
}

.rg-tabs .rg-outline-tabs.primary {
    border-bottom: solid 1px #59388b;
}

    .rg-tabs .rg-outline-tabs.primary .nav-link.active {
        border-color: #59388b #59388b transparent;
    }

.rg-tabs .rg-outline-tabs.secondary {
    border-bottom: solid 1px #7688aa;
}

    .rg-tabs .rg-outline-tabs.secondary .nav-link.active {
        border-color: #7688aa #7688aa transparent;
    }

.rg-tabs .rg-outline-tabs.light {
    border-bottom: solid 1px #e6e8ec;
}

    .rg-tabs .rg-outline-tabs.light .nav-link.active {
        border-color: #e6e8ec #e6e8ec transparent;
    }

.rg-tabs .rg-outline-tabs.dark {
    border-bottom: solid 1px #171e34;
}

    .rg-tabs .rg-outline-tabs.dark .nav-link.active {
        border-color: #171e34 #171e34 transparent;
    }

.rg-tabs .rg-outline-tabs.error {
    border-bottom: solid 1px #ff4444;
}

    .rg-tabs .rg-outline-tabs.error .nav-link.active {
        border-color: #ff4444 #ff4444 transparent;
    }

.rg-tabs .rg-outline-tabs.warning {
    border-bottom: solid 1px #ff9f40;
}

    .rg-tabs .rg-outline-tabs.warning .nav-link.active {
        border-color: #ff9f40 #ff9f40 transparent;
    }

.rg-tabs .rg-outline-tabs.info {
    border-bottom: solid 1px #0066ff;
}

    .rg-tabs .rg-outline-tabs.info .nav-link.active {
        border-color: #0066ff #0066ff transparent;
    }

.rg-tabs .rg-outline-tabs.success {
    border-bottom: solid 1px #54ca62;
}

    .rg-tabs .rg-outline-tabs.success .nav-link.active {
        border-color: #54ca62 #54ca62 transparent;
    }

.rg-tabs .rg-pills .nav-link:hover {
    background-color: #e6e8ec;
}

.rg-tabs .rg-pills.primary .nav-link.active {
    background-color: #59388b;
    color: #ffffff;
}

.rg-tabs .rg-pills.secondary .nav-link.active {
    background-color: #7688aa;
    color: #ffffff;
}

.rg-tabs .rg-pills.light .nav-link.active {
    background-color: #e6e8ec;
    color: #ffffff;
}

.rg-tabs .rg-pills.dark .nav-link.active {
    background-color: #171e34;
    color: #ffffff;
}

.rg-tabs .rg-pills.error .nav-link.active {
    background-color: #ff4444;
    color: #ffffff;
}

.rg-tabs .rg-pills.warning .nav-link.active {
    background-color: #ff9f40;
    color: #ffffff;
}

.rg-tabs .rg-pills.info .nav-link.active {
    background-color: #0066ff;
    color: #ffffff;
}

.rg-tabs .rg-pills.success .nav-link.active {
    background-color: #54ca62;
    color: #ffffff;
}

.rg-tabs .rg-underline-tabs .nav-link {
    border: none;
    border-bottom: solid 1px #e6e8ec;
}

    .rg-tabs .rg-underline-tabs .nav-link:hover {
        border-color: transparent;
        border-bottom: solid 1px #e6e8ec;
    }

.rg-tabs .rg-underline-tabs.primary {
    border-bottom: none;
}

    .rg-tabs .rg-underline-tabs.primary .nav-link.active {
        color: #59388b;
        border-color: transparent;
        border-bottom: solid 1px #59388b;
    }

.rg-tabs .rg-underline-tabs.secondary {
    border-bottom: none;
}

    .rg-tabs .rg-underline-tabs.secondary .nav-link.active {
        color: #7688aa;
        border-color: transparent;
        border-bottom: solid 1px #7688aa;
    }

.rg-tabs .rg-underline-tabs.light {
    border-bottom: none;
}

    .rg-tabs .rg-underline-tabs.light .nav-link.active {
        color: #e6e8ec;
        border-color: transparent;
        border-bottom: solid 1px #e6e8ec;
    }

.rg-tabs .rg-underline-tabs.dark {
    border-bottom: none;
}

    .rg-tabs .rg-underline-tabs.dark .nav-link.active {
        color: #171e34;
        border-color: transparent;
        border-bottom: solid 1px #171e34;
    }

.rg-tabs .rg-underline-tabs.error {
    border-bottom: none;
}

    .rg-tabs .rg-underline-tabs.error .nav-link.active {
        color: #ff4444;
        border-color: transparent;
        border-bottom: solid 1px #ff4444;
    }

.rg-tabs .rg-underline-tabs.warning {
    border-bottom: none;
}

    .rg-tabs .rg-underline-tabs.warning .nav-link.active {
        color: #ff9f40;
        border-color: transparent;
        border-bottom: solid 1px #ff9f40;
    }

.rg-tabs .rg-underline-tabs.info {
    border-bottom: none;
}

    .rg-tabs .rg-underline-tabs.info .nav-link.active {
        color: #0066ff;
        border-color: transparent;
        border-bottom: solid 1px #0066ff;
    }

.rg-tabs .rg-underline-tabs.success {
    border-bottom: none;
}

    .rg-tabs .rg-underline-tabs.success .nav-link.active {
        color: #54ca62;
        border-color: transparent;
        border-bottom: solid 1px #54ca62;
    }

.rg-tabs .rg-box-pills .nav-link {
    border-radius: 0;
    background-color: #ffffff;
}

    .rg-tabs .rg-box-pills .nav-link:hover {
        background-color: #f0f0f0;
    }

.rg-tabs .rg-box-pills.primary .nav-link.active {
    background-color: #59388b;
    color: #ffffff;
}

.rg-tabs .rg-box-pills.secondary .nav-link.active {
    background-color: #7688aa;
    color: #ffffff;
}

.rg-tabs .rg-box-pills.light .nav-link.active {
    background-color: #e6e8ec;
    color: #ffffff;
}

.rg-tabs .rg-box-pills.dark .nav-link.active {
    background-color: #171e34;
    color: #ffffff;
}

.rg-tabs .rg-box-pills.error .nav-link.active {
    background-color: #ff4444;
    color: #ffffff;
}

.rg-tabs .rg-box-pills.warning .nav-link.active {
    background-color: #ff9f40;
    color: #ffffff;
}

.rg-tabs .rg-box-pills.info .nav-link.active {
    background-color: #0066ff;
    color: #ffffff;
}

.rg-tabs .rg-box-pills.success .nav-link.active {
    background-color: #54ca62;
    color: #ffffff;
}

.rg-tabs .rg-tabs-card .nav-link {
    background-color: #eff0f3;
    -webkit-transition: 0, all, 0.5s, ease;
    -moz-transition: 0, all, 0.5s, ease;
    -ms-transition: 0, all, 0.5s, ease;
    -o-transition: 0, all, 0.5s, ease;
    transition: 0, all, 0.5s, ease;
}

    .rg-tabs .rg-tabs-card .nav-link:hover {
        background-color: #f7f8f9;
    }

    .rg-tabs .rg-tabs-card .nav-link.active {
        background-color: #ffffff;
    }

.rg-tabs .rg-tabs-card.primary .nav-link.active {
    color: #59388b;
}

.rg-tabs .rg-tabs-card.secondary .nav-link.active {
    color: #7688aa;
}

.rg-tabs .rg-tabs-card.light .nav-link.active {
    color: #e6e8ec;
}

.rg-tabs .rg-tabs-card.dark .nav-link.active {
    color: #171e34;
}

.rg-tabs .rg-tabs-card.error .nav-link.active {
    color: #ff4444;
}

.rg-tabs .rg-tabs-card.warning .nav-link.active {
    color: #ff9f40;
}

.rg-tabs .rg-tabs-card.info .nav-link.active {
    color: #0066ff;
}

.rg-tabs .rg-tabs-card.success .nav-link.active {
    color: #54ca62;
}

.rg-tabs .tab-content {
    background-color: #ffffff;
    padding: 2rem 2rem;
}

.toast {
    position: fixed;
    z-index: 99999;
    color: #ffffff;
}

    .toast .toast-header {
        background: transparent;
        color: #ffffff;
    }

    .toast.primary {
        background: #59388b;
    }

    .toast.secondary {
        background: #7688aa;
    }

    .toast.light {
        background: #e6e8ec;
    }

    .toast.dark {
        background: #171e34;
    }

    .toast.error {
        background: #ff4444;
    }

    .toast.warning {
        background: #ff9f40;
    }

    .toast.info {
        background: #0066ff;
    }

    .toast.success {
        background: #54ca62;
    }

    .toast.top-right {
        top: 10px;
        right: 10px;
    }

    .toast.top-left {
        top: 10px;
        left: 10px;
    }

    .toast.bottom-right {
        bottom: 10px;
        right: 10px;
    }

    .toast.bottom-left {
        bottom: 10px;
        left: 10px;
    }

    .toast.top-middle {
        top: 10px;
        left: 0;
        right: 0;
        margin: auto;
    }

    .toast.full-width {
        width: calc(100% - 20px);
        max-width: calc(100% - 20px);
    }

.tooltip.primary .tooltip-inner {
    background: #59388b;
}

.tooltip.primary.bs-tooltip-top .arrow:before {
    border-top-color: #59388b;
}

.tooltip.primary.bs-tooltip-right .arrow:before {
    border-right-color: #59388b;
}

.tooltip.primary.bs-tooltip-bottom .arrow:before {
    border-bottom-color: #59388b;
}

.tooltip.primary.bs-tooltip-left .arrow:before {
    border-left-color: #59388b;
}

.tooltip.secondary .tooltip-inner {
    background: #7688aa;
}

.tooltip.secondary.bs-tooltip-top .arrow:before {
    border-top-color: #7688aa;
}

.tooltip.secondary.bs-tooltip-right .arrow:before {
    border-right-color: #7688aa;
}

.tooltip.secondary.bs-tooltip-bottom .arrow:before {
    border-bottom-color: #7688aa;
}

.tooltip.secondary.bs-tooltip-left .arrow:before {
    border-left-color: #7688aa;
}

.tooltip.light .tooltip-inner {
    background: #e6e8ec;
}

.tooltip.light.bs-tooltip-top .arrow:before {
    border-top-color: #e6e8ec;
}

.tooltip.light.bs-tooltip-right .arrow:before {
    border-right-color: #e6e8ec;
}

.tooltip.light.bs-tooltip-bottom .arrow:before {
    border-bottom-color: #e6e8ec;
}

.tooltip.light.bs-tooltip-left .arrow:before {
    border-left-color: #e6e8ec;
}

.tooltip.dark .tooltip-inner {
    background: #171e34;
}

.tooltip.dark.bs-tooltip-top .arrow:before {
    border-top-color: #171e34;
}

.tooltip.dark.bs-tooltip-right .arrow:before {
    border-right-color: #171e34;
}

.tooltip.dark.bs-tooltip-bottom .arrow:before {
    border-bottom-color: #171e34;
}

.tooltip.dark.bs-tooltip-left .arrow:before {
    border-left-color: #171e34;
}

.tooltip.error .tooltip-inner {
    background: #ff4444;
}

.tooltip.error.bs-tooltip-top .arrow:before {
    border-top-color: #ff4444;
}

.tooltip.error.bs-tooltip-right .arrow:before {
    border-right-color: #ff4444;
}

.tooltip.error.bs-tooltip-bottom .arrow:before {
    border-bottom-color: #ff4444;
}

.tooltip.error.bs-tooltip-left .arrow:before {
    border-left-color: #ff4444;
}

.tooltip.warning .tooltip-inner {
    background: #ff9f40;
}

.tooltip.warning.bs-tooltip-top .arrow:before {
    border-top-color: #ff9f40;
}

.tooltip.warning.bs-tooltip-right .arrow:before {
    border-right-color: #ff9f40;
}

.tooltip.warning.bs-tooltip-bottom .arrow:before {
    border-bottom-color: #ff9f40;
}

.tooltip.warning.bs-tooltip-left .arrow:before {
    border-left-color: #ff9f40;
}

.tooltip.info .tooltip-inner {
    background: #0066ff;
}

.tooltip.info.bs-tooltip-top .arrow:before {
    border-top-color: #0066ff;
}

.tooltip.info.bs-tooltip-right .arrow:before {
    border-right-color: #0066ff;
}

.tooltip.info.bs-tooltip-bottom .arrow:before {
    border-bottom-color: #0066ff;
}

.tooltip.info.bs-tooltip-left .arrow:before {
    border-left-color: #0066ff;
}

.tooltip.success .tooltip-inner {
    background: #54ca62;
}

.tooltip.success.bs-tooltip-top .arrow:before {
    border-top-color: #54ca62;
}

.tooltip.success.bs-tooltip-right .arrow:before {
    border-right-color: #54ca62;
}

.tooltip.success.bs-tooltip-bottom .arrow:before {
    border-bottom-color: #54ca62;
}

.tooltip.success.bs-tooltip-left .arrow:before {
    border-left-color: #54ca62;
}

.modal.rg-modal .modal-dialog .modal-content {
    background: #ffffff;
    box-shadow: 0 0 6px 0 rgba(0, 0, 0, 0.1);
    border: none;
    margin-bottom: 2rem;
    border-radius: 0.25rem;
    margin-bottom: 0;
}

    .modal.rg-modal .modal-dialog .modal-content.no-header > section {
        padding: 2rem 2rem;
    }

    .modal.rg-modal .modal-dialog .modal-content > header {
        margin-bottom: 2rem;
        padding: 2rem 2rem 0;
    }

        .modal.rg-modal .modal-dialog .modal-content > header:before {
            content: "";
            display: table;
            clear: both;
        }

        .modal.rg-modal .modal-dialog .modal-content > header:after {
            content: "";
            display: table;
            clear: both;
        }

        .modal.rg-modal .modal-dialog .modal-content > header h1, .modal.rg-modal .modal-dialog .modal-content > header h2, .modal.rg-modal .modal-dialog .modal-content > header h3, .modal.rg-modal .modal-dialog .modal-content > header h4, .modal.rg-modal .modal-dialog .modal-content > header h5, .modal.rg-modal .modal-dialog .modal-content > header h6 {
            margin-bottom: 0;
            color: #141727;
        }

            .modal.rg-modal .modal-dialog .modal-content > header h1 + span, .modal.rg-modal .modal-dialog .modal-content > header h2 + span, .modal.rg-modal .modal-dialog .modal-content > header h3 + span, .modal.rg-modal .modal-dialog .modal-content > header h4 + span, .modal.rg-modal .modal-dialog .modal-content > header h5 + span, .modal.rg-modal .modal-dialog .modal-content > header h6 + span {
                font-size: 14px;
                font-size: 1rem;
                color: #5d5d6d;
            }

    .modal.rg-modal .modal-dialog .modal-content > section {
        padding: 0 2rem 2rem;
    }

    .modal.rg-modal .modal-dialog .modal-content.equal-height {
        height: calc(100% - 2rem);
    }

    .modal.rg-modal .modal-dialog .modal-content > footer {
        display: flex;
        padding: 0 2rem 2rem;
    }

.code-highlight {
    background-color: #e6e8ec;
    padding: 2rem;
    position: relative;
}

    .code-highlight .rg-tabs .rg-underline-tabs .nav-link.active {
        background-color: transparent;
    }

    .code-highlight .rg-tabs .rg-underline-tabs .nav-link {
        border-bottom: solid 1px #ffffff;
    }

    .code-highlight .rg-tabs .tab-content {
        background-color: transparent;
        position: relative;
    }

    .code-highlight code {
        padding: 0;
        max-height: 300px;
    }

    .code-highlight .copy {
        position: absolute;
        right: 0;
        background-color: #d4dae5;
        padding: 5px 10px;
        top: 19px;
        color: #ffffff;
    }

.error-container {
    text-align: center;
    color: #5d5d6d;
    margin-top: 5rem;
    margin: auto;
}

    .error-container .error-code {
        font-size: 10rem;
        color: #ff9f40;
        font-weight: 700;
    }

.social-media-account .info label i {
    padding-right: 0.3rem;
}

/*****************************************/
/* Dropdown overwrite /*
/*****************************************/
.dropdown-menu {
    background: #ffffff;
    box-shadow: 0 0 6px 0 rgba(0, 0, 0, 0.1);
    border: none;
    margin-bottom: 2rem;
    border-radius: 0.25rem;
    padding: 0;
    margin: 0;
    -webkit-animation: anim-move-up .3s ease-out 1, anim-fade-in .3s ease-out 1;
    animation: anim-move-up .3s ease-out 1, anim-fade-in .3s ease-out 1;
}

    .dropdown-menu.no-header > section {
        padding: 2rem 2rem;
    }

    .dropdown-menu > header {
        margin-bottom: 2rem;
        padding: 2rem 2rem 0;
    }

        .dropdown-menu > header:before {
            content: "";
            display: table;
            clear: both;
        }

        .dropdown-menu > header:after {
            content: "";
            display: table;
            clear: both;
        }

        .dropdown-menu > header h1, .dropdown-menu > header h2, .dropdown-menu > header h3, .dropdown-menu > header h4, .dropdown-menu > header h5, .dropdown-menu > header h6 {
            margin-bottom: 0;
            color: #141727;
        }

            .dropdown-menu > header h1 + span, .dropdown-menu > header h2 + span, .dropdown-menu > header h3 + span, .dropdown-menu > header h4 + span, .dropdown-menu > header h5 + span, .dropdown-menu > header h6 + span {
                font-size: 14px;
                font-size: 1rem;
                color: #5d5d6d;
            }

    .dropdown-menu > section {
        padding: 0 2rem 2rem;
    }

    .dropdown-menu.equal-height {
        height: calc(100% - 2rem);
    }

    .dropdown-menu > footer {
        display: flex;
        padding: 0 2rem 2rem;
    }

    .dropdown-menu header {
        margin-bottom: 2rem;
    }

    .dropdown-menu section .dropdown-item {
        display: flex;
        padding: 0.5rem 0;
        -webkit-transition: 0.1s, all, 0.5s, ease-in-out;
        -moz-transition: 0.1s, all, 0.5s, ease-in-out;
        -ms-transition: 0.1s, all, 0.5s, ease-in-out;
        -o-transition: 0.1s, all, 0.5s, ease-in-out;
        transition: 0.1s, all, 0.5s, ease-in-out;
    }

        .dropdown-menu section .dropdown-item:hover, .dropdown-menu section .dropdown-item:active {
            background: #f7f8f9;
            color: #141727;
        }

        .dropdown-menu section .dropdown-item i.material-icons {
            margin-right: 1rem;
        }

        .dropdown-menu section .dropdown-item span {
            font-size: 0.88rem;
        }

    .dropdown-menu .dropdown-divider {
        margin: 0;
    }

    .dropdown-menu.dropdown-menu-action header:before {
        content: "";
        display: table;
        clear: both;
    }

    .dropdown-menu.dropdown-menu-action header:after {
        content: "";
        display: table;
        clear: both;
    }

    .dropdown-menu.dropdown-menu-action header h1 {
        float: left;
    }

    .dropdown-menu.dropdown-menu-action header span {
        float: right;
    }

    .dropdown-menu.dropdown-menu-highlight-header header {
        position: relative;
        border-top-left-radius: 0.25rem;
        border-top-right-radius: 0.25rem;
    }

        .dropdown-menu.dropdown-menu-highlight-header header h5 {
            color: #ffffff;
            margin-bottom: 1rem;
        }

        .dropdown-menu.dropdown-menu-highlight-header header span.material-icons {
            color: #ffffff;
        }

    .dropdown-menu.dropdown-menu-highlight-header.highlight-primary header {
        background: #59388b;
    }

    .dropdown-menu.dropdown-menu-highlight-header.highlight-secondary header {
        background: #7688aa;
    }

    .dropdown-menu.dropdown-menu-highlight-header.highlight-light header {
        background: #e6e8ec;
    }

    .dropdown-menu.dropdown-menu-highlight-header.highlight-dark header {
        background: #171e34;
    }

    .dropdown-menu.dropdown-menu-highlight-header.highlight-error header {
        background: #ff4444;
    }

    .dropdown-menu.dropdown-menu-highlight-header.highlight-warning header {
        background: #ff9f40;
    }

    .dropdown-menu.dropdown-menu-highlight-header.highlight-info header {
        background: #0066ff;
    }

    .dropdown-menu.dropdown-menu-highlight-header.highlight-success header {
        background: #54ca62;
    }

    .dropdown-menu.dropdown-sarch {
        min-width: 15rem;
    }

        .dropdown-menu.dropdown-sarch .form-group {
            margin: 0;
            display: flex;
            align-items: center;
        }

            .dropdown-menu.dropdown-sarch .form-group .form-control {
                border: none;
                padding: 1rem;
                height: auto;
                max-width: calc(100% - 2rem);
            }

                .dropdown-menu.dropdown-sarch .form-group .form-control:focus {
                    outline: none;
                    box-shadow: none;
                }

            .dropdown-menu.dropdown-sarch .form-group span {
                display: inline-block;
                width: 2rem;
            }

    .dropdown-menu.notification-dropdown {
        min-width: 24em;
    }

        .dropdown-menu.notification-dropdown.dropdown-menu-highlight-header header span.material-icons {
            font-size: 24px;
            font-size: 1.71429rem;
            color: #ffffff;
        }

    .dropdown-menu.message-dropdown {
        min-width: 24rem;
    }

/*****************************************/
/* Bread crum overwrite /*
/*****************************************/
.breadcrumb {
    background-color: transparent;
}

table.dataTable {
    font-size: 12px;
    font-size: 0.85714rem;
}

    table.dataTable thead th, table.dataTable tfoot th {
        border-bottom: solid 1px #e6e8ec;
    }

    table.dataTable tbody tr {
        background: #ffffff;
    }

        table.dataTable tbody tr:hover {
            background: #f4f5f7;
        }

        table.dataTable tbody tr td {
            padding: 0.5rem 0.6rem;
            vertical-align: middle;
        }

    table.dataTable.no-footer {
        border-bottom: solid 1px #e6e8ec;
    }

    table.dataTable.dtr-inline.collapsed > tbody > tr[role="row"] > td:first-child:before {
        left: 4px;
        top: 0;
        bottom: 0;
        margin: auto;
        display: block;
        position: absolute;
        border-radius: 0;
        box-shadow: none;
        box-sizing: content-box;
        text-align: center;
        text-indent: 0 !important;
        font-family: inherit;
        line-height: 14px;
        content: '';
        background-color: transparent;
        width: 0;
        height: 0;
        border-top: 6px solid transparent;
        border-bottom: 6px solid transparent;
        border-right: 0;
        border-left: 6px solid #0066ff;
    }

    table.dataTable.dtr-inline.collapsed > tbody > tr.parent > td:first-child:before {
        top: 0;
        bottom: 0;
        margin: auto;
        left: 0px;
        content: '';
        background-color: transparent;
        width: 0;
        height: 0;
        border-left: 6px solid transparent;
        border-right: 6px solid transparent;
        border-top: 6px solid #0066ff;
    }

.dataTables_wrapper {
    font-size: 12px;
    font-size: 0.85714rem;
}

    .dataTables_wrapper .dataTables_info {
        padding-top: 1em;
        line-height: 2.3em;
        font-weight: 400;
    }

    .dataTables_wrapper .dataTables_filter input {
        margin-left: 0;
    }

    .dataTables_wrapper .dataTables_paginate {
        padding-top: 1em;
    }

        .dataTables_wrapper .dataTables_paginate.paging_simple_numbers .paginate_button {
            color: #0066ff !important;
            font-weight: 400;
            border: none;
        }

            .dataTables_wrapper .dataTables_paginate.paging_simple_numbers .paginate_button.current {
                background: #0066ff;
                color: #ffffff !important;
                border: none;
                font-weight: 400;
            }

            .dataTables_wrapper .dataTables_paginate.paging_simple_numbers .paginate_button:hover {
                background: #f4f5f7;
                color: #0066ff !important;
                border: none;
            }

            .dataTables_wrapper .dataTables_paginate.paging_simple_numbers .paginate_button.disabled {
                color: #cce0ff;
            }

.jslider {
    margin: 2rem 0;
}

.jslider_plastic .jslider-bg {
    margin-top: 1px;
}

    .jslider_plastic .jslider-bg i {
        background: #e6e8ec;
    }

        .jslider_plastic .jslider-bg i.l {
            border-top-left-radius: 0.25rem;
            border-bottom-left-radius: 0.25rem;
        }

        .jslider_plastic .jslider-bg i.r {
            border-top-right-radius: 0.25rem;
            border-bottom-right-radius: 0.25rem;
        }

        .jslider_plastic .jslider-bg i.v {
            background: #0066ff;
        }

.jslider_plastic .jslider-pointer {
    background: #0066ff;
    border-radius: 100px;
    width: 1rem;
    height: 1rem;
}

.jslider_plastic .jslider-label {
    color: #141727;
}

.jslider_plastic .jslider-value {
    background: transparent;
}

#page-loader {
    position: fixed;
    font-family: Arial, Helvetica, sans-serif;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.8);
    z-index: 99999;
    height: 100%;
    width: 100%;
}

    #page-loader .conent {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 80%;
        padding: 20px;
        text-align: center;
    }

.rg-spinner-wave-circle {
    display: inline-block;
    vertical-align: middle;
    width: 60px;
    text-align: center;
}

    .rg-spinner-wave-circle.extra-large {
        width: 120px;
    }

        .rg-spinner-wave-circle.extra-large > div {
            width: 30px;
            height: 30px;
        }

    .rg-spinner-wave-circle.info > div {
        background-color: #0066ff;
    }

    .rg-spinner-wave-circle > div {
        width: 15px;
        height: 15px;
        background-color: #0066ff;
        border-radius: 100%;
        display: inline-block;
        -webkit-animation: rg-wave-circle-bouncedelay 1.4s infinite ease-in-out both;
        animation: rg-wave-circle-bouncedelay 1.4s infinite ease-in-out both;
    }

    .rg-spinner-wave-circle .rg-wave-bounce-1 {
        -webkit-animation-delay: -0.32s;
        animation-delay: -0.32s;
    }

    .rg-spinner-wave-circle .rg-wave-bounce-2 {
        -webkit-animation-delay: -0.16s;
        animation-delay: -0.16s;
    }

@keyframes rg-wave-circle-bouncedelay {
    0%, 80%, 100% {
        transform: scale(0);
    }

    40% {
        transform: scale(1);
    }
}
