.teeinblue-widget:not(:empty) {
  margin-bottom: 20px;
}
.teeinblue-personalize-button{
  background-color: #1350DE;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  min-height: 50px !important;
  margin: 0;
  padding: 0.3em 1.5em !important;
  border: 1px solid transparent;
  border-radius: 0;
  outline: 0;
  font-size: 1em;
  font-weight: 600;
  line-height: 1.25;
  white-space: nowrap;
  vertical-align: middle;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  cursor: pointer;
}

.teeinblue-modal-active .teeinblue-modal {
  display: flex;
}
.teeinblue-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.teeinblue-modal .teeinblue-modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0.5;
}

.teeinblue-modal .teeinblue-modal-body {
  width: 95%;
  height: 95%;
  z-index: 1;
}

.teeinblue-modal .teeinblue-embed {
  width: 100%;
  height: calc(100% - 40px);
}

.teeinblue-modal .teeiblue-close-button {
  width: 40px;
  height: 40px;
  color: #fff;
  background: #000;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: auto;
  cursor: pointer;
}
iframe#teeinblue-iframe {
  background: #fff;
  border: none;
}
.teeinblue-embed .loader-wrapper {
  width: 100%;
  height: 100%;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}

.teeinblue-embed .loader {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: inline-block;
  border-top: 3px solid #1350DE;
  border-right: 3px solid transparent;
  box-sizing: border-box;
  animation: rotation 1s linear infinite;
}

@keyframes rotation {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
} 
  