/* Hint */
.hint {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  position: absolute;
  z-index: 1;
  font-size: 12px;
  font-weight: 400;
  line-height: 28px;
  text-align: center;
  cursor: pointer;
}
.hint:hover {
  z-index: 2;
}
.hint__dot {
  border-width: 10px;
  border-style: solid;
  background: transparent;
  border-radius: 50%;
  height: 28px;
  width: 28px;
  -webkit-animation: pulse 1s ease-out;
  -moz-animation: pulse 1s ease-out;
  animation: pulse 1s ease-out;
  -webkit-animation-iteration-count: infinite;
  -moz-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  opacity: 0;
}
.tool {
  height: auto;
  width: auto;
  position: absolute;
  right: 38px;
  padding: 10px 12px;
  color: #000;
  border-bottom: 0;
  opacity: 1;
  z-index: 0;
  border-radius: 3px;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  font-size: 12px;
  line-height: 1em;
  text-transform: uppercase;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  cursor: pointer;
  white-space: nowrap;
  -webkit-transition:  background 300ms ease-out 0s;
  -moz-transition:  background 300ms ease-out 0s;
  -ms-transition:  background 300ms ease-out 0s;
  -o-transition:  background 300ms ease-out 0s;
  transition:  background 300ms ease-out 0s;
}
@media (max-width: 991px) {
  .tool {
    padding: 6px 8px;
  }
}
.tool:before {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  right: -10px;
  height: 32px;
  width: 10px;
  background: transparent;
}
.tool .tip {
  content: '';
  height: 8px;
  width: 8px;
  -webkit-transform: rotate(-135deg);
  -moz-transform: rotate(-135deg);
  -o-transform: rotate(-135deg);
  position: absolute;
  top: 50%;
  right: -4px;
  margin-top: -4px;
  z-index: 1;
  box-shadow: -2px 2px 2px rgba(0, 0, 0, 0.1);
  -webkit-transition:  background 300ms ease-out 0s;
  -moz-transition:  background 300ms ease-out 0s;
  -ms-transition:  background 300ms ease-out 0s;
  -o-transition:  background 300ms ease-out 0s;
  transition:  background 300ms ease-out 0s;
}
.hint:hover .tool .tip {
  background: #48217A;
}
.tool--right {
  left: 38px;
  right: auto;
}
.tool--right:before {
  left: -10px;
  right: auto;
}
.tool--right .tip {
  left: -4px;
  right: auto;
  box-shadow: 2px -2px 2px rgba(0, 0, 0, 0.1);
}
.hover-tool {
  visibility: hidden;
  opacity: 0;
  -webkit-transition:  all 300ms ease-out 0s;
  -moz-transition:  all 300ms ease-out 0s;
  -ms-transition:  all 300ms ease-out 0s;
  -o-transition:  all 300ms ease-out 0s;
  transition:  all 300ms ease-out 0s;
  cursor: auto;
  height: auto;
  width: 425px;
  position: absolute;
  left: 50px;
  top: 48px;
  padding: 16px 20px;
  border-bottom: 0;
  z-index: 0;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  font-size: 13px;
  line-height: 1.4em;
  text-transform: none;
  text-align: left;
  white-space: normal;
}
.hint:hover .hover-tool {
  left: 0;
  visibility: visible;
  opacity: 1;
}
@media (max-width: 991px) {
  .hover-tool {
    width: 250px;
    top: 38px;
  }
}
.tool--right .hover-tool {
  left: auto;
  right: 50px;
}
.hint:hover .tool--right .hover-tool {
  left: auto;
  right: 0;
}
.hover-tool:before {
  content: '';
  display: block;
  position: absolute;
  top: -18px;
  left: 0;
  height: 18px;
  width: 100%;
  background: transparent;
}
.hover-tool .btn {
  float: right;
  margin-left: 35px;
}
@media (max-width: 991px) {
  .hover-tool .btn {
    float: none;
    margin-left: 0;
    margin-bottom: 15px;
    position: absolute;
    left: 20px;
    bottom: 0;
  }
}
.hover-tool__tip {
  content: '';
  height: 8px;
  width: 8px;
  -webkit-transform: rotate(-135deg);
  -moz-transform: rotate(-135deg);
  -o-transform: rotate(-135deg);
  position: absolute;
  top: -4px;
  left: 35px;
  z-index: 1;
  box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.1);
}
.tool--right .hover-tool__tip {
  left: auto;
  right: 35px;
}
@-moz-keyframes pulse {
  0% {
    -moz-transform: scale(1);
    opacity: 0.0;
  }
  25% {
    -moz-transform: scale(1);
    opacity: 0.1;
  }
  50% {
    -moz-transform: scale(1.1);
    opacity: 0.3;
  }
  75% {
    -moz-transform: scale(1.5);
    opacity: 0.5;
  }
  100% {
    -moz-transform: scale(1.8);
    opacity: 0.0;
  }
}
@-webkit-keyframes pulse {
  0% {
    -webkit-transform: scale(1);
    opacity: 0.0;
  }
  25% {
    -webkit-transform: scale(1);
    opacity: 0.1;
  }
  50% {
    -webkit-transform: scale(1.1);
    opacity: 0.3;
  }
  75% {
    -webkit-transform: scale(1.5);
    opacity: 0.5;
  }
  100% {
    -webkit-transform: scale(1.8);
    opacity: 0.0;
  }
}
@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 0.0;
  }
  25% {
    transform: scale(1);
    opacity: 0.1;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.3;
  }
  75% {
    transform: scale(1.5);
    opacity: 0.5;
  }
  100% {
    transform: scale(1.8);
    opacity: 0.0;
  }
}

/* Hint Color */
.hint {
    background: #333745 none repeat scroll 0 0;
    color: #fff;
}
.hint__dot {
    border-color: #333745;
}
.tool {
    background: #fff none repeat scroll 0 0;
    color: #000;
}
.hint:hover .tool {
    background: #333745 none repeat scroll 0 0;
    color: #fff;
}
.tool .tip {
    background: #fff none repeat scroll 0 0;
}
.hint:hover .tool .tip {
    background: #333745 none repeat scroll 0 0;
}
.tool--right {
    left: 38px;
    right: auto;
}
.tool--right::before {
    left: -10px;
    right: auto;
}
.tool--right .tip {
    box-shadow: 2px -2px 2px rgba(0, 0, 0, 0.1);
    left: -4px;
    right: auto;
}
.hover-tool {
    background: #fff none repeat scroll 0 0;
    color: #000;
}
.hover-tool__tip {
    background: #fff none repeat scroll 0 0;
}

/* Responsive table */
.resp-table .table table {
    max-width: 100%;
    min-width: 70%;
}

.resp-table input[type="checkbox"].main-checkbox+label,
input[type="radio"].main-radio+label {
    margin-top: 0;
    margin-bottom: 0;
}

@media only screen and (max-width: 800px), (min-device-width: 768px) and (max-device-width: 1024px) {
    /* Force table to not be like tables anymore */
    .resp-table .table table, .resp-table .table thead, .resp-table .table tbody, .resp-table .table th, .resp-table .table td, .resp-table .table tr {
        display: block;
    }
    /* Hide table headers (but not display: none;, for accessibility) */
    .resp-table .table thead tr {
        position: absolute;
        top: -9999px;
        left: -9999px;
    }
    .resp-table .table tr {
        border-left: 1px solid #ddd;
        border-bottom: 1px solid #ddd;
    }
    .resp-table .table tr:last-child {
        border-bottom: 0;
    }
    .resp-table .table td {
        /* Behave  like a "row" */
        border: none;
        border-bottom: 1px solid #eee;
        position: relative;
        padding-left: 50%;
        white-space: normal;
        text-align: left;
    }
    .resp-table .table td:before {
        /* Now like a table header */
        position: absolute;
        /* Top/left values mimic padding */
        top: 6px;
        left: 6px;
        width: 45%;
        padding-right: 10px;
        white-space: nowrap;
        text-align: left;
        font-weight: bold;
    }
    /* Label the data */
    .resp-table .table td:before {
        content: attr(data-title);
    }
}
/* END Responsive table */

/*CHARACTERS LIST - product info*/
.product_info_characters {
  padding:0px;
  margin:0px;
  list-style-type: none;
}
.product_info_characters li {
  display:block;
  float:left;
}
.product_info_characters li:after {
  content : ",";
	margin-right: 5px;
}
.product_info_characters li:last-child:after {
  content : "";
}
/* END CHARACTERS LIST - product info*/

.yellow {
    color: #ff9d00;
}

.green {
    color: #5cb85c;
}

.blue {
    color: royalblue;
}

.grey {
    color: #ccc;
}

.red {
    color: #ff391c;
}

/*PREVENT SEARCH*/

.searchlayer {
    background: #fff;
    border: 1px solid #ccc;
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
    display: block;
    padding: 10px;
    position: relative;
    right: 0;
    width: auto;
    z-index: 999;
    /*  box-shadow: 0 3px 5px rgba(0, 0, 0, .2); */
}

.finded_element {
    line-height: normal;
    font-family: inherit;
    font-size: 14px;
    display: block;
    clear: both;
    padding: 2px;
    text-align: left;
    font-weight: 400;
}
.finded_element a {
    color:#333745;
}

.finded_element a:hover {
    margin-left: 5px;
    color: #333;
}

.itemPreFilterCount span {
    float: left;
}

.itemPreFilterCount a:hover {
    color: #606060;
}

.ItemCountValue {
    font-size: 30px;
}

/* Online Bubble Generator http://ilikepixels.co.uk/drop/bubbler/ */


.bubble
{
position: absolute;
z-index: 999;
width: auto;
height: auto;
padding: 5px;
background: #fff;
-webkit-border-radius: 6px;
-moz-border-radius: 6px;
border-radius: 6px;
border: #333745 solid 2px;
}

.bubble:after
{
content: '';
position: absolute;
border-style: solid;
border-width: 10px 10px 10px 0;
border-color: transparent #fff;
display: block;
width: 0;
z-index: 1;
left: -10px;
top: 30%;
}

.bubble:before
{
content: '';
position: absolute;
border-style: solid;
border-width: 11px 11px 11px 0;
border-color: transparent #333745;
display: block;
width: 0;
z-index: 0;
left: -13px;
top: 30%;
}

/* END Online Bubble Generator http://ilikepixels.co.uk/drop/bubbler/ */

.bubble a i.fc {
    left: 10px;
    margin-top: -8px;
    position: relative;
}
.bubbleItemsResult .bubble-close {
    position: inherit;
    padding-left: 4px;
    margin-top: -2px;
    text-decoration: none;
    float: right;
}

/*BlockUI*/

.loading-message {
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    border-radius: 6px;
    margin: 0 auto;
    padding: 10px;
    width: 310px;
}

.loading-message-boxed h4 {
    margin: 10px;
    font-size: 1.2em;
}

.loading-message.loading-message-boxed {
    background-color: #fff;
    border: 2px solid #333745;
}

.loading-message-boxed .btn-mini.grey {
    background-color: #eee;
    color: #333745;
}

.loading-message-boxed span {
    font-size: 1.2em;
}

.loading-message-boxed img {
    display: inline-block;
}
/* Cassette */
@font-face {
  font-family: 'playericons';
  src:  url("../fonts/playericons.eot");
  src:  url("../fonts/playericons.eot?#iefix") format('embedded-opentype'), url("../fonts/playericons.woff") format('woff'),url("../fonts/playericons.woff2") format('woff2'), url("../fonts/playericons.ttf") format('truetype'), url("../fonts/playericons.svg#playericons") format('svg');
  font-weight: normal;
  font-style: normal;
}
/* Main container */
.vc-container{
  text-align: center;
  height: 500px;
  margin-bottom: 50px;
  position: relative;
}

/* Tape elements */
.vc-tape-wrapper{
  -webkit-perspective: 800px;
  -moz-perspective: 800px;
  -o-perspective: 800px;
  -ms-perspective: 800px;
  perspective: 800px;
}
.vc-tape{
  width: 586px;
  height: 379px;
  margin: 30px auto 0;
  position: relative;
  -webkit-transition: all .4s ease-in-out;
  -moz-transition: all .4s ease-in-out;
  -o-transition: all .4s ease-in-out;
  -ms-transition: all .4s ease-in-out;
  transition: all .4s ease-in-out;
}
.vc-loader{
  position: absolute;
  width: 31px;
  height: 31px;
  bottom: 50px;
  left: 50%;
  margin: -15px 0 0 -15px;
  background: transparent url(../img/ajax-loader.gif) no-repeat center center;
  display: none;
}
.vc-tape-back{
  width: 100%;
  height: 100%;
  position: relative;
  background: transparent url(../img/cs_back.png) no-repeat center center;
}
.vc-tape-wheel{
  width: 125px;
  height: 125px;
  position: absolute;
  top: 110px;
  background: transparent;
  border-radius: 50%;
}
.vc-tape-wheel-left{
  left: 109px;
  box-shadow: 0 0 0 70px #000;
}
.vc-tape-wheel-right{
  right: 113px;
}
@-webkit-keyframes rotateLeft {
  0% { -webkit-transform: rotate(0deg) translateZ(-1px); }
  100% { -webkit-transform: rotate(-360deg) translateZ(-1px); }
}
@-webkit-keyframes rotateRight {
  0% { -webkit-transform: rotate(0deg) translateZ(-1px); }
  100% { -webkit-transform: rotate(360deg) translateZ(-1px); }
}
@-moz-keyframes rotateLeft {
  0% { -moz-transform: rotate(0deg) translateZ(-1px); }
  100% { -moz-transform: rotate(-360deg) translateZ(-1px); }
}
@-moz-keyframes rotateRight {
  0% { -moz-transform: rotate(0deg) translateZ(-1px); }
  100% { -moz-transform: rotate(360deg) translateZ(-1px); }
}
@-o-keyframes rotateLeft {
  0% { -o-transform: rotate(0deg) translateZ(-1px); }
  100% { -o-transform: rotate(-360deg) translateZ(-1px); }
}
@-o-keyframes rotateRight {
  0% { -o-transform: rotate(0deg) translateZ(-1px); }
  100% { -o-transform: rotate(360deg) translateZ(-1px); }
}
@-ms-keyframes rotateLeft {
  0% { -ms-transform: rotate(0deg) translateZ(-1px); }
  100% { -ms-transform: rotate(-360deg) translateZ(-1px); }
}
@-ms-keyframes rotateRight {
  0% { -ms-transform: rotate(0deg) translateZ(-1px); }
  100% { -ms-transform: rotate(360deg) translateZ(-1px); }
}
@keyframes rotateLeft {
  0% { transform: rotate(0deg) translateZ(-1px); }
  100% { transform: rotate(-360deg) translateZ(-1px); }
}
@keyframes rotateRight {
  0% { transform: rotate(0deg) translateZ(-1px); }
  100% { transform: rotate(360deg) translateZ(-1px); }
}
.vc-tape-wheel div{
  width: 100%;
  height: 100%;
  background: transparent url(../img/cs_wheel.png) no-repeat center center;
}
.vc-tape-front{
  width: 100%;
  height: 100%;
  position: absolute;
  background: transparent url(../img/cs_front.png) no-repeat center center;
  top: 0px;
  left: 0px;
}
.vc-tape-side-b{
  display: none;
  -webkit-transform: rotate3d(0, 1, 0, 180deg);
  -moz-transform: rotate3d(0, 1, 0, 180deg);
  -o-transform: rotate3d(0, 1, 0, 180deg);
  -ms-transform: rotate3d(0, 1, 0, 180deg);
  transform: rotate3d(0, 1, 0, 180deg);
}

.vc-tape-front span{
  color: rgba(0, 0, 0, 0.6);
  position: absolute;
  top: 83px;
  left: 67px;
  font-family: Arial;
  font-weight: bold;
  font-size: 20px;
}

/* Controls list */
ul.vc-controls{
  list-style: none;
  padding: 0;
  width: 440px;
  position: absolute;
  bottom: 18px;
  left: 50%;
  margin: 0 0 0 -170px;
  background: -moz-linear-gradient(top, rgba(170,170,170,0.35) 0%, rgba(255,255,255,0.44) 50%, rgba(255,255,255,0.53) 100%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(170,170,170,0.35)), color-stop(50%,rgba(255,255,255,0.44)), color-stop(100%,rgba(255,255,255,0.53)));
  background: -webkit-linear-gradient(top, rgba(170,170,170,0.35) 0%,rgba(255,255,255,0.44) 50%,rgba(255,255,255,0.53) 100%);
  background: -o-linear-gradient(top, rgba(170,170,170,0.35) 0%,rgba(255,255,255,0.44) 50%,rgba(255,255,255,0.53) 100%);
  background: -ms-linear-gradient(top, rgba(170,170,170,0.35) 0%,rgba(255,255,255,0.44) 50%,rgba(255,255,255,0.53) 100%);
  background: linear-gradient(to bottom, rgba(170,170,170,0.35) 0%,rgba(255,255,255,0.44) 50%,rgba(255,255,255,0.53) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#59aaaaaa', endColorstr='#87ffffff',GradientType=0 );
  border: 1px solid rgba(0,0,0,0.1);
  border-bottom-color: rgba(255,255,255,0.6);
  padding: 8px;
  height: 54px;
  box-shadow:
    inset 0 1px 0px rgba(0,0,0,0.05),
    0 1px 0 rgba(255,255,255,0.8),
    0 -1px 0 rgba(255,255,255,0.4),
    inset 0 2px 19px rgba(0,0,0,0.05),
    0 2px 1px rgba(0,0,0,0.06);
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  border-radius: 12px;
}

/* Controls list items */
ul.vc-controls li {
  display: block;
  float: left;
  width: 80px;
    height: 50px;
  line-height: 55px;
  text-align: left;
    padding: 10px;
  margin: 0;
    cursor: pointer;
    background: #ddd url(../img/metal.jpg) no-repeat center top;
  box-shadow:
    inset 0 0 0 1px rgba(0,0,0, 0.2),
    inset 0 0 1px 2px rgba(255,255,255,0.9),
    inset 0 -6px 5px rgba(0,0,0,0.1),
    0 6px 7px rgba(0,0,0,0.3),
    0 4px 1px rgba(0,0,0,0.5);
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

ul.vc-controls li:first-child{
  border-radius: 8px 0 0 8px;
}

ul.vc-controls li:last-child{
  border-radius: 0px 8px 8px 0px;
}

ul.vc-controls li.vc-control-play{
  width: 120px;
}

/* Control icons */
ul.vc-controls li span:before{
  font-size: 16px;
  line-height: 50px;
  text-align: center;
  float: left;
  color: #444;
  font-family: 'playericons';
  text-shadow:  1px 1px 1px rgba(255,255,255,0.9);
  font-style: normal;
  font-weight: normal;
  text-transform: none;
  speak: none;
  display: inline-block;
  text-decoration: inherit;
  width: 1em;
  margin-right: 0.2em;
  text-align: center;
}

li.vc-control-pause span:before { content: '\50'; }
li.vc-control-fforward span:before { content: '\23e9'; }
li.vc-control-rewind span:before { content: '\23ea'; }
li.vc-control-stop span:before { content: '\25aa'; }
li.vc-control-play span:before { content: '\70'; }
li.vc-control-volume-off span:before { content: '\1f507'; }
li.vc-control-volume-down span:before { content: '\1f509'; }
li.vc-control-volume-up span:before { content: '\1f50a'; }

ul.vc-controls li:hover{
  box-shadow:
    inset 0 0 0 1px rgba(0,0,0, 0.2),
    inset 0 0 1px 2px rgba(255,255,255,0.9),
    inset 0 -10px 15px rgba(0,0,0,0.1),
    0 6px 7px rgba(0,0,0,0.3),
    0 4px 1px rgba(0,0,0,0.5);
}

/* Pressed (active) */
ul.vc-controls li.vc-control-active{
  height: 50px;
  margin-top: 2px;
  background-image: url(../img/metal_dark.jpg);
  box-shadow:
    inset 0 0 0 1px rgba(0,0,0, 0.18),
    inset 0 0 1px 2px rgba(255,255,255,0.5),
    inset 0 -6px 5px rgba(0,0,0,0.1),
    0 6px 7px rgba(0,0,0,0.3),
    0 2px 1px rgba(0,0,0,0.5);

}

/* Activated */
ul.vc-controls li.vc-control-pressed,
ul.vc-controls li.vc-control-active.vc-control-pressed{
  height: 50px;
  background-image: url(../img/metal_dark.jpg);
  margin-top: 4px;
  box-shadow:
    inset 0 0 0 1px rgba(0,0,0, 0.2),
    inset 0 0 5px 1px rgba(255,255,255,0.5),
    inset 0 -10px 15px rgba(0,0,0,0.2),
    0 7px 5px rgba(255,255,255,0.5);
}

/* Background for the volume knob */
.vc-volume-wrap{
  width: 100px;
  height: 100px;
  position: absolute;
  bottom: 0px;
  left: 50%;
  margin-left: -318px;
  background: -moz-linear-gradient(top, rgba(170,170,170,0.35) 0%, rgba(255,255,255,0.44) 50%, rgba(255,255,255,0.53) 100%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(170,170,170,0.35)), color-stop(50%,rgba(255,255,255,0.44)), color-stop(100%,rgba(255,255,255,0.53)));
  background: -webkit-linear-gradient(top, rgba(170,170,170,0.35) 0%,rgba(255,255,255,0.44) 50%,rgba(255,255,255,0.53) 100%);
  background: -o-linear-gradient(top, rgba(170,170,170,0.35) 0%,rgba(255,255,255,0.44) 50%,rgba(255,255,255,0.53) 100%);
  background: -ms-linear-gradient(top, rgba(170,170,170,0.35) 0%,rgba(255,255,255,0.44) 50%,rgba(255,255,255,0.53) 100%);
  background: linear-gradient(to bottom, rgba(170,170,170,0.35) 0%,rgba(255,255,255,0.44) 50%,rgba(255,255,255,0.53) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#59aaaaaa', endColorstr='#87ffffff',GradientType=0 );
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: 50%;
  padding: 8px;
  box-shadow:
    inset 0 1px 0px rgba(0,0,0,0.05),
    0 1px 0 rgba(255,255,255,0.6),
    0 -1px 0 rgba(255,255,255,0.4),
    inset 0 2px 19px rgba(0,0,0,0.05),
    0 2px 1px rgba(0,0,0,0.06);
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
}

.vc-volume-wrap:after{
  content: 'Volume';
  margin-top: 15px;
  display: block;
}

/* Text style for controls */
ul.vc-controls li,
.vc-volume-wrap:after{
  font-family: 'Roboto Condensed';
  font-size: 10px;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #666;
  text-shadow: 0 1px 1px rgba(255,255,255,0.8);
}
.knob{
  width: 100px;
  height: 100px;
  position: relative;
}

.knob .top{
  position: absolute;
  width: 100%;
  height: 100%;
  background: url(../img/knob.jpg) no-repeat center center;
  z-index: 10;
  cursor: default !important;
  border-radius: 50%;
  box-shadow: inset 0 0 3px 2px rgba(255,255,255,0.6);
}

.knob .base{
  width: 100%;
  height: 100%;
  box-shadow: 0 5px 0 #555, 0px 5px 5px black;
  position: absolute;
  z-index: 1;
  border-radius: 50%;
}

.knob .top:after{
  content: '';
  width: 4px;
  height: 4px;
  background-color: #666;
  position: absolute;
  top: 50%;
  margin-top: -2px;
  left: 4px;
  border-radius: 50%;
  cursor: default !important;
  box-shadow:
    0 0 1px #5a5a5a inset,
    1px -1px 1px rgba(255,255,255,0.5);
}

.knob [draggable] {
  -moz-user-select:  none;
  -webkit-user-select:  none;
  user-select:  none;
}
/* End Cassette */

