* {
  font-family: Arial, Helvetica, sans-serif;
}
body {
  margin: 0 !important;
}

#fullpage {
  display: none;
  position: fixed;
  z-index: 9999;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
  width: 500px;
  height: 500px;
  background-size: contain;
  box-shadow: 2px 2px 25px #00000047;
  background-repeat: no-repeat no-repeat;
  background-position: center center;
  background-color: black;
}

.free-ship-btn {
    background-color: #038693;
    color: white;
    margin-bottom: 10px;
    width: 500px;
    height: auto;
    white-space: normal;
    line-height: 1.5;
    padding: 10px;
}

.el-header {
    background-color: #038693;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px !important;
    padding: 0 60px;
    position: sticky;
    top: 0;
    z-index: 1;
}
.el-header .logo {
  height: 40px;
}
.el-header a img {
  width: 25px;
  margin-right: 5px;
}
.el-header a {
  text-decoration: none;
  color: #FEBA12;
  font-weight: bold;
  display: flex;
  align-items: center;
}
.el-scrollbar > .el-scrollbar__bar {
  opacity: 1;
}
.el-main {
  background-color: #F1F1F1;
}
.el-main .title{
  text-align: center;
  font-size: 20px;
  color: #444;
  margin-top: 5px;
  margin-bottom: 20px;
}
.el-select-dropdown__wrap {
  max-height: 175px !important;
}
.el-autocomplete-suggestion__wrap {
  max-height: 300px !important;

}
.w-100 {
  width: 100%;
}
label {
  padding: 0 !important;
  color: #444 !important;
  font-weight: 500;
  font-size: 16px;
}
.el-input__prefix {
  left: 0 !important;
}
.el-input--prefix .el-input__inner {
  padding-left: 40px;
}
.prefix-input {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 100%;
}
.prefix-input img {
  height: 16px;
}
.form-wrapper {
  max-width: 500px;
  margin: auto;
  padding: 40px 8%;
  border-radius: 7px;
  background-color: white;
}
.el-form-item {
  margin-bottom: 10px;
}
.btn-submit {
  width: 100%;
  background-color: #FEBA12 !important;
  color: white !important;
}
.img-icon-upload {
  width: 120px;
  height:120px;
  margin: auto
}
.form-upload img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.upload-wrapper {
  text-align: center;
  margin-top: 15px;
  margin-bottom: 15px;
}

.uploaded {
  display: flex;
  justify-content: center;
  align-items: center; 
}
.image-uploaded {
  width: 120px;height:120px;
  position: relative;
  border-radius: 3px;
  overflow: hidden;
  border: 1px solid #ddd;
}
.image-uploaded img{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.image-uploaded .el-button {
  position: absolute;
  right: 5px;
  top: 5px;
}
.breadcrumb {
  background-color: #F1F1F1;
  padding: 10px 60px;
  border-bottom: 1px solid #dedede;
}
.breadcrumb, .breadcrumb a{
  text-decoration: none;
  color: #444;
  font-size: 13px;
}
.el-button.is-disabled {
  opacity: 0.5;
}
.el-select {
  width: 100%;
}
.note-upload {
  font-size:14px;
  font-weight: normal;
  color: #555;
  margin-bottom: 24px;
  margin-top: 0;
}
@media only screen and (max-width: 479px) {
  .img-icon-upload.invisible {
    display: none !important;
  }
}
@media only screen and (max-width: 768px) {
  .el-header {
    padding: 0 20px;
    padding-right: 30px;
  }
  .uploaded {
    grid-template-columns: repeat(auto-fit, calc((100% - 45px) / 3));
  }
  .form-upload img {
    width: 80px;
  }
}
@media only screen and (max-width: 568px) {
  .el-header {
    padding: 0 20px;
  }
  .el-header .logo {
    height: 30px;
  }
  .breadcrumb {
    padding: 10px 20px;
  }
}
.popup {
  display: flex;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  justify-content: center;
  align-items: center;
}
.popup-content {
  background-color: white;
  padding: 20px;
  border-radius: 5px;
  width: 100%;
  height: 600px;
  max-width: 800px;
  position: relative;
  flex-direction: column; /* Đặt hướng của các phần tử con theo cột */
}
.close {
  position: absolute;
  top: 10px;
  right: 10px;
  cursor: pointer;
}

.popup-footer {
  margin-top: 10px; /* Đẩy footer xuống dưới cùng */
  text-align: center; /* Căn phải cho nút */
}

.popup-footer button {
  padding: 10px 15px;
  background-color: #007bff;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.popup-footer button:hover {
  background-color: #0056b3; /* Màu khi hover */
}