@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@500&family=Poppins:wght@400;500;600;700;800&display=swap');

:root {
    --main-color: #000;
}
html {
  scroll-behavior: smooth;
}
body{
    overflow: hidden;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
    font-family: 'Poppins', sans-serif;
}
img{
    max-width: 100%;
}
.active{
    border: 2px solid #00abff !important;
}
.main-parent {
    height: 100vh;
    display: grid;
    /*grid-template-columns: auto 800px;*/
    grid-template-columns: 70% auto;
    overflow: hidden;
    transition: .2s ease-in-out;
}

.main-parent.active {
    height: 100vh !important;
    grid-template-columns: 100% auto !important;
}

.iframe-box {
    /*background-image: url(bg.PNG);*/
    /*background-size: cover; */
    /*background-repeat: no-repeat;*/
    position: relative;
}

.ui {
    display: flex;
    flex-direction: column;
    /*justify-content: center;*/
    align-items: center;
    /*padding: 40px;*/
    padding: 20px;
    /*overflow-x: hidden;*/
    /*overflow-y: scroll;*/
    height: 100vh;
    /*overflow: scroll;*/
    overflow-x: hidden;
}

.main-hdng {
    font-family: 'Montserrat', sans-serif;
    margin: 10px 0 40px 0;
    font-size: 37px;
}

#flush-collapseOne .accordion-body,
#flush-collapseTwo .accordion-body {
    overflow: auto;
    overflow-x: hidden;
}
.accordion-body{
    overflow: auto;
    overflow-x: auto;
    scrollbar-width: thin;
}

.frontImgDiv p,
.backImgDiv p {
    font-size: 12px;
    margin-bottom: 0;
    text-align: center;
    margin-top: 5px;
}

.accordion {
    width: 100%;
}

.accordion-button {
    color: var(--main-color);
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
}

.accordion-button::after {
    display: none;
}

.accordion-button:not(.collapsed) {
    background-color: white;
    color: var(--main-color);
}

.accordion-button:focus {
    box-shadow: none;
}

.accordion-item {
    border-bottom: 0;
}

.numberSpan {
    border: 2px solid var(--main-color);
    border-radius: 50%;
    color: var(--main-color);
    height: 35px;
    width: 35px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 15px;
}

.quoteBtn-div {
    width: 100%;
    display: flex;
    justify-content: center;
}

.quote-btn {
    background-color: var(--main-color);
    color: white;
    font-weight: 600;
    text-transform: uppercase;
    margin-left: 25px;
    margin-top: 30px;
    border: 1px solid var(--main-color);
    border-radius: 0;
    padding: 10px 40px;
}

.quote-btn:hover {
    background-color: var(--main-color);
    border-color: var(--main-color);
}

.quote-btn:active {
    background-color: var(--main-color) !important;
    border-color: var(--main-color) !important;
}

.quote-btn:focus-visible {
    background-color: var(--main-color);
    border-color: var(--main-color);
    box-shadow: none;
}

.questions {
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 600;
    padding-top: 30px;
}

.designImg-box {
    display: flex;
    grid-gap: 10px;
    flex-wrap: wrap;
}

.design-imgDivs {
    display: flex;
}

.design-img, .accessOptionsGrid img, .woodColorsGrid img {
    width: 130px;
    border: 2px solid transparent;
}

.qty-table{
    display: block;
    overflow-x: scroll;
    width: 100%;
}


.switchDiv {
    display: flex;
    justify-content: end;
}

.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 24px;
    border: 1px solid;
    border-radius: 34px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    -webkit-transition: .4s;
    transition: .4s;
}

.slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 4px;
    bottom: 2px;
    background-color: black;
    -webkit-transition: .4s;
    transition: .4s;
}

input:checked+.slider {
    background-color: var(--main-color);
}

input:focus+.slider {
    box-shadow: 0 0 1px var(--main-color);
}

input:checked+.slider:before {
    -webkit-transform: translateX(26px);
    -ms-transform: translateX(26px);
    transform: translateX(32px);
}

/* Rounded sliders */
.slider.round {
    border-radius: 34px;
}

.slider.round:before {
    border-radius: 50%;
}

.scrollDiv {
    width: 100%;
}

.stepBtnDiv {
    display: flex;
    justify-content: space-between;
}

.nextBtn,
.prevBtn {
    border: 0;
    padding: 7px 15px;
    border-radius: 5px;
    font-size: 12px;
    font-weight: 100;
    display: none;
}

.nextBtn {
    background: #1976d2 !important;
    color: #fff;
    display: none;
}

.prevBtn {
    background: #f2f2f2 !important;
    color: #000;
}

.contactLink {
    color: var(--main-color);
    text-decoration: none;
    font-weight: 600;
}
.accordion-button.collapsed::before {
    content: "\002B";
}
.accordion-button:not(.collapsed)::before {
    content: "\2212";
}

.accordion-button::before {
    font-size: 2rem;
    position: absolute;
    right: 1rem;
    top: 15px;
    z-index: 999999999999;
    color: var(--main-color);
    transition: transform 0.3s;
}

.accordion-button:not(.collapsed)::before {
    transform: rotate(180deg);
}

/* new css */
.insertColors{
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
  }
  .insertColors .color{
    width: 75px;
    height: 75px;
    border-radius: 7px;
  }
  .color.white{
    background-color: #f3f2f2;
  }
  .color.cream{
    background-color: #FFFDD0;
  }
  .color.blue{
    background-color: #2a88c8;
  }
  .color.grey{
    background-color: grey;
  }
  .btn-donate {
    color: purple;
    text-transform: uppercase;
    text-decoration: none;
    border: 2px solid purple;
    padding: 10px 20px;
    font-size: 17px;
    cursor: pointer;
    font-weight: bold;
    background: transparent;
    position: relative;
    transition: all 1s;
    overflow: hidden;
  }
  
  .btn-donate:hover {
    color: white;
  }
  
  .btn-donate::before {
    content: "";
    position: absolute;
    height: 100%;
    width: 0%;
    top: 0;
    left: -40px;
    transform: skewX(45deg);
    background-color: purple;
    z-index: -1;
    transition: all 1s;
  }
  
  .btn-donate:hover::before {
    width: 160%;
  }
  
  .button-48 {
    appearance: none;
    background-color: #EFEFEF;
    border-width: 0;
    box-sizing: border-box;
    color: #000000;
    cursor: pointer;
    display: inline-block;
    font-family: Clarkson,Helvetica,sans-serif;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0;
    line-height: 1px;
    margin: 0;
    opacity: 1;
    outline: 0;
    padding: 1.5em 2.2em;
    position: relative;
    text-align: center;
    text-decoration: none;
    text-rendering: geometricprecision;
    text-transform: uppercase;
    transition: opacity 300ms cubic-bezier(.694, 0, 0.335, 1),background-color 100ms cubic-bezier(.694, 0, 0.335, 1),color 100ms cubic-bezier(.694, 0, 0.335, 1);
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
    vertical-align: baseline;
    white-space: nowrap;
    border: 1px solid transparent;
  }
  .button-48.active{
    background-color: #DEDEDE;
    border: 1px solid #000;
  }
  .button-48:before {
    animation: opacityFallbackOut .5s step-end forwards;
    backface-visibility: hidden;
    background-color: #EBEBEB;
    clip-path: polygon(-1% 0, 0 0, -25% 100%, -1% 100%);
    content: "";
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    transform: translateZ(0);
    transition: clip-path .5s cubic-bezier(.165, 0.84, 0.44, 1), -webkit-clip-path .5s cubic-bezier(.165, 0.84, 0.44, 1);
    width: 100%;
  }
  
  .button-48:hover:before {
    animation: opacityFallbackIn 0s step-start forwards;
    clip-path: polygon(0 0, 101% 0, 101% 101%, 0 101%);
  }
  
  .button-48:after {
    background-color: #FFFFFF;
  }
  
  .button-48 span {
    z-index: 1;
    position: relative;
  }
  /* drag and drop file */
  .drop-zone {
    max-width: 100%;
    height: 300px;
    padding: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-family: "Quicksand", sans-serif;
    font-weight: 500;
    font-size: 20px;
    cursor: pointer;
    color: #cccccc;
    border: 4px dashed #009578;
    border-radius: 10px;
  }
  
  .drop-zone--over {
    border-style: solid;
  }
  
  .drop-zone__input {
    display: none;
  }
  
  .drop-zone__thumb {
    width: 100%;
    height: 100%;
    border-radius: 10px;
    overflow: hidden;
    background-color: #cccccc;
    background-size: cover;
    position: relative;
  }
  
  .drop-zone__thumb::after {
    content: attr(data-label);
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 5px 0;
    color: #ffffff;
    background: rgba(0, 0, 0, 0.75);
    font-size: 14px;
    text-align: center;
  }
  
  /* drag and drop file */
  .ledInsideHeading{
    font-size: 20px;
    font-weight: 600;
    border-bottom: 1px solid;
    display: inline-block;
    margin-bottom: 2rem;
  }
  .ledsOptions{
    display: grid;
    grid-template-columns: repeat(3,100px);
    gap: 20px;
  }
  .ledsOptions img{
    max-width: 100px;
    margin-bottom: 15px;
  }  
  .textDiv{
    text-align: center;
  }
  .accessOptionsGrid{
    display: grid;
    grid-template-columns: repeat(3,130px);
    text-align: center;
    gap: 20px;
  }
  .woodColorsGrid{
    display: grid;
    grid-template-columns: repeat(3,130px);
    grid-gap: 20px;
    text-align: center;
  }
  .btn.stove{
    border: 1px solid;
    color: #000;
    border-radius: 0;
}
.btn.stove.active{
    border: 1px solid transparent;
    background: #000;
    color: #fff;
  }
/*  .contactBtn{*/
/*      min-width: 200px;*/
/*      padding: 5px;*/
/*  }*/
/*.contactBtnDiv{*/
/*    display: flex;*/
/*    justify-content: center;*/
/*    width: 100%;*/
/*}*/


.modal .modal-content {
  background: #f9f9f9;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.modal .modal-title {
  color: #333;
  font-weight: 600;
}

.modal .form-group {
  margin-bottom: 1rem;
}

.modal .form-control {
  border: 1px solid #ccc;
  border-radius: 4px;
  padding: 10px;
  font-size: 14px;
}

.modal .form-control:focus {
  border-color: #007bff;
  box-shadow: 0 0 5px rgba(0, 123, 255, 0.5);
}

.modal label {
  font-weight: 500;
  color: #555;
  margin-bottom: 5px;
  display: block;
}

.modal .btn-primary {
  background-color: #007bff;
  border-color: #007bff;
  color: #fff;
  font-weight: 600;
}

.modal .btn-primary:hover {
  background-color: #0056b3;
  border-color: #0056b3;
}

.modal .btn-secondary {
  background-color: #6c757d;
  border-color: #6c757d;
  color: #fff;
}

.modal .btn-secondary:hover {
  background-color: #5a6268;
  border-color: #545b62;
}
  @media(max-width: 1024px){
    .main-parent{
        grid-template-columns: 100%;
    }
    .iframe-box, .ui, iframe {
        height: 50vh;
    }
    .ui{
        padding: 10px;
        padding-bottom: 50px;
    }
    .accordion-body{
        padding: 10px;
    }
    .accordion-button{
        font-size: 14px !important;
        padding: 10px;
    }
    .numberSpan{
        height: 25px;
        width: 25px;
        border: 1px solid var(--main-color);
    }
    .accordion-button::before {
        font-size: 14px;
    }
    .insertColors .color{
        width: 75px;
        height: 75px;
        border-radius: 7px;
    }
    .btn.stove, .text, .textDiv{
        font-size: 12px;
    }
    .design-img, .accessOptionsGrid img, .woodColorsGrid img {
        width: 100px;
    }
    .ledsOptions {
        display: grid;
        grid-template-columns: repeat(3,75px);
        gap: 10px;
    }
    .ledsOptions img {
        max-width: 75px;
    }
    .drop-zone{
        height: 200px;
    }
    .accessOptionsGrid,.woodColorsGrid{
        grid-template-columns: repeat(3,1fr);
    }
  }
  @media(min-width: 768px){
    .accessOptionsGrid,.woodColorsGrid{
        grid-template-columns: repeat(3,130px);
    }
  }
  @media(min-width: 1100px) and (max-width: 1540px){
      .ui{
         padding: 10px; 
      }
    .accordion-button::before{
        font-size: 20px;
    }
    .accordion-button{
        font-size: 14px;
        padding: 15px;
    }
    .accordion-body {
      padding: 15px 0;
    }
    .accessOptionsGrid, .woodColorsGrid {
        grid-template-columns: repeat(3,90px);
    }
    .design-img, .accessOptionsGrid img, .woodColorsGrid img {
        width: 90px;
    }
    .text, .textDiv{
        font-size: 14px;
    }
    .ledsOptions{
        grid-template-columns: repeat(3,90px);
    }
    .ledsOptions img {
        max-width: 90px;
    }
  }