.wp-container > .model-color-picker {
  position: relative;
  display: flex;
  max-width: 100%;
  padding-top: 50px;
  padding-right: 0;
  padding-bottom: 50px;
  padding-left: 0;
  background-color: var(--wp--preset--color--gray-100, #f5f5f5);
}

.inner-model-color-picker {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-content: space-between;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.model-color-picker__left {
  position: relative;
  display: flex;
  flex: .35;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  height: 100%;
}

.model-color-picker__right {
  position: relative;
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.mcp-right-top {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.mcp-right-bottom {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  margin-top: 40px;
}

.mcp-right-image {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}

.mcp-disclaimer {
  display: inline-flex;
  flex-direction: row;
  flex-wrap: nowrap;
}

.mcp-asterisk {
  margin-right: 5px;
  font-size: 16px;
  font-weight: 400;
  color: color-mix(in srgb, #000000 27%, var(--wp--preset--color--red, #af1e4f));
}

.mcp-after-asterisk {
  color: var(--wp--preset--color--gray-600, #828282);
}

.mcp-brochure {
  font-size: 14px;
  text-decoration: underline;
}

.mcp-left-bottom {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.mcp-right-image img {
  z-index: 1;
  display: none;
  width: 90%;
  opacity: 0%;
}

.mcp-right-bg-text {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  width: 100%;
  font-size: 16vw;
  font-weight: 900;
  color: var(--wp--preset--color--white, #ffffff);
  text-align: center;
}

.mcp-button {
  display: inline-block;
  padding: 10px;
  margin-bottom: 175px;
  font-size: 16px;
  font-style: italic;
  font-weight: 900;
  color: var(--wp--preset--color--white, #ffffff);
  background-color: var(--wp--preset--color--primary-dark, var(--wp--preset--color--primary, #30adc0));
}

.mcp-button:hover {
  color: var(--wp--preset--color--white, #ffffff);
  background-color: color-mix(in srgb, #000000 19%, var(--wp--preset--color--primary-dark, var(--wp--preset--color--primary, #30adc0)));
}

.mcp-right-color {
  display: flex;
  flex-direction: row;
  gap: 25px;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 30px;
  margin-right: 25px;
  color: var(--wp--preset--color--gray-600, #777777);
  text-align: center;
  cursor: pointer;
}

.mcp-right-color-text {
  display: none;
  width: 75px;
  margin: 0;
  font-size: 14px;
  opacity: 0%;
}

.mcp-right-color-circle {
  position: relative;
  width: 24px;
  height: 24px;
  border-radius: 50%;
}

.mcp-right-color-circle.selection-active::after {
  position: relative;
  top: 50%;
  left: 50%;
  display: block;
  width: 40px;
  height: 40px;
  padding: 0;
  margin: 0;
  content: "";
  border-color: var(--wp--preset--color--black, #000000);
  border-style: solid;
  border-width: 2px;
  border-radius: 100%;
  transform: translate(-50%, -50%);
}

.mcp-right-color-circle::before {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 24px;
  height: 12px;
  padding: 0;
  margin: 0;
  content: "";
  background-color: var(--wp--preset--color--black, #000000);
  border-bottom-right-radius: 22px;
  border-bottom-left-radius: 22px;
  transform: translate(-35%, -15.3%) rotate(-45deg);
}

.mcp-vertical-text {
  position: absolute;
  top: 50px;
  right: 0;
  font-size: 12px;
  font-weight: 700;
  color: var(--wp--preset--color--gray-300, #dcdcdc);
  transform: rotate(90deg);
}

.mcp-vertical-text p {
  margin: 10px;
}

.selection-active img {
  position: relative;
  z-index: 1;
  display: block;
  opacity: 100%;
  animation: fade-in-from-none .5s ease-out;
}

.selection-active p {
  position: relative;
  display: block;
  opacity: 100%;
  animation: fade-in-from-none .5s ease-out;
}

@keyframes fade-in-from-none {
  0% {
    opacity: 0;
  }

  1% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@media screen and (max-width: 991px) {
  .inner-model-color-picker {
    flex-direction: column;
  }

  .wp-container > .model-color-picker {
    height: auto;
  }

  .model-color-picker__left {
    flex: 1;
    width: 100%;
  }

  .model-color-picker__right {
    flex: 1;
    width: 100%;
    margin-top: 40px;
  }

  .mcp-button {
    margin-bottom: 0;
  }

  .mcp-left-bottom {
    margin-top: 40px;
  }
}

@media screen and (max-width: 767px) {
  .mcp-vertical-text {
    display: none;
  }
}
