#newGameCreateContainer {
    /* display: flex; */
    display: none;
    flex-direction: column;
    gap: 0.125rem;
    /* gap: 1rem; */
    overflow: auto;

    scrollbar-width: none;
    -ms-overflow-style: none;
}

#newGameCreateContainer::-webkit-scrollbar {
    display: none;
}

#newGameCreateContainer p,
#newGameCreateContainer h2 {
    margin: 0;
}

#newGameCreateContainer h2 {
    font-size: 1.4rem;
}

#newGameCreateContainer .desc {
    color: rgba(255, 255, 255, 0.6)
}

#newGameCreateContainer .section {
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;

    background: linear-gradient(135deg, rgba(255, 125, 0, 1) 0%, var(--bbc) 6%);
    /* background: radial-gradient(circle at top left, rgba(255, 125, 0, 0.5) 0%, rgba(255, 255, 255, 0.05) 10%); */
    /* background: 
  radial-gradient(circle at top left, rgba(255,125,0,0.9) 0%, rgba(255,255,255,0) 70%),
  conic-gradient(from 225deg at top left, rgba(255,255,255,0.1) 0deg 90deg, transparent 90deg 360deg); */
}

#newGameCreateContainer .section .topBox {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 0.7rem;
}

#newGameCreateContainer .secHeader {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    gap: 0.8rem;
}

#newGameCreateContainer .secHeaderRight {
    display: flex;
    align-items: center;
}

.svgCont {
    padding: 0.25rem;
    background-color: rgba(255, 125, 0, 0.1);
    height: 2.2rem;
    width: 2.2rem;
    border-radius: 2.2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    aspect-ratio: 1 / 1;
}

#newGameCreateContainer svg {
    fill: #FF7D00;
    stroke: transparent;
}

.singleSettingBox {
    display: flex;
    flex-direction: column;
    font-weight: bold;
    gap: 0.5rem;
}

.upperSettingBox {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    /* space-between is also a good idea */
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem;
}

.limitsInfo {
    font-size: 0.8rem;
    color: #FF7D00;
    background-color: rgba(255, 125, 0, 0.1);
    border-radius: 9999px;
    padding: 0.1rem 0.3rem 0.1rem 0.3rem;
}

.fieldSettingBox input {
    width: 100%;
    text-align: left;
}

.sliderSettingBox {
    display: flex;
    flex-direction: row;
    gap: 0.5rem;
    align-items: center;
}

.sliderDisplay {
    color: #FF7D00;
    width: 3rem;
    text-align: right;
}

.slider {
    flex: 1;
    -webkit-appearance: none;
    height: 0.375rem;
    border-radius: 0.1875rem;
    background: rgba(255, 255, 255, 0.1);
    outline: none;
}

.slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 1.25rem;
    height: 1.25rem;
    border-radius: 50%;
    background: linear-gradient(90deg, #FF7D00 0%, #FFAA00 100%);
    cursor: pointer;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.3);
}

.slider::-moz-range-thumb {
    width: 1.25rem;
    height: 1.25rem;
    border-radius: 50%;
    background: linear-gradient(90deg, #FF7D00 0%, #FFAA00 100%);
    cursor: pointer;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.3);
    border: none;
}

.buttonBag {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0.5rem;
    font-weight: 500;
}

.buttonBag div {
    padding: 0.5rem 1rem;
    background-color: rgba(255, 255, 255, 0.03);
    border: 0.0625rem solid rgba(255, 255, 255, 0.12);
    border-radius: 9999px;
    cursor: pointer;
    white-space: nowrap;
}

.buttonBag .active {
    background: linear-gradient(90deg, #FF7D00 0%, #FFAA00 100%);
    color: black
}

.toggleAllButton {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 0.4rem;
    background-color: rgba(255, 125, 0, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    cursor: pointer;
}

.toggleAllButton div {
    color: #FF7D00;
    font-weight: 700;
}

.toggleAllButton svg {
    min-width: 1.4rem;
    min-height: 1.4rem;
}


/* SPECIFIC DEFS START */

#marketPlaceSection .bottomBox {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 1rem;
}

#marketPlaceSection .bottomBox .selector {
    display: flex;
    flex: 1;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 1rem;
    background: rgba(255, 255, 255, 0.03);
    border: 0.0625rem solid rgba(255, 255, 255, 0.12);
    text-align: center;
    transition: all 200ms ease;
    padding: 0.75rem;
}

#marketPlaceSection .bottomBox .selector:hover {
    cursor: pointer;
    border-color: #FF7D00;
    background-color: rgba(255, 125, 0, 0.1);
    box-shadow: 0 0 0 0.125rem rgba(255, 125, 0, 0.2);
    transform: translateY(-0.125rem);
}

.selectedSelector {
    border-color: #FF7D00 !important;
    background-color: rgba(255, 125, 0, 0.1) !important;
    box-shadow: 0 0 0 0.125rem rgba(255, 125, 0, 0.2) !important;
}

#marketPlaceSection .marketName {
    font-size: 1.2rem;
    font-weight: bold;
}

#marketPlaceSection .marketDesc {
    font-size: 0.8rem;
}

/* #marketPlaceSection .marketFlag {
    font-size: 2rem;
} */

#marketPlaceSection .marketFlag svg {
    fill: initial;
    stroke: initial;
}

#basicSettingsSection .bottomBox {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

#autoStartBottomBox {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

#priceLimitSection .bottomBox {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2rem;

}

#priceLimitSection .bottomBox .singleSettingBox {
    flex: 1;
}

#priceLimitSection .bottomBox input {
    min-width: 9rem;
}

/* #sellingStateSection {
    filter: grayscale(100%);
} */

#sellingStateCanceledToggleButton,
#sellingStateEndedToggleButton,
#sellingStateEndedWithSalesToggleButton,
#sellingStateEndedWithoutSalesToggleButton {
    /* filter: grayscale(100%); */
    opacity: 50%;
}

#deCatToggleBtn,
#deCategories1 {
    display: none;
}

#usCatToggleBtns,
#categoriesBox {
    display: none;
}

#categoriesSection .secHeaderRight {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
}

#lowerGameConfigBar {
    display: none;
}

#lowerGameConfigBar svg {
    fill: currentColor;
    stroke: currentColor;
}