.PILL_ARRANGEMENT1
{
    display: flex;
    box-sizing: border-box;
    flex-wrap: wrap;
    gap: 5px;
    width: 100%;
    height: 100%;
}

.PILL_TYPE1
{
    display: flex;
    box-sizing: border-box;
    flex-direction: column;
    overflow: hidden;
    justify-content: space-between;
    border-style: solid;
    border-width: 2px;
    border-color: rgb(25,25,25);
    border-radius: 10px;
    min-width: 150px;
    flex: 1 1 calc(25% - 15px);
}

.PILL_TYPE1:hover
{
    border-color: rgb(35,35,35);
}

.PILL_TYPE1 span
{
    padding: 15px;
    height: 100%;
    justify-content: space-between;
}

.PILL_INDICATE1
{
    display: flex;
    box-sizing: border-box;
    align-items: center;
    flex-shrink: 0;
    height: 75px;
    padding-left: 15px;
    padding-right: 15px;
    background-color: rgb(35,35,35);
}

.PILL_TEXTS
{
    display: flex;
    box-sizing: border-box;
    flex-direction: column;
}

.PILL_TEXTS_COLUMN
{
    display: flex;
    box-sizing: border-box;
    flex-direction: column;
    gap: 5px;
}

@media (max-width: 1190px)
{
    .PILL_INDICATE1
    {
        display: flex;
        box-sizing: border-box;
        align-items: center;
        flex-shrink: 0;
        height: 100%;
        padding-left: 15px;
        padding-right: 15px;
        background-color: rgb(35,35,35);
    }

    .PILL_TYPE1
    {
        display: flex;
        box-sizing: border-box;
        flex-direction: row;
        overflow: hidden;
        justify-content: left;
        border-style: solid;
        border-width: 2px;
        border-color: rgb(35,35,35);
        border-radius: 10px;
        min-width: 150px;
        flex: 1 1 calc(25% - 15px);
    }

    .TEXT_TYPE_DARK_LIGHT
    {
        display: none;
    }

    .BUTTON2_ICON_DSIZE
    {
        display: none;
    }
}