.pzp-popup-info .pzp-window {
  transition: opacity .5s ease-out;
  position: fixed;
  display: none;
  bottom: 25px;
  right: 80px;
  background-color: var(--main-color);
  z-index: 100;
  padding: 45px;
  border-radius: 10px;
  flex-direction: column;
  box-shadow: 0 0 5px rgba(0,0,0,.25);
  max-width: 274px;
}

.pzp-popup-info.active .pzp-window {
  display: flex;
}

.pzp-popup-info .pzp-window > * {
  width: 100%;
  text-align: center;
}

.pzp-window .pzp-text {
  margin-bottom: 20px;
  color: #fff;
}

.pzp-window .pzp-button {
  font-size: 20px;
  font-weight: 600;
}

.pzp-window .pzp-button > a {
  color: #fff;
}

.pzp-window .pzp-close-btn {
  position: absolute;
  top: 20px;
  right: 23px;
  font-size: 18px;
  cursor: pointer;
  width: auto;
  background-color: #fff;
  border-radius: 25px;
  padding: 7px 8px 9px 8px;
  color: var(--main-color);
  line-height: 10px;
  font-weight: 600;
}


@media screen and (max-width: 991px){
	.pzp-popup-info .pzp-window {
		padding: 20px;
	}
	.pzp-popup-info .pzp-window .pzp-button {
		font-size: 18px;
	}
	.pzp-window .pzp-close-btn {
		top: 5px;
    	right: 5px;
	}
}

@media screen and (max-width: 767px){
	.pzp-popup-info.active {
		width: 100%;
		display: flex;
		justify-content: center;
	}
	
	.pzp-popup-info .pzp-window {
		right: inherit;
	}
}