
*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
@font-face {
    font-family: 'headingFont';
    src: url(./fonts/neue-montreal/NeueMontreal-Regular.otf);
  }
@font-face {
    font-family: 'bodyFont';
    src: url(./fonts/tt-commons/TTCommonsRegular.otf);
  }
  *,body,html{
    font-family: 'bodyFont';
    /* background-color: #F0F2ED; */
  }
  #iframeDiv{
    height: calc(100vh - 100px);
    position: relative;
  }
div::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  border-radius: 10px;
  background-color: #adab8c;
}

div::-webkit-scrollbar {
  width: 5px;
  background-color: #adab8c;
}

div::-webkit-scrollbar-thumb {
  /*border-radius: 10px;*/
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, .3);
  background-color: #adab8c;
  border-radius: 50%; /* Make the thumb circular */
}
img{
    max-width: 100%;
    cursor: pointer;
}
main{
    display: grid;
    /*grid-template-columns: auto 25%;*/
    grid-template-columns: auto 480px;
    height: 100vh;
    overflow: hidden;
    position: relative;
}
/*#iframeDiv{*/
/*    background-image: url(./images/1.jpg);*/
/*    background-size: cover;*/
/*    background-repeat: no-repeat;*/
/*}*/
.iconsDiv{
    position: absolute;
    left: 30px;
    top: 50%;
    transform: translate(0,-50%);
    display: grid;
    gap: 20px;
}
.iconDiv{
    background: #fff;
    padding: 12px;
    border-radius: 7px;
    box-shadow: 0px 1px 4px 0px rgba(0,0,0,0.75);
    -webkit-box-shadow: 0px 1px 4px 0px rgba(0,0,0,0.75);
    -moz-box-shadow: 0px 1px 4px 0px rgba(0,0,0,0.75);
    position: relative;
    cursor: pointer;
}
.hide,#forDoor2{
    display: none;
}
.iconDiv .text{
    position: absolute;
    right: 50px;
    position: absolute;
    left: 80px;
    font-size: 12px;
    color: #fff;
    background: #adab8c;
    padding: 5px;
    top: 23px;
    width: max-content;
}
.iconsDiv img{
    max-width: 36px;
}
.uiDiv{
    background-color: #F0F2ED;
    padding: 0px 20px;;
}
#accordionExample{
    height: calc(100vh - 200px);
    overflow: auto;
    /*scrollbar-width: none !important;*/
    /* For Firefox */
    scrollbar-width: none;
    /* For other browsers (like Chrome, Safari) */
    overflow: -ms-autohiding-scrollbar; /* For Internet Explorer/Edge */
}

/* For WebKit browsers (Chrome, Safari) */
#accordionExample::-webkit-scrollbar {
  display: none;
}
.accordion-item{
    background-color: transparent;
    border: 0;
    /*max-height: 500px;*/
    /*max-height: 380px;*/
    overflow: auto;
    padding: 0 20px;
    margin: 15px 0px;
}
.accordion-header {
    margin-bottom: 0;
    background: #fff !important;
    border-radius: 20px !important;
    padding: 0 20px;
}
.accordion-header:hover{
    background: rgb(245, 245, 245) !important;
    transition: all 0.3s;
}
.accordion-item:first-of-type .accordion-button {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}
.accordion-button{
    background: transparent !important;
    font-size: 24px;
    color: #000;
    padding: 1rem 0;
    /*border-bottom: 1px solid #b2b2b2;*/
    border: 0 !important;
    box-shadow: none !important;
    /* font-weight: 600; */
    font-family: 'headingFont';
}
.accordion-button span{
    font-size: 14px;
    display: grid;
    align-items: end;
    align-self: end;
    margin-left: 5px;
}
.accordion-button:not(.collapsed){
    color: #000;
}
.accordion-button:focus{
    border-color: transparent;
    box-shadow: none;
}
.accordion-button:not(.collapsed)::after, .accordion-button::after {
    /*background-image: url(./images/tick.svg);*/
    transform: unset;
}
.accordion-button:not(.collapsed){
    border-bottom: 1px solid #b2b2b2;
    border-radius: 0;
}
.accordion-body{
    padding: 1rem 0;
    font-family: 'bodyFont';
}
.typesOfDoorsText{
    font-size: 18px;
    /* font-weight: 600; */
}
.justifySpaceBtwn{
    display: flex;
    justify-content: space-between;
}
.justifySpaceBtwn div:first-child{
    font-size: 12px;
}
.doorOptions,.glassOptions{
    display: grid;
    grid-template-columns: repeat(2,1fr);
    grid-gap: 10px;
    padding: 0 10px;
    text-align: center;
}
.glassOptions{
    grid-template-columns: repeat(4,1fr);
}

.ml-custom{
    margin-left: 10px;
}


.doorOption.active,.glassOption.active,.colorStyleDiv.active{
    border: 1px solid #000000;
}
.noOfDoors.active{
    font-weight: 600;
    /*border: 1px solid;*/
}
.doorOption,.glassOption,.colorStyleDiv{
    background: #fff;
    border-radius: 10px;
    padding: 10px;
    position: relative;
    border: 1px solid transparent;
    /*width: 87.5px;*/
    /*height: 87.5px;*/
}
.info{
    max-width: 16px;
    position: absolute;
    top: 5px;
    right: 5px;
    cursor: pointer;
}
.optionText{
    padding: 10px 0;
    font-size: 14px;
    text-align: center;
}
.doorText{
    font-size: 20px;
}
.noOfDoorsDiv{
    /*display: flex;*/
    /*gap: 10px;*/
    display: grid;
      gap: 10px;
      grid-template-columns: repeat(4,1fr);
      padding: 0 10px;
}
/* === range theme and appearance === */
input[type="range"] {
	font-size: 1.5rem;
	max-width: 100%;
    width: 100%;
    border-radius: 20px;
    overflow: auto;
}

input[type="range"] {
	color: #adab8c;
	--thumb-height: 20px;
	--track-height: 0.125em;
	--track-color: #5e5e5e;
	--brightness-down: 80%;
	--clip-edges: 0;
}

/* === range commons === */
.doorSliderMainDiv{
    display: grid;
    grid-template-columns: repeat(2,1fr);
    grid-gap: 10px;
}
.doorSlider,.glassSlider,.cornerSlider{
    display: none;
    text-align: right;
}
#door1WidthSlider,#door1HeightSlider{
    display: block;
}
input[type="range"] {
	position: relative;
	background: #fff0;
	/*overflow: hidden;*/
}

input[type="range"]:active {
	cursor: grabbing;
}

/* === WebKit specific styles === */
input[type="range"],
input[type="range"]::-webkit-slider-runnable-track,
input[type="range"]::-webkit-slider-thumb {
	-webkit-appearance: none;
	transition: all ease 100ms;
	height: var(--thumb-height);
	border-radius: 50%; /* Make the thumb circular */
}

input[type="range"]::-webkit-slider-runnable-track,
input[type="range"]::-webkit-slider-thumb {
	position: relative;
	border-radius: 50%; /* Make the thumb circular */
}

input[type="range"]::-webkit-slider-thumb {
	--thumb-radius: calc((var(--thumb-height) * 0.5) - 1px);
	--clip-top: calc((var(--thumb-height) - var(--track-height)) * 0.5 - 0.5px);
	--clip-bottom: calc(var(--thumb-height) - var(--clip-top));
	--clip-further: calc(100% + 1px);
	--box-fill: calc(-100vmax - var(--thumb-width, var(--thumb-height))) 0 0
		100vmax currentColor;

	width: var(--thumb-width, var(--thumb-height));
	background: linear-gradient(currentColor 0 0) scroll no-repeat left center /
		50% calc(var(--track-height) + 1px);
	background-color: currentColor;
	box-shadow: var(--box-fill);
	border-radius: 0;

	filter: brightness(100%);
	clip-path: polygon(
		100% -1px,
		var(--clip-edges) -1px,
		0 var(--clip-top),
		-100vmax var(--clip-top),
		-100vmax var(--clip-bottom),
		0 var(--clip-bottom),
		var(--clip-edges) 100%,
		var(--clip-further) var(--clip-further)
	);
    /* border: 2px solid #000000; */
    border-radius: 50%; /* Make the thumb circular */
}


input[type="range"]:active::-webkit-slider-thumb {
	filter: brightness(var(--brightness-down));
	cursor: grabbing;
	border-radius: 50%; /* Make the thumb circular */
}

input[type="range"]::-webkit-slider-runnable-track {
	background: linear-gradient(var(--track-color) 0 0) scroll no-repeat center /
		100% calc(var(--track-height) + 1px);
		border-radius: 50%; /* Make the thumb circular */
}
/* === Firefox specific styles === */
input[type="range"],
input[type="range"]::-moz-range-track,
input[type="range"]::-moz-range-thumb {
	appearance: none;
	transition: all ease 100ms;
	height: var(--thumb-height);
	border-radius: 50%; /* Make the thumb circular */
}

input[type="range"]::-moz-range-track,
input[type="range"]::-moz-range-thumb,
input[type="range"]::-moz-range-progress {
	background: #fff0;
}

input[type="range"]::-moz-range-thumb {
	background: currentColor;
	border: 0;
	width: var(--thumb-width, var(--thumb-height));
	border-radius: 0;
	cursor: grab;
	border-radius: 50%; /* Make the thumb circular */
}

input[type="range"]:active::-moz-range-thumb {
	cursor: grabbing;
	border-radius: 50%; /* Make the thumb circular */
}

input[type="range"]::-moz-range-track {
	width: 100%;
	background: var(--track-color);
	border-radius: 50%; /* Make the thumb circular */
}

input[type="range"]::-moz-range-progress {
	appearance: none;
	background: currentColor;
	transition-delay: 30ms;
}

input[type="range"]::-moz-range-track,
input[type="range"]::-moz-range-progress {
	height: calc(var(--track-height) + 1px);
	border-radius: 0;
}

input[type="range"]::-moz-range-thumb,
input[type="range"]::-moz-range-progress {
	filter: brightness(100%);
}
.info_about_slider{
    max-width: 16px;
}
.doorValue{
    width: 50px;
    height: 20px;
    border: 1px solid;
    background: #fff;
    position: absolute;
    right: 0px;
    text-align: center;
    line-height: 20px;
    font-size: 12px;
    -webkit-appearance: none !important;
    margin: 0 !important;
    -moz-appearance: textfield !important;
}
.priceDiv{
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    /* border-top: 3px solid; */
    padding: 0 15px;
    height: 100px;
    align-items: center;
    background: #adab8c;
    color: #fff;
    position: absolute;
    bottom: 0;
    /*width: 75%;*/
    width: calc(100% - 480px);
}


/* .priceDiv1{
    border-right: 3px solid;
} */
.priceDiv span{
    text-transform: uppercase;
    font-size: 14px;
    /* font-weight: 600; */
}
#price{
    font-size: 45px;
    /* border-bottom: 2px solid; */
    max-width: fit-content;
    max-height: max-content;
    line-height: 35px;
    font-family: 'bodyFont';
}
.smallText{
    font-size: 10px;
}
.priceDiv div:last-child{
    display: grid;
    align-items: center;
    padding: 0;
    justify-content: end;
}
.priceDiv button{
    background: #adab8c;
    color: #fff;
    padding: 7px;
    border: 0;
    border-radius: 7px;
    cursor: pointer;
    border: 1px solid;
    width: max-content;
    padding: 10px 60px;
}
.priceDiv img{
    max-width: 32px;
}
/* design */
fieldset {
    border: 1px solid black;
    padding: 10px;
  }

  legend {
    display: flex;
    justify-content: space-between;
    width: 100%;
    background: linear-gradient(black 0 0)center/100% 1px no-repeat;
    font-size: 14px;
    float: unset;
    margin-bottom: 0;
  }

  legend div {
    background-color: #F0F2ED;
    margin-left: 15px;
  }
  .formDivMain{
    display: grid;
    grid-template-columns: repeat(2,48.5%);
    grid-gap: 10px;
  }
  .formDiv div{
    display: block;
    margin-left: 5px;
    font-size: 12px;
  }
  .formDiv label{
    font-size: 12px;
    margin-left: 10px;
  }

  .formDiv input{
    max-width: 100%;
    border-radius: 5px;
    border: 1px solid;
  }
  .intermediateProfileDiv{
    text-align: right;
  }
  /* assymetrical checkbox */
  .assymetricDiv .left {
      width: 50%;
    }
#assymetricCheckBox{
    width: 25px;
    height: 25px;
}
.assymetricDiv input[type="checkbox"] {
    /*appearance: none;*/
    position: relative;
}

.assymetricDiv .checkbox {
    display: block;
    height: 12px;
    width: 12px;
    transition: 100ms ease-in;
    cursor: pointer;
    margin-right: 5px;
    outline: 2px solid #adab8c;
    outline-offset: 2px;
}

.assymetricDiv input:checked + .checkbox {
    background: #adab8c;
}

.assymetricDiv input:checked + .dark {
    background: white;
    border: 0.2rem solid white;
}
.assymetricDiv label{
    display: flex;
    width: fit-content;
    align-items: center;
    font-size: 12px;
    margin-left: 5px;
}
.assymetricDiv div{
    margin-left: 5px;
    font-size: 18px;
}
/* assymetrical checkbox */

/* design */
/* details */
.colorsDiv{
    display: flex;
    gap: 10px;
    grid-template-columns: repeat(4, 1fr);
    padding: 0 10px 0 10px;
    /*flex-wrap: wrap;*/
}

.handles img{
    border-radius: 10px;
}
.colorsDiv .color{
    width: 65.5px;
    height: 65.5px;
    border-radius: 0px;
}
.color.active,.handles.active{
    border: 1px solid;
    border-radius: 10px;
}
.color.black{
    background: #000;
}
.color.white{
    background: #fff;
}
.color.anthracite{
    background: #353c40;
}
.color.quartzGray{
    background: #6b665e;
}
.color.bronze{
    background: #CD7F32;
}
/* details */
.modal-dialog {
    max-width: 900px;
}
.modal-header{
    border: 0;
}
.logoDiv{
    display: flex;
    justify-content: center;
}
.modal .logoDiv{
    text-align: center;
    margin-bottom:50px;
}
.modal .logoDiv img{
    max-width: 60%;
}
.getAQuoteDiv{
    text-align: center;
}
#exampleModal h1{
    display: inline-block;
    border-bottom: 1px solid;
}
#exampleModal form{
    padding: 40px 100px;
}
#exampleModal .form-control{
    border: 2px solid #aaa;
}
#exampleModal .form-label{
    margin-left: 15px;
}
#exampleModal .submitBtn{
    justify-content: end;
    padding: 0 15px;
}
#exampleModal .formBtn{
    background: #adab8c;
    color: #fff;
    padding: 7px;
    border: 0;
    border-radius: 4px;
    cursor: pointer;
    max-width: 120px;
    /* font-weight: 600; */
}
/* GHAZALI CSS */
.mainBree {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.myInputGroup {
    width: max-content;
}
.breedteInput:focus {
    box-shadow: none;
    border-color: #adab8c;
}
.paginateDiv {
    display: flex;
    gap: 10px;
}
.intermediateRadioBtns:checked {
  background-color: #adab8c;
  border-color: #adab8c;
}
.pagin {
    height: 35px;
    width: 35px;
    border: 1px solid #a0a0a0;
    border-radius: 7px;
    background: transparent;
    color: black;
}
.pagin.active {
    background-color: #adab8c;
    color: white;
    border: 0;
}
#pagin1 {
    border-right: 0;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}
#pagin2 {
    border-left: 0;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}
.leftWidth2Div,.rightWidth2Div,.leftWidth1Div,.rightWidth1Div{
    display: none;
}
/* custom radio */
.customRadioLabel {
  display: block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 15px;
  cursor: pointer;
  font-size: 18px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* Hide the browser's default radio button */
.customRadioLabel input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

/* Create a custom radio button */
.customRadioLabel .checkmark {
  position: absolute;
  top: 5px;
  left: 0;
  height: 20px;
  width: 20px;
  background-color: #e3e3e3;
  border-radius: 50%;
}

/* On mouse-over, add a grey background color */
.customRadioLabel:hover input ~ .checkmark {
  background-color: #ccc;
}

/* When the radio button is checked, add a blue background */
.customRadioLabel input:checked ~ .checkmark {
  background-color: #000;
}

/* Create the indicator (the dot/circle - hidden when not checked) */
.customRadioLabel .checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the indicator (dot/circle) when checked */
.customRadioLabel input:checked ~ .checkmark:after {
  display: block;
}

/* Style the indicator (dot/circle) */
.customRadioLabel .checkmark:after {
 	top: 7px;
	left: 7px;
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: white;
}
.infoDiv{
    display: flex;
    gap: 25px;
    align-items: baseline;
}
.tooltipBtn{
    background-color: #8d8f8e;
  color: #ffffff;
  font-weight: bold;
  padding: 0;
  line-height: 20px;
  width: 20px;
  height: 20px;
  overflow: hidden;
  opacity: 0.5;
  border-radius: 100%;
  border: 0;
}
.intermediateProfileDiv .doorValue{
    top: 40px;
}
.diagramForm, .assymetricDiv, .formDiv.horizontal, .formDiv.vertical{
    display: none;
}

/* .doorSlider {
    display: none;
}

#door1WidthSlider,
#door1HeightSlider {
    display: block;
} */
/* custom radio */

/* GHAZALI CSS */
@media(max-width: 992px){

    main{
        grid-template-columns: 100%;
    }
    .uiDiv{
        order: 2;
        height: 45vh;
        padding: 15px;
        overflow: auto;
        /*position: absolute;*/
        /*bottom: 10vh;*/
        /*order: 2;*/
        /*height: 40vh;*/
        /*padding: 15px;*/
        /*overflow: auto;*/
        /* width: 100%;*/
    }
    #iframeDiv{
        order: 1;
        height: 55vh;
    }
    .iconsDiv {
        right: 10px;
        left: auto;
        top: 27.5%;
        transform: translate(0,-27.5%);
        gap: 10px;
    }
    .iconDiv{
        padding: 5px;
        border-radius: 7px;
    }
    .iconsDiv img {
        max-width: 20px;
    }
    .colorsDiv .color {
        width: 63px;
        height: 63px;
    }
    .accordion-button,.priceDiv button{
        font-size: 16px;
    }
    .typesOfDoorsText {
        font-size: 14px;
    }
    
    .hi{
        justify-content: center;
    }
    
    .priceDiv{
       
        grid-template-columns: 1fr;
        bottom: 45vh;
        width: 100%;
        z-index: 99;
        /*bottom: 0;*/
        /*width: 100%;*/
        /*z-index: 99;*/
        /*height: 10vh;*/
        padding: 0px 35px 0px 35px;
       
    }
    
   
    
    
    .priceDiv span{
        font-size: 12px;
    }
    #price {
        font-size: 38px;
        line-height: 35px;
    }
    .fm{
        width: 250px;
    }
    .priceDiv div:last-child{
        padding: 0;
    }
    .priceDiv img {
        max-width: 26px;
    }
    .logoDiv img{
        max-width: 100%;
    }
    #accordionExample{
        height: auto;
    }
    .modal .logoDiv img {
        max-width: 100%;
    }
    #exampleModal form {
        padding: 15px;
    }
    #exampleModal .mb-4{
        margin-bottom: 15px;
    }
    .accordion-item {
        position: relative;
        overflow: hidden;
        max-height: max-content !important;
        padding: 0px;
    }
    .priceDiv button{
       padding: 15px 50px; 
    }
    
    .priceDiv div:last-child {
    justify-content: center;
    }
    
    .accordion-button:not(.collapsed) {
        position: sticky;
        top: 0;
        z-index: 100;
    }
    .accordion-collapse {
        transition: max-height 0.5s ease-out;
    }
    .accordion-body {
        height: auto;
        /* height: 350px; */
        overflow: auto;
        scrollbar-width: none;
        /* for IE, Edge and Firefox */
        -ms-overflow-style: none;
        scrollbar-width: none;  /* Firefox */
    }
    .accordion-body::-webkit-scrollbar{
        display: none;
    }
}

 .code {
        display: block;
    }
    
    
    .grab {
        cursor: move;
        cursor: grab;
        cursor: -moz-grab;
        cursor: -webkit-grab;
      
    }

    .grab:active {
        cursor: grabbing;
        cursor: -moz-grabbing;
        cursor: -webkit-grabbing;
    }
    
