@import url('https://fonts.googleapis.com/css?family=Blinker&display=swap');

* {
  padding: 0;
  margin: 0;
  font-family: 'Blinker', sans-serif;
}

.modal-header{
    height: 68px;
    background:rgb(0, 183, 255);
    overflow: hidden;
    border-radius: 5px 5px 0 0;
    box-shadow: 0 2px 3px 0 rgb(0,0,0,.2);
}

.modal-footer{
    height: 60px;
    background: rgb(200, 213, 218);
    overflow: hidden;
    border-radius: 0 0 5px 5px;
    box-shadow: 0 2px 3px 0 rgb(0,0,0,.2);
}

.modal-window {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 999;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition: 400ms;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: .3s ease-in;
}

.modal-window .display {
  width: 400px;
  word-break: break-all;
  background: rgb(255, 255, 255);
  border-radius: 5px 5px 5px 5px;
  position: relative;
  box-shadow: 0 2px 12px 0 rgb(0,0,0,.4);
  transition: .3s ease-in;
}

.modal-window:target {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}

.modal-close:hover {
  color: black;
}
.modal-body{
    text-align: center;
}
.modal-header h2{
    color: white;
    padding-left: 32px;
    font-weight: normal;
    margin-top: 10px;
}

.modal-btn {
    top: -12px;
    right: 25px;
    border-radius: 3px;
    color: #ffffff;
    padding: 8px 10px;
    font-size: 12px;
    cursor: pointer;
    background: #19B3D3;
    box-shadow: 0 2px 12px 0 rgb(0,0,0,.4);
}
.modal-btn:hover{
    background: #0292af;
    color: white;
    transition: .5s;
    text-decoration: none;
}

.modal-grid{
    width: 400px;
    display: flex;
    flex-wrap: wrap;
  }

.modal-colstyle{
  flex: 1 1 100px;
  text-align: right;
  padding-right: 20px;
}

