@charset "UTF-8";
:root {
    --bs-font-sans-serif: Inter, Helvetica, "sans-serif";
}

html,
body {
    font-family: Inter, Helvetica, "sans-serif";
}

.container,
.container-fluid,
.container-xxl,
.container-xl,
.container-lg,
.container-md,
.container-sm {
    width: 100%;
    padding-right: var(--bs-gutter-x, 1.5rem);
    padding-left: var(--bs-gutter-x, 1.5rem);
    margin-right: auto;
    margin-left: auto;
}

@media (min-width: 576px) {
    .container-sm, .container {
        /*max-width: 540px;*/
        max-width: 100%;
    }
}
@media (min-width: 768px) {
    .container-md, .container-sm, .container {
        /*max-width: 720px;*/
        max-width: 100%;
    }
}
@media (min-width: 992px) {
    .container-lg, .container-md, .container-sm, .container {
        /*max-width: 960px;*/
        max-width: 100%;
    }
}
@media (min-width: 1200px) {
    .container-xl, .container-lg, .container-md, .container-sm, .container {
        /*max-width: 1140px;*/
        max-width: 100%;
    }
}
@media (min-width: 1400px) {
    .container-xxl, .container-xl, .container-lg, .container-md, .container-sm, .container {
        /*max-width: 1320px;*/
        max-width: 1800px;
    }
}

.badge.badge-sm.badge-circle {
    width: 1.2rem;
    height: 1.2rem;
}

.badge.badge-sm {
    min-width: 1.2rem;
    font-size: 0.7rem;
}

.btn-sm, .btn-group-sm > .btn {
    padding: 0.55rem 1.25rem;
    font-size: 1rem;
    border-radius: 0.475rem;
}

.ribbon.ribbon-end .ribbon-label {
    top: 30px;
    border-top-left-radius: 0.25rem;
    border-bottom-left-radius: 0.25rem;
}

.form-select.form-select-sm {
    border-radius: 0.25rem;
}


/*
*** Price Option CSS
 */

.s_p {
    display: none;
}

#s_p:checked ~ .s_p {
    display: flex;
}

.m_o {
    display: none;
}

#m_o:checked ~ .m_o {
    display: block;
}

/*
*** Shipping
 */

.sh_1 {
    display: none;
}

#sh_1:checked ~ .sh_1 {
    display: block;
}

.no-wrap {
    display: inline-block;
    white-space: nowrap;
}

.container-fluid {
    padding: 0 20px;
}

.toolbar-enabled:not(.toolbar-fixed) .toolbar {
    margin-bottom: 20px;
}

.content {
    padding: 20px 0;
}

/*
*** Send Message
 */

.send-message-bg{
    opacity: 0;
    /*position: fixed;*/
}

.send-message {
    opacity: 0;
    visibility: hidden;
    position: fixed;
    top: 20%;
    left: 25%;
    text-align: left;
    z-index: 101;
}

#send-message:checked ~ .send-message {
    opacity: 1;
    visibility: visible;
}

#send-message:checked ~ .send-message-bg {
    opacity: 1;
    position: fixed;
    background: radial-gradient(rgba(0, 0, 0, 0.2) 20%, rgba(0, 0, 0, 0.5));
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 100;
}

.conversation {
    max-height: calc(100vh - 320px);
    overflow-y: auto;
}

.unread-conversation {
    border-right: 4px solid #009EF7 !important;
}

.shadow-sm-bottom {
    box-shadow: 0 1px 3px rgba(3, 0, 71, .09);
}

/* SLIDESHOW
–––––––––––––––––––––––––––––––––––––––––––––––––– */

.radio-off {
    position: absolute;
    bottom: 0;
    left: -9999px;
}

.featured-wrapper {
    position: relative;
}

.featured-wrapper .featured-list {
    display: grid;
}

.featured-wrapper .featured-list img {
    grid-column: 1;
    grid-row: 1;
    opacity: 0;
    transition: opacity 0.25s;
}

.thumb-list {
    display: grid;
    grid-column-gap: 5px;
}

.thumb-list label {
    display: grid;
}

.thumb-list img,
.thumb-list .outer {
    grid-column: 1;
    grid-row: 1;
    margin: 5px 0;
}

.thumb-list .outer {
    display: grid;
    place-items: center;
    transition: background 0.25s;
    border: 1px solid #ced4da;
}

/* MIMIC CLICK EVENT
–––––––––––––––––––––––––––––––––––––––––––––––––– */
[id="image1"]:checked ~ .container .featured-list img:nth-child(1),
[id="image2"]:checked ~ .container .featured-list img:nth-child(2),
[id="image3"]:checked ~ .container .featured-list img:nth-child(3),
[id="image4"]:checked ~ .container .featured-list img:nth-child(4) {
    opacity: 1;
}

[id="image1"]:hover ~ .container [for="image1"] .outer,
[id="image2"]:hover ~ .container [for="image2"] .outer,
[id="image3"]:hover ~ .container [for="image3"] .outer,
[id="image4"]:hover ~ .container [for="image4"] .outer {
    border: 1px solid #64bef3;
}

[id="image1"]:checked ~ .container [for="image1"] .outer,
[id="image2"]:checked ~ .container [for="image2"] .outer,
[id="image3"]:checked ~ .container [for="image3"] .outer,
[id="image4"]:checked ~ .container [for="image4"] .outer {
    border: 2px solid #3699FF;
}

.item-report-bg{
    opacity: 0;
    position: fixed;
}

.item-report {
    opacity: 0;
    visibility: hidden;
    position: fixed;
    top: 20%;
    left: 37%;
    text-align: left;
    z-index: 101;
}

#item-report:checked ~ .item-report {
    opacity: 1;
    visibility: visible;
}

#item-report:checked ~ .item-report-bg {
    opacity: 1;
    position: fixed;
    background: radial-gradient(rgba(0, 0, 0, 0.2) 20%, rgba(0, 0, 0, 0.5));
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 100;
}

.all-copy {
    -webkit-user-select: all; /* Chrome all / Safari all */
    -moz-user-select: all; /* Firefox all */
    -ms-user-select: all; /* IE 10+ */
    user-select: all; /* Likely future */
}

/********************************************************************************/
/**************************** Start Dropdown theme.css **************************/
/********************************************************************************/

.navbar .dropdown-menu .dropdown-submenu a:after {
    transform: rotate(-90deg);
    position: absolute;
    right: 1rem
}

.navbar .dropdown-menu .dropdown-submenu .dropdown-menu {
    top: -9px;
    /*right: 100%;*/
    box-shadow: 0 10px 30px 0 rgba(31, 45, 61, .1);
    min-width: 10rem;
    border-radius: .25rem
}

.navbar .navbar-right-wrap .list-group-item {
    padding: 1rem 1.25rem
}

/*@media (max-width: 992px) {*/
@media all {
    .navbar .navbar-nav .dropdown-menu, .navbar .navbar-nav .dropdown-menu .dropdown-submenu .dropdown-menu {
        box-shadow: none;
        margin: 0
    }

    .navbar .nav-top-wrap {
        flex-direction: row
    }

    .navbar .nav-top-wrap .dropdown {
        position: static
    }

    .navbar .nav-top-wrap .dropdown-menu {
        position: absolute;
        margin: 2.25rem .75rem !important
    }

    .navbar .nav-top-wrap .dropdown-menu .dropdown-submenu .dropdown-menu {
        position: relative;
        top: -7px !important;
        padding: 0 !important
    }
}

@media all and (min-width: 768px) {
    .navbar .dropdown-menu {
        display: block;
        visibility: hidden;
        opacity: 0;
        transform: translateY(20px);
        transition: all .3s ease-in
    }

    .navbar .dropdown-submenu:hover > .dropdown-menu, .navbar .dropdown:hover > .dropdown-menu {
        transform: scaleY(1);
        opacity: 1;
        visibility: visible
    }
}

@media (max-width: 768px) {
    .navbar .dropdown-menu {
        display: block;
        visibility: visible;
        opacity: 1;
        transform: scaleY(1);
        transition: all .3s ease-in
    }
}

.dropright .dropdown-menu {
    top: 0;
    right: auto;
    left: 100%;
    margin-top: 0;
    margin-left: .125rem
}

.sub-menu-arrow {
    display: flex;
    align-items: stretch;
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
    margin-left: 0.5rem;
    margin-top:5px;
    width: 0.8rem;
    height: 0.8rem;
}
.sub-menu-arrow:after {
    display: block;
    width: 100%;
    content: " ";
    background-repeat: no-repeat;
    background-position: center;
    background-color: transparent;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23A1A5B7'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M5.93537 4.57889C6.03839 4.77912 6.0191 5.0363 5.87137 5.21403L2.87153 8.82282C2.68598 9.04603 2.36951 9.06026 2.16468 8.8546C1.95985 8.64893 1.94422 8.30126 2.12977 8.07804L4.80594 4.85863L2.15586 1.93583C1.96104 1.72096 1.96165 1.37314 2.15722 1.15895C2.35279 0.944757 2.66927 0.945311 2.86409 1.16018L5.85194 4.45551C5.8859 4.49296 5.91371 4.53459 5.93537 4.57889Z'/%3e%3c/svg%3e");
}

/********************************************************************************/
/****************************** END Dropdown theme.css **************************/
/********************************************************************************/

.flair {
    padding: 0.2rem 0.4rem;
    border-radius: 0.15rem;
    font-size: 0.8rem;
    cursor: default;
    display: inline-block;
    font-weight: 500;
    line-height: 1;
    text-align: center;
    white-space: nowrap;
    vertical-align: baseline;
}

.flair-lg {
    padding: 0.35rem 0.5rem;
    border-radius: 0.25rem;
    font-size: 0.85rem;
    cursor: default;
    display: inline-block;
    font-weight: 500;
    line-height: 1;
    text-align: center;
    white-space: nowrap;
    vertical-align: baseline;
}

.animation-pulse {
    -webkit-animation: pulse 2s infinite;
    animation: pulse 2s infinite;
}

.page-item .page-link {
    border-radius: 0.25rem;
}

.page-link:hover {
    color: #FFFFFF;
    background-color: #009EF7;
}

/*.rounded-1 {*/
/*    border-radius: 0.25rem !important;*/
/*}*/

/*
*** Modalz
 */

.modalz-bg{
    opacity: 0;
    /*position: fixed;*/
}

.modalz {
    opacity: 0;
    visibility: hidden;
    position: fixed;
    top: 50%;
    left: 50%;
    z-index: 101;
}

#modalz:checked ~ .modalz {
    opacity: 1;
    visibility: visible;
}

#modalz:checked ~ .modalz-bg {
    opacity: 1;
    position: fixed;
    background: radial-gradient(rgba(0, 0, 0, 0.2) 20%, rgba(0, 0, 0, 0.5));
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 100;
}

.unread-notification {
    border-right: 4px solid #009EF7 !important;
}
