﻿@charset "UTF-8";
/* CSS Document */
/* dd__popup.css by Duncan Dwelle 2021 */
.ddp__box {
  position: inherit;
  display: inline; 
  font-size: 1em; 
  z-index: 1;
	margin-bottom: 10px;
  background-color: transparent;
}
.ddp__box p {
  margin: 6px 0 010px 0;
}
.ddp__box, .ddp__button {
  position: inline;
  margin-left: 5px;
  color: #E956F5;
  cursor: pointer;
  transition: all 0.3s ease-out;
  font-size:80%;
}
.ddp__box, ddp__button a{
  color: #FFF;
}
.ddp__overlay {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: transparent; 
  visibility: hidden;
}
.ddp__overlay:target {
  visibility: visible;
  opacity: 0.9;
}
.ddp__popup {
  position: absolute;
  top: 65px;
  left: 15px;
  padding: 15px;
  z-index: 99999950;
  background-color: rgba(107,107,107, 0.75); 
  color: #F0F0F0; 
  border-radius: 5px;
  width: 85%;
  transition: all 20ms ease-in-out;
}
.ddp__popup a{
	margin-bottom: 8px;
  color: #F1DA65;
  text-decoration: none;  
}
.ddp__popup .ddp__close {
  position: absolute;
  top: 10px;
  right: 25px;
  transition: all 20ms;
  font-weight: bold;
  text-decoration: none;
  }
div.ddp__popup .ddp__content {
	display: block;
	height: 200%;
  overflow: auto;
  font-size:80%;
	margin-bottom: 10px;
}
div.ddp__popup .ddp__content p {
	margin-bottom: 1.25em;
}
div.ddp__popup.ddp__content p a {
	color: #F1DA65;
  text-decoration: none;
}
/* eof */