.dropdown1 {
    position: relative;
    display: inline-block;
  }
  
  .dropdown1-content {
    display: none;
    position: absolute;
    background-color: #f1f1f1;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
  }
  
 
  .dropdown1-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    font-size: larger;
  }
  .dropdown1 .fa-angle-up{display: none; font-size: larger;}
  .dropdown1 .fa-angle-down{display: contents; font-size: larger;}
  .dropdown1:hover .fa-angle-up{display:contents;}
  .dropdown1:hover .fa-angle-down{display: none;}
  .dropdown1-content a:hover {background-color: #ddd; color: black;}
  .dropdown1:hover .dropdown1-content {display: block;}
  .required:after {
    content:" *";
    color: red;
  }
  .product-wish {
    position: absolute;
    top: 10%;
    left: 0;
    z-index: 99;
    right: 30px;
    text-align: right;
    padding-top: 0;
  }

  .product-wish .fa {
    color: #cbcbcb;
    font-size: 32px;

  }

  .product-wish .fa:hover {
    color: #ff7007;

  }

  .fill-heart {
    color: #ff7007 !important;
  }
  #wrap {
    
    text-align: center;
}

.btn-slide, .btn-slide2 {
    position: relative;
    display: inline-block;
    height: 50px;
    width: 200px;
    line-height: 50px;
    padding: 0;
    border-radius: 50px;
    background: #fdfdfd;
    border: 2px solid #0099cc;
    margin: 10px;
    transition: .5s;
}

.btn-slide2 {
    border: 2px solid #000000;
}

.btn-slide:hover {
    background-color: #0099cc;
}

.btn-slide2:hover {
    background-color: #000000;
}

.btn-slide:hover span.circle, .btn-slide2:hover span.circle2 {
    left: 100%;
    margin-left: -45px;
    background-color: #fdfdfd;
    color: #0099cc;
}

.btn-slide2:hover span.circle2 {
    color: #000000;
}

.btn-slide:hover span.title, .btn-slide2:hover span.title2 {
    left: 40px;
    opacity: 0;
}

.btn-slide:hover span.title-hover, .btn-slide2:hover span.title-hover2 {
    opacity: 1;
    left: 40px;
}

.btn-slide span.circle, .btn-slide2 span.circle2 {
    display: block;
    background-color: #0099cc;
    color: #fff;
    position: absolute;
    float: left;
    margin: 5px;
    line-height: 42px;
    height: 40px;
    width: 40px;
    top: 0;
    left: 0;
    transition: .5s;
    border-radius: 50%;
}

.btn-slide2 span.circle2 {
    background-color: #000000;
}

.btn-slide span.title,
  .btn-slide span.title-hover, .btn-slide2 span.title2,
  .btn-slide2 span.title-hover2 {
    position: absolute;
    left: 90px;
    text-align: center;
    margin: 0 auto;
    font-size: 16px;
    font-weight: bold;
    color: #30abd5;
    transition: .5s;
}

.btn-slide2 span.title2,
  .btn-slide2 span.title-hover2 {
    color: #000000;
    left: 80px;
  }

.btn-slide span.title-hover, .btn-slide2 span.title-hover2 {
    left: 80px;
    opacity: 0;
}

.btn-slide span.title-hover, .btn-slide2 span.title-hover2 {
    color: #fff;
}
#tshirt-designer {
  width: 100%;
  height: 600px;
  margin: 0;
}

#tshirt-canvas {
  width: 100px;
  height: 80%;
  background-color: white;
  border: 1px solid black;
}

#tshirt-controls {
  width: 100%;
  height: 20%;
  background-color: gray;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.image-upload {
  border: 1px dashed #ccc;
  width: 300px;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.image-upload input[type="file"] {
  display: none;
}
.image-upload-label {
  cursor: pointer;
  font-size: 30px;
  font-weight: 100;
  color: #777;
}

.popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 10000;
}

.popup-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #f9f9f9;
  padding: 20px;
  border: 1px solid #ccc;
  border-radius: 5px;
  z-index: 10000;
}

.close {
  color: #aaa;
  float: right;
  font-size: 20px;
  font-weight: bold;
  cursor: pointer;
}

.close:hover {
  color: black;
}

button {
  margin-top: 20px;
}

/* Style the file upload input */
input[type="file"] {
  display: none;
}

.loading-container {
  margin-top: 20px;
  text-align: center;
}

.loading-spinner {
  border: 8px solid #f3f3f3; /* Light grey */
  border-top: 8px solid #0095AB; /* Your primary color */
  border-radius: 50%;
  width: 40px;
  height: 40px;
  animation: spin 1s linear infinite; /* Animation */
  margin: 0 auto; /* Center the spinner */
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.loading-container p {
  margin-top: 10px;
  font-weight: bold;
}
.checkmark-container {
  text-align: center;
  margin-top: 20px;
  font-size: 24px; /* Adjust size as needed */
  color: #28a745; /* Green color for the checkmark */
}

.checkmark {
  font-size: 50px; /* Size of the checkmark */
}
