body #wizard_container {
    background: #eaeef1;
    border-radius: 10px;
    border: 1px solid #ccd9e2;
    padding: 15px;
    min-height: 190px;
    margin: 0px
}

#panel-design-container,.panel-design-svg {
    width: 250px;
    margin: auto;
}

.wizard-door-panel {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    margin: 0px 15px;
    gap: 20px;
}

.wizard-door-panel .wizard-answer{
    margin: 0;
}

.wizard-door-panel button{
    width: 300px;
}

/* Custom tooltip container */
#custom-tooltip {
  display: none;
  position: absolute;
  max-width: 100%;
  background: #fff;
  border: 1px solid #ccc;
  padding: 15px 20px;
  font-size: 14px;
  line-height: 1.4;
  box-shadow: 0 3px 8px rgba(0,0,0,0.2);
  border-radius: 6px;
  color: #333;
  z-index: 9999;
  /* Smooth fade effect */
  opacity: 1;
  transition: opacity 0.3s ease;
}

/* Show tooltip (use JS to toggle this) */
#custom-tooltip.show {
  display: block;
  opacity: 1;
}

/* Headings inside tooltip */
#custom-tooltip h4 {
  margin-top: 12px;
  margin-bottom: 8px;
  border-bottom: 1px solid #ddd;
  padding-bottom: 4px;
  font-weight: 600;
}

/* Tooltip paragraphs */
#custom-tooltip p {
  margin: 5px 0;
}

.tooltip-columns {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.tooltip-columns .column {
    flex: 1 1 45%;
    min-width: 250px;
}

.tooltip-columns h4 {
    margin-top: 15px;
    margin-bottom: 5px;
}

.tooltip-columns p {
    margin: 0 0 10px;
}

#panelDesign-svg {
    z-index: 2;
    background-size: 100%;
    background-repeat: no-repeat;
    background-position: 50%;
    mix-blend-mode: multiply;
}

.colors {
    display: flex;
    justify-content: center;
    margin-bottom: 20px !important;
}

.panelDesign{
    cursor: pointer;
}
.panelDesignRight.active{
    cursor: ew-resize;
}
.panelDesignLeft.active{
    cursor: ew-resize;
}
.panelDesignTop.active{
    cursor: ns-resize;
}
.panelDesignBottom.active{
    cursor: ns-resize;
}
.panelDesignRightTop.active,.panelDesignLeftBottom.active{
    cursor: nesw-resize;
}
.panelDesignLeftTop.active,.panelDesignRightBottom.active{
    cursor: nwse-resize;
}

.color {
  height: 36px;
  width: 36px;
  margin-left: 0.5em;
  border-radius: 18px;
  box-shadow: 0px 4px 10px rgba(0,0,0,0.3);
  border: 2px solid #aaa;
  cursor: pointer;
}

@media only screen and (max-device-width: 991px) and (min-device-width: 201px){
    body #wizard_container {
        background: #eaeef1;
        border-radius: 10px;
        border: 1px solid #ccd9e2;
        padding: 15px;
        margin: 0px
    } 
    .colors{
        padding: 0px 15px;
        max-width: 335px;
        margin: auto;
    }
}

body .wizard-header {
    margin: 5px;
    margin-bottom: 20px;
}
body .wizard-btn {
    margin-bottom: 0px;
    width: 150px;
}
body .wizard-div-other {
    padding-top: 10px;
}
body .wizard-other-label {
    width: 75px;
    float: left;
    margin-left: 210px;
}
body .wizard-other-label label {
    padding-left: 10px;
}
body .wizard-div-text {
    /*width: 250px;*/
   /* margin-left: 200px;*/
    float: left;
}
/*body .wizard-div-text input[type=text] {
    width: 200px;
}*/
body .wizard-radio-label {
   /* margin-left: 200px;*/
    margin-top: 10px;
}
body .wizard-radio-label[step-index][disabled] {
    pointer-events: none;
    opacity: 1;
}
body .wizard-radio-option {
    /*display: none;*/
    visibility: hidden;
}
body .hide-option {
    display: none;
}
body .display-option {
    display: block;
    width: 70%;
    margin: auto;
}
.display-option[data-value="Obscure"] {
    margin: 0;
}
body .wizard-radio-label:focus {
    color: #fff;
    background-color: #286090;
    border-color: #122b40;
    box-shadow: 0 0 5px rgb(238, 81, 110);
    border: 2px solid rgb(21, 228, 149);
}
body .multi-text-container-div {
    margin-top: 15px;
    margin-bottom: 15px;
}
body .multi-text-box {
    margin-left: -35px;
    margin-right: 30px;
    width: 50px;
}

/*oct-6*/
/*body #wizard_container {
    width: 96%;
    margin: auto;
}*/

/*.modal-body {
    min-height: 400px;
}*/

body #order_overlay {
    position: fixed;
    display: none; 
    width: 100%; 
    height: 100%; 
    top: 0; 
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0,0,0,0.5); 
    z-index: 2; 
    cursor: pointer; 
}

/*body .multi-number-box {
    margin-left: -35px;
    margin-right: 30px;
    width: 70px;
}*/

body .div-wizard-description {
    border-radius: 5px;
    font-size: 14px;
    font-weight: 600;
    background-color: #fff;
    padding: 5px 15px 5px 15px;
}

body .div-empty-description {
    background: #eaeef1;
}

.user-input-field {
    width:250px;
}

/*.modal-content {
    min-height: 400px;
}*/

body #wizard_disclaimer {
    display: none;
    width: 90%;
    margin-left: 5%;
    color: #e28635;
    margin-top: 10px;
    font-size: 15px;
}

@media (min-width: 992px){
    .modal-lg {
        width: 1200px;
    }
}

@media (max-width: 420px){
    #panel-design-container,.panel-design-svg {
        width: 200px;
        margin: auto;
    }
}

body .frame-outer-hidden {
    display:none; 
    visibility:hidden;
    width: 0px;
    height: 0px;
}

body .frame-outer-visible {
    visibility:visible;
    overflow: auto;
}

.thank-msg {
    margin: 100px;
    text-align: center;
}

.wood-glass-type-input-text {
    border: 0px;
}

body .common-option-question {
    font-weight: 700;
    padding-bottom: 15px;
    margin-top: 25px;
}

/*.iframe-box
{
 width:100%;
 height: 850px; overflow: auto; -webkit-overflow-scrolling: touch;
}

@media only screen and (max-device-width: 767px) and (min-device-width: 201px){
.iframe-box
{
width: unset;
height: 550px; overflow: auto; -webkit-overflow-scrolling: touch;
}
}*/

.wizard-options-image-group
{
 margin: 15px 0px 15px 0px;
}
.question-row-div
{
  margin: 15px 0px 15px 0px;
}

body .btn-quotes-list {
    width: 105px;
}

@media only screen and (max-device-width: 991px) and (min-device-width: 201px){
.wizard-options-image-group
{
 margin: 5px 0px 15px 0px;
}
.question-row-div
{
  margin: 15px 0px 5px 0px;
}
body .multi-text-container-div { 
    margin-top: 15px; 
}
}
.order-heading
{
    font-size: 16px;
    font-weight: 600;
}
.img-question
{
   margin: auto;
   margin-top: 10px;
}

.btn-primary:active:focus
{
    outline: none;
    outline: 0px;
}
.btn-success:active:focus
{
   outline: none;
    outline: 0px; 
}
.btn-success:focus
{
   outline: none;
    outline: 0px; 
}

body #customer-note-textarea {
    width: 100%;
    border: solid 2px #cccc;
    border-radius: 5px;
    min-height: 100px;
}

body #other_estimated_price {
    float: left;
}

body #total_estimated_price {
    float: left;
}

body #estimate_other_save_btn {
    float: left;
    margin-left: 15px;
}

body #quote_validate_btn {
    float: left;
    margin-left: 15px;
}

@media only screen and (max-device-width: 991px) and (min-device-width: 201px){

.thank-msg {
    margin: 65px 15px 70px 15px;
    text-align: center;
    padding: 30px 15px 30px 15px;
    font-size: 16px;
    line-height: 21px;
}

    .user-input-field {
        width: 100%;
    }

    .div-panel-individual-details {
        padding-bottom: 0px;
        padding: 5px 5px 0px 5px;
        margin: 0px;
    }
}
.align-center
{
    text-align: center;
}
.left-align-list{
    text-align: left !important;
    padding-left: 30px;
}
.right-align-list{
    text-align: right;
    padding-right: 15px;
}
.padding0
{
    padding: 0px;
}


/*upload*/
 .it .btn-orange
{
  background-color: blue;
  border-color: #777!important;
  color: #777;
  text-align: left;
  width:100%;
}
.it input.form-control
{
  
  border:none;
  margin-bottom:0px;
  border-radius: 0px;
  border-bottom: 1px solid #ddd;
  box-shadow: none;
}
.it .form-control:focus
{
  border-color: #ff4d0d;
  box-shadow: none;
  outline: none;
}
.fileUpload {
    position: relative;
    overflow: hidden;
}
.fileUpload input.upload {
    position: absolute;
    top: 0;
    right: 0;
    margin: 0;
    padding: 0;
    font-size: 20px;
    cursor: pointer;
    opacity: 0;
    filter: alpha(opacity=0);
}
/*upload*/

.cursor-pointer-modal
{
    cursor: pointer;
     color: #0561c1;
    text-decoration: underline;
}
/*.cursor-pointer-modal:hover
{
    color: blue;
}*/
.margin-top10
{
    margin-top: 10px;
}

body .write-group {
    display: none;
}

body .div-alert {
    display: none;
    position: absolute;
    top: -17px;
    right: 0px;
    -moz-box-shadow: 2px 3px 5px 2px rgba(0,0,0,0.75);
    -webkit-box-shadow: -1px 2px 10px -2px rgba(0,0,0,0.75);
    -moz-box-shadow: -1px 2px 10px -2px rgba(0,0,0,0.75);
    box-shadow: -1px 2px 10px -2px rgba(0,0,0,0.75);
}

body .wizard-chekbox-option {
    visibility: hidden;
}
body .wizard-checkbox-label {
    margin-top: 10px;
}
body .wizard-checkbox-label[step-index][disabled] {
    pointer-events: none;
    opacity: 1;
}



body input.switch[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background: #d6d6d6;
    width: 60px;
    border-radius: 35px;
    height: 30px;
    position: relative;
    display: inline-block;
    vertical-align: middle;
    box-shadow: unset;
    border-color: #d6d6d6;
}

body input.switch[type="checkbox"]:checked {
    background: #17a2b8;
    border-color: #17a2b8
}

body input.switch[type="checkbox"]:disabled {
    opacity: .5;
    background: #888;
    border-color: #888
}

body input.switch[type="checkbox"]::after {
    position: absolute;
    content: 'No';
    background: #fff;
    width: 26px;
    height: 26px;
    line-height: 27.5px;
    font-size: 10px;
    top: 2px;
    left: 2px;
    right: auto;
    text-align: center;
    border-radius: 50%;
    color: #767676;
    transition: left ease .15s;
    font-weight: bold;
    box-shadow: 0 1px 2px;
    text-transform: uppercase;
}

body input.switch[type="checkbox"]:checked::after {
    content: 'Yes';
    left: calc(100% - 28px);
    color: #17a2b8;
}