.window {
    width: 700dp;
}

.window .bg {
    overflow-y: auto;
}

.item-button {
    position: relative;
    width: 75dp;
    height: 75dp;
    padding: 0dp;
    border: 5dp white;
    border-radius: 10dp;
    background-color: rgba(0,0,0,128);
	sound-on-click: true;
    color: rgb(255, 255, 255);
}

.item-button:active {
    filter: brightness(0.85);
    transform: scale(0.95);
}

.item-button .image {
    display: block;
    width: 64dp;
    height: 64dp;
    padding: 0dp;
}

.item-small {
    position: relative;
    width: 46dp;
    height: 46dp;
    padding: 0dp;
    background-color: rgba(0,0,0,0);
}

#auctionblock-popup {
}

	#auctionblock-popup .content-table {
        row-gap: 20dp;
        column-gap: 5dp;
    }
	
	#auctionblock-popup .vcenter {
		vertical-align: middle;
	}
	
	#auctionblock-popup .hcenter {
		display: flex;
        align-items: center; 
        justify-content: center; 
	}

    #auctionblock-popup .hcenter.hidden {
		display: none;
	}

    #auctionblock-popup .horizontal-panel {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        width: 100%;
        height: auto;
        gap:15dp;
    }

    #auctionblock-popup .vertical-panel {
        display: flex;
        flex-direction: column;
        flex-wrap: wrap;
        width: 100%;
        height: auto;
        gap:15dp;
    }

.row-bg {
        background-color: #00000000;
    }

.radio {
    display: inline-block;
	padding: 10dp;
	border-radius: 6dp;
	text-align: center;
	vertical-align: middle;
	align-items: center;
	justify-content: center;
    background-color: rgba(165,227,251,64);
    box-shadow: #0005 2dp 2dp 2dp 0px;
	sound-on-click: true;
}
    .radio:checked {
        background-color: rgba(165,227,251,255);
        box-shadow: #000f 2dp 2dp 2dp 0px;
    }

.radio-container {
    position: relative;
    display: inline-block;
}

.radio-container input[type="radio"] {
    width: 50dp;
    height: 30dp;
    opacity: 1;
}

.radio-container .label {
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;

    display: inline-block;
	color: #fff;
	font-family: Century Gothic;
	font-size: 24dp;
	text-align: center;
	white-space: nowrap;
	width: auto;
	font-effect: shadow(1dp 1dp #000);
}

.font-itemname {
    font-family: Century Gothic;
    font-size: 18dp;
    font-weight: 700;
    text-align: left;
}