﻿.modal {
  align-items: center;
  display: flex;
  justify-content: center;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(92, 185, 231, 0.7);
  transition: all 0.4s;
  visibility: hidden;
  opacity: 0;
}
.content-modal {
  position: absolute;
  background: white;
  width: 50%;
  max-width:600px;
  padding: 1em 2em;
  border-radius: 4px;
}
div.tandc {
  margin-top:20px;
  display:block;
  font-size:12px;
  font-weight:normal; 
}

div.tandc a {
  font-weight:bold;
}

.content-modal li {
  font-size: 12px;
  margin-bottom:12px;
}

@media screen and (max-width: 480px) {
  .content-modal {
    width: 95%;
  }
}

.modal:target {
  visibility: visible;
  opacity: 1;
}

.box-close {
  position: absolute;
  top: 0;
  right: 15px;
  color: #fe0606;
  text-decoration: none;
  font-size: 30px;
}