html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

* {
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

h1 {
    font-size: 32px;
    font-weight: bold;
}
body {
    background-image: url('/phone.jpg');
    background-repeat: no-repeat;
    background-position: center 0;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-weight: 200;
    padding: 0;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -o-user-select: none;
    user-select: none;
}

a {
    color: #FFF;
    text-decoration: none;
}

.clr:after {
	content: ".";
	display: block;
	clear: both;
	visibility: hidden;
	line-height: 0;
	height: 0;
}

.clr {
	display: inline-block;
}

html[xmlns] .clr {
	display: block;
}

* html .clr {
	height: 1%;
}

#container {
    margin: 0 auto;
}

#phone-container {
    text-align: center;
    position: absolute;
    left: 50%;
    top: 270px;
}

#share {
    text-align: center;
    margin-top: 68px;
}

#heading {
    margin: 14px 0;
    color: #FFF;
    text-align: center;
}

#phone {
    position: relative;
    -moz-transform: scale(1.35);
    transform: scale(1.35);
    -webkit-transform: scale(1.35);
    overflow: hidden;
    left: -50%;
}

#dialer {
    position: relative;
    width: 300px; height: 300px;
    border-radius: 0%;
    padding: 70px;
    -moz-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    border-radius: 50%;
    background-color: #ccc;
    background-image: -moz-repeating-linear-gradient(-45deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 6%, rgba(255, 255, 255, 0.1) 7.5%);
    background-image: -webkit-repeating-linear-gradient(-45deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 6%, rgba(255, 255, 255, 0.1) 7.5%);
}
#dialer:not(.rotating) {
    -moz-transition: 800ms -moz-transform ease-out;
    -webkit-transition: 800ms -webkit-transform ease-out;
    transition: 800ms transform ease-out;
}
#dock {
    position: absolute;
    top: 0;
    left: 0;
    width: 300px; height: 300px;
    background-color: black;
    z-index: -1;
}
.hole {
    position: absolute;
    width: 54px; height: 54px;
    background: -moz-radial-gradient(black, black);
    background: -webkit-radial-gradient(black, black);
    bottom: 8px;
    left: -moz-calc(50% - 27px);
    left: -webkit-calc(50% - 27px);
    border-radius: 50%;
    -moz-transform-origin: 27px -87px;
    -webkit-transform-origin: 27px -87px;
    transform-origin: 27px -87px;
    cursor: pointer;
}
.hole.b2 { -moz-transform: rotate(30deg); }
.hole.b3 { -moz-transform: rotate(60deg); }
.hole.b4 { -moz-transform: rotate(90deg); }
.hole.b5 { -moz-transform: rotate(120deg); }
.hole.b6 { -moz-transform: rotate(150deg); }
.hole.b7 { -moz-transform: rotate(180deg); }
.hole.b8 { -moz-transform: rotate(210deg); }
.hole.b9 { -moz-transform: rotate(240deg); }
.hole.b0 { -moz-transform: rotate(270deg); }

.hole.b2 { -webkit-transform: rotate(30deg); }
.hole.b3 { -webkit-transform: rotate(60deg); }
.hole.b4 { -webkit-transform: rotate(90deg); }
.hole.b5 { -webkit-transform: rotate(120deg); }
.hole.b6 { -webkit-transform: rotate(150deg); }
.hole.b7 { -webkit-transform: rotate(180deg); }
.hole.b8 { -webkit-transform: rotate(210deg); }
.hole.b9 { -webkit-transform: rotate(240deg); }
.hole.b0 { -webkit-transform: rotate(270deg); }

.digit {
    color: white;
    display: block;
    line-height: 54px;
    width: 54px; height: 54px;
    text-align: center;
    position: absolute;
    font-size: 30px;
    top: 150px; left: 150px;
    margin-top: -27px; margin-left: -27px;
}

.digit.b0 { -moz-transform: translate(0, 115px);}
.digit.b9 { -moz-transform: translate(-57px, 99px); }
.digit.b8 { -moz-transform: translate(-99px, 57px); }
.digit.b7 { -moz-transform: translate(-115px, 0px); }
.digit.b6 { -moz-transform: translate(-99px, -57px); }
.digit.b5 { -moz-transform: translate(-57px, -99px); }
.digit.b4 { -moz-transform: translate(0, -115px);}
.digit.b3 { -moz-transform: translate(57px, -99px); }
.digit.b2 { -moz-transform: translate(99px, -57px); }
.digit.b1 { -moz-transform: translate(115px, 0px); }

.digit.b0 { -webkit-transform: translate(0, 115px);}
.digit.b9 { -webkit-transform: translate(-57px, 99px); }
.digit.b8 { -webkit-transform: translate(-99px, 57px); }
.digit.b7 { -webkit-transform: translate(-115px, 0px); }
.digit.b6 { -webkit-transform: translate(-99px, -57px); }
.digit.b5 { -webkit-transform: translate(-57px, -99px); }
.digit.b4 { -webkit-transform: translate(0, -115px);}
.digit.b3 { -webkit-transform: translate(57px, -99px); }
.digit.b2 { -webkit-transform: translate(99px, -57px); }
.digit.b1 { -webkit-transform: translate(115px, 0px); }

#center {
    cursor: pointer;
    width: 100%;
    height: 100%;
    border: 6px solid rgba(0,0,0,0.4);
    border-radius: 50%;
    box-shadow: inset rgba(0,0,0,0.2) 0px 0px 6px 6px;
    background-color: rgb(229, 229, 229);
    font: "Helvetica Neue",Arial,Helvetica,Geneva,sans-serif;
    font-size: 100px;
    text-shadow: 0px -1px 0px rgba(102, 102, 102, 0.5), 0px 2px 1px rgba(255, 255, 255, 0.6);
    text-align: center;
    line-height: 150px;
    color: #66ba70;
    -moz-transition: 500ms color ease-out;
    -webkit-transition: 500ms color ease-out;
    background-color: rgb(229, 229, 229);
    background-image: -moz-repeating-linear-gradient(center top, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 6%, rgba(255, 255, 255, 0.1) 7.5%), -moz-repeating-linear-gradient(left center , transparent 0%, transparent 4%, rgba(0, 0, 0, 0.03) 4.5%), -moz-repeating-linear-gradient(left center , rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 1.2%, rgba(255, 255, 255, 0.15) 2.2%);
}

#stop {
    position: absolute;
    font-size: 200px;
    right: 90px;
    bottom: 14px;
    width: 10px;
    height: 70px;
    background: #fff;
    border: 1px solid rgba(0,0,0,0.4);
    -moz-transform: rotate(-29deg);
    -webkit-transform: rotate(-29deg);
}

#center.rotating {
    color: rgb(51, 51, 51);
}

#center.dialing {
    color: #ff5a5a;
}

#number {
    text-align: center;
    font-size: 30px;
    line-height: 50px;
    height: 50px;
    padding: 0 10px;
    margin: 30px auto;
    border-radius: 5px;
    border: none;
    background-color: rgb(229, 229, 229);
    width: 340px;
}

#footer {
    position: absolute;
    text-align: center;
    color: white;
    font-size: 18px;
    width: 300px;
    left: 50%;
    margin-left: -150px;
    top: 640px;
}

#chart {
    display: none;
    position: absolute;
    left: 75px;
    top: 75px;
    z-index: 10;
}

#chart svg {
    -webkit-border-radius: 100px;
    -moz-border-radius: 100px;
    border-radius: 100px;
}