.open {
    cursor: pointer;
}

.pop-up {
    display: none;
}

.overlay {
    display: none;
}

.pop-up:checked+.overlay {
    display: flex;
    z-index: 9999;
    background-color: #00000070;
    position: fixed;
    width: 100%;
    height: 100vh;
    top: 0;
    left: 0;
}

.window {
    width: 100vw;
    max-width: 640px;
    max-height: 400px;
    background-color: #ffffff;
    border-radius: 6px;
    display: flex;
    flex-direction: column;
	font-size: 16px;
	text-align: center;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
/* 
.window p {
  margin-top: 0px;
} */

.window .category-news{
  background: #00B6BC;
  border-radius: 14px;
  color: #FFF;
  text-align: center;
  display: inline-block;
  padding: 5px 20px;
  font-size: 18px;
  line-height: 1;
}

.window .category-maintenance{
  background: #C33261;
  border-radius: 14px;
  color: #FFF;
  text-align: center;
  display: inline-block;
  padding: 5px 20px;
  font-size: 18px;
  line-height: 1;
}


.text {
    font-size: 18px;
    margin: 10px;
}

.description-title {
    margin-top: 20px;
}

.description-icon {
    margin-top: 0px;
}

.description-text {
    flex: 1;
    overflow: auto;
    text-align: start;
    padding-right: 10px;
}

.close {
	background-color: #ffffff;
    cursor: pointer;
    position: absolute;
    top: 4px;
    right: 4px;
    font-size: 20px;
	border: none;
}

label.close-btn {
	cursor: pointer;
    position: absolute;
    top: -15px;
    right: -14px;
    background:#ffffff;
    color: aliceblue;
    width: 26px;
    height: 26px;
	font-size:16px;
    text-align: center;
    border-radius: 50px;
    line-height: 1.6;
}

.fa-times-circle {
    position: relative;
    top: -25px;
    left: -11.5px;
    font-size: 1.9em;
    color:#091263;
	font-weight: bold;
}