@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700;800;900&display=swap');

:root {
    --bg-primary-color: #39498A;
    --bg-secondary-color: #2F3DA9;
    --bg-tertiary-color: #40AEC3;
    --bg-light-color: #FFF;
    --bg-gray-color: #F4F4F4;
    --bg-success-color: #DFECE1;
    --bg-error-color: #F0D3E4;
    --bg-error-button: #CB4691;
    --bg-error-button-light: #c46a9d;

    --text-blue-color: #2F3DA9;
    --text-dark-color: #252525;
    --text-gray-color: #9F9F9F;
    --text-light-color: #FFF;
    --text-success-color: #119328;
    --text-error-color: #CB4691;

    --border-primary-color: #9F9F9F;
    --border-secondary-color: #D4D4D4;

    --link-blue-color: #40AEC3;

    --input-readonly-max-width: 746px;
}

* {
    font-family: 'Poppins', sans-serif !important;
}

/* HIDE */
nav#grp-page-tools {
    display: none;
}

/* LOGIN */
.grp-login {
    min-height: 100vh;
}

.grp-login .grp-container {
    height: 100vh;
    display: flex;
    align-items: center;
    background-image: url("https://res.cloudinary.com/dak35fino/image/upload/v1695168236/Background_admin_incheck_bil4sz.png");
    background-size: 850px 95%;
    background-repeat: no-repeat;
    background-position: top right;
}

body.grp-login #grp-content {
    top: 0;
    padding: 0;
}

/* InCheck: Background */
body.grp-login .grp-module-login {
    background: var(--bg-light-color) !important;
}

body.grp-login .grp-module-login h1 {
    background: var(--bg-light-color);
    border: 1px solid var(--border-secondary-color);
    border-bottom: none;
    border-radius: 4px 4px 0px 0px;
    padding: 0;
}

/* InCheck: Title */
body.grp-login .grp-module-login h1 span {
    color: var(--text-blue-color);
    font-size: 15px;
    font-weight: 600;
}

body.grp-login .grp-module-login h1 span.grp-admin-title {
    padding: 24px;
}

/* LogIn: Background, Title*/
body.grp-login .grp-module-login h1 span.grp-current-page {
    background: var(--bg-primary-color);
    color: var(--text-light-color);
    padding: 7px 24px;
    font-size: 15px;
    font-weight: 600;
    border: none;
}

/* Form */
.grp-module {
    background: var(--bg-light-color);
}

body.grp-login .grp-module-login .grp-module {
    border: 1px solid var(--border-secondary-color);
    border-top: none;
    border-radius: 0px 0px 4px 4px;
}

body.grp-login .grp-module-login .grp-module .grp-row {
    padding-top: 13px;
}

body.grp-login .grp-module-login .grp-module .grp-row.grp-connected {
    background: var(--bg-light-color);
    border: none;
    margin-top: 5px;
    margin-bottom: 20px;
}

.grp-module .grp-row:not(tr) {
    border: none;
}

/* Label */
fieldset.grp-module .grp-row label {
    font-size: 12px;
    font-weight: 300;
    color: var(--text-dark-color);
}

fieldset.grp-module .grp-row {
    padding: 13px 24px;
}

fieldset.grp-module .grp-row label.required {
    font-weight: 400;
}

fieldset.grp-module .grp-row label.required::after {
    font-weight: bold;
    content: "*";
}

body.grp-login .grp-module-login .grp-module label {
    margin-bottom: 8px;
}

body.grp-login .grp-module-login .grp-module label:first-child {
    margin-top: 0;
}

/* Input */
input[type="text"],
input[type="password"],
input[type="url"],
input[type="email"],
input[type="number"],
input[type="submit"],
input[type="reset"],
textarea,
select {
    height: 28px;
    border-radius: 5px;
    /* background: var(--bg-light-color);
    border: 1px solid #77777777 !important; */
}

input[type="text"]:focus,
input[type="text"].grp-state-focus,
input[type="password"]:focus,
input[type="password"].grp-state-focus,
input[type="url"]:focus,
input[type="url"].grp-state-focus,
input[type="email"]:focus,
input[type="email"].grp-state-focus,
input[type="number"]:focus,
input[type="number"].grp-state-focus,
input[type="submit"]:focus,
input[type="submit"].grp-state-focus,
input[type="reset"]:focus,
input[type="reset"].grp-state-focus,
textarea:focus,
textarea.grp-state-focus,
select:focus,
select.grp-state-focus {
    box-shadow: none;
}

/* Submit button */
input[type="submit"], input[type=button].grp-button {
    border-radius: 8px;
    border: 1px solid var(--bg-secondary-color);
    background: var(--bg-secondary-color);
    font-size: 12px;
    font-weight: 600;
    padding: 6px 30px;
    height: fit-content;
    box-shadow: none;
    color: var(--text-light-color);
}

.grp-submit-row .grp-button {
    box-shadow: none;
}

input[type="submit"]:hover,
input[type="submit"]:focus {
    border: 1px solid var(--bg-tertiary-color);
    background: var(--bg-tertiary-color);
}

/* LOGOUT */
/* InCheck: Link */
body.grp-login .grp-module-login h1 span.grp-admin-title a {
    color: var(--text-blue-color);
}

/* LogIn: Container */
body.grp-login .grp-module-login .grp-module .grp-description {
    padding: 18px 14px 24px 14px;
}

/* LogIn: Link */
body.grp-login .grp-module-login .grp-module .grp-description a {
    color: var(--text-blue-color);
}

body.grp-login .grp-module-login .grp-module .grp-description a:hover {
    color: var(--link-blue-color);
}

/* DASHBOARD */
/* Header */
#grp-navigation {
    height: 50px;
    background: var(--bg-light-color);
    border-bottom: 1px solid var(--border-secondary-color);
    color: var(--text-blue-color);
    display: flex;
    align-items: center;
}

#grp-navigation #grp-admin-title {
    color: transparent;
    background: url("/static/img/icons/incheckadmin.png");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

#grp-navigation #grp-user-tools {
    margin-left: auto;
    border: none;
}

#grp-navigation #grp-user-tools>li {
    border-left: 1px solid var(--border-secondary-color);
    border-right: none;
    text-align: center;
}

.grp-user-options-container.grp-collapse.grp-closed > a::before {
    content: "";
    position: absolute;
    -webkit-mask-image: url("/static/img/icons/down-arrow.svg");
    mask-image: url("/static/img/icons/down-arrow.svg");
    display: inline;
    width: 24px;
    height: 24px;
    top: 20%;
    right: 20%;
    background-color: var(--text-blue-color);
}

.grp-user-options-container.grp-collapse.grp-open > a::before {
    content: "";
    position: absolute;
    -webkit-mask-image: url("/static/img/icons/down-arrow.svg");
    mask-image: url("/static/img/icons/down-arrow.svg");
    display: inline;
    width: 24px;
    height: 24px;
    top: 20%;
    right: 20%;
    background-color: var(--text-blue-color);
    transform: rotate(180deg);
}

.grp-user-options-container.grp-collapse:hover > a::before {
    background-color: var(--link-blue-color);
}


#grp-navigation #grp-user-tools>li a {
    color: var(--text-blue-color);
}

#grp-navigation #grp-user-tools>li a:hover {
    color: var(--link-blue-color);
}

#grp-navigation #grp-user-tools>li:last-child {
    margin-right: 40px;
}

#grp-navigation #grp-user-tools>li:last-child::after {
    content: "";
    background: url("/static/img/icons/banner.png");
    background-size: contain;
    background-repeat: no-repeat;
    width: 51px;
    height: 51px;
    display: inline-block;
    position: absolute;
    top: 0;
    right: 0;
}

/* Header: Dropdown */
#grp-navigation ul li.grp-collapse.grp-open>ul {
    background: var(--bg-light-color);
    border: 1px solid var(--border-secondary-color);
}

#grp-navigation ul li.grp-collapse.grp-open>ul li {
    border: none;
}

/* Breadcrumbs */
#grp-context-navigation {
    height: 30px;
    background: var(--bg-light-color);
    border-bottom: 1px solid var(--border-secondary-color);
}

#grp-breadcrumbs {
    height: 26px;
    font-size: 12px;
    color: var(--text-blue-color);
}

#grp-breadcrumbs li:last-child {
    color: var(--text-gray-color);
    font-weight: 600;
}

#grp-breadcrumbs li:first-child {
    color: var(--text-blue-color);
    font-weight: 600;
}

#grp-breadcrumbs a {
    color: var(--text-blue-color);
    /* background-image: url("https://icons8.com/icon/85831/chevron-right") !important; */
    /* TODO: Add svg icon breadcrumbs */
}

#grp-breadcrumbs a:hover {
    color: var(--link-blue-color);
}

/* Dashboard title */
.dashboard #grp-content-title h1 {
    color: var(--bg-secondary-color);
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 14px;
}

/* Collapsibles */
.grp-module {
    border: 1px solid var(--border-secondary-color);
    border-radius: 8px;
    margin-bottom: 34px;
}

.grp-module h2 {
    background: var(--bg-secondary-color);
    text-shadow: none;
    border: none;
    border-radius: 8px 8px 0 0;
    padding: 11px;
    color: var(--text-light-color);
}

.grp-module h2 a {
    color: var(--text-light-color);
    font-weight: 600;
}

.grp-module h2 a:hover {
    text-decoration: underline;
}

.grp-module .grp-row:not(tr) {
    padding: 11px;
    border-bottom: 1px solid var(--border-secondary-color);
}

.grp-module .grp-row a {
    color: var(--link-blue-color);
}

.grp-module .grp-row a:hover {
    color: var(--link-blue-color);
    text-decoration: underline;
}

/* Recent actions */
#grp-recent-actions-module .grp-row {
    padding-left: 25px;
}

#grp-recent-actions-module .grp-module h3 {
    background: var(--bg-light-color);
    color: var(--text-blue-color);
}

/* MODEL LIST */
/* title */
.grp-change-list #grp-content-title {
    display: flex;
    align-items: flex-start;
    height: 40px;
    padding: 20px 0 4px;
}

.grp-change-list #grp-content-title h1 {
    color: var(--bg-secondary-color);
    font-size: 36px;
    font-weight: 600;
    padding: 0;
}

.grp-change-list #grp-content-title .grp-object-tools {
    margin-left: auto;
    position: unset;
    display: flex;
    align-items: center;
}

/* Export, Import buttons */
.grp-state-focus.import_link,
.grp-state-focus.export_link {
    background: none;
    color: var(--link-blue-color);
    border: none;
    font-weight: 400;
    font-size: 12px;
}

.grp-state-focus.import_link:hover,
.grp-state-focus.export_link:hover {
    background: none;
    text-decoration: underline;
    border: none;
}

/* Add button */
.grp-add-link.grp-state-focus {
    font-weight: 600;
    font-size: 12px;
    background: url("../grappelli/images/icons-s79f97b581c.png") 4px -888px no-repeat, var(--bg-secondary-color) !important;
    background-position: center center;
    color: var(--text-light-color);
    border-radius: 8px;
    border: none;
    padding: 8px 16px 8px 0px;
}

.grp-add-link.grp-state-focus:hover {
    font-weight: 600;
    font-size: 12px;
    background: url("../grappelli/images/icons-s79f97b581c.png") 4px -888px no-repeat, var(--bg-tertiary-color) !important;
    color: var(--text-light-color);
    border-radius: 8px;
    border: none;
}

/* Search bar */
#grp-changelist-search {
    background: var(--bg-light-color) !important;
    box-shadow: none;
    border-radius: 8px;
}

/* Container filters dropdown  */
.grp-pulldown-container.grp-pulldown-state-open {
    box-shadow: none;
}

/* Filters dropdown */
a.grp-button.grp-pulldown-handler:hover {
    background-position: 100% -979px !important;
}
.grp-button.grp-pulldown-handler {
    background-color: var(--bg-light-color);
    border-radius: 8px;
}

.grp-button.grp-pulldown-handler:hover {
    background-color: var(--bg-light-color);
}

.grp-pulldown-container.grp-pulldown-state-open .grp-pulldown-handler,
.grp-pulldown-container .grp-pulldown-handler {
    background-color: var(--bg-light-color);
}

.grp-pulldown-container.grp-pulldown-state-open .grp-pulldown-handler:hover,
.grp-pulldown-container .grp-pulldown-handler:hover {
    background-color: var(--bg-light-color);
}

/* Filters dropdown link */
.grp-pulldown-container.grp-pulldown-state-open .grp-pulldown-handler,
.grp-pulldown-container .grp-pulldown-handler {
    color: var(--link-blue-color);
    font-weight: 500;
}

.grp-pulldown-container.grp-pulldown-state-open .grp-pulldown-handler:hover,
.grp-pulldown-container .grp-pulldown-handler:hover {
    color: var(--link-blue-color);
}

.grp-pulldown-content .grp-module {
    border-radius: 0;
}

/* Filters select */
.grp-pulldown-content .grp-module .grp-filter-choice {
    box-shadow: none;
    padding-left: 10px;
    color: var(--text-gray-color);
}

/* Pagination container */
.grp-change-list #grp-content-container {
    border: none;
}

.grp-change-list #grp-content-container .grp-module {
    border: none;
    margin-bottom: 10px;
    background: var(--bg-light-color);
}

.grp-change-list #grp-content-container .grp-module .grp-row {
    padding: 0;
    border: none !important;
}

.grp-change-list #grp-content-container .grp-module .grp-row:last-child {
    background-color: var(--bg-light-color);
    margin-top: 4px;
    padding: 4px 9px;
    border-radius: 4px;
}

div.grp-pulldown-container.grp-pulldown-state-open div.grp-pulldown-content {
    background: var(--bg-light-color);
}

/* Date arrow */
.grp-date-hierarchy ul li a.grp-date-hierarchy-back {
    background-position: 0 -520px;
}

/* Top pagination */
.c-2 .grp-pagination {
    display: none;
}

/* Bottom pagination */
.grp-row .grp-pagination span {
    background: #EAEAEA;
    font-weight: 600;
    border: none;
}

.grp-row .grp-pagination li a {
    border: none;
}

.grp-row .grp-pagination li {
    background: #EAEAEA;
    border: 1px solid #CDCDCD;
}

/* MODEL LIST TABLE */
.grp-module.grp-changelist-results {
    background: none !important;
}

.grp-module.grp-changelist-results #result_list {
    margin: 0 !important;
    width: 100%;
}

#result_list th,
#result_list td,
#result_list .grp-row {
    background: none !important;
}

#result_list th a {
    color: #838383;
    font-size: 12px;
}

/* Actions */
.grp-changelist-actions {
    display: flex;
    align-items: center;
}

.grp-changelist-actions select {
    background-color: var(--bg-secondary-color);
    color: var(--text-light-color);
    border: none;
    box-shadow: none;
}

.grp-horizontal-list.grp-float-left li {
    border: none !important;
}

.grp-horizontal-list.grp-float-left li span {
    background: none !important;
    border: none !important;
    color: var(--text-blue-color) !important;
}

.grp-changelist-actions button {
    background: var(--bg-secondary-color);
    color: var(--text-light-color);
    box-shadow: none;
    opacity: 1 !important;
    border: none;
    padding: 5px 15px;
    order: 4;
}

.grp-changelist-actions button:hover {
    background-image: none !important;
    background: var(--bg-tertiary-color);
    border: none !important;
    color: var(--text-light-color) !important;
}

.grp-change-list .grp-module.grp-submit-row.grp-fixed-footer li {
    padding-top: 11px !important;
    padding-bottom: 11px !important;
    padding-left: 20px !important;
    background: none;
    opacity: 1;
}

/* ADD MODEL */
.grp-change-form #grp-content-title {
    display: flex;
    align-items: flex-start;
    height: 40px;
    padding: 20px 0 9px;
}

.grp-change-form #grp-content-title h1 {
    color: var(--bg-secondary-color);
    font-size: 36px;
    font-weight: 600;
    padding: 0;
}

.grp-change-form #grp-content-title .grp-object-tools {
    margin-left: auto;
    position: unset;
}

.grp-change-form #grp-content-title .grp-object-tools a {
    background: var(--bg-secondary-color);
    opacity: 1;
    border-radius: 8px;
    border: none;
}

.grp-change-form #grp-content-title .grp-object-tools a:hover {
    background: var(--bg-tertiary-color);
    opacity: 1;
    border-radius: 5px;
    border: none;
}

.grp-change-form .module.grp-module {
    margin-top: 30px;
    border: none;
}

.grp-change-form .module.grp-module .form-row {
    border: none;
}

.grp-change-form .module.grp-module .form-row input {
    background: var(--bg-light-color);
    box-shadow: none;
}

/* submit buttons */
.grp-module.grp-submit-row.grp-fixed-footer {
    border: none;
    margin-bottom: 0 !important;
    border-radius: 0;
    padding: 0;
}

.grp-module.grp-submit-row.grp-fixed-footer::before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    background: var(--bg-secondary-color);
    opacity: 0.1;
}

.grp-change-form .grp-module.grp-submit-row.grp-fixed-footer li {
    padding-top: 20px !important;
    padding-bottom: 20px !important;
    background: none;
    opacity: 1;
}

.grp-change-form .grp-module.grp-submit-row.grp-fixed-footer li:first-child {
    padding-right: 20px !important;
}

.grp-module.grp-submit-row.grp-fixed-footer li input {
    opacity: 1;
    border: none;
}

.grp-module.grp-submit-row.grp-fixed-footer li input:hover,
.grp-module.grp-submit-row.grp-fixed-footer li input:focus {
    background: var(--bg-tertiary-color);
    color: var(--text-light-color);
    border: none;
}

/* submit buttons cancel */
.grp-module.grp-submit-row.grp-fixed-footer li:last-child input[name="_cancel"] {
    background: var(--bg-light-color);
    color: var(--text-blue-color);
    border: none;
}

.grp-module.grp-submit-row.grp-fixed-footer li:last-child input[name="_cancel"]:hover {
    background: var(--bg-tertiary-color);
    color: var(--text-light-color);
    border: none;
}

/* submit buttons delete */
footer.grp-module.grp-submit-row.grp-fixed-footer .grp-float-left a {
    background: var(--bg-error-button);
    border: none;
    padding: 6px 30px;
    font-weight: 500;
}

footer.grp-module.grp-submit-row.grp-fixed-footer .grp-float-left a:hover {
    background: var(--bg-error-button-light);
    color: var(--text-light-color);
    border: none;
    padding: 6px 30px;
    font-weight: 500;
}

.grp-button.grp-delete-link {
    border: none;
    margin-left: 20px;
    opacity: 1 !important;
}

.grp-change-form .grp-button.grp-default {
    margin-right: 20px !important;
}

/* DELETE MODEL */
.grp-delete-confirmation #grp-content {
    display: flex;
    flex-direction: column;
    height: 100vh;
    justify-content: center;
    align-items: center;
    padding: 0;
}

.grp-delete-confirmation #grp-content-title {
    width: fit-content;
}

.grp-delete-confirmation #grp-content-title h1 {
    color: var(--bg-secondary-color);
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 14px;
}

.grp-delete-confirmation .grp-group {
    border: 1px solid var(--border-secondary-color);
    padding: 0;
}

/* are you sure */
.grp-delete-confirmation .grp-group h2 {
    background: none;
    border: none;
    border-bottom: 1px solid var(--border-secondary-color);
    border-radius: 0;
    margin: 0;
}

.grp-delete-confirmation .grp-group .grp-module.grp-collapse.grp-open {
    background: none;
    border: none;
}

.grp-delete-confirmation .grp-group .grp-module.grp-collapse.grp-open h3 {
    background: none;
    border: none;
    border-bottom: 1px solid var(--border-secondary-color);
}

.grp-delete-confirmation .grp-group .grp-module.grp-collapse.grp-open .grp-module {
    border-bottom: 1px solid var(--border-secondary-color);
}

.grp-delete-confirmation .grp-group .grp-nested-list li {
    background: none;
    border: none;
}

.grp-delete-confirmation .grp-group .grp-nested-list li a:hover {
    color: var(--link-blue-color);
    text-decoration: underline;
}

/* Cancel button */
.grp-delete-confirmation .grp-button.grp-cancel-link {
    background: var(--bg-secondary-color) !important;
    color: var(--text-light-color) !important;
    opacity: 1 !important;
    border: none !important;
}

.grp-delete-confirmation .grp-button.grp-cancel-link:hover {
    background: var(--bg-tertiary-color) !important;
    color: var(--text-light-color) !important;
    opacity: 1 !important;
    border: none !important;
}

.grp-delete-confirmation ul li {
    background: none !important;
}

.grp-delete-confirmation .grp-module.grp-submit-row.grp-fixed-footer ul {
    padding: 20px;
}

/* Import */
.change-form #grp-content-title {
    display: flex;
    align-items: flex-start;
    height: 40px;
    padding: 20px 0 9px;
}

.change-form #grp-content-title h1 {
    color: var(--bg-secondary-color);
    font-size: 36px;
    font-weight: 600;
    padding: 0;
}

.change-form #grp-breadcrumbs {
    height: 26px;
    font-size: 12px;
    color: var(--text-blue-color);
    padding: 5px 20px;
}

.change-form #grp-breadcrumbs a {
    padding-right: 5px;
    padding-left: 5px;
}

.change-form #grp-breadcrumbs a:first-child {
    padding-left: 0;
}

/* Historic */
#change-history {
    border-collapse: collapse;
    margin-top: 16px;
}

#change-history thead {
    background: var(--bg-secondary-color);
    color: var(--text-light-color);
}

#change-history th,
#change-history td {
    width: 150px;
    text-align: left;
    padding: 5px
}

/* MESSAGES */
/* Error message */
p.errornote {
    border: none !important;
    background: var(--bg-error-color);
    color: var(--text-error-color);
    border-radius: 8px;
    font-weight: 500;
    font-size: 15px;
    padding: 10px 15px;
}

/* Success message */
li.grp-success {
    margin-top: 16px;
    border: none !important;
    background: var(--bg-success-color) !important;
    color: var(--text-success-color);
    border-radius: 8px;
    font-weight: 500;
    font-size: 15px;
    padding: 10px 15px;
}

/* Inputs structure */

div.form-row.grp-row.grp-cells-1 div.field-box.l-2c-fluid.l-d-4 {
    display: flex;
    flex-direction: column;
    width: 100%;
}

div.form-row.grp-row.grp-cells-1 div.field-box.l-2c-fluid.l-d-4 div.c-2 {
    width: 100%;
}

/* Readonly fields */
div.form-row.grp-row.grp-cells-1 div.field-box.l-2c-fluid.l-d-4 div.c-2 div.grp-readonly {
    width: 100%;
    max-width: calc(100% - 11px);
}

/* Input fields */
div.form-row.grp-row.grp-cells-1 div.field-box.l-2c-fluid.l-d-4 div.c-2 input {
    width: 100%;
    max-width: calc(100% - 11px);
}

/* Personas widget */
div.inline-group.grp-group.grp-stacked {
    border: none;
}

div.inline-group.grp-group.grp-stacked h2.grp-collapse-handler {
    background: var(--bg-secondary-color);
    border: none;
    text-shadow: none;
    color: var(--text-light-color);
    border-radius: 8px;
    font-weight: 500;
    position: relative;
    cursor: pointer;
}

div.inline-group.grp-group.grp-stacked h2.grp-collapse-handler::after {
    content: "";
    position: absolute;
    -webkit-mask-image: url("/static/img/icons/down-arrow.svg");
    mask-image: url("/static/img/icons/down-arrow.svg");
    display: inline;
    width: 24px;
    height: 24px;
    top: 10%;
    right: 2%;
    background-color: var(--text-light-color);
}

div.inline-group.grp-group.grp-stacked h2.grp-collapse-handler.is-open::after {
    transform: rotate(180deg);
}

div.inline-group.grp-group.grp-stacked a.grp-icon.grp-open-handler {
    display: none;
}

div.inline-group.grp-group.grp-stacked a.grp-icon.grp-close-handler {
    display: none;
}

div.inline-related.grp-module.grp-collapse.grp-dynamic-form {
    border: none;
}

div.inline-related.grp-module.grp-collapse.grp-dynamic-form a.grp-icon.grp-delete-handler {
    display: none !important;
}

div.inline-related.grp-module.grp-collapse.grp-dynamic-form h3.grp-collapse-handler {
    background: var(--bg-tertiary-color);
    border: none;
    text-shadow: none;
    color: var(--text-light-color);
    border-radius: 8px;
    font-weight: 500;
}

/* Fieldset collapsible */
fieldset.module.grp-module.collapse div.form-row.grp-row.grp-cells-1 {
    display: block;
}

fieldset.module.grp-module.collapse.collapsed div.form-row.grp-row.grp-cells-1 {
    display: none;
}

fieldset.module.grp-module.collapse h2.grp-collapse-handler {
    border-radius: 8px;
}
