@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600&display=swap');
*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
  user-select: none;
  font-family: 'Poppins', sans-serif;
}
.mainParent {
  height: 100vh;
  width: 100vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  position: relative;
}

.iframeBox {
  height: 100%;
  width: 100%;
  overflow:hidden;
  position: absolute;
  top: 0;
}
.configBox {
  position: absolute;
  bottom: 5%;
  width: 100%;
}

.tabContentDiv {
  /*background-color: #80808041;*/
  transition: all .4s linear;
  animation: fadeEffect 3s;
  width: 70%;
  margin: 0 auto;
  border-radius: 10px;
}
.tabContent {
  display: block;
  padding: 15px 30px;
  transition: all .4s linear;
  animation: fadeEffect 1s;
  position: relative;
  background-color: #e9ecef;
  border-radius: 20px;
}

.cardsBoxesDiv {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  overflow: hidden;
}
.cardBox {
  /* height: 90px; */
  width: 132px;
  display: flex;
  flex-direction: column;
  cursor: pointer;
  border: 2px solid transparent;
}
.cardBox.active {
    border: 2px solid black;
}
.cardImgBox {
  height: 70px;
  width: 128px;
  position: relative;
}
.checkImg {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: none;
}
.cardImg {
  height: 100%;
  width: 100%;
}
.cardTxtStyle {
  background-color: white;
  color: black;
  text-transform: uppercase;
  font-weight: 500;
  white-space: nowrap;
  font-size: 12px;
  width: 100%;
  text-align: center;
  margin-bottom: 0;
}

#leftA, #leftB {
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
}
#rightA, #rightB {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
}

.pillowTabsContainer {
  /* background-color: white; */
  /* border: 2px solid #b1b0b0; */
  position: absolute;
  bottom: 17%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  gap: 10px;
  width: 100%;
}
.pillowTab {
  border-radius: 10px;
  border: 2px solid rgb(218, 218, 218);
  padding: 10px;
  width: 200px;
  text-align: center;
  cursor: pointer;
  transition: 0.1s all linear;
  background-color: #e9ecef;
}
.pillowTab p {
  margin: 0;
}
.pillowTab:hover {
  background-color: rgba(247, 247, 247, 0.788);
}


/* GHAZALI NEW */
.invertBtnBox {
  position: absolute;
  top: 20px;
  right: 20px;
  height: 50px;
  width: 50px;
  cursor: pointer;
  z-index: 111111111111111;
}
.invertBtnBox img {
  width: 100%;
}
.getQuoteBtnBox {
  position: absolute;
  bottom: 20px;
  right: 20px;
}
.getQuoteBtn {
  background-color: black;
  color: white;
  padding: 10px 20px;
  border-radius: 8px;
  outline: 0;
}
.colorCircles {
  height: 60px;
  width: 60px;
  border: 2px solid transparent;
  border-radius: 50%;
  cursor: pointer;
}
.children.active {
  border-color: black;
}
#pattColor1 {
  background-color: chocolate;
}
#pattColor2 {
  background-color: blue;
}
#pattColor3 {
  background-color: blueviolet;
}
#pattColor4 {
  background-color: green;
}
#pattColor5 {
  background-color: darkred;
}
#pattColor6 {
  background-color: orangered;
}
#pattColor7 {
  background-color: plum;
}
#pattColor8 {
  background-color: palevioletred;
}

#backColor1 {
  background-color: turquoise;
}
#backColor2 {
  background-color: peachpuff;
}
#backColor3 {
  background-color: wheat;
}
#backColor4 {
  background-color: grey;
}
#backColor5 {
  background-color: tan;
}
#backColor6 {
  background-color: aqua;
}
#backColor7 {
  background-color: black;
}
#backColor8 {
  background-color: brown;
}
/* GHAZALI NEW */

/* LOADER CSS */
.loaderSection {
  height: 100%;
  width: 100%;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ccc;
  transition: 0.3s linear;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.loaderSection:nth-child(2n + 1) {
  background: rgba(0, 0, 0, 0.1);
}
.loaderSection:hover {
  background: rgba(0, 0, 0, 0.3);
}
.loader-68 {
  width: 8px;
  height: 48px;
  display: inline-block;
  position: relative;
  border-radius: 4px;
  left: -100px;
  animation: animloader68 1s linear infinite alternate;
}
@media (max-width: 768px) {
  .loaderSection {
    width: 50%;
 }
}
@media (max-width: 480px) {
  .loaderSection {
    width: 100%;
 }
}
/* LOADER CSS */

@media screen and (max-width: 768px) {
  .tabContentDiv {
    width: 100%;
  }
  .cardImgBox {
    width: 127px;
  }
  .tabContent {
    padding: 10px 30px 10px 30px;
  }
  .pillowTab {
    padding: 7px;
  }
  .configBox {
    width: 100% !important;
  }
  .cardsBoxesDiv {
      justify-content: unset;
  }
}

@media screen and (max-width: 576px) {
  .pillowTabsContainer {
    flex-wrap: wrap;
  }
  .pillowTab {
    width: 150px;
  }
  .pillowTab p {
    font-size: 0.8rem;
  }
  .configBox {
    bottom : 1%;
  }
  .mainParent {
    height: 88vh
  }
  .colorCircles {
    height: 20px;
    width: 30px;
  }
  .getQuoteBtnBox {
    position: absolute;
    top: 20px;
    left: 10px;
  }
  
}


