.ccm-block-mesch-bookmarks .list-item {
  display: flex;
  justify-content: space-between;
  background-color: #f0f0f0;
  margin-bottom: 10px;
  padding: 5px 10px;
  align-items: center;
}
.ccm-block-mesch-bookmarks .list-item button {
  padding: 0;
  margin: 0 0 0 15px;
  height: 20px;
  width: 20px;
  background-image: url('./icons/icon-remove.png');
  background-color: transparent;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  border: none;
  outline: none;
  user-select: none;
  display: flex;
  flex-shrink: 0;
}
.ccm-block-mesch-bookmarks #mb-content {
  margin-bottom: 2rem;
}
.mb-banner {
  background-color: rgba(0,0,0,0.085);
  padding: 100px 0;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(2px);
  user-select: none;
}
.mb-banner .mb-btn-close {
  position: absolute;
  top: 0;
  right: 0;
  width: 26px;
  height: 26px;
  background-image: url('./icons/icon-close.png');
  background-color: black;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 20px;
  border: none;
  outline: none;
  user-select: none;
  display: block;
  cursor: pointer;
}
.mb-banner#mb-banner-loading #mb-loader-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: inline-block;
  border-top: 3px solid rgb(109, 106, 106);
  border-right: 3px solid transparent;
  box-sizing: border-box;
  animation: mb-loader 1s linear infinite;
}
.mb-banner .message-container {
  box-shadow: 0px 0px 20px 5px rgba(0,0,0,0.35);
  background-color: white;
  padding: 20px 30px;
  position: relative;
  max-width: 600px;
  height: auto;
}
.ccm-block-mesch-bookmarks .alert-form-error {
  background-color: #f7e4e3;
  border: 2px solid #ce8080;
}
.color-danger {
  color: #d9534f;
}
.hidden {
  display: none !important;
}
@media screen and (min-width: 768px) {
  .mb-banner .message-container {
    padding: 40px 50px;
  }
}
@keyframes mb-loader {
  0% {
      transform: rotate(0deg);
  }
  100% {
      transform: rotate(360deg);
  }
} 
