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

.woocommerce-mini-cart-item .quantity {
  display: none;
}
.cut-onfigurator-main {
  margin-top: 30px;
  display: flex;
}
/* The Modal (background) */
.modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 999999; /* Sit on top */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%;
  height: auto;
  overflow: auto; /* Enable scroll if needed */
  background-color: rgb(0, 0, 0); /* Fallback color */
  background-color: rgba(0, 0, 0, 0.4); /* Black w/ opacity */
}

/* Modal Content/Box */

/* The Close Button */
.close {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}

.cut-configurator-iOrder-meta {
  display: flex;
  flex-direction: column;
}

.cut_configurator_item dl.variation {
  font-size: 14px;
  line-height: 20px;
  padding-left: 0px;
  margin-top: 3px;
}

.cut_configurator_item dl.variation dd {
  margin-bottom: 2px;
}

.cut_configurator_item dl.variation p {
  font-size: 14px;
  line-height: 20px;
}

.woocommerce-cart-form__contents .product-name dt.variation- {
  display: none !important;
}

#app {
  width: 100vw;
  height: 90vh;
}

/*Loader*/

.appLoaderWrapper {
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.7);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.appLoader {
  display: block;
  position: relative;
  /*left: 50%;*/
  /*top: 50%;*/
  width: 150px;
  height: 150px;
  margin: -75px 0 0 -75px;
  border-radius: 50%;
  border: 3px solid transparent;
  border-top-color: #001352;
  -webkit-animation: spin 2s linear infinite;
  animation: spin 2s linear infinite;
}
.appLoader:before {
  content: '';
  position: absolute;
  top: 5px;
  left: 5px;
  right: 5px;
  bottom: 5px;
  border-radius: 50%;
  border: 3px solid transparent;
  border-top-color: #576db5;
  -webkit-animation: spin 3s linear infinite;
  animation: spin 3s linear infinite;
}
.appLoader:after {
  content: '';
  position: absolute;
  top: 15px;
  left: 15px;
  right: 15px;
  bottom: 15px;
  border-radius: 50%;
  border: 3px solid transparent;
  border-top-color: #002ab2;
  -webkit-animation: spin 1.5s linear infinite;
  animation: spin 1.5s linear infinite;
}

.appLg {
  position: relative;
  display: flex;
  line-height: 10px;
  height: 21px;
  color: #001352;
  padding: 5px;
  width: 150px;
  /*margin-left: -75px;*/
  margin: 10px 0 0 -75px;
  white-space: nowrap;
}

@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
