.sc-widget {
  box-sizing: border-box;
  position: fixed;
  z-index: 1000;
  left: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  background: #000;
  border-radius: 1.5rem;
  padding: 15px;
  box-shadow: 0 -3px 10px rgba(0, 0, 0, 0.1);
  margin: 0 20px 10px 20px;
}
@media (max-width: 768px) {
  .sc-widget {
    flex-flow: column;
  }
}
@media(max-width: 1920px) {
  .sc-widget {
    margin: 0 10% 10px 10%;
  }
}
.sc-widget * {
  box-sizing: border-box;
}

.sc-widget__text {
  width: calc(100% - 160px);
  padding: 0 15px;
  font: 14px "Open Sans", sans-serif;
  line-height: 1.3;
  color: #ffffff;
}

@media (max-width: 768px) {
  .sc-widget__text {
    margin-bottom: 15px;
    text-align: center;
    width: 100%;
  }
}

.sc-widget__text a {
  color: #654d3b;
  text-decoration: underline;
}

.sc-widget__text a:visited {
  color: #654d3b;
}

.sc-widget__text a:hover {
  -webkit-transition: 0.3s;
  transition: 0.3s;
  color: #f6b778;
}

.sc-widget__button {
  width: 120px;
  font: bold 14px "Open Sans", sans-serif;
  border-radius: 3px;
  height: 40px;
  border: none;
  background: #eef179;
  text-transform: uppercase;
  color: #654d3b;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  cursor: pointer;
}

.sc-widget__button:hover {
  background: #654d3b;
  color: #fff;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}