<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/*form styles*/
#ds-cloud-migration-survey {
	margin: 50px auto;
	text-align: center;
	position: relative;
	z-index: 0;
}
#ds-cloud-migration-survey fieldset {
	background: #f6f5f8;
	border: 0 none;
	border-radius: 3px;
	box-shadow: 0 0 15px 1px rgba(0, 0, 0, 0.4);
	padding: 20px 30px;
	box-sizing: border-box;
	margin: 0 10%;
	width: 80%;
	
	/*stacking fieldsets above each other*/
	position: relative;
}
/*Hide all except first fieldset*/
#ds-cloud-migration-survey fieldset:not(:first-of-type) {
	display: none;
}
/*inputs*/
#ds-cloud-migration-survey input:not([type='range']), #ds-cloud-migration-survey textarea {
	padding: 15px;
	border: 1px solid #ccc;
	border-radius: 3px;
	margin-bottom: 10px;
	width: 100%;
	box-sizing: border-box;
	font-family: 'avenir-book', sans-serif;
	color: #2C3E50;
	font-size: 13px;
}

/*slider range*/
.range {
	position: relative;
	width: 620px;
	height: 5px;
	width: 90%;
	margin: 0 5% 150px 5%;
}

.range input {
	width: 100%;
	position: absolute;
	top: 2px;
	left: 0;
	height: 0;
	-webkit-appearance: none;
}
.range input::-webkit-slider-thumb {
	-webkit-appearance: none;
	width: 20px;
	height: 20px;
	margin: -9px 0 0;
	border-radius: 50%;
	background: #fd418d;
	cursor: pointer;
	border: 0 !important;
}
.range input::-moz-range-thumb {
	width: 20px;
	height: 20px;
	margin: -9px 0 0;
	border-radius: 50%;
	background: #fd418d;
	cursor: pointer;
	border: 0 !important;
}
.range input::-ms-thumb {
	width: 20px;
	height: 20px;
	margin: -9px 0 0;
	border-radius: 50%;
	background: #fd418d;
	cursor: pointer;
	border: 0 !important;
}
.range input::-webkit-slider-runnable-track {
	width: 100%;
	height: 2px;
	cursor: pointer;
	background: #b2b2b2;
}
.range input::-moz-range-track {
	width: 100%;
	height: 2px;
	cursor: pointer;
	background: #b2b2b2;
}
.range input::-ms-track {
	width: 100%;
	height: 2px;
	cursor: pointer;
	background: #b2b2b2;
}
.range input:focus {
	background: none;
	outline: none;
}
.range input::-ms-track {
	width: 100%;
	cursor: pointer;
	background: transparent;
	border-color: transparent;
	color: transparent;
}

.range-labels {
	margin: 25px -65px 0;
	padding: 0;
	list-style: none;
	position: absolute;
}
.range-labels::after {
	display: block;
	content: '';
	clear: both;
}
.range-labels li {
	position: relative;
	float: left;
	width: 150px;
	text-align: center;
	color: #b2b2b2;
	font-size: 14px;
	cursor: pointer;
	padding: 0 20px;
}
.range-labels li::before {
	position: absolute;
	top: -28px;
	right: 0;
	left: 0;
	content: "";
	margin: 0 auto;
	width: 10px;
	height: 10px;
	background: #b2b2b2;
	border-radius: 50%;
}
.range-labels .active {
	color: #fd418d;
}
.range-labels .selected::before {
	background: #fd418d;
}
.range-labels .active.selected::before {
	display: none;
}

/*check boxes*/
#ds-cloud-migration-survey .checkboxes  {
	text-align: left;
}
#ds-cloud-migration-survey .checkboxes input[type="checkbox"] {
    position: absolute;
    opacity: 0;
}
#ds-cloud-migration-survey .checkboxes label {
    display: inline-block;
    background-color: rgba(255, 255, 255, 0.9);
    color: #333333;
    font-size: 14px;
    border-radius: 4px;
    white-space: nowrap;
    margin: 0 0 10px 0;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
    display: block;
    padding: 10px 20px 8px 45px;
    cursor: pointer;	
}
#ds-cloud-migration-survey .checkboxes input[type="checkbox"]:checked + label {
    -webkit-transition: all .2s;
    -o-transition: all .2s;
    transition: all .2s;
}
#ds-cloud-migration-survey .checkboxes label::before {
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    font-family: "FontAwesome";
    font-weight: 900;
    font-size: 24px;
    padding: 0;
    margin-right: 15px;
    content: "\f111";
    color: rgba(0, 0, 0, 0.2);
    -webkit-transition: -webkit-transform .3s ease-in-out;
    transition: -webkit-transform .3s ease-in-out;
    -o-transition: transform .3s ease-in-out;
    transition: transform .3s ease-in-out;
    transition: transform .3s ease-in-out, -webkit-transform .3s ease-in-out;
    position: absolute;
    left: 43px;
    margin-top: -9px;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}
#ds-cloud-migration-survey .checkboxes input[type="checkbox"]:checked + label::before {
    content: "\f058";
    -webkit-transition: -webkit-transform .3s ease-in-out;
    transition: -webkit-transform .3s ease-in-out;
    -o-transition: transform .3s ease-in-out;
    transition: transform .3s ease-in-out;
    transition: transform .3s ease-in-out, -webkit-transform .3s ease-in-out;
    color: #e31c79;
}

/*buttons*/
#ds-cloud-migration-survey input[type='button'].action-button {
	width: 100px;
	background: #e31c79;
	font-weight: bold;
	color: white;
	border: 0 none;
	border-radius: 1px;
	cursor: pointer;
	padding: 10px 5px;
	margin: 10px 5px;
}
#ds-cloud-migration-survey .action-button:hover, #ds-cloud-migration-survey .action-button:focus {
	box-shadow: 0 0 0 2px white, 0 0 0 3px #e31c79;
}
/*headings*/
.ds-cms-fs-title {
	font-size: 15px;
	text-transform: uppercase;
	color: #2C3E50;
	margin-bottom: 10px;
}
.ds-cms-fs-subtitle {
	font-weight: normal;
	font-size: 13px;
	color: #666;
	margin-bottom: 20px;
}
/*progressbar*/
#ds-cms-progressbar {
	margin-bottom: 30px;
	overflow: hidden;
    display: flex;
    justify-content: space-around;	
	/*CSS counters to number the steps*/
	counter-reset: step;
}
#ds-cms-progressbar li {
	list-style-type: none;
	color: #b2b2b2;
	text-transform: uppercase;
	font-size: 9px;
	/*width: 33.33%;*/
	width: 100%;
	float: left;
	position: relative;
}
#ds-cms-progressbar li:before {
	content: counter(step);
	counter-increment: step;
	width: 20px;
	line-height: 20px;
	display: block;
	font-size: 10px;
	color: #333;
	background: #b2b2b2;
	border-radius: 3px;
	margin: 0 auto 5px auto;
}
/*progressbar connectors*/
#ds-cms-progressbar li:after {
	content: '';
	width: 100%;
	height: 2px;
	background: #b2b2b2;
	position: absolute;
	left: -50%;
	top: 9px;
	z-index: -1; /*put it behind the numbers*/
}
#ds-cms-progressbar li:first-child:after {
	/*connector not needed before the first step*/
	content: none; 
}
/*marking active/completed steps green*/
/*The number of the step and the connector before it = green*/
#ds-cms-progressbar li.active:before,  #ds-cms-progressbar li.active:after{
	background: #fe418d;
	color: white;
}



</pre></body></html>