  *{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: sans-serif;
}
::selection{
  background: #bef4d2;
}
.share-modal-container{
  position: absolute;
  top: -100%;
  left: 50%;
  transform: translate(-50%,-50%);
  background: #fff;
  padding: 25px;
  width: 100%;
  border-radius: 15px;
  max-width: 380px;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease;
  box-shadow: 0 .5rem 3rem rgba(0,0,0,.5);
}
.share-modal-container .menu{
  display: flex;
  justify-content: space-between;
}
.menu .text{
  font-size: 22px;
  font-weight: 600;
}
.menu .close{
  width: 30px;
  height: 30px;
  background: #ecf0f1;
  text-align: center;
  line-height: 30px;
  border-radius: 50px;
  color: #95a5a6;
  cursor: pointer;
}
.link{
  margin: 20px 0;
}
.link span{
  font-size: 18px;
}
.link .icons{
  margin: 0 20px;
}
.link .icons{
  display: inline-block;
  width: 50px;
  height: 50px;
  border: 1px solid #95a5a6;
  border-radius: 50%;
  text-align: center;
  line-height: 50px;
  margin: 10px;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}
.links .icons i.fa-facebook-f{
  color: #4267B2;
}
.links .icons i.fa-twitter{
  color: #1DA1F2;
}
.links .icons i.fa-instagram{
  color: #FD1D1D;
}
.links .icons i.fa-whatsapp{
  color: #25D366;
}
.links .icons i.fa-linkedin{
  color: #0077B5;
}
.links .icons:nth-child(1):hover{
  background: #4267B2;
}
.links .icons:nth-child(2):hover{
  background: #1DA1F2;
}
.links .icons:nth-child(3):hover{
  background: #FD1D1D;
}
.links .icons:nth-child(4):hover{
  background: #25D366;
}
.links .icons:nth-child(5):hover{
  background: #0077B5;
}
.links .icons:hover i{
  color: #fff;
}
.box p{
  margin-bottom: 10px;
}
.box i.fa-link{
  color: #4267B2;
  padding-right: 10px;
}
.box input{
  max-width: 220px;
  width: 100%;
  height: 32px;
  border: 1px solid #ddd;
  padding: 0 10px;
  outline: none;
  color: #444;
  margin-right: 5px;
}
.box button{
  width: 90px;
  height: 34px;
  position: absolute;
  outline: none;
  border-radius: 5px;
  border: none;
  cursor: pointer;
  background: #3498db;
  font-size: 15px;
  color: #fff;
  transition: all 0.3s ease;
}
.box button:hover{
  background: #4267B2;
}
#pop:checked ~ .share-modal-container{
  top: 50%;
  opacity: 1;
  pointer-events: auto;
}
input[type="checkbox"]{
  display: none;
}
.social-block label {
  margin-left: 5px;
  margin-right: 5px;
}
label>.fas.fa-link{
  position: relative;
  color: #0d784a;
  width: 30px;
  height: 30px;
  border-radius: 50px;
  background-color: #ffd04a;
  margin-left: 5%;
}
label>i.fa-link:before {
  position: absolute;
  top: 6px;
  left: 8px;
}

/* The snackbar - position it at the bottom and in the middle of the screen */
.snackbar {
  visibility: hidden; /* Hidden by default. Visible on click */
  min-width: 250px; /* Set a default minimum width */
  margin-left: -125px; /* Divide value of min-width by 2 */
  background-color: #333; /* Black background color */
  color: #fff; /* White text color */
  text-align: center; /* Centered text */
  border-radius: 2px; /* Rounded borders */
  padding: 16px; /* Padding */
  position: fixed; /* Sit on top of the screen */
  z-index: 1; /* Add a z-index if needed */
  left: 50%; /* Center the snackbar */
  bottom: 30px; /* 30px from the bottom */
}

/* Show the snackbar when clicking on a button (class added with JavaScript) */
.snackbar.show {
  visibility: visible; /* Show the snackbar */
  /* Add animation: Take 0.5 seconds to fade in and out the snackbar.
  However, delay the fade out process for 2.5 seconds */
  -webkit-animation: fadein 0.5s, fadeout 0.5s 2.5s;
  animation: fadein 0.5s, fadeout 0.5s 2.5s;
}

/* Animations to fade the snackbar in and out */
@-webkit-keyframes fadein {
  from {bottom: 0; opacity: 0;}
  to {bottom: 30px; opacity: 1;}
}

@keyframes fadein {
  from {bottom: 0; opacity: 0;}
  to {bottom: 30px; opacity: 1;}
}

@-webkit-keyframes fadeout {
  from {bottom: 30px; opacity: 1;}
  to {bottom: 0; opacity: 0;}
}

@keyframes fadeout {
  from {bottom: 30px; opacity: 1;}
  to {bottom: 0; opacity: 0;}
}
