/* CSS Document */
.popup-wrapper {
	position: relative;
  display: inline-block;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
	}
.ctct-popup-wrapper.ctct-popup-is-visible {
    z-index: 1000000000;
   position: static;
    display: block;
}
.ctct-popup-overlay {
    display: block;
    background-color: rgba(0, 0, 0, 0.5);
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    visibility: hidden;
    opacity: 0;
    transition: visibility 0.5s ease, opacity 0.5s ease;
}
.ctct-popup-wrapper.ctct-popup-is-visible .ctct-popup-inner {
    z-index: 1000000001;
}
.ctct-popup-inner {
    max-height: 100%;
    position: fixed;
    top: 50%;
    left: 50%;
    right: auto;
    bottom: auto;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    min-width: 300px;
    max-width: 620px;
    width: calc(100% - 20px);
    overflow-y: auto;
    overflow-x: hidden;
}
.ctct-popup-content {
    -webkit-transform: scale(0.7);
    -moz-transform: scale(0.7);
    -ms-transform: scale(0.7);
    -o-transform: scale(0.7);
    transform: scale(0.7);
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    opacity: 0;
}
.ctct-popup-wrapper.ctct-popup-is-visible .ctct-popup-content {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
    opacity: 1;
}
.ctct-popup-content onClick.button.ctct-popup-close {
    float: right;
    width: 24px;
    height: 24px;
    margin: 6px;
    cursor: pointer;
    border: none;
    background: transparent;
	visibility: hidden;
    opacity: 0.8;
    -webkit-transition: opacity 0.3s ease;
    -moz-transition: opacity 0.3s ease;
    -ms-transition: opacity 0.3s ease;
    -o-transition: opacity 0.3s ease;
    transition: opacity 0.3s ease;
}
 .popup .show {
  visibility: hidden;
  -webkit-animation: fadeIn 1s;
  animation: fadeIn 1s;
}   
