﻿.popup-table-cell > .popup{display: block; border: 7px solid #ddd;}


.popup-container a,
.popup-container a:hover,
.popup-container a:active,
.popup-container a:visited {
  color: #009688;
  font-weight: 500;
  text-decoration: none;
}

/*::-webkit-scrollbar {
  width: 12px;
}

::-webkit-scrollbar-track {
  background-color: rgba(0, 0, 0, 0);
}

::-webkit-scrollbar-thumb {
  background-color: rgba(0, 0, 0, 0.1);
  background-clip: padding-box;
  border: solid rgba(0, 0, 0, 0);
  border-width: 2px 3px 2px 3px;
}

::-webkit-scrollbar-thumb:hover {
  background-color: rgba(0, 0, 0, 0.15);
}*/

.live-button, .livprop_overlay{
        z-index: 999 !important;
}
.popup-container {
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.6);
  -webkit-transition: opacity 0.1s linear;
  transition: opacity 0.1s linear;
  overflow-y: hidden;
   font-family: 'Open Sans', sans-serif;
  color: #545454;
}

.popup-container.hide {
  opacity: 0;
  pointer-events: none;
}

.popup-table {
  position: absolute;
  top: 0;
  left: 0;
  display: table;
  table-layout: fixed;
  width: 100%;
  height: 100%;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
}

.popup-container.hide .popup-table {
  opacity: 0;
  pointer-events: none;
  -webkit-transform: translateY(6px);
  transform: translateY(6px);
}

.popup-table-cell {
  display: table-cell;
  vertical-align: middle;
  box-sizing: border-box;
}

.popup {
  position: relative;
  margin: auto;
 /* max-width: 720px;*/
  max-width: 35%;
  /* a regular height must be set here, or nothing works */
 
  overflow-y: auto;
  overflow: hidden;
 padding: 20px 0 17px 0;
  background-color: #fafafa;
  border-radius: 2px;
  box-sizing: border-box;
  font-size: 100%;
  color: #303030;
  box-shadow: 0 10px 40px 4px rgba(0, 0, 0, 0.3);
}

.popup .title {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
 height: 31px;
    min-width: 200px;
    line-height: 31px;
  box-sizing: border-box;
  padding: 0 12px;
  -webkit-transition: background-color 0.1s linear;
  transition: background-color 0.1s linear;
  font-weight: 500;
  font-size: 1.05em;
  border-bottom: 1px solid #EAEAEA;
     background-color: rgb(38, 83, 174);
    color: #fff;
  border-radius: 2px 2px 0 0;
  -webkit-tap-highlight-color: rgba(255, 255, 255, 0);
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
      font-size: 1.8em;
	      text-align: center;
		   
	
}

.popup .content {
  width: 100%;
  min-width: 200px;
  height: 100%;
  overflow: hidden;
  overflow-y: auto;
  box-sizing: border-box;
  padding: 0px 10px 0px;
  -webkit-overflow-scrolling: touch;
  border:0;
  border-style:none;
}

.popup .content p{
         margin-bottom: 0px; 
    font-size: 13px;
    line-height: 18px;
/*    font-weight: bold;*/
letter-spacing: normal;
}

.popup .subtitle {
  color: #009688;
}

.popup .text {
  box-sizing: border-box;
  padding: 12px;
  line-height: 0.5em;
}

.popup-container .buttons {
  padding: 10px 10px;
  position: absolute;
  bottom: 0;
  width: 100%;
  text-align: right;
  font-weight: 500;
  box-sizing: border-box;
  border-top: 1px solid #EAEAEA;
  background-color: #FAFAFA;
  border-radius: 0 0 2px 2px;
}

.popup-container .button {
 /* display: inline-block;*/
  box-sizing: border-box;
  text-align: center;
  min-width: 60px;
     height: 40px;
    line-height: 40px;
    padding: 0 15px;
  color: #ffffff;
  background:rgb(38, 83, 174);
  cursor: pointer;
  border-radius: 3px;
  -webkit-transition: background-color 0.1s linear;
  transition: background-color 0.1s linear;
  -webkit-tap-highlight-color: rgba(255, 255, 255, 0);
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
    margin: 0 auto!important;
    text-align: center!important;
    float: none;
    width: 10%;
}

.popup-container .button:hover {
  background-color: rgb(38, 83, 179);
}

.popup-container .button:active {
  background-color: rgb(38, 83, 171);
}




@media all and (max-width: 1024px)
{
	
	.popup-container .button {
    width: 50%;
}

}

@media all and (max-width: 640px)
{
	
	.popup-container .button {
    width: 40%;
}

}


@media all and (max-width: 1024px)
{
    .popup {
        max-width: 90% !important;
    }

}