@font-face {
    font-family: 'Product Sans';
    font-style: normal;
    font-weight: normal;
    font-display: swap;
    src: url('/fonts/ProductSans-Regular.woff') format('woff');
}

* {
    font-family: 'Product Sans';
}

body {
    overflow-y: scroll;
}

nav {
    background-color: #fffffe;
    border-bottom-width: 1px;
    border-bottom-color: #eaeaea;
    border-bottom-style: solid;
}

.navbar-collapse {
    display: flex;
}

.navbar-nav {
    width: 100%;
}

.navbar-collapse ul li {
    display: flex;
    width: 100%;
    margin-left: 50px;
    border-radius: 30px;
    border: 1px solid transparent;
}

.navbar-collapse ul .active {
    background-color: white;
    border: 1px solid transparent;
    box-shadow: 0 1px 4px 0 rgb(5 5 5 / 15%);
    color: #423f3f;
}

.navbar-collapse ul li a {
    width: 100%;
    text-align: center;
    padding: 5px;
}

.navbar-collapse ul li:hover {
    color: #fc593b;
    background-color: white;
    border: 1px solid transparent;
    box-shadow: 0 1px 4px 0 rgb(5 5 5 / 15%);
    color: #423f3f;
}

.navbar-brand img {
    max-width: 100px;
}

.main {
    flex: 1;
    margin-bottom: 10%;
    margin-top: 10%;
    /*initial auto*/
    width: 100%;
}

.center-item {
    margin-left: auto;
    margin-right: auto;
    padding-left: 16px;
    padding-right: 16px;
    max-width: 560px;
}

h1.main-title {
    font-size:1.5em;
}

h2.main-subtitle {
    font-size:1.2em;
}

.mass-save h2 {
    max-width: 500px;
    margin: auto;
    font-size: 1.2em;
    font-weight: 100;
    color: #999;
    text-align: center;
}

h3 {
    color: #fc593b;
    padding: 10px 0;
    font-weight: bold;
}

h4 {
    padding: 10px;
}

h6 {
    padding: 5px 0px;
    font-size: 1.2rem;
    margin-bottom: 1em;
}

input[type="text"],
input[type="email"],
input[type="tel"],
select,
textarea {
    width: 100%;
    border-radius: 25px;
    outline: none;
    height: 40px;
    border: 1px solid black;
    padding-left: 15px;
    margin: 10px 0px;
}

select {
    margin: 10px 0px;
    cursor: pointer;
}

textarea {
    height: 100%;
    padding: 15px !important;
}

label {
    font-size: 1.2em;
    padding: 0.5em;
}

#home-heated div,
.home-area div {
    margin: 0;
    cursor: pointer;
    transition: 0.5s;
}

.question-section {
    background: #f7f7f7;
    padding: 20px;
    border-radius: 20px;
    margin: 40px 0;
}

.question-section.has-error {
    border: 1px solid #fc593b;
}

.question-section.has-error::after {
    content: "This is a required field.";
    color: #fc593b;
}

/*form div {
    margin: 0px !important;
    padding: 0px !important;
}*/

.design {
    padding: 10px;
}

.design1 {
    padding: 30px;
    border-radius: 20px;
    background-color: #c29289;
    font-size: 12px;
    color: white;
    height:100%;
}

.design1 p {
    font-size: 1.2em;
}

.design1:hover{
    transform: scale(1.05, 1.05);
}

.selection{
    transform: scale(1.05, 1.05);
    background: #fc593b;
}

footer {
    position: fixed;
    bottom: 0;
    width: 100%;
    height: 80px;
    background-color: #fffffe;
    border-top-width: 1px;
    border-top-color: #eaeaea;
    border-top-style: solid;
}

.footer-item {
    margin: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 250px;
}

input[type="submit"] {
    border: 1px solid transparent;
    border-radius: 25px;
    background-color: #fc593b;
    width: 100%;
    outline: none;
    padding: 0.5em 1em;
    color: #fff;
    font-size: 1.5em;
    line-height: 1;
    cursor: pointer;
    font-weight: bold;
    letter-spacing: 1px;
    text-transform: uppercase;
}

input[type="submit"]:hover {
    color: #fc593b;
    background-color: white;
    border: 1px solid #fc593b;
}

/*display none css
.center-item div:not(:first-child){
	display:none;
}*/
.hide{
    display: none;
}

/*css for label*/

/* The container */

.label-container {
    display: block;
    position: relative;
    padding-left: 3em;
    margin-left: 1em;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    cursor: pointer;
}

label.label-container[disabled] {
    opacity: 0.4;
    pointer-events: none;
}

/* Hide the browser's default radio button */

.label-container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

/* Create a custom radio button */

.checkmark {
    position: absolute;
    top: 0.5em;
    left: 0;
    height: 1.6em;
    width: 1.6em;
    background-color: #eee;
    border-radius: 50%;
}

/* On mouse-over, add a grey background color */

.label-container:hover input~.checkmark {
    background-color: #ccc;
}

/* When the radio button is checked, add a orange background */

.label-container input:checked~.checkmark {
    background-color: #fc593b;
}

.label-contain:hover {
    background-color: rgba(0, 0, 0, 0.1);
    width: 100%;
    border-radius: 40px;
}

label-contain {
    padding: 5px;
}

/* Create the indicator (the dot/circle - hidden when not checked) */

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

/* Show the indicator (dot/circle) when checked */

.label-container input:checked~.checkmark:after {
    display: block;
}

/* Style the indicator (dot/circle) */

.label-container .checkmark:after {
    top: 0.25em;
    left: 0.25em;
    width: 1.1em;
    height: 1.1em;
    border-radius: 50%;
    background: white;
}

/*css for label ends*/

/*css for modals*/

.close:focus {
    outline: none;
}

.modal-button,
.modal-button:focus {
    border: 10px solid transparent;
    border-radius: 25px;
    background-color: #fc593b;
    width: 100px;
    outline: none;
    color: #fff;
    cursor: pointer;
}

.information {
    max-width: 530px;
    margin: 20px auto;
    border-radius: 20px;
    padding: 20px;
    background: #f7f7f7;
}

.information h1 {
    font-size: 1.6em;
}

.information h2 {
    font-size: 1.2em;
}

.information:nth-child(odd) {
    background: #fc593b;
    color: #fff;
}

.modal.show {
    opacity: 1;
}

@media (max-width:768px) {
    .center-item {
        padding: 0;
    }

    .information-container {
        padding: 0 15px;
    }

    body {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        padding-top: 60px;
    }

    nav.navbar,
    nav.navbar * {
        text-align: center;
        justify-content: center;
        align-items: center;
        display: flex;
        width: 100%;
    }

    button.navbar-toggler,
    div#navbarNav {
        display: none;
    }

    .design1 {
        padding: 20px;
    }

    .design1 p {
        margin: auto;
        font-size: 1.4em;
        line-height: 1.2;
    }

    .design1 h4 {
        margin: auto;
        padding-bottom: 0;
    }

    .question-section {
        padding: 20px 10px;
    }    
}