body {
  font-family: sans-serif;
  margin: 0;
  padding: 15px;
  /*  background-color: #121214;*/
  background-color: #f0f0f5
}

.wrap {
  width: 100%;
  max-width: 320px;
  margin: 0 auto;
  font-family: "Josefin Slab", serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
}

.profile {
  text-align: center;
  color: #000000;
}

.photo {
  border-radius: 50%;
  max-width: 80px;
}

.profile_name {
  font-weight: bold;
  display: block;
}

.at {
  font-size: 13px;
}

.links cnt cnts {
  margin: 14px 0;
  margin-right: 13px;
}

a:link {
  color: #ccc;
}

/* visited link */
a:visited {
  color: #ccc;
}

/* mouse over link */
a:hover {
  color: #7140bd
}

/* selected link */
a:active {
  color: #8EBF42
}

.links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.links ul li {
  margin: 14px 0;
}

.link {
  padding: 14px;
  display: block;
  background-color: black;
  max-height: 18px;
  text-align: center;
  text-decoration: none;
  border-radius: 4px;
  transition: ease all 0.3s;
  color: #FFF;
}

.link:hover {
  opacity: 0.9;
}

.clinka {
  padding: 14px;
  display: inline-block;
  float: left;
  overflow: hidden;
  background-color: #9466FF;
  text-decoration: none;
  border-radius: 4px;
  transition: ease all 0.3s;
  color: #FFF;
  max-width: 153px;
  max-height: 18px;
}

.clinka:hover {
  opacity: 0.9;
}


.mleft {
  float: left;
  padding: 14px;
  display: block;
  color: #9466FF;
  max-height: 18px;
  text-decoration: none;
  border-radius: 4px;
  transition: ease all 0.3s;
  
}

.mright {
  float: right;
  padding: 14px;
  display: block;
  color: #9466FF;
  max-height: 18px;
  text-decoration: none;
  border-radius: 4px;
  transition: ease all 0.3s;
  
}

.clear-both {
  clear: both;
}

.ahlink {
  padding: 14px;
  display: none;
  background-color: #9466FF;
  max-height: 18px;
  text-align: center;
  text-decoration: none;
  border-radius: 4px;
  transition: ease all 0.3s;
  color: #FFF;
}

.ahlink:hover {
  opacity: 0.9;
}

.mhlink {
  padding: 14px;
  display: none;
  background-color: #9466FF;
  max-height: 18px;
  text-align: center;
  text-decoration: none;
  border-radius: 4px;
  transition: ease all 0.3s;
  color: #FFF;
}

.mhlink:hover {
  opacity: 0.9;
}


.card {
  padding: 10px;
  background-color: #FFF;
  border-radius: 4px;
}

.card h3 {
  margin: 0;
  color: #202024;
}

.card p {
  margin: 5px 0;
  font-size: 13px;
  color: #202024;
  
}

.post-list {
  padding-top: 14px;
  display: grid;
  grid-template-columns: repeat(3, minmax(100px, 293px));
  justify-content: center;
  grid-gap: 28px;
}

.post {
  cursor: pointer;
  position: relative;
  display: block;
}

.post-image {
  margin: 0;
}

.post-image img {
  width: 105px;
	height: 105px;
  /*vertical-align: top;*/
  object-fit: cover;
}

.post-overlay {
  background: rgba(0, 0, 0, .4);
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  display: none;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
}

.post:hover .post-overlay {
  display: flex;
}

.post-link,
.post-rbt {
  width: 80px;
  margin: 5px;
  font-weight: bold;
  text-align: center;
  display: inline-block;
}

@media screen and (max-width: 768px) {
  .post-list {
    grid-gap: 3px;
  }
}

#idcard {
  /* background: rgb(47, 47, 47);
  background: -moz-linear-gradient(90deg, rgba(47, 47, 47, 1) 69%, rgba(47, 47, 47, 0) 100%);
  background: -webkit-linear-gradient(90deg, rgba(47, 47, 47, 1) 69%, rgba(47, 47, 47, 0) 100%);
  background: linear-gradient(90deg, rgba(47, 47, 47, 1) 69%, rgba(47, 47, 47, 0) 100%); */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#2f2f2f", endColorstr="#2f2f2f", GradientType=1);
  display: inline-flex;
  border-radius: 10rem 0 0 10rem;
  font-family: "Josefin Slab", serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
}

.avat {
  display: block;
  border-radius: 50%;
  box-sizing: border-box;
  /*background-color: #000;*/
  /*border: 5px solid;*/
  background: linear-gradient(90deg, rgba(46, 47, 47, 1) 0%, rgba(69, 76, 95, 1) 72%, rgba(69, 89, 95, 0) 100%);
  padding: 3px;
  box-sizing: border-box;
}

.avat::before {
  border-radius: 50%;
  content: '';
  background-image: linear-gradient(to bottom, #3acfd5 0%, #3a4ed5 100%);
  top: -2px;
  left: -2px;
  bottom: -2px;
  right: -2px;
  position: absolute;
  z-index: -1;
  
}

td,
th {
  padding: .1rem;
}

th {
  text-align: left;
  color: #999;
}

td {
  text-align: left;
}

.srd a:link {
  color: #7140bd;
  text-decoration: none;
}