body, html {
    background-color: #f1f2f3;
    color: #4f5355;
    font-family: Lato,Helvetica,Arial,sans-serif;
    font-size: 16px;
    margin: 0;
}

.user-info {
	display: none;
}

.a-form, .calculation-results {
    box-shadow: 0 1px 2px rgba(0,0,0,.05);
    background: #fff;
    border-radius: .25em;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-flow: column nowrap;
    flex-flow: column nowrap;
    padding: 1.5em 2em;
    margin: 0px auto;
	font-family: Lato,Helvetica,Arial,sans-serif;
}

.a-form-row {
    display: -ms-flexbox;
    display: flex;
    -ms-flex: 1 auto;
    flex: 1 auto;
    margin: 0 0 .75em;
}

.a-form-col {
    display: -ms-flexbox;
    display: flex;
    -ms-flex: 1 50%;
    flex: 1 50%;
    margin: 0 .75em 0 0;
}

.a-form-col:last-child {
    margin: 0;
}

.a-form-row.labels {
	margin: 0;
}

.a-form-row.calc-3 .a-form-col {
    -ms-flex: 1 80%;
    flex: 1 85%;
}

.a-form-row.calc-2 .a-form-col {
    -ms-flex: 1 90%;
    flex: 1 90%;
}

.a-form-row.calc-3 .a-form-col.score, .a-form-row.calc-2 .a-form-col.score {
    -ms-flex: 1 10%;
    flex: 1 10%;
    margin-right: 0;
}

.a-form-row.calc-3 .a-form-col.remove {
    -ms-flex: 0 0 50px;
    flex: 0 0 50px;
    text-align: center;
}

.a-form-row.calc-2 .a-form-col.remove {
	display: none;
}

.a-form-row.calc-3:last-child, .a-form-row.calc-2:last-child {
	margin: 0;
}

.a-form-input {
    display: -ms-flexbox;
    display: flex;
    -ms-flex: 1 auto;
    flex: 1 auto;
    -ms-flex-flow: column nowrap;
    flex-flow: column nowrap;
    margin: 0 1em 0 0;    
}

.a-form-input:last-child {
    margin: 0;
}

.a-form-input__label {
    font-weight: 700;
    margin: 0 0 .25em;
}

.a-form-input__element {
    background-color: #fff;
    border: 2px solid #cdd0d2 !important;
    border-radius: 2px;
    font-family: Lato,Helvetica,Arial,sans-serif;
    font-size: .875rem;
    height: 2.5rem;
    min-height: 40px;
    padding: 0 .5em;
}

.a-form-input__element.multiselect {
	padding: 0;
    height: 13em;
}

.a-form-input__element.multiselect option {
    padding: 1em;
}

.a-form-input a.remove-subject {
  display: inline-block;
  .box-sizing(content-box);
  width: 20px;
  height: 20px;
  position: relative;
  border: none;
  -webkit-border-radius: 1em;
  border-radius: 1em;
  font: normal 8em/normal Arial, Helvetica, sans-serif;
  color: rgba(0,0,0,1);
  -o-text-overflow: clip;
  text-overflow: clip;
  background: #ff6464;
  margin: 8px auto auto;
}

.help-sign {
  display: inline-block;
  box-sizing: border-box;
  width: 20px;
  height: 20px;
  position: relative;
  border: none;
  -webkit-border-radius: 1em;
  border-radius: 1em;
  color: rgb(255, 255, 255) !important;
  -o-text-overflow: clip;
  text-overflow: clip;
  background: rgba(70, 151, 255, 1);
  padding: 1px 0px 0px 7px;
  font-size: 14px;
  font-weight: bold;
  margin-left: 10px;
}


[data-tooltip],
.tooltip {
  position: relative;
  cursor: pointer;
}

/* Base styles for the entire tooltip */
[data-tooltip]:before,
[data-tooltip]:after,
.tooltip:before,
.tooltip:after {
  position: absolute;
  visibility: hidden;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
  opacity: 0;
  -webkit-transition: 
      opacity 0.2s ease-in-out,
        visibility 0.2s ease-in-out,
        -webkit-transform 0.2s cubic-bezier(0.71, 1.7, 0.77, 1.24);
    -moz-transition:    
        opacity 0.2s ease-in-out,
        visibility 0.2s ease-in-out,
        -moz-transform 0.2s cubic-bezier(0.71, 1.7, 0.77, 1.24);
    transition:         
        opacity 0.2s ease-in-out,
        visibility 0.2s ease-in-out,
        transform 0.2s cubic-bezier(0.71, 1.7, 0.77, 1.24);
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform:    translate3d(0, 0, 0);
  transform:         translate3d(0, 0, 0);
  pointer-events: none;
}

/* Show the entire tooltip on hover and focus */
[data-tooltip]:hover:before,
[data-tooltip]:hover:after,
[data-tooltip]:focus:before,
[data-tooltip]:focus:after,
.tooltip:hover:before,
.tooltip:hover:after,
.tooltip:focus:before,
.tooltip:focus:after {
  visibility: visible;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
  opacity: 1;
}

/* Base styles for the tooltip's directional arrow */
.tooltip:before,
[data-tooltip]:before {
  z-index: 1001;
  border: 6px solid transparent;
  background: transparent;
  content: "";
}

/* Base styles for the tooltip's content area */
.tooltip:after,
[data-tooltip]:after {
  z-index: 1000;
  padding: 8px;
  background-color: #000;
  background-color: hsla(0, 0%, 20%, 0.9);
  color: #fff;
  content: attr(data-tooltip);
  font-size: 14px;
  line-height: 1.2;
  text-align: center;
  white-space: nowrap;
}

/* Directions */

/* Top (default) */
[data-tooltip]:before,
[data-tooltip]:after,
.tooltip:before,
.tooltip:after,
.tooltip-top:before,
.tooltip-top:after {
  bottom: 100%;
  left: 50%;
}

[data-tooltip]:before,
.tooltip:before,
.tooltip-top:before {
  margin-left: -6px;
  margin-bottom: -12px;
  border-top-color: #000;
  border-top-color: hsla(0, 0%, 20%, 0.9);
}

/* Horizontally align top/bottom tooltips */
[data-tooltip]:after,
.tooltip:after,
.tooltip-top:after {
  margin-left: -80px;
}

[data-tooltip]:hover:before,
[data-tooltip]:hover:after,
[data-tooltip]:focus:before,
[data-tooltip]:focus:after,
.tooltip:hover:before,
.tooltip:hover:after,
.tooltip:focus:before,
.tooltip:focus:after,
.tooltip-top:hover:before,
.tooltip-top:hover:after,
.tooltip-top:focus:before,
.tooltip-top:focus:after {
  -webkit-transform: translateY(-12px);
  -moz-transform:    translateY(-12px);
  transform:         translateY(-12px); 
}

/* Left */
.tooltip-left:before,
.tooltip-left:after {
  right: 100%;
  bottom: 50%;
  left: auto;
}

.tooltip-left:before {
  margin-left: 0;
  margin-right: -12px;
  margin-bottom: 0;
  border-top-color: transparent;
  border-left-color: #000;
  border-left-color: hsla(0, 0%, 20%, 0.9);
}

.tooltip-left:hover:before,
.tooltip-left:hover:after,
.tooltip-left:focus:before,
.tooltip-left:focus:after {
  -webkit-transform: translateX(-12px);
  -moz-transform:    translateX(-12px);
  transform:         translateX(-12px); 
}

/* Bottom */
.tooltip-bottom:before,
.tooltip-bottom:after {
  top: 100%;
  bottom: auto;
  left: 50%;
}

.tooltip-bottom:before {
  margin-top: -12px;
  margin-bottom: 0;
  border-top-color: transparent;
  border-bottom-color: #000;
  border-bottom-color: hsla(0, 0%, 20%, 0.9);
}

.tooltip-bottom:hover:before,
.tooltip-bottom:hover:after,
.tooltip-bottom:focus:before,
.tooltip-bottom:focus:after {
  -webkit-transform: translateY(12px);
  -moz-transform:    translateY(12px);
  transform:         translateY(12px); 
}

/* Right */
.tooltip-right:before,
.tooltip-right:after {
  bottom: 50%;
  left: 100%;
}

.tooltip-right:before {
  margin-bottom: 0;
  margin-left: -12px;
  border-top-color: transparent;
  border-right-color: #000;
  border-right-color: hsla(0, 0%, 20%, 0.9);
}

.tooltip-right:hover:before,
.tooltip-right:hover:after,
.tooltip-right:focus:before,
.tooltip-right:focus:after {
  -webkit-transform: translateX(12px);
  -moz-transform:    translateX(12px);
  transform:         translateX(12px); 
}

.tooltip-right:hover:after {
	border-radius: .25em;
}

/* Move directional arrows down a bit for left/right tooltips */
.tooltip-left:before,
.tooltip-right:before {
  top: 3px;
}

/* Vertically center tooltip content for left/right tooltips */
.tooltip-left:after,
.tooltip-right:after {
  margin-left: 0;
  margin-bottom: -16px;
}








.a-form-input a.remove-subject::before {
  display: inline-block;
  .box-sizing(content-box);
  width: 10px;
  height: 2px;
  position: absolute;
  content: "";
  top: 9px;
  left: 5px;
  border: none;
  font: normal 100%/normal Arial, Helvetica, sans-serif;
  color: rgba(0,0,0,1);
  -o-text-overflow: clip;
  text-overflow: clip;
  background: #fff;
  text-shadow: none;
  -webkit-transform: rotateZ(45deg)   ;
  transform: rotateZ(45deg)   ;
}


.a-form-input a.remove-subject::after {
  display: inline-block;
  .box-sizing(content-box);
  width: 10px;
  height: 2px;
  position: absolute;
  content: "";
  top: 9px;
  left: 5px;
  border: none;
  font: normal 100%/normal Arial, Helvetica, sans-serif;
  color: rgba(0,0,0,1);
  -o-text-overflow: clip;
  text-overflow: clip;
  background: #fff;
  text-shadow: none;
  -webkit-transform: rotateZ(-45deg)   ;
  transform: rotateZ(-45deg)   ;
}

.a-form-submit-button {
    -moz-appearance: none;
    -o-appearance: none;
    appearance: none;
    background-color: #1abc9c;
    border-radius: .15em;
    color: #fff;
    cursor: pointer;
    -ms-flex-align: center;
    align-items: center;
    display: flex;
    -ms-flex: 1 auto;
    flex: 1 auto;
    -ms-flex-flow: row nowrap;
    flex-flow: row nowrap;
    -ms-flex-pack: center;
    justify-content: center;
    font-weight: normal;
    padding: .85em 1em .8em;
    text-decoration: none;
    text-align: center;
    -webkit-appearance: none;
    -ms-appearance: none;
    border: 0;
    font-size: 1em;
    display: -ms-flexbox;
}

.a-form-add-button {
    -moz-appearance: none;
    -o-appearance: none;
    appearance: none;
    background-color: #1abc9c;
    border-radius: .5em;
    color: #fff;
    cursor: pointer;
    display: inline-block;
    font-weight: normal;
    padding: .85em 1em .8em;
    text-decoration: none;
    text-align: center;
    -webkit-appearance: none;
    -ms-appearance: none;
    border: 0;
    font-size: 1em;
    margin: 0px auto;
}

.a-form-unfold-button {
    -moz-appearance: none;
    -o-appearance: none;
    appearance: none;
    background-color: #1abc9c;
    border-radius: .5em;
    color: #fff;
    cursor: pointer;
    display: inline-block;
    font-weight: bold;
    padding: .1em .5em;
    text-decoration: none;
    text-align: center;
    -webkit-appearance: none;
    -ms-appearance: none;
    border: 0;
    font-size: 1em;
    margin: 0px auto;
}

.a-form-submit-button:hover, .a-form-add-button:hover, .a-form-unfold-button:hover {
    background-color: #148f77;
    outline: 0;
    transition: background-color .2s;
}

.a-form-add-button {
	width: 170px;
	font-style: italic;
}

.autocomplete-suggestions {
	border: 1px solid #cdd0d2;
    background: #fff;
    padding-left: 0px;
    overflow-y: scroll;
}

.autocomplete-suggestions .autocomplete-suggestion {
	margin-bottom: 0px !important;
	padding: 10px 0px 10px 20px;	
}
.autocomplete-suggestions .autocomplete-suggestion.autocomplete-selected {
	background: #1e90ff;
	color: #fff;
}

#selectedSchools {
	min-height: 100px;
	border: 2px solid #cdd0d2 !important;
	padding: 10px;
}

#selectedSchools .schoolBlock {
	float: left;
	margin: 0px 10px 10px 0px;
	background: #eee;
	padding: 5px 5px 5px 10px;
	font-size: .8em;
	border-radius: .25em;
	color: #4f5355;
	text-decoration: none;
	-webkit-box-shadow: none;
    box-shadow: none;
}

#selectedSchools .schoolBlock:after {
	content: "x";
	width: 20px;
	height: 20px;
	color: #000;
	font-weight: bold;
	margin-right: 5px;
	margin-left: 10px;
}

ul.overalls {
	list-style: none;
	margin: 0px !important;
	padding: 0;
}

ul.overalls li:before {
	content: "" !important;
}

ul.overalls:after {
	clear: both;
}

ul.overalls li {
	float: left;
	width: 40%;
	margin-right: 10%;
	margin-left: 5%;
	padding: 0px 10px 0px 0px;
	margin-bottom: 0px !important;
	margin-top: 5pxb;
}

ul.overalls li:last-child {
	padding-right: 0px;
	margin-right: 0;
	margin-left: 0;
}


.scld-result-container {
    background: #f1f2f3;
    padding: 15px;
    border-radius: 7px;
    margin: 10px 0px 0px;
    text-align: center;
}

.scld-result-container span {
    display: block;
    margin-bottom: 10px;
    font-weight: bold;
}

.scld-result-container .scld-result-score {
    display: inline-block;
    background: #399FDF;
    padding: 5px 10px;
    color: #fff;
    border-radius: 20px;
	min-width: 90px;
}

.scld-result-container .scld-result-output-wc {
    color: #fff;
    text-align: center;
    font-size: 19px;
}

#schoolPolicies ol, #acceptedSchools ol {
	padding: 0px 20px 0px 40px;
	margin: 0px;
}

#schoolPolicies ol li, #acceptedSchools ol li {
	margin-bottom: 10px;
}

#schoolPolicies ol li a {
	font-size: 11pt;
	color: #333;
	margin: 15px 0px 10px 0px;
	font-style: italic;
}

#schoolPolicies, #acceptedSchools {
	border: solid 1px #f1f2f3;
	border-radius: 7px;
	padding: 10px;
}

#schoolPolicies {
	margin-bottom: 20px;
}

#acceptedSchools {
	height: 250px;
	overflow-y: scroll;
	margin-bottom: 24px;
}

#schoolPolicies strong, #acceptedSchools strong {
	display: block;
}

p {
	font-size: 11a-form-row calcpt;
}

#acceptedSchools a {
	font-size: 12px;
}

#backToResults {
	font-style: italic;
	font-size: 13pt;
}

.back-to-form {
	margin-top: 8px;
}

.back-to-form button {
	width: 240px;
}

.a-form-input__error {
	font-size: .875rem;
	color: #bc1a3c;
	font-weight: 800;
	margin-top: 3px;
}

.input-annotation {
	font-size: .875rem;
	font-weight: normal;
	margin-top: 3px;
}

#calculatorForm .a-form-input__error {
	display: none;
}

.albert-logo {
	text-align: right;
	display: block !important;
}

.albert-logo img {
	max-height: 56px;
}

.calculation-results h2 {
	padding: 0px;
	font-size: 1.375rem;
	color: #333;
}

.a-form-header-with-button {
	position: relative;
	padding-right: 40px;
	margin: 0px;
}

.a-form-header-with-button div {
	position: absolute;
	right: 0px;
	top: 0px;
}

.folded {
	display: none;
}

.back-to-form a, .add-exam-container a {
	color: #1abc9c !important;
	text-decoration: none;
	-webkit-box-shadow: none !important;
    box-shadow: none !important;
    display: inline-block;
    margin: 0px auto;
    font-style: italic;
}

.add-exam-container {
	margin-top: .75em;
}

#calculatorWrapper, #resultsWrapper {
	position: relative;
	margin: 0px auto;
	max-width: 600px;
	width: 100%;
}

#resultsWrapper {
	display: none;
}

#resultsWrapper.visible {
	display: block;
}

#welcomeScreen {
	text-align: center;
}

#welcomeScreen .welcome-text {
	margin: 20px 0px 30px;
	font-size: 1.3rem;
}

#welcomeScreen .show-button {
	background-color: #1abc9c;
    font-weight: normal;
    font-size: 1.2em;
    padding: .85em 2em .8em;
    color: #fff !important;
    display: inline-block;
    -webkit-box-shadow: none;
    box-shadow: none;
    border: none;
    border-radius: 0.15em;
}

#welcomeScreen .show-button:hover {
    background-color: #148f77;
    outline: 0;
    transition: background-color .2s;
	cursor: pointer;
}


.graph-sort {
	text-align: right;
	margin: 10px 0px 20px 0px;
}

.graph-sort label {
	margin-right: 10px;
	font-size: 1.1rem;
	display: inline-block;
	color: #4f5355;
	font-weight: 300;
}

.graph-sort select {
	background: transparent;
    border: 1px solid #9ea3a6;
    border-radius: 1px;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
    font-style: normal;
    letter-spacing: 0.4px;
    padding: 2px 10px;
    -webkit-transition: .3s ease-out;
    -moz-transition: .3s ease-out;
    -ms-transition: .3s ease-out;
    -o-transition: .3s ease-out;
    transition: .3s ease-out;
    font-size: .8rem !important;
    min-height: initial;
}

a.switch {
	font-size: 1.375rem;
    color: #4f5355 !important;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
    position: relative;
    margin-bottom: 18px;
    font-family: 'Lato', sans-serif !important;
    font-weight: 300;
    line-height: 1.3em;
}

a.switch.plus:after, a.switch.minus:after {
	font-size: 1.375em;
    position: absolute;
    top: 0;
    right: 0;
    font-weight: 300;
	color: #4f5355 !important;
}

a.switch.plus:after {
	content: "+";
	margin-top: -1px;
}

a.switch.minus:after {
	content: "\2013";
    margin-top: -4px;
}

.no-credits-schools {
	margin: 20px 0px;
}

.no-credits-schools .schools-list {
	margin: 15px 0px;
	font-style: italic;
}

.boost-text {
	margin: 10px 0px;
	font-weight: normal;
	font-size: 14pt;
	text-align: center;
}

.albert-button {
	margin: 20px 0px 30px 0px;
	text-align: center;
}

.albert-button a {
	background-color: #1abc9c;
	font-weight: normal;
	padding: .85em 2em .8em;
	color: #fff !important;
	display: inline-block;
	-webkit-box-shadow: none;
    box-shadow: none;
    text-decoration: none;
}

.albert-button div {
	display: none;
}

.disclaimer {
	font-size: 10pt;
	text-align: center;
	font-style: italic;
	font-weight: normal;
}

#loader {
    background-color: #fff;
    opacity: .8;
    position: absolute;
    z-index: 999999;
    width: 100%;
    height: 100%;
    padding-top: 50%;
    display: none;
}

.sk-fading-circle {
  margin: -20px auto;
  width: 40px;
  height: 40px;
  position: relative;
}

.sk-fading-circle .sk-circle {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}

.sk-fading-circle .sk-circle:before {
  content: '';
  display: block;
  margin: 0 auto;
  width: 15%;
  height: 15%;
  background-color: #333;
  border-radius: 100%;
  -webkit-animation: sk-circleFadeDelay 1.2s infinite ease-in-out both;
          animation: sk-circleFadeDelay 1.2s infinite ease-in-out both;
}
.sk-fading-circle .sk-circle2 {
  -webkit-transform: rotate(30deg);
      -ms-transform: rotate(30deg);
          transform: rotate(30deg);
}
.sk-fading-circle .sk-circle3 {
  -webkit-transform: rotate(60deg);
      -ms-transform: rotate(60deg);
          transform: rotate(60deg);
}
.sk-fading-circle .sk-circle4 {
  -webkit-transform: rotate(90deg);
      -ms-transform: rotate(90deg);
          transform: rotate(90deg);
}
.sk-fading-circle .sk-circle5 {
  -webkit-transform: rotate(120deg);
      -ms-transform: rotate(120deg);
          transform: rotate(120deg);
}
.sk-fading-circle .sk-circle6 {
  -webkit-transform: rotate(150deg);
      -ms-transform: rotate(150deg);
          transform: rotate(150deg);
}
.sk-fading-circle .sk-circle7 {
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
}
.sk-fading-circle .sk-circle8 {
  -webkit-transform: rotate(210deg);
      -ms-transform: rotate(210deg);
          transform: rotate(210deg);
}
.sk-fading-circle .sk-circle9 {
  -webkit-transform: rotate(240deg);
      -ms-transform: rotate(240deg);
          transform: rotate(240deg);
}
.sk-fading-circle .sk-circle10 {
  -webkit-transform: rotate(270deg);
      -ms-transform: rotate(270deg);
          transform: rotate(270deg);
}
.sk-fading-circle .sk-circle11 {
  -webkit-transform: rotate(300deg);
      -ms-transform: rotate(300deg);
          transform: rotate(300deg); 
}
.sk-fading-circle .sk-circle12 {
  -webkit-transform: rotate(330deg);
      -ms-transform: rotate(330deg);
          transform: rotate(330deg); 
}
.sk-fading-circle .sk-circle2:before {
  -webkit-animation-delay: -1.1s;
          animation-delay: -1.1s; 
}
.sk-fading-circle .sk-circle3:before {
  -webkit-animation-delay: -1s;
          animation-delay: -1s; 
}
.sk-fading-circle .sk-circle4:before {
  -webkit-animation-delay: -0.9s;
          animation-delay: -0.9s; 
}
.sk-fading-circle .sk-circle5:before {
  -webkit-animation-delay: -0.8s;
          animation-delay: -0.8s; 
}
.sk-fading-circle .sk-circle6:before {
  -webkit-animation-delay: -0.7s;
          animation-delay: -0.7s; 
}
.sk-fading-circle .sk-circle7:before {
  -webkit-animation-delay: -0.6s;
          animation-delay: -0.6s; 
}
.sk-fading-circle .sk-circle8:before {
  -webkit-animation-delay: -0.5s;
          animation-delay: -0.5s; 
}
.sk-fading-circle .sk-circle9:before {
  -webkit-animation-delay: -0.4s;
          animation-delay: -0.4s;
}
.sk-fading-circle .sk-circle10:before {
  -webkit-animation-delay: -0.3s;
          animation-delay: -0.3s;
}
.sk-fading-circle .sk-circle11:before {
  -webkit-animation-delay: -0.2s;
          animation-delay: -0.2s;
}
.sk-fading-circle .sk-circle12:before {
  -webkit-animation-delay: -0.1s;
          animation-delay: -0.1s;
}

@-webkit-keyframes sk-circleFadeDelay {
  0%, 39%, 100% { opacity: 0; }
  40% { opacity: 1; }
}

@keyframes sk-circleFadeDelay {
  0%, 39%, 100% { opacity: 0; }
  40% { opacity: 1; } 
}

.share-area {
	text-align: center;
	margin: 0px 0px 20px 0px;
}

.share-buttons {
	display: flex;
	align-items: center;
    justify-content: center;
    margin-top: 20px;
}

.atss .at-share-btn span .at-icon, .atss a span .at-icon {
    position: relative;
    top: 0;
    left: 0;
    display: block;
    background-repeat: no-repeat;
    background-position: 50% 50%;
    width: 2pc;
    height: 2pc;
    line-height: 2pc;
    border: none;
    padding: 0;
    margin: 0 auto;
    overflow: hidden;
    cursor: pointer;
    cursor: hand;
    float: left;
}

.at-icon-wrapper {
    display: flex;
    width: 40px;
    height: 40px;
}

.at-icon {
    fill: #fff;
    border: 0;
    width: 40px;
}

.at-share-btn {
	margin: 0px 10px;
}

.share-text {
    position: relative;
    padding: 15px;
    border: 5px solid rgb(29, 161, 242);
    color: #fff;
    background: #4ab3f4;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    min-height: 100px;
    width: 300px;
    margin: 0px auto;
    -webkit-box-sizing:  border-box !important;
    -moz-box-sizing:  border-box !important;
    -ms-box-sizing:  border-box !important;
    box-sizing: border-box !important;
}

.share-text:before {
    content: " ";
    position: absolute;
    bottom: -20px;
    left: 155px;
    border-width: 20px 20px 0;
    border-style: solid;
    border-color: rgb(29, 161, 242) transparent;
    display: block;
    width: 0;
}

.share-text:after {
    content: " ";
    position: absolute;
    bottom: -13px;
    left: 162px;
    border-width: 13px 13px 0;
    border-style: solid;
    border-color: #4ab3f4 transparent;
    display: block;
    width: 0;
}

.share-text.fb {
	background-color: rgb(98, 122, 172);
	border-color: rgb(59, 89, 152);
}

.share-text.fb:before {
	left: 90px;
	border-color: rgb(59, 89, 152) transparent;
}

.share-text.fb:after {
	left: 97px;
	border-color: rgb(98, 122, 172) transparent;
}

.share-text.print {
	background-color: rgb(171, 199, 148);
	border-color: rgb(151, 186, 122);
}

.share-text.print:before {
	left: 213px;
	border-color: rgb(151, 186, 122) transparent;
}

.share-text.print:after {
	left: 220px;
	border-color: rgb(171, 199, 148) transparent;
}

.share-text.mail {
	background-color: rgb(156, 156, 156);
	border-color: rgb(132, 132, 132);
}

.share-text.mail:before {
	left: 34px;
	border-color: rgb(132, 132, 132) transparent;
}

.share-text.mail:after {
	left: 41px;
	border-color: rgb(156, 156, 156) transparent;
}

.share-text div {
	height: 70px;
	line-height: 16px;
	display: table-cell;
	vertical-align: middle;
}

.has-zero-instates {
	text-align: center;
	margin: 15px 0px;
}