/* GLOBAL_CSS_CHANGES_START_FROM_HERE */


* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
  }
  html {
    scroll-behavior: smooth;
  }
  body {
    overflow-x: hidden;
  }
  h1,
  h2,
  h3,
  h4,
  h5,
  h6,
  p,
  span,
  ul,
  li,
  a,
  .btn-default,
  textarea,
  label {
    margin: 0;
    padding: 0;
  }
  li {
    list-style: none;
  }
  a {
    text-decoration: none;
  }
  a:hover {
    text-decoration: none;
  }
  a:focus {
    text-decoration: none;
  }
  button,
  input,
  textarea,
  select {
    outline: none !important;
  }
  select {
    -webkit-appearance: none;
    -moz-appearance: none;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
  }
  select.minimal {
    background-image: url(../images/selectArrow.png);
    background-position: calc(100% - 15px) calc(1em + 15px);
    background-repeat: no-repeat;
  }
  /* GLOBAL_CSS_CHANGES_END_HERE */
  
  /* Chrome, Safari, Edge, Opera */
  input::-webkit-outer-spin-button,
  input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
  }
  /* Chrome, Safari, Edge, Opera */
  
  /* GLOBAL_VAR_CSS_START_FROM_HERE */
  :root {
    --white: #ffffff;
    --black: #000000;
    --main-color: #659b8d;
    --akira-bold: "Akira-Expanded";
    --avantGarde-bold: "ITCAvantGardeStd-Bold";
    --avantGarde-medium: "ITCAvantGardeStd-Md";
    --avantGarde-regular: "ITCAvantGardeStd-Bk";
    --myriadpro-regular: "myriadpro-regular";
  }
  /* GLOBAL_VAR_CSS_CSS_HERE */
  
  
  
  /* FONT_CSS_START_FROM_HERE */

  /* FONT_CSS_START_FROM_HERE */
@font-face {
  font-family: "Akira-Expanded";
  src: url("https://kainamo.com/beta-testing/wp-content/themes/salient-child/frontend/assets/front/webfonts/Akira-Expanded.otf");
  font-weight: regular;
  font-style: normal;
}
@font-face {
  font-family: "ITCAvantGardeStd-Bold";
  src: url("https://kainamo.com/beta-testing/wp-content/themes/salient-child/frontend/assets/front/webfonts/ITCAvantGardeStd-Bold.ttf");
  font-weight: regular;
  font-style: normal;
}
@font-face {
  font-family: "ITCAvantGardeStd-Md";
  src: url("https://kainamo.com/beta-testing/wp-content/themes/salient-child/frontend/assets/front/webfonts/ITCAvantGardeStd-Md.ttf");
  font-weight: regular;
  font-style: normal;
}

@font-face {
  font-family: "ITCAvantGardeStd-Md";
  src: url("https://kainamo.com/beta-testing/wp-content/themes/salient-child/frontend/assets/front/webfonts/ITCAvantGardeStd-Bk.otf");
  font-weight: regular;
  font-style: normal;
}


@font-face {
  font-family: "myriadpro-regular";
  src: url("../webfonts/myriadpro-regular.otf");
  font-weight: regular;
  font-style: normal;
}

  /* FONT_CSS_END_HERE */
  
  
  
  /* SCROLL-CSS */
  body::-webkit-scrollbar {
    width: 5px;
  }
  body::-webkit-scrollbar-track {
    background: var(--white);
  }
  body::-webkit-scrollbar-thumb {
    background-color: var(--black);
  }
  .box_frame {
    max-width: 1440px;
    margin: 0 auto;
  }
  /* SCROLL-CSS */
  
  .products_top_holder {
    background-image: url(../images/product-banner-img.png);
    height: 70vh;
    background-size: cover;
    background-position: center;
    position: relative;
  }
  .products_top_holder_txt .products_top_holder_note {
    font-family: var(--akira-bold);
    font-size: 120px;
    color: var(--white);
    line-height: 1;
  }
  .products_top_holder_txt .products_top_holder_note_lite {
    font-family: var(--akira-bold);
    font-size: 120px;
    color: #41414180;
    -webkit-text-stroke: 1px white;
    text-stroke: 1px white;
    line-height: 1;
  }
  .products_top_holder .box_frame {
    height: 100%;
    display: flex;
    align-items: center;
  }
  .scale_pic {
    max-width: 100%;
    height: auto;
  }
  .products_top_holder .pic_frame img {
    position: absolute;
    bottom: 0;
    right: 210px;
    max-width: 620px;
    width: 100%;
  }
  
  
  
  .products_first_holder {
    padding: 120px 0px 50px 0px;
  }
  .products_first_holder_upper_txt {
    max-width: 80%;
    margin: 0 auto;
    margin-bottom: 70px;
  }
  .products_first_holder_upper_txt .products_first_holder_note_lite {
    font-family: var(--akira-bold);
    font-size: 65px;
    color: #000;
    text-align: center;
  }
  .stripe {
    display: flex;
    justify-content: space-between;
  }
  .slice_side_left {
    width: 325px;
    height: 100px;
  }
  .slice_side_right {
    width: calc(100% - 345px);
  }
  .category_box{
    padding: 30px 20px;
    border: 1px solid #e1e1e1;
    margin-bottom: 30px;
  }
  .category_box .category_box_heading {
    font-family: var(--akira-bold);
    font-size: 22px;
    color: #000;
    margin-bottom: 10px;
    cursor: pointer;
    position: relative;
    border: 0;
    background: transparent;
  }
  .category_box_heading::after {
    content: '\f106';
    font-family: "Font Awesome 5 Free";
    font-size: 16px;
    font-weight: 900;
    position: absolute;
    right: -30px;
    top: 3px;
    /* transition: transform 0.3s ease; */
  }
  .category_box_heading.open::after {
    transform: rotate(180deg);
  }
  .box_seprator {
    padding: 10px 0px;
    border-bottom: 1px solid #e1e1e1;
  }
  .category_box label {
    font-family: var(--avantGarde-medium);
    font-size: 18px;
    color: #000;
  }
  .box_seprator .side_tab_item {
    font-family: var(--avantGarde-medium);
    font-size: 18px;
    color: #000;
    transition: all 0.25s;
  }
  .box_seprator .side_tab_item:hover {
    font-weight: 700;
  }
  .box_seprator .side_tab_item.active {
    font-weight: 700;
    border-bottom: 1px solid #000;
  }
  .zip_input {
    width: 100%;
    height: 26px;
    font-size: 14px!important;
    border: 1px solid #b9b6b6;
    padding: 0px 10px;
  }
  .category_box .rating_stars ul {
    gap: 7px;
  }
  .category_box .rating_stars ul li i {
    font-size: 16px;
    color: #eb8c18;
  }
  .category_box .rating_stars ul li p {
    font-size: 16px;
  }
  /* INPUT SLIDER CUSTOME  */
  .custom-range-slider {
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px 0px 10px 0px;
  }
  .slider-track {
    width: 100%;
    height: 3px;
    background: #121212;
    border-radius: 5px;
    position: relative;
    cursor: pointer;
  }
  .slider-thumb {
    width: 25px;
    height: 25px;
    background: #45a049;
    border: 2px solid #45a049;
    border-radius: 50%;
    position: absolute;
    top: -10px;
    cursor: pointer;
    transition: background 0.2s;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .slider-thumb:hover {
    background: #084025;
  }
  .thumb-value {
    font-family: var(--avantGarde-medium);
    color: white;
    font-weight: bold;
    font-size: 11px;
    position: absolute;
    bottom: 4px;
  }
  .slider-value {
    margin-top: 10px;
    font-weight: bold;
  }
  /* INPUT SLIDER CUSTOME  */
  .info__block {
    max-width: 205px;
    width: 100%;
    background: #dedede;
    margin: 10px 0px;
    overflow: hidden;
  }
  .info_block_clr_1 {
    background: #dedede;
  }
  .info_block_clr_2 {
    background: #084025;
  }
  .info__block_txt_block {
    padding: 15px;
  }
  .info__block_img_block img {
      width: 100%;
      height: 230px;
      object-fit: cover;
      transition: all 0.5s;
  }
  .info__block_img_block:hover img {
    transform: scale(1.1);
  }
  .info__block_txt_block h3 {
    font-family: var(--avantGarde-bold);
    font-size: 16px;
    color: #000;
    line-height: 1;
    margin-bottom: 10px;
  }
  .info_block_clr_2 .info__block_txt_block h3 {
    color: #fff;
  }
  .info__block_txt_block p {
    font-family: var(--avantGarde-medium);
    font-size: 14px;
    color: #6d6d6d;
    margin-bottom: 10px;
  }
  .info_block_clr_2 .info__block_txt_block p {
    color: #fff;
    opacity: 0.9;
  }
  .grid_seprator {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .grid_seprator h4 {
    font-family: var(--avantGarde-bold);
    font-size: 14px;
    color: #000;
  }
  .info_block_clr_2 .grid_seprator h4 {
    color: #fff;
  }
  .grid_seprator {
    margin-bottom: 15px;
  }
  .grid_seprator p {
    font-family: var(--avantGarde-medium);
    font-size: 14px;
    color: #6d6d6d;
    margin: 0;
  }
  .rating_stars ul {
    display: flex;
    align-items: center;
  }
  .rating_stars ul li i {
    font-size: 10px;
    color: #eb8c18;
  }
  .rating_stars ul li p {
    font-family: var(--avantGarde-medium);
    font-size: 13px;
    color: #000;
    line-height: 1;
    margin-left: 10px;
    margin-bottom: 0;
  }
  .grid__strip {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
  }
  .action_click {
    width: 270px;
    height: 55px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: var(--avantGarde-medium);
    font-size: 16px;
    color: #fff;
    background: #0d4027;
    margin-left: auto;
    transition: all 0.25s;
    border: 2px solid transparent
  }
  .view_all_click {
    width: 100%;
    height: 55px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: var(--avantGarde-medium);
    font-size: 16px;
    color: #fff;
    background: #328d50;
    transition: all 0.25s;
    border: 2px solid transparent
  }
  .view_all_click:hover,
  .action_click:hover { 
    border-color: #000;
    background: transparent;
    color: #000;
  }
  /* From Uiverse.io by Shoh2008 */ 
  .checkbox-wrapper-4 * {
    box-sizing: border-box;
    color: #000;
    font-family: var(--avantGarde-medium);
    font-size: 18px;
  }
  
  .checkbox-wrapper-4 .cbx {
    -webkit-user-select: none;
    user-select: none;
    cursor: pointer;
    padding: 6px 8px;
    border-radius: 6px;
    overflow: hidden;
    transition: all 0.2s ease;
    display: inline-block;
  }
  .checkbox-wrapper-4 .cbx:not(:last-child) {
    margin-right: 6px;
  }
  /* .checkbox-wrapper-4 .cbx:hover {
    background: rgba(0,119,255,0.06);
  } */
  .checkbox-wrapper-4 .cbx span {
    float: left;
    vertical-align: middle;
    transform: translate3d(0, 0, 0);
  }
  .checkbox-wrapper-4 .cbx span:first-child {
    position: relative;
    width: 18px;
    height: 18px;
    border-radius: 50px;
    transform: scale(1);
    border: 1px solid #cccfdb;
    transition: all 0.2s ease;
    box-shadow: 0 1px 1px rgba(0,16,75,0.05);
  }
  .checkbox-wrapper-4 .cbx span:first-child svg {
    position: absolute;
    top: 3px;
    left: 2px;
    fill: none;
    stroke: #fff;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-dasharray: 16px;
    stroke-dashoffset: 16px;
    transition: all 0.3s ease;
    transition-delay: 0.1s;
    transform: translate3d(0, 0, 0);
  }
  .checkbox-wrapper-4 .cbx span:last-child {
    padding-left: 8px;
    line-height: 18px;
  }
  .checkbox-wrapper-4 .cbx:hover span:first-child {
    border-color: #328d50;
  }
  .checkbox-wrapper-4 .inp-cbx {
    position: absolute;
    visibility: hidden;
  }
  .checkbox-wrapper-4 .inp-cbx:checked + .cbx span:first-child {
    background: #0d4027;
    border-color: #0d4027;
    animation: wave-4 0.4s ease;
  }
  .checkbox-wrapper-4 .inp-cbx:checked + .cbx span:first-child svg {
    stroke-dashoffset: 0;
  }
  .checkbox-wrapper-4 .inline-svg {
    position: absolute;
    width: 0;
    height: 0;
    pointer-events: none;
    user-select: none;
  }
  @media screen and (max-width: 640px) {
    .checkbox-wrapper-4 .cbx {
      width: 100%;
      display: inline-block;
    }
  }
  @-moz-keyframes wave-4 {
    50% {
      transform: scale(0.9);
    }
  }
  
  @-webkit-keyframes wave-4 {
    50% {
      transform: scale(0.9);
    }
  }
  
  @-o-keyframes wave-4 {
    50% {
      transform: scale(0.9);
    }
  }
  
  @keyframes wave-4 {
    50% {
      transform: scale(0.9);
    }
  }
  
  
  
  
  
  .print_demand_inner_holder {
    padding: 60px;
    border: 1px solid #e1e1e1;
    display: flex;
    gap: 25px;
  }
  .print_demand_inner_left_slice {
    width: 60%;
  }
  .print_demand_inner_right_slice {
    width: 40%;
  }
  .form_strip {
    margin-bottom: 20px;
  }
  .form_strip input,
  .form_strip textarea,
  .form_strip select {
    width: 100%;
    height: 55px;
    padding: 0px 20px;
    font-family: var(--avantGarde-medium);
    font-size: 18px;
    color: #6d6d6d;
    border: 1px solid #e1e1e1;
    background-color: transparent;
  }
  .form_strip textarea {
    height: 200px;
    resize: none;
    padding: 20px;
  }
  .form_strip select {
    font-family: var(--avantGarde-medium);
    font-size: 14px;
    color: #6d6d6d;
  }
  .form_strip select.minimal {
    background-image: url(../images/selectArrow.png);
    background-position: calc(100% - 15px) calc(1em + 10px);
    background-repeat: no-repeat;
  }
  .form_upper_stripe {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
  }
  .form_upper_stripe .form_strip {
    width: 32%;
  }
  .form_strip label{
    font-family: var(--avantGarde-medium);
    font-size: 15px;
    color: #6d6d6d;
    margin-bottom: 10px;
    display: block;
  }
  .add_click {
    width: 55px;
    height: 55px;
    border: 1px solid #e1e1e1;
    background-color: transparent;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    color: #000;
    cursor: pointer;
  }
  .file_input {
    display: none;
  }
  .plus_minus_box {
    width: 100%;
    height: 55px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid #e1e1e1;
    background-color: transparent;
    padding: 0px 20px;
  }
  .plus_minus_box input {
    width: 20px;
    height: 20px;
    padding: 0;
    font-size: 14px;
    text-align: center;
    border: 0;
  }
  .plus_minus_box a {
    font-family: var(--avantGarde-medium);
    font-size: 14px;
    color: #000;
    width: 20px;
    height: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
  }
  .w-50 {
    width: 50%;
  }
  .quote_btn {
    width: 255px;
    height: 55px;
    border: 1px solid #e1e1e1;
    background-color: transparent;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: var(--avantGarde-medium);
    font-size: 18px;
    color: #000;
    cursor: pointer;
  }
  .print_demand_inner_right_slice .img_strip img {
    width: 100%;
  } 
  .form_strip.relative_item {
    position: relative;
  }
  .form_strip.relative_item::after {
    content: '\f059';
    font-family: "Font Awesome 5 Free";
    font-size: 16px;
    position: absolute;
    right: 15px;
    top: 48px;
  }
  .category_box.sub_category_box {
    margin-bottom: 0;
    padding: 10px 0px 10px 20px;
    border: 0;
  }
  .category_box.sub_category_box .category_box_heading {
    font-family: var(--avantGarde-medium);
    font-size: 18px;
    color: #000;
    margin-bottom: 0;
  }
  /* From Uiverse.io by Nawsome */ 
  .form_upper_stripe_init {
    display: flex;
    align-items: center;
    width: 100%;
    gap: 30px;
  }
  .clear {
    clear: both;
  }
  .checkBox {
    display: block;
    cursor: pointer;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0);
    border-radius: 10px;
    position: relative;
    overflow: hidden;
    box-shadow: 0px 0px 0px 2px #000;
  }
  
  .checkBox div {
    width: 60px;
    height: 60px;
    background-color: #000;
    top: -52px;
    left: -52px;
    position: absolute;
    transform: rotateZ(45deg);
    z-index: 100;
  }
  
  .checkBox input[type=checkbox]:checked + div {
    left: -10px;
    top: -10px;
  }
  
  .checkBox input[type=checkbox] {
    position: absolute;
    left: 50px;
    visibility: hidden;
  }
  
  .transition {
    transition: 300ms ease;
  }
  
.info__block_txt_block h3 {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  
  .p-desc p, .p-desc {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-family: var(--avantGarde-medium) !important;
    font-size: 12px !important;
    color: #6d6d6d;
  }
  
  /* PRODUCT-FIRST-HOLDER-START */
  
  .stripe_1 {
    display: flex;
    justify-content: center;
    gap: 20px;
  }
  .slice_left_side_slider {
    width: 40%;
  }
  .slider_right_side {
    width: 90%;
	max-height: 638px;
  }
  .slider_left_side {
    width: 20%;
    overflow-y: scroll;
    cursor: pointer;
  }
  .slider_left_side::-webkit-scrollbar {
    width: 0px;
  }
  .slider_left_side::-webkit-scrollbar-track {
    background: transparent;
  }
  .slider_left_side::-webkit-scrollbar-thumb {
    background-color: transparent;
  }
  .slider_flex {
    display: flex;
    gap: 20px;
    flex-direction: row-reverse;
    max-height: 965px;
    overflow: hidden;
  }
  .slider_left_img {
    width: 100%!important;
    height: 81px!important;
  }
  .thumbsSlider_left {
    flex-direction: column;
    gap: 15px;
  }
  .mySwiper2 .swiper-slide img {
    width: 100%;
    height: auto;
    object-fit: cover;
	max-height: 638px;
  }
  
  .mySwiper .swiper-slide img {
    width: 100%;
    height: 100%;
    max-height: 100px;
    object-fit: cover;
  }
  .swiper-slide-thumb-active { 
    opacity: 1 !important; 
  } 
  .slider_left_img { 
    /* opacity: 0.5;  */
  }
  .slice_mid_side {
    width: 40%;
  }
  .slice_mid_box {
    border-bottom: 1px solid #acacac;
    padding: 0px 0px 10px 0px;
  }
  .slice_mid_side_main_text h6 {
    font-size: 18px;
    font-family: var(--avantGarde-regular);
    color: var(--black);
    line-height: 2;
    margin-bottom: 10px;
  }
  .slice_mid_side_main_text p {
    font-size: 15px;
    font-family: var(--avantGarde-regular);
    color: #0d4027;
    margin-bottom: 10px;
  }
  .slice_mid_flex_box {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 10px;
  }
  .slice_mid_flex_box ul {
    display: flex;
    align-items: center;
    gap: 5px;
  }
  .slice_mid_flex_box ul li span{
    font-size: 14px;
    color: #fdd73a;
  }
  .slice_mid_flex_box li p{
    font-size: 15px;
  }
  .slice_mid_flex_box li {
    font-size: 14px;
    font-family: var(--avantGarde-regular);
    color: var(--black);
  }
  #form_dropdown_1 {
    position: relative;
    cursor: pointer;
    user-select: none;
    background-color: rgb(255 255 255 / 16%);
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    border-radius: 5px;
    font-size: 14px;
    font-family: var(--avantGarde-regular);
    color: var(--black);
    width: 170px;
    padding: 0px 10px;
  }
  .flex_p {
    display: flex;
    align-items: center;
  }
  .slice_mid_dropdown_1 {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 10px;
    position: relative;
  }
  #form_dropdown_4 {
    position: relative;
    cursor: pointer;
    user-select: none;
    background-color: rgb(255 255 255 / 16%);
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    border-radius: 5px;
    font-size: 12px;
    font-family: var(--myriadpro-regular);
    color: #0d4027;
    width: 60px;
    padding: 0px 5px;
  }
  .slice_mid_dropdown_1 span {
    position: absolute;
    top: 1px;
    right: 3px;
    font-size: 12px;
    color: #0d4027;
    cursor: pointer;
  }
  .slice_mid_dropdown {
    position: relative;
  }
  .slice_mid_dropdown span {
    position: absolute;
    top: 2px;
    right: -11px;
    font-size: 14px;
    color: var(--black);
    cursor: pointer;
  }
  .slice_mid_img_text {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
  }
  .slice_mid_img_text p {
    font-size: 12px;
    font-family: var(--avantGarde-regular);
    color: #0d4027;
  }
  .slice_mid_box_1 {
    padding: 20px 0px;
    border-bottom: 1px solid #acacac;
  } 
  .light_desc {
    font-size: 12px;
    font-family: var(--avantGarde-regular);
    color: #666666;
    margin-bottom: 10px;
  }
  .slice_box_ttext {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 10px;
  }
  .slice_box_ttext h5 {
    font-size: 25.5px;
    font-family: var(--avantGarde-regular);
    color: #c5002e;
    font-weight: 400;
  }
  .slice_box_ttext h6 {
    font-size: 25.5px;
    font-family: var(--avantGarde-regular);
    color: #363838;
    font-weight: 400;
    display: flex;
    align-items: flex-start;
  }
  .slice_box_ttext h6 span{
    font-size: 13.5px;
  }
  .light_desc span {
    color: #0e4027;
  }
  .slice_mid_ul_flex {
    display: flex;
    align-items: center;
    gap: 100px;
  }
  .slice_mid_ul_flex ul {
    display: flex;
    flex-direction: column;
    gap: 17.5px;
  }
  .slice_mid_ul_flex .dark li{
    font-size: 14px;
    font-family: var(--avantGarde-regular);
    color: var(--black);
  }
  .slice_mid_ul_flex .light li{
    font-size: 14px;
    font-family: var(--avantGarde-regular);
    color: #666666;
  }
  .slice_last_box_text h6 {
    font-size: 18.5px;
    font-family: var(--avantGarde-regular);
    color: var(--black);
    margin-bottom: 10px;
  }
  .slice_last_box_text p {
    font-size: 14px;
    font-family: var(--avantGarde-regular);
    color: var(--black);
    opacity: 0.8;
    line-height: 2;
  }
  .flex_p i {
    transform: translate(7px, -5px);
    font-size: 12px;
    color: #555555;
    cursor: pointer;
  }
  
  
  .slice_right_side {
    width: 20%;
  }
.slice_right_side_box_1 {
    padding: 20px;
    border: 1px solid #acacac;
    border-radius: 10px;
    margin-bottom: 30px;
    background-color: #fff !important;
}
  .slice_rifgt_side_ttext h6 {
    font-size: 29.5px;
    font-family: var(--avantGarde-regular);
    color: var(--black);
    margin-bottom: 10px;
    font-weight: 400;
    display: flex;
    align-items: flex-start;
  }
  .slice_rifgt_side_ttext h6 span{
    font-size: 13.5px;
  }
  .slice_rifgt_side_ttext p {
    font-size: 12px;
    font-family: var(--avantGarde-medium);
    color: var(--black);
    margin-bottom: 10px;
  }
  .slice_rifgt_side_ttext p span {
    color: #666666;
  }
  .holder_1_slice_right_pin {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
  }
  .holder_1_slice_right_pin p {
    font-size: 12px;
    font-family: var(--avantGarde-regular);
    color: var(--black);
  }
  .slice_right_stock p {
    font-size: 16.5px;
    font-family: var(--avantGarde-regular);
    color: #2a6000;
    margin-bottom: 20px;
    font-weight: 600;
  }
  .slice_right_select {
    position: relative;
  }
  .slice_right_select span {
    position: absolute;
    top: 12px;
    right: 10px;
    font-size: 14px;
    color: #666666;
  }
  #form_dropdown_2 {
    position: relative;
    cursor: pointer;
    user-select: none;
    background-color: rgb(255 255 255 / 16%);
    display: flex;
    height: 35px;
    align-items: center;
    justify-content: center;
    margin: 0 0 15px 0px;
    border: 1px solid #666666;
    border-radius: 5px;
    font-size: 12px;
    font-family: var(--avantGarde-regular);
    color: #666666;
    width: 100%;
    padding: 0px 10px;
  }
  .slice_right_btn {
    margin-bottom: 20px;
    margin-top: 10px;
  }
  .yello_light {
    font-size: 16px;
    font-family: var(--avantGarde-medium);
    color: var(--black);
    background-color: #fed73a;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 45px;
    border-radius: 60px;
    margin-bottom: 10px;
    border: 1px solid transparent;
  }
  .yello_dark {
    font-size: 16px;
    font-family: var(--avantGarde-medium);
    color: var(--black);
    background-color: #fba431;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 45px;
    border-radius: 60px;
    margin-bottom: 10px;
    border: 1px solid transparent;
  }
  
  .slice_right_shipment_text {
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin-bottom: 5px;
  }
  .slice_right_shipment_text p {
    font-size: 12px;
    font-family: var(--avantGarde-regular);
    color: #666666;
    width: 80px;
  }
  .slice_right_shipment_text h5 {
    font-size: 12px;
    font-family: var(--avantGarde-regular);
    color: #0d4027;
    width: 140px;
  }
  .slice_right_shipment_text .clr_blk {
    color: var(--black);
  }
  .slice_right_shipment_box {
    margin-bottom: 15px;
  }
  .form-check-input {
    border: 1px solid #00584a;
    accent-color: #00584a;
    user-select: none;
  }
  .form-check-label {
    font-size: 13px;
    font-family: var(--avantGarde-medium);
    color: var(--black);
    cursor: pointer;
    padding: 0px 0px 0px 5px;
  }
  .slice_right_check {
    padding: 0px 0px 15px 0px;
    border-bottom: 2px solid #acacac;
    margin-bottom: 15px;
  }
  .slice_right_side_box_2_ttext {
    padding: 10px;
    border-bottom: 1px solid #acacac;
  }
  .slice_right_side_box_2 {
    border-radius: 10px;
    border: 1px solid #acacac;
    position: relative;
    overflow: hidden;
  }
  .slice_right_side_box_2_ttext h6 {
    font-size: 15px;
    font-family: var(--avantGarde-medium);
    color: var(--black);
    line-height: 2;
  }
  .slice_right_side_box_2_ltext {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 10px;
    position: relative;
  }
  .slice_right_side_box_2_ltext span i {
    position: absolute;
    bottom: 15px;
    right: 10px;
    font-size: 14px;
    color: #000;
    cursor: pointer;
  }
  .slice_right_side_box_2_ltext p {
    font-size: 16px;
    font-family: var(--avantGarde-medium);
    color: var(--black);
    opacity: 0.5;
  }
  .slice_right_side_box_2_ltext h6 {
    font-size: 16px;
    font-family: var(--avantGarde-medium);
    color: #000;
    font-weight: 500;
    display: flex;
  }
  .slice_right_side_box_2_ltext h6 span {
    font-size: 22px;
  }
  
  .list_btn {
    font-size: 16px;
    font-family: var(--avantGarde-medium);
    color: var(--black);
    background-color: var(--white);
    width: 100%;
    height: 35px;
    border-radius: 5px;
    margin-bottom: 10px;
    border: 1px solid #555555;
    display: flex;
    align-items: center;
    padding: 0px 0px 0px 10px;
  } 
  /* PRODUCT-FIRST-HOLDER-END */
  
  
  
  /* PRODUCT-SECOND-HOLDER-START */
  .products_second_holder {
    padding: 50px 0px;
  }
  .cust_bdr {
    padding: 0px 0px 50px 0px;
    border-bottom: 2px solid #acacac;
  }
  .holder_2_slice_left {
    width: 80%;
  }
  .holder_2_slice_left_ttext {
    margin-bottom: 20px;
  }
  .holder_2_slice_left_ttext h6 {
    font-size: 22px;
    font-family: var(--akira-bold);
    color: var(--black);
    line-height: 1.8;
  }
  .holder_2_slice_left_ttext p {
    font-size: 14px;
    font-family: var(--avantGarde-medium);
    color: var(--black);
    opacity: 0.8;
  }
  
  .holder_2_slice_right {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    width: 20%;
    padding: 0px 25px;
    position: relative;
    height: 520px;
  }
  .holder_2_slice_right h6 {
    font-size: 16px;
    font-family: var(--avantGarde-regular);
    color: #001209;
    margin-bottom: 10px;
  }
  .holder_2_slice_right a {
    width: 180px;
    margin: 0 auto 20px auto;
    border-radius: 5px;
    border-color: #ccc;
  }
  .holder_2_slice_right p {
    font-size: 15px;
    font-family: var(--avantGarde-medium);
    color: #666666;
    position: relative;
  }
  .holder_2_slice_right p span {
    position: absolute;
    top: 0px;
    left: -13px;
    font-size: 10px;
    color: #fff;
    background-color: #0b5e36;
    width: 21px;
    height: 21px;
    border-radius: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
  }
  /* PRODUCT-SECOND-HOLDER-END */
  
  
  
  /* PRODUCT-THIRD-HOLDER-START */
  .products_third_holder {
    padding: 50px 0px;
  }
  .holder_3_slice_left {
    width: 25%;
  }
  .holder_3_left_ratings {
    padding: 0px 0px 20px 0px;
    border-bottom: 2px solid #acacac;
  }
  .holder_3_slice_left_rating {
    margin-bottom: 30px;
  }
  .holder_3_sleft_ttext h6 {
    font-size: 22px;
    font-family: var(--akira-bold);
    color: var(--black);
    line-height: 1.8;
  }
  .holder_3_sleft_ttext span ul {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0px 0px 10px 0px;
  }
  .holder_3_sleft_ttext span ul li {
    font-size: 18px;
    color: #fdd73a;
  }
  .holder_3_sleft_ttext span ul li p {
    font-size: 20px;
    font-family: var(--avantGarde-medium);
    color: var(--black);
    margin: 0px 0px 0px 10px;
  }
  .holder_3_sleft_ttext p {
    font-size: 20px;
    font-family: var(--avantGarde-medium);
    color: var(--black);
    margin: 0px 0px 20px 0px;
  }
  #form_dropdown_3 {
    position: relative;
    cursor: pointer;
    user-select: none;
    background-color: rgb(255 255 255 / 16%);
    transition-timing-function: cubic-bezier(0.25, 0.8, 0.25, 1);
    transition-duration: 300ms;
    transition-property: color, background-color, box-shadow;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-family: var(--avantGarde-medium);
    color: var(--black);
    width: 100%;
    padding: 0px 0px 0px 35px;
  }
  .slice_mid_dropdown_3 {
    position: relative;
  }
  .slice_mid_dropdown_3 span {
    position: absolute;
    top: 0px;
    left: 0px;
    font-size: 18px;
    color: #000;
    cursor: pointer;
  }
  .holder_3_item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0px 0px 20px 0px;
  }
  .holder_3_item p {
    font-size: 16px;
    font-family: var(--avantGarde-medium);
    color: var(--black);
  }
  .item_rating {
    width: 70%;
    height: 20px;
    border: 1px solid var(--black);
    background-color: #edecec;
  }
  .item_rating span {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    background-color: #fdd73a;
  }
  .holder_3_sleft_ltext {
    display: flex;
    align-items: center;
    gap: 20px;
  }
  .holder_3_sleft_ltext p {
    font-size: 16px;
    font-family: var(--avantGarde-medium);
    color: var(--black);
  }
  .holder_3_review_box {
    padding: 20px 0px;
  }
  .holder_3_review_box h6 {
    font-size: 22px;
    font-family: var(--akira-bold);
    color: var(--black);
    line-height: 1.5;
  }
  .holder_3_review_box p {
    font-size: 16px;
    font-family: var(--avantGarde-medium);
    color: #555555;
    margin-bottom: 20px;
  }
  .holder_3_review_box a {
    width: 100%;
    border-radius: 5px;
    border-color: #ccc;
  }
  
  
  
  
  .holder_3_slice_right {
    width: 70%;
    margin: 0 auto;
  }
  .holder_3_slice_right_ttext h6 {
    font-size: 22px;
    font-family: var(--akira-bold);
    color: var(--black);
    line-height: 1.5;
    margin-bottom: 20px;
  }
  .holder_3_slice_right_ttext p {
    font-size: 16px;
    font-family: var(--avantGarde-medium);
    color: #555555;
    line-height: 2.2;
    margin-bottom: 40px;
  }
  .holder_3_right_slider_ttext {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .holder_3_right_slider_ttext h6 {
    font-size: 22px;
    font-family: var(--akira-bold);
    color: var(--black);
    line-height: 1.5;
    margin-bottom: 20px;
  }
  .holder_3_right_slider_ttext a {
    font-size: 16px;
    font-family: var(--avantGarde-medium);
    color: var(--black);
    opacity: 0.7;
    border-bottom: 2px solid #acacac;
    cursor: pointer;
  }
  .holder_3_right_slider {
    width: 90%;
    margin: 0 auto;
  }
  .holder_3_slider_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .holder_3_slider_nav_btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: row-reverse;
    transform: translate(0px, -120px);
  }
  .holder_3_btn_next i {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #52525233;
    color: #0000008c;
    width: 35px;
    height: 40px;
    border: 1.5px solid #00000085;
    cursor: pointer;
  }
  .holder_3_btn_prev i {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #52525233;
    color: #0000008c;
    width: 35px;
    height: 40px;
    border: 1.5px solid #00000085;
    cursor: pointer;
  }
  .holder_3_slice_right_comment h6 {
    font-size: 22px;
    font-family: var(--akira-bold);
    color: var(--black);
    line-height: 1.5;
    margin-bottom: 20px;
  }
  .holder_3_comment_box {
    margin-bottom: 50px;
  }
  .holder_3_comment_img_flex {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 15px;
  }
  .holder_3_comment_img_flex h5 {
    font-size: 25px;
    font-family: var(--avantGarde-medium);
    color: var(--black);
    font-weight: 500;
  }
  .holder_3_comment_taring_flex {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
  }
  .comment_rating_start ul {
    display: flex;
    align-items: center;
    gap: 5px;
  }
  .comment_rating_start ul li {
    font-size: 18px;
    color: #fdd73a;
  }
  .comment_rating_text p {
    font-size: 18px;
    font-family: var(--avantGarde-medium);
    color: var(--black);
    font-weight: 400;
  }
  .holder_3_comment_para p {
    font-size: 16px;
    font-family: var(--avantGarde-medium);
    color: #555;
    margin-bottom: 10px;
    line-height: 2.2;
  }
  
  
  
  /* .cus_style .category_box_heading::after {
    content: '\f106';
    font-family: "Font Awesome 5 Free";
    font-size: 16px;
    font-weight: 900;
    position: absolute;
    left: -20px;
    top: 3px;
  }
  .cus_style .category_box_heading::after {
    content: '\f106';
    font-family: "Font Awesome 5 Free";
    font-size: 16px;
    font-weight: 900;
    position: absolute;
    left: -20px;
    top: 3px;
  } */
  /* PRODUCT-THIRD-HOLDER-END */
  
  
  
  /* PRODUCT-FOURTH-HOLDER-START */
  .holder_4_slice_left {
    width: 50%;
  }
  .holder_4_slice_left_box_ttext {
    margin-bottom: 30px;
  }
  .holder_4_slice_left_box_ttext h6 {
    font-size: 22px;
    font-family: var(--akira-bold);
    color: var(--black);
    line-height: 1.8;
  }
  .holder_4_slice_left_box_ttext p {
    font-size: 14px;
    font-family: var(--avantGarde-medium);
    color: #0a6136;
  }
  .holder_4_slice_left_box_flex {
    border: 1.5px solid #acacac;
    width: 100%;
    margin-bottom: 30px;
  }
  .holder_4_slice_box_text_left {
    width: 50%;
    background-color: #f0f2f2;
  }
  .holder_flex_box {
    display: flex;
    border-bottom: 1px solid #acacac;
  }
  .holder_flex_box:last-child {
    border-bottom: 0;
  }
  .holder_4_slice_box_text_left p {
    font-size: 14px;
    font-family: var(--avantGarde-medium);
    color: #555555;
    padding: 10px 15px;
  }
  .holder_4_slice_box_text_right p {
    font-size: 14px;
    font-family: var(--avantGarde-medium);
    color: #555555;
    padding: 10px 15px;
  }
  .holder_4_slice_box_text_right {
    width: 50%;
  }
  
  
  .holder_4_slice_right {
    width: 50%;
  }
  .holder_4_slice_right_flex {
    display: flex;
    gap: 60px;
    justify-content: space-between;
    width: 100%;
    padding: 20px;
  }
  .holder_4_slice_flex_left h6 {
    font-size: 18px;
    font-family: var(--avantGarde-medium);
    color: var(--black);
    font-weight: 400;
  }
  .holder_4_slice_flex_right span {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 10px;
  }
  .holder_4_slice_flex_right p {
    font-size: 18px;
    font-family: var(--avantGarde-medium);
    color: var(--black);
    font-weight: 400;
  }
  .holder_4_slice_flex_right span ul {
    display: flex;
    align-items: center;
    gap: 4px;
  }
  .holder_4_slice_flex_right span ul li {
    font-size: 14px;
    color: #fdd73a;
  }
  .holder_4_slice_right_text {
    margin-bottom: 30px;
  }
  .holder_4_slice_right_text h6 {
    font-size: 22px;
    font-family: var(--akira-bold);
    color: var(--black);
    line-height: 1.5;
    padding-bottom: 10px;
    border-bottom: 2px solid #acacac;
    margin-bottom: 15px;
  }
  .holder_4_slice_right_text p {
    font-size: 14px;
    font-family: var(--avantGarde-medium);
    color: #555555;
    line-height: 1.8;
    margin-bottom: 10px;
  }
  .holder_4_slice_right_text p span {
    font-size: 18px;
    color: #000;
  }
  .cust_clr_gren {
    color: #0a6136 !important;
  }
  /* PRODUCT-FOURTH-HOLDER-END */
  
  
  
  /* PRODUCT-FIFTH-HOLDER-START */
  .products_fifth_holder {
    padding: 50px 0px;
  }
  .holder_5_strip {
    display: flex;
    align-items: center;
    gap: 15px;
  }
  /* PRODUCT-FIFTH-HOLDER-END */
  
  
  .slice_right_check1 label,
  .slice_right_check label {
    top: -3px;
    position: relative;
  }
  
  
  
  /* HOLDER-3_FORM-START */
  #customer_review_form {
    border: 1px solid #5555;
    border-radius: 10px;
    padding: 10px;
  }
  #customer_review_form.hidden {
    display: none;
  }
  #customer_review_form.show {
    display: block;
  }
  .form_strip_1 input, .form_strip_1 textarea {
    width: 100%;
    height: 50px;
    padding: 0px 15px;
    font-family: var(--avantGarde-medium);
    font-size: 14px;
    color: #6d6d6d;
    border: 1px solid #e1e1e1;
    background-color: transparent;
    border-radius: 5px;
    margin-bottom: 15px;
  }
  .form_strip_1 textarea {
    height: 150px;
    resize: none;
    padding: 15px 15px;
  }
  .form_rating_stripe {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    gap: 10px;
  }
  .form_main_flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px;
    border: 1px solid #e1e1e1;
    border-radius: 5px;
    height: 50px;
  }
  .form_strip_1 {
    width: 100%;
  }
  .form_strip_1 .form_main_flex label {
    font-family: var(--avantGarde-medium);
    font-size: 13px;
    color: #6d6d6d;
    margin-bottom: 0px;
    display: block;
  }
  .form_main_flex .add_click {
    width: 25px;
    height: 25px;
    font-size: 25px;
    color: #0d4027;
    border: 1px solid transparent;
    cursor: pointer;
  }
  #starRating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2px;
    font-size: 14px;
    color: #e1e1e1;
    cursor: pointer;
  }
  #starRating i.active {
    color: #fdd73a;
  }
  .holder_from_slice_btn button {
    height: 50px;
    width: 100%;
    border-radius: 5px;
    border-color: #e1e1e1;
  }
  
  /* HOLDER-3_FORM-END */