<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/*
     _______   ___  _ _________  _____             __  _
    /  _   /  / _ \(_) ___/ __/ / ___/______ ___ _/ /_(_)  _____
   /  //  /  / // / / /__/ _/  / /__/ __/ -_) _ `/ __/ / |/ / -_)
  /______/  /____/_/\___/___/  \___/_/  \__/\_,_/\__/_/|___/\__/

  Author: Jonny Rix
  Company: DiCE Creative Ltd - www.dicecreative.com
  Version: 1.0  -  Date: 2nd June 2016

*/
.dce--overlay {
  z-index: 20;
}
.dce--overlay {
  background: rgba(125, 108, 98, 0.4);
  position: fixed;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  display: none;
  overflow-y: scroll;
}
.dce--overlay .dialog {
  background: #fff;
  border-radius: 0px;
  width: 400px;
  text-align: center;
  padding: 20px;
  position: absolute;
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
@media only screen and (max-width: 750px) {
  .dce--overlay .dialog {
    width: 80%;
  }
}
.dce--overlay .dialog .formErrors {
  margin: 20px auto;
  width: 80%;
  list-style: none;
  display: inline-block;
}
.dce--overlay .dialog .formErrors li {
  color: #7d6c62;
  margin-right: 5px;
}
.dce--overlay .dialog .formErrors li:not(:last-child):after {
  content: ', ';
}

.dce--overlay .dialog input[type="button"] {
  background: #7d6c62;
  border-radius: 0px;
  border: 1px solid #7d6c62;
  color: white;
  padding: 10px;
  width: 100px;
  margin-top: 20px;
}
.dce--overlay .dialog input[type="button"]:hover {
  background: #fff;
  color: #7d6c62;
  border: 1px solid #7d6c62;
  cursor: pointer;
}

.cookieNotice {
  position: fixed;
  z-index: 100;
  bottom: 0px;
  min-height: 60px;
  width: 100%;
  background: rgba(125, 108, 98, 0.9);
  border-top: 1px solid #aaa;
	-webkit-transition:	1s ease opacity;
	-moz-transition: 	1s ease opacity;
	-ms-transition: 	1s ease opacity;
	-o-transition: 		1s ease opacity;
	transition: 		1s ease opacity; 
}
@media only screen and (max-width: 1100px) {
  .cookieNotice {
    box-sizing: border-box;
    padding: 20px;
  }
}
#dce_cookieNotice p {
  width: auto;
  max-width: 1100px;
  float: none;
  display: block;
  margin-right: auto;
  margin-left: auto;
  padding-left: 0;
  padding-right: 0;
  box-sizing: border-box;
  position: relative;
  color: #fff;
  padding: 18px;
  padding-left: 30px;
  padding-right: 90px;
}
#dce_cookieNotice p::before,
#dce_cookieNotice p::after {
  content: '';
  display: table;
}
#dce_cookieNotice p::after {
  clear: both;
}
@media only screen and (max-width: 1100px) {
  #dce_cookieNotice p {
    padding-right: 100px;
  }
}
@media only screen and (max-width: 500px) {
  #dce_cookieNotice p {
    padding-top: 5px;
    padding-right: 30px;
  }
}
#dce_cookieNotice p::before {
  content: url("/images/dice.notice.svg");
  position: absolute;
  width: 20px;
  height: 20px;
  margin-top: 0px;
  left: 0px;
  overflow: hidden;
  max-width: 20px;
  max-height: 20px;
  display: inline-block;
}
#dce_cookieNotice p::before img {
  width: 20px;
  height: 20px;
}
#dce_cookieNotice a {
	color: inherit;
}
#dce_cookieNotice input[type="button"] {
  position: absolute;
  float: right;
  top: 12px;
  right: 0px;
  width: auto;
  box-sizing: border-box;
  padding: 6px 20px 6px 20px;
  border: 1px solid #aaa;
  border-radius: 0px;
  text-align: center;
  background: none;
  color: #fff;
  text-align: center;
  font-weight: 500;
  font-size: 16px;
  cursor: pointer;
}
@media only screen and (max-width: 500px) {
  #dce_cookieNotice input[type="button"] {
    position: relative;
    display: block;
    clear: both;
    float: none;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
  #dce_cookieNotice input[type="button"]:first-child {
    margin-left: auto;
  }
  #dce_cookieNotice input[type="button"]:last-child {
    margin-right: auto;
  }
}
#dce_cookieNotice input[type="button"]:hover {
  color: #fff;
  background: rgba(255,255,255,0.2);
}</pre></body></html>