table.shop_cart tbody tr td.color {
  width: 212px;
}
.color_cart_all {
  display: flex;
  margin: 0 10px;
  align-items: center;
  position: relative;
}
.color_cart_all .mob_icon {
  display: none;
}
.color_cart_all .color_cart {
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: center;
  border-radius: 5px;
  padding: 7px 15px;
  background: radial-gradient(93.5% 339.76% at 4% 40%,rgba(252,122,29,0.1) 0%,rgba(238,10,120,0.1) 100%);
  cursor: pointer;
  border: 1px solid transparent;
  transition: 0.3s all;
}
.color_cart_all .name {
  font-weight: 400;
  font-size: 14px;
  line-height: 140%;
  color: #333;
}
.color_cart_item {
  position: relative;
  display: flex;
  gap: 10px;
  align-items: center;
}
.color_cart_item > img {
  width: 40px;
  height: 40px;
  border-radius: 100%;
  border: 1px solid #f2f2f2;
}
.color_cart_item .color_cart {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  border: 1px solid #f2f2f2;
  border-radius: 5px;
  padding: 5px 5px 5px 15px;
  cursor: pointer;
  transition: 0.3s all;
}
.color_cart_item .name {
  width: 85px;
  white-space: nowrap;
  font-weight: 400;
  font-size: 14px;
  line-height: 140%;
  color: #333;
  overflow: hidden;
  text-overflow: ellipsis;
}
.color_drop-list {
  display: none;
  position: absolute;
  left: 0;
  top: 110%;
  border: 1px solid #f2f2f2;
  box-shadow: 0 10px 20px 0 rgba(0,0,0,0.1);
  border-radius: 7px;
  max-height: 489px;
  z-index: 100;
  background: #fff;
  overflow: auto;
  width: 345px;
}
.color_drop-list.open {
  display: flex;
  flex-direction: column;
}
.color_drop-list p {
  font-size: 16px;
  margin: 0;
  padding: 20px;
}
.color_drop-list .color_group_name {
  border-bottom: 1px solid #f2f2f2;
  padding: 10px 10px 5px 10px;
  font-weight: 400;
  font-size: 14px;
  line-height: 140%;
  color: #333;
  height: 35px;
  opacity: 0.5;
  text-align: left;
}
.color_drop-list .color_item {
  display: flex;
  align-items: center;
  border-bottom: 1px solid #f2f2f2;
  padding: 5px 10px;
  transition: 0.3s all;
  cursor: pointer;
  text-align: left;
  gap: 10px;
}
.color_drop-list .color_item img {
  width: 40px;
  height: 40px;
}
.color_drop-list .color_item.active {
  background: radial-gradient(93.5% 339.76% at 4% 40%,rgba(252,122,29,0.1) 0%,rgba(238,10,120,0.1) 100%);
  pointer-events: none;
}
.color_drop-list .color_name {
  font-weight: 400;
  font-size: 14px;
  line-height: 140%;
  color: #333;
}
.close_color_drop-list {
  display: none;
}
table.shop_cart tbody tr.error_color {
  border: 2px solid #ff0000;
}
.find_color_error {
  display: none;
}
.find_color_error.show {
  display: block;
}
.find_color_error .open_color_error_log {
  position: absolute;
  right: -10px;
  top: -10px;
  cursor: pointer;
  transition: 0.3s all;
  z-index: 2;
}
.find_color_error .close_color_error {
  margin-left: auto;
  display: flex;
  cursor: pointer;
  margin-bottom: 5px;
  transition: 0.3s all;
}
.find_color_error .color_error_modal {
  display: none;
  position: absolute;
  background: #fff;
  border-radius: 5px;
  padding: 5px 5px 20px 15px;
  top: -40px;
  left: 110%;
  z-index: 100;
  width: 337px;
  box-shadow: 0 0 10px 0 rgba(0,0,0,0.32);
  flex-direction: column;
  align-items: flex-start;
}
.find_color_error .color_error_modal.open {
  display: flex;
}
.find_color_error .color_error_modal span {
  opacity: 0.5;
  font-weight: 400;
  font-size: 12px;
  line-height: 140%;
  color: #333;
  margin-bottom: 10px;
}
.find_color_error .color_error_modal ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 0;
}
.find_color_error .color_error_modal li {
  text-align: left;
  font-weight: 400;
  font-size: 14px;
  line-height: 140%;
  color: #ff0000;
  margin: 0;
}
.find_color_error .title {
  text-align: left;
  font-weight: 500;
  font-size: 16px;
  line-height: 140%;
  color: #333;
  margin-bottom: 15px;
}
@media (hover: hover) {
  .find_color_error .close_color_error:hover,
  .find_color_error .open_color_error_log:hover {
    opacity: 0.7;
  }
  .color_drop-list .color_item:hover {
    background: #f2f2f2;
  }
  .color_cart_item .color_cart:hover {
    background: #f2f2f2;
  }
  .color_cart_all .color_cart:hover {
    border-color: #FF0000;
  }
}
@media screen and (max-width: 1250px) {
  .color_cart_item > img {
    display: none;
  }
}
@media screen and (max-width: 900px) {
  .color_cart_item > img {
    display: block;
  }
  table.shop_cart tbody tr td.color {
    width: 100%;
  }
  .color_cart_item {
    width: 265px;
  }
  .color_cart_item .name {
    width: 160px;
  }
  .color_cart .pc_icon {
    display: none;
  }
  .color_cart .mob_icon {
    display: block;
  }
  .color_cart_all .color_cart {
    gap: 10px;
    margin-bottom: 10px;
  }
  .color_cart_all .color_drop-list {
    position: fixed;
    width: 100vw;
    height: 100vh;
    z-index: 1000;
    padding: 50px 40px 100px 40px;
    top: 0;
    left: 0;
    max-height: 100vh;
  }
  .close_color_drop-list {
    position: absolute;
    top: 10px;
    display: block;
    right: 20px;
  }
}
@media screen and (max-width: 600px) {
  .find_color_error .color_error_modal {
    left: 0;
    top: 15px;
  }
}
@media screen and (max-width: 500px) {
  .color_drop-list {
    width: 265px;
  }
  .color_cart_all .color_drop-list {
    padding: 40px 20px 80px 20px;
  }
  .color_drop-list .color_name {
    font-size: 12px;
  }
  .color_drop-list .color_item img {
    height: 30px;
    width: 30px;
  }
  .color_drop-list {
    max-height: 250px;
  }
}
@media screen and (max-width: 400px) {
  .color_drop-list {
    width: auto;
  }
  .color_cart_item {
    width: 100%;
  }
  .color_cart_item .name {
    width: 135px;
  }
}
@media screen and (max-width: 360px) {
  .color_cart_item .name {
    width: 100px;
  }
  .find_color_error .color_error_modal {
    width: 300px;
  }
}