.popup-social * {
    font-family: "Montserrat", "robotomedium";
}
.popup-social {
	top: 50px;
    z-index: 9999;
    display: block;
    position: fixed;
    min-width: 200px;
    -webkit-box-shadow: 4px 4px 8px 0px rgba(34, 60, 80, 0.2);
    -moz-box-shadow: 4px 4px 8px 0px rgba(34, 60, 80, 0.2);
    box-shadow: 4px 4px 8px 0px rgba(34, 60, 80, 0.2);
    background-color: #fefefe;
}
.popup-social.closed, .popup-social.blocked {
    left: -100%;
    display: none;
    transition: left 1s 1s;
}.popup-social.opened {
    left: 0;
    display: block;
    transition: left 1s 1s;
}
.popup-social__container {
    padding: 10px 15px;
}

.popup-social__title {
    text-align: center;
    font-size: 18px;
    color: #000;
}

.popup-social__description {
    margin-top: 20px;
    margin-bottom: 20px;
}

.popup-social__list {
    margin: 0 auto;
    display: flex;
    justify-content: center;
}

.popup-social__item {
    margin-right: 7px;
}
.popup-social__item:last-child {
    margin-right: 0px;
}
.icon-vk {
    background-image: url(./img/vk.png);
}
.icon-te {
    background-image: url(./img/telegram.png);
}
.icon-wa {
    background-image: url(./img/instagram.png);
}
.icon-social {
    width: 50px;
    height: 50px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}
.popup-social__cancel form {
    margin-bottom: 0px;
}
.show-popup-button__cancel {
	 text-align: right;
     
}
.show-popup-cancel {
    border: none;
    background: inherit;
    text-transform: uppercase;
	color: #aaa;
    cursor: pointer;
    transition: 0.7s ease-in;
}
.show-popup-cancel:hover {
	color: rgb(128, 23, 23);
}