﻿/*Base layout -------------------------------------------------------------------------*/

body,
body.popover-extension {
    margin: 0;
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: rgba(0,0,0,0);
    background: #2f0762;
    background: linear-gradient(90deg, #2f0762 0%, #15023d 100%);
    color: #ffffff;
}

    body > header + form,
    body > main#content {
        padding-top: 68px !important;
    }

    body section a:not(.btn) {
        color: #fcd520;
    }

    body section a:hover {
        text-decoration: none;
    }

#menuProfileList li i::before {
    width: 18px;
    display: block;
    margin-right: 2px;
    text-align: center;
}

#menuProfileBtn img {
    /*border-radius: 50%;*/
    overflow: hidden;
    display: inline-block;
    object-fit: contain;
    width: 36px;
    height: 36px;
}

#menuProfileBtn {
    margin-top: -10px;
}

#menuAlertsBtn {
    position: relative;
    font-weight: 500;
    gap: 6px;
    display: flex;
}

#activeNotification {
    position: absolute;
    display: block;
    width: 13px;
    height: 13px;
    border-radius: 50%;
    background: #dc3545;
    z-index: 1;
    left: 10px;
    top: -3px;
    border: 3px solid #15023d;
}

@media screen and (max-width: 1200px) {
    #menuProfileBtn {
        margin-top: 0;
    }

    #menuAlertsBtn {
        margin-top: 4px;
    }
}




/*Header -------------------------------------------------------------------------*/
body > .navbar, body.popover-extension > .tiny.navbar {
    background: #15023d;
}

    body > .navbar .navbar-brand img {
        max-height: 55px;
    }

#navbarNav {
    justify-content: flex-end;
    /*margin-top: 20px;*/
}

@media screen and (max-width: 1400px) {
    #navbarNav {
        width: 270px;
        flex-basis: unset;
        flex-grow: 0;
        position: absolute;
        right: 12px;
        top: 46px;
        background: rgb(21, 2, 61);
        padding: 3px 15px 15px;
        border-radius: 7px;
        border: 1px solid rgba(255, 193, 7, 0.16);
    }
}

@media screen and (max-width: 400px) {
    #navbarNav {
        top: 40px;
    }
}

#navbarToggler {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 36px;
    height: 36px;
    padding: 0;
    gap: 5px;
    box-shadow: none;
    outline: none;
}

    #navbarToggler span {
        display: block;
        background: #f0bb1a;
        height: 3px;
        width: 33px;
        border-radius: 10px;
        transition: transform 0.3s ease, opacity 0.2s ease;
    }

    #navbarToggler[aria-expanded="true"] span:first-child {
        transform: rotate(45deg) translate(6px, 5px);
    }

    #navbarToggler[aria-expanded="true"] span:last-child {
        transform: rotate(-45deg) translate(6px, -5px);
    }

    #navbarToggler[aria-expanded="true"] span:nth-child(2) {
        opacity: 0;
    }

.navbar [data-loginstatus="loggedout"] [data-private="true"],
.navbar [data-loginstatus="loggedout"][data-private="true"],
.navbar [data-loginstatus="loggedin"] [data-private="false"],
.navbar [data-loginstatus="loggedin"][data-private="false"] {
    display: none !important;
    visibility: hidden !important;
}

#navbarNav .navbar-nav .nav-link {
    color: #ffffff;
    background-color: transparent;
    font-weight: 500;
}



    #navbarNav .navbar-nav .nav-link.active {
        color: #f3bc16;
        background-color: transparent;
    }

        #navbarNav .navbar-nav .nav-link.active::after {
            color: #ffffff;
        }

.nav-link.dropdown-toggle.show::after {
    color: #f89733 !important;
}

body > .navbar .nav-link.btn.btn-primary {
    background-image: linear-gradient(0deg,#f77c1e -133.27%,#f3bc16 105.93%);
    padding: 8px 12px;
    font-weight: 500;
}

body > .navbar .nav-link.btn.btn-default {
    border: solid 2px #ffffff;
    border-radius: 4px;
    padding: 6px 12px;
    font-weight: 500;
}


@media screen and (min-width: 1200px) {
    .dropdown-menu.show {
        max-height: 75vh;
        overflow-y: auto;
    }
}


@media screen and (max-width: 1400px) {
    body > .navbar .nav-link.btn.btn-default {
        max-width: 200px;
        width: 100%;
    }

    body > .navbar .nav-link.btn.btn-primary {
        max-width: 200px;
        width: 100%;
    }

    #navbarNav .navbar-nav {
        overflow-y: auto;
        max-height: 65vh;
        align-items: flex-start;
    }

    .dropdown-menu.show {
        max-height: 70vh;
        overflow-y: auto;
    }

    #navbarNav .nav-item.dropdown .dropdown-menu.show {
        background: transparent;
        padding: 0;
        border: none;
        border-radius: 0;
        width: 220px;
    }

        #navbarNav .nav-item.dropdown .dropdown-menu.show .dropdown-item {
            color: #fff;
        }

            #navbarNav .nav-item.dropdown .dropdown-menu.show .dropdown-item:hover {
                color: var(--bs-dropdown-link-hover-color);
            }

        #navbarNav .nav-item.dropdown .dropdown-menu.show .dropdown-divider {
            --bs-dropdown-divider-bg: #ffffff3b;
        }
}

body.CompetencyEditor {
    background-image: none;
    background-color: #EFEFEF;
}


/*Footer -------------------------------------------------------------------------*/

body > footer.footer.bg-body-tertiary,
body.popover-extension > footer.footer {
    background-color: #15023d !important;
    color: #ffffff;
}



body.loggedin nav.loggedout {
    display: none;
}

body.loggedout nav.loggedin {
    display: none;
}

/*Overall styles -------------------------------------------------------------------------*/

/*Modals*/
.modal-header,
.modal-body,
.bootbox-body,
.modal-footer {
    border-color: #15023d;
}

.modal-header {
    background: rgb(47,7,98);
    background: linear-gradient(90deg, rgba(47,7,98,1) 0%, rgba(21,2,61,1) 100%);
    color: #ffffff;
}

.modal-body,
.bootbox-body,
.modal-footer {
    background: rgb(64,10,134);
    background: linear-gradient(90deg, rgba(64,10,134,1) 0%, rgba(35,4,101,1) 100%);
    color: #ffffff;
}

    .modal-body input {
        color: #000000;
    }

.bootbox .modal-content {
    overflow:hidden;
}
/*Buttons*/
.btn.btn-primary {
    background-image: linear-gradient(0deg,#f77c1e -133.27%,#f3bc16 105.93%);
    padding: 8px 12px;
    font-weight: 500;
    color: #fff;
}

.btn.btn-default {
    border: solid 2px #ffffff;
    padding: 8px 12px;
    font-weight: 500;
}

@keyframes gradientMove {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.login-error {
    color: red
}

.reg-confirmation .check, .check-email .check {
    width: 100px;
    height: 100px;
    border: solid 5px #FFFFFF;
    border-radius: 50%;
    font-size: 75px;
    margin: 0px auto;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .reg-confirmation .check svg, .check-email .check svg {
        display: block;
        margin: auto;
        height: 50px;
        width: 50px;
    }

.reg-confirmation h1, .check-email h1 {
    text-align: center;
}

.reset-pwd .input-group {
    margin-bottom: 20px;
}

.reset-pwd .input-group-text {
    min-width: 150px;
}


button.login-sso {
    color: #FFFFFF;
    border: 2px #f3bc16 solid;
    border-radius: 10px;
    font-size: 20px;
    width: 100%;
    height: 50px;
    position: relative;
    display: inline-block;
    background: linear-gradient(0deg,#f77c1e -133.27%,#f3bc16 105.93%);
    display: block;
    background-size: 300% 300%;
    transition: transform 0.3s ease;
    margin-bottom: 10px;
    padding-left: 15px;
    padding-right: 15px;
    text-align: left;
}

    button.login-sso:hover {
        animation: gradientMove 3s infinite linear;
        transform: scale(1.2);
    }

    button.login-sso svg{
        margin-right:5px;
    }

    .pwd .reset.alert {
        margin-top: 100px;
        color: #f3bc16;
    }

/*Sections - Heros*/
section.hero {
    position: relative;
    padding: 0px 0px 0px 0px;
    overflow: hidden;
    font-size: 1.1em;
    min-height: 560px;
}

    section.hero .section_bg {
        position: absolute;
        top: auto;
        bottom: 0px;
        left: 0px;
        width: 100%;
        height: 100%;
        object-fit: cover;
        z-index: 1;
    }

        section.hero .section_bg::after {
            content: '';
            width: 100%;
            height: 100%;
            display: block;
            position: absolute;
            top: 0;
            left: 0;
            z-index: 1;
            background: linear-gradient(180deg, #0D0E20 0%, rgba(13, 14, 32, 0.1) 100%);
        }

        section.hero .section_bg img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: bottom center;
        }

    section.hero .container {
        margin-top: 2em;
        margin-bottom: 2em;
        z-index: 20;
        position: relative;
        padding: 0px 15px;
    }

@media screen and (max-width: 768px) {
    section.hero .container {
        padding-bottom: 200px;
    }
}

/*section.hero .container h1 {
    font-size:3em;
    font-weight:800;
}*/


section {
    padding: 40px 0px;
    background: rgb(47,7,98);
    background: linear-gradient(90deg, rgba(47,7,98,1) 0%, rgba(21,2,61,1) 100%);
}



    section:nth-of-type(even) {
        background: rgb(64,10,134);
        background: linear-gradient(90deg, rgba(64,10,134,1) 0%, rgba(35,4,101,1) 100%);
    }

    section.first {
    }

    section .subtitle {
        color: #f2bc1a;
        opacity: 0.8;
        margin: 0px;
        font-size: 18px;
    }

/*steps*/
.step {
    padding-bottom: 15px;
}

.issuer__steps-controller {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 2px solid #ffffff5e;
}

/*Features*/
.row.features {
    margin: 30px 30px;
    display: flex;
    flex-wrap: wrap;
    align-content: stretch;
    justify-content: flex-start;
    align-items: stretch;
}

    .row.features > div {
        margin-bottom: 30px;
    }

    .row.features .feature {
        display: flex;
        flex-wrap: nowrap;
        flex-direction: row;
        align-content: flex-start;
        justify-content: flex-start;
        align-items: flex-start;
        padding: 10px;
    }

        .row.features .feature .icon {
            margin: 5px 15px 0px 0px;
        }

    .row.features .card, .row.features .card-menu {
        margin-bottom: 30px;
        height: 100%;
    }

/*Cards*/
.card, .card-menu {
    background-color: var(--ta-card-bg);
    color: #ffffff;
}

 

    .card .card-body, .card-menu .card-body {
        padding: 30px;
        display: flex;
        flex-direction: column;
    }

    .card .card-title, .card-menu .card-title {
        color: #fcd520;
    }

:root {
    --ta-card-bg: #16053d;
}

/*icons*/
.icon {
    background-image: url(../images/tiny-award-shape-yellow.png);
    background-size: auto 100%;
    background-repeat: no-repeat;
    background-position: center center;
    padding: 15px;
    color: #15023d;
    font-size: 1.5em;
    font-weight: 900;
    margin-top: 1em;
    margin-bottom: 1em;
}

/*lists of badges*/
#earnedBadges:empty:before {
    content: "You have not earned any badges yet.";
    padding: 0px 15px 15px 15px;
}

#earnedExternal:empty:before {
    content: "You have not earned any external badges yet.";
    padding: 0px 15px 15px 15px;
}

.badges-list:empty:before {
    /*content: "No Badges to List.";*/
    padding: 0px 15px 15px 15px;
}

#earnedBadges .card-body {
    padding-bottom: 20px;
}

.nav-link.active {
    /*background-color: #EFEFEF;*/
}

form {
    margin: 0px !important;
}


@media (min-width: 992px) {
    .masthead, .page-content {
        /*padding-top: calc(6rem + 50px);*/
        padding-bottom: 6rem;
    }

        .masthead .masthead-heading {
            font-size: 4rem;
            line-height: 3.5rem;
        }

        .masthead .masthead-subheading {
            font-size: 1.5rem;
        }
}

.masthead {
    padding-top: calc(6rem + 74px);
    padding-bottom: 6rem;
}

    .masthead .masthead-heading {
        font-size: 2.75rem;
        line-height: 2.75rem;
    }

    .masthead .masthead-subheading {
        font-size: 1.25rem;
    }

    .masthead .masthead-avatar {
        width: 15rem;
    }

.hidden {
    display: none !important;
    visibility: hidden !important;
}

.message {
    color: red;
    font-style: italic;
}

.wrong .fa-check {
    display: none;
}

label.form-label {
    font-weight: 400;
    font-size: 1.2em;
}

.block {
    margin-top: 50px;
}

.good .fa-times {
    display: none;
}

.valid-feedback,
.invalid-feedback {
    padding-left: calc(2em + 0.25rem + 1.5rem);
}

.text-center.submit {
    margin-top: 20px;
}

.questions .question-text {
    max-height: 100px;
    text-overflow: ellipsis;
    display: inline-block;
    overflow: hidden;
}

.question-json {
    display: none;
}

ul.questions li:first-of-type button.up, ul.questions li:last-of-type button.down {
    display: none;
}

.correctFeedback,
.incorrectFeedback {
    padding: 10px !important;
    border-radius: 5px;
}

.correctFeedback {
    /*background-color: #2E8B57;*/
    border: 2px solid #2E8B57;
    color: #FFFFFF;
}

.feedback-box {
    margin: 10px 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.incorrectFeedback {
    /*background-color: #A52A2A;*/
    border: 2px solid #a52a2a;
    color: #FFFFFF;
}

    .incorrectFeedback *:last-child,
    .correctFeedback *:last-child {
        margin-bottom: 0;
    }

.btn-login {
    background-color: #FFF;
}

    .btn-login:hover {
        background-color: #FFF;
    }

    .btn-login .g-login {
        background: url('../../Extension/images/g-normal.png') transparent 5px 50% no-repeat;
        display: inline-block;
        vertical-align: middle;
        width: 42px;
        height: 42px;
    }

    .btn-login span.buttonText {
        color: #000000;
        display: inline-block;
        vertical-align: middle;
        padding-left: 10px;
        padding-right: 10px;
        font-size: 14px;
        font-weight: bold;
        /* Use the Roboto font that is loaded in the <head> */
        font-family: 'Roboto', sans-serif;
    }

.share-buttons {
    margin-bottom: 15px;
    display: grid;
    grid-auto-flow: column;
    gap: 10px;
    justify-content: center;
    padding: 0 10px;
}

    .share-buttons button {
        font-size: 0px;
        padding: 0;
        width: 40px;
    }

#linkedInModal .share-buttons button {
    font-size: 1em;
    width: auto;
}

#linkedInModal .share-buttons {
    justify-content: normal;
}

.share-buttons button img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}


span.IN-widget button {
    height: 35px !important;
    padding: 6px 12px 6px 12px !important;
    font-size: 16px !important;
}

.btn.verified {
    background-color: green;
}

.badge-thumb {
    width: 128px;
}

.badge-upload {
    margin: 0px 0px 20px 0px;
}

i.active-badge {
    margin: 0px 5px 0px 10px;
    color: green;
} 

i.inactive-badge {
    margin: 0px 5px 0px 10px;
    color: grey;
}

.pull-right {
    float: right;
}

iframe[title="Sign in with Google Button"] {
    margin: 0px auto !important;
}
/*Badges*/
.badge-type-icon {
    width:50px;
    position:absolute;
    left:-5px;
    top:-5px;
}

.badge.text-bg-success {
    margin-left:50px;

}

.js-badgeCard .card-body {
    margin-top: 35px;
}

    .badges-list .card {
        transition: background-color 0.3s ease;
    }

        .badges-list .card:hover {
            background-color: #0e1953;
        }

    .badges-list .btn {
        white-space: nowrap;
    }

    .badges-list .badge-description {
        overflow: hidden;
        text-overflow: ellipsis;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 3;
        display: -webkit-box;
        width: 100%;
    }

    .badge-description > *:last-child,
    .badge-criteria > *:last-child {
        margin-bottom: 0;
    }

    .badge-info img {
        width: 100px;
    }

    .badge-info h2 {
        display: inline-block;
        width: auto;
    }

    .badge-info {
        margin-bottom: 50px;
    }

    input::placeholder {
        color: #555;
        opacity: 0.5;
        font-style: italic;
    }

    input.tag-input, input.page-input {
        display: none;
    }

    .tags-list {
        margin: 10px 0px 10px 0px;
    }

        .tags-list .tag {
            margin: 0px 5px 0px;
            display: inline-block;
            border: 2px solid blue;
            padding: 2px 5px 2px 10px;
            border-radius: 10px;
        }

            .tags-list .tag .delete {
                margin: 0px 5px 0px;
                cursor: pointer;
            }

    .tags-list {
        display: flex;
        flex-wrap: wrap;
        gap: 15px 10px;
    }

    .tag-item {
        border-radius: 30px;
        padding: 2px 14px;
        background: #3294d2;
    }
    /*search*/
    .search-btn .fa-times-circle,
    .search-btn.clear .fa-search {
        display: none;
    }

    .search-btn.clear .fa-times-circle {
        display: inline-block;
    }

    .search-btn {
        width: 45px;
        display: inline-block;
    }
    /*competency*/

    div.facet.child {
        margin: 2px 0px 2px 10px;
    }

    div.facet input {
        margin: 0px 5px 0px 5px;
    }


    nav a.navbar-brand img {
        object-fit: contain;
        height: 100%;
        width: auto;
        max-height: 76px;
    }
    /* For mobile*/
    @media only screen and (max-width: 844px) {
        nav a.navbar-brand {
            /*position: absolute;
        left: 50%;
        transform: translateX(-50%);
        height:50px;*/
            width: 34%;
        }

        body > .navbar .navbar-brand img {
            max-height: 45px;
        }



        .page-content {
            margin-top: 100px !important;
        }

            .page-content h2 {
                display: none;
            }
    }
    /* toggle switches */
    /* The switch - the box around the slider */

    .switch {
        position: relative;
        display: inline-block;
        width: 30px;
        height: 17px;
    }
        /* Hide default HTML checkbox */
        .switch input {
            opacity: 0;
            width: 0;
            height: 0;
        }
    /* The slider */
    .slider {
        position: absolute;
        cursor: pointer;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: #ccc;
        -webkit-transition: .4s;
        transition: .4s;
    }

        .slider:before {
            position: absolute;
            content: "";
            height: 13px;
            width: 13px;
            left: 2px;
            bottom: 2px;
            background-color: white;
            -webkit-transition: .4s;
            transition: .4s;
        }

    input:checked + .slider {
        background-color: #2196F3;
    }

    input:focus + .slider {
        box-shadow: 0 0 1px #2196F3;
    }

    input:checked + .slider:before {
        -webkit-transform: translateX(13px);
        -ms-transform: translateX(13px);
        transform: translateX(13px);
    }
    /* Rounded sliders */
    .slider.round {
        border-radius: 17px;
    }

        .slider.round:before {
            border-radius: 50%;
        }

    .add-quiz {
        position: fixed;
        left: calc(100vw - 150px);
        top: calc(100vh - 75px);
        display: block;
        height: 100px;
    }
    /*issuers*/
    ul.my-domains {
        margin-bottom: 30px;
    }

        ul.my-domains .list-group-item {
            display: flex;
            align-items: center;
        }

            ul.my-domains .list-group-item .pull-right {
                margin-left: auto;
            }

            ul.my-domains .list-group-item:nth-child(even) {
                background-color: #EFEFEF;
            }

            ul.my-domains .list-group-item img {
                object-fit: contain;
                object-position: center;
            }
    /*Wizard*/
    .wizard-nav {
        margin-top: 20px;
    }

    .font-size-value, .rotate-value {
        display: inline-block;
    }

    .input-group.font-size {
        display: inline-block;
    }

    .delimiter {
        margin-left: 5px;
        margin-left: 10px;
        margin-right: 4px;
        font-size: 20px;
    }

    .read-time {
        width: 48px;
    }

        .read-time:invalid {
            color: red;
        }


    #prewReadSettings *:last-child,
    #prewVideoSettings *:last-child {
        margin-bottom: 0;
    }

    body.Login .nav-item.login {
        display: none;
    }



    .stats .card {
        text-align: center;
        margin: 10px;
        height: 200px;
    }

    .card-body .badge-count {
        font-size: 48px;
    }


    .card-body .card-img-top {
        object-fit: contain;
        max-width: 200px;
        margin-left: auto;
        margin-right: auto;
        display: block;
        width: 90%;
        max-height: 165px;
        height: 100%;
    }

    .card {
        width: 100%;
    }

    .badge-verification {
        margin-top: 10px;
    }

        .badge-verification i.far {
            margin-right: 5px;
        }

    .issuer__step .isRequiredLabel .radio-group {
        padding-left: 25px;
    }

    .issuer__step .competencies {
        display: flex;
        gap: 10px;
        flex-wrap: wrap;
    }

    .issuer__step .form-label {
        cursor: pointer;
    }

    .issuer__step .radio-box {
        display: flex;
        gap: 30px;
    }

    .issuer__step .comp-list {
        display: grid;
        grid-auto-flow: row;
        gap: 6px;
    }

        .issuer__step .comp-list .form-check {
            line-height: 150%;
            padding-left: 35px;
        }

        .issuer__step .comp-list .radio-box {
            display: flex;
            padding-left: 0px;
            gap: 20px;
        }

        .issuer__step .comp-list .form-check input {
            border: 1px solid #8a8a8a;
        }

    .card .btn-group button.btn {
        height: 40px;
    }

    .card .btn-group .dropdown:first-child .dropdown-toggle {
        border-top-right-radius: 0;
        border-bottom-right-radius: 0;
    }

    .range-wrap {
        position: relative;
        margin: 0 auto 3rem;
    }

    .range {
        width: 100%;
    }

    .bubble.pass, .bubble.pass::after {
        background: green;
    }

    .bubble {
        background: red;
        color: white;
        padding: 4px 12px;
        position: absolute;
        border-radius: 4px;
        left: 50%;
        transform: translateX(-50%);
        margin-top: 25px;
    }

        .bubble.scroll-percentage {
            background-color: green;
        }

        .bubble::after {
            content: "";
            position: absolute;
            width: 2px;
            height: 2px;
            background: red;
            top: -1px;
            left: 50%;
        }

    .badge-lib-modal .badge-lib {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }

        .badge-lib-modal .badge-lib .card-body {
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 10px 0;
            padding-top: 20px;
        }

            .badge-lib-modal .badge-lib .card-body img {
                max-width: 150px;
            }

        .badge-lib-modal .badge-lib .card-footer {
            border: none;
            padding-bottom: 20px;
            background: transparent;
        }

    #b-image .badge-img {
        display: flex;
        gap: 30px;
        justify-content: center;
        align-items: center;
    }

    #edit-currentImage {
        object-fit: contain;
        max-width: 160px;
        width: 100%;
        height: auto;
    }

    .jstree-default .jstree-clicked {
        background: #beebff3b;
    }

    .jstree-default .jstree-hovered {
        background: #fdbeff3b;
    }

    .comp-list.list-group .competency-list {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .question-modal .options {
        list-style: none;
        padding: 0;
        display: grid;
        grid-auto-flow: row;
        gap: 10px;
    }

    .question-modal .option {
        background: #4c2e85;
        border-radius: 10px;
        padding: 10px;
    }

        .question-modal .option input {
            padding: 4px 8px;
        }

    .question-modal .delete-btn {
        border: none;
        background: transparent;
        color: #fff;
        padding: 0;
    }

    #createdQuestions .list-group-item {
        display: flex;
        justify-content: space-between;
        gap: 20px;
        align-items: flex-start;
        line-height: 130%;
    }

    .radio-box .radio-group {
        gap: 14px;
        align-items: baseline;
    }

    .radio-group {
        display: flex;
        align-items: center;
        gap: 40px;
    }

    .go-badge, .claim-badge {
        background-image: linear-gradient(0deg,#001ccb -133.27%,#4d95ff 105.93%) !important;
    }

    .page-link[aria-label="Previous"],
    .page-link[aria-label="Next"] {
        background: transparent;
        color: #fff;
        cursor: pointer;
    }

    .page-link.disabled {
        opacity: 0.5;
    }

    .search-control {
        padding: 20px 0;
        margin-bottom: 10px;
        margin-top: 10px;
    }

    #prew-desc > *:last-child,
    #prew-criteria > *:last-child,
    #prew-settings > *:last-child {
        margin-bottom: 0;
    }

    #prew-tags {
        display: flex;
        gap: 10px;
        flex-wrap: wrap;
    }

    .embed-responsive, .embed-responsive-item {
        height: 100%;
        width: 100%;
    }

    .prew-img {
        object-fit: contain;
        max-width: 160px;
    }

    #step-preview .form-label {
        line-height: 130%;
    }

    #prew-img {
        display: grid;
        grid-auto-flow: column;
        gap: 15px;
    }

    #prew-quiz .accordion-item {
        background: transparent;
        color: #fff;
        border: none;
    }

    #prew-quiz .accordion-button {
        background: transparent;
        color: #fff;
        padding: 0;
        border: none;
        outline: none;
        box-shadow: none;
        font-size: 1.5rem;
    }

    #prew-questionsBox ul {
        display: flex;
        flex-direction: column;
        gap: 5px;
    }

    #prew-quiz ul {
        list-style: none;
        padding: 0;
        padding-bottom: 25px;
        border-bottom: 1px solid #ffffff59;
    }

        #prew-quiz ul:last-of-type {
            border-bottom: none;
            padding-bottom: 0;
        }


    #prew-quiz li:not(:first-child) {
        padding: 0 5px;
    }

    #prew-quiz li[data-correct="true"] {
        background: green;
        border-radius: 5px;
    }

    #prew-quiz ul + ul {
        margin-top: 20px;
    }

    #compSearch {
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' class='DocSearch-Search-Icon' viewBox='0 0 20 20'%3E%3Cpath d='M14.386 14.386l4.0877 4.0877-4.0877-4.0877c-2.9418 2.9419-7.7115 2.9419-10.6533 0-2.9419-2.9418-2.9419-7.7115 0-10.6533 2.9418-2.9419 7.7115-2.9419 10.6533 0 2.9419 2.9418 2.9419 7.7115 0 10.6533z' stroke='currentColor' fill='none' fill-rule='evenodd' stroke-linecap='round' stroke-linejoin='round'%3E%3C/path%3E%3C/svg%3E");
        background-repeat: no-repeat;
        background-position: 10px;
        padding-left: 45px;
    }

    .btn-group.pull-right .badge {
        display: flex;
        color: #000;
        justify-content: center;
        align-items: center;
        padding: 0 12px;
    }

    .btn-group .dropdown:not(:last-child):not(:first-child) > .btn {
        border-radius: 0;
    }

    .btn-group .dropdown:last-child > .btn {
        border-top-left-radius: 0;
        border-bottom-left-radius: 0;
    }

    #issuer-step-4 .table tr:last-child td {
        border: unset !important;
    }

    #issuer-step-4 .table {
        margin-bottom: 0;
    }

    .issuer-info__url {
        text-decoration: none;
    }

    .issuer-info-group {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }

    .issier-info__name {
        margin-bottom: 3px;
    }

    td.issuer-icon {
        padding-right: 5px;
        padding-left: 13px;
        text-align: center;
        width: 61px;
    }

    .issuer-badges-group {
        display: flex;
        flex-direction: column;
    }

    .issuer-cta {
        width: 100px;
        text-align: left;
    }

    td.issuer-orgType,
    td.issuer-created,
    td.issuer-type,
    .issuer-badges-group {
        white-space: nowrap;
    }


    .text-success {
        color: #53c053 !important;
    }

    #prew-comps .badge.bg-secondary {
        font-weight: 400;
    }
    /*@media (min-width: 1200px) {*/
    /*increased font-size size by 0.5rem*/
    /*h1.bd-title {
        font-size: 3rem;
    }
    h2.bd-title {
        font-size: 2.5rem;
    }
    h3.bd-title {
        font-size: 2.25rem;
    }
    h4.bd-title {
        font-size: 2.0rem;
    }
    h5.bd-title {
        font-size: 1.75rem;
    }
}*/


    .accordion.instruction-btn {
        background: transparent;
        color: #fff;
        padding: 0;
        box-shadow: unset;
    }

        .accordion.instruction-btn::after {
            filter: invert(1);
            margin-left: 5px;
        }

    #createdQuestions .list-group-item .question-text > *:last-child {
        margin-bottom: 0;
    }

    #summaryBadgeModal .table .form-label {
        line-height: 120%;
        font-size: 16px;
    }

    .td-content > *:last-child {
        margin-bottom: 0;
    }

    .input-group .col .input-group * {
        height: 41px;
        padding: 8px 12px;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    input:-webkit-autofill, input[type="text"].form-control {
        -webkit-text-fill-color: #000;
        color: #000000;
    }

    input.form-control::placeholder, input.form-control::-ms-input-placeholder {
        color: #626262;
    }

    #profileImage img {
        object-fit: cover;
    }

    #earnedRevoked .badge-image {
        filter: grayscale(1);
    }

    .custom-tooltip {
        --bs-tooltip-bg: #6032a6f5;
        --bs-tooltip-color: #ffffff;
    }

    .table-dark {
        --bs-table-bg: transparent;
        --bs-table-hover-bg: #3c1e93;
        --bs-table-border-color: #765da1;
    }

    .listsTab.nav-tabs {
        --bs-nav-tabs-border-color: #765da1;
        --bs-nav-tabs-link-hover-border-color: transparent;
        --bs-nav-tabs-link-active-bg: #220450;
        --bs-nav-tabs-link-active-border-color: #765da1 var(--bs-border-color) #15023d;
    }

    .listsTab .nav-link {
        color: #e5e5e5;
        font-weight: 500;
    }

        .listsTab .nav-link.active {
            color: #ffffff;
            border-color: transparent;
        }

        .listsTab .nav-link:hover {
            color: #ffffff;
        }

    .fav-btn {
        -webkit-appearance: button;
        background: none;
        border: 0;
        border-radius: 50%;
        color: inherit;
        cursor: pointer;
        padding: 2px;
        display: flex;
        justify-content: center;
        align-items: center;
        position: absolute;
        right: 5px;
        top: 5px;
        width: 33px;
        height: 33px;
        background-color: #d9d9d917;
    }

        .fav-btn[aria-selected="true"] svg path {
            fill: #fff;
        }

        .fav-btn:hover {
            background: rgb(207,207,207,0.2);
            transition: background-color .1s ease-in;
        }

    #redeemCodeContainer {
        margin-bottom: 30px;
    }

    #guide-box {
        position: fixed;
        bottom: 20px;
        right: 25px;
        z-index: 3;
    }

    #guideCanvas {
        color: #fff;
        background: #231050;
        box-shadow: -15px 4px 23px rgba(0, 0, 0, 0.19);
    }

    .steps-hints > *:last-child {
        margin-bottom: 0;
    }

    .steps-hints {
        padding: 20px 15px;
        background: #15023d4f;
        border-radius: 5px;
    }

    #guideCanvas .offcanvas-header {
        background: #16053d;
    }

    ul[data-loginstatus="loggedout"] .extension-btn {
        display: none;
    }

    .extension-btn .fa-star {
        margin-left: 5px;
        -webkit-animation-name: spin;
        -webkit-animation-duration: 2000ms;
        -webkit-animation-iteration-count: 3;
        -webkit-animation-timing-function: linear;
        -moz-animation-name: spin;
        -moz-animation-duration: 2000ms;
        -moz-animation-iteration-count: 3;
        -moz-animation-timing-function: linear;
        -ms-animation-name: spin;
        -ms-animation-duration: 2000ms;
        -ms-animation-iteration-count: 3;
        -ms-animation-timing-function: linear;
        animation-name: spin;
        animation-duration: 2000ms;
        animation-iteration-count: 3;
        animation-timing-function: linear;
    }

    @-ms-keyframes spin {
        from {
            -ms-transform: rotate(0deg);
        }

        to {
            -ms-transform: rotate(360deg);
        }
    }

    @-moz-keyframes spin {
        from {
            -moz-transform: rotate(0deg);
        }

        to {
            -moz-transform: rotate(360deg);
        }
    }

    @-webkit-keyframes spin {
        from {
            -webkit-transform: rotate(0deg);
        }

        to {
            -webkit-transform: rotate(360deg);
        }
    }

    @keyframes spin {
        from {
            transform: rotate(0deg);
        }

        to {
            transform: rotate(360deg);
        }
    }


    .dropdown .dropdown-menu .form-check-label {
        text-overflow: ellipsis;
        overflow: hidden;
        width: 100%;
    }

    .filter-tag {
        border: 1px solid #fff;
        border-radius: 10px;
        align-items: center;
        display: flex;
        justify-content: center;
        padding: 2px 10px;
        width: auto;
        height: auto;
        background-position: center right 10px;
        background-size: 11px 11px;
        padding-right: 30px;
        color: #fff;
        opacity: 1;
        --bs-btn-close-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M.293.293a1 1 0 0 1 1.414 0L8 6.586 14.293.293a1 1 0 1 1 1.414 1.414L9.414 8l6.293 6.293a1 1 0 0 1-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 0 1-1.414-1.414L6.586 8 .293 1.707a1 1 0 0 1 0-1.414z'/%3e%3c/svg%3e");
    }

        .filter-tag:hover {
            color: #fff
        }
    /*Cloud Tags*/
    .badge-tags > * {
        cursor: pointer;
    }

        .badge-tags > *:hover, .badge-tags > *[data-checked="true"] {
            background-image: linear-gradient(0deg,#f77c1e -133.27%,#f3bc16 105.93%);
        }


    .svg-selected {
        stroke-dasharray: 5;
        stroke-width: 3px;
        stroke: black;
    }

    .ordertable th {
        color: #9D84BE;
        font-weight: 500;
        font-size: 15px;
    }

    .ordertable .btn-group {
        margin-right: 5px;
    }

    .ordertable .btn.btn-sm {
        padding: 4px 10px;
    }

    .ordertable .btn-group > .btn.hidden + .btn:not(.hidden) {
        border-top-left-radius: 4px;
        border-bottom-left-radius: 4px;
    }

    .ordertable .btn-group > .btn:not(:last-child) {
        border-top-right-radius: 4px !important;
        border-bottom-right-radius: 4px !important;
        margin-left: 0;
    }

    .issuedCounter {
        line-height: 140%;
        z-index: 1;
        background: #5e4f7b;
        font-weight: 500;
        border-radius: 30px;
        padding: 5px 12px;
        top: -13px;
    }

    .btn span.totalEndorsements {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 22px;
        height: 22px;
        border-radius: 50%;
        background: #ff4b00;
        margin-left: 5px;
    }

    #evidenceList {
        display: grid;
        gap: 15px;
        grid-auto-flow: row;
    }

        #evidenceList .text-secondary {
            color: #8b7acd !important;
        }

        #evidenceList .js-evidence-item {
            background: #451f92;
            background: #451f92;
            border-radius: 5px;
            padding: 5px 0px;
            display: grid;
            grid-auto-flow: row;
            gap: 0px;
        }

            #evidenceList .js-evidence-item > * {
                transition: background-color 0.3s ease;
                padding: 5px 10px;
            }

            #evidenceList .js-evidence-item > .d-flex:hover {
                background-color: #502c98;
            }

    #profilePicture, #badgeImage {
        object-fit: contain;
        border-radius: 0px;
    }

    .table .sort-btn {
        color: #a48bc5;
        display: flex;
        justify-content: space-between;
        width: 100%;
        align-items: end;
        line-height: 120%;
        font-size: 14px;
        font-weight: 700;
        text-align: left;
        border: none;
    }

        .table .sort-btn i {
            margin-left: 10px;
        }

        .table .sort-btn .fa-sort {
            color: #62419b;
        }

    .login-text {
        max-width: 260px;
        margin: 0 auto;
    }

    @media screen and (max-width: 768px) {
        .login-text {
            max-width: 100%;
            text-align: center;
        }
    }

    .card-partner {
        display: grid;
        grid-auto-flow: column;
        gap: 45px;
        background: #421A86;
        border-radius: 10px;
        padding: 25px;
    }

    @media screen and (max-width: 768px) {
        .card-partner {
            grid-auto-flow: row;
            gap: 20px;
        }
    }

    .card-partner__brand {
        max-width: 200px;
        width: 100%;
    }

        .card-partner__brand img {
            object-fit: contain;
            width: 100%;
            height: auto;
        }

    .card-partner .badge {
        background: #00B1D7;
        border-radius: 20px;
        padding: 5px 15px;
        font-weight: 500;
    }

    #badgeList, #selectedBadgeList, #modalBadgeList, #modalSelectedBadgeList {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 17px;
    }

    #prew-lp-badges {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        gap: 17px;
    }

    .lp-badge {
        border: 1px solid rgba(122, 123, 128, 0.54);
        border-radius: 6px;
        padding: 15px 10px;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        cursor: pointer;
        position: relative;
    }

        .lp-badge.selected {
            background: #43287C;
            border-color: #28C67D;
        }

        .lp-badge .btn-close {
            position: absolute;
            right: 5px;
            top: 5px;
        }

        .lp-badge .lp-actions .btn {
            height: 30px;
            padding: 0;
            display: flex;
            justify-content: center;
            align-items: center;
        }

    .lp-isRequired {
        width: 100%;
        display: flex;
        justify-content: center;
        padding-top: 7px;
        border-top: 1px solid #ffffff4d;
        margin-top: 13px;
        margin-bottom: -7px;
    }

    .lp-badge img {
        object-fit: contain;
        width: 77%;
        height: auto;
        margin-bottom: 10px;
    }

    .lp-maxInput {
        width: 65px;
        display: inline-block;
        margin-left: 6px;
        height: 30px;
        margin-top: 4px;
    }

    #lb-box {
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-template-areas:
            "lp1 lp3"
            "lp2 lp4";
        grid-auto-rows: auto auto;
        gap: 0px 30px;
    }

    @media screen and (max-width: 992px) {
        #lb-box {
            grid-template-columns: 1fr;
            grid-template-areas:
                "lp3"
                "lp4"
                "lp1"
                "lp2";
            gap: 0px;
        }

        .lb-box-4 {
            margin-bottom: 30px;
        }
    }

    .lb-box-1 {
        grid-area: lp1;
    }

    .lb-box-2 {
        grid-area: lp2;
    }

    .lb-box-3 {
        grid-area: lp3;
    }

    .lb-box-4 {
        grid-area: lp4;
    }

    .badges-list .card {
        text-align: center;
    }

    .badges-list .card-footer {
        border-top-color: #3d2b7d;
    }

    .badges-list .badgeCard_LP .card-footer {
        border-top-color: #5D4C9E;
    }

    .badges-list .card .card-footer .btn-group {
        width: 100%;
    }

    .badgeCard_LP {
        position: relative;
    }

        .badgeCard_LP .lp-bg {
            position: absolute;
            left: 0;
            right: 0;
            top: 0;
            bottom: 0;
            z-index: 0;
            width: 100%;
            height: 100%;
        }

        .badgeCard_LP .card {
            background: linear-gradient(154.52deg, #503D9F 0%, #3C288A 100%);
            border: 1px solid #5D4C9E;
            box-shadow: 0px 5px 6px rgba(0, 0, 0, 0.18);
            border-radius: 10px;
            text-align: center;
        }

        .badgeCard_LP .lp-bg::before {
            display: block;
            content: '';
            left: 16px;
            top: 0;
            width: 91%;
            height: 99%;
            z-index: -1;
            position: absolute;
            background: #6469EA;
            box-shadow: 0px 5px 11px rgba(0, 0, 0, 0.21);
            transform: rotate(-3.15deg);
            border-radius: 10px;
        }

        .badgeCard_LP .lp-bg::after {
            display: block;
            content: '';
            z-index: -2;
            position: absolute;
            border-radius: 10px;
            left: 20px;
            top: -1px;
            width: 90%;
            height: 98%;
            background: linear-gradient(0deg, #8347B3, #8347B3), rgba(202, 202, 202, 0.25);
            box-shadow: 0px 5px 14px rgba(0, 0, 0, 0.2);
            transform: rotate(-6.15deg);
        }

    .badge-LP-amount {
        font-weight: 600;
        font-size: 17px;
        text-transform: uppercase;
        color: #DF85FF;
        margin-top: auto;
        padding-top: 10px;
    }

    .prew-included-badges {
        display: grid;
        grid-auto-flow: row;
        gap: 15px;
    }

    #prew-stacked-badges {
        padding-bottom: 15px;
    }

    .prew-included-badges .horisontal-badge {
        display: grid;
        grid-auto-flow: column;
        grid-template-columns: 100px auto;
        gap: 20px;
        padding: 15px 20px;
        border: 1px solid rgba(147, 147, 147, 0.91);
        border-radius: 5px;
        background: #320c72;
    }

    .prew-included-badges .lp-badge-horisontal {
        position: relative;
        z-index: 0;
    }

        .prew-included-badges .lp-badge-horisontal::before {
            display: block;
            content: '';
            left: 9px;
            top: 0;
            width: 97%;
            height: 100%;
            z-index: -1;
            position: absolute;
            background: #6469EA;
            box-shadow: 0px 5px 11px rgba(0, 0, 0, 0.21);
            border-radius: 5px;
            transform: matrix(1, -0.02, 0.04, 1, 0, 0);
        }

        .prew-included-badges .lp-badge-horisontal::after {
            display: block;
            content: '';
            z-index: -2;
            position: absolute;
            border-radius: 5px;
            left: 22px;
            top: 0px;
            width: 93%;
            height: 101%;
            background: linear-gradient(0deg, #8347B3, #8347B3), rgba(202, 202, 202, 0.25);
            box-shadow: 0px 5px 14px rgba(0, 0, 0, 0.2);
            transform: matrix(1, -0.04, 0.05, 1, 0, 0);
        }

    .prew-included-badges .horisontal-badge .badge-LP-amount {
        padding-top: 0;
        margin-top: 0;
        display: flex;
        align-items: center;
    }



    .prew-included-badges .lp-badge-horisontal .horisontal-badge {
        background: linear-gradient(154.52deg, #503D9F 0%, #3C288A 100%);
        border-color: #6a58b6;
    }

    .prew-included-badges .horisontal-badge.badge-earned {
        background: #230465;
        border-color: #28C67D;
    }

    .prew-included-badges .lp-badge-horisontal .horisontal-badge.badge-earned {
        background: linear-gradient(154.52deg, #503D9F 0%, #3C288A 100%);
    }


    .btn-card-group-1 {
        align-items: center;
        display: grid;
        grid-auto-flow: column;
        grid-template-columns: 1fr;
        gap: 10px;
        width: 100%;
    }

    .btn-card-group-2 {
        align-items: center;
        display: grid;
        grid-auto-flow: column;
        grid-template-columns: 1fr 1fr;
        gap: 5px;
        width: 100%;
    }

    .btn-card-group-3 {
        align-items: center;
        display: grid;
        grid-auto-flow: column;
        grid-template-columns: 1fr 1fr 1fr;
        gap: 5px;
        width: 100%;
    }

        .btn-card-group-1 .btn, .btn-card-group-2 .btn, .btn-card-group-3 .btn {
            height: 41px;
        }

    .tag-item.email {
        cursor: pointer;
    }

    .email.baked {
        background-image: linear-gradient(0deg,#f77c1e -133.27%,#f3bc16 105.93%);
    }

    .table-ta thead tr {
        line-height: 120%;
        font-size: 14px;
        color: #a48bc5;
    }

    .table-ta thead {
        border-bottom: 2px solid rgb(118, 93, 161);
    }

    .table-ta tbody tr {
        vertical-align: middle;
    }

    .table-ta tbody .text-truncate > *:last-child {
        margin-bottom: 0;
    }
    /* Manual Badges Modal*/
    /*.modal.manual-badge .modal-dialog,
.modal.course-window .modal-dialog,
.modal.quiz .modal-dialog {
    float:right;
    margin-right:10px;
}*/
    /*.modal.manual-badge button.btn-close, .modal.quiz button.btn-close, .modal.course-window button.btn-close {
    color: #f3bc16 !important;
    background: none !important;
}*/

    .modal.manual-badge .btn div,
    .modal.course-window .btn div {
        display: inline-block;
    }

    .modal.manual-badge .btn,
    .modal.course-window .btn {
        height: 50px;
        text-align: left;
    }

        .modal.manual-badge .btn i,
        .modal.course-window .btn i {
            display: inline;
            background-image: none;
            color: #FFF;
        }

        .modal.manual-badge .btn .fa-lock,
        .modal.course-window .btn .fa-lock {
            float: right;
        }

    .modal.manual-badge .buttons, .modal.course-window .buttons {
        margin-top: 15px;
    }

    .modal.manual-badge .badge-img {
        text-align: center;
        background-color: none;
        width: 100%;
    }

        .modal.manual-badge .badge-img .img-thumbnail {
            border: none;
            max-width: 26vw !important;
            width: 130px;
            height: 130px;
            object-fit: contain;
            background-color: transparent;
        }

    .modal-dialog.quiz, .modal-dialog.quiz .modal-content, .modal.course-window .modal-dialog, .modal.course-window .modal-dialog .modal-content {
        /* 80% of window height */
        height: 95%;
    }

    .modal.award .modal-dialog {
        height: calc(100vh - 110px);
    }

        .modal.award .modal-dialog .modal-body {
            height: 100%;
        }

    .modal-dialog.quiz .modal-body, .modal.course-window .modal-body {
        /* 100% = dialog height, 120px = header + footer */
        max-height: calc(100vh - 110px);
        overflow-y: auto;
        width: 50vw;
    }

    .modal.course-window.youtube .modal-body {
        overflow-y: hidden;
    }

    .modal-dialog.quiz .alert.feedback {
        margin-top: 20px;
        width: 100%;
        min-height: 200px;
    }

    .hero h1.header-title {
        font-weight: 800;
    }

    @media screen and (max-width: 992px) {
        .hero h1.header-title {
            /* font-size: 35px;*/
        }
    }

    #whiteListOriginsList .js-origin-item {
        transition: background-color 0.3s ease;
    }

        #whiteListOriginsList .js-origin-item:hover {
            background-color: #3c1b7a;
        }

    #aiMessage {
        min-height: 150px;
        font-size: 12pt;
        padding: 10% 0px 10% 0px;
    }

        #aiMessage .message {
            color: #FFFFFF;
            display: inline-block;
            height: 50px;
        }

    div.dev {
        display: none;
    }

    .stable div.dev {
        display: block;
    }

    #captcha div {
        margin: 10px auto 0px auto;
    }
    /* ----------- iPad 1, 2, Mini and Air ----------- */
    .smartphone .extension-btn, .tablet .extension-btn {
        display: none;
    }
    /* Portrait and Landscape */
    @media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (-webkit-min-device-pixel-ratio: 1) {
        .smartphone .social-login, .tablet .social-login {
            /*display: none;*/
        }
    }
    /* Portrait */
    @media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: portrait) and (-webkit-min-device-pixel-ratio: 1) {
        .smartphone .social-login, .tablet .social-login {
            /* display: none;*/
        }
    }
    /* Landscape */
    @media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: landscape) and (-webkit-min-device-pixel-ratio: 1) {
        .smartphone .social-login, .tablet .social-login {
            /* display: none;*/
        }
    }
    /* ----------- iPad 3, 4 and Pro 9.7" ----------- */
    /* Portrait and Landscape */
    @media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (-webkit-min-device-pixel-ratio: 2) {
        .smartphone .social-login, .tablet .social-login {
            display: none;
        }
    }
    /* Portrait */
    @media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: portrait) and (-webkit-min-device-pixel-ratio: 2) {
        .smartphone .social-login, .tablet .social-login {
            /* display: none;*/
        }
    }
    /* Landscape */
    @media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: landscape) and (-webkit-min-device-pixel-ratio: 2) {
        .smartphone .social-login, .tablet .social-login {
            /* display: none;*/
        }
    }
    /* ----------- iPad Pro 10.5" ----------- */
    /* Portrait and Landscape */
    @media only screen and (min-device-width: 834px) and (max-device-width: 1112px) and (-webkit-min-device-pixel-ratio: 2) {
        .smartphone .social-login, .tablet .social-login {
            /* display: none;*/
        }
    }
    /* Portrait */
    /* Declare the same value for min- and max-width to avoid colliding with desktops */
    /* Source: https://medium.com/connect-the-dots/css-media-queries-for-ipad-pro-8cad10e17106*/
    @media only screen and (min-device-width: 834px) and (max-device-width: 834px) and (orientation: portrait) and (-webkit-min-device-pixel-ratio: 2) {
        .smartphone .social-login, .tablet .social-login {
            /* display: none;*/
        }
    }
    /* Landscape */
    /* Declare the same value for min- and max-width to avoid colliding with desktops */
    /* Source: https://medium.com/connect-the-dots/css-media-queries-for-ipad-pro-8cad10e17106*/
    @media only screen and (min-device-width: 1112px) and (max-device-width: 1112px) and (orientation: landscape) and (-webkit-min-device-pixel-ratio: 2) {
        .smartphone .social-login, .tablet .social-login {
            /* display: none;*/
        }
    }
    /* ----------- iPad Pro 12.9" ----------- */
    /* Portrait and Landscape */
    @media only screen and (min-device-width: 1024px) and (max-device-width: 1366px) and (-webkit-min-device-pixel-ratio: 2) {
        .smartphone .social-login, .tablet .social-login {
            /*  display: none;*/
        }
    }
    /* Portrait */
    /* Declare the same value for min- and max-width to avoid colliding with desktops */
    /* Source: https://medium.com/connect-the-dots/css-media-queries-for-ipad-pro-8cad10e17106*/
    @media only screen and (min-device-width: 1024px) and (max-device-width: 1024px) and (orientation: portrait) and (-webkit-min-device-pixel-ratio: 2) {
        .smartphone .social-login, .tablet .social-login {
            /* display: none;*/
        }
    }
    /* Landscape */
    /* Declare the same value for min- and max-width to avoid colliding with desktops */
    /* Source: https://medium.com/connect-the-dots/css-media-queries-for-ipad-pro-8cad10e17106*/
    @media only screen and (min-device-width: 1366px) and (max-device-width: 1366px) and (orientation: landscape) and (-webkit-min-device-pixel-ratio: 2) {
        .smartphone .social-login, .tablet .social-login {
            /*  display: none;*/
        }
    }
    /* ----------- iPhone 4 and 4S ----------- */
    /* Portrait and Landscape */
    @media only screen and (min-device-width: 320px) and (max-device-width: 480px) and (-webkit-min-device-pixel-ratio: 2) {
        .smartphone .social-login, .tablet .social-login {
            /* display: none;*/
        }
    }
    /* Portrait */
    @media only screen and (min-device-width: 320px) and (max-device-width: 480px) and (-webkit-min-device-pixel-ratio: 2) and (orientation: portrait) {
        .smartphone .social-login, .tablet .social-login {
            /*  display: none;*/
        }
    }
    /* Landscape */
    @media only screen and (min-device-width: 320px) and (max-device-width: 480px) and (-webkit-min-device-pixel-ratio: 2) and (orientation: landscape) {
        .smartphone .social-login, .tablet .social-login {
            /*  display: none;*/
        }
    }
    /* ----------- iPhone 5, 5S, 5C and 5SE ----------- */
    /* Portrait and Landscape */
    @media only screen and (min-device-width: 320px) and (max-device-width: 568px) and (-webkit-min-device-pixel-ratio: 2) {
        .smartphone .social-login, .tablet .social-login {
            /*  display: none;*/
        }
    }
    /* Portrait */
    @media only screen and (min-device-width: 320px) and (max-device-width: 568px) and (-webkit-min-device-pixel-ratio: 2) and (orientation: portrait) {
        .smartphone .social-login, .tablet .social-login {
            /*  display: none;*/
        }
    }
    /* Landscape */
    @media only screen and (min-device-width: 320px) and (max-device-width: 568px) and (-webkit-min-device-pixel-ratio: 2) and (orientation: landscape) {
        .smartphone .social-login, .tablet .social-login {
            /* display: none;*/
        }
    }
    /* ----------- iPhone 6, 6S, 7 and 8 ----------- */
    /* Portrait and Landscape */
    @media only screen and (min-device-width: 375px) and (max-device-width: 667px) and (-webkit-min-device-pixel-ratio: 2) {
        .smartphone .social-login, .tablet .social-login {
            /* display: none;*/
        }
    }
    /* Portrait */
    @media only screen and (min-device-width: 375px) and (max-device-width: 667px) and (-webkit-min-device-pixel-ratio: 2) and (orientation: portrait) {
        .smartphone .social-login, .tablet .social-login {
            /*  display: none;*/
        }
    }
    /* Landscape */
    @media only screen and (min-device-width: 375px) and (max-device-width: 667px) and (-webkit-min-device-pixel-ratio: 2) and (orientation: landscape) {
        .smartphone .social-login, .tablet .social-login {
            /* display: none;*/
        }
    }
    /* ----------- iPhone 6+, 7+ and 8+ ----------- */
    /* Portrait and Landscape */
    @media only screen and (min-device-width: 414px) and (max-device-width: 736px) and (-webkit-min-device-pixel-ratio: 3) {
        .smartphone .social-login, .tablet .social-login {
            /* display: none;*/
        }
    }
    /* Portrait */
    @media only screen and (min-device-width: 414px) and (max-device-width: 736px) and (-webkit-min-device-pixel-ratio: 3) and (orientation: portrait) {
        .smartphone .social-login, .tablet .social-login {
            /*display: none;*/
        }
    }
    /* Landscape */
    @media only screen and (min-device-width: 414px) and (max-device-width: 736px) and (-webkit-min-device-pixel-ratio: 3) and (orientation: landscape) {
        .smartphone .social-login, .tablet .social-login {
            /*display: none;*/
        }
    }
    /* ----------- iPhone X ----------- */
    /* Portrait and Landscape */
    @media only screen and (min-device-width: 375px) and (max-device-width: 812px) and (-webkit-min-device-pixel-ratio: 3) {
        .smartphone .social-login, .tablet .social-login {
            /* */ /*display: none;*/
        }
    }
    /* Portrait */
    @media only screen and (min-device-width: 375px) and (max-device-width: 812px) and (-webkit-min-device-pixel-ratio: 3) and (orientation: portrait) {
        .smartphone .social-login, .tablet .social-login {
            /*display: none;*/
        }
    }
    /* Landscape */
    @media only screen and (min-device-width: 375px) and (max-device-width: 812px) and (-webkit-min-device-pixel-ratio: 3) and (orientation: landscape) {
        .smartphone .social-login, .tablet .social-login {
            /*display: none;*/
        }
    }


    #tiny-modal-quiz .modal-dialog.quiz .modal-body.quiz {
        width: 100%;
    }

    .issuer-cta .btn {
        white-space: nowrap;
    }

    #sharedIssuersToggleBtn::after {
        margin-left: 5px;
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    }

    #AIColorPicker {
        height: 100%;
    }

        #AIColorPicker[disabled] {
            visibility: hidden;
            pointer-events: none;
        }

    #discoverBadgesContainer #filters .issuer-filter,
    #discoverBadgesContainer #filters .visibility-filter {
        display: none;
    }
    /*premium*/
    li.enterprise-option {
        display: none !important;
    }

    body.premium-issuer .enterprise-option {
        display: initial !important;
    }

    #issuerList.dropdown-toggle {
        color: #15023d;
        background-color: #FFFFFF;
    }

        #issuerList.dropdown-toggle::after {
            float: right;
            margin-top: 10px;
        }

/* Banner Container */
.smart-banner {
    display: none; /* Hidden by default, JS will show it */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background: #fdfdfd;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    z-index: 99999; /* Always on top */
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    box-sizing: border-box;
    padding: 10px;
    align-items: center;
    justify-content: space-between;
}

/* Push website content down so banner doesn't cover header */
body.banner-active {
    padding-top: 80px;
}

/* Close 'X' Button */
.sb-close {
    font-size: 24px;
    color: #888;
    padding: 0 10px;
    cursor: pointer;
    line-height: 80px;
}

/* App Icon */
.sb-icon img {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    display: block;
}

/* App Info Text */
.sb-info {
    flex-grow: 1;
    padding-left: 12px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.sb-title {
    font-size: 14px;
    font-weight: 600;
    color: #000;
    margin-bottom: 2px;
}

.sb-company {
    font-size: 11px;
    color: #666;
    margin-bottom: 2px;
}

.sb-tagline {
    font-size: 10px;
    color: #888;
}

/* 'VIEW' Button */
.sb-button {
    display: inline-block;
    background-color: #01875f; /* Google Play Green */
    color: white;
    text-transform: uppercase;
    font-size: 13px;
    font-weight: bold;
    padding: 8px 16px;
    border-radius: 4px;
    text-decoration: none;
}
