

:root {
    --font-size-10: 10px;
    --font-size-12: 12px;
    --font-size-13: 13px;
    --font-size-14: 14px;
    --font-size-16: 16px;
    --font-size-18: 18px;
    --font-size-20: 20px;
    --font-size-24: 24px;
    --font-size-26: 26px;
    --font-size-32: 32px;
}

@media only screen and (max-width: 1270px) {
    :root {
        --font-size-10: 8px;
        --font-size-12: 10px;
        --font-size-13: 11px;
        --font-size-14: 12px;
        --font-size-16: 14px;
        --font-size-18: 16px;
        --font-size-20: 18px;
        --font-size-24: 20px;
        --font-size-26: 22px;
        --font-size-32: 26px;
    }
}

@media only screen and (max-width: 820px) {
    :root {
        --font-size-32: 24px;
    }
}


@media only screen and (min-width: 1550px) {
    .marketplace-results-container {
        grid-template-columns: 1fr 1fr 1fr 1fr !important;
    }
}

.page-layout {
    display: grid;
    grid-template-columns: 200px 1fr;
    /*    height: 100%;
    overflow:hidden;*/
    /*gap: 5px;*/
}

/*@media only screen and (max-width: 820px) {
    .page-layout {
        display: block;
    }
}*/

.main-page {
    overflow: hidden;
}

    .main-page > .panel,
    .main-page > .form-page-container,
    .main-page > .well,
    .main-page > .analytics-page-container {
        margin: 10px 15px !important;
        background-color: var(--secondary-background-color);
        color: var(--primary-text-color);
        border-radius: 20px;
        padding: 10px 20px 30px;
        max-width: none;
    }

.admin-sidebar {
    color: var(--gray-1, #333743);
    height: 100vh;
    position: -webkit-sticky;
    position: -moz-sticky;
    position: -o-sticky;
    position: -ms-sticky;
    position: sticky;
    top: 0;
    left: 0;
    /*filter: drop-shadow(1px 10px 6px rgba(0, 0, 0, .1));*/
    z-index: 40;
    flex-shrink: 0;
    align-self: stretch;
    border-radius: 0px;
    background: var(--White, #FFF);
    padding: 8px;
    font-family: "Nunito Sans";
    font-size: var(--font-size-13,13px);
    font-weight: 600;
    display: flex;
    flex-direction: column;
    border-right: 1px solid var(--Border---Light-gray, #E4E4E4);
}

.collapsed .admin-sidebar {
    overflow: visible;
}

@media only screen and (max-width: 900px) {
    .admin-sidebar {
        overflow: visible;
        padding: 8px 4px;
    }
}

.admin-sidebar::-webkit-scrollbar {
    width: 12px;
    height: 2px;
    /*background: transparent;*/
}

.admin-sidebar::-webkit-scrollbar-thumb {
    background: transparent;
    border-radius: 5px;
    cursor: pointer;
}

.admin-sidebar:hover::-webkit-scrollbar-thumb {
    background: #888;
}

.admin-sidebar::-webkit-scrollbar-track {
    background: transparent;
}

/*@media only screen and (max-width: 820px) {
    .admin-sidebar {
        display: none;
        font-size: 1.2em;
        max-height: 100vh;
        overflow: auto;
        position: fixed;
        left: 0px;
        right: 0px;
        top: 0px;
        bottom: 0px;
    }
}*/

.admin-sidebar-header {
    display: flex;
    align-items: center;
    gap: 8px;
}

.as-community-name {
    color: var(--gray-1, #333743);
    font-family: "Nunito Sans";
    font-size: var(--font-size-12,12px);
    font-weight: 400;
    width: 130px;
    text-overflow: ellipsis;
    overflow: hidden;
}

.hide-show-admin-sidebar {
    display: flex;
    width: 34px;
    height: 34px;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    cursor: pointer;
    justify-self: right;
    margin-left: auto;
}

.page-layout.collapsed .hide-show-admin-sidebar {
    rotate: 180deg;
}

/*@media only screen and (max-width: 820px) {
    .hide-show-admin-sidebar {
        display: none;
    }
}*/

.hide-show-admin-sidebar:hover {
    scale: 1.2;
}

.close-admin-sidebar {
    display: none;
}


.admin-sidebar .community-logo {
    width: 45px;
    height: 45px;
    flex-shrink: 0;
    border-radius: 64px;
    margin: 8px 0px 8px;
    object-fit: contain;
    border: .5px solid #f2f2f2;
}


#getCommunitySeason {
    display: flex;
    align-items: center;
    gap: 8px;
    align-self: stretch;
    border-radius: 5px;
    color: var(--CTA-2, #484848);
    font-family: "Nunito Sans";
    font-size: var(--font-size-12, 12px);
    font-weight: 500;
    cursor: pointer;
    width: -webkit-fill-available;
    padding: 10px 6px;
    margin: 8px 6px;
    border: 0.5px solid rgba(0, 0, 0, 0.10);
    -moz-appearance: none; /* Firefox */
    -webkit-appearance: none; /* Safari and Chrome */
    appearance: none;
    background-image: url('data:image/svg+xml;utf8,<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M6 9L12 15L18 9" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" stroke="currentColor"/></svg>');
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 15px;
    cursor: pointer;
    outline: 0px!important;
}


.admin-sidebar-items {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    height: calc(100svh - 280px);
    overflow: auto;
    line-height: normal;
    padding-top: 12px;
}

.collapsed .admin-sidebar .admin-sidebar-items {
    overflow: visible;
}

@media only screen and (max-width: 900px) {
    .admin-sidebar .admin-sidebar-items {
        overflow: visible;
    }
}

.admin-sidebar-item {
    display: flex;
    height: 32px;
    padding: 4px 4px 4px 8px;
    align-items: center;
    gap: 8px;
    /*flex: 1 0 0;*/
    border-radius: 8px;
    color: var(--gray-1, #333743);
    background: var(--White, #FFF);
    width: 100%;
    font-weight: 400;
}

    .admin-sidebar-item:hover {
        border-radius: 8px;
        background: #f2f2f2;
    }

    .admin-sidebar-item.active {
        /*        border-radius: 8px;
        background: var(--playwaze-orange-primary, #EA8941);
        color: var(--White, #FFF);*/
        border-radius: 8px;
        /*background: #ea894124;*/
        color: var(--playwaze-orange-primary, #ea8941);
        font-weight: 600;
        position: relative;
    }

        .admin-sidebar-item.active > span {
            mix-blend-mode: multiply;
        }

        .admin-sidebar-item.active:before {
            content: "";
            position: absolute;
            top: 0px;
            left: 0px;
            right: 0px;
            bottom: 0px;
            border-radius: 8px;
            background: var(--playwaze-orange-primary, #ea8941);
            opacity: .12;
        }

        .admin-sidebar-item.active > svg > path {
            stroke-width: 2;
        }

    .admin-sidebar-item i {
        min-width: 24px;
        text-align: center;
        margin-right: 5px;
    }

    .admin-sidebar-item.expandable:after {
        font-family: "Font Awesome 5 Free";
        content: "\f078";
        font-style: normal;
        font-variant: normal;
        text-rendering: auto;
        line-height: 1;
        font-weight: 900;
        position: absolute;
        right: 20px;
        top: 13px;
        font-size: var(--font-size-10,10px);
    }

    .admin-sidebar-item svg {
        width: 18px;
        height: 18px;
    }
    /*@media only screen and (max-width: 820px) {
    .admin-sidebar-item.expandable:after {*/
    /*right: auto;*/
    /*top: calc(24px);
        margin-left: 8px;
    }
}*/
    .admin-sidebar-item.expandable.open {
        /*background: var(--playwaze-orange-primary, #EA8941);*/
        /*color: var(--White, #FFF);*/
        color: var(--playwaze-orange-primary, #ea8941);
        position: relative;
    }
        .admin-sidebar-item.expandable.open:before {
            content: "";
            position: absolute;
            top: 0px;
            left: 0px;
            right: 0px;
            bottom: 0px;
            border-radius: 8px;
            background: var(--playwaze-orange-primary, #ea8941);
            opacity: .12;
        }


        .admin-sidebar-item.expandable.open:after {
            content: "\f077";
        }

.admin-sidebar-subitems {
    display: none;
    margin-left: 10px;
    position: relative;
    margin-top: 10px;
    margin-bottom: 10px;
}

    .admin-sidebar-subitems.open {
        display: block;
    }


.admin-sidebar-subitem {
    display: flex;
    height: 30px;
    align-items: center;
    gap: 2px;
    flex: 1 0 0;
    color: var(--CTA-2, #484848);
    font-family: "Nunito Sans";
    font-size: var(--font-size-14,14px);
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    cursor: pointer;
}

    .admin-sidebar-subitem:before {
        content: "";
        width: 1px;
        height: 32px;
        background: var(--gray-3, #979EB0);
        margin-right: 8px;
    }

    .admin-sidebar-subitem > div {
        height: -webkit-fill-available;
        width: -webkit-fill-available;
        padding: 4px;
        display: flex;
        align-items: center;
        border-radius: 8px;
        font-size:var(--font-size-12,12px);
    }

        .admin-sidebar-subitem > div:hover {
            background: #f2f2f2;
        }

    .admin-sidebar-subitem.active > div {
        border-radius: 8px;
        background: var(--Colour-Text-action-hover, #AF6731);
        color: #fff;
    }

    .admin-sidebar-subitem:hover:before,
    .admin-sidebar-subitem.active:before {
        background: var(--gray-1, #333743);
    }


.admin-sidebar-bottom {
    margin-top: auto;
    margin-bottom: 12px;
    position: sticky;
    bottom: 12px;
    gap: 4px;
    display: flex;
    flex-direction: column;
}

.admin-sidebar-item-type2 {
    display: flex;
    align-items: center;
    font-size: var(--font-size-14,14px);
    gap: 8px;
    padding: 10px;
    border: 1px solid #fff;
    border-radius: 10px;
    margin: 10px;
    background-color: #000;
    justify-content: space-between;
    cursor: pointer;
}

    .admin-sidebar-item-type2 .fa-info-circle {
        font-size: 24px;
    }


.admin-sidebar > select {
    margin: 5px 15px 10px;
    width: calc(100% - 30px);
    border-radius: 5px;
    height: 30px;
}


/*@media only screen and (min-width: 820px) {*/
.page-layout.collapsed {
    display: grid;
    grid-template-columns: 50px 1fr;
    height: 100%;
}

@media only screen and (max-width: 900px) {
    .page-layout {
        display: grid;
        grid-template-columns: 50px 1fr;
        height: 100%;
    }
}


.page-layout.collapsed .hide-show-admin-sidebar {
    rotate: 180deg;
    justify-self: center;
}

@media only screen and (max-width: 900px) {
    .hide-show-admin-sidebar {
        display: none;
    }

    .admin-sidebar-bottom > div {
        display: none;
    }
}

.page-layout.collapsed .admin-sidebar-header {
    height: 44px;
    margin: 12px 0px;
    display: flex;
    align-self: center;
}

@media only screen and (max-width: 900px) {
    .page-layout .admin-sidebar-header {
        /*display: none;*/
    }
}

.page-layout.collapsed .community-logo {
    /*display: none;*/
}

@media only screen and (max-width: 900px) {
    .page-layout .community-logo {
        /*display: none;*/
    }
}

.page-layout.collapsed .as-community-name,
.page-layout.collapsed #getCommunitySeason {
    display: none;
}

@media only screen and (max-width: 900px) {
    .page-layout .as-community-name,
    .page-layout.collapsed #getCommunitySeason {
        display: none;
    }
}

.page-layout.collapsed .admin-sidebar-item {
    justify-content: center;
    padding: 4px 0px;
}

@media only screen and (max-width: 900px) {
    .admin-sidebar-item {
        justify-content: center;
        padding: 4px 0px;
    }
}

.page-layout.collapsed .admin-sidebar-item span {
    display: none;
    position: absolute;
    left: 52px;
    height: 32px;
    padding: 4px 8px;
    align-items: center;
    gap: 8px;
    border-radius: 8px;
    background: #fff;
    box-shadow: 1px 1px 4px 0 rgba(0, 0, 0, 0.25);
    font-size: var(--font-size-10,10px);
    color: var(--Colour-Text-Body, #2F2F2F);
    width: max-content;
}

@media only screen and (max-width: 900px) {
    .page-layout .admin-sidebar-item span {
        display: none;
        position: absolute;
        left: 65px;
        height: 32px;
        padding: 4px 8px;
        align-items: center;
        gap: 8px;
        border-radius: 8px;
        background: #f5f5f5;
        box-shadow: 1px 1px 4px 0 rgba(0, 0, 0, 0.25);
        font-size: var(--font-size-14,14px);
        color: var(--Colour-Text-Body, #2F2F2F);
        width: max-content;
    }
}


.page-layout.collapsed .admin-sidebar-item.expandable span {
    left: 45px;
}

@media only screen and (max-width: 900px) {
    .page-layout .admin-sidebar-item.expandable span {
        left: 57px;
    }
}

.page-layout.collapsed .admin-sidebar-item:hover span {
    display: flex;
    width: max-content !important;
    padding: 4px 8px !important;
}

@media only screen and (max-width: 900px) {
    .page-layout .admin-sidebar-item:hover span {
        display: flex;
    }
}

.page-layout.collapsed .admin-sidebar .community-logo {
    width: 45px;
    margin: 12px 5px 12px;
    max-width: calc(100% - 10px);
}

@media only screen and (max-width: 900px) {
    .page-layout .admin-sidebar .community-logo {
        width: 40px;
        margin: 12px 2px 12px;
    }
}

.page-layout.collapsed .admin-sidebar-subitems.open {
    position: absolute;
    left: 100%;
    background-color: #fff;
    padding: 10px;
    margin: 0px;
    filter: drop-shadow(1px 2px 3px rgba(0, 0, 0, .1));
    border-radius: 1px 11px 11px 11px;
    border: 1px solid var(--Fade-Gray, #878787);
    min-width: 160px;
}

@media only screen and (max-width: 900px) {
    .page-layout .admin-sidebar-subitems.open {
        position: absolute;
        left: 100%;
        background-color: #fff;
        padding: 10px;
        margin: 0px;
        filter: drop-shadow(1px 2px 3px rgba(0, 0, 0, .1));
        border-radius: 1px 11px 11px 11px;
        border: 1px solid var(--Fade-Gray, #878787);
        min-width: 160px;
    }
}

.page-layout.collapsed .admin-sidebar-item.expandable:after {
    display: none;
}

@media only screen and (max-width: 900px) {
    .page-layout .admin-sidebar-item.expandable:after {
        display: none;
    }
}


.page-layout.collapsed .admin-sidebar-subitems:before {
    left: 20px;
    height: calc(100% - 60px);
    top: 30px;
}

@media only screen and (max-width: 900px) {
    .page-layout .admin-sidebar-subitems:before {
        left: 20px;
        height: calc(100% - 60px);
        top: 30px;
    }
}

.page-layout.collapsed .admin-sidebar-subitem:before {
    display: none;
}

@media only screen and (max-width: 900px) {
    .page-layout .admin-sidebar-subitem:before {
        display: none;
    }
}

.page-layout.collapsed .admin-sidebar-item-type2 {
    display: flex;
    align-items: center;
    font-size: var(--font-size-14,14px);
    gap: 8px;
    padding: 15px 8px;
    border: none;
    background-color: revert;
    width: 60px;
}

@media only screen and (max-width: 900px) {
    .page-layout .admin-sidebar-item-type2 {
        display: flex;
        align-items: center;
        font-size: var(--font-size-14,14px);
        gap: 8px;
        padding: 15px 8px;
        border: none;
        background-color: revert;
        width: 60px;
    }
}

.page-layout.collapsed .admin-sidebar-item-type2 .fa-info-circle {
    font-size: var(--font-size-20,20px);
}

@media only screen and (max-width: 900px) {
    .page-layout .admin-sidebar-item-type2 .fa-info-circle {
        font-size: var(--font-size-20,20px);
    }
}

.page-layout.collapsed .no-collapse {
    display: none;
}

@media only screen and (max-width: 900px) {
    .page-layout .no-collapse {
        display: none;
    }
}
/*}*/




.admin-sidebar-mobile {
    display: none;
}


/*@media only screen and (max-width: 820px) {
    .admin-sidebar-mobile {
        display: flex;
        position: fixed;
        bottom: 0px;
        top: auto;
        left: 0px;
        right: 0px;
        background-image: url('https://playwaze.com/Images/application/Industry/Background Dark.png');
        background-size: cover;
        color: #fff;
        justify-content: space-evenly;
        z-index: 101;
        filter: drop-shadow(2px 4px 6px rgba(0,0,0,.4));
    }
}*/

.admin-sidebar-mobile-item {
    display: flex;
    flex-direction: column;
    padding: 10px;
    align-items: center;
    font-size: var(--font-size-10,10px);
    gap: 5px;
    width: 20%;
}

    .admin-sidebar-mobile-item > i {
        font-size: 23px
    }




body {
    font-family: Montserrat,Nunito Sans,Lato,Arial;
    font-size: var(--community-p-font-size);
    line-height: 1.42857;
    color: #010101;
}



.card-base {
    background-color: var(--market-background-color);
    border-radius: 10px;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding: 15px 20px;
    cursor: pointer;
    max-width: 180px;
    text-decoration: none;
    color: var(--primary-text-color);
    min-width: 260px;
}

@media only screen and (max-width: 820px) {
    .card-base {
        max-width: 100%;
        gap: 10px;
    }
}

.get-started-card:hover,
.add-card:hover,
.resources-card:hover {
    color: var(--primary-text-color);
    padding: 15px 15px 15px 25px;
    transition: 0.2s;
}


.cta-base {
    background-color: #3399FF;
    color: var(--market-tertiary-text-color);
    border-radius: 50px;
    padding: 7px 15px;
    font-weight: 700;
    text-align: center;
}




#ResultPage:not(.restrict-page) {
    max-width: unset !important;
    margin: 10px 15px !important;
    padding: 10px 20px !important;
    border-radius: 20px !important;
}

@media only screen and (max-width: 820px) {
    #ResultPage:not(.restrict-page) {
        max-width: unset !important;
        margin: 1px 0px !important;
        padding: 5px 10px !important;
        border-radius: 0px !important;
    }
}


#SearchPage {
    max-width: unset !important;
    padding: 15px 0px !important;
}




.g-scrolling-carousel {
    position: relative;
}

    .g-scrolling-carousel .items {
        display: flex;
        overflow: hidden;
        width: 100%;
        -webkit-overflow-scrolling: touch;
    }

        .g-scrolling-carousel .items > * {
            user-select: none;
        }

.jc-right,
.jc-left {
    width: 36px;
    height: 36px;
    color: #757575;
    margin-bottom: auto;
    margin-top: auto;
    box-shadow: 0 0 0 1px rgba(0,0,0,0.04), 0 4px 8px 0 rgba(0,0,0,0.20);
    background: #fff;
    border-radius: 50%;
    cursor: pointer;
    position: absolute;
    top: 0;
    bottom: 0;
    z-index: 2;
    opacity: 0.94;
}

.jc-right {
    right: -18px;
}

.jc-left {
    left: -18px;
}

    .jc-right:hover,
    .jc-left:hover {
        opacity: 0.98;
    }

    .jc-right:active,
    .jc-left:active {
        background-color: rgba(245, 245, 245, 0.98);
        box-shadow: 0 0 0 1px rgba(0,0,0,0.08), 0 4px 8px 0 rgba(0,0,0,0.20);
    }

    .jc-right svg,
    .jc-left svg {
        position: absolute;
        left: 0;
        right: 0;
        bottom: 0;
        top: 0;
        margin: auto;
        width: 24px;
        height: 24px;
        fill: #757575;
    }

    .jc-right:hover svg,
    .jc-left:hover svg {
        fill: #000;
    }


.result-info-heading {
    color: var(--market-primary-text-color);
}


.community-card, .community-card-create, .community-card-no-results {
    width: 270px;
    min-width: 270px;
    position: relative;
    filter: drop-shadow(1px 2px 5px rgb(0 0 0 / 25%));
    border-radius: 5px;
    margin: 5px;
    overflow: hidden;
    cursor: pointer;
    display: inline-block;
    color: var(--fg-color);
    transition: all .2s ease-in-out;
    transform: scale(0.95);
    animation: .3s ease-out 0s 1 cardPopIn;
    background-color: #f2f2f2;
    text-decoration: none !important;
    border-radius: 20px;
    background-color: var(--background-color);
    color: var(--secondary-text-color);
    align-items: center;
    text-align: left;
    padding-bottom: 50px;
    padding-top: 25px;
    min-width: 260px;
}

@media only screen and (max-width: 820px) {
    .community-card, .community-card-create, .community-card-no-results {
        padding-bottom: 25px;
        padding-top: 25px;
    }
}

.community-card:hover, .community-card-create:hover {
    /* transform: skew(-1.3deg, 1.3deg); */
    transform: scale(1);
}

.community-card-create > i {
    font-size: 30px;
}

.community-card-create > div {
    font-size: var(--font-size-18,18px);
}


.add-card {
    /*min-width: 180px;*/
    cursor: pointer;
}

@media only screen and (max-width: 820px) {
    .add-card {
        /*min-width: 160px;*/
    }
}

@media only screen and (max-width: 820px) {
    .create-page-container .add-card {
        max-width: calc(50% - 18px);
        min-width: calc(50% - 18px);
        margin: 0px 6px 0px 6px !important;
    }
}

.add-card-img {
    width: 30px;
    height: 30px;
}

.add-card-title {
    font-size: var(--community-h3-font-size);
    font-weight: 800;
}

.add-card-text {
    font-size: var(--community-p-font-size);
}

.community-card, .community-card-create, .community-card-no-results {
    width: 270px;
    min-width: 270px;
    position: relative;
    filter: drop-shadow(1px 2px 5px rgb(0 0 0 / 25%));
    border-radius: 5px;
    margin: 5px;
    overflow: hidden;
    cursor: pointer;
    display: inline-block;
    color: var(--fg-color);
    transition: all .2s ease-in-out;
    transform: scale(0.95);
    animation: .3s ease-out 0s 1 cardPopIn;
    background-color: #f2f2f2;
    text-decoration: none !important;
    border-radius: 20px;
    background-color: var(--background-color);
    color: var(--secondary-text-color);
    align-items: center;
    text-align: left;
    padding-bottom: 50px;
    padding-top: 25px;
    min-width: 260px;
}

.card-holder .card-base {
    margin: 0px 20px 0px 0px;
}

@media only screen and (max-width: 820px) {
    .card-holder .card-base {
        margin: 0px 20px 0px 0px;
    }
}

.card-holder > .items {
}

.community-card-info > div {
    margin: 3px 0px;
}

.community-card-img {
    width: 100%;
    display: block;
    position: relative;
    width: 100%;
    overflow: hidden;
}

    .community-card-img img {
        /* width: 100%; */
        /* height: 133px; */
        /* object-fit: cover; */
        transition: all .2s ease-in-out;
        /* transform: scale(1.05); */
        display: block;
        object-fit: cover;
        width: 100%;
        transition: all ease-out .15s;
        position: relative;
        background-color: #f2f2f2;
        aspect-ratio: 25 / 15;
        transition: all ease-out .15s;
    }

.community-card-title {
    font-size: var(--font-size-16,16px);
    font-weight: 600;
    color: #000;
    margin: 10px 15px 5px;
    max-height: 3em;
    overflow: hidden;
    color: var(--primary-text-color);
}

.community-card-info {
    font-size: var(--font-size-14,14px);
    margin: 0px 15px;
    color: #333;
    white-space: nowrap;
    color: var(--secondary-text-color);
}

.community-card-footer {
    position: absolute;
    bottom: 3px;
    left: 0px;
    right: 0px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin: 5px 15px 10px;
    font-weight: 600;
    color: #000;
    color: var(--secondary-text-color);
}

    .community-card-footer > div:nth-of-type(2) {
        text-align: right;
    }

.community-card-favorite {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: var(--font-size-16,16px);
    /* background-color: #ddd; */
    border-radius: 100%;
    /* box-shadow: 0 2px 5px 0 rgb(0 0 0 / 10%); */
    text-align: center;
    width: 25px;
    height: 25px;
    display: flex;
    transition: all .2s ease-in-out;
    color: #fff;
    align-items: center;
    justify-content: center;
    opacity: .8;
}

.open-color {
    color: #3399FF
}

closed-color {
    color: #ebd534
}

.live-color {
    color: #2AC940;
}

.finished-color {
    color: #FA9917;
}

.closed-color {
    color: #ddd;
}

.danger-color {
    color: #ddd;
}


@media only screen and (max-width: 820px) {
    .marketplace-result-header-sticky {
        bottom: 60px !important;
    }
}


.notify-dot span {
    position: relative;
    padding-right: 10px;
}

.notify-dot.open span:after {
    display: none !important;
}

.notify-dot span:after {
    content: "";
    width: 8px;
    height: 8px;
    background-color: #FF5757;
    border-radius: 100%;
    display: block;
    position: absolute;
    top: -2px;
    right: 0px;
    animation: notifyPulse 2s infinite;
}

.notifyMember-dot {
    position: relative;
}

    .notifyMember-dot:after {
        content: "";
        width: 5px;
        height: 5px;
        background-color: #FF5757;
        border-radius: 100%;
        display: block;
        position: absolute;
        top: 7px;
        left: 22px;
        animation: notifyPulse 2s infinite;
    }


@keyframes notifyPulse {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(255, 87, 87, 0.7);
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 8px rgba(0, 0, 0, 0);
    }

    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
    }
}



.community-dashboard-layout {
    display: flex;
    padding: 24px 24px;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    flex: 1 0 0;
    font-family: "Nunito Sans";
    max-width: 100%;
}


@media only screen and (max-width: 820px) {
    .community-dashboard-layout {
        padding: 24px 24px;
        max-width: 100%;
    }
}

@media only screen and (max-width: 520px) {
    .community-dashboard-layout {
        padding: 20px 10px;
        max-width: 100%;
    }
}

.cdl-header {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    align-self: stretch;
}

@media only screen and (max-width: 820px) {
    .cdl-header {
        flex-direction: row;
    }
}


.cdl-header-title {
    color: var(--Primary-Text, #333);
    font-family: "Nunito Sans";
    font-size: var(--font-size-24,24px);
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

.cdl-header-btns {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 16px;
    flex: 1 0 0;
}

@media only screen and (max-width: 820px) {
    .cdl-header-btns {
        width: 100%;
    }
}


.cdl-header-btns .playwaze-cta-invert {
    border: 0.5px solid rgba(0, 0, 0, 0.15);
    color: #333;
    font-size: var(--font-size-14,14px);
}

    .cdl-header-btns .playwaze-cta-invert:hover {
        background-color: #f2f2f2;
    }

        .cdl-header-btns .playwaze-cta-invert:hover > svg {
            scale: 1.1;
        }

@media only screen and (max-width: 820px) {
    .Preview-link {
        display: none !important;
    }
}

.cdl-body {
    display: grid;
    align-items: flex-start;
    gap: 16px;
    align-self: stretch;
    grid-template-columns: 1fr auto;
}

@media only screen and (max-width: 950px) {
    .cdl-body {
        grid-template-columns: 1fr;
    }
}

.cdl-full {
    grid-column: 1 / -1;
    display: flex;
    flex-direction: column;
    align-items: center;
    align-self: stretch;
    border-radius: 20px;
    border: 0.5px solid rgba(0, 0, 0, 0.10);
    background: #FFF;
    max-width: 100%;
    /*overflow: hidden;*/
}


@media only screen and (max-width: 520px) {
    .cdl-full {
        border-radius: 0px;
        border: none;
        border-top: 0.5px solid rgba(0, 0, 0, 0.10);
        overflow: auto;
    }
}


.cdl-create-mini-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    align-self: stretch;
    padding: 12px 24px;
}

@media only screen and (max-width: 1200px) {
    .cdl-create-mini-container {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
        padding: 12px 24px;
    }
}


@media only screen and (max-width: 520px) {
    .cdl-create-mini-container {
        padding: 16px 0px;
    }
}

.cdl-create-mini-text {
    color: var(--Primary-Text, #333);
    font-size: var(--font-size-14,14px);
    font-weight: 600;
}

.cdl-create-mini-items {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: var(--font-size-14,14px);
    color: var(--Primary-Text, #333);
}

@media only screen and (max-width: 750px) {
    .cdl-create-mini-items {
        flex-wrap: wrap;
        gap: 12px;
    }
}

/*.cdl-create-mini-item {
    display: flex;
    padding: 6px 12px;
    justify-content: center;
    align-items: end;
    gap: 4px;
    border-radius: 100px;
    border: 0.5px solid rgba(0, 0, 0, 0.15);
    cursor: pointer;
    align-items: center;
}*/

.cdl-create-mini-item > svg {
    width: 18px;
    height: 18px;
}

@media only screen and (max-width: 750px) {
    .cdl-create-mini-item > svg {
        width: 18px;
        height: 18px;
    }
}

.cdl-create-mini-item:hover {
    background-color: #f2f2f2;
}

    .cdl-create-mini-item:hover > svg {
        scale: 1.1;
    }

.cdl-full-header {
    display: flex;
    padding-left: 8px;
    align-items: center;
    gap: 16px;
    flex: 1 0 0;
    display: flex;
    padding: 12px 24px 12px 24px;
    align-items: center;
    align-self: stretch;
    justify-content: space-between;
}

@media only screen and (max-width: 520px) {
    .cdl-full-header {
        padding: 16px 0px 16px 0px;
    }
}

.cdl-full-header > .curved-input {
    border-radius: 10px;
    font-size: var(--font-size-13,13px);
    padding: 7px 0px 7px 14px;
    max-width: 350px;
    width: -webkit-fill-available;
}

@media only screen and (max-width: 520px) {
    .cdl-full-header > .curved-input {
        font-size: var(--font-size-11,11px);
    }
}


.cdl-full-header > .radio-toggle .radiobuttons,
.cdl-full-header > .radio-toggle .radiobuttons .radiobutton input[type="radio"] + label {
    border-radius: 10px;
    font-size: var(--font-size-12,12px);
    margin: 0px;
    flex-wrap: nowrap;
}

@media only screen and (max-width: 520px) {
    .cdl-full-header > .radio-toggle .radiobuttons .radiobutton input[type="radio"] + label {
        padding: 8px 6px;
    }

}

.cdl-full-table-container {
    margin-bottom: 18px;
}

@media (max-width: 1024px) {
    .cdl-full-table-container {
        overflow: auto;
        max-width: 100%;
    }

    .community-inventory-table {
        table-layout: auto;
        white-space: nowrap;
    }
}

.community-inventory-rows tr:hover td {
    background-color: #fafafa;
}

.cdl-left {
    display: flex;
    padding: 20px;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    align-self: stretch;
    border-radius: 20px;
    border: 0.5px solid rgba(0, 0, 0, 0.10);
    background: #FFF;
    color: var(--Secondary-Text, #797979);
    font-family: "Nunito Sans";
    font-size: var(--font-size-14,14px);
    container-name: cdl-left;
    container-type: inline-size;
}

@media only screen and (max-width: 820px) {
    .cdl-left {
        padding: 12px;
    }
}

.cdl-left-header {
    color: var(--Primary-Text, #333);
    font-family: "Nunito Sans";
    font-size: var(--font-size-16,16px);
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}


.cdl-right {
    display: flex;
    width: 320px;
    padding: 20px;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    border-radius: 10px;
    border: 0.5px solid rgba(0, 0, 0, 0.10);
    background: #FFF;
}



@media only screen and (max-width: 1250px) {
    .cdl-right {
        width: 100%;
        grid-column: 1 / -1;
    }
}

.cdl-right-header {
    color: var(--Primary-Text, #333);
    text-align: center;
    font-family: "Nunito Sans";
    font-size: var(--font-size-16,16px);
    font-weight: 600;
    display: flex;
    align-items: flex-start;
    gap: 4px;
}

    .cdl-right-header > svg {
        width: 18px;
        height: 18px;
    }

.cdl-support-list {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    align-self: stretch;
}

.cdl-support-item {
    display: flex;
    padding: 14px 16px;
    align-items: center;
    gap: 6px;
    align-self: stretch;
    border-radius: 8px;
    border-bottom: 0.5px solid #E4E4E4;
    background: rgba(228, 228, 228, 0.60);
    color: #000;
    font-size: var(--font-size-12,12px);
    font-weight: 600;
    cursor: pointer;
}

.cdl-support-item-invert {
    display: flex;
    padding: 14px 16px;
    align-items: center;
    gap: 6px;
    align-self: stretch;
    border-radius: 8px;
    border: 1px solid #E4E4E4;
    color: #000;
    font-size: var(--font-size-12,12px);
    font-weight: 600;
    cursor: pointer;
}

.cdl-support-item-text {
    flex: 1 0 0;
}

.cdl-support-item-icon,
.cdl-support-item-icon > svg {
    width: 16px;
    height: 16px;
}

.cdl-create-card-container {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 14px;
    padding-top: 12px;
    width: 100%;
}

@container cdl-left (width < 800px) {
    .cdl-create-card-container {
        grid-template-columns: 1fr 1fr;
    }
}

@container cdl-left (width < 500px) {
    .cdl-create-card-container {
        grid-template-columns: 1fr;
    }
}

.cdl-create-card {
    display: flex;
    padding: 16px;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    flex: 1 0 0;
    border-radius: 20px;
    border: 0.5px solid rgba(0, 0, 0, 0.10);
    background: #FFF;
}



.cdl-create-card-header {
    color: var(--Primary-Text, #333);
    font-family: "Nunito Sans";
    font-size: var(--font-size-14,14px);
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    display: flex;
    gap: 6px;
    align-items: center;
}

    .cdl-create-card-header > svg {
        width: 16px;
        height: 16px;
    }

.cdl-create-card-body {
    color: #797979;
    font-family: "Nunito Sans";
    font-size: var(--font-size-14,14px);
    font-style: normal;
    font-weight: 300;
    line-height: normal;
    max-height: 40px;
    align-self: stretch;
    flex-grow: 1;
    min-height: 26px;
}

.cdl-create-card-footer > .playwaze-cta {
    font-size: var(--font-size-13,13px) !important;
}


#preview-container {
    display: none;
    position: fixed;
    z-index: 1050;
    -webkit-overflow-scrolling: touch;
    flex-direction: column;
    outline: 0;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    padding: 24px 64px;
    font-weight: 500;
    max-width: 1600px;
    margin: auto;
    font-family: "Nunito Sans", Arial, sans-serif;
}

    #preview-container.in {
        display: flex;
    }

.preview-header {
    display: flex;
    justify-content: space-between;
}

.preview-body {
    height: calc(100svh - 155px);
    overflow-x: hidden;
    border-radius: 20px;
    overflow-y: hidden;
    position: relative;
    padding: 0px 0px 0px;
    background-color: #fff;
}


    .preview-body:before {
        content: "Loading...";
        position: absolute;
        top: 50%;
        left: 0px;
        right: 0px;
        text-align: center;
        font-size: 18px;
    }

iframe {
    width: 100%;
    height: 500px;
    border: none;
}

.preview-body iframe {
    height: 100%;
    width: 100%;
    z-index: 10;
    position: relative;
}

.iframe_preview {
    transition: opacity 0.3s ease-in-out;
}

    .iframe_preview.loading {
        opacity: 0;
    }

.table-filter-container {
    display: flex;
    width: 180px;
    flex-direction: column;
    align-items: flex-start;
    border-radius: 10px;
    border: 0.5px solid #FFF;
    background: #FFF;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.15);
    position: absolute;
    top: 100%;
    left: 0px;
}

    .table-filter-container > label,
    .table-filter-container > div {
        display: flex;
        padding: 14px 16px;
        align-items: center;
        gap: 8px;
        align-self: stretch;
        border-bottom: 0.5px solid var(--Border---Light-gray, #E4E4E4);
        color: #000;
        font-family: "Nunito Sans";
        font-size: 12px;
        font-style: normal;
        font-weight: 500;
        line-height: normal;
        margin: 0px;
        cursor:pointer;
    }

        .table-filter-container > label:hover,
        .table-filter-container > div:hover {
            background-color: #f2f2f2;
        }

        .table-filter-container > label > input[type="checkbox"] {
            margin: 0px 0 0;
        }

        .table-filter-container > div > * {
            margin: 0px !important;
            font-weight: 500;
        }

.type-filter-select-all {
    justify-content: end;
    text-decoration: underline;
    cursor: pointer;
}

.community-inventory-table {
    color: var(--black-text, #010101);
}

.inventory-dropdown {
    color: var(--black-text, #010101);
    font-weight: 400 !important;
    width: 190px !important;
}

.community-inventory-table tbody tr td,
.community-inventory-table thead tr th {
    border-left: 0px !important;
    border-right: 0px !important;
}

.community-inventory-table tbody tr td {
    Font-size: 12px
}

.community-inventory-table thead tr th:after {
    content: '';
    display: none !important;
}


.pw-standalone-page-container {
    display: flex;
    padding: 24px 48px;
    flex-direction: column;
    flex: 1 0 0;
    gap: 16px;
    container-name: standalone-page;
    container-type: inline-size;
}

@media only screen and (max-width: 900px) {
    .pw-standalone-page-container {
        padding: 12px 12px;
    }
}



.pw-standalone-page-title {
    color: var(--Primary-Text, #333);
    font-family: "Nunito Sans";
    font-size: var(--font-size-26, 26px);
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

.pw-menu-grid {
    display: grid;
    width: 100%;
    align-items: flex-start;
    align-content: flex-start;
    gap: 16px;
    flex-wrap: wrap;
    /*padding: 16px;*/
    border-radius: 10px;
    /*border: 0.5px solid rgba(0, 0, 0, 0.10);*/
    /*background: #FFF;*/
    grid-template-columns: 1fr 1fr 1fr 1fr;
}

@container standalone-page (width < 1000px) {
    .pw-menu-grid {
        grid-template-columns: 1fr 1fr 1fr;
    }
}

@container standalone-page (width < 700px) {
    .pw-menu-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@container standalone-page (width < 400px) {
    .pw-menu-grid {
        grid-template-columns: 1fr;
    }
}

@media only screen and (max-width: 900px) {
    .pw-menu-grid {
        padding: 16px 0px;
        border-radius: 0px;
        border: none;
        border-top: 0.5px solid rgba(0, 0, 0, 0.10);
        background: #FFF;
    }
}


.pw-page-section {
    padding: 16px;
    border-radius: 20px;
    border: 0.5px solid rgba(0, 0, 0, 0.10);
    background: #FFF;
}

@media only screen and (max-width: 900px) {
    .pw-page-section {
        padding: 16px 0px;
        border-radius: 0px;
        border: none;
        border-top: 0.5px solid rgba(0, 0, 0, 0.10);
        background: #FFF;
    }
}


.pw-menu-item {
    display: flex;
    padding: 12px;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    border-radius: 10px;
    border: 0.5px solid rgba(0, 0, 0, 0.25);
    background: #FFF;
    height: 100%;
    cursor: pointer;
}

    .pw-menu-item:hover {
        background: #f2f2f2;
    }

.pw-menu-item-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    align-self: stretch;
}

.pw-menu-item-header-icon {
    width: 18px;
    height: 18px;
}

    .pw-menu-item-header-icon > svg {
        width: 18px;
        height: 18px;
        color: #000;
    }

.pw-menu-item-header-title {
    color: var(--Primary-Text, #333);
    font-family: "Nunito Sans";
    font-size: var(--font-size-14, 14px);
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}



.pw-menu-item-header-arrow {
    width: 16px;
    height: 16px;
}

    .pw-menu-item-header-arrow svg {
        width: 16px;
        height: 16px;
    }

.pw-menu-item-desc {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    align-self: stretch;
    overflow: hidden;
    color: var(--Secondary-Text, #797979);
    text-overflow: ellipsis;
    font-family: "Nunito Sans";
    font-size: var(--font-size-12, 12px);
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    padding-left: 24px;
}


.sessionCreateModal, #createCompetitonOptions, #event-competitions-modal {
    font-family: "Nunito Sans", Arial, sans-serif;
    font-size: 14px;
}

.session-create-header {
    padding: 24px 24px 6px;
}

.session-create-header-title {
    font-weight: 700;
    font-size: 24px;
    color: #333333;
    margin-bottom: 8px;
}

.session-create-header p {
    font-weight: 500;
    color: #797979;
    margin-bottom: 0px;
}

.activity-close {
    opacity: 1;
    font-size: 22px;
    opacity: 1;
    background: #fff !important;
    border-radius: 100%;
    width: 40px;
    height: 40px;
    position: absolute;
    right: 6px;
    top: 6px;
}

    .activity-close > svg {
        width: 24px;
        height: 24px;
        stroke-width: 2px;
        color: #797979;
    }

.session-create-body {
    padding: 18px 24px;
}

.session-info-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.session-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.session-info-number {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--playwaze-orange-primary, #ea8941);
    color: #FFFFFF;
    width: 25px;
    height: 25px;
    border-radius: 100px;
    font-size: 16px;
}

.session-info-description {
    font-weight: 500;
    color: #797979;
}

.session-info-description-bold {
    font-weight: 700;
    margin-right: 4px;
    color: #000000;
}

.session-create-recommendation {
    margin-top: 18px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    border: 1px solid var(--playwaze-orange-primary, #ea8941);
    border-radius: 10px;
    padding: 12px 16px;
}

.recommendation-header {
    display: flex;
    align-items: center;
    gap: 8px;
}

.recommendation-header-chip {
    font-size: 11px;
    font-weight: 700;
    padding: 1.5px 5px;
    background-color: #BFEFBF;
    color: #006000CC;
    border-radius: 5px;
}

.recommendation-header-title {
    font-weight: 700;
    color: #000000;
}

.recommendation-description {
    font-weight: 500;
    color: #797979;
}

.session-create-note {
    margin-top: 10px;
    font-size: 12px;
    font-weight: 500;
    color: #797979;
}

    .session-create-note a {
        text-decoration: underline;
    }

.session-create-footer {
    width: 100%;
    display: flex;
    justify-content: end;
    margin: 14px 0px;
    padding: 0px 24px;
}

.competition-create-footer {
    width: 100%;
    display: flex;
    justify-content: space-between;
    margin: 14px 0px;
    padding: 0px 24px;
}

.divider {
    height: 0px;
    border-bottom: 2px solid #E4E4E4;
}

.plan-display {
    display: flex;
    gap: 12px;
    padding-top: 12px;
    align-items: center;
}

.plan-badge {
    background-color: #f2f2f2;
    border: 1px solid #b4b4b4;
    border-radius: 50px;
    padding: 4px 8px;
    color: #000;
}

    .plan-badge:before {
        content: "•";
        padding-right: 4px;
    }

.inactive:before {
    color: #797979;
}

.active:before {
    color: #00C000;
}

.recommendation-badges {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.competiton-create-badge {
    background-color: #f2f2f2;
    border: 1px solid #b4b4b4;
    border-radius: 50px;
    padding: 4px 8px;
    color: #000;
    font-size: 12px;
}

.competiton-create-type-container {
    display: flex;
    gap: 10px;
    border: 1px solid #b4b4b4;
    border-radius: 10px;
    padding: 12px 16px;
    font-size: 14px;
    justify-content: space-between;
    margin-bottom: 12px;
}

.competiton-create-type-selection {
    background-color: #f2f2f2;
    padding: 4px;
    border-radius: 10px;
    display: flex;
    gap: 6px;
}

.competiton-create-type {
    padding: 6px 24px;
    border-radius: 10px;
    color: #000;
    cursor: pointer;
    border: 1px solid #f2f2f2;
}

    .competiton-create-type:hover {
        background-color: rgba(255,255,255,.6);
    }

    .competiton-create-type.selected {
        background-color: #fff;
        border: 2px solid var(--playwaze-orange-primary, #ea8941);
    }


.comp-selection-tile.tournament {
    overflow-x: inherit;
    overflow-y: inherit;
    white-space: inherit;
    padding-top: inherit;
}

#createCompetitonOptions .selection-tiles-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    padding: 0px 0px;
}


#createCompetitonOptions .comp-selection-tile {
    display: flex;
    flex-direction: column;
    gap: 10px;
    border: 1px solid #b4b4b4;
    border-radius: 10px;
    padding: 12px 16px;
    font-size: 14px;
    cursor: pointer;
}

    #createCompetitonOptions .comp-selection-tile:hover {
        box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.15);
    }

    #createCompetitonOptions .comp-selection-tile.selected {
        border: 2px solid var(--playwaze-orange-primary);
        box-shadow: 0 0 10px 0 rgba(234, 137, 65, 0.2);
    }

    #createCompetitonOptions .comp-selection-tile.disabled {
        opacity: .5;
        pointer-events: none;
    }

.membershipCreateModal, .eventCreateModal {
    font-family: "Nunito Sans", Arial, sans-serif;
    font-size: 14px;
}


.pw-feature-type-badge {
    background-color: #F0F0F0;
    color: #000;
    padding: 4px 8px;
    border-radius: 5px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-size: 12px;
}

.table-filter-icon {
    cursor: pointer;
}

    .table-filter-icon.active {
        color: var(--playwaze-orange-primary, #ea8941);
        stroke-width: 3;
    }

    .table-filter-icon:hover {
        color: #000;
    }

#preview-options.in {
    display: flex;
    position: absolute;
    top: 100%;
    right: 105px;
    background-color: #fff;
    z-index: 1050;
    padding: 14px;
    border-radius: 10px;
    width: 300px;
    margin-top: 16px;
    flex-direction: column;
    gap: 12px;
}

    #preview-options.in .pw-menu-item {
        border: 0.5px solid rgba(0, 0, 0, 0.15);
    }

    #preview-options.in .pw-menu-item-header-icon {
        color: var(--playwaze-orange-primary, #ea8941);
        background-color: #ffedd5;
        border-radius: 100%;
        width: 28px;
        height: 28px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

        #preview-options.in .pw-menu-item-header-icon svg {
            color: var(--playwaze-orange-primary, #ea8941);
        }

    #preview-options.in .pw-menu-item-desc {
        padding-left: 36px;
        margin-top: -15px;
    }


#preview-options:before {
    content: "";
    width: 20px;
    height: 20px;
    position: absolute;
    top: -8px;
    background-color: #fff;
    transform: rotate(45deg);
    border-radius: 5px;
    right: 40px;
}


.CreateOptions {
    position: absolute;
    background: #fff;
    display: flex;
    flex-direction: column;
    z-index: 41;
    align-items: baseline;
    padding: 4px 0px;
    border-radius: 10px;
    filter: drop-shadow(2px 4px 6px rgba(0, 0, 0, .2));
    top: 0px;
    left: 130px;
    gap: 0px;
}

    .CreateOptions:before {
        content: "";
        width: 15px;
        height: 15px;
        position: absolute;
        top: 10px;
        background-color: #fff;
        transform: rotate(45deg);
        border-radius: 3px;
        left: -6px;
        z-index: -1;
    }


    .CreateOptions .cdl-create-mini-item {
        display: flex;
        padding: 8px 24px 8px 12px;
        justify-content: flex-start;
        align-items: end;
        gap: 4px;
        border-radius: 5px;
        /* border: 0.5px solid rgba(0, 0, 0, 0.15); */
        cursor: pointer;
        align-items: center;
        width: 100%;
    }
