@import url("https://fonts.googleapis.com/css2?family=Rubik:wght@300;400;500;600;700;800;900&display=swap");
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

:root {
    --primary: #3498db;
    --secondary: #bfc0c0;
    --white: #fff;
    --text-clr: #5b6475;
    --header-clr: #5b6475;
    --next-btn-hover: #8b8c8c;
    --back-btn-hover: #8b8c8c;
    --med: #A1AAB3;
    --light: #e9ebee;
}


.contentarea {
    padding-top: 20px;
    background-color: #f2f2f2;
}

.disabled {
    opacity: 50%;
}

@media screen and (max-width: 767px) {
    .hideMobile {
        display: none;
    }
    .right-column {
        padding-left: 10px !important;
        padding-top: 10px !important;
    }
}


.left-column {
    
    padding-top: 40px;
    padding-left: 0;
    padding-right: 0;
}

.right-column {
    padding-left: 40px;
    padding-top: 40px;
}

.left-column .header {
    padding: 40px 15px 15px 15px;
    background: #fff;
}
.legal {
    font-size: 10px;
}

.error {
    text-align: center;
    font-weight: 700;
    color: red;
}

.text-right {
    text-align: right;
}
.padding0 {
    padding: 0;
}
.padding5 {
    padding: 5px;
}
.padding10 {
    padding: 10px;
}
.padding20 {
    padding: 20px;
}

.topMargin-80 {
  margin-top: 80px;
}
.topMargin-40 {
  margin-top: 80px;
}
.topMargin-20 {
  margin-top: 20px;
}
.topMargin-10 {
  margin-top: 10px;
}


.roboCon24Bld {
    font-family: "Open Sans", sans-serif;
    font-size: 24px;
    font-weight: bold;
}

#table-basic-1 {
    table-layout: fixed;
    width: 100%;
    border: solid thin;
    border-color: #cccccc;
    border-collapse: collapse;
}
tr, td, th {
    padding: 5px;
}
.bg-grey20 {
    background: #DDE1E4;
}
.border-top {
    border-top: 1px solid #dee2e6!important;
}



.btn {
  background-color: var(--primary);
  color: var(--white);
  padding: 8px 30px;
  cursor: pointer;
  font-size: 14px !important;
  font-family: "Open Sans", sans-serif !important;
  border-radius: 0;
  margin: 5px;
}
.back {
  background-color: var(--secondary);
}
.btn:active,
.btn:hover {
  background-color: var(--back-btn-hover);
  color: #fff;
}

label {
    font-size: 14px;
    position: relative;
}
label i {
    color: var(--primary);
}
label .tip {
    display: none;
    background-color: #EEEEEE;
    position: absolute;
    /* width: 125px; */
    color: #999999;
    padding: 5px;
    font-size: 12px;
    white-space: nowrap;
    border-radius: 3px;
    left: 59px;
    top: 0;
    z-index: 1;
}
label .tip b {
    color: var(--primary);
}
label:hover .tip,
label:active .tip {
    display: inline;
}

.form-wrapper h4 {
  font-size: 1.7rem;
  text-align: center;
}
.form-wrapper h5 {
  font-size: 0.8rem;
  text-align: center;
}

.form-wrapper input[type="radio"] {
  display: none;
}
.form-wrapper input[type="radio"] + label {
  display: block;
  border: 1px solid #ccc;
  width: 100%;
  max-width: 100%;
  padding: 10px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  cursor: pointer;
  position: relative;
  background-color: #fff;
}

.form-wrapper input[type="radio"] + label:before {
  content: "\2713";
  position: absolute;
  right: -10px;
  top: -10px;
  width: 30px;
  height: 30px;
  line-height: 30px;
  border-radius: 100%;
  background-color: var(--primary);
  color: #fff !important;
  display: none;
  text-align: center;
  border-color: #fff;
}

.form-wrapper input[type="radio"]:checked + label:before {
  display: block;
}

.form-wrapper input[type="radio"] + label h4,
.form-wrapper input[type="radio"] + label h5 {
  margin: 15px;
  color: #ccc;
}

.form-wrapper input[type="radio"]:checked + label {
  border: 1px solid var(--primary);
}

.form-wrapper input[type="radio"]:checked + label h4,
.form-wrapper input[type="radio"]:checked + label h5 {
  color: var(--primary);
}

/*------------ Structure ----------*/
.flex {
  display: flex;
  justify-content: space-between;
}
ul {
  list-style: none;
}
a {
  text-decoration: none;
  color: #000;
}

#home,
#order {
  min-height: 86vh;
}


/*------------ header ----------*/
header {
    padding: 20px 0;
   /* box-shadow: 1px 4px 4px 0px rgba(0,0,0,0.23);
    -webkit-box-shadow: 1px 4px 4px 0px rgba(0,0,0,0.23);
    -moz-box-shadow: 1px 4px 4px 0px rgba(0,0,0,0.23);*/
    border-bottom: 1px solid var(--med);
    position: relative;
    z-index: 2;
}
header ul {
  display: inline-block;
}
header ul li {
  display: inline-block;
  margin-left: 30px;
}
header ul li a {
  font-weight: 500;
  transition: 0.5s;
}
header ul li a:hover {
  color: #38d16a;
  font-weight: 500;
}
.HeaderIcon {
  margin-left: 20px;
  transition: 0.5s;
}
.HeaderIcon:hover {
  color: #38d16a;
  font-weight: 500;
  cursor: pointer;
}

header.active {
  position: sticky;
  top: 0;
  left: 0;
  background-color: #fff;
  box-shadow: 0 2px 28px 0 rgb(0 0 0 / 6%);
  width: 100%;
  z-index: 10;
}
.logo img {
  width: 100%;
  max-width: 75px;
  height: auto;
}

@media screen and (max-width: 768px) {
  header .icon {
    display: none;
  }
  .nav-links {
    display: none;
  }
  .nav-links-sidebar {
    position: absolute;
    display: block;
    background-color: #fff;
    left: 50px;
    top: 75px;
    transition: 0.5s;
    width: 100%;
    height: 30vh;
    z-index: 5;
  }

  .nav-links-sidebar {
    display: flex;
    flex-direction: column;
    margin-bottom: 30px;
  }
  header ul li {
    margin-bottom: 30px;
  }

  .navbar-items-icon {
    display: block;
    position: absolute;
    right: 30px;
    font-size: 30px;
    color: #000;
    border: 1px solid #000;
    padding: 5px 10px;
  }
}

/*------------ Order Form ----------*/
.orderFormSteps {
    padding-left: 0;
    background-color: #fff;
}
.orderFormSteps li {
  width: 100%;
  opacity: 0.35;
    padding: 20px 10px 20px 60px;
  text-align: left;
  border-bottom: 1px solid var(--light);
  border-top: 1px solid var(--light);
  position: relative;
}
.orderFormSteps .active::after {
    display: inline-block;
    content: "\005E";
    transform: rotate(90deg);
    right: 27px;
    position: absolute;
    font-weight: 400;
    font-size: 1.7em;
    top: 14px;
}
.orderFormSteps .bullet {
    position: absolute;
    width: 20px;
    height: 20px;
    border: 2px solid #000;
    border-radius: 50%;
    left: 25px;
    top: 22px;
}
.orderFormSteps .completed {
    background-color: #000;
}
.orderFormSteps .active {
    background-color: #f2f2f2;
    opacity: 1 !important;
}
.orderFormSteps .active .bullet {
    border-color: var(--primary);
    border-width: 5px;
}
/*------------ footer ----------*/
footer {
    background-color: #263354;
    padding: 20px 0 0 0;
    color: #fff;
    margin-top: 40px;
}
footer p {
  color: #fff;
  margin: 20px 0;
}
.legal {
    display: flex;
    justify-content: space-between;
    /* border-top: 1px solid rgba(255, 255, 255, 0.5); */
    margin-top: 70px;
    padding: 17px;
}









.calendar-container{
  width: 100%;
  background: #fff;
  border-radius: 10px;
  /*box-shadow: 0 15px 40px rgba(0,0,0,0.12);*/
  border: 1px solid #ced4da;
}
.calendar-container header{
  display: flex;
  align-items: center;
  padding: 25px 30px 10px;
  justify-content: space-between;
}
.calendar-container header .icons{
  display: flex;
}
.calendar-container header .icons span{
  height: 38px;
  width: 38px;
  margin: 0 1px;
  cursor: pointer;
  color: #878787;
  text-align: center;
  line-height: 38px;
  font-size: 1.9rem;
  user-select: none;
  border-radius: 50%;
}
.calendar-container .icons span:last-child{
  margin-right: -10px;
}
.calendar-container header .icons span:hover{
  background: #f2f2f2;
}
.calendar-container header .current-date{
  font-size: 1.45rem;
  font-weight: 500;
}
.calendar-container .calendar{
  padding: 20px;
}
.calendar-container .calendar ul{
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  text-align: center;
}
.calendar-container .calendar .days{
  margin-bottom: 20px;
}
.calendar-container .calendar li{
  color: #333;
  width: calc(100% / 7);
  font-size: 1.07rem;
}
.calendar-container .calendar .weeks li{
  font-weight: 500;
  cursor: default;
}
.calendar-container .calendar .days li{
  z-index: 1;
  cursor: pointer;
  position: relative;
  margin-top: 30px;
}
.calendar-container .days li.inactive{
  color: #aaa;
}
.calendar-container .days li.active{
  color: #fff;
}
.calendar-container .days li::before{
  position: absolute;
  content: "";
  left: 50%;
  top: 50%;
  height: 40px;
  width: 40px;
  z-index: -1;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}
.calendar-container .days li.active::before{
  background: var(--primary);
}
.calendar-container .days li:not(.active):hover::before{
  background: #f2f2f2;
}

.option {
    padding: 15px 15px 15px 125px;
    position: relative;
    min-height: 150px;
    border: 1px solid #ccc;
    cursor: pointer;
    font-size: 12px;
    
}
.optionSelected {
    border-color: var(--primary) !important;
}
.optionSelected:before {
  content: "\2713";
  position: absolute;
  right: -10px;
  top: -10px;
  width: 30px;
  height: 30px;
  line-height: 30px;
  border-radius: 100%;
  color: #fff !important;
  background-color: var(--primary) !important;
  /*display: none;*/
  text-align: center;
  border-color: #fff;
}
.shingles {
    background: url(/assets/img/shingles.png);    
    background-repeat: no-repeat;
    background-size: contain;
}
.gutter {
    background: url(/assets/img/gutter.png);    
    background-repeat: no-repeat;
    background-size: contain;
}

.soffit {
    background: url(/assets/img/soffit.png);    
    background-repeat: no-repeat;
    background-size: contain;
}

.fascia {
    background: url(/assets/img/fascia.png);    
    background-repeat: no-repeat;
    background-size: contain;
}

.vent {
    background: url(/assets/img/vent.png);    
    background-repeat: no-repeat;
    background-size: contain;
}