.main-container {
  align-items: center;
  display: flex;
  justify-content: center;
  flex-direction: column;
  margin: auto;
  max-width: 1024px;
  width: 100%;
  padding-top: 50px;
}

.profil-container {
  max-width: 530px;
  width: 100%;
  align-items: center;
  display: flex;
  justify-content: center;
  flex-direction: column;
  margin: auto;
  padding: 0px 10px;
}

.profile-image {
  border-radius: 75px;
  height: 140px;
  width: 140px;
  margin-bottom: 16px;
}

.data-container {
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 4px;
  margin-top: 24px;
  opacity: 1;
  padding: 24px 16px;
  position: relative;
  transition: all 0.2s ease-in-out;
  width: 100%;
}
.no-border {
  border: none;
}
.title-name {
  left: 0;
  position: absolute;
  top: -14px;
  width: 100%;
  align-items: center;
  justify-content: center;
  display: flex;
  flex-direction: row;
}
.influencer-name {
  background: #fff;
  color: #333;
  font-family: Para Supreme Normal, serif;
  font-weight: 700;
  justify-content: center;
  letter-spacing: 0.6px;
  padding: 0 12px;
  align-items: center;
  display: flex;
  flex-direction: row;
  font-size: 20px;
}
.influencer-description {
  color: #333;
  font-size: 14px;
  font-weight: 400;
  margin: 0;
  text-align: center;
}
.influencer-social {
  align-items: flex-start;
  background: #fff;
  bottom: -8px;
  margin-top: 12px;
  padding: 0 12px;
  position: absolute;
  display: flex;
  flex-direction: row;
  left: 50%;
  transform: translateX(-50%);
}
.links {
  margin-right: 6px;
}
.links svg {
  fill: #2c2c2c;
}
.svg-socialmedia {
  width: 18px;
  height: 18px;
  fill: white;
  margin-right: 5px;
}
.tab-container {
  align-items: center;
  justify-content: center;
  display: flex;
  flex-direction: row;
}
.group-tab {
  margin: 40px 0px;
  display: flex;
  flex-direction: row;
}
.tab {
  border-bottom: 2px solid transparent;
  color: #333;
  cursor: pointer;
  font-family: Karla, DM Sans, sans-serif;
  font-weight: 700;
  letter-spacing: 0.1em;
  position: relative;
  text-transform: uppercase;
  transition: all 0.2s ease-in-out;
  white-space: nowrap;
  align-items: center;
  display: flex;
  flex-direction: row;
  font-size: 13px;
  margin: 8px;
  padding: 2px 4px 6px;
}
.tab.active {
  border-bottom: 2px solid #333;
  color: #1f1f1f;
}

.article-group {
  align-items: center;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}

/****************/
p{
  margin: 0;
}
.box {
  height: 250px;
  width: 200px;
  padding: 10px;
  overflow: hidden;
}

.intobox {
  background-color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 100%;
  height: 100%;
}

.boxhover {
  display: none;
  -webkit-user-select: none;
  /* Safari */
  -ms-user-select: none;
  /* IE 10 and IE 11 */
  user-select: none;
  /* Standard syntax */
}

.intobox:hover .boxhover {
  display: unset;
  background-color: #0c0c0e66;
  width: 100%;
  height: 100%;
  position: absolute;
  cursor: pointer;
}

.box-img-container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.box-img {
  max-width: 95%;
  max-height: calc(250px - 80px);
}

.box-img-text {
  letter-spacing: 0.47px;
  font-family: Karla, DM Sans, sans-serif;
  font-weight: 400;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  font-size: 0.85rem;
  padding: 0 5px;
  text-align: center;
  margin-top: 5px;
}

.icon-cercle {
  width: 50px;
  height: 50px;
  border: none;
  color: black;
  border-radius: 50%;
  float: right;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  stroke: #ededed;
}

.icon-cercle:hover {
  stroke: #fff;
}

.boxcontent {
  display: inline-block;
  margin-top: 70px;
}

.name {
  width: 150px;
  margin: auto;
  padding-bottom: 3px;
}

.btnview {
  background: #181818;
  border: none;
  color: white;
  border-radius: 10px;
  width: 120px;
  height: 25px;
  text-align: center;
  transition: width 0.3s;
  font-size: 13px;
  box-shadow: none;
  white-space: nowrap;
  -webkit-user-select: none;
  /* Safari */
  -ms-user-select: none;
  /* IE 10 and IE 11 */
  user-select: none;
  /* Standard syntax */
}

.btnview:hover {
  width: 140px;
  transition: width 0.3s;
}

.btnview:focus {
  outline: none;
}

.imagezoomed {
  position: fixed;
  width: 100vw;
  height: 100vh;
  text-align: center;
  justify-content: center;
  align-items: center;
  background: #00000047;
  z-index: 2;
  flex-flow: column;
  display: none;
  top: 0px;
}

#iamgezoom {
  max-width: 80%;
  max-height: 80%;
}

.btnclose {
  position: absolute;
  background: transparent;
  border: none;
  width: 100%;
  height: 35px;
  text-align: right;
  top: 5px;
  right: 5px;
}

.btnclose svg {
  width: 25px;
  height: 25px;
  fill: #323232;
}

.btnclose:focus {
  outline: none;
}

/*****************/
.wishlist-container {
  align-items: center;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
.infl-button {
  border: 1px solid #181818;
  padding: 6px 20px;
  border-radius: 16px;
  color: #3c3c3c;
  font-family: Roboto, Ghaitsa, sans-serif;
  font-size: 14px;
  font-weight: 400;
  margin: 6px;
  cursor: pointer;
  white-space: nowrap;
  display: inline-block;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.wishlistgroup {
  align-items: center;
  display: flex;
  justify-content: center;
  flex-direction: row;
  flex-wrap: wrap;
  margin: 40px 0px;
}

.is_selected {
  background-color: #EC1C1D;
  color: white;
  cursor: default;
  border: 1px solid #EC1C1D;
  pointer-events: none;
}

.no_article {
  color: #8d8d8d;
  text-align: center;
}

.without-img {
  align-items: center;
  display: flex;
  justify-content: center;
  flex-direction: column;
}



/* css loader */

.loadercontainer {
  background-color: white;
  z-index: 2;
  position: relative;
  height: 180px;
  width: 180px;
  display: none;
}

.loaderdiv {
  position: absolute;
  content: "";
  left: 50%;
  top: 50%;
  transform: translate(-100%, -240%);
  font-size: 64px;
}

heart {
  animation: heart 2.5s cubic-bezier(0.75, 0, 0.5, 1) infinite normal;
  top: 50%;
  content: "";
  left: 50%;
  position: absolute;
}

.heartL {
  animation: heartL 2.5s cubic-bezier(0.75, 0, 0.5, 1) infinite normal;
  width: 1em;
  height: 1em;
  border: 1px solid #333333;
  background-color: #333333;
  content: "";
  position: absolute;
  display: block;
  transform: translate(-29px, -28px);
  border-radius: 100%;
}

.heartR {
  animation: heartR 2.5s cubic-bezier(0.75, 0, 0.5, 1) infinite normal;
  width: 1em;
  height: 1em;
  border: 1px solid #333333;
  background-color: #333333;
  content: "";
  position: absolute;
  display: block;
  transform: translate(29px, -28px);
  border-radius: 100%;
}

.square {
  animation: square 2.5s cubic-bezier(0.75, 0, 0.5, 1) infinite normal;
  width: 1em;
  height: 1em;
  border: 1px solid #333333;
  background-color: #333333;
  transform: scale(1) rotate(-45deg);
  position: relative;
  display: block;
  content: "";
}

shadow {
  animation: shadow 2.5s cubic-bezier(0.75, 0, 0.5, 1) infinite normal;
  top: 100px;
  left: 50%;
  content: "";
  position: relative;
  display: block;
  bottom: -0.5em;
  width: 1em;
  height: 0.25em;
  border-radius: 50%;
  background-color: #d7d7d7;
  border: 1px solid #d7d7d7;
}


@media only screen and (max-width: 500px) {
  .box {
    height: 265px;
    width: 185px;
  }
  .btnview {
    width: 130px;
    height: 30px;
    font-size: 14px;
  }
  .btnview:hover {
    width: 150px;
  }
}
@media only screen and (max-width: 370px) {
  .box {
    height: 235px;
    width: 155px;
  }
  .btnview {
    width: 90px;
    font-size: 12px;
  }
  
  .btnview:hover {
    width: 100px;
  }
}

@keyframes square {
  50% {
    border-radius: 100%;
    transform: scale(0.5) rotate(-45deg);
  }

  100% {
    transform: scale(1) rotate(-45deg);
  }
}

@keyframes heart {
  50% {
    transform: rotate(360deg);
  }

  100% {
    transform: rotate(720deg);
  }
}

@keyframes heartL {
  60% {
    transform: scale(0.4);
  }
}

@keyframes heartR {
  40% {
    transform: scale(0.4);
  }
}

@keyframes shadow {
  50% {
    transform: scale(0.5);
    border-color: #e4e4e4;
  }
}

/*** 245 175 39  => F5AF27
	0.14 0.14 0.14 => 181818

*/
