@charset "UTF-8";
/* --- SASS 변수 정리 --- */
/* --- SASS 함수 정리 --- */
/* --- 헤더 --- */
#header {
  width: 100%;
  height: 70px;
  position: fixed;
  top: 0;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-end;
  gap: 0;
  background: transparent;
  border-bottom: 1px solid #EDEDED;
  z-index: 20000;
  box-sizing: border-box;
  padding: 0 40px;
}
#header::before {
  width: 100%;
  height: 70px;
  content: "";
  position: absolute;
  left: 0;
  filter: blur(20px) saturate(120%);
  backdrop-filter: blur(20px) saturate(120%);
  z-index: -1;
}
#header article {
  width: 1400px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-end;
  gap: 0;
}
#header article #header_logo {
  width: 20%;
}
#header article #header_logo > a {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  gap: 0;
}
#header article #header_logo > a img {
  width: 160px;
  margin-bottom: 15px;
  cursor: pointer;
}
#header article #header_menu {
  width: 100%;
  height: 70px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-end;
  gap: 0;
}
#header article #header_menu > li {
  width: 160px;
  height: 70px;
  position: relative;
}
#header article #header_menu > li > a {
  width: 160px;
  height: 70px;
  position: relative;
  color: #FFFFFF;
  font-size: 22px;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  transform: perspective(1px) translateZ(0);
  transition: color 0.3s, left 0.3s, right 0.3s;
}
#header article #header_menu > li > a > span {
  width: 160px;
  height: 70px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 0;
}
#header article #header_menu > li > a::before {
  width: auto;
  height: 4px;
  content: "";
  position: absolute;
  left: 51%;
  right: 51%;
  bottom: 0;
  z-index: -1;
  background: #329EFF;
  transition-property: left, right;
  transition-duration: 0.3s;
  transition-timing-function: ease-out;
}
#header article #header_menu > li > a.on {
  color: #329EFF !important;
  font-weight: 700;
}
#header article #header_menu > li > a.on::before {
  left: 0;
  right: 0;
}
#header article #header_menu > li > a:hover {
  color: #329EFF !important;
}
#header article #header_menu > li > a:hover::before {
  left: 0;
  right: 0;
}
#header article #header_menu > li #header_side_menu {
  width: 100%;
  display: none;
  position: absolute;
  top: 100%;
  background: #FFFFFF;
  text-align: center;
  border: 1px solid #D4D4D4;
  border-radius: 0 0 10px 10px;
  z-index: 10000;
}
#header article #header_menu > li #header_side_menu.on {
  display: block;
}
#header article #header_menu > li #header_side_menu > a {
  width: 100%;
  display: block;
  font-size: 22px;
  box-sizing: border-box;
  padding: 10px 0;
  transition: color 0.3s;
}
#header article #header_menu > li #header_side_menu > a:hover, #header article #header_menu > li #header_side_menu > a.on {
  color: #329EFF !important;
}
#header article .header_login {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-end;
  gap: 30px;
}
#header article .header_login > div:nth-of-type(1) {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
  gap: 20px;
}
#header article .header_login > div:nth-of-type(1) a {
  width: 100%;
  display: inline-block;
  position: relative;
  color: #FFFFFF;
  font-size: 20px;
  text-align: center;
  white-space: nowrap;
  padding-bottom: 10px;
  transform: perspective(1px) translateZ(0);
  transition: color 0.3s, left 0.3s, right 0.3s;
}
#header article .header_login > div:nth-of-type(1) a::before {
  width: auto;
  height: 4px;
  content: "";
  position: absolute;
  left: 51%;
  right: 51%;
  bottom: 0;
  z-index: -1;
  background: #329EFF;
  transition-property: left, right;
  transition-duration: 0.3s;
  transition-timing-function: ease-out;
}
#header article .header_login > div:nth-of-type(1) a.on {
  color: #329EFF !important;
  font-weight: 700;
}
#header article .header_login > div:nth-of-type(1) a.on::before {
  left: 0;
  right: 0;
}
#header article .header_login > div:nth-of-type(1) a:hover {
  color: #329EFF !important;
}
#header article .header_login > div:nth-of-type(1) a:hover::before {
  left: 0;
  right: 0;
}
#header article .header_login > div:nth-of-type(1) #header_hidden_menu_icon {
  display: none;
  cursor: pointer;
}
#header article .header_login > div:nth-of-type(1) #header_hidden_menu_icon i {
  font-size: 32px;
}
#header article .header_login > div:nth-of-type(1) #header_hidden_menu_icon.dark i {
  color: #404040;
}
#header article .header_login > div:nth-of-type(1) #header_hidden_menu_icon.white i {
  color: #FFFFFF;
}
#header article .header_login > div:nth-of-type(2) {
  padding-bottom: 5px;
}
#header article .header_login > div:nth-of-type(2) label {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  gap: 2px;
  background: rgba(100, 100, 100, 0.2);
  box-sizing: border-box;
  padding: 5px;
  border-radius: 40px;
}
#header article .header_login > div:nth-of-type(2) label button {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 0;
}
#header article .header_login > div:nth-of-type(2) label button img {
  width: 30px;
  height: 30px;
  cursor: pointer;
  border: 2px solid rgba(100, 100, 100, 0.4);
  border-radius: 30px;
  transition: all 0.3s;
}
#header article .header_login > div:nth-of-type(2) label button img:hover {
  border-color: #329EFF;
}
#header article #header_hidden_menu {
  width: 45vw;
  height: 100%;
  position: fixed;
  right: -100%;
  top: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  gap: 0;
  background: #FFFFFF;
  border-left: 1px solid #D4D4D4;
  border-radius: 20px 0 0 20px;
  z-index: 20000;
}
#header article #header_hidden_menu.on {
  right: 0;
  transition: all 0.3s;
}
#header article #header_hidden_menu.on #header_hidden_menu_exit {
  display: block;
}
#header article #header_hidden_menu ul {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 20px;
  box-sizing: border-box;
  padding: 30px;
}
#header article #header_hidden_menu ul:first-of-type > li {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 10px;
}
#header article #header_hidden_menu ul:first-of-type > li h3 {
  width: 100%;
  font-size: 22px;
  border-bottom: 2px solid #EDEDED;
  padding-bottom: 5px;
}
#header article #header_hidden_menu ul:first-of-type > li a {
  width: 100%;
  display: block;
  font-size: 20px;
  transition: color 0.3s;
}
#header article #header_hidden_menu ul:first-of-type > li a:hover, #header article #header_hidden_menu ul:first-of-type > li a.on {
  color: #329EFF;
}
#header article #header_hidden_menu ul:last-of-type {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-end;
  gap: 0;
  color: #B3B3B3;
}
#header article #header_hidden_menu ul:last-of-type > li {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 10px;
}
#header article #header_hidden_menu ul:last-of-type > li div {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  gap: 5px;
  font-size: 20px;
}
#header article #header_hidden_menu #header_hidden_menu_exit {
  position: absolute;
  top: 20px;
  left: -40px;
  display: none;
  cursor: pointer;
}
#header article #header_hidden_menu #header_hidden_menu_exit i {
  color: #FFFFFF;
  font-size: 32px;
}
#header article #header_hidden_background {
  width: 100%;
  height: 100vh;
  content: "";
  position: absolute;
  top: 0;
  filter: blur(20px) saturate(180%);
  backdrop-filter: blur(20px) saturate(180%);
  display: none;
  background: rgba(40, 40, 40, 0.6);
}

/* --- 푸터 --- */
#footer {
  width: 100%;
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  align-items: flex-end;
  gap: 20px;
  background: rgb(30, 30, 30);
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  box-sizing: border-box;
  padding: 30px;
}
#footer #footer_menu ul {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 50px;
}
#footer #footer_menu ul li p {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 20px;
}
#footer #footer_menu ul li p:first-child {
  font-size: 20px;
}
#footer #footer_menu ul li p:first-child strong {
  color: #EDEDED;
}
#footer #footer_menu ul li p strong {
  color: #B3B3B3;
  white-space: nowrap;
}
#footer #footer_menu ul li p span, #footer #footer_menu ul li p a, #footer #footer_menu ul li p em {
  display: inline-block;
  color: #EDEDED;
}
#footer #footer_menu ul li:first-child {
  width: 20%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
}
#footer #footer_menu ul li:first-child img:first-child {
  width: 80px;
}
#footer #footer_menu ul li:first-child img:last-child {
  width: 120px;
}
#footer #footer_menu ul li:last-child {
  width: 80%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 5px;
}
#footer #footer_terms ul {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
}
#footer #footer_terms ul li:nth-child(1) {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
}
#footer #footer_terms ul li:nth-child(1) > div {
  width: 100%;
  display: grid;
  grid-auto-flow: column;
  grid-template-columns: auto;
  justify-content: end;
  gap: 20px;
  color: #FFFFFF;
}
#footer #footer_terms ul li:nth-child(1) > div a {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  gap: 5px;
  text-align: center;
}
#footer #footer_terms ul li:nth-child(1) > div a span {
  white-space: nowrap;
}
#footer #footer_terms ul li:nth-child(1) > div a path, #footer #footer_terms ul li:nth-child(1) > div a span {
  fill: #EDEDED;
  color: #EDEDED;
  transition: all 0.3s;
}
#footer #footer_terms ul li:nth-child(1) > div a:nth-child(1):hover path {
  fill: #00C13A;
}
#footer #footer_terms ul li:nth-child(1) > div a:nth-child(1):hover span {
  color: #00C13A;
}
#footer #footer_terms ul li:nth-child(1) > div a:nth-child(2):hover path {
  fill: #FF0000;
}
#footer #footer_terms ul li:nth-child(1) > div a:nth-child(2):hover span {
  color: #FF0000;
}
#footer #footer_terms ul li:nth-child(1) > div a:nth-child(3):hover path {
  fill: #1876F2;
}
#footer #footer_terms ul li:nth-child(1) > div a:nth-child(3):hover span {
  color: #1876F2;
}
#footer #footer_terms ul li:nth-child(1) > div a:nth-child(4):hover path {
  fill: url("#instagram_gradation");
}
#footer #footer_terms ul li:nth-child(1) > div a:nth-child(4):hover span {
  color: #D62977;
}
#footer #footer_terms ul li:nth-child(2) {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
  gap: 10px;
}
#footer #footer_terms ul li:nth-child(2) > div {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
}
#footer #footer_terms ul li:nth-child(2) > div a {
  color: #EDEDED;
  text-align: center;
  transition: all 0.3s;
}
#footer #footer_terms ul li:nth-child(2) > div a:hover {
  color: #329EFF;
}
#footer #footer_terms ul li p {
  color: #B3B3B3;
  white-space: nowrap;
}

/* --- Top 버튼 --- */
#top_button {
  display: none;
  position: fixed;
  bottom: 5%;
  right: 40px;
  z-index: 10000;
}
#top_button button {
  width: 70px;
  height: 70px;
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 0;
  background: #FFFFFF;
  border-radius: 70px;
  box-shadow: 2px 4px 10px 0px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  transition: all 0.3s;
}
#top_button button div {
  width: 0;
  height: 0;
  position: absolute;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0;
  background: linear-gradient(to right, #329EFF, #7ABEFB);
  border-radius: 4em;
  transition: all 0.3s;
}
#top_button button div i {
  font-size: 32px;
}

/* --- 견적 문의 --- */
.estimate_container {
  width: 1280px;
}
.estimate_container form {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 20px;
  animation-delay: 0.2s;
}
.estimate_container form > div {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.estimate_container form > div label {
  display: block;
  position: relative;
}
.estimate_container form > div label:nth-child(1), .estimate_container form > div label:nth-child(2) {
  animation-delay: 0.3s;
}
.estimate_container form > div label:nth-child(3), .estimate_container form > div label:nth-child(4) {
  animation-delay: 0.4s;
}
.estimate_container form > div label:nth-child(5), .estimate_container form > div label:nth-child(6) {
  animation-delay: 0.5s;
}
.estimate_container form > div label:before {
  width: 0;
  height: 2px;
  content: "";
  position: absolute;
  top: 37px;
  left: 0;
  background: #404040;
  transition: all 0.3s;
}
.estimate_container form > div label.input_focus p {
  top: -20px;
  left: 0;
  color: #404040;
  font-size: 16px;
  font-weight: 700;
  transition: all 0.3s;
}
.estimate_container form > div label.input_focus:before {
  width: 100%;
}
.estimate_container form > div label p {
  position: absolute;
  top: 0;
  font-size: 22px;
  font-weight: 700;
  transition: all 0.3s;
}
.estimate_container form > div label p b {
  color: #DE3B3B;
}
.estimate_container form > div label input {
  width: 100%;
  color: #404040;
  font-size: 22px;
  font-weight: 700;
  background: transparent;
  border-bottom: 2px solid #C4C4C4;
  box-sizing: border-box;
  padding: 5px 0;
  transition: all 0.3s;
}
.estimate_container form > div label input::-moz-placeholder {
  color: #C4C4C4;
  font-weight: 200;
  opacity: 0;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
}
.estimate_container form > div label input::placeholder {
  color: #C4C4C4;
  font-weight: 200;
  opacity: 0;
  transition: all 0.3s;
}
.estimate_container form > div label input:focus::-moz-placeholder {
  opacity: 1;
}
.estimate_container form > div label input:focus::placeholder {
  opacity: 1;
}
.estimate_container form > div label span {
  display: block;
  color: #DE3B3B;
  font-size: 20px;
  font-weight: 400;
}
.estimate_container form > div label span.error_text {
  display: none;
}
.estimate_container form > div:nth-child(2) {
  grid-template-columns: 1fr;
}
.estimate_container form > div:nth-child(2) label {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 10px;
  animation-delay: 0.6s;
}
.estimate_container form > div:nth-child(2) label p {
  position: inherit;
}
.estimate_container form > div:nth-child(2) label textarea {
  width: 100%;
  height: 160px;
  font-size: 20px;
  background: transparent;
  border: 2px solid #C4C4C4;
  border-radius: 10px;
  box-sizing: border-box;
  padding: 10px;
  transition: all 0.3s;
}
.estimate_container form > div:nth-child(2) label textarea:focus {
  border: 2px solid #404040;
}
.estimate_container form > div:nth-child(2) label textarea::-moz-placeholder {
  color: #B3B3B3;
  font-weight: 200;
  opacity: 0;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
}
.estimate_container form > div:nth-child(2) label textarea::placeholder {
  color: #B3B3B3;
  font-weight: 200;
  opacity: 0;
  transition: all 0.3s;
}
.estimate_container form > div:nth-child(2) label textarea:focus::-moz-placeholder {
  opacity: 1;
}
.estimate_container form > div:nth-child(2) label textarea:focus::placeholder {
  opacity: 1;
}
.estimate_container form > div:nth-child(3) {
  grid-template-columns: 1fr;
  place-items: center center;
}
.estimate_container form > div:nth-child(3).g-recaptcha {
  animation-delay: 0.7s;
}
.estimate_container form > div:nth-child(3) button {
  display: none;
}

/* --- 공통 버튼 --- */
.button, .button:disabled {
  width: 200px;
  height: 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0;
}

.button {
  background: #404040;
  border-radius: 10px;
  box-shadow: 2px 4px 10px 0px rgba(0, 0, 0, 0.1);
  color: #FFFFFF;
  font-size: 20px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s;
}
.button:hover {
  border-color: #329EFF;
  background: #329EFF;
  box-shadow: 2px 4px 10px 0px rgba(0, 0, 0, 0.1);
}

.button:disabled {
  color: #C4C4C4;
  background: #EDEDED;
  border: 2px solid transparent;
  box-shadow: none;
}
.button:disabled:hover {
  border: 2px solid transparent;
}

.dot::before {
  width: 100%;
  height: 100%;
  content: "·";
  font-size: 22px;
  color: #404040;
}

.category {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  gap: 5px;
}
.category > li, .category > a {
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 0;
  background: #E5E5E5;
  font-size: 22px;
  font-weight: 700;
  text-align: center;
  white-space: nowrap;
  cursor: pointer;
  border-radius: 10px;
  box-sizing: border-box;
  padding: 10px 20px;
  transition: all 0.3s;
}
.category > li.on, .category > a.on {
  color: #FFFFFF;
  background: #329EFF;
}
.category > li.on:hover, .category > a.on:hover {
  color: #FFFFFF;
}
.category > li:hover, .category > a:hover {
  color: #329EFF;
}

/* --- 미디어 쿼리 --- */
@media (max-width: 1280px) {
  #header article #header_menu > li > a,
  #header article #header_menu > li #header_side_menu > li > a,
  #header article .header_login > div a,
  .estimate_container form > div label p,
  .estimate_container form > div label input,
  .estimate_container form > div:nth-child(2) label textarea,
  .category > li, .category > a,
  .button, .dot::before {
    font-size: 20px;
  }
  #header article #header_logo > a img {
    width: 140px;
  }
  #header article #header_menu {
    box-sizing: border-box;
    padding: 0 5%;
  }
  #header article #header_menu > li,
  #header article #header_menu > li > a,
  #header article #header_menu > li > a > span {
    width: 100%;
    min-width: 100px;
  }
  #footer {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  #footer #footer_terms ul li {
    justify-content: center;
  }
  #footer #footer_terms ul li:nth-child(1) {
    flex-direction: row-reverse;
  }
  #footer #footer_terms ul li:nth-child(1) > div {
    justify-content: space-around;
  }
  .estimate_container {
    width: 100%;
  }
  .estimate_container form > div:nth-child(3) button {
    width: 40%;
  }
}
@media (max-width: 1000px) {
  #header {
    justify-content: space-between;
  }
  #header article #header_menu {
    display: none;
  }
  #header article .header_login {
    width: 100%;
    flex-direction: row-reverse;
    gap: 10px;
    justify-content: flex-start;
    align-items: center;
  }
  #header article .header_login > div:nth-of-type(1) a {
    display: none;
  }
  #header article .header_login > div:nth-of-type(1) #header_hidden_menu_icon {
    display: block;
  }
  .estimate_container form > div {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 780px) {
  #header article #header_hidden_menu ul:first-of-type > li h3 {
    font-size: 20px;
  }
  #header article #header_menu > li > a,
  #header article #header_menu > li #header_side_menu > li > a,
  #header article #header_hidden_menu ul:first-of-type > li a,
  #header article #header_hidden_menu ul:last-of-type > li div,
  #header article .header_login > div a,
  .estimate_container form > div label p,
  .estimate_container form > div label input,
  .estimate_container form > div:nth-child(2) label textarea,
  .category > li, .category > a,
  .button, .dot::before {
    font-size: 18px;
  }
  #header {
    padding: 0 40px;
  }
  #footer #footer_menu ul {
    gap: 20px;
  }
  #footer #footer_menu ul li:first-child {
    width: 30%;
  }
  #footer #footer_menu ul li:last-child {
    width: 70%;
  }
  #footer #footer_terms ul li:nth-child(1) {
    flex-direction: column;
  }
  #footer #footer_terms ul li:nth-child(1) > div:nth-of-type(2) {
    grid-template-columns: repeat(4, 1fr);
  }
  #footer #footer_terms ul li:nth-child(1) > div:nth-of-type(2) a {
    width: 100%;
  }
  #footer #footer_terms ul li:nth-child(2) {
    flex-direction: column;
  }
  #footer #footer_terms ul li:nth-child(2) b:last-child {
    display: none;
  }
  .estimate_container form > div {
    grid-template-columns: 1fr;
  }
  .estimate_container form > div:nth-child(3) button {
    width: 100%;
  }
  #top_button {
    right: 20px;
  }
}
@media (max-width: 480px) {
  #header article #header_hidden_menu ul:first-of-type > li h3 {
    font-size: 16px;
  }
  #header article #header_hidden_menu ul:first-of-type > li a,
  #header article #header_hidden_menu ul:last-of-type > li div,
  .estimate_container form > div label p,
  .estimate_container form > div label input,
  .estimate_container form > div:nth-child(2) label textarea,
  .category > li, .category > a,
  .button, .dot::before {
    font-size: 16px;
  }
  #header {
    padding: 0 30px;
  }
  #header article #header_logo > a img {
    transform: scale(0.9);
  }
  #header article #header_hidden_menu {
    width: 60vw;
  }
  #header article #header_hidden_menu ul {
    padding: 20px;
  }
  #footer #footer_menu ul {
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 20px;
  }
  #footer #footer_menu ul li:first-child {
    width: 100%;
    flex-direction: row;
    justify-content: flex-start;
    gap: 10px;
    margin: 0;
  }
  #footer #footer_menu ul li:first-child img:first-child {
    width: 36px;
    margin: 0;
  }
  #footer #footer_menu ul li:first-child img:last-child {
    width: 120px;
  }
  #footer #footer_menu ul li:last-child {
    width: 100%;
  }
  #footer #footer_terms ul li:nth-child(1) > div {
    grid-template-columns: repeat(4, 1fr);
  }
  #footer #footer_terms ul li:nth-child(1) a svg {
    width: 40px;
    height: 40px;
  }
  #top_button button {
    display: none;
  }
  .estimate_container form > div label.input_focus p {
    top: -12px;
    font-size: 12px;
  }
  .estimate_container form > div label:before {
    top: 29px;
  }
  .button, .button:disabled {
    width: 160px;
    height: 40px;
  }
}/*# sourceMappingURL=common.css.map */