.footer {
    display: none;
}
.role {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    padding: 10px;
    border-radius: 10px;
}
.role .role-header {
    display: none;
}
.role .role-header .role-back {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.role .role-header .role-back .back {
    display: flex;
    align-items: center;
}
.role .role-card .role-item {
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    margin: 10px 0;
    padding: 10px;
}
.role .role-card .role-item {
    display: flex;
    justify-content: space-between;
    position: relative;
}
.role .role-card .role-item .roleIdOrImg {
    display: flex;
    gap: 10px;
}
.role .role-card .role-item .roleIdOrImg .roleImg {
    width: 80px;
    height: 80px;
}
.role .role-card .role-item .copy {
    min-width: 40px;
    color: #fff;
    background: #4ed462;
    border: none;
    border-radius: 10px;
    padding: 5px 10px;
    height: 36px;
    position: absolute;
    bottom: 5px;
    right: 10px;
}

@media screen and (max-width: 992px) {
    .footer {
        display: none;
    }
    .role .role-header {
        display: block;
    }
}