.main_grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.root_soft_layout {
    text-align: center;
    padding-left: 10%;
    padding-right: 10%;
}

details {
    padding: 10px;
    border: 2px solid chocolate;
    border-radius: 7px;
    margin: 10px;
}

summary {
    font-weight: bold;
    margin: -.5em -.5em 0;
    padding: .5em;
}

details[open] {
    padding: .5em;
}

details[open] summary {
    border-bottom: 2px dashed chocolate;
    margin-bottom: .5em;
}

.full_item {
    display: flex;
    flex-flow: column;
    justify-content: center;
    /*flex: 10 600 calc(340px);*/
    flex: 1;
    min-width: 340px;
    padding: 10px;
    margin: 10px;
    border: 2px solid rgba(0, 0, 145, 0.21);
    border-radius: 7px;
}

.full_item_selected {
    background-color: antiquewhite;
}

.in_item_table {
    margin: 0 auto;
}

.in_item_description {
    margin-top: 5px;
    text-align: center;
    font-family: monospace;
}

.tbody_item {}

.img_soft {
    height: 64px;
    margin: 15px;
    border-radius: 5px;
}

.soft_item_title {
    font-size: large;
    font-weight: bold;
    text-align: center;
    overflow-wrap: break-word;
    word-wrap: break-word;
    word-break: break-all;
}
.soft_item_text {
    text-align: center;
    padding-top: 1%;
}
.soft_item_actions {
    margin-top: 10px;
    text-align: center;
    padding-top: 1%;
}

.section_title {
    font-size: xx-large;
    padding-top: 50px;
    font-weight: bold
}

.section_title_non_pad {
    font-size: xx-large;
    font-weight: bold
}

.real-hint {
    background-color: #fff;
    border: 1px solid #aaa;
    border-radius: 5px;
    display: none;
    padding: 5px 10px;
    position: absolute;
    width: 375px;
    z-index: 99;
}

.real-hint .hint-caption {
    font-weight: bold;
    text-transform: uppercase;
}

.real-hint .prm-cross {
    cursor: pointer;
    float: right;
    height: 16px;
    margin-top: 3px;
    padding-left: 15px;
    right: 10px;
    width: 16px;
}

.real-show-hint {
    cursor: pointer;
    border-bottom: dashed 1px;
    color: #8c0000;
}

input[type='button'] {
    background-color: transparent;
    border: 1px MediumSlateBlue solid;
    border-radius: 5px;
    color: mediumslateblue;
    padding: 0.5em;
    margin: 0.2em;
    transition: .15s linear;
}

input[type='button']:hover {
    color: forestgreen;
    border: 1px ForestGreen solid;
    transition: .15s linear;
    scale: 1.1;
}

input[type='button']:active {
    background: lightgreen;
    scale: 1.1;
    transition: .15s linear;
}

@media screen and (max-width: 600px) {
    .root_soft_layout {
        padding: 0;
    }
}

