/* import font-family */
@import url('https://fonts.googleapis.com/css2?family=Rubik:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600&display=swap');

/* common css  */
body {
	font-family: 'Rubik', sans-serif;
	overflow-y: auto;
	overflow-x: hidden;
	-webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    -o-user-select: none;
    user-select: none;
    position: relative;
}

.logo {
	padding: 50px 0 20px 0;
}

button:focus {
	outline: none;
}

.main-wrapper-column {
	padding: 0;
}

.main-wrapper-row {

}
/* End common css  */

/* step 1 css  */
.main-ring-section {

}

.main-wrapper img {
	margin: 10px;
	width: 150px;
	border-radius: 10px;
}

.heading {
	font-size: 17px;
	color: #9D9D9D;
	display: block;
	text-align: center;
	font-family: 'Rubik', sans-serif;
	margin: 0 auto;
	padding-bottom: 10px;
}

.card {
	background-color: #fff;
	border-radius: 15px;
	border: none;
	box-shadow: 0 3px 10px rgb(0 0 0 / 12%);
	position: relative;
}


.radio-btn {
	font-size: inherit;
	margin: 0;
	border: 1px solid #707070;
	position: absolute;
	right: calc(1em + 2px);
	position: absolute;
	top: 40%;
}

@supports (-webkit-appearance: none) or (-moz-appearance: none) {
	.radio-btn {
		-webkit-appearance: none;
		-moz-appearance: none;
		background: #fff;
		border-radius: 50%;
		cursor: pointer;
		height: 1.5em;
		outline: none;
		transition: background 0.2s ease-out, border-color 0.2s ease-out;
		width: 1.5em;
	}

	.radio-btn::after {
		border: 2px solid #fff;
		border-top: 0;
		border-left: 0;
		content: "";
		display: block;
		height: 0.75rem;
		left: 25%;
		position: absolute;
		top: 50%;
		transform: rotate(45deg) translate(-50%, -50%);
		width: 0.375rem;
	}

	.radio-btn:checked {
		background: #1C9AD6;
		border-color: #1C9AD6;
	}

	.card:hover .radio-btn:checked {
		border-color: #1C9AD6;
	}
}

.plan-details {
	border: 1px solid transparent;
	border-radius: 20px;
	cursor: pointer;
	display: flex;
	flex-direction: column;
	padding: 20px 60px 20px 20px;
	transition: border-color 0.2s ease-out;
}

.radio-btn:checked~.plan-details {
	border-color: #1C9AD6;
}

.radio-btn:disabled~.plan-details {
	color: #c4d1e1;
	cursor: default;
}

.radio-btn:disabled~.plan-details .plan-type {
	color: #c4d1e1;
}

.card:hover .radio-btn:disabled~.plan-details {
	box-shadow: none;
}

.plan-details span {
	display: block;
	font-size: 25px;
	text-align: left;
	color: #535556;
}

.sepration-box {
	padding: 5px;
	display: block;
	font-size: 25px;
	font-weight: 300;
	color: #535556;
}

.theme-btn {
	background-color: #1C9AD6;
	border: none;
	outline: none;
	padding: 10px;
	border-radius: 20px;
	width: 100%;
	box-shadow: 20px 0 20px 20px #1c9ad61f;
	margin: 40px auto 0 auto;
	color: #fff;
	display: block;
	text-align: center;
	text-transform: uppercase;
	font-size: 20px;
}

.main-wrapper {

}
/* End step1(home page)  design   */

/* Start step 2 Css  */
.card-image-wrapper {
	margin: 10px 10px 0 0;
	overflow: hidden;
	height: 400px;
	background-image: url('../images/card.jpg');
	background-repeat: no-repeat;
	background-position: top right;
}
.scale-image-wrapper {
	margin: 10px 10px 0 0;
	overflow: hidden;
	height: 400px;
	background-image: url('../images/scale.png');
	background-repeat: no-repeat;
	background-position: top left;
}
.range-progress-bar {
	padding: 30px 15px 0 15px;
}

.line {
	display: flex;
	justify-content: space-between;
}

.minus,
.plus {
	border: none;
	outline: none;
	background-color: transparent !important;
}

.line img {
	width: 20px;
	padding: 0;
}

/* progress bar  css */
.progress {
	background: #e2e2e280;
	border: solid 1px #E2E2E2;
	border-radius: 8px;
	height: 11px;
	width: 100%;
	outline: none;
	margin-top: 9px;
	overflow: initial;

	z-index: 0;
	transition: background 450ms ease-in;
	-webkit-appearance: none;
}

.progress::-webkit-slider-thumb {
	width: 20px;
	height: 20px;
	z-index: 99999;
	border-radius: 50%;
	-webkit-appearance: none;
	cursor: ew-resize;
	background: #1C9AD6;
}
/* start step 3 css  */

.card-img {
	right: -48px !important;
	position: absolute;
	left: unset !important;
	object-fit: cover;
	border-radius: 0 !important;
	object-position: left;
}
/* end step 3 css  */

/* start step 4 css */
.ring-sizer-wrapper {
	height: 180px;
	width: 180px;
	margin: auto;
	display: flex;
	align-items: center;
}

.ring-sizer {
	border-radius: 50%;
	border: 2px solid #1C9AD6;
	height: 80px;
	width: 80px;
	margin: 0 auto 20px auto;
	text-align: center;
	display: block;
	max-width: 180px;
	max-height: 180px;
}

.for-line {
	border-right: 1px solid #9D9D9D;
	border-left: 1px solid #9D9D9D;
	height: 18px;
	text-align: center;
	display: block;
	padding: 10px 10px;
	margin: 0 auto;
	width: 80px;
}

.seprator {
	border: 1px solid #535556;
	margin: 0px auto;
	text-align: center;
	display: block;
}

.ring-wrapper p {
	font-size: 18px;
	color: #535556;
	margin-top: 20px;
	text-align: center;
}

.ring-measurement-wrapper {
	box-shadow: 0 3px 10px rgb(0 0 0 / 5%);
	border: 1px solid #E2E2E2;
	border-radius: 20px;
	padding: 20px;
	max-width: 200px;
	margin: auto;
}

.ring-size-count {
	border-right: 1px solid #E2E2E2;
}

.ring-size-count:last-child {
	border-right: none;
}

.ring-size-caption {
	font-size: 14px;
	color: #535556;
	padding-top: 10px;
}

.ring-size-wrapper {
	padding-top: 50px;
	padding: 0 20px;
}

.ring-wrapper {
	padding-bottom: 30px;
}

.recalibrate-wrapper a {
	color: #616161;
	font-size: 18px;
	text-decoration: underline;
	text-transform: uppercase;
	font-weight: 500;
	margin: 30px auto 0 auto;
	text-align: center;
	display: inline-block;
}

#storlekslider {
	display: none;
}

.btn-range {
	border: none;
	background-color: transparent;
}

/* End  step4 ring-measurement-page css */
.button-wrapper{
	padding: 0 10px;
}