  /*
      Common 
  */
  
  .wizard, .tabcontrol
  {
      display: block;
      width: 100%;
      /* overflow: hidden; */
  }
  
  .wizard a,
  .tabcontrol a
  {
      outline: 0;
  }
  
  .wizard ul,
  .tabcontrol ul
  {
      list-style: none !important;
      padding: 0;
      margin: 0;
  }
  
  .wizard ul > li,
  .tabcontrol ul > li
  {
      display: block;
      padding: 0;
  }
  
  /* Accessibility */
  .wizard > .steps .current-info,
  .tabcontrol > .steps .current-info
  {
      position: absolute;
      left: -999em;
  }
  
  .wizard > .content > .title,
  .tabcontrol > .content > .title
  {
      position: absolute;
      left: -999em;
  }
  
  
  
  /*
      Wizard
  */
  
  .wizard > .steps
  {
      position: relative;
      display: block;
      width: 100%;
  }
  
  .wizard.vertical > .steps
  {
      display: inline;
      float: left;
      width: 30%;
  }
  
  .wizard > .steps .number
  {
      font-size: 1.429em;
  }
  
  .wizard > .steps > ul > li
  {
      width: 25%;
  }
  
  .wizard > .steps > ul > li,
  .wizard > .actions > ul > li
  {
      float: left;
  }
  
  .wizard.vertical > .steps > ul > li
  {
      float: none;
      width: 100%;
  }
  
  .wizard > .steps a,
  .wizard > .steps a:hover,
  .wizard > .steps a:active
  {
      display: block;
      width: auto;
      margin: 0 0.5em 0.5em;
      padding: 1em 1em;
      text-decoration: none;
  
      -webkit-border-radius: 5px;
      -moz-border-radius: 5px;
      border-radius: 5px;
  }
  
  .wizard > .steps .disabled a,
  .wizard > .steps .disabled a:hover,
  .wizard > .steps .disabled a:active
  {
      background: #eee;
      color: #aaa;
      cursor: default;
  }
  
  .wizard > .steps .current a,
  .wizard > .steps .current a:hover,
  .wizard > .steps .current a:active
  {
      background: #fcfcfc;
      color: #111;
      cursor: default;
  }
  
  .wizard > .steps .done a,
  .wizard > .steps .done a:hover,
  .wizard > .steps .done a:active
  {
      background: #4CAF50;
      color: #fff;
  }
  
  .wizard > .steps .error a,
  .wizard > .steps .error a:hover,
  .wizard > .steps .error a:active
  {
      background: #ff3111;
      color: #fff;
  }
  
  .wizard > .content
  {
      background: #eee;
      display: block;
      margin: 0.5em;
/*      min-height: 38em;*/
      /* overflow: hidden; */
      position: relative;
      width: auto;
  
      -webkit-border-radius: 5px;
      -moz-border-radius: 5px;
      border-radius: 5px;
  }
  
  .wizard.vertical > .content
  {
      display: inline;
      float: left;
      margin: 0 2.5% 0.5em 2.5%;
      width: 65%;
  }
  
  .wizard > .content > .body
  {
      float: left;
      position: absolute;
      /* width: 95%;
      height: 95%; */
      padding: 2.5%;
  }
  
  .wizard > .content > .body ul
  {
      list-style: disc !important;
  }
  
  .wizard > .content > .body ul > li
  {
      display: list-item;
  }
  
  .wizard > .content > .body > iframe
  {
      border: 0 none;
      width: 100%;
      height: 100%;
  }
  
  .wizard > .content > .body input
  {
      display: block;
      border: 1px solid #ccc;
  }
  
  .wizard > .content > .body input[type="checkbox"]
  {
      display: inline-block;
  }
  
  .wizard > .content > .body input.error
  {
      /* background: rgb(251, 227, 228); */
      /* border: 1px solid #fbc2c4; */
      /* color: #8a1f11; */
  }
  
  .wizard > .content > .body label
  {
      display: inline-block;
      margin-bottom: 0.5em;
  }
  
  .wizard > .content > .body label.error
  {
      color: #8a1f11;
      display: inline-block;
      margin-left: 1.5em;
  }
  
  .wizard > .actions
  {
      position: relative;
      display: block;
      text-align: right;
      width: 100%;
  }
  
  .wizard.vertical > .actions
  {
      display: inline;
      float: right;
      margin: 0 2.5%;
      width: 95%;
  }
  
  .wizard > .actions > ul
  {
      display: inline-block;
      text-align: right;
  }
  
  .wizard > .actions > ul > li
  {
      margin: 0 0.5em;
  }
  
  .wizard.vertical > .actions > ul > li
  {
      margin: 0 0 0 1em;
  }
  
  .wizard > .actions a,
  .wizard > .actions a:hover,
  .wizard > .actions a:active
  {
      background: #2184be;
      color: #fff;
      display: block;
      padding: 0.5em 1em;
      text-decoration: none;
  
      -webkit-border-radius: 5px;
      -moz-border-radius: 5px;
      border-radius: 5px;
  }
  
  .wizard > .actions .disabled a,
  .wizard > .actions .disabled a:hover,
  .wizard > .actions .disabled a:active
  {
      background: #eee;
      color: #aaa;
  }
  
  
  /*
      Tabcontrol
  */
  
  .tabcontrol > .steps
  {
      position: relative;
      display: block;
      width: 100%;
  }
  
  .tabcontrol > .steps > ul
  {
      position: relative;
      margin: 6px 0 0 0;
      top: 1px;
      z-index: 1;
  }
  
  .tabcontrol > .steps > ul > li
  {
      float: left;
      margin: 5px 2px 0 0;
      padding: 1px;
  
      -webkit-border-top-left-radius: 5px;
      -webkit-border-top-right-radius: 5px;
      -moz-border-radius-topleft: 5px;
      -moz-border-radius-topright: 5px;
      border-top-left-radius: 5px;
      border-top-right-radius: 5px;
  }
  
  .tabcontrol > .steps > ul > li:hover
  {
      background: #edecec;
      border: 1px solid #bbb;
      padding: 0;
  }
  
  .tabcontrol > .steps > ul > li.current
  {
      background: #fff;
      border: 1px solid #bbb;
      border-bottom: 0 none;
      padding: 0 0 1px 0;
      margin-top: 0;
  }
  
  .tabcontrol > .steps > ul > li > a
  {
      color: #5f5f5f;
      display: inline-block;
      border: 0 none;
      margin: 0;
      padding: 10px 30px;
      text-decoration: none;
  }
  
  .tabcontrol > .steps > ul > li > a:hover
  {
      text-decoration: none;
  }
  
  .tabcontrol > .steps > ul > li.current > a
  {
      padding: 15px 30px 10px 30px;
  }
  
  .tabcontrol > .content
  {
      position: relative;
      display: inline-block;
      width: 100%;
      height: 35em;
      overflow: hidden;
      border-top: 1px solid #bbb;
      padding-top: 20px;
  }
  
  .tabcontrol > .content > .body
  {
      float: left;
      position: absolute;
      width: 95%;
      height: 95%;
      padding: 2.5%;
  }
  
  .tabcontrol > .content > .body ul
  {
      list-style: disc !important;
  }
  
  .tabcontrol > .content > .body ul > li
  {
      display: list-item;
  }

  #contact input[type="text"],
  #contact input[type="email"],
  #contact input[type="tel"],
  #contact input[type="url"],
  #contact textarea,
  #contact button[type="submit"] {
    font: 400 12px/16px "Titillium Web", Helvetica, Arial, sans-serif;
  }
  
  #contact {
    background: #F9F9F9;
    padding: 25px; 
    box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.2), 0 5px 5px 0 rgba(0, 0, 0, 0.24);
  }
  
  #contact h3 {
    display: block;
    font-size: var(--h3-desktop); /*30px*/
    font-weight: 300;
    margin-bottom: 10px;
  }
  
  #contact h4 {
    margin: 5px 0 15px;
    display: block;
    font-size: var(--h4-desktop); /*13px*/
    font-weight: 400;
  }
  
  fieldset {
    border: medium none !important;
    margin: 0 0 10px;
    min-width: 100%;
    padding: 0;
    width: 100%;
  }
  
  #contact input[type="text"],
  #contact input[type="email"],
  #contact input[type="tel"],
  #contact input[type="url"],
  #contact textarea {
    width: 100%;
    border: 1px solid #ccc;
    background: #FFF;
    margin: 0 0 5px;
    padding: 10px;
  }
  
  #contact input[type="text"]:hover,
  #contact input[type="email"]:hover,
  #contact input[type="tel"]:hover,
  #contact input[type="url"]:hover,
  #contact textarea:hover {
    -webkit-transition: border-color 0.3s ease-in-out;
    -moz-transition: border-color 0.3s ease-in-out;
    transition: border-color 0.3s ease-in-out;
    border: 1px solid #aaa;
  }
  
  #contact textarea {
    height: 100px;
    max-width: 100%;
    resize: none;
  }
  
  #contact button[type="submit"] {
    cursor: pointer;
    width: 100%;
    border: none;
    background: #4CAF50;
    color: #FFF;
    margin: 0 0 5px;
    padding: 10px;
    font-size: 15px;
  }
  
  #contact button[type="submit"]:hover {
    background: #43A047;
    -webkit-transition: background 0.3s ease-in-out;
    -moz-transition: background 0.3s ease-in-out;
    transition: background-color 0.3s ease-in-out;
  }
  
  #contact button[type="submit"]:active {
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.5);
  }
  
  .copyright {
    text-align: center;
  }
  
  #contact input:focus,
  #contact textarea:focus {
    outline: 0;
    border: 1px solid #aaa;
  }
  
  ::-webkit-input-placeholder {
    color: #888;
  }
  
  :-moz-placeholder {
    color: #888;
  }
  
  ::-moz-placeholder {
    color: #888;
  }
  
  :-ms-input-placeholder {
    color: #888;
  }
  
  .steps > ul > li > a,
  .actions li a { 
      padding: 10px;
      text-decoration: none;
      margin: 1px;
      display: block;
      color: #777;
  }
  .steps > ul > li,
  .actions li {
      list-style:none;
  }

  .kitchen-design-tool-container{
    margin: 30px 0px;
  }


/*New  Styles for form  */

.wizard > .content > .body
{
    float: none;
    position: relative;

}

/* Construction Step */
h3.kd_title {
    color: var(--kc-primary);
    font-size: var(--h5-desktop); /*28px*/
    text-align: center;
    font-weight: 700;
    margin: 0px;
    text-transform: uppercase;
}
.kd_title_wrap {
    margin-bottom: 20px;
}
/* span.prev_btn_kc {
    display: none;
} */
section#steps-uid-0-p-0 {
    background: white;
}
.kc_option_main {
    display: flex;
    justify-content: center;
    /* align-items: center; */
}
.kc_frame_option_item input {
    display: none;
}
.kc_frame_option {
    padding: 40px;
    border: 1px solid #d8dadb;
    position: relative;
    height: 100%;
    cursor: pointer;
}
.kc_frame_option_item:nth-child(2) .kc_frame_option{
   margin-left: -1px;
}
.kc_frame_option ul li {
    list-style-type: none;
    font-size: 15px;
    padding-left: 4px;
    line-height: 1.8em;
    font-weight: 500;
}
span.kc_frame_badge {
    position: absolute;
    border: 1px solid;
    border-radius: 25px;
    height: 28px;
    width: 28px;
    line-height: 28px;
    text-align: center;
    margin: 20px 20px 0px;
    top: 0;
    right: 0;
    border-color: var(--kc-primary);
    color: var(--kc-primary);
    font-size: 14px;
}
.kc_image {
    height: 270px;
    margin-bottom: 15px;
    width: 320px;
}
.kc_image>img {
    height: 100%;
    object-fit: contain;
    width: 100%;
}
.kc_frame_desc {
    margin: 0px 15px;
}
.kc_frame_desc h5 {
    color: var(--kc-primary);
    font-weight: 700;
    font-size: var(--h5-desktop); /*16px*/
}
.kc_frame_option ul li::before {
    content: "";
    font-family: "Font Awesome 5 Free";
    content: "\f00c";
    display: inline-block;
    padding-right: 8px;
    vertical-align: middle;
    font-weight: 600;
    color: var(--kc-primary);
}

.kc_option_main input{
   visibility: hidden;
   height: 0;
    width: 0;
}

.kc_frame_option:hover {
    background: #d4e7ff;
    border-color: var(--kc-primary);
    z-index: 2;
}

.kc_frame_option:hover span.kc_frame_badge {
    background: var(--kc-primary);
    color: white;
}
.kc_option_main input:checked+label span.kc_frame_badge {
    background: var(--kc-primary);
    color: white;
}
.kc_option_main input:checked+label .kc_frame_option {
    border: 1px solid var(--kc-primary);
    background-color: #d4e7ff;
    z-index: 2;
}
.kc_frame_option_item label {
    height: 100%;
}
.wizard > .content{
    background-color: #fff;
}

/* Choose Door Style */
.door_img_items label img {
    width: 51px;
    height: 89px;
}


.kc_choose_door_main {
    display: flex;
}

.door_img_desc img {
    max-width: 200px;
}

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

.door_img_items {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 10px;
    padding: 30px 50px;
    border: 1px solid #d8dadb;
    background: #edf3fb;
    height: 500px;
    overflow-y: auto;
    overflow-x: overlay;
}

.door_img_items>input {
    display: none !important;
}

.door_item {
    padding: 9px 10px;
    background: white;
    border-radius: 7px;
    border: 1px solid #d8dadb;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    cursor: pointer;
}

.door_item>h5 {
    margin: 0;
    font-size: var(--h5-desktop); /*13px*/
    font-weight: 600;
    padding-top: 10px;
    text-align: center;
}


.door_img_items {
    width: 365px;
}

.door_style_sec {
    width: 100%;
}

section#steps-uid-0-p-1 {
    /* padding: 2.5% 0px; */
}

.door_desc_inner {
    padding: 30px;
}


.door_img_items input:checked+label .door_item{
    border-color: green;
}
.door_item{
    position:relative;
}
.door_img_items input:checked+label .door_item::before{
    content: "\f00c";
    font-family:"Font Awesome 5 Free";
    font-weight:700;
    color:green;
    position: absolute;
    margin: 5px 10px 0px 0px;
    top: 0;
    right: 0;
}
.door_desc_inner>h4 {
    font-size: var(--h4-desktop); /*19px*/
    font-weight: 600;
    color: var(--kc-primary);
}

.door_desc_inner>p {
    font-size: var(--p-desktop); /*15px*/
    line-height: 1.3;
}

.door_desc_inner>ul {
    padding-left: 20px;
    font-size: 15px;
}

p.kc_door_p {
    color: var(--kc-primary);
    font-weight: 500;
    margin-top: 20px;
}

.door_img_desc {
    padding: 10px;
}
.door_desc_wrap ul {
    font-size: 14px;
}
.shaker_opt_wrap>input {
    visibility: hidden;
    width: 0;
    height: 0;
}

.shaker_opt_wrap>label {
    width: 100%;
}

.door_style_container {
    width: calc(100% - 365px);
    padding: 40px;
}
/* Top List Nav Styles */
form#kitchen-design-tool .steps li{
    position:relative;
    padding: 12px 0px 12px 35px;
    margin: 0;
    background: var(--kc-lighter-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    padding-left: 34px;
    transition: none;
}
form#kitchen-design-tool .steps a{
    padding:0;
    background:none;
    margin: 0;
    font-weight: 600;
    color: white;
    width: 100%;
    text-align: center;
}
form#kitchen-design-tool .steps li::before {
    content: "";
    width: 0;
    height: 0;
    border-width: 20px;
    border-style: solid;
    border-color: #ffffff transparent transparent #ffffff;
    display: block;
    position: absolute;
    rotate: 135deg;
    right: -20px;
    top: 5px;
    z-index: 3;
    /* margin-top: -4px; */
}
form#kitchen-design-tool .steps li::after {
   content: "";
   width: 0;
   height: 0;
   border-width: 18px;
   border-style: solid;
   border-color: var(--kc-lighter-primary) transparent transparent var(--kc-lighter-primary);
   display: block;
   position: absolute;
   right: -17px;
   bottom: 7px;
   rotate: 135deg;
   z-index: 3;
}
form#kitchen-design-tool .steps li:first-child {
    border-radius: 25px 0px 0px 25px;
}


form#kitchen-design-tool .steps a .number {
    display: none;
}

form#kitchen-design-tool .steps .current {
    background: var(--kc-primary);
    height: 56px;
}

form#kitchen-design-tool .steps .current::after {
    border-top-color: var(--kc-primary);
    border-left-color: var(--kc-primary);
}
.wizard > .steps {
    max-width: 90%;
    margin: auto;
    transition: none;
    overflow: unset;
}

form#kitchen-design-tool .steps .disabled {
    background: #e8eaed;
    padding: 6px 6px 6px 35px;
    min-height: 50px;
}

form#kitchen-design-tool .steps .disabled::after {
    border-top-color: #e8eaed !important;
    border-left-color: #e8eaed !important;
}

form#kitchen-design-tool .steps .disabled::before {
    border-left-color: #fff !important;
}

form#kitchen-design-tool .steps .current::after {
    border-width: 20px;
    right: -19px;
    top: 8px;
}
.steps ul {
    display: flex;
    justify-content: center;
    flex-direction: row;
    align-items: center;
}

form#kitchen-design-tool .steps .current::before {
    border-width: 23px;
    top: 5px;
    border-left-color: #fff;
    right: -23px;
}

form#kitchen-design-tool .steps .disabled a {
    color: #999;
}

/* Choose Color Section */
.kc_color_main {
    display: flex;
    min-height: 510px;
    flex-direction: row;
}

.ch_color {
    width: 35%;
    padding: 40px;
    border: 1px solid #d8dadb;
}

.ch_color_items {
    display: flex;
    flex-wrap: wrap;
    column-gap: 10px;
}

.ch_color_items input {
    /* display: none !important; */
    visibility: hidden;
    height: 0;
    width: 0;
}

.ch_color_items input:checked+label span::before {
    content:"";
    position:absolute;
    width: 30px;
    height: 30px;
    border: 1px solid var(--kc-primary);
    border-radius: 50%;
    top: -3px;
    left: -3px;
}
.ch_color_desc {
    width: 100%;
}
.kc_citem_wrap label {
    position: relative;
    margin-bottom: 0!important;
}

span.color_item {
    display: inline-block;
}



.ch_color_painted {
    margin-bottom: 20px;
}

.kc_citem_wrap .color_item img {
    width: 24px;
    height: 24px;
    border-radius: 50%;
}

.kc_citem_wrap .color_item {
    display: flex;
    align-items: center;
    justify-content: center;
}

.ch_color_desc {
    display: flex;
    align-items: center;
    gap: 30px;
}

.img_door_img_ch img {
    width: 200px;
}

h6.ch_color_title {
    color: var(--kc-primary);
    font-weight: 600;
    font-size: var(--h6-desktop); /*20px*/
}

p.ch_titl_2 {
    font-weight: 600;
    font-size: 16px;
}

.ch_img_descr p {
    font-size: var(--p-desktop); /*15px*/
}

p.color_n>span {
    padding-left: 5px;
}

.ch_color_painted p {
    margin-bottom: 8px;
}
.ch_color_items label{
    cursor:pointer;
}
.ch_color_items label:hover  span::before {
    content: "";
    position: absolute;
    width: 30px;
    height: 30px;
    border: 1px solid grey;
    border-radius: 50%;
    top: -3px;
    left: -3px;
}
.ch_color_container {
    padding: 20px 0px 0px 40px;
    width: 65%;
    display: flex;
    align-items: center;
    justify-content: center;
}
/* Choose Kitchen Layout */
.kc_layout_option_wrap {
    display: flex;
    justify-content: center;
    /* align-items: center; */
}

.kc_layout_itm>label {
    padding: 60px 24px 24px 24px;
    border: 1px solid #d8dadb;
    height: 100%;
    border-radius: 5px;
    margin: 0px 15px;
    display: flex !important;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0px !important;
    cursor: pointer;
}

.kc_layout_itm>label>img {
    height: 140px;
    width: 170px;
    object-fit: contain;
    filter: grayscale(1) contrast(5);
    -webkit-filter: grayscale(1) contrast(5);
}

.kc_layout_itm p {
    margin: 30px 0px 0px 0px;
    font-size: var(--p-desktop); /*16px*/
    font-weight: 600;
}

.kc_layout_itm input:checked+label {
    border-color: var(--kc-primary);
}

.kc_layout_itm input {
    visibility: hidden;
    height: 0;
    width: 0;
}

.kc_layout_itm input:checked+label p {
    color: var(--kc-primary);
}

.kc_layout_itm input:checked+label img {
    filter: none;
}

.kc_layout_main {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.layout_island_checkbox {
    margin-top: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.layout_island_checkbox label {
    margin: 0 !important;
    line-height: 1;
    font-size: 17px;
    padding-left: 10px;
    font-weight: 500;
}

.layout_island_checkbox input {
    height: 23px;
    width: 23px;
    accent-color: var(--kc-primary);
}
.kc_layout_itm>label:hover img {
    filter: none;
}

.kc_layout_itm>label:hover p {
    color: var(--kc-primary);
}
/* Choose Appliances */
.kc_appl_wrapper.kc_range_wrap {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-gap: 18px;
}

.kc_appl_option label {
    padding: 20px 20px 5px 20px;
    border: 1px solid grey;
    border-radius: 5px;
    display: flex !important;
    flex-direction: column;
    align-items: center;
    margin-bottom: 0 !important;
    cursor: pointer;
    height: 100%;
    justify-content: end;
}

.kc_appl_option input:checked+label {
    background: #d4e7ff;
    border-color: var(--kc-primary);
}

.kc_appl_option input {
    visibility: hidden;
    height: 0;
    width: 0;
}

p.kc_appl_p {
    text-align: center;
    margin-top: 15px;
    margin-bottom: 0;
    min-height: 34px;
    font-weight: 600;
    font-size: var(--p-desktop); /*15px*/
}

.kc_appl_option input:checked+label p {
    color: #2d2f22;
}

.kc_appl_option label img {
    width: 120px;
    height: 90px;
    object-fit: contain;
}

.kc_appl_main {
    margin-bottom: 40px;
}
.dishwaher_p{
    color: #2d2f22;
    font-size: 16px;
}
p.dishwaher_p {
    font-size: 16px;
    font-weight: 500;
}

.kc_appl_option label:hover {
    background: #d4e7ff;
    border-color: var(--kc-primary);
}
/* Form Navigation */

.wizard > .actions a, .wizard > .actions a:hover, .wizard > .actions a:active {
    background: var(--kc-primary);
    padding: 10px 35px;
    font-weight: 600;
    color:#fff;
    font-size: 18px;
    font-weight: 500;
    letter-spacing: .5px;
    border-radius: 6px;
    border: 2px solid var(--kc-primary);
}

.wizard > .actions a:hover {
    background-color: var(--kc-lighter-primary) !important;
    color: var(--kc-white) !important;
}

/* Dimension Inputs */
h4.dim_main_titl {
    font-size: var(--h4-desktop); /*22px*/
    font-weight: 600;
    margin: 20px 0px;
    color: var(--kc-primary);
}
.inp_dimen_group label {
    font-size: 18px;
    font-weight: 600;
    color: #2d2f22;
}
.inp_dimen_group input {
    font-size: 14px;
    max-width: 140px;
    padding: 14px 10px;
    font-weight: 500;
    border-radius: 5px;
}
.inp_dimen_group {
    display: inline-block;
    margin-right: 20px;
}
h4.dim_main_titl span {
    font-size: var(--h4-desktop); /*14px*/
    font-style: italic;
    font-weight: 500;
}
.wall_dim_main_inner {
    display: flex;
    margin-top: 30px;
    column-gap: 45px;
}
.kc_wall_dim_item {
    flex-grow: 1;
    padding: 0px;
    /* max-width: 300px; */
    position: relative;
}
.inp_dimen_group input::-webkit-outer-spin-button,
.inp_dimen_group input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.inp_dimen_group input{
  -moz-appearance: textfield;
}

.wall_dim_main_inner h4.dim_main_titl {
    font-size: var(--h4-desktop); /*19px*/
    margin: 15px 0px;
}

h4.dim_main_titl span {
    font-size: var(--h4-desktop); /*14px*/
    font-style: italic;
    font-weight: 500;
    color: #565656;
}

.wall_dim_main_inner .inp_dimen_group input {
    width: 100%;
    max-width: unset;
}

/* Personal Info Step */
.inp_group_personal label {
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 6px;
    color: #2d2f22;
/*    color: var(--kc-primary);*/
}

.inp_group_personal input {
    border-radius: 4px;
    border: 1px solid #c7c7c7;
    font-size: 16px !important;
    display: block;
    width: 100%;
    padding: 10px;
}

.inp_group_personal {
    margin-bottom: 25px;
}

.form_inp_personal {
    width: 45%;
    margin: auto;
}
.kc_wall_dim_item::before {
    content: "";
    position: absolute;
    height: 100%;
    width: 5px;
    background: #f3f3f3;
    left: -37px;
    top: 0;
}
.inp_group_personal .iti {
    display: block;
}

li.iti__country {
    padding: 3px 10px !important;
}
form#kitchen-design-tool .steps a {
    white-space: nowrap;
}

.inp_group_personal span.error {
    position: absolute;
    bottom: -30px;
    left: 0;
    margin-left: 0 !important;
    font-size: 14px;
    color: #8a1f11;
}

.inp_group_personal {
    position: relative;
}
.inp_dimen_group {
    position: relative;
}
#kitchen-design-tool .content section .kd_title_wrap #required-field-error {
    display: flex;
    justify-content: center;
    margin: 0 0 0 0;
    bottom: -15px;
}
.inp_dimen_group span.error {
    position: absolute;
    border: 0;
    font-size: 14px;
    white-space: nowrap;
    color: #8a1f11;
    margin: 0;
}
.inp_dimen_group {
    margin-bottom:20px
}
.kd_title_wrap {
    position: relative;
}

.kd_title_wrap span.error {
    color: #8a1f11;
    position: absolute;
    width: 100%;
    text-align: center;
    bottom: 0px;
    background: white;
    bottom: -14px;
    padding-top: 10px;

}

#form-custom-error {
    color: #8a1f11;   
    width: 100%;
    text-align: center;  
    margin-bottom: 15px;
    display: inline-block;  
}

.color-icon{    
    height: 24px;
    width: 24px;
    border-radius: 50%;
    transition: all 0.3s;
    overflow: hidden;
    border: 1px solid #cccccc;
}
div#kc-wall-dimensions .kc_wall_dim_item:first-child::before {
    display: none;
}
.wall_dim_main_inner .inp_dimen_group {
    max-width: 50%;
    margin: 0;
    padding: 11px;
}
/* Popup Styles */

.modal_header {
    display: flex;
    justify-content: end;
    position: absolute;
    top: 0;
    right: 0;
    margin: 15px;
}

.popup_modal {
    max-width: 634px;
}

.popup_content img {
    width: 100%;
    max-width: 100px;
}

div#thank_popup {
    display: flex;
    justify-content: center;
}

.popup_content {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
}

.popup_modal {
    padding: 60px 30px 40px 30px;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    border-radius: 10px;
    background: white;
    height: max-content;
    position: relative;
}

.popup_content>h3 {
    font-size: var(--h3-desktop); /*32px*/
    font-weight: 700;
}

button.close_popup {
    border: none;
    background: none;
}

button.close_popup i {
    font-size: 24px;
    color: #8a8e75;
}
.popup_content>h3 {
    margin: 21px 0px 5px 0px;
    color: var(--kc-primary);
}
.popup_content p {
    margin: 10px 0 0 0;
    font-size: var(--p-desktop); /*18px*/
    line-height: 1.3em;
}

div#thank_popup {
    padding: 50px 10px 10px 10px;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    left: 0;
    height: 100%;
    background: transparent;
    backdrop-filter: blur(3px);
    display: flex;
    align-items: center;
}
a.go_to_home {
    background: var(--kc-primary);
    color: white;
    padding: 9px 25px;
    border-radius: 5px;
    margin-top: 15px;
}

a.go_to_home:hover {
    background: var(--kc-lighter-primary);
}
a.go_to_home {
    background: var(--kc-primary);
    color: white;
    padding: 9px 25px;
    border-radius: 5px;
    margin-top: 15px;
}
.popup_content p {
    margin: 6px;
}
a.go_to_home:hover {
    background: var(--kc-lighter-primary);
}

.check_icon {
    max-width: 150px;
}
/* .popup_modal::before {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 50%;
    background-image: url('/wp-content/uploads/2024/06/effect.webp');
    background-size: cover;
    background-repeat: repeat;
    background-position: center;
    content: "";
    z-index: -1;
}
.popup_modal::after {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    right: 50%;
    background-image: url('/wp-content/uploads/2024/06/effect.webp');
    background-size: cover;
    background-repeat: repeat;
    background-position: center;
    content: "";
    z-index: -1;
} */
.check_icon i {
    font-size: 150px;
    color: #6f9a15;
}
.container {
    position: relative;
}
div#thank_popup {
    display: none;
}
#kitchen-design-tool .actions a[href='#previous'] {
    display: none;
}

.kc_wall_dim_item.wall-dimension-more .inp_dimen_group {
    /* max-width: 100%; */
    padding: 0  20px 10px 0;
    margin-bottom: 10px;
}
.kc_dim_main_inner .inp_dimen_group input {
    max-width: 245px;
}
.actions ul :not(:first-child) {
    float: right !important;
}

.kd_title_wrap.choose-structure-heading{
    margin-bottom: 21px;
}

form#kitchen-design-tool .steps li:last-child::after {display: none;}
form#kitchen-design-tool .steps li:last-child{
    padding: 13px 32px 12px 38px;
    border-radius:0 25px 25px 0;
}
form#kitchen-design-tool .steps .disabled a {
    font-weight: 500 !important;
}

.wizard > .steps {
    max-width: 100%;
}
form#kitchen-design-tool .steps .disabled a {
    font-weight: 500 !important;
    font-size: var(--a-desktop); /*15px*/
}
#wall-notice-msg{
    display: none;
}
.kd_title_wrap {
    display: flex;
    justify-content: flex-end;
    flex-direction: row;
}

.kd_title_wrap i {
    font-size: 35px;
    color: var(--kc-primary);
}

.kd_title_wrap .prev_btn_kc, .kd_title_wrap .next_btn_kc {
    width: 20px;
}

h5.kd_title {
    width: calc(100% - 40px);
}
.wizard > .actions li:first-child a {
    position: relative;
    display: flex !important;
    align-items: center;
    gap: 15px;
}
.wizard > .actions li:nth-child(2) a{
    display: flex !important;
    align-items: center;
    gap: 15px;
}

.wizard > .actions li:first-child a::before {
    font-family: "Font Awesome 5 Free";
    content: "\f104";
    display: inline-block;
    vertical-align: middle;
    font-weight: 600;
    color: white;
    font-size: 20px;
}
.wizard > .actions li:nth-child(2) a::after {
    font-family: "Font Awesome 5 Free";
    content: "\f105";
    display: inline-block;
    vertical-align: middle;
    font-weight: 600;
    color: white;
    font-size: 20px;
}

.wizard > .actions li {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.wizard > .actions li.disabled {
    display: none !important;
}
#steps-uid-0-p-0 .prev_btn_kc {
    display: none;
}
.wizard > .content > .body {padding-top: 0;}

.kd_title_wrap {
    position: sticky;
    top: 68px;
    z-index: 99;
    background-color: #FFF;
    padding-top: 20px;
    padding-bottom: 15px;
}

.wizard > .steps {
    position: sticky;
    top: 0;
    z-index: 100;
    background-color: #FFF;
    padding-top: 20px;
}
/*html,
    body {
        overflow: visible !important;
}*/
form#kitchen-design-tool .steps a {
    line-height: 1;
}

form#kitchen-design-tool .steps li {
    flex-direction: column;
}

form#kitchen-design-tool .steps li>span {
    color: white;
    font-size: 12px;
    line-height: 1;
}

form#kitchen-design-tool .steps li:first-child a {
    font-size: var(--a-desktop); /*14px*/
    /* padding-bottom: 3px; */
}

form#kitchen-design-tool .steps li.done {
    padding-top: 5px;
    padding-bottom: 5px;
    min-height: 40px;
}
form#kitchen-design-tool .steps li>span {
    max-width: 128px;
    white-space: nowrap;
    overflow: visible;
    position: relative;
    display: block;
}
/* form#kitchen-design-tool .steps li.current>#steps-uid-0-t-4 ~ .item-selection::after {
    background: linear-gradient(90deg, rgba(232, 234, 237, 0) 50%, #8a8e75 100%);
} */

form#kitchen-design-tool .steps li>#steps-uid-0-t-4 ~ .item-selection::after {
    /* background: linear-gradient(90deg, rgba(232, 234, 237, 0) 50%, #8a8e75 100%); */
    position: absolute;
    left: 107px;
    top: 0;
    z-index: 5;
    width:25px;
    height: 14px;
    content: "";
}
/* form#kitchen-design-tool .steps li.done>#steps-uid-0-t-4 ~ .item-selection::after {
    background: linear-gradient(90deg, rgba(232, 234, 237, 0) 50%, #bec5a4 100%);
}
form#kitchen-design-tool .steps li.done>#steps-uid-0-t-4 ~ .item-selection::before {
      background: linear-gradient(267deg, rgba(232, 234, 237, 0) 50%, #bec5a4 100%);
} */
/* form#kitchen-design-tool .steps li.current>#steps-uid-0-t-4 ~ .item-selection::before  {
    background: linear-gradient(267deg, rgba(232, 234, 237, 0) 50%, #8a8e75 100%);
} */
form#kitchen-design-tool .steps li>#steps-uid-0-t-4 ~ .item-selection::before  {
    /* background: linear-gradient(267deg, rgba(232, 234, 237, 0) 50%, #8a8e75 100%); */
    position: absolute;
    left: 0px;
    top: 0;
    z-index: 5;
    width: 25px;
    height: 12px;
    content: "";
    /* rotate: 178deg; */
}

.wizard > .steps li.disabled a::after,li.disabled a ~ .item-selection::before  {
    display: none;
}

/* form#kitchen-design-tool .steps li:hover .item-selection label{
   animation:textLoop 5s linear infinite;
}

    @keyframes textLoop {
        0% {
            left: 0
        }

        50% {
             left: -10%
        }

        100% {
             left: 0
        }
    }

    @-webkit-keyframes textLoop {
        0% {
            left: 0
        }

        50% {
            left: -10%
        }

        100% {
            left: 0
        }
    }

    @-moz-keyframes textLoop {
        0% {
            left: 0
        }

        50% {
            left: -10%
        }

        100% {
            left: 0
        }
    } */

form#kitchen-design-tool .steps a {
    position: relative;
}


div#wall-notice-msg {
    padding-top: 25px;
}

div#wall-notice-msg>p {
    margin-bottom: 0px;
}

.wall_dim_main_inner {
    margin-top: 0px;
}
.kc_wall_dim_item {
    width: 46%;
}

.wall_dim_main_inner {
    flex-wrap: wrap;
    column-gap: 20px;
    row-gap: 20px;
}

.kc_wall_dim_item::before {
    display: none;
}

.door_desc_wrap ul {
    font-size: 14px;
}
.kitchen-design-tool-container {
    margin-bottom: 100px;
}
/* .footer_content_row1_wrap {
    display: none;
}

footer#colophon {
    padding: 0;
} */

.steps ul li, .steps ul li > a , .steps ul li > span , .steps ul li > span label {
    cursor: pointer !important;
    transition: 0s;
}

form#kitchen-design-tool .steps li>span.item-select {
    color: #fff;
    font-weight: 500;
}

form#kitchen-design-tool .steps li.disabled>span.item-select {
    color: #999;
    font-weight: 600;
}

.cc-edit-icon {
    text-align: right;
    color: var(--kc-primary);

}

i.fas.fa-edit {
    cursor: pointer;
}

form#kitchen-design-tool .steps li.disabled span.item-selection {
    color: #999;
}

p.select-str {
    width: 100%;
    text-align: center;
}
.data_pre_col.selected-structure p.select-str {
    height: 180px;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
/* New Designs */

@media(min-width:992px){
    .wizard > .content {
        min-height: unset !important;
    }
    span.prev_btn_kc,.next_btn_kc {
        display: none !important;
    }
    .kd_title_wrap {
        justify-content: center;
    }
    span.item-select label {
        font-size: 13px;
    }
    a#steps-uid-0-t-4 ~ .item-selection {
        min-width: 128px;
        max-width: 128px;
        text-align: center;
    }
    .kitchen-design-tool-container {
        margin: 0;
        margin-bottom: 50px;
    }
    .kd_title_wrap {
        padding-top: 0px;
    }
    
    .kd_title_wrap>h3 {
        font-weight: 700;
        font-size: var(--h3-tablet); /*20px*/
        margin-top: 20px;
    }
    
    .kc_frame_option {
        display: flex;
        padding: 20px 15px;
        align-items: center;
    }
    
    .kc_frame_option ul li {
        font-size: 13px;
    }
    
    .kc_image {
        width: 35%;
        padding-right: 12px;
        height: auto;
    }
    
    .kc_frame_desc {
        margin: 0;
        width: 65%;
    }
    
    .door_img_items {
        height: 320px;
    }
    
    .door_style_container {
        padding: 0px 10px;
    }
    
    .door_desc_inner {
        padding: 0px 10px;
    }
    
    .description ul {
        padding-left: 15px;
    }
    
    .door_img_items {
        padding: 20px;
    }
    .wizard > .content {
        min-height: unset !important;
    }
    
    .door_img_desc img {
        height: 300px;
        width: 140px;
        object-fit: contain;
    }
    
    .kc_choose_door_main {
        align-items: center;
    }
    
    .door_style_sec {
        gap: 10px;
    }
    
    .door_img_items {
        width: 300px;
    }
    
    .door_style_container {
        width: calc(100% - 300px);
    }
    
    .ch_color {
        padding: 20px;
        width: 300px;
        min-height: 320px;
    }
    
    .ch_color_container {
        padding: 0px 10px;
    }
    
    .kc_color_main {
        min-height: auto;
    }
    
    .img_door_img_ch img {
        height: 300px;
        width: 140px;
        object-fit: contain;
    }
    
    .img_door_img_ch {
        padding: 10px;
    }
    
    .ch_img_descr {
        font-size: 14px;
    }
    .ch_color_container {
        width: calc(100% - 300px);
    }
    .wizard > .content{
        min-height: unset !important;
    }
    .ch_color_desc {
        gap: 15px;

    }
    .kc_layout_itm p {
        margin: 0;
    }
    
    .kc_layout_itm>label {
        padding: 20px;
        gap: 15px;
    }


    .kd_title_wrap span.error {
        margin: 0;
    }    
    .kd_title_wrap span.error {
        background: white;
        bottom: -10px;
        padding: 0;
        font-size: 14px;
    }
    
    .kc_appl_option input[type="checkbox"] {max-height: 0;overflow: hidden;}
    
    .kc_appl_option {
        display: flex;
        width: 100%;
        justify-content: stretch;
    }
    
    .kc_appl_option label {
        width: 100%;
    }
    
    .kc_appl_option label img {
        height: 75px;
    }
    
    p.kc_appl_p {
        margin-top: 7px;
        font-weight: 600;
        font-size: var(--p-desktop); /*14px*/
    }
    
    .kc_appl_main {
        margin-bottom: 13px;
    }
    
    section#steps-uid-0-p-4 {
        padding: 0;
    }
    
    section#steps-uid-0-p-7 .kd_title_wrap span.error{
        background:white;
    }
    
    .inp_group_personal label {
        font-size: 14px;
        margin-bottom: 4px !important;
    }
    
    .inp_group_personal input {
        padding: 11px 14px;
        font-size: 15px !important;
        /* background: #f5f7f8; */
        border-color: #8d8d8f !important;
    }
    
    section#steps-uid-0-p-7 {
        padding: 0;
    }
    
    .wizard > .steps {
        max-width: 100%;
    }
    .kc_layout_itm>label>img {
        height: 106px;
    }
    .kc_layout_itm>label>img {
        height: 106px;
    }
    
    section.body.current {
        min-height: 400px;
    }
    
    .kc_appl_wrapper.kc_range_wrap {
        grid-template-columns: repeat(6, 1fr);
    }
    p.kc_appl_p {
        font-size: var(--p-tablet); /*13px*/
    }
    h4.dim_main_titl {
        font-size: var(--h4-tablet) !important; /*17px*/
        margin: 0;
        margin-bottom: 15px;
    }
    
    form#kitchen-design-tool .steps a {
        font-size: var(--a-tablet); /*15px*/
    }
    h4.dim_main_titl {
        font-size: var(--h4-tablet) !important; /*17px*/
        margin: 0;
        margin-bottom: 15px;
    }
    
    form#kitchen-design-tool .steps a {
        font-size: var(--a-tablet); /*14px*/
    }
    
    .kc_dim_main {
        margin-bottom: 20px;
    }
    
    .inp_dimen_group label {
        font-size: 16px;
        margin-bottom: 0 !important;
    }  
    .kc_frame_option_item {
        width: 50%;
    }
    
    .kc_frame_option_item label {
        width: 100%;
    }  
}

.kc_dim_main_inner {
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0px 0px 8px 0px #ddd;
    background: #edf3fb;
    display: flex;
    flex-wrap: wrap;
    column-gap: 0;
    justify-content: space-between;
}

.inp_dimen_group label {
    display: block !important;
}
.inp_dimen_group label {
    font-size: 15px;
    margin-bottom: 5px !important;
    font-weight: 500;
}
.kc_dim_main_inner .inp_dimen_group input {
    max-width: 100%;
    width: 100%;
}

.inp_dimen_group {
    margin-right: 0px;
    width: calc(33.33% - 10px);
}

h4.dim_main_titl {
    width: 100%;
    font-size: var(--h4-desktop) !important; /*18px*/
}

h5.kd_title {
    text-transform: uppercase;
}

div#wall-notice-msg>p {
    text-align: center;
    color: #2d2f22;
    font-weight: 500;
}

.kc_wall_dim_item {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 20px 20px 30px 20px;
    border-radius: 8px;
    box-shadow: 0px 0px 8px 0px #ddd;
    background: #edf3fb;
    max-width: calc(50% - 10px);
}

.wall_dim_main_inner .inp_dimen_group {
    padding: 0;
    width: calc(50% - 10px);
}

div#wall-notice-msg {
    padding-bottom: 18px;
}

.kc_wall_dim_item.wall-dimension-more .inp_dimen_group {
    padding: 0;
}
.wizard > .actions > ul {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wizard > .actions li:nth-child(2) a:after {
    display: none;
}

.wizard > .actions li:first-child a::before {
    display: none;
}

.wizard > .actions li a {
    width: 160px;
    height: 50px;
    justify-content: center;
    font-size: var(--a-desktop); /*15px*/
    display: flex !important;
    align-items: center;
    transition: 0.3s;
}

.wizard > .actions li a:hover {
    font-size: var(--a-desktop); /*15px*/
}
form#kitchen-design-tool .steps li {
    gap: 5px;
}

form#kitchen-design-tool .steps li.done {
    min-height: 50px;
}
.kc_layout_itm label {
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, .3) !important;
    border: none;
    border-radius: 20px;
    padding: 28px 28px;
}   
.form_inp_personal {
    padding: 0 18px 18px 18px;
    background: #fff;
}
section#steps-uid-0-p-7 .kc_container {
    /* background: #bec5a436; */
    /* padding-bottom: 25px; */
}
.inp_group_personal label span {
    color: darkred;
}

/* Preivew Option Design */
.data-preview {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    row-gap: 15px;
}

.data_pre_col {
    width: calc(33.33% - 10px);
    background: #edf3fb;
    padding: 15px 20px 20px 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    position: relative;
    border-radius: 8px;
    box-shadow: 0px 0px 8px 0px #ddd;
}
.data_pre_col img {display: block;height: 100% !important;margin: auto;}

.data_pre_col.selected-kitchen-layout {width: calc(50% - 7.5px);}

.data_pre_col.selected-structure {
    width: calc(50% - 7.5px);
}

.data_pre_col.kt-dimensions {
    width: 100%;
}

.data_pre_col.kt-wall-dimensions {
    width: 100%;
}

.left-colomn span {
    font-size: 19px;
    font-weight: 700;
    color: var(--kc-primary);
    display: block;
    margin-bottom: 0;
    text-align: center;
}

.added-wall-dimensions h4 {
    font-size: var(--h4-desktop); /*18px*/
    margin-bottom: 10px;
    font-weight: 600;
}

.added-wall-dimensions {
    margin-bottom: 24px;
    width: 100%;
    padding: 14px;
    border-radius: 10px;
    background: white;
}
.selected_options_titl {
    font-size: 18px;
    margin-bottom: 20px;
}
div#structure-notice-msg p {
    color: #2d2f22;
    font-weight: 500;
}
.right-colomn {
    display: flex;
    flex-direction: column;
    gap: 10px;
}


.frame-name,.door-name ,.cabinet-name ,.layout-name ,.structure-name {
    font-size:18px;
    font-weight:500;
    text-align: center;
}


.frame-image, .door-image,.cabinet-image{
    text-align: center;
    height: 190px;
}

.layout-image img {
    max-height: 110px !important;
    width: 100%;
    object-fit: contain;
}

.structure-image img {
    min-height: 90px !important;
    max-height: 150px;
    max-width: 100px;
    object-fit: contain;
}

 .layout-image, .structure-image {
    text-align: center;
   
}


.data_pre_col.kt-dimensions .right-colomn {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    margin-bottom: 20px;
}

.data_pre_col.kt-dimensions .right-colomn .inner-row span {
    font-size: 16px;
    font-weight: 600;
}

.data_pre_col.kt-dimensions .right-colomn .inner-row span span {
    font-weight: 500;

}

.data_pre_col.kt-dimensions .left-colomn {
    margin-bottom: 25px;
}

.data_pre_col.kt-wall-dimensions .right-colomn {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin-top: 20px;
}

.added-wall-dimensions .inner-row span {
    font-weight: 500;
    font-size: 16px;
}

.added-wall-dimensions .inner-row span span {
    font-weight: 400;
}

.sel-color-name {
    text-align: center;
    font-size: 18px;
    font-weight: 500;
}

.cabinet-name.selected_options_titl {
    font-size: 15px;
    margin: 0;
}
.data_pre_col.kt-dimensions .right-colomn .inner-row {
    width: 100%;
    background: white;
    padding: 10px;
    border-radius: 10px;
}
.data_pre_col.selected-structure .right-colomn {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0px;
    justify-content: center;
}

.data_pre_col.selected-structure .right-colomn .selected-str {
    width: calc(50% - 10px);
    /* background: white; */
    padding: 15px 10px;
    border-radius: 10px;
    margin: 5px;
    position: relative;
}
.selected-str:nth-child(even)::before {
    position: absolute;
    content: "";
    height: 95%;
    width: 4px;
    background-color: #ffffff;
    left: -7px;
}
.structure-name {
    font-size: 16px;
    margin-bottom: 10px;
    font-weight: 600;
    line-height: 1.2;
    min-height: 38px;
}

.data_pre_col.selected-kitchen-layout .right-colomn {
    /* background: white; */
    /* padding: 10px; */
    /* border-radius: 10px; */
    align-items: center;
}

.layout-name.selected_options_titl {
    margin: 0;
    font-size: 16px;
    margin-bottom: 10px;
    font-weight: 600;
    line-height: 1.2;
    min-height: 38px;
}
.selected-layot {
    /* background: white; */
    padding: 14px;
    border-radius: 10px;
    width: 50%;
}

.door_desc_wrap img {
    max-width: 100%;
}
.door_desc_inner:has(.description:empty) {
    height: auto;
}
@media(min-width:540px){
    .show_more {
        display: none;
    }   
    
}

@media(max-width:1240px){
    .wizard > .steps {
        /* max-width: 95%; */
    }   
  
}

@media(max-width: 1200px){
    html {
        margin-bottom: 0 !important;
        overflow-x: hidden !important;
    }
}

@media(max-width:991px){
    form#kitchen-design-tool .steps li {
        display: none;
    }
    
    .kc_option_main {
        flex-direction: column;
    }
    
    .kc_frame_option_item label {
        width: 100%;
        margin-bottom: 0 !important;
    }
    
    .kc_frame_option {
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .wizard > .content > section.body {
        padding: 0;
    }
    
    .content.clearfix {
        margin: 0;
    }
    
    .kc_frame_option2 {
        margin: 0;
    }
    
    .kitchen-design-tool-container {
        padding: 20px 0px;
    }
    
    .kc_choose_door_main {
        flex-direction: column-reverse;
    }
    
    .door_style_sec {
        width: 100%;
        padding: 20px 0px;
        gap: 20px;
    }
    
    .door_img_items {
        width: 100%;
        padding: 20px;
        grid-template-columns: repeat(4,1fr);
        height: 340px;
    }
    
    .kc_color_main {
        flex-direction: column-reverse;
    }
    
    .ch_color_desc {
        width: 100%;
        padding: 10px 0px;
    }
    
    .ch_color {
        width: 100%;
        margin: 10px 0px;
    }
    
    .door_img_desc img {
        max-width: 150px;
    }
    
    .door_desc_inner {
        padding: 0;
    }
    
    h5.kd_title {
        margin: 0;
    }
    
    .ch_color_desc {gap: 15px;}
    
    
    .img_door_img_ch img {
        max-width: 150px;
    }
    
    
    .ch_color {
        padding: 15px 15px;
        margin: 0 0 20px 0px;
        height: 300px;
    }
    
    .kc_layout_option_wrap {
        gap: 15px;
    }
    
    .kc_layout_itm>label {
        padding: 30px;
    }
    
    .kc_appl_wrapper.kc_range_wrap {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .kc_appl_option:last-child label {
        min-height: 170px;
        justify-content: center;
    }
    
    .kc_appl_main {
        margin-bottom: 10px;
    }
    
    p.dishwaher_p {
        text-align: center;
        font-size: var(--p-tablet); /*14px*/
    }
    
    .wall_dim_main_inner {
        flex-direction: column;
    }
    
    .kc_wall_dim_item::before {
        display: none;
    }
    
    .wall_dim_main_inner .inp_dimen_group input {
        max-width: 140px;
    }
    
    
    .img_door_img_ch {
        padding: 10px;
    }
    
    .layout_island_checkbox {
        margin-top: 15px;
    }

    .kd_title_wrap {
        margin: 0;
        display: flex;
        justify-content: space-between;
        padding: 5px 15px !important;
        align-items: center;
        padding: 0;
        background: #fafafa;
    }
    h5.kd_title {
        font-weight: 600;
        font-size: var(--h5-tablet); /*20px*/
        width: calc(100% - 20px);
    }
    span.prev_btn_kc {
        display: block;
        font-size: 34px;
        color: var(--kc-primary);
        width: 20px;
    }
/*    .container {
        padding: 0;
    }*/
    
    .kitchen-design-tool-container {
        padding: 0;
        margin: 0;
    }
    
    .actions {
        margin: 15px 0px;
    }
    .kc_layout_main {
        padding: 50px 0px;
        gap: 10px;
    }
    
    .kc_appl_wrapper.kc_range_wrap {
        padding: 22px;
    }
    
    .kc_frame_option_item:nth-child(2) .kc_frame_option {
        margin: 0;
        margin-top: -1px;
    }
    
    
    section#steps-uid-0-p-1 {
        padding: 0;
    }
    .form_inp_personal {
        margin: 55px auto;
    }
    .form_inp_personal {
        margin: 55px auto;
    }
    .kc_dim_main {
        padding: 10px;
    }
    .inp_dimen_group label {
        font-size: 16px;
        margin-top: 10px;
    }
    
    .inp_dimen_group input {
        font-size: 15px;
        font-weight: 500;
    }
    
    .wall_dim_main_inner h4.dim_main_titl {
        margin: 12px 0 0 0;
    }
    
    .inp_dimen_group {
        width: 49%;
        margin: 0;
        padding-right: 10px;
        margin-bottom: 10px;
    }
    
    .wall_dim_main_inner .inp_dimen_group input {
        max-width: 100%;
    }
    
    .inp_dimen_group input {
        max-width: 100%;
        width: 100%;
    }
        
    .inp_dimen_group:nth-child(3) {
        padding-right: 0px;
    }
    .kd_title_wrap span.error {
        bottom: -30px;
    }
    .kc_option_main {
        padding-top: 40px;
    }
    
    .kc_choose_door_main {
        padding-top: 40px;
    }
    
    .kc_color_main {
        padding-top: 40px;
    }
    .wizard > .actions {
        width: 100%;
    }
    
    .wizard > .actions ul {
        display: flex;
        /* justify-content: flex-end; */

    }
    
    .wizard > .actions ul li {
        text-align: center;
        /* width: 100%; */
    }
    .wizard > .actions a:hover {
        background: var(--kc-primary);
    }
    .door_style_container {
        width: 100%;
        padding: 10px;
    }
    .ch_color_container {
        width: 100%;
        padding: 10px;
    }

    
    #steps-uid-0-p-0 .kd_title_wrap {
        padding: 10px 15px !important;
    }
    .kc_dim_main_inner .inp_dimen_group input {
        max-width: 100%;
    }
    .container {
        max-width: 100%;
    }
    
    .wizard > .steps {
        display: none;
    }
    
    .kd_title_wrap {
        top: 0;
    }
    div#structure-notice-msg {
        padding: 20px 20px 0 20px;
        text-align: center;
    }
    .kc_wall_dim_item {
        width: 100%;
    }
    .kc_wall_dim_item {
        width: 100% !important;
    }
    .kitchen-design-tool-container {
        margin-bottom: 40px;
    }
    .kd_title_wrap span.error {
        font-size: 13px;
        /* background: transparent; */
        bottom: -18px;
    }
    .kc_wall_dim_item {
        max-width: 100%;
        padding-bottom: 35px;
    } 
    .kc_layout_itm>label {
        padding: 23px 15px;
    }

    .kc_layout_itm p {
        margin-top: 15px;
    }

    .kc_layout_itm>label>img {
        height: 100px;
    }

    .kc_appl_option {
        display: flex !important;
        flex-direction: column;
        align-items: center;
        margin-bottom: 0 !important;
        cursor: pointer;
        height: 100%;
        justify-content: end;
    }

    .kc_appl_option label {
        width: 100%;
    }

    h4.dim_main_titl {
        margin: 5px 0px !important;
    }

    .data-preview {
        padding: 10px;
    }

    .left-colomn span {
        font-size: 18px;
    }

    .frame-name, .door-name, .cabinet-name, .layout-name, .structure-name {
        font-size: 16px;
    }

    .data_pre_col.kt-dimensions .right-colomn .inner-row span {
        font-size: 16px;
    }

    .data_pre_col.kt-dimensions .left-colomn {
        margin-bottom: 10px;
    }

    .added-wall-dimensions h4 {
        font-size: var(--h4-mobile); /*18px*/
    }

    .added-wall-dimensions .inner-row span {font-size: 16px;}

    .form_inp_personal {
        width: 55%;
        margin: auto;
    }
    .form_inp_personal {
        padding: 20px;
    }
    .selected-str:nth-child(even)::before {
        display: none;
    }
}



@media(max-width:768px){
    .kc_layout_option_wrap {
        flex-direction: column;
    }
    
    .kc_layout_itm>label {
        padding: 20px;
    }
    
    .kc_appl_wrapper.kc_range_wrap {
        grid-template-columns: repeat(3, 1fr);
    }
    
    p.dishwaher_p {
        margin-top: 30px;
    }
    .kc_layout_itm>label:hover img {
        filter: grayscale(1) contrast(2);
    }
    
    .kc_layout_itm>label:hover p {
        color: #2d2f22;
    }
    section#steps-uid-0-p-7 h5.kd_title {
        font-size: var(--h5-mobile); /*16px*/
    }
    
}
@media(max-width:540px){
    .door_desc_inner {
        height: 48px;
        overflow: hidden;
        transition: 0s;
    }
    
    .door_desc_inner.expanded_desc {
        height: 100%;
    }
    
    
    .ch_img_descr {
        height: 86px;
        overflow: hidden;
        transition: 0s;
    }
    
    .ch_img_descr.expanded_desc {
        height: 100%;
    }
    ul.frame_ul {
        height: 0;
        overflow: hidden;
        transition:none;
    }
    
    ul.frame_ul.expanded_ul {
        height: 100%;
    }
    .kc_frame_option {
        flex-direction: column;
    }
    
    button.show_more {
        border: 0;
        padding: 0;
        font-weight: 600;
        background: none;
        padding-top: 10px;
        color:#2d2f22;
    }
    
    .kc_frame_option:hover {
        background: none;
        border-color: #d8dadb;
    }
    
    .door_style_sec {
        flex-direction: column;
        padding: 15px;
        gap: 10px;
    }
    
    .door_img_desc img {
        max-width: 112px;
    }
    
    .door_img_items {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .ch_color_desc {
        flex-direction: column;
        padding: 15px;
    }
    
    .img_door_img_ch img {
        max-width: 112px;
    }
    
    .door_desc_inner>h6 {
        text-align: center;
    }
    .layout_island_checkbox label {
        font-size: 14px;
    }
    .door_img_desc {
        padding: 0;
    }
    
    h6.ch_color_title {
        text-align: center;
    }
    
    .img_door_img_ch {
        padding: 0;
    }
    
    .kc_appl_wrapper.kc_range_wrap {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .form_inp_personal {
        margin: auto;
        width: 100%;
        padding: 20px 10px 10px 10px;
    }
    .inp_group_personal span.error {
        bottom: -28px;
    }
    .kc_citem_wrap .color_item img {
        width: 34px;
        height: 34px;
    }

    /* .ch_color_items label:hover span::before {
        width: 40px;
        height: 40px;
    } */
    h5.kd_title {
        font-size: var(--h5-mobile); /*17px*/
        letter-spacing: 0;
    }
    .ch_color_container {
        padding: 10px;
        width: 100%;
    }
    
    .ch_color {
        min-height: 250px;
    }
    
    .ch_color_desc {
        padding: 0;
    }
    .popup_modal::before {
        top: 50%;
        left: 0;
    }
    
    .popup_modal::after {
        top: -50%;
        right: 0;
    }
    
    .popup_content>h3 {
        font-size: var(--h3-mobile); /*30px*/
        margin-bottom: 10px;
    }
    
    .popup_content p {
        font-size: var(--p-mobile); /*16px*/
    }
    
    .check_icon i {
        font-size: 110px;
    }
    .wizard > .actions ul li {
        width: 100%;
    }
    
    .wizard > .actions ul li a {
        width: 100%;
        justify-content: center;
    }
    /* .mobile-footer {
        display: none !important;
    } */
    section#steps-uid-0-p-7 h5.kd_title {
        font-size: var(--h5-mobile); /*15px*/
    }
    
    
    section#steps-uid-0-p-6 .kd_title {
        font-size: 16px;
        padding: 0px 42px;
    }
    
    
    .kc_layout_itm>label {
        margin: 10px;
    }
    
    .kc_dim_main_inner {
        padding: 10px;
    }
    
    .inp_dimen_group input {
        padding: 10px;
    }
    
    .kc_wall_dim_item {
        padding: 10px 10px 25px 10px;
    }
    div#structure-notice-msg {
        padding-top: 0;
    }
    
    .kc_dim_main {
        padding-top: 40px;
    }
    .data-preview {
        flex-direction: column;
        padding-bottom: 0;
    }
    
    .data-preview>div {
        width: 100% !important;
    }
    
    .data_pre_col.kt-dimensions .right-colomn {
        flex-direction: column;
    }
    
    .data_pre_col.kt-wall-dimensions .right-colomn {
        flex-direction: column;
        margin: 0;
    }
    
    .added-wall-dimensions {
        margin: 0;
    }
    
    .ch_color {
        margin-bottom: 0;
    }
    .selected_options_titl {
        margin: 0;
    }
    .added-wall-dimensions .inner-row span {
        font-size: 15px;
    }
    .data_pre_col {
        gap: 0;
    }
    
    .left-colomn {
        margin-bottom: 10px;
    }
    .inp_group_personal span.error {
        font-size: 12px;
    }
}
@media(min-width:991px) and (max-width:1200px){
    .container {
        max-width: 100%;
    }
}
@media(max-width:1440px) {
    form#kitchen-design-tool .steps li>span {
        max-width: 100px;
    }
}   

@media (pointer:coarse) {
    .wizard > .actions a:hover {
        background-color: var(--kc-primary);
    }
}
