/**
 * All of the CSS for your public-facing functionality should be
 * included in this file.
 */

.global-tools {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 30px;
  padding: 30px 0;
}

.tool {
  text-align: center;
  position: relative;
  padding: 20px;
  box-shadow: 0px 2px 6px 0px rgb(0 0 0 / 11%) !important;
  border-radius: 10px;
  color: #3482ff;
  font-size: 1.2em;
  cursor: pointer;
}

.website-list {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 30px;
  padding-top: 30px;
}

.website-item {
  text-align: center;
  position: relative;
  padding: 20px;
  box-shadow: 0px 0px 6px 0px rgb(0 0 0 / 11%) !important;
  border-radius: 10px;
}

.website-item img.mode {
  top: 5px;
  right: 17%;
  position: absolute;
  width: 20px;
}

.wi-title {
  white-space: nowrap;
  display: block;
}

.wi-icon {
  font-size: 3em;
  display: block;
}

.dash-title {
  font-size: 1.2em;
  font-weight: bold;
}

.wi-status {
  position: absolute;
  right: 5px;
  top: 5px;
  padding: 1px 9px;
  font-size: 0.6em;
  color: white;
  border-radius: 15px;
}

.wi-pending {
  background-color: #fc6125;
}

.wi-installing {
  background-color: #006ecf;
}

.wi-active {
  background-color: #00d53c;
}

.wi-inactive {
  background-color: #a70000;
}

.wi-migrated {
  background-color: #008024;
}

.wi-migrating {
  background-color: #ff0062;
}

.pending {
  background-color: #fc6125;
}

.migrated {
  background-color: #00d53c;
}

.website-item .fa-trash {
  position: absolute;
  left: 5px;
  top: 5px;
  color: #ff6666;
  cursor: pointer;
}

button.install-wp {
  border: 1px solid #3482ff;
  padding: 3px 8px;
  cursor: pointer;
  border-radius: 20px;
  font-size: 0.8em;
  background-color: #f1f7ff;
  margin-top: 20px;
  box-shadow: 0px 2px 4px 1px rgb(0 0 0 / 15%);
}

.hosting-tools-header {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 70px;
  box-shadow: 0 4px 8px 0 rgb(0 0 0 / 10%), 0 6px 20px 0 rgb(0 0 0 / 5%);
  padding: 2rem 1rem;
  border-radius: 10px;
}

.hth-left {
  display: flex;
  align-items: center;
  font-size: 1.6em;
  font-weight: bold;
}

.hth-left i {
  margin-right: 20px;
  font-size: 1.8em;
  color: #3f51b5;
}

.hosting-tools-header.notification.error {
  margin-bottom: 30px;
  padding: 1rem;
}

.hosting-tools-header.notification.error .hth-left {
  font-size: 0.9em;
}

.hosting-tools-header.notification.error i.fa.fa-warning {
  color: #f44336;
}

.hosting-tools-header.notification.error a {
  background: #3d417e;
  display: block;
  box-shadow: 0 4px 8px 0 rgb(0 0 0 / 10%), 0 6px 20px 0 rgb(0 0 0 / 5%);
  padding: 0.5rem;
  text-align: center;
  border-radius: 10px;
  color: white;
}

.pie_for_website_size{
    margin: auto;
}

.pie_for_website_size.processing svg circle{
    animation: processing 4s infinite linear !important;  
}

@keyframes processing {
  0% {
      transform: rotate(0deg);
     stroke-dasharray: 300;
      transform-origin: 50%;
  }
  100% {
      transform: rotate(360deg);
       stroke-dasharray: 300;
      transform-origin: 50%;
  }
}