﻿
h2 {
    display: block;
    font-size: 1.5em;
    margin-block-start: 0.83em;
    margin-block-end: 0.83em;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
    font-weight: bold;
    unicode-bidi: isolate;

}
h3 {
    display: block;
    font-size: 1.17em;
    margin-block-start: 1em;
    margin-block-end: 1em;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
    font-weight: bold;
    unicode-bidi: isolate;
}

#appointment-content-container {
    font-size: 14px;
}

#appointment-top-container {
    margin: 0 auto;
    width: 100%;
    text-align: center;
    margin-top: 20px;
    margin-bottom: -24px;
    font-size: 20px;
    font-weight: bold;
}


    #appointment-top-container h1,h2,h3{
        line-height:inherit;
    }

    #appointment-text {
        border-bottom: none;
        padding: 15px;
        margin-bottom: 10px;
    }


#appointment-content {
    padding-bottom: 50px;
}

#appointment-questions-container {
    display: flow-root;
}

.appointment-question-item-label {
    font-weight: bold;
}

#appointment-questions-left-column {
    width: 45%;
    float: left;
    min-width: 300px;
    padding-bottom: 10px;
}

#appointment-questions-right-column {
    display: grid;
    float: left;
    min-width: 300px;
    width: 40%;
}

.appointment-question {
    padding-left: 15px;
}

.appointment-question-item-container {
    padding: 5px 0;
    display: inline;
}

.appointment-question-item-input {
    padding: 5px 0;
}

textarea {
    width: 90%;
    height: 4vw;
    min-height: 100px;
}

#appointment-questions-full-column {
    padding: 10px 0;
    padding-left: 15px;
    float: left;
    width: 93%;
}

#appointment-question-total-windows {
    height: 30px;
    font-size: 16px;
    text-align: center;
    border: 1px solid #d1d1d1;
    -moz-appearance: textfield;
}

    #appointment-question-total-windows::-webkit-outer-spin-button,
    #appointment-question-total-windows::-webkit-inner-spin-button {
        -webkit-appearance: none;
        margin: 0;
    }

#appointment-question-project-reason {
    width: 30%;
    height: 2rem;
    min-width: 150px;
    border: 1px solid #d1d1d1;
}

#appointment-question-additional-info-input {
    padding-top: 10px;
}

#appointment-question-additional-info {
    width: 100%;
    height: 5rem;
    padding-top: 10px;
}

.appointment-question-checkbox {
    margin-top: 10px auto;
    width: 50%;
    float: left;
}

/*Radio Button CSS*/

.appointment-question-skylight {
    display: flex;
}

.appointment-question-radio-button {
    float: left;
    padding-right: 2rem;
    margin-top: 5px;
}

.appointment-question-radio-button-container {
    display: block;
    position: relative;
    padding-left: 20px;
    cursor: pointer;
    font-size: 14px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

    /* Hide the browser's default radio button */
    .appointment-question-radio-button-container input {
        position: absolute;
        opacity: 0;
        cursor: pointer;
    }

/* Create a custom radio button */
.appointment-question-radio-button-checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 16px;
    width: 16px;
    background-color: #fff;
    border-radius: 50%;
    border: 1px solid #d1d1d1;
}

/* On mouse-over, add a grey background color */
.appointment-question-radio-button-container:hover input ~ .appointment-question-radio-button-checkmark {
    background-color: #183b4e;
}

/* When the radio button is checked, add a blue background */
.appointment-question-radio-button-container input:checked ~ .appointment-question-radio-button-checkmark {
    background-color: #183b4e;
}

/* Create the indicator (the dot/circle - hidden when not checked) */
.appointment-question-radio-button-checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

/* Show the indicator (dot/circle) when checked */
.appointment-question-radio-button-container input:checked ~ .appointment-question-radio-button-checkmark:after {
    display: block;
}

/* Style the indicator (dot/circle) */
.appointment-question-radio-button-container .appointment-question-radio-button-checkmark:after {
    top: 4px;
    left: 4px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #fff;
}
/*Radio Button CSS*/



#appointment-submit-button {
    position: relative;
    padding: 10px 0;
    width: 200px;
    color: #fff;
    background: #183b4e;
    text-align: center;
    border-radius: 2.5px;
    box-shadow: 0 4px 7.2px 0 rgb(0, 0, 0, 0.15);
    display: inline-block;
    cursor: pointer;
    margin-top: 20px;
}


/*Checkbox CSS*/
/* The container */
.appointment-question-container {
    display: block;
    position: relative;
    padding-left: 35px;
    margin-bottom: 10px;
    cursor: pointer;
    font-size: 14px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

    /* Hide the browser's default checkbox */
    .appointment-question-container input {
        position: absolute;
        opacity: 0;
        cursor: pointer;
        height: 0;
        width: 0;
    }

/* Create a custom checkbox */
.appointment-question-checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 16px;
    width: 16px;
    background-color: #fff;
    border: 1px solid #d1d1d1;
}

/* On mouse-over, add a grey background color */
.appointment-question-container:hover input ~ .appointment-question-checkmark {
    background-color: #fff;
}

/* When the checkbox is checked, add a blue background */
.appointment-question-container input:checked ~ .appointment-question-checkmark {
    background-color: #183b4e;
}

/* Create the checkmark/indicator (hidden when not checked) */
.appointment-question-checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

/* Show the checkmark when checked */
.appointment-question-container input:checked ~ .appointment-question-checkmark:after {
    display: block;
}

/* Style the checkmark/indicator */
.appointment-question-container .appointment-question-checkmark:after {
    left: 4px;
    top: 0px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}
/*Checkbox CSS*/

@media screen and (min-width: 503px) {
    #appointment-mobile-title-text {
        display: none;
    }
}

@media screen and (max-width:502px) {


    #appointment-top-text-desktop {
        display: none;
    }

    #appointment-questions-left-column {
        width: 100%;
        float: left;
    }

    #appointment-questions-right-column {
        display: grid;
        float: left;
        min-width: 300px;
        width: 100%;
    }

    #appointment-question-additional-info {
        width: 95%;
        height: 100px;
    }

    .appointment-question-checkbox {
        margin-top: 10px;
    }

    #appointment-mobile-title-text {
        text-align: center;
        letter-spacing: 0;
        color: #303030;
        opacity: 1;
        font-size: 6vw;
        font-family: proxima nova, arial, sans-serif;
        font-weight: bold;
        border-bottom: 1px solid #D1D1D1;
        padding-bottom: 15px;
    }

    #appointment-text {
        display: block;
    }
}

/******Virtual CSS*******/
#appointment-text {
    border-bottom: 1px solid #D1D1D1;
    padding: 15px 15px 20px 15px;
}

#virtual-image-icon-container {
    float: left;
    padding-right: 20px;
}

#virtual-text-top {
    text-align: left;
    font: normal normal bold 17px/20px Arial;
    color: #F02525;
}

#virtual-bottom-text {
    font: normal normal normal 14px/20px Arial;
    letter-spacing: 0px;
    color: #303030;
}

.virtual-container {
    display: block !important;
}

#virtual-additional-text-container {
    margin-top: 40px;
}

@media screen and (max-width:700px) {
    #virtual-text-top {
        text-align: left;
        font: normal normal bold 17px/20px Arial;
        color: #F02525;
        padding-top: 0px;
    }
}

.appointment-question-about-your-project-container,
.appointment-question-pet-or-children-container,
.appointment-question-using-zoom-container,
.appointment-question-houzz-or-pinterest-container,
.appointment-question-describe-your-style-container,
.appointment-question-tape-measure-container {
    display: none;
}

.appointment-question-item-container.appointment-question-using-zoom-container {
    width: 100%;
    float: left;
    margin: 20px auto;
}

.appointment-question-item-container.appointment-question-tape-measure-container {
    margin-bottom: 20px;
}

@media screen and (max-width:615px) {

    #virtual-image-icon-container {
        float: left;
        padding-right: 20px;
        margin-bottom: 85px;
    }
}

#loader {
    padding: 30px;
}

.form-loading-container {
    margin: 0 auto;
    border: 16px solid #fff;
    border-radius: 50%;
    border-top: 20px solid #183b4e;
    width: 120px;
    height: 120px;
    -webkit-animation: spin 2s linear infinite;
    animation: spin 2s linear infinite;
}
/* Safari */
@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
    }
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}


input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none !important;
    margin: 0 !important;
}


.retractable-awning-recover-container {
    display: none;
}
