@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");


* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* *,
*::after,
*::before {
  box-sizing: inherit;
} */
/* 
body {
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  line-height: 1.2;
  width: 100%;
  min-height: 100vh;
  color: #fff;
   position: relative; 
  background-image: url(./image/bg.jpg);
  background-size: cover;
  box-sizing: border-box;
} */

.fill {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #1879ca;
  opacity: 0.66;
}

.container-calc {
  max-width: 1200px;
  width: 100%;
  height: 100%;
  position: relative;
  top: 50%;
  left: 0%;
  transform: translate(0%, 0%);
  display: flex;
}


.form {
  width: 100%;
  height: 100%;
  background-color: #fff;
  border-radius: 25px;
  padding: 30px;
  color: #111;
  flex-wrap: wrap;
}

.form1 {
  flex-basis: 100%;
  flex-shrink: 0;
  flex-grow: 0;
  margin-right: 50px;
  flex-wrap: wrap;
}

.form2 {
  flex-shrink: 1;
  flex-grow: 1;
}

.form .form__item {
  margin-bottom: 40px;
  display: inline-block;
  width:49%;
}

.form .heading {
  margin-bottom: 30px;
  font-size: 18px;
  color: #111;
}

.switcher {
  display: flex;
}

.switcher__item input {
  display: none;
}

.switcher__item label {
  display: inline-block;
  padding: 20px 30px;
  font-size: 18px;
  color: #111;
  border: 2px solid #f5ba10;
  cursor: pointer;
}

.switcher__item label:hover {
  background-color: rgba(245, 186, 16, 0.15);
}

.switcher__item label:not(:first-child) {
  margin-left: -2px;
}

.switcher__item input:checked + label {
  background-color: #f5ba10;
  color: #fff;
}

#time {
  -webkit-appearance: none;
  width: 80%;
  height: 10px;
  background-color: #eee;
  border-radius: 20px;
  outline: none;
}

#volume {
  font-size: 48px;
  margin-left: 30px;
  color: #282b31;
}

.slider {
  display: flex;
  align-items: center;
}

#time::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 25px;
  height: 25px;
  background-color: #068323;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 4px 4px 8px 0px rgba(34, 60, 80, 0.2);
}

.option__item {
  margin-bottom: 15px;
  display: flex;
  align-items: center;
}

.option__item input {
  display: none;
}

.option__item .checkmark {
  display: block;
  width: 30px;
  height: 30px;
  background-color: #eee;
  margin-right: 15px;
  cursor: pointer;
  position: relative;
}

.option__item .checkmark::after {
  display: none;
  position: absolute;
  content: "";
  width: 18px;
  height: 18px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #0c76ee;
}

.option__item input:checked + .checkmark::after {
  display: block;
}

.form2 .order {
  margin-bottom: 15px;
}

.form2 .order output {
  margin-left: 10px;
  font-size: 18px;
}

.form2 .total {
  font-size: 40px;
  font-weight: 400;
  color: #282b31;
  position: relative;
}

.form2 .total::after {
  content: "\20BD";
  margin-left: 10px;
}
#services {
    display: flex;
    position: relative;
}
.markers {
    margin: 0 0 20px 14px;

	padding: 0;
}

.markers li {
    list-style-image: url(/assets/img/check_circle.svg);
}
.markers li::marker {
    font-size: 1.1rem;
color: #25ff21;
	line-height: 1;
}
.desc-text {
    color: #2d2d2d;
    line-height: 2.5;
    font-size:12px;
  font-weight: 400;
  border-radius: 30px;
  background-color: #ffffff;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  margin: 5px;
  padding:3px;
  transition: background-color 0.2s ease-in-out,color 0.2s ease-in-out,border-color 0.2s ease-in-out;
}
.start-desc {
    background-color:#f7f6f4;
}