#tankConfig_tankImageContainer
{
    position:relative;
}

#tankConfig_configArea_tankRow
{
    display:flex;
}


.tankConfigSlotContainer
{
    position:absolute;
    display:flex;
    flex-direction: column;
    align-items: center;
    width: 100px;
}
.tankConfigSlotHeader
{
    text-align: center;
}
.tankConfigSlotBody
{
    border: 5px solid #606060;
    position:relative;
}
.tankConfig_ItemDisplayContainer
{
    width:64px;
    height:64px;
    background-color:#DDDDDD;
    display:flex;
    align-items: center;
    justify-content: center;
}
.tankConfig_ItemDisplayImage
{
    max-width: 60px;
    max-height: 60px;
}
.tankConfigMissingItemText
{
    font-size:50px;
    color:#606060;
}
#tankConfig_primaryWeaponSlot
{
    top: 35px;
    left: 500px;
    flex-direction: column-reverse;
}
#tankConfig_secondaryWeaponSlot
{
    top: 175px;
    left: 500px;
}
#tankConfig_primaryAugmentSlot
{
    top: 300px;
    left: 50px;
    flex-direction: column-reverse;
}
#tankConfig_secondaryAugmentSlot
{
    top: 440px;
    left: 50px;
}

#configChooserList
{
    position: absolute;
    top:0.5rem;
    left:0.5rem;
    background-color: white;
    border:2px solid black;
    z-index:10;
    display:none;
    cursor:auto;
    padding: 0.5rem;
}
#configChooserModal
{
    position:fixed;
    top:0;
    left:0;
    background-color: #666666;
    opacity: 0.5;
    width:100%;
    height:100%;
    z-index:9;
    display:none;
}
.configChooserTarget
{
    cursor: pointer;
    position:relative;
}
.ccOptionsContainer
{
    max-height: 200px;
    overflow-y: auto;
    margin-bottom:1rem;
}
.ccBlock
{
    flex: 1 1 0px;
}
.configChooserOption
{
    display:flex;
    align-items: center;
    margin:0.5rem 0;
    padding: 0.5rem;
    cursor: pointer;
}
.configChooserIconContainer
{
    margin-right:0.5rem;
}

.configChooserOptionHeader
{
    padding:0.5rem;
}
.weaponOptionOdd
{
    background-color: #f95738;
    color:white;
}
.weaponOptionEven
{
    background-color: #ee964b;
    color:black;
}
.augmentColorOdd
{
    background-color:#c77dff;
}
.augmentColorEven
{
    background-color:#9d4edd;
}
.tankConfig_augmentToolTipRight
{
    display:none;
    position:absolute;
    top : 0.5rem;
    background-color: white;
    border: 1px solid black;
    width: 150px;
    right: -160px;
    padding:0.5rem;
}
.configChooserOption:hover .tankConfig_augmentToolTipRight
{
    display:block;
}