/*.wrapper {
  position: fixed;
  bottom: 50px;
  left: -370px;
  max-width: 345px;
  width: 100%;
  background: #fff;
  border-radius: 8px;
  padding: 15px 25px 22px;
  transition: left 2.0s ease;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
  z-index: 10;
}
.wrapper.show {
  left: 20px;
}
.wrapper header {
  display: flex;
  align-items: center;
  column-gap: 15px;
}
header i {
  color: #000;
  font-size: 32px;
  animation: blink 1.5s infinite;
}
header h2 {
  color: #000;
  font-weight: 800;
  font-size: 24px;
  padding-top: 10px;
}
@keyframes blink{
0%{   color: red;   }
47%{   color: #000; }
62%{   color: #000; }
97%{   color: red; }
100%{  color: red;   }
}
.wrapper .data {
  margin-top: 16px;
}
.wrapper .data p {
  color: #333;
  font-size: 16px;
}
.data p a {
  color: #000;
  text-decoration: none;
}
.data p a:hover {
  text-decoration: underline;
}
.wrapper .buttons {
  margin-top: 16px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.buttons .button {
  border: none;
  height: 36px;
  color: #fff;
  padding: 1px 0;
  font-weight: 500;
  border-radius: 4px;
  cursor: pointer;
  width: calc(100% / 2 - 40px);
  font-size: 15px;
  transition: all 0.2s ease;
  min-height: 3.5em;
}

.buttons .accept {
	background: #fff;	
}

.buttons .decline {
	background: #000;
}

.buttons .decline:hover {
	border: 1px solid black;
  background-color: #fff;
  color: #000;
}

#declineBtn {
  border: 2px solid #000;
  background-color: #fff;
  color: #000;
}
#declineBtn:hover {
  background-color: #fff;
  color: #000;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@-webkit-keyframes rotate {
  from {
    -webkit-transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
  }
}
.load {
  width: 30px;
  height: 30px;
	margin-left: -200px;
  border: solid 1px #000;
  border-radius: 100%;
  border-right-color: transparent;
  border-bottom-color: transparent;
  -webkit-transition: all 0.5s ease-in;
  -webkit-animation-name: rotate;
  -webkit-animation-duration: 1s;
  -webkit-animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  transition: all 0.5s ease-in;
  animation-name: rotate;
  animation-duration: 1s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}*/

.wrapper {
  position: fixed;
  bottom: 50px;
  left: -380px;
  max-width: 375px;
  width: 100%;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  background: rgba(0, 0, 0, 0.5);
  padding: 15px 25px 22px;
  border: 1px solid white; border-width: 1px 1px 1px 0;
  transition: left 2.0s ease;
  z-index: 10;
}
.wrapper.show {
  left: 0px;
}
.wrapper header {
  display: flex;
  align-items: center;
  column-gap: 15px;
}
header i {
  color: #fff;
  font-size: 32px;
  animation: blink 1.5s infinite;
}
header h2 {
  color: #fff;
  font-weight: 800;
  font-size: 24px;
  padding-top: 10px;
}
@keyframes blink{
0%{   color: red;   }
47%{   color: #000; }
62%{   color: #000; }
97%{   color: red; }
100%{  color: red;   }
}
.wrapper .data {
  margin-top: 16px;
}
.wrapper .data p {
  color: #fff;
  font-size: 16px;
}
.data p a {
  color: #000;
  text-decoration: none;
}
.data p a:hover {
  text-decoration: underline;
}
a {
  color: #BABBBD;
  text-decoration: none;
}
a:hover {
  color: #fff;
  text-decoration: none;
}
a.phlink{
	color:yellow;
}
a.phlink:hover{
	color:white;
}
.wrapper .buttons {
  margin-top: 16px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.buttons .button {
  border: none;
  height: 36px;
  color: #000;
  border-radius: 5px;
  cursor: pointer;
  width: 98px;
  font-size: 15px;
  transition: all 0.2s ease;
  min-height: 3.5em;
  background: #fff;
}

.buttons .decline {	
  animation: buttons 5s;
}

.buttons .decline:hover {
	border: 1px solid white;
	background-color: #000;
  color: #fff;	
}

.buttons .accept {
	background: none;
}

@keyframes buttons {
    0% {opacity: 0}
    80% {opacity: 0}
    100% {opacity: 1}
}