#get-estimate {
    margin: 0;
    padding: 4.5rem 0 7.6rem;
    background-color: rgba(227, 226, 224, 0.3412);
}

#get-estimate .input-div {
    display: flex;
    justify-content: flex-end;
    align-items: stretch;
}

#get-estimate input[name='zip-code'] {
    border: 1px #E9592F solid;
    border-radius: 2px 0 0 2px;
    background-color: #E8E6E3;
    width: 49%;
    text-align: center;
    position: relative;
    left: -2px;

    /* for Safari */
    -webkit-user-select: text;
}

#get-estimate input[name='zip-code']:focus {
    outline: none;
    border: 2px #d56324 solid;
}
#get-estimate input[name='zip-code']:hover {
    cursor: text;
}

@supports (-ms-ime-align: auto) {
    /* for MS Edge */
    #get-estimate input[name='zip-code'] {
        width: 99%;
    }
}

#get-estimate h3 {
    font-size: 4.5rem;
    line-height: 6.8rem;
    color: #65696F;
    font-weight: 300;
    margin: 0 0 2.7rem;
    /* text-align: center; */
}

#get-estimate button {
    color: #ffffff;
    background-color: #d56324;
    border-radius: 0 2px 2px 0;
    display: table-cell;
    font-weight: bold;
    line-height: 1.5;
    padding: 20px 0;
    text-transform: uppercase;
    width: 49.9%;
}

@media screen and (max-width: 765px) {
    #get-estimate .input-div {
        justify-content: center;
    }

    #get-estimate button, #get-estimate input[name='zip-code'] {
        padding: 12px 0;
        width: 43.4%
    }
}

@media screen and (max-width: 450px) {
    #get-estimate .input-div {
        width: 100%;
        margin: 0;
    }

    #get-estimate h3 {
        font-size: 25px;
    }
}

@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
    /* for IE 10 + 11 */
    #get-estimate input[name='zip-code'] {
        width: 99%;
    }
}

#myModal .modal-dialog {
    padding-top: 10%;
}

#myModal .modal-content {
    height: auto;
    border-radius: 0;
    padding: 2.5rem;
}

#myModal .modal-header {
    padding: 0;
    background-color: white;
}

#myModal .modal-header button {
    position: relative;
    top: -1rem;
}

#myModal .modal-title {
    font-size: 1.7rem;
    font-weight: 600;
    line-height: 1.5;
    color: #65696F;
    margin-bottom: 2rem;
}

#myModal .modal-body {
    padding: 0;
}

#myModal .form-group {
    margin: 0;
}

#myModal .control-label {
    color: #65696F;
    font-size: 1.3rem;
    font-weight: 600;
    line-height: 1.5;
    margin-bottom: 5px;
}

#myModal .form-control {
    border-radius: 0;
    border: 1px solid #DEDEDF;
    padding: 1rem;
    margin-bottom: 1.5rem;
}

#myModal .form-control:placeholder {
    color: #B5B5B5;
    font-size: 1.4rem;
    line-height: 1.5;
}

#myModal .checkbox {
    padding-top: 0;
    margin-bottom: 0.5rem;
}

#myModal .checkbox label,
#myModal p {
    color: #65696F;
    font-size: 1.4rem;
    line-height: 2.4rem;
}

#myModal input[type="checkbox"] {
    width: 1.7rem;
    height: 1.7rem;
}

#myModal p {
    margin-bottom: 5px;
}

#myModal p:last-child {
    margin: 0;
}

#myModal .btn-primary {
    background-color: #E9592F;
    border: 1px solid #E9592F;
    border-radius: 0;
    padding: 1rem 0;
    text-transform: uppercase;
    width: 12rem;
    margin-top: 2rem;
}

@media (max-width: 765px) {
    #myModal {
        top: 0%;
        padding-top: 25%;
    }

    #myModal .modal-header button {
        right: 0;
    }
}


main #toggleable-description {
    position: relative;
    bottom: 0;
    margin-top: 75px;
    top: 0;
}

main #toggleable-description p {
    margin: 0 0 10px 0;
}

main #toggleable-description.extra-text:hover {
    cursor: pointer;
}

@for($n=1;$n<=$show;$n++)
main #toggleable-description.hide-content p:nth-of-type({{ $n }}) {
    display: block !important;
}
@endfor
main #toggleable-description.hide-content p:nth-of-type({{ $show }}) ~ p {
                                                                         display: none !important;
                                                                     }

main #toggleable-description p {
    text-align: left;
    font: 300 20px/32px Titillium Web;
    font-size: 14px !important;
    color: #60636C;
}

main #toggleable-description span {
    color: #E9592F;
    display: inline-block;
    font-size: inherit;
    line-height: inherit;
    margin-left: 5px;
}

@media screen and (max-width: 765px) {
    main #toggleable-description {
        margin-top: 4.5rem;
    }

    main #toggleable-description .overlay span {
        font-size: 1.4rem;
        line-height: 1.5;
    }

    main #toggleable-description p {
        font-size: 1.4rem;
        line-height: 1.5;
    }
}