<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">body {
	background-color: #101010;
}
.product-page p {
	line-height: 1.6em;
}
.fade-in, .fade-in &gt; *, .circle {
    transition: none !important;
}
.justify, .justify p {
    text-align: justify;
}
a.selector-button {
    border-color: #666666;
}

#sticky-buy {
  background-color: #202020;
}
#sticky-buy h1 {
  color: #FFFFFF;
}

@font-face{
    font-family:"pumpopti-medium";
    src:url("/css/fonts/PumpOpti-Medium.otf") format("woff"),
    url("/css/fonts/PumpOpti-Medium.otf") format("opentype"),
    url("/css/fonts/PumpOpti-Medium.otf") format("truetype");
}

.sm-title-container {
	display: table;
	height: 100px;
	border-radius: 0px 50px 50px 0px;
	width: 95%;
	margin-bottom: 35px;
}
.sm-title-container.reverse-title {
	border-radius: 50px 0px 0px 50px;
	margin-left: 5%;
}
.sm-title-container .wrapper {
	display: table-row;
}

.sm-title-container.title-red {
	background: rgb(128,30,34);
	background: linear-gradient(270deg, rgba(128,30,34,1) 0%, rgba(128,30,34,1) 41%, rgba(10,2,3,1) 100%);
}
.sm-title-container.title-green {
	background: rgb(23,113,67);
	background: linear-gradient(270deg, rgba(23,113,67,1) 0%, rgba(23,113,67,1) 41%, rgba(10,2,3,1) 100%);
}
.sm-title-container.title-teal {
	background: rgb(15,95,93);
	background: linear-gradient(270deg, rgba(15,95,93,1) 0%, rgba(15,95,93,1) 41%, rgba(10,2,3,1) 100%);
}
.sm-title-container.title-teal.reverse-title {
	background: rgb(15,95,93);
	background: linear-gradient(90deg, rgba(15,95,93,1) 0%, rgba(15,95,93,1) 41%, rgba(10,2,3,1) 100%);
}
.sm-title-container.title-orange {
	background: rgb(163,94,38);
	background: linear-gradient(211deg, rgba(163,94,38,1) 0%, rgba(163,94,38,1) 41%, rgba(10,2,3,1) 100%);
}
.sm-title-container.title-green {
	
}

.sm-title-container h3.big-heading {
	display: table-cell;
	vertical-align: middle;
	line-height: 1.2em;
	margin-bottom: 0px;
	text-indent: 5%;
}
.sm-title-container.reverse-title h3.big-heading {
	text-indent: -5%;
}

.promo-section h3 {
    font-family: "pumpopti-medium", 'Gotham A', 'Gotham B', "Helvetica Neue", Helvetica, Arial, "sans-serif";
    font-size: 28px;
}
.product-page .promo-section p {
    line-height: 1.2em;
}
h3.big-heading, h3.medium-heading {
	font-family: "pumpopti-medium", 'Gotham A', 'Gotham B', "Helvetica Neue", Helvetica, Arial, "sans-serif";
	font-size: 5.5vw;
}
h3.medium-heading {
    font-size: 35px;
}



#pulsate-animation {
	position: relative;
	margin-bottom: 45px;
}
#pulsate-bubbles { display: none; }
#pulsate-bubbles .pulsate-bubble {
	position: absolute;
}

#pulsate-bubbles .pulsate-bubble .bubble-container {
	cursor: pointer;
	position: absolute;
	left: 50%;
	top: 50%;
	width: 40px;
	height: 40px;
}

#pulsate-bubbles .pulsate-bubble .bubble-container:before {
	content: '';
	position: relative;
	display: block;
	width: 300%;
	height: 300%;
	box-sizing: border-box;
	margin-left: -100%;
	margin-top: -100%;
	border-radius: 100px;
	border: 3px solid #FFFFFF;
	animation: pulse-ring 1.25s cubic-bezier(0.215, 0.61, 0.355, 1) infinite;
}
#pulsate-bubbles .pulsate-bubble .bubble-container:after {
	cursor: pointer;
	content: '+';
	color: #000000;
    position: absolute;
    left: 0; 
    top: 0;
    display: block;
    width: 100%;
    height: 100%;
    background-color: white;
    border-radius: 45px;
    box-shadow: 0 0 8px rgba(0,0,0,.3);
	text-align: center;
	font-size: 28px;
	line-height: 40px;
	-webkit-transition: all 0.25s ease-in-out; transition: all 0.25s ease-in-out;
}
#pulsate-bubbles .pulsate-bubble.active-bubble .bubble-container:after {
	transform: rotate(45deg);
}
@keyframes pulse-ring {
  0% {
    transform: scale(.33);
  }
  80%, 100% {
    opacity: 0;
  }
}

#pulsate-bubbles .pulsate-bubble .bubble-content {
	display: none;
	position: absolute;
	top: 75px;
	padding: 25px;
	background-color: #d7d5d1;
	width: 400px;
	border-radius: 25px;
	z-index: 10;
    -webkit-box-shadow: 1px 10px 47px 3px rgba(0,0,0,0.8);
    -moz-box-shadow: 1px 10px 47px 3px rgba(0,0,0,0.8);
    box-shadow: 1px 10px 47px 3px rgba(0,0,0,0.8);
}
#pulsate-bubbles .pulsate-bubble .bubble-content.left {
	text-align: left;
    left: 75px;
    top: -50px;
}
#pulsate-bubbles .pulsate-bubble .bubble-content.center {
	text-align: center;
	left: -200px;
}



#pulsate-bubbles .pulsate-bubble .bubble-content.right {
	text-align: right;
	right: 40px;
    top: -50px;
}
#pulsate-bubbles .pulsate-bubble .bubble-content.center:after {
    position: absolute;
    display: block;
    content: "";
    top: -25px;
    left: calc(50% - 22px);
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 17.5px 25px 17.5px;
    border-color: transparent transparent #b5a6ad transparent;
}
#pulsate-bubbles .pulsate-bubble .bubble-content.left:after {
    position: absolute;
    display: block;
    content: "";
    left: -25px;
    top: 53px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 17.5px 25px 17.5px 0;
    border-color: transparent #b5a6ad transparent transparent;
}
#pulsate-bubbles .pulsate-bubble .bubble-content.right:after {
    position: absolute;
    display: block;
    content: "";
    right: -25px;
    top: 53px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 17.5px 0 17.5px 25px;
    border-color: transparent transparent transparent #b5a6ad;
}


#pulsate-bubbles .pulsate-bubble .bubble-content h6 {
	text-transform: uppercase;
	font-size: 18px;
}
#pulsate-bubbles .pulsate-bubble .bubble-content p {
	font-size: 14px;
}
#pulsate-bubbles .pulsate-bubble .bubble-content p:last-child { margin-bottom: 0px; }


#pulsate-bubbles .pulsate-bubble:nth-child(1) {
	top: 13.5%;
	left: 48.35%;
}
#pulsate-bubbles .pulsate-bubble:nth-child(2) {
    top: 13.5%;
    left: 82.5%;
}
#pulsate-bubbles .pulsate-bubble:nth-child(3) {
	top: 31%;
	left: 43%;
}
#pulsate-bubbles .pulsate-bubble:nth-child(4) {
	top: 44%;
	left: 2%;
}
#pulsate-bubbles .pulsate-bubble:nth-child(5) {
	top: 44%;
	left: 62.5%;
}
#pulsate-bubbles .pulsate-bubble:nth-child(6) {
	top: 68%;
	left: 2%;
}
#pulsate-bubbles .pulsate-bubble:nth-child(7) {
	top: 68%;
	left: 30.15%;
}

.sm-endoresement {
	border: 5px solid #862024;
	padding: 25px 25px;
	margin-bottom: 55px;
}
.fullmedia-section.sm-endoresement h3.endorsement {
	font-size: 18px;
	padding-top: 50px;
	line-height: 1.6em;
	text-align: left;
	margin-bottom: 0px;
}
.fullmedia-section.sm-endoresement h3.endorsement span {
	float: right;
	display: inline-block;
	margin-left: 15px;
}

.fullmedia-section.sm-endoresement h3.endorsement span.sos-endorsement {
	max-width: 55px;
    margin-top: 5px;
}
.fullmedia-section.sm-endoresement h3.endorsement span.musictech-endorsement {
	max-width: 125px;
	margin-top: 12px;
}
.fullmedia-section.sm-endoresement h3.endorsement span.musicradar-endorsement {
	max-width: 150px;
	margin-top: 7px;
}
.fullmedia-section.sm-endoresement h3.endorsement span img {
	display: block; width: 100%;
}

#walkthrough-section {
    background: #e7e5cb url('/images/string-machine_walkthrough-bg_1@2x.jpg') no-repeat;
	background-size: 635px auto;
    background-position: 47% 0%;
    padding-top: 38px;
}
#walkthrough-section h3.big-heading {
    font-size: 22px;
    margin-bottom: 35px;
    
}
ul.walkthrough-thumbnail {
    text-align: center;
}
ul.walkthrough-thumbnail li {
    display: inline-block;
}
ul.walkthrough-thumbnail li img {
    display: block;
    width: 100%;
    max-width: 900px;
}


#effects-section .interface-section {
    background: url('/images/string-machine_section-bg_bars-horizontal_1@2x.jpg') no-repeat;
	background-size: cover;
}
#effects-section .interface-section img {
	max-width: 75%;
	padding-top: 20px;
}
#instruments-section {
	padding-top: 0px;
    background: url('/images/string-machine_section-bg_bars-vertical_1@2x.jpg') no-repeat;
	background-size: contain;
}
#instruments-section .interface-section {
    margin-bottom: 25px;
}
#instruments-section .interface-section img {
	max-width: 90%;
}

#presets-section {
	background: rgb(104,29,32);
	background: linear-gradient(90deg, rgba(104,29,32,1) 0%, rgba(104,29,32,1) 41%, rgba(10,2,3,1) 100%);
}
#presets-section.fullmedia-section div.fullimage img {
    object-position: right;
}
#presets-section .media-col h3.big-heading, .media-col .pretitle {
    text-align: center;
}

#presets-section .media-col.fl .divider, .media-col.fr .divider {
    margin: 25px auto;
}
#presets-section .sm-title-container {
    position: absolute;
    margin-top: -55px; right: 0px;
}
#presets-section .sm-title-container + p {
    padding-top: 70px;
}

#presets-section .sm-title-container h3.big-heading {
    text-indent: -5%;
}
#presets-section .fullmedia-section .mediawrapper {
    justify-content: unset;
}
#presets-section.fullmedia-section .mediatext { text-align: left; }

.text-bubble { margin-bottom: 35px; }

#computer-section {
	padding-bottom: 0px;
}

#computer-interface {
    position: relative;
}

#computer-interface-container {
    position: absolute;
    height: 36%;
	margin: 0 auto;
	width: 37%;
	top: 5.5%;
	left: calc(44% - 12.75%);
	text-align: center;
	overflow: hidden;
}

#computer-interface-container img {
    display: inline-block;
    width: 67%;
}

#computer-section p.button-rounded { margin-bottom: 35px; }
#computer-section p.button-rounded a {
    display: inline-block;
    font-family: "pumpopti-medium", 'Gotham A', 'Gotham B', "Helvetica Neue", Helvetica, Arial, "sans-serif";
    padding: 13px 65px;
    border-radius: 25px;
    font-size: 23px;
	font-weight: 400;
}



#cc-join-section {
    background: url('/images/string-machine_section-bg_bars-vertical_2@2x.jpg') no-repeat;
    background-size: cover;
}

.text-bubble {
    padding: 25px 35px;
    background: rgb(248,235,186);
    background: linear-gradient(180deg, rgba(248,235,186,1) 0%, rgba(228,194,168,1) 35%, rgba(228,194,168,1) 65%, rgba(248,235,186,1) 100%);
    border-radius: 15px;
}
.floated-column {
    width: 100%;
}
.tableify td {
    border-color: #363636;
}


@media only screen and (min-width: 480px) {
    .promo-section h3 {
        font-size: 32px;
    }
    h3.big-heading {
        font-size: 28px;
    }
    .text-bubble { margin-bottom: 45px; }
    #walkthrough-section {
        background-size: 750px auto;
        background-position: 47% 0%;
        padding-top: 45px;
    }
    #walkthrough-section h3.big-heading {
        font-size: 25px;
        margin-bottom: 55px;
    }
}
@media only screen and (min-width: 768px) {
	#tab-content-overview p {
		text-align: justify;
	}
	#pulsate-bubbles {
		display: block;
	}
    .floated-column {
        width: 52%;
        padding: 0px;
    }
    .text-bubble {
        padding: 35px 55px;
    }
    .promo-section h3 {
        font-size: 40px;
    }
    h3.big-heading {
        font-size: 40px;
    }
    h3.medium-heading {
        font-size: 40px;
    }
	
	.fullmedia-section.sm-endoresement h3.endorsement {
		text-align: justify;
	}
	
	#effects-section .interface-section {
		margin-top: -35px;
	}
	#effects-section .interface-section img {
		padding-top: 65px;
	}
    #walkthrough-section {
        background-size: 100% auto;
        background-position: 0% 0%;
        padding-top: 5.5%;
    }
    #walkthrough-section h3.big-heading {
        font-size: 3.5vw;
        margin-bottom: 55px;
    }
    #instruments-section {
        background-size: cover;
    }
    
    #presets-section .sm-title-container {
        position: absolute;
        right: -35%;
        margin-top: -125px;
    }
	
	#presets-section .sm-title-container h3.big-heading {
		text-indent: -40%;
	}
    #presets-section .sm-title-container + p {
        padding-top: 5px;
    }
	#presets-section .fullimage {
		z-index: 1;
		width: 40%;
	}
    .text-bubble { margin-bottom: 50px; }
	.sm-endoresement {
		padding: 25px 35px;
	}
	.fullmedia-section.sm-endoresement h3.endorsement {
		padding-left: 70px;
		padding-top: 0px;
	}
}
@media only screen and (min-width: 1140px) {
    .product-page p, .product-page li {
        font-size: 17px;
    }
	h3.big-heading {
        font-size: 45px;
    }
    h3.medium-heading {
        font-size: 45px;
    }
    .text-bubble {
        padding: 35px 55px;
        border-radius: 90px;
    }
    
    
   
    #pulsate-bubbles .pulsate-bubble .bubble-content { width: 500px; }
    #pulsate-bubbles .pulsate-bubble .bubble-content.center {
        left: -250px;
    }
}


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