

.triggers {
  display: flex;
  align-items: center;
  margin-top: 60px;
  flex-direction: column;
}

.triggers label {
  cursor: pointer;
  height: 43px;
  padding: 0 30px;
  display: flex;
  align-items: center;
  font-weight: bold;
  color: #3a4047;
  border: 2px solid #3a4047;
  border-radius: 21.5px;
  box-sizing: border-box;
  margin-top: 15px;
}

/** START POPUP CSS **/

.vcms__popup-check {
  display: none;
}

.vcms__popup {
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(255, 255, 255, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: visibility 0s, opacity 0.25s ease-in-out;
  transition-delay: 0.65s, 0.2s;
}

.vcms__popup-check:checked + .vcms__popup {
  opacity: 1;
  visibility: visible;
  transition-delay: 0s, 0s;
	z-index: 9999;
}

.vcms__popup .inner {
  width: auto;
  max-width: 95%;
  border-radius: 20px;
  box-shadow: 0 9px 23px 0 rgba(0, 0, 0, 0.15);
  background-color: #fff;
  box-sizing: border-box;
  margin-bottom: 100px;
  opacity: 0;
  transition: margin-bottom 0.4s cubic-bezier(0.42, 0.72, 0.37, 1.31),
    opacity 0.25s ease-in-out;
  transition-delay: 0s, 0s;
}

.vcms__popup-check:checked + .vcms__popup .inner {
  transition-delay: 0.15s, 0.15s;
  margin-bottom: 0;
  opacity: 1;
}

.vcms__popup .inner .header {
  padding: 20px 25px 13px;
  font-size: 28px;
  color: #fff;
  background-color: #4d555e;
  border-top-right-radius: 20px;
  border-top-left-radius: 20px;
}

.vcms__popup .inner .txt {
  line-height: 27px;
  padding: 20px 25px;
  max-height: calc(100vh - 260px);
  overflow: auto;
}
.vcms__popup .inner img{
  height: 400px;
}

.vcms__popup .inner .footer {
  box-sizing: border-box;
  padding: 15px 25px 20px;
  border-top: 1px solid #efefef;
  display: flex;
  justify-content: flex-end;
  background-color: rgba(255, 255, 255, 0.6);
  border-bottom-right-radius: 20px;
  border-bottom-left-radius: 20px;
}

.vcms__popup .inner .footer .btn {
  height: 43px;
  width: 156px;
  flex-grow: 0;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #3a4047;
  text-decoration: none;
  font-size: 13px;
  border: 2px solid #3a4047;
  border-radius: 21.5px;
  box-sizing: border-box;
  font-weight: 600;
  transition: all 0.15s ease-in-out;
}

.vcms__popup .inner .footer .close {
  height: 43px;
  width: 126px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #bcbcbc;
  text-decoration: none;
  font-size: 13px;
  border: 2px solid #dadada;
  border-radius: 21.5px;
  margin-left: 7px;
  box-sizing: border-box;
  font-weight: 600;
  cursor: pointer;
  flex-grow: 0;
  flex-shrink: 0;
  transition: all 0.15s ease-in-out;
}

.vcms__popup .inner .footer .btn:hover,
.vcms__popup .inner .footer .close:hover {
  background-color: #3a4047;
  color: #fff;
  border: 2px solid #3a4047;
}