/*----------------------------------------------
	34. Preloader CSS
----------------------------------------------*/
:root {
  --bg-1: #0a3161;
  --bg-2: #0a3161;
  --bg-3: #b31942;
}

#pre-load {
  background: var(--bg-1); /* Old browsers */
  background: -moz-linear-gradient(45deg, var(--bg-1) 8%, var(--bg-2) 100%); /* FF3.6-15 */
  background: -Winkit-linear-gradient(45deg, var(--bg-1) 8%,var(--bg-2) 100%); /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(45deg, var(--bg-1) 8%,var(--bg-2) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  height: 100%;
  width: 100%;
  position: fixed;
  margin-top: 0px;
  top: 0px;
  z-index: 9999;
}

.loader-custom {
  animation: none;
}

.loader-custom .loader-container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 300px;
  height: 300px;
  border: 3px solid #ebebec;
  border-radius: 50%;
  background-color: white;
}

.loader-custom .loader-container:before {
  position: absolute;
  content: "";
  display: block;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 300px;
  height: 300px;
  border-top: 3px solid var(--bg-3);
  border-radius: 50%;
  animation: loaderspin 1.8s infinite ease-in-out;
  -webkit-animation: loaderspin 1.8s infinite ease-in-out;
}

.loader::after {
  background: none;
}

.loader-custom .loader-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 280px;
  text-align: center;
}
.loader-custom .loader-icon img {
  animation: loaderpulse alternate 900ms infinite;
  width: 225px;
}
.woocommerce .quantity input[type="number"]::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */

  color: #363636 !important;
  opacity: 1;
}
.woocommerce .quantity input[type="number"]::-moz-placeholder {
  /* Firefox 19+ */

  color: #363636 !important;
  opacity: 1;
}
.woocommerce .quantity input[type="number"]:-ms-input-placeholder {
  /* IE 10+ */

  color: #363636 !important;
  opacity: 1;
}
.woocommerce .quantity input[type="number"]:-moz-placeholder {
  /* Firefox 18- */

  color: #363636 !important;
  opacity: 1;
}
@keyframes loaderspin {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
@-webkit-keyframes loaderspin {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
@keyframes loaderpulse {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.2);
  }
}