﻿html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100vh;
    font-family: 'Graphik';
    background-color: #000000;
    font-size: 1rem;
}

* {
    margin: 0;
    padding: 0;
}

    *,
    *::before,
    *::after {
        box-sizing: border-box;
    }

.container-fluid {
    width: 100%;
    padding: 0;
    margin: 0;
}

.row {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-right: 0px;
    margin-left: 0px;
}

.required {
    color: red;
}

.has-error {
    border: 2px solid red;
}

.form-control {
    display: block;
    width: 100%;
    /* top: -5px;*/
    position: relative;
    height: calc(1.5em + .75rem + 2px);
    padding: .375rem .75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: black;
    background-color: #fff;
    background-clip: padding-box;
    border: none;
    border-radius: .25rem;
    transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}

    .form-control[select] {
        display: block;
        width: 100%;
        height: calc(1.5em + .75rem + 2px);
        padding: .375rem .75rem;
        font-size: 1rem;
        font-weight: 400;
        line-height: 1.5;
        color: black;
        background-color: none;
        background-clip: padding-box;
        border: 2px solid #A100FF;
        border-radius: .25rem;
        transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
    }

        .form-control[select]:focus {
            color: black;
            border: 2px solid #A100FF;
        }

        .form-control[select]:disabled {
            background-color: gray;
        }

option {
    font-weight: normal;
    display: block;
    word-break: normal;
    word-spacing: normal;
    min-height: 1.2em;
    padding: 0px 2px 1px;
    color: black;
    border-radius: 10px;
    border: 2px solid #A100FF;
    width: 100%;
}

    option:hover {
        /*  background-color: transparent;*/
        border: 2px solid #A100FF;
    }

.bg-form-control {
    color: black;
}

.form-control[disabled].bg-form-control, .form-control[readonly].bg-form-control, fieldset[disabled].bg-form-control {
    background-color: lightgray;
    color: black;
    top: 0;
}

.fieldset-bg-gray .form-control {
    /* background-color: #6E6E6E;*/
    background-color: #ececec;
}

input:checked ~ .checkmark {
    background-color: #A100FF;
}

input[type=text].form-control {
    display: block;
    width: 100%;
    height: calc(1.5em + .75rem + 2px);
    padding: .375rem .75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: black;
    /* background-color: #A100FF;*/
    background-clip: padding-box;
    border: none;
    border-radius: .25rem;
    transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}

input[type=number].form-control {
    display: block;
    width: 100%;
    height: calc(1.5em + .75rem + 2px);
    padding: .375rem .75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: black;
    /* background-color: #A100FF;*/
    background-clip: padding-box;
    border: none;
    border-radius: .25rem;
    transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}

input[type=checkbox], input[type=radio] {
    box-sizing: border-box;
    margin: 10px;
    width: 20px;
    height: 20px;
}

.file-upload {
    display: inline-block;
    background-color: #A100FF;
    color: white;
    font-family: sans-serif;
    border-radius: 0.3rem;
    cursor: pointer;
    padding: 10px;
    margin: 10px;
}

textarea.form-control {
    display: block;
    width: 98%;
    height: calc(2.5em + .75rem + 2px);
    padding: .375rem .75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: black;
    /* background-color: #A100FF;*/
    background-clip: padding-box;
    border: none;
    border-radius: .25rem;
    transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}


.fieldset-bg {
    border: 3px solid #A100FF;
    min-height: 70px;
}

fieldset {
    border: 2px solid #A100FF;
    padding: 2px;
    position: relative;
    border-radius: 10px;
    min-height: 60px;
}

legend {
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 1px;
    width: 35%;
    border-radius: 4px;
    padding: 0px 1px 0px 5px;
    margin-left: calc(17% - 45px - 10px);
}

ul.ui-autocomplete {
    z-index: 1100;
}
/* Home Page CSS*/

.modal {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1050;
    display: none;
    width: 100%;
    height: 100%;
    overflow: hidden;
    outline: 0;
}

.modal-content {
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 100%;
    pointer-events: auto;
    background: none;
    background-clip: padding-box;
    border-radius: .3rem;
    outline: 0;
    border: 3px solid #A100FF !important;
    padding-right: 20px;
    padding-left: 20px;
}

.modal-content-sub {
    box-shadow: 5px 10px 18px var(--gray);
    border-radius: 10px;
    background-color: white;
    margin: 0px;
    padding: 10px;
    position: relative;
}

.modal-header {
    display: -ms-flexbox;
    -ms-flex-align: start;
    align-items: center;
    -ms-flex-pack: justify;
    padding: .5rem .5rem;
    border-top-left-radius: .3rem;
    border-top-right-radius: .3rem;
    text-align: center;
    border: none;
}

.modal-title {
    margin-bottom: 0;
    font-size: 24px;
    padding-bottom: 15px;
    text-align: center;
    font-weight: bold;
    top: -10px;
    position: relative;
    padding: 5px;
}

.modal-body {
    position: relative;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    padding: 0px;
    margin: 0px;
}

.modal-close {
    background-color: #A100FF !important;
    border: 1px solid transparent;
    height: 40px !important;
    border-radius: 50%;
    width: 40px !important;
    float: right;
    font-size: 2rem !important;
    color: white;
    line-height: 1.5rem;
    top: -50px;
    right: -50px;
    position: relative;
    vertical-align: middle;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

    .modal-close:hover {
        color: white;
        transform: scale(1.1);
    }

.modal-footer {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: end;
    justify-content: flex-end;
    padding: 0 !important;
    border: 0 !important;
}

.left-square {
    height: 20px;
    width: 20px;
    background-color: #A100FF;
    border-radius: 5px;
    position: relative;
    top: -13px;
    left: 7%;
    z-index: 6;
}

.right-square {
    height: 20px;
    width: 20px;
    background-color: #A100FF;
    border-radius: 5px;
    bottom: -10px;
    right: -90%;
    position: relative;
    z-index: 6;
}

.btn-save {
    display: inline-block;
    font-weight: 400;
    color: white;
    text-align: center;
    vertical-align: middle;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-color: #A100FF;
    border: 1px solid transparent;
    padding: .375rem .75rem;
    font-size: 1rem;
    line-height: 1.5;
    border-radius: .25rem;
    transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}

    .btn-save:hover {
        text-decoration: none;
        color: white;
        transform: scale(1.1);
    }

.sort-filters li {
    list-style: none;
}

.idea-count-slider {
    text-align: center;
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
}

    .idea-count-slider div {
        display: inline;
        position: absolute;
        transform: rotateX(-90deg);
        opacity: 0;
        text-shadow: 0px 5px 5px rgba(0,0,0,.25);
        animation-timing-function: ease;
    }

        .idea-count-slider div:nth-child(1) {
            animation: rollDown 3s forwards infinite;
        }

/* .idea-count-slider div:nth-child(2) {
            animation: rollDown2 5s forwards infinite;
        }*/

/*.idea-count-slider-2 {
    text-align: center;
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
}

    .idea-count-slider-2 div {
        display: inline;
        position: absolute;
        transform: rotateX(-90deg);
        opacity: 0;
        text-shadow: 0px 5px 5px rgba(0,0,0,.25);
        animation-timing-function: ease;
    }

        .idea-count-slider-2 div:nth-child(1) {
            animation: rollDown 3s forwards infinite;
        }

        .idea-count-slider-2 div:nth-child(2) {
            animation: rollDown2 3s forwards infinite;
        }*/

.winning-msg {
    color: red;
}

@keyframes rollDown {
    0% {
        transform: rotateX(-90deg);
    }

    25% {
        transform: rotateX(0deg);
        opacity: 1;
    }

    50% {
        transform: rotateX(30deg);
        opacity: 0;
    }
}

@keyframes rollDown2 {
    50% {
        transform: rotateX(-90deg);
    }

    75% {
        transform: rotateX(0deg);
        opacity: 1;
    }

    100% {
        transform: rotateX(30deg);
        opacity: 0;
    }
}

@media screen and (min-width: 576px) and (max-width : 768.98px) {
    .back-to-top {
        display: none;
        position: fixed;
        bottom: 0px;
        right: 5px;
        z-index: 10000;
        border: none;
        outline: none;
        background-color: #7a00ff73;
        color: white;
        cursor: pointer;
        padding: 0px;
        border-radius: 50%;
        width: 50px;
    }

    .footer-link {
        padding-right: 35px;
    }

    .back-to-top:hover {
        background-color: #5555558c;
    }

    .first-row {
        padding-top: 38px;
    }

    h1 {
        font-size: 42px;
    }

    h2 {
        font-size: 40px;
    }

    h3 {
        font-size: 24px;
    }

    h4 {
        font-size: 16px;
    }

    .row-p1 {
        padding-left: 10px;
        padding-right: 10px;
    }

    .row-p2 {
        padding-left: 20px;
        padding-right: 20px;
    }

    .row-p3 {
        padding-left: 30px;
        padding-right: 30px;
    }

    .row-p4 {
        padding-left: 40px;
        padding-right: 40px;
    }

    .row-p5 {
        padding-left: 50px;
        padding-right: 50px;
    }

    .row-p6 {
        padding-left: 30px;
        padding-right: 30px;
    }

    .header-text {
        font-size: 40px;
        font-weight: bold;
        color: white;
        text-transform: uppercase;
        display: flex;
        justify-content: center;
    }

    .fa-list-bar:before {
        content: "\2261";
        font-size: 60px;
        font-weight: 600;
    }


    .footer {
        font-size: .8rem;
        background-color: #A100FF;
        line-height: 50px;
        color: white;
        font-weight: 600;
        font-size: 12px;
        z-index: 9;
        bottom: 0;
        position: sticky;
    }

        .footer a {
            background-color: #A100FF;
            line-height: 50px;
            color: white;
            font-weight: 600;
            padding-right: 10px;
            padding-left: 10px;
            align-items: center;
            font-size: 11px;
        }

    footer a:hover {
        background-color: #A100FF;
        line-height: 50px;
        color: white;
        font-weight: bolder;
        padding-right: 20px;
        padding-left: 20px;
        align-items: center;
        text-decoration: none;
    }

    /*    .brand-header {
        text-decoration: none;
        color: white;
        margin: auto;
        padding-left: 60px;
        padding-top: 10px;
        padding-bottom: 10px;
        font-size: 18px;
        font-weight: bold;
        display: flex;
    }

        .brand-header:hover {
            text-decoration: none;
            color: #A100FF;
        }*/


    .brand-logo {
        width: 40px;
        height: 40px;
        margin-right: 10px;
        color: white;
    }

    .brand-header {
        text-decoration: none;
        color: white;
        margin: auto;
        display: flex;
        font-size: 18px;
        color: white;
        text-transform: uppercase;
        font-weight: 600;
        transition: all 1s ease-in-out;
        position: relative;
        padding-top: 20px;
        /*padding-left: 60px;*/
    }

        .brand-header::before {
            text-decoration: none;
            content: attr(data-item);
            transition: all 1s ease-in-out;
            color: #A100FF;
            position: absolute;
            width: 0;
            overflow: hidden;
        }

        .brand-header:hover::before {
            width: 100%;
            text-decoration: none;
        }

        .brand-header:hover {
            text-decoration: none;
        }

    /*.home-left-scroll {
    height: 400px;
    margin-left: 45px;
    background-image: url("data:image/svg+xml,%3csvg width='100%25' height='100%25' xmlns='http://www.w3.org/2000/svg'%3e%3crect width='100%25' height='100%25' fill='none' rx='5' ry='5' stroke='%23A100FFFF' stroke-width='7' stroke-dasharray='5%2c 11' stroke-dashoffset='15' stroke-linecap='round'/%3e%3c/svg%3e");
    border-radius: 5px;
}*/

    btn {
        display: inline-block;
        font-weight: 400;
        color: white;
        text-align: center;
        vertical-align: middle;
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
        background-color: #A100FF;
        border: 1px solid transparent;
        padding: .375rem .75rem;
        font-size: 1rem;
        line-height: 1.5;
        border-radius: .25rem;
        transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
    }

    .btn-submit-idea {
        background-color: #A100FF;
        border-color: #A100FF;
        color: white;
        font-weight: bolder;
        margin: auto;
        padding: 10px;
    }

        .btn-submit-idea:hover {
            color: white;
            text-decoration: none;
            transform: scale(1.1);
            background-color: #A100FF;
        }

        .btn-submit-idea:focus, .btn-submit-idea.focus {
            outline: 0;
            box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
        }

    .btn-view-more {
        background-color: #A100FF;
        border-color: #A100FF;
        color: white;
        font-weight: bolder;
        margin: auto;
        padding: 10px;
    }

        .btn-view-more:hover {
            color: #212529;
            text-decoration: none;
        }

        .btn-view-more:focus, .btn-view-more.focus {
            outline: 0;
            box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
        }

    .img-soft-hand {
        color: rgba(12,0,40,.075);
    }

    .btn-submit-idea-text {
        width: min-content;
        color: white;
        /*padding-bottom: 60px;*/
        font-weight: bolder;
    }

    /*    .navbar-expand .navbar-nav .nav-link {
        padding-right: 1.2rem;
        padding-left: 1.2rem;
    }*/

    .nav-link {
        display: block;
        padding: .5rem 1rem;
        color: white !important;
        font-weight: bold;
    }

        .nav-link:hover {
            display: block;
            padding: .5rem 1rem;
            color: white !important;
            font-weight: bold;
            /*background-color: #A100FF;*/
        }

    .ideas-title {
        color: white;
        margin: 10px;
        left: 60px;
        text-align: center;
        padding: 10px;
        width: 170px;
        background-image: url("data:image/svg+xml,%3csvg width='100%25' height='100%25' xmlns='http://www.w3.org/2000/svg'%3e%3crect width='100%25' height='100%25' fill='none' rx='5' ry='5' stroke='%23A100FFFF' stroke-width='7' stroke-dasharray='5%2c 11' stroke-dashoffset='15' stroke-linecap='round'/%3e%3c/svg%3e");
        border-radius: 5px;
    }

        .ideas-title .idea-count-slider div {
            font-size: 24px;
            font-weight: 700;
        }

    .ideas-title-2 .idea-count-slider-2 div {
        font-size: 24px;
        font-weight: 700;
    }

    .ideas-title span {
        font-size: 16px;
        font-weight: 400;
    }

    .ideas-title-row {
        margin-left: 30px !important;
        margin-right: 30px !important;
    }

    .ideas-title-2 {
        color: white;
        margin: auto auto 10px auto;
        text-align: center;
        padding: 10px;
        background-image: url("data:image/svg+xml,%3csvg width='100%25' height='100%25' xmlns='http://www.w3.org/2000/svg'%3e%3crect width='100%25' height='100%25' fill='none' rx='5' ry='5' stroke='%23A100FFFF' stroke-width='7' stroke-dasharray='5%2c 11' stroke-dashoffset='15' stroke-linecap='round'/%3e%3c/svg%3e");
        border-radius: 5px;
    }

        .ideas-title-2 span {
            font-size: 16px;
            font-weight: 500;
        }

            .ideas-title-2 span a {
                color: white;
                cursor: pointer;
                text-decoration: none;
            }

                .ideas-title-2 span a:hover {
                    color: white;
                    cursor: pointer;
                    text-decoration: underline;
                }

    .card-header1 {
        font-size: 50px;
    }

    .card-header2 {
        font-size: 40px;
    }

    .idea-count-header {
        font-size: 25px;
        color: white;
        font-weight: bold;
    }

    .idea-count {
        font-size: 24px;
    }

    /* Level 1 Card */
    .level-1-card {
        background-color: #EFEFEF;
        border-radius: 20px;
        min-width: 200px;
        max-width: 200px;
        min-height: 180px;
        max-height: 182px;
        padding: 5px;
    }

        .level-1-card:hover {
            cursor: pointer;
        }

        .level-1-card .card-type {
            font-size: 10px;
            margin-top: 10px;
            margin-left: 10px;
            color: #6E6E6E;
            font-weight: 600;
        }

        .level-1-card .card-body {
            font-size: 12px;
            margin: 10px 10px 0px 10px;
            padding: 0;
            font-weight: bold;
            text-transform: uppercase;
            /*display: inline-block;*/
            min-height: 120px;
            max-height: 120px;
        }

        .level-1-card .name-card {
            width: 160px;
            height: 45px;
            font-size: 8px;
            background-color: #c577f6;
            border-radius: 5px;
            filter: drop-shadow(0px 4px 4px #D8AEF2 1);
            position: relative;
            top: -1px;
            left: 13px;
            padding: 10px;
            z-index: 3;
        }

            .level-1-card .name-card .user-image {
                float: left;
                width: 40px;
                height: 40px;
                display: block;
                margin-right: 5px;
            }

                .level-1-card .name-card .user-image img {
                    border-radius: 50%;
                    width: 40px;
                    height: 40px;
                }

                    .level-1-card .name-card .user-image img:hover {
                        transform: scale(1);
                    }

            .level-1-card .name-card .user-name {
                padding-top: 5px;
                font-size: 10px;
            }

                .level-1-card .name-card .user-name div:first-child {
                    color: #6E6E6E;
                    font-weight: bold;
                    font-size: 8px;
                }

                .level-1-card .name-card .user-name div:last-child {
                    font-weight: bold;
                    word-break: break-all;
                    font-size: 8px;
                }


    /* Level 2 Card */
    .level-2-card {
        width: 180px;
        height: 160px;
        background-color: #EFEFEF;
        border-radius: 20px;
        padding: 10px;
        z-index: 2;
    }

        .level-2-card:hover {
            cursor: pointer;
        }

        .level-2-card .card-type {
            font-size: 10px;
        }

        .level-2-card .card-body {
            font-size: 10px;
            margin-top: 10px;
            padding: 0;
            font-weight: bold;
            text-transform: uppercase;
            /*display: inline-block;*/
            min-height: 80px;
            max-height: 80px;
        }

        .level-2-card .name-card {
            width: 145px;
            height: 45px;
            font-size: 8px;
            background-color: #c577f6;
            border-radius: 5px;
            filter: drop-shadow(0px 4px 4px #D8AEF2 1);
            position: relative;
            top: 18px;
            left: 7px;
            padding: 5px;
        }

            .level-2-card .name-card .user-image {
                float: left;
                width: 40px;
                height: 40px;
                display: block;
                margin-right: 5px;
            }

                .level-2-card .name-card .user-image img {
                    border-radius: 50%;
                    width: 40px;
                    height: 40px;
                }

                    .level-2-card .name-card .user-image img:hover {
                        transform: scale(1);
                    }

            .level-2-card .name-card .user-name {
                padding-top: 5px;
                font-size: 10px;
            }

                .level-2-card .name-card .user-name div:first-child {
                    color: #6E6E6E;
                    font-size: 8px;
                }

                .level-2-card .name-card .user-name div:last-child {
                    font-weight: bold;
                    font-size: 8px;
                }


    /* Level 3 Card */
    .level-3-card {
        min-width: 238px;
        max-width: 238px;
        min-height: 192px;
        max-height: 192px;
        background-color: #EFEFEF;
        border-radius: 20px;
        padding: 10px;
        z-index: 1;
    }

        .level-3-card:hover {
            cursor: pointer;
        }

        .level-3-card .card-type {
        }

        .level-3-card .card-body {
            font-size: 16px;
            margin-top: 10px;
            padding: 0;
            font-weight: bold;
            text-transform: uppercase;
            /*  display: inline-block;*/
        }

        .level-3-card .name-card {
            display: none;
        }

            .level-3-card .name-card .user-image {
                display: none;
            }

                .level-3-card .name-card .user-image img {
                    display: none;
                }

            .level-3-card .name-card .user-name {
                display: none;
            }


    /* latest-ldea idea Card */
    .latest-ldea-card {
        min-width: 200px;
        max-width: 200px;
        min-height: 165px;
        max-height: 165px;
        background-color: #EFEFEF;
        border-radius: 20px;
        padding: 10px;
        z-index: 1;
        position: relative;
        margin: 15px;
    }

        .latest-ldea-card:hover {
            cursor: pointer;
        }

        .latest-ldea-card .card-type {
            font-size: 10px;
        }

        .latest-ldea-card .card-body {
            font-size: 14px;
            margin-top: 10px;
            padding: 0;
            font-weight: bold;
            text-transform: uppercase;
            word-wrap: break-word;
            height: 90px;
        }

        .latest-ldea-card .name-card {
            display: flex;
            font-size: 10px;
            background-color: #c577f6;
            border-bottom-left-radius: 20px;
            border-bottom-right-radius: 20px;
            padding: 10px 10px 10px 10px;
            width: 200px;
            height: 50px;
            left: -10px;
            position: relative;
            word-break: break-all;
        }

            .latest-ldea-card .name-card .user-image {
                display: block;
                width: 30px;
                height: 30px;
                margin-right: 5px;
            }

                .latest-ldea-card .name-card .user-image img {
                    border-radius: 50%;
                    width: 35px;
                    height: 35px;
                    position: relative;
                    left: -4px;
                }

                    .latest-ldea-card .name-card .user-image img:hover {
                        transform: scale(1);
                    }

            .latest-ldea-card .name-card .user-name div:first-child {
                color: #6E6E6E;
            }

            .latest-ldea-card .name-card .user-name div:last-child {
                font-weight: bold;
                text-transform: lowercase;
            }

    .line-break {
        flex-basis: 100%;
        height: 0;
    }

    .display-card {
        width: 170px;
        height: 115px;
        border-radius: 10px;
        border: 5px dashed #A100FF;
    }

    .btn {
        width: 150px;
        height: 45px;
        background-color: #A100FF;
        font-size: 16px;
        font-weight: 400;
    }

    .btn-sm {
        font-weight: 500;
        padding: 5px;
        width: 90px;
    }

        .btn-sm:hover {
            transform: scale(1.1);
        }

    .submit-idea-container {
        display: flex;
        padding-top: 25px;
    }

    .navbar-close {
        font-size: 1.5rem;
        padding: 5px;
        color: white;
        float: right;
        padding-right: 5px;
        padding-top: 5px;
        position: relative;
    }

    .gradient-container-1 {
        height: 430px;
        background: linear-gradient(to right, rgba(0,0,0,100), rgba(161,0,255,10));
        margin-top: 20px;
    }

    .gradient-container-2 {
        height: 200px;
        background: linear-gradient(to top, rgba(0,0,0,100), rgba(161,0,255,10));
        position: relative;
        top: -60px;
    }

    .gradient-container-3 {
        min-height: 230px;
        background: linear-gradient(to bottom, rgba(0,0,0,100), rgba(135,8,209,10));
        position: relative;
        top: -120px;
    }

    .latest-ldea-idea-bg {
        position: relative;
        background-image: linear-gradient(to right, rgba(0,0,0,1), rgba(0,0,0,0));
        top: -204px;
        height: 430px;
        width: 43.5%;
        z-index: 3;
        top: -643px;
    }

    .latest-ldea-idea-text {
        position: relative;
        color: white;
        font-size: 36px;
        width: 300px;
        top: 130px;
        bottom: 160px;
        left: 35px;
        font-weight: bold;
        z-index: 5;
    }

    .idea-bulb {
        position: relative;
        font-size: 6rem;
        color: #A100FF;
        top: -80px;
        left: 275px;
    }

    .center-line {
        height: 70px;
        position: absolute;
        left: 50%;
        border: 5px dashed #A100FF;
        border-left: 0;
    }



    .automation-header {
        font-size: 40px;
        font-weight: bold;
        color: white;
        text-transform: uppercase;
        padding-left: 100px;
        position: relative;
        top: -90px;
        left: -15px;
    }

    .success-stories-header {
        font-size: 30px;
        font-weight: bold;
        color: white;
        text-transform: uppercase;
        padding-left: 100px;
        position: relative;
        top: -140px;
        width: 100px;
        left: -52px;
    }

    .pattern {
        position: relative;
    }

    .automation-pattern {
        float: right;
        position: relative;
        right: 10px;
        top: 100px;
        right: -463px;
    }

    .automation-text {
        color: white;
        position: relative;
        top: 60px;
        left: 100px;
        width: 700px;
    }

    .automation-robot {
        background-color: aqua;
        width: 480px;
        height: 396px;
        position: relative;
        float: right;
        right: 100px;
        border-radius: 10px;
        top: -240px;
        background: linear-gradient(to bottom, #4a838d, #12d9d9);
        z-index: 2;
    }

    .dot {
        width: 10px;
        height: 9px;
        background-color: #A100FF;
        border-radius: 50%;
        display: inline-block;
        margin: 5px;
    }

    .btn-view-more-success {
        background-color: #A100FF;
        border-color: white;
        color: white;
        font-weight: 400;
        margin: auto;
        position: relative;
        text-align: center;
        vertical-align: middle;
        display: inline-block;
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
        border: 1px solid transparent;
        padding: .375rem .75rem;
        font-size: 1rem;
        line-height: 1.5;
        border-radius: .25rem;
        transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
    }

        .btn-view-more-success:hover {
            color: white;
            transform: scale(1.1);
            text-decoration: none;
        }

    .top-innovations-container {
        height: 400px;
        margin: 0 25px 25px 25px;
        background-image: url("data:image/svg+xml,%3csvg width='100%25' height='100%25' xmlns='http://www.w3.org/2000/svg'%3e%3crect width='100%25' height='100%25' fill='none' rx='5' ry='5' stroke='%23A100FFFF' stroke-width='7' stroke-dasharray='5%2c 11' stroke-dashoffset='15' stroke-linecap='round'/%3e%3c/svg%3e");
        border-radius: 5px;
        position: relative;
    }

    ul {
        padding: 0;
        margin: 0;
    }




    btn-idea {
        display: inline-block;
        font-weight: 400;
        color: white;
        text-align: center;
        vertical-align: middle;
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
        background-color: #A100FF;
        border: 1px solid transparent;
        /*padding: .375rem .75rem;*/
        font-size: 1rem;
        line-height: 1.5;
        border-radius: .25rem;
        transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
    }
    /**/
    /*Idea details*/
    .idea-info-bg {
        background-color: #EFEFEF;
        border-radius: 5px;
        font-size: 12px;
        margin-top: 10px;
        margin-bottom: 10px;
        padding: 5px;
        word-wrap: break-word;
    }

        .idea-info-bg span {
            color: #EFEFEF;
            font-size: 12px;
            padding: 10px;
        }

    .idea-info-row {
        flex: 0 0 50%;
        max-width: 50%;
        padding: 10px 10px 0px 10px;
    }

    .idea-info-bg label {
        color: #A100FF;
        font-size: 14px;
        font-weight: bold;
        text-transform: uppercase;
        min-width: 160px;
        /*max-width: 160px;*/
    }

    .idea-info-display {
        min-height: 80px;
        background-image: url("data:image/svg+xml,%3csvg width='100%25' height='100%25' xmlns='http://www.w3.org/2000/svg'%3e%3crect width='100%25' height='100%25' fill='none' rx='5' ry='5' stroke='%23A100FFFF' stroke-width='7' stroke-dasharray='5%2c 11' stroke-dashoffset='15' stroke-linecap='round'/%3e%3c/svg%3e");
        border-radius: 5px;
        font-size: 24px;
        font-weight: bold;
        display: flex;
        position: relative;
        left: 20px;
    }

        .idea-info-display div:first-child {
            float: left;
            margin: auto;
            text-align: center;
        }

        .idea-info-display div:last-child {
            float: right;
            margin: auto;
            text-align: left;
        }

        .idea-info-display div {
        }

    .btn-idea-type {
        background-color: #A100FF;
        border-color: none;
        color: white;
        font-weight: 500;
        height: 40px;
        width: 120px;
        border-radius: 7px;
        margin: 20px;
        font-size: 14px;
    }

        .btn-idea-type:hover {
            color: white;
            text-decoration: none;
            transform: scale(1.1);
            border-color: none;
            background-color: #A100FF;
        }

        .btn-idea-type:focus, .btn-idea-type.focus {
            outline: 0;
            box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
        }


    .leader-thumbnail {
        min-width: 65px;
        max-width: 65px;
        min-height: 65px;
        max-height: 65px;
        border-radius: 50%;
        padding: 10px;
        margin: 0px;
    }

        .leader-thumbnail:hover {
            transform: scale(1.5);
        }

    .wizard-info {
        text-transform: uppercase;
    }

        .wizard-info:active {
            text-transform: uppercase;
        }

        .wizard-info:disabled {
            text-transform: uppercase;
        }



    .idea-card {
        height: 80%;
        width: 85%;
        text-transform: uppercase;
        border-radius: 10px;
        background-color: white;
    }

        .idea-card:hover {
            cursor: pointer;
        }

    .idea-type {
        padding: 10px;
        font-size: 16px;
        color: #6E6E6E;
        font-weight: 500;
    }

    .btn-link {
        font-weight: 500;
        color: #A100FF;
        text-decoration: none;
        font-size: 14px;
    }

    .custom-file-input {
        width: 50px;
        cursor: pointer;
        background-color: #A100FF;
        color: white;
        border-radius: 10px;
        opacity: 1;
        padding: 10px;
        margin-left: 40px;
        font-size: 14px;
    }


    .action-icons {
        color: black;
        font-size: 25px;
        padding: 15px;
    }

        .action-icons:hover {
            transform: scale(1.1);
        }

    .succss-story-container {
        min-height: 370px;
        max-height: 370px;
    }

    .latest-idea-container {
        position: relative;
        top: -210px;
        justify-content: space-evenly;
        opacity: .6;
        padding: 10px 20px 10px 10px;
    }


    .success-story-heading {
        text-transform: uppercase;
        font-size: 24px;
        font-weight: bold;
        padding-left: 20px;
        color: #A100FF;
        text-align: center;
    }

    .success-story-key-objective-header {
        text-transform: uppercase;
        font-size: 15px;
        font-weight: bold;
        padding: 5px 9px 5px 18px;
        color: #A100FF;
    }

    .success-story-key-objective-text {
        padding: 5px 20px 5px 20px;
        text-align: justify;
        font-size: 14px;
    }

    .success-story-key-contract-header {
        text-transform: uppercase;
        font-size: 15px;
        color: white;
        font-weight: bold;
        padding: 5px 5px 5px 20px;
    }

    .success-story-key-contract-icon {
        float: right;
        font-size: 15px;
        padding-left: 15px;
        padding-top: 5px;
    }

    .top-innov-head1 {
        text-transform: uppercase;
        font-size: 30px;
        font-weight: bold;
        text-align: left;
        padding-left: 15px;
    }

    .top-innov-head2 {
        text-transform: uppercase;
        font-size: 18px;
        padding-left: 15px;
        text-align: left;
    }

    .top-innov-head3 {
        font-size: 26px;
        padding-left: 15px;
        text-align: left;
    }

    .top-innov-carousel-slide {
        height: 415px;
    }

    .top-innov-carousel-inner {
        color: white;
        margin: auto;
        position: relative;
        top: -60px;
        text-align: center;
    }

    .success-story-pattern {
        float: right;
        position: relative;
        top: -180px;
        right: -65px;
        width: 205px;
        overflow: overlay;
    }

    .latest-idea-tail {
        width: 38.9%;
    }

        .latest-idea-tail:nth-child(n+5) {
            display: none;
        }

    /* My Idea CSS*/
    .idea-tail {
        background-color: black;
        min-height: 400px;
        max-height: 400px;
        float: left;
        width: 50%;
    }

        .idea-tail.active {
            background-color: #A100FF;
        }

        .idea-tail .draft-tail-idea-count {
            color: #A100FF;
        }

        .idea-tail.active .draft-tail-idea-count {
            color: black;
        }

    .draft-tail-details {
        padding-top: 85px;
        font-size: 36px;
        font-weight: bold;
        color: white;
        text-transform: uppercase;
        text-align: center
    }

        .draft-tail-details .fa-bookmark-o {
            font-size: 70px;
            color: white;
            padding-left: 35px;
        }

        .draft-tail-details .fa-star-o {
            font-size: 29px;
            color: white;
            position: relative;
            left: -46px;
            top: -22px;
        }

        .draft-tail-details .fa-desktop {
            font-size: 60px;
            padding-left: 50px;
        }


        .draft-tail-details .fa-file-o {
            font-size: 50px;
            color: white;
            transform: rotateY( 180deg );
            position: relative;
            left: -58px;
            top: -30px;
        }

        .draft-tail-details .fa-long-arrow-up {
            font-size: 13px;
            color: white;
            left: -86px;
            top: -35px;
            position: relative;
        }


        .draft-tail-details .draft-tail-text {
        }

    .idea-tail .draft-tail-idea-count {
        font-size: 8rem;
        font-weight: bold;
        text-align: center;
        position: relative;
        top: -50px;
    }

    .my-idea-display-card {
        color: white;
        margin: 10px;
        left: 60px;
        text-align: center;
        background-image: url("data:image/svg+xml,%3csvg width='100%25' height='100%25' xmlns='http://www.w3.org/2000/svg'%3e%3crect width='100%25' height='100%25' fill='none' rx='5' ry='5' stroke='%23A100FFFF' stroke-width='7' stroke-dasharray='5%2c 11' stroke-dashoffset='15' stroke-linecap='round'/%3e%3c/svg%3e");
        border-radius: 5px;
    }

        .my-idea-display-card.card-small {
            width: 200px;
            height: 120px;
            padding: 10px;
        }

        .my-idea-display-card.card-medium {
            width: 770px;
            height: 125px;
            padding: 10px;
        }

    .my-idea-display-card-count {
        text-transform: uppercase;
        color: white;
        text-align: center;
        font-size: 26px;
        font-weight: 600;
    }

    .my-idea-display-card-text {
        text-transform: uppercase;
        color: white;
        text-align: center;
        padding: 10px;
    }

    .myidea-contest-msg-container {
        float: left;
        width: 70%;
        padding-top: 0px;
    }

        .myidea-contest-msg-container div:first-child {
            text-transform: uppercase;
            padding-left: 15px;
            text-align: left;
            font-weight: 500;
            font-size: 10px;
        }

        .myidea-contest-msg-container div:nth-child(2) {
            text-transform: uppercase;
            color: white;
            text-align: left;
            font-size: 20px;
            padding-left: 15px;
            font-weight: 600;
        }

        .myidea-contest-msg-container div:last-child {
            color: gray;
            text-align: left;
            padding-left: 15px;
            font-size: 10px;
        }

    .myidea-contest-schedule-container {
        float: right;
        width: 30%;
        padding-top: 10px;
    }

        .myidea-contest-schedule-container div:first-child {
            text-transform: uppercase;
            color: gray;
            text-align: center;
            padding: 10px;
            font-weight: 600;
            font-size: 12px;
        }

        .myidea-contest-schedule-container div:last-child {
            text-transform: uppercase;
            color: white;
            text-align: center;
            font-size: 16px;
            padding: 10px 10px 10px 15px;
            font-weight: 600;
        }

    .myidea-contest-container-split {
        height: 115px;
        position: absolute;
        left: 68%;
        margin-left: -3px;
        border: 5px dashed #A100FF;
        border-left: 0;
        top: 15px;
    }

    .btn-export {
        border: 2px solid #A100FF;
        background: transparent;
        color: #A100FF;
        padding: 5px;
        border-radius: 5px;
        width: 130px;
        font-size: 14px;
    }

        .btn-export:hover {
            border: 2px solid #A100FF;
            background-color: #A100FF;
            color: white;
            transform: scale(1,1)
        }

    .btn-more-filter {
        border: 2px solid #A100FF;
        background: transparent;
        color: #A100FF;
        padding: 5px;
        border-radius: 5px;
        width: 130px;
        font-size: 14px;
        height: 38px;
    }

        .btn-more-filter:hover {
            color: white;
            transform: scaleY(1.1);
            font-weight: bold;
            background-color: #A100FF;
            border: 2px solid #A100FF;
        }

        .btn-more-filter.active {
            color: white;
            font-weight: bold;
            background-color: #A100FF;
            border: 2px solid #A100FF;
        }

    .move-to-ignite-container {
        text-align: left;
        display: block;
        height: 40px
    }

    .move-to-ignite {
        color: #A100FF !important;
        font-size: 13px;
        text-transform: capitalize;
        margin-right: 10px;
        font-weight: 500;
        margin-left: 15px;
    }

        .move-to-ignite span {
            border-radius: 50%;
            background-color: #A100FF;
            color: white;
            margin-left: 7px;
            padding: 5px;
        }

            .move-to-ignite span i {
                padding: 2px;
                font-size: 16px;
            }

    .idea-card-body {
        padding: 10px;
        font-size: 14px;
        font-weight: 500;
        word-wrap: break-word;
        height: 70px;
    }

    .idea-card-footer {
        background-color: #A100FF;
        padding: 10px 0px 0px 25px;
        border-bottom-right-radius: 10px;
        border-bottom-left-radius: 10px;
        height: 45px;
        color: white;
        position: relative;
        top: -6%;
    }

    .btn-my-idea-view-more {
        font-weight: 500;
        color: #A100ff;
        text-decoration: none;
        font-size: 14px;
    }

        .btn-my-idea-view-more:hover {
            font-weight: 500;
            color: white;
            text-decoration: underline;
            transform: scale(1.1);
        }

    .myidea-list-text {
        color: white;
        font-weight: bold;
        font-size: 18px;
        text-transform: uppercase;
        padding-left: 15px;
    }

    .myidea-viewmore-container {
        padding-right: 40px;
        color: white;
        width: 100%;
        text-align: right;
    }

    .myidea-no-row {
        width: 100%;
        margin-left: 40px;
        border: 2px solid white;
        line-height: 100px;
        margin-right: 40px;
        text-align: center;
        color: white;
        margin-top: 20px;
    }

    .filter-all-idea-icon {
        color: white;
        float: right;
        padding-top: 5px;
    }

    .img-winning-concept3 {
        display: inline;
        max-width: 60px;
        height: 60px;
        border-radius: 100%;
        margin: 7px;
    }

        .img-winning-concept3:hover {
            transform: scale(1.5);
        }

    .top-innovation-item {
        height: 450px;
    }

    .img-winning-concept1 {
        display: inline;
        max-width: 40px;
        height: 40px;
        border-radius: 100%;
        margin: 2px;
    }

        .img-winning-concept1:hover {
            transform: scale(1.5);
        }

    .img-winning-concept2 {
        display: inline;
        max-width: 40px;
        height: 40px;
        border-radius: 100%;
        margin: 2px;
    }

        .img-winning-concept2:hover {
            transform: scale(1.5);
        }

    .img-winning-concept3 {
        display: inline;
        max-width: 40px;
        height: 40px;
        border-radius: 100%;
        margin: 2px;
    }

        .img-winning-concept3:hover {
            transform: scale(1.5);
        }

    .update-setting-icon {
        font-size: 28px;
        color: #A100FF;
        margin-left: 15px;
        font-size: 15px;
    }

        .update-setting-icon:hover {
            cursor: pointer;
            transform: scale(1.1);
        }

    .idea-like-icon {
        color: darkgray;
        font-weight: bold;
        margin-left: 5px;
        font-size: 15px;
    }

        .idea-like-icon:hover {
            cursor: pointer;
        }

    .idea-liked-icon {
        color: deeppink;
        font-weight: bold;
        margin-left: 5px;
        font-size: 15px;
    }


        .idea-liked-icon:hover {
            cursor: pointer;
        }

    .filter-application-area {
        width: 130px;
        position: relative;
    }

    .action-icon-container {
        display: flex;
        justify-content: space-evenly;
    }

    .action-icon-edit {
        color: black;
        font-size: 25px;
        padding: 0px;
    }

    .action-icon-delete {
        color: red;
        font-size: 25px;
        margin-left: 10px;
    }

    .action-icon-setting {
        color: #A100FF;
        font-size: 25px;
        padding: 0px;
    }

    .action-icon-edit:hover {
        transform: scale(1.2);
        color: black;
        cursor: pointer;
    }

    .action-icon-delete:hover {
        transform: scale(1.2);
        color: red;
        cursor: pointer;
    }

    .action-icon-setting:hover {
        color: #A100FF;
        transform: scale(1.2);
        cursor: pointer;
    }

    .action-icon-message {
        width: 25px;
        height: 25px;
        margin-bottom: 10px;
        margin-left: 10px;
    }

        .action-icon-message:hover {
            transform: scale(1.2);
            cursor: pointer;
        }

    .angle-down-icon {
        font-size: 30px;
        color: #A100FF;
        padding-top: 20px;
    }

        .angle-down-icon i {
            font-size: 60px;
            color: #A100FF;
        }

    .idea-type-header {
        color: white;
        font-size: 20px;
        position: relative;
        z-index: 100;
        top: -100px;
        left: 15px;
        font-weight: 600;
    }

    .theme-refernce-link {
        color: white;
        position: relative;
        left: 30px;
        top: 50px;
        font-weight: 600;
    }

    .btn-theme {
        transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
        border-radius: .25rem;
        border: 1px solid transparent;
        font-size: 1rem;
        line-height: 1.5;
        display: inline-block;
        text-align: center;
        vertical-align: middle;
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
    }

    .btn-theme-reference {
        background-color: #A100FF;
        border-color: #A100FF;
        color: white;
        font-size: 14px;
        font-weight: 400;
        margin: auto;
        padding: 10px;
        position: relative;
        width: 215px;
    }

    .btn-theme:hover {
        color: white;
        text-decoration: none;
        transform: scale(1.1);
        background-color: #A100FF;
    }

    .btn-theme:focus {
        outline: 0;
        box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
    }
}

@media screen and (min-width: 769px) and (max-width : 992.98px) {
    .back-to-top {
        display: none;
        position: fixed;
        bottom: 0px;
        right: 5px;
        z-index: 10000;
        border: none;
        outline: none;
        background-color: #7a00ff73;
        color: white;
        cursor: pointer;
        padding: 0px;
        border-radius: 50%;
        width: 50px;
    }

    .footer-link {
        padding-right: 35px;
    }

    .back-to-top:hover {
        background-color: #5555558c;
    }

    .first-row {
        padding-top: 38px;
    }

    h1 {
        font-size: 42px;
    }

    h2 {
        font-size: 36px;
    }

    h3 {
        font-size: 20px;
    }

    h4 {
        font-size: 16px;
    }

    .row-p3 {
        padding-left: 30px;
        padding-right: 30px;
    }

    .row-p4 {
        padding-left: 40px;
        padding-right: 40px;
    }

    .row-p5 {
        padding-left: 50px;
        padding-right: 50px;
    }

    .row-p6 {
        padding-left: 60px;
        padding-right: 60px;
    }

    .header-text {
        font-size: 35px;
        font-weight: bold;
        color: white;
        text-transform: uppercase;
        display: flex;
        justify-content: center;
    }



    .fa-list-bar:before {
        content: "\2261";
        font-size: 60px;
        font-weight: 600;
    }


    .footer {
        font-size: 12px;
        background-color: #A100FF;
        line-height: 50px;
        color: white;
        font-weight: 600;
        z-index: 9;
        bottom: 0;
        position: sticky;
    }

        .footer a {
            background-color: #A100FF;
            line-height: 50px;
            color: white;
            font-weight: 600;
            padding-right: 20px;
            padding-left: 20px;
            align-items: center;
        }

    footer a:hover {
        background-color: #A100FF;
        line-height: 50px;
        color: white;
        font-weight: bolder;
        padding-right: 20px;
        padding-left: 20px;
        align-items: center;
        text-decoration: none;
    }
    /*
    .brand-header {
        text-decoration: none;
        color: white;
        margin: auto;
        padding-left: 60px;
        padding-top: 10px;
        padding-bottom: 10px;
        font-size: 24px;
        font-weight: bold;
        display: flex;
    }

        .brand-header:hover {
            text-decoration: none;
            color: #A100FF;
        }*/


    .brand-logo {
        width: 40px;
        height: 40px;
        margin-right: 10px;
        color: white;
    }

    .brand-header {
        text-decoration: none;
        color: white;
        margin: auto;
        display: flex;
        font-size: 24px;
        color: white;
        text-transform: uppercase;
        font-weight: 600;
        transition: all 1s ease-in-out;
        position: relative;
        padding-top: 5px;
        /*padding-left: 60px;*/
    }

        .brand-header::before {
            text-decoration: none;
            content: attr(data-item);
            transition: all 1s ease-in-out;
            color: #A100FF;
            position: absolute;
            width: 0;
            overflow: hidden;
        }

        .brand-header:hover::before {
            width: 100%;
            text-decoration: none;
        }

        .brand-header:hover {
            text-decoration: none;
        }

    /*.home-left-scroll {
    height: 400px;
    margin-left: 45px;
    background-image: url("data:image/svg+xml,%3csvg width='100%25' height='100%25' xmlns='http://www.w3.org/2000/svg'%3e%3crect width='100%25' height='100%25' fill='none' rx='5' ry='5' stroke='%23A100FFFF' stroke-width='7' stroke-dasharray='5%2c 11' stroke-dashoffset='15' stroke-linecap='round'/%3e%3c/svg%3e");
    border-radius: 5px;
}*/

    btn {
        display: inline-block;
        font-weight: 400;
        color: white;
        text-align: center;
        vertical-align: middle;
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
        background-color: #A100FF;
        border: 1px solid transparent;
        padding: .375rem .75rem;
        font-size: 1rem;
        line-height: 1.5;
        border-radius: .25rem;
        transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
    }

    .btn-submit-idea {
        background-color: #A100FF;
        border-color: #A100FF;
        color: white;
        font-weight: bolder;
        margin: auto;
        padding: 10px;
    }

        .btn-submit-idea:hover {
            color: white;
            text-decoration: none;
            transform: scale(1.1);
            background-color: #A100FF;
        }

        .btn-submit-idea:focus, .btn-submit-idea.focus {
            outline: 0;
            box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
        }

    .btn-view-more {
        background-color: #A100FF;
        border-color: #A100FF;
        color: white;
        font-weight: bolder;
        margin: auto;
        padding: 10px;
    }

        .btn-view-more:hover {
            color: #212529;
            text-decoration: none;
        }

        .btn-view-more:focus, .btn-view-more.focus {
            outline: 0;
            box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
        }

    .img-soft-hand {
        color: rgba(12,0,40,.075);
    }

    .btn-submit-idea-text {
        width: min-content;
        color: white;
        /*padding-bottom: 60px;*/
        font-weight: bolder;
    }

    /*    .navbar-expand .navbar-nav .nav-link {
        padding-right: 1.2rem;
        padding-left: 1.2rem;
    }*/

    .nav-link {
        display: block;
        padding: .5rem 1rem;
        color: white !important;
        font-weight: bold;
    }

        .nav-link:hover {
            display: block;
            padding: .5rem 1rem;
            color: white !important;
            font-weight: bold;
            /*background-color: #A100FF;*/
        }

    .ideas-title {
        color: white;
        margin: 10px;
        left: 60px;
        text-align: center;
        padding: 10px;
        width: 170px;
        background-image: url("data:image/svg+xml,%3csvg width='100%25' height='100%25' xmlns='http://www.w3.org/2000/svg'%3e%3crect width='100%25' height='100%25' fill='none' rx='5' ry='5' stroke='%23A100FFFF' stroke-width='7' stroke-dasharray='5%2c 11' stroke-dashoffset='15' stroke-linecap='round'/%3e%3c/svg%3e");
        border-radius: 5px;
    }

        .ideas-title .idea-count-slider div {
            font-size: 24px;
            font-weight: 700;
        }

    .ideas-title-2 .idea-count-slider-2 div {
        font-size: 24px;
        font-weight: 700;
    }

    .ideas-title span {
        font-size: 16px;
        font-weight: 400;
    }

    .ideas-title-row {
        margin-left: 30px !important;
        margin-right: 30px !important;
    }

    .ideas-title-2 {
        color: white;
        margin: auto auto 10px auto;
        text-align: center;
        padding: 10px;
        background-image: url("data:image/svg+xml,%3csvg width='100%25' height='100%25' xmlns='http://www.w3.org/2000/svg'%3e%3crect width='100%25' height='100%25' fill='none' rx='5' ry='5' stroke='%23A100FFFF' stroke-width='7' stroke-dasharray='5%2c 11' stroke-dashoffset='15' stroke-linecap='round'/%3e%3c/svg%3e");
        border-radius: 5px;
    }

        .ideas-title-2 span {
            font-size: 16px;
            font-weight: 500;
        }

            .ideas-title-2 span a {
                color: white;
                cursor: pointer;
                text-decoration: none;
            }

                .ideas-title-2 span a:hover {
                    color: white;
                    cursor: pointer;
                    text-decoration: underline;
                }

    .card-header1 {
        font-size: 50px;
    }

    .card-header2 {
        font-size: 40px;
    }

    .idea-count-header {
        font-size: 25px;
        color: white;
        font-weight: bold;
    }

    .idea-count {
        font-size: 24px;
    }

    /* Level 1 Card */
    .level-1-card {
        background-color: #EFEFEF;
        border-radius: 20px;
        min-width: 250px;
        max-width: 250px;
        min-height: 210px;
        max-height: 210px;
        padding: 5px;
    }

        .level-1-card:hover {
            cursor: pointer;
        }

        .level-1-card .card-type {
            font-size: 12px;
            margin-top: 10px;
            margin-left: 10px;
            color: #6E6E6E;
            font-weight: 600;
        }

        .level-1-card .card-body {
            font-size: 18px;
            margin: 10px 10px 0px 10px;
            padding: 0;
            font-weight: bold;
            text-transform: uppercase;
            /*display: inline-block;*/
            min-height: 100px;
            max-height: 100px;
        }

        .level-1-card .name-card {
            width: 190px;
            height: 50px;
            font-size: 10px;
            background-color: #c577f6;
            border-radius: 5px;
            filter: drop-shadow(0px 4px 4px #D8AEF2 1);
            position: relative;
            top: 39px;
            left: 25px;
            padding: 10px;
            z-index: 3;
        }

            .level-1-card .name-card .user-image {
                float: left;
                width: 40px;
                height: 40px;
                display: block;
                margin-right: 5px;
            }

                .level-1-card .name-card .user-image img {
                    border-radius: 50%;
                    width: 40px;
                    height: 40px;
                }

                    .level-1-card .name-card .user-image img:hover {
                        transform: scale(1);
                    }

            .level-1-card .name-card .user-name {
                padding-top: 5px;
                font-size: 8px;
            }

                .level-1-card .name-card .user-name div:first-child {
                    color: #6E6E6E;
                    font-weight: bold;
                }

                .level-1-card .name-card .user-name div:last-child {
                    font-weight: bold;
                    word-break: break-all;
                }


    /* Level 2 Card */
    .level-2-card {
        width: 220px;
        height: 180px;
        background-color: #EFEFEF;
        border-radius: 20px;
        padding: 10px;
        z-index: 2;
    }

        .level-2-card:hover {
            cursor: pointer;
        }

        .level-2-card .card-type {
            font-size: 10px;
        }

        .level-2-card .card-body {
            font-size: 16px;
            margin-top: 10px;
            padding: 0;
            font-weight: bold;
            text-transform: uppercase;
            /* display: inline-block;*/
            min-height: 60px;
            max-height: 60px;
        }

        .level-2-card .name-card {
            width: 190px;
            height: 50px;
            font-size: 12px;
            background-color: #c577f6;
            border-radius: 5px;
            filter: drop-shadow(0px 4px 4px #D8AEF2 1);
            position: relative;
            top: 46px;
            left: 4px;
            padding: 10px;
        }

            .level-2-card .name-card .user-image {
                float: left;
                width: 40px;
                height: 40px;
                display: block;
                margin-right: 5px;
            }

                .level-2-card .name-card .user-image img {
                    border-radius: 50%;
                    width: 40px;
                    height: 40px;
                }

                    .level-2-card .name-card .user-image img:hover {
                        transform: scale(1);
                    }

            .level-2-card .name-card .user-name {
                padding-top: 5px;
                font-size: 10px;
            }

                .level-2-card .name-card .user-name div:first-child {
                    color: #6E6E6E;
                    font-size: 8px;
                }

                .level-2-card .name-card .user-name div:last-child {
                    font-weight: bold;
                    font-size: 8px;
                }


    /* Level 3 Card */
    .level-3-card {
        min-width: 180px;
        max-width: 180px;
        min-height: 180px;
        max-height: 180px;
        background-color: #EFEFEF;
        border-radius: 20px;
        padding: 10px;
        z-index: 1;
    }

        .level-3-card:hover {
            cursor: pointer;
        }

        .level-3-card .card-type {
        }

        .level-3-card .card-body {
            font-size: 16px;
            margin-top: 10px;
            padding: 0;
            font-weight: bold;
            text-transform: uppercase;
            /* display: inline-block;*/
        }

        .level-3-card .name-card {
            display: none;
        }

            .level-3-card .name-card .user-image {
                display: none;
            }

                .level-3-card .name-card .user-image img {
                    display: none;
                }

            .level-3-card .name-card .user-name {
                display: none;
            }


    /* latest-ldea idea Card */
    .latest-ldea-card {
        min-width: 210px;
        max-width: 210px;
        min-height: 180px;
        max-height: 180px;
        background-color: #EFEFEF;
        border-radius: 20px;
        padding: 10px;
        z-index: 1;
        position: relative;
        margin: 15px;
    }

        .latest-ldea-card:hover {
            cursor: pointer;
        }

        .latest-ldea-card .card-type {
            font-size: 12px;
        }

        .latest-ldea-card .card-body {
            font-size: 16px;
            margin-top: 10px;
            padding: 0;
            font-weight: bold;
            text-transform: uppercase;
            word-wrap: break-word;
            height: 90px;
        }

        .latest-ldea-card .name-card {
            display: flex;
            font-size: 9px;
            background-color: #c577f6;
            border-bottom-left-radius: 20px;
            border-bottom-right-radius: 20px;
            padding: 10px 10px 10px 10px;
            width: 210px;
            height: 52px;
            left: -10px;
            position: relative;
            word-break: break-all;
        }

            .latest-ldea-card .name-card .user-image {
                display: block;
                width: 30px;
                height: 30px;
                margin-right: 5px;
            }

                .latest-ldea-card .name-card .user-image img {
                    border-radius: 50%;
                    width: 35px;
                    height: 35px;
                    position: relative;
                    left: -4px;
                }

                    .latest-ldea-card .name-card .user-image img:hover {
                        transform: scale(1);
                    }

            .latest-ldea-card .name-card .user-name div:first-child {
                color: #6E6E6E;
            }

            .latest-ldea-card .name-card .user-name div:last-child {
                font-weight: bold;
                text-transform: lowercase;
            }

    .line-break {
        flex-basis: 100%;
        height: 0;
    }

    .display-card {
        width: 170px;
        height: 115px;
        border-radius: 10px;
        border: 5px dashed #A100FF;
    }

    .btn {
        width: 200px;
        height: 50px;
        background-color: #A100FF;
        font-size: 20px;
        font-weight: 400;
    }

    .btn-sm {
        font-weight: 500;
        padding: 5px;
        width: 90px;
    }

        .btn-sm:hover {
            transform: scale(1.1);
        }

    .submit-idea-container {
        top: 196px;
        left: 129.5px;
        bottom: 196px;
        right: 129.5px;
        display: block;
    }

    .navbar-close {
        font-size: 1.5rem;
        padding: 5px;
        color: white;
        float: right;
        padding-right: 5px;
        padding-top: 5px;
        position: relative;
    }

    .gradient-container-1 {
        height: 430px;
        background: linear-gradient(to right, rgba(0,0,0,100), rgba(161,0,255,10));
        margin-top: 20px;
    }

    .gradient-container-2 {
        height: 200px;
        background: linear-gradient(to top, rgba(0,0,0,100), rgba(161,0,255,10));
        position: relative;
        top: -60px;
    }

    .gradient-container-3 {
        min-height: 230px;
        background: linear-gradient(to bottom, rgba(0,0,0,100), rgba(135,8,209,10));
        position: relative;
        top: -120px;
    }

    .latest-ldea-idea-bg {
        position: relative;
        background-image: linear-gradient(to right, rgba(0,0,0,1), rgba(0,0,0,0));
        top: -204px;
        height: 430px;
        width: 43.5%;
        z-index: 3;
        top: -644px;
    }

    .latest-ldea-idea-text {
        position: relative;
        color: white;
        font-size: 35px;
        width: 300px;
        top: 130px;
        bottom: 160px;
        left: 90px;
        font-weight: bold;
        z-index: 5;
    }

    .idea-bulb {
        position: relative;
        font-size: 6rem;
        color: #A100FF;
        top: -70px;
        left: 320px;
    }

    .center-line {
        height: 70px;
        position: absolute;
        left: 50%;
        border: 5px dashed #A100FF;
        border-left: 0;
    }



    .automation-header {
        font-size: 40px;
        font-weight: bold;
        color: white;
        text-transform: uppercase;
        padding-left: 100px;
        position: relative;
        top: -90px;
        left: -15px;
    }



    .success-stories-header {
        font-size: 35px;
        font-weight: bold;
        color: white;
        text-transform: uppercase;
        padding-left: 100px;
        position: relative;
        top: -170px;
        width: 100px;
        left: -40px;
    }

    .pattern {
        position: relative;
    }

    .automation-pattern {
        float: right;
        position: relative;
        right: 10px;
        top: 100px;
        right: -463px;
    }

    .automation-text {
        color: white;
        position: relative;
        top: 60px;
        left: 100px;
        width: 700px;
    }

    .automation-robot {
        background-color: aqua;
        width: 480px;
        height: 396px;
        position: relative;
        float: right;
        right: 100px;
        border-radius: 10px;
        top: -240px;
        background: linear-gradient(to bottom, #4a838d, #12d9d9);
        z-index: 2;
    }

    .dot {
        width: 10px;
        height: 10px;
        background-color: #A100FF;
        border-radius: 50%;
        display: inline-block;
        margin: 8px;
    }

    .btn-view-more-success {
        background-color: #A100FF;
        border-color: white;
        color: white;
        font-weight: 400;
        margin: auto;
        position: relative;
        text-align: center;
        vertical-align: middle;
        display: inline-block;
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
        border: 1px solid transparent;
        padding: .275rem .55rem;
        font-size: 1rem;
        line-height: 1.5;
        border-radius: .25rem;
        transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
    }

        .btn-view-more-success:hover {
            color: white;
            transform: scale(1.1);
            text-decoration: none;
        }

    .top-innovations-container {
        height: 450px;
        margin: 0 45px 45px 45px;
        background-image: url("data:image/svg+xml,%3csvg width='100%25' height='100%25' xmlns='http://www.w3.org/2000/svg'%3e%3crect width='100%25' height='100%25' fill='none' rx='5' ry='5' stroke='%23A100FFFF' stroke-width='7' stroke-dasharray='5%2c 11' stroke-dashoffset='15' stroke-linecap='round'/%3e%3c/svg%3e");
        border-radius: 5px;
        position: relative;
    }

    ul {
        padding: 0;
        margin: 0;
    }


    btn-idea {
        display: inline-block;
        font-weight: 400;
        color: white;
        text-align: center;
        vertical-align: middle;
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
        background-color: #A100FF;
        border: 1px solid transparent;
        /*padding: .375rem .75rem;*/
        font-size: 1rem;
        line-height: 1.5;
        border-radius: .25rem;
        transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
    }
    /**/
    /*Idea details*/
    .idea-info-bg {
        background-color: #EFEFEF;
        border-radius: 5px;
        font-size: 12px;
        margin-top: 10px;
        margin-bottom: 10px;
        padding: 5px;
        word-wrap: break-word;
    }

        .idea-info-bg span {
            color: #EFEFEF;
            font-size: 12px;
            padding: 10px;
        }

    .idea-info-row {
        flex: 0 0 50%;
        max-width: 50%;
        padding: 10px 10px 0px 10px;
    }

    .idea-info-bg label {
        color: #A100FF;
        font-size: 14px;
        font-weight: bold;
        text-transform: uppercase;
        min-width: 160px;
        /*max-width: 160px;*/
    }

    .idea-info-display {
        min-height: 80px;
        background-image: url("data:image/svg+xml,%3csvg width='100%25' height='100%25' xmlns='http://www.w3.org/2000/svg'%3e%3crect width='100%25' height='100%25' fill='none' rx='5' ry='5' stroke='%23A100FFFF' stroke-width='7' stroke-dasharray='5%2c 11' stroke-dashoffset='15' stroke-linecap='round'/%3e%3c/svg%3e");
        border-radius: 5px;
        font-size: 24px;
        font-weight: bold;
        display: flex;
        position: relative;
        left: 20px;
    }

        .idea-info-display div:first-child {
            float: left;
            margin: auto;
            text-align: center;
        }

        .idea-info-display div:last-child {
            float: right;
            margin: auto;
            text-align: left;
        }

        .idea-info-display div {
        }

    .btn-idea-type {
        background-color: #A100FF;
        border-color: none;
        color: white;
        font-weight: 500;
        height: 40px;
        width: 120px;
        border-radius: 7px;
        margin: 20px;
        font-size: 14px;
    }

        .btn-idea-type:hover {
            color: white;
            text-decoration: none;
            transform: scale(1.1);
            border-color: none;
            background-color: #A100FF;
        }

        .btn-idea-type:focus, .btn-idea-type.focus {
            outline: 0;
            box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
        }


    .leader-thumbnail {
        min-width: 85px;
        max-width: 85px;
        min-height: 85px;
        max-height: 85px;
        border-radius: 50%;
        padding: 10px;
        margin: 5px;
    }

        .leader-thumbnail:hover {
            transform: scale(1.5);
        }

    .wizard-info {
        text-transform: uppercase;
    }

        .wizard-info:active {
            text-transform: uppercase;
        }

        .wizard-info:disabled {
            text-transform: uppercase;
        }

    .idea-card {
        height: 80%;
        width: 95%;
        text-transform: uppercase;
        border-radius: 10px;
        background-color: white;
    }

        .idea-card:hover {
            cursor: pointer;
        }

    .idea-type {
        padding: 10px;
        font-size: 16px;
        color: #6E6E6E;
        font-weight: 500;
    }

    .btn-link {
        font-weight: 500;
        color: #A100FF;
        text-decoration: none;
        font-size: 14px;
    }

    .custom-file-input {
        width: 50px;
        cursor: pointer;
        background-color: #A100FF;
        color: white;
        border-radius: 10px;
        opacity: 1;
        padding: 10px;
        margin-left: 40px;
        font-size: 14px;
    }


    .action-icons {
        color: black;
        font-size: 25px;
        padding: 15px;
    }

        .action-icons:hover {
            transform: scale(1.1);
        }

    .succss-story-container {
        min-height: 370px;
        max-height: 370px;
    }

    .latest-idea-container {
        position: relative;
        top: -210px;
        justify-content: flex-end;
        opacity: .6;
        padding: 10px 20px 10px 10px;
    }

    .success-story-heading {
        text-transform: uppercase;
        font-size: 24px;
        font-weight: bold;
        padding-left: 20px;
        color: #A100FF;
        text-align: center;
    }

    .success-story-key-objective-header {
        text-transform: uppercase;
        font-size: 20px;
        font-weight: bold;
        padding: 5px 5px 5px 15px;
        color: #A100FF;
    }

    .success-story-key-objective-text {
        padding: 5px 20px 5px 20px;
        text-align: justify;
    }

    .success-story-key-contract-header {
        text-transform: uppercase;
        font-size: 18px;
        color: white;
        font-weight: bold;
        padding: 5px 5px 5px 15px;
    }

    .success-story-key-contract-icon {
        float: right;
        font-size: 25px;
        padding-left: 10px;
    }

    .top-innov-head1 {
        text-transform: uppercase;
        font-size: 30px;
        font-weight: bold;
        text-align: left;
        padding-left: 20px;
        padding-top: 15px;
    }

    .top-innov-head2 {
        text-transform: uppercase;
        font-size: 16px;
        padding-left: 20px;
        text-align: left;
        padding-top: 10px;
    }

    .top-innov-head3 {
        font-size: 26px;
        padding-left: 20px;
        text-align: left;
        padding-top: 0px;
    }

    .top-innov-carousel-slide {
        height: 450px;
    }

    .top-innov-carousel-inner {
        color: white;
        margin: auto;
        position: relative;
        top: -110px;
        text-align: center;
    }

    .success-story-pattern {
        float: right;
        position: relative;
        top: -165px;
        right: -15px;
        width: 185px;
        overflow: overlay;
    }

    .latest-idea-tail {
        width: 32.1%;
    }

        .latest-idea-tail:nth-child(n+7) {
            display: none;
        }

    /*My Idea CSS*/


    .idea-tail {
        background-color: black;
        min-height: 640px;
        max-height: 640px;
        float: left;
        width: 50%;
    }

        .idea-tail.active {
            background-color: #A100FF;
        }

        .idea-tail .draft-tail-idea-count {
            color: #A100FF;
        }

        .idea-tail.active .draft-tail-idea-count {
            color: black;
        }

    .draft-tail-details {
        padding-top: 85px;
        font-size: 50px;
        font-weight: bold;
        color: white;
        text-transform: uppercase;
        text-align: center
    }

        .draft-tail-details .fa-bookmark-o {
            font-size: 70px;
            color: white;
            padding-left: 35px;
        }

        .draft-tail-details .fa-star-o {
            font-size: 24px;
            color: white;
            position: relative;
            left: -45px;
            top: -24px;
        }



        .draft-tail-details .fa-desktop {
            font-size: 60px;
            padding-left: 60px;
        }


        .draft-tail-details .fa-file-o {
            font-size: 50px;
            color: white;
            transform: rotateY( 180deg );
            position: relative;
            left: -60px;
            top: -30px;
        }

        .draft-tail-details .fa-long-arrow-up {
            font-size: 20px;
            color: white;
            left: -90px;
            top: -30px;
            position: relative;
        }


        .draft-tail-details .draft-tail-text {
            font-size: 28px;
        }

    .idea-tail .draft-tail-idea-count {
        font-size: 12rem;
        font-weight: bold;
        text-align: center;
        position: relative;
        top: -50px;
    }

    .my-idea-display-card {
        color: white;
        margin: 10px;
        left: 60px;
        text-align: center;
        background-image: url("data:image/svg+xml,%3csvg width='100%25' height='100%25' xmlns='http://www.w3.org/2000/svg'%3e%3crect width='100%25' height='100%25' fill='none' rx='5' ry='5' stroke='%23A100FFFF' stroke-width='7' stroke-dasharray='5%2c 11' stroke-dashoffset='15' stroke-linecap='round'/%3e%3c/svg%3e");
        border-radius: 5px;
    }

        .my-idea-display-card.card-small {
            width: 200px;
            height: 150px;
            padding: 10px;
        }

        .my-idea-display-card.card-medium {
            width: 770px;
            height: 150px;
            padding: 10px;
        }

    .my-idea-display-card-count {
        text-transform: uppercase;
        color: white;
        text-align: center;
        font-size: 40px;
        padding: 10px;
        font-weight: 600;
    }

    .my-idea-display-card-text {
        text-transform: uppercase;
        color: white;
        text-align: center;
        padding: 10px;
    }

    .myidea-contest-msg-container {
        float: left;
        width: 70%;
        padding-top: 0px;
    }

        .myidea-contest-msg-container div:first-child {
            text-transform: uppercase;
            padding-left: 15px;
            text-align: left;
            font-weight: 500;
            font-size: 12px;
        }

        .myidea-contest-msg-container div:nth-child(2) {
            text-transform: uppercase;
            color: white;
            text-align: left;
            font-size: 20px;
            padding-left: 15px;
            font-weight: 600;
        }

        .myidea-contest-msg-container div:last-child {
            color: gray;
            text-align: left;
            padding-left: 15px;
            font-size: 12px;
        }

    .myidea-contest-schedule-container {
        float: right;
        width: 30%;
        padding-top: 10px;
    }

        .myidea-contest-schedule-container div:first-child {
            text-transform: uppercase;
            color: gray;
            text-align: center;
            padding: 10px;
            font-weight: 600;
            font-size: 14px;
        }

        .myidea-contest-schedule-container div:last-child {
            text-transform: uppercase;
            color: white;
            text-align: center;
            font-size: 20px;
            padding: 10px;
            font-weight: 600;
        }

    .myidea-contest-container-split {
        height: 140px;
        position: absolute;
        left: 67%;
        margin-left: -3px;
        border: 5px dashed #A100FF;
        border-left: 0;
        top: 15px;
    }

    .btn-export {
        border: 2px solid #A100FF;
        background: transparent;
        color: #A100FF;
        padding: 5px;
        border-radius: 5px;
        width: 130px;
    }

        .btn-export:hover {
            border: 2px solid #A100FF;
            background-color: #A100FF;
            color: white;
            transform: scale(1,1)
        }

    .btn-more-filter {
        border: 2px solid #A100FF;
        background: transparent;
        color: #A100FF;
        padding: 5px;
        border-radius: 5px;
        width: 130px;
        height: 38px;
    }

        .btn-more-filter:hover {
            color: white;
            transform: scaleY(1.1);
            font-weight: bold;
            background-color: #A100FF;
            border: 2px solid #A100FF;
        }

        .btn-more-filter.active {
            color: white;
            font-weight: bold;
            background-color: #A100FF;
            border: 2px solid #A100FF;
        }

    .move-to-ignite-container {
        text-align: left;
        display: block;
        height: 35px
    }

    .move-to-ignite {
        color: #A100FF !important;
        font-size: 13px;
        text-transform: capitalize;
        margin-right: 10px;
        font-weight: 500;
        margin-left: 15px;
    }

        .move-to-ignite span {
            border-radius: 50%;
            background-color: #A100FF;
            color: white;
            margin-left: 7px;
            padding: 5px;
        }

            .move-to-ignite span i {
                padding: 2px;
                font-size: 16px;
            }

    .idea-card-body {
        padding: 10px;
        font-size: 14px;
        font-weight: 500;
        word-wrap: break-word;
        height: 70px;
    }

    .idea-card-footer {
        background-color: #A100FF;
        padding: 10px 0px 0px 25px;
        border-bottom-right-radius: 10px;
        border-bottom-left-radius: 10px;
        height: 45px;
        color: white;
        position: relative;
        top: -4%;
    }

    .btn-my-idea-view-more {
        font-weight: 500;
        color: #A100ff;
        text-decoration: none;
        font-size: 14px;
    }

        .btn-my-idea-view-more:hover {
            font-weight: 500;
            color: white;
            text-decoration: underline;
            transform: scale(1.1);
        }

    .myidea-list-text {
        color: white;
        font-weight: bold;
        font-size: 24px;
        text-transform: uppercase;
        padding-left: 15px;
    }

    .myidea-viewmore-container {
        padding-right: 40px;
        color: white;
        width: 100%;
        text-align: right;
    }

    .myidea-no-row {
        width: 100%;
        margin-left: 40px;
        border: 2px solid white;
        line-height: 100px;
        margin-right: 40px;
        text-align: center;
        color: white;
        margin-top: 20px;
    }

    .filter-all-idea-icon {
        color: white;
        float: right;
        padding-top: 5px;
    }

    .top-innovation-item {
        height: 450px;
    }

    .img-winning-concept1 {
        display: inline;
        max-width: 50px;
        height: 50px;
        border-radius: 100%;
        margin: 8px;
    }

        .img-winning-concept1:hover {
            transform: scale(1.5);
        }

    .img-winning-concept2 {
        display: inline;
        max-width: 50px;
        height: 50px;
        border-radius: 100%;
        margin: 8px;
    }

        .img-winning-concept2:hover {
            transform: scale(1.5);
        }

    .img-winning-concept3 {
        display: inline;
        max-width: 50px;
        height: 50px;
        border-radius: 100%;
        margin: 2px;
    }

        .img-winning-concept3:hover {
            transform: scale(1.5);
        }

    .update-setting-icon {
        font-size: 24px;
        color: #A100FF;
        margin-left: 15px;
    }

        .update-setting-icon:hover {
            cursor: pointer;
            transform: scale(1.1);
        }

    .idea-like-icon {
        color: darkgray;
        font-weight: bold;
        margin-left: 25px;
        font-size: 20px;
    }

        .idea-like-icon:hover {
            cursor: pointer;
        }

    .idea-liked-icon {
        color: deeppink;
        font-weight: bold;
        margin-left: 25px;
        font-size: 20px;
    }


        .idea-liked-icon:hover {
            cursor: pointer;
        }

    .filter-application-area {
        width: 170px;
        left: -12px;
        position: relative;
    }

    .action-icon-container {
        display: flex;
        justify-content: space-evenly;
    }

    .action-icon-edit {
        color: black;
        font-size: 25px;
        padding: 0px;
    }

    .action-icon-delete {
        color: red;
        font-size: 25px;
        padding: 0px;
        margin-left: 10px;
    }

    .action-icon-setting {
        color: #A100FF;
        font-size: 25px;
        padding: 0px;
    }

    .action-icon-edit:hover {
        transform: scale(1.2);
        color: black;
        cursor: pointer;
    }

    .action-icon-delete:hover {
        transform: scale(1.2);
        color: red;
        cursor: pointer;
    }

    .action-icon-setting:hover {
        color: #A100FF;
        transform: scale(1.2);
        cursor: pointer;
    }

    .action-icon-message {
        width: 25px;
        height: 25px;
        margin-bottom: 10px;
        margin-left: 10px;
    }

        .action-icon-message:hover {
            transform: scale(1.2);
            cursor: pointer;
        }

    .angle-down-icon {
        font-size: 60px;
        color: #A100FF;
        padding-top: 20px;
    }

        .angle-down-icon i {
            font-size: 60px;
            color: #A100FF;
        }

    .idea-type-header {
        color: white;
        font-size: 22px;
        position: relative;
        z-index: 100;
        top: -90px;
        left: 35px;
        font-weight: 600;
    }
    .btn-theme {
        transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
        border-radius: .25rem;
        border: 1px solid transparent;
        font-size: 1rem;
        line-height: 1.5;
        display: inline-block;
        text-align: center;
        vertical-align: middle;
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
    }


    .btn-theme-reference {
        background-color: #A100FF;
        border-color: #A100FF;
        color: white;
        font-size: 14px;
        font-weight: 400;
        margin: auto;
        padding: 10px;
        position: relative;
        width: 215px;
    }

    .btn-theme:hover {
        color: white;
        text-decoration: none;
        transform: scale(1.1);
        background-color: #A100FF;
    }

    .btn-theme:focus {
        outline: 0;
        box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
    }
}

@media screen and (min-width: 993px) and (max-width : 1199.98px) {
    .back-to-top {
        display: none;
        position: fixed;
        bottom: 0px;
        right: 5px;
        z-index: 10000;
        border: none;
        outline: none;
        background-color: #7a00ff73;
        color: white;
        cursor: pointer;
        padding: 0px;
        border-radius: 50%;
        width: 50px;
    }

    .footer-link {
        padding-right: 35px;
    }

    .back-to-top:hover {
        background-color: #5555558c;
    }

    .first-row {
        padding-top: 38px;
    }

    h1 {
        font-size: 50px;
    }

    h2 {
        font-size: 40px;
    }

    h3 {
        font-size: 24px;
    }

    h4 {
        font-size: 16px;
    }

    .row-p3 {
        padding-left: 30px;
        padding-right: 30px;
    }

    .row-p4 {
        padding-left: 40px;
        padding-right: 40px;
    }

    .row-p5 {
        padding-left: 50px;
        padding-right: 50px;
    }

    .row-p6 {
        padding-left: 60px;
        padding-right: 60px;
    }


    .header-text {
        font-size: 40px;
        font-weight: bold;
        color: white;
        text-transform: uppercase;
        display: flex;
        justify-content: center;
    }



    .fa-list-bar:before {
        content: "\2261";
        font-size: 60px;
        font-weight: 600;
    }


    .footer {
        font-size: 1rem;
        background-color: #A100FF;
        line-height: 50px;
        color: white;
        font-weight: 600;
        z-index: 9;
        bottom: 0;
        position: sticky;
    }

        .footer a {
            background-color: #A100FF;
            line-height: 50px;
            color: white;
            font-weight: 600;
            padding-right: 20px;
            padding-left: 20px;
            align-items: center;
        }

    footer a:hover {
        background-color: #A100FF;
        line-height: 50px;
        color: white;
        font-weight: bolder;
        padding-right: 20px;
        padding-left: 20px;
        align-items: center;
        text-decoration: none;
    }
    /*
    .brand-header {
        text-decoration: none;
        color: white;
        margin: auto;
        padding-left: 60px;
        padding-top: 10px;
        padding-bottom: 10px;
        font-size: 24px;
        font-weight: bold;
        display: flex;
    }

        .brand-header:hover {
            text-decoration: none;
            color: #A100FF;
        }
*/



    .brand-logo {
        width: 40px;
        height: 40px;
        margin-right: 10px;
        color: white;
    }

    .brand-header {
        text-decoration: none;
        color: white;
        margin: auto;
        display: flex;
        font-size: 24px;
        color: white;
        text-transform: uppercase;
        font-weight: 600;
        transition: all 1s ease-in-out;
        position: relative;
        /*padding-left: 60px;*/
        padding-top: 10px;
    }

        .brand-header::before {
            text-decoration: none;
            content: attr(data-item);
            transition: all 1s ease-in-out;
            color: #A100FF;
            position: absolute;
            width: 0;
            overflow: hidden;
        }

        .brand-header:hover::before {
            width: 100%;
            text-decoration: none;
        }

        .brand-header:hover {
            text-decoration: none;
        }

    /*.home-left-scroll {
    height: 400px;
    margin-left: 45px;
    background-image: url("data:image/svg+xml,%3csvg width='100%25' height='100%25' xmlns='http://www.w3.org/2000/svg'%3e%3crect width='100%25' height='100%25' fill='none' rx='5' ry='5' stroke='%23A100FFFF' stroke-width='7' stroke-dasharray='5%2c 11' stroke-dashoffset='15' stroke-linecap='round'/%3e%3c/svg%3e");
    border-radius: 5px;
}*/

    btn {
        display: inline-block;
        font-weight: 400;
        color: white;
        text-align: center;
        vertical-align: middle;
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
        background-color: #A100FF;
        border: 1px solid transparent;
        padding: .375rem .75rem;
        font-size: 1rem;
        line-height: 1.5;
        border-radius: .25rem;
        transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
    }

    .btn-submit-idea {
        background-color: #A100FF;
        border-color: #A100FF;
        color: white;
        font-weight: bolder;
        margin: auto;
        padding: 10px;
    }

        .btn-submit-idea:hover {
            color: white;
            text-decoration: none;
            transform: scale(1.1);
            background-color: #A100FF;
        }

        .btn-submit-idea:focus, .btn-submit-idea.focus {
            outline: 0;
            box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
        }

    .btn-view-more {
        background-color: #A100FF;
        border-color: #A100FF;
        color: white;
        font-weight: bolder;
        margin: auto;
        padding: 10px;
    }

        .btn-view-more:hover {
            color: #212529;
            text-decoration: none;
        }

        .btn-view-more:focus, .btn-view-more.focus {
            outline: 0;
            box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
        }

    .img-soft-hand {
        color: rgba(12,0,40,.075);
    }

    .btn-submit-idea-text {
        width: min-content;
        color: white;
        /*padding-bottom: 60px;*/
        font-weight: bolder;
    }

    /*    .navbar-expand .navbar-nav .nav-link {
        padding-right: 1.2rem;
        padding-left: 1.2rem;
    }*/

    .nav-link {
        display: block;
        padding: .5rem 1rem;
        color: white !important;
        font-weight: bold;
    }

        .nav-link:hover {
            display: block;
            padding: .5rem 1rem;
            color: white !important;
            font-weight: bold;
            /*background-color: #A100FF;*/
        }

    .ideas-title {
        color: white;
        margin: auto;
        left: 60px;
        text-align: center;
        padding: 10px;
        width: 125px;
        background-image: url("data:image/svg+xml,%3csvg width='100%25' height='100%25' xmlns='http://www.w3.org/2000/svg'%3e%3crect width='100%25' height='100%25' fill='none' rx='5' ry='5' stroke='%23A100FFFF' stroke-width='7' stroke-dasharray='5%2c 11' stroke-dashoffset='15' stroke-linecap='round'/%3e%3c/svg%3e");
        border-radius: 5px;
    }

        .ideas-title .idea-count-slider div {
            font-size: 24px;
            font-weight: 700;
        }

    .ideas-title-2 .idea-count-slider-2 div {
        font-size: 24px;
        font-weight: 700;
    }

    .ideas-title span {
        font-size: 16px;
        font-weight: 400;
    }

    .ideas-title-row {
        margin-left: 30px !important;
        margin-right: 30px !important;
    }

    .ideas-title-2 {
        color: white;
        margin: auto auto 10px auto;
        text-align: center;
        padding: 10px;
        background-image: url("data:image/svg+xml,%3csvg width='100%25' height='100%25' xmlns='http://www.w3.org/2000/svg'%3e%3crect width='100%25' height='100%25' fill='none' rx='5' ry='5' stroke='%23A100FFFF' stroke-width='7' stroke-dasharray='5%2c 11' stroke-dashoffset='15' stroke-linecap='round'/%3e%3c/svg%3e");
        border-radius: 5px;
    }

        .ideas-title-2 span {
            font-size: 16px;
            font-weight: 500;
        }

            .ideas-title-2 span a {
                color: white;
                cursor: pointer;
                text-decoration: none;
            }

                .ideas-title-2 span a:hover {
                    color: white;
                    cursor: pointer;
                    text-decoration: underline;
                }

    .card-header1 {
        font-size: 50px;
    }

    .card-header2 {
        font-size: 40px;
    }

    .idea-count-header {
        font-size: 25px;
        color: white;
        font-weight: bold;
    }

    .idea-count {
        font-size: 24px;
    }

    /* Level 1 Card */
    .level-1-card {
        background-color: #EFEFEF;
        border-radius: 20px;
        min-width: 300px;
        max-width: 300px;
        min-height: 270px;
        max-height: 270px;
        padding: 5px;
    }

        .level-1-card:hover {
            cursor: pointer;
        }

        .level-1-card .card-type {
            font-size: 16px;
            margin-top: 10px;
            margin-left: 10px;
            color: #6E6E6E;
            font-weight: 600;
        }

        .level-1-card .card-body {
            font-size: 20px;
            margin: 10px 10px 0px 10px;
            padding: 0;
            font-weight: bold;
            text-transform: uppercase;
            /* display: inline-block;*/
            min-height: 110px;
            max-height: 110px;
        }

        .level-1-card .name-card {
            width: 237px;
            height: 61px;
            font-size: 12px;
            background-color: #c577f6;
            border-radius: 5px;
            filter: drop-shadow(0px 4px 4px #D8AEF2 1);
            position: relative;
            top: 70px;
            left: 25px;
            padding: 10px;
            z-index: 3;
        }

            .level-1-card .name-card .user-image {
                float: left;
                width: 40px;
                height: 40px;
                display: block;
                margin-right: 5px;
            }

                .level-1-card .name-card .user-image img {
                    border-radius: 50%;
                    width: 40px;
                    height: 40px;
                }

                    .level-1-card .name-card .user-image img:hover {
                        transform: scale(1);
                    }

            .level-1-card .name-card .user-name {
                padding-top: 5px;
                font-size: 10px;
            }

                .level-1-card .name-card .user-name div:first-child {
                    color: #6E6E6E
                }

                .level-1-card .name-card .user-name div:last-child {
                    font-weight: bold;
                    word-break: break-all;
                }


    /* Level 2 Card */
    .level-2-card {
        width: 260px;
        height: 220px;
        background-color: #EFEFEF;
        border-radius: 20px;
        padding: 10px;
        z-index: 2;
    }

        .level-2-card:hover {
            cursor: pointer;
        }

        .level-2-card .card-type {
            font-size: 10px;
        }

        .level-2-card .card-body {
            font-size: 16px;
            margin-top: 10px;
            padding: 0;
            font-weight: bold;
            text-transform: uppercase;
            /*  display: inline-block;*/
            min-height: 60px;
            max-height: 60px;
        }

        .level-2-card .name-card {
            width: 237px;
            height: 61px;
            font-size: 12px;
            background-color: #c577f6;
            border-radius: 5px;
            filter: drop-shadow(0px 4px 4px #D8AEF2 1);
            position: relative;
            top: 94px;
            left: 1px;
            padding: 10px;
        }

            .level-2-card .name-card .user-image {
                float: left;
                width: 40px;
                height: 40px;
                display: block;
                margin-right: 5px;
            }

                .level-2-card .name-card .user-image img {
                    border-radius: 50%;
                    width: 40px;
                    height: 40px;
                }

                    .level-2-card .name-card .user-image img:hover {
                        transform: scale(1);
                    }

            .level-2-card .name-card .user-name {
                padding-top: 5px;
                font-size: 10px;
            }

                .level-2-card .name-card .user-name div:first-child {
                    color: #6E6E6E;
                    font-weight: bold;
                }

                .level-2-card .name-card .user-name div:last-child {
                    font-weight: bold
                }


    /* Level 3 Card */
    .level-3-card {
        min-width: 215px;
        max-width: 215px;
        min-height: 175px;
        max-height: 175px;
        background-color: #EFEFEF;
        border-radius: 20px;
        padding: 10px;
        z-index: 1;
    }

        .level-3-card:hover {
            cursor: pointer;
        }

        .level-3-card .card-type {
        }

        .level-3-card .card-body {
            font-size: 16px;
            margin-top: 10px;
            padding: 0;
            font-weight: bold;
            text-transform: uppercase;
            /*display: inline-block;*/
        }

        .level-3-card .name-card {
            display: none;
        }

            .level-3-card .name-card .user-image {
                display: none;
            }

                .level-3-card .name-card .user-image img {
                    display: none;
                }

            .level-3-card .name-card .user-name {
                display: none;
            }


    /* latest-ldea idea Card */
    .latest-ldea-card {
        min-width: 210px;
        max-width: 210px;
        min-height: 180px;
        max-height: 180px;
        background-color: #EFEFEF;
        border-radius: 20px;
        padding: 10px;
        z-index: 1;
        position: relative;
        margin: 15px;
    }

        .latest-ldea-card:hover {
            cursor: pointer;
        }

        .latest-ldea-card .card-type {
            font-size: 14px;
        }

        .latest-ldea-card .card-body {
            font-size: 15px;
            margin-top: 10px;
            padding: 0;
            font-weight: bold;
            text-transform: uppercase;
            word-wrap: break-word;
            height: 90px;
        }

        .latest-ldea-card .name-card {
            display: flex;
            font-size: 10px;
            background-color: #c577f6;
            border-bottom-left-radius: 20px;
            border-bottom-right-radius: 20px;
            padding: 10px 10px 10px 10px;
            width: 210px;
            height: 50px;
            left: -10px;
            position: relative;
            word-break: break-all;
        }

            .latest-ldea-card .name-card .user-image {
                display: block;
                width: 30px;
                height: 30px;
                margin-right: 5px;
            }

                .latest-ldea-card .name-card .user-image img {
                    border-radius: 50%;
                    width: 35px;
                    height: 35px;
                    position: relative;
                    left: -4px;
                }

                    .latest-ldea-card .name-card .user-image img:hover {
                        transform: scale(1);
                    }

            .latest-ldea-card .name-card .user-name div:first-child {
                color: #6E6E6E;
            }

            .latest-ldea-card .name-card .user-name div:last-child {
                font-weight: bold;
                text-transform: lowercase;
            }

    .line-break {
        flex-basis: 100%;
        height: 0;
    }

    .display-card {
        width: 170px;
        height: 115px;
        border-radius: 10px;
        border: 5px dashed #A100FF;
    }

    .btn {
        width: 200px;
        height: 50px;
        background-color: #A100FF;
        font-size: 20px;
        font-weight: 400;
    }

    .btn-sm {
        font-weight: 500;
        padding: 5px;
        width: 90px;
    }

        .btn-sm:hover {
            transform: scale(1.1);
        }

    .submit-idea-container {
        top: 196px;
        left: 129.5px;
        bottom: 196px;
        right: 129.5px;
        display: block;
    }

    .navbar-close {
        font-size: 1.5rem;
        padding: 5px;
        color: white;
        float: right;
        padding-right: 50px;
        padding-top: 10px;
        position: relative;
    }

    .gradient-container-1 {
        height: 430px;
        background: linear-gradient(to right, rgba(0,0,0,100), rgba(161,0,255,10));
        margin-top: 20px;
    }

    .gradient-container-2 {
        height: 200px;
        background: linear-gradient(to top, rgba(0,0,0,100), rgba(161,0,255,10));
        position: relative;
        top: -60px;
    }

    .gradient-container-3 {
        min-height: 230px;
        background: linear-gradient(to bottom, rgba(0,0,0,100), rgba(135,8,209,10));
        position: relative;
        top: -120px;
    }

    .latest-ldea-idea-bg {
        position: relative;
        background-image: linear-gradient(to right, rgba(0,0,0,1), rgba(0,0,0,0));
        top: -204px;
        height: 430px;
        width: 43.5%;
        z-index: 3;
        top: -644px;
    }

    .latest-ldea-idea-text {
        position: relative;
        color: white;
        font-size: 40px;
        width: 300px;
        top: 130px;
        bottom: 160px;
        left: 90px;
        font-weight: bold;
        z-index: 5;
    }

    .idea-bulb {
        position: relative;
        font-size: 6rem;
        color: #A100FF;
        top: -70px;
        left: 320px;
    }

    .center-line {
        height: 70px;
        position: absolute;
        left: 50%;
        border: 5px dashed #A100FF;
        border-left: 0;
    }



    .automation-header {
        font-size: 40px;
        font-weight: bold;
        color: white;
        text-transform: uppercase;
        padding-left: 100px;
        position: relative;
        top: -90px;
        left: -15px;
    }



    .success-stories-header {
        font-size: 40px;
        font-weight: bold;
        color: white;
        text-transform: uppercase;
        padding-left: 100px;
        position: relative;
        top: -195px;
        width: 100px;
        left: -25px;
    }

    .pattern {
        position: relative;
    }

    .automation-pattern {
        float: right;
        position: relative;
        right: 10px;
        top: 100px;
        right: -463px;
    }

    .automation-text {
        color: white;
        position: relative;
        top: 60px;
        left: 100px;
        width: 700px;
    }

    .automation-robot {
        background-color: aqua;
        width: 480px;
        height: 396px;
        position: relative;
        float: right;
        right: 100px;
        border-radius: 10px;
        top: -240px;
        background: linear-gradient(to bottom, #4a838d, #12d9d9);
        z-index: 2;
    }

    .dot {
        width: 10px;
        height: 10px;
        background-color: #A100FF;
        border-radius: 50%;
        display: inline-block;
        margin: 10px;
    }

    .btn-view-more-success {
        background-color: #A100FF;
        border-color: white;
        color: white;
        font-weight: 400;
        margin: auto;
        position: relative;
        text-align: center;
        vertical-align: middle;
        display: inline-block;
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
        border: 1px solid transparent;
        padding: .375rem .75rem;
        font-size: 1rem;
        line-height: 1.5;
        border-radius: .25rem;
        transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
    }

        .btn-view-more-success:hover {
            color: white;
            transform: scale(1.1);
            text-decoration: none;
        }

    .top-innovations-container {
        height: 500px;
        margin: 0 45px 45px 45px;
        background-image: url("data:image/svg+xml,%3csvg width='100%25' height='100%25' xmlns='http://www.w3.org/2000/svg'%3e%3crect width='100%25' height='100%25' fill='none' rx='5' ry='5' stroke='%23A100FFFF' stroke-width='7' stroke-dasharray='5%2c 11' stroke-dashoffset='15' stroke-linecap='round'/%3e%3c/svg%3e");
        border-radius: 5px;
        position: relative;
    }

    ul {
        padding: 0;
        margin: 0;
    }

    btn-idea {
        display: inline-block;
        font-weight: 400;
        color: white;
        text-align: center;
        vertical-align: middle;
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
        background-color: #A100FF;
        border: 1px solid transparent;
        /*padding: .375rem .75rem;*/
        font-size: 1rem;
        line-height: 1.5;
        border-radius: .25rem;
        transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
    }
    /**/
    /*Idea details*/
    .idea-info-bg {
        background-color: #EFEFEF;
        border-radius: 5px;
        font-size: 12px;
        margin-top: 10px;
        margin-bottom: 10px;
        padding: 5px;
        word-wrap: break-word;
    }

        .idea-info-bg span {
            color: #EFEFEF;
            font-size: 12px;
            padding: 10px;
        }

    .idea-info-row {
        flex: 0 0 50%;
        max-width: 50%;
        padding: 10px 10px 0px 10px;
    }

    .idea-info-bg label {
        color: #A100FF;
        font-size: 14px;
        font-weight: bold;
        text-transform: uppercase;
        min-width: 160px;
        /* max-width: 160px;*/
    }

    .idea-info-display {
        min-height: 80px;
        background-image: url("data:image/svg+xml,%3csvg width='100%25' height='100%25' xmlns='http://www.w3.org/2000/svg'%3e%3crect width='100%25' height='100%25' fill='none' rx='5' ry='5' stroke='%23A100FFFF' stroke-width='7' stroke-dasharray='5%2c 11' stroke-dashoffset='15' stroke-linecap='round'/%3e%3c/svg%3e");
        border-radius: 5px;
        font-size: 24px;
        font-weight: bold;
        display: flex;
        position: relative;
        left: 20px;
    }

        .idea-info-display div:first-child {
            float: left;
            margin: auto;
            text-align: center;
        }

        .idea-info-display div:last-child {
            float: right;
            margin: auto;
            text-align: left;
        }

        .idea-info-display div {
        }

    .btn-idea-type {
        background-color: #A100FF;
        border-color: none;
        color: white;
        font-weight: 500;
        height: 40px;
        width: 120px;
        border-radius: 7px;
        margin: 20px;
        font-size: 14px;
    }

        .btn-idea-type:hover {
            color: white;
            text-decoration: none;
            transform: scale(1.1);
            border-color: none;
            background-color: #A100FF;
        }

        .btn-idea-type:focus, .btn-idea-type.focus {
            outline: 0;
            box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
        }


    .leader-thumbnail {
        min-width: 100px;
        max-width: 100px;
        min-height: 100px;
        max-height: 100px;
        border-radius: 50%;
        padding: 10px;
        margin: 5px;
    }

        .leader-thumbnail:hover {
            transform: scale(1.5);
        }

    .wizard-info {
        text-transform: uppercase;
    }

        .wizard-info:active {
            text-transform: uppercase;
        }

        .wizard-info:disabled {
            text-transform: uppercase;
        }

    .idea-card {
        height: 75%;
        width: 100%;
        text-transform: uppercase;
        border-radius: 10px;
        background-color: white;
    }

        .idea-card:hover {
            cursor: pointer;
        }

    .idea-type {
        padding: 10px;
        font-size: 16px;
        color: #6E6E6E;
        font-weight: 500;
    }

    .btn-link {
        font-weight: 500;
        color: #A100FF;
        text-decoration: none;
        font-size: 14px;
    }

    .custom-file-input {
        width: 50px;
        cursor: pointer;
        background-color: #A100FF;
        color: white;
        border-radius: 10px;
        opacity: 1;
        padding: 10px;
        margin-left: 40px;
        font-size: 14px;
    }


    .action-icons {
        color: black;
        font-size: 25px;
        padding: 15px;
    }

        .action-icons:hover {
            transform: scale(1.1);
        }

    .succss-story-container {
        min-height: 370px;
        max-height: 370px;
    }

    .latest-idea-container {
        position: relative;
        top: -210px;
        justify-content: flex-end;
        opacity: .6;
        padding: 10px 20px 10px 10px;
    }

    .success-story-heading {
        text-transform: uppercase;
        font-size: 24px;
        font-weight: bold;
        padding-left: 20px;
        color: #A100FF;
        text-align: center;
    }

    .success-story-key-objective-header {
        text-transform: uppercase;
        font-size: 24px;
        font-weight: bold;
        padding: 5px 10px 5px 20px;
        color: #A100FF;
    }

    .success-story-key-objective-text {
        padding: 5px 20px 5px 20px;
        text-align: justify;
    }

    .success-story-key-contract-header {
        text-transform: uppercase;
        font-size: 24px;
        color: white;
        font-weight: bold;
        padding: 5px 10px 5px 20px;
    }

    .success-story-key-contract-icon {
        float: right;
        font-size: 32px;
        padding-left: 25px;
    }

    .top-innov-head1 {
        text-transform: uppercase;
        font-size: 48px;
        font-weight: bold;
        text-align: left;
        padding-left: 20px;
        padding-top: 10px;
    }

    .top-innov-head2 {
        text-transform: uppercase;
        font-size: 22px;
        padding-left: 20px;
        text-align: left;
        padding-top: 20px;
    }

    .top-innov-head3 {
        font-size: 38px;
        padding-left: 20px;
        text-align: left;
        padding-top: 10px;
    }

    .top-innov-carousel-slide {
        height: 500px;
    }

    .top-innov-carousel-inner {
        color: white;
        margin: auto;
        position: relative;
        top: -110px;
        text-align: center;
    }

    .success-story-pattern {
        float: right;
        position: relative;
        top: -180px;
        right: 0px;
        width: 205px;
        overflow: overlay;
    }

    .latest-idea-tail {
        width: 24.6%;
    }

        .latest-idea-tail:nth-child(n+9) {
            display: none;
        }

    /* My Idea CSS*/


    .idea-tail {
        background-color: black;
        min-height: 640px;
        max-height: 640px;
        float: left;
        width: 50%;
    }

        .idea-tail.active {
            background-color: #A100FF;
        }

        .idea-tail .draft-tail-idea-count {
            color: #A100FF;
        }

        .idea-tail.active .draft-tail-idea-count {
            color: black;
        }

    .draft-tail-details {
        padding-top: 85px;
        font-size: 50px;
        font-weight: bold;
        color: white;
        text-transform: uppercase;
        text-align: center
    }

        .draft-tail-details .fa-bookmark-o {
            font-size: 100px;
            color: white;
            padding-left: 45px;
        }

        .draft-tail-details .fa-star-o {
            font-size: 40px;
            color: white;
            position: relative;
            left: -64px;
            top: -32px;
        }



        .draft-tail-details .fa-desktop {
            font-size: 75px;
            padding-left: 65px;
        }


        .draft-tail-details .fa-file-o {
            font-size: 60px;
            color: white;
            transform: rotateY(180deg);
            position: relative;
            left: -73px;
            top: -38px;
        }

        .draft-tail-details .fa-long-arrow-up {
            font-size: 20px;
            color: white;
            left: -106px;
            top: -43px;
            position: relative;
        }


        .draft-tail-details .draft-tail-text {
        }

    .idea-tail .draft-tail-idea-count {
        font-size: 15rem;
        font-weight: bold;
        text-align: center;
        position: relative;
        top: -50px;
    }

    .my-idea-display-card {
        color: white;
        margin: 10px;
        left: 60px;
        text-align: center;
        background-image: url("data:image/svg+xml,%3csvg width='100%25' height='100%25' xmlns='http://www.w3.org/2000/svg'%3e%3crect width='100%25' height='100%25' fill='none' rx='5' ry='5' stroke='%23A100FFFF' stroke-width='7' stroke-dasharray='5%2c 11' stroke-dashoffset='15' stroke-linecap='round'/%3e%3c/svg%3e");
        border-radius: 5px;
    }

        .my-idea-display-card.card-small {
            width: 200px;
            height: 150px;
            padding: 10px;
        }

        .my-idea-display-card.card-medium {
            width: 770px;
            height: 150px;
            padding: 10px;
        }

    .my-idea-display-card-count {
        text-transform: uppercase;
        color: white;
        text-align: center;
        font-size: 40px;
        padding: 10px;
        font-weight: 600;
    }

    .my-idea-display-card-text {
        text-transform: uppercase;
        color: white;
        text-align: center;
        padding: 10px;
    }

    .myidea-contest-msg-container {
        float: left;
        width: 70%;
        padding-top: 0px;
    }

        .myidea-contest-msg-container div:first-child {
            text-transform: uppercase;
            padding-left: 15px;
            text-align: left;
            font-weight: 500;
            font-size: 14px;
        }

        .myidea-contest-msg-container div:nth-child(2) {
            text-transform: uppercase;
            color: white;
            text-align: left;
            font-size: 24px;
            padding-left: 15px;
            font-weight: 600;
        }

        .myidea-contest-msg-container div:last-child {
            color: gray;
            text-align: left;
            padding-left: 15px;
            font-size: 14px;
        }

    .myidea-contest-schedule-container {
        float: right;
        width: 30%;
        padding-top: 10px;
    }

        .myidea-contest-schedule-container div:first-child {
            text-transform: uppercase;
            color: gray;
            text-align: center;
            padding: 15px;
            font-weight: 600;
            font-size: 14px;
        }

        .myidea-contest-schedule-container div:last-child {
            text-transform: uppercase;
            color: white;
            text-align: center;
            font-size: 20px;
            padding: 10px;
            font-weight: 600;
        }

    .myidea-contest-container-split {
        height: 140px;
        position: absolute;
        left: 67%;
        margin-left: -3px;
        border: 5px dashed #A100FF;
        border-left: 0;
        top: 15px;
    }

    .btn-export {
        border: 2px solid #A100FF;
        background: transparent;
        color: #A100FF;
        padding: 5px;
        border-radius: 5px;
        width: 130px;
    }


        .btn-export:hover {
            border: 2px solid #A100FF;
            background-color: transparent;
            color: black;
            transform: scale(1,1)
        }

    .btn-more-filter {
        border: 2px solid #A100FF;
        background: transparent;
        color: #A100FF;
        padding: 5px;
        border-radius: 5px;
        width: 130px;
        height: 40px;
    }

        .btn-more-filter:hover {
            color: white;
            transform: scaleY(1.1);
            font-weight: bold;
            background-color: #A100FF;
            border: 2px solid #A100FF;
        }

        .btn-more-filter.active {
            color: white;
            font-weight: bold;
            background-color: #A100FF;
            border: 2px solid #A100FF;
        }

    .move-to-ignite-container {
        text-align: left;
        display: block;
        height: 35px
    }

    .move-to-ignite {
        color: #A100FF !important;
        font-size: 13px;
        text-transform: capitalize;
        margin-right: 10px;
        font-weight: 500;
        margin-left: 15px;
    }

        .move-to-ignite span {
            border-radius: 50%;
            background-color: #A100FF;
            color: white;
            margin-left: 6px;
            padding: 4px;
        }

            .move-to-ignite span i {
                padding: 2px;
                font-size: 16px;
            }

    .idea-card-body {
        padding: 10px;
        font-size: 14px;
        font-weight: 500;
        word-wrap: break-word;
        height: 70px;
    }

    .idea-card-footer {
        background-color: #A100FF;
        padding: 10px 0px 0px 25px;
        border-bottom-right-radius: 10px;
        border-bottom-left-radius: 10px;
        height: 45px;
        color: white;
        position: relative;
        top: -6%;
    }

    .btn-my-idea-view-more {
        font-weight: 500;
        color: #A100ff;
        text-decoration: none;
        font-size: 14px;
    }

        .btn-my-idea-view-more:hover {
            font-weight: 500;
            color: white;
            text-decoration: underline;
            transform: scale(1.1);
        }

    .myidea-list-text {
        color: white;
        font-weight: bold;
        font-size: 24px;
        text-transform: uppercase;
        padding-left: 40px;
    }

    .myidea-viewmore-container {
        padding-right: 40px;
        color: white;
        width: 100%;
        text-align: right;
    }

    .myidea-no-row {
        width: 100%;
        margin-left: 40px;
        border: 2px solid white;
        line-height: 100px;
        margin-right: 40px;
        text-align: center;
        color: white;
        margin-top: 20px;
    }

    .filter-all-idea-icon {
        color: white;
        float: right;
        padding-top: 5px;
    }

    .top-innovation-item {
        height: 450px;
    }

    .img-winning-concept1 {
        display: inline;
        max-width: 60px;
        height: 60px;
        border-radius: 100%;
        margin: 7px;
    }

        .img-winning-concept1:hover {
            transform: scale(1.5);
        }

    .img-winning-concept2 {
        display: inline;
        max-width: 60px;
        height: 60px;
        border-radius: 100%;
        margin: 5px;
    }

        .img-winning-concept2:hover {
            transform: scale(1.5);
        }

    .img-winning-concept3 {
        display: inline;
        max-width: 60px;
        height: 60px;
        border-radius: 100%;
        margin: 2px;
    }

        .img-winning-concept3:hover {
            transform: scale(1.5);
        }

    .update-setting-icon {
        font-size: 28px;
        color: #A100FF;
        margin-left: 15px;
    }

        .update-setting-icon:hover {
            cursor: pointer;
            transform: scale(1.1);
        }

    .idea-like-icon {
        color: darkgray;
        font-weight: bold;
        margin-left: 25px;
        font-size: 26px;
    }

        .idea-like-icon:hover {
            cursor: pointer;
        }

    .idea-liked-icon {
        color: deeppink;
        font-weight: bold;
        margin-left: 25px;
        font-size: 26px;
    }


        .idea-liked-icon:hover {
            cursor: pointer;
        }

    .filter-application-area {
        width: 170px;
        left: -12px;
        position: relative;
    }

    .action-icon-container {
        display: flex;
        justify-content: space-evenly;
    }

    .action-icon-edit {
        color: black;
        font-size: 25px;
        padding: 0px;
    }

    .action-icon-delete {
        color: red;
        font-size: 25px;
        padding: 0px;
        margin-left: 10px;
    }

    .action-icon-setting {
        color: #A100FF;
        font-size: 25px;
        padding: 0px;
    }

    .action-icon-edit:hover {
        transform: scale(1.2);
        color: black;
        cursor: pointer;
    }

    .action-icon-delete:hover {
        transform: scale(1.2);
        color: red;
        cursor: pointer;
    }

    .action-icon-setting:hover {
        color: #A100FF;
        transform: scale(1.2);
        cursor: pointer;
    }

    .action-icon-message {
        width: 25px;
        height: 25px;
        margin-bottom: 10px;
        margin-left: 10px;
    }

        .action-icon-message:hover {
            transform: scale(1.2);
            cursor: pointer;
        }

    .angle-down-icon {
        font-size: 60px;
        color: #A100FF;
        padding-top: 20px;
    }

        .angle-down-icon i {
            font-size: 60px;
            color: #A100FF;
        }

    .user-profile {
        width: 45px;
        border-radius: 100%;
    }

        .user-profile:hover {
            transform: scale(1.3);
        }

    .idea-type-header {
        color: white;
        font-size: 28px;
        position: relative;
        z-index: 100;
        top: -80px;
        left: 35px;
        font-weight: 600;
    }

    .theme-refernce-link {
        color: white;
        position: relative;
        left: 30px;
        top: 50px;
        font-weight: 600;
    }

    .btn-theme {
        transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
        border-radius: .25rem;
        border: 1px solid transparent;
        font-size: 1rem;
        line-height: 1.5;
        display: inline-block;
        text-align: center;
        vertical-align: middle;
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
    }

    .btn-theme-reference {
        background-color: #A100FF;
        border-color: #A100FF;
        color: white;
        font-size: 14px;
        font-weight: 400;
        margin: auto;
        padding: 10px;
        position: relative;
        width: 215px;
    }

    .btn-theme:hover {
        color: white;
        text-decoration: none;
        transform: scale(1.1);
        background-color: #A100FF;
    }

    .btn-theme:focus {
        outline: 0;
        box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
    }
}

@media screen and (min-width: 1200px) {
    .back-to-top {
        display: none;
        position: fixed;
        bottom: 0px;
        right: 5px;
        z-index: 10000;
        border: none;
        outline: none;
        background-color: #7a00ff73;
        color: white;
        cursor: pointer;
        padding: 0px;
        border-radius: 50%;
        width: 50px;
    }

    .footer-link {
        padding-right: 35px;
    }

    .back-to-top:hover {
        background-color: #5555558c;
    }

    .first-row {
        padding-top: 10px;
    }

    h1 {
        font-size: 50px;
    }

    h2 {
        font-size: 40px;
    }

    h3 {
        font-size: 24px;
    }

    h4 {
        font-size: 16px;
    }

    .row-p3 {
        padding-left: 30px;
        padding-right: 30px;
    }

    .row-p4 {
        padding-left: 40px;
        padding-right: 40px;
    }

    .row-p5 {
        padding-left: 0px;
        padding-right: 90px;
    }

    .row-p6 {
        padding-left: 40px;
        padding-right: 40px;
    }

    .header-text {
        font-size: 40px;
        font-weight: bold;
        color: white;
        text-transform: uppercase;
        display: flex;
        justify-content: center;
    }



    .fa-list-bar:before {
        content: "\2261";
        font-size: 60px;
        font-weight: 600;
    }


    .footer {
        font-size: 1rem;
        background-color: #A100FF;
        line-height: 50px;
        color: white;
        font-weight: 600;
        z-index: 9;
        bottom: 0;
        position: sticky;
    }

        .footer a {
            background-color: #A100FF;
            line-height: 50px;
            color: white;
            font-weight: 600;
            padding-right: 20px;
            padding-left: 20px;
            align-items: center;
        }

    footer a:hover {
        background-color: #A100FF;
        line-height: 50px;
        color: white;
        font-weight: bolder;
        padding-right: 20px;
        padding-left: 20px;
        align-items: center;
        text-decoration: none;
    }

    /*    .brand-header {
        text-decoration: none;
        color: white;
        margin: auto;
        padding-left: 60px;
        padding-top: 10px;
        padding-bottom: 10px;
        font-size: 24px;
        font-weight: bold;
        display: flex;
    }

        .brand-header:hover {
            text-decoration: none;
            color: #A100FF;
        }*/


    .brand-logo {
        width: 40px;
        height: 40px;
        margin-right: 10px;
        color: white;
    }

    .brand-header {
        text-decoration: none;
        color: white;
        margin: auto;
        display: flex;
        font-size: 24px;
        color: white;
        text-transform: uppercase;
        font-weight: 600;
        transition: all 1s ease-in-out;
        position: relative;
        padding-top: 20px;
        /*padding-left: 60px;*/
    }

        .brand-header::before {
            text-decoration: none;
            content: attr(data-item);
            transition: all 1s ease-in-out;
            color: #A100FF;
            position: absolute;
            width: 0;
            overflow: hidden;
        }

        .brand-header:hover::before {
            width: 100%;
            text-decoration: none;
        }

        .brand-header:hover {
            text-decoration: none;
        }

    .has-error {
        border: 2px solid red !important;
    }

    /*.home-left-scroll {
    height: 400px;
    margin-left: 45px;
    background-image: url("data:image/svg+xml,%3csvg width='100%25' height='100%25' xmlns='http://www.w3.org/2000/svg'%3e%3crect width='100%25' height='100%25' fill='none' rx='5' ry='5' stroke='%23A100FFFF' stroke-width='7' stroke-dasharray='5%2c 11' stroke-dashoffset='15' stroke-linecap='round'/%3e%3c/svg%3e");
    border-radius: 5px;
}*/

    btn {
        display: inline-block;
        font-weight: 400;
        color: white;
        text-align: center;
        vertical-align: middle;
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
        background-color: #A100FF;
        border: 1px solid transparent;
        padding: .375rem .75rem;
        font-size: 1rem;
        line-height: 1.5;
        border-radius: .25rem;
        transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
    }

    .btn-submit-idea {
        background-color: #A100FF;
        border-color: #A100FF;
        color: white;
        font-weight: bolder;
        margin: auto;
        padding: 10px;
    }

        .btn-submit-idea:hover {
            color: white;
            text-decoration: none;
            transform: scale(1.1);
            background-color: #A100FF;
        }

        .btn-submit-idea:focus, .btn-submit-idea.focus {
            outline: 0;
            box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
        }

    .btn-view-more {
        background-color: #A100FF;
        border-color: #A100FF;
        color: white;
        font-weight: bolder;
        margin: auto;
        padding: 10px;
    }

        .btn-view-more:hover {
            color: #212529;
            text-decoration: none;
        }

        .btn-view-more:focus, .btn-view-more.focus {
            outline: 0;
            box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
        }

    .img-soft-hand {
        color: rgba(12,0,40,.075);
    }

    .btn-submit-idea-text {
        width: min-content;
        color: white;
        /*padding-bottom: 60px;*/
        font-weight: bolder;
    }

    /*    .navbar-expand .navbar-nav .nav-link {
        padding-right: 1.2rem;
        padding-left: 1.2rem;
    }*/

    .nav-link {
        display: block;
        padding: .5rem 1rem;
        color: white !important;
        font-weight: bold;
    }

        .nav-link:hover {
            display: block;
            padding: .5rem 1rem;
            color: white !important;
            font-weight: bold;
            /*background-color: #A100FF;*/
        }

    .ideas-title {
        color: white;
        margin: auto;
        left: 60px;
        text-align: center;
        padding: 10px;
        width: 140px;
        background-image: url("data:image/svg+xml,%3csvg width='100%25' height='100%25' xmlns='http://www.w3.org/2000/svg'%3e%3crect width='100%25' height='100%25' fill='none' rx='5' ry='5' stroke='%23A100FFFF' stroke-width='7' stroke-dasharray='5%2c 11' stroke-dashoffset='15' stroke-linecap='round'/%3e%3c/svg%3e");
        border-radius: 5px;
    }

        .ideas-title .idea-count-slider div {
            font-size: 24px;
            font-weight: 700;
        }

    .ideas-title-2 .idea-count-slider-2 div {
        font-size: 24px;
        font-weight: 700;
    }

    .ideas-title span {
        font-size: 16px;
        font-weight: 400;
    }

    .ideas-title-row {
        margin-left: 20px !important;
        margin-right: 20px !important;
    }

    .ideas-title-2 {
        color: white;
        margin: auto auto 10px auto;
        text-align: center;
        padding: 10px;
        background-image: url("data:image/svg+xml,%3csvg width='100%25' height='100%25' xmlns='http://www.w3.org/2000/svg'%3e%3crect width='100%25' height='100%25' fill='none' rx='5' ry='5' stroke='%23A100FFFF' stroke-width='7' stroke-dasharray='5%2c 11' stroke-dashoffset='15' stroke-linecap='round'/%3e%3c/svg%3e");
        border-radius: 5px;
        flex: 0 0 auto;
        width: 16.66666667%;
    }

        .ideas-title-2 span {
            font-size: 16px;
            font-weight: 500;
        }

            .ideas-title-2 span a {
                color: white;
                cursor: pointer;
                text-decoration: none;
            }

                .ideas-title-2 span a:hover {
                    color: white;
                    cursor: pointer;
                    text-decoration: underline;
                }

    .card-header1 {
        font-size: 50px;
    }

    .card-header2 {
        font-size: 40px;
    }

    .idea-count-header {
        font-size: 25px;
        color: white;
        font-weight: bold;
    }

    .idea-count {
        font-size: 24px;
    }

    /* Level 1 Card */
    .level-1-card {
        background-color: #EFEFEF;
        border-radius: 20px;
        min-width: 346px;
        max-width: 346px;
        min-height: 306px;
        max-height: 306px;
        padding: 5px;
    }

        .level-1-card:hover {
            cursor: pointer;
        }

        .level-1-card .card-type {
            font-size: 16px;
            margin-top: 10px;
            margin-left: 10px;
            color: #6E6E6E;
            font-weight: 600;
        }

        .level-1-card .card-body {
            font-size: 24px;
            margin: 10px 10px 0px 10px;
            padding: 0;
            font-weight: bold;
            text-transform: uppercase;
            /* display: inline-block;*/
            min-height: 140px;
            max-height: 140px;
        }

        .level-1-card .name-card {
            width: 237px;
            height: 61px;
            font-size: 12px;
            background-color: #c577f6;
            border-radius: 5px;
            filter: drop-shadow(0px 4px 4px #D8AEF2 1);
            position: relative;
            top: 85px;
            left: 50px;
            padding: 10px;
            z-index: 3;
        }

            .level-1-card .name-card .user-image {
                float: left;
                width: 40px;
                height: 40px;
                display: block;
                margin-right: 5px;
            }

                .level-1-card .name-card .user-image img {
                    border-radius: 50%;
                    width: 40px;
                    height: 40px;
                }

                    .level-1-card .name-card .user-image img:hover {
                        transform: scale(1);
                    }

            .level-1-card .name-card .user-name {
                padding-top: 5px;
                font-size: 10px;
            }

                .level-1-card .name-card .user-name div:first-child {
                    color: #6E6E6E;
                    font-weight: bold;
                }

                .level-1-card .name-card .user-name div:last-child {
                    font-weight: bold;
                    word-break: break-all;
                }


    /* Level 2 Card */
    .level-2-card {
        width: 274px;
        height: 242px;
        background-color: #EFEFEF;
        border-radius: 20px;
        padding: 10px;
        z-index: 2;
    }

        .level-2-card:hover {
            cursor: pointer;
        }

        .level-2-card .card-type {
            font-size: 12px;
            font-weight: 500;
        }

        .level-2-card .card-body {
            font-size: 16px;
            margin-top: 10px;
            padding: 0;
            font-weight: bold;
            text-transform: uppercase;
            /*  display: inline-block;*/
            min-height: 60px;
            max-height: 60px;
        }

        .level-2-card .name-card {
            width: 237px;
            height: 61px;
            font-size: 12px;
            background-color: #c577f6;
            border-radius: 5px;
            filter: drop-shadow(0px 4px 4px #D8AEF2 1);
            position: relative;
            top: 120px;
            left: 9px;
            padding: 10px;
        }

            .level-2-card .name-card .user-image {
                float: left;
                width: 40px;
                height: 40px;
                display: block;
                margin-right: 5px;
            }

                .level-2-card .name-card .user-image img {
                    border-radius: 50%;
                    width: 40px;
                    height: 40px;
                }

                    .level-2-card .name-card .user-image img:hover {
                        transform: scale(1);
                    }

            .level-2-card .name-card .user-name {
                padding-top: 5px;
                font-size: 10px;
            }

                .level-2-card .name-card .user-name div:first-child {
                    color: #6E6E6E
                }

                .level-2-card .name-card .user-name div:last-child {
                    font-weight: bold
                }


    /* Level 3 Card */
    .level-3-card {
        min-width: 238px;
        max-width: 238px;
        min-height: 192px;
        max-height: 192px;
        background-color: #EFEFEF;
        border-radius: 20px;
        padding: 10px;
        z-index: 1;
    }

        .level-3-card:hover {
            cursor: pointer;
        }

        .level-3-card .card-type {
            font-size: 10px;
        }

        .level-3-card .card-body {
            font-size: 16px;
            margin-top: 10px;
            padding: 0;
            font-weight: bold;
            text-transform: uppercase;
            /*  display: inline-block;*/
        }

        .level-3-card .name-card {
            display: none;
        }

            .level-3-card .name-card .user-image {
                display: none;
            }

                .level-3-card .name-card .user-image img {
                    display: none;
                }

            .level-3-card .name-card .user-name {
                display: none;
            }


    /* latest-ldea idea Card */
    .latest-ldea-card {
        min-width: 210px;
        max-width: 210px;
        min-height: 180px;
        max-height: 180px;
        background-color: #EFEFEF;
        border-radius: 20px;
        padding: 10px;
        z-index: 1;
        position: relative;
        margin: 15px;
        left: -25px;
    }

        .latest-ldea-card:hover {
            cursor: pointer;
        }

        .latest-ldea-card .card-type {
            font-size: 14px;
        }

        .latest-ldea-card .card-body {
            font-size: 15px;
            margin-top: 10px;
            padding: 0;
            font-weight: bold;
            text-transform: uppercase;
            word-wrap: break-word;
            height: 90px;
        }

        .latest-ldea-card .name-card {
            display: flex;
            font-size: 10px;
            background-color: #c577f6;
            border-bottom-left-radius: 20px;
            border-bottom-right-radius: 20px;
            padding: 10px 10px 10px 10px;
            width: 210px;
            height: 50px;
            left: -10px;
            position: relative;
            word-break: break-all;
        }

            .latest-ldea-card .name-card .user-image {
                display: block;
                width: 30px;
                height: 30px;
                margin-right: 5px;
            }

                .latest-ldea-card .name-card .user-image img {
                    border-radius: 50%;
                    width: 35px;
                    height: 35px;
                    position: relative;
                    left: -4px;
                }

                    .latest-ldea-card .name-card .user-image img:hover {
                        transform: scale(1);
                    }

            .latest-ldea-card .name-card .user-name div:first-child {
                color: #6E6E6E;
            }

            .latest-ldea-card .name-card .user-name div:last-child {
                font-weight: bold;
                text-transform: lowercase;
            }

    .line-break {
        flex-basis: 100%;
        height: 0;
    }

    .display-card {
        width: 170px;
        height: 115px;
        border-radius: 10px;
        border: 5px dashed #A100FF;
    }

    .btn {
        width: 200px;
        height: 50px;
        background-color: #A100FF;
        font-size: 20px;
        font-weight: 400;
    }

    .btn-sm {
        font-weight: 500;
        padding: 5px;
        width: 90px;
    }

        .btn-sm:hover {
            transform: scale(1.1);
        }

    .submit-idea-container {
        top: 196px;
        left: 129.5px;
        bottom: 196px;
        right: 129.5px;
        display: block;
    }

    .gradient-container-1 {
        height: 430px;
        background: linear-gradient(to right, rgba(0,0,0,100), rgba(161,0,255,10));
        margin-top: 20px;
    }

    .gradient-container-2 {
        height: 200px;
        background: linear-gradient(to top, rgba(0,0,0,100), rgba(161,0,255,10));
        position: relative;
        top: -60px;
    }

    .gradient-container-3 {
        min-height: 230px;
        background: linear-gradient(to bottom, rgba(0,0,0,100), rgba(135,8,209,10));
        position: relative;
        top: -120px;
    }

    .latest-ldea-idea-bg {
        position: relative;
        background-image: linear-gradient(to right, rgba(0,0,0,1), rgba(0,0,0,0));
        top: -204px;
        height: 430px;
        width: 43.5%;
        z-index: 3;
        top: -644px;
    }

    .latest-ldea-idea-text {
        position: relative;
        color: white;
        font-size: 40px;
        width: 300px;
        top: 130px;
        bottom: 160px;
        left: 65px;
        font-weight: bold;
        z-index: 5;
    }

    .idea-bulb {
        position: relative;
        font-size: 6rem;
        color: #A100FF;
        top: -70px;
        left: 320px;
    }

    .center-line {
        height: 70px;
        position: absolute;
        left: 50%;
        border: 5px dashed #A100FF;
        border-left: 0;
    }



    .automation-header {
        font-size: 40px;
        font-weight: bold;
        color: white;
        text-transform: uppercase;
        padding-left: 100px;
        position: relative;
        top: -90px;
        left: -15px;
    }



    .success-stories-header {
        font-size: 40px;
        font-weight: bold;
        color: white;
        text-transform: uppercase;
        padding-left: 100px;
        position: relative;
        top: -195px;
        width: 100px;
        left: -25px;
    }

    .pattern {
        position: relative;
    }

    .automation-pattern {
        float: right;
        position: relative;
        right: 10px;
        top: 100px;
        right: -463px;
    }

    .automation-text {
        color: white;
        position: relative;
        top: 60px;
        left: 100px;
        width: 700px;
    }

    .automation-robot {
        background-color: aqua;
        width: 480px;
        height: 396px;
        position: relative;
        float: right;
        right: 100px;
        border-radius: 10px;
        top: -240px;
        background: linear-gradient(to bottom, #4a838d, #12d9d9);
        z-index: 2;
    }

    .dot {
        width: 10px;
        height: 10px;
        background-color: #A100FF;
        border-radius: 50%;
        display: inline-block;
        margin: 10px;
    }



    .btn-view-more-success {
        background-color: #A100FF;
        border-color: white;
        color: white;
        font-weight: 400;
        margin: auto;
        position: relative;
        text-align: center;
        vertical-align: middle;
        display: inline-block;
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
        border: 1px solid transparent;
        padding: .375rem .75rem;
        font-size: 1rem;
        line-height: 1.5;
        border-radius: .25rem;
        transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
    }

        .btn-view-more-success:hover {
            color: white;
            transform: scale(1.1);
            text-decoration: none;
        }

    .top-innovations-container {
        height: 500px;
        margin: 0 45px 45px 45px;
        background-image: url("data:image/svg+xml,%3csvg width='100%25' height='100%25' xmlns='http://www.w3.org/2000/svg'%3e%3crect width='100%25' height='100%25' fill='none' rx='5' ry='5' stroke='%23A100FFFF' stroke-width='7' stroke-dasharray='5%2c 11' stroke-dashoffset='15' stroke-linecap='round'/%3e%3c/svg%3e");
        border-radius: 5px;
        position: relative;
    }

    ul {
        padding: 0;
        margin: 0;
    }



    btn-idea {
        display: inline-block;
        font-weight: 400;
        color: white;
        text-align: center;
        vertical-align: middle;
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
        background-color: #A100FF;
        border: 1px solid transparent;
        /*padding: .375rem .75rem;*/
        font-size: 1rem;
        line-height: 1.5;
        border-radius: .25rem;
        transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
    }
    /**/
    /*Idea details*/
    .idea-info-bg {
        background-color: #EFEFEF;
        border-radius: 5px;
        font-size: 12px;
        margin-top: 10px;
        margin-bottom: 10px;
        padding: 5px;
        word-wrap: break-word;
    }

        .idea-info-bg span {
            color: #EFEFEF;
            font-size: 12px;
            padding: 10px;
        }

    .idea-info-row {
        flex: 0 0 50%;
        max-width: 50%;
        padding: 10px 10px 0px 10px;
    }

    .idea-info-bg label {
        color: #A100FF;
        font-size: 14px;
        font-weight: bold;
        text-transform: uppercase;
        min-width: 125px;
        /*max-width: 160px;*/
    }

    .idea-info-display {
        min-height: 80px;
        background-image: url("data:image/svg+xml,%3csvg width='100%25' height='100%25' xmlns='http://www.w3.org/2000/svg'%3e%3crect width='100%25' height='100%25' fill='none' rx='5' ry='5' stroke='%23A100FFFF' stroke-width='7' stroke-dasharray='5%2c 11' stroke-dashoffset='15' stroke-linecap='round'/%3e%3c/svg%3e");
        border-radius: 5px;
        font-size: 24px;
        font-weight: bold;
        display: flex;
        position: relative;
        left: 20px;
    }

        .idea-info-display div:first-child {
            float: left;
            margin: auto;
            text-align: center;
        }

        .idea-info-display div:last-child {
            float: right;
            margin: auto;
            text-align: left;
        }

        .idea-info-display div {
        }

    .btn-idea-type {
        background-color: #A100FF;
        border-color: none;
        color: white;
        font-weight: 500;
        height: 40px;
        width: 120px;
        border-radius: 7px;
        margin: 20px;
        font-size: 14px;
    }

        .btn-idea-type:hover {
            color: white;
            text-decoration: none;
            transform: scale(1.1);
            border-color: none;
            background-color: #A100FF;
        }

        .btn-idea-type:focus, .btn-idea-type.focus {
            outline: 0;
            box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
        }


    .leader-thumbnail {
        min-width: 95px;
        max-width: 95px;
        min-height: 95px;
        max-height: 95px;
        border-radius: 50%;
        padding: 10px;
        margin: 15px;
    }

        .leader-thumbnail:hover {
            transform: scale(1.5);
        }

    .wizard-info {
        text-transform: uppercase;
    }

        .wizard-info:active {
            text-transform: uppercase;
        }

        .wizard-info:disabled {
            text-transform: uppercase;
        }

    .idea-card {
        height: 170px;
        width: 180px;
        text-transform: uppercase;
        border-radius: 10px;
        background-color: white;
    }

        .idea-card:hover {
            cursor: pointer;
        }

    .idea-type {
        padding: 10px;
        font-size: 12px;
        color: #6E6E6E;
        font-weight: 500;
    }

    .btn-link {
        font-weight: 500;
        color: #A100FF;
        text-decoration: none;
        font-size: 14px;
    }

    .custom-file-input {
        width: 50px;
        cursor: pointer;
        background-color: #A100FF;
        color: white;
        border-radius: 10px;
        opacity: 1;
        padding: 10px;
        margin-left: 40px;
        font-size: 14px;
    }


    .action-icons {
        color: black;
        font-size: 25px;
        padding: 15px;
    }

        .action-icons:hover {
            transform: scale(1.1);
        }

    .succss-story-container {
        min-height: 380px;
        max-height: 380px;
    }

    .latest-idea-container {
        position: relative;
        top: -210px;
        opacity: .6;
        padding: 10px 10px 10px 10px;
    }



    .success-story-heading {
        text-transform: uppercase;
        font-size: 24px;
        font-weight: bold;
        padding-left: 20px;
        color: #A100FF;
        text-align: center;
    }

    .success-story-key-objective-header {
        text-transform: uppercase;
        font-size: 24px;
        font-weight: bold;
        padding: 5px 10px 5px 20px;
        color: #A100FF;
    }

    .success-story-key-objective-text {
        padding: 5px 20px 5px 20px;
        text-align: justify;
    }

    .success-story-key-contract-header {
        text-transform: uppercase;
        font-size: 24px;
        color: white;
        font-weight: bold;
        padding: 5px 10px 5px 20px;
    }

    .success-story-key-contract-icon {
        float: right;
        font-size: 36px;
        padding-left: 65px;
    }

    .top-innov-head1 {
        text-transform: uppercase;
        font-size: 50px;
        font-weight: bold;
        text-align: left;
        padding-left: 20px;
        padding-top: 20px;
    }

    .top-innov-head2 {
        text-transform: uppercase;
        font-size: 24px;
        padding-left: 20px;
        text-align: left;
        padding-top: 40px;
    }

    .top-innov-head3 {
        font-size: 40px;
        padding-left: 20px;
        text-align: left;
        padding-top: 40px;
    }

    .top-innov-carousel-slide {
        height: 500px;
    }

    .top-innov-carousel-inner {
        color: white;
        margin: auto;
        position: relative;
        top: -110px;
        text-align: center;
    }

    .success-story-pattern {
        float: right;
        position: relative;
        top: -180px;
        right: 0px;
        width: 205px;
        overflow: overlay;
    }

    .latest-idea-tail {
        width: 11%;
        margin: 5px 45px;
    }

        .latest-idea-tail:nth-child(n+11) {
            display: none;
        }


    /* My Idea CSS*/


    .idea-tail {
        background-color: black;
        min-height: 640px;
        max-height: 640px;
        float: left;
        width: 50%;
    }

        .idea-tail.active {
            background-color: #A100FF;
        }

        .idea-tail .draft-tail-idea-count {
            color: #A100FF;
        }

        .idea-tail.active .draft-tail-idea-count {
            color: black;
        }

    .draft-tail-details {
        padding-top: 85px;
        font-size: 50px;
        font-weight: bold;
        color: white;
        text-transform: uppercase;
        text-align: center
    }

        .draft-tail-details .fa-bookmark-o {
            font-size: 100px;
            padding-left: 45px;
            color: white;
        }

        .draft-tail-details .fa-star-o {
            font-size: 40px;
            color: white;
            position: relative;
            left: -64px;
            top: -32px;
        }



        .draft-tail-details .fa-desktop {
            font-size: 75px;
            padding-left: 65px;
        }


        .draft-tail-details .fa-file-o {
            font-size: 60px;
            color: white;
            transform: rotateY(180deg);
            position: relative;
            left: -73px;
            top: -38px;
        }

        .draft-tail-details .fa-long-arrow-up {
            font-size: 20px;
            color: white;
            left: -106px;
            top: -43px;
            position: relative;
        }


        .draft-tail-details .draft-tail-text {
        }

    .idea-tail .draft-tail-idea-count {
        font-size: 15rem;
        font-weight: bold;
        text-align: center;
        position: relative;
        top: -50px;
    }

    .my-idea-display-card {
        color: white;
        margin: 10px;
        left: 60px;
        text-align: center;
        background-image: url("data:image/svg+xml,%3csvg width='100%25' height='100%25' xmlns='http://www.w3.org/2000/svg'%3e%3crect width='100%25' height='100%25' fill='none' rx='5' ry='5' stroke='%23A100FFFF' stroke-width='7' stroke-dasharray='5%2c 11' stroke-dashoffset='15' stroke-linecap='round'/%3e%3c/svg%3e");
        border-radius: 5px;
    }

        .my-idea-display-card.card-small {
            height: 160px;
            padding: 10px;
            width: 100%;
        }

        .my-idea-display-card.card-medium {
            width: 100%;
            height: 160px;
            /*  padding: 10px;*/
        }

    .my-idea-display-card-count {
        text-transform: uppercase;
        color: white;
        text-align: center;
        font-size: 40px;
        padding: 10px;
        font-weight: 600;
    }

    .my-idea-display-card-text {
        text-transform: uppercase;
        color: white;
        text-align: center;
        padding: 10px;
    }

    .myidea-contest-msg-container {
        float: left;
        width: 70%;
        padding-top: 0px;
    }

        .myidea-contest-msg-container div:first-child {
            text-transform: uppercase;
            padding-left: 15px;
            text-align: left;
            font-weight: 500;
            padding-top: 5px;
        }

        .myidea-contest-msg-container div:nth-child(2) {
            text-transform: uppercase;
            color: white;
            text-align: left;
            font-size: 26px;
            padding-left: 15px;
            font-weight: 600;
        }

        .myidea-contest-msg-container div:last-child {
            color: gray;
            text-align: left;
            padding-left: 15px;
            font-size: 15px;
        }

    .myidea-contest-schedule-container {
        float: right;
        width: 30%;
        padding-top: 10px;
    }

        .myidea-contest-schedule-container div:first-child {
            text-transform: uppercase;
            color: gray;
            text-align: center;
            padding: 17px;
            font-weight: 600;
        }

        .myidea-contest-schedule-container div:last-child {
            text-transform: uppercase;
            color: white;
            text-align: center;
            font-size: 26px;
            padding: 10px;
            font-weight: 600;
        }

    .myidea-contest-container-split {
        height: 150px;
        position: absolute;
        left: 68%;
        margin-left: -3px;
        border: 5px dashed #A100FF;
        border-left: 0;
        top: 15px;
    }

    .btn-export {
        border: 2px solid #A100FF;
        background: transparent;
        color: #A100FF;
        padding: 5px;
        border-radius: 5px;
        width: 130px;
    }

        .btn-export:hover {
            border: 2px solid #A100FF;
            background-color: #A100FF;
            color: white;
            transform: scale(1,1)
        }

    .btn-more-filter {
        border: 2px solid #A100FF;
        background: transparent;
        color: #A100FF;
        padding: 5px;
        border-radius: 5px;
        width: 140px;
        height: 37px;
    }

        .btn-more-filter:hover {
            color: white;
            transform: scaleY(1.1);
            font-weight: bold;
            background-color: #A100FF;
            border: 2px solid #A100FF;
        }

        .btn-more-filter.active {
            color: white;
            font-weight: bold;
            background-color: #A100FF;
            border: 2px solid #A100FF;
        }

    .move-to-ignite-container {
        text-align: left;
        display: block;
        height: 35px
    }

    .move-to-ignite {
        color: #A100FF !important;
        font-size: 12px;
        text-transform: capitalize;
        margin-right: 10px;
        font-weight: 500;
        margin-left: 10px;
    }

        .move-to-ignite span {
            border-radius: 50%;
            background-color: #A100FF;
            color: white;
            margin-left: 7px;
            padding: 5px;
        }

            .move-to-ignite span i {
                padding: 2px;
                font-size: 16px;
            }

    .idea-card-body {
        padding: 10px;
        font-size: 14px;
        font-weight: 500;
        height: 70px;
        word-wrap: break-word;
    }

    .idea-card-footer {
        background-color: #A100FF;
        padding: 10px 0px 0px 25px;
        border-bottom-right-radius: 10px;
        border-bottom-left-radius: 10px;
        height: 45px;
        color: white;
        position: relative;
        top: -4%;
    }

    .btn-my-idea-view-more {
        font-weight: 500;
        color: #A100ff;
        text-decoration: none;
        font-size: 14px;
    }

        .btn-my-idea-view-more:hover {
            font-weight: 500;
            color: white;
            text-decoration: underline;
            transform: scale(1.1);
        }

    .myidea-list-text {
        color: white;
        font-weight: bold;
        font-size: 24px;
        text-transform: uppercase;
        padding-left: 15px;
    }

    .myidea-viewmore-container {
        padding-right: 20px;
        right: -10px;
        width: 100%;
        text-align: right;
        top: -45px;
        position: relative;
    }

    .myidea-no-row {
        width: 100%;
        border: 2px solid white;
        line-height: 100px;
        margin-right: 40px;
        text-align: center;
        color: white;
        margin-top: 20px;
    }

    .filter-all-idea-icon {
        color: white;
        float: right;
        padding-top: 5px;
    }

    .top-innovation-item {
        height: 450px;
    }

    .img-winning-concept1 {
        display: inline;
        max-width: 55px;
        height: 55px;
        border-radius: 100%;
        margin: 13px;
    }

        .img-winning-concept1:hover {
            transform: scale(1.5);
        }

    .img-winning-concept2 {
        display: inline;
        max-width: 55px;
        height: 55px;
        border-radius: 100%;
        margin: 13px;
    }

        .img-winning-concept2:hover {
            transform: scale(1.5);
        }

    .img-winning-concept3 {
        display: inline;
        max-width: 55px;
        height: 55px;
        border-radius: 100%;
        margin: 10px;
    }

        .img-winning-concept3:hover {
            transform: scale(1.5);
        }

    .update-setting-icon {
        font-size: 28px;
        color: #A100FF;
        margin-left: 15px;
    }

        .update-setting-icon:hover {
            cursor: pointer;
            transform: scale(1.1);
        }

    .idea-like-icon {
        color: darkgray;
        font-weight: bold;
        font-size: 26px;
        margin-left: 10px;
        margin-right: 10px;
    }

        .idea-like-icon:hover {
            cursor: pointer;
        }

    .idea-liked-icon {
        color: deeppink;
        font-weight: bold;
        font-size: 26px;
        margin-left: 10px;
        margin-right: 10px;
    }

        .idea-liked-icon:hover {
            cursor: pointer;
        }

    .filter-application-area {
        width: 170px;
        left: -12px;
        position: relative;
    }


    .action-icon-container {
        display: flex;
        justify-content: space-evenly;
    }

    .action-icon-edit {
        color: black;
        font-size: 25px;
        padding: 0px;
    }

    .action-icon-delete {
        color: red;
        font-size: 25px;
        padding: 0px;
    }

    .action-icon-setting {
        color: #A100FF;
        font-size: 25px;
        padding: 0px;
    }

    .action-icon-edit:hover {
        transform: scale(1.2);
        color: black;
        cursor: pointer;
    }

    .action-icon-delete:hover {
        transform: scale(1.2);
        color: red;
        cursor: pointer;
    }

    .action-icon-setting:hover {
        color: #A100FF;
        transform: scale(1.2);
        cursor: pointer;
    }

    .action-icon-message {
        width: 25px;
        height: 25px;
        margin-bottom: 10px;
        margin-left: 10px;
    }

        .action-icon-message:hover {
            transform: scale(1.2);
            cursor: pointer;
        }

    .angle-down-icon {
        font-size: 60px;
        color: #A100FF;
        padding-top: 20px;
    }

        .angle-down-icon i {
            font-size: 60px;
            color: #A100FF;
        }

    .user-profile {
        width: 45px;
        border-radius: 100%;
    }

        .user-profile:hover {
            transform: scale(1.3);
        }

    .idea-type-header {
        color: white;
        font-size: 36px;
        position: relative;
        z-index: 9;
        top: -70px;
        left: 60px;
        font-weight: 600;
    }

    .theme-refernce-link {
        color: white;
        position: relative;
        left: 30px;
        top: 50px;
        font-weight: 600;
    }

    .btn-theme {
        transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
        border-radius: .25rem;
        border: 1px solid transparent;
        font-size: 1rem;
        line-height: 1.5;
        display: inline-block;
        text-align: center;
        vertical-align: middle;
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
    }

    .btn-theme-reference {
        background-color: #A100FF;
        border-color: #A100FF;
        color: white;
        font-size: 15px;
        font-weight: 400;
        margin: auto;
        padding: 10px;
        position: relative;
        width: 235px;
    }

    .btn-theme:hover {
        color: white;
        text-decoration: none;
        transform: scale(1.1);
        background-color: #A100FF;
    }

    .btn-theme:focus {
        outline: 0;
        box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
    }
}

.metrics-log {
    width: 140px;
    position: relative;
    left: 25px;
    top: -20px !important;
}

.firestorm-metrics-log {
    width: 120px;
    position: relative;
    top: -11px;
}


.modal-backdrop {
    --bs-backdrop-zindex: 1050;
    --bs-backdrop-bg: #000;
    --bs-backdrop-opacity: 0.5;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10;
    width: 100vw;
    height: 100vh;
    background-color: var(--bs-backdrop-bg);
}


.ig-dropdown {
    width: 99%;
    background-color: transparent;
    font-size: 12pt;
    border: none;
    word-wrap: break-word;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    padding: 0px 13px;
    text-align: left;
}

.ig-dropdown-item {
    white-space: normal;
    word-break: break-word;
}

    .ig-dropdown-item:hover {
        white-space: normal;
        word-break: break-word;
        background-color: lightgrey;
    }

.txt-area {
    width: 97%;
    margin: 10px;
    border: 1px solid gray;
    resize: none; /* prevent manual resize */
    overflow-y: auto;
}

    .txt-area:focus {
        border: 1px solid gray;
    }


.text-muted {
    color: gray;
}

.dropdown-menu-center {
    width: 100%;
    left: 50% !important;
    right: auto !important;
    transform: translateX(-50%) !important;
}

.dropdown-toggle::after {
    display: inline-block;
    margin-left: .255em;
    vertical-align: .255em;
    content: "";
    border-top: .3em solid;
    border-right: .3em solid transparent;
    border-bottom: 0;
    border-left: .3em solid transparent;
    position: absolute;
    right: 15px;
    top: 5px;
}
/*
.theme-refernce-link {
    color: white;
    position: relative;
    left: 30px;
    top: 50px;
    font-weight: 600;
}

.btn-theme {
    transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
    border-radius: .25rem;
    border: 1px solid transparent;
    font-size: 1rem;
    line-height: 1.5;
    display: inline-block;
    text-align: center;
    vertical-align: middle;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}


.btn-theme-reference {
    background-color: #A100FF;
    border-color: #A100FF;
    color: white;
    font-size: 14px;
    font-weight: 400;
    margin: auto;
    padding: 10px;
    position: relative;
    width: 240px;
    top: -115px;
    left: 65px;
}

.btn-theme:hover {
    color: white;
    text-decoration: none;
    transform: scale(1.1);
    background-color: #A100FF;
}

    .btn-theme:focus {
        outline: 0;
        box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
    }*/