@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Roboto", sans-serif;
}
:root {
    --pink-color:#E9108F;
    --yellow-color: #FFC50C;
    --black-color:#000000;
    --white-color:#FFFFFF;
  }
.main{
    position: relative;
    overflow: hidden;
}
.iframeBox
{
    height: 100vh;
    width: 100%;
    /* border: 1px solid var(--yellow-color); */
}
.iframeBox img,.iframeBox iframe
{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
/* .leftSidebar
{
    position: absolute;
    top: 1%;
    left: 0.5%;
    padding: 10px;
    width: 300px;
    border-radius: 10px;
    height: 98%;
    background-color: var(--white-color);
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  
} */

.leftSidebar {
    position: absolute;
    top: 1%;
    left: 0.5%;
    padding: 10px 5px;
    width: 330px;
    border-radius: 10px;
    height: 98%;
    background-color: var(--white-color);
    box-shadow: rgba(0, 0, 0, 0.24) 0px 10px 10px;
    display: flex;    ;
        flex-direction: column;
        justify-content: space-between;
}


.accordian ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.accordian li {
    border: 1px solid var(--white-color);
    margin-bottom: 5px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.accordian h4 {
    margin: 0;
    padding: 15px;
    background-color: var(--pink-color);
    color: var(--white-color);
    cursor: pointer;
    position: relative;
    border-radius: 5px;
    font-weight: 500;
    font-size: 14px;

}
.accordian h4::after
{
    content: "+";
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    font-size: 20px;
    height: 20px;
    width: 20px;
}

.accordian li div {
    display: none;
    padding: 15px;
    background-color: var(--white-color);
    color: #333;
}


.accordian li.active h4 {
    background-color: var(--yellow-color);
    position: relative;
    border-radius: 5px;
    color: var(--black-color);
    font-weight: bold;
}

.accordian li.active h4::after

{
    content: "-";
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    font-size: 20px;
    height: 20px;
    width: 20px;

}
span.imagebox {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 20px;
}
.imagebox2
{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 10px 20px;
}
span.imagesection {
    text-align: center;
    cursor: pointer;
 
}
.imagesection .image_body
{
    text-align: center;
    background: #F3F3F3;
    margin-bottom: 5px;
    padding: 5px 0px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    border:2px solid transparent;
    transition: all 0.3s ease-in-out;
}
.imagesection .image_body:hover
{
    border: 2px solid var(--pink-color);
    
}
.bad_image.active,.patterns.active,.shelves.active,.orientation.active,.slides.active,.stair.active,.safety.active,.environment.active
{
    border: 2px solid var(--pink-color);
}
span.imagesection img
{
    transform: scale(0.8);
    width: 70px;
    height: 70px;
    object-fit: cover;
    pointer-events: none;

}
.accordian {
    height: 80%;
    overflow: scroll;
    -ms-overflow-style: none;
    scrollbar-width: none;
    padding: 10px 0px;
}
.accordian::-webkit-scrollbar { 
    display: none;  /* Safari and Chrome */
}
label {
    color: #000;
    font-weight: 400;
       font-size: 13px;
       text-transform: capitalize;
}

.color_parent
{
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px 5px;
}
.color_parent span
{
    height: 50px;
    width: 50px;
    display: block;
    border-radius: 50%;
    border: 2px solid transparent;
    cursor: pointer;
}
.color_parent span.active{
   border-color: var(--pink-color);
}
.logo_section {
    position: absolute;
    right: 3%;
    top: 4%;
    height: 100px;
    transform: translate(-3%, -4%);
}
.logo_section img
{
    width: 100%;
    height: 100%;
}
.left_Side_bottom {
    position: absolute;
    bottom: 1px;
    width: 100%;
    left: 0px;
    background: #F3F3F3;
    height: auto;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
    padding: 10px 20px;
    display: flex
;
    align-items: center;
    justify-content: space-between;
}
.first_left_bottom button {
    background-color: #000;
    border-radius: 50px;
    width: max-content;
    color: var(--white-color);
    font-weight: 700;
    padding: 12px 40px;
    border: 1px solid var(--black-color);
    transition: all 0.5s ease-in-out;
    cursor:pointer;
}

.second_left_bottom ul{
    list-style-type: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0px 10px;
    font-size: 20px;

}

.first_left_bottom button:hover
{
background-color: #fff;
color: var(--black-color);
}

.right_arrow
{
    height: 50px;
    width: 50px;
    position: absolute;
    top: 50%;
    left: 15%;
    transform: translate(-15%, -50%);
}
.right_arrow img
{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: none
}


.loader{
    width: 100%;
    height: 100%;
    background-color:#000;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100000000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.5s ease-in-out;
    
  
  }
  .loader.open
  {
     height: 0;
     
  }
  .loader.open h1
  {
    visibility: hidden;
  }
 
  .loader h1
  {
    color: #fff;
    font-weight: 500;
    font-size: 15rem;
  }
  
@media (max-width: 1200px) {
    .logo_section
    {
        height: 90px;
    }
    .first_left_bottom button
    {
        padding: 9px 40px;
    }
    .left_Side_bottom
    {
        padding: 5px 20px;
    }
    span.imagesection img
    {
        width: 55px ;
        height: 55px;
    }
    .color_parent span
    {
        width: 45px;
        height: 45px;
    }
    .loader h1
    {
        font-size: 12rem;
    }
}
@media (max-width: 820px)
{
    .leftSidebar
    {
        width: 300px;
    }
    .loader h1
    {
        font-size: 8rem;
    }
}

@media (max-width: 541px)
{
    .loader h1
    {
        font-size: 4rem;
    }
    .iframeBox
    {
        height: 50vh;
    }
    .leftSidebar
    {
        position: unset;
        width: 100%;
    }
    .left_Side_bottom
    {
        position: unset;
    }
    .logo_section
    {
        height: 60px;
        top: 2%;
        right: 2%;
    }
    span.imagebox
    {
        display: flex;
        justify-content: center;
    }
    span.imagesection
    {
        flex-basis: 35%;
    }
}

@media (hover: hover) {
    .hover-effect:hover {
        background-color: transparent !important;
    }
}

/* Disable focus styles on touch devices */
@media (pointer: coarse){
    :focus {
        outline: none;
        background-color: transparent !important;
    }
}