.h1-subtitle {
    font-size: 24px !important;
    margin: 0 !important;
    text-transform: uppercase !important;
    color: #424242 !important;
    font-weight: bold !important;
}

.success-purchase {
    padding-top: 170px;
    padding-bottom: 170px;
}
.purchases-success-icon {
    height: 120px;
    width: 120px;
    margin-bottom: 24px;
}

.cancel-purchase {
    padding-top: 170px;
    padding-bottom: 170px;
}
.purchases-cancel-icon {
    height: 120px;
    width: 120px;
    margin-bottom: 24px;
}

/* Steps */
.step {
    margin-top: 30px;
    position: relative;
    min-height: 1em;
    color: gray;
}
.step + .step {
    margin-top: 1.5em
}
.step > div:first-child {
    position: static;
    height: 0;
}
.step > div:not(:first-child) {
    margin-left: 1.5em;
    padding-left: 1em;
}
.step.step-active {
    color: #0E7BBD
}
.step.step-active .circle {
    background-color: #0E7BBD;
}

/* Circle */
.circle {
    background: gray;
    position: relative;
    width: 2em;
    height: 2em;
    line-height: 1.5em;
    border-radius: 100%;
    color: #fff;
    box-shadow: 0 0 0 3px #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Vertical Line */
.circle:after {
    content: ' ';
    position: absolute;
    display: block;
    top: 1px;
    right: 50%;
    bottom: 1px;
    left: 50%;
    height: 100%;
    width: 1px;
    transform: scale(1, 2);
    transform-origin: 50% -100%;
    background-color: rgba(0, 0, 0, 0.25);
    z-index: -1;
}
.step:last-child .circle:after {
    display: none
}

/* Stepper Titles */
.title {
    line-height: 1.5em;
    font-weight: bold;
}
.caption {
    font-size: 0.8em;
}

.ref-header {
    height: 120px;
    /*background-color: green;*/
    display: grid;
    align-content: center;
    justify-content: start;
    padding: 0px 70px;
    margin-bottom: 20px;
    background-image: url(../supreme/assets/slideshow-banners/home1-banner.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}
.ref-header .ref-title{
    font-size: 24px !important;
    margin: 0 !important;
    text-transform: uppercase !important;
    color: #424242 !important;
    font-weight: bold !important;
}

/*
.p-add-to-cart{
    display: none !important; 
}

.product-item:hover .p-add-to-cart {
    display: block !important; 
}
*/

.display-table-item { display:flex; flex-direction: column; justify-content: center; align-items: center;  margin:0 !important; }
.display-table-cell-item { }
/*.display-table-cell-item img { height: 300px; object-fit: cover; object-position: left }*/


@media only screen and (max-width: 575px) {	
    .row {display: flex; flex-wrap: wrap; margin: 0 -15px; }
    .col-xs { flex: 0 0 50%; padding: 0px; }
}

@media only screen and (max-width: 480px) {
    .row {display: flex; flex-wrap: wrap; margin: 0 -15px; }
    .col-xs { flex: 0 0 50%; padding: 0px; }
}

@media only screen and (max-width: 380px) {
    .row {display: flex; flex-wrap: wrap; margin: 0 -15px; }
    .col-xs { flex: 0 0 100%; padding: 0 15px; }
}


#loading-overlay {
    display: none; /* Hidden by default */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent background */
    z-index: 9999; /* Ensure it's on top of other elements */
}

.loading-spinner {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 8px solid #f3f3f3; /* Light gray */
    border-top: 8px solid #3498db; /* Blue */
    border-radius: 50%;
    width: 60px;
    height: 60px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}