.sc-widget {
  z-index: 5;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
  position: fixed;
  z-index: 1000;
  bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #fffae2;
  padding: 15px;
  -webkit-box-shadow: 0 -3px 10px rgba(0, 0, 0, 0.1);
          box-shadow: 0 -3px 10px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .sc-widget {
    padding-bottom: 60px;
 
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: column;
            flex-flow: column;
  }
}

.sc-widget * {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.sc-widget__img {
  width: 40px;
}

@media (max-width: 768px) {
  .sc-widget__img {
    margin-bottom: 15px;
  }
}

.sc-widget__text {
  width: calc(100% - 320px);
  padding: 0 15px; 
  line-height: 1.3;
  color: #000;
}

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

.sc-widget__text a {
  color: #000;
  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;
  height: 40px;
  border: none;
  text-transform: uppercase;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  cursor: pointer;
  border: 1px solid #BE9769;
  background: transparent;
}

@media (max-width: 768px) {
  .sc-widget__button{
    position: absolute;
    left: 50%;
    margin-left: -130px;
    bottom: 20px;
  }
}

.sc-widget__button.button--cancel{
  margin-left: 10px;
}

@media (max-width: 768px) {
  .sc-widget__button.button--cancel{
    margin-left: 0px;
    margin-top: 0px;
    position: absolute;
    left: 50%;
    margin-left: 10px;
    bottom: 20px;
  }
}

.sc-widget__button:hover {
  background: #BE9769;
  color: #fff;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
/*# sourceMappingURL=smart-cookies.css.map */