.sidebar{
    background-color: lightcoral;
    width: 270px;
    height: max-content;
    padding: 20px;
    border-radius: 20px;
    position: sticky;
    top: 60px;
    border: 1px solid #383838;
    background-color: #1e1e1f;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.sidebar .sidebar-info{
    text-align: center;
}

.sidebar .sidebar-info .name{
    margin-top: 10px;
    font-size: 26px;
    font-weight: 500;
}

.sidebar .avatar{
    position: relative;
    width: 160px;
    height: 160px;
    background: url("../images/avatar.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-color: #363636;
    border-radius: 30px;
    margin: auto;
}

@keyframes shockwave {
  0% {
    transform: scale(0);
    opacity: 1;
  }
  100% {
    transform: scale(3);
    opacity: 0;
  }
}

.sidebar .avatar span{
    display: inline-block;
    position: absolute;
    right: 3px;
    bottom: 3px;
    border-radius: 50%;
    width: 12px;
    height: 12px;
    background-color: #39ff14;
    cursor: pointer;
}

.sidebar .avatar span:before{
    content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  background-color: #39ff14;
  pointer-events: none;
  animation: shockwave 1.5s infinite ease-out;
}

.sidebar .divider{
    width: 100%;
    height: 1px;
    background-color: #383838;
    border-radius: 30%;
    margin-top: 20px;
    margin-bottom: 20px;
}


.sidebar .contacts-list{
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.sidebar .contacts-list .contact-item{
    display: flex;
    gap: 10px;
    width: 100%;
}

.sidebar .contacts-list .contact-item .contact-icon{
    width: 48px;
    height: 48px;
    color: var(--main-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    padding: 10px;
    border-radius: 12px;
    background: linear-gradient(to bottom right, hsl(0, 0%, 25%) 0%, hsla(0, 0%, 25%, 0) 50%);
    border: 1px solid #383838;
}

.sidebar .contacts-list .contact-item .contact-infos h3{
    color: hsla(0, 0%, 84%, 0.7);
    font-size: 12px;
    font-weight: 300;
    text-transform: uppercase;
}

.sidebar .contacts-list .contact-item .contact-infos a{
    color: hsl(0, 0%, 98%);
    font-size: 14px;
    text-decoration: none;
    font-weight: 300;
}

@media (max-width: 1250px) {
    .sidebar{
        position: inherit;
        width: 100%;
    }

}