body.cmlabs .object-cover,
body.cmlabs-office .object-cover {
  -o-object-fit: cover;
     object-fit: cover;
}
body.cmlabs .notif-card,
body.cmlabs-office .notif-card {
  display: flex;
  position: relative;
  border-radius: 8px;
  max-width: 284px;
  flex-direction: column;
  overflow: hidden;
  gap: 4px;
  background-color: #F5F5F5;
  border: 1px solid #F0F0F0;
  position: relative;
}
body.cmlabs .notif-card .close-notif-btn,
body.cmlabs-office .notif-card .close-notif-btn {
  border-radius: 100px;
  background-color: white;
  opacity: 80%;
}
body.cmlabs .notif-card-header,
body.cmlabs-office .notif-card-header {
  display: flex;
  align-items: center;
  overflow: hidden;
  height: 136px;
}
body.cmlabs .notif-card-header img,
body.cmlabs-office .notif-card-header img {
  width: 100%;
}
body.cmlabs .notif-card-body,
body.cmlabs-office .notif-card-body {
  padding: 8px 12px;
  padding-right: 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
body.cmlabs .notif-card-body a,
body.cmlabs-office .notif-card-body a {
  text-decoration: none;
}
body.cmlabs .notif-card .close-btn,
body.cmlabs-office .notif-card .close-btn {
  position: absolute;
  top: 8px;
  right: 12px;
  cursor: pointer;
}
body.cmlabs .notif-card .pin-icon,
body.cmlabs-office .notif-card .pin-icon {
  position: absolute;
  bottom: 8px;
  right: 12px;
}
@media screen and (max-width: 991px) {
  body.cmlabs .notif-card,
body.cmlabs-office .notif-card {
    max-width: none;
  }
  body.cmlabs .notif-card-header,
body.cmlabs-office .notif-card-header {
    height: 120px;
  }
}
body.cmlabs .floating-notification-section,
body.cmlabs-office .floating-notification-section {
  position: fixed;
  bottom: 24px;
  width: -moz-fit-content;
  width: fit-content;
  left: 0;
  right: 0;
  margin-left: 24px;
  z-index: 40;
  display: flex;
  flex-direction: row-reverse;
  align-items: end;
  justify-content: space-between;
}
@media screen and (max-width: 991px) {
  body.cmlabs .floating-notification-section,
body.cmlabs-office .floating-notification-section {
    z-index: 211;
  }
  body.cmlabs .floating-notification-section.main-layout-floating,
body.cmlabs-office .floating-notification-section.main-layout-floating {
    display: none !important;
  }
}
body.cmlabs .floating-notification-section .cards-container-wrapper,
body.cmlabs-office .floating-notification-section .cards-container-wrapper {
  max-height: calc(80vh - 160px);
  max-width: 320px;
  overflow: auto;
}
body.cmlabs .floating-notification-section .cards-container-wrapper::-webkit-scrollbar,
body.cmlabs-office .floating-notification-section .cards-container-wrapper::-webkit-scrollbar {
  background-color: #D0D0D0;
  height: 8px !important;
  width: 8px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  border-radius: 50px;
}
body.cmlabs .floating-notification-section .cards-container-wrapper::-webkit-scrollbar-track,
body.cmlabs-office .floating-notification-section .cards-container-wrapper::-webkit-scrollbar-track {
  background-color: #F7F7F7;
  opacity: 0.1;
}
body.cmlabs .floating-notification-section .cards-container-wrapper::-webkit-scrollbar-thumb,
body.cmlabs-office .floating-notification-section .cards-container-wrapper::-webkit-scrollbar-thumb {
  background-color: #D0D0D0;
  opacity: 0.7;
  border-radius: 50px;
}
body.cmlabs .floating-notification-section .cards-container-wrapper::-webkit-scrollbar-button,
body.cmlabs-office .floating-notification-section .cards-container-wrapper::-webkit-scrollbar-button {
  display: none !important;
}
body.cmlabs .floating-notification-section .cards-container,
body.cmlabs-office .floating-notification-section .cards-container {
  border: none;
  z-index: 91;
  transition: all 500ms;
  display: flex;
  gap: 12px;
  align-items: stretch;
  flex-direction: column;
}
body.cmlabs .floating-notification-section .cards-container::not(.feedback),
body.cmlabs-office .floating-notification-section .cards-container::not(.feedback) {
  max-width: 240px;
}
body.cmlabs .floating-notification-section .cards-container.hide,
body.cmlabs-office .floating-notification-section .cards-container.hide {
  transform: translateY(200px);
  opacity: 0;
  transition: all 500ms;
}
@media screen and (max-width: 991px) {
  body.cmlabs .floating-notification-section .cards-container,
body.cmlabs-office .floating-notification-section .cards-container {
    left: 12px;
    bottom: 12px;
  }
}
body.cmlabs .floating-notification-section .button-container,
body.cmlabs-office .floating-notification-section .button-container {
  z-index: 92;
  position: relative;
}
body.cmlabs .floating-notification-section .button-container button,
body.cmlabs-office .floating-notification-section .button-container button {
  box-shadow: 0px 0px 14px 0px rgba(0, 0, 0, 0.2);
  background-color: white;
  color: #959595;
  border-radius: 40px;
  position: relative;
  height: 40px;
  width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 300ms;
}
body.cmlabs .floating-notification-section .button-container button.active,
body.cmlabs-office .floating-notification-section .button-container button.active {
  color: #1F95F5;
}
body.cmlabs .floating-notification-section .button-container button.active .red-dot,
body.cmlabs-office .floating-notification-section .button-container button.active .red-dot {
  position: absolute;
  top: 8px;
  right: 8px;
  height: 8px;
  width: 8px;
  border-radius: 12px;
  background-color: #F76162;
}
body.cmlabs .floating-notification-section .button-container button.close,
body.cmlabs-office .floating-notification-section .button-container button.close {
  display: none;
}
@media screen and (max-width: 425px) {
  body.cmlabs .floating-notification-section .button-container button.btn-float-notif,
body.cmlabs-office .floating-notification-section .button-container button.btn-float-notif {
    padding: 12px;
  }
  body.cmlabs .floating-notification-section .button-container button.btn-float-notif i,
body.cmlabs-office .floating-notification-section .button-container button.btn-float-notif i {
    margin-right: 0px;
  }
  body.cmlabs .floating-notification-section .button-container button.btn-float-notif span,
body.cmlabs-office .floating-notification-section .button-container button.btn-float-notif span {
    display: none;
  }
}
body.cmlabs .feedback,
body.cmlabs-office .feedback {
  width: 304px;
  max-width: 304px;
}
body.cmlabs .feedback.cards-container-middle,
body.cmlabs-office .feedback.cards-container-middle {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  margin: 0 auto;
  z-index: 110;
}
body.cmlabs .feedback.cards-container-middle .feedback-card,
body.cmlabs-office .feedback.cards-container-middle .feedback-card {
  border-radius: 16px 16px 0 0;
}
body.cmlabs .feedback .feedback-card,
body.cmlabs-office .feedback .feedback-card {
  display: flex;
  flex-direction: column;
  position: relative;
  box-shadow: 0px 0px 14px 0px rgba(0, 0, 0, 0.15);
  border-radius: 16px;
  overflow: hidden;
  background-color: white;
}
body.cmlabs .feedback .feedback-card-body .title,
body.cmlabs-office .feedback .feedback-card-body .title {
  padding: 16px 24px;
  padding-top: 40px;
  display: flex;
  gap: 8px;
}
body.cmlabs .feedback .feedback-card-body .feedback-item,
body.cmlabs-office .feedback .feedback-card-body .feedback-item {
  cursor: pointer;
}
body.cmlabs .feedback .feedback-card-body .feedback-item:hover,
body.cmlabs-office .feedback .feedback-card-body .feedback-item:hover {
  transition: 300ms;
  background-color: #F7F7F7;
}
body.cmlabs .feedback .feedback-card-body .feedback-item input,
body.cmlabs-office .feedback .feedback-card-body .feedback-item input {
  display: none;
}
body.cmlabs .feedback .feedback-card-body .feedback-item label,
body.cmlabs-office .feedback .feedback-card-body .feedback-item label {
  cursor: pointer;
  padding: 16px 24px;
  width: 100%;
}
body.cmlabs .feedback .feedback-card-body .feedback-item.icon,
body.cmlabs-office .feedback .feedback-card-body .feedback-item.icon {
  width: -moz-fit-content;
  width: fit-content;
  border-radius: 100px;
}
body.cmlabs .feedback .feedback-card-body .feedback-item.icon:hover,
body.cmlabs-office .feedback .feedback-card-body .feedback-item.icon:hover {
  background-color: #F5F5F5;
}
body.cmlabs .feedback .feedback-card-body .feedback-item.icon label,
body.cmlabs-office .feedback .feedback-card-body .feedback-item.icon label {
  padding: 0;
  width: -moz-fit-content;
  width: fit-content;
}
body.cmlabs .feedback .feedback-card-body .form-icon,
body.cmlabs-office .feedback .feedback-card-body .form-icon {
  padding: 24px;
  padding-top: 0;
}
body.cmlabs .feedback .feedback-card-footer,
body.cmlabs-office .feedback .feedback-card-footer {
  padding: 24px;
  background-color: #EEEEEE;
}
body.cmlabs .feedback .feedback-card .close-btn,
body.cmlabs-office .feedback .feedback-card .close-btn {
  position: absolute;
  top: 8px;
  right: 12px;
  cursor: pointer;
}
body.cmlabs .feedback.mobile-version,
body.cmlabs-office .feedback.mobile-version {
  width: 100%;
  max-width: none;
  height: 100%;
}
body.cmlabs .feedback.mobile-version .feedback-card,
body.cmlabs-office .feedback.mobile-version .feedback-card {
  border-radius: 0;
  height: 100%;
  box-shadow: none;
}
body.cmlabs .feedback.mobile-version .feedback-card-body,
body.cmlabs-office .feedback.mobile-version .feedback-card-body {
  flex-grow: 1;
}
body.cmlabs .cookies-card,
body.cmlabs-office .cookies-card {
  padding: 24px;
  border-radius: 8px;
  background-color: white;
  box-shadow: 0px 0px 14px 0px rgba(0, 0, 0, 0.15);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  max-width: 320px;
  border: 1px solid #EEEEEE;
  z-index: 102;
}
body.cmlabs .cookies-card .cookie-title,
body.cmlabs-office .cookies-card .cookie-title {
  text-align: center;
  margin-top: 24px;
}
body.cmlabs .cookies-card .cookie-desc,
body.cmlabs-office .cookies-card .cookie-desc {
  margin-top: 8px;
  text-align: center;
}
body.cmlabs .cookies-card .button-container,
body.cmlabs-office .cookies-card .button-container {
  margin-top: 16px;
}
body.cmlabs .announcement-card,
body.cmlabs-office .announcement-card {
  background-color: white;
  padding: 12px 16px;
  border-radius: 8px;
  display: flex;
  position: relative;
  gap: 8px;
  max-width: 400px;
  box-shadow: 0px 0px 14px 0px rgba(0, 0, 0, 0.15);
  border: 1px solid #EEEEEE;
  align-items: center;
  z-index: 999;
  transform: translate3d(-9999px, -9999px, -9999px);
}
body.cmlabs .announcement-card img,
body.cmlabs-office .announcement-card img {
  height: 100%;
}
body.cmlabs .announcement-card .emoji,
body.cmlabs-office .announcement-card .emoji {
  position: absolute;
  font-size: 40px;
  bottom: -20px;
  right: 20px;
  width: -moz-fit-content;
  width: fit-content;
  height: -moz-fit-content;
  height: fit-content;
}
body.cmlabs .announcement-card .announcement-desc,
body.cmlabs-office .announcement-card .announcement-desc {
  margin-top: 4px;
}
body.cmlabs .announcement-card .buttons-container,
body.cmlabs-office .announcement-card .buttons-container {
  margin-top: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}
body.cmlabs .announcement-card.emoji-top .announcement-title,
body.cmlabs-office .announcement-card.emoji-top .announcement-title {
  padding-top: 24px;
}
body.cmlabs .announcement-card.emoji-top .emoji,
body.cmlabs-office .announcement-card.emoji-top .emoji {
  top: -28px;
  left: 20px;
}
body.cmlabs .announcement-card .arrow,
body.cmlabs .announcement-card .arrow::before,
body.cmlabs .cookies-card .arrow,
body.cmlabs .cookies-card .arrow::before,
body.cmlabs-office .announcement-card .arrow,
body.cmlabs-office .announcement-card .arrow::before,
body.cmlabs-office .cookies-card .arrow,
body.cmlabs-office .cookies-card .arrow::before {
  position: absolute;
  width: 12px;
  height: 12px;
  background: inherit;
  border-top: 1px solid #F0F0F0;
  border-left: 1px solid #F0F0F0;
}
body.cmlabs .announcement-card .arrow,
body.cmlabs .cookies-card .arrow,
body.cmlabs-office .announcement-card .arrow,
body.cmlabs-office .cookies-card .arrow {
  visibility: hidden;
  top: -8px;
}
body.cmlabs .announcement-card .arrow::before,
body.cmlabs .cookies-card .arrow::before,
body.cmlabs-office .announcement-card .arrow::before,
body.cmlabs-office .cookies-card .arrow::before {
  visibility: visible;
  content: "";
  transform: rotate(45deg);
}
