.sc-widget {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  /* width: 100%; */
  min-width:300px;
  left:50%;
  transform: translateX(-50%);
  border-radius:20px;
  position: fixed;
  z-index: 1000;
  bottom: 20px;
  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: rgba(65, 187, 196, 0.7); */
  background: #41BBC4CC;
  /* filter: blur(5px); */
  padding: 15px 50px;
  -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: 15px;
    -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% - 240px); */
  padding: 0 15px;
  font: inherit;
  line-height: 1.3;
  color: #E1C29A;
}

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

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

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

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

.sc-widget__button {
  width: 120px;
  /* width: 200px; */
  font: inherit;
  border-radius: 10px;
  border:1px solid #E1C29A;
  height: 40px;
  background: #41BBC4;
  text-transform: uppercase;
  color: #E1C29A;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  cursor: pointer;
  padding:0;
  text-align:center;
}

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