/**
 * cbgooglemaps
 */
.cbQuickGoogleMap .content,
.cbQuickGoogleMap .live .cbgooglemaps-map {
  width: var(--cbgooglemaps-width);
  height: var(--cbgooglemaps-height);
}
.cbQuickGoogleMap .content {
  position: relative;
  margin-top: 2rem;
  overflow: hidden;
  background-color: #ccc;
}
.cbQuickGoogleMap .content .placeholder {
  position: relative;
  width: 100%;
  height: 100%;
}
.cbQuickGoogleMap .content .placeholder .preview {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  overflow: hidden;
}
.cbQuickGoogleMap .content .placeholder img, .cbQuickGoogleMap .content .placeholder svg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cbQuickGoogleMap .content .placeholder .confirmation {
  position: absolute;
  top: 50%;
  bottom: auto;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  text-align: center;
  font-size: 90%;
}
.cbQuickGoogleMap .content .placeholder .confirmation .confirmation-inner {
  max-width: 600px;
  margin: 0 auto;
  padding: 30px;
  background-color: rgba(0, 0, 0, 0.75);
}
.cbQuickGoogleMap .content .placeholder .confirmation .desc,
.cbQuickGoogleMap .content .placeholder .confirmation .desc p,
.cbQuickGoogleMap .content .placeholder .confirmation .desc a {
  color: #fff;
}
.cbQuickGoogleMap .content .placeholder .confirmation .desc p:last-child {
  margin-bottom: 0;
}
.cbQuickGoogleMap .content .placeholder .confirmation .buttons {
  display: block;
  margin: 0 auto;
  margin-top: 1rem;
}
.cbQuickGoogleMap .content .placeholder .confirmation .buttons button{
  padding:.75em;
  border:1px solid #fff;
}
.cbQuickGoogleMap .content .placeholder .confirmation .buttons button:hover{
  background-color: rgb(237,34,37);
  color:#fff;
}
.cbQuickGoogleMap .live {
  display: none;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  position: absolute;
}
.cbQuickGoogleMap.active .placeholder {
  display: none;
}
.cbQuickGoogleMap.active .live {
  display: block;
}