/* ==========================================================
   INFORMAČNÍ PROUŽEK
   U Zlatého retrívra
   ========================================================== */

.site-msg {
  position: relative !important;
  top: auto !important;
  right: auto !important;
  bottom: auto !important;
  left: auto !important;

  display: block !important;
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
  padding: 10px 45px !important;

  background: linear-gradient(
    90deg,
    #84B512 0%,
    #6f9f10 50%,
    #4f780b 100%
  ) !important;

  color: #fff !important;
  text-align: center !important;
  font-size: 15px !important;
  line-height: 1.4 !important;
  font-weight: 600 !important;

  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  z-index: 9999 !important;
}

.site-msg a {
  color: #fff !important;
  font-weight: 700 !important;
  text-decoration: underline !important;
}

.site-msg a:hover {
  color: #fff !important;
  text-decoration: none !important;
}

.site-msg .close {
  color: #fff !important;
  opacity: 1 !important;
}

@media (max-width: 767px) {
  .site-msg {
    padding: 9px 38px 9px 12px !important;
    font-size: 13px !important;
  }
}

/* ==========================================================
   U Zlatého retrívra
   Informační proužek
   Finální verze
   ========================================================== */

/* Celý proužek */
.site-msg {
    position: relative !important;
    top: auto !important;
    right: auto !important;
    bottom: auto !important;
    left: auto !important;

    display: block !important;
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
    padding: 10px 45px !important;

    background: linear-gradient(
        90deg,
        #FAAC34 0%,
        #FBC15B 45%,
        #F7D184 100%
    ) !important;

    color: #2B2B2B !important;
    text-align: center !important;
    font-size: 15px !important;
    line-height: 1.4 !important;
    font-weight: 600 !important;

    border: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    z-index: 9999 !important;
}

/* Tlačítko */
.site-msg a {
    display: inline-block;
    margin-left: 12px;
    padding: 7px 18px;

    background: #3F5F14;
    color: #FFFFFF !important;

    font-weight: 700 !important;
    text-decoration: none !important;

    border-radius: 999px;
    border: 1px solid rgba(255,255,255,.35);

    box-shadow: 0 2px 6px rgba(0,0,0,.18);

    transition: all .25s ease;
}

/* Hover tlačítka */
.site-msg a:hover {
    background: #2F4A0F;
    color: #FFFFFF !important;
    text-decoration: none !important;

    transform: translateY(-1px);

    box-shadow: 0 5px 12px rgba(0,0,0,.25);
}

/* Zavírací křížek */
.site-msg .close,
.site-msg button {
    color: #2B2B2B !important;
}

/* Mobil */
@media (max-width: 767px) {

    .site-msg {
        padding: 9px 15px !important;
        font-size: 14px !important;
    }

    .site-msg a {
        display: block;
        width: fit-content;
        margin: 10px auto 0;
    }
}