body {
  background-color: #fafafa;
}

.column {
  overflow-y: hidden;
}

.flex_warp {
  display: flex;
  flex-wrap: wrap;
}

.header-logo {
  margin-left: 10px;
}

.logo-bookmark {
  top: -2vh;
}

.navbar {
  background-color: #fafafa;
}

.navbar-item > .button {
  margin-bottom: 0;
}

.navbar-item > .button:first-child {
  margin-right: 12px;
}

.side-menu {
  position: sticky;
  width: 3em;
  height: auto;
  font-size: 1em;
  line-height: 2em;
  color: #fff;
  font-weight: 700;
  text-transform: uppercase;
  /* position: absolute; */
  top: 20px;
  bottom: 0;
  left: -10em;
}

.side-menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
  border-left: 2px solid #1872f0;
}

.side-menu ul li {
  flex: none;
  width: max-content;
  display: block;
  background-color: transparent;
  padding: 0.5em 0.8em;
  position: relative;
  transition: all ease 0.5s;
  border-radius: 0 8px 8px 0;
  cursor: pointer;
  border: 1px solid #eee;
}

.side-menu ul li a span {
  transition: max-width ease 0.3s, opacity ease-out 0.4s, margin-right ease-in-out 0.2s;
}

.side-menu .active i {
  color: #1872f0;
}

/*the colors of the different columns*/
.side-menu ul li:hover {
  background-color: #fff;
  border-radius: 0 8px 8px 0;
}

.side-menu .active {
  border-radius: 0 8px 8px 0 !important;
}

.side-menu ul li a span,
.side-menu ul li a div {
  max-width: 0;
  max-height: 2em;
  opacity: 0;
  overflow: hidden;
  margin-right: 0;
  display: inline-flex;
}

.side-menu ul li:hover a span,
.side-menu ul li:hover a div:not([hidden=hidden]) {
  opacity: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-height: 20em;
  max-width: 20em;
  margin-right: 10px;
}

.side-menu ul li:hover a div span {
  margin-right: 0;
}

.side-menu ul li a {
  display: inline-flex;
  color: #eee;
  text-decoration: none;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.side-menu ul li span {
  color: #4a4a4a;
}

.iconBox {
  width: 1.2em;
  display: flex;
  justify-content: center;
  align-items: center;
}

.componentListItem figure {
  display: inline-flex;
}
.componentListItem figure img {
  display: block;
  height: auto;
  width: 100%;
  object-fit: contain;
}

.profileBox {
  display: flex;
  flex-wrap: wrap;
}
.profileBox .boxItem {
  margin-right: 10px;
}

.file.is-boxed.has-name .file-name {
  border-radius: 4px;
  border-width: 1px;
}

.set_none {
  display: none;
}

.show-img-box {
  width: auto !important;
  display: inline-flex;
  align-items: center;
  margin: 20px;
}

.showImg {
  display: flex;
}
.showImg .outBox {
  width: 62px;
  height: 100%;
  overflow: hidden;
}
.showImg .modal-content img {
  object-fit: contain;
}
.showImg .mainImgBox {
  width: 200px;
  height: 200px;
  display: inline-flex;
  margin-left: 20px;
}
.showImg .mainImgBox img {
  /* width: 100%; */
  height: 100%;
  object-fit: contain;
  cursor: pointer;
}
.showImg .itemBox {
  height: 200px;
  width: 100%;
  overflow: hidden;
  overflow-y: scroll;
  padding-right: 50px;
  box-sizing: content-box;
}
.showImg .itemBox .item {
  width: 42px;
  height: 42px;
  border-radius: 2px;
  padding: 5px;
  border: 1px solid transparent;
  margin-bottom: 6px;
  cursor: pointer;
}
.showImg .itemBox .item.active {
  border: 2px solid #1872f0;
  border-radius: 8px;
}
.showImg .itemBox .item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #eee;
}

.imgBox {
  display: inline-flex;
  position: relative;
  justify-content: center;
}
.imgBox .image {
  display: inline-flex;
  justify-content: center;
}

.imgBox {
  width: 240px;
  height: 240px;
  display: inline-flex;
  position: relative;
}
.imgBox .certificate-image {
  width: max-content;
  height: max-content;
  max-width: 240px;
  max-height: 240px;
  margin: auto;
}

.imgBox > img {
  height: auto;
  width: 100%;
  object-fit: contain;
}

.notification.custom-notif {
  position: fixed;
  z-index: 70;
  top: 1.5rem;
  right: 1.5rem;
  left: 1.5rem;
}

.hide-after {
  -moz-animation: cssAnimation 0s ease-in 3s forwards;
  /* Firefox */
  -webkit-animation: cssAnimation 0s ease-in 3s forwards;
  /* Safari and Chrome */
  -o-animation: cssAnimation 0s ease-in 3s forwards;
  /* Opera */
  animation: cssAnimation 0s ease-in 3s forwards;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}

@keyframes cssAnimation {
  to {
    width: 0;
    height: 0;
    z-index: -1;
    overflow: hidden;
  }
}
@-webkit-keyframes cssAnimation {
  to {
    width: 0;
    height: 0;
    z-index: -1;
    visibility: hidden;
  }
}
.footer {
  background-color: #fff;
  margin-top: 1.5rem;
}

scene-hull {
  position: relative;
}

.text-center {
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.clipboardBox {
  display: flex;
  width: 100%;
  border-radius: 99px;
  justify-content: space-between;
  align-items: center;
}
.clipboardBox .inputBox {
  flex: none;
  width: 70%;
}
@media screen and (max-width: 420px) {
  .clipboardBox {
    flex-direction: column;
  }
  .clipboardBox .inputBox {
    width: 100%;
    margin-bottom: 12px;
  }
}
.clipboardBox .copyIcon {
  margin-left: 6px;
}

.is-absolute {
  position: absolute;
  bottom: 0px;
  width: 100%;
}

#component-dropdown-menu {
  width: 100%;
}

.search-button {
  border-radius: 0 4px 4px 0 !important;
}

.card-relate-data {
  flex: 1;
  margin: 0.33rem;
}

.fix-width {
  display: grid;
}

.select-title {
  margin-top: 0.3em;
}

.modal-content.box {
  width: auto;
}

.pagination-smart {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
  margin-bottom: 0.5em;
}
.pagination-smart .input {
  width: max-content;
  margin-bottom: 0.5em;
  margin-right: 0.5em;
}
.pagination-smart .select {
  margin-bottom: 0.5em;
  margin-right: 0.5em;
}
.pagination-smart .ps-next {
  transform: rotate(90deg);
}
.pagination-smart .ps-prev {
  transform: rotate(270deg);
}
.pagination-smart .ps-first {
  transform: rotate(180deg);
}

.right-side {
  position: absolute;
  right: 1em;
}

.itemsBox {
  margin-bottom: 80px;
}
.itemsBox .itemBox {
  border: 1px solid #edf1fb;
  border-radius: 8px;
  box-shadow: none;
  transition: box-shadow 0.2s ease-in-out;
}
.itemsBox .itemBox:hover {
  box-shadow: 0 0.5em 1em -0.125em rgba(10, 10, 10, 0.1019607843), 0 0 0 1px rgba(10, 10, 10, 0.0196078431);
}
.itemsBox .itemBox .media-content {
  width: 100rem;
}

.flexBox {
  display: flex;
  align-items: center;
}

.flex-box {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 0 6%;
}

.center-media {
  align-items: center;
}

.top-tag {
  position: absolute;
  top: -10px;
  left: -10px;
  padding: 2px 10px;
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid #b3bace;
  box-sizing: border-box;
  border-radius: 8px;
}

.overflow-title {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.boxItem {
  padding: 20px;
  background: #ffffff;
  border: 2px solid #EDF1FB;
  border-radius: 8px;
  width: 240px;
  box-sizing: content-box;
  margin-bottom: 26px;
}
.boxItem:hover {
  transform: translateY(-2px);
  box-shadow: rgba(4, 17, 29, 0.25) 0px 0px 8px 0px;
  transition: all 0.1s ease 0s;
}

.innerBox {
  display: flex;
  flex-direction: column;
}

.btnBox {
  box-sizing: border-box;
  margin-top: 20px;
  display: flex;
}

.pointer {
  cursor: pointer;
}

.comment {
  display: block;
  font-size: 16px;
  line-height: 1.4;
  padding: 12px 8px 8px;
  transition: background 0.3s ease-in-out;
}
.comment .button {
  font-size: x-small;
}

.comment-avatar {
  height: 24px;
  margin-right: 8px;
  width: 24px;
}
.comment-avatar img {
  border-radius: 3px;
  box-shadow: 0 0.5em 1em -0.125em rgba(10, 10, 10, 0.1), 0 0 0 1px rgba(10, 10, 10, 0.02);
}

.comment-body {
  padding-left: 17px;
}

.comment-info {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  font-size: 14px;
  margin-bottom: 12px;
  padding-right: 84px;
  position: relative;
}
@media screen and (max-width: 420px) {
  .comment-info .right-side {
    margin-bottom: 0.5rem !important;
  }
}

.comment-text {
  margin-bottom: 4px;
  overflow: hidden;
}

.comment-time {
  margin-left: 8px;
  margin-right: 8px;
  text-decoration: none;
  vertical-align: middle;
}

.comment-username {
  font-weight: 700;
  text-decoration: none;
  vertical-align: middle;
}
.comment-username .id-box {
  display: inline;
}

.variative-display:hover {
  opacity: 0.75;
}
.variative-display:hover .show-it-info {
  display: none;
  opacity: 0;
}
.variative-display:hover .hide-it-info {
  display: inline;
  opacity: 1;
}

.show-it-info {
  display: inline;
  opacity: 1;
}

.hide-it-info {
  display: none;
  text-align: center;
  opacity: 0;
  transition: opacity 0.4s ease-in-out;
}
