* {
    box-sizing: border-box;
}
body {
	margin: 0;
	padding: 0;
	width: 100%;
	font-family: 'Gilroy';
}

a, p, h1, h2, h3, h4, h5, h6 {
	margin: 0;
    text-decoration: none;
    line-height: 1.2;
}
button:focus,
textarea:focus,
select:focus{
	outline: none!important;
	box-shadow: none;
}
input:focus{
	outline: none!important;
}
a:active, a:focus {
  outline: 0;
  outline: none!important;
  -moz-outline-style: none;
}

span, button, img, a {
	transition: .3s all ease;
}

a, span, button {
	display: inline-block;
}

.wrapper {
	overflow: hidden;
}


.step-container {
    
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.step-box {
    background-color: white;
    border-radius: 16px;
    padding: 32px;
    max-width: 1000px;
    width: 100%;
    margin: auto;
}
.wizard-title {
    text-align: center;
    position: relative;
}
.wizard-title .back {
    border: none;
    background-color: transparent;
    display: flex;
    align-items: center;
    gap: 0 8px;
    position: absolute;
    left: 0;
    top: 10px;
    cursor: pointer;
}
.wizard-title .back span {
    font-size: 16px;
    font-weight: 400;
    line-height: 18.56px;
    color: #31AAE1;
}
.wizard-title h2 {
    font-size: 32px;
    font-weight: 600;
    line-height: 38.18px;
    color: #282828;
    margin-bottom: 16px;
}
.wizard-title .blue-line {
    background: #31AAE1;
    width: 48px;
    height: 2px;
    border-radius: 16px;
    margin-bottom: 16px;
}


.step-indicator {
    display: flex;
    justify-content: center;
    margin-bottom: 32px;
    gap: 0 16px;
}

.step-indicator span {
    font-size: 15px;
    font-weight: 400;
    line-height: 17.4px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 28px;
    height: 28px;
    background: #F3F5FF;
    color: #31AAE1;
    border-radius: 50%;
}
.step-indicator span.active {
    background: #31AAE1;
    color: #fff;
}


.size-options {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 32px;
}
.size-options button {
    font-size: 16px;
    font-weight: 300;
    line-height: 18.45px;
    border-radius: 64px;
    padding: 10px;
    min-width: 170px;
    height: 40px;
    border: none;
    cursor: pointer;
}
.size-options button.active {
    background: #31AAE1;
    color: #fff;
}

.dimensions {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 15px;
}
.dimensions .x {
    font-size: 16px;
    font-weight: 300;
    line-height: 18.45px;
    color: #000;
}

.wizard-select {
    overflow: hidden;
    margin: 0 15px;
    border-radius: 5px;
    border: 1px solid #31AAE1;
    border-radius: 64px;
    width: 150px;
    height: 40px;
    position: relative;
}
.wizard-select select {
    cursor: pointer;
    padding-left: 15px;
    width: 100%;
    height: 100%;
    border: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background: url('../images/arrow-down-blue.svg') 96% / 9% no-repeat;
    background-position: right 15px center;
    font-size: 16px;
    line-height: 18.45px;
}
.wizard-btns {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.wizard-btns p {
    font-size: 20px;
    font-weight: 400;
    line-height: 23.2px;
    color: #282828;
    margin-bottom: 16px;
}
.wizard-btns button {
    background: #31AAE1;
    cursor: pointer;
    width: 170px;
    height: 40px;
    border-radius: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 300;
    line-height: 18px;
    color: #fff;
    border: none;
}





.wizard-img {
    text-align: left;
}
.wizard-img img {
    max-width: 100%;
}
.step-two {
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-rov {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0 32px;
}
.step-five-rov {
    justify-content: flex-start;
}
.step {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.result-img {
    text-align: center;
}


/* custom checkbox */
.control {
    display: block;
    position: relative;
    padding-left: 30px;
    margin-bottom: 16px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 500;
    line-height: 18.83px;
    color: #282828;
}
.control:last-child {
    margin-bottom: 0;
}
.control input {
    position: absolute;
    z-index: -1;
    opacity: 0;
}
.control__indicator {
    position: absolute;
    top: 0;
    left: 0;
    height: 18px;
    width: 18px;
    background: #fff;
    border: 1px solid #31AAE1;
    border-radius: 2px;
}
.control--radio .control__indicator {
    border-radius: 50%;
}
.control:hover input~.control__indicator,
.control input:focus~.control__indicator {
    background: #31AAE1;
}
.control input:checked~.control__indicator {
    background: #31AAE1;
}

.control input:disabled~.control__indicator {
    background: #e6e6e6;
    opacity: 0.6;
    pointer-events: none;
}
.control__indicator:after {
    content: '';
    position: absolute;
    display: none;
}
.control input:checked~.control__indicator:after {
    display: block;
}
.control--checkbox .control__indicator:after {
    left: 6px;
    top: 2px;
    width: 3px;
    height: 8px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}



/* modal style */
.modal {
    position: absolute;
    z-index: 10000; /* 1 */
    top: 0;
    left: 0;
    visibility: hidden;
    width: 100%;
    height: 100%;
}
.modal.is-visible {
    visibility: visible;
}
.modal-overlay {
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: hsla(0, 0%, 0%, 0.1);
  visibility: hidden;
  opacity: 0;
  transition: visibility 0s linear 0.3s, opacity 0.3s;
}
.modal.is-visible .modal-overlay {
  opacity: 1;
  visibility: visible;
  transition-delay: 0s;
}
.modal-wrapper {
  position: absolute;
  z-index: 9999;
  top: 6em;
  left: 50%;
  max-width: 333px;
  width: 100%;
  margin-left: -16em;
  background-color: #fff;
  border-radius: 16px;
  box-shadow: 0px 16px 16px 0px #00000026;
}
.modal-transition {
  transition: all 0.3s 0.12s;
  transform: translate(0);
  opacity: 0;
}
.modal.is-visible .modal-transition {
  transform: translate(90px, 50%);
  opacity: 1;
}
.modal-content {
    padding: 20px 26px 26px;
}
.modal-header,
.modal-body {
  padding: 0;
}
.modal-header {
  text-align: center;
  position: relative;
}
.modal-close {
  position: absolute;
  top: -6px;
  left: -10px;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 10px;
  transition: .3s all ease;
}
.modal-close:hover {
    transform: rotate(180deg);
}
.modal-heading {
    font-size: 20px;
    font-weight: 500;
    line-height: 23.54px;
    color: #282828;
    margin-bottom: 8px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.modal-content > *:first-child {
  margin-top: 0;
}
.modal-content > *:last-child {
  margin-bottom: 0;
}


.modal-img {
    margin-bottom: 14px;
}
.modal-img img {
    border-radius: 16px;
    width: 100%;
}
.modal-text {
    text-align: center;
}
.modal-text p {
    font-size: 14px;
    font-weight: 500;
    line-height: 16.48px;
    color: #282828;
    margin-bottom: 8px;
}
.modal-text p:last-child {
    margin-bottom: 0;
}


