.tile-container {
    position: relative;
    height: auto;
    display: flex;
    margin: 0 0 var(--w42) 0;
    width: var(--tile-container-width);
    overflow-y: auto;
    overflow-x: hidden;
    justify-content: center;  
}

 .tile-container::-webkit-scrollbar {
        width: 10px; /* Adjust scrollbar width */
    }

.tile-container-with-bottom {
    margin: 0 0 45px 0;
}

.tile-body {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.tile-image {
    width: 100%;
    height: 100%;
    vertical-align: middle;
    border: 0;
    position: absolute;
    bottom: 0
}

.tile .tile-label {
    position: absolute;
    bottom: 0;
    left: var(--w10);
    padding: var(--w10) var(--w4);
    z-index: 999;
}

.tile-badge {
    z-index: 999;

    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    right: 0;
    bottom: 0;
    margin: var(--w4);
    opacity: 0.2;
    width: var(--font-size-32);
    height: var(--font-size-32);
    color: var(--settings-cog-color);
    font-size: var(--font-size-22);
}

.circle {
    border-radius: 50%;
    background-color: var(--settings-cog-color-background);
    border: 1px solid var(--settings-cog-color-outline);
}

.tile-badge:hover {
    opacity: 1;
    transition: 0.4s;
}

.small,
.tile,
.large,
.wide {
    display: block;
    float: left;
    margin: 4px;
    background-color: #eeeeee;
    box-shadow: inset 0 0 1px #FFFFCC;
    cursor: pointer;
    position: relative;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    overflow: hidden;
}

.small {
    width: var(--tile-small-width);
    height: var(--tile-small-height);
}

.tile {
    width: var(--tile-standard-width);
    height: var(--tile-standard-height);
}

.wide {
    width: var(--tile-wide-width);
    height: var(--tile-wide-height);
}

.large {
    width: var(--tile-large-width);
    height: var(--tile-large-height);
}

.large:hover,
.tile:hover,
.small:hover,
.wide:hover {
    outline: #999999 solid 3px;
}

.large:active,
.tile:active,
.small:active,
.wide:active {
    outline: 0;
}

.tile-container:before,
.tile-container:after {
    display: table;
    content: "";
}

.tile-container:after {
    clear: both;
}

.tile-text {
    position: absolute;
    left: 150px;
    width: 155px;
}

.fg-white {
    height: 100%;
    color: #ffffff !important;
}

.empty-market-place {
    text-align: center;
}

.empty-header {
    font-size: 35px;
    margin-top: 200px;
    color: #1F3864;
}

.empty-text {
    font-size: var(--font-size-16);
    color: #333;
    margin: var(--w20);
    line-height: 165%;
}

.tile-settings-container {
    display: flex;
    justify-content: flex-start;
    flex-direction: column;
    align-items: stretch;
    padding: var(--w10);

    font-size: var(--font-size-16); 
    position: absolute;
  
    left: 0;
    bottom: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0);
    z-index: 9999;
}

.tile-settings {
    display: flex;
    background-color: white;
    padding: var(--w20);
    border-radius: 5px;
    justify-content: flex-start;
    flex-direction: column;
    align-items: stretch;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25)
}

.tile-setting {
    display: flex;
    flex-direction: column;
    align-items: stretch;
}

.tile-settings-name {
    margin: var(--w4) 0;
}

.tile-settings-value {
    margin: var(--w4) 0;
    padding: var(--w4);
}

.tile-settings-header {
    font-size: var(--font-size-32);
    font-weight: bold;
    margin: var(--w20);
}

.button-bottom {
    display: flex;
    position: relative;
    margin-top: var(--w20);
    justify-content: center; 
}

.button {
    cursor: pointer;
    font-size: var(--font-size-22);
    border-radius: 5px;
    color: white;
    padding: 1px 10px 4px 10px;
    margin: var(--w5);
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 3px 10px 0 rgba(0, 0, 0, 0.19);    
}

.button-apply {
    background-color: #04AA6D;
    border: 1px solid rgba(4, 170, 109, 0.5);
}

.button-cancel {
    background-color: gray;
    border: 2px solid rgba(128, 128, 128, 0.5);
}

.button-float-left {
    position: absolute;
    bottom: var(--w16);
    left: var(--w16);
}

.button-bottom-container {
    position: absolute;
    bottom: 0;
    left: 0;
    display: flex;
    align-items: center;
    width: var(--tile-container-width);
    justify-content: center;
    z-index: 999999;
}

.bottom-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    display: flex;
    align-items: center;
    width: var(--tile-container-width);
    justify-content: center;
    z-index: 999999;

    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    height: var(--w42);
    background-color: #99999910;
}

.loading-hidden {
    display: none;
}
