/*----------------------------------------------------------------------------------------------------------------------
  Alerts
----------------------------------------------------------------------------------------------------------------------*/
.subify-alert {
  border-radius: 10px;
  color: #202223;
  padding: 15px 15px 15px 50px;
  position: relative;
}

.subify-alert .subify-alert-icon {
  left: 15px;
  position: absolute;
  top: 20px;
}

.subify-alert-warning {
  background-color: #fff5ea;
  border: 1px solid #e1b878;
}

/*----------------------------------------------------------------------------------------------------------------------
  Loader
----------------------------------------------------------------------------------------------------------------------*/
.subify-loader-primary-bg-color {
  background-color: rgb(var(--loadingBackgroundColor, 224, 226, 235));
}

.subify-loader-secondary-bg-color {
  background-color: rgb(var(--loadingTextColor, 208, 211, 226));
}

.subify-text-placeholder {
  border-radius: 15px;
  height: 15px;
}

.subify-text-placeholder.with-circle {
  position: relative;
  left: 30px;
}

.subify-text-placeholder.with-circle:before {
  background-color: inherit;
  border-radius: 20px;
  content: "";
  height: 20px;
  left: -30px;
  position: absolute;
  top: 50%;
  width: 20px;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}

.subify-section-placeholder {
  border-radius: 10px;
  padding: 30px;
  margin-bottom: 15px;
}

.subify-secondary-section-placeholder {
  border-radius: 10px;
  padding: 20px 30px;
}

.subify-widget-loader {
  -webkit-animation: widgetLoaderAnimation linear 0 1s;
  -webkit-animation-iteration-count: infinite;
  -moz-animation: widgetLoaderAnimation linear 0 1s;
  -moz-animation-iteration-count: infinite;
  -o-animation: widgetLoaderAnimation linear 0 1s;
  -o-animation-iteration-count: infinite;
  animation: widgetLoaderAnimation linear 0 1s;
  animation-iteration-count: infinite;
}

@-moz-keyframes widgetLoaderAnimation {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.6;
  }
  100% {
    opacity: 1;
  }
}

@-webkit-keyframes widgetLoaderAnimation {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.6;
  }
  100% {
    opacity: 1;
  }
}

@-o-keyframes widgetLoaderAnimation {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.6;
  }
  100% {
    opacity: 1;
  }
}

@keyframes widgetLoaderAnimation {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.6;
  }
  100% {
    opacity: 1;
  }
}
