/* Loader */
.loader-circle {
  display: inline-block;
  width: 16px;
  height: 16px;
  border: 2px solid #fff;
  border-top: 2px solid transparent;
  border-radius: 50%;
  animation: tqSpinLoader 0.8s linear infinite;
  vertical-align: middle;
}

@keyframes tqSpinLoader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/* Floating Action Icons */
.floating-iconss {
  position: fixed;
  top: 80%;
  left: 10px;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 1050;
}

.social-floating-right {
  position: fixed;
  top: 80%;
  right: 10px;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 1050;
}

.icons {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background-color: #ffffff;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: tqIconBounce 2s infinite;
  overflow: hidden;
  padding: 10px;
  border: 1px solid #e0e0e0;
  cursor: pointer;
}

.icons img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.icons:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

/* Social Icons */
.social-icons {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background-color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: tqIconBounce 2s infinite;
  overflow: hidden;
  cursor: pointer;
  padding: 8px;
}

.social-icons:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
}

.social-icons img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

@keyframes tqIconBounce {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-5px);
  }
}

/* Email Modal Custom CSS */
.tq-email-modal {
  z-index: 99999;
}

.tq-email-modal-content {
  border-radius: 15px;
  animation: tqEmailFadeInUp 0.5s ease;
  height: 100% !important;
  position: relative;
  z-index: 998;
  border: 0;
  overflow: hidden;
}

.tq-email-modal-header {
  background: linear-gradient(45deg, #02427c, #155bd5);
  color: #ffffff;
  border-bottom: 0;
}

.tq-email-modal-title {
  color: #ffffff !important;
  font-weight: 600;
}

.tq-email-modal-body {
  padding: 25px;
}

.tq-email-input,
.tq-email-select,
.tq-email-textarea {
  border-radius: 8px;
  font-size: 16px;
  border: 1px solid #ccc;
  transition: border 0.3s ease, box-shadow 0.3s ease;
}

.tq-email-textarea {
  height: 150px;
}

.tq-email-input:focus,
.tq-email-select:focus,
.tq-email-textarea:focus {
  border-color: #02427c;
  box-shadow: 0 0 5px rgba(2, 66, 124, 0.25);
  outline: none;
}

.tq-email-submit-btn {
  border-radius: 8px;
  font-weight: 700;
  background: #02427c;
  border-color: #02427c;
  transition: all 0.3s ease;
}

.tq-email-submit-btn:hover {
  background: #01315c;
  border-color: #01315c;
}

@keyframes tqEmailFadeInUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Mobile Responsive */
@media (max-width: 575px) {
  .floating-iconss {
    left: 8px;
    gap: 10px;
  }

  .social-floating-right {
    right: 8px;
    gap: 10px;
  }

  .icons,
  .social-icons {
    width: 40px;
    height: 40px;
  }

  .tq-email-modal-body {
    padding: 20px;
  }
}