* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
    user-select: none;
}
.mainParent {
    height: 100vh;
    width: 100vw;
    overflow: hidden;
}
.iframeBox {
    height: 100%;
    width: 100%;
    position: relative;
    overflow: hidden;
}
.configBox {
    position: absolute;
    right: 10px;
    top: 10px;
    bottom: 10px;
    max-width: 420px;
    width: 100%;
    border: 1px solid;
    background-color: white;
}
.mainHdng {
    text-transform: uppercase;
    font-weight: 600;
    font-size: 17px;
    padding: 20px 20px 0 20px;
    position: absolute;
}
.accordionMainDiv {
    /* margin-top: 30px; */
    border-top: 1px solid lightgrey;
    overflow: hidden;
    position: relative;
    height: 100%;
}
.accInnerContainer {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.accBox {
    border-bottom: 1px solid lightgrey;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 90%;
    cursor: pointer;
    transition: all 0.1s ease-in-out;
}
.accBox:hover {
    background-color: lightgray;
}

.accTxt {
    margin-bottom: 0;
    font-weight: 400;
}
.accBox:hover .accTxt {
    font-weight: 600;
}
.sidenav {
  height: 100%;
  width: 0;
  position: absolute;
  z-index: 1;
  top: 0;
  right: 0;
  background-color: white;
  overflow-x: hidden;
  transition: 0.3s;
  /* padding-top: 60px; */
}
.closeBtn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 15px;
  font-size: 15px;
  cursor: pointer;
}
.closeBtn img {
    width: 16px;
}
.contentTopBox {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative; 
    padding: 20px 0;
}
.contentTopBox p {
    margin-bottom: 0;
    font-weight: 600;
    font-size: 18px;
}
.selectContainer {
    border-top: 1px solid lightgray;
    border-bottom: 1px solid lightgray;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 15px;
    padding: 20px 0;
}
.customSelect {
    background-color: black;
    color: white;
    border: 0;
    border-radius: 0px !important;
    padding: 8px 15px;
    cursor: pointer;
}
.customOption {
    background-color: white;
    color: black;
}

.tabContent {
    display: none;
}
.tabContent.active {
    display: block;
}


.side {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    right: 0;
    background-color: white;
    height: 100%;
    width: 100%;
    overflow-y: auto;
    transition-property: transform;
    transition-duration: .2s;
    transform: translateX(420px);
    cursor: pointer;
}
#sideOne.open {
  transform: translateX(0);
}
#sideOne.close {
    transform: translateX(400px);
}
#sideTwo.open {
  transform: translateX(0);
}
#sideTwo.close {
    transform: translateX(400px);
}
#sideThree.open {
  transform: translateX(0);
}
#sideThree.close {
    transform: translateX(400px);
}
#sideFourth.open {
  transform: translateX(0);
}
#sideFourth.close {
    transform: translateX(400px);
}

.contentBoxesContainer {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
    padding-left: 25px;
    gap: 16px 10px;
    margin-top: 20px;
}
.contentBox {
    height: 190px;
    width: 180px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.contentImgBox {
    height: 180px;
    width: 180px;
}
.contentBoxImg {
    height: 100%;
    width: 100%;
}
.contentBoxTitle {
    font-size: 16px;
    text-transform: capitalize;
    color: gray;
}


.btnsFooter {
    display: flex;
    justify-content: right;
    align-items: center;
    /* column-gap: 20px; */
    position: absolute;
    bottom: 16px;
    width: auto;
    right: 16px;
    gap: 10px;
    z-index: 999;
}



@media screen and (max-height: 450px) {
    .sidenav {
        padding-top: 15px;
    }
}