.custom-container {
  width: 100%;
  padding-right: 24px;
  padding-left: 24px;
  margin-right: auto;
  margin-left: auto;
}

.my-grid {
  display: grid;
  grid-template-columns: 1fr 166px;
}

.avatar.xxl {
  width: 150px;
  min-width: 150px;
  height: 150px;
}

.card--portfolio__card-body {
  display: flex;
  height: 100%;
  flex-direction: column;
}
.card--portfolio__card-text {
  flex-grow: 1;
}

.card__image--logo {
  width: 50px;
}

.form-note {
  margin-bottom: 0.3rem;
}
.form-note code {
  padding: 2px 4px;
  font-size: 70%;
  color: #c7254e;
  background-color: #f9f2f4;
  border-radius: 4px;
}

.wrapper {
  padding: 35px;
  position: relative;
  overflow-x: hidden;
  background: #fff;
  border-radius: 13px;
}
.wrapper .icon {
  position: absolute;
  top: 0;
  height: 100%;
  width: 120px;
  display: flex;
  align-items: center;
}
.wrapper .icon:first-child {
  left: 0;
  display: none;
  background: linear-gradient(90deg, #fff 70%, transparent);
}
.wrapper .icon:first-child i {
  margin-left: 15px;
}
.wrapper .icon:last-child {
  right: 0;
  justify-content: flex-end;
  background: linear-gradient(-90deg, #fff 70%, transparent);
}
.wrapper .icon:last-child i {
  margin-right: 15px;
}
.wrapper .icon i {
  width: 55px;
  height: 55px;
  cursor: pointer;
  font-size: 1.2rem;
  text-align: center;
  line-height: 55px;
  border-radius: 50%;
}
.wrapper .icon i:hover {
  background: #efedfb;
}
.wrapper .tabs-box {
  display: flex;
  gap: 12px;
  list-style: none;
  overflow-x: hidden;
  scroll-behavior: smooth;
}
.wrapper .tabs-box.dragging {
  scroll-behavior: auto;
  cursor: grab;
}
.wrapper .tabs-box.dragging .tab {
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  pointer-events: none;
}
.wrapper .tabs-box .tab {
  cursor: pointer;
  font-size: 1rem;
  white-space: nowrap;
  background: #f5f4fd;
  padding: 13px 20px;
  border-radius: 30px;
  border: 1px solid #d8d5f2;
}
.wrapper .tabs-box .tab.active {
  color: #fff;
  background: #5372F0;
}
