@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap');

:root {
    --baseColor: #081433;
    --hoverColor: #fcd989;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
    user-select: none;
    font-family: "Inter", sans-serif;
    font-weight: 500;
    color: var(--baseColor);
    color: #081433;
}
h1, h2, h3, h4, h5, h6, ul, ol, p {
    margin-bottom: 0;
}
body{
    overflow: hidden;
}

#aeraBigLoopContent,#aeraCutContent,#aeraStructureContent,#flat01Content,#flat03Content,#flat06Content,#flat07Content,#kashmirContent,#pepContent,#perlonRipsContent,#perlonRipsLCSContent,#planimContent,#virtualGradientContent,#virtualClassicContent,#virtualGraphicContent,#virtualGardenContent{
    display: none;
}
.vituraGrid{
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 90%;
    gap: 10px;
}
.grid-child{
    border: 1px solid;
    padding: 10px;
    background: #fff;
    width: 100%;
    font-size: 20px;
    border-radius: 5px;
}
.grid-child.active{
    background: #f0f0f0;
}
.topHeader {
    width: 100%;
    text-align: left;
    height: 90px;
    display: none;
}
.topHeader h1 {
    font-size: 60px;
    padding-bottom: 5px;
    color: #081433;
    border-bottom: 1px solid #000;
}
.topHeader img{
    width: 90px;
    height: 90px;
}
.mainParent {
    display: grid;
    /*grid-template-columns: 75% 25%;*/
    grid-template-columns: 100%;
    height: 90vh;
    overflow: hidden;
    /*height: calc(100vh - 79px);*/
    height: 100vh;
    transition: 0.4s all;
}
.iframeBox {
    position: relative;
    display: flex;
    border-top: 1px solid;
}

.cameraBtnDiv {
    position: absolute;
    bottom: 20px;
    left: 20px;
    display: none;
    justify-content: center;
    align-items: center;
    gap: 10px;
    font-weight: normal;
    border: 1px solid black;
    border-radius: 4px;
    padding: 5px 10px;
    cursor: pointer;
}
.cameraBtnDiv img {
    width: 30px;
}
.iframeTopIcons {
    position: absolute;
    left: 40px;
    top: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    row-gap: 20px;
    display: none;
}
.iframeIconBox {
    background-color: #f5f5f5;
    color: #081433;
    /* padding: 10px; */
    border-radius: 50%;
    cursor: pointer;
    font-weight: bold;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.iframeBottomLeftIcons {
    position: absolute;
    left: 40px;
    bottom: 50px;
    display: flex;
    column-gap: 20px;
    display: none;
}
.iframeBottomRightIcons {
    position: absolute;
    right: 100px;
    bottom: 50px;
    display: flex;
    column-gap: 10px;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    display: none;
    
}
.iframeBottomRightIcons p {
    color: #081433;
}
.sizeFormControl {
    border: 1px solid gray;
    border-radius: 0;
    width: 80px;
    font-weight: 600;
    color: #081433;
}
.sizeFormControl:focus {
    border-color: #081433;
}



.configHdngBox {
    padding: 10px 0 30px 0;
    text-align: center;
    border-top: 1px solid;
}
.configHdng {
    color: #081433;
}
.configHdngBox p {
    color: #081433;
    font-weight: 600;
    padding-top: 1.5rem;
}
.configBox {
    overflow-y: auto;
    overflow-x: hidden;
    border-left: 1px solid #000;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
    display: none;
    padding-bottom: 50px;
}

/* BS CSS */
.accordion {
    border-top: 1px solid #000;
}
.accordion-item {
    border: none;
}
.accordion-body {
    position: relative;
    padding: 10px 5px;
}
.accordion-button {
    color: #081433;
    margin-top: 4px;
    font-weight: 500;
    padding: 10px 12px;
    border-bottom: 1px solid #081433;
    border-radius: 0;
}
.accordion-button p {
    text-align: center;
    display: flex;
    justify-content: center;
    align-content: center;
    width: 100%;
    font-size: 22px;
}
.accordion-button:not(.collapsed) {
    background-color: #fff;
    color: #081433;
    box-shadow: none;
    border: 0;
}
.accordion-button:focus {
    box-shadow: none;
}
.accordion-item:last-of-type>.accordion-header .accordion-button.collapsed {
    border-radius: 0;
}
.custom-tooltip .tooltip-inner {
    max-width: 390px;
}
.tooltipBtun {
    padding: 0;
    outline: 0;
    border: 0;
    background-color: white;
    color: var(--baseColor);
}
.form-select:focus {
    box-shadow: none;
    border-color: #081433;
}
.form-control:focus {
    box-shadow: none;
    border-color: #081433;
}
.formSelectLabels {
    font-size: 14px;
    color: var(--baseColor);
}
#inputState {
    color: #081433;
}
.formLabels {
    color: #081433;
}
.infoModalContent {
    border: 1px solid #000;
    border-radius: 0;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}
.btn-close {
    --bs-btn-close-bg: none;
    position: absolute;
    right: 30px;
    color: #081433;
    font-size: 16px;
    z-index: 9999;
}

.form-check {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}
.form-check-input {
    height: 1.5rem;
    width: 1.5rem;
}
.form-check-input:checked {
    background-color: white;
    border-color: black;
    /*border-radius: 0;*/
    box-shadow: none;
    background-image: url("img/close.png") !important;
}
/* BS CSS */

.contentBoxesContainer {
    /*display: flex;*/
    display: grid;
    flex-wrap: wrap;
    /*justify-content: center;*/
    align-items: center;
    column-gap: 20px;
    row-gap: 10px;
    padding: 20px;
    grid-template-columns: repeat(3,1fr);
}
.contentBoxesOuter {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    /*width: 120px;*/
    width: auto;
    text-align: center;
}
.contentBoxes {
    border: 2px solid transparent;
    cursor: pointer;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 120px;
    width: 120px;
    position: relative;
}
.contentBoxes.active {
    border-color: #081433;
}
.contentBoxes img {
    height: 100%;
    width: 100%;
}
.contentName {
    font-size: 13px;
    color: #081433;
    word-break: break-word;
    line-height: 15px;
}
.aContentDiv .contentName {
    font-size: 11px;
}
.infoTxtDiv {
    position: absolute;
    bottom: 6px;
    left: 6px;
    background-color: peachpuff;
    padding: 0 5px;
    font-size: 12px;
    display: none;  
}
.designImg:hover ~ .infoTxtDiv,.infoTxtDiv:hover {
    display: block !important;
}

.borderColorsDiv {
    border-top: 1px solid #081433;
    display: flex;
    flex-direction: column;
}
.tab {
    display: flex;
    justify-content: space-around;
    align-items: center;
}
.tabBtns {
    border: 1px solid #000;
    height: 35px;
    width: 35px;
    background-color: white;
}



.number-input {
    display: flex;
    align-items: center;
}
.number-input input[type="number"] {
    height: 30px;
    width: 160px;
    padding-left: 10px;
    border: 1px solid #081433;
    background-color: white;
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
}
.number-input button {
    border: 0;
    border-top: 1px solid #081433;
    border-bottom: 1px solid #081433;
    border-right: 1px solid #081433;
    background-color: white;
    cursor: pointer;
    height: 30px;
    width: 30px;
}
.modalImg{
    width: 800px; height: 100%;
}
.allBorderColors,.borderColorsDiv,.hide{
    display: none;
}
.hide{
    display: none !important;
}
@media screen and (max-device-width: 1440px) {
    .mainParent {
        grid-template-columns: 100%;
    }
    .contentBoxesContainer {
        column-gap: 10px;
        padding: 20px 10px;
    }
    /*.contentBoxes {*/
    /*    height: 100px;*/
    /*    width: 100px;*/
    /*}*/
}

@media screen and (max-device-width: 1099px) {
    .topHeader img{
        width: 55px;
        height: 55px;
    }
    .topHeader h1 {
        font-size: 40px;
    }
    .mainParent {
        grid-template-columns: repeat(1, 1fr);
    }
    .iframeBox {
        height: 50vh;
        border: 0;
    }
    .configBox {
        height: 50vh;
        border: 0;
        padding-bottom: 80px;
        display: block;
    }
    .configHdngBox {
        padding: 10px 0;
    }
    .configHdngBox p {
        padding-top: 5px;
    }
    .cameraBtnDiv {
        bottom: 5px;
        left: 5px;
        padding: 2px 6px;
    }
    .iframeTopIcons {
        left: 10px;
        top: 10px;
        row-gap: 10px;
        display: flex;
    }
    .iframeIconBox {
        /* padding: 7px; */
        font-weight: 500;
        font-size: 13px;
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .iframeBottomLeftIcons {
        left: 8px;
        bottom: 8px;
        column-gap: 7px;
        display: flex;
    }
    .iframeBottomRightIcons {
        right: 6px;
        bottom: 8px;
        display: flex;
    }
    .accordion-button p {
        font-size: 18px;
    }
    .contentBoxesContainer {
        padding: 10px;
        column-gap: 10px;
        justify-content: center;
    }
    .contentBoxes {
        height: 100px;
        width: 100px;
    }
}

@media(max-width: 568px){
    .topHeader {
        height: 55px;
    }
    .mainParent{
        height: calc(100vh - 55px);
    }
    .configBox{
        height: calc(50vh - 55px);
        display: block;
    }
    .contentBoxesOuter{
        width: auto;
    }
    .infoModalContent,.displayBlockMobile{
        display: block !important;
    }
    .modalImg{
        height: auto;
      max-width: 200px;
      margin: 0 auto;
      margin-bottom: 10px;
    }
}