.good-share-modal {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  width: 90%;
  max-width: 550px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
  padding: 50px 30px 30px;
  border-radius: 4px;
  background-color: #fff;
  -ms-transform: translate(-50%, -50%);
      transform: translate(-50%, -50%);
  visibility: hidden;
}

.good-share-modal-open .good-share-modal {
  display: block;
  animation: fade 0.2s;
  visibility: visible;
  z-index: 1000;
}
.good-share-modal-open .good-share-overlay {
  position: fixed;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.95);
  transition: all 0.2s;
  animation: fade 0.2s;
  z-index: 900;
}

.close-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 30px;
  height: 30px;
  background: transparent;
  border: 0;
  transition: opacity 0.2s;
  cursor: pointer;
}
.close-btn:hover {
  opacity: 0.5;
}
.close-btn:after {
  content: "";
  position: absolute;
  top: 2px;
  left: 14px;
  height: 25px;
  width: 2px;
  background-color: #848484;
}
.close-btn:before {
  content: "";
  position: absolute;
  top: 2px;
  left: 14px;
  height: 25px;
  width: 2px;
  background-color: #848484;
  -ms-transform: rotate(45deg);
      transform: rotate(45deg);
}
.close-btn:after {
  -ms-transform: rotate(-45deg);
      transform: rotate(-45deg);
}

.good-share-modal-buttons {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
  justify-content: space-around;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.good-share-modal-buttons .btn {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  height: 42px;
  background: transparent;
  border: 1px solid #848484;
  border-radius: 3px;
  padding: 10px 25px;
  margin-bottom: 20px;
  font-size: 0.8em;
  transition: border 0.2s;
  cursor: pointer;
}
.good-share-modal-buttons .btn:hover {
  border-color: #000;
}
.good-share-modal-buttons .btn svg {
  width: 20px;
  margin-right: 8px;
  pointer-events: none;
}

.facebook-btn svg path {
  fill: #0077f9;
}

.twitter-btn svg path {
  fill: #1da1f2;
}

.email-btn svg rect {
  fill: #d14836;
  stroke: #fff;
}
.email-btn svg path {
  stroke: #fff;
}

@keyframes fade {
  0% {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@media only screen and (max-width: 400px) {
  .good-share-modal-buttons .btn {
    width: 100%;
  }
}

/*# sourceMappingURL=good-share.css.map */