/* **************** FONT **************** */
@import url("https://fonts.googleapis.com/css2?family=Lato&display=swap");

@font-face {
  font-family: IRANSansX;
  font-style: normal;
  font-weight: 400;
  src: url("/font/woff/IRANSansX-Regular.woff") format("woff"),
    url("/font/woff2/IRANSansX-Regular.woff2") format("woff2");
}
/* **************** VARIABLES **************** */
:root {
  /* ********* COLORS ********* */
  --orange-color: #ff8521;
  --light-orange-color: #ff852125;
  --green-color: #00954a;
  --white-color: #ffffff;
  --cold-white-color: #e7e7e7;
  --dark-color: #1f1f1f;
  --gray-color: #cecece;
  --red-color: #c90c0c;
}

/* **************** DEFAULT **************** */
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  direction: rtl;
  font-family: IRANSansX;
}

a {
  text-decoration: none;
}

ul {
  list-style: none;
}

img {
  width: 100%;
  vertical-align: middle;
}

.english-font {
  font-family: "Lato", sans-serif;
}

/* **************** HEADER SECTION **************** */
.header-title {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100px;
  background: #bdc3c7; /* fallback for old browsers */
  background: -webkit-linear-gradient(
    to right,
    #2c3e50,
    #bdc3c7
  ); /* Chrome 10-25, Safari 5.1-6 */
  background: linear-gradient(
    to right,
    #2c3e50,
    #bdc3c7
  ); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
}

.header-title h1 {
    font-size: 22px;
  color: var(--white-color);
}

/* **************** FORM SECTION **************** */
.form-section {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 100px 15px;
}

.form-box {
  width: 100%;
  background-color: var(--white-color);
  border-radius: 10px;
  -webkit-box-shadow: 0px 0px 22px -4px rgba(0, 0, 0, 0.75);
  -moz-box-shadow: 0px 0px 22px -4px rgba(0, 0, 0, 0.75);
  box-shadow: 0px 0px 22px -4px rgba(0, 0, 0, 0.75);
}

.form-box {
  padding: 30px;
}

/* **************** radio box component **************** */
.radio-items-box {
  display: flex;
  flex-direction: column;
  padding: 25px 0px;
  border-bottom: 1px solid var(--gray-color);
}

.title-box {
  display: flex;
  align-items: center;
}

.title-box h2 {
  font-size: 18px;
}

.title-box span {
  color: var(--red-color);
  padding-right: 10px;
}

.radio-items-wrapper {
  padding-top: 30px;
  display: grid;
  row-gap: 20px;
}

.radio-items-wrapper .radio-item {
  width: 200px;
  display: flex;
  align-items: center;
  border-radius: 50px;
  transition: 0.3s;
}

.radio-item label {
  font-size: 14px;
}

.radio-item input {
  margin-left: 10px;
  cursor: pointer;
}

/* **************** radio box component - STEP 1 **************** */
#firstBox-Step1 .radio-items-wrapper {
  grid-template-columns: 1fr 1fr;
}

/* **************** (box1) first radio box component - STEP 2 **************** */
#firstBox-Step2 {
  display: none;
}

#firstBox-Step2 .radio-items-wrapper {
  grid-template-columns: 1fr 1fr 1fr;
}

/* **************** (box2) second radio box component - STEP 2 **************** */
#secondBox-Step2 {
  display: none;
}

#secondBox-Step2 .radio-items-wrapper {
  grid-template-columns: 1fr 1fr 1fr;
}

/* **************** (box3) third radio box component - STEP 2 **************** */
#thirdBox-Step2 {
  display: none;
}

#thirdBox-Step2 .radio-items-wrapper {
  grid-template-columns: 1fr 1fr;
}

/* **************** (box4) fourth radio box component - STEP 2 **************** */
#fourthBox-Step2 {
  display: none;
}

#fourthBox-Step2 .radio-items-wrapper {
  grid-template-columns: 1fr 1fr 1fr;
}

/* **************** (box5) fifth radio box component - STEP 2 **************** */
#fifthBox-Step2 {
  display: none;
}

#fifthBox-Step2 .radio-items-wrapper {
  grid-template-columns: 1fr 1fr 1fr;
}

/* **************** (box6) sixth radio box component - STEP 2 **************** */
#sixthBox-Step2 {
  display: none;
}

#sixthBox-Step2 .radio-items-wrapper {
  grid-template-columns: 1fr 1fr;
}

/* **************** (box7) sixth radio box component - STEP 2 **************** */
#seventhBox-Step2 {
  display: none;
}

#seventhBox-Step2 .radio-items-wrapper {
  grid-template-columns: 1fr 1fr;
}

/* ******* (item1step1 => item1step2 => box ) - STEP 3 ******** */
#Box-1-1-Step3 {
  display: none;
}

#Box-1-1-Step3 .radio-items-wrapper {
  grid-template-columns: 1fr 1fr 1fr;
}

/* ******* (item1step1 => item1step2 => box ) - STEP 3 ******** */
#Box-1-2-Step3 {
  display: none;
}

#Box-1-2-Step3 .radio-items-wrapper {
  grid-template-columns: 1fr 1fr 1fr;
}

/* ******* (item1step1 => item3step2 => box ) - STEP 3 ******** */
#Box-1-3-Step3 {
  display: none;
}

#Box-1-3-Step3 .radio-items-wrapper {
  grid-template-columns: 1fr 1fr 1fr;
}

/* ******* (item1step1 => item4step2 => box ) - STEP 3 ******** */
#Box-1-4-Step3 {
  display: none;
}

#Box-1-4-Step3 .radio-items-wrapper {
  grid-template-columns: 1fr 1fr 1fr;
}

/* ******* (item1step1 => item5step2 => box ) - STEP 3 ******** */
#Box-1-5-Step3 {
  display: none;
}

#Box-1-5-Step3 .radio-items-wrapper {
  grid-template-columns: 1fr 1fr 1fr;
}

/* ******* (item1step1 => item6step2 => box ) - STEP 3 ******** */
#Box-1-6-Step3 {
  display: none;
}

#Box-1-6-Step3 .radio-items-wrapper {
  grid-template-columns: 1fr 1fr 1fr;
}

/* ******* (item1step1 => item7step2 => box ) - STEP 3 ******** */
#Box-1-7-Step3 {
  display: none;
}

#Box-1-7-Step3 .radio-items-wrapper {
  grid-template-columns: 1fr 1fr 1fr;
}

/* ******* (item2step1 => item1step2 => box ) - STEP 3 ******** */
#Box-2-1-Step3 {
  display: none;
}

#Box-2-1-Step3 .radio-items-wrapper {
  grid-template-columns: 1fr 1fr;
}

/* ******* (item2step1 => item2step2 => box ) - STEP 3 ******** */
#Box-2-2-Step3 {
  display: none;
}

#Box-2-2-Step3 .radio-items-wrapper {
  grid-template-columns: 1fr 1fr;
}

#second-Box-2-2-Step3 {
  display: none;
}

#second-Box-2-2-Step3 .radio-items-wrapper {
  grid-template-columns: 1fr 1fr;
}

/* ******* (item2step1 => item3step2 => box ) - STEP 3 ******** */
#Box-2-3-Step3 {
  display: none;
}

#Box-2-3-Step3 .radio-items-wrapper {
  grid-template-columns: 1fr 1fr;
}

/* ******* (item2step1 => item4step2 => box ) - STEP 3 ******** */
#Box-2-4-Step3 {
  display: none;
}

#Box-2-4-Step3 .radio-items-wrapper {
  grid-template-columns: 1fr 1fr;
}

/* ******* (item2step1 => item5step2 => box ) - STEP 3 ******** */
#Box-2-5-Step3 {
  display: none;
}

#Box-2-5-Step3 .radio-items-wrapper {
  grid-template-columns: 1fr 1fr 1fr;
}

/* ******* (item2step1 => item6step2 => box ) - STEP 3 ******** */
#Box-2-6-Step3 {
  display: none;
}
#Box-2-6-Step3 .radio-items-wrapper {
  grid-template-columns: 1fr;
}

/* ******* (item2step1 => item7step2 => box ) - STEP 3 ******** */
#Box-2-7-Step3 {
  display: none;
}

#Box-2-7-Step3 .radio-items-wrapper {
  grid-template-columns: 1fr;
}

/* ******* (item2step1 => item8step2 => box ) - STEP 3 ******** */
#Box-2-8-Step3 {
  display: none;
}

#Box-2-8-Step3 .radio-items-wrapper {
  grid-template-columns: 1fr 1fr;
}

/* ******* (item3step1 => item1step2 => box ) - STEP 3 ******** */
#Box-3-1-Step3 {
  display: none;
}

#Box-3-1-Step3 .radio-items-wrapper {
  grid-template-columns: 1fr 1fr;
}

/* ******* (item3step1 => item2step2 => box ) - STEP 3 ******** */
#Box-3-2-Step3 {
  display: none;
}

#Box-3-2-Step3 .radio-items-wrapper {
  grid-template-columns: 1fr 1fr 1fr;
}

/* ******* (item3step1 => item3step2 => box ) - STEP 3 ******** */
#Box-3-3-Step3 {
  display: none;
}

#Box-3-3-Step3 .radio-items-wrapper {
  grid-template-columns: 1fr 1fr;
}

/* ******* (item3step1 => item4step2 => box ) - STEP 3 ******** */
#Box-3-4-Step3 {
  display: none;
}

#Box-3-4-Step3 .radio-items-wrapper {
  grid-template-columns: 1fr;
}

/* ******* (item3step1 => item5step2 => box ) - STEP 3 ******** */
#Box-3-5-Step3 {
  display: none;
}

#Box-3-5-Step3 .radio-items-wrapper {
  grid-template-columns: 1fr;
}

/* ******* (item3step1 => item6step2 => box ) - STEP 3 ******** */
#Box-3-6-Step3 {
  display: none;
}

#Box-3-6-Step3 .radio-items-wrapper {
  grid-template-columns: 1fr;
}

/* ******* (item3step1 => item7step2 => box ) - STEP 3 ******** */
#Box-3-7-Step3 {
  display: none;
}

#Box-3-7-Step3 .radio-items-wrapper {
  grid-template-columns: 1fr;
}

/* ******* (item3step1 => item5step2 => box ) - STEP 3 ******** */
#Box-4-1-Step3 {
  display: none;
}

#Box-4-1-Step3 .radio-items-wrapper {
  grid-template-columns: 1fr 1fr;
}

/* ******* (item4step1 => item2step2 => box ) - STEP 3 ******** */
#Box-4-2-Step3 {
  display: none;
}

#Box-4-2-Step3 .radio-items-wrapper {
  grid-template-columns: 1fr 1fr;
}

/* ******* (item4step1 => item3step2 => box ) - STEP 3 ******** */
#Box-4-3-Step3 {
  display: none;
}

#Box-4-3-Step3 .radio-items-wrapper {
  grid-template-columns: 1fr;
}

/* ******* (item4step1 => item4step2 => box ) - STEP 3 ******** */
#Box-4-4-Step3 {
  display: none;
}

#Box-4-4-Step3 .radio-items-wrapper {
  grid-template-columns: 1fr 1fr;
}

/* ******* (item4step1 => item5step2 => box ) - STEP 3 ******** */
#Box-4-5-Step3 {
  display: none;
}

#Box-4-5-Step3 .radio-items-wrapper {
  grid-template-columns: 1fr 1fr 1fr;
}

/* ******* (item4step1 => item6step2 => box ) - STEP 3 ******** */
#Box-4-6-Step3 {
  display: none;
}

#Box-4-6-Step3 .radio-items-wrapper {
  grid-template-columns: 1fr 1fr;
}

/* ******* (item5step1 => item1step2 => box ) - STEP 3 ******** */
#Box-5-1-Step3 {
  display: none;
}

#Box-5-1-Step3 .radio-items-wrapper {
  grid-template-columns: 1fr 1fr;
}

/* ******* (item5step1 => item2step2 => box ) - STEP 3 ******** */
#Box-5-2-Step3 {
  display: none;
}

#Box-5-2-Step3 .radio-items-wrapper {
  grid-template-columns: 1fr 1fr;
}

/* ******* (item5step1 => item3step2 => box ) - STEP 3 ******** */
#Box-5-3-Step3 {
  display: none;
}

#Box-5-3-Step3 .radio-items-wrapper {
  grid-template-columns: 1fr 1fr;
}

/* ******* (item6step1 => item1step2 => box ) - STEP 3 ******** */
#Box-6-1-Step3 {
  display: none;
}

#Box-6-1-Step3 .radio-items-wrapper {
  grid-template-columns: 1fr 1fr;
}

/* ******* (item6step1 => item2step2 => box ) - STEP 3 ******** */
#Box-6-2-Step3 {
  display: none;
}

#Box-6-2-Step3 .radio-items-wrapper {
  grid-template-columns: 1fr 1fr;
}

/* ******* (item6step1 => item3step2 => box ) - STEP 3 ******** */
#Box-6-3-Step3 {
  display: none;
}

#Box-6-3-Step3 .radio-items-wrapper {
  grid-template-columns: 1fr 1fr;
}

/* ******* (item7step1 => item1step2 => box ) - STEP 3 ******** */
#Box-7-1-Step3 {
  display: none;
}

#Box-7-1-Step3 .radio-items-wrapper {
  grid-template-columns: 1fr 1fr;
}

/* ******* (item7step1 => item2step2 => box ) - STEP 3 ******** */
#Box-7-2-Step3 {
  display: none;
}

#Box-7-2-Step3 .radio-items-wrapper {
  grid-template-columns: 1fr 1fr;
}

/* ******* (item7step1 => item3step2 => box ) - STEP 3 ******** */
#Box-7-3-Step3 {
  display: none;
}

#Box-7-3-Step3 .radio-items-wrapper {
  grid-template-columns: 1fr 1fr;
}

/* ******* (item1step1 => item1step2 => item1step3 => box ) - STEP 4 ******** */
#Box-1-1-1-Step4 {
  display: none;
}

#Box-1-1-1-Step4 .radio-items-wrapper {
  grid-template-columns: 1fr 1fr 1fr;
}

/* ******* (item1step1 => item1step2 => item2step3 => box ) - STEP 4 ******** */
#Box-1-1-2-Step4 {
  display: none;
}

#Box-1-1-2-Step4 .radio-items-wrapper {
  grid-template-columns: 1fr 1fr 1fr;
}

/* ******* (item1step1 => item1step2 => item3step3 => box ) - STEP 4 ******** */
#Box-1-1-3-Step4 {
  display: none;
}

#Box-1-1-3-Step4 .radio-items-wrapper {
  grid-template-columns: 1fr 1fr 1fr;
}

/* ******* (item1step1 => item1step2 => item4step3 => box ) - STEP 4 ******** */
#Box-1-1-4-Step4 {
  display: none;
}

#Box-1-1-4-Step4 .radio-items-wrapper {
  grid-template-columns: 1fr 1fr 1fr;
}

/* ******* (item1step1 => item1step2 => item5step3 => box ) - STEP 4 ******** */
#Box-1-1-5-Step4 {
  display: none;
}

#Box-1-1-5-Step4 .radio-items-wrapper {
  grid-template-columns: 1fr 1fr 1fr;
}

/* ******* (item1step1 => item1step2 => item6step3 => box ) - STEP 4 ******** */
#Box-1-1-6-Step4 {
  display: none;
}

#Box-1-1-6-Step4 .radio-items-wrapper {
  grid-template-columns: 1fr 1fr 1fr;
}

/* ******* (item1step1 => item1step2 => item7step3 => box ) - STEP 4 ******** */
#Box-1-1-7-Step4 {
  display: none;
}

#Box-1-1-7-Step4 .radio-items-wrapper {
  grid-template-columns: 1fr 1fr 1fr;
}

/* ******* (item1step1 => item1step2 => item8step3 => box ) - STEP 4 ******** */
#Box-1-1-8-Step4 {
  display: none;
}

#Box-1-1-8-Step4 .radio-items-wrapper {
  grid-template-columns: 1fr 1fr 1fr;
}

/* ******* (item1step1 => item1step2 => item9step3 => box ) - STEP 4 ******** */
#Box-1-1-9-Step4 {
  display: none;
}

#Box-1-1-9-Step4 .radio-items-wrapper {
  grid-template-columns: 1fr 1fr 1fr;
}

/* ******* (item1step1 => item2step2 => item1step3 => box ) - STEP 4 ******** */
#Box-1-2-1-Step4 {
  display: none;
}

#Box-1-2-1-Step4 .radio-items-wrapper {
  grid-template-columns: 1fr 1fr;
}

/* ******* (item1step1 => item2step2 => item2step3 => box ) - STEP 4 ******** */
#Box-1-2-2-Step4 {
  display: none;
}

#Box-1-2-2-Step4 .radio-items-wrapper {
  grid-template-columns: 1fr 1fr;
}

/* ******* (item1step1 => item2step2 => item3step3 => box ) - STEP 4 ******** */
#Box-1-2-3-Step4 {
  display: none;
}

#Box-1-2-3-Step4 .radio-items-wrapper {
  grid-template-columns: 1fr 1fr;
}

/* ******* (item1step1 => item2step2 => item4step3 => box ) - STEP 4 ******** */
#Box-1-2-4-Step4 {
  display: none;
}

#Box-1-2-4-Step4 .radio-items-wrapper {
  grid-template-columns: 1fr 1fr;
}

/* ******* (item1step1 => item3step2 => item1step3 => box ) - STEP 4 ******** */
#Box-1-3-1-Step4 {
  display: none;
}

#Box-1-3-1-Step4 .radio-items-wrapper {
  grid-template-columns: 1fr 1fr;
}

/* ******* (item1step1 => item3step2 => item2step3 => box ) - STEP 4 ******** */
#Box-1-3-2-Step4 {
  display: none;
}

#Box-1-3-2-Step4 .radio-items-wrapper {
  grid-template-columns: 1fr 1fr;
}

/* ******* (item1step1 => item3step2 => item3step3 => box ) - STEP 4 ******** */
#Box-1-3-3-Step4 {
  display: none;
}

#Box-1-3-3-Step4 .radio-items-wrapper {
  grid-template-columns: 1fr 1fr;
}

/* ******* (item1step1 => item3step2 => item4step3 => box ) - STEP 4 ******** */
#Box-1-3-4-Step4 {
  display: none;
}

#Box-1-3-4-Step4 .radio-items-wrapper {
  grid-template-columns: 1fr 1fr;
}

/* ******* (item1step1 => item3step2 => item5step3 => box ) - STEP 4 ******** */
#Box-1-3-5-Step4 {
  display: none;
}

#Box-1-3-5-Step4 .radio-items-wrapper {
  grid-template-columns: 1fr 1fr;
}

/* ******* (item1step1 => item3step2 => item6step3 => box ) - STEP 4 ******** */
#Box-1-3-6-Step4 {
  display: none;
}

#Box-1-3-6-Step4 .radio-items-wrapper {
  grid-template-columns: 1fr 1fr;
}

/* ******* (item1step1 => item3step2 => item7step3 => box ) - STEP 4 ******** */
#Box-1-3-7-Step4 {
  display: none;
}

#Box-1-3-7-Step4 .radio-items-wrapper {
  grid-template-columns: 1fr 1fr;
}

/* ******* (item1step1 => item3step2 => item8step3 => box ) - STEP 4 ******** */
#Box-1-3-8-Step4 {
  display: none;
}

#Box-1-3-8-Step4 .radio-items-wrapper {
  grid-template-columns: 1fr 1fr;
}

/* ******* (item1step1 => item3step2 => item9step3 => box ) - STEP 4 ******** */
#Box-1-3-9-Step4 {
  display: none;
}

#Box-1-3-9-Step4 .radio-items-wrapper {
  grid-template-columns: 1fr 1fr;
}

/* ******* (item1step1 => item4step2 => item1step3 => box ) - STEP 4 ******** */
#Box-1-4-1-Step4 {
  display: none;
}

#Box-1-4-1-Step4 .radio-items-wrapper {
  grid-template-columns: 1fr 1fr;
}

/* ******* (item1step1 => item4step2 => item2step3 => box ) - STEP 4 ******** */
#Box-1-4-2-Step4 {
  display: none;
}

#Box-1-4-2-Step4 .radio-items-wrapper {
  grid-template-columns: 1fr 1fr;
}

/* ******* (item1step1 => item4step2 => item3step3 => box ) - STEP 4 ******** */
#Box-1-4-3-Step4 {
  display: none;
}

#Box-1-4-3-Step4 .radio-items-wrapper {
  grid-template-columns: 1fr 1fr;
}

/* ******* (item1step1 => item4step2 => item4step3 => box ) - STEP 4 ******** */
#Box-1-4-4-Step4 {
  display: none;
}

#Box-1-4-4-Step4 .radio-items-wrapper {
  grid-template-columns: 1fr 1fr;
}

/* ******* (item1step1 => item5step2 => item1step3 => box ) - STEP 4 ******** */
#Box-1-5-1-Step4 {
  display: none;
}

#Box-1-5-1-Step4 .radio-items-wrapper {
  grid-template-columns: 1fr 1fr;
}

/* ******* (item1step1 => item5step2 => item2step3 => box ) - STEP 4 ******** */
#Box-1-5-2-Step4 {
  display: none;
}

#Box-1-5-2-Step4 .radio-items-wrapper {
  grid-template-columns: 1fr 1fr;
}

/* ******* (item1step1 => item5step2 => item3step3 => box ) - STEP 4 ******** */
#Box-1-5-3-Step4 {
  display: none;
}

#Box-1-5-3-Step4 .radio-items-wrapper {
  grid-template-columns: 1fr 1fr;
}

/* ******* (item1step1 => item5step2 => item4step3 => box ) - STEP 4 ******** */
#Box-1-5-4-Step4 {
  display: none;
}

#Box-1-5-4-Step4 .radio-items-wrapper {
  grid-template-columns: 1fr 1fr;
}

/* ******* (item1step1 => item5step2 => item5step3 => box ) - STEP 4 ******** */
#Box-1-5-5-Step4 {
  display: none;
}

#Box-1-5-5-Step4 .radio-items-wrapper {
  grid-template-columns: 1fr 1fr;
}

/* ******* (item1step1 => item6step2 => item1step3 => box ) - STEP 4 ******** */
#Box-1-6-1-Step4 {
  display: none;
}

#Box-1-6-1-Step4 .radio-items-wrapper {
  grid-template-columns: 1fr 1fr;
}

/* ******* (item1step1 => item6step2 => item2step3 => box ) - STEP 4 ******** */
#Box-1-6-2-Step4 {
  display: none;
}

#Box-1-6-2-Step4 .radio-items-wrapper {
  grid-template-columns: 1fr 1fr;
}

/* ******* (item1step1 => item6step2 => item3step3 => box ) - STEP 4 ******** */
#Box-1-6-3-Step4 {
  display: none;
}

#Box-1-6-3-Step4 .radio-items-wrapper {
  grid-template-columns: 1fr 1fr;
}

/* ******* (item1step1 => item6step2 => item4step3 => box ) - STEP 4 ******** */
#Box-1-6-4-Step4 {
  display: none;
}

#Box-1-6-4-Step4 .radio-items-wrapper {
  grid-template-columns: 1fr 1fr;
}

/* ******* (item1step1 => item7step2 => item1step3 => box ) - STEP 4 ******** */
#Box-1-7-1-Step4 {
  display: none;
}

#Box-1-7-1-Step4 .radio-items-wrapper {
  grid-template-columns: 1fr 1fr;
}

/* ******* (item1step1 => item7step2 => item2step3 => box ) - STEP 4 ******** */
#Box-1-7-2-Step4 {
  display: none;
}

#Box-1-7-2-Step4 .radio-items-wrapper {
  grid-template-columns: 1fr 1fr;
}

/* ******* (item1step1 => item7step2 => item3step3 => box ) - STEP 4 ******** */
#Box-1-7-3-Step4 {
  display: none;
}

#Box-1-7-3-Step4 .radio-items-wrapper {
  grid-template-columns: 1fr 1fr;
}

/* ******* (item1step1 => item7step2 => item4step3 => box ) - STEP 4 ******** */
#Box-1-7-4-Step4 {
  display: none;
}

#Box-1-7-4-Step4 .radio-items-wrapper {
  grid-template-columns: 1fr 1fr;
}

/* ******* (item1step1 => item7step2 => item5step3 => box ) - STEP 4 ******** */
#Box-1-7-5-Step4 {
  display: none;
}

#Box-1-7-5-Step4 .radio-items-wrapper {
  grid-template-columns: 1fr 1fr;
}

/* ******* (item2step1 => item1step2 => item1step3 => box ) - STEP 4 ******** */
#Box-2-1-1-Step4 {
  display: none;
}

#Box-2-1-1-Step4 .radio-items-wrapper {
  grid-template-columns: 1fr 1fr;
}

/* ******* (item2step1 => item1step2 => item2step3 => box ) - STEP 4 ******** */
#Box-2-1-2-Step4 {
  display: none;
}

#Box-2-1-2-Step4 .radio-items-wrapper {
  grid-template-columns: 1fr 1fr;
}

/* ******* (item2step1 => item1step2 => item3step3 => box ) - STEP 4 ******** */
#Box-2-1-3-Step4 {
  display: none;
}

#Box-2-1-3-Step4 .radio-items-wrapper {
  grid-template-columns: 1fr 1fr;
}

/* ******* (item2step1 => item1step2 => item4step3 => box ) - STEP 4 ******** */
#Box-2-1-4-Step4 {
  display: none;
}

#Box-2-1-4-Step4 .radio-items-wrapper {
  grid-template-columns: 1fr 1fr;
}

/* ******* (item2step1 => item1step2 => item5step3 => box ) - STEP 4 ******** */
#Box-2-1-5-Step4 {
  display: none;
}

#Box-2-1-5-Step4 .radio-items-wrapper {
  grid-template-columns: 1fr 1fr;
}

/* ******* (item2step1 => item1step2 => item6step3 => box ) - STEP 4 ******** */
#Box-2-1-6-Step4 {
  display: none;
}

#Box-2-1-6-Step4 .radio-items-wrapper {
  grid-template-columns: 1fr 1fr;
}

/* ******* (item2step1 => item1step2 => item7step3 => box ) - STEP 4 ******** */
#Box-2-1-7-Step4 {
  display: none;
}

#Box-2-1-7-Step4 .radio-items-wrapper {
  grid-template-columns: 1fr 1fr;
}

/* ******* (item2step1 => item1step2 => item8step3 => box ) - STEP 4 ******** */
#Box-2-1-8-Step4 {
  display: none;
}

#Box-2-1-8-Step4 .radio-items-wrapper {
  grid-template-columns: 1fr 1fr;
}

/* ******* (item2step1 => item1step2 => item9step3 => box ) - STEP 4 ******** */
#Box-2-1-9-Step4 {
  display: none;
}

#Box-2-1-9-Step4 .radio-items-wrapper {
  grid-template-columns: 1fr 1fr;
}

/* ******* (item3step1 => item1step2 => item1step3 => box ) - STEP 4 ******** */
#Box-3-1-1-Step4 {
  display: none;
}

#Box-3-1-1-Step4 .radio-items-wrapper {
  grid-template-columns: 1fr 1fr;
}

/* ******* (item3step1 => item1step2 => item2step3 => box ) - STEP 4 ******** */
#Box-3-1-2-Step4 {
  display: none;
}

#Box-3-1-2-Step4 .radio-items-wrapper {
  grid-template-columns: 1fr 1fr;
}

/* ******* (item3step1 => item1step2 => item3step3 => box ) - STEP 4 ******** */
#Box-3-1-3-Step4 {
  display: none;
}

#Box-3-1-3-Step4 .radio-items-wrapper {
  grid-template-columns: 1fr 1fr;
}

/* ******* (item3step1 => item1step2 => item4step3 => box ) - STEP 4 ******** */
#Box-3-1-4-Step4 {
  display: none;
}

#Box-3-1-4-Step4 .radio-items-wrapper {
  grid-template-columns: 1fr 1fr;
}

/* ******* (item3step1 => item1step2 => item5step3 => box ) - STEP 4 ******** */
#Box-3-1-5-Step4 {
  display: none;
}

#Box-3-1-5-Step4 .radio-items-wrapper {
  grid-template-columns: 1fr 1fr;
}

/* ******* (item3step1 => item1step2 => item6step3 => box ) - STEP 4 ******** */
#Box-3-1-6-Step4 {
  display: none;
}

#Box-3-1-6-Step4 .radio-items-wrapper {
  grid-template-columns: 1fr 1fr;
}

/* ******* (item3step1 => item1step2 => item7step3 => box ) - STEP 4 ******** */
#Box-3-1-7-Step4 {
  display: none;
}

#Box-3-1-7-Step4 .radio-items-wrapper {
  grid-template-columns: 1fr 1fr;
}

/* ******* (item3step1 => item1step2 => item8step3 => box ) - STEP 4 ******** */
#Box-3-1-8-Step4 {
  display: none;
}

#Box-3-1-8-Step4 .radio-items-wrapper {
  grid-template-columns: 1fr 1fr;
}

/* ******* (item3step1 => item1step2 => item9step3 => box ) - STEP 4 ******** */
#Box-3-1-9-Step4 {
  display: none;
}

#Box-3-1-9-Step4 .radio-items-wrapper {
  grid-template-columns: 1fr 1fr;
}

/* ******* (item2step1 => item2step2 => item1step3 => box ) - STEP 4 ******** */
#Box-2-2-1-Step4 {
  display: none;
}

#Box-2-2-1-Step4 .radio-items-wrapper {
  grid-template-columns: 1fr 1fr;
}

/* ******* (item2step1 => item2step2 => item2step3 => box ) - STEP 4 ******** */
#Box-2-2-2-Step4 {
  display: none;
}

#Box-2-2-2-Step4 .radio-items-wrapper {
  grid-template-columns: 1fr 1fr;
}

/* ******* (item2step1 => item2step2 => item3step3 => box ) - STEP 4 ******** */
#Box-2-2-3-Step4 {
  display: none;
}

#Box-2-2-3-Step4 .radio-items-wrapper {
  grid-template-columns: 1fr 1fr;
}

/* ******* (item2step1 => item2step2 => item4step3 => box ) - STEP 4 ******** */
#Box-2-2-4-Step4 {
  display: none;
}

#Box-2-2-4-Step4 .radio-items-wrapper {
  grid-template-columns: 1fr 1fr;
}

/* ******* (item2step1 => item3step2 => item1step3 => box ) - STEP 4 ******** */
#Box-2-3-1-Step4 {
  display: none;
}

#Box-2-3-1-Step4 .radio-items-wrapper {
  grid-template-columns: 1fr 1fr;
}

/* ******* (item2step1 => item3step2 => item2step3 => box ) - STEP 4 ******** */
#Box-2-3-2-Step4 {
  display: none;
}

#Box-2-3-2-Step4 .radio-items-wrapper {
  grid-template-columns: 1fr 1fr;
}

/* ******* (item2step1 => item3step2 => item3step3 => box ) - STEP 4 ******** */
#Box-2-3-3-Step4 {
  display: none;
}

#Box-2-3-3-Step4 .radio-items-wrapper {
  grid-template-columns: 1fr 1fr;
}

/* ******* (item2step1 => item3step2 => item4step3 => box ) - STEP 4 ******** */
#Box-2-3-4-Step4 {
  display: none;
}

#Box-2-3-4-Step4 .radio-items-wrapper {
  grid-template-columns: 1fr 1fr;
}

/* ******* (item2step1 => item3step2 => item5step3 => box ) - STEP 4 ******** */
#Box-2-3-5-Step4 {
  display: none;
}

#Box-2-3-5-Step4 .radio-items-wrapper {
  grid-template-columns: 1fr 1fr;
}

/* ******* (item2step1 => item3step2 => item6step3 => box ) - STEP 4 ******** */
#Box-2-3-6-Step4 {
  display: none;
}

#Box-2-3-6-Step4 .radio-items-wrapper {
  grid-template-columns: 1fr 1fr;
}

/* ******* (item2step1 => item3step2 => item7step3 => box ) - STEP 4 ******** */
#Box-2-3-7-Step4 {
  display: none;
}

#Box-2-3-7-Step4 .radio-items-wrapper {
  grid-template-columns: 1fr 1fr;
}

/* ******* (item2step1 => item3step2 => item8step3 => box ) - STEP 4 ******** */
#Box-2-3-8-Step4 {
  display: none;
}

#Box-2-3-8-Step4 .radio-items-wrapper {
  grid-template-columns: 1fr 1fr;
}

/* ******* (item2step1 => item3step2 => item9step3 => box ) - STEP 4 ******** */
#Box-2-3-9-Step4 {
  display: none;
}

#Box-2-3-9-Step4 .radio-items-wrapper {
  grid-template-columns: 1fr 1fr;
}

/* ******* (item2step1 => item4step2 => item1step3 => box ) - STEP 4 ******** */
#Box-2-4-1-Step4 {
  display: none;
}

#Box-2-4-1-Step4 .radio-items-wrapper {
  grid-template-columns: 1fr 1fr;
}

/* ******* (item2step1 => item4step2 => item2step3 => box ) - STEP 4 ******** */
#Box-2-4-2-Step4 {
  display: none;
}

#Box-2-4-2-Step4 .radio-items-wrapper {
  grid-template-columns: 1fr 1fr;
}

/* ******* (item2step1 => item4step2 => item3step3 => box ) - STEP 4 ******** */
#Box-2-4-3-Step4 {
  display: none;
}

#Box-2-4-3-Step4 .radio-items-wrapper {
  grid-template-columns: 1fr 1fr;
}

/* ******* (item2step1 => item4step2 => item4step3 => box ) - STEP 4 ******** */
#Box-2-4-4-Step4 {
  display: none;
}

#Box-2-4-4-Step4 .radio-items-wrapper {
  grid-template-columns: 1fr 1fr;
}

/* ******* (item2step1 => item5step2 => item1step3 => box ) - STEP 4 ******** */
#Box-2-5-1-Step4 {
  display: none;
}

#Box-2-5-1-Step4 .radio-items-wrapper {
  grid-template-columns: 1fr 1fr;
}

/* ******* (item2step1 => item5step2 => item2step3 => box ) - STEP 4 ******** */
#Box-2-5-2-Step4 {
  display: none;
}

#Box-2-5-2-Step4 .radio-items-wrapper {
  grid-template-columns: 1fr 1fr;
}

/* ******* (item2step1 => item5step2 => item3step3 => box ) - STEP 4 ******** */
#Box-2-5-3-Step4 {
  display: none;
}

#Box-2-5-3-Step4 .radio-items-wrapper {
  grid-template-columns: 1fr 1fr;
}

/* ******* (item2step1 => item5step2 => item4step3 => box ) - STEP 4 ******** */
#Box-2-5-4-Step4 {
  display: none;
}

#Box-2-5-4-Step4 .radio-items-wrapper {
  grid-template-columns: 1fr 1fr;
}

/* ******* (item2step1 => item5step2 => item5step3 => box ) - STEP 4 ******** */
#Box-2-5-5-Step4 {
  display: none;
}

#Box-2-5-5-Step4 .radio-items-wrapper {
  grid-template-columns: 1fr 1fr;
}

/* ******* (item2step1 => item6step2 => item1step3 => box ) - STEP 4 ******** */
#Box-2-6-1-Step4 {
  display: none;
}

#Box-2-6-1-Step4 .radio-items-wrapper {
  grid-template-columns: 1fr 1fr;
}

/* ******* (item2step1 => item6step2 => item2step3 => box ) - STEP 4 ******** */
#Box-2-6-2-Step4 {
  display: none;
}

#Box-2-6-2-Step4 .radio-items-wrapper {
  grid-template-columns: 1fr 1fr;
}

/* ******* (item2step1 => item6step2 => item3step3 => box ) - STEP 4 ******** */
#Box-2-6-3-Step4 {
  display: none;
}

#Box-2-6-3-Step4 .radio-items-wrapper {
  grid-template-columns: 1fr 1fr;
}

/* ******* (item2step1 => item6step2 => item4step3 => box ) - STEP 4 ******** */
#Box-2-6-4-Step4 {
  display: none;
}

#Box-2-6-4-Step4 .radio-items-wrapper {
  grid-template-columns: 1fr 1fr;
}

/* ******* (item2step1 => item7step2 => item1step3 => box ) - STEP 4 ******** */
#Box-2-7-1-Step4 {
  display: none;
}

#Box-2-7-1-Step4 .radio-items-wrapper {
  grid-template-columns: 1fr 1fr;
}

/* ******* (item2step1 => item7step2 => item2step3 => box ) - STEP 4 ******** */
#Box-2-7-2-Step4 {
  display: none;
}

#Box-2-7-2-Step4 .radio-items-wrapper {
  grid-template-columns: 1fr 1fr;
}

/* ******* (item2step1 => item7step2 => item3step3 => box ) - STEP 4 ******** */
#Box-2-7-3-Step4 {
  display: none;
}

#Box-2-7-3-Step4 .radio-items-wrapper {
  grid-template-columns: 1fr 1fr;
}

/* ******* (item2step1 => item7step2 => item4step3 => box ) - STEP 4 ******** */
#Box-2-7-4-Step4 {
  display: none;
}

#Box-2-7-4-Step4 .radio-items-wrapper {
  grid-template-columns: 1fr 1fr;
}

/* ******* (item2step1 => item7step2 => item5step3 => box ) - STEP 4 ******** */
#Box-2-7-5-Step4 {
  display: none;
}

#Box-2-7-5-Step4 .radio-items-wrapper {
  grid-template-columns: 1fr 1fr;
}

/* ******* (item3step1 => item2step2 => item1step3 => box ) - STEP 4 ******** */
#Box-3-2-1-Step4 {
  display: none;
}

#Box-3-2-1-Step4 .radio-items-wrapper {
  grid-template-columns: 1fr 1fr;
}

/* ******* (item3step1 => item2step2 => item2step3 => box ) - STEP 4 ******** */
#Box-3-2-2-Step4 {
  display: none;
}

#Box-3-2-2-Step4 .radio-items-wrapper {
  grid-template-columns: 1fr 1fr;
}

/* ******* (item3step1 => item2step2 => item3step3 => box ) - STEP 4 ******** */
#Box-3-2-3-Step4 {
  display: none;
}

#Box-3-2-3-Step4 .radio-items-wrapper {
  grid-template-columns: 1fr 1fr;
}

/* ******* (item3step1 => item2step2 => item4step3 => box ) - STEP 4 ******** */
#Box-3-2-4-Step4 {
  display: none;
}

#Box-3-2-4-Step4 .radio-items-wrapper {
  grid-template-columns: 1fr 1fr;
}

/* ******* (item3step1 => item2step2 => item4step3 => box ) - STEP 4 ******** */
#Box-3-2-5-Step4 {
  display: none;
}

#Box-3-2-5-Step4 .radio-items-wrapper {
  grid-template-columns: 1fr;
}

/* ******* (item3step1 => item3step2 => item1step3 => box ) - STEP 4 ******** */
#Box-3-3-1-Step4 {
  display: none;
}

#Box-3-3-1-Step4 .radio-items-wrapper {
  grid-template-columns: 1fr 1fr;
}

/* ******* (item3step1 => item3step2 => item2step3 => box ) - STEP 4 ******** */
#Box-3-3-2-Step4 {
  display: none;
}

#Box-3-3-2-Step4 .radio-items-wrapper {
  grid-template-columns: 1fr 1fr;
}

/* ******* (item3step1 => item3step2 => item3step3 => box ) - STEP 4 ******** */
#Box-3-3-3-Step4 {
  display: none;
}

#Box-3-3-3-Step4 .radio-items-wrapper {
  grid-template-columns: 1fr 1fr;
}

/* ******* (item3step1 => item3step2 => item4step3 => box ) - STEP 4 ******** */
#Box-3-3-4-Step4 {
  display: none;
}

#Box-3-3-4-Step4 .radio-items-wrapper {
  grid-template-columns: 1fr 1fr;
}

/* ******* (item3step1 => item3step2 => item5step3 => box ) - STEP 4 ******** */
#Box-3-3-5-Step4 {
  display: none;
}

#Box-3-3-5-Step4 .radio-items-wrapper {
  grid-template-columns: 1fr 1fr;
}

/* ******* (item3step1 => item3step2 => item6step3 => box ) - STEP 4 ******** */
#Box-3-3-6-Step4 {
  display: none;
}

#Box-3-3-6-Step4 .radio-items-wrapper {
  grid-template-columns: 1fr 1fr;
}

/* ******* (item3step1 => item3step2 => item7step3 => box ) - STEP 4 ******** */
#Box-3-3-7-Step4 {
  display: none;
}

#Box-3-3-7-Step4 .radio-items-wrapper {
  grid-template-columns: 1fr 1fr;
}

/* ******* (item3step1 => item3step2 => item8step3 => box ) - STEP 4 ******** */
#Box-3-3-8-Step4 {
  display: none;
}

#Box-3-3-8-Step4 .radio-items-wrapper {
  grid-template-columns: 1fr 1fr;
}

/* ******* (item3step1 => item3step2 => item9step3 => box ) - STEP 4 ******** */
#Box-3-3-9-Step4 {
  display: none;
}

#Box-3-3-9-Step4 .radio-items-wrapper {
  grid-template-columns: 1fr 1fr;
}

/* ******* (item3step1 => item4step2 => item1step3 => box ) - STEP 4 ******** */
#Box-3-4-1-Step4 {
  display: none;
}

#Box-3-4-1-Step4 .radio-items-wrapper {
  grid-template-columns: 1fr 1fr;
}

/* ******* (item3step1 => item4step2 => item2step3 => box ) - STEP 4 ******** */
#Box-3-4-2-Step4 {
  display: none;
}

#Box-3-4-2-Step4 .radio-items-wrapper {
  grid-template-columns: 1fr 1fr;
}

/* ******* (item3step1 => item4step2 => item3step3 => box ) - STEP 4 ******** */
#Box-3-4-3-Step4 {
  display: none;
}

#Box-3-4-3-Step4 .radio-items-wrapper {
  grid-template-columns: 1fr 1fr;
}

/* ******* (item3step1 => item4step2 => item4step3 => box ) - STEP 4 ******** */
#Box-3-4-4-Step4 {
  display: none;
}

#Box-3-4-4-Step4 .radio-items-wrapper {
  grid-template-columns: 1fr 1fr;
}

/* ******* (item3step1 => item5step2 => item1step3 => box ) - STEP 4 ******** */
#Box-3-5-1-Step4 {
  display: none;
}

#Box-3-5-1-Step4 .radio-items-wrapper {
  grid-template-columns: 1fr 1fr;
}

/* ******* (item3step1 => item5step2 => item2step3 => box ) - STEP 4 ******** */
#Box-3-5-2-Step4 {
  display: none;
}

#Box-3-5-2-Step4 .radio-items-wrapper {
  grid-template-columns: 1fr 1fr;
}

/* ******* (item3step1 => item5step2 => item3step3 => box ) - STEP 4 ******** */
#Box-3-5-3-Step4 {
  display: none;
}

#Box-3-5-3-Step4 .radio-items-wrapper {
  grid-template-columns: 1fr 1fr;
}

/* ******* (item3step1 => item5step2 => item4step3 => box ) - STEP 4 ******** */
#Box-3-5-4-Step4 {
  display: none;
}

#Box-3-5-4-Step4 .radio-items-wrapper {
  grid-template-columns: 1fr 1fr;
}

/* ******* (item3step1 => item5step2 => item5step3 => box ) - STEP 4 ******** */
#Box-3-5-5-Step4 {
  display: none;
}

#Box-3-5-5-Step4 .radio-items-wrapper {
  grid-template-columns: 1fr 1fr;
}

/* ******* (item3step1 => item6step2 => item1step3 => box ) - STEP 4 ******** */
#Box-3-6-1-Step4 {
  display: none;
}

#Box-3-6-1-Step4 .radio-items-wrapper {
  grid-template-columns: 1fr 1fr;
}

/* ******* (item3step1 => item6step2 => item2step3 => box ) - STEP 4 ******** */
#Box-3-6-2-Step4 {
  display: none;
}

#Box-3-6-2-Step4 .radio-items-wrapper {
  grid-template-columns: 1fr 1fr;
}

/* ******* (item3step1 => item6step2 => item3step3 => box ) - STEP 4 ******** */
#Box-3-6-3-Step4 {
  display: none;
}

#Box-3-6-3-Step4 .radio-items-wrapper {
  grid-template-columns: 1fr 1fr;
}

/* ******* (item3step1 => item6step2 => item4step3 => box ) - STEP 4 ******** */
#Box-3-6-4-Step4 {
  display: none;
}

#Box-3-6-4-Step4 .radio-items-wrapper {
  grid-template-columns: 1fr 1fr;
}

/* ******* (item3step1 => item7step2 => item1step3 => box ) - STEP 4 ******** */
#Box-3-7-1-Step4 {
  display: none;
}

#Box-3-7-1-Step4 .radio-items-wrapper {
  grid-template-columns: 1fr 1fr;
}

/* ******* (item3step1 => item7step2 => item2step3 => box ) - STEP 4 ******** */
#Box-3-7-2-Step4 {
  display: none;
}

#Box-3-7-2-Step4 .radio-items-wrapper {
  grid-template-columns: 1fr 1fr;
}

/* ******* (item3step1 => item7step2 => item3step3 => box ) - STEP 4 ******** */
#Box-3-7-3-Step4 {
  display: none;
}

#Box-3-7-3-Step4 .radio-items-wrapper {
  grid-template-columns: 1fr 1fr;
}

/* ******* (item3step1 => item7step2 => item4step3 => box ) - STEP 4 ******** */
#Box-3-7-4-Step4 {
  display: none;
}

#Box-3-7-4-Step4 .radio-items-wrapper {
  grid-template-columns: 1fr 1fr;
}

/* ******* (item3step1 => item7step2 => item5step3 => box ) - STEP 4 ******** */
#Box-3-7-5-Step4 {
  display: none;
}

#Box-3-7-5-Step4 .radio-items-wrapper {
  grid-template-columns: 1fr 1fr;
}

/* ******* (item4step1 => item1step2 => item1step3 => box ) - STEP 4 ******** */
#Box-4-1-1-Step4 {
  display: none;
}

#Box-4-1-1-Step4 .radio-items-wrapper {
  grid-template-columns: 1fr 1fr;
}

/* ******* (item4step1 => item1step2 => item2step3 => box ) - STEP 4 ******** */
#Box-4-1-2-Step4 {
  display: none;
}

#Box-4-1-2-Step4 .radio-items-wrapper {
  grid-template-columns: 1fr 1fr;
}

/* ******* (item4step1 => item1step2 => item3step3 => box ) - STEP 4 ******** */
#Box-4-1-3-Step4 {
  display: none;
}

#Box-4-1-3-Step4 .radio-items-wrapper {
  grid-template-columns: 1fr 1fr;
}

/* ******* (item4step1 => item1step2 => item4step3 => box ) - STEP 4 ******** */
#Box-4-1-4-Step4 {
  display: none;
}

#Box-4-1-4-Step4 .radio-items-wrapper {
  grid-template-columns: 1fr 1fr;
}

/* ******* (item4step1 => item2step2 => item1step3 => box ) - STEP 4 ******** */
#Box-4-2-1-Step4 {
  display: none;
}

#Box-4-2-1-Step4 .radio-items-wrapper {
  grid-template-columns: 1fr 1fr;
}

/* ******* (item4step1 => item2step2 => item2step3 => box ) - STEP 4 ******** */
#Box-4-2-2-Step4 {
  display: none;
}

#Box-4-2-2-Step4 .radio-items-wrapper {
  grid-template-columns: 1fr 1fr;
}

/* ******* (item4step1 => item2step2 => item3step3 => box ) - STEP 4 ******** */
#Box-4-2-3-Step4 {
  display: none;
}

#Box-4-2-3-Step4 .radio-items-wrapper {
  grid-template-columns: 1fr 1fr;
}

/* ******* (item4step1 => item2step2 => item4step3 => box ) - STEP 4 ******** */
#Box-4-2-4-Step4 {
  display: none;
}

#Box-4-2-4-Step4 .radio-items-wrapper {
  grid-template-columns: 1fr 1fr;
}

/* ******* (item4step1 => item3step2 => item1step3 => box ) - STEP 4 ******** */
#Box-4-3-1-Step4 {
  display: none;
}

#Box-4-3-1-Step4 .radio-items-wrapper {
  grid-template-columns: 1fr 1fr;
}

/* ******* (item4step1 => item3step2 => item2step3 => box ) - STEP 4 ******** */
#Box-4-3-2-Step4 {
  display: none;
}

#Box-4-3-2-Step4 .radio-items-wrapper {
  grid-template-columns: 1fr;
}

/* ******* (item4step1 => item4step2 => item1step3 => box ) - STEP 4 ******** */
#Box-4-4-1-Step4 {
  display: none;
}

#Box-4-4-1-Step4 .radio-items-wrapper {
  grid-template-columns: 1fr 1fr;
}

/* ******* (item4step1 => item4step2 => item2step3 => box ) - STEP 4 ******** */
#Box-4-4-2-Step4 {
  display: none;
}

#Box-4-4-2-Step4 .radio-items-wrapper {
  grid-template-columns: 1fr 1fr;
}

/* ******* (item4step1 => item5step2 => item1step3 => box ) - STEP 4 ******** */
#Box-4-5-1-Step4 {
  display: none;
}

#Box-4-5-1-Step4 .radio-items-wrapper {
  grid-template-columns: 1fr;
}

/* ******* (item4step1 => item5step2 => item2step3 => box ) - STEP 4 ******** */
#Box-4-5-2-Step4 {
  display: none;
}

#Box-4-5-2-Step4 .radio-items-wrapper {
  grid-template-columns: 1fr;
}

/* ******* (item4step1 => item5step2 => item3step3 => box ) - STEP 4 ******** */
#Box-4-5-3-Step4 {
  display: none;
}

#Box-4-5-3-Step4 .radio-items-wrapper {
  grid-template-columns: 1fr;
}

/* ******* (item4step1 => item6step2 => item1step3 => box ) - STEP 4 ******** */
#Box-4-6-1-Step4 {
  display: none;
}

#Box-4-6-1-Step4 .radio-items-wrapper {
  grid-template-columns: 1fr;
}

/* ******* (item4step1 => item6step2 => item2step3 => box ) - STEP 4 ******** */
#Box-4-6-2-Step4 {
  display: none;
}

#Box-4-6-2-Step4 .radio-items-wrapper {
  grid-template-columns: 1fr;
}

/* ******* (item5step1 => item1step2 => item1step3 => box ) - STEP 4 ******** */
#Box-5-1-1-Step4 {
  display: none;
}

#Box-5-1-1-Step4 .radio-items-wrapper {
  grid-template-columns: 1fr 1fr;
}

/* ******* (item5step1 => item1step2 => item2step3 => box ) - STEP 4 ******** */
#Box-5-1-2-Step4 {
  display: none;
}

#Box-5-1-2-Step4 .radio-items-wrapper {
  grid-template-columns: 1fr 1fr;
}

/* ******* (item5step1 => item1step2 => item3step3 => box ) - STEP 4 ******** */
#Box-5-1-3-Step4 {
  display: none;
}

#Box-5-1-3-Step4 .radio-items-wrapper {
  grid-template-columns: 1fr 1fr;
}

/* ******* (item5step1 => item1step2 => item4step3 => box ) - STEP 4 ******** */
#Box-5-1-4-Step4 {
  display: none;
}

#Box-5-1-4-Step4 .radio-items-wrapper {
  grid-template-columns: 1fr 1fr;
}

/* ******* (item5step1 => item2step2 => item1step3 => box ) - STEP 4 ******** */
#Box-5-2-1-Step4 {
  display: none;
}

#Box-5-2-1-Step4 .radio-items-wrapper {
  grid-template-columns: 1fr 1fr;
}

/* ******* (item5step1 => item2step2 => item2step3 => box ) - STEP 4 ******** */
#Box-5-2-2-Step4 {
  display: none;
}

#Box-5-2-2-Step4 .radio-items-wrapper {
  grid-template-columns: 1fr 1fr;
}

/* ******* (item5step1 => item2step2 => item3step3 => box ) - STEP 4 ******** */
#Box-5-2-3-Step4 {
  display: none;
}

#Box-5-2-3-Step4 .radio-items-wrapper {
  grid-template-columns: 1fr 1fr;
}

/* ******* (item5step1 => item2step2 => item4step3 => box ) - STEP 4 ******** */
#Box-5-2-4-Step4 {
  display: none;
}

#Box-5-2-4-Step4 .radio-items-wrapper {
  grid-template-columns: 1fr 1fr;
}

/* ******* (item5step1 => item3step2 => item1step3 => box ) - STEP 4 ******** */
#Box-5-3-1-Step4 {
  display: none;
}

#Box-5-3-1-Step4 .radio-items-wrapper {
  grid-template-columns: 1fr 1fr;
}

/* ******* (item6step1 => item1step2 => item1step3 => box ) - STEP 4 ******** */
#Box-6-1-1-Step4 {
  display: none;
}

#Box-6-1-1-Step4 .radio-items-wrapper {
  grid-template-columns: 1fr 1fr;
}

/* ******* (item6step1 => item1step2 => item2step3 => box ) - STEP 4 ******** */
#Box-6-1-2-Step4 {
  display: none;
}

#Box-6-1-2-Step4 .radio-items-wrapper {
  grid-template-columns: 1fr 1fr;
}

/* ******* (item6step1 => item1step2 => item3step3 => box ) - STEP 4 ******** */
#Box-6-1-3-Step4 {
  display: none;
}

#Box-6-1-3-Step4 .radio-items-wrapper {
  grid-template-columns: 1fr 1fr;
}

/* ******* (item6step1 => item1step2 => item4step3 => box ) - STEP 4 ******** */
#Box-6-1-4-Step4 {
  display: none;
}

#Box-6-1-4-Step4 .radio-items-wrapper {
  grid-template-columns: 1fr 1fr;
}

/* ******* (item6step1 => item2step2 => item1step3 => box ) - STEP 4 ******** */
#Box-6-2-1-Step4 {
  display: none;
}

#Box-6-2-1-Step4 .radio-items-wrapper {
  grid-template-columns: 1fr 1fr;
}

/* ******* (item6step1 => item2step2 => item1step3 => box ) - STEP 4 ******** */
#Box-6-2-2-Step4 {
  display: none;
}

#Box-6-2-2-Step4 .radio-items-wrapper {
  grid-template-columns: 1fr 1fr;
}

/* ******* (item6step1 => item2step2 => item1step3 => box ) - STEP 4 ******** */
#Box-6-2-3-Step4 {
  display: none;
}

#Box-6-2-3-Step4 .radio-items-wrapper {
  grid-template-columns: 1fr 1fr;
}

/* ******* (item6step1 => item2step2 => item1step3 => box ) - STEP 4 ******** */
#Box-6-2-4-Step4 {
  display: none;
}

#Box-6-2-4-Step4 .radio-items-wrapper {
  grid-template-columns: 1fr 1fr;
}

/* ******* (item7step1 => item1step2 => item1step3 => box ) - STEP 4 ******** */
#Box-7-1-1-Step4 {
  display: none;
}

#Box-7-1-1-Step4 .radio-items-wrapper {
  grid-template-columns: 1fr 1fr;
}

/* ******* (item7step1 => item1step2 => item2step3 => box ) - STEP 4 ******** */
#Box-7-1-2-Step4 {
  display: none;
}

#Box-7-1-2-Step4 .radio-items-wrapper {
  grid-template-columns: 1fr 1fr;
}

/* ******* (item7step1 => item1step2 => item3step3 => box ) - STEP 4 ******** */
#Box-7-1-3-Step4 {
  display: none;
}

#Box-7-1-3-Step4 .radio-items-wrapper {
  grid-template-columns: 1fr 1fr;
}

/* ******* (item7step1 => item1step2 => item4step3 => box ) - STEP 4 ******** */
#Box-7-1-4-Step4 {
  display: none;
}

#Box-7-1-4-Step4 .radio-items-wrapper {
  grid-template-columns: 1fr 1fr;
}

/* ******* (item7step1 => item2step2 => item1step3 => box ) - STEP 4 ******** */
#Box-7-2-1-Step4 {
  display: none;
}

#Box-7-2-1-Step4 .radio-items-wrapper {
  grid-template-columns: 1fr 1fr;
}

/* ******* (item7step1 => item2step2 => item2step3 => box ) - STEP 4 ******** */
#Box-7-2-2-Step4 {
  display: none;
}

#Box-7-2-2-Step4 .radio-items-wrapper {
  grid-template-columns: 1fr 1fr;
}

/* ******* (item7step1 => item2step2 => item3step3 => box ) - STEP 4 ******** */
#Box-7-2-3-Step4 {
  display: none;
}

#Box-7-2-3-Step4 .radio-items-wrapper {
  grid-template-columns: 1fr 1fr;
}

/* ******* (item7step1 => item2step2 => item4step3 => box ) - STEP 4 ******** */
#Box-7-2-4-Step4 {
  display: none;
}

#Box-7-2-4-Step4 .radio-items-wrapper {
  grid-template-columns: 1fr 1fr;
}

/* ******* (item1step1 => item1step2 => item1step3 => item1step4 box ) - STEP 5 ******** */
#Box-1-1-1-1-Step4 {
  display: none;
}

#Box-1-1-1-1-Step4 .radio-items-wrapper {
  grid-template-columns: 1fr 1fr;
}

/* ******* (item1step1 => item1step2 => item1step3 => item2step4 text ) - STEP 5 ******** */
#Box-1-1-1-2-Step4 {
  display: none;
}

#Box-1-1-1-2-Step4 .radio-items-wrapper {
  grid-template-columns: 1fr;
}

.filter-text-box input {
  margin-top: 15px;
  width: 100%;
  padding: 10px 10px 80px 10px;
  border: none;
  border-radius: 5px;
  outline: none;
  background-color: var(--cold-white-color);
}

/* ******* (item1step1 => item1step2 => item2step3 => item1step4 text ) - STEP 5 ******** */
#Box-1-1-2-1-Step4 {
  display: none;
}

#Box-1-1-2-1-Step4 .radio-items-wrapper {
  grid-template-columns: 1fr 1fr;
}

/* ******* (item1step1 => item1step2 => item3step3) - STEP 4 ******** */
#Box-1-1-3-1-Step4 {
  display: none;
}

#Box-1-1-3-1-Step4 .radio-items-wrapper {
  grid-template-columns: 1fr 1fr;
}

/* ******* SERVICES ITEMS ******** */
.services-items {
  padding: 20px 0px;
}

.services-items span {
  font-size: 14px;
}

.services-items div {
  padding: 10px 0px;
}

.services-items div input {
  cursor: pointer;
}

#services-box-1,
#services-box-2,
#services-box-3 {
  display: none;
}

/* ******* CHOOSE THE CARD NUMBER BOX ******** */
.choose-number-box {
  display: flex;
  flex-direction: column;
  padding: 25px 0px;
  border-bottom: 1px solid var(--gray-color);
}

.choose-number-box select {
  margin-top: 25px;
  width: 150px;
  cursor: pointer;
}

/* ******* CHECK ITEMS BOX ******** */
.check-items-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 50px;
  padding: 50px 0px;
  border-bottom: 1px solid var(--gray-color);
}

.check-items-box input {
  margin-bottom: 20px;
}

.check-items-box p {
  font-size: 14px;
}

/* ******* SEND FILE BOX ******** */
.send-file-box-wrapper {
  padding: 50px 0px;
  border-bottom: 1px solid var(--gray-color);
}

/* ******* design need option ******** */
.design-need-option input {
  margin: 20px 0px;
}

#design-price {
  margin-top: 30px;
  border: none;
  display: none;
}

#design-price .radio-items-wrapper {
  grid-template-columns: 1fr 1fr;
  padding-top: 0px;
}

#design-price label {
  padding-right: 10px;
}

/* ******* write description box ******** */
.design-need-text-box {
  display: none;
  padding: 50px 0px;
  border-bottom: 1px solid var(--gray-color);
}

.design-need-text-box input {
  width: 100%;
  background-color: var(--cold-white-color);
  border: none;
  padding: 10px 10px 100px 10px;
  border-radius: 5px;
}

/* ******* design need send file btn box ******** */
.send-file-design-need-box {
  padding: 50px 0px;
  border-bottom: 1px solid var(--gray-color);
  display: none;
}

.upload-btn-wrapper {
  margin-top: 20px;
  padding: 20px 20px;
  background-color: var(--cold-white-color);
  width: 100%;
  border-radius: 10px;
  display: flex;
  align-items: center;
}

.upload-button {
  background-color: var(--orange-color);
  color: var(--cold-white-color);
  border-radius: 5px;
  border: none;
  outline: none;
  padding: 10px 20px;
  font-weight: 600;
  cursor: pointer;
}

.upload-btn-message {
  font-size: 14px;
  max-width: 200px;
  margin-right: 20px;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}

.send-file-design-need-box p {
  padding-top: 50px;
}

/* ******* send file box ******** */
.send-file-box {
  padding: 50px 0px;
}

/* ******* text box ******** */
.input-text-box {
  padding: 50px 0px 10px 0px;
}

.input-text-box input {
  width: 100%;
  background-color: var(--cold-white-color);
  border: none;
  padding: 10px 10px 100px 10px;
  border-radius: 5px;
  margin-top: 15px;
}

/* **************** PRODUCT DATA LIST **************** */
.product-data-list {
  padding: 60px 0px;
}

.type-display {
  padding: 25px 0px;
  border-bottom: 1px var(--gray-color) solid;
}

.model-display {
  padding: 25px 0px;
  border-bottom: 1px var(--gray-color) solid;
}

.material-display {
  padding: 25px 0px;
  border-bottom: 1px var(--gray-color) solid;
}

.size-display {
  padding: 25px 0px;
  border-bottom: 1px var(--gray-color) solid;
}

.number-display {
  padding: 25px 0px;
  border-bottom: 1px var(--gray-color) solid;
}

.days-display {
  padding: 25px 0px;
  border-bottom: 1px var(--gray-color) solid;
}

.services-display {
  padding: 25px 0px;
  border-bottom: 1px var(--gray-color) solid;
}

.items-display {
  padding: 25px 0px;
  border-bottom: 1px var(--gray-color) solid;
}

.design-display {
  padding: 25px 0px;
  border-bottom: 1px var(--gray-color) solid;
}

.cover-display {
  padding: 25px 0px;
  border-bottom: 1px var(--gray-color) solid;
}

/* **************** PRICE & BUY BUTTON BOX **************** */
.end-box {
  padding: 100px 0px 20px 0px;
}

.price-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.price-display {
  display: flex;
  align-items: center;
}

#price {
  color: var(--green-color);
  font-size: 20px;
  font-weight: 600;
  padding-top: 20px;
}

.price-display p {
  color: var(--green-color);
  font-size: 20px;
  font-weight: 600;
  padding-top: 20px;
  padding-right: 10px;
}

.buy-button {
  width: 180px;
  height: 40px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 5px;
  border: none;
  outline: none;
  background-color: var(--orange-color);
  color: var(--white-color);
  cursor: pointer;
  justify-self: end;
}

.buy-message {
  width: 100%;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--white-color);
  border-radius: 10px;
}

.buy-message h2 {
  font-size: 16px;
  color: var(--green-color);
}

/* **************** RESPONSIVE **************** */
@media screen and (max-width: 630px) {
  #firstBox-Step1 .radio-items-wrapper,
  #firstBox-Step2 .radio-items-wrapper,
  #secondBox-Step2 .radio-items-wrapper,
  #thirdBox-Step2 .radio-items-wrapper,
  #fourthBox-Step2 .radio-items-wrapper,
  #fifthBox-Step2 .radio-items-wrapper,
  #sixthBox-Step2 .radio-items-wrapper,
  #seventhBox-Step2 .radio-items-wrapper,
  #Box-1-1-Step3 .radio-items-wrapper,
  #Box-1-2-Step3 .radio-items-wrapper,
  #Box-1-3-Step3 .radio-items-wrapper,
  #Box-1-4-Step3 .radio-items-wrapper,
  #Box-1-5-Step3 .radio-items-wrapper,
  #Box-1-6-Step3 .radio-items-wrapper,
  #Box-1-7-Step3 .radio-items-wrapper,
  #Box-2-1-Step3 .radio-items-wrapper,
  #Box-2-2-Step3 .radio-items-wrapper,
  #Box-2-3-Step3 .radio-items-wrapper,
  #Box-2-4-Step3 .radio-items-wrapper,
  #Box-2-5-Step3 .radio-items-wrapper,
  #Box-2-6-Step3 .radio-items-wrapper,
  #Box-2-7-Step3 .radio-items-wrapper,
  #Box-2-8-Step3 .radio-items-wrapper,
  #Box-3-1-Step3 .radio-items-wrapper,
  #Box-3-2-Step3 .radio-items-wrapper,
  #Box-3-3-Step3 .radio-items-wrapper,
  #Box-3-4-Step3 .radio-items-wrapper,
  #Box-3-5-Step3 .radio-items-wrapper,
  #Box-3-6-Step3 .radio-items-wrapper,
  #Box-3-7-Step3 .radio-items-wrapper,
  #Box-4-1-Step3 .radio-items-wrapper,
  #Box-4-2-Step3 .radio-items-wrapper,
  #Box-4-3-Step3 .radio-items-wrapper,
  #Box-4-4-Step3 .radio-items-wrapper,
  #Box-4-5-Step3 .radio-items-wrapper,
  #Box-4-6-Step3 .radio-items-wrapper,
  #Box-5-1-Step3 .radio-items-wrapper,
  #Box-5-2-Step3 .radio-items-wrapper,
  #Box-5-3-Step3 .radio-items-wrapper,
  #Box-6-1-Step3 .radio-items-wrapper,
  #Box-6-2-Step3 .radio-items-wrapper,
  #Box-6-3-Step3 .radio-items-wrapper,
  #Box-7-1-Step3 .radio-items-wrapper,
  #Box-7-2-Step3 .radio-items-wrapper,
  #Box-7-3-Step3 .radio-items-wrapper,
  #Box-1-1-1-Step4 .radio-items-wrapper,
  #Box-1-1-2-Step4 .radio-items-wrapper,
  #Box-1-1-3-Step4 .radio-items-wrapper,
  #Box-1-1-4-Step4 .radio-items-wrapper,
  #Box-1-1-5-Step4 .radio-items-wrapper,
  #Box-1-1-6-Step4 .radio-items-wrapper,
  #Box-1-1-7-Step4 .radio-items-wrapper,
  #Box-1-1-8-Step4 .radio-items-wrapper,
  #Box-1-1-9-Step4 .radio-items-wrapper,
  #Box-1-2-1-Step4 .radio-items-wrapper,
  #Box-1-2-2-Step4 .radio-items-wrapper,
  #Box-1-2-3-Step4 .radio-items-wrapper,
  #Box-1-2-4-Step4 .radio-items-wrapper,
  #Box-1-3-1-Step4 .radio-items-wrapper,
  #Box-1-3-2-Step4 .radio-items-wrapper,
  #Box-1-3-3-Step4 .radio-items-wrapper,
  #Box-1-3-4-Step4 .radio-items-wrapper,
  #Box-1-3-5-Step4 .radio-items-wrapper,
  #Box-1-3-6-Step4 .radio-items-wrapper,
  #Box-1-3-7-Step4 .radio-items-wrapper,
  #Box-1-3-8-Step4 .radio-items-wrapper,
  #Box-1-3-9-Step4 .radio-items-wrapper,
  #Box-1-4-1-Step4 .radio-items-wrapper,
  #Box-1-4-2-Step4 .radio-items-wrapper,
  #Box-1-4-3-Step4 .radio-items-wrapper,
  #Box-1-4-4-Step4 .radio-items-wrapper,
  #Box-1-5-1-Step4 .radio-items-wrapper,
  #Box-1-5-2-Step4 .radio-items-wrapper,
  #Box-1-5-3-Step4 .radio-items-wrapper,
  #Box-1-5-4-Step4 .radio-items-wrapper,
  #Box-1-5-5-Step4 .radio-items-wrapper,
  #Box-1-6-1-Step4 .radio-items-wrapper,
  #Box-1-6-2-Step4 .radio-items-wrapper,
  #Box-1-6-3-Step4 .radio-items-wrapper,
  #Box-1-6-4-Step4 .radio-items-wrapper,
  #Box-1-7-1-Step4 .radio-items-wrapper,
  #Box-1-7-2-Step4 .radio-items-wrapper,
  #Box-1-7-3-Step4 .radio-items-wrapper,
  #Box-1-7-4-Step4 .radio-items-wrapper,
  #Box-1-7-5-Step4 .radio-items-wrapper,
  #Box-2-1-1-Step4 .radio-items-wrapper,
  #Box-2-1-2-Step4 .radio-items-wrapper,
  #Box-2-1-3-Step4 .radio-items-wrapper,
  #Box-2-1-4-Step4 .radio-items-wrapper,
  #Box-2-1-5-Step4 .radio-items-wrapper,
  #Box-2-1-6-Step4 .radio-items-wrapper,
  #Box-2-1-7-Step4 .radio-items-wrapper,
  #Box-2-1-8-Step4 .radio-items-wrapper,
  #Box-2-1-9-Step4 .radio-items-wrapper,
  #Box-2-2-1-Step4 .radio-items-wrapper,
  #Box-2-2-2-Step4 .radio-items-wrapper,
  #Box-2-2-3-Step4 .radio-items-wrapper,
  #Box-2-2-4-Step4 .radio-items-wrapper,
  #Box-2-3-1-Step4 .radio-items-wrapper,
  #Box-2-3-2-Step4 .radio-items-wrapper,
  #Box-2-3-3-Step4 .radio-items-wrapper,
  #Box-2-3-4-Step4 .radio-items-wrapper,
  #Box-2-3-5-Step4 .radio-items-wrapper,
  #Box-2-3-6-Step4 .radio-items-wrapper,
  #Box-2-3-7-Step4 .radio-items-wrapper,
  #Box-2-3-8-Step4 .radio-items-wrapper,
  #Box-2-3-9-Step4 .radio-items-wrapper,
  #Box-2-4-1-Step4 .radio-items-wrapper,
  #Box-2-4-2-Step4 .radio-items-wrapper,
  #Box-2-4-3-Step4 .radio-items-wrapper,
  #Box-2-4-4-Step4 .radio-items-wrapper,
  #Box-2-5-1-Step4 .radio-items-wrapper,
  #Box-2-5-2-Step4 .radio-items-wrapper,
  #Box-2-5-3-Step4 .radio-items-wrapper,
  #Box-2-5-4-Step4 .radio-items-wrapper,
  #Box-2-5-5-Step4 .radio-items-wrapper,
  #Box-2-6-1-Step4 .radio-items-wrapper,
  #Box-2-6-2-Step4 .radio-items-wrapper,
  #Box-2-6-3-Step4 .radio-items-wrapper,
  #Box-2-6-4-Step4 .radio-items-wrapper,
  #Box-2-7-1-Step4 .radio-items-wrapper,
  #Box-2-7-2-Step4 .radio-items-wrapper,
  #Box-2-7-3-Step4 .radio-items-wrapper,
  #Box-2-7-4-Step4 .radio-items-wrapper,
  #Box-2-7-5-Step4 .radio-items-wrapper,
  #Box-3-1-1-Step4 .radio-items-wrapper,
  #Box-3-1-2-Step4 .radio-items-wrapper,
  #Box-3-1-3-Step4 .radio-items-wrapper,
  #Box-3-1-4-Step4 .radio-items-wrapper,
  #Box-3-1-5-Step4 .radio-items-wrapper,
  #Box-3-1-6-Step4 .radio-items-wrapper,
  #Box-3-1-7-Step4 .radio-items-wrapper,
  #Box-3-1-8-Step4 .radio-items-wrapper,
  #Box-3-1-9-Step4 .radio-items-wrapper,
  #Box-3-2-1-Step4 .radio-items-wrapper,
  #Box-3-2-2-Step4 .radio-items-wrapper,
  #Box-3-2-3-Step4 .radio-items-wrapper,
  #Box-3-2-4-Step4 .radio-items-wrapper,
  #Box-3-3-1-Step4 .radio-items-wrapper,
  #Box-3-3-2-Step4 .radio-items-wrapper,
  #Box-3-3-3-Step4 .radio-items-wrapper,
  #Box-3-3-4-Step4 .radio-items-wrapper,
  #Box-3-3-5-Step4 .radio-items-wrapper,
  #Box-3-3-6-Step4 .radio-items-wrapper,
  #Box-3-3-7-Step4 .radio-items-wrapper,
  #Box-3-3-8-Step4 .radio-items-wrapper,
  #Box-3-3-9-Step4 .radio-items-wrapper,
  #Box-3-4-1-Step4 .radio-items-wrapper,
  #Box-3-4-1-Step4 .radio-items-wrapper,
  #Box-3-4-2-Step4 .radio-items-wrapper,
  #Box-3-4-3-Step4 .radio-items-wrapper,
  #Box-3-5-1-Step4 .radio-items-wrapper,
  #Box-3-5-2-Step4 .radio-items-wrapper,
  #Box-3-5-3-Step4 .radio-items-wrapper,
  #Box-3-5-4-Step4 .radio-items-wrapper,
  #Box-3-5-5-Step4 .radio-items-wrapper,
  #Box-3-6-1-Step4 .radio-items-wrapper,
  #Box-3-6-2-Step4 .radio-items-wrapper,
  #Box-3-6-3-Step4 .radio-items-wrapper,
  #Box-3-6-4-Step4 .radio-items-wrapper,
  #Box-3-7-1-Step4 .radio-items-wrapper,
  #Box-3-7-2-Step4 .radio-items-wrapper,
  #Box-3-7-3-Step4 .radio-items-wrapper,
  #Box-3-7-4-Step4 .radio-items-wrapper,
  #Box-3-7-5-Step4 .radio-items-wrapper,
  #Box-4-1-4-Step4 .radio-items-wrapper,
  #Box-4-1-2-Step4 .radio-items-wrapper,
  #Box-4-1-3-Step4 .radio-items-wrapper,
  #Box-4-1-4-Step4 .radio-items-wrapper,
  #Box-4-2-1-Step4 .radio-items-wrapper,
  #Box-4-2-2-Step4 .radio-items-wrapper,
  #Box-4-2-3-Step4 .radio-items-wrapper,
  #Box-4-2-4-Step4 .radio-items-wrapper,
  #Box-4-3-4-Step4 .radio-items-wrapper,
  #Box-5-2-1-Step4 .radio-items-wrapper,
  #Box-5-2-2-Step4 .radio-items-wrapper,
  #Box-5-2-3-Step4 .radio-items-wrapper,
  #Box-5-2-4-Step4 .radio-items-wrapper,
  #Box-6-1-1-Step4 .radio-items-wrapper,
  #Box-6-1-2-Step4 .radio-items-wrapper,
  #Box-6-1-3-Step4 .radio-items-wrapper,
  #Box-6-1-4-Step4 .radio-items-wrapper,
  #Box-7-1-1-Step4 .radio-items-wrapper,
  #Box-7-1-2-Step4 .radio-items-wrapper,
  #Box-7-1-3-Step4 .radio-items-wrapper,
  #Box-7-1-4-Step4 .radio-items-wrapper,
  #Box-7-2-1-Step4 .radio-items-wrapper,
  #Box-7-2-2-Step4 .radio-items-wrapper,
  #Box-7-2-3-Step4 .radio-items-wrapper,
  #Box-7-2-4-Step4 .radio-items-wrapper,
  #Box-1-1-1-1-Step4 .radio-items-wrapper,
  #Box-1-1-2-1-Step4 .radio-items-wrapper,
  .check-items-box,
  #design-price .radio-items-wrapper {
    grid-template-columns: 1fr;
  }

  .check-items-box {
    row-gap: 50px;
  }

  .end-box {
    grid-template-columns: 1fr;
  }
}

@media screen and (max-width: 576px) {
  .form-box {
    padding: 10px;
  }

  .header-title h1 {
    font-size: 20px;
    padding: 0px 10px;
    text-align: center;
  }

  .choose-number-box form select {
    width: 100px;
  }

  .design-need-text-box input {
    padding: 10px 10px 400px 10px;
  }

  .upload-btn-wrapper {
    flex-direction: column;
    align-items: flex-start;
  }

  .upload-btn-message {
    padding-top: 10px;
  }

  .filter-text-box input {
    padding: 10px 10px 200px 10px;
  }

  .input-text-box input {
    padding: 10px 10px 400px 10px;
  }

  .buy-button {
    margin-top: 50px;
  }
}

/* ============================
============================
استایل های اضافه شده فرم بروشور (BROCHURE)
============================
============================ */
#Box-4-3-3-Step4 {
  display: none;
}

#Box-4-3-3-Step4 .radio-items-wrapper {
  grid-template-columns: 1fr 1fr;
}

.Circulation-display {
  padding: 25px 0px;
  border-bottom: 1px var(--gray-color) solid;
}

.lineType-display {
  padding: 25px 0px;
  border-bottom: 1px var(--gray-color) solid;
}

#Box-lineBox-Step5 {
  display: none;
}

#Box-lineBox-Step5 .radio-items-wrapper {
  grid-template-columns: 1fr 1fr;
}

@media screen and (max-width: 630px) {
  #Box-4-3-3-Step4 .radio-items-wrapper,
  #Box-lineBox-Step5 .radio-items-wrapper {
    grid-template-columns: 1fr;
  }
}

/* ============================
============================
استایل های اضافه شده فرم فاکتور (FACTOR)
============================
============================ */
#Box-1-1-2-2-Step4 {
  display: none;
}

#Box-1-1-2-2-Step4 .radio-items-wrapper {
  grid-template-columns: 1fr 1fr;
}

#Box-1-2-1-1-Step4 {
  display: none;
}

#Box-1-2-1-1-Step4 .radio-items-wrapper {
  grid-template-columns: 1fr 1fr;
}

#Box-1-2-1-2-Step4 {
  display: none;
}

#Box-1-2-1-2-Step4 .radio-items-wrapper {
  grid-template-columns: 1fr 1fr;
}

#Box-1-2-1-3-Step4 {
  display: none;
}

#Box-1-2-1-3-Step4 .radio-items-wrapper {
  grid-template-columns: 1fr 1fr;
}

#Box-1-2-2-1-Step4 {
  display: none;
}

#Box-1-2-2-1-Step4 .radio-items-wrapper {
  grid-template-columns: 1fr 1fr;
}

#Box-1-2-2-2-Step4 {
  display: none;
}

#Box-1-2-2-2-Step4 .radio-items-wrapper {
  grid-template-columns: 1fr 1fr;
}

#Box-1-2-2-3-Step4 {
  display: none;
}

#Box-1-2-2-3-Step4 .radio-items-wrapper {
  grid-template-columns: 1fr 1fr;
}

#Box-1-3-1-1-Step4 {
  display: none;
}

#Box-1-3-1-1-Step4 .radio-items-wrapper {
  grid-template-columns: 1fr 1fr;
}

#Box-1-3-1-2-Step4 {
  display: none;
}

#Box-1-3-1-2-Step4 .radio-items-wrapper {
  grid-template-columns: 1fr 1fr;
}

#Box-1-3-1-3-Step4 {
  display: none;
}

#Box-1-3-1-3-Step4 .radio-items-wrapper {
  grid-template-columns: 1fr 1fr;
}

#Box-1-3-2-1-Step4 {
  display: none;
}

#Box-1-3-2-1-Step4 .radio-items-wrapper {
  grid-template-columns: 1fr 1fr;
}

#Box-1-3-2-2-Step4 {
  display: none;
}

#Box-1-3-2-2-Step4 .radio-items-wrapper {
  grid-template-columns: 1fr 1fr;
}

#Box-1-3-2-3-Step4 {
  display: none;
}

#Box-1-3-2-3-Step4 .radio-items-wrapper {
  grid-template-columns: 1fr 1fr;
}

#Box-1-4-1-1-Step4 {
  display: none;
}

#Box-1-4-1-1-Step4 .radio-items-wrapper {
  grid-template-columns: 1fr 1fr;
}

#Box-1-4-1-2-Step4 {
  display: none;
}

#Box-1-4-1-2-Step4 .radio-items-wrapper {
  grid-template-columns: 1fr 1fr;
}

#Box-1-4-1-3-Step4 {
  display: none;
}

#Box-1-4-1-3-Step4 .radio-items-wrapper {
  grid-template-columns: 1fr 1fr;
}

#Box-1-4-2-1-Step4 {
  display: none;
}

#Box-1-4-2-1-Step4 .radio-items-wrapper {
  grid-template-columns: 1fr 1fr;
}

#Box-1-4-2-2-Step4 {
  display: none;
}

#Box-1-4-2-2-Step4 .radio-items-wrapper {
  grid-template-columns: 1fr 1fr;
}

#Box-1-4-2-3-Step4 {
  display: none;
}

#Box-1-4-2-3-Step4 .radio-items-wrapper {
  grid-template-columns: 1fr 1fr;
}

#Box-1-5-1-1-Step4 {
  display: none;
}

#Box-1-5-1-1-Step4 .radio-items-wrapper {
  grid-template-columns: 1fr 1fr;
}

#Box-1-5-1-2-Step4 {
  display: none;
}

#Box-1-5-1-2-Step4 .radio-items-wrapper {
  grid-template-columns: 1fr 1fr;
}

#Box-1-5-2-1-Step4 {
  display: none;
}

#Box-1-5-2-1-Step4 .radio-items-wrapper {
  grid-template-columns: 1fr 1fr;
}

#Box-1-5-2-2-Step4 {
  display: none;
}

#Box-1-5-2-2-Step4 .radio-items-wrapper {
  grid-template-columns: 1fr 1fr;
}

#Box-1-6-1-1-Step4 {
  display: none;
}

#Box-1-6-1-1-Step4 .radio-items-wrapper {
  grid-template-columns: 1fr 1fr;
}

#Box-1-6-1-2-Step4 {
  display: none;
}

#Box-1-6-1-2-Step4 .radio-items-wrapper {
  grid-template-columns: 1fr 1fr;
}


#Box-1-6-1-3-Step4 {
  display: none;
}

#Box-1-6-1-3-Step4 .radio-items-wrapper {
  grid-template-columns: 1fr 1fr;
}

#Box-1-6-2-1-Step4 {
  display: none;
}

#Box-1-6-2-1-Step4 .radio-items-wrapper {
  grid-template-columns: 1fr 1fr;
}

#Box-1-6-2-2-Step4 {
  display: none;
}

#Box-1-6-2-2-Step4 .radio-items-wrapper {
  grid-template-columns: 1fr 1fr;
}

#Box-1-6-2-3-Step4 {
  display: none;
}

#Box-1-6-2-3-Step4 .radio-items-wrapper {
  grid-template-columns: 1fr 1fr;
}

#Box-1-7-1-1-Step4 {
  display: none;
}

#Box-1-7-1-1-Step4 .radio-items-wrapper {
  grid-template-columns: 1fr 1fr;
}

#Box-1-7-1-2-Step4 {
  display: none;
}

#Box-1-7-1-2-Step4 .radio-items-wrapper {
  grid-template-columns: 1fr 1fr;
}

#Box-1-7-1-3-Step4 {
  display: none;
}

#Box-1-7-1-3-Step4 .radio-items-wrapper {
  grid-template-columns: 1fr 1fr;
}

#Box-1-7-2-1-Step4 {
  display: none;
}

#Box-1-7-2-1-Step4 .radio-items-wrapper {
  grid-template-columns: 1fr 1fr;
}

#Box-1-7-2-2-Step4 {
  display: none;
}

#Box-1-7-2-2-Step4 .radio-items-wrapper {
  grid-template-columns: 1fr 1fr;
}

#Box-1-7-2-3-Step4 {
  display: none;
}

#Box-1-7-2-3-Step4 .radio-items-wrapper {
  grid-template-columns: 1fr 1fr;
}

#Box-2-1-1-1-Step4 {
  display: none;
}

#Box-2-1-1-1-Step4 .radio-items-wrapper {
  grid-template-columns: 1fr 1fr;
}

#Box-2-1-1-2-Step4 {
  display: none;
}

#Box-2-1-1-2-Step4 .radio-items-wrapper {
  grid-template-columns: 1fr 1fr;
}

#Box-2-1-2-1-Step4 {
  display: none;
}

#Box-2-1-2-1-Step4 .radio-items-wrapper {
  grid-template-columns: 1fr 1fr;
}

#Box-2-1-2-2-Step4 {
  display: none;
}

#Box-2-1-2-2-Step4 .radio-items-wrapper {
  grid-template-columns: 1fr 1fr;
}

#Box-2-2-1-1-Step4 {
  display: none;
}

#Box-2-2-1-1-Step4 .radio-items-wrapper {
  grid-template-columns: 1fr 1fr;
}

#Box-2-2-1-2-Step4 {
  display: none;
}

#Box-2-2-1-2-Step4 .radio-items-wrapper {
  grid-template-columns: 1fr 1fr;
}

#Box-2-2-1-3-Step4 {
  display: none;
}

#Box-2-2-1-3-Step4 .radio-items-wrapper {
  grid-template-columns: 1fr 1fr;
}

#Box-2-2-2-1-Step4 {
  display: none;
}

#Box-2-2-2-1-Step4 .radio-items-wrapper {
  grid-template-columns: 1fr 1fr;
}

#Box-2-2-2-2-Step4 {
  display: none;
}

#Box-2-2-2-2-Step4 .radio-items-wrapper {
  grid-template-columns: 1fr 1fr;
}

#Box-2-2-2-3-Step4 {
  display: none;
}

#Box-2-2-2-3-Step4 .radio-items-wrapper {
  grid-template-columns: 1fr 1fr;
}

#Box-2-3-1-1-Step4 {
  display: none;
}

#Box-2-3-1-1-Step4 .radio-items-wrapper {
  grid-template-columns: 1fr 1fr;
}

#Box-2-3-1-2-Step4 {
  display: none;
}

#Box-2-3-1-2-Step4 .radio-items-wrapper {
  grid-template-columns: 1fr 1fr;
}

#Box-2-3-1-3-Step4 {
  display: none;
}

#Box-2-3-1-3-Step4 .radio-items-wrapper {
  grid-template-columns: 1fr 1fr;
}

#Box-2-3-2-1-Step4 {
  display: none;
}

#Box-2-3-2-1-Step4 .radio-items-wrapper {
  grid-template-columns: 1fr 1fr;
}

#Box-2-3-2-2-Step4 {
  display: none;
}

#Box-2-3-2-2-Step4 .radio-items-wrapper {
  grid-template-columns: 1fr 1fr;
}

#Box-2-3-2-3-Step4 {
  display: none;
}

#Box-2-3-2-3-Step4 .radio-items-wrapper {
  grid-template-columns: 1fr 1fr;
}

#Box-2-4-1-1-Step4 {
  display: none;
}

#Box-2-4-1-1-Step4 .radio-items-wrapper {
  grid-template-columns: 1fr 1fr;
}

#Box-2-4-1-2-Step4 {
  display: none;
}

#Box-2-4-1-2-Step4 .radio-items-wrapper {
  grid-template-columns: 1fr 1fr;
}

#Box-2-4-1-3-Step4 {
  display: none;
}

#Box-2-4-1-3-Step4 .radio-items-wrapper {
  grid-template-columns: 1fr 1fr;
}

#Box-2-4-2-1-Step4 {
  display: none;
}

#Box-2-4-2-1-Step4 .radio-items-wrapper {
  grid-template-columns: 1fr 1fr;
}

#Box-2-4-2-2-Step4 {
  display: none;
}

#Box-2-4-2-2-Step4 .radio-items-wrapper {
  grid-template-columns: 1fr 1fr;
}

#Box-2-4-2-3-Step4 {
  display: none;
}

#Box-2-4-2-3-Step4 .radio-items-wrapper {
  grid-template-columns: 1fr 1fr;
}

#Box-2-5-1-1-Step4 {
  display: none;
}

#Box-2-5-1-1-Step4 .radio-items-wrapper {
  grid-template-columns: 1fr 1fr;
}

#Box-2-5-1-2-Step4 {
  display: none;
}

#Box-2-5-1-2-Step4 .radio-items-wrapper {
  grid-template-columns: 1fr 1fr;
}

#Box-2-5-2-1-Step4 {
  display: none;
}

#Box-2-5-2-1-Step4 .radio-items-wrapper {
  grid-template-columns: 1fr 1fr;
}

#Box-2-5-2-2-Step4 {
  display: none;
}

#Box-2-5-2-2-Step4 .radio-items-wrapper {
  grid-template-columns: 1fr 1fr;
}

#Box-2-6-1-1-Step4 .radio-items-wrapper {
  grid-template-columns: 1fr 1fr;
}

#Box-2-6-1-1-Step4 {
  display: none;
}

#Box-2-6-1-2-Step4 .radio-items-wrapper {
  grid-template-columns: 1fr 1fr;
}

#Box-2-6-1-2-Step4 {
  display: none;
}ر

#Box-2-6-1-3-Step4 .radio-items-wrapper {
  grid-template-columns: 1fr 1fr;
}

#Box-2-6-1-3-Step4 {
  display: none;
}

#Box-2-6-2-1-Step4 .radio-items-wrapper {
  grid-template-columns: 1fr 1fr;
}

#Box-2-6-2-1-Step4 {
  display: none;
}

#Box-2-6-2-2-Step4 .radio-items-wrapper {
  grid-template-columns: 1fr 1fr;
}

#Box-2-6-2-2-Step4 {
  display: none;
}

#Box-2-6-2-3-Step4 .radio-items-wrapper {
  grid-template-columns: 1fr 1fr;
}

#Box-2-6-2-3-Step4 {
  display: none;
}

#Box-2-7-1-1-Step4 .radio-items-wrapper {
  grid-template-columns: 1fr 1fr;
}

#Box-2-7-1-1-Step4 {
  display: none;
}

#Box-2-7-1-2-Step4 .radio-items-wrapper {
  grid-template-columns: 1fr 1fr;
}

#Box-2-7-1-2-Step4 {
  display: none;
}

#Box-2-7-1-3-Step4 .radio-items-wrapper {
  grid-template-columns: 1fr 1fr;
}

#Box-2-7-1-3-Step4 {
  display: none;
}

#Box-2-7-2-1-Step4 .radio-items-wrapper {
  grid-template-columns: 1fr 1fr;
}

#Box-2-7-2-1-Step4 {
  display: none;
}

#Box-2-7-2-2-Step4 .radio-items-wrapper {
  grid-template-columns: 1fr 1fr;
}

#Box-2-7-2-2-Step4 {
  display: none;
}

#Box-2-7-2-3-Step4 .radio-items-wrapper {
  grid-template-columns: 1fr 1fr;
}

#Box-2-7-2-3-Step4 {
  display: none;
}

.sheetsNumber-display {
  padding: 25px 0px;
  border-bottom: 1px var(--gray-color) solid;
}

.model-display {
  padding: 25px 0px;
  border-bottom: 1px var(--gray-color) solid;
}

.binding-display {
  padding: 25px 0px;
  border-bottom: 1px var(--gray-color) solid;
}

#Box-bindingBox-Step5 {
  display: none;
}

#Box-bindingBox-Step5 .radio-items-wrapper {
  grid-template-columns: 1fr 1fr;
}

@media screen and (max-width: 630px) {
  #Box-bindingBox-Step5 .radio-items-wrapper {
    grid-template-columns: 1fr;
  }
}

@media screen and (max-width: 630px) {
  #Box-1-1-2-2-Step4 .radio-items-wrapper,
  #Box-1-2-1-1-Step4 .radio-items-wrapper,
  #Box-1-2-1-2-Step4 .radio-items-wrapper,
  #Box-1-2-1-3-Step4 .radio-items-wrapper,
  #Box-1-2-2-1-Step4 .radio-items-wrapper,
  #Box-1-2-2-2-Step4 .radio-items-wrapper,
  #Box-1-2-2-3-Step4 .radio-items-wrapper,
  #Box-1-3-1-1-Step4 .radio-items-wrapper,
  #Box-1-3-1-2-Step4 .radio-items-wrapper,
  #Box-1-3-1-3-Step4 .radio-items-wrapper,
  #Box-1-3-2-1-Step4 .radio-items-wrapper,
  #Box-1-3-2-2-Step4 .radio-items-wrapper,
  #Box-1-3-2-3-Step4 .radio-items-wrapper,
  #Box-1-4-1-1-Step4 .radio-items-wrapper,
  #Box-1-4-1-2-Step4 .radio-items-wrapper,
  #Box-1-4-1-3-Step4 .radio-items-wrapper,
  #Box-1-4-2-1-Step4 .radio-items-wrapper,
  #Box-1-4-2-2-Step4 .radio-items-wrapper,
  #Box-1-4-2-3-Step4 .radio-items-wrapper,
  #Box-1-5-1-1-Step4 .radio-items-wrapper,
  #Box-1-5-1-2-Step4 .radio-items-wrapper,
  #Box-1-5-2-1-Step4 .radio-items-wrapper,
  #Box-1-5-2-2-Step4 .radio-items-wrapper,
  #Box-1-6-1-1-Step4 .radio-items-wrapper,
  #Box-1-6-1-2-Step4 .radio-items-wrapper,
  #Box-1-6-1-3-Step4 .radio-items-wrapper,
  #Box-1-6-2-1-Step4 .radio-items-wrapper,
  #Box-1-6-2-2-Step4 .radio-items-wrapper,
  #Box-1-6-2-3-Step4 .radio-items-wrapper,
  #Box-1-7-1-1-Step4 .radio-items-wrapper,
  #Box-1-7-1-2-Step4 .radio-items-wrapper,
  #Box-1-7-1-3-Step4 .radio-items-wrapper,
  #Box-1-7-2-1-Step4 .radio-items-wrapper,
  #Box-1-7-2-2-Step4 .radio-items-wrapper,
  #Box-1-7-2-3-Step4 .radio-items-wrapper,
  #Box-2-1-1-1-Step4 .radio-items-wrapper,
  #Box-2-1-1-2-Step4 .radio-items-wrapper,
  #Box-2-1-2-1-Step4 .radio-items-wrapper,
  #Box-2-1-2-2-Step4 .radio-items-wrapper,
  #Box-2-2-1-1-Step4 .radio-items-wrapper,
  #Box-2-2-1-2-Step4 .radio-items-wrapper,
  #Box-2-2-1-3-Step4 .radio-items-wrapper,
  #Box-2-3-1-1-Step4 .radio-items-wrapper,
  #Box-2-3-1-2-Step4 .radio-items-wrapper,
  #Box-2-3-1-3-Step4 .radio-items-wrapper,
  #Box-2-3-2-1-Step4 .radio-items-wrapper,
  #Box-2-3-2-2-Step4 .radio-items-wrapper,
  #Box-2-3-2-3-Step4 .radio-items-wrapper,
  #Box-2-4-1-1-Step4 .radio-items-wrapper,
  #Box-2-4-1-2-Step4 .radio-items-wrapper,
  #Box-2-4-1-3-Step4 .radio-items-wrapper,
  #Box-2-4-2-1-Step4 .radio-items-wrapper,
  #Box-2-4-2-2-Step4 .radio-items-wrapper,
  #Box-2-4-2-3-Step4 .radio-items-wrapper,
  #Box-2-5-1-1-Step4 .radio-items-wrapper,
  #Box-2-5-1-2-Step4 .radio-items-wrapper,
  #Box-2-5-2-1-Step4 .radio-items-wrapper,
  #Box-2-5-2-2-Step4 .radio-items-wrapper,
  #Box-2-6-1-1-Step4 .radio-items-wrapper,
  #Box-2-6-1-2-Step4 .radio-items-wrapper,
  #Box-2-6-1-3-Step4 .radio-items-wrapper,
  #Box-2-6-2-1-Step4 .radio-items-wrapper,
  #Box-2-6-2-2-Step4 .radio-items-wrapper,
  #Box-2-6-2-3-Step4 .radio-items-wrapper,
  #Box-2-7-1-1-Step4 .radio-items-wrapper,
  #Box-2-7-1-2-Step4 .radio-items-wrapper,
  #Box-2-7-1-3-Step4 .radio-items-wrapper,
  #Box-2-7-2-1-Step4 .radio-items-wrapper,
  #Box-2-7-2-2-Step4 .radio-items-wrapper,
  #Box-2-7-2-3-Step4 .radio-items-wrapper  {
    grid-template-columns: 1fr 1fr;
  }
}


/* ============================
============================
استایل های اضافه شده فرم پرچم (FLAG)
============================
============================ */
:root {
    /* ********* NEW COLORS ********* */
    --alert-green-color: #2abb72;
    --alert-red-color: #ce4141;
}

.printType-display {
    padding: 25px 0px;
    border-bottom: 1px var(--gray-color) solid;
}

#firstBox-Step3 {
    display: none;
}

#firstBox-Step3 .radio-items-wrapper {
    grid-template-columns: 1fr 1fr;
}

#secondBox-Step3 {
    display: none;
}

#secondBox-Step3 .radio-items-wrapper {
    grid-template-columns: 1fr 1fr;
}

#thirdBox-Step3 {
    display: none;
}

#thirdBox-Step3 .radio-items-wrapper {
    grid-template-columns: 1fr 1fr;
}

#firstBox-Step4 {
    display: none;
}

#firstBox-Step4 .radio-items-wrapper {
    grid-template-columns: 1fr 1fr;
}

#secondBox-Step4 {
    display: none;
}

#secondBox-Step4 .radio-items-wrapper {
    grid-template-columns: 1fr 1fr;
}

#thirdBox-Step4 {
    display: none;
}

#thirdBox-Step4 .radio-items-wrapper {
    grid-template-columns: 1fr 1fr;
}

#fourthBox-Step4 {
    display: none;
}

#fourthBox-Step4 .radio-items-wrapper {
    grid-template-columns: 1fr 1fr;
}

#firstBox-Step5 {
    display: none;
}

#firstBox-Step5 .radio-items-wrapper {
    grid-template-columns: 1fr 1fr;
}

.color-box {
    padding: 25px 0px;
    border-bottom: 1px solid var(--gray-color);
    display: none;
}

.color-box p {
    padding: 15px 0px;
}

.color-box input {
    margin-top: 30px;
    width: 200px;
    border: none;
    outline: none;
    padding: 8px;
    background-color: var(--cold-white-color);
    color: var(--dark-color);
    border-radius: 5px;
}

.alert-message-box {
    position: fixed;
    z-index: 20000;
    top: 30px;
    left: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--alert-green-color);
    padding: 30px 40px;
    color: var(--white-color);
    border-radius: 10px;
    display: none;
    -webkit-box-shadow: 0px 0px 29px 3px rgba(0, 0, 0, 0.75);
    -moz-box-shadow: 0px 0px 29px 3px rgba(0, 0, 0, 0.75);
    box-shadow: 0px 0px 29px 3px rgba(0, 0, 0, 0.75);
}

.alert-message-box i {
    position: absolute;
    right: 10px;
    top: 10px;
    font-size: 25px;
    cursor: pointer;
}

.alert-message-box p {
    font-size: 18px;
    text-align: center;
    padding-top: 10px;
}

@media screen and (max-width: 630px) {
    #firstBox-Step3 .radio-items-wrapper,
    #secondBox-Step3 .radio-items-wrapper,
    #thirdBox-Step3 .radio-items-wrapper,
    #firstBox-Step4 .radio-items-wrapper,
    #secondBox-Step4 .radio-items-wrapper,
    #thirdBox-Step4 .radio-items-wrapper,
    #fourthBox-Step4 .radio-items-wrapper,
    #firstBox-Step5 .radio-items-wrapper {
        grid-template-columns: 1fr;
    }
}

/* ============================
============================
استایل های اضافه شده فرم لیوان (GLASS)
============================
============================ */
.cupType-display {
    padding: 25px 0px;
    border-bottom: 1px var(--gray-color) solid;
}

.packing-display {
    padding: 25px 0px;
    border-bottom: 1px var(--gray-color) solid;
}

.packing-box {
    padding: 25px 0px;
    border-bottom: 1px solid var(--gray-color);
}

.packing-box input {
    margin: 20px 0px;
}

.packing-box p {
    padding: 5px 0px;
}

.packing-box img {
    height: 300px;
    width: 300px;
    border-radius: 10px;
    margin-top: 25px;
}

@media screen and (max-width: 630px) {
    .packing-box img {
        height: 230px;
        width: 230px;
    }
}

/* ============================
============================
استایل های اضافه شده فرم تیشرت (SHIRT)
============================
============================ */
.shirt-size-box {
    padding: 25px 0px;
    border-bottom: 1px solid var(--gray-color);
}

#text-shirt-size {
    padding: 20px 0px;
}

.size-list {
    padding: 10px 0px;
}

.size-list h4 {
    padding-top: 20px;
    padding-bottom: 5px;
}

.shirt-size-box input {
    border: none;
    outline: none;
    background-color: var(--cold-white-color);
    padding: 10px;
    border-radius: 5px;
    width: 100%;
    padding-bottom: 50px;
    margin-top: 25px;
}

@media screen and (max-width: 630px) {
    .shirt-size-box input {
        padding-bottom: 150px;
    }
}

/* ============================
============================
استایل های اضافه شده فرم ساخت مهر (STAMP)
============================
============================ */
.license-send-file-box {
    padding: 25px 0px;
    border-bottom: 1px solid var(--gray-color);
}

.license-send-file-box p {
    padding: 20px 0px;
}

.brand-display {
    padding: 25px 0px;
    border-bottom: 1px var(--gray-color) solid;
}

/* ============================
============================
استایل های اضافه شده فرم عکس و شاسی (IMAGE)
============================
============================ */
.sizeItem-display {
    padding: 25px 0px;
    border-bottom: 1px var(--gray-color) solid;
}

.editItem-display {
    padding: 25px 0px;
    border-bottom: 1px var(--gray-color) solid;
}

.image-items-box {
    padding: 25px 0px;
    border-bottom: 1px solid var(--gray-color);
}

.image-items-box .items-wrapper {
    padding-top: 25px;
}

.image-items-box .items-wrapper .item-box {
    padding-top: 15px;
}



.form-page-title {
    background: #bdc3c7;  /* fallback for old browsers */
    background: -webkit-linear-gradient(to right, #2c3e50, #bdc3c7);  /* Chrome 10-25, Safari 5.1-6 */
    background: linear-gradient(to right, #2c3e50, #bdc3c7); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
    border-radius: 5px;
    padding: 15px;
}

.form-page-title h1 {
    color: var(--cold-white-color);
    text-align: center;
}

.send-file-design-need-box .upload-btn-message {
    max-width: 300px;
}

.end-box {
    padding: 40px 0px;
}

.buy-button {
    transition: 0.3s;
}

.buy-button:hover {
    background-color: var(--dark-color);
}

.second-price-box {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--orange-color);
    width: 100%;
    padding: 20px 10px;
    position: fixed;
    bottom: 0;
}

.second-price-box p {
    font-size: 18px;
    padding-right: 10px;
    color: var(--white-color);
    font-weight: 600;
}

.golden-send-file-box {
    padding: 25px 0px;
    display: none;
}

.goldenBack-send-file-box {
    padding: 25px 0px;
    display: none;
}

.input-text-box p {
    padding-top: 10px;
}

#cover-items-box {
    display: none;
}

#cover-items-box .radio-items-wrapper {
    grid-template-columns: 1fr 1fr 1fr;
}

#read-items-box {
    display: none;
}

#read-items-box .radio-items-wrapper {
    grid-template-columns: 1fr 1fr;
}

.read-display {
    padding: 25px 0px;
    border-bottom: 1px var(--gray-color) solid;
}

.uv-send-file-box {
    padding: 25px 0px;
    display: none;
}

.uvBack-send-file-box {
    padding: 25px 0px;
    display: none;
}

.golden-display {
    padding: 25px 0px;
    border-bottom: 1px var(--gray-color) solid;
}

#golden-Box {
    display: none;
}

#golden-Box .radio-items-wrapper {
    grid-template-columns: 1fr 1fr 1fr;
}

#cover-box {
    display: none;
}

#cover-box .radio-items-wrapper {
    grid-template-columns: 1fr 1fr;
}

#services-checkbox {
    display: none;
}

.uvTextBox {
    padding: 25px 0px;
    display: none;
}

.uvTextBox input {
    margin: 10px 0px;
    width: 100%;
    border: none;
    outline: none;
    border-radius: 10px;
    background-color: var(--cold-white-color);
    padding: 10px 10px 70px 10px;
}

.lineBox-images {
    padding: 25px 0px;
    justify-content: center;
    align-items: center;
    border-bottom: 1px solid var(--gray-color);
    display: none;
}

.image-box-wrapper {
    max-width: 300px;
}

.image-box-wrapper img {
    border-radius: 5px;
}

.number-input-box {
    padding-top: 20px;
}

#numberCode-box {
    display: none;
}

.number-input-box h2 {
    padding-bottom: 10px;
}

#services-box {
    display: none;
}

.services-wrapper {
    padding-top: 10px;
}

.services-wrapper input {
    margin-right: 10px;
}

@media screen and (max-width: 850px) {
    .form-box {
        margin:0px;
    }
}

@media screen and (max-width: 630px) {
    #cover-items-box .radio-items-wrapper,
    #read-items-box .radio-items-wrapper,
    #golden-Box .radio-items-wrapper,
    #cover-box .radio-items-wrapper {
        grid-template-columns: 1fr;
    }
}

@media screen and (max-width: 550px) {
    .second-price-box p {
        font-size: 16px;
    }
}

#firstBox-item1-Step3 {
    display: none;
}

#firstBox-item1-Step3 .radio-items-wrapper {
    grid-template-columns: 1fr 1fr 1fr;
}

#secondBox-item1-Step3 {
    display: none;
}

#secondBox-item1-Step3 .radio-items-wrapper {
    grid-template-columns: 1fr 1fr 1fr;
}

#thirdBox-item1-Step3 {
    display: none;
}

#thirdBox-item1-Step3 .radio-items-wrapper {
    grid-template-columns: 1fr 1fr 1fr;
}

#firstBox-item2-Step3 {
    display: none;
}

#firstBox-item2-Step3 .radio-items-wrapper {
    grid-template-columns: 1fr 1fr 1fr;
}

#secondBox-item2-Step3 {
    display: none;
}

#secondBox-item2-Step3 .radio-items-wrapper {
    grid-template-columns: 1fr 1fr 1fr;
}

#thirdBox-item2-Step3 {
    display: none;
}

#thirdBox-item2-Step3 .radio-items-wrapper {
    grid-template-columns: 1fr 1fr 1fr;
}

#firstBox-item3-Step3 {
    display: none;
}

#firstBox-item3-Step3 .radio-items-wrapper {
    grid-template-columns: 1fr 1fr 1fr;
}

#firstBox-item4-Step3 {
    display: none;
}

#firstBox-item4-Step3 .radio-items-wrapper {
    grid-template-columns: 1fr 1fr 1fr;
}

#secondBox-item4-Step3 {
    display: none;
}

#secondBox-item4-Step3 .radio-items-wrapper {
    grid-template-columns: 1fr 1fr 1fr;
}

@media screen and (max-width: 630px) {
    #firstBox-item1-Step3 .radio-items-wrapper,
    #secondBox-item1-Step3 .radio-items-wrapper,
    #thirdBox-item1-Step3 .radio-items-wrapper,
    #firstBox-item2-Step3 .radio-items-wrapper,
    #secondBox-item2-Step3 .radio-items-wrapper,
    #thirdBox-item2-Step3 .radio-items-wrapper,
    #firstBox-item3-Step3 .radio-items-wrapper,
    #firstBox-item4-Step3 .radio-items-wrapper,
    #secondBox-item4-Step3 .radio-items-wrapper {
        grid-template-columns: 1fr;
    }
}


.meterage-box {
    padding: 25px 0px;
    border-bottom: 1px solid var(--gray-color);
}

.meterage-box .title-box {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 10px 0px;
}

.meterage-input-box {
    padding-top: 30px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.meterage-input-box input {
    margin: 15px 0px;
    border: none;
    outline: none;
    background-color: var(--cold-white-color);
    padding: 10px;
    width: 250px;
    border-radius: 10px;
}

.meterageBtn {
    padding: 5px 20px;
    border: none;
    outline: none;
    background-color: var(--orange-color);
    border-radius: 5px;
    cursor: pointer;
    font-size: 16;
    transition: 0.4s;
}

.meterageBtn:hover {
    background-color: var(--dark-color);
    color: var(--white-color);
}

.meterage-price-box {
    padding: 10px;
}

.coordination-box {
    padding: 25px 0px;
    border-bottom: 1px solid var(--gray-color);
}

.coordination-box .title-box {
    margin-bottom: 15px;
}

.coordination-item-box {
    padding: 15px 0px;
}
