@import url("https://fonts.googleapis.com/css?family=Poppins:100,100i,200,200i,300,300i,400,400i,500,500i,600,600i,700,700i,800,800i,900,900i");
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  outline: 0;
  box-sizing: border-box;
  user-select: none;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden !important;
}

a {
  text-decoration: none !important;
  outline: none !important;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

:focus {
  outline: 0;
}

body {
  padding: 0px;
  margin: 0px;
  background: var(--body);
  font-family: "poppins";
}

:root {
  --width: 100px;
  --height: 160px;
  --white: #ffffff;
  --org: #fff;
  --primary: #0065FF;
  --body: #f1f3f6;
  --borderRadius: 10px;
}

.hide {
  display: none !important;
}

.show {
  display: block !important;
}

.header {
  display: flex;
  flex-direction: row;
  height: 100%;
  min-height: 600px;
}
.header .leftsection {
  width: 70%;
}
.header .rightsection {
  width: 30%;
  background: var(--primary);
}
@media (max-width: 1024px) {
  .header {
    flex-direction: column;
  }
  .header .leftsection, .header .rightsection {
    width: 100%;
  }
}

.card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: var(--height);
  background-color: var(--org);
  border-radius: var(--borderRadius);
  margin: 0 15px;
  transition: all 0.2s ease;
}

@media (max-width: 768px) {
  .card {
    height: 120px;
  }
}
#step_3 .card {
  height: 80px;
}

.step {
  display: none;
}
.step.active {
  display: block;
}

.card:hover {
  box-shadow: 0 0 20px -12px rgba(0, 0, 0, 0.4);
}

.card input[type=radio] {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}

.card .checkmark {
  position: absolute;
  top: 16px;
  right: 0;
  width: 16px;
  height: 16px;
  border: solid 1px #eca400;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.card .checkmark:after {
  position: absolute;
  display: none;
  content: "";
  top: 2px;
  left: 2px;
  width: 10px;
  height: 10px;
  background-color: #ffbb20;
  border-radius: 50%;
}

.card .label {
  font-size: 0.9em;
}

#step_3 .card .label {
  font-size: 1.4em;
}
#step_3 .card .label.text {
  font-weight: 600;
}
#step_3 .card .label.text.bl {
  color: #0096d5;
}
#step_3 .card .label.text.red {
  color: #cc0000;
}
#step_3 .card .label.text.db {
  color: #0e5daa;
}
#step_3 .card .label.text.nb {
  color: #084da5;
}
#step_3 .card .label.text.lr {
  color: #d82231;
}
#step_3 .card .label.text.black {
  color: #000;
}

#step_4 .card .label {
  font-size: 1.4em;
}

.card .price {
  font-size: 1.4em;
  font-weight: bold;
}

.card .decoration-card {
  position: absolute;
  display: none;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--height);
  border: solid 2px #865d00;
  border-radius: var(--borderRadius);
  pointer-events: none;
}
@media (max-width: 768px) {
  .card .decoration-card {
    height: 120px;
  }
}

#step_3 .card .decoration-card {
  height: 80px;
}

.card input[type=radio]:checked ~ .checkmark:after {
  display: block;
}

.card input[type=radio]:checked ~ .decoration-card {
  display: block;
}

.flexbox {
  flex-direction: row;
  display: flex;
}
.flexbox.wrap {
  flex-wrap: wrap;
}
.flexbox.wrap .card {
  width: calc(33% - 30px);
  margin-bottom: 20px;
}
@media (max-width: 640px) {
  .flexbox.wrap .card {
    width: 100%;
  }
}
.flexbox.wd80 {
  width: 80%;
  margin: 0px auto;
}
.flexbox.cen {
  justify-content: center;
  flex-direction: column;
  align-items: center;
}
.flexbox.cen .cs {
  font-size: 24px;
  font-weight: 500;
}
.flexbox.cen .cs-no {
  font-size: 30px;
  margin: 14px;
  padding: 0px 30px;
  line-height: 62px;
  color: #fff;
  font-weight: 700;
  background: rgb(167, 55, 64);
  border-radius: 8px;
  cursor: pointer;
  display: inline-block;
}
@media (max-width: 640px) {
  .flexbox.cen .cs-no {
    font-size: 24px;
  }
}
@media (max-width: 640px) {
  .flexbox {
    flex-direction: column;
  }
  .flexbox .card {
    margin: 0 0 20px;
  }
}

.allHeading {
  display: block;
  text-align: center;
  margin: 50px;
}
.allHeading h3 {
  font-size: 24px;
  font-weight: 500;
  color: #253858;
}
@media (max-width: 1024px) {
  .allHeading {
    margin: 30px;
  }
}
@media (max-width: 640px) {
  .allHeading {
    margin: 10px 10px 30px;
  }
  .allHeading h3 {
    font-size: 16px;
    font-weight: 500;
    color: #253858;
  }
}

.actionButton {
  display: block;
  text-align: right;
}
.actionButton.wd80 {
  width: 80%;
  margin: 0px auto;
}
.actionButton.error {
  text-align: left;
  padding: 20px 0 0 20px;
  color: #f00;
}
.actionButton a {
  display: inline-block;
  background: var(--primary);
  color: #ffffff;
  cursor: pointer;
  font-size: 16px;
  font-weight: 500;
  padding: 10px 30px 10px 40px;
  margin: 35px 15px 15px 15px;
  border-radius: 8px;
  position: relative;
}
.actionButton a:hover {
  background: #118b5d;
}
.actionButton a i {
  background: url("../images/back.svg") no-repeat 0 0;
  width: 20px;
  height: 20px;
  display: inline-block;
  position: relative;
  top: 3px;
}
@media (max-width: 640px) {
  .actionButton a {
    margin: 0 0 30px;
    width: 100%;
    text-align: center;
  }
}

.img {
  width: 40px;
  height: 40px;
  display: inline-block;
  margin-bottom: 20px;
}
.img img {
  width: 100%;
  height: auto;
}

.allState {
  list-style: none;
  padding: 8%;
}
.allState li {
  margin-bottom: 20%;
  display: flex;
  flex-direction: column;
}
.allState li .heading {
  color: #fff;
  font-size: 16px;
  font-weight: 400;
  text-transform: capitalize;
}
.allState li .ans {
  font-size: 20px;
  font-weight: 600;
  color: #fff;
}

footer {
  background: #07234e;
  display: block;
  color: #fff;
  padding: 2% 6%;
  font-weight: 400;
  font-size: 12px;
  line-height: 22px;
  letter-spacing: 0.016em;
}

.nochater {
  text-align: center;
  padding: 0px 0 0 0;
  display: block;
  max-width: 380px;
  width: 100%;
  height: auto;
  position: relative;
  bottom: -7px;
}
.nochater img {
  width: 100%;
  height: auto;
}

.call-number {
  display: none;
  background: #BE0000;
  width: 80%;
  margin: 0px auto;
  color: #fff;
  text-align: center;
  border-radius: 6px;
  position: absolute;
  left: 0;
  right: 0;
  top: -109px;
  padding: 7px;
  font-size: 28px;
}
.call-number span {
  display: block;
  text-align: center;
  font-size: 18px;
}
@media (max-width: 768px) {
  .call-number {
    display: block;
  }
}

@media (max-width: 768px) {
  .rightsection {
    margin-top: 100px;
    position: relative;
  }
}/*# sourceMappingURL=style.css.map */