#check-blocks-grid-wrp {
    display: flex;
    width: 100%;
    flex-direction: column;
}

#check-blocks-grid-content {
    display: none;
    width: 100%;
    flex-direction: column;
    gap: 10px;
}

.check-blocks-grid-show-content #check-blocks-grid-content {
    display: flex;
}

#check-blocks-grid-no-content-wrp {
    display: none;
    width: 100%;
}

.check-blocks-grid-hide-content #check-blocks-grid-no-content-wrp {
    display: table;
}

#check-blocks-grid-no-content-btn {
    display: table;
    width: 100%;
    background-color: var(--color-block-modal);
    border-radius: 10px;
    padding: 10px;
    -webkit-transition: background-color 0.15s;
    -moz-transition: background-color 0.15s;
    -ms-transition: background-color 0.15s;
    -o-transition: background-color 0.15s;
    transition: background-color 0.15s;
}

#check-blocks-grid-no-content-btn:hover,
#check-blocks-grid-no-content-btn:focus {
    background-color: var(--color-block-modal-hover);
}

#check-blocks-grid-no-content-layout {
    display: flex;
    width: 100%;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    opacity: 0.67;
    gap: 10px;
    -webkit-transition: opacity 0.15s;
    -moz-transition: opacity 0.15s;
    -ms-transition: opacity 0.15s;
    -o-transition: opacity 0.15s;
    transition: opacity 0.15s;
}

#check-blocks-grid-no-content-btn:hover #check-blocks-grid-no-content-layout,
#check-blocks-grid-no-content-btn:focus #check-blocks-grid-no-content-layout {
    opacity: 1;
}

#check-blocks-grid-no-content-img-wrp {
    display: table;
}

#check-blocks-grid-no-content-img-wrp svg {
    height: 16px;
    width: 16px;
}

#check-blocks-grid-no-content-txt-wrp {
    display: table;
    max-width: 100%;
    table-layout: fixed;
}

#check-blocks-grid-no-content-txt-p {
    display: block;
    font-size: 14.5px;
    line-height: 1.4;
    letter-spacing: 0.3px;
}