/*--------------------------------------------------------------
# Cookie Noties
--------------------------------------------------------------*/
#wt-box {
  display: block;
  position: fixed;
  z-index: 999;
  border: 1px solid #fff;
  border-radius: 10px;
  box-shadow: 1px 0px 1px 0px;
}
#wt-box .cookie-msg-title {
  padding: 5px 20px;
  font-size: 15px;
}
#wt-box .cookies-content {
  padding: 5px 20px 10px;
  font-size: 14px;
  line-height: 18px;
  margin-top: 0;
}
#wt-box a.wt-button-accept{
  display: inline-block;
  border: 1px solid #fff;
  padding: 6px 15px 4px;
  text-decoration: none;
  margin: 0 0 20px 20px;
  font-size: 15px;
}
#wt-box a.wt-button-close{
  display: inline-block;
  border: 1px solid #fff;
  padding: 6px 15px 4px;
  text-decoration: none;
  font-size: 15px;
}
#wt-box a.wt-button-readmore{
  border: 1px solid #fff;
  padding: 6px 15px 4px;
  text-decoration: none;
  font-size: 15px;
}

/*set position for bottom*/
#wt-box.bottom-right-position{
  right: 0;
  bottom: 0;
}
#wt-box.bottom-left-position{
  left: 0;
  bottom: 0;
}

/*set position for top*/
#wt-box.top-right-position{
  right: 0;
  top: 0;
}
#wt-box.top-left-position{
  left: 0;
  top: 0;
}

/*set type of cookie notice*/
#wt-box.wt-bar{
  width: 100%;
  left:0;
}
#wt-box.wt-popup{
 width: 35%; 
}

/* Media Query for Mobile*/
@media only screen and (max-width: 767px) {
 #wt-box.wt-popup{
   width: 100%; 
 }
}

/* Media Query for Desktops and laptops (1280px and up) */
@media only screen and (min-width: 1280px) {
 #wt-box.wt-bar .cookies-content {
  width: 75%;
  float: left;
}
 #wt-box.wt-bar a.wt-button-accept{
  margin: 0 0 20px 5px;
 }
}

/* Media Query for iPads */
@media only screen and (min-device-width : 768px) and (max-device-width : 1024px){
#wt-box.wt-popup {
    width: 40%;
}
}

