/* Template: Corso - Free Training Course Landing Page Template
   Author: Inovatik
   Created: Nov 2019
   Description: Master CSS file
*/

/*****************************************
Table Of Contents:

01. General Styles
02. Preloader
03. Navigation
04. Header
05. Registration
06. Partners
07. Instructor
08. Description
09. Students
10. Details Lightbox
11. Video
12. Takeaways
13. Testimonials
14. Date
15. Newsletter
16. Contact
17. Footer
18. Copyright
19. Back To Top Button
20. Extra Pages
21. Media Queries
******************************************/

/*****************************************
Colors:
- Backgrounds - light gray #fbf9f5
- Backgrounds, buttons - yellow #ffbd50
- Headings text, navbar links - black #333
- Body text - dark gray #555
******************************************/


/******************************/
/*     01. General Styles     */
/******************************/

/* Modern CSS Reset and Base Styles */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body,
html {
	width: 100%;
	height: 100%;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

/* Custom Properties for consistent theming */
:root {
    --primary-color: #ffbd50;
    --primary-dark: #e6a800;
    --primary-light: #ffd280;
    --text-dark: #000000;
    --text-light: #000000;
    --text-white: #ffffff;
    --bg-light: #f8f8f8;
    --bg-white: #ffffff;
    --shadow-light: 0 2px 10px rgba(0,0,0,0.1);
    --shadow-medium: 0 4px 20px rgba(0,0,0,0.15);
    --shadow-heavy: 0 8px 30px rgba(0,0,0,0.2);
    --border-radius: 8px;
    --border-radius-lg: 16px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.2s ease;
    --container-padding: 1rem;
    --section-padding: 4rem 0;
}

/* Focus styles for accessibility */
*:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* Skip to content link for accessibility */
.skip-link {
    position: absolute;
    top: -40px;
    left: 6px;
    background: var(--primary-color);
    color: var(--text-dark);
    padding: 8px;
    text-decoration: none;
    border-radius: var(--border-radius);
    z-index: 10000;
    transition: var(--transition);
}

.skip-link:focus {
    top: 6px;
}

body, p {
	color: #555; 
	font: 400 1rem/1.625rem "Montserrat", sans-serif;
}

.p-large {
	font: 400 1.125rem/1.75rem "Montserrat", sans-serif;
}

.p-small {
	font: 400 0.875rem/1.5rem "Montserrat", sans-serif;
}

.p-heading {
	margin-bottom: 3.75rem;
}

h1 {
	color: #333;
	font: 700 2.75rem/3.375rem "Montserrat", sans-serif;
}

h2 {
	color: #333;
	font: 700 2.25rem/2.875rem "Montserrat", sans-serif;
}

h3 {
	color: #333;
	font: 700 1.625rem/2.125rem "Montserrat", sans-serif;
}

h4 {
	color: #333;
	font: 700 1.25rem/1.875rem "Montserrat", sans-serif;
}

h5 {
	color: #333;
	font: 700 1.125rem/1.75rem "Montserrat", sans-serif;
}

h6 {
	color: #333;
	font: 700 1rem/1.625rem "Montserrat", sans-serif;
}

.testimonial-text {
	font-style: italic;
}

.testimonial-author {
	font-weight: 700;
	font-size: 1rem;
	line-height: 1.625rem;
}

.li-space-lg li {
	margin-bottom: 0.375rem;
}

.indent {
	padding-left: 1.25rem;
}

a {
	color: #555;
	text-decoration: underline;
}

a:hover {
	color: #555;
	text-decoration: underline;
}

.white {
	color: #eee;
}

.btn-solid-reg {
	display: inline-block;
	padding: 1.1875rem 2.125rem 1.1875rem 2.125rem;
	border: 0.125rem solid #2c5aa0;
	border-radius: 2rem;
	background-color: #2c5aa0;
	color: #fff;
	font: 600 0.875rem/0 "Montserrat", sans-serif;
	text-decoration: none;
	transition: all 0.2s;
}

.btn-solid-reg:hover {
	border: 0.125rem solid #2c5aa0;
	background-color: transparent;
	color: #2c5aa0;
	text-decoration: none;
}

.btn-solid-lg {
	display: inline-block;
	padding: 1.375rem 2.625rem 1.375rem 2.625rem;
	border: 0.125rem solid #2c5aa0;
	border-radius: 2rem;
	background-color: #2c5aa0;
	color: #fff;
	font: 600 0.875rem/0 "Montserrat", sans-serif;
	text-decoration: none;
	transition: all 0.2s;
}

.btn-solid-lg:hover {
	border: 0.125rem solid #2c5aa0;
	background-color: transparent;
	color: #2c5aa0;
	text-decoration: none;
}

.btn-outline-reg {
	display: inline-block;
	padding: 1.1875rem 2.125rem 1.1875rem 2.125rem;
	border: 0.125rem solid #333;
	border-radius: 2rem;
	background-color: transparent;
	color: #333;
	font: 600 0.875rem/0 "Montserrat", sans-serif;
	text-decoration: none;
	transition: all 0.2s;
}

.btn-outline-reg:hover {
	border: 0.125rem solid #2c5aa0;
	background-color: #2c5aa0;
	color: #fff;
	text-decoration: none;
}

.btn-outline-lg {
	display: inline-block;
	padding: 1.375rem 2.625rem 1.375rem 2.625rem;
	border: 0.125rem solid #333;
	border-radius: 2rem;
	background-color: transparent;
	color: #333;
	font: 600 0.875rem/0 "Montserrat", sans-serif;
	text-decoration: none;
	transition: all 0.2s;
}

.btn-outline-lg:hover {
	border: 0.125rem solid #2c5aa0;
	background-color: #2c5aa0;
	color: #fff;
	text-decoration: none;
}

.btn-outline-sm {
	display: inline-block;
	padding: 1rem 1.625rem 0.875rem 1.625rem;
	border: 0.125rem solid #333;
	border-radius: 2rem;
	background-color: transparent;
	color: #333;
	font: 600 0.875rem/0 "Montserrat", sans-serif;
	text-decoration: none;
	transition: all 0.2s;
}

.btn-outline-sm:hover {
	border: 0.125rem solid #2c5aa0;
	background-color: #2c5aa0;
	color: #fff;
	text-decoration: none;
}

.form-group {
	position: relative;
	margin-bottom: 1.25rem;
}

.form-group.has-error.has-danger {
	margin-bottom: 0.625rem;
}

.form-group.has-error.has-danger .help-block.with-errors ul {
	margin-top: 0.375rem;
}

.label-control {
	position: absolute;
	top: 0.87rem;
	left: 3rem;
	color: #000000 !important;
	opacity: 1;
	font: 600 0.875rem/1.375rem "Montserrat", sans-serif;
	cursor: text;
	transition: all 0.2s ease;
	text-shadow: 0 1px 1px rgba(0,0,0,0.05);
}

/* IE10+ hack to solve lower label text position compared to the rest of the browsers */
@media screen and (-ms-high-contrast: active), screen and (-ms-high-contrast: none) {  
	.label-control {
		top: 0.9375rem;
	}
}

.form-control-input:focus + .label-control,
.form-control-input.notEmpty + .label-control,
.form-control-textarea:focus + .label-control,
.form-control-textarea.notEmpty + .label-control {
	top: 0.125rem;
	opacity: 1;
	font-size: 0.75rem;
	font-weight: 700;
}

.form-control-input,
.form-control-select {
	display: block; /* needed for proper display of the label in Firefox, IE, Edge */
	width: 100%;
	padding-top: 1.0625rem;
	padding-bottom: 0.0625rem;
	padding-left: 1.3125rem;
	border: 1px solid #c4d8dc;
	border-radius: 0.25rem;
	background-color: #fff;
	color: #555;
	font: 400 0.875rem/1.875rem "Montserrat", sans-serif;
	transition: all 0.2s;
	-webkit-appearance: none; /* removes inner shadow on form inputs on ios safari */
}

.form-control-select {
	padding-top: 0.5rem;
	padding-bottom: 0.5rem;
	height: 3rem;
}

/* Custom styling for service dropdown to match text inputs */
.form-control-select#rservice {
	padding-top: 1.0625rem;
	padding-bottom: 0.0625rem;
	height: auto;
	background-color: #fbf9f5;
	border: 1px solid #c4d8dc;
	color: #555;
}

.form-control-select#rservice:focus {
	border: 1px solid #a1a1a1;
	background-color: #fff;
}

.form-control-select#rservice:hover {
	border: 1px solid #a1a1a1;
	background-color: #fff;
}

/* Style the dropdown options */
.form-control-select#rservice option {
	background-color: #fff;
	color: #555;
	padding: 0.5rem;
}

/* IE10+ hack to solve lower label text position compared to the rest of the browsers */
@media screen and (-ms-high-contrast: active), screen and (-ms-high-contrast: none) {  
	.form-control-input {
		padding-top: 1.25rem;
		padding-bottom: 0.75rem;
		line-height: 1.75rem;
	}

	.form-control-select {
		padding-top: 0.875rem;
		padding-bottom: 0.75rem;
		height: 3.125rem;
		line-height: 2.125rem;
	}
}

select {
    /* you should keep these first rules in place to maintain cross-browser behavior */
    -webkit-appearance: none;
	-moz-appearance: none;
	-ms-appearance: none;
    -o-appearance: none;
    appearance: none;
    background-image: url('../images/down-arrow.png');
    background-position: 96% 50%;
    background-repeat: no-repeat;
    outline: none;
}

select::-ms-expand {
    display: none; /* removes the ugly default down arrow on select form field in IE11 */
}

.form-control-textarea {
	display: block; /* used to eliminate a bottom gap difference between Chrome and IE/FF */
	width: 100%;
	height: 8rem; /* used instead of html rows to normalize height between Chrome and IE/FF */
	padding-top: 1.25rem;
	padding-left: 1.3125rem;
	border: 1px solid #c4d8dc;
	border-radius: 0.25rem;
	background-color: #fff;
	color: #555;
	font: 400 0.875rem/1.75rem "Montserrat", sans-serif;
	transition: all 0.2s;
}

.form-control-input:focus,
.form-control-select:focus,
.form-control-textarea:focus {
	border: 1px solid #a1a1a1;
	outline: none; /* Removes blue border on focus */
}

.form-control-input:hover,
.form-control-select:hover,
.form-control-textarea:hover {
	border: 1px solid #a1a1a1;
}

.checkbox {
	font-size: 0.75rem;
	line-height: 1.25rem;
}

input[type='checkbox'] {
	vertical-align: -15%;
	margin-right: 0.375rem;
}

/* IE10+ hack to raise checkbox field position compared to the rest of the browsers */
@media screen and (-ms-high-contrast: active), screen and (-ms-high-contrast: none) {  
	input[type='checkbox'] {
		vertical-align: -9%;
	}
}

.form-control-submit-button {
	display: inline-block;
	width: 100%;
	height: 3.125rem;
	border: 0.125rem solid #2c5aa0;
	border-radius: 1.5rem;
	background-color: #2c5aa0;
	color: #fff;
	font: 600 0.875rem/0 "Montserrat", sans-serif;
	cursor: pointer;
	transition: all 0.2s;
}

.form-control-submit-button:hover {
	border: 0.125rem solid #2c5aa0;
	background-color: transparent;
	color: #2c5aa0;
}

/* Form Success And Error Message Formatting */
#rmsgSubmit.h3.text-center.tada.animated,
#nmsgSubmit.h3.text-center.tada.animated,
#cmsgSubmit.h3.text-center.tada.animated,
#pmsgSubmit.h3.text-center.tada.animated,
#rmsgSubmit.h3.text-center,
#nmsgSubmit.h3.text-center,
#cmsgSubmit.h3.text-center,
#pmsgSubmit.h3.text-center {
	display: block;
	margin-bottom: 0;
	color: #333;
	font-weight: 700;
	font-size: 1.125rem;
	line-height: 1rem;
}

.help-block.with-errors .list-unstyled {
	font-size: 0.75rem;
	line-height: 1.125rem;
	text-align: left;
}

.help-block.with-errors ul {
	margin-bottom: 0;
}
/* end of form success and error message formatting */

/* Form Success And Error Message Animation - Animate.css */
@-webkit-keyframes tada {
	from {
		-webkit-transform: scale3d(1, 1, 1);
		-ms-transform: scale3d(1, 1, 1);
		transform: scale3d(1, 1, 1);
	}
	10%, 20% {
		-webkit-transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
		-ms-transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
		transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
	}
	30%, 50%, 70%, 90% {
		-webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
		-ms-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
		transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
	}
	40%, 60%, 80% {
		-webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
		-ms-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
		transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
	}
	to {
		-webkit-transform: scale3d(1, 1, 1);
		-ms-transform: scale3d(1, 1, 1);
		transform: scale3d(1, 1, 1);
	}
}

@keyframes tada {
	from {
		-webkit-transform: scale3d(1, 1, 1);
		-ms-transform: scale3d(1, 1, 1);
		transform: scale3d(1, 1, 1);
	}
	10%, 20% {
		-webkit-transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
		-ms-transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
		transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
	}
	30%, 50%, 70%, 90% {
		-webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
		-ms-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
		transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
	}
	40%, 60%, 80% {
		-webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
		-ms-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
		transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
	}
	to {
		-webkit-transform: scale3d(1, 1, 1);
		-ms-transform: scale3d(1, 1, 1);
		transform: scale3d(1, 1, 1);
	}
}

.tada {
	-webkit-animation-name: tada;
	animation-name: tada;
}

.animated {
	-webkit-animation-duration: 1s;
	animation-duration: 1s;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
}
/* end of form success and error message animation - Animate.css */

/* Fade-move Animation For Details Lightbox - Magnific Popup */
/* at start */
.my-mfp-slide-bottom .zoom-anim-dialog {
	opacity: 0;
	transition: all 0.2s ease-out;
	-webkit-transform: translateY(-1.25rem) perspective(37.5rem) rotateX(10deg);
	-ms-transform: translateY(-1.25rem) perspective(37.5rem) rotateX(10deg);
	transform: translateY(-1.25rem) perspective(37.5rem) rotateX(10deg);
}

/* animate in */
.my-mfp-slide-bottom.mfp-ready .zoom-anim-dialog {
	opacity: 1;
	-webkit-transform: translateY(0) perspective(37.5rem) rotateX(0); 
	-ms-transform: translateY(0) perspective(37.5rem) rotateX(0); 
	transform: translateY(0) perspective(37.5rem) rotateX(0); 
}

/* animate out */
.my-mfp-slide-bottom.mfp-removing .zoom-anim-dialog {
	opacity: 0;
	-webkit-transform: translateY(-0.625rem) perspective(37.5rem) rotateX(10deg); 
	-ms-transform: translateY(-0.625rem) perspective(37.5rem) rotateX(10deg); 
	transform: translateY(-0.625rem) perspective(37.5rem) rotateX(10deg); 
}

/* dark overlay, start state */
.my-mfp-slide-bottom.mfp-bg {
	opacity: 0;
	transition: opacity 0.2s ease-out;
}

/* animate in */
.my-mfp-slide-bottom.mfp-ready.mfp-bg {
	opacity: 0.8;
}
/* animate out */
.my-mfp-slide-bottom.mfp-removing.mfp-bg {
	opacity: 0;
}
/* end of fade-move animation for details lightbox - magnific popup */

/* Fade Animation For Image Lightbox - Magnific Popup */
@-webkit-keyframes fadeIn {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}

@keyframes fadeIn {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}

.fadeIn {
	-webkit-animation: fadeIn 0.6s;
	animation: fadeIn 0.6s;
}

@-webkit-keyframes fadeOut {
	from {
		opacity: 1;
	}
	to {
		opacity: 0;
	}
}

@keyframes fadeOut {
	from {
		opacity: 1;
	}
	to {
		opacity: 0;
	}
}

.fadeOut {
	-webkit-animation: fadeOut 0.8s;
	animation: fadeOut 0.8s;
}
/* end of fade animation for details lightbox - magnific popup */


/*************************/
/*     02. Preloader     */
/*************************/
.spinner-wrapper {
	position: fixed;
	z-index: 999999;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background: #fbf9f5;
}

.spinner {
	position: absolute;
	top: 50%; /* centers the loading animation vertically one the screen */
	left: 50%; /* centers the loading animation horizontally one the screen */
	width: 3.75rem;
	height: 1.25rem;
	margin: -0.625rem 0 0 -1.875rem; /* is width and height divided by two */ 
	text-align: center;
}

.spinner > div {
	display: inline-block;
	width: 1rem;
	height: 1rem;
	border-radius: 100%;
	background-color: #2c5aa0;
	-webkit-animation: sk-bouncedelay 1.4s infinite ease-in-out both;
	animation: sk-bouncedelay 1.4s infinite ease-in-out both;
}

.spinner .bounce1 {
	-webkit-animation-delay: -0.32s;
	animation-delay: -0.32s;
}

.spinner .bounce2 {
	-webkit-animation-delay: -0.16s;
	animation-delay: -0.16s;
}

@-webkit-keyframes sk-bouncedelay {
	0%, 80%, 100% { -webkit-transform: scale(0); }
	40% { -webkit-transform: scale(1.0); }
}

@keyframes sk-bouncedelay {
	0%, 80%, 100% { 
		-webkit-transform: scale(0);
		-ms-transform: scale(0);
		transform: scale(0);
	} 40% { 
		-webkit-transform: scale(1.0);
		-ms-transform: scale(1.0);
		transform: scale(1.0);
	}
}


/**************************/
/*     03. Navigation     */
/**************************/
.navbar-custom {
	background-color: rgba(255, 255, 255, 0.98);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	box-shadow: var(--shadow-light);
	font: 600 0.875rem/0.875rem "Montserrat", sans-serif;
	transition: var(--transition);
	border-bottom: 1px solid rgba(255, 189, 80, 0.1);
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 10001;
	margin: 0;
	padding: 0.5rem 0;
}

.navbar-custom .navbar-brand.logo-image img {
    width: 5.5625rem;
	height: 1.875rem;
}

.navbar-custom .navbar-brand.logo-text {
	font: italic 600 2rem/1.5rem "Montserrat", sans-serif;
	color: #2c5aa0;
	text-decoration: none;
}

.navbar-custom .navbar-nav {
	margin-top: 0.75rem;
	margin-bottom: 0.5rem;
}

.navbar-custom .nav-item .nav-link {
	padding: 0.625rem 0.75rem;
	color: #333;
	text-decoration: none;
	transition: all 0.2s ease;
}

.navbar-custom .nav-item .nav-link:hover,
.navbar-custom .nav-item .nav-link.active {
	color: #2c5aa0;
}

/* Dropdown Menu */
.navbar-custom .dropdown:hover > .dropdown-menu {
	display: block; /* this makes the dropdown menu stay open while hovering it */
	min-width: auto;
	animation: fadeDropdown 0.2s; /* required for the fade animation */
}

@keyframes fadeDropdown {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.navbar-custom .dropdown-toggle:focus { /* removes dropdown outline on focus */
	outline: 0;
}

.navbar-custom .dropdown-menu {
	margin-top: 0;
	border: none;
	border-radius: 0.25rem;
	background-color: #fff;
}

.navbar-custom .dropdown-item {
	color: #333;
	text-decoration: none;
}

.navbar-custom .dropdown-item:hover {
	background-color: #fff;
}

.navbar-custom .dropdown-item .item-text {
	font: 600 0.875rem/0.875rem "Montserrat", sans-serif;
}

.navbar-custom .dropdown-item:hover .item-text {
	color: #ffbd50;
}

.navbar-custom .dropdown-divider {
	width: 100%;
	height: 1px;
	margin: 0.75rem auto 0.725rem auto;
	border: none;
	background-color: #c4d8dc;
	opacity: 0.2;
}
/* end of dropdown menu */

.navbar-custom .social-icons {
	display: none;
}

.navbar-custom .navbar-toggler {
	padding: 0;
	border: none;
	color: #333;
	font-size: 2rem;
}

.navbar-custom button[aria-expanded='false'] .navbar-toggler-awesome.fas.fa-times{
	display: none;
}

.navbar-custom button[aria-expanded='false'] .navbar-toggler-awesome.fas.fa-bars{
	display: inline-block;
}

.navbar-custom button[aria-expanded='true'] .navbar-toggler-awesome.fas.fa-bars{
	display: none;
}

.navbar-custom button[aria-expanded='true'] .navbar-toggler-awesome.fas.fa-times{
	display: inline-block;
	margin-right: 0.125rem;
}

.navbar-custom .nav-icon {
	width: 2rem;
	height: 2rem;
	object-fit: contain;
}

/* WhatsApp Vertical Sidebar */
.whatsapp-sidebar {
	position: fixed;
	top: 50%;
	right: 0;
	transform: translateY(-50%);
	z-index: 1000;
	width: 50px;
	height: 180px;
	background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
	border-radius: 8px 0 0 8px;
	box-shadow: -3px 0 15px rgba(0,0,0,0.15);
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 8px 5px;
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	border: 1px solid rgba(255,255,255,0.1);
	overflow: hidden;
}

.whatsapp-sidebar:hover {
	width: 65px;
	background: linear-gradient(135deg, #128c7e 0%, #075e54 100%);
	box-shadow: -5px 0 20px rgba(37, 211, 102, 0.3);
}

.whatsapp-sidebar a {
	color: white;
	text-decoration: none;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 8px;
	width: 100%;
	height: 100%;
	justify-content: center;
	overflow: hidden;
}

.whatsapp-sidebar i {
	font-size: 18px;
	margin-bottom: 5px;
	filter: drop-shadow(0 1px 2px rgba(0,0,0,0.2));
}

.whatsapp-text {
	font-size: 9px;
	font-weight: 700;
	writing-mode: vertical-rl;
	text-orientation: mixed;
	transform: rotate(180deg);
	white-space: nowrap;
	letter-spacing: 0.3px;
	text-shadow: 0 1px 2px rgba(0,0,0,0.2);
	line-height: 1.2;
}

.whatsapp-number {
	font-size: 8px;
	font-weight: 600;
	writing-mode: vertical-rl;
	text-orientation: mixed;
	transform: rotate(180deg);
	white-space: nowrap;
	letter-spacing: 0.2px;
	text-shadow: 0 1px 2px rgba(0,0,0,0.2);
	line-height: 1.2;
}

/* Call Now Vertical Sidebar */
.call-sidebar {
	position: fixed;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
	z-index: 1000;
	width: 50px;
	height: 180px;
	background: linear-gradient(135deg, #ffbd50 0%, #f39c12 100%);
	border-radius: 0 8px 8px 0;
	box-shadow: 3px 0 15px rgba(0,0,0,0.15);
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 8px 5px;
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	border: 1px solid rgba(255,255,255,0.1);
	overflow: hidden;
}

.call-sidebar:hover {
	width: 65px;
	background: linear-gradient(135deg, #f39c12 0%, #e67e22 100%);
	box-shadow: 5px 0 20px rgba(255, 189, 80, 0.3);
}

.call-sidebar a {
	color: white;
	text-decoration: none;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 8px;
	width: 100%;
	height: 100%;
	justify-content: center;
	overflow: hidden;
}

.call-sidebar i {
	font-size: 18px;
	margin-bottom: 5px;
	filter: drop-shadow(0 1px 2px rgba(0,0,0,0.2));
}

.call-text {
	font-size: 9px;
	font-weight: 700;
	writing-mode: vertical-rl;
	text-orientation: mixed;
	transform: rotate(180deg);
	white-space: nowrap;
	letter-spacing: 0.3px;
	text-shadow: 0 1px 2px rgba(0,0,0,0.2);
	line-height: 1.2;
}

.call-number {
	font-size: 8px;
	font-weight: 600;
	writing-mode: vertical-rl;
	text-orientation: mixed;
	transform: rotate(180deg);
	white-space: nowrap;
	letter-spacing: 0.2px;
	text-shadow: 0 1px 2px rgba(0,0,0,0.2);
	line-height: 1.2;
}


/*********************/
/*    04. Header     */
/*********************/
.header {
	position: relative;
	padding-top: 8rem;
	padding-bottom: 60%;
	background: linear-gradient(135deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.8)), url('../images/header-background.jpg') center center no-repeat;
	background-size: cover;
	background-attachment: fixed;
	text-align: center;
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
}



.header h1 {
	margin-bottom: 1.5rem;
	color: #fff;
	font-size: 3.5rem;
	line-height: 1.1;
	font-weight: 700;
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
	animation: fadeInUp 1s ease-out;
}

.header .p-large {
	margin-bottom: 3rem;
	color: #fff;
	font-size: 1.25rem;
	line-height: 1.6;
	text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
	animation: fadeInUp 1s ease-out 0.2s both;
}

.header .btn-solid-lg {
	margin-right: 1rem;
	margin-bottom: 3rem;
	margin-left: 1rem;
	animation: fadeInUp 1s ease-out 0.4s both;
}

.header .btn-solid-lg:hover {
	border: 0.125rem solid #ffbd50;
	color: #ffbd50;
}

.header .btn-outline-lg {
	border: 0.125rem solid #fff;
	color: #fff;
	padding: 1rem 2rem;
	font-size: 1rem;
	font-weight: 600;
	border-radius: var(--border-radius);
	transition: var(--transition);
	animation: fadeInUp 1s ease-out 0.4s both;
}

.header .btn-outline-lg:hover {
	background-color: #fff;
	color: var(--text-dark);
	transform: translateY(-2px);
	box-shadow: var(--shadow-medium);
}

.header .btn-outline-lg:hover {
	background-color: #fff;
	color: #333;
}

.header .text-container {
	position: relative;
	z-index: 10;
}

.header .outer-container {
	position: absolute;
	right: 0;
	bottom: -5rem;
	left: 0;
	margin-right: auto;
	margin-left: auto;
	width: 100%;
	z-index: 1;
}

.header .slider-container {
	position: relative;
}

.header .swiper-container {
	position: static;
	width: 80%;
	border-radius: 0.75rem;
}

.header .swiper-container img {
	border-radius: 0.75rem;
}

.header .swiper-button-prev:focus,
.header .swiper-button-next:focus {
	/* even if you can't see it chrome you can see it on mobile device */
	outline: none;
}

.header .swiper-button-prev {
	left: 0.25rem;
	background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2028%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23ffffff'%2F%3E%3C%2Fsvg%3E");
	background-size: 1.125rem 1.75rem;
}

.header .swiper-button-next {
	right: 0.25rem;
	background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2028%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23ffffff'%2F%3E%3C%2Fsvg%3E");
	background-size: 1.125rem 1.75rem;
}


/****************************/
/*     05. Registration     */
/****************************/
.form-1 {
	padding-top: 6rem;
	padding-bottom: 6.25rem;
	background-color: #2c5aa0;
}

.form-1 h2 {
	margin-bottom: 1.25rem;
}

.form-1 p,
.form-1 .list-unstyled,
.form-1 .help-block,
.form-1 .checkbox,
.form-1 .checkbox a {
	color: #fff;
}

.form-1 p {
	margin-bottom: 1.5rem;
}

.form-1 .list-unstyled .fas {
	color: #fff;
	font-size: 0.5rem;
	line-height: 1.5rem;
}

.form-1 .list-unstyled .media-body {
	margin-left: 0.625rem;
}

.form-1 .form-control-input {
	border: 1px solid rgba(255, 255, 255, 0.3);
	background-color: rgba(255, 255, 255, 0.1);
}

.form-1 .form-control-input:hover {
	border: 1px solid rgba(255, 255, 255, 0.5);
}

.form-1 .form-control-submit-button {
	border: 0.125rem solid #fff;
	background-color: transparent;
}

.form-1 .form-control-submit-button:hover {
	border: 0.125rem solid #fff;
	background-color: #fff;
	color: #2c5aa0;
}


/************************/
/*     06. Partners     */
/************************/
.slider-1 {
	padding-top: 3.5rem;
	padding-bottom: 3rem;
	background-color: #fbf9f5;
	text-align: center;
}

.slider-1 .p-small {
	color: #797fa7;
}

.slider-1 .slider-container {
	margin-right: 1.5rem;
	margin-left: 1.5rem;
}


/**************************/
/*     07. Instructor     */
/**************************/
.basic-1 {
	padding-top: 3.75rem;
	padding-bottom: 3.5rem;
	background-color: #fbf9f5;
}

.basic-1 h2 {
	margin-bottom: 1.25rem;
}

.basic-1 img {
	margin-bottom: 2.5rem;
	border-radius: 0.25rem;
}


/***************************/
/*     08. Description     */
/***************************/
.basic-2 {
	padding-top: 3.5rem;
	padding-bottom: 2.75rem;
	background-color: #fbf9f5;
}

.basic-2 h2 {
	margin-bottom: 3.75rem;
	text-align: center;
}

.basic-2 .li-space-lg li {
	margin-bottom: 1.375rem;
}

.basic-2 .list-unstyled .bullet {
	margin-right: 0.625rem;
	width: 2.125rem;
	height: 2.125rem;
	border-radius: 50%;
	background-color: #2c5aa0;
	color: #fff;
	font-style: normal;
	font-weight: 700;
	font-size: 0.875rem;
	line-height: 2rem;
	text-align: center;
}


/************************/
/*     09. Students     */
/************************/
.basic-3 {
	padding-top: 2.75rem;
	padding-bottom: 4rem;
	background-color: #fbf9f5;
}

.basic-3 .text-container {
	margin-bottom: 3.5rem;
}

.basic-3 h2 {
	margin-bottom: 1.25rem;
}

.basic-3 p {
	margin-bottom: 1.375rem;
}

.basic-3 img {
	border-radius: 0.25rem;
}


/********************************/
/*     10. Details Lightbox     */
/********************************/
.lightbox-basic {
	margin: 2.5rem auto;
	padding: 2rem 1.5rem 2rem 1.5rem;
	border-radius: 0.25rem;
	background: #fbf9f5;
	text-align: left;
}

.lightbox-basic .container {
	padding-right: 0;
	padding-left: 0;
}

.lightbox-basic .image-container {
	max-width: 33.75rem;
	margin-right: auto;
	margin-bottom: 3rem;
	margin-left: auto;
}

.lightbox-basic .image-container img {
	border-radius: 0.25rem;
}

.lightbox-basic h3 {
	margin-bottom: 0.5rem;
}

.lightbox-basic hr {
	width: 2.5rem;
	height: 0.125rem;
	margin-top: 0;
	margin-bottom: 0.875rem;
	margin-left: 0;
	border: 0;
	background-color: #555;
	text-align: left;
}

.lightbox-basic h4 {
	margin-bottom: 1rem;
}

.lightbox-basic .list-unstyled .fas {
	color: #555;
	font-size: 0.5rem;
	line-height: 1.5rem;
}

.lightbox-basic .list-unstyled .media-body {
	margin-left: 0.625rem;
}

.lightbox-basic .btn-outline-reg,
.lightbox-basic .btn-solid-reg {
	margin-top: 0.75rem;
}

/* Signup Button */
.lightbox-basic .btn-solid-reg.mfp-close {
	position: relative;
	width: auto;
	height: auto;
	color: #333;
	opacity: 1;
}

.lightbox-basic .btn-solid-reg.mfp-close:hover {
	color: #333;
}
/* end of signup Button */

/* Back Button */
.lightbox-basic a.mfp-close.as-button {
	position: relative;
	width: auto;
	height: auto;
	margin-left: 0.375rem;
	color: #333;
	opacity: 1;
}

.lightbox-basic a.mfp-close.as-button:hover {
	color: #333;
}
/* end of back button */

.lightbox-basic button.mfp-close.x-button {
	position: absolute;
	top: -0.125rem;
	right: -0.125rem;
	width: 2.75rem;
	height: 2.75rem;
	color: #707984;
}


/*********************/
/*     11. Video     */
/*********************/
.basic-4 {
	padding-top: 4rem;
	padding-bottom: 3rem;
	background-color: #fbf9f5;
}

.basic-4 h2 {
	margin-bottom: 2.75rem;
	text-align: center;
}

.basic-4 .image-container {
	margin-bottom: 2rem;
}

.basic-4 .image-container img {
	border-radius: 0.75rem;
}

.basic-4 .video-wrapper {
	position: relative;
}

/* Video Play Button */
.basic-4 .video-play-button {
	position: absolute;
	z-index: 10;
	top: 50%;
	left: 50%;
	display: block;
	box-sizing: content-box;
	width: 2rem;
	height: 2.75rem;
	padding: 1.125rem 1.25rem 1.125rem 1.75rem;
	border-radius: 50%;
	-webkit-transform: translateX(-50%) translateY(-50%);
	-ms-transform: translateX(-50%) translateY(-50%);
	transform: translateX(-50%) translateY(-50%);
}
  
.basic-4 .video-play-button:before {
	content: "";
	position: absolute;
	z-index: 0;
	top: 50%;
	left: 50%;
	display: block;
	width: 4.75rem;
	height: 4.75rem;
	border-radius: 50%;
	background: #ffbd50;
	animation: pulse-border 1500ms ease-out infinite;
	-webkit-transform: translateX(-50%) translateY(-50%);
	-ms-transform: translateX(-50%) translateY(-50%);
	transform: translateX(-50%) translateY(-50%);
}
  
.basic-4 .video-play-button:after {
	content: "";
	position: absolute;
	z-index: 1;
	top: 50%;
	left: 50%;
	display: block;
	width: 4.375rem;
	height: 4.375rem;
	border-radius: 50%;
	background: #ffbd50;
	transition: all 200ms;
	-webkit-transform: translateX(-50%) translateY(-50%);
	-ms-transform: translateX(-50%) translateY(-50%);
	transform: translateX(-50%) translateY(-50%);
}
  
.basic-4 .video-play-button span {
	position: relative;
	display: block;
	z-index: 3;
	top: 0.375rem;
	left: 0.25rem;
	width: 0;
	height: 0;
	border-left: 1.625rem solid #fff;
	border-top: 1rem solid transparent;
	border-bottom: 1rem solid transparent;
}
  
@keyframes pulse-border {
	0% {
		transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
		opacity: 1;
	}
	100% {
		transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
		opacity: 0;
	}
}
/* end of video play button */


/*************************/
/*     12. Takeaways     */
/*************************/
.cards {
	padding-top: 3rem;
	padding-bottom: 2rem;
	background-color: #fbf9f5;
}

.cards h2 {
	margin-bottom: 1rem;
	text-align: center;
}

.cards p {
	text-align: center;
}

.cards .card {
	max-width: 21rem;
	margin-right: auto;
	margin-bottom: 4rem;
	margin-left: auto;
	padding: 3rem 1.625rem 1.75rem 1.625rem;
	border: none;
	background-color: #fff;
	text-align: center;
}

.cards .card-image {
	width: 6rem;
	height: 6rem;
	margin-right: auto;
	margin-bottom: 1.5rem;
	margin-left: auto;
	border-radius: 50%;
	background-color: #fbf9f5;
}

.cards .fas,
.cards .far {
	color: #ffbd50;
	font-size: 3rem;
	line-height: 6rem;
}

.cards .card-body {
	padding: 0;
}

.cards .card-title {
	margin-bottom: 0.5rem;
}


/****************************/
/*     13. Testimonials     */
/****************************/
.slider-2 {
	padding-top: 2.5rem;
	padding-bottom: 4rem;
	background-color: #fbf9f5;
}

.slider-2 h3 {
	margin-bottom: 3.75rem;
	text-align: center;
}

.slider-2 .slider-container {
	position: relative;
}

.slider-2 .swiper-container {
	position: static;
	width: 88%;
	text-align: center;
}

.slider-2 .image-wrapper {
	width: 6rem;
	margin-right: auto;
	margin-bottom: 1.5rem;
	margin-left: auto;
}

.slider-2 .image-wrapper img {
	border-radius: 0.25rem;
}

.slider-2 .testimonial-text {
	margin-bottom: 0.5rem;
}

.slider-2 .testimonial-author {
	color: #333;
}

.slider-2 .swiper-button-prev,
.slider-2 .swiper-button-next {
	width: 1.125rem;
}

.slider-2 .swiper-button-prev:focus,
.slider-2 .swiper-button-next:focus {
	/* even if you can't see it chrome you can see it on mobile device */
	outline: none;
}

.slider-2 .swiper-button-prev {
	left: -0.5rem;
	background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2028%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23505c67'%2F%3E%3C%2Fsvg%3E");
	background-size: 1.125rem 1.75rem;
}

.slider-2 .swiper-button-next {
	right: -0.5rem;
	background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2028%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23505c67'%2F%3E%3C%2Fsvg%3E");
	background-size: 1.125rem 1.75rem;
}


/********************/
/*     14. Date     */
/********************/
.basic-5 {
	background-color: #fbf9f5;
}

.basic-5 .text-container {
	padding-top: 6rem;
	padding-bottom: 6.125rem;
	border-radius: 0.75rem;
	background: linear-gradient(to bottom right, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url('../images/date-background.jpg') center center no-repeat;
	background-size: cover;
	text-align: center;
}

.basic-5 h2 {
	width: 90%;
	margin-right: auto;
	margin-bottom: 2rem;
	margin-left: auto;
	color: #eee;
}

.basic-5 p {
	width: 88%;
	margin-right: auto;
	margin-bottom: 1.75rem;
	margin-left: auto;
	color: #ddd;
}

.basic-5 .btn-solid-lg:hover {
	border: 0.125rem solid #fff;
	color: #fff;
}


/**************************/
/*     15. Newsletter     */
/**************************/
.form-2 {
	padding-top: 8.125rem;
	padding-bottom: 5.75rem;
	background-color: #fbf9f5;
}

.form-2 h3 {
	margin-bottom: 3.25rem;
	text-align: center;
}

.form-2 form {
	margin-bottom: 3rem;
}

.form-2 .icon-container {
	text-align: center;
}

.form-2 .fa-stack {
	width: 2em;
	margin-bottom: 0.75rem;
	margin-right: 0.375rem;
	font-size: 1.5rem;
}

.form-2 .fa-stack .fa-stack-1x {
    color: #333;
	transition: all 0.2s ease;
}

.form-2 .fa-stack .fa-stack-2x {
	color: #ffbd50;
	transition: all 0.2s ease;
}

.form-2 .fa-stack:hover .fa-stack-1x {
	color: #ffbd50;
}

.form-2 .fa-stack:hover .fa-stack-2x {
    color: #333;
}


/***********************/
/*     16. Contact     */
/***********************/
.form-3 {
	padding-top: 6.125rem;
	padding-bottom: 5.125rem;
	background-color: #2c5aa0;
}

.form-3 .text-container {
	margin-bottom: 3rem;
}

.form-3 h2 {
	margin-bottom: 1.125rem;
}

.form-3 p {
	color: #fff;
	margin-bottom: 2rem;
}

.form-3 h3 {
	margin-bottom: 0.875rem;
}

.form-3 .list-unstyled,
.form-3 .list-unstyled a {
	color: #fff;
}

.form-3 .list-unstyled .fas {
	color: #fff;
	font-size: 1rem;
	line-height: 1.625rem;
}

.form-3 .list-unstyled .media-body {
	margin-left: 0.75rem;
}

.form-3 .list-unstyled .media-body .fas.fa-globe {
	margin-left: 1.125rem;
	margin-right: 0.75rem;
}

.form-3 .form-control-input,
.form-3 .form-control-textarea {
	border: 1px solid rgba(255, 255, 255, 0.3);
	background-color: rgba(255, 255, 255, 0.1);
}

.form-3 .form-control-input:hover,
.form-3 .form-control-textarea:hover {
	border: 1px solid rgba(255, 255, 255, 0.5);
}

.form-3 .help-block,
.form-3 .checkbox,
.form-3 .checkbox a {
	color: #fff;
}

.form-3 .form-control-submit-button {
	border: 0.125rem solid #fff;
	background-color: transparent;
}

.form-3 .form-control-submit-button:hover {
	border: 0.125rem solid #fff;
	background-color: #fff;
	color: #2c5aa0;
}


/**********************/
/*     17. Footer     */
/**********************/
.footer {
	padding-top: 4.75rem;
	padding-bottom: 2rem;
	background: linear-gradient(to bottom right, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url('../images/header-background.jpg') center center no-repeat;
	background-size: cover;
}

.footer .footer-col {
	margin-bottom: 2.25rem;
}

.footer h5 {
	margin-bottom: 0.5rem;
}

.footer a { 
	text-decoration: none;
}

.footer h5,
.footer p,
.footer a {
	color: #bbb;
}

.footer .list-unstyled .fas {
	color: #bbb;
	font-size: 0.5rem;
	line-height: 1.375rem;
}

.footer .list-unstyled .media-body {
	margin-left: 0.625rem;
}

.footer .fab {
	margin-bottom: 0.75rem;
	margin-right: 1rem;
	color: #ccc;
	font-size: 1.25rem;
	transition: all 0.2s ease;
}

.footer .fab:hover {
	color: #ffbd50;
}


/*************************/
/*     18. Copyright     */
/*************************/
.copyright {
	padding-top: 1.5rem;
	padding-bottom: 0.375rem;
	background-color: #000;
	text-align: center;
}

.copyright .p-small {
	color: #999;
	font-size: 0.75rem;
	line-height: 1.375rem;
}

.copyright a {
	color: #999;
}


/**********************************/
/*     19. Back To Top Button     */
/**********************************/
a.back-to-top {
	position: fixed;
	z-index: 999;
	right: 0.75rem;
	bottom: 0.75rem;
	display: none;
	width: 2.625rem;
	height: 2.625rem;
	border-radius: 1.875rem;
	background: #ffbd50 url("../images/up-arrow.png") no-repeat center 47%;
	background-size: 1.125rem 1.125rem;
	text-indent: -9999px;
}

a:hover.back-to-top {
	background-color: #f0a731; 
}


/***************************/
/*     20. Extra Pages     */
/***************************/
.ex-header {
	padding-top: 8rem;
	padding-bottom: 5rem;
	background: linear-gradient(to bottom right, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url('../images/header-background.jpg') center center no-repeat;
	background-size: cover;
	text-align: center;
}

.ex-basic-1 {
	padding-top: 2rem;
	padding-bottom: 0.875rem;
	background-color: #efebe5;
}

.ex-basic-1 .breadcrumbs {
	margin-bottom: 1.125rem;
}

.ex-basic-1 .breadcrumbs .fa {
	margin-right: 0.5rem;
	margin-left: 0.625rem;
	font-size: 0.875rem;
}

.ex-basic-2 {
	padding-top: 4.75rem;
	padding-bottom: 4rem;
	background-color: #fbf9f5;
}

.ex-basic-2 h3 {
	margin-bottom: 1rem;
}

.ex-basic-2 .text-container {
	margin-bottom: 3.625rem;
}

.ex-basic-2 .text-container.last {
	margin-bottom: 0;
}

.ex-basic-2 .text-container.dark {
	padding: 1.625rem 1.5rem 0.75rem 2rem;
	background-color: #efebe5;
}

.ex-basic-2 .image-container-large {
	margin-bottom: 4rem;
}

.ex-basic-2 .image-container-large img {
	border-radius: 0.375rem;
}

.ex-basic-2 .image-container-small img {
	border-radius: 0.375rem;
}

.ex-basic-2 .list-unstyled .fas {
	color: #ffbd50;
	font-size: 0.5rem;
	line-height: 1.5rem;
}

.ex-basic-2 .list-unstyled .media-body {
	margin-left: 0.625rem;
}

.ex-basic-2 .form-container {
	margin-top: 3rem;
}

.ex-basic-2 .btn-solid-reg {
	margin-top: 1.5rem;
}


/*****************************/
/*     21. Media Queries     */
/*****************************/	
/* Min-width width 768px */
@media (min-width: 768px) {
	
	/* General Styles */
	.p-heading {
		width: 85%;
		margin-right: auto;
		margin-left: auto;
	}
	/* end of general styles */


	/* Header */
	.header {
		padding-top: 9rem;
	}

	.header h1 {
		font-size: 4rem;
		line-height: 4.875rem;
		letter-spacing: -0.3px;
	}

	.header .btn-solid-lg {
		margin-bottom: 0;
		margin-left: 0;
	}

	.header .outer-container {
		bottom: -4rem;
	}

	.header .swiper-button-prev {
		left: 1.5rem;
	}
	
	.header .swiper-button-next {
		right: 1.5rem;
	}
	/* end of header */


	/* Registration */
	.form-1 {
		padding-top: 9rem;
	}
	/* end of registration */


	/* Description */
	.basic-2 h2 {
		width: 41rem;
		margin-right: auto;
		margin-left: auto;
	}

	.basic-2 .list-unstyled .bullet {
		width: 3.25rem;
		height: 3.25rem;
		margin-right: 1rem;
		font-size: 1.375rem;
		line-height: 3.25rem;
	}
	/* end of description */


	/* Newsletter */
	.form-2 form {
		width: 31.875rem;
		margin-right: auto;
		margin-left: auto;
	}
	/* end of newsletter */


	/* Extra Pages */
	.ex-header {
		padding-top: 11rem;
		padding-bottom: 9rem;
	}

	.ex-basic-2 .text-container.dark {
		padding: 2.5rem 3rem 2rem 3rem;
	}

	.ex-basic-2 .form-container {
		margin-top: 0;
	}
	/* end of extra pages */
}
/* end of min-width width 768px */


/* Min-width width 992px */
@media (min-width: 992px) {
	
	/* Navigation */
	.navbar-custom {
		padding: 2.125rem 1.5rem 2.125rem 2rem;
        background: transparent;
		box-shadow: none;
	}
	
	.navbar-custom .navbar-nav {
		margin-top: 0;
		margin-bottom: 0;
	}

	.navbar-custom .nav-item .nav-link {
		padding: 0.25rem 0.75rem;
		color: #eee;
	}

	.navbar-custom.top-nav-collapse {
        padding: 0.5rem 1.5rem 0.5rem 2rem;
		background-color: #fff;
		box-shadow: 0 0.0625rem 0.375rem 0 rgba(0, 0, 0, 0.05);
	}

	.navbar-custom.top-nav-collapse .nav-item .nav-link {
		color: #333;
	}

	.navbar-custom.top-nav-collapse .nav-item .nav-link:hover,
	.navbar-custom.top-nav-collapse .nav-item .nav-link.active {
		color: #ffbd50;
	}

	.navbar-custom .dropdown-menu {
		padding-top: 1rem;
		padding-bottom: 1rem;
		border-top: 0.75rem solid rgba(0, 0, 0, 0);
		border-radius: 0.25rem;
	}

	.navbar-custom.top-nav-collapse .dropdown-menu {
		border-top: 0.5rem solid rgba(0, 0, 0, 0);
		box-shadow: 0 0.375rem 0.375rem 0 rgba(0, 0, 0, 0.02);
	}

	.navbar-custom .dropdown-item {
		padding-top: 0.25rem;
		padding-bottom: 0.25rem;
	}

	.navbar-custom .dropdown-divider {
		width: 84%;
	}

	.navbar-custom .social-icons {
		display: block;
		margin-right: 0.5rem;
		margin-left: 0.5rem;
	}

	.navbar-custom .fa-stack {
		width: 2em;
		margin-left: 0.25rem;
		font-size: 0.75rem;
	}
	
	.navbar-custom .fa-stack-2x {
		color: #ffbd50;
		transition: all 0.2s ease;
	}
	
	.navbar-custom .fa-stack-1x {
		color: #333;
		transition: all 0.2s ease;
	}

	.navbar-custom .fa-stack:hover .fa-stack-2x {
		color: #ee832b;
	}

	.navbar-custom .fa-stack:hover .fa-stack-1x {
		color: #fff;
	}
	/* end of navigation */


	/* General Styles */
	.p-heading {
		width: 65%;
	}
	/* end of general styles */


	/* Header */
	.header h1,
	.header .p-large {
		width: 47rem;
		margin-right: auto;
		margin-left: auto;
	}

	.header .swiper-button-prev {
		left: 3rem;
	}
	
	.header .swiper-button-next {
		right: 3rem;
	}
	/* end of header */


	/* Registration */
	.form-1 {
		padding-top: 10rem;
	}
	/* end of registration */


	/* Instructor */
	.basic-1 {
		padding-bottom: 4.5rem;
	}

	.basic-1 img {
		margin-bottom: 0;
	}
	/* end of instructor */


	/* Description */
	.basic-2 {
		padding-top: 4.5rem;
		padding-bottom: 3.5rem
	}
	/* end of description */


	/* Students */
	.basic-3 {
		padding-top: 3.5rem;
		padding-bottom: 4.5rem;
	}

	.basic-3 .text-container {
		margin-bottom: 0;
	}
	/* end of students */


	/* Details Lightbox */
	.lightbox-basic {
		max-width: 62.5rem;
		padding: 2.5rem 2.5rem 2.5rem 2.5rem;
	}

	.lightbox-basic .image-container {
		max-width: 100%;
		margin-right: 2rem;
		margin-bottom: 0;
		margin-left: 0.5rem;
	}
	
	.lightbox-basic h3 {
		margin-top: 0.5rem;
	}
	/* end of details lightbox */


	/* Video */
	.basic-4 {
		padding-top: 4.5rem;
		padding-bottom: 3.5rem;
	}
	/* end of video */


	/* Takeaways */
	.cards {
		padding-top: 3.5rem;
		padding-bottom: 3rem;
	}

	.cards .card {
		display: inline-block;
		width: 17.75rem;
		max-width: 100%;
		vertical-align: top;
	}

	.cards .card:nth-child(3n+2) {
		margin-right: 2rem;
		margin-left: 2rem;
	}
	/* end of takeaways */


	/* Testimonials */
	.slider-2 {
		padding-bottom: 9rem;
	}

	.slider-2 h3 {
		width: 37.5rem;
		margin-right: auto;
		margin-left: auto;
	}

	.slider-2 .swiper-container {
		width: 92%;
		text-align: left;
	}

	.slider-2 .image-wrapper {
		float: left;
		width: 6rem;
		margin-bottom: 0;
	}

	.slider-2 .text-wrapper {
		max-width: 100%;
		margin-left: 7.375rem;
	}

	.slider-2 .swiper-button-prev {
		left: 0;
	}
	
	.slider-2 .swiper-button-next {
		right: 0;
	}
	/* end of testimonials */


	/* Date */
	.basic-5 h2 {
		width: 70%;
	}
	/* end of date */


	/* Newsletter */
	.form-2 {
		padding-top: 9rem;
	}

	.form-2 h3 {
		width: 37.5rem;
		margin-right: auto;
		margin-left: auto;
	}
	/* end of newsletter */


	/* Contact */
	.form-3 .text-container {
		margin-bottom: 0;
	}
	/* end of contact */


	/* Extra Pages */
	.ex-header h1 {
		width: 80%;
		margin-right: auto;
		margin-left: auto;
	}

	.ex-basic-2 {
		padding-bottom: 5rem;
	}
	/* end of extra pages */
}
/* end of min-width width 992px */


/* Min-width width 1200px */
@media (min-width: 1200px) {
	
	/* Header */
	.header {
		padding-bottom: 31rem;
	}

	.header .outer-container {
		width: 69.375rem;
		bottom: -6rem;
	}

	.header .swiper-container {
		width: 100%;
	}

	.header .swiper-button-prev {
		left: -2.25rem;
	}
	
	.header .swiper-button-next {
		right: -2.25rem;
	}
	/* end of header */
	

	/* Registration */
	.form-1 {
		padding-top: 12rem;
	}

	.form-1 .text-container {
		margin-top: 1rem;
		margin-right: 3.5rem;
	}

	.form-1 form {
		margin-left: 1.5rem;
	}
	/* end of registration */


	/* Instructor */
	.basic-1 .text-container {
		margin-top: 3.125rem;
		margin-left: 3.5rem;
	}
	/* end of instructor */


	/* Description */
	.basic-2 .list-unstyled.first {
		margin-right: 1.625rem;
	}

	.basic-2 .list-unstyled.second {
		margin-left: 1.625rem;
	}
	/* end of description */


	/* Students */
	.basic-3 .text-container {
		margin-top: 2.5rem;
		margin-right: 3.5rem;
	}
	/* end of instructor */


	/* Takeaways */
	.cards .card {
		width: 21rem;
	}

	.cards .card:nth-child(3n+2) {
		margin-right: 2.875rem;
		margin-left: 2.875rem;
	}
	/* end of takeaways */


	/* Testimonials */
	.slider-2 .swiper-container {
		width: 90%;
	}

	.slider-2 .text-wrapper {
		margin-top: 0;
	}
	/* end of testimonials */


	/* Date */
	.basic-5 h2 {
		width: 50%;
	}

	.basic-5 p {
		width: 74%;
	}
	/* end of date */


	/* Contact */
	.form-3 .text-container {
		margin-top: 2.25rem;
		margin-right: 3.5rem;
	}
	/* end of contact */


	/* Footer */
	.footer .footer-col.first {
		margin-right: 1.5rem;
	}

	.footer .footer-col.second {
		margin-left: 3rem;
	}

	.footer .footer-col.third {
		margin-left: 2.75rem;
	}

	.footer .footer-col.fourth {
		margin-left: 1.5rem;
	}
	/* end of footer */


	/* Extra Pages */
	.ex-header h1 {
		width: 60%;
		margin-right: auto;
		margin-left: auto;
	}

	.ex-basic-2 .form-container {
		margin-left: 1.75rem;
	}

	.ex-basic-2 .image-container-small {
		margin-left: 1.75rem;
	}
	/* end of extra pages */
}
/* end of min-width width 1200px */

/* Override dropdown styling to match form inputs */
#registrationForm .form-control-select#rservice {
	padding-top: 1.0625rem !important;
	padding-bottom: 0.0625rem !important;
	height: auto !important;
	background-color: #fbf9f5 !important;
	border: 1px solid #c4d8dc !important;
	color: #555 !important;
	-webkit-appearance: none !important;
	-moz-appearance: none !important;
	appearance: none !important;
	background-image: url('../images/down-arrow.png') !important;
	background-position: 96% 50% !important;
	background-repeat: no-repeat !important;
}

#registrationForm .form-control-select#rservice:focus {
	border: 1px solid  #a1a1a1 !important;
	background-color: #fff !important;
}

#registrationForm .form-control-select#rservice:hover {
	border: 1px solid #a1a1a1 !important;
	background-color: #fff !important;
}

.highlight-visa {
    background-color: #f8f9fa;
    font-weight: 600;
    color: #495057;
    padding: 0 4px;
    border-radius: 3px;
    font-size: 0.9em;
    border-left: 3px solid #2c5aa0;
}

#registrationForm .form-control-select#rservice option {
	background-color: #fff !important;
	color: #555 !important;
	padding: 0.5rem !important;
}

/* Course dropdown styling */
#registrationForm .form-control-select#rcourse {
	padding-top: 1.0625rem !important;
	padding-bottom: 0.0625rem !important;
	height: auto !important;
	background-color: #fbf9f5 !important;
	border: 1px solid #c4d8dc !important;
	color: #555 !important;
	-webkit-appearance: none !important;
	-moz-appearance: none !important;
	appearance: none !important;
	background-image: url('../images/down-arrow.png') !important;
	background-position: 96% 50% !important;
	background-repeat: no-repeat !important;
}

#registrationForm .form-control-select#rcourse:focus {
	border: 1px solid #a1a1a1 !important;
	background-color: #fff !important;
}

#registrationForm .form-control-select#rcourse:hover {
	border: 1px solid #a1a1a1 !important;
	background-color: #fff !important;
}

#registrationForm .form-control-select#rcourse option {
	background-color: #fff !important;
	color: #555 !important;
	padding: 0.5rem !important;
}

/* Reduce spacing for Hyderabad colleges page */
.hyderabad-colleges-page .basic-2,
.hyderabad-colleges-page .basic-3 {
	padding-top: 3rem !important;
	padding-bottom: 3rem !important;
}

.hyderabad-colleges-page .header {
	padding-bottom: 5rem !important;
}

.hyderabad-colleges-page .card {
	margin-bottom: 1.5rem !important;
}

.hyderabad-colleges-page .p-heading {
	margin-bottom: 2rem !important;
}

/* Make all section headlines consistent */
.hyderabad-colleges-page .basic-2 h2,
.hyderabad-colleges-page .basic-3 h2 {
	color: #2c5aa0 !important;
	font-size: 2.25rem !important;
	font-weight: 700 !important;
	text-align: center !important;
	margin-bottom: 1rem !important;
	text-transform: uppercase !important;
}

/* Country Images Section Styles */
.country-images-container {
	margin-bottom: 3rem;
}

.country-image-card {
	position: relative;
	overflow: hidden;
	border-radius: 10px;
	transition: all 0.3s ease;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.country-image-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.country-image-card img {
	width: 100%;
	height: 250px;
	object-fit: cover;
	transition: all 0.3s ease;
}

.country-image-card:hover img {
	transform: scale(1.05);
}

.image-overlay {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	background: linear-gradient(135deg, rgba(44, 90, 160, 0.9), rgba(44, 90, 160, 0.7));
	color: white;
	padding: 1.5rem;
	transform: translateY(100%);
	transition: all 0.3s ease;
}

.country-image-card:hover .image-overlay {
	transform: translateY(0);
}

.image-overlay h5 {
	margin: 0 0 0.5rem 0;
	font-size: 1.1rem;
	font-weight: 600;
}

.image-overlay p {
	margin: 0;
	font-size: 0.9rem;
	opacity: 0.9;
}

/* AOS Animation Styles */
[data-aos] {
	opacity: 0;
	transition-property: opacity, transform;
}

[data-aos].aos-animate {
	opacity: 1;
}

[data-aos="fade-up"] {
	transform: translateY(30px);
}

[data-aos="fade-up"].aos-animate {
	transform: translateY(0);
}

[data-aos="fade-down"] {
	transform: translateY(-30px);
}

[data-aos="fade-down"].aos-animate {
	transform: translateY(0);
}

[data-aos="fade-left"] {
	transform: translateX(30px);
}

[data-aos="fade-left"].aos-animate {
	transform: translateX(0);
}

[data-aos="fade-right"] {
	transform: translateX(-30px);
}

[data-aos="fade-right"].aos-animate {
	transform: translateX(0);
}

/* Responsive adjustments for country images */
@media (max-width: 768px) {
	.country-image-card img {
		height: 200px;
	}
	
	.image-overlay {
		padding: 1rem;
	}
	
	.image-overlay h5 {
		font-size: 1rem;
	}
	
	.image-overlay p {
		font-size: 0.8rem;
	}
}

.hyderabad-colleges-page .basic-2 .p-heading,
.hyderabad-colleges-page .basic-3 .p-heading {
	text-align: center !important;
	color: #555 !important;
	font-size: 1.125rem !important;
	margin-bottom: 2rem !important;
}

/* Chennai and Bangalore colleges page styling */
.chennai-colleges-page .basic-2,
.chennai-colleges-page .basic-3,
.bangalore-colleges-page .basic-2,
.bangalore-colleges-page .basic-3 {
	padding-top: 3rem !important;
	padding-bottom: 3rem !important;
}

.chennai-colleges-page .header,
.bangalore-colleges-page .header {
	padding-bottom: 5rem !important;
}

.chennai-colleges-page .card,
.bangalore-colleges-page .card {
	margin-bottom: 1.5rem !important;
}

.chennai-colleges-page .p-heading,
.bangalore-colleges-page .p-heading {
	margin-bottom: 2rem !important;
}

/* Make all section headlines consistent for all city pages */
.chennai-colleges-page .basic-2 h2,
.chennai-colleges-page .basic-3 h2,
.bangalore-colleges-page .basic-2 h2,
.bangalore-colleges-page .basic-3 h2 {
	color: #ffbd50 !important;
	font-size: 2.25rem !important;
	font-weight: 700 !important;
	text-align: center !important;
	margin-bottom: 1rem !important;
	text-transform: uppercase !important;
}

.chennai-colleges-page .basic-2 .p-heading,
.chennai-colleges-page .basic-3 .p-heading,
.bangalore-colleges-page .basic-2 .p-heading,
.bangalore-colleges-page .basic-3 .p-heading {
	text-align: center !important;
	color: #555 !important;
	font-size: 1.125rem !important;
	margin-bottom: 2rem !important;
}

/* Medical Courses Page Specific Styles */
.medical-courses-page .basic-2,
.medical-courses-page .basic-1 {
	padding: 2rem 0 !important;
}

.medical-courses-page .header {
	padding: 4rem 0 2rem 0 !important;
}

.medical-courses-page .card {
	margin-bottom: 1.5rem !important;
	border: 1px solid #ddd !important;
	box-shadow: 0 2px 4px rgba(0,0,0,0.1) !important;
}

.medical-courses-page .p-heading {
	margin-bottom: 2rem !important;
}

.medical-courses-page .basic-2 h2,
.medical-courses-page .basic-1 h2 {
	margin-bottom: 1.5rem !important;
}

.medical-courses-page .basic-2 .p-heading,
.medical-courses-page .basic-1 .p-heading {
	margin-bottom: 2rem !important;
}

.medical-courses-page .card-title {
	font-size: 1.1rem !important;
	line-height: 1.4 !important;
	margin-bottom: 1rem !important;
}

.medical-courses-page .card-text {
	margin-bottom: 0.5rem !important;
	font-size: 0.9rem !important;
}

.medical-courses-page .btn-primary {
	background-color: #ffbd50 !important;
	border-color: #ffbd50 !important;
	color: #333 !important;
	margin-top: 1rem !important;
	text-decoration: none !important;
}

.medical-courses-page .btn-primary:hover {
	background-color: #333 !important;
	border-color: #333 !important;
	color: #fff !important;
	text-decoration: none !important;
}

/* Enhanced Medical Courses Page Styling */
.medical-courses-page .card {
	border: none !important;
	box-shadow: 0 4px 15px rgba(0,0,0,0.1) !important;
	transition: transform 0.3s ease, box-shadow 0.3s ease !important;
	margin-bottom: 2rem !important;
}

.medical-courses-page .card:hover {
	transform: translateY(-5px) !important;
	box-shadow: 0 8px 25px rgba(0,0,0,0.15) !important;
}

.medical-courses-page .card-title {
	color: #ffbd50 !important;
	font-weight: 700 !important;
	margin-bottom: 1rem !important;
}

.medical-courses-page .lead {
	font-size: 1.1rem !important;
	line-height: 1.6 !important;
	color: #555 !important;
	margin-bottom: 1.5rem !important;
}

.medical-courses-page .badge {
	font-size: 0.8rem !important;
	padding: 0.5rem 1rem !important;
	border-radius: 20px !important;
	background-color: #ffbd50 !important;
	color: #333 !important;
	border: 1px solid #ffbd50 !important;
}

.medical-courses-page .badge:hover {
	background-color: #333 !important;
	color: #fff !important;
	border-color: #333 !important;
}

.medical-courses-page .btn-lg {
	padding: 0.75rem 2rem !important;
	font-weight: 600 !important;
	border-radius: 25px !important;
	text-decoration: none !important;
}

.medical-courses-page .btn-lg:hover {
	text-decoration: none !important;
}

/* Engineering Courses Page Styling */
.engineering-courses-page {
	padding-top: 0 !important;
	margin-top: 0 !important;
}

.engineering-courses-page .basic-2:first-of-type {
	padding-top: 1.5rem !important;
	margin-top: 0 !important;
}

.engineering-courses-page .basic-2,
.engineering-courses-page .basic-3,
.engineering-courses-page .basic-1 {
	padding: 3rem 0 !important;
	margin: 0 !important;
}

.engineering-courses-page .card {
	border: none !important;
	box-shadow: 0 5px 15px rgba(0,0,0,0.1) !important;
	border-radius: 15px !important;
	transition: transform 0.3s ease, box-shadow 0.3s ease !important;
	margin-bottom: 2rem !important;
}

.engineering-courses-page .card:hover {
	transform: translateY(-5px) !important;
	box-shadow: 0 10px 25px rgba(0,0,0,0.15) !important;
}

.engineering-courses-page .card-body {
	padding: 2rem !important;
}

.engineering-courses-page .card-title {
	font-size: 1.8rem !important;
	font-weight: 700 !important;
	margin-bottom: 1rem !important;
	color: #333 !important;
}

.engineering-courses-page .card-text.lead {
	font-size: 1.1rem !important;
	line-height: 1.6 !important;
	margin-bottom: 1.5rem !important;
	color: #666 !important;
}

.engineering-courses-page h5 {
	font-weight: 600 !important;
	margin-bottom: 1rem !important;
	color: #333 !important;
}

.engineering-courses-page .list-unstyled li {
	margin-bottom: 0.5rem !important;
	color: #666 !important;
}

.engineering-courses-page .text-primary {
	color: #333 !important;
}

.engineering-courses-page .text-warning {
	color: #333 !important;
}

.engineering-courses-page .text-success {
	color: #333 !important;
}

.engineering-courses-page .btn-primary {
	background-color: #ffbd50 !important;
	border-color: #ffbd50 !important;
	color: #333 !important;
	margin-top: 1rem !important;
	text-decoration: none !important;
}

.engineering-courses-page .btn-primary:hover {
	background-color: #333 !important;
	border-color: #333 !important;
	color: #fff !important;
	text-decoration: none !important;
}

.engineering-courses-page .badge {
	font-size: 0.8rem !important;
	padding: 0.5rem 1rem !important;
	border-radius: 20px !important;
	background-color: #ffbd50 !important;
	color: #333 !important;
	border: 1px solid #ffbd50 !important;
}

.engineering-courses-page .badge:hover {
	background-color: #333 !important;
	color: #fff !important;
	border-color: #333 !important;
}

.engineering-courses-page .btn-lg {
	padding: 0.75rem 2rem !important;
	font-weight: 600 !important;
	border-radius: 25px !important;
	text-decoration: none !important;
}

.engineering-courses-page .btn-lg:hover {
	text-decoration: none !important;
}

.medical-courses-page .text-primary {
	color: #333 !important;
}

.medical-courses-page .text-warning {
	color: #333 !important;
}

.medical-courses-page .text-success {
	color: #333 !important;
}

.medical-courses-page .rounded {
	border-radius: 10px !important;
}

.medical-courses-page h5 {
	font-weight: 600 !important;
	margin-bottom: 1rem !important;
	color: #333 !important;
}

.medical-courses-page .list-unstyled li {
	margin-bottom: 0.5rem !important;
	color: #555 !important;
}

.engineering-courses-page .header {
    padding-bottom: 0 !important;
    margin-bottom: 0 !important;
}

.engineering-courses-page .basic-2:first-of-type {
    padding-top: 0 !important;
    margin-top: 0 !important;
}

/* Contact Page Styles */
.contact-page .header {
    padding-top: 6rem !important;
    padding-bottom: 3rem !important;
}

.contact-page .form-3 {
    padding-top: 2rem !important;
    padding-bottom: 3rem !important;
}

.contact-page .basic-1 {
    padding-top: 2rem !important;
    padding-bottom: 3rem !important;
}

.contact-page .map-container {
    margin-top: 1rem !important;
}

.contact-page .map-container iframe {
    border-radius: 0.5rem !important;
    box-shadow: 0 0.25rem 0.5rem rgba(0,0,0,0.1) !important;
}

.management-courses-page .basic-2,
.management-courses-page .basic-3,
.management-courses-page .basic-1 {
    padding: 3rem 0 !important;
    margin: 0 !important;
}

.management-courses-page .header {
    padding-bottom: 0 !important;
    margin-bottom: 0 !important;
}

.management-courses-page .card {
    border: none !important;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1) !important;
    border-radius: 15px !important;
    transition: transform 0.3s ease, box-shadow 0.3s ease !important;
    margin-bottom: 2rem !important;
}

.management-courses-page .card:hover {
    transform: translateY(-5px) !important;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15) !important;
}

.management-courses-page .card-body {
    padding: 2rem !important;
}

.management-courses-page .card-title {
    font-size: 1.8rem !important;
    font-weight: 700 !important;
    margin-bottom: 1rem !important;
    color: #333 !important;
}

.management-courses-page .card-text.lead {
    font-size: 1.1rem !important;
    line-height: 1.6 !important;
    margin-bottom: 1.5rem !important;
    color: #666 !important;
}

.management-courses-page h5 {
    font-weight: 600 !important;
    margin-bottom: 1rem !important;
    color: #333 !important;
}

.management-courses-page .list-unstyled li {
    margin-bottom: 0.5rem !important;
    color: #666 !important;
}

.management-courses-page .btn-primary {
    background-color: #ffbd50 !important;
    border-color: #ffbd50 !important;
    color: #333 !important;
    margin-top: 1rem !important;
    text-decoration: none !important;
}

.management-courses-page .btn-primary:hover {
    background-color: #333 !important;
    border-color: #333 !important;
    color: #fff !important;
    text-decoration: none !important;
}

.management-courses-page .badge {
    font-size: 0.8rem !important;
    padding: 0.5rem 1rem !important;
    border-radius: 20px !important;
    background-color: #ffbd50 !important;
    color: #333 !important;
    border: 1px solid #ffbd50 !important;
}

.management-courses-page .badge:hover {
    background-color: #333 !important;
    color: #fff !important;
    border-color: #333 !important;
}

.management-courses-page .btn-lg {
    padding: 0.75rem 2rem !important;
    font-weight: 600 !important;
    border-radius: 25px !important;
    text-decoration: none !important;
}

.management-courses-page .btn-lg:hover {
    text-decoration: none !important;
}

.paramedical-courses-page .basic-2,
.paramedical-courses-page .basic-3,
.paramedical-courses-page .basic-1 {
    padding: 3rem 0 !important;
    margin: 0 !important;
}

.paramedical-courses-page .header {
    padding-bottom: 0 !important;
    margin-bottom: 0 !important;
}

.paramedical-courses-page .card {
    border: none !important;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1) !important;
    border-radius: 15px !important;
    transition: transform 0.3s ease, box-shadow 0.3s ease !important;
    margin-bottom: 2rem !important;
}

.paramedical-courses-page .card:hover {
    transform: translateY(-5px) !important;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15) !important;
}

.paramedical-courses-page .card-body {
    padding: 2rem !important;
}

.paramedical-courses-page .card-title {
    font-size: 1.8rem !important;
    font-weight: 700 !important;
    margin-bottom: 1rem !important;
    color: #333 !important;
}

.paramedical-courses-page .card-text.lead {
    font-size: 1.1rem !important;
    line-height: 1.6 !important;
    margin-bottom: 1.5rem !important;
    color: #666 !important;
}

.paramedical-courses-page h5 {
    font-weight: 600 !important;
    margin-bottom: 1rem !important;
    color: #333 !important;
}

.paramedical-courses-page .list-unstyled li {
    margin-bottom: 0.5rem !important;
    color: #666 !important;
}

.paramedical-courses-page .btn-primary {
    background-color: #ffbd50 !important;
    border-color: #ffbd50 !important;
    color: #333 !important;
    margin-top: 1rem !important;
    text-decoration: none !important;
}

.paramedical-courses-page .btn-primary:hover {
    background-color: #333 !important;
    border-color: #333 !important;
    color: #fff !important;
    text-decoration: none !important;
}

.paramedical-courses-page .badge {
    font-size: 0.8rem !important;
    padding: 0.5rem 1rem !important;
    border-radius: 20px !important;
    background-color: #ffbd50 !important;
    color: #333 !important;
    border: 1px solid #ffbd50 !important;
}

.paramedical-courses-page .badge:hover {
    background-color: #333 !important;
    color: #fff !important;
    border-color: #333 !important;
}

.paramedical-courses-page .btn-lg {
    padding: 0.75rem 2rem !important;
    font-weight: 600 !important;
    border-radius: 25px !important;
    text-decoration: none !important;
}

.paramedical-courses-page .btn-lg:hover {
    text-decoration: none !important;
}

.pharmacy-courses-page .basic-2,
.pharmacy-courses-page .basic-3,
.pharmacy-courses-page .basic-1 {
    padding: 3rem 0 !important;
    margin: 0 !important;
}

.pharmacy-courses-page .header {
    padding-bottom: 0 !important;
    margin-bottom: 0 !important;
}

.pharmacy-courses-page .card {
    border: none !important;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1) !important;
    border-radius: 15px !important;
    transition: transform 0.3s ease, box-shadow 0.3s ease !important;
    margin-bottom: 2rem !important;
}

.pharmacy-courses-page .card:hover {
    transform: translateY(-5px) !important;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15) !important;
}

.pharmacy-courses-page .card-body {
    padding: 2rem !important;
}

.pharmacy-courses-page .card-title {
    font-size: 1.8rem !important;
    font-weight: 700 !important;
    margin-bottom: 1rem !important;
    color: #333 !important;
}

.pharmacy-courses-page .card-text.lead {
    font-size: 1.1rem !important;
    line-height: 1.6 !important;
    margin-bottom: 1.5rem !important;
    color: #666 !important;
}

.pharmacy-courses-page h5 {
    font-weight: 600 !important;
    margin-bottom: 1rem !important;
    color: #333 !important;
}

.pharmacy-courses-page .list-unstyled li {
    margin-bottom: 0.5rem !important;
    color: #666 !important;
}

.pharmacy-courses-page .btn-primary {
    background-color: #ffbd50 !important;
    border-color: #ffbd50 !important;
    color: #333 !important;
    margin-top: 1rem !important;
    text-decoration: none !important;
}

.pharmacy-courses-page .btn-primary:hover {
    background-color: #333 !important;
    border-color: #333 !important;
    color: #fff !important;
    text-decoration: none !important;
}

.pharmacy-courses-page .badge {
    font-size: 0.8rem !important;
    padding: 0.5rem 1rem !important;
    border-radius: 20px !important;
    background-color: #ffbd50 !important;
    color: #333 !important;
    border: 1px solid #ffbd50 !important;
}

.pharmacy-courses-page .badge:hover {
    background-color: #333 !important;
    color: #fff !important;
    border-color: #333 !important;
}

.pharmacy-courses-page .btn-lg {
    padding: 0.75rem 2rem !important;
    font-weight: 600 !important;
    border-radius: 25px !important;
    text-decoration: none !important;
}

.pharmacy-courses-page .btn-lg:hover {
    text-decoration: none !important;
}

.law-courses-page .basic-2,
.law-courses-page .basic-3,
.law-courses-page .basic-1 {
    padding: 3rem 0 !important;
    margin: 0 !important;
}

.law-courses-page .header {
    padding-bottom: 0 !important;
    margin-bottom: 0 !important;
}

.law-courses-page .card {
    border: none !important;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1) !important;
    border-radius: 15px !important;
    transition: transform 0.3s ease, box-shadow 0.3s ease !important;
    margin-bottom: 2rem !important;
}

.law-courses-page .card:hover {
    transform: translateY(-5px) !important;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15) !important;
}

.law-courses-page .card-body {
    padding: 2rem !important;
}

.law-courses-page .card-title {
    font-size: 1.8rem !important;
    font-weight: 700 !important;
    margin-bottom: 1rem !important;
    color: #333 !important;
}

.law-courses-page .card-text.lead {
    font-size: 1.1rem !important;
    line-height: 1.6 !important;
    margin-bottom: 1.5rem !important;
    color: #666 !important;
}

.law-courses-page h5 {
    font-weight: 600 !important;
    margin-bottom: 1rem !important;
    color: #333 !important;
}

.law-courses-page .list-unstyled li {
    margin-bottom: 0.5rem !important;
    color: #666 !important;
}

.law-courses-page .btn-primary {
    background-color: #ffbd50 !important;
    border-color: #ffbd50 !important;
    color: #333 !important;
    margin-top: 1rem !important;
    text-decoration: none !important;
}

.law-courses-page .btn-primary:hover {
    background-color: #333 !important;
    border-color: #333 !important;
    color: #fff !important;
    text-decoration: none !important;
}

.law-courses-page .badge {
    font-size: 0.8rem !important;
    padding: 0.5rem 1rem !important;
    border-radius: 20px !important;
    background-color: #ffbd50 !important;
    color: #333 !important;
    border: 1px solid #ffbd50 !important;
}

.law-courses-page .badge:hover {
    background-color: #333 !important;
    color: #fff !important;
    border-color: #333 !important;
}

.law-courses-page .btn-lg {
    padding: 0.75rem 2rem !important;
    font-weight: 600 !important;
    border-radius: 25px !important;
    text-decoration: none !important;
}

.law-courses-page .btn-lg:hover {
    text-decoration: none !important;
}

.designing-courses-page .basic-2,
.designing-courses-page .basic-3,
.designing-courses-page .basic-1 {
    padding: 3rem 0 !important;
    margin: 0 !important;
}

.designing-courses-page .header {
    padding-bottom: 0 !important;
    margin-bottom: 0 !important;
}

.designing-courses-page .card {
    border: none !important;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1) !important;
    border-radius: 15px !important;
    transition: transform 0.3s ease, box-shadow 0.3s ease !important;
    margin-bottom: 2rem !important;
}

.designing-courses-page .card:hover {
    transform: translateY(-5px) !important;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15) !important;
}

.designing-courses-page .card-body {
    padding: 2rem !important;
}

.designing-courses-page .card-title {
    font-size: 1.8rem !important;
    font-weight: 700 !important;
    margin-bottom: 1rem !important;
    color: #333 !important;
}

.designing-courses-page .card-text.lead {
    font-size: 1.1rem !important;
    line-height: 1.6 !important;
    margin-bottom: 1.5rem !important;
    color: #666 !important;
}

.designing-courses-page h5 {
    font-weight: 600 !important;
    margin-bottom: 1rem !important;
    color: #333 !important;
}

.designing-courses-page .list-unstyled li {
    margin-bottom: 0.5rem !important;
    color: #666 !important;
}

.designing-courses-page .btn-primary {
    background-color: #ffbd50 !important;
    border-color: #ffbd50 !important;
    color: #333 !important;
    margin-top: 1rem !important;
    text-decoration: none !important;
}

.designing-courses-page .btn-primary:hover {
    background-color: #333 !important;
    border-color: #333 !important;
    color: #fff !important;
    text-decoration: none !important;
}

.designing-courses-page .badge {
    font-size: 0.8rem !important;
    padding: 0.5rem 1rem !important;
    border-radius: 20px !important;
    background-color: #ffbd50 !important;
    color: #333 !important;
    border: 1px solid #ffbd50 !important;
}

.designing-courses-page .badge:hover {
    background-color: #333 !important;
    color: #fff !important;
    border-color: #333 !important;
}

.designing-courses-page .btn-lg {
    padding: 0.75rem 2rem !important;
    font-weight: 600 !important;
    border-radius: 25px !important;
    text-decoration: none !important;
}

.designing-courses-page .btn-lg:hover {
    text-decoration: none !important;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Enhanced Typography */
.text-gradient {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-shadow {
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

/* Modern Button Styles */
.btn-modern {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border: none;
    border-radius: var(--border-radius-lg);
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--text-dark);
    font: 600 0.875rem "Montserrat", sans-serif;
    text-decoration: none;
    transition: var(--transition);
    box-shadow: var(--shadow-light);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: var(--transition);
}

.btn-modern:hover::before {
    left: 100%;
}

.btn-modern:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
    color: var(--text-dark);
    text-decoration: none;
}

.btn-modern:active {
    transform: translateY(0);
}

.btn-modern:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 189, 80, 0.3);
}

/* Modern Card Styles */
.card-modern {
    background: var(--bg-white);
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-light);
    transition: var(--transition);
    border: 1px solid rgba(255, 189, 80, 0.1);
    position: relative;
    overflow: hidden;
}

.card-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-dark));
}

.card-modern:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.card-modern .card-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    font-size: 1.5rem;
}

/* Enhanced Container */
.container-modern {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

/* Modern Section Styles */
.section-modern {
    padding: var(--section-padding);
    position: relative;
}

.section-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
}

/* Loading Animation */
.loading-skeleton {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
}

@keyframes loading {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

@media (max-width: 767px) {
  /* Enhanced Mobile Base Styles */
  :root {
    --container-padding: 1rem;
    --section-padding: 3rem 0;
  }
  
  /* Mobile Navigation Enhancements */
  .navbar-custom {
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    padding: 0.25rem 0;
  }
  
  .navbar-custom .navbar-brand.logo-image img {
    width: 4rem;
    height: auto;
  }
  
  .navbar-custom .navbar-toggler {
    display: none !important;
  }
  
  .navbar-custom .navbar-nav {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: var(--border-radius);
    margin-top: 0.5rem;
    padding: 0.5rem;
    box-shadow: var(--shadow-medium);
    display: flex !important;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .navbar-custom .nav-item .nav-link {
    padding: 1rem;
    margin: 0.25rem 0;
    border-radius: var(--border-radius);
    font-size: 1rem;
    font-weight: 600;
  }
  
  .navbar-custom .dropdown-menu {
    background-color: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(255, 189, 80, 0.2);
    margin: 0.5rem 0;
  }
  
  .navbar-custom .dropdown-item {
    padding: 1rem;
    margin: 0.25rem;
    font-size: 0.9rem;
  }
  
  /* Mobile Header Enhancements */
  .header {
    padding-top: 6rem;
    padding-bottom: 30%;
    background-attachment: scroll;
    margin-top: 0;
    min-height: 600px;
  }
  
  .header h1 {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 1rem;
  }
  
  .header .p-large {
    font-size: 1.1rem;
    line-height: 1.4;
    margin-bottom: 2rem;
  }
  
  /* Mobile Button Enhancements */
  .btn-solid-lg, .btn-outline-lg, .btn-solid-reg, .btn-outline-reg {
    padding: 1rem 1.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: var(--border-radius-lg);
    width: 100%;
    margin: 0.5rem 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: var(--transition);
    box-shadow: var(--shadow-light);
  }
  
  .btn-solid-lg:hover, .btn-outline-lg:hover, .btn-solid-reg:hover, .btn-outline-reg:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
  }
  
  /* Mobile Form Enhancements */
  .form-container {
    padding: 1.5rem;
    margin: 1.5rem 0;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-light);
    border: 1px solid rgba(255, 189, 80, 0.1);
  }
  
  .form-control-input {
    font-size: 16px;
    padding: 1rem;
    border-radius: var(--border-radius);
    border: 2px solid rgba(255, 189, 80, 0.2);
    transition: var(--transition);
  }
  
  .form-control-input:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(255, 189, 80, 0.1);
  }
  
  /* Mobile Card Enhancements */
  .card {
    margin-bottom: 1.5rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-light);
    transition: var(--transition);
    border: 1px solid rgba(255, 189, 80, 0.1);
  }
  
  .card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-medium);
  }
  
  .card-body {
    padding: 1.5rem;
  }
  
  /* Mobile Section Enhancements */
  .basic-1, .basic-2, .basic-3, .basic-4, .basic-5 {
    padding: 3rem 0;
  }
  
  .form-1, .form-2 {
    padding: 3rem 0;
  }
  
  .slider-1, .slider-2 {
    padding: 3rem 0;
  }
  
  .cards {
    padding: 3rem 0;
  }
  
  /* Mobile Typography Enhancements */
  h1 {
    font-size: 2rem;
    line-height: 1.2;
    margin-bottom: 1rem;
  }
  
  h2 {
    font-size: 1.75rem;
    line-height: 1.3;
    margin-bottom: 1rem;
  }
  
  h3 {
    font-size: 1.5rem;
    line-height: 1.3;
    margin-bottom: 0.75rem;
  }
  
  .p-large {
    font-size: 1rem;
    line-height: 1.5;
  }
  
  /* Mobile Image Enhancements */
  .img-fluid {
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
  }
  
  /* Mobile Testimonial Enhancements */
  .testimonial-text {
    font-size: 0.95rem;
    line-height: 1.5;
    font-style: italic;
  }
  
  .testimonial-author {
    font-size: 0.9rem;
    font-weight: 600;
    margin-top: 1rem;
  }
  
  /* Mobile Footer Enhancements */
  .footer {
    padding: 2rem 0;
  }
  
  .footer-col {
    margin-bottom: 2rem;
    text-align: center;
  }
  
  .footer-col h5 {
    margin-bottom: 1rem;
    color: var(--primary-color);
  }
  
  /* Mobile Swiper Enhancements */
  .swiper-container {
    border-radius: var(--border-radius);
    overflow: hidden;
  }
  
  .swiper-button-next, .swiper-button-prev {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    color: var(--primary-color);
  }
  
  /* Mobile Accessibility Enhancements */
  .btn-solid-lg:focus, .btn-outline-lg:focus, .btn-solid-reg:focus, .btn-outline-reg:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
  }
  
  /* Mobile Performance Enhancements */
  .swiper-slide {
    flex-shrink: 0;
  }
  
  /* Mobile Touch Enhancements */
  * {
    -webkit-tap-highlight-color: rgba(255, 189, 80, 0.3);
  }
  
  /* Mobile Loading Enhancements */
  .spinner-wrapper {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
  }
  
  /* Professional Mobile Call/WhatsApp Sidebar */
.call-sidebar, .whatsapp-sidebar {
  position: fixed;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
  padding: 0;
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 2px solid rgba(255, 255, 255, 0.2);
}
  
  .call-sidebar {
  top: 140px;
  left: 20px;
  transform: none;
  right: auto;
  bottom: auto;
  background: linear-gradient(135deg, #ffbd50 0%, #f39c12 100%);
  box-shadow: 0 6px 25px rgba(255, 189, 80, 0.3);
}

.whatsapp-sidebar {
  bottom: 100px;
  right: 20px;
  left: auto;
  top: auto;
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  box-shadow: 0 6px 25px rgba(37, 211, 102, 0.3);
}
  
  .call-sidebar a, .whatsapp-sidebar a {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  padding: 0;
  position: relative;
}

.call-sidebar i, .whatsapp-sidebar i {
  font-size: 26px;
  margin: 0;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
  transition: all 0.3s ease;
  z-index: 2;
}
  
  .call-text, .call-number, .whatsapp-text, .whatsapp-number {
    display: none;
  }
  
  .call-sidebar:active, .call-sidebar:focus, .call-sidebar:hover,
  .whatsapp-sidebar:active, .whatsapp-sidebar:focus, .whatsapp-sidebar:hover {
    width: 180px;
    border-radius: 32px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.22);
    justify-content: flex-start;
  }
  
  /* Professional Mohan Section */
.professional-mohan-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #fbf9f5 100%);
  position: relative;
  overflow: hidden;
}

.professional-mohan-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 30%, rgba(255, 189, 80, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(255, 189, 80, 0.08) 0%, transparent 50%);
  pointer-events: none;
}

/* Mohan Image Container */
.mohan-image-container {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  background: linear-gradient(135deg, #000 0%, #000 40%, #ffbd50 40%, #ffbd50 100%);
  padding: 20px;
}

.mohan-portrait {
  border-radius: 15px;
  transition: transform 0.3s ease;
  position: relative;
  z-index: 2;
}

.mohan-image-container:hover .mohan-portrait {
  transform: scale(1.02);
}

/* Experience Badge */
.experience-badge {
  position: absolute;
  top: 30px;
  left: 30px;
  background: rgba(0, 0, 0, 0.9);
  color: white;
  padding: 15px;
  border-radius: 12px;
  text-align: center;
  z-index: 3;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.experience-number {
  font-size: 2.5rem;
  font-weight: 900;
  line-height: 1;
  color: #ffbd50;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.experience-text {
  font-size: 0.8rem;
  font-weight: 600;
  line-height: 1.2;
  margin-top: 5px;
  opacity: 0.9;
}

/* Professional Overlay */
.professional-overlay {
  position: absolute;
  bottom: 20px;
  right: 20px;
  z-index: 3;
}

.expertise-tags {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.expertise-tag {
  background: rgba(255, 255, 255, 0.95);
  color: #333;
  padding: 8px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

/* Professional Content */
.professional-content {
  padding-left: 40px;
}

.professional-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
  background: linear-gradient(135deg, var(--text-dark), #ffbd50);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.professional-subtitle {
  font-size: 1.2rem;
  color: var(--text-light);
  margin-bottom: 2rem;
  font-weight: 500;
}

/* Expertise Highlights */
.expertise-highlights {
  margin-bottom: 2rem;
}

.expertise-item {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 10px;
  border-left: 4px solid #ffbd50;
  transition: all 0.3s ease;
}

.expertise-item:hover {
  background: rgba(255, 255, 255, 1);
  transform: translateX(5px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.expertise-item i {
  color: #ffbd50;
  font-size: 1.2rem;
  margin-right: 12px;
  width: 20px;
  text-align: center;
}

.expertise-item span {
  font-weight: 600;
  color: var(--text-dark);
}

/* Professional Description */
.professional-description {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-light);
  margin-bottom: 1.5rem;
}

/* Professional Credentials */
.professional-credentials {
  margin-top: 2rem;
}

.credential-item {
  display: flex;
  align-items: center;
  margin-bottom: 0.8rem;
}

.credential-item i {
  color: #28a745;
  font-size: 1.1rem;
  margin-right: 10px;
  width: 16px;
  text-align: center;
}

.credential-item span {
  font-weight: 500;
  color: var(--text-dark);
}

/* Professional Mobile Touch Interactions */
.dropdown-item {
  padding: 12px 20px;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

/* Responsive Design for Professional Mohan Section */
@media (max-width: 768px) {
  .professional-mohan-section {
    padding: 40px 0;
  }
  
  .mohan-image-container {
    margin-bottom: 30px;
    padding: 15px;
  }
  
  .experience-badge {
    top: 20px;
    left: 20px;
    padding: 12px;
  }
  
  .experience-number {
    font-size: 2rem;
  }
  
  .experience-text {
    font-size: 0.7rem;
  }
  
  .professional-content {
    padding-left: 0;
    text-align: center;
  }
  
  .professional-title {
    font-size: 2rem;
  }
  
  .professional-subtitle {
    font-size: 1rem;
  }
  
  .expertise-item {
    padding: 10px 12px;
    margin-bottom: 0.8rem;
  }
  
  .expertise-item i {
    font-size: 1rem;
    margin-right: 10px;
  }
  
  .professional-description {
    font-size: 1rem;
  }
  
  .expertise-tags {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 6px;
  }
  
  .expertise-tag {
    font-size: 0.7rem;
    padding: 6px 10px;
  }
}

/* Premium Registration Section */
.premium-registration-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #fbf9f5 100%);
  position: relative;
  overflow: hidden;
  padding: 80px 0;
}

.premium-registration-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 30% 30%, rgba(255, 189, 80, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 70% 70%, rgba(255, 189, 80, 0.08) 0%, transparent 50%);
  pointer-events: none;
}

/* Premium Content */
.premium-content .premium-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, var(--text-dark), #ffbd50);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.premium-content .premium-subtitle {
  font-size: 1.2rem;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 2.5rem;
}

/* Benefits Container */
.benefits-container {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.benefit-card {
  display: flex;
  align-items: center;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  border-left: 4px solid #ffbd50;
  transition: all 0.3s ease;
}

.benefit-card:hover {
  transform: translateX(8px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
  background: rgba(255, 255, 255, 1);
}

.benefit-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #ffbd50, #f39c12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
  color: white;
  font-size: 1.2rem;
  box-shadow: 0 4px 15px rgba(255, 189, 80, 0.3);
}

.benefit-content h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #000000;
  margin-bottom: 0.5rem;
  text-shadow: 0 1px 1px rgba(0,0,0,0.1);
}

.benefit-content p {
  color: #000000 !important;
  margin: 0;
  line-height: 1.5;
  font-weight: 600;
  text-shadow: 0 1px 1px rgba(0,0,0,0.05);
}

/* Force all text in benefit cards to be black */
.benefit-card .benefit-content p,
.benefit-card .benefit-content h4 {
  color: #000000 !important;
  font-weight: 600 !important;
}

/* Comprehensive text color override for registration section */
.premium-subtitle,
.benefit-content p,
.form-header p,
.label-control,
.premium-checkbox label,
.premium-input,
.premium-select,
.premium-input::placeholder,
.premium-select::placeholder {
  color: #000000 !important;
}

/* Force ALL text in benefit cards to be black - including descriptions */
.benefit-card *,
.benefit-card p,
.benefit-card h4,
.benefit-card .benefit-content *,
.benefit-card .benefit-content p,
.benefit-card .benefit-content h4 {
  color: #000000 !important;
  font-weight: 600 !important;
}

/* Ultra-specific override for the description text under benefit headings */
.benefit-card .benefit-content p,
div[class*="benefit"] p,
div[class*="benefit-content"] p {
  color: #000000 !important;
  font-weight: 700 !important;
  text-shadow: 0 1px 2px rgba(0,0,0,0.2) !important;
}

/* Premium Form */
.premium-form {
  background: #ffffff;
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15), 0 8px 16px rgba(0, 0, 0, 0.1);
  border: 2px solid rgba(255, 189, 80, 0.3);
}

.form-header {
  text-align: center;
  margin-bottom: 2rem;
}

.form-header h3 {
  font-size: 1.8rem;
  font-weight: 700;
  color: #000000;
  margin-bottom: 0.5rem;
  text-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

.form-header p {
  color: #000000 !important;
  font-size: 1rem;
  font-weight: 600;
  text-shadow: 0 1px 1px rgba(0,0,0,0.05);
}

/* Input Wrapper */
.input-wrapper {
  position: relative;
  margin-bottom: 1.5rem;
}

.input-icon {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: #ffbd50;
  font-size: 1.1rem;
  z-index: 2;
}

.premium-input,
.premium-select {
  width: 100%;
  padding: 1rem 1rem 1rem 3rem;
  border: 2px solid rgba(255, 189, 80, 0.4);
  border-radius: 12px;
  background: #ffffff;
  font-size: 1rem;
  color: #000000 !important;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.premium-input::placeholder,
.premium-select::placeholder {
  color: #000000 !important;
  opacity: 0.7;
  font-weight: 500;
}

.premium-input:focus,
.premium-select:focus {
  border-color: #ffbd50;
  box-shadow: 0 0 0 4px rgba(255, 189, 80, 0.3), 0 4px 12px rgba(0, 0, 0, 0.15);
  outline: none;
  background: #ffffff;
}

.premium-input::placeholder {
  color: #000000 !important;
  opacity: 0.7;
}

/* Premium Button */
.premium-button {
  width: 100%;
  padding: 1.2rem 2rem;
  background: linear-gradient(135deg, #ffbd50, #f39c12);
  border: none;
  border-radius: 12px;
  color: white;
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(255, 189, 80, 0.3);
}

.premium-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(255, 189, 80, 0.4);
  background: linear-gradient(135deg, #f39c12, #ffbd50);
}

.premium-button i {
  font-size: 1rem;
}

/* Premium Checkbox */
.premium-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  margin-bottom: 1.5rem;
}

.premium-checkbox input[type="checkbox"] {
  margin-top: 0.2rem;
  width: 18px;
  height: 18px;
  accent-color: #ffbd50;
}

.premium-checkbox label {
  font-size: 0.9rem;
  color: #000000 !important;
  line-height: 1.5;
  font-weight: 600;
  text-shadow: 0 1px 1px rgba(0,0,0,0.05);
}

.premium-checkbox a {
  color: #ffbd50;
  text-decoration: none;
  font-weight: 600;
}

.premium-checkbox a:hover {
  text-decoration: underline;
}

/* Professional Testimonials Section */
.premium-testimonials-section {
  background: linear-gradient(135deg, #fafbfc 0%, #ffffff 100%);
  position: relative;
  overflow: hidden;
  padding: 100px 0;
}

.premium-testimonials-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 25% 25%, rgba(0, 0, 0, 0.015) 0%, transparent 50%),
    radial-gradient(circle at 75% 75%, rgba(0, 0, 0, 0.015) 0%, transparent 50%);
  pointer-events: none;
}

/* Professional Testimonials Title */
.premium-testimonials-title {
  font-size: 3rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 1.5rem;
  position: relative;
  letter-spacing: -0.5px;
}

.premium-testimonials-title .highlight-visa {
  background: linear-gradient(135deg, #2c3e50, #34495e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 800;
}

.premium-testimonials-subtitle {
  font-size: 1.3rem;
  color: #6c757d;
  line-height: 1.6;
  margin-bottom: 4rem;
  font-weight: 400;
}

/* Professional Testimonial Cards */
.premium-testimonial-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 3rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  border: 1px solid #f1f3f4;
  margin: 1rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.premium-testimonial-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(135deg, #3498db, #2980b9);
  opacity: 0.8;
}

.premium-testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
  border-color: #e8eaed;
}

/* Professional Testimonial Header */
.testimonial-header {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.student-image {
  position: relative;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid #e8eaed;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  flex-shrink: 0;
}

.student-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.country-badge {
  position: absolute;
  bottom: -3px;
  right: -3px;
  background: #3498db;
  color: white;
  padding: 3px 6px;
  border-radius: 8px;
  font-size: 0.65rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 3px;
  box-shadow: 0 2px 8px rgba(52, 152, 219, 0.3);
}

.quote-icon {
  position: absolute;
  top: -10px;
  right: -10px;
  width: 30px;
  height: 30px;
  background: #3498db;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 0.9rem;
  box-shadow: 0 4px 12px rgba(52, 152, 219, 0.3);
}

/* Professional Testimonial Content */
.testimonial-content {
  position: relative;
}

.testimonial-text {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #2c3e50;
  margin-bottom: 2rem;
  font-style: italic;
  position: relative;
  padding-left: 2.5rem;
  background: #f8f9fa;
  padding: 1.5rem;
  border-radius: 12px;
  border-left: 4px solid #3498db;
}

.testimonial-text::before {
  content: '"';
  position: absolute;
  left: 0.5rem;
  top: -0.5rem;
  font-size: 2.5rem;
  color: #3498db;
  font-family: Georgia, serif;
  line-height: 1;
  font-weight: bold;
}

.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1.5rem;
  border-top: 1px solid #e8eaed;
}

.author-info h4 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 0.3rem;
}

.author-info p {
  color: #6c757d;
  margin: 0;
  font-size: 0.9rem;
  font-weight: 500;
}

.success-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: #27ae60;
  color: white;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  box-shadow: 0 2px 8px rgba(39, 174, 96, 0.3);
}

.success-badge i {
  font-size: 0.8rem;
}

/* Premium Navigation */
.premium-nav {
  width: 50px !important;
  height: 50px !important;
  background: rgba(255, 255, 255, 0.95) !important;
  border-radius: 50% !important;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}

.premium-nav:hover {
  background: rgba(255, 255, 255, 1) !important;
  transform: scale(1.1);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.premium-nav::after {
  font-size: 18px !important;
  color: rgba(0, 0, 0, 0.7) !important;
  font-weight: bold;
}

/* Responsive Design for Premium Testimonials */
@media (max-width: 768px) {
  .premium-testimonials-section {
    padding: 60px 0;
  }
  
  .premium-testimonials-title {
    font-size: 2rem;
  }
  
  .premium-testimonials-subtitle {
    font-size: 1.1rem;
  }
  
  .premium-testimonial-card {
    padding: 2rem;
    margin: 0.5rem;
  }
  
  .testimonial-header {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
  
  .student-image {
    width: 70px;
    height: 70px;
  }
  
  .quote-icon {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
  }
  
  .testimonial-text {
    font-size: 1rem;
    padding-left: 1.5rem;
  }
  
  .testimonial-author {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
  
  .success-badge {
    align-self: center;
  }
  
  .premium-nav {
    width: 45px !important;
    height: 45px !important;
  }
  
  .premium-nav::after {
    font-size: 16px !important;
  }
}

/* Responsive Design for Premium Registration */
@media (max-width: 768px) {
  .premium-registration-section {
    padding: 60px 0;
  }
  
  .premium-content .premium-title {
    font-size: 2rem;
    text-align: center;
  }
  
  .premium-content .premium-subtitle {
    font-size: 1.1rem;
    text-align: center;
  }
  
  .benefits-container {
    gap: 1rem;
  }
  
  .benefit-card {
    padding: 1.2rem;
  }
  
  .benefit-icon {
    width: 45px;
    height: 45px;
    font-size: 1rem;
  }
  
  .premium-form {
    padding: 2rem;
    margin-top: 2rem;
  }
  
  .form-header h3 {
    font-size: 1.5rem;
  }
  
  .premium-input,
  .premium-select {
    padding: 0.9rem 0.9rem 0.9rem 2.5rem;
    font-size: 0.95rem;
  }
  
  .input-icon {
    font-size: 1rem;
    left: 12px;
  }
  
  .premium-button {
    padding: 1rem 1.5rem;
    font-size: 1rem;
  }
}

.dropdown-item:hover {
  background: rgba(255, 189, 80, 0.1);
  transform: translateX(5px);
}

/* Enhanced Mobile Call/WhatsApp Animations */
@keyframes pulse-glow {
  0% { box-shadow: 0 6px 25px rgba(255, 189, 80, 0.3); }
  50% { box-shadow: 0 6px 25px rgba(255, 189, 80, 0.6); }
  100% { box-shadow: 0 6px 25px rgba(255, 189, 80, 0.3); }
}

@keyframes whatsapp-pulse {
  0% { box-shadow: 0 6px 25px rgba(37, 211, 102, 0.3); }
  50% { box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6); }
  100% { box-shadow: 0 6px 25px rgba(37, 211, 102, 0.3); }
}

.call-sidebar {
  animation: pulse-glow 2s infinite;
}

.whatsapp-sidebar {
  animation: whatsapp-pulse 2s infinite;
}

/* Professional Mobile Button States */
.call-sidebar:active, .whatsapp-sidebar:active {
  transform: scale(0.95);
  animation: none;
}

/* Mobile Loading States */
.swiper-slide {
  transition: opacity 0.3s ease;
}

.swiper-slide-active {
  opacity: 1;
}

.swiper-slide-prev, .swiper-slide-next {
  opacity: 0.7;
}
  
  /* Improved mobile spacing */
  .container {
    padding-left: 15px;
    padding-right: 15px;
  }
  
  .row {
    margin-left: -10px;
    margin-right: -10px;
  }
  
  .col-lg-6, .col-md-6, .col-sm-6 {
    padding-left: 10px;
    padding-right: 10px;
  }
  
  /* Professional Mobile Slider Optimizations */
.header .swiper-container {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

/* Hide Progress Bar and Pagination Dots */
.swiper-pagination,
.swiper-pagination-bullets,
.swiper-pagination-progressbar,
.swiper-pagination-bullet,
.swiper-pagination-bullet-active {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
}

.header .swiper-container img {
  border-radius: 12px;
  transition: transform 0.3s ease;
}

.header .swiper-container:hover img {
  transform: scale(1.02);
}

.swiper-button-next, .swiper-button-prev {
  width: 40px !important;
  height: 40px !important;
  background: rgba(255, 255, 255, 0.9) !important;
  border-radius: 50% !important;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.swiper-button-next:hover, .swiper-button-prev:hover {
  background: rgba(255, 255, 255, 1) !important;
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.swiper-button-next::after, .swiper-button-prev::after {
  font-size: 16px !important;
  color: #333 !important;
  font-weight: bold;
}

/* Mobile image improvements */
.img-fluid {
  max-width: 100%;
  height: auto;
}
  
  /* Mobile text improvements */
  h1, h2, h3, h4, h5, h6 {
    word-wrap: break-word;
  }
  
  /* Mobile navigation toggle improvements */
  .navbar-toggler {
    padding: 8px 12px;
    border: 1px solid rgba(255,255,255,0.3);
  }
  
  /* Ensure navbar has proper z-index to stay above call button */
  .navbar-custom {
    z-index: 10001;
  }
  
  /* Additional spacing for call button to avoid navbar overlap */
  .call-sidebar {
    z-index: 10000;
  }
  
  .navbar-toggler:focus {
    outline: none;
    box-shadow: none;
  }
  
  /* Mobile content improvements */
  .basic-1, .basic-2, .basic-3, .basic-4, .basic-5 {
    padding: 60px 0;
  }
  
  .form-1, .form-2 {
    padding: 60px 0;
  }
  
  .slider-1, .slider-2 {
    padding: 60px 0;
  }
  
  .cards {
    padding: 60px 0;
  }
  
  /* Mobile text container improvements */
  .text-container {
    padding: 20px 0;
  }
  
  /* Mobile list improvements */
  .li-space-lg li {
    margin-bottom: 15px;
  }
  
  /* Mobile media improvements */
  .media {
    margin-bottom: 20px;
  }
  
  /* Mobile bullet improvements */
  .bullet {
    min-width: 30px;
    height: 30px;
    font-size: 14px;
    line-height: 30px;
  }
  
  /* Mobile image container improvements */
  .image-container {
    margin: 20px 0;
  }
  
  /* Mobile video improvements */
  .video-wrapper {
    margin: 20px 0;
  }
  
  /* Mobile testimonial improvements */
  .image-wrapper {
    margin-bottom: 20px;
  }
  
  /* Mobile partner logo improvements */
  .slider-container img {
    max-height: 60px;
    width: auto;
  }
  
  /* Mobile performance improvements */
  .swiper-container {
    overflow: hidden;
  }
  
  .swiper-slide {
    flex-shrink: 0;
  }
  
  /* Mobile accessibility improvements */
  .btn-solid-lg:focus, .btn-outline-lg:focus {
    outline: 2px solid #ffbd50;
    outline-offset: 2px;
  }
  
  .form-control-input:focus {
    outline: 2px solid #ffbd50;
    outline-offset: 2px;
  }
  
  /* Mobile loading improvements */
  .spinner-wrapper {
    background: rgba(255, 255, 255, 0.95);
  }
  
  /* Mobile scroll improvements */
  html {
    scroll-behavior: smooth;
  }
  
  /* Mobile tap highlight improvements */
  * {
    -webkit-tap-highlight-color: rgba(255, 189, 80, 0.3);
  }
  
  /* Ensure call button doesn't interfere with content */
  .call-sidebar {
    pointer-events: auto;
  }
  
  /* Add some margin to main content to avoid call button overlap */
  .header {
    position: relative;
  }
  .call-sidebar, .whatsapp-sidebar {
    position: fixed;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    box-shadow: 0 4px 16px rgba(0,0,0,0.18);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: box-shadow 0.2s, width 0.3s, height 0.3s, background 0.2s;
    overflow: visible;
    padding: 0;
  }
  .call-sidebar {
    top: 80px;
    left: 0;
    right: auto;
    bottom: auto;
    background: linear-gradient(135deg, #ffbd50 0%, #f39c12 100%);
  }
  .whatsapp-sidebar {
    bottom: 80px;
    right: 0;
    left: auto;
    top: auto;
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  }
  .call-sidebar a, .whatsapp-sidebar a {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    padding: 0;
  }
  .call-sidebar i, .whatsapp-sidebar i {
    font-size: 24px;
    margin: 0;
    filter: drop-shadow(0 1px 2px rgba(0,0,0,0.18));
    transition: color 0.2s;
  }
  .call-text, .call-number, .whatsapp-text, .whatsapp-number {
    display: none;
  }
  .call-sidebar:active, .call-sidebar:focus, .call-sidebar:hover,
  .whatsapp-sidebar:active, .whatsapp-sidebar:focus, .whatsapp-sidebar:hover {
    width: 180px;
    border-radius: 32px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.22);
    justify-content: flex-start;
  }
  .call-sidebar:hover a .call-text, .call-sidebar:hover a .call-number,
  .call-sidebar:focus a .call-text, .call-sidebar:focus a .call-number,
  .call-sidebar:active a .call-text, .call-sidebar:active a .call-number,
  .whatsapp-sidebar:hover a .whatsapp-text, .whatsapp-sidebar:hover a .whatsapp-number,
  .whatsapp-sidebar:focus a .whatsapp-text, .whatsapp-sidebar:focus a .whatsapp-number,
  .whatsapp-sidebar:active a .whatsapp-text, .whatsapp-sidebar:active a .whatsapp-number {
    display: inline-block;
    font-size: 13px;
    margin-left: 12px;
    color: #fff;
    font-weight: 600;
    letter-spacing: 0.2px;
    vertical-align: middle;
    transition: color 0.2s;
  }
}

.main-hero-headline {
  font-size: 2.8rem;
  line-height: 1.1;
  font-weight: 700;
  max-width: 700px;
  margin: 0 auto 20px auto;
  text-align: center;
  word-break: break-word;
}

@media (max-width: 991px) {
  /* Tablet Base Styles */
  :root {
    --container-padding: 1.5rem;
    --section-padding: 4rem 0;
  }
  
  .main-hero-headline {
    font-size: 2rem;
    max-width: 95vw;
  }
  
  /* Tablet Navigation Enhancements */
  .navbar-custom {
    background-color: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
  }
  
  .navbar-custom .navbar-brand.logo-image img {
    width: 4.5rem;
    height: auto;
  }
  
  .navbar-custom .nav-item .nav-link {
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
  }
  
  /* Tablet Header Enhancements */
  .header {
    padding-top: 7rem;
    padding-bottom: 18%;
    background-attachment: scroll;
    margin-top: 0;
    min-height: 450px;
  }
  
  .header h1 {
    font-size: 2.25rem;
    line-height: 1.2;
  }
  
  .header .p-large {
    font-size: 1.1rem;
    line-height: 1.4;
  }
  
  /* Tablet Button Enhancements */
  .btn-solid-lg, .btn-outline-lg {
    padding: 1.1rem 1.8rem;
    font-size: 0.9rem;
    border-radius: var(--border-radius-lg);
  }
  
  /* Tablet Form Enhancements */
  .form-container {
    padding: 2rem;
    max-width: 600px;
    margin: 0 auto;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-light);
  }
  
  /* Tablet Content Enhancements */
  .basic-1, .basic-2, .basic-3, .basic-4, .basic-5 {
    padding: 4rem 0;
  }
  
  .form-1, .form-2 {
    padding: 4rem 0;
  }
  
  .slider-1, .slider-2 {
    padding: 4rem 0;
  }
  
  .cards {
    padding: 4rem 0;
  }
  
  /* Tablet Typography Enhancements */
  h1 {
    font-size: 2.5rem;
    line-height: 1.2;
  }
  
  h2 {
    font-size: 2rem;
    line-height: 1.3;
  }
  
  h3 {
    font-size: 1.75rem;
    line-height: 1.3;
  }
  
  /* Tablet Card Enhancements */
  .card {
    margin-bottom: 2rem;
    transition: var(--transition);
  }
  
  .card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
  }
  
  /* Tablet Image Enhancements */
  .img-fluid {
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
  }
  
  /* Tablet Call Button Positioning */
  .call-sidebar {
    top: 140px;
  }
  
  /* Tablet Container Enhancements */
  .container {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

@media (max-width: 600px) {
  .main-hero-headline {
    font-size: 1.3rem;
    max-width: 99vw;
  }
}

.main-hero-countries {
  font-size: 1.5rem;
  font-weight: 500;
  color: #ffbd50;
  text-align: center;
  margin-bottom: 20px;
}

.trusted-universities-section {
  background: #f8f9fa;
  padding: 48px 0 40px 0;
}
.trusted-universities-section .section-title {
  font-size: 2rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 8px;
}
.trusted-universities-section .p-small {
  color: #555;
  margin-bottom: 28px;
}
.trusted-uni-logo {
  height: 60px;
  width: auto;
  border-radius: 6px;
  filter: grayscale(30%);
  opacity: 0.85;
  transition: filter 0.3s, opacity 0.3s, box-shadow 0.3s;
  box-shadow: 0 1px 6px rgba(0,0,0,0.06);
}
.trusted-uni-logo:hover {
  filter: grayscale(0%);
  opacity: 1;
  box-shadow: 0 4px 16px rgba(0,0,0,0.13);
}

.trusted-universities-divider {
  border: none;
  border-top: 1.5px solid #ececec;
  margin: 0 0 32px 0;
}
.trusted-universities-section {
  background: #f8f9fa;
  padding: 36px 0 28px 0;
}
.trusted-universities-subtitle {
  font-size: 1rem;
  color: #888;
  margin-bottom: 0.2rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.trusted-universities-title {
  font-size: 1.35rem;
  font-weight: 600;
  color: #222;
  margin-bottom: 18px;
}
.trusted-uni-logo {
  height: 64px;
  width: auto;
  border-radius: 6px;
  filter: grayscale(30%);
  opacity: 0.92;
  transition: filter 0.3s, opacity 0.3s, box-shadow 0.3s;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
  border: 1.5px solid #e0e0e0;
  background: #fff;
  padding: 6px 10px;
}
.trusted-uni-logo:hover {
  filter: grayscale(0%);
  opacity: 1;
  box-shadow: 0 4px 16px rgba(0,0,0,0.13);
  border-color: #ffbd50;
}
.trusted-universities-more {
  font-size: 1rem;
  color: #888;
  margin-top: 10px;
  font-style: italic;
  letter-spacing: 0.01em;
}  

.highlight-visa {
    background-color: #ffeb3b;
    font-weight: bold;
    color: #222;
    padding: 0 4px;
    border-radius: 3px;
    font-size: 0.9em;
}

.trust-section {
  background: #fff;
  padding: 40px 0 30px 0;
  text-align: center;
}
.trust-section h2 {
  color: #222;
  font-weight: 700;
  margin-bottom: 30px;
}
.trust-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}
.trust-card {
  background: #f8f8f8;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  padding: 25px 20px 20px 20px;
  width: 230px;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.trust-card i {
  font-size: 2.2rem;
  color: #ffbd50;
  margin-bottom: 12px;
}
.trust-card h4 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: #222;
}
.trust-card p {
  font-size: 0.98rem;
  color: #444;
  margin: 0;
}
@media (max-width: 900px) {
  .trust-cards { flex-direction: column; align-items: center; }
  .trust-card { width: 90%; margin-bottom: 20px; }
}

/* Premium Scroll Animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-on-scroll.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.animate-on-scroll.animate-in:nth-child(2) {
    transition-delay: 0.1s;
}

.animate-on-scroll.animate-in:nth-child(3) {
    transition-delay: 0.2s;
}

.animate-on-scroll.animate-in:nth-child(4) {
    transition-delay: 0.3s;
}

/* Slide animations */
.slide-in-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide-in-left.animate-in {
    opacity: 1;
    transform: translateX(0);
}

.slide-in-right {
    opacity: 0;
    transform: translateX(30px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide-in-right.animate-in {
    opacity: 1;
    transform: translateX(0);
}

/* Scale animations */
.scale-in {
    opacity: 0;
    transform: scale(0.95);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.scale-in.animate-in {
    opacity: 1;
    transform: scale(1);
}

/* Fade animations */
.fade-in {
    opacity: 0;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in.animate-in {
    opacity: 1;
}

/* Enhanced Section Styles */
.basic-1, .basic-2, .basic-3, .basic-4, .basic-5 {
    padding: 6rem 0;
    position: relative;
    background: linear-gradient(135deg, #fbf9f5 0%, #ffffff 100%);
}

.basic-1::before, .basic-2::before, .basic-3::before, .basic-4::before, .basic-5::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
}

.basic-1 h2, .basic-2 h2, .basic-3 h2, .basic-4 h2, .basic-5 h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    text-align: center;
}

.basic-1 .p-large, .basic-2 .p-large, .basic-3 .p-large, .basic-4 .p-large, .basic-5 .p-large {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-light);
    margin-bottom: 3rem;
    text-align: center;
}

/* Enhanced Card Styles */
.card {
    background: var(--bg-white);
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-light);
    transition: var(--transition);
    border: 1px solid rgba(255, 189, 80, 0.1);
    position: relative;
    overflow: hidden;
    margin-bottom: 2rem;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-dark));
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-heavy);
}

.card-body {
    padding: 1.5rem 0;
}

.card-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.card-text {
    color: var(--text-light);
    line-height: 1.6;
}

/* Modern Service Cards */
.card-modern {
    background: var(--bg-white);
    border-radius: var(--border-radius-lg);
    padding: 2.5rem 2rem;
    box-shadow: var(--shadow-light);
    transition: var(--transition);
    border: 1px solid rgba(255, 189, 80, 0.1);
    position: relative;
    overflow: hidden;
    height: 100%;
    text-align: center;
}

.card-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-dark));
}

.card-modern:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-heavy);
}

.card-modern .card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--text-dark);
    font-size: 2rem;
    box-shadow: var(--shadow-light);
    transition: var(--transition);
}

.card-modern:hover .card-icon {
    transform: scale(1.1) rotate(5deg);
}

.card-modern .card-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.card-modern .card-text {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

/* Service Features Badges */
.service-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    margin-top: 1rem;
}

.service-features .badge {
    padding: 0.5rem 1rem;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge-primary {
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: white;
}

.badge-success {
    background: linear-gradient(135deg, #28a745, #1e7e34);
    color: white;
}

.badge-info {
    background: linear-gradient(135deg, #17a2b8, #117a8b);
    color: white;
}

.badge-warning {
    background: linear-gradient(135deg, #ffc107, #e0a800);
    color: #212529;
}

.badge-secondary {
    background: linear-gradient(135deg, #6c757d, #545b62);
    color: white;
}

.badge-dark {
    background: linear-gradient(135deg, #343a40, #1d2124);
    color: white;
}

/* Enhanced Text Gradient */
.text-gradient {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

/* Enhanced Spacing */
.mb-5 {
    margin-bottom: 3rem !important;
}

.mt-5 {
    margin-top: 3rem !important;
}

.mb-4 {
    margin-bottom: 1.5rem !important;
}

/* Premium Services Section */
.premium-services {
    background: linear-gradient(135deg, #fbf9f5 0%, #ffffff 50%, #f8f9fa 100%);
    position: relative;
    overflow: hidden;
}

.premium-services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(255, 189, 80, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 189, 80, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.section-divider-top {
    width: 120px;
    height: 5px;
    background: linear-gradient(90deg, #ffbd50, #f39c12);
    margin: 0 auto 2rem;
    border-radius: 3px;
    position: relative;
    box-shadow: 0 2px 8px rgba(255, 189, 80, 0.4);
}

.section-divider-top::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 24px;
    height: 24px;
    background: #ffbd50;
    border-radius: 50%;
    box-shadow: 0 0 0 6px rgba(255, 189, 80, 0.3), 0 4px 12px rgba(255, 189, 80, 0.4);
}

.section-divider-bottom {
    width: 120px;
    height: 5px;
    background: linear-gradient(90deg, #f39c12, #ffbd50);
    margin: 2rem auto 0;
    border-radius: 3px;
    position: relative;
    box-shadow: 0 2px 8px rgba(255, 189, 80, 0.4);
}

.section-divider-bottom::before {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 24px;
    height: 24px;
    background: #f39c12;
    border-radius: 50%;
    box-shadow: 0 0 0 6px rgba(255, 189, 80, 0.3), 0 4px 12px rgba(255, 189, 80, 0.4);
}

.premium-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: #000000;
    margin-bottom: 1.5rem;
    position: relative;
    text-shadow: 0 2px 4px rgba(0,0,0,0.15);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.premium-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #ffbd50, #f39c12);
    border-radius: 3px;
    box-shadow: 0 2px 4px rgba(255, 189, 80, 0.3);
}

.premium-subtitle {
    font-size: 1.2rem;
    color: #000000 !important;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
    font-weight: 600;
    text-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

/* Premium Cards */
.premium-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 189, 80, 0.2);
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.1),
        0 1px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.premium-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-dark), var(--primary-color));
    background-size: 200% 100%;
    animation: gradientShift 3s ease-in-out infinite;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.premium-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.15),
        0 8px 16px rgba(0, 0, 0, 0.1);
}

.premium-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.6s ease;
}

.premium-card:hover::after {
    left: 100%;
}

/* Premium Icons */
.premium-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    color: var(--text-dark);
    font-size: 2.2rem;
    box-shadow: 
        0 8px 25px rgba(255, 189, 80, 0.3),
        0 4px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.premium-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), transparent);
    border-radius: 50%;
    transform: scale(0);
    transition: transform 0.4s ease;
}

.premium-card:hover .premium-icon {
    transform: scale(1.15) rotate(8deg);
    box-shadow: 
        0 12px 35px rgba(255, 189, 80, 0.4),
        0 6px 15px rgba(0, 0, 0, 0.15);
}

.premium-card:hover .premium-icon::before {
    transform: scale(1);
}

/* Premium Card Content */
.premium-card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.2rem;
    line-height: 1.3;
    position: relative;
}

.premium-card-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-dark));
    border-radius: 1px;
}

.premium-card-text {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1.8rem;
    font-size: 1rem;
}

/* Premium Badges */
.premium-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    justify-content: center;
    margin-top: 1.5rem;
}

.premium-badges .badge {
    padding: 0.6rem 1.2rem;
    font-size: 0.8rem;
    font-weight: 600;
    border-radius: 25px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.premium-badges .badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Enhanced Badge Colors */
.badge-primary {
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.badge-success {
    background: linear-gradient(135deg, #28a745, #1e7e34);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.badge-info {
    background: linear-gradient(135deg, #17a2b8, #117a8b);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.badge-warning {
    background: linear-gradient(135deg, #ffc107, #e0a800);
    color: #212529;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.badge-secondary {
    background: linear-gradient(135deg, #6c757d, #545b62);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.badge-dark {
    background: linear-gradient(135deg, #343a40, #1d2124);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Premium Career Guidance Section */
.premium-career-guidance {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #fbf9f5 100%);
    position: relative;
    overflow: hidden;
}

.premium-career-guidance::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 30%, rgba(255, 189, 80, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(255, 189, 80, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.premium-career-guidance .premium-title {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    position: relative;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.premium-career-guidance .premium-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Career Guidance Specific Card Enhancements */
.premium-career-guidance .premium-card {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 189, 80, 0.15);
    box-shadow: 
        0 12px 35px rgba(0, 0, 0, 0.08),
        0 2px 10px rgba(0, 0, 0, 0.03);
}

.premium-career-guidance .premium-card:hover {
    transform: translateY(-15px) scale(1.03);
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.12),
        0 10px 20px rgba(0, 0, 0, 0.08);
}

.premium-career-guidance .premium-icon {
    width: 95px;
    height: 95px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    color: var(--text-dark);
    font-size: 2.4rem;
    box-shadow: 
        0 10px 30px rgba(255, 189, 80, 0.25),
        0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.premium-career-guidance .premium-card:hover .premium-icon {
    transform: scale(1.2) rotate(10deg);
    box-shadow: 
        0 15px 40px rgba(255, 189, 80, 0.35),
        0 8px 20px rgba(0, 0, 0, 0.12);
}

.premium-career-guidance .premium-card-title {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.3rem;
    line-height: 1.3;
    position: relative;
}

.premium-career-guidance .premium-card-text {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 2rem;
    font-size: 1.05rem;
}

/* Enhanced Badge Colors for Career Guidance */
.premium-career-guidance .badge-primary {
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.premium-career-guidance .badge-success {
    background: linear-gradient(135deg, #28a745, #1e7e34);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.premium-career-guidance .badge-info {
    background: linear-gradient(135deg, #17a2b8, #117a8b);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.premium-career-guidance .badge-warning {
    background: linear-gradient(135deg, #ffc107, #e0a800);
    color: #212529;
    border: 1px solid rgba(255, 255, 255, 0.4);
}

.premium-career-guidance .badge-secondary {
    background: linear-gradient(135deg, #6c757d, #545b62);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.premium-career-guidance .badge-dark {
    background: linear-gradient(135deg, #343a40, #1d2124);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

/* Professional CTA Buttons */
.cta-buttons-container {
    display: flex;
    flex-direction: row;
    gap: 1.5rem;
    margin-bottom: 3rem;
    max-width: 100%;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.cta-button {
    display: flex;
    align-items: center;
    padding: 1.4rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    border: 1px solid transparent;
    min-width: 200px;
    justify-content: center;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: var(--transition);
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.12);
}

.cta-button i:first-child {
    font-size: 1.2rem;
    margin-right: 0.8rem;
    width: 20px;
    text-align: center;
}

.cta-text {
    display: flex;
    flex-direction: column;
    flex: 1;
    text-align: center;
}

.cta-main {
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 0.2rem;
}

.cta-sub {
    font-size: 0.8rem;
    font-weight: 500;
    opacity: 0.8;
    line-height: 1.2;
}

.cta-arrow {
    font-size: 1rem;
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
}

.cta-button:hover .cta-arrow {
    transform: translateX(5px);
}

/* Primary CTA - University Admissions (Green) */
.cta-primary {
    background: linear-gradient(135deg, #28a745, #1e7e34);
    color: white;
    border-color: #1e7e34;
}

.cta-primary:hover {
    background: linear-gradient(135deg, #1e7e34, #28a745);
    color: white;
    border-color: #28a745;
}

/* Secondary CTA - Visa Consultation (Yellow/Orange) */
.cta-secondary {
    background: linear-gradient(135deg, #ffbd50, #ff9500);
    color: #222;
    border-color: #ff9500;
}

.cta-secondary:hover {
    background: linear-gradient(135deg, #ff9500, #ffbd50);
    color: #222;
    border-color: #ffbd50;
}

/* Tertiary CTA - Credit Transfer (Blue) */
.cta-tertiary {
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: white;
    border-color: #0056b3;
}

.cta-tertiary:hover {
    background: linear-gradient(135deg, #0056b3, #007bff);
    color: white;
    border-color: #007bff;
}

/* Responsive Design for CTAs */
@media (max-width: 768px) {
    .cta-buttons-container {
        max-width: 100%;
        gap: 0.8rem;
        flex-direction: column;
    }
    
    .cta-button {
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }
    
    .cta-main {
        font-size: 1rem;
    }
    
    .cta-sub {
        font-size: 0.8rem;
    }
}

/* Why Choose Us Section */
.feature-card {
    background: var(--bg-white);
    border-radius: var(--border-radius-lg);
    padding: 2.5rem 1.5rem;
    box-shadow: var(--shadow-light);
    transition: var(--transition);
    border: 1px solid rgba(255, 189, 80, 0.1);
    position: relative;
    overflow: hidden;
    height: 100%;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-dark));
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-heavy);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--text-dark);
    font-size: 2rem;
    box-shadow: var(--shadow-light);
    transition: var(--transition);
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
}

.feature-card h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.feature-card p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.feature-stats {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Advantage Lists */
.advantage-list {
    background: var(--bg-white);
    border-radius: var(--border-radius-lg);
    padding: 2.5rem;
    box-shadow: var(--shadow-light);
    border: 1px solid rgba(255, 189, 80, 0.1);
    height: 100%;
}

.advantage-list h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 2rem;
    text-align: center;
}

.advantage-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
    transition: var(--transition);
}

.advantage-item:hover {
    transform: translateX(5px);
}

.advantage-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    color: var(--text-dark);
    font-size: 1.2rem;
    flex-shrink: 0;
    box-shadow: var(--shadow-light);
    transition: var(--transition);
}

.advantage-item:hover .advantage-icon {
    transform: scale(1.1);
}

.advantage-content h5 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.advantage-content p {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 0.9rem;
    margin: 0;
}

/* Counter Animation */
.stat-number {
    transition: all 0.3s ease;
}

.stat-number.animate {
    animation: countUp 2s ease-out;
}

@keyframes countUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Enhanced Form Styles */
.form-1, .form-2 {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
}

.form-container {
    background: var(--bg-white);
    border-radius: var(--border-radius-lg);
    padding: 3rem;
    box-shadow: var(--shadow-medium);
    border: 1px solid rgba(255, 189, 80, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.form-control-input {
    border: 2px solid rgba(255, 189, 80, 0.2);
    border-radius: var(--border-radius);
    padding: 1rem;
    font-size: 1rem;
    transition: var(--transition);
    background: rgba(255, 255, 255, 0.9);
}

.form-control-input:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(255, 189, 80, 0.1);
    outline: none;
}

/* Enhanced Slider Styles */
.slider-1, .slider-2 {
    padding: 6rem 0;
    background: linear-gradient(135deg, #ffffff 0%, #fbf9f5 100%);
}

.swiper-container {
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-medium);
}

.swiper-slide {
    transition: var(--transition);
}

.swiper-slide:hover {
    transform: scale(1.02);
}

.swiper-button-next, .swiper-button-prev {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    border-radius: 50%;
    color: var(--text-dark);
    box-shadow: var(--shadow-light);
    transition: var(--transition);
}

.swiper-button-next:hover, .swiper-button-prev:hover {
    background: var(--primary-dark);
    transform: scale(1.1);
}

/* Enhanced Testimonial Styles */
.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.6;
    font-style: italic;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    position: relative;
}

.testimonial-text::before {
    content: '"';
    font-size: 3rem;
    color: var(--primary-color);
    position: absolute;
    top: -1rem;
    left: -1rem;
    opacity: 0.3;
}

.testimonial-author {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
}

/* Enhanced Footer Styles */
.footer {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: #fff;
    padding: 4rem 0 2rem;
}

.footer-col h5 {
    color: var(--primary-color);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.footer-col p, .footer-col a {
    color: #bdc3c7;
    transition: var(--transition);
}

.footer-col a:hover {
    color: var(--primary-color);
}

/* Enhanced Button Styles */
.btn-solid-lg, .btn-outline-lg {
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--border-radius);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-solid-lg {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--text-dark);
    border: none;
    box-shadow: var(--shadow-light);
}

.btn-outline-lg {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-solid-lg:hover, .btn-outline-lg:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
    text-decoration: none;
}

.btn-solid-lg:hover {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
}

.btn-outline-lg:hover {
    background: var(--primary-color);
    color: var(--text-dark);
}

/* Enhanced Image Styles */
.img-fluid {
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    transition: var(--transition);
}

.img-fluid:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-medium);
}

/* Enhanced Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3rem;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 2rem;
}

.p-large {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-light);
}

/* Enhanced List Styles */
.li-space-lg li {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
}

.li-space-lg li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

/* Enhanced Media Styles */
.media {
    background: var(--bg-white);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    box-shadow: var(--shadow-light);
    transition: var(--transition);
    margin-bottom: 1.5rem;
}

.media:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-medium);
}

/* Enhanced Bullet Styles */
.bullet {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-dark);
    font-weight: bold;
    font-size: 1.1rem;
    box-shadow: var(--shadow-light);
}

/* Enhanced Container Styles */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

/* Enhanced Row Styles */
.row {
    margin-left: -1rem;
    margin-right: -1rem;
}

.col-lg-6, .col-md-6, .col-sm-6 {
    padding-left: 1rem;
    padding-right: 1rem;
}

/* Enhanced Spacing */
.section-padding {
    padding: var(--section-padding);
}

/* Enhanced Background Patterns */
.pattern-bg {
    background-image: 
        radial-gradient(circle at 25% 25%, rgba(255, 189, 80, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(255, 189, 80, 0.1) 0%, transparent 50%);
    background-size: 100px 100px;
}

/* Enhanced Loading States */
.loading {
    position: relative;
    overflow: hidden;
}

.loading::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    animation: loading-shimmer 1.5s infinite;
}

@keyframes loading-shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

/* Enhanced Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}

/* Enhanced Selection */
::selection {
    background: var(--primary-color);
    color: var(--text-dark);
}

::-moz-selection {
    background: var(--primary-color);
    color: var(--text-dark);
}

/* Enhanced Focus States */
*:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* Enhanced Hover Effects */
.card:hover .card-icon {
    transform: scale(1.1) rotate(5deg);
}

.card-icon {
    transition: var(--transition);
}

/* Enhanced Performance */
.swiper-container {
    will-change: transform;
}

.card {
    will-change: transform;
}

/* Enhanced Accessibility */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Enhanced Mobile Optimizations */
@media (max-width: 767px) {
    .basic-1, .basic-2, .basic-3, .basic-4, .basic-5 {
        padding: 4rem 0;
    }
    
    .form-1, .form-2 {
        padding: 4rem 0;
    }
    
    .slider-1, .slider-2 {
        padding: 4rem 0;
    }
    
    .form-container {
        padding: 2rem;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.75rem;
    }
    
    h3 {
        font-size: 1.5rem;
    }
    
    .card {
        padding: 1.5rem;
    }
    
    .swiper-button-next, .swiper-button-prev {
        width: 40px;
        height: 40px;
    }
}

/* Enhanced Tablet Optimizations */
@media (max-width: 991px) {
    .basic-1, .basic-2, .basic-3, .basic-4, .basic-5 {
        padding: 5rem 0;
    }
    
    .form-1, .form-2 {
        padding: 5rem 0;
    }
    
    .slider-1, .slider-2 {
        padding: 5rem 0;
    }
    
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    h3 {
        font-size: 1.75rem;
    }
}

/* Enhanced Desktop Optimizations */
@media (min-width: 992px) {
    .basic-1, .basic-2, .basic-3, .basic-4, .basic-5 {
        padding: 7rem 0;
    }
    
    .form-1, .form-2 {
        padding: 7rem 0;
    }
    
    .slider-1, .slider-2 {
        padding: 7rem 0;
    }
    
    .container {
        max-width: 1200px;
    }
    
    .premium-title {
        font-size: 2.5rem;
    }
}

/* Tablet Optimizations for Headline */
@media (max-width: 991px) and (min-width: 768px) {
    .premium-title {
        font-size: 2rem;
    }
}

/* Mobile Optimizations for Headline */
@media (max-width: 767px) {
    .premium-title {
        font-size: 1.8rem;
        white-space: normal;
        line-height: 1.2;
    }
}

/* Notification Styles */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 1rem 2rem;
    border-radius: var(--border-radius);
    color: white;
    font-weight: 600;
    z-index: 10000;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    box-shadow: var(--shadow-medium);
}

.notification-success {
    background: linear-gradient(135deg, #27ae60, #2ecc71);
}

.notification-error {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
}

.notification-info {
    background: linear-gradient(135deg, #3498db, #2980b9);
}

/* Enhanced Loading States */
.btn-loading {
    position: relative;
    pointer-events: none;
}

.btn-loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid transparent;
    border-top: 2px solid currentColor;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Enhanced Form Validation */
.form-control-input.error {
    border-color: #e74c3c;
    box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.1);
}

.form-control-input.success {
    border-color: #27ae60;
    box-shadow: 0 0 0 3px rgba(39, 174, 96, 0.1);
}

.field-error {
    color: #e74c3c;
    font-size: 0.8rem;
    margin-top: 0.25rem;
    animation: slideInDown 0.3s ease-out;
}

@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Enhanced Lazy Loading */
.lazy {
    opacity: 0;
    transition: opacity 0.3s ease-in;
}

.lazy.loaded {
    opacity: 1;
}

/* Enhanced Keyboard Navigation */
.keyboard-navigation *:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* Enhanced Scroll Effects */
.parallax-bg {
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

/* Enhanced Hover Effects */
.hover-lift {
    transition: var(--transition);
}

.hover-lift:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-heavy);
}

/* Enhanced Text Effects */
.text-gradient {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-shadow {
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

/* Enhanced Section Dividers */
.section-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
}

/* ===== COMPREHENSIVE MOBILE FIXES FOR ALL DEVICES ===== */

/* Professional Mobile Menu Toggle Button - SINGLE VERSION */
@media (max-width: 991.98px) {
    .navbar-custom .navbar-toggler {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        background: linear-gradient(135deg, #ffbd50 0%, #f39c12 100%) !important;
        border: none !important;
        padding: 12px !important;
        border-radius: 50% !important;
        margin-right: 15px !important;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
        position: relative !important;
        z-index: 1001 !important;
        box-shadow: 0 4px 15px rgba(255, 189, 80, 0.3) !important;
        width: 48px !important;
        height: 48px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        overflow: hidden !important;
        backdrop-filter: blur(10px) !important;
        -webkit-backdrop-filter: blur(10px) !important;
    }
    
    .navbar-custom .navbar-toggler:hover {
        background: linear-gradient(135deg, #f39c12 0%, #e67e22 100%) !important;
        transform: scale(1.1) !important;
        box-shadow: 0 6px 20px rgba(255, 189, 80, 0.4) !important;
    }
    
    .navbar-custom .navbar-toggler:focus {
        outline: 2px solid #ffffff !important;
        outline-offset: 2px !important;
        box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.3) !important;
    }
    
    .navbar-custom .navbar-toggler-icon {
        display: inline-block !important;
        color: #ffffff !important;
        font-size: 1.4rem !important;
        font-weight: bold !important;
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2) !important;
        filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2)) !important;
    }
    
    /* Ensure the navbar brand doesn't overlap */
    .navbar-custom .navbar-brand {
        margin-right: auto !important;
        max-width: 60% !important;
    }
    
    .navbar-custom .navbar-brand img {
        max-height: 45px !important;
        width: auto !important;
    }
    
    /* Override Bootstrap's default hiding of toggle button */
    .navbar-expand-lg .navbar-toggler {
        display: block !important;
    }
    
    /* Professional navbar styling */
    .navbar-custom {
        background: rgba(255, 255, 255, 0.98) !important;
        backdrop-filter: blur(15px) !important;
        -webkit-backdrop-filter: blur(15px) !important;
        border-bottom: 1px solid rgba(255, 189, 80, 0.1) !important;
        padding: 0.5rem 1rem !important;
        box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08) !important;
    }
}

/* Additional mobile menu improvements for smaller screens */
@media (max-width: 767.98px) {
    .navbar-custom .navbar-toggler {
        width: 44px !important;
        height: 44px !important;
        padding: 10px !important;
    }
    
    .navbar-custom .navbar-toggler-icon {
        font-size: 1.2rem !important;
    }
    
    .navbar-custom .navbar-brand {
        max-width: 50% !important;
    }
    
    .navbar-custom .navbar-brand img {
        max-height: 40px !important;
    }
    
    /* Ensure proper spacing */
    .navbar-custom .navbar-nav {
        margin-top: 10px !important;
    }
    
    /* Professional mobile navbar */
    .navbar-custom {
        padding: 0.4rem 0.8rem !important;
    }
}

/* Ensure mobile menu is properly styled when open */
.navbar-custom .navbar-collapse.show {
    background: rgba(255, 255, 255, 0.98) !important;
    border-radius: 12px !important;
    margin-top: 10px !important;
    padding: 20px !important;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15) !important;
    position: absolute !important;
    top: 100% !important;
    left: 0 !important;
    right: 0 !important;
    z-index: 1000 !important;
    border: 1px solid rgba(255, 189, 80, 0.1) !important;
    backdrop-filter: blur(15px) !important;
    -webkit-backdrop-filter: blur(15px) !important;
}

.navbar-custom .navbar-collapse.show .navbar-nav {
    margin-bottom: 15px !important;
}

.navbar-custom .navbar-collapse.show .nav-link {
    color: #333 !important;
    padding: 15px 20px !important;
    border-bottom: 1px solid rgba(255, 189, 80, 0.1) !important;
    transition: all 0.3s ease !important;
    font-weight: 600 !important;
    font-size: 1rem !important;
    border-radius: 8px !important;
    margin-bottom: 5px !important;
}

.navbar-custom .navbar-collapse.show .nav-link:hover {
    background: rgba(255, 189, 80, 0.1) !important;
    color: #ffbd50 !important;
    transform: translateX(5px) !important;
}

/* Fix dropdown menus in mobile */
.navbar-custom .navbar-collapse.show .dropdown-menu {
    background: rgba(255, 255, 255, 0.95) !important;
    border: 1px solid rgba(255, 189, 80, 0.2) !important;
    border-radius: 8px !important;
    margin-top: 8px !important;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1) !important;
}

.navbar-custom .navbar-collapse.show .dropdown-item {
    color: #333 !important;
    padding: 12px 20px !important;
    font-weight: 500 !important;
    border-radius: 6px !important;
    margin: 2px 0 !important;
}

.navbar-custom .navbar-collapse.show .dropdown-item:hover {
    background: rgba(255, 189, 80, 0.15) !important;
    color: #ffbd50 !important;
}

/* Ensure social icons are visible in mobile menu */
.navbar-custom .navbar-collapse.show .social-icons {
    display: flex !important;
    justify-content: center !important;
    margin-top: 20px !important;
    padding-top: 20px !important;
    border-top: 1px solid rgba(255, 189, 80, 0.2) !important;
}

.navbar-custom .navbar-collapse.show .social-icons .fa-stack {
    margin: 0 8px !important;
}

/* Professional Mobile Menu Toggle Icon Management - SINGLE VERSION */
.navbar-custom .navbar-toggler-icon {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    display: inline-block !important;
    color: #ffffff !important;
    font-size: 1.4rem !important;
    font-weight: bold !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2) !important;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2)) !important;
}

/* Hamburger icon state */
.navbar-custom .navbar-toggler-icon.fas.fa-bars {
    transform: rotate(0deg) !important;
}

/* When menu is expanded, transform hamburger to X */
.navbar-custom button[aria-expanded='true'] .navbar-toggler-icon.fas.fa-bars {
    transform: rotate(90deg) !important;
}

/* Create X effect by using pseudo-element */
.navbar-custom button[aria-expanded='true'] .navbar-toggler-icon.fas.fa-bars::before {
    content: '\f00d' !important; /* FontAwesome X icon */
    font-family: 'Font Awesome 5 Free' !important;
    font-weight: 900 !important;
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    opacity: 1 !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

/* ===== COMPREHENSIVE MOBILE TEXT & FORM FIXES ===== */

/* Universal Mobile Text Readability Fixes */
@media (max-width: 767.98px) {
    /* Force all text to be readable on mobile */
    * {
        -webkit-text-size-adjust: 100% !important;
        -ms-text-size-adjust: 100% !important;
        text-size-adjust: 100% !important;
    }
    
    /* Ensure all text has proper contrast */
    body, p, h1, h2, h3, h4, h5, h6, span, div, a, label, li {
        color: #333 !important;
        font-weight: 500 !important;
        text-shadow: none !important;
    }
    
    /* Force black text for maximum readability */
    .text-white, .text-light, .text-muted {
        color: #333 !important;
        font-weight: 600 !important;
    }
    
    /* Enhanced text readability */
    p {
        font-size: 16px !important;
        line-height: 1.6 !important;
        margin-bottom: 1rem !important;
        color: #333 !important;
        font-weight: 500 !important;
    }
    
    /* Professional typography for mobile */
    h1 {
        font-size: 2.2rem !important;
        line-height: 1.2 !important;
        margin-bottom: 1.5rem !important;
        font-weight: 700 !important;
        color: #333 !important;
    }
    
    h2 {
        font-size: 1.8rem !important;
        line-height: 1.3 !important;
        margin-bottom: 1.2rem !important;
        font-weight: 600 !important;
        color: #333 !important;
    }
    
    h3 {
        font-size: 1.5rem !important;
        line-height: 1.3 !important;
        margin-bottom: 1rem !important;
        font-weight: 600 !important;
        color: #333 !important;
    }
    
    /* Better paragraph spacing */
    .p-large {
        font-size: 1.1rem !important;
        line-height: 1.6 !important;
        margin-bottom: 1.5rem !important;
        color: #333 !important;
        font-weight: 500 !important;
    }
}

/* ===== COMPREHENSIVE FORM & PLACEHOLDER FIXES ===== */

/* Universal Form Input Fixes for All Mobile Devices */
@media (max-width: 767.98px) {
    /* Force all form inputs to be readable */
    input[type="text"],
    input[type="email"],
    input[type="tel"],
    input[type="password"],
    input[type="number"],
    input[type="search"],
    input[type="url"],
    select,
    textarea,
    .form-control,
    .form-control-input,
    .form-control-select,
    .premium-input,
    .premium-select {
        /* Essential mobile form fixes */
        font-size: 16px !important; /* Prevents iOS zoom */
        line-height: 1.5 !important;
        padding: 14px 16px !important;
        border-radius: 8px !important;
        border: 2px solid #ffbd50 !important;
        background: #ffffff !important;
        color: #333 !important;
        font-weight: 600 !important;
        margin-bottom: 16px !important;
        width: 100% !important;
        box-sizing: border-box !important;
        -webkit-appearance: none !important;
        -moz-appearance: none !important;
        appearance: none !important;
        box-shadow: 0 2px 8px rgba(255, 189, 80, 0.2) !important;
    }
    
    /* Force placeholder text to be visible and readable */
    input::placeholder,
    select::placeholder,
    textarea::placeholder,
    .form-control::placeholder,
    .form-control-input::placeholder,
    .form-control-select::placeholder,
    .premium-input::placeholder,
    .premium-select::placeholder {
        color: #666 !important;
        opacity: 1 !important;
        font-weight: 600 !important;
        font-size: 16px !important;
        text-shadow: none !important;
    }
    
    /* Focus states for better visibility */
    input:focus,
    select:focus,
    textarea:focus,
    .form-control:focus,
    .form-control-input:focus,
    .form-control-select:focus,
    .premium-input:focus,
    .premium-select:focus {
        border-color: #ffbd50 !important;
        box-shadow: 0 0 0 4px rgba(255, 189, 80, 0.3) !important;
        outline: none !important;
        background: #ffffff !important;
        color: #333 !important;
    }
    
    /* Select dropdown fixes */
    select {
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%23ffbd50' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e") !important;
        background-position: right 12px center !important;
        background-repeat: no-repeat !important;
        background-size: 16px !important;
        padding-right: 40px !important;
    }
    
    /* Checkbox and radio button fixes */
    input[type="checkbox"],
    input[type="radio"] {
        width: 20px !important;
        height: 20px !important;
        margin-right: 10px !important;
        accent-color: #ffbd50 !important;
    }
    
    /* Label fixes for better readability */
    label {
        color: #333 !important;
        font-weight: 600 !important;
        font-size: 16px !important;
        margin-bottom: 8px !important;
        display: block !important;
    }
    
    /* Form group spacing */
    .form-group {
        margin-bottom: 20px !important;
    }
    
    /* Button fixes */
    button,
    .btn,
    .btn-primary,
    .btn-solid-lg,
    .btn-outline-lg,
    .btn-solid-reg,
    .btn-outline-reg {
        font-size: 16px !important;
        font-weight: 600 !important;
        padding: 14px 24px !important;
        border-radius: 8px !important;
        margin: 8px 0 !important;
        min-height: 48px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        transition: all 0.3s ease !important;
        color: #333 !important;
        background: #ffbd50 !important;
        border: 2px solid #ffbd50 !important;
        box-shadow: 0 4px 15px rgba(255, 189, 80, 0.4) !important;
    }
    
    button:hover,
    .btn:hover,
    .btn-primary:hover {
        background: #f39c12 !important;
        border-color: #f39c12 !important;
        transform: translateY(-2px) !important;
        box-shadow: 0 6px 20px rgba(255, 189, 80, 0.6) !important;
    }
}

/* ===== SPECIFIC FORM CONTAINER FIXES ===== */

/* Form container styling for better mobile experience */
@media (max-width: 767.98px) {
    .form-container {
        background: #ffffff !important;
        padding: 2rem !important;
        border-radius: 15px !important;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1) !important;
        border: 2px solid #ffbd50 !important;
        margin: 1rem 0 !important;
    }
    
    /* Premium form specific fixes */
    .premium-form {
        background: #ffffff !important;
        padding: 2rem !important;
        border-radius: 15px !important;
        box-shadow: 0 10px 30px rgba(255, 189, 80, 0.2) !important;
        border: 3px solid #ffbd50 !important;
    }
    
    /* Form header fixes */
    .form-header h3 {
        color: #333 !important;
        font-weight: 700 !important;
        font-size: 1.5rem !important;
        margin-bottom: 1rem !important;
    }
    
    .form-header p {
        color: #333 !important;
        font-weight: 500 !important;
        font-size: 1rem !important;
    }
}

/* ===== MOBILE MENU CONVERSION FIXES ===== */

/* Enhanced mobile menu for better conversion */
@media (max-width: 767.98px) {
    /* Improved container spacing */
    .container {
        padding-left: 20px !important;
        padding-right: 20px !important;
    }
    
    /* Better section spacing */
    .basic-1, .basic-2, .basic-3, .basic-4, .basic-5 {
        padding: 60px 0 !important;
    }
    
    .form-1, .form-2 {
        padding: 60px 0 !important;
    }
    
    .slider-1, .slider-2 {
        padding: 60px 0 !important;
    }
    
    .cards {
        padding: 60px 0 !important;
    }
    
    /* Professional card styling */
    .card {
        border-radius: 12px !important;
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08) !important;
        border: 1px solid rgba(255, 189, 80, 0.1) !important;
        margin-bottom: 20px !important;
        overflow: hidden !important;
        background: #ffffff !important;
    }
    
    .card:hover {
        transform: translateY(-4px) !important;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12) !important;
    }
    
    /* Professional header improvements */
    .header {
        padding-top: 120px !important;
        padding-bottom: 80px !important;
        min-height: 500px !important;
    }
    
    .header h1 {
        font-size: 2.5rem !important;
        margin-bottom: 1.5rem !important;
        color: #333 !important;
        font-weight: 700 !important;
    }
    
    .header .p-large {
        font-size: 1.2rem !important;
        margin-bottom: 2rem !important;
        color: #333 !important;
        font-weight: 500 !important;
    }
    
    /* Professional image styling */
    .img-fluid {
        border-radius: 12px !important;
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1) !important;
    }
    
    /* Professional testimonial styling */
    .testimonial-text {
        font-size: 1rem !important;
        line-height: 1.6 !important;
        font-style: italic !important;
        padding: 20px !important;
        background: rgba(255, 255, 255, 0.9) !important;
        border-radius: 12px !important;
        border-left: 4px solid #ffbd50 !important;
        color: #333 !important;
        font-weight: 500 !important;
    }
    
    .testimonial-author {
        font-size: 0.95rem !important;
        font-weight: 600 !important;
        margin-top: 1rem !important;
        color: #333 !important;
    }
    
    /* Professional footer styling */
    .footer {
        padding: 40px 0 20px 0 !important;
    }
    
    .footer-col {
        margin-bottom: 30px !important;
        text-align: center !important;
    }
    
    .footer-col h5 {
        margin-bottom: 1.2rem !important;
        color: #ffbd50 !important;
        font-weight: 600 !important;
    }
    
    /* Professional spacing improvements */
    .row {
        margin-left: -10px !important;
        margin-right: -10px !important;
    }
    
    .col-lg-6, .col-md-6, .col-sm-6, .col-12 {
        padding-left: 10px !important;
        padding-right: 10px !important;
    }
    
    /* Professional list styling */
    .li-space-lg li {
        margin-bottom: 12px !important;
        padding-left: 20px !important;
        color: #333 !important;
        font-weight: 500 !important;
    }
    
    /* Professional media styling */
    .media {
        margin-bottom: 20px !important;
        padding: 15px !important;
        border-radius: 8px !important;
        background: rgba(255, 255, 255, 0.8) !important;
    }
    
    /* Professional bullet styling */
    .bullet {
        min-width: 32px !important;
        height: 32px !important;
        font-size: 14px !important;
        line-height: 32px !important;
        border-radius: 50% !important;
    }
    
    /* Professional image container styling */
    .image-container {
        margin: 25px 0 !important;
    }
    
    /* Professional video styling */
    .video-wrapper {
        margin: 25px 0 !important;
        border-radius: 12px !important;
        overflow: hidden !important;
    }
    
    /* Professional testimonial image styling */
    .image-wrapper {
        margin-bottom: 25px !important;
    }
    
    /* Professional partner logo styling */
    .slider-container img {
        max-height: 60px !important;
        width: auto !important;
        filter: grayscale(100%) !important;
        transition: filter 0.3s ease !important;
    }
    
    .slider-container img:hover {
        filter: grayscale(0%) !important;
    }
    
    /* Professional performance improvements */
    .swiper-container {
        overflow: hidden !important;
        border-radius: 12px !important;
    }
    
    .swiper-slide {
        flex-shrink: 0 !important;
    }
    
    /* Professional accessibility improvements */
    .btn-solid-lg:focus, .btn-outline-lg:focus {
        outline: 2px solid #ffbd50 !important;
        outline-offset: 2px !important;
    }
    
    .form-control-input:focus {
        outline: 2px solid #ffbd50 !important;
        outline-offset: 2px !important;
    }
    
    /* Professional loading improvements */
    .spinner-wrapper {
        background: rgba(255, 255, 255, 0.98) !important;
        backdrop-filter: blur(10px) !important;
        -webkit-backdrop-filter: blur(10px) !important;
    }
    
    /* Professional scroll improvements */
    html {
        scroll-behavior: smooth !important;
    }
    
    /* Professional tap highlight improvements */
    * {
        -webkit-tap-highlight-color: rgba(255, 189, 80, 0.2) !important;
    }
}

/* Professional Mobile Call/WhatsApp Sidebar Improvements */
@media (max-width: 767.98px) {
    .call-sidebar, .whatsapp-sidebar {
        position: fixed !important;
        width: 56px !important;
        height: 56px !important;
        border-radius: 50% !important;
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15) !important;
        z-index: 10000 !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
        overflow: hidden !important;
        padding: 0 !important;
        backdrop-filter: blur(15px) !important;
        -webkit-backdrop-filter: blur(15px) !important;
        border: 2px solid rgba(255, 255, 255, 0.2) !important;
    }
    
    .call-sidebar {
        top: 120px !important;
        left: 20px !important;
        background: linear-gradient(135deg, #ffbd50 0%, #f39c12 100%) !important;
        box-shadow: 0 6px 25px rgba(255, 189, 80, 0.3) !important;
    }
    
    .whatsapp-sidebar {
        bottom: 120px !important;
        right: 20px !important;
        background: linear-gradient(135deg, #25d366 0%, #128c7e 100%) !important;
        box-shadow: 0 6px 25px rgba(37, 211, 102, 0.3) !important;
    }
    
    .call-sidebar a, .whatsapp-sidebar a {
        width: 100% !important;
        height: 100% !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        color: #fff !important;
        text-decoration: none !important;
        padding: 0 !important;
        position: relative !important;
    }
    
    .call-sidebar i, .whatsapp-sidebar i {
        font-size: 24px !important;
        margin: 0 !important;
        filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2)) !important;
        transition: all 0.3s ease !important;
        z-index: 2 !important;
    }
    
    .call-text, .call-number, .whatsapp-text, .whatsapp-number {
        display: none !important;
    }
    
    .call-sidebar:active, .call-sidebar:focus, .call-sidebar:hover,
    .whatsapp-sidebar:active, .whatsapp-sidebar:focus, .whatsapp-sidebar:hover {
        width: 180px !important;
        border-radius: 32px !important;
        box-shadow: 0 8px 24px rgba(0,0,0,0.22) !important;
        justify-content: flex-start !important;
    }
}

/* Professional Mobile Animations */
@keyframes pulse-glow {
    0% { box-shadow: 0 6px 25px rgba(255, 189, 80, 0.3); }
    50% { box-shadow: 0 6px 25px rgba(255, 189, 80, 0.6); }
    100% { box-shadow: 0 6px 25px rgba(255, 189, 80, 0.3); }
}

@keyframes whatsapp-pulse {
    0% { box-shadow: 0 6px 25px rgba(37, 211, 102, 0.3); }
    50% { box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6); }
    100% { box-shadow: 0 6px 25px rgba(37, 211, 102, 0.3); }
}

.call-sidebar {
    animation: pulse-glow 2s infinite !important;
}

.whatsapp-sidebar {
    animation: whatsapp-pulse 2s infinite !important;
}

/* Professional Mobile Button States */
.call-sidebar:active, .whatsapp-sidebar:active {
    transform: scale(0.95) !important;
    animation: none !important;
}

/* Professional Mobile Loading States */
.swiper-slide {
    transition: opacity 0.3s ease !important;
}

.swiper-slide-active {
    opacity: 1 !important;
}

.swiper-slide-prev, .swiper-slide-next {
    opacity: 0.7 !important;
}

/* Professional Mobile Slider Optimizations */
@media (max-width: 767.98px) {
    .header .swiper-container {
        border-radius: 12px !important;
        overflow: hidden !important;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1) !important;
    }
    
    /* Hide Progress Bar and Pagination Dots */
    .swiper-pagination,
    .swiper-pagination-bullets,
    .swiper-pagination-progressbar,
    .swiper-pagination-bullet,
    .swiper-pagination-bullet-active {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
    }
    
    .header .swiper-container img {
        border-radius: 12px !important;
        transition: transform 0.3s ease !important;
    }
    
    .header .swiper-container:hover img {
        transform: scale(1.02) !important;
    }
    
    .swiper-button-next, .swiper-button-prev {
        width: 40px !important;
        height: 40px !important;
        background: rgba(255, 255, 255, 0.9) !important;
        border-radius: 50% !important;
        backdrop-filter: blur(10px) !important;
        -webkit-backdrop-filter: blur(10px) !important;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1) !important;
        transition: all 0.3s ease !important;
    }
    
    .swiper-button-next:hover, .swiper-button-prev:hover {
        background: rgba(255, 255, 255, 1) !important;
        transform: scale(1.1) !important;
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15) !important;
    }
    
    .swiper-button-next::after, .swiper-button-prev::after {
        font-size: 16px !important;
        color: #333 !important;
        font-weight: bold !important;
    }
}

/* Professional Mobile Text Improvements */
@media (max-width: 767.98px) {
    h1, h2, h3, h4, h5, h6 {
        word-wrap: break-word !important;
        hyphens: auto !important;
    }
    
    /* Ensure navbar has proper z-index to stay above call button */
    .navbar-custom {
        z-index: 10001 !important;
    }
    
    /* Additional spacing for call button to avoid navbar overlap */
    .call-sidebar {
        z-index: 10000 !important;
    }
    
    .navbar-toggler:focus {
        outline: none !important;
        box-shadow: none !important;
    }
    
    /* Professional mobile content improvements */
    .text-container {
        padding: 25px 0 !important;
    }
    
    /* Professional mobile list improvements */
    .li-space-lg li {
        margin-bottom: 15px !important;
    }
    
    /* Professional mobile media improvements */
    .media {
        margin-bottom: 20px !important;
    }
    
    /* Professional mobile bullet improvements */
    .bullet {
        min-width: 30px !important;
        height: 30px !important;
        font-size: 14px !important;
        line-height: 30px !important;
    }
    
    /* Professional mobile image container improvements */
    .image-container {
        margin: 20px 0 !important;
    }
    
    /* Professional mobile video improvements */
    .video-wrapper {
        margin: 20px 0 !important;
    }
    
    /* Professional mobile testimonial improvements */
    .image-wrapper {
        margin-bottom: 20px !important;
    }
    
    /* Professional mobile partner logo improvements */
    .slider-container img {
        max-height: 60px !important;
        width: auto !important;
    }
    
    /* Professional mobile performance improvements */
    .swiper-container {
        overflow: hidden !important;
    }
    
    .swiper-slide {
        flex-shrink: 0 !important;
    }
    
    /* Professional mobile accessibility improvements */
    .btn-solid-lg:focus, .btn-outline-lg:focus {
        outline: 2px solid #ffbd50 !important;
        outline-offset: 2px !important;
    }
    
    .form-control-input:focus {
        outline: 2px solid #ffbd50 !important;
        outline-offset: 2px !important;
    }
    
    /* Professional mobile loading improvements */
    .spinner-wrapper {
        background: rgba(255, 255, 255, 0.95) !important;
    }
    
    /* Professional mobile scroll improvements */
    html {
        scroll-behavior: smooth !important;
    }
    
    /* Professional mobile tap highlight improvements */
    * {
        -webkit-tap-highlight-color: rgba(255, 189, 80, 0.3) !important;
    }
    
    /* Ensure call button doesn't interfere with content */
    .call-sidebar {
        pointer-events: auto !important;
    }
    
    /* Add some margin to main content to avoid call button overlap */
    .header {
        position: relative !important;
    }
}

/* Professional Mobile Debug Styles */
.mobile-menu-debug {
    position: fixed;
    top: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 10px;
    border-radius: 5px;
    font-size: 12px;
    z-index: 9999;
    display: none;
}

.mobile-menu-debug.show {
    display: block;
}
    margin: 3rem 0;
}

/* Enhanced Loading Skeleton */
.skeleton {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
}

@keyframes loading {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* Enhanced Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}

/* Enhanced Selection */
::selection {
    background: var(--primary-color);
    color: var(--text-dark);
}

::-moz-selection {
    background: var(--primary-color);
    color: var(--text-dark);
}

/* Enhanced Focus States */
*:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* Enhanced Hover Effects */
.card:hover .card-icon {
    transform: scale(1.1) rotate(5deg);
}

.card-icon {
    transition: var(--transition);
}

/* Enhanced Performance */
.swiper-container {
    will-change: transform;
}

.card {
    will-change: transform;
}

/* Enhanced Accessibility */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Professional Testimonials Section with Scroll Animations */
.testimonials-section {
    background: linear-gradient(135deg, #f8f8f8 0%, #ffffff 50%, #f8f8f8 100%);
    padding: 80px 0;
    position: relative;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255, 189, 80, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 189, 80, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.testimonials-section .section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #000000;
    margin-bottom: 1rem;
    position: relative;
    opacity: 0;
    transform: translateY(40px) scale(0.9);
    transition: all 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.testimonials-section .section-title.animate-in {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.testimonials-section .section-subtitle {
    font-size: 1.2rem;
    color: #333333;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
    opacity: 0;
    transform: translateY(40px) scale(0.9);
    transition: all 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transition-delay: 0.3s;
}

.testimonials-section .section-subtitle.animate-in {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* Professional Testimonial Cards with Premium Scroll Animations */
.testimonial-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(255, 189, 80, 0.1);
    transition: all 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    height: 100%;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(60px) scale(0.95);
    filter: blur(2px);
}

.testimonial-card:nth-child(even) {
    transform: translateY(60px) scale(0.95) rotateY(-5deg);
}

.testimonial-card:nth-child(odd) {
    transform: translateY(60px) scale(0.95) rotateY(5deg);
}

.testimonial-card.animate-in {
    opacity: 1;
    transform: translateY(0) scale(1) rotateY(0deg);
    filter: blur(0px);
}

.testimonial-card.animate-in:nth-child(even) {
    transform: translateY(0) scale(1) rotateY(0deg);
}

.testimonial-card.animate-in:nth-child(odd) {
    transform: translateY(0) scale(1) rotateY(0deg);
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ffbd50, #f39c12);
}

.testimonial-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    border-color: rgba(255, 189, 80, 0.3);
}

/* Testimonial Header */
.testimonial-header {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    position: relative;
}

.testimonial-avatar {
    position: relative;
    margin-right: 1rem;
    flex-shrink: 0;
}

.avatar-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #ffbd50;
    box-shadow: 0 4px 12px rgba(255, 189, 80, 0.2);
}

.country-badge {
    position: absolute;
    bottom: -5px;
    right: -5px;
    background: #ffbd50;
    color: #000000;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 8px;
    border: 2px solid #ffffff;
}

.testimonial-info {
    flex: 1;
}

.student-name {
    font-size: 1.2rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 0.25rem;
    line-height: 1.3;
}

.student-details {
    font-size: 0.9rem;
    color: #ffbd50;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.university {
    font-size: 0.85rem;
    color: #666666;
    margin-bottom: 0;
}

.quote-icon {
    position: absolute;
    top: 0;
    right: 0;
    color: #ffbd50;
    font-size: 1.5rem;
    opacity: 0.3;
}

/* Testimonial Content */
.testimonial-content {
    margin-bottom: 1.5rem;
}

.testimonial-content p {
    font-size: 1rem;
    line-height: 1.6;
    color: #333333;
    font-style: italic;
    margin: 0;
}

/* Testimonial Footer */
.testimonial-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid #f0f0f0;
}

.success-indicator {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #28a745;
    font-size: 0.9rem;
    font-weight: 600;
}

.success-indicator i {
    font-size: 1rem;
}

.rating {
    display: flex;
    gap: 2px;
}

.rating i {
    color: #ffbd50;
    font-size: 0.9rem;
}

/* Professional Testimonials Stats with Premium Animation */
.testimonials-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-top: 3rem;
    opacity: 0;
    transform: translateY(50px) scale(0.8);
    transition: all 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transition-delay: 0.6s;
}

.testimonials-stats.animate-in {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.stat-item {
    text-align: center;
    opacity: 0;
    transform: translateY(30px) scale(0.7);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.testimonials-stats.animate-in .stat-item {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.testimonials-stats.animate-in .stat-item:nth-child(1) {
    transition-delay: 0.8s;
}

.testimonials-stats.animate-in .stat-item:nth-child(2) {
    transition-delay: 1s;
}

.testimonials-stats.animate-in .stat-item:nth-child(3) {
    transition-delay: 1.2s;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #ffbd50;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    color: #333333;
    font-weight: 600;
}

/* Responsive Design */
@media (max-width: 768px) {
    .testimonials-section .section-title {
        font-size: 2rem;
    }
    
    .testimonial-card {
        padding: 1.5rem;
    }
    
    .testimonials-stats {
        flex-direction: column;
        gap: 2rem;
    }
    
    .testimonial-header {
        flex-direction: column;
        text-align: center;
    }
    
    .testimonial-avatar {
        margin-right: 0;
        margin-bottom: 1rem;
    }
    
    .quote-icon {
        position: static;
        margin-top: 1rem;
    }
}

.page-break {
    page-break-before: always !important;
}

/* Swiper CSS Library - Complete Integration */
/**
 * Swiper 4.4.6
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * http://www.idangero.us/swiper/
 *
 * Copyright 2014-2018 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: December 19, 2018
 */
.swiper-container {
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  /* Fix of Webkit flickering */
  z-index: 1;
}
.swiper-container-no-flexbox .swiper-slide {
  float: left;
}
.swiper-container-vertical > .swiper-wrapper {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}
.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  -o-transition-property: transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
}
.swiper-container-android .swiper-slide,
.swiper-wrapper {
  -webkit-transform: translate3d(0px, 0, 0);
  transform: translate3d(0px, 0, 0);
}
.swiper-container-multirow > .swiper-wrapper {
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.swiper-container-free-mode > .swiper-wrapper {
  -webkit-transition-timing-function: ease-out;
  -o-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
  margin: 0 auto;
}
.swiper-slide {
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  -o-transition-property: transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
}
.swiper-slide-invisible-blank {
  visibility: hidden;
}
/* Auto Height */
.swiper-container-autoheight,
.swiper-container-autoheight .swiper-slide {
  height: auto;
}
.swiper-container-autoheight .swiper-wrapper {
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-transition-property: height, -webkit-transform;
  transition-property: height, -webkit-transform;
  -o-transition-property: transform, height;
  transition-property: transform, height;
  transition-property: transform, height, -webkit-transform;
}
/* 3D Effects */
.swiper-container-3d {
  -webkit-perspective: 1200px;
  perspective: 1200px;
}
.swiper-container-3d .swiper-wrapper,
.swiper-container-3d .swiper-slide,
.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right,
.swiper-container-3d .swiper-slide-shadow-top,
.swiper-container-3d .swiper-slide-shadow-bottom,
.swiper-container-3d .swiper-cube-shadow {
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
}
.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right,
.swiper-container-3d .swiper-slide-shadow-top,
.swiper-container-3d .swiper-slide-shadow-bottom {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}
.swiper-container-3d .swiper-slide-shadow-left {
  background-image: -webkit-gradient(linear, right top, left top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: -webkit-linear-gradient(right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: -o-linear-gradient(right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-container-3d .swiper-slide-shadow-right {
  background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-container-3d .swiper-slide-shadow-top {
  background-image: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: -webkit-linear-gradient(bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: -o-linear-gradient(bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-container-3d .swiper-slide-shadow-bottom {
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: -webkit-linear-gradient(top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: -o-linear-gradient(top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
/* IE10 Windows Phone 8 Fixes */
.swiper-container-wp8-horizontal,
.swiper-container-wp8-horizontal > .swiper-wrapper {
  -ms-touch-action: pan-y;
  touch-action: pan-y;
}
.swiper-container-wp8-vertical,
.swiper-container-wp8-vertical > .swiper-wrapper {
  -ms-touch-action: pan-x;
  touch-action: pan-x;
}
.swiper-button-prev,
.swiper-button-next {
  position: absolute;
  top: 50%;
  width: 27px;
  height: 44px;
  margin-top: -22px;
  z-index: 10;
  cursor: pointer;
  background-size: 27px 44px;
  background-position: center;
  background-repeat: no-repeat;
}
.swiper-button-prev.swiper-button-disabled,
.swiper-button-next.swiper-button-disabled {
  opacity: 0.35;
  cursor: auto;
  pointer-events: none;
}
.swiper-button-prev,
.swiper-container-rtl .swiper-button-next {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23007aff'%2F%3E%3C%2Fsvg%3E");
  left: 10px;
  right: auto;
}
.swiper-button-next,
.swiper-container-rtl .swiper-button-prev {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23007aff'%2F%3E%3C%2Fsvg%3E");
  right: 10px;
  left: auto;
}
.swiper-button-prev.swiper-button-white,
.swiper-container-rtl .swiper-button-next.swiper-button-white {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23ffffff'%2F%3E%3C%2Fsvg%3E");
}
.swiper-button-next.swiper-button-white,
.swiper-container-rtl .swiper-button-prev.swiper-button-white {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23ffffff'%2F%3E%3C%2Fsvg%3E");
}
.swiper-button-prev.swiper-button-black,
.swiper-container-rtl .swiper-button-next.swiper-button-black {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23000000'%2F%3E%3C%2Fsvg%3E");
}
.swiper-button-next.swiper-button-black,
.swiper-container-rtl .swiper-button-prev.swiper-button-black {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23000000'%2F%3E%3C%2Fsvg%3E");
}
.swiper-button-lock {
  display: none;
}
.swiper-pagination {
  position: absolute;
  text-align: center;
  -webkit-transition: 300ms opacity;
  -o-transition: 300ms opacity;
  transition: 300ms opacity;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  z-index: 10;
}
.swiper-pagination.swiper-pagination-hidden {
  opacity: 0;
}
/* Common Styles */
.swiper-pagination-fraction,
.swiper-pagination-custom,
.swiper-container-horizontal > .swiper-pagination-bullets {
  bottom: 10px;
  left: 0;
  width: 100%;
}
/* Bullets */
.swiper-pagination-bullets-dynamic {
  overflow: hidden;
  font-size: 0;
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  -webkit-transform: scale(0.33);
  -ms-transform: scale(0.33);
  transform: scale(0.33);
  position: relative;
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
  -webkit-transform: scale(0.66);
  -ms-transform: scale(0.66);
  transform: scale(0.66);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
  -webkit-transform: scale(0.33);
  -ms-transform: scale(0.33);
  transform: scale(0.33);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
  -webkit-transform: scale(0.66);
  -ms-transform: scale(0.66);
  transform: scale(0.66);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
  -webkit-transform: scale(0.33);
  -ms-transform: scale(0.33);
  transform: scale(0.33);
}
.swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  display: inline-block;
  border-radius: 100%;
  background: #000;
  opacity: 0.2;
}
button.swiper-pagination-bullet {
  border: none;
  margin: 0;
  padding: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer;
}
.swiper-pagination-bullet-active {
  opacity: 1;
  background: #007aff;
}
.swiper-container-vertical > .swiper-pagination-bullets {
  right: 10px;
  top: 50%;
  -webkit-transform: translate3d(0px, -50%, 0);
  transform: translate3d(0px, -50%, 0);
}
.swiper-container-vertical > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 6px 0;
  display: block;
}
.swiper-container-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 8px;
}
.swiper-container-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  display: inline-block;
  -webkit-transition: 200ms top, 200ms -webkit-transform;
  transition: 200ms top, 200ms -webkit-transform;
  -o-transition: 200ms transform, 200ms top;
  transition: 200ms transform, 200ms top;
  transition: 200ms transform, 200ms top, 200ms -webkit-transform;
}
.swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 4px;
}
.swiper-container-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  white-space: nowrap;
}
.swiper-container-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  -webkit-transition: 200ms left, 200ms -webkit-transform;
  transition: 200ms left, 200ms -webkit-transform;
  -o-transition: 200ms transform, 200ms left;
  transition: 200ms transform, 200ms left;
  transition: 200ms transform, 200ms left, 200ms -webkit-transform;
}
.swiper-container-horizontal.swiper-container-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  -webkit-transition: 200ms right, 200ms -webkit-transform;
  transition: 200ms right, 200ms -webkit-transform;
  -o-transition: 200ms transform, 200ms right;
  transition: 200ms transform, 200ms right;
  transition: 200ms transform, 200ms right, 200ms -webkit-transform;
}
/* Progress */
.swiper-pagination-progressbar {
  background: rgba(0, 0, 0, 0.25);
  position: absolute;
}
.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: #007aff;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
  -webkit-transform-origin: left top;
  -ms-transform-origin: left top;
  transform-origin: left top;
}
.swiper-container-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  -webkit-transform-origin: right top;
  -ms-transform-origin: right top;
  transform-origin: right top;
}
.swiper-container-horizontal > .swiper-pagination-progressbar,
.swiper-container-vertical > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
  width: 100%;
  height: 4px;
  left: 0;
  top: 0;
}
.swiper-container-vertical > .swiper-pagination-progressbar,
.swiper-container-horizontal > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
  width: 4px;
  height: 100%;
  left: 0;
  top: 0;
}
.swiper-pagination-white .swiper-pagination-bullet-active {
  background: #ffffff;
}
.swiper-pagination-progressbar.swiper-pagination-white {
  background: rgba(255, 255, 255, 0.25);
}
.swiper-pagination-progressbar.swiper-pagination-white .swiper-pagination-progressbar-fill {
  background: #ffffff;
}
.swiper-pagination-black .swiper-pagination-bullet-active {
  background: #000000;
}
.swiper-pagination-progressbar.swiper-pagination-black {
  background: rgba(0, 0, 0, 0.25);
}
.swiper-pagination-progressbar.swiper-pagination-black .swiper-pagination-progressbar-fill {
  background: #000000;
}
.swiper-pagination-lock {
  display: none;
}
/* Scrollbar */
.swiper-scrollbar {
  border-radius: 10px;
  position: relative;
  -ms-touch-action: none;
  background: rgba(0, 0, 0, 0.1);
}
.swiper-container-horizontal > .swiper-scrollbar {
  position: absolute;
  left: 1%;
  bottom: 3px;
  z-index: 50;
  height: 5px;
  width: 98%;
}
.swiper-container-vertical > .swiper-scrollbar {
  position: absolute;
  right: 3px;
  top: 1%;
  z-index: 50;
  width: 5px;
  height: 98%;
}
.swiper-scrollbar-drag {
  height: 100%;
  width: 100%;
  position: relative;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 10px;
  left: 0;
  top: 0;
}
.swiper-scrollbar-cursor-drag {
  cursor: move;
}
.swiper-scrollbar-lock {
  display: none;
}
.swiper-zoom-container {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
}
.swiper-zoom-container > img,
.swiper-zoom-container > svg,
.swiper-zoom-container > canvas {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}
.swiper-slide-zoomed {
  cursor: move;
}
/* Preloader */
.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  -webkit-transform-origin: 50%;
  -ms-transform-origin: 50%;
  transform-origin: 50%;
  -webkit-animation: swiper-preloader-spin 1s steps(12, end) infinite;
  animation: swiper-preloader-spin 1s steps(12, end) infinite;
}
.swiper-lazy-preloader:after {
  display: block;
  content: '';
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20viewBox%3D'0%200%20120%20120'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20xmlns%3Axlink%3D'http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink'%3E%3Cdefs%3E%3Cline%20id%3D'l'%20x1%3D'60'%20x2%3D'60'%20y1%3D'7'%20y2%3D'27'%20stroke%3D'%236c6c6c'%20stroke-width%3D'11'%20stroke-linecap%3D'round'%2F%3E%3C%2Fdefs%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(30%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(60%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(90%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(120%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(150%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.37'%20transform%3D'rotate(180%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.46'%20transform%3D'rotate(210%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.56'%20transform%3D'rotate(240%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.66'%20transform%3D'rotate(270%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.75'%20transform%3D'rotate(300%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.85'%20transform%3D'rotate(330%2060%2C60)'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
  background-position: 50%;
  background-size: 100%;
  background-repeat: no-repeat;
}
.swiper-lazy-preloader-white:after {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20viewBox%3D'0%200%20120%20120'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20xmlns%3Axlink%3D'http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink'%3E%3Cdefs%3E%3Cline%20id%3D'l'%20x1%3D'60'%20x2%3D'60'%20y1%3D'7'%20y2%3D'27'%20stroke%3D'%23fff'%20stroke-width%3D'11'%20stroke-linecap%3D'round'%2F%3E%3C%2Fdefs%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(30%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(60%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(90%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(120%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(150%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.37'%20transform%3D'rotate(180%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.46'%20transform%3D'rotate(210%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.56'%20transform%3D'rotate(240%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.66'%20transform%3D'rotate(270%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.75'%20transform%3D'rotate(300%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.85'%20transform%3D'rotate(330%2060%2C60)'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
}
@-webkit-keyframes swiper-preloader-spin {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes swiper-preloader-spin {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
/* a11y */
.swiper-container .swiper-notification {
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
  opacity: 0;
  z-index: -1000;
}
.swiper-container-fade.swiper-container-free-mode .swiper-slide {
  -webkit-transition-timing-function: ease-out;
  -o-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.swiper-container-fade .swiper-slide {
  pointer-events: none;
  -webkit-transition-property: opacity;
  -o-transition-property: opacity;
  transition-property: opacity;
}
.swiper-container-fade .swiper-slide .swiper-slide {
  pointer-events: none;
}
.swiper-container-fade .swiper-slide-active,
.swiper-container-fade .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}
.swiper-container-cube {
  overflow: visible;
}
.swiper-container-cube .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
  visibility: hidden;
  -webkit-transform-origin: 0 0;
  -ms-transform-origin: 0 0;
  transform-origin: 0 0;
  width: 100%;
  height: 100%;
}
.swiper-container-cube .swiper-slide .swiper-slide {
  pointer-events: none;
}
.swiper-container-cube.swiper-container-rtl .swiper-slide {
  -webkit-transform-origin: 100% 0;
  -ms-transform-origin: 100% 0;
  transform-origin: 100% 0;
}
.swiper-container-cube .swiper-slide-active,
.swiper-container-cube .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}
.swiper-container-cube .swiper-slide-active,
.swiper-container-cube .swiper-slide-next,
.swiper-container-cube .swiper-slide-prev,
.swiper-container-cube .swiper-slide-next + .swiper-slide {
  pointer-events: auto;
  visibility: visible;
}
.swiper-container-cube .swiper-slide-shadow-top,
.swiper-container-cube .swiper-slide-shadow-bottom,
.swiper-container-cube .swiper-slide-shadow-left,
.swiper-container-cube .swiper-slide-shadow-right {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.swiper-container-cube .swiper-cube-shadow {
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0.6;
  -webkit-filter: blur(50px);
  filter: blur(50px);
  z-index: 0;
}
.swiper-container-flip {
  overflow: visible;
}
.swiper-container-flip .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
}
.swiper-container-flip .swiper-slide .swiper-slide {
  pointer-events: none;
}
.swiper-container-flip .swiper-slide-active,
.swiper-container-flip .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}
.swiper-container-flip .swiper-slide-shadow-top,
.swiper-container-flip .swiper-slide-shadow-bottom,
.swiper-container-flip .swiper-slide-shadow-left,
.swiper-container-flip .swiper-slide-shadow-right {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.swiper-container-coverflow .swiper-wrapper {
  /* Windows 8 IE 10 fix */
  -ms-perspective: 1200px;
}

/* Magnific Popup CSS */
.mfp-bg {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1042;
  overflow: hidden;
  position: fixed;
  background: #0b0b0b;
  opacity: 0.8; }

.mfp-wrap {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1043;
  position: fixed;
  outline: none !important;
  -webkit-backface-visibility: hidden; }

.mfp-container {
  text-align: center;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  padding: 0 8px;
  box-sizing: border-box; }

.mfp-container:before {
  content: '';
  display: inline-block;
  height: 100%;
  vertical-align: middle; }

.mfp-align-top .mfp-container:before {
  display: none; }

.mfp-content {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  margin: 0 auto;
  text-align: left;
  z-index: 1045; }

.mfp-inline-holder .mfp-content,
.mfp-ajax-holder .mfp-content {
  width: 100%;
  cursor: auto; }

.mfp-ajax-cur {
  cursor: progress; }

.mfp-zoom-out-cur, .mfp-zoom-out-cur .mfp-image-holder .mfp-close {
  cursor: -moz-zoom-out;
  cursor: -webkit-zoom-out;
  cursor: zoom-out; }

.mfp-zoom {
  cursor: pointer;
  cursor: -webkit-zoom-in;
  cursor: -moz-zoom-in;
  cursor: zoom-in; }

.mfp-auto-cursor .mfp-content {
  cursor: auto; }

.mfp-close,
.mfp-arrow,
.mfp-preloader,
.mfp-counter {
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none; }

.mfp-loading.mfp-figure {
  display: none; }

.mfp-hide {
  display: none !important; }

.mfp-preloader {
  color: #CCC;
  position: absolute;
  top: 50%;
  width: auto;
  text-align: center;
  margin-top: -0.8em;
  left: 8px;
  right: 8px;
  z-index: 1044; }
  .mfp-preloader a {
    color: #CCC; }
    .mfp-preloader a:hover {
      color: #FFF; }

.mfp-s-ready .mfp-preloader {
  display: none; }

.mfp-s-error .mfp-content {
  display: none; }

button.mfp-close,
button.mfp-arrow {
  overflow: visible;
  cursor: pointer;
  background: transparent;
  border: 0;
  -webkit-appearance: none;
  display: block;
  outline: none;
  padding: 0;
  z-index: 1046;
  box-shadow: none;
  touch-action: manipulation; }

button::-moz-focus-inner {
  padding: 0;
  border: 0; }

.mfp-close {
  width: 44px;
  height: 44px;
  line-height: 44px;
  position: absolute;
  right: 0;
  top: 0;
  text-decoration: none;
  text-align: center;
  opacity: 0.65;
  padding: 0 0 18px 10px;
  color: #FFF;
  font-style: normal;
  font-size: 28px;
  font-family: Arial, Baskerville, monospace; }
  .mfp-close:hover,
  .mfp-close:focus {
    opacity: 1; }
  .mfp-close:active {
    top: 1px; }

.mfp-close-btn-in .mfp-close {
  color: #333; }

.mfp-image-holder .mfp-close,
.mfp-iframe-holder .mfp-close {
  color: #FFF;
  right: -6px;
  text-align: right;
  padding-right: 6px;
  width: 100%; }

.mfp-counter {
  position: absolute;
  top: 0;
  right: 0;
  color: #CCC;
  font-size: 12px;
  line-height: 18px;
  white-space: nowrap; }

.mfp-arrow {
  position: absolute;
  opacity: 0.65;
  margin: 0;
  top: 50%;
  margin-top: -55px;
  padding: 0;
  width: 90px;
  height: 110px;
  -webkit-tap-highlight-color: transparent; }
  .mfp-arrow:active {
    margin-top: -54px; }
  .mfp-arrow:hover,
  .mfp-arrow:focus {
    opacity: 1; }
  .mfp-arrow:before,
  .mfp-arrow:after {
    content: '';
    display: block;
    width: 0;
    height: 0;
    position: absolute;
    left: 0;
    top: 0;
    margin-top: 35px;
    margin-left: 35px;
    border: medium inset transparent; }
  .mfp-arrow:after {
    border-top-width: 13px;
    border-bottom-width: 13px;
    top: 8px; }
  .mfp-arrow:before {
    border-top-width: 21px;
    border-bottom-width: 21px;
    opacity: 0.7; }

.mfp-arrow-left {
  left: 0; }
  .mfp-arrow-left:after {
    border-right: 17px solid #FFF;
    margin-left: 31px; }
  .mfp-arrow-left:before {
    margin-left: 25px;
    border-right: 27px solid #3F3F3F; }

.mfp-arrow-right {
  right: 0; }
  .mfp-arrow-right:after {
    border-left: 17px solid #FFF;
    margin-left: 39px; }
  .mfp-arrow-right:before {
    border-left: 27px solid #3F3F3F; }

.mfp-iframe-holder {
  padding-top: 40px;
  padding-bottom: 40px; }
  .mfp-iframe-holder .mfp-content {
    line-height: 0;
    width: 100%;
    max-width: 900px; }
  .mfp-iframe-holder .mfp-close {
    top: -40px; }

.mfp-iframe-scaler {
  width: 100%;
  height: 0;
  overflow: hidden;
  padding-top: 56.25%; }
  .mfp-iframe-scaler iframe {
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
    background: #000; }

/* Main image in popup */
img.mfp-img {
  width: auto;
  max-width: 100%;
  height: auto;
  display: block;
  line-height: 0;
  box-sizing: border-box;
  padding: 40px 0 40px;
  margin: 0 auto; }

/* The shadow behind the image */
.mfp-figure {
  line-height: 0; }
  .mfp-figure:after {
    content: '';
    position: absolute;
    left: 0;
    top: 40px;
    bottom: 40px;
    display: block;
    right: 0;
    width: auto;
    height: auto;
    z-index: -1;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
    background: #444; }
  .mfp-figure small {
    color: #BDBDBD;
    display: block;
    font-size: 12px;
    line-height: 14px; }
  .mfp-figure figure {
    margin: 0; }

.mfp-bottom-bar {
  margin-top: -36px;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  cursor: auto; }

.mfp-title {
  text-align: left;
  line-height: 18px;
  color: #F3F3F3;
  word-wrap: break-word;
  padding-right: 36px; }

.mfp-image-holder .mfp-content {
  max-width: 100%; }

.mfp-gallery .mfp-image-holder .mfp-figure {
  cursor: pointer; }

@media screen and (max-width: 800px) and (orientation: landscape), screen and (max-height: 300px) {
  /**
       * Remove all paddings around the image on small screen
       */
  .mfp-img-mobile .mfp-image-holder {
    padding-left: 0;
    padding-right: 0; }
  .mfp-img-mobile img.mfp-img {
    padding: 0; }
  .mfp-img-mobile .mfp-figure:after {
    top: 0;
    bottom: 0; }
  .mfp-img-mobile .mfp-figure small {
    display: inline;
    margin-left: 5px; }
  .mfp-img-mobile .mfp-bottom-bar {
    background: rgba(0, 0, 0, 0.6);
    bottom: 0;
    margin: 0;
    top: auto;
    padding: 3px 5px;
    position: fixed;
    box-sizing: border-box; }
    .mfp-img-mobile .mfp-bottom-bar:empty {
      padding: 0; }
  .mfp-img-mobile .mfp-counter {
    right: 5px;
    top: 3px; }
  .mfp-img-mobile .mfp-close {
    top: 0;
    right: 0;
    width: 35px;
    height: 35px;
    line-height: 35px;
    background: rgba(0, 0, 0, 0.6);
    position: fixed;
    text-align: center;
    padding: 0; } }

@media all and (max-width: 900px) {
  .mfp-arrow {
    -webkit-transform: scale(0.75);
    transform: scale(0.75); }
  .mfp-arrow-left {
    -webkit-transform-origin: 0;
    transform-origin: 0; }
  .mfp-arrow-right {
    -webkit-transform-origin: 100%;
    transform-origin: 100%; }
  .mfp-container {
    padding-left: 6px;
    padding-right: 6px; } }/ * ! 
 
   *   F o n t   A w e s o m e   F r e e   5 . 1 0 . 1   b y   @ f o n t a w e s o m e   -   h t t p s : / / f o n t a w e s o m e . c o m 
 
   *   L i c e n s e   -   h t t p s : / / f o n t a w e s o m e . c o m / l i c e n s e / f r e e   ( I c o n s :   C C   B Y   4 . 0 ,   F o n t s :   S I L   O F L   1 . 1 ,   C o d e :   M I T   L i c e n s e ) 
 
   * / 
 
 . f a , 
 
 . f a s , 
 
 . f a r , 
 
 . f a l , 
 
 . f a d , 
 
 . f a b   { 
 
     - m o z - o s x - f o n t - s m o o t h i n g :   g r a y s c a l e ; 
 
     - w e b k i t - f o n t - s m o o t h i n g :   a n t i a l i a s e d ; 
 
     d i s p l a y :   i n l i n e - b l o c k ; 
 
     f o n t - s t y l e :   n o r m a l ; 
 
     f o n t - v a r i a n t :   n o r m a l ; 
 
     t e x t - r e n d e r i n g :   a u t o ; 
 
     l i n e - h e i g h t :   1 ;   } 
 
 
 
 . f a - l g   { 
 
     f o n t - s i z e :   1 . 3 3 3 3 3 e m ; 
 
     l i n e - h e i g h t :   0 . 7 5 e m ; 
 
     v e r t i c a l - a l i g n :   - . 0 6 6 7 e m ;   } 
 
 
 
 . f a - x s   { 
 
     f o n t - s i z e :   . 7 5 e m ;   } 
 
 
 
 . f a - s m   { 
 
     f o n t - s i z e :   . 8 7 5 e m ;   } 
 
 
 
 . f a - 1 x   { 
 
     f o n t - s i z e :   1 e m ;   } 
 
 
 
 . f a - 2 x   { 
 
     f o n t - s i z e :   2 e m ;   } 
 
 
 
 . f a - 3 x   { 
 
     f o n t - s i z e :   3 e m ;   } 
 
 
 
 . f a - 4 x   { 
 
     f o n t - s i z e :   4 e m ;   } 
 
 
 
 . f a - 5 x   { 
 
     f o n t - s i z e :   5 e m ;   } 
 
 
 
 . f a - 6 x   { 
 
     f o n t - s i z e :   6 e m ;   } 
 
 
 
 . f a - 7 x   { 
 
     f o n t - s i z e :   7 e m ;   } 
 
 
 
 . f a - 8 x   { 
 
     f o n t - s i z e :   8 e m ;   } 
 
 
 
 . f a - 9 x   { 
 
     f o n t - s i z e :   9 e m ;   } 
 
 
 
 . f a - 1 0 x   { 
 
     f o n t - s i z e :   1 0 e m ;   } 
 
 
 
 . f a - f w   { 
 
     t e x t - a l i g n :   c e n t e r ; 
 
     w i d t h :   1 . 2 5 e m ;   } 
 
 
 
 . f a - u l   { 
 
     l i s t - s t y l e - t y p e :   n o n e ; 
 
     m a r g i n - l e f t :   2 . 5 e m ; 
 
     p a d d i n g - l e f t :   0 ;   } 
 
     . f a - u l   >   l i   { 
 
         p o s i t i o n :   r e l a t i v e ;   } 
 
 
 
 . f a - l i   { 
 
     l e f t :   - 2 e m ; 
 
     p o s i t i o n :   a b s o l u t e ; 
 
     t e x t - a l i g n :   c e n t e r ; 
 
     w i d t h :   2 e m ; 
 
     l i n e - h e i g h t :   i n h e r i t ;   } 
 
 
 
 . f a - b o r d e r   { 
 
     b o r d e r :   s o l i d   0 . 0 8 e m   # e e e ; 
 
     b o r d e r - r a d i u s :   . 1 e m ; 
 
     p a d d i n g :   . 2 e m   . 2 5 e m   . 1 5 e m ;   } 
 
 
 
 . f a - p u l l - l e f t   { 
 
     f l o a t :   l e f t ;   } 
 
 
 
 . f a - p u l l - r i g h t   { 
 
     f l o a t :   r i g h t ;   } 
 
 
 
 . f a . f a - p u l l - l e f t , 
 
 . f a s . f a - p u l l - l e f t , 
 
 . f a r . f a - p u l l - l e f t , 
 
 . f a l . f a - p u l l - l e f t , 
 
 . f a b . f a - p u l l - l e f t   { 
 
     m a r g i n - r i g h t :   . 3 e m ;   } 
 
 
 
 . f a . f a - p u l l - r i g h t , 
 
 . f a s . f a - p u l l - r i g h t , 
 
 . f a r . f a - p u l l - r i g h t , 
 
 . f a l . f a - p u l l - r i g h t , 
 
 . f a b . f a - p u l l - r i g h t   { 
 
     m a r g i n - l e f t :   . 3 e m ;   } 
 
 
 
 . f a - s p i n   { 
 
     - w e b k i t - a n i m a t i o n :   f a - s p i n   2 s   i n f i n i t e   l i n e a r ; 
 
                     a n i m a t i o n :   f a - s p i n   2 s   i n f i n i t e   l i n e a r ;   } 
 
 
 
 . f a - p u l s e   { 
 
     - w e b k i t - a n i m a t i o n :   f a - s p i n   1 s   i n f i n i t e   s t e p s ( 8 ) ; 
 
                     a n i m a t i o n :   f a - s p i n   1 s   i n f i n i t e   s t e p s ( 8 ) ;   } 
 
 
 
 @ - w e b k i t - k e y f r a m e s   f a - s p i n   { 
 
     0 %   { 
 
         - w e b k i t - t r a n s f o r m :   r o t a t e ( 0 d e g ) ; 
 
                         t r a n s f o r m :   r o t a t e ( 0 d e g ) ;   } 
 
     1 0 0 %   { 
 
         - w e b k i t - t r a n s f o r m :   r o t a t e ( 3 6 0 d e g ) ; 
 
                         t r a n s f o r m :   r o t a t e ( 3 6 0 d e g ) ;   }   } 
 
 
 
 @ k e y f r a m e s   f a - s p i n   { 
 
     0 %   { 
 
         - w e b k i t - t r a n s f o r m :   r o t a t e ( 0 d e g ) ; 
 
                         t r a n s f o r m :   r o t a t e ( 0 d e g ) ;   } 
 
     1 0 0 %   { 
 
         - w e b k i t - t r a n s f o r m :   r o t a t e ( 3 6 0 d e g ) ; 
 
                         t r a n s f o r m :   r o t a t e ( 3 6 0 d e g ) ;   }   } 
 
 
 
 . f a - r o t a t e - 9 0   { 
 
     - m s - f i l t e r :   " p r o g i d : D X I m a g e T r a n s f o r m . M i c r o s o f t . B a s i c I m a g e ( r o t a t i o n = 1 ) " ; 
 
     - w e b k i t - t r a n s f o r m :   r o t a t e ( 9 0 d e g ) ; 
 
                     t r a n s f o r m :   r o t a t e ( 9 0 d e g ) ;   } 
 
 
 
 . f a - r o t a t e - 1 8 0   { 
 
     - m s - f i l t e r :   " p r o g i d : D X I m a g e T r a n s f o r m . M i c r o s o f t . B a s i c I m a g e ( r o t a t i o n = 2 ) " ; 
 
     - w e b k i t - t r a n s f o r m :   r o t a t e ( 1 8 0 d e g ) ; 
 
                     t r a n s f o r m :   r o t a t e ( 1 8 0 d e g ) ;   } 
 
 
 
 . f a - r o t a t e - 2 7 0   { 
 
     - m s - f i l t e r :   " p r o g i d : D X I m a g e T r a n s f o r m . M i c r o s o f t . B a s i c I m a g e ( r o t a t i o n = 3 ) " ; 
 
     - w e b k i t - t r a n s f o r m :   r o t a t e ( 2 7 0 d e g ) ; 
 
                     t r a n s f o r m :   r o t a t e ( 2 7 0 d e g ) ;   } 
 
 
 
 . f a - f l i p - h o r i z o n t a l   { 
 
     - m s - f i l t e r :   " p r o g i d : D X I m a g e T r a n s f o r m . M i c r o s o f t . B a s i c I m a g e ( r o t a t i o n = 0 ,   m i r r o r = 1 ) " ; 
 
     - w e b k i t - t r a n s f o r m :   s c a l e ( - 1 ,   1 ) ; 
 
                     t r a n s f o r m :   s c a l e ( - 1 ,   1 ) ;   } 
 
 
 
 . f a - f l i p - v e r t i c a l   { 
 
     - m s - f i l t e r :   " p r o g i d : D X I m a g e T r a n s f o r m . M i c r o s o f t . B a s i c I m a g e ( r o t a t i o n = 2 ,   m i r r o r = 1 ) " ; 
 
     - w e b k i t - t r a n s f o r m :   s c a l e ( 1 ,   - 1 ) ; 
 
                     t r a n s f o r m :   s c a l e ( 1 ,   - 1 ) ;   } 
 
 
 
 . f a - f l i p - b o t h ,   . f a - f l i p - h o r i z o n t a l . f a - f l i p - v e r t i c a l   { 
 
     - m s - f i l t e r :   " p r o g i d : D X I m a g e T r a n s f o r m . M i c r o s o f t . B a s i c I m a g e ( r o t a t i o n = 2 ,   m i r r o r = 1 ) " ; 
 
     - w e b k i t - t r a n s f o r m :   s c a l e ( - 1 ,   - 1 ) ; 
 
                     t r a n s f o r m :   s c a l e ( - 1 ,   - 1 ) ;   } 
 
 
 
 : r o o t   . f a - r o t a t e - 9 0 , 
 
 : r o o t   . f a - r o t a t e - 1 8 0 , 
 
 : r o o t   . f a - r o t a t e - 2 7 0 , 
 
 : r o o t   . f a - f l i p - h o r i z o n t a l , 
 
 : r o o t   . f a - f l i p - v e r t i c a l , 
 
 : r o o t   . f a - f l i p - b o t h   { 
 
     - w e b k i t - f i l t e r :   n o n e ; 
 
                     f i l t e r :   n o n e ;   } 
 
 
 
 . f a - s t a c k   { 
 
     d i s p l a y :   i n l i n e - b l o c k ; 
 
     h e i g h t :   2 e m ; 
 
     l i n e - h e i g h t :   2 e m ; 
 
     p o s i t i o n :   r e l a t i v e ; 
 
     v e r t i c a l - a l i g n :   m i d d l e ; 
 
     w i d t h :   2 . 5 e m ;   } 
 
 
 
 . f a - s t a c k - 1 x , 
 
 . f a - s t a c k - 2 x   { 
 
     l e f t :   0 ; 
 
     p o s i t i o n :   a b s o l u t e ; 
 
     t e x t - a l i g n :   c e n t e r ; 
 
     w i d t h :   1 0 0 % ;   } 
 
 
 
 . f a - s t a c k - 1 x   { 
 
     l i n e - h e i g h t :   i n h e r i t ;   } 
 
 
 
 . f a - s t a c k - 2 x   { 
 
     f o n t - s i z e :   2 e m ;   } 
 
 
 
 . f a - i n v e r s e   { 
 
     c o l o r :   # f f f ;   } 
 
 
 
 / *   F o n t   A w e s o m e   u s e s   t h e   U n i c o d e   P r i v a t e   U s e   A r e a   ( P U A )   t o   e n s u r e   s c r e e n 
 
 r e a d e r s   d o   n o t   r e a d   o f f   r a n d o m   c h a r a c t e r s   t h a t   r e p r e s e n t   i c o n s   * / 
 
 . f a - 5 0 0 p x : b e f o r e   { 
 
     c o n t e n t :   " \ f 2 6 e " ;   } 
 
 
 
 . f a - a c c e s s i b l e - i c o n : b e f o r e   { 
 
     c o n t e n t :   " \ f 3 6 8 " ;   } 
 
 
 
 . f a - a c c u s o f t : b e f o r e   { 
 
     c o n t e n t :   " \ f 3 6 9 " ;   } 
 
 
 
 . f a - a c q u i s i t i o n s - i n c o r p o r a t e d : b e f o r e   { 
 
     c o n t e n t :   " \ f 6 a f " ;   } 
 
 
 
 . f a - a d : b e f o r e   { 
 
     c o n t e n t :   " \ f 6 4 1 " ;   } 
 
 
 
 . f a - a d d r e s s - b o o k : b e f o r e   { 
 
     c o n t e n t :   " \ f 2 b 9 " ;   } 
 
 
 
 . f a - a d d r e s s - c a r d : b e f o r e   { 
 
     c o n t e n t :   " \ f 2 b b " ;   } 
 
 
 
 . f a - a d j u s t : b e f o r e   { 
 
     c o n t e n t :   " \ f 0 4 2 " ;   } 
 
 
 
 . f a - a d n : b e f o r e   { 
 
     c o n t e n t :   " \ f 1 7 0 " ;   } 
 
 
 
 . f a - a d o b e : b e f o r e   { 
 
     c o n t e n t :   " \ f 7 7 8 " ;   } 
 
 
 
 . f a - a d v e r s a l : b e f o r e   { 
 
     c o n t e n t :   " \ f 3 6 a " ;   } 
 
 
 
 . f a - a f f i l i a t e t h e m e : b e f o r e   { 
 
     c o n t e n t :   " \ f 3 6 b " ;   } 
 
 
 
 . f a - a i r - f r e s h e n e r : b e f o r e   { 
 
     c o n t e n t :   " \ f 5 d 0 " ;   } 
 
 
 
 . f a - a i r b n b : b e f o r e   { 
 
     c o n t e n t :   " \ f 8 3 4 " ;   } 
 
 
 
 . f a - a l g o l i a : b e f o r e   { 
 
     c o n t e n t :   " \ f 3 6 c " ;   } 
 
 
 
 . f a - a l i g n - c e n t e r : b e f o r e   { 
 
     c o n t e n t :   " \ f 0 3 7 " ;   } 
 
 
 
 . f a - a l i g n - j u s t i f y : b e f o r e   { 
 
     c o n t e n t :   " \ f 0 3 9 " ;   } 
 
 
 
 . f a - a l i g n - l e f t : b e f o r e   { 
 
     c o n t e n t :   " \ f 0 3 6 " ;   } 
 
 
 
 . f a - a l i g n - r i g h t : b e f o r e   { 
 
     c o n t e n t :   " \ f 0 3 8 " ;   } 
 
 
 
 . f a - a l i p a y : b e f o r e   { 
 
     c o n t e n t :   " \ f 6 4 2 " ;   } 
 
 
 
 . f a - a l l e r g i e s : b e f o r e   { 
 
     c o n t e n t :   " \ f 4 6 1 " ;   } 
 
 
 
 . f a - a m a z o n : b e f o r e   { 
 
     c o n t e n t :   " \ f 2 7 0 " ;   } 
 
 
 
 . f a - a m a z o n - p a y : b e f o r e   { 
 
     c o n t e n t :   " \ f 4 2 c " ;   } 
 
 
 
 . f a - a m b u l a n c e : b e f o r e   { 
 
     c o n t e n t :   " \ f 0 f 9 " ;   } 
 
 
 
 . f a - a m e r i c a n - s i g n - l a n g u a g e - i n t e r p r e t i n g : b e f o r e   { 
 
     c o n t e n t :   " \ f 2 a 3 " ;   } 
 
 
 
 . f a - a m i l i a : b e f o r e   { 
 
     c o n t e n t :   " \ f 3 6 d " ;   } 
 
 
 
 . f a - a n c h o r : b e f o r e   { 
 
     c o n t e n t :   " \ f 1 3 d " ;   } 
 
 
 
 . f a - a n d r o i d : b e f o r e   { 
 
     c o n t e n t :   " \ f 1 7 b " ;   } 
 
 
 
 . f a - a n g e l l i s t : b e f o r e   { 
 
     c o n t e n t :   " \ f 2 0 9 " ;   } 
 
 
 
 . f a - a n g l e - d o u b l e - d o w n : b e f o r e   { 
 
     c o n t e n t :   " \ f 1 0 3 " ;   } 
 
 
 
 . f a - a n g l e - d o u b l e - l e f t : b e f o r e   { 
 
     c o n t e n t :   " \ f 1 0 0 " ;   } 
 
 
 
 . f a - a n g l e - d o u b l e - r i g h t : b e f o r e   { 
 
     c o n t e n t :   " \ f 1 0 1 " ;   } 
 
 
 
 . f a - a n g l e - d o u b l e - u p : b e f o r e   { 
 
     c o n t e n t :   " \ f 1 0 2 " ;   } 
 
 
 
 . f a - a n g l e - d o w n : b e f o r e   { 
 
     c o n t e n t :   " \ f 1 0 7 " ;   } 
 
 
 
 . f a - a n g l e - l e f t : b e f o r e   { 
 
     c o n t e n t :   " \ f 1 0 4 " ;   } 
 
 
 
 . f a - a n g l e - r i g h t : b e f o r e   { 
 
     c o n t e n t :   " \ f 1 0 5 " ;   } 
 
 
 
 . f a - a n g l e - u p : b e f o r e   { 
 
     c o n t e n t :   " \ f 1 0 6 " ;   } 
 
 
 
 . f a - a n g r y : b e f o r e   { 
 
     c o n t e n t :   " \ f 5 5 6 " ;   } 
 
 
 
 . f a - a n g r y c r e a t i v e : b e f o r e   { 
 
     c o n t e n t :   " \ f 3 6 e " ;   } 
 
 
 
 . f a - a n g u l a r : b e f o r e   { 
 
     c o n t e n t :   " \ f 4 2 0 " ;   } 
 
 
 
 . f a - a n k h : b e f o r e   { 
 
     c o n t e n t :   " \ f 6 4 4 " ;   } 
 
 
 
 . f a - a p p - s t o r e : b e f o r e   { 
 
     c o n t e n t :   " \ f 3 6 f " ;   } 
 
 
 
 . f a - a p p - s t o r e - i o s : b e f o r e   { 
 
     c o n t e n t :   " \ f 3 7 0 " ;   } 
 
 
 
 . f a - a p p e r : b e f o r e   { 
 
     c o n t e n t :   " \ f 3 7 1 " ;   } 
 
 
 
 . f a - a p p l e : b e f o r e   { 
 
     c o n t e n t :   " \ f 1 7 9 " ;   } 
 
 
 
 . f a - a p p l e - a l t : b e f o r e   { 
 
     c o n t e n t :   " \ f 5 d 1 " ;   } 
 
 
 
 . f a - a p p l e - p a y : b e f o r e   { 
 
     c o n t e n t :   " \ f 4 1 5 " ;   } 
 
 
 
 . f a - a r c h i v e : b e f o r e   { 
 
     c o n t e n t :   " \ f 1 8 7 " ;   } 
 
 
 
 . f a - a r c h w a y : b e f o r e   { 
 
     c o n t e n t :   " \ f 5 5 7 " ;   } 
 
 
 
 . f a - a r r o w - a l t - c i r c l e - d o w n : b e f o r e   { 
 
     c o n t e n t :   " \ f 3 5 8 " ;   } 
 
 
 
 . f a - a r r o w - a l t - c i r c l e - l e f t : b e f o r e   { 
 
     c o n t e n t :   " \ f 3 5 9 " ;   } 
 
 
 
 . f a - a r r o w - a l t - c i r c l e - r i g h t : b e f o r e   { 
 
     c o n t e n t :   " \ f 3 5 a " ;   } 
 
 
 
 . f a - a r r o w - a l t - c i r c l e - u p : b e f o r e   { 
 
     c o n t e n t :   " \ f 3 5 b " ;   } 
 
 
 
 . f a - a r r o w - c i r c l e - d o w n : b e f o r e   { 
 
     c o n t e n t :   " \ f 0 a b " ;   } 
 
 
 
 . f a - a r r o w - c i r c l e - l e f t : b e f o r e   { 
 
     c o n t e n t :   " \ f 0 a 8 " ;   } 
 
 
 
 . f a - a r r o w - c i r c l e - r i g h t : b e f o r e   { 
 
     c o n t e n t :   " \ f 0 a 9 " ;   } 
 
 
 
 . f a - a r r o w - c i r c l e - u p : b e f o r e   { 
 
     c o n t e n t :   " \ f 0 a a " ;   } 
 
 
 
 . f a - a r r o w - d o w n : b e f o r e   { 
 
     c o n t e n t :   " \ f 0 6 3 " ;   } 
 
 
 
 . f a - a r r o w - l e f t : b e f o r e   { 
 
     c o n t e n t :   " \ f 0 6 0 " ;   } 
 
 
 
 . f a - a r r o w - r i g h t : b e f o r e   { 
 
     c o n t e n t :   " \ f 0 6 1 " ;   } 
 
 
 
 . f a - a r r o w - u p : b e f o r e   { 
 
     c o n t e n t :   " \ f 0 6 2 " ;   } 
 
 
 
 . f a - a r r o w s - a l t : b e f o r e   { 
 
     c o n t e n t :   " \ f 0 b 2 " ;   } 
 
 
 
 . f a - a r r o w s - a l t - h : b e f o r e   { 
 
     c o n t e n t :   " \ f 3 3 7 " ;   } 
 
 
 
 . f a - a r r o w s - a l t - v : b e f o r e   { 
 
     c o n t e n t :   " \ f 3 3 8 " ;   } 
 
 
 
 . f a - a r t s t a t i o n : b e f o r e   { 
 
     c o n t e n t :   " \ f 7 7 a " ;   } 
 
 
 
 . f a - a s s i s t i v e - l i s t e n i n g - s y s t e m s : b e f o r e   { 
 
     c o n t e n t :   " \ f 2 a 2 " ;   } 
 
 
 
 . f a - a s t e r i s k : b e f o r e   { 
 
     c o n t e n t :   " \ f 0 6 9 " ;   } 
 
 
 
 . f a - a s y m m e t r i k : b e f o r e   { 
 
     c o n t e n t :   " \ f 3 7 2 " ;   } 
 
 
 
 . f a - a t : b e f o r e   { 
 
     c o n t e n t :   " \ f 1 f a " ;   } 
 
 
 
 . f a - a t l a s : b e f o r e   { 
 
     c o n t e n t :   " \ f 5 5 8 " ;   } 
 
 
 
 . f a - a t l a s s i a n : b e f o r e   { 
 
     c o n t e n t :   " \ f 7 7 b " ;   } 
 
 
 
 . f a - a t o m : b e f o r e   { 
 
     c o n t e n t :   " \ f 5 d 2 " ;   } 
 
 
 
 . f a - a u d i b l e : b e f o r e   { 
 
     c o n t e n t :   " \ f 3 7 3 " ;   } 
 
 
 
 . f a - a u d i o - d e s c r i p t i o n : b e f o r e   { 
 
     c o n t e n t :   " \ f 2 9 e " ;   } 
 
 
 
 . f a - a u t o p r e f i x e r : b e f o r e   { 
 
     c o n t e n t :   " \ f 4 1 c " ;   } 
 
 
 
 . f a - a v i a n e x : b e f o r e   { 
 
     c o n t e n t :   " \ f 3 7 4 " ;   } 
 
 
 
 . f a - a v i a t o : b e f o r e   { 
 
     c o n t e n t :   " \ f 4 2 1 " ;   } 
 
 
 
 . f a - a w a r d : b e f o r e   { 
 
     c o n t e n t :   " \ f 5 5 9 " ;   } 
 
 
 
 . f a - a w s : b e f o r e   { 
 
     c o n t e n t :   " \ f 3 7 5 " ;   } 
 
 
 
 . f a - b a b y : b e f o r e   { 
 
     c o n t e n t :   " \ f 7 7 c " ;   } 
 
 
 
 . f a - b a b y - c a r r i a g e : b e f o r e   { 
 
     c o n t e n t :   " \ f 7 7 d " ;   } 
 
 
 
 . f a - b a c k s p a c e : b e f o r e   { 
 
     c o n t e n t :   " \ f 5 5 a " ;   } 
 
 
 
 . f a - b a c k w a r d : b e f o r e   { 
 
     c o n t e n t :   " \ f 0 4 a " ;   } 
 
 
 
 . f a - b a c o n : b e f o r e   { 
 
     c o n t e n t :   " \ f 7 e 5 " ;   } 
 
 
 
 . f a - b a l a n c e - s c a l e : b e f o r e   { 
 
     c o n t e n t :   " \ f 2 4 e " ;   } 
 
 
 
 . f a - b a l a n c e - s c a l e - l e f t : b e f o r e   { 
 
     c o n t e n t :   " \ f 5 1 5 " ;   } 
 
 
 
 . f a - b a l a n c e - s c a l e - r i g h t : b e f o r e   { 
 
     c o n t e n t :   " \ f 5 1 6 " ;   } 
 
 
 
 . f a - b a n : b e f o r e   { 
 
     c o n t e n t :   " \ f 0 5 e " ;   } 
 
 
 
 . f a - b a n d - a i d : b e f o r e   { 
 
     c o n t e n t :   " \ f 4 6 2 " ;   } 
 
 
 
 . f a - b a n d c a m p : b e f o r e   { 
 
     c o n t e n t :   " \ f 2 d 5 " ;   } 
 
 
 
 . f a - b a r c o d e : b e f o r e   { 
 
     c o n t e n t :   " \ f 0 2 a " ;   } 
 
 
 
 . f a - b a r s : b e f o r e   { 
 
     c o n t e n t :   " \ f 0 c 9 " ;   } 
 
 
 
 . f a - b a s e b a l l - b a l l : b e f o r e   { 
 
     c o n t e n t :   " \ f 4 3 3 " ;   } 
 
 
 
 . f a - b a s k e t b a l l - b a l l : b e f o r e   { 
 
     c o n t e n t :   " \ f 4 3 4 " ;   } 
 
 
 
 . f a - b a t h : b e f o r e   { 
 
     c o n t e n t :   " \ f 2 c d " ;   } 
 
 
 
 . f a - b a t t e r y - e m p t y : b e f o r e   { 
 
     c o n t e n t :   " \ f 2 4 4 " ;   } 
 
 
 
 . f a - b a t t e r y - f u l l : b e f o r e   { 
 
     c o n t e n t :   " \ f 2 4 0 " ;   } 
 
 
 
 . f a - b a t t e r y - h a l f : b e f o r e   { 
 
     c o n t e n t :   " \ f 2 4 2 " ;   } 
 
 
 
 . f a - b a t t e r y - q u a r t e r : b e f o r e   { 
 
     c o n t e n t :   " \ f 2 4 3 " ;   } 
 
 
 
 . f a - b a t t e r y - t h r e e - q u a r t e r s : b e f o r e   { 
 
     c o n t e n t :   " \ f 2 4 1 " ;   } 
 
 
 
 . f a - b a t t l e - n e t : b e f o r e   { 
 
     c o n t e n t :   " \ f 8 3 5 " ;   } 
 
 
 
 . f a - b e d : b e f o r e   { 
 
     c o n t e n t :   " \ f 2 3 6 " ;   } 
 
 
 
 . f a - b e e r : b e f o r e   { 
 
     c o n t e n t :   " \ f 0 f c " ;   } 
 
 
 
 . f a - b e h a n c e : b e f o r e   { 
 
     c o n t e n t :   " \ f 1 b 4 " ;   } 
 
 
 
 . f a - b e h a n c e - s q u a r e : b e f o r e   { 
 
     c o n t e n t :   " \ f 1 b 5 " ;   } 
 
 
 
 . f a - b e l l : b e f o r e   { 
 
     c o n t e n t :   " \ f 0 f 3 " ;   } 
 
 
 
 . f a - b e l l - s l a s h : b e f o r e   { 
 
     c o n t e n t :   " \ f 1 f 6 " ;   } 
 
 
 
 . f a - b e z i e r - c u r v e : b e f o r e   { 
 
     c o n t e n t :   " \ f 5 5 b " ;   } 
 
 
 
 . f a - b i b l e : b e f o r e   { 
 
     c o n t e n t :   " \ f 6 4 7 " ;   } 
 
 
 
 . f a - b i c y c l e : b e f o r e   { 
 
     c o n t e n t :   " \ f 2 0 6 " ;   } 
 
 
 
 . f a - b i k i n g : b e f o r e   { 
 
     c o n t e n t :   " \ f 8 4 a " ;   } 
 
 
 
 . f a - b i m o b j e c t : b e f o r e   { 
 
     c o n t e n t :   " \ f 3 7 8 " ;   } 
 
 
 
 . f a - b i n o c u l a r s : b e f o r e   { 
 
     c o n t e n t :   " \ f 1 e 5 " ;   } 
 
 
 
 . f a - b i o h a z a r d : b e f o r e   { 
 
     c o n t e n t :   " \ f 7 8 0 " ;   } 
 
 
 
 . f a - b i r t h d a y - c a k e : b e f o r e   { 
 
     c o n t e n t :   " \ f 1 f d " ;   } 
 
 
 
 . f a - b i t b u c k e t : b e f o r e   { 
 
     c o n t e n t :   " \ f 1 7 1 " ;   } 
 
 
 
 . f a - b i t c o i n : b e f o r e   { 
 
     c o n t e n t :   " \ f 3 7 9 " ;   } 
 
 
 
 . f a - b i t y : b e f o r e   { 
 
     c o n t e n t :   " \ f 3 7 a " ;   } 
 
 
 
 . f a - b l a c k - t i e : b e f o r e   { 
 
     c o n t e n t :   " \ f 2 7 e " ;   } 
 
 
 
 . f a - b l a c k b e r r y : b e f o r e   { 
 
     c o n t e n t :   " \ f 3 7 b " ;   } 
 
 
 
 . f a - b l e n d e r : b e f o r e   { 
 
     c o n t e n t :   " \ f 5 1 7 " ;   } 
 
 
 
 . f a - b l e n d e r - p h o n e : b e f o r e   { 
 
     c o n t e n t :   " \ f 6 b 6 " ;   } 
 
 
 
 . f a - b l i n d : b e f o r e   { 
 
     c o n t e n t :   " \ f 2 9 d " ;   } 
 
 
 
 . f a - b l o g : b e f o r e   { 
 
     c o n t e n t :   " \ f 7 8 1 " ;   } 
 
 
 
 . f a - b l o g g e r : b e f o r e   { 
 
     c o n t e n t :   " \ f 3 7 c " ;   } 
 
 
 
 . f a - b l o g g e r - b : b e f o r e   { 
 
     c o n t e n t :   " \ f 3 7 d " ;   } 
 
 
 
 . f a - b l u e t o o t h : b e f o r e   { 
 
     c o n t e n t :   " \ f 2 9 3 " ;   } 
 
 
 
 . f a - b l u e t o o t h - b : b e f o r e   { 
 
     c o n t e n t :   " \ f 2 9 4 " ;   } 
 
 
 
 . f a - b o l d : b e f o r e   { 
 
     c o n t e n t :   " \ f 0 3 2 " ;   } 
 
 
 
 . f a - b o l t : b e f o r e   { 
 
     c o n t e n t :   " \ f 0 e 7 " ;   } 
 
 
 
 . f a - b o m b : b e f o r e   { 
 
     c o n t e n t :   " \ f 1 e 2 " ;   } 
 
 
 
 . f a - b o n e : b e f o r e   { 
 
     c o n t e n t :   " \ f 5 d 7 " ;   } 
 
 
 
 . f a - b o n g : b e f o r e   { 
 
     c o n t e n t :   " \ f 5 5 c " ;   } 
 
 
 
 . f a - b o o k : b e f o r e   { 
 
     c o n t e n t :   " \ f 0 2 d " ;   } 
 
 
 
 . f a - b o o k - d e a d : b e f o r e   { 
 
     c o n t e n t :   " \ f 6 b 7 " ;   } 
 
 
 
 . f a - b o o k - m e d i c a l : b e f o r e   { 
 
     c o n t e n t :   " \ f 7 e 6 " ;   } 
 
 
 
 . f a - b o o k - o p e n : b e f o r e   { 
 
     c o n t e n t :   " \ f 5 1 8 " ;   } 
 
 
 
 . f a - b o o k - r e a d e r : b e f o r e   { 
 
     c o n t e n t :   " \ f 5 d a " ;   } 
 
 
 
 . f a - b o o k m a r k : b e f o r e   { 
 
     c o n t e n t :   " \ f 0 2 e " ;   } 
 
 
 
 . f a - b o o t s t r a p : b e f o r e   { 
 
     c o n t e n t :   " \ f 8 3 6 " ;   } 
 
 
 
 . f a - b o r d e r - a l l : b e f o r e   { 
 
     c o n t e n t :   " \ f 8 4 c " ;   } 
 
 
 
 . f a - b o r d e r - n o n e : b e f o r e   { 
 
     c o n t e n t :   " \ f 8 5 0 " ;   } 
 
 
 
 . f a - b o r d e r - s t y l e : b e f o r e   { 
 
     c o n t e n t :   " \ f 8 5 3 " ;   } 
 
 
 
 . f a - b o w l i n g - b a l l : b e f o r e   { 
 
     c o n t e n t :   " \ f 4 3 6 " ;   } 
 
 
 
 . f a - b o x : b e f o r e   { 
 
     c o n t e n t :   " \ f 4 6 6 " ;   } 
 
 
 
 . f a - b o x - o p e n : b e f o r e   { 
 
     c o n t e n t :   " \ f 4 9 e " ;   } 
 
 
 
 . f a - b o x e s : b e f o r e   { 
 
     c o n t e n t :   " \ f 4 6 8 " ;   } 
 
 
 
 . f a - b r a i l l e : b e f o r e   { 
 
     c o n t e n t :   " \ f 2 a 1 " ;   } 
 
 
 
 . f a - b r a i n : b e f o r e   { 
 
     c o n t e n t :   " \ f 5 d c " ;   } 
 
 
 
 . f a - b r e a d - s l i c e : b e f o r e   { 
 
     c o n t e n t :   " \ f 7 e c " ;   } 
 
 
 
 . f a - b r i e f c a s e : b e f o r e   { 
 
     c o n t e n t :   " \ f 0 b 1 " ;   } 
 
 
 
 . f a - b r i e f c a s e - m e d i c a l : b e f o r e   { 
 
     c o n t e n t :   " \ f 4 6 9 " ;   } 
 
 
 
 . f a - b r o a d c a s t - t o w e r : b e f o r e   { 
 
     c o n t e n t :   " \ f 5 1 9 " ;   } 
 
 
 
 . f a - b r o o m : b e f o r e   { 
 
     c o n t e n t :   " \ f 5 1 a " ;   } 
 
 
 
 . f a - b r u s h : b e f o r e   { 
 
     c o n t e n t :   " \ f 5 5 d " ;   } 
 
 
 
 . f a - b t c : b e f o r e   { 
 
     c o n t e n t :   " \ f 1 5 a " ;   } 
 
 
 
 . f a - b u f f e r : b e f o r e   { 
 
     c o n t e n t :   " \ f 8 3 7 " ;   } 
 
 
 
 . f a - b u g : b e f o r e   { 
 
     c o n t e n t :   " \ f 1 8 8 " ;   } 
 
 
 
 . f a - b u i l d i n g : b e f o r e   { 
 
     c o n t e n t :   " \ f 1 a d " ;   } 
 
 
 
 . f a - b u l l h o r n : b e f o r e   { 
 
     c o n t e n t :   " \ f 0 a 1 " ;   } 
 
 
 
 . f a - b u l l s e y e : b e f o r e   { 
 
     c o n t e n t :   " \ f 1 4 0 " ;   } 
 
 
 
 . f a - b u r n : b e f o r e   { 
 
     c o n t e n t :   " \ f 4 6 a " ;   } 
 
 
 
 . f a - b u r o m o b e l e x p e r t e : b e f o r e   { 
 
     c o n t e n t :   " \ f 3 7 f " ;   } 
 
 
 
 . f a - b u s : b e f o r e   { 
 
     c o n t e n t :   " \ f 2 0 7 " ;   } 
 
 
 
 . f a - b u s - a l t : b e f o r e   { 
 
     c o n t e n t :   " \ f 5 5 e " ;   } 
 
 
 
 . f a - b u s i n e s s - t i m e : b e f o r e   { 
 
     c o n t e n t :   " \ f 6 4 a " ;   } 
 
 
 
 . f a - b u y s e l l a d s : b e f o r e   { 
 
     c o n t e n t :   " \ f 2 0 d " ;   } 
 
 
 
 . f a - c a l c u l a t o r : b e f o r e   { 
 
     c o n t e n t :   " \ f 1 e c " ;   } 
 
 
 
 . f a - c a l e n d a r : b e f o r e   { 
 
     c o n t e n t :   " \ f 1 3 3 " ;   } 
 
 
 
 . f a - c a l e n d a r - a l t : b e f o r e   { 
 
     c o n t e n t :   " \ f 0 7 3 " ;   } 
 
 
 
 . f a - c a l e n d a r - c h e c k : b e f o r e   { 
 
     c o n t e n t :   " \ f 2 7 4 " ;   } 
 
 
 
 . f a - c a l e n d a r - d a y : b e f o r e   { 
 
     c o n t e n t :   " \ f 7 8 3 " ;   } 
 
 
 
 . f a - c a l e n d a r - m i n u s : b e f o r e   { 
 
     c o n t e n t :   " \ f 2 7 2 " ;   } 
 
 
 
 . f a - c a l e n d a r - p l u s : b e f o r e   { 
 
     c o n t e n t :   " \ f 2 7 1 " ;   } 
 
 
 
 . f a - c a l e n d a r - t i m e s : b e f o r e   { 
 
     c o n t e n t :   " \ f 2 7 3 " ;   } 
 
 
 
 . f a - c a l e n d a r - w e e k : b e f o r e   { 
 
     c o n t e n t :   " \ f 7 8 4 " ;   } 
 
 
 
 . f a - c a m e r a : b e f o r e   { 
 
     c o n t e n t :   " \ f 0 3 0 " ;   } 
 
 
 
 . f a - c a m e r a - r e t r o : b e f o r e   { 
 
     c o n t e n t :   " \ f 0 8 3 " ;   } 
 
 
 
 . f a - c a m p g r o u n d : b e f o r e   { 
 
     c o n t e n t :   " \ f 6 b b " ;   } 
 
 
 
 . f a - c a n a d i a n - m a p l e - l e a f : b e f o r e   { 
 
     c o n t e n t :   " \ f 7 8 5 " ;   } 
 
 
 
 . f a - c a n d y - c a n e : b e f o r e   { 
 
     c o n t e n t :   " \ f 7 8 6 " ;   } 
 
 
 
 . f a - c a n n a b i s : b e f o r e   { 
 
     c o n t e n t :   " \ f 5 5 f " ;   } 
 
 
 
 . f a - c a p s u l e s : b e f o r e   { 
 
     c o n t e n t :   " \ f 4 6 b " ;   } 
 
 
 
 . f a - c a r : b e f o r e   { 
 
     c o n t e n t :   " \ f 1 b 9 " ;   } 
 
 
 
 . f a - c a r - a l t : b e f o r e   { 
 
     c o n t e n t :   " \ f 5 d e " ;   } 
 
 
 
 . f a - c a r - b a t t e r y : b e f o r e   { 
 
     c o n t e n t :   " \ f 5 d f " ;   } 
 
 
 
 . f a - c a r - c r a s h : b e f o r e   { 
 
     c o n t e n t :   " \ f 5 e 1 " ;   } 
 
 
 
 . f a - c a r - s i d e : b e f o r e   { 
 
     c o n t e n t :   " \ f 5 e 4 " ;   } 
 
 
 
 . f a - c a r e t - d o w n : b e f o r e   { 
 
     c o n t e n t :   " \ f 0 d 7 " ;   } 
 
 
 
 . f a - c a r e t - l e f t : b e f o r e   { 
 
     c o n t e n t :   " \ f 0 d 9 " ;   } 
 
 
 
 . f a - c a r e t - r i g h t : b e f o r e   { 
 
     c o n t e n t :   " \ f 0 d a " ;   } 
 
 
 
 . f a - c a r e t - s q u a r e - d o w n : b e f o r e   { 
 
     c o n t e n t :   " \ f 1 5 0 " ;   } 
 
 
 
 . f a - c a r e t - s q u a r e - l e f t : b e f o r e   { 
 
     c o n t e n t :   " \ f 1 9 1 " ;   } 
 
 
 
 . f a - c a r e t - s q u a r e - r i g h t : b e f o r e   { 
 
     c o n t e n t :   " \ f 1 5 2 " ;   } 
 
 
 
 . f a - c a r e t - s q u a r e - u p : b e f o r e   { 
 
     c o n t e n t :   " \ f 1 5 1 " ;   } 
 
 
 
 . f a - c a r e t - u p : b e f o r e   { 
 
     c o n t e n t :   " \ f 0 d 8 " ;   } 
 
 
 
 . f a - c a r r o t : b e f o r e   { 
 
     c o n t e n t :   " \ f 7 8 7 " ;   } 
 
 
 
 . f a - c a r t - a r r o w - d o w n : b e f o r e   { 
 
     c o n t e n t :   " \ f 2 1 8 " ;   } 
 
 
 
 . f a - c a r t - p l u s : b e f o r e   { 
 
     c o n t e n t :   " \ f 2 1 7 " ;   } 
 
 
 
 . f a - c a s h - r e g i s t e r : b e f o r e   { 
 
     c o n t e n t :   " \ f 7 8 8 " ;   } 
 
 
 
 . f a - c a t : b e f o r e   { 
 
     c o n t e n t :   " \ f 6 b e " ;   } 
 
 
 
 . f a - c c - a m a z o n - p a y : b e f o r e   { 
 
     c o n t e n t :   " \ f 4 2 d " ;   } 
 
 
 
 . f a - c c - a m e x : b e f o r e   { 
 
     c o n t e n t :   " \ f 1 f 3 " ;   } 
 
 
 
 . f a - c c - a p p l e - p a y : b e f o r e   { 
 
     c o n t e n t :   " \ f 4 1 6 " ;   } 
 
 
 
 . f a - c c - d i n e r s - c l u b : b e f o r e   { 
 
     c o n t e n t :   " \ f 2 4 c " ;   } 
 
 
 
 . f a - c c - d i s c o v e r : b e f o r e   { 
 
     c o n t e n t :   " \ f 1 f 2 " ;   } 
 
 
 
 . f a - c c - j c b : b e f o r e   { 
 
     c o n t e n t :   " \ f 2 4 b " ;   } 
 
 
 
 . f a - c c - m a s t e r c a r d : b e f o r e   { 
 
     c o n t e n t :   " \ f 1 f 1 " ;   } 
 
 
 
 . f a - c c - p a y p a l : b e f o r e   { 
 
     c o n t e n t :   " \ f 1 f 4 " ;   } 
 
 
 
 . f a - c c - s t r i p e : b e f o r e   { 
 
     c o n t e n t :   " \ f 1 f 5 " ;   } 
 
 
 
 . f a - c c - v i s a : b e f o r e   { 
 
     c o n t e n t :   " \ f 1 f 0 " ;   } 
 
 
 
 . f a - c e n t e r c o d e : b e f o r e   { 
 
     c o n t e n t :   " \ f 3 8 0 " ;   } 
 
 
 
 . f a - c e n t o s : b e f o r e   { 
 
     c o n t e n t :   " \ f 7 8 9 " ;   } 
 
 
 
 . f a - c e r t i f i c a t e : b e f o r e   { 
 
     c o n t e n t :   " \ f 0 a 3 " ;   } 
 
 
 
 . f a - c h a i r : b e f o r e   { 
 
     c o n t e n t :   " \ f 6 c 0 " ;   } 
 
 
 
 . f a - c h a l k b o a r d : b e f o r e   { 
 
     c o n t e n t :   " \ f 5 1 b " ;   } 
 
 
 
 . f a - c h a l k b o a r d - t e a c h e r : b e f o r e   { 
 
     c o n t e n t :   " \ f 5 1 c " ;   } 
 
 
 
 . f a - c h a r g i n g - s t a t i o n : b e f o r e   { 
 
     c o n t e n t :   " \ f 5 e 7 " ;   } 
 
 
 
 . f a - c h a r t - a r e a : b e f o r e   { 
 
     c o n t e n t :   " \ f 1 f e " ;   } 
 
 
 
 . f a - c h a r t - b a r : b e f o r e   { 
 
     c o n t e n t :   " \ f 0 8 0 " ;   } 
 
 
 
 . f a - c h a r t - l i n e : b e f o r e   { 
 
     c o n t e n t :   " \ f 2 0 1 " ;   } 
 
 
 
 . f a - c h a r t - p i e : b e f o r e   { 
 
     c o n t e n t :   " \ f 2 0 0 " ;   } 
 
 
 
 . f a - c h e c k : b e f o r e   { 
 
     c o n t e n t :   " \ f 0 0 c " ;   } 
 
 
 
 . f a - c h e c k - c i r c l e : b e f o r e   { 
 
     c o n t e n t :   " \ f 0 5 8 " ;   } 
 
 
 
 . f a - c h e c k - d o u b l e : b e f o r e   { 
 
     c o n t e n t :   " \ f 5 6 0 " ;   } 
 
 
 
 . f a - c h e c k - s q u a r e : b e f o r e   { 
 
     c o n t e n t :   " \ f 1 4 a " ;   } 
 
 
 
 . f a - c h e e s e : b e f o r e   { 
 
     c o n t e n t :   " \ f 7 e f " ;   } 
 
 
 
 . f a - c h e s s : b e f o r e   { 
 
     c o n t e n t :   " \ f 4 3 9 " ;   } 
 
 
 
 . f a - c h e s s - b i s h o p : b e f o r e   { 
 
     c o n t e n t :   " \ f 4 3 a " ;   } 
 
 
 
 . f a - c h e s s - b o a r d : b e f o r e   { 
 
     c o n t e n t :   " \ f 4 3 c " ;   } 
 
 
 
 . f a - c h e s s - k i n g : b e f o r e   { 
 
     c o n t e n t :   " \ f 4 3 f " ;   } 
 
 
 
 . f a - c h e s s - k n i g h t : b e f o r e   { 
 
     c o n t e n t :   " \ f 4 4 1 " ;   } 
 
 
 
 . f a - c h e s s - p a w n : b e f o r e   { 
 
     c o n t e n t :   " \ f 4 4 3 " ;   } 
 
 
 
 . f a - c h e s s - q u e e n : b e f o r e   { 
 
     c o n t e n t :   " \ f 4 4 5 " ;   } 
 
 
 
 . f a - c h e s s - r o o k : b e f o r e   { 
 
     c o n t e n t :   " \ f 4 4 7 " ;   } 
 
 
 
 . f a - c h e v r o n - c i r c l e - d o w n : b e f o r e   { 
 
     c o n t e n t :   " \ f 1 3 a " ;   } 
 
 
 
 . f a - c h e v r o n - c i r c l e - l e f t : b e f o r e   { 
 
     c o n t e n t :   " \ f 1 3 7 " ;   } 
 
 
 
 . f a - c h e v r o n - c i r c l e - r i g h t : b e f o r e   { 
 
     c o n t e n t :   " \ f 1 3 8 " ;   } 
 
 
 
 . f a - c h e v r o n - c i r c l e - u p : b e f o r e   { 
 
     c o n t e n t :   " \ f 1 3 9 " ;   } 
 
 
 
 . f a - c h e v r o n - d o w n : b e f o r e   { 
 
     c o n t e n t :   " \ f 0 7 8 " ;   } 
 
 
 
 . f a - c h e v r o n - l e f t : b e f o r e   { 
 
     c o n t e n t :   " \ f 0 5 3 " ;   } 
 
 
 
 . f a - c h e v r o n - r i g h t : b e f o r e   { 
 
     c o n t e n t :   " \ f 0 5 4 " ;   } 
 
 
 
 . f a - c h e v r o n - u p : b e f o r e   { 
 
     c o n t e n t :   " \ f 0 7 7 " ;   } 
 
 
 
 . f a - c h i l d : b e f o r e   { 
 
     c o n t e n t :   " \ f 1 a e " ;   } 
 
 
 
 . f a - c h r o m e : b e f o r e   { 
 
     c o n t e n t :   " \ f 2 6 8 " ;   } 
 
 
 
 . f a - c h r o m e c a s t : b e f o r e   { 
 
     c o n t e n t :   " \ f 8 3 8 " ;   } 
 
 
 
 . f a - c h u r c h : b e f o r e   { 
 
     c o n t e n t :   " \ f 5 1 d " ;   } 
 
 
 
 . f a - c i r c l e : b e f o r e   { 
 
     c o n t e n t :   " \ f 1 1 1 " ;   } 
 
 
 
 . f a - c i r c l e - n o t c h : b e f o r e   { 
 
     c o n t e n t :   " \ f 1 c e " ;   } 
 
 
 
 . f a - c i t y : b e f o r e   { 
 
     c o n t e n t :   " \ f 6 4 f " ;   } 
 
 
 
 . f a - c l i n i c - m e d i c a l : b e f o r e   { 
 
     c o n t e n t :   " \ f 7 f 2 " ;   } 
 
 
 
 . f a - c l i p b o a r d : b e f o r e   { 
 
     c o n t e n t :   " \ f 3 2 8 " ;   } 
 
 
 
 . f a - c l i p b o a r d - c h e c k : b e f o r e   { 
 
     c o n t e n t :   " \ f 4 6 c " ;   } 
 
 
 
 . f a - c l i p b o a r d - l i s t : b e f o r e   { 
 
     c o n t e n t :   " \ f 4 6 d " ;   } 
 
 
 
 . f a - c l o c k : b e f o r e   { 
 
     c o n t e n t :   " \ f 0 1 7 " ;   } 
 
 
 
 . f a - c l o n e : b e f o r e   { 
 
     c o n t e n t :   " \ f 2 4 d " ;   } 
 
 
 
 . f a - c l o s e d - c a p t i o n i n g : b e f o r e   { 
 
     c o n t e n t :   " \ f 2 0 a " ;   } 
 
 
 
 . f a - c l o u d : b e f o r e   { 
 
     c o n t e n t :   " \ f 0 c 2 " ;   } 
 
 
 
 . f a - c l o u d - d o w n l o a d - a l t : b e f o r e   { 
 
     c o n t e n t :   " \ f 3 8 1 " ;   } 
 
 
 
 . f a - c l o u d - m e a t b a l l : b e f o r e   { 
 
     c o n t e n t :   " \ f 7 3 b " ;   } 
 
 
 
 . f a - c l o u d - m o o n : b e f o r e   { 
 
     c o n t e n t :   " \ f 6 c 3 " ;   } 
 
 
 
 . f a - c l o u d - m o o n - r a i n : b e f o r e   { 
 
     c o n t e n t :   " \ f 7 3 c " ;   } 
 
 
 
 . f a - c l o u d - r a i n : b e f o r e   { 
 
     c o n t e n t :   " \ f 7 3 d " ;   } 
 
 
 
 . f a - c l o u d - s h o w e r s - h e a v y : b e f o r e   { 
 
     c o n t e n t :   " \ f 7 4 0 " ;   } 
 
 
 
 . f a - c l o u d - s u n : b e f o r e   { 
 
     c o n t e n t :   " \ f 6 c 4 " ;   } 
 
 
 
 . f a - c l o u d - s u n - r a i n : b e f o r e   { 
 
     c o n t e n t :   " \ f 7 4 3 " ;   } 
 
 
 
 . f a - c l o u d - u p l o a d - a l t : b e f o r e   { 
 
     c o n t e n t :   " \ f 3 8 2 " ;   } 
 
 
 
 . f a - c l o u d s c a l e : b e f o r e   { 
 
     c o n t e n t :   " \ f 3 8 3 " ;   } 
 
 
 
 . f a - c l o u d s m i t h : b e f o r e   { 
 
     c o n t e n t :   " \ f 3 8 4 " ;   } 
 
 
 
 . f a - c l o u d v e r s i f y : b e f o r e   { 
 
     c o n t e n t :   " \ f 3 8 5 " ;   } 
 
 
 
 . f a - c o c k t a i l : b e f o r e   { 
 
     c o n t e n t :   " \ f 5 6 1 " ;   } 
 
 
 
 . f a - c o d e : b e f o r e   { 
 
     c o n t e n t :   " \ f 1 2 1 " ;   } 
 
 
 
 . f a - c o d e - b r a n c h : b e f o r e   { 
 
     c o n t e n t :   " \ f 1 2 6 " ;   } 
 
 
 
 . f a - c o d e p e n : b e f o r e   { 
 
     c o n t e n t :   " \ f 1 c b " ;   } 
 
 
 
 . f a - c o d i e p i e : b e f o r e   { 
 
     c o n t e n t :   " \ f 2 8 4 " ;   } 
 
 
 
 . f a - c o f f e e : b e f o r e   { 
 
     c o n t e n t :   " \ f 0 f 4 " ;   } 
 
 
 
 . f a - c o g : b e f o r e   { 
 
     c o n t e n t :   " \ f 0 1 3 " ;   } 
 
 
 
 . f a - c o g s : b e f o r e   { 
 
     c o n t e n t :   " \ f 0 8 5 " ;   } 
 
 
 
 . f a - c o i n s : b e f o r e   { 
 
     c o n t e n t :   " \ f 5 1 e " ;   } 
 
 
 
 . f a - c o l u m n s : b e f o r e   { 
 
     c o n t e n t :   " \ f 0 d b " ;   } 
 
 
 
 . f a - c o m m e n t : b e f o r e   { 
 
     c o n t e n t :   " \ f 0 7 5 " ;   } 
 
 
 
 . f a - c o m m e n t - a l t : b e f o r e   { 
 
     c o n t e n t :   " \ f 2 7 a " ;   } 
 
 
 
 . f a - c o m m e n t - d o l l a r : b e f o r e   { 
 
     c o n t e n t :   " \ f 6 5 1 " ;   } 
 
 
 
 . f a - c o m m e n t - d o t s : b e f o r e   { 
 
     c o n t e n t :   " \ f 4 a d " ;   } 
 
 
 
 . f a - c o m m e n t - m e d i c a l : b e f o r e   { 
 
     c o n t e n t :   " \ f 7 f 5 " ;   } 
 
 
 
 . f a - c o m m e n t - s l a s h : b e f o r e   { 
 
     c o n t e n t :   " \ f 4 b 3 " ;   } 
 
 
 
 . f a - c o m m e n t s : b e f o r e   { 
 
     c o n t e n t :   " \ f 0 8 6 " ;   } 
 
 
 
 . f a - c o m m e n t s - d o l l a r : b e f o r e   { 
 
     c o n t e n t :   " \ f 6 5 3 " ;   } 
 
 
 
 . f a - c o m p a c t - d i s c : b e f o r e   { 
 
     c o n t e n t :   " \ f 5 1 f " ;   } 
 
 
 
 . f a - c o m p a s s : b e f o r e   { 
 
     c o n t e n t :   " \ f 1 4 e " ;   } 
 
 
 
 . f a - c o m p r e s s : b e f o r e   { 
 
     c o n t e n t :   " \ f 0 6 6 " ;   } 
 
 
 
 . f a - c o m p r e s s - a r r o w s - a l t : b e f o r e   { 
 
     c o n t e n t :   " \ f 7 8 c " ;   } 
 
 
 
 . f a - c o n c i e r g e - b e l l : b e f o r e   { 
 
     c o n t e n t :   " \ f 5 6 2 " ;   } 
 
 
 
 . f a - c o n f l u e n c e : b e f o r e   { 
 
     c o n t e n t :   " \ f 7 8 d " ;   } 
 
 
 
 . f a - c o n n e c t d e v e l o p : b e f o r e   { 
 
     c o n t e n t :   " \ f 2 0 e " ;   } 
 
 
 
 . f a - c o n t a o : b e f o r e   { 
 
     c o n t e n t :   " \ f 2 6 d " ;   } 
 
 
 
 . f a - c o o k i e : b e f o r e   { 
 
     c o n t e n t :   " \ f 5 6 3 " ;   } 
 
 
 
 . f a - c o o k i e - b i t e : b e f o r e   { 
 
     c o n t e n t :   " \ f 5 6 4 " ;   } 
 
 
 
 . f a - c o p y : b e f o r e   { 
 
     c o n t e n t :   " \ f 0 c 5 " ;   } 
 
 
 
 . f a - c o p y r i g h t : b e f o r e   { 
 
     c o n t e n t :   " \ f 1 f 9 " ;   } 
 
 
 
 . f a - c o t t o n - b u r e a u : b e f o r e   { 
 
     c o n t e n t :   " \ f 8 9 e " ;   } 
 
 
 
 . f a - c o u c h : b e f o r e   { 
 
     c o n t e n t :   " \ f 4 b 8 " ;   } 
 
 
 
 . f a - c p a n e l : b e f o r e   { 
 
     c o n t e n t :   " \ f 3 8 8 " ;   } 
 
 
 
 . f a - c r e a t i v e - c o m m o n s : b e f o r e   { 
 
     c o n t e n t :   " \ f 2 5 e " ;   } 
 
 
 
 . f a - c r e a t i v e - c o m m o n s - b y : b e f o r e   { 
 
     c o n t e n t :   " \ f 4 e 7 " ;   } 
 
 
 
 . f a - c r e a t i v e - c o m m o n s - n c : b e f o r e   { 
 
     c o n t e n t :   " \ f 4 e 8 " ;   } 
 
 
 
 . f a - c r e a t i v e - c o m m o n s - n c - e u : b e f o r e   { 
 
     c o n t e n t :   " \ f 4 e 9 " ;   } 
 
 
 
 . f a - c r e a t i v e - c o m m o n s - n c - j p : b e f o r e   { 
 
     c o n t e n t :   " \ f 4 e a " ;   } 
 
 
 
 . f a - c r e a t i v e - c o m m o n s - n d : b e f o r e   { 
 
     c o n t e n t :   " \ f 4 e b " ;   } 
 
 
 
 . f a - c r e a t i v e - c o m m o n s - p d : b e f o r e   { 
 
     c o n t e n t :   " \ f 4 e c " ;   } 
 
 
 
 . f a - c r e a t i v e - c o m m o n s - p d - a l t : b e f o r e   { 
 
     c o n t e n t :   " \ f 4 e d " ;   } 
 
 
 
 . f a - c r e a t i v e - c o m m o n s - r e m i x : b e f o r e   { 
 
     c o n t e n t :   " \ f 4 e e " ;   } 
 
 
 
 . f a - c r e a t i v e - c o m m o n s - s a : b e f o r e   { 
 
     c o n t e n t :   " \ f 4 e f " ;   } 
 
 
 
 . f a - c r e a t i v e - c o m m o n s - s a m p l i n g : b e f o r e   { 
 
     c o n t e n t :   " \ f 4 f 0 " ;   } 
 
 
 
 . f a - c r e a t i v e - c o m m o n s - s a m p l i n g - p l u s : b e f o r e   { 
 
     c o n t e n t :   " \ f 4 f 1 " ;   } 
 
 
 
 . f a - c r e a t i v e - c o m m o n s - s h a r e : b e f o r e   { 
 
     c o n t e n t :   " \ f 4 f 2 " ;   } 
 
 
 
 . f a - c r e a t i v e - c o m m o n s - z e r o : b e f o r e   { 
 
     c o n t e n t :   " \ f 4 f 3 " ;   } 
 
 
 
 . f a - c r e d i t - c a r d : b e f o r e   { 
 
     c o n t e n t :   " \ f 0 9 d " ;   } 
 
 
 
 . f a - c r i t i c a l - r o l e : b e f o r e   { 
 
     c o n t e n t :   " \ f 6 c 9 " ;   } 
 
 
 
 . f a - c r o p : b e f o r e   { 
 
     c o n t e n t :   " \ f 1 2 5 " ;   } 
 
 
 
 . f a - c r o p - a l t : b e f o r e   { 
 
     c o n t e n t :   " \ f 5 6 5 " ;   } 
 
 
 
 . f a - c r o s s : b e f o r e   { 
 
     c o n t e n t :   " \ f 6 5 4 " ;   } 
 
 
 
 . f a - c r o s s h a i r s : b e f o r e   { 
 
     c o n t e n t :   " \ f 0 5 b " ;   } 
 
 
 
 . f a - c r o w : b e f o r e   { 
 
     c o n t e n t :   " \ f 5 2 0 " ;   } 
 
 
 
 . f a - c r o w n : b e f o r e   { 
 
     c o n t e n t :   " \ f 5 2 1 " ;   } 
 
 
 
 . f a - c r u t c h : b e f o r e   { 
 
     c o n t e n t :   " \ f 7 f 7 " ;   } 
 
 
 
 . f a - c s s 3 : b e f o r e   { 
 
     c o n t e n t :   " \ f 1 3 c " ;   } 
 
 
 
 . f a - c s s 3 - a l t : b e f o r e   { 
 
     c o n t e n t :   " \ f 3 8 b " ;   } 
 
 
 
 . f a - c u b e : b e f o r e   { 
 
     c o n t e n t :   " \ f 1 b 2 " ;   } 
 
 
 
 . f a - c u b e s : b e f o r e   { 
 
     c o n t e n t :   " \ f 1 b 3 " ;   } 
 
 
 
 . f a - c u t : b e f o r e   { 
 
     c o n t e n t :   " \ f 0 c 4 " ;   } 
 
 
 
 . f a - c u t t l e f i s h : b e f o r e   { 
 
     c o n t e n t :   " \ f 3 8 c " ;   } 
 
 
 
 . f a - d - a n d - d : b e f o r e   { 
 
     c o n t e n t :   " \ f 3 8 d " ;   } 
 
 
 
 . f a - d - a n d - d - b e y o n d : b e f o r e   { 
 
     c o n t e n t :   " \ f 6 c a " ;   } 
 
 
 
 . f a - d a s h c u b e : b e f o r e   { 
 
     c o n t e n t :   " \ f 2 1 0 " ;   } 
 
 
 
 . f a - d a t a b a s e : b e f o r e   { 
 
     c o n t e n t :   " \ f 1 c 0 " ;   } 
 
 
 
 . f a - d e a f : b e f o r e   { 
 
     c o n t e n t :   " \ f 2 a 4 " ;   } 
 
 
 
 . f a - d e l i c i o u s : b e f o r e   { 
 
     c o n t e n t :   " \ f 1 a 5 " ;   } 
 
 
 
 . f a - d e m o c r a t : b e f o r e   { 
 
     c o n t e n t :   " \ f 7 4 7 " ;   } 
 
 
 
 . f a - d e p l o y d o g : b e f o r e   { 
 
     c o n t e n t :   " \ f 3 8 e " ;   } 
 
 
 
 . f a - d e s k p r o : b e f o r e   { 
 
     c o n t e n t :   " \ f 3 8 f " ;   } 
 
 
 
 . f a - d e s k t o p : b e f o r e   { 
 
     c o n t e n t :   " \ f 1 0 8 " ;   } 
 
 
 
 . f a - d e v : b e f o r e   { 
 
     c o n t e n t :   " \ f 6 c c " ;   } 
 
 
 
 . f a - d e v i a n t a r t : b e f o r e   { 
 
     c o n t e n t :   " \ f 1 b d " ;   } 
 
 
 
 . f a - d h a r m a c h a k r a : b e f o r e   { 
 
     c o n t e n t :   " \ f 6 5 5 " ;   } 
 
 
 
 . f a - d h l : b e f o r e   { 
 
     c o n t e n t :   " \ f 7 9 0 " ;   } 
 
 
 
 . f a - d i a g n o s e s : b e f o r e   { 
 
     c o n t e n t :   " \ f 4 7 0 " ;   } 
 
 
 
 . f a - d i a s p o r a : b e f o r e   { 
 
     c o n t e n t :   " \ f 7 9 1 " ;   } 
 
 
 
 . f a - d i c e : b e f o r e   { 
 
     c o n t e n t :   " \ f 5 2 2 " ;   } 
 
 
 
 . f a - d i c e - d 2 0 : b e f o r e   { 
 
     c o n t e n t :   " \ f 6 c f " ;   } 
 
 
 
 . f a - d i c e - d 6 : b e f o r e   { 
 
     c o n t e n t :   " \ f 6 d 1 " ;   } 
 
 
 
 . f a - d i c e - f i v e : b e f o r e   { 
 
     c o n t e n t :   " \ f 5 2 3 " ;   } 
 
 
 
 . f a - d i c e - f o u r : b e f o r e   { 
 
     c o n t e n t :   " \ f 5 2 4 " ;   } 
 
 
 
 . f a - d i c e - o n e : b e f o r e   { 
 
     c o n t e n t :   " \ f 5 2 5 " ;   } 
 
 
 
 . f a - d i c e - s i x : b e f o r e   { 
 
     c o n t e n t :   " \ f 5 2 6 " ;   } 
 
 
 
 . f a - d i c e - t h r e e : b e f o r e   { 
 
     c o n t e n t :   " \ f 5 2 7 " ;   } 
 
 
 
 . f a - d i c e - t w o : b e f o r e   { 
 
     c o n t e n t :   " \ f 5 2 8 " ;   } 
 
 
 
 . f a - d i g g : b e f o r e   { 
 
     c o n t e n t :   " \ f 1 a 6 " ;   } 
 
 
 
 . f a - d i g i t a l - o c e a n : b e f o r e   { 
 
     c o n t e n t :   " \ f 3 9 1 " ;   } 
 
 
 
 . f a - d i g i t a l - t a c h o g r a p h : b e f o r e   { 
 
     c o n t e n t :   " \ f 5 6 6 " ;   } 
 
 
 
 . f a - d i r e c t i o n s : b e f o r e   { 
 
     c o n t e n t :   " \ f 5 e b " ;   } 
 
 
 
 . f a - d i s c o r d : b e f o r e   { 
 
     c o n t e n t :   " \ f 3 9 2 " ;   } 
 
 
 
 . f a - d i s c o u r s e : b e f o r e   { 
 
     c o n t e n t :   " \ f 3 9 3 " ;   } 
 
 
 
 . f a - d i v i d e : b e f o r e   { 
 
     c o n t e n t :   " \ f 5 2 9 " ;   } 
 
 
 
 . f a - d i z z y : b e f o r e   { 
 
     c o n t e n t :   " \ f 5 6 7 " ;   } 
 
 
 
 . f a - d n a : b e f o r e   { 
 
     c o n t e n t :   " \ f 4 7 1 " ;   } 
 
 
 
 . f a - d o c h u b : b e f o r e   { 
 
     c o n t e n t :   " \ f 3 9 4 " ;   } 
 
 
 
 . f a - d o c k e r : b e f o r e   { 
 
     c o n t e n t :   " \ f 3 9 5 " ;   } 
 
 
 
 . f a - d o g : b e f o r e   { 
 
     c o n t e n t :   " \ f 6 d 3 " ;   } 
 
 
 
 . f a - d o l l a r - s i g n : b e f o r e   { 
 
     c o n t e n t :   " \ f 1 5 5 " ;   } 
 
 
 
 . f a - d o l l y : b e f o r e   { 
 
     c o n t e n t :   " \ f 4 7 2 " ;   } 
 
 
 
 . f a - d o l l y - f l a t b e d : b e f o r e   { 
 
     c o n t e n t :   " \ f 4 7 4 " ;   } 
 
 
 
 . f a - d o n a t e : b e f o r e   { 
 
     c o n t e n t :   " \ f 4 b 9 " ;   } 
 
 
 
 . f a - d o o r - c l o s e d : b e f o r e   { 
 
     c o n t e n t :   " \ f 5 2 a " ;   } 
 
 
 
 . f a - d o o r - o p e n : b e f o r e   { 
 
     c o n t e n t :   " \ f 5 2 b " ;   } 
 
 
 
 . f a - d o t - c i r c l e : b e f o r e   { 
 
     c o n t e n t :   " \ f 1 9 2 " ;   } 
 
 
 
 . f a - d o v e : b e f o r e   { 
 
     c o n t e n t :   " \ f 4 b a " ;   } 
 
 
 
 . f a - d o w n l o a d : b e f o r e   { 
 
     c o n t e n t :   " \ f 0 1 9 " ;   } 
 
 
 
 . f a - d r a f t 2 d i g i t a l : b e f o r e   { 
 
     c o n t e n t :   " \ f 3 9 6 " ;   } 
 
 
 
 . f a - d r a f t i n g - c o m p a s s : b e f o r e   { 
 
     c o n t e n t :   " \ f 5 6 8 " ;   } 
 
 
 
 . f a - d r a g o n : b e f o r e   { 
 
     c o n t e n t :   " \ f 6 d 5 " ;   } 
 
 
 
 . f a - d r a w - p o l y g o n : b e f o r e   { 
 
     c o n t e n t :   " \ f 5 e e " ;   } 
 
 
 
 . f a - d r i b b b l e : b e f o r e   { 
 
     c o n t e n t :   " \ f 1 7 d " ;   } 
 
 
 
 . f a - d r i b b b l e - s q u a r e : b e f o r e   { 
 
     c o n t e n t :   " \ f 3 9 7 " ;   } 
 
 
 
 . f a - d r o p b o x : b e f o r e   { 
 
     c o n t e n t :   " \ f 1 6 b " ;   } 
 
 
 
 . f a - d r u m : b e f o r e   { 
 
     c o n t e n t :   " \ f 5 6 9 " ;   } 
 
 
 
 . f a - d r u m - s t e e l p a n : b e f o r e   { 
 
     c o n t e n t :   " \ f 5 6 a " ;   } 
 
 
 
 . f a - d r u m s t i c k - b i t e : b e f o r e   { 
 
     c o n t e n t :   " \ f 6 d 7 " ;   } 
 
 
 
 . f a - d r u p a l : b e f o r e   { 
 
     c o n t e n t :   " \ f 1 a 9 " ;   } 
 
 
 
 . f a - d u m b b e l l : b e f o r e   { 
 
     c o n t e n t :   " \ f 4 4 b " ;   } 
 
 
 
 . f a - d u m p s t e r : b e f o r e   { 
 
     c o n t e n t :   " \ f 7 9 3 " ;   } 
 
 
 
 . f a - d u m p s t e r - f i r e : b e f o r e   { 
 
     c o n t e n t :   " \ f 7 9 4 " ;   } 
 
 
 
 . f a - d u n g e o n : b e f o r e   { 
 
     c o n t e n t :   " \ f 6 d 9 " ;   } 
 
 
 
 . f a - d y a l o g : b e f o r e   { 
 
     c o n t e n t :   " \ f 3 9 9 " ;   } 
 
 
 
 . f a - e a r l y b i r d s : b e f o r e   { 
 
     c o n t e n t :   " \ f 3 9 a " ;   } 
 
 
 
 . f a - e b a y : b e f o r e   { 
 
     c o n t e n t :   " \ f 4 f 4 " ;   } 
 
 
 
 . f a - e d g e : b e f o r e   { 
 
     c o n t e n t :   " \ f 2 8 2 " ;   } 
 
 
 
 . f a - e d i t : b e f o r e   { 
 
     c o n t e n t :   " \ f 0 4 4 " ;   } 
 
 
 
 . f a - e g g : b e f o r e   { 
 
     c o n t e n t :   " \ f 7 f b " ;   } 
 
 
 
 . f a - e j e c t : b e f o r e   { 
 
     c o n t e n t :   " \ f 0 5 2 " ;   } 
 
 
 
 . f a - e l e m e n t o r : b e f o r e   { 
 
     c o n t e n t :   " \ f 4 3 0 " ;   } 
 
 
 
 . f a - e l l i p s i s - h : b e f o r e   { 
 
     c o n t e n t :   " \ f 1 4 1 " ;   } 
 
 
 
 . f a - e l l i p s i s - v : b e f o r e   { 
 
     c o n t e n t :   " \ f 1 4 2 " ;   } 
 
 
 
 . f a - e l l o : b e f o r e   { 
 
     c o n t e n t :   " \ f 5 f 1 " ;   } 
 
 
 
 . f a - e m b e r : b e f o r e   { 
 
     c o n t e n t :   " \ f 4 2 3 " ;   } 
 
 
 
 . f a - e m p i r e : b e f o r e   { 
 
     c o n t e n t :   " \ f 1 d 1 " ;   } 
 
 
 
 . f a - e n v e l o p e : b e f o r e   { 
 
     c o n t e n t :   " \ f 0 e 0 " ;   } 
 
 
 
 . f a - e n v e l o p e - o p e n : b e f o r e   { 
 
     c o n t e n t :   " \ f 2 b 6 " ;   } 
 
 
 
 . f a - e n v e l o p e - o p e n - t e x t : b e f o r e   { 
 
     c o n t e n t :   " \ f 6 5 8 " ;   } 
 
 
 
 . f a - e n v e l o p e - s q u a r e : b e f o r e   { 
 
     c o n t e n t :   " \ f 1 9 9 " ;   } 
 
 
 
 . f a - e n v i r a : b e f o r e   { 
 
     c o n t e n t :   " \ f 2 9 9 " ;   } 
 
 
 
 . f a - e q u a l s : b e f o r e   { 
 
     c o n t e n t :   " \ f 5 2 c " ;   } 
 
 
 
 . f a - e r a s e r : b e f o r e   { 
 
     c o n t e n t :   " \ f 1 2 d " ;   } 
 
 
 
 . f a - e r l a n g : b e f o r e   { 
 
     c o n t e n t :   " \ f 3 9 d " ;   } 
 
 
 
 . f a - e t h e r e u m : b e f o r e   { 
 
     c o n t e n t :   " \ f 4 2 e " ;   } 
 
 
 
 . f a - e t h e r n e t : b e f o r e   { 
 
     c o n t e n t :   " \ f 7 9 6 " ;   } 
 
 
 
 . f a - e t s y : b e f o r e   { 
 
     c o n t e n t :   " \ f 2 d 7 " ;   } 
 
 
 
 . f a - e u r o - s i g n : b e f o r e   { 
 
     c o n t e n t :   " \ f 1 5 3 " ;   } 
 
 
 
 . f a - e v e r n o t e : b e f o r e   { 
 
     c o n t e n t :   " \ f 8 3 9 " ;   } 
 
 
 
 . f a - e x c h a n g e - a l t : b e f o r e   { 
 
     c o n t e n t :   " \ f 3 6 2 " ;   } 
 
 
 
 . f a - e x c l a m a t i o n : b e f o r e   { 
 
     c o n t e n t :   " \ f 1 2 a " ;   } 
 
 
 
 . f a - e x c l a m a t i o n - c i r c l e : b e f o r e   { 
 
     c o n t e n t :   " \ f 0 6 a " ;   } 
 
 
 
 . f a - e x c l a m a t i o n - t r i a n g l e : b e f o r e   { 
 
     c o n t e n t :   " \ f 0 7 1 " ;   } 
 
 
 
 . f a - e x p a n d : b e f o r e   { 
 
     c o n t e n t :   " \ f 0 6 5 " ;   } 
 
 
 
 . f a - e x p a n d - a r r o w s - a l t : b e f o r e   { 
 
     c o n t e n t :   " \ f 3 1 e " ;   } 
 
 
 
 . f a - e x p e d i t e d s s l : b e f o r e   { 
 
     c o n t e n t :   " \ f 2 3 e " ;   } 
 
 
 
 . f a - e x t e r n a l - l i n k - a l t : b e f o r e   { 
 
     c o n t e n t :   " \ f 3 5 d " ;   } 
 
 
 
 . f a - e x t e r n a l - l i n k - s q u a r e - a l t : b e f o r e   { 
 
     c o n t e n t :   " \ f 3 6 0 " ;   } 
 
 
 
 . f a - e y e : b e f o r e   { 
 
     c o n t e n t :   " \ f 0 6 e " ;   } 
 
 
 
 . f a - e y e - d r o p p e r : b e f o r e   { 
 
     c o n t e n t :   " \ f 1 f b " ;   } 
 
 
 
 . f a - e y e - s l a s h : b e f o r e   { 
 
     c o n t e n t :   " \ f 0 7 0 " ;   } 
 
 
 
 . f a - f a c e b o o k : b e f o r e   { 
 
     c o n t e n t :   " \ f 0 9 a " ;   } 
 
 
 
 . f a - f a c e b o o k - f : b e f o r e   { 
 
     c o n t e n t :   " \ f 3 9 e " ;   } 
 
 
 
 . f a - f a c e b o o k - m e s s e n g e r : b e f o r e   { 
 
     c o n t e n t :   " \ f 3 9 f " ;   } 
 
 
 
 . f a - f a c e b o o k - s q u a r e : b e f o r e   { 
 
     c o n t e n t :   " \ f 0 8 2 " ;   } 
 
 
 
 . f a - f a n : b e f o r e   { 
 
     c o n t e n t :   " \ f 8 6 3 " ;   } 
 
 
 
 . f a - f a n t a s y - f l i g h t - g a m e s : b e f o r e   { 
 
     c o n t e n t :   " \ f 6 d c " ;   } 
 
 
 
 . f a - f a s t - b a c k w a r d : b e f o r e   { 
 
     c o n t e n t :   " \ f 0 4 9 " ;   } 
 
 
 
 . f a - f a s t - f o r w a r d : b e f o r e   { 
 
     c o n t e n t :   " \ f 0 5 0 " ;   } 
 
 
 
 . f a - f a x : b e f o r e   { 
 
     c o n t e n t :   " \ f 1 a c " ;   } 
 
 
 
 . f a - f e a t h e r : b e f o r e   { 
 
     c o n t e n t :   " \ f 5 2 d " ;   } 
 
 
 
 . f a - f e a t h e r - a l t : b e f o r e   { 
 
     c o n t e n t :   " \ f 5 6 b " ;   } 
 
 
 
 . f a - f e d e x : b e f o r e   { 
 
     c o n t e n t :   " \ f 7 9 7 " ;   } 
 
 
 
 . f a - f e d o r a : b e f o r e   { 
 
     c o n t e n t :   " \ f 7 9 8 " ;   } 
 
 
 
 . f a - f e m a l e : b e f o r e   { 
 
     c o n t e n t :   " \ f 1 8 2 " ;   } 
 
 
 
 . f a - f i g h t e r - j e t : b e f o r e   { 
 
     c o n t e n t :   " \ f 0 f b " ;   } 
 
 
 
 . f a - f i g m a : b e f o r e   { 
 
     c o n t e n t :   " \ f 7 9 9 " ;   } 
 
 
 
 . f a - f i l e : b e f o r e   { 
 
     c o n t e n t :   " \ f 1 5 b " ;   } 
 
 
 
 . f a - f i l e - a l t : b e f o r e   { 
 
     c o n t e n t :   " \ f 1 5 c " ;   } 
 
 
 
 . f a - f i l e - a r c h i v e : b e f o r e   { 
 
     c o n t e n t :   " \ f 1 c 6 " ;   } 
 
 
 
 . f a - f i l e - a u d i o : b e f o r e   { 
 
     c o n t e n t :   " \ f 1 c 7 " ;   } 
 
 
 
 . f a - f i l e - c o d e : b e f o r e   { 
 
     c o n t e n t :   " \ f 1 c 9 " ;   } 
 
 
 
 . f a - f i l e - c o n t r a c t : b e f o r e   { 
 
     c o n t e n t :   " \ f 5 6 c " ;   } 
 
 
 
 . f a - f i l e - c s v : b e f o r e   { 
 
     c o n t e n t :   " \ f 6 d d " ;   } 
 
 
 
 . f a - f i l e - d o w n l o a d : b e f o r e   { 
 
     c o n t e n t :   " \ f 5 6 d " ;   } 
 
 
 
 . f a - f i l e - e x c e l : b e f o r e   { 
 
     c o n t e n t :   " \ f 1 c 3 " ;   } 
 
 
 
 . f a - f i l e - e x p o r t : b e f o r e   { 
 
     c o n t e n t :   " \ f 5 6 e " ;   } 
 
 
 
 . f a - f i l e - i m a g e : b e f o r e   { 
 
     c o n t e n t :   " \ f 1 c 5 " ;   } 
 
 
 
 . f a - f i l e - i m p o r t : b e f o r e   { 
 
     c o n t e n t :   " \ f 5 6 f " ;   } 
 
 
 
 . f a - f i l e - i n v o i c e : b e f o r e   { 
 
     c o n t e n t :   " \ f 5 7 0 " ;   } 
 
 
 
 . f a - f i l e - i n v o i c e - d o l l a r : b e f o r e   { 
 
     c o n t e n t :   " \ f 5 7 1 " ;   } 
 
 
 
 . f a - f i l e - m e d i c a l : b e f o r e   { 
 
     c o n t e n t :   " \ f 4 7 7 " ;   } 
 
 
 
 . f a - f i l e - m e d i c a l - a l t : b e f o r e   { 
 
     c o n t e n t :   " \ f 4 7 8 " ;   } 
 
 
 
 . f a - f i l e - p d f : b e f o r e   { 
 
     c o n t e n t :   " \ f 1 c 1 " ;   } 
 
 
 
 . f a - f i l e - p o w e r p o i n t : b e f o r e   { 
 
     c o n t e n t :   " \ f 1 c 4 " ;   } 
 
 
 
 . f a - f i l e - p r e s c r i p t i o n : b e f o r e   { 
 
     c o n t e n t :   " \ f 5 7 2 " ;   } 
 
 
 
 . f a - f i l e - s i g n a t u r e : b e f o r e   { 
 
     c o n t e n t :   " \ f 5 7 3 " ;   } 
 
 
 
 . f a - f i l e - u p l o a d : b e f o r e   { 
 
     c o n t e n t :   " \ f 5 7 4 " ;   } 
 
 
 
 . f a - f i l e - v i d e o : b e f o r e   { 
 
     c o n t e n t :   " \ f 1 c 8 " ;   } 
 
 
 
 . f a - f i l e - w o r d : b e f o r e   { 
 
     c o n t e n t :   " \ f 1 c 2 " ;   } 
 
 
 
 . f a - f i l l : b e f o r e   { 
 
     c o n t e n t :   " \ f 5 7 5 " ;   } 
 
 
 
 . f a - f i l l - d r i p : b e f o r e   { 
 
     c o n t e n t :   " \ f 5 7 6 " ;   } 
 
 
 
 . f a - f i l m : b e f o r e   { 
 
     c o n t e n t :   " \ f 0 0 8 " ;   } 
 
 
 
 . f a - f i l t e r : b e f o r e   { 
 
     c o n t e n t :   " \ f 0 b 0 " ;   } 
 
 
 
 . f a - f i n g e r p r i n t : b e f o r e   { 
 
     c o n t e n t :   " \ f 5 7 7 " ;   } 
 
 
 
 . f a - f i r e : b e f o r e   { 
 
     c o n t e n t :   " \ f 0 6 d " ;   } 
 
 
 
 . f a - f i r e - a l t : b e f o r e   { 
 
     c o n t e n t :   " \ f 7 e 4 " ;   } 
 
 
 
 . f a - f i r e - e x t i n g u i s h e r : b e f o r e   { 
 
     c o n t e n t :   " \ f 1 3 4 " ;   } 
 
 
 
 . f a - f i r e f o x : b e f o r e   { 
 
     c o n t e n t :   " \ f 2 6 9 " ;   } 
 
 
 
 . f a - f i r s t - a i d : b e f o r e   { 
 
     c o n t e n t :   " \ f 4 7 9 " ;   } 
 
 
 
 . f a - f i r s t - o r d e r : b e f o r e   { 
 
     c o n t e n t :   " \ f 2 b 0 " ;   } 
 
 
 
 . f a - f i r s t - o r d e r - a l t : b e f o r e   { 
 
     c o n t e n t :   " \ f 5 0 a " ;   } 
 
 
 
 . f a - f i r s t d r a f t : b e f o r e   { 
 
     c o n t e n t :   " \ f 3 a 1 " ;   } 
 
 
 
 . f a - f i s h : b e f o r e   { 
 
     c o n t e n t :   " \ f 5 7 8 " ;   } 
 
 
 
 . f a - f i s t - r a i s e d : b e f o r e   { 
 
     c o n t e n t :   " \ f 6 d e " ;   } 
 
 
 
 . f a - f l a g : b e f o r e   { 
 
     c o n t e n t :   " \ f 0 2 4 " ;   } 
 
 
 
 . f a - f l a g - c h e c k e r e d : b e f o r e   { 
 
     c o n t e n t :   " \ f 1 1 e " ;   } 
 
 
 
 . f a - f l a g - u s a : b e f o r e   { 
 
     c o n t e n t :   " \ f 7 4 d " ;   } 
 
 
 
 . f a - f l a s k : b e f o r e   { 
 
     c o n t e n t :   " \ f 0 c 3 " ;   } 
 
 
 
 . f a - f l i c k r : b e f o r e   { 
 
     c o n t e n t :   " \ f 1 6 e " ;   } 
 
 
 
 . f a - f l i p b o a r d : b e f o r e   { 
 
     c o n t e n t :   " \ f 4 4 d " ;   } 
 
 
 
 . f a - f l u s h e d : b e f o r e   { 
 
     c o n t e n t :   " \ f 5 7 9 " ;   } 
 
 
 
 . f a - f l y : b e f o r e   { 
 
     c o n t e n t :   " \ f 4 1 7 " ;   } 
 
 
 
 . f a - f o l d e r : b e f o r e   { 
 
     c o n t e n t :   " \ f 0 7 b " ;   } 
 
 
 
 . f a - f o l d e r - m i n u s : b e f o r e   { 
 
     c o n t e n t :   " \ f 6 5 d " ;   } 
 
 
 
 . f a - f o l d e r - o p e n : b e f o r e   { 
 
     c o n t e n t :   " \ f 0 7 c " ;   } 
 
 
 
 . f a - f o l d e r - p l u s : b e f o r e   { 
 
     c o n t e n t :   " \ f 6 5 e " ;   } 
 
 
 
 . f a - f o n t : b e f o r e   { 
 
     c o n t e n t :   " \ f 0 3 1 " ;   } 
 
 
 
 . f a - f o n t - a w e s o m e : b e f o r e   { 
 
     c o n t e n t :   " \ f 2 b 4 " ;   } 
 
 
 
 . f a - f o n t - a w e s o m e - a l t : b e f o r e   { 
 
     c o n t e n t :   " \ f 3 5 c " ;   } 
 
 
 
 . f a - f o n t - a w e s o m e - f l a g : b e f o r e   { 
 
     c o n t e n t :   " \ f 4 2 5 " ;   } 
 
 
 
 . f a - f o n t - a w e s o m e - l o g o - f u l l : b e f o r e   { 
 
     c o n t e n t :   " \ f 4 e 6 " ;   } 
 
 
 
 . f a - f o n t i c o n s : b e f o r e   { 
 
     c o n t e n t :   " \ f 2 8 0 " ;   } 
 
 
 
 . f a - f o n t i c o n s - f i : b e f o r e   { 
 
     c o n t e n t :   " \ f 3 a 2 " ;   } 
 
 
 
 . f a - f o o t b a l l - b a l l : b e f o r e   { 
 
     c o n t e n t :   " \ f 4 4 e " ;   } 
 
 
 
 . f a - f o r t - a w e s o m e : b e f o r e   { 
 
     c o n t e n t :   " \ f 2 8 6 " ;   } 
 
 
 
 . f a - f o r t - a w e s o m e - a l t : b e f o r e   { 
 
     c o n t e n t :   " \ f 3 a 3 " ;   } 
 
 
 
 . f a - f o r u m b e e : b e f o r e   { 
 
     c o n t e n t :   " \ f 2 1 1 " ;   } 
 
 
 
 . f a - f o r w a r d : b e f o r e   { 
 
     c o n t e n t :   " \ f 0 4 e " ;   } 
 
 
 
 . f a - f o u r s q u a r e : b e f o r e   { 
 
     c o n t e n t :   " \ f 1 8 0 " ;   } 
 
 
 
 . f a - f r e e - c o d e - c a m p : b e f o r e   { 
 
     c o n t e n t :   " \ f 2 c 5 " ;   } 
 
 
 
 . f a - f r e e b s d : b e f o r e   { 
 
     c o n t e n t :   " \ f 3 a 4 " ;   } 
 
 
 
 . f a - f r o g : b e f o r e   { 
 
     c o n t e n t :   " \ f 5 2 e " ;   } 
 
 
 
 . f a - f r o w n : b e f o r e   { 
 
     c o n t e n t :   " \ f 1 1 9 " ;   } 
 
 
 
 . f a - f r o w n - o p e n : b e f o r e   { 
 
     c o n t e n t :   " \ f 5 7 a " ;   } 
 
 
 
 . f a - f u l c r u m : b e f o r e   { 
 
     c o n t e n t :   " \ f 5 0 b " ;   } 
 
 
 
 . f a - f u n n e l - d o l l a r : b e f o r e   { 
 
     c o n t e n t :   " \ f 6 6 2 " ;   } 
 
 
 
 . f a - f u t b o l : b e f o r e   { 
 
     c o n t e n t :   " \ f 1 e 3 " ;   } 
 
 
 
 . f a - g a l a c t i c - r e p u b l i c : b e f o r e   { 
 
     c o n t e n t :   " \ f 5 0 c " ;   } 
 
 
 
 . f a - g a l a c t i c - s e n a t e : b e f o r e   { 
 
     c o n t e n t :   " \ f 5 0 d " ;   } 
 
 
 
 . f a - g a m e p a d : b e f o r e   { 
 
     c o n t e n t :   " \ f 1 1 b " ;   } 
 
 
 
 . f a - g a s - p u m p : b e f o r e   { 
 
     c o n t e n t :   " \ f 5 2 f " ;   } 
 
 
 
 . f a - g a v e l : b e f o r e   { 
 
     c o n t e n t :   " \ f 0 e 3 " ;   } 
 
 
 
 . f a - g e m : b e f o r e   { 
 
     c o n t e n t :   " \ f 3 a 5 " ;   } 
 
 
 
 . f a - g e n d e r l e s s : b e f o r e   { 
 
     c o n t e n t :   " \ f 2 2 d " ;   } 
 
 
 
 . f a - g e t - p o c k e t : b e f o r e   { 
 
     c o n t e n t :   " \ f 2 6 5 " ;   } 
 
 
 
 . f a - g g : b e f o r e   { 
 
     c o n t e n t :   " \ f 2 6 0 " ;   } 
 
 
 
 . f a - g g - c i r c l e : b e f o r e   { 
 
     c o n t e n t :   " \ f 2 6 1 " ;   } 
 
 
 
 . f a - g h o s t : b e f o r e   { 
 
     c o n t e n t :   " \ f 6 e 2 " ;   } 
 
 
 
 . f a - g i f t : b e f o r e   { 
 
     c o n t e n t :   " \ f 0 6 b " ;   } 
 
 
 
 . f a - g i f t s : b e f o r e   { 
 
     c o n t e n t :   " \ f 7 9 c " ;   } 
 
 
 
 . f a - g i t : b e f o r e   { 
 
     c o n t e n t :   " \ f 1 d 3 " ;   } 
 
 
 
 . f a - g i t - a l t : b e f o r e   { 
 
     c o n t e n t :   " \ f 8 4 1 " ;   } 
 
 
 
 . f a - g i t - s q u a r e : b e f o r e   { 
 
     c o n t e n t :   " \ f 1 d 2 " ;   } 
 
 
 
 . f a - g i t h u b : b e f o r e   { 
 
     c o n t e n t :   " \ f 0 9 b " ;   } 
 
 
 
 . f a - g i t h u b - a l t : b e f o r e   { 
 
     c o n t e n t :   " \ f 1 1 3 " ;   } 
 
 
 
 . f a - g i t h u b - s q u a r e : b e f o r e   { 
 
     c o n t e n t :   " \ f 0 9 2 " ;   } 
 
 
 
 . f a - g i t k r a k e n : b e f o r e   { 
 
     c o n t e n t :   " \ f 3 a 6 " ;   } 
 
 
 
 . f a - g i t l a b : b e f o r e   { 
 
     c o n t e n t :   " \ f 2 9 6 " ;   } 
 
 
 
 . f a - g i t t e r : b e f o r e   { 
 
     c o n t e n t :   " \ f 4 2 6 " ;   } 
 
 
 
 . f a - g l a s s - c h e e r s : b e f o r e   { 
 
     c o n t e n t :   " \ f 7 9 f " ;   } 
 
 
 
 . f a - g l a s s - m a r t i n i : b e f o r e   { 
 
     c o n t e n t :   " \ f 0 0 0 " ;   } 
 
 
 
 . f a - g l a s s - m a r t i n i - a l t : b e f o r e   { 
 
     c o n t e n t :   " \ f 5 7 b " ;   } 
 
 
 
 . f a - g l a s s - w h i s k e y : b e f o r e   { 
 
     c o n t e n t :   " \ f 7 a 0 " ;   } 
 
 
 
 . f a - g l a s s e s : b e f o r e   { 
 
     c o n t e n t :   " \ f 5 3 0 " ;   } 
 
 
 
 . f a - g l i d e : b e f o r e   { 
 
     c o n t e n t :   " \ f 2 a 5 " ;   } 
 
 
 
 . f a - g l i d e - g : b e f o r e   { 
 
     c o n t e n t :   " \ f 2 a 6 " ;   } 
 
 
 
 . f a - g l o b e : b e f o r e   { 
 
     c o n t e n t :   " \ f 0 a c " ;   } 
 
 
 
 . f a - g l o b e - a f r i c a : b e f o r e   { 
 
     c o n t e n t :   " \ f 5 7 c " ;   } 
 
 
 
 . f a - g l o b e - a m e r i c a s : b e f o r e   { 
 
     c o n t e n t :   " \ f 5 7 d " ;   } 
 
 
 
 . f a - g l o b e - a s i a : b e f o r e   { 
 
     c o n t e n t :   " \ f 5 7 e " ;   } 
 
 
 
 . f a - g l o b e - e u r o p e : b e f o r e   { 
 
     c o n t e n t :   " \ f 7 a 2 " ;   } 
 
 
 
 . f a - g o f o r e : b e f o r e   { 
 
     c o n t e n t :   " \ f 3 a 7 " ;   } 
 
 
 
 . f a - g o l f - b a l l : b e f o r e   { 
 
     c o n t e n t :   " \ f 4 5 0 " ;   } 
 
 
 
 . f a - g o o d r e a d s : b e f o r e   { 
 
     c o n t e n t :   " \ f 3 a 8 " ;   } 
 
 
 
 . f a - g o o d r e a d s - g : b e f o r e   { 
 
     c o n t e n t :   " \ f 3 a 9 " ;   } 
 
 
 
 . f a - g o o g l e : b e f o r e   { 
 
     c o n t e n t :   " \ f 1 a 0 " ;   } 
 
 
 
 . f a - g o o g l e - d r i v e : b e f o r e   { 
 
     c o n t e n t :   " \ f 3 a a " ;   } 
 
 
 
 . f a - g o o g l e - p l a y : b e f o r e   { 
 
     c o n t e n t :   " \ f 3 a b " ;   } 
 
 
 
 . f a - g o o g l e - p l u s : b e f o r e   { 
 
     c o n t e n t :   " \ f 2 b 3 " ;   } 
 
 
 
 . f a - g o o g l e - p l u s - g : b e f o r e   { 
 
     c o n t e n t :   " \ f 0 d 5 " ;   } 
 
 
 
 . f a - g o o g l e - p l u s - s q u a r e : b e f o r e   { 
 
     c o n t e n t :   " \ f 0 d 4 " ;   } 
 
 
 
 . f a - g o o g l e - w a l l e t : b e f o r e   { 
 
     c o n t e n t :   " \ f 1 e e " ;   } 
 
 
 
 . f a - g o p u r a m : b e f o r e   { 
 
     c o n t e n t :   " \ f 6 6 4 " ;   } 
 
 
 
 . f a - g r a d u a t i o n - c a p : b e f o r e   { 
 
     c o n t e n t :   " \ f 1 9 d " ;   } 
 
 
 
 . f a - g r a t i p a y : b e f o r e   { 
 
     c o n t e n t :   " \ f 1 8 4 " ;   } 
 
 
 
 . f a - g r a v : b e f o r e   { 
 
     c o n t e n t :   " \ f 2 d 6 " ;   } 
 
 
 
 . f a - g r e a t e r - t h a n : b e f o r e   { 
 
     c o n t e n t :   " \ f 5 3 1 " ;   } 
 
 
 
 . f a - g r e a t e r - t h a n - e q u a l : b e f o r e   { 
 
     c o n t e n t :   " \ f 5 3 2 " ;   } 
 
 
 
 . f a - g r i m a c e : b e f o r e   { 
 
     c o n t e n t :   " \ f 5 7 f " ;   } 
 
 
 
 . f a - g r i n : b e f o r e   { 
 
     c o n t e n t :   " \ f 5 8 0 " ;   } 
 
 
 
 . f a - g r i n - a l t : b e f o r e   { 
 
     c o n t e n t :   " \ f 5 8 1 " ;   } 
 
 
 
 . f a - g r i n - b e a m : b e f o r e   { 
 
     c o n t e n t :   " \ f 5 8 2 " ;   } 
 
 
 
 . f a - g r i n - b e a m - s w e a t : b e f o r e   { 
 
     c o n t e n t :   " \ f 5 8 3 " ;   } 
 
 
 
 . f a - g r i n - h e a r t s : b e f o r e   { 
 
     c o n t e n t :   " \ f 5 8 4 " ;   } 
 
 
 
 . f a - g r i n - s q u i n t : b e f o r e   { 
 
     c o n t e n t :   " \ f 5 8 5 " ;   } 
 
 
 
 . f a - g r i n - s q u i n t - t e a r s : b e f o r e   { 
 
     c o n t e n t :   " \ f 5 8 6 " ;   } 
 
 
 
 . f a - g r i n - s t a r s : b e f o r e   { 
 
     c o n t e n t :   " \ f 5 8 7 " ;   } 
 
 
 
 . f a - g r i n - t e a r s : b e f o r e   { 
 
     c o n t e n t :   " \ f 5 8 8 " ;   } 
 
 
 
 . f a - g r i n - t o n g u e : b e f o r e   { 
 
     c o n t e n t :   " \ f 5 8 9 " ;   } 
 
 
 
 . f a - g r i n - t o n g u e - s q u i n t : b e f o r e   { 
 
     c o n t e n t :   " \ f 5 8 a " ;   } 
 
 
 
 . f a - g r i n - t o n g u e - w i n k : b e f o r e   { 
 
     c o n t e n t :   " \ f 5 8 b " ;   } 
 
 
 
 . f a - g r i n - w i n k : b e f o r e   { 
 
     c o n t e n t :   " \ f 5 8 c " ;   } 
 
 
 
 . f a - g r i p - h o r i z o n t a l : b e f o r e   { 
 
     c o n t e n t :   " \ f 5 8 d " ;   } 
 
 
 
 . f a - g r i p - l i n e s : b e f o r e   { 
 
     c o n t e n t :   " \ f 7 a 4 " ;   } 
 
 
 
 . f a - g r i p - l i n e s - v e r t i c a l : b e f o r e   { 
 
     c o n t e n t :   " \ f 7 a 5 " ;   } 
 
 
 
 . f a - g r i p - v e r t i c a l : b e f o r e   { 
 
     c o n t e n t :   " \ f 5 8 e " ;   } 
 
 
 
 . f a - g r i p f i r e : b e f o r e   { 
 
     c o n t e n t :   " \ f 3 a c " ;   } 
 
 
 
 . f a - g r u n t : b e f o r e   { 
 
     c o n t e n t :   " \ f 3 a d " ;   } 
 
 
 
 . f a - g u i t a r : b e f o r e   { 
 
     c o n t e n t :   " \ f 7 a 6 " ;   } 
 
 
 
 . f a - g u l p : b e f o r e   { 
 
     c o n t e n t :   " \ f 3 a e " ;   } 
 
 
 
 . f a - h - s q u a r e : b e f o r e   { 
 
     c o n t e n t :   " \ f 0 f d " ;   } 
 
 
 
 . f a - h a c k e r - n e w s : b e f o r e   { 
 
     c o n t e n t :   " \ f 1 d 4 " ;   } 
 
 
 
 . f a - h a c k e r - n e w s - s q u a r e : b e f o r e   { 
 
     c o n t e n t :   " \ f 3 a f " ;   } 
 
 
 
 . f a - h a c k e r r a n k : b e f o r e   { 
 
     c o n t e n t :   " \ f 5 f 7 " ;   } 
 
 
 
 . f a - h a m b u r g e r : b e f o r e   { 
 
     c o n t e n t :   " \ f 8 0 5 " ;   } 
 
 
 
 . f a - h a m m e r : b e f o r e   { 
 
     c o n t e n t :   " \ f 6 e 3 " ;   } 
 
 
 
 . f a - h a m s a : b e f o r e   { 
 
     c o n t e n t :   " \ f 6 6 5 " ;   } 
 
 
 
 . f a - h a n d - h o l d i n g : b e f o r e   { 
 
     c o n t e n t :   " \ f 4 b d " ;   } 
 
 
 
 . f a - h a n d - h o l d i n g - h e a r t : b e f o r e   { 
 
     c o n t e n t :   " \ f 4 b e " ;   } 
 
 
 
 . f a - h a n d - h o l d i n g - u s d : b e f o r e   { 
 
     c o n t e n t :   " \ f 4 c 0 " ;   } 
 
 
 
 . f a - h a n d - l i z a r d : b e f o r e   { 
 
     c o n t e n t :   " \ f 2 5 8 " ;   } 
 
 
 
 . f a - h a n d - m i d d l e - f i n g e r : b e f o r e   { 
 
     c o n t e n t :   " \ f 8 0 6 " ;   } 
 
 
 
 . f a - h a n d - p a p e r : b e f o r e   { 
 
     c o n t e n t :   " \ f 2 5 6 " ;   } 
 
 
 
 . f a - h a n d - p e a c e : b e f o r e   { 
 
     c o n t e n t :   " \ f 2 5 b " ;   } 
 
 
 
 . f a - h a n d - p o i n t - d o w n : b e f o r e   { 
 
     c o n t e n t :   " \ f 0 a 7 " ;   } 
 
 
 
 . f a - h a n d - p o i n t - l e f t : b e f o r e   { 
 
     c o n t e n t :   " \ f 0 a 5 " ;   } 
 
 
 
 . f a - h a n d - p o i n t - r i g h t : b e f o r e   { 
 
     c o n t e n t :   " \ f 0 a 4 " ;   } 
 
 
 
 . f a - h a n d - p o i n t - u p : b e f o r e   { 
 
     c o n t e n t :   " \ f 0 a 6 " ;   } 
 
 
 
 . f a - h a n d - p o i n t e r : b e f o r e   { 
 
     c o n t e n t :   " \ f 2 5 a " ;   } 
 
 
 
 . f a - h a n d - r o c k : b e f o r e   { 
 
     c o n t e n t :   " \ f 2 5 5 " ;   } 
 
 
 
 . f a - h a n d - s c i s s o r s : b e f o r e   { 
 
     c o n t e n t :   " \ f 2 5 7 " ;   } 
 
 
 
 . f a - h a n d - s p o c k : b e f o r e   { 
 
     c o n t e n t :   " \ f 2 5 9 " ;   } 
 
 
 
 . f a - h a n d s : b e f o r e   { 
 
     c o n t e n t :   " \ f 4 c 2 " ;   } 
 
 
 
 . f a - h a n d s - h e l p i n g : b e f o r e   { 
 
     c o n t e n t :   " \ f 4 c 4 " ;   } 
 
 
 
 . f a - h a n d s h a k e : b e f o r e   { 
 
     c o n t e n t :   " \ f 2 b 5 " ;   } 
 
 
 
 . f a - h a n u k i a h : b e f o r e   { 
 
     c o n t e n t :   " \ f 6 e 6 " ;   } 
 
 
 
 . f a - h a r d - h a t : b e f o r e   { 
 
     c o n t e n t :   " \ f 8 0 7 " ;   } 
 
 
 
 . f a - h a s h t a g : b e f o r e   { 
 
     c o n t e n t :   " \ f 2 9 2 " ;   } 
 
 
 
 . f a - h a t - w i z a r d : b e f o r e   { 
 
     c o n t e n t :   " \ f 6 e 8 " ;   } 
 
 
 
 . f a - h a y k a l : b e f o r e   { 
 
     c o n t e n t :   " \ f 6 6 6 " ;   } 
 
 
 
 . f a - h d d : b e f o r e   { 
 
     c o n t e n t :   " \ f 0 a 0 " ;   } 
 
 
 
 . f a - h e a d i n g : b e f o r e   { 
 
     c o n t e n t :   " \ f 1 d c " ;   } 
 
 
 
 . f a - h e a d p h o n e s : b e f o r e   { 
 
     c o n t e n t :   " \ f 0 2 5 " ;   } 
 
 
 
 . f a - h e a d p h o n e s - a l t : b e f o r e   { 
 
     c o n t e n t :   " \ f 5 8 f " ;   } 
 
 
 
 . f a - h e a d s e t : b e f o r e   { 
 
     c o n t e n t :   " \ f 5 9 0 " ;   } 
 
 
 
 . f a - h e a r t : b e f o r e   { 
 
     c o n t e n t :   " \ f 0 0 4 " ;   } 
 
 
 
 . f a - h e a r t - b r o k e n : b e f o r e   { 
 
     c o n t e n t :   " \ f 7 a 9 " ;   } 
 
 
 
 . f a - h e a r t b e a t : b e f o r e   { 
 
     c o n t e n t :   " \ f 2 1 e " ;   } 
 
 
 
 . f a - h e l i c o p t e r : b e f o r e   { 
 
     c o n t e n t :   " \ f 5 3 3 " ;   } 
 
 
 
 . f a - h i g h l i g h t e r : b e f o r e   { 
 
     c o n t e n t :   " \ f 5 9 1 " ;   } 
 
 
 
 . f a - h i k i n g : b e f o r e   { 
 
     c o n t e n t :   " \ f 6 e c " ;   } 
 
 
 
 . f a - h i p p o : b e f o r e   { 
 
     c o n t e n t :   " \ f 6 e d " ;   } 
 
 
 
 . f a - h i p s : b e f o r e   { 
 
     c o n t e n t :   " \ f 4 5 2 " ;   } 
 
 
 
 . f a - h i r e - a - h e l p e r : b e f o r e   { 
 
     c o n t e n t :   " \ f 3 b 0 " ;   } 
 
 
 
 . f a - h i s t o r y : b e f o r e   { 
 
     c o n t e n t :   " \ f 1 d a " ;   } 
 
 
 
 . f a - h o c k e y - p u c k : b e f o r e   { 
 
     c o n t e n t :   " \ f 4 5 3 " ;   } 
 
 
 
 . f a - h o l l y - b e r r y : b e f o r e   { 
 
     c o n t e n t :   " \ f 7 a a " ;   } 
 
 
 
 . f a - h o m e : b e f o r e   { 
 
     c o n t e n t :   " \ f 0 1 5 " ;   } 
 
 
 
 . f a - h o o l i : b e f o r e   { 
 
     c o n t e n t :   " \ f 4 2 7 " ;   } 
 
 
 
 . f a - h o r n b i l l : b e f o r e   { 
 
     c o n t e n t :   " \ f 5 9 2 " ;   } 
 
 
 
 . f a - h o r s e : b e f o r e   { 
 
     c o n t e n t :   " \ f 6 f 0 " ;   } 
 
 
 
 . f a - h o r s e - h e a d : b e f o r e   { 
 
     c o n t e n t :   " \ f 7 a b " ;   } 
 
 
 
 . f a - h o s p i t a l : b e f o r e   { 
 
     c o n t e n t :   " \ f 0 f 8 " ;   } 
 
 
 
 . f a - h o s p i t a l - a l t : b e f o r e   { 
 
     c o n t e n t :   " \ f 4 7 d " ;   } 
 
 
 
 . f a - h o s p i t a l - s y m b o l : b e f o r e   { 
 
     c o n t e n t :   " \ f 4 7 e " ;   } 
 
 
 
 . f a - h o t - t u b : b e f o r e   { 
 
     c o n t e n t :   " \ f 5 9 3 " ;   } 
 
 
 
 . f a - h o t d o g : b e f o r e   { 
 
     c o n t e n t :   " \ f 8 0 f " ;   } 
 
 
 
 . f a - h o t e l : b e f o r e   { 
 
     c o n t e n t :   " \ f 5 9 4 " ;   } 
 
 
 
 . f a - h o t j a r : b e f o r e   { 
 
     c o n t e n t :   " \ f 3 b 1 " ;   } 
 
 
 
 . f a - h o u r g l a s s : b e f o r e   { 
 
     c o n t e n t :   " \ f 2 5 4 " ;   } 
 
 
 
 . f a - h o u r g l a s s - e n d : b e f o r e   { 
 
     c o n t e n t :   " \ f 2 5 3 " ;   } 
 
 
 
 . f a - h o u r g l a s s - h a l f : b e f o r e   { 
 
     c o n t e n t :   " \ f 2 5 2 " ;   } 
 
 
 
 . f a - h o u r g l a s s - s t a r t : b e f o r e   { 
 
     c o n t e n t :   " \ f 2 5 1 " ;   } 
 
 
 
 . f a - h o u s e - d a m a g e : b e f o r e   { 
 
     c o n t e n t :   " \ f 6 f 1 " ;   } 
 
 
 
 . f a - h o u z z : b e f o r e   { 
 
     c o n t e n t :   " \ f 2 7 c " ;   } 
 
 
 
 . f a - h r y v n i a : b e f o r e   { 
 
     c o n t e n t :   " \ f 6 f 2 " ;   } 
 
 
 
 . f a - h t m l 5 : b e f o r e   { 
 
     c o n t e n t :   " \ f 1 3 b " ;   } 
 
 
 
 . f a - h u b s p o t : b e f o r e   { 
 
     c o n t e n t :   " \ f 3 b 2 " ;   } 
 
 
 
 . f a - i - c u r s o r : b e f o r e   { 
 
     c o n t e n t :   " \ f 2 4 6 " ;   } 
 
 
 
 . f a - i c e - c r e a m : b e f o r e   { 
 
     c o n t e n t :   " \ f 8 1 0 " ;   } 
 
 
 
 . f a - i c i c l e s : b e f o r e   { 
 
     c o n t e n t :   " \ f 7 a d " ;   } 
 
 
 
 . f a - i c o n s : b e f o r e   { 
 
     c o n t e n t :   " \ f 8 6 d " ;   } 
 
 
 
 . f a - i d - b a d g e : b e f o r e   { 
 
     c o n t e n t :   " \ f 2 c 1 " ;   } 
 
 
 
 . f a - i d - c a r d : b e f o r e   { 
 
     c o n t e n t :   " \ f 2 c 2 " ;   } 
 
 
 
 . f a - i d - c a r d - a l t : b e f o r e   { 
 
     c o n t e n t :   " \ f 4 7 f " ;   } 
 
 
 
 . f a - i g l o o : b e f o r e   { 
 
     c o n t e n t :   " \ f 7 a e " ;   } 
 
 
 
 . f a - i m a g e : b e f o r e   { 
 
     c o n t e n t :   " \ f 0 3 e " ;   } 
 
 
 
 . f a - i m a g e s : b e f o r e   { 
 
     c o n t e n t :   " \ f 3 0 2 " ;   } 
 
 
 
 . f a - i m d b : b e f o r e   { 
 
     c o n t e n t :   " \ f 2 d 8 " ;   } 
 
 
 
 . f a - i n b o x : b e f o r e   { 
 
     c o n t e n t :   " \ f 0 1 c " ;   } 
 
 
 
 . f a - i n d e n t : b e f o r e   { 
 
     c o n t e n t :   " \ f 0 3 c " ;   } 
 
 
 
 . f a - i n d u s t r y : b e f o r e   { 
 
     c o n t e n t :   " \ f 2 7 5 " ;   } 
 
 
 
 . f a - i n f i n i t y : b e f o r e   { 
 
     c o n t e n t :   " \ f 5 3 4 " ;   } 
 
 
 
 . f a - i n f o : b e f o r e   { 
 
     c o n t e n t :   " \ f 1 2 9 " ;   } 
 
 
 
 . f a - i n f o - c i r c l e : b e f o r e   { 
 
     c o n t e n t :   " \ f 0 5 a " ;   } 
 
 
 
 . f a - i n s t a g r a m : b e f o r e   { 
 
     c o n t e n t :   " \ f 1 6 d " ;   } 
 
 
 
 . f a - i n t e r c o m : b e f o r e   { 
 
     c o n t e n t :   " \ f 7 a f " ;   } 
 
 
 
 . f a - i n t e r n e t - e x p l o r e r : b e f o r e   { 
 
     c o n t e n t :   " \ f 2 6 b " ;   } 
 
 
 
 . f a - i n v i s i o n : b e f o r e   { 
 
     c o n t e n t :   " \ f 7 b 0 " ;   } 
 
 
 
 . f a - i o x h o s t : b e f o r e   { 
 
     c o n t e n t :   " \ f 2 0 8 " ;   } 
 
 
 
 . f a - i t a l i c : b e f o r e   { 
 
     c o n t e n t :   " \ f 0 3 3 " ;   } 
 
 
 
 . f a - i t c h - i o : b e f o r e   { 
 
     c o n t e n t :   " \ f 8 3 a " ;   } 
 
 
 
 . f a - i t u n e s : b e f o r e   { 
 
     c o n t e n t :   " \ f 3 b 4 " ;   } 
 
 
 
 . f a - i t u n e s - n o t e : b e f o r e   { 
 
     c o n t e n t :   " \ f 3 b 5 " ;   } 
 
 
 
 . f a - j a v a : b e f o r e   { 
 
     c o n t e n t :   " \ f 4 e 4 " ;   } 
 
 
 
 . f a - j e d i : b e f o r e   { 
 
     c o n t e n t :   " \ f 6 6 9 " ;   } 
 
 
 
 . f a - j e d i - o r d e r : b e f o r e   { 
 
     c o n t e n t :   " \ f 5 0 e " ;   } 
 
 
 
 . f a - j e n k i n s : b e f o r e   { 
 
     c o n t e n t :   " \ f 3 b 6 " ;   } 
 
 
 
 . f a - j i r a : b e f o r e   { 
 
     c o n t e n t :   " \ f 7 b 1 " ;   } 
 
 
 
 . f a - j o g e t : b e f o r e   { 
 
     c o n t e n t :   " \ f 3 b 7 " ;   } 
 
 
 
 . f a - j o i n t : b e f o r e   { 
 
     c o n t e n t :   " \ f 5 9 5 " ;   } 
 
 
 
 . f a - j o o m l a : b e f o r e   { 
 
     c o n t e n t :   " \ f 1 a a " ;   } 
 
 
 
 . f a - j o u r n a l - w h i l l s : b e f o r e   { 
 
     c o n t e n t :   " \ f 6 6 a " ;   } 
 
 
 
 . f a - j s : b e f o r e   { 
 
     c o n t e n t :   " \ f 3 b 8 " ;   } 
 
 
 
 . f a - j s - s q u a r e : b e f o r e   { 
 
     c o n t e n t :   " \ f 3 b 9 " ;   } 
 
 
 
 . f a - j s f i d d l e : b e f o r e   { 
 
     c o n t e n t :   " \ f 1 c c " ;   } 
 
 
 
 . f a - k a a b a : b e f o r e   { 
 
     c o n t e n t :   " \ f 6 6 b " ;   } 
 
 
 
 . f a - k a g g l e : b e f o r e   { 
 
     c o n t e n t :   " \ f 5 f a " ;   } 
 
 
 
 . f a - k e y : b e f o r e   { 
 
     c o n t e n t :   " \ f 0 8 4 " ;   } 
 
 
 
 . f a - k e y b a s e : b e f o r e   { 
 
     c o n t e n t :   " \ f 4 f 5 " ;   } 
 
 
 
 . f a - k e y b o a r d : b e f o r e   { 
 
     c o n t e n t :   " \ f 1 1 c " ;   } 
 
 
 
 . f a - k e y c d n : b e f o r e   { 
 
     c o n t e n t :   " \ f 3 b a " ;   } 
 
 
 
 . f a - k h a n d a : b e f o r e   { 
 
     c o n t e n t :   " \ f 6 6 d " ;   } 
 
 
 
 . f a - k i c k s t a r t e r : b e f o r e   { 
 
     c o n t e n t :   " \ f 3 b b " ;   } 
 
 
 
 . f a - k i c k s t a r t e r - k : b e f o r e   { 
 
     c o n t e n t :   " \ f 3 b c " ;   } 
 
 
 
 . f a - k i s s : b e f o r e   { 
 
     c o n t e n t :   " \ f 5 9 6 " ;   } 
 
 
 
 . f a - k i s s - b e a m : b e f o r e   { 
 
     c o n t e n t :   " \ f 5 9 7 " ;   } 
 
 
 
 . f a - k i s s - w i n k - h e a r t : b e f o r e   { 
 
     c o n t e n t :   " \ f 5 9 8 " ;   } 
 
 
 
 . f a - k i w i - b i r d : b e f o r e   { 
 
     c o n t e n t :   " \ f 5 3 5 " ;   } 
 
 
 
 . f a - k o r v u e : b e f o r e   { 
 
     c o n t e n t :   " \ f 4 2 f " ;   } 
 
 
 
 . f a - l a n d m a r k : b e f o r e   { 
 
     c o n t e n t :   " \ f 6 6 f " ;   } 
 
 
 
 . f a - l a n g u a g e : b e f o r e   { 
 
     c o n t e n t :   " \ f 1 a b " ;   } 
 
 
 
 . f a - l a p t o p : b e f o r e   { 
 
     c o n t e n t :   " \ f 1 0 9 " ;   } 
 
 
 
 . f a - l a p t o p - c o d e : b e f o r e   { 
 
     c o n t e n t :   " \ f 5 f c " ;   } 
 
 
 
 . f a - l a p t o p - m e d i c a l : b e f o r e   { 
 
     c o n t e n t :   " \ f 8 1 2 " ;   } 
 
 
 
 . f a - l a r a v e l : b e f o r e   { 
 
     c o n t e n t :   " \ f 3 b d " ;   } 
 
 
 
 . f a - l a s t f m : b e f o r e   { 
 
     c o n t e n t :   " \ f 2 0 2 " ;   } 
 
 
 
 . f a - l a s t f m - s q u a r e : b e f o r e   { 
 
     c o n t e n t :   " \ f 2 0 3 " ;   } 
 
 
 
 . f a - l a u g h : b e f o r e   { 
 
     c o n t e n t :   " \ f 5 9 9 " ;   } 
 
 
 
 . f a - l a u g h - b e a m : b e f o r e   { 
 
     c o n t e n t :   " \ f 5 9 a " ;   } 
 
 
 
 . f a - l a u g h - s q u i n t : b e f o r e   { 
 
     c o n t e n t :   " \ f 5 9 b " ;   } 
 
 
 
 . f a - l a u g h - w i n k : b e f o r e   { 
 
     c o n t e n t :   " \ f 5 9 c " ;   } 
 
 
 
 . f a - l a y e r - g r o u p : b e f o r e   { 
 
     c o n t e n t :   " \ f 5 f d " ;   } 
 
 
 
 . f a - l e a f : b e f o r e   { 
 
     c o n t e n t :   " \ f 0 6 c " ;   } 
 
 
 
 . f a - l e a n p u b : b e f o r e   { 
 
     c o n t e n t :   " \ f 2 1 2 " ;   } 
 
 
 
 . f a - l e m o n : b e f o r e   { 
 
     c o n t e n t :   " \ f 0 9 4 " ;   } 
 
 
 
 . f a - l e s s : b e f o r e   { 
 
     c o n t e n t :   " \ f 4 1 d " ;   } 
 
 
 
 . f a - l e s s - t h a n : b e f o r e   { 
 
     c o n t e n t :   " \ f 5 3 6 " ;   } 
 
 
 
 . f a - l e s s - t h a n - e q u a l : b e f o r e   { 
 
     c o n t e n t :   " \ f 5 3 7 " ;   } 
 
 
 
 . f a - l e v e l - d o w n - a l t : b e f o r e   { 
 
     c o n t e n t :   " \ f 3 b e " ;   } 
 
 
 
 . f a - l e v e l - u p - a l t : b e f o r e   { 
 
     c o n t e n t :   " \ f 3 b f " ;   } 
 
 
 
 . f a - l i f e - r i n g : b e f o r e   { 
 
     c o n t e n t :   " \ f 1 c d " ;   } 
 
 
 
 . f a - l i g h t b u l b : b e f o r e   { 
 
     c o n t e n t :   " \ f 0 e b " ;   } 
 
 
 
 . f a - l i n e : b e f o r e   { 
 
     c o n t e n t :   " \ f 3 c 0 " ;   } 
 
 
 
 . f a - l i n k : b e f o r e   { 
 
     c o n t e n t :   " \ f 0 c 1 " ;   } 
 
 
 
 . f a - l i n k e d i n : b e f o r e   { 
 
     c o n t e n t :   " \ f 0 8 c " ;   } 
 
 
 
 . f a - l i n k e d i n - i n : b e f o r e   { 
 
     c o n t e n t :   " \ f 0 e 1 " ;   } 
 
 
 
 . f a - l i n o d e : b e f o r e   { 
 
     c o n t e n t :   " \ f 2 b 8 " ;   } 
 
 
 
 . f a - l i n u x : b e f o r e   { 
 
     c o n t e n t :   " \ f 1 7 c " ;   } 
 
 
 
 . f a - l i r a - s i g n : b e f o r e   { 
 
     c o n t e n t :   " \ f 1 9 5 " ;   } 
 
 
 
 . f a - l i s t : b e f o r e   { 
 
     c o n t e n t :   " \ f 0 3 a " ;   } 
 
 
 
 . f a - l i s t - a l t : b e f o r e   { 
 
     c o n t e n t :   " \ f 0 2 2 " ;   } 
 
 
 
 . f a - l i s t - o l : b e f o r e   { 
 
     c o n t e n t :   " \ f 0 c b " ;   } 
 
 
 
 . f a - l i s t - u l : b e f o r e   { 
 
     c o n t e n t :   " \ f 0 c a " ;   } 
 
 
 
 . f a - l o c a t i o n - a r r o w : b e f o r e   { 
 
     c o n t e n t :   " \ f 1 2 4 " ;   } 
 
 
 
 . f a - l o c k : b e f o r e   { 
 
     c o n t e n t :   " \ f 0 2 3 " ;   } 
 
 
 
 . f a - l o c k - o p e n : b e f o r e   { 
 
     c o n t e n t :   " \ f 3 c 1 " ;   } 
 
 
 
 . f a - l o n g - a r r o w - a l t - d o w n : b e f o r e   { 
 
     c o n t e n t :   " \ f 3 0 9 " ;   } 
 
 
 
 . f a - l o n g - a r r o w - a l t - l e f t : b e f o r e   { 
 
     c o n t e n t :   " \ f 3 0 a " ;   } 
 
 
 
 . f a - l o n g - a r r o w - a l t - r i g h t : b e f o r e   { 
 
     c o n t e n t :   " \ f 3 0 b " ;   } 
 
 
 
 . f a - l o n g - a r r o w - a l t - u p : b e f o r e   { 
 
     c o n t e n t :   " \ f 3 0 c " ;   } 
 
 
 
 . f a - l o w - v i s i o n : b e f o r e   { 
 
     c o n t e n t :   " \ f 2 a 8 " ;   } 
 
 
 
 . f a - l u g g a g e - c a r t : b e f o r e   { 
 
     c o n t e n t :   " \ f 5 9 d " ;   } 
 
 
 
 . f a - l y f t : b e f o r e   { 
 
     c o n t e n t :   " \ f 3 c 3 " ;   } 
 
 
 
 . f a - m a g e n t o : b e f o r e   { 
 
     c o n t e n t :   " \ f 3 c 4 " ;   } 
 
 
 
 . f a - m a g i c : b e f o r e   { 
 
     c o n t e n t :   " \ f 0 d 0 " ;   } 
 
 
 
 . f a - m a g n e t : b e f o r e   { 
 
     c o n t e n t :   " \ f 0 7 6 " ;   } 
 
 
 
 . f a - m a i l - b u l k : b e f o r e   { 
 
     c o n t e n t :   " \ f 6 7 4 " ;   } 
 
 
 
 . f a - m a i l c h i m p : b e f o r e   { 
 
     c o n t e n t :   " \ f 5 9 e " ;   } 
 
 
 
 . f a - m a l e : b e f o r e   { 
 
     c o n t e n t :   " \ f 1 8 3 " ;   } 
 
 
 
 . f a - m a n d a l o r i a n : b e f o r e   { 
 
     c o n t e n t :   " \ f 5 0 f " ;   } 
 
 
 
 . f a - m a p : b e f o r e   { 
 
     c o n t e n t :   " \ f 2 7 9 " ;   } 
 
 
 
 . f a - m a p - m a r k e d : b e f o r e   { 
 
     c o n t e n t :   " \ f 5 9 f " ;   } 
 
 
 
 . f a - m a p - m a r k e d - a l t : b e f o r e   { 
 
     c o n t e n t :   " \ f 5 a 0 " ;   } 
 
 
 
 . f a - m a p - m a r k e r : b e f o r e   { 
 
     c o n t e n t :   " \ f 0 4 1 " ;   } 
 
 
 
 . f a - m a p - m a r k e r - a l t : b e f o r e   { 
 
     c o n t e n t :   " \ f 3 c 5 " ;   } 
 
 
 
 . f a - m a p - p i n : b e f o r e   { 
 
     c o n t e n t :   " \ f 2 7 6 " ;   } 
 
 
 
 . f a - m a p - s i g n s : b e f o r e   { 
 
     c o n t e n t :   " \ f 2 7 7 " ;   } 
 
 
 
 . f a - m a r k d o w n : b e f o r e   { 
 
     c o n t e n t :   " \ f 6 0 f " ;   } 
 
 
 
 . f a - m a r k e r : b e f o r e   { 
 
     c o n t e n t :   " \ f 5 a 1 " ;   } 
 
 
 
 . f a - m a r s : b e f o r e   { 
 
     c o n t e n t :   " \ f 2 2 2 " ;   } 
 
 
 
 . f a - m a r s - d o u b l e : b e f o r e   { 
 
     c o n t e n t :   " \ f 2 2 7 " ;   } 
 
 
 
 . f a - m a r s - s t r o k e : b e f o r e   { 
 
     c o n t e n t :   " \ f 2 2 9 " ;   } 
 
 
 
 . f a - m a r s - s t r o k e - h : b e f o r e   { 
 
     c o n t e n t :   " \ f 2 2 b " ;   } 
 
 
 
 . f a - m a r s - s t r o k e - v : b e f o r e   { 
 
     c o n t e n t :   " \ f 2 2 a " ;   } 
 
 
 
 . f a - m a s k : b e f o r e   { 
 
     c o n t e n t :   " \ f 6 f a " ;   } 
 
 
 
 . f a - m a s t o d o n : b e f o r e   { 
 
     c o n t e n t :   " \ f 4 f 6 " ;   } 
 
 
 
 . f a - m a x c d n : b e f o r e   { 
 
     c o n t e n t :   " \ f 1 3 6 " ;   } 
 
 
 
 . f a - m e d a l : b e f o r e   { 
 
     c o n t e n t :   " \ f 5 a 2 " ;   } 
 
 
 
 . f a - m e d a p p s : b e f o r e   { 
 
     c o n t e n t :   " \ f 3 c 6 " ;   } 
 
 
 
 . f a - m e d i u m : b e f o r e   { 
 
     c o n t e n t :   " \ f 2 3 a " ;   } 
 
 
 
 . f a - m e d i u m - m : b e f o r e   { 
 
     c o n t e n t :   " \ f 3 c 7 " ;   } 
 
 
 
 . f a - m e d k i t : b e f o r e   { 
 
     c o n t e n t :   " \ f 0 f a " ;   } 
 
 
 
 . f a - m e d r t : b e f o r e   { 
 
     c o n t e n t :   " \ f 3 c 8 " ;   } 
 
 
 
 . f a - m e e t u p : b e f o r e   { 
 
     c o n t e n t :   " \ f 2 e 0 " ;   } 
 
 
 
 . f a - m e g a p o r t : b e f o r e   { 
 
     c o n t e n t :   " \ f 5 a 3 " ;   } 
 
 
 
 . f a - m e h : b e f o r e   { 
 
     c o n t e n t :   " \ f 1 1 a " ;   } 
 
 
 
 . f a - m e h - b l a n k : b e f o r e   { 
 
     c o n t e n t :   " \ f 5 a 4 " ;   } 
 
 
 
 . f a - m e h - r o l l i n g - e y e s : b e f o r e   { 
 
     c o n t e n t :   " \ f 5 a 5 " ;   } 
 
 
 
 . f a - m e m o r y : b e f o r e   { 
 
     c o n t e n t :   " \ f 5 3 8 " ;   } 
 
 
 
 . f a - m e n d e l e y : b e f o r e   { 
 
     c o n t e n t :   " \ f 7 b 3 " ;   } 
 
 
 
 . f a - m e n o r a h : b e f o r e   { 
 
     c o n t e n t :   " \ f 6 7 6 " ;   } 
 
 
 
 . f a - m e r c u r y : b e f o r e   { 
 
     c o n t e n t :   " \ f 2 2 3 " ;   } 
 
 
 
 . f a - m e t e o r : b e f o r e   { 
 
     c o n t e n t :   " \ f 7 5 3 " ;   } 
 
 
 
 . f a - m i c r o c h i p : b e f o r e   { 
 
     c o n t e n t :   " \ f 2 d b " ;   } 
 
 
 
 . f a - m i c r o p h o n e : b e f o r e   { 
 
     c o n t e n t :   " \ f 1 3 0 " ;   } 
 
 
 
 . f a - m i c r o p h o n e - a l t : b e f o r e   { 
 
     c o n t e n t :   " \ f 3 c 9 " ;   } 
 
 
 
 . f a - m i c r o p h o n e - a l t - s l a s h : b e f o r e   { 
 
     c o n t e n t :   " \ f 5 3 9 " ;   } 
 
 
 
 . f a - m i c r o p h o n e - s l a s h : b e f o r e   { 
 
     c o n t e n t :   " \ f 1 3 1 " ;   } 
 
 
 
 . f a - m i c r o s c o p e : b e f o r e   { 
 
     c o n t e n t :   " \ f 6 1 0 " ;   } 
 
 
 
 . f a - m i c r o s o f t : b e f o r e   { 
 
     c o n t e n t :   " \ f 3 c a " ;   } 
 
 
 
 . f a - m i n u s : b e f o r e   { 
 
     c o n t e n t :   " \ f 0 6 8 " ;   } 
 
 
 
 . f a - m i n u s - c i r c l e : b e f o r e   { 
 
     c o n t e n t :   " \ f 0 5 6 " ;   } 
 
 
 
 . f a - m i n u s - s q u a r e : b e f o r e   { 
 
     c o n t e n t :   " \ f 1 4 6 " ;   } 
 
 
 
 . f a - m i t t e n : b e f o r e   { 
 
     c o n t e n t :   " \ f 7 b 5 " ;   } 
 
 
 
 . f a - m i x : b e f o r e   { 
 
     c o n t e n t :   " \ f 3 c b " ;   } 
 
 
 
 . f a - m i x c l o u d : b e f o r e   { 
 
     c o n t e n t :   " \ f 2 8 9 " ;   } 
 
 
 
 . f a - m i z u n i : b e f o r e   { 
 
     c o n t e n t :   " \ f 3 c c " ;   } 
 
 
 
 . f a - m o b i l e : b e f o r e   { 
 
     c o n t e n t :   " \ f 1 0 b " ;   } 
 
 
 
 . f a - m o b i l e - a l t : b e f o r e   { 
 
     c o n t e n t :   " \ f 3 c d " ;   } 
 
 
 
 . f a - m o d x : b e f o r e   { 
 
     c o n t e n t :   " \ f 2 8 5 " ;   } 
 
 
 
 . f a - m o n e r o : b e f o r e   { 
 
     c o n t e n t :   " \ f 3 d 0 " ;   } 
 
 
 
 . f a - m o n e y - b i l l : b e f o r e   { 
 
     c o n t e n t :   " \ f 0 d 6 " ;   } 
 
 
 
 . f a - m o n e y - b i l l - a l t : b e f o r e   { 
 
     c o n t e n t :   " \ f 3 d 1 " ;   } 
 
 
 
 . f a - m o n e y - b i l l - w a v e : b e f o r e   { 
 
     c o n t e n t :   " \ f 5 3 a " ;   } 
 
 
 
 . f a - m o n e y - b i l l - w a v e - a l t : b e f o r e   { 
 
     c o n t e n t :   " \ f 5 3 b " ;   } 
 
 
 
 . f a - m o n e y - c h e c k : b e f o r e   { 
 
     c o n t e n t :   " \ f 5 3 c " ;   } 
 
 
 
 . f a - m o n e y - c h e c k - a l t : b e f o r e   { 
 
     c o n t e n t :   " \ f 5 3 d " ;   } 
 
 
 
 . f a - m o n u m e n t : b e f o r e   { 
 
     c o n t e n t :   " \ f 5 a 6 " ;   } 
 
 
 
 . f a - m o o n : b e f o r e   { 
 
     c o n t e n t :   " \ f 1 8 6 " ;   } 
 
 
 
 . f a - m o r t a r - p e s t l e : b e f o r e   { 
 
     c o n t e n t :   " \ f 5 a 7 " ;   } 
 
 
 
 . f a - m o s q u e : b e f o r e   { 
 
     c o n t e n t :   " \ f 6 7 8 " ;   } 
 
 
 
 . f a - m o t o r c y c l e : b e f o r e   { 
 
     c o n t e n t :   " \ f 2 1 c " ;   } 
 
 
 
 . f a - m o u n t a i n : b e f o r e   { 
 
     c o n t e n t :   " \ f 6 f c " ;   } 
 
 
 
 . f a - m o u s e - p o i n t e r : b e f o r e   { 
 
     c o n t e n t :   " \ f 2 4 5 " ;   } 
 
 
 
 . f a - m u g - h o t : b e f o r e   { 
 
     c o n t e n t :   " \ f 7 b 6 " ;   } 
 
 
 
 . f a - m u s i c : b e f o r e   { 
 
     c o n t e n t :   " \ f 0 0 1 " ;   } 
 
 
 
 . f a - n a p s t e r : b e f o r e   { 
 
     c o n t e n t :   " \ f 3 d 2 " ;   } 
 
 
 
 . f a - n e o s : b e f o r e   { 
 
     c o n t e n t :   " \ f 6 1 2 " ;   } 
 
 
 
 . f a - n e t w o r k - w i r e d : b e f o r e   { 
 
     c o n t e n t :   " \ f 6 f f " ;   } 
 
 
 
 . f a - n e u t e r : b e f o r e   { 
 
     c o n t e n t :   " \ f 2 2 c " ;   } 
 
 
 
 . f a - n e w s p a p e r : b e f o r e   { 
 
     c o n t e n t :   " \ f 1 e a " ;   } 
 
 
 
 . f a - n i m b l r : b e f o r e   { 
 
     c o n t e n t :   " \ f 5 a 8 " ;   } 
 
 
 
 . f a - n o d e : b e f o r e   { 
 
     c o n t e n t :   " \ f 4 1 9 " ;   } 
 
 
 
 . f a - n o d e - j s : b e f o r e   { 
 
     c o n t e n t :   " \ f 3 d 3 " ;   } 
 
 
 
 . f a - n o t - e q u a l : b e f o r e   { 
 
     c o n t e n t :   " \ f 5 3 e " ;   } 
 
 
 
 . f a - n o t e s - m e d i c a l : b e f o r e   { 
 
     c o n t e n t :   " \ f 4 8 1 " ;   } 
 
 
 
 . f a - n p m : b e f o r e   { 
 
     c o n t e n t :   " \ f 3 d 4 " ;   } 
 
 
 
 . f a - n s 8 : b e f o r e   { 
 
     c o n t e n t :   " \ f 3 d 5 " ;   } 
 
 
 
 . f a - n u t r i t i o n i x : b e f o r e   { 
 
     c o n t e n t :   " \ f 3 d 6 " ;   } 
 
 
 
 . f a - o b j e c t - g r o u p : b e f o r e   { 
 
     c o n t e n t :   " \ f 2 4 7 " ;   } 
 
 
 
 . f a - o b j e c t - u n g r o u p : b e f o r e   { 
 
     c o n t e n t :   " \ f 2 4 8 " ;   } 
 
 
 
 . f a - o d n o k l a s s n i k i : b e f o r e   { 
 
     c o n t e n t :   " \ f 2 6 3 " ;   } 
 
 
 
 . f a - o d n o k l a s s n i k i - s q u a r e : b e f o r e   { 
 
     c o n t e n t :   " \ f 2 6 4 " ;   } 
 
 
 
 . f a - o i l - c a n : b e f o r e   { 
 
     c o n t e n t :   " \ f 6 1 3 " ;   } 
 
 
 
 . f a - o l d - r e p u b l i c : b e f o r e   { 
 
     c o n t e n t :   " \ f 5 1 0 " ;   } 
 
 
 
 . f a - o m : b e f o r e   { 
 
     c o n t e n t :   " \ f 6 7 9 " ;   } 
 
 
 
 . f a - o p e n c a r t : b e f o r e   { 
 
     c o n t e n t :   " \ f 2 3 d " ;   } 
 
 
 
 . f a - o p e n i d : b e f o r e   { 
 
     c o n t e n t :   " \ f 1 9 b " ;   } 
 
 
 
 . f a - o p e r a : b e f o r e   { 
 
     c o n t e n t :   " \ f 2 6 a " ;   } 
 
 
 
 . f a - o p t i n - m o n s t e r : b e f o r e   { 
 
     c o n t e n t :   " \ f 2 3 c " ;   } 
 
 
 
 . f a - o s i : b e f o r e   { 
 
     c o n t e n t :   " \ f 4 1 a " ;   } 
 
 
 
 . f a - o t t e r : b e f o r e   { 
 
     c o n t e n t :   " \ f 7 0 0 " ;   } 
 
 
 
 . f a - o u t d e n t : b e f o r e   { 
 
     c o n t e n t :   " \ f 0 3 b " ;   } 
 
 
 
 . f a - p a g e 4 : b e f o r e   { 
 
     c o n t e n t :   " \ f 3 d 7 " ;   } 
 
 
 
 . f a - p a g e l i n e s : b e f o r e   { 
 
     c o n t e n t :   " \ f 1 8 c " ;   } 
 
 
 
 . f a - p a g e r : b e f o r e   { 
 
     c o n t e n t :   " \ f 8 1 5 " ;   } 
 
 
 
 . f a - p a i n t - b r u s h : b e f o r e   { 
 
     c o n t e n t :   " \ f 1 f c " ;   } 
 
 
 
 . f a - p a i n t - r o l l e r : b e f o r e   { 
 
     c o n t e n t :   " \ f 5 a a " ;   } 
 
 
 
 . f a - p a l e t t e : b e f o r e   { 
 
     c o n t e n t :   " \ f 5 3 f " ;   } 
 
 
 
 . f a - p a l f e d : b e f o r e   { 
 
     c o n t e n t :   " \ f 3 d 8 " ;   } 
 
 
 
 . f a - p a l l e t : b e f o r e   { 
 
     c o n t e n t :   " \ f 4 8 2 " ;   } 
 
 
 
 . f a - p a p e r - p l a n e : b e f o r e   { 
 
     c o n t e n t :   " \ f 1 d 8 " ;   } 
 
 
 
 . f a - p a p e r c l i p : b e f o r e   { 
 
     c o n t e n t :   " \ f 0 c 6 " ;   } 
 
 
 
 . f a - p a r a c h u t e - b o x : b e f o r e   { 
 
     c o n t e n t :   " \ f 4 c d " ;   } 
 
 
 
 . f a - p a r a g r a p h : b e f o r e   { 
 
     c o n t e n t :   " \ f 1 d d " ;   } 
 
 
 
 . f a - p a r k i n g : b e f o r e   { 
 
     c o n t e n t :   " \ f 5 4 0 " ;   } 
 
 
 
 . f a - p a s s p o r t : b e f o r e   { 
 
     c o n t e n t :   " \ f 5 a b " ;   } 
 
 
 
 . f a - p a s t a f a r i a n i s m : b e f o r e   { 
 
     c o n t e n t :   " \ f 6 7 b " ;   } 
 
 
 
 . f a - p a s t e : b e f o r e   { 
 
     c o n t e n t :   " \ f 0 e a " ;   } 
 
 
 
 . f a - p a t r e o n : b e f o r e   { 
 
     c o n t e n t :   " \ f 3 d 9 " ;   } 
 
 
 
 . f a - p a u s e : b e f o r e   { 
 
     c o n t e n t :   " \ f 0 4 c " ;   } 
 
 
 
 . f a - p a u s e - c i r c l e : b e f o r e   { 
 
     c o n t e n t :   " \ f 2 8 b " ;   } 
 
 
 
 . f a - p a w : b e f o r e   { 
 
     c o n t e n t :   " \ f 1 b 0 " ;   } 
 
 
 
 . f a - p a y p a l : b e f o r e   { 
 
     c o n t e n t :   " \ f 1 e d " ;   } 
 
 
 
 . f a - p e a c e : b e f o r e   { 
 
     c o n t e n t :   " \ f 6 7 c " ;   } 
 
 
 
 . f a - p e n : b e f o r e   { 
 
     c o n t e n t :   " \ f 3 0 4 " ;   } 
 
 
 
 . f a - p e n - a l t : b e f o r e   { 
 
     c o n t e n t :   " \ f 3 0 5 " ;   } 
 
 
 
 . f a - p e n - f a n c y : b e f o r e   { 
 
     c o n t e n t :   " \ f 5 a c " ;   } 
 
 
 
 . f a - p e n - n i b : b e f o r e   { 
 
     c o n t e n t :   " \ f 5 a d " ;   } 
 
 
 
 . f a - p e n - s q u a r e : b e f o r e   { 
 
     c o n t e n t :   " \ f 1 4 b " ;   } 
 
 
 
 . f a - p e n c i l - a l t : b e f o r e   { 
 
     c o n t e n t :   " \ f 3 0 3 " ;   } 
 
 
 
 . f a - p e n c i l - r u l e r : b e f o r e   { 
 
     c o n t e n t :   " \ f 5 a e " ;   } 
 
 
 
 . f a - p e n n y - a r c a d e : b e f o r e   { 
 
     c o n t e n t :   " \ f 7 0 4 " ;   } 
 
 
 
 . f a - p e o p l e - c a r r y : b e f o r e   { 
 
     c o n t e n t :   " \ f 4 c e " ;   } 
 
 
 
 . f a - p e p p e r - h o t : b e f o r e   { 
 
     c o n t e n t :   " \ f 8 1 6 " ;   } 
 
 
 
 . f a - p e r c e n t : b e f o r e   { 
 
     c o n t e n t :   " \ f 2 9 5 " ;   } 
 
 
 
 . f a - p e r c e n t a g e : b e f o r e   { 
 
     c o n t e n t :   " \ f 5 4 1 " ;   } 
 
 
 
 . f a - p e r i s c o p e : b e f o r e   { 
 
     c o n t e n t :   " \ f 3 d a " ;   } 
 
 
 
 . f a - p e r s o n - b o o t h : b e f o r e   { 
 
     c o n t e n t :   " \ f 7 5 6 " ;   } 
 
 
 
 . f a - p h a b r i c a t o r : b e f o r e   { 
 
     c o n t e n t :   " \ f 3 d b " ;   } 
 
 
 
 . f a - p h o e n i x - f r a m e w o r k : b e f o r e   { 
 
     c o n t e n t :   " \ f 3 d c " ;   } 
 
 
 
 . f a - p h o e n i x - s q u a d r o n : b e f o r e   { 
 
     c o n t e n t :   " \ f 5 1 1 " ;   } 
 
 
 
 . f a - p h o n e : b e f o r e   { 
 
     c o n t e n t :   " \ f 0 9 5 " ;   } 
 
 
 
 . f a - p h o n e - a l t : b e f o r e   { 
 
     c o n t e n t :   " \ f 8 7 9 " ;   } 
 
 
 
 . f a - p h o n e - s l a s h : b e f o r e   { 
 
     c o n t e n t :   " \ f 3 d d " ;   } 
 
 
 
 . f a - p h o n e - s q u a r e : b e f o r e   { 
 
     c o n t e n t :   " \ f 0 9 8 " ;   } 
 
 
 
 . f a - p h o n e - s q u a r e - a l t : b e f o r e   { 
 
     c o n t e n t :   " \ f 8 7 b " ;   } 
 
 
 
 . f a - p h o n e - v o l u m e : b e f o r e   { 
 
     c o n t e n t :   " \ f 2 a 0 " ;   } 
 
 
 
 . f a - p h o t o - v i d e o : b e f o r e   { 
 
     c o n t e n t :   " \ f 8 7 c " ;   } 
 
 
 
 . f a - p h p : b e f o r e   { 
 
     c o n t e n t :   " \ f 4 5 7 " ;   } 
 
 
 
 . f a - p i e d - p i p e r : b e f o r e   { 
 
     c o n t e n t :   " \ f 2 a e " ;   } 
 
 
 
 . f a - p i e d - p i p e r - a l t : b e f o r e   { 
 
     c o n t e n t :   " \ f 1 a 8 " ;   } 
 
 
 
 . f a - p i e d - p i p e r - h a t : b e f o r e   { 
 
     c o n t e n t :   " \ f 4 e 5 " ;   } 
 
 
 
 . f a - p i e d - p i p e r - p p : b e f o r e   { 
 
     c o n t e n t :   " \ f 1 a 7 " ;   } 
 
 
 
 . f a - p i g g y - b a n k : b e f o r e   { 
 
     c o n t e n t :   " \ f 4 d 3 " ;   } 
 
 
 
 . f a - p i l l s : b e f o r e   { 
 
     c o n t e n t :   " \ f 4 8 4 " ;   } 
 
 
 
 . f a - p i n t e r e s t : b e f o r e   { 
 
     c o n t e n t :   " \ f 0 d 2 " ;   } 
 
 
 
 . f a - p i n t e r e s t - p : b e f o r e   { 
 
     c o n t e n t :   " \ f 2 3 1 " ;   } 
 
 
 
 . f a - p i n t e r e s t - s q u a r e : b e f o r e   { 
 
     c o n t e n t :   " \ f 0 d 3 " ;   } 
 
 
 
 . f a - p i z z a - s l i c e : b e f o r e   { 
 
     c o n t e n t :   " \ f 8 1 8 " ;   } 
 
 
 
 . f a - p l a c e - o f - w o r s h i p : b e f o r e   { 
 
     c o n t e n t :   " \ f 6 7 f " ;   } 
 
 
 
 . f a - p l a n e : b e f o r e   { 
 
     c o n t e n t :   " \ f 0 7 2 " ;   } 
 
 
 
 . f a - p l a n e - a r r i v a l : b e f o r e   { 
 
     c o n t e n t :   " \ f 5 a f " ;   } 
 
 
 
 . f a - p l a n e - d e p a r t u r e : b e f o r e   { 
 
     c o n t e n t :   " \ f 5 b 0 " ;   } 
 
 
 
 . f a - p l a y : b e f o r e   { 
 
     c o n t e n t :   " \ f 0 4 b " ;   } 
 
 
 
 . f a - p l a y - c i r c l e : b e f o r e   { 
 
     c o n t e n t :   " \ f 1 4 4 " ;   } 
 
 
 
 . f a - p l a y s t a t i o n : b e f o r e   { 
 
     c o n t e n t :   " \ f 3 d f " ;   } 
 
 
 
 . f a - p l u g : b e f o r e   { 
 
     c o n t e n t :   " \ f 1 e 6 " ;   } 
 
 
 
 . f a - p l u s : b e f o r e   { 
 
     c o n t e n t :   " \ f 0 6 7 " ;   } 
 
 
 
 . f a - p l u s - c i r c l e : b e f o r e   { 
 
     c o n t e n t :   " \ f 0 5 5 " ;   } 
 
 
 
 . f a - p l u s - s q u a r e : b e f o r e   { 
 
     c o n t e n t :   " \ f 0 f e " ;   } 
 
 
 
 . f a - p o d c a s t : b e f o r e   { 
 
     c o n t e n t :   " \ f 2 c e " ;   } 
 
 
 
 . f a - p o l l : b e f o r e   { 
 
     c o n t e n t :   " \ f 6 8 1 " ;   } 
 
 
 
 . f a - p o l l - h : b e f o r e   { 
 
     c o n t e n t :   " \ f 6 8 2 " ;   } 
 
 
 
 . f a - p o o : b e f o r e   { 
 
     c o n t e n t :   " \ f 2 f e " ;   } 
 
 
 
 . f a - p o o - s t o r m : b e f o r e   { 
 
     c o n t e n t :   " \ f 7 5 a " ;   } 
 
 
 
 . f a - p o o p : b e f o r e   { 
 
     c o n t e n t :   " \ f 6 1 9 " ;   } 
 
 
 
 . f a - p o r t r a i t : b e f o r e   { 
 
     c o n t e n t :   " \ f 3 e 0 " ;   } 
 
 
 
 . f a - p o u n d - s i g n : b e f o r e   { 
 
     c o n t e n t :   " \ f 1 5 4 " ;   } 
 
 
 
 . f a - p o w e r - o f f : b e f o r e   { 
 
     c o n t e n t :   " \ f 0 1 1 " ;   } 
 
 
 
 . f a - p r a y : b e f o r e   { 
 
     c o n t e n t :   " \ f 6 8 3 " ;   } 
 
 
 
 . f a - p r a y i n g - h a n d s : b e f o r e   { 
 
     c o n t e n t :   " \ f 6 8 4 " ;   } 
 
 
 
 . f a - p r e s c r i p t i o n : b e f o r e   { 
 
     c o n t e n t :   " \ f 5 b 1 " ;   } 
 
 
 
 . f a - p r e s c r i p t i o n - b o t t l e : b e f o r e   { 
 
     c o n t e n t :   " \ f 4 8 5 " ;   } 
 
 
 
 . f a - p r e s c r i p t i o n - b o t t l e - a l t : b e f o r e   { 
 
     c o n t e n t :   " \ f 4 8 6 " ;   } 
 
 
 
 . f a - p r i n t : b e f o r e   { 
 
     c o n t e n t :   " \ f 0 2 f " ;   } 
 
 
 
 . f a - p r o c e d u r e s : b e f o r e   { 
 
     c o n t e n t :   " \ f 4 8 7 " ;   } 
 
 
 
 . f a - p r o d u c t - h u n t : b e f o r e   { 
 
     c o n t e n t :   " \ f 2 8 8 " ;   } 
 
 
 
 . f a - p r o j e c t - d i a g r a m : b e f o r e   { 
 
     c o n t e n t :   " \ f 5 4 2 " ;   } 
 
 
 
 . f a - p u s h e d : b e f o r e   { 
 
     c o n t e n t :   " \ f 3 e 1 " ;   } 
 
 
 
 . f a - p u z z l e - p i e c e : b e f o r e   { 
 
     c o n t e n t :   " \ f 1 2 e " ;   } 
 
 
 
 . f a - p y t h o n : b e f o r e   { 
 
     c o n t e n t :   " \ f 3 e 2 " ;   } 
 
 
 
 . f a - q q : b e f o r e   { 
 
     c o n t e n t :   " \ f 1 d 6 " ;   } 
 
 
 
 . f a - q r c o d e : b e f o r e   { 
 
     c o n t e n t :   " \ f 0 2 9 " ;   } 
 
 
 
 . f a - q u e s t i o n : b e f o r e   { 
 
     c o n t e n t :   " \ f 1 2 8 " ;   } 
 
 
 
 . f a - q u e s t i o n - c i r c l e : b e f o r e   { 
 
     c o n t e n t :   " \ f 0 5 9 " ;   } 
 
 
 
 . f a - q u i d d i t c h : b e f o r e   { 
 
     c o n t e n t :   " \ f 4 5 8 " ;   } 
 
 
 
 . f a - q u i n s c a p e : b e f o r e   { 
 
     c o n t e n t :   " \ f 4 5 9 " ;   } 
 
 
 
 . f a - q u o r a : b e f o r e   { 
 
     c o n t e n t :   " \ f 2 c 4 " ;   } 
 
 
 
 . f a - q u o t e - l e f t : b e f o r e   { 
 
     c o n t e n t :   " \ f 1 0 d " ;   } 
 
 
 
 . f a - q u o t e - r i g h t : b e f o r e   { 
 
     c o n t e n t :   " \ f 1 0 e " ;   } 
 
 
 
 . f a - q u r a n : b e f o r e   { 
 
     c o n t e n t :   " \ f 6 8 7 " ;   } 
 
 
 
 . f a - r - p r o j e c t : b e f o r e   { 
 
     c o n t e n t :   " \ f 4 f 7 " ;   } 
 
 
 
 . f a - r a d i a t i o n : b e f o r e   { 
 
     c o n t e n t :   " \ f 7 b 9 " ;   } 
 
 
 
 . f a - r a d i a t i o n - a l t : b e f o r e   { 
 
     c o n t e n t :   " \ f 7 b a " ;   } 
 
 
 
 . f a - r a i n b o w : b e f o r e   { 
 
     c o n t e n t :   " \ f 7 5 b " ;   } 
 
 
 
 . f a - r a n d o m : b e f o r e   { 
 
     c o n t e n t :   " \ f 0 7 4 " ;   } 
 
 
 
 . f a - r a s p b e r r y - p i : b e f o r e   { 
 
     c o n t e n t :   " \ f 7 b b " ;   } 
 
 
 
 . f a - r a v e l r y : b e f o r e   { 
 
     c o n t e n t :   " \ f 2 d 9 " ;   } 
 
 
 
 . f a - r e a c t : b e f o r e   { 
 
     c o n t e n t :   " \ f 4 1 b " ;   } 
 
 
 
 . f a - r e a c t e u r o p e : b e f o r e   { 
 
     c o n t e n t :   " \ f 7 5 d " ;   } 
 
 
 
 . f a - r e a d m e : b e f o r e   { 
 
     c o n t e n t :   " \ f 4 d 5 " ;   } 
 
 
 
 . f a - r e b e l : b e f o r e   { 
 
     c o n t e n t :   " \ f 1 d 0 " ;   } 
 
 
 
 . f a - r e c e i p t : b e f o r e   { 
 
     c o n t e n t :   " \ f 5 4 3 " ;   } 
 
 
 
 . f a - r e c y c l e : b e f o r e   { 
 
     c o n t e n t :   " \ f 1 b 8 " ;   } 
 
 
 
 . f a - r e d - r i v e r : b e f o r e   { 
 
     c o n t e n t :   " \ f 3 e 3 " ;   } 
 
 
 
 . f a - r e d d i t : b e f o r e   { 
 
     c o n t e n t :   " \ f 1 a 1 " ;   } 
 
 
 
 . f a - r e d d i t - a l i e n : b e f o r e   { 
 
     c o n t e n t :   " \ f 2 8 1 " ;   } 
 
 
 
 . f a - r e d d i t - s q u a r e : b e f o r e   { 
 
     c o n t e n t :   " \ f 1 a 2 " ;   } 
 
 
 
 . f a - r e d h a t : b e f o r e   { 
 
     c o n t e n t :   " \ f 7 b c " ;   } 
 
 
 
 . f a - r e d o : b e f o r e   { 
 
     c o n t e n t :   " \ f 0 1 e " ;   } 
 
 
 
 . f a - r e d o - a l t : b e f o r e   { 
 
     c o n t e n t :   " \ f 2 f 9 " ;   } 
 
 
 
 . f a - r e g i s t e r e d : b e f o r e   { 
 
     c o n t e n t :   " \ f 2 5 d " ;   } 
 
 
 
 . f a - r e m o v e - f o r m a t : b e f o r e   { 
 
     c o n t e n t :   " \ f 8 7 d " ;   } 
 
 
 
 . f a - r e n r e n : b e f o r e   { 
 
     c o n t e n t :   " \ f 1 8 b " ;   } 
 
 
 
 . f a - r e p l y : b e f o r e   { 
 
     c o n t e n t :   " \ f 3 e 5 " ;   } 
 
 
 
 . f a - r e p l y - a l l : b e f o r e   { 
 
     c o n t e n t :   " \ f 1 2 2 " ;   } 
 
 
 
 . f a - r e p l y d : b e f o r e   { 
 
     c o n t e n t :   " \ f 3 e 6 " ;   } 
 
 
 
 . f a - r e p u b l i c a n : b e f o r e   { 
 
     c o n t e n t :   " \ f 7 5 e " ;   } 
 
 
 
 . f a - r e s e a r c h g a t e : b e f o r e   { 
 
     c o n t e n t :   " \ f 4 f 8 " ;   } 
 
 
 
 . f a - r e s o l v i n g : b e f o r e   { 
 
     c o n t e n t :   " \ f 3 e 7 " ;   } 
 
 
 
 . f a - r e s t r o o m : b e f o r e   { 
 
     c o n t e n t :   " \ f 7 b d " ;   } 
 
 
 
 . f a - r e t w e e t : b e f o r e   { 
 
     c o n t e n t :   " \ f 0 7 9 " ;   } 
 
 
 
 . f a - r e v : b e f o r e   { 
 
     c o n t e n t :   " \ f 5 b 2 " ;   } 
 
 
 
 . f a - r i b b o n : b e f o r e   { 
 
     c o n t e n t :   " \ f 4 d 6 " ;   } 
 
 
 
 . f a - r i n g : b e f o r e   { 
 
     c o n t e n t :   " \ f 7 0 b " ;   } 
 
 
 
 . f a - r o a d : b e f o r e   { 
 
     c o n t e n t :   " \ f 0 1 8 " ;   } 
 
 
 
 . f a - r o b o t : b e f o r e   { 
 
     c o n t e n t :   " \ f 5 4 4 " ;   } 
 
 
 
 . f a - r o c k e t : b e f o r e   { 
 
     c o n t e n t :   " \ f 1 3 5 " ;   } 
 
 
 
 . f a - r o c k e t c h a t : b e f o r e   { 
 
     c o n t e n t :   " \ f 3 e 8 " ;   } 
 
 
 
 . f a - r o c k r m s : b e f o r e   { 
 
     c o n t e n t :   " \ f 3 e 9 " ;   } 
 
 
 
 . f a - r o u t e : b e f o r e   { 
 
     c o n t e n t :   " \ f 4 d 7 " ;   } 
 
 
 
 . f a - r s s : b e f o r e   { 
 
     c o n t e n t :   " \ f 0 9 e " ;   } 
 
 
 
 . f a - r s s - s q u a r e : b e f o r e   { 
 
     c o n t e n t :   " \ f 1 4 3 " ;   } 
 
 
 
 . f a - r u b l e - s i g n : b e f o r e   { 
 
     c o n t e n t :   " \ f 1 5 8 " ;   } 
 
 
 
 . f a - r u l e r : b e f o r e   { 
 
     c o n t e n t :   " \ f 5 4 5 " ;   } 
 
 
 
 . f a - r u l e r - c o m b i n e d : b e f o r e   { 
 
     c o n t e n t :   " \ f 5 4 6 " ;   } 
 
 
 
 . f a - r u l e r - h o r i z o n t a l : b e f o r e   { 
 
     c o n t e n t :   " \ f 5 4 7 " ;   } 
 
 
 
 . f a - r u l e r - v e r t i c a l : b e f o r e   { 
 
     c o n t e n t :   " \ f 5 4 8 " ;   } 
 
 
 
 . f a - r u n n i n g : b e f o r e   { 
 
     c o n t e n t :   " \ f 7 0 c " ;   } 
 
 
 
 . f a - r u p e e - s i g n : b e f o r e   { 
 
     c o n t e n t :   " \ f 1 5 6 " ;   } 
 
 
 
 . f a - s a d - c r y : b e f o r e   { 
 
     c o n t e n t :   " \ f 5 b 3 " ;   } 
 
 
 
 . f a - s a d - t e a r : b e f o r e   { 
 
     c o n t e n t :   " \ f 5 b 4 " ;   } 
 
 
 
 . f a - s a f a r i : b e f o r e   { 
 
     c o n t e n t :   " \ f 2 6 7 " ;   } 
 
 
 
 . f a - s a l e s f o r c e : b e f o r e   { 
 
     c o n t e n t :   " \ f 8 3 b " ;   } 
 
 
 
 . f a - s a s s : b e f o r e   { 
 
     c o n t e n t :   " \ f 4 1 e " ;   } 
 
 
 
 . f a - s a t e l l i t e : b e f o r e   { 
 
     c o n t e n t :   " \ f 7 b f " ;   } 
 
 
 
 . f a - s a t e l l i t e - d i s h : b e f o r e   { 
 
     c o n t e n t :   " \ f 7 c 0 " ;   } 
 
 
 
 . f a - s a v e : b e f o r e   { 
 
     c o n t e n t :   " \ f 0 c 7 " ;   } 
 
 
 
 . f a - s c h l i x : b e f o r e   { 
 
     c o n t e n t :   " \ f 3 e a " ;   } 
 
 
 
 . f a - s c h o o l : b e f o r e   { 
 
     c o n t e n t :   " \ f 5 4 9 " ;   } 
 
 
 
 . f a - s c r e w d r i v e r : b e f o r e   { 
 
     c o n t e n t :   " \ f 5 4 a " ;   } 
 
 
 
 . f a - s c r i b d : b e f o r e   { 
 
     c o n t e n t :   " \ f 2 8 a " ;   } 
 
 
 
 . f a - s c r o l l : b e f o r e   { 
 
     c o n t e n t :   " \ f 7 0 e " ;   } 
 
 
 
 . f a - s d - c a r d : b e f o r e   { 
 
     c o n t e n t :   " \ f 7 c 2 " ;   } 
 
 
 
 . f a - s e a r c h : b e f o r e   { 
 
     c o n t e n t :   " \ f 0 0 2 " ;   } 
 
 
 
 . f a - s e a r c h - d o l l a r : b e f o r e   { 
 
     c o n t e n t :   " \ f 6 8 8 " ;   } 
 
 
 
 . f a - s e a r c h - l o c a t i o n : b e f o r e   { 
 
     c o n t e n t :   " \ f 6 8 9 " ;   } 
 
 
 
 . f a - s e a r c h - m i n u s : b e f o r e   { 
 
     c o n t e n t :   " \ f 0 1 0 " ;   } 
 
 
 
 . f a - s e a r c h - p l u s : b e f o r e   { 
 
     c o n t e n t :   " \ f 0 0 e " ;   } 
 
 
 
 . f a - s e a r c h e n g i n : b e f o r e   { 
 
     c o n t e n t :   " \ f 3 e b " ;   } 
 
 
 
 . f a - s e e d l i n g : b e f o r e   { 
 
     c o n t e n t :   " \ f 4 d 8 " ;   } 
 
 
 
 . f a - s e l l c a s t : b e f o r e   { 
 
     c o n t e n t :   " \ f 2 d a " ;   } 
 
 
 
 . f a - s e l l s y : b e f o r e   { 
 
     c o n t e n t :   " \ f 2 1 3 " ;   } 
 
 
 
 . f a - s e r v e r : b e f o r e   { 
 
     c o n t e n t :   " \ f 2 3 3 " ;   } 
 
 
 
 . f a - s e r v i c e s t a c k : b e f o r e   { 
 
     c o n t e n t :   " \ f 3 e c " ;   } 
 
 
 
 . f a - s h a p e s : b e f o r e   { 
 
     c o n t e n t :   " \ f 6 1 f " ;   } 
 
 
 
 . f a - s h a r e : b e f o r e   { 
 
     c o n t e n t :   " \ f 0 6 4 " ;   } 
 
 
 
 . f a - s h a r e - a l t : b e f o r e   { 
 
     c o n t e n t :   " \ f 1 e 0 " ;   } 
 
 
 
 . f a - s h a r e - a l t - s q u a r e : b e f o r e   { 
 
     c o n t e n t :   " \ f 1 e 1 " ;   } 
 
 
 
 . f a - s h a r e - s q u a r e : b e f o r e   { 
 
     c o n t e n t :   " \ f 1 4 d " ;   } 
 
 
 
 . f a - s h e k e l - s i g n : b e f o r e   { 
 
     c o n t e n t :   " \ f 2 0 b " ;   } 
 
 
 
 . f a - s h i e l d - a l t : b e f o r e   { 
 
     c o n t e n t :   " \ f 3 e d " ;   } 
 
 
 
 . f a - s h i p : b e f o r e   { 
 
     c o n t e n t :   " \ f 2 1 a " ;   } 
 
 
 
 . f a - s h i p p i n g - f a s t : b e f o r e   { 
 
     c o n t e n t :   " \ f 4 8 b " ;   } 
 
 
 
 . f a - s h i r t s i n b u l k : b e f o r e   { 
 
     c o n t e n t :   " \ f 2 1 4 " ;   } 
 
 
 
 . f a - s h o e - p r i n t s : b e f o r e   { 
 
     c o n t e n t :   " \ f 5 4 b " ;   } 
 
 
 
 . f a - s h o p p i n g - b a g : b e f o r e   { 
 
     c o n t e n t :   " \ f 2 9 0 " ;   } 
 
 
 
 . f a - s h o p p i n g - b a s k e t : b e f o r e   { 
 
     c o n t e n t :   " \ f 2 9 1 " ;   } 
 
 
 
 . f a - s h o p p i n g - c a r t : b e f o r e   { 
 
     c o n t e n t :   " \ f 0 7 a " ;   } 
 
 
 
 . f a - s h o p w a r e : b e f o r e   { 
 
     c o n t e n t :   " \ f 5 b 5 " ;   } 
 
 
 
 . f a - s h o w e r : b e f o r e   { 
 
     c o n t e n t :   " \ f 2 c c " ;   } 
 
 
 
 . f a - s h u t t l e - v a n : b e f o r e   { 
 
     c o n t e n t :   " \ f 5 b 6 " ;   } 
 
 
 
 . f a - s i g n : b e f o r e   { 
 
     c o n t e n t :   " \ f 4 d 9 " ;   } 
 
 
 
 . f a - s i g n - i n - a l t : b e f o r e   { 
 
     c o n t e n t :   " \ f 2 f 6 " ;   } 
 
 
 
 . f a - s i g n - l a n g u a g e : b e f o r e   { 
 
     c o n t e n t :   " \ f 2 a 7 " ;   } 
 
 
 
 . f a - s i g n - o u t - a l t : b e f o r e   { 
 
     c o n t e n t :   " \ f 2 f 5 " ;   } 
 
 
 
 . f a - s i g n a l : b e f o r e   { 
 
     c o n t e n t :   " \ f 0 1 2 " ;   } 
 
 
 
 . f a - s i g n a t u r e : b e f o r e   { 
 
     c o n t e n t :   " \ f 5 b 7 " ;   } 
 
 
 
 . f a - s i m - c a r d : b e f o r e   { 
 
     c o n t e n t :   " \ f 7 c 4 " ;   } 
 
 
 
 . f a - s i m p l y b u i l t : b e f o r e   { 
 
     c o n t e n t :   " \ f 2 1 5 " ;   } 
 
 
 
 . f a - s i s t r i x : b e f o r e   { 
 
     c o n t e n t :   " \ f 3 e e " ;   } 
 
 
 
 . f a - s i t e m a p : b e f o r e   { 
 
     c o n t e n t :   " \ f 0 e 8 " ;   } 
 
 
 
 . f a - s i t h : b e f o r e   { 
 
     c o n t e n t :   " \ f 5 1 2 " ;   } 
 
 
 
 . f a - s k a t i n g : b e f o r e   { 
 
     c o n t e n t :   " \ f 7 c 5 " ;   } 
 
 
 
 . f a - s k e t c h : b e f o r e   { 
 
     c o n t e n t :   " \ f 7 c 6 " ;   } 
 
 
 
 . f a - s k i i n g : b e f o r e   { 
 
     c o n t e n t :   " \ f 7 c 9 " ;   } 
 
 
 
 . f a - s k i i n g - n o r d i c : b e f o r e   { 
 
     c o n t e n t :   " \ f 7 c a " ;   } 
 
 
 
 . f a - s k u l l : b e f o r e   { 
 
     c o n t e n t :   " \ f 5 4 c " ;   } 
 
 
 
 . f a - s k u l l - c r o s s b o n e s : b e f o r e   { 
 
     c o n t e n t :   " \ f 7 1 4 " ;   } 
 
 
 
 . f a - s k y a t l a s : b e f o r e   { 
 
     c o n t e n t :   " \ f 2 1 6 " ;   } 
 
 
 
 . f a - s k y p e : b e f o r e   { 
 
     c o n t e n t :   " \ f 1 7 e " ;   } 
 
 
 
 . f a - s l a c k : b e f o r e   { 
 
     c o n t e n t :   " \ f 1 9 8 " ;   } 
 
 
 
 . f a - s l a c k - h a s h : b e f o r e   { 
 
     c o n t e n t :   " \ f 3 e f " ;   } 
 
 
 
 . f a - s l a s h : b e f o r e   { 
 
     c o n t e n t :   " \ f 7 1 5 " ;   } 
 
 
 
 . f a - s l e i g h : b e f o r e   { 
 
     c o n t e n t :   " \ f 7 c c " ;   } 
 
 
 
 . f a - s l i d e r s - h : b e f o r e   { 
 
     c o n t e n t :   " \ f 1 d e " ;   } 
 
 
 
 . f a - s l i d e s h a r e : b e f o r e   { 
 
     c o n t e n t :   " \ f 1 e 7 " ;   } 
 
 
 
 . f a - s m i l e : b e f o r e   { 
 
     c o n t e n t :   " \ f 1 1 8 " ;   } 
 
 
 
 . f a - s m i l e - b e a m : b e f o r e   { 
 
     c o n t e n t :   " \ f 5 b 8 " ;   } 
 
 
 
 . f a - s m i l e - w i n k : b e f o r e   { 
 
     c o n t e n t :   " \ f 4 d a " ;   } 
 
 
 
 . f a - s m o g : b e f o r e   { 
 
     c o n t e n t :   " \ f 7 5 f " ;   } 
 
 
 
 . f a - s m o k i n g : b e f o r e   { 
 
     c o n t e n t :   " \ f 4 8 d " ;   } 
 
 
 
 . f a - s m o k i n g - b a n : b e f o r e   { 
 
     c o n t e n t :   " \ f 5 4 d " ;   } 
 
 
 
 . f a - s m s : b e f o r e   { 
 
     c o n t e n t :   " \ f 7 c d " ;   } 
 
 
 
 . f a - s n a p c h a t : b e f o r e   { 
 
     c o n t e n t :   " \ f 2 a b " ;   } 
 
 
 
 . f a - s n a p c h a t - g h o s t : b e f o r e   { 
 
     c o n t e n t :   " \ f 2 a c " ;   } 
 
 
 
 . f a - s n a p c h a t - s q u a r e : b e f o r e   { 
 
     c o n t e n t :   " \ f 2 a d " ;   } 
 
 
 
 . f a - s n o w b o a r d i n g : b e f o r e   { 
 
     c o n t e n t :   " \ f 7 c e " ;   } 
 
 
 
 . f a - s n o w f l a k e : b e f o r e   { 
 
     c o n t e n t :   " \ f 2 d c " ;   } 
 
 
 
 . f a - s n o w m a n : b e f o r e   { 
 
     c o n t e n t :   " \ f 7 d 0 " ;   } 
 
 
 
 . f a - s n o w p l o w : b e f o r e   { 
 
     c o n t e n t :   " \ f 7 d 2 " ;   } 
 
 
 
 . f a - s o c k s : b e f o r e   { 
 
     c o n t e n t :   " \ f 6 9 6 " ;   } 
 
 
 
 . f a - s o l a r - p a n e l : b e f o r e   { 
 
     c o n t e n t :   " \ f 5 b a " ;   } 
 
 
 
 . f a - s o r t : b e f o r e   { 
 
     c o n t e n t :   " \ f 0 d c " ;   } 
 
 
 
 . f a - s o r t - a l p h a - d o w n : b e f o r e   { 
 
     c o n t e n t :   " \ f 1 5 d " ;   } 
 
 
 
 . f a - s o r t - a l p h a - d o w n - a l t : b e f o r e   { 
 
     c o n t e n t :   " \ f 8 8 1 " ;   } 
 
 
 
 . f a - s o r t - a l p h a - u p : b e f o r e   { 
 
     c o n t e n t :   " \ f 1 5 e " ;   } 
 
 
 
 . f a - s o r t - a l p h a - u p - a l t : b e f o r e   { 
 
     c o n t e n t :   " \ f 8 8 2 " ;   } 
 
 
 
 . f a - s o r t - a m o u n t - d o w n : b e f o r e   { 
 
     c o n t e n t :   " \ f 1 6 0 " ;   } 
 
 
 
 . f a - s o r t - a m o u n t - d o w n - a l t : b e f o r e   { 
 
     c o n t e n t :   " \ f 8 8 4 " ;   } 
 
 
 
 . f a - s o r t - a m o u n t - u p : b e f o r e   { 
 
     c o n t e n t :   " \ f 1 6 1 " ;   } 
 
 
 
 . f a - s o r t - a m o u n t - u p - a l t : b e f o r e   { 
 
     c o n t e n t :   " \ f 8 8 5 " ;   } 
 
 
 
 . f a - s o r t - d o w n : b e f o r e   { 
 
     c o n t e n t :   " \ f 0 d d " ;   } 
 
 
 
 . f a - s o r t - n u m e r i c - d o w n : b e f o r e   { 
 
     c o n t e n t :   " \ f 1 6 2 " ;   } 
 
 
 
 . f a - s o r t - n u m e r i c - d o w n - a l t : b e f o r e   { 
 
     c o n t e n t :   " \ f 8 8 6 " ;   } 
 
 
 
 . f a - s o r t - n u m e r i c - u p : b e f o r e   { 
 
     c o n t e n t :   " \ f 1 6 3 " ;   } 
 
 
 
 . f a - s o r t - n u m e r i c - u p - a l t : b e f o r e   { 
 
     c o n t e n t :   " \ f 8 8 7 " ;   } 
 
 
 
 . f a - s o r t - u p : b e f o r e   { 
 
     c o n t e n t :   " \ f 0 d e " ;   } 
 
 
 
 . f a - s o u n d c l o u d : b e f o r e   { 
 
     c o n t e n t :   " \ f 1 b e " ;   } 
 
 
 
 . f a - s o u r c e t r e e : b e f o r e   { 
 
     c o n t e n t :   " \ f 7 d 3 " ;   } 
 
 
 
 . f a - s p a : b e f o r e   { 
 
     c o n t e n t :   " \ f 5 b b " ;   } 
 
 
 
 . f a - s p a c e - s h u t t l e : b e f o r e   { 
 
     c o n t e n t :   " \ f 1 9 7 " ;   } 
 
 
 
 . f a - s p e a k a p : b e f o r e   { 
 
     c o n t e n t :   " \ f 3 f 3 " ;   } 
 
 
 
 . f a - s p e a k e r - d e c k : b e f o r e   { 
 
     c o n t e n t :   " \ f 8 3 c " ;   } 
 
 
 
 . f a - s p e l l - c h e c k : b e f o r e   { 
 
     c o n t e n t :   " \ f 8 9 1 " ;   } 
 
 
 
 . f a - s p i d e r : b e f o r e   { 
 
     c o n t e n t :   " \ f 7 1 7 " ;   } 
 
 
 
 . f a - s p i n n e r : b e f o r e   { 
 
     c o n t e n t :   " \ f 1 1 0 " ;   } 
 
 
 
 . f a - s p l o t c h : b e f o r e   { 
 
     c o n t e n t :   " \ f 5 b c " ;   } 
 
 
 
 . f a - s p o t i f y : b e f o r e   { 
 
     c o n t e n t :   " \ f 1 b c " ;   } 
 
 
 
 . f a - s p r a y - c a n : b e f o r e   { 
 
     c o n t e n t :   " \ f 5 b d " ;   } 
 
 
 
 . f a - s q u a r e : b e f o r e   { 
 
     c o n t e n t :   " \ f 0 c 8 " ;   } 
 
 
 
 . f a - s q u a r e - f u l l : b e f o r e   { 
 
     c o n t e n t :   " \ f 4 5 c " ;   } 
 
 
 
 . f a - s q u a r e - r o o t - a l t : b e f o r e   { 
 
     c o n t e n t :   " \ f 6 9 8 " ;   } 
 
 
 
 . f a - s q u a r e s p a c e : b e f o r e   { 
 
     c o n t e n t :   " \ f 5 b e " ;   } 
 
 
 
 . f a - s t a c k - e x c h a n g e : b e f o r e   { 
 
     c o n t e n t :   " \ f 1 8 d " ;   } 
 
 
 
 . f a - s t a c k - o v e r f l o w : b e f o r e   { 
 
     c o n t e n t :   " \ f 1 6 c " ;   } 
 
 
 
 . f a - s t a c k p a t h : b e f o r e   { 
 
     c o n t e n t :   " \ f 8 4 2 " ;   } 
 
 
 
 . f a - s t a m p : b e f o r e   { 
 
     c o n t e n t :   " \ f 5 b f " ;   } 
 
 
 
 . f a - s t a r : b e f o r e   { 
 
     c o n t e n t :   " \ f 0 0 5 " ;   } 
 
 
 
 . f a - s t a r - a n d - c r e s c e n t : b e f o r e   { 
 
     c o n t e n t :   " \ f 6 9 9 " ;   } 
 
 
 
 . f a - s t a r - h a l f : b e f o r e   { 
 
     c o n t e n t :   " \ f 0 8 9 " ;   } 
 
 
 
 . f a - s t a r - h a l f - a l t : b e f o r e   { 
 
     c o n t e n t :   " \ f 5 c 0 " ;   } 
 
 
 
 . f a - s t a r - o f - d a v i d : b e f o r e   { 
 
     c o n t e n t :   " \ f 6 9 a " ;   } 
 
 
 
 . f a - s t a r - o f - l i f e : b e f o r e   { 
 
     c o n t e n t :   " \ f 6 2 1 " ;   } 
 
 
 
 . f a - s t a y l i n k e d : b e f o r e   { 
 
     c o n t e n t :   " \ f 3 f 5 " ;   } 
 
 
 
 . f a - s t e a m : b e f o r e   { 
 
     c o n t e n t :   " \ f 1 b 6 " ;   } 
 
 
 
 . f a - s t e a m - s q u a r e : b e f o r e   { 
 
     c o n t e n t :   " \ f 1 b 7 " ;   } 
 
 
 
 . f a - s t e a m - s y m b o l : b e f o r e   { 
 
     c o n t e n t :   " \ f 3 f 6 " ;   } 
 
 
 
 . f a - s t e p - b a c k w a r d : b e f o r e   { 
 
     c o n t e n t :   " \ f 0 4 8 " ;   } 
 
 
 
 . f a - s t e p - f o r w a r d : b e f o r e   { 
 
     c o n t e n t :   " \ f 0 5 1 " ;   } 
 
 
 
 . f a - s t e t h o s c o p e : b e f o r e   { 
 
     c o n t e n t :   " \ f 0 f 1 " ;   } 
 
 
 
 . f a - s t i c k e r - m u l e : b e f o r e   { 
 
     c o n t e n t :   " \ f 3 f 7 " ;   } 
 
 
 
 . f a - s t i c k y - n o t e : b e f o r e   { 
 
     c o n t e n t :   " \ f 2 4 9 " ;   } 
 
 
 
 . f a - s t o p : b e f o r e   { 
 
     c o n t e n t :   " \ f 0 4 d " ;   } 
 
 
 
 . f a - s t o p - c i r c l e : b e f o r e   { 
 
     c o n t e n t :   " \ f 2 8 d " ;   } 
 
 
 
 . f a - s t o p w a t c h : b e f o r e   { 
 
     c o n t e n t :   " \ f 2 f 2 " ;   } 
 
 
 
 . f a - s t o r e : b e f o r e   { 
 
     c o n t e n t :   " \ f 5 4 e " ;   } 
 
 
 
 . f a - s t o r e - a l t : b e f o r e   { 
 
     c o n t e n t :   " \ f 5 4 f " ;   } 
 
 
 
 . f a - s t r a v a : b e f o r e   { 
 
     c o n t e n t :   " \ f 4 2 8 " ;   } 
 
 
 
 . f a - s t r e a m : b e f o r e   { 
 
     c o n t e n t :   " \ f 5 5 0 " ;   } 
 
 
 
 . f a - s t r e e t - v i e w : b e f o r e   { 
 
     c o n t e n t :   " \ f 2 1 d " ;   } 
 
 
 
 . f a - s t r i k e t h r o u g h : b e f o r e   { 
 
     c o n t e n t :   " \ f 0 c c " ;   } 
 
 
 
 . f a - s t r i p e : b e f o r e   { 
 
     c o n t e n t :   " \ f 4 2 9 " ;   } 
 
 
 
 . f a - s t r i p e - s : b e f o r e   { 
 
     c o n t e n t :   " \ f 4 2 a " ;   } 
 
 
 
 . f a - s t r o o p w a f e l : b e f o r e   { 
 
     c o n t e n t :   " \ f 5 5 1 " ;   } 
 
 
 
 . f a - s t u d i o v i n a r i : b e f o r e   { 
 
     c o n t e n t :   " \ f 3 f 8 " ;   } 
 
 
 
 . f a - s t u m b l e u p o n : b e f o r e   { 
 
     c o n t e n t :   " \ f 1 a 4 " ;   } 
 
 
 
 . f a - s t u m b l e u p o n - c i r c l e : b e f o r e   { 
 
     c o n t e n t :   " \ f 1 a 3 " ;   } 
 
 
 
 . f a - s u b s c r i p t : b e f o r e   { 
 
     c o n t e n t :   " \ f 1 2 c " ;   } 
 
 
 
 . f a - s u b w a y : b e f o r e   { 
 
     c o n t e n t :   " \ f 2 3 9 " ;   } 
 
 
 
 . f a - s u i t c a s e : b e f o r e   { 
 
     c o n t e n t :   " \ f 0 f 2 " ;   } 
 
 
 
 . f a - s u i t c a s e - r o l l i n g : b e f o r e   { 
 
     c o n t e n t :   " \ f 5 c 1 " ;   } 
 
 
 
 . f a - s u n : b e f o r e   { 
 
     c o n t e n t :   " \ f 1 8 5 " ;   } 
 
 
 
 . f a - s u p e r p o w e r s : b e f o r e   { 
 
     c o n t e n t :   " \ f 2 d d " ;   } 
 
 
 
 . f a - s u p e r s c r i p t : b e f o r e   { 
 
     c o n t e n t :   " \ f 1 2 b " ;   } 
 
 
 
 . f a - s u p p l e : b e f o r e   { 
 
     c o n t e n t :   " \ f 3 f 9 " ;   } 
 
 
 
 . f a - s u r p r i s e : b e f o r e   { 
 
     c o n t e n t :   " \ f 5 c 2 " ;   } 
 
 
 
 . f a - s u s e : b e f o r e   { 
 
     c o n t e n t :   " \ f 7 d 6 " ;   } 
 
 
 
 . f a - s w a t c h b o o k : b e f o r e   { 
 
     c o n t e n t :   " \ f 5 c 3 " ;   } 
 
 
 
 . f a - s w i m m e r : b e f o r e   { 
 
     c o n t e n t :   " \ f 5 c 4 " ;   } 
 
 
 
 . f a - s w i m m i n g - p o o l : b e f o r e   { 
 
     c o n t e n t :   " \ f 5 c 5 " ;   } 
 
 
 
 . f a - s y m f o n y : b e f o r e   { 
 
     c o n t e n t :   " \ f 8 3 d " ;   } 
 
 
 
 . f a - s y n a g o g u e : b e f o r e   { 
 
     c o n t e n t :   " \ f 6 9 b " ;   } 
 
 
 
 . f a - s y n c : b e f o r e   { 
 
     c o n t e n t :   " \ f 0 2 1 " ;   } 
 
 
 
 . f a - s y n c - a l t : b e f o r e   { 
 
     c o n t e n t :   " \ f 2 f 1 " ;   } 
 
 
 
 . f a - s y r i n g e : b e f o r e   { 
 
     c o n t e n t :   " \ f 4 8 e " ;   } 
 
 
 
 . f a - t a b l e : b e f o r e   { 
 
     c o n t e n t :   " \ f 0 c e " ;   } 
 
 
 
 . f a - t a b l e - t e n n i s : b e f o r e   { 
 
     c o n t e n t :   " \ f 4 5 d " ;   } 
 
 
 
 . f a - t a b l e t : b e f o r e   { 
 
     c o n t e n t :   " \ f 1 0 a " ;   } 
 
 
 
 . f a - t a b l e t - a l t : b e f o r e   { 
 
     c o n t e n t :   " \ f 3 f a " ;   } 
 
 
 
 . f a - t a b l e t s : b e f o r e   { 
 
     c o n t e n t :   " \ f 4 9 0 " ;   } 
 
 
 
 . f a - t a c h o m e t e r - a l t : b e f o r e   { 
 
     c o n t e n t :   " \ f 3 f d " ;   } 
 
 
 
 . f a - t a g : b e f o r e   { 
 
     c o n t e n t :   " \ f 0 2 b " ;   } 
 
 
 
 . f a - t a g s : b e f o r e   { 
 
     c o n t e n t :   " \ f 0 2 c " ;   } 
 
 
 
 . f a - t a p e : b e f o r e   { 
 
     c o n t e n t :   " \ f 4 d b " ;   } 
 
 
 
 . f a - t a s k s : b e f o r e   { 
 
     c o n t e n t :   " \ f 0 a e " ;   } 
 
 
 
 . f a - t a x i : b e f o r e   { 
 
     c o n t e n t :   " \ f 1 b a " ;   } 
 
 
 
 . f a - t e a m s p e a k : b e f o r e   { 
 
     c o n t e n t :   " \ f 4 f 9 " ;   } 
 
 
 
 . f a - t e e t h : b e f o r e   { 
 
     c o n t e n t :   " \ f 6 2 e " ;   } 
 
 
 
 . f a - t e e t h - o p e n : b e f o r e   { 
 
     c o n t e n t :   " \ f 6 2 f " ;   } 
 
 
 
 . f a - t e l e g r a m : b e f o r e   { 
 
     c o n t e n t :   " \ f 2 c 6 " ;   } 
 
 
 
 . f a - t e l e g r a m - p l a n e : b e f o r e   { 
 
     c o n t e n t :   " \ f 3 f e " ;   } 
 
 
 
 . f a - t e m p e r a t u r e - h i g h : b e f o r e   { 
 
     c o n t e n t :   " \ f 7 6 9 " ;   } 
 
 
 
 . f a - t e m p e r a t u r e - l o w : b e f o r e   { 
 
     c o n t e n t :   " \ f 7 6 b " ;   } 
 
 
 
 . f a - t e n c e n t - w e i b o : b e f o r e   { 
 
     c o n t e n t :   " \ f 1 d 5 " ;   } 
 
 
 
 . f a - t e n g e : b e f o r e   { 
 
     c o n t e n t :   " \ f 7 d 7 " ;   } 
 
 
 
 . f a - t e r m i n a l : b e f o r e   { 
 
     c o n t e n t :   " \ f 1 2 0 " ;   } 
 
 
 
 . f a - t e x t - h e i g h t : b e f o r e   { 
 
     c o n t e n t :   " \ f 0 3 4 " ;   } 
 
 
 
 . f a - t e x t - w i d t h : b e f o r e   { 
 
     c o n t e n t :   " \ f 0 3 5 " ;   } 
 
 
 
 . f a - t h : b e f o r e   { 
 
     c o n t e n t :   " \ f 0 0 a " ;   } 
 
 
 
 . f a - t h - l a r g e : b e f o r e   { 
 
     c o n t e n t :   " \ f 0 0 9 " ;   } 
 
 
 
 . f a - t h - l i s t : b e f o r e   { 
 
     c o n t e n t :   " \ f 0 0 b " ;   } 
 
 
 
 . f a - t h e - r e d - y e t i : b e f o r e   { 
 
     c o n t e n t :   " \ f 6 9 d " ;   } 
 
 
 
 . f a - t h e a t e r - m a s k s : b e f o r e   { 
 
     c o n t e n t :   " \ f 6 3 0 " ;   } 
 
 
 
 . f a - t h e m e c o : b e f o r e   { 
 
     c o n t e n t :   " \ f 5 c 6 " ;   } 
 
 
 
 . f a - t h e m e i s l e : b e f o r e   { 
 
     c o n t e n t :   " \ f 2 b 2 " ;   } 
 
 
 
 . f a - t h e r m o m e t e r : b e f o r e   { 
 
     c o n t e n t :   " \ f 4 9 1 " ;   } 
 
 
 
 . f a - t h e r m o m e t e r - e m p t y : b e f o r e   { 
 
     c o n t e n t :   " \ f 2 c b " ;   } 
 
 
 
 . f a - t h e r m o m e t e r - f u l l : b e f o r e   { 
 
     c o n t e n t :   " \ f 2 c 7 " ;   } 
 
 
 
 . f a - t h e r m o m e t e r - h a l f : b e f o r e   { 
 
     c o n t e n t :   " \ f 2 c 9 " ;   } 
 
 
 
 . f a - t h e r m o m e t e r - q u a r t e r : b e f o r e   { 
 
     c o n t e n t :   " \ f 2 c a " ;   } 
 
 
 
 . f a - t h e r m o m e t e r - t h r e e - q u a r t e r s : b e f o r e   { 
 
     c o n t e n t :   " \ f 2 c 8 " ;   } 
 
 
 
 . f a - t h i n k - p e a k s : b e f o r e   { 
 
     c o n t e n t :   " \ f 7 3 1 " ;   } 
 
 
 
 . f a - t h u m b s - d o w n : b e f o r e   { 
 
     c o n t e n t :   " \ f 1 6 5 " ;   } 
 
 
 
 . f a - t h u m b s - u p : b e f o r e   { 
 
     c o n t e n t :   " \ f 1 6 4 " ;   } 
 
 
 
 . f a - t h u m b t a c k : b e f o r e   { 
 
     c o n t e n t :   " \ f 0 8 d " ;   } 
 
 
 
 . f a - t i c k e t - a l t : b e f o r e   { 
 
     c o n t e n t :   " \ f 3 f f " ;   } 
 
 
 
 . f a - t i m e s : b e f o r e   { 
 
     c o n t e n t :   " \ f 0 0 d " ;   } 
 
 
 
 . f a - t i m e s - c i r c l e : b e f o r e   { 
 
     c o n t e n t :   " \ f 0 5 7 " ;   } 
 
 
 
 . f a - t i n t : b e f o r e   { 
 
     c o n t e n t :   " \ f 0 4 3 " ;   } 
 
 
 
 . f a - t i n t - s l a s h : b e f o r e   { 
 
     c o n t e n t :   " \ f 5 c 7 " ;   } 
 
 
 
 . f a - t i r e d : b e f o r e   { 
 
     c o n t e n t :   " \ f 5 c 8 " ;   } 
 
 
 
 . f a - t o g g l e - o f f : b e f o r e   { 
 
     c o n t e n t :   " \ f 2 0 4 " ;   } 
 
 
 
 . f a - t o g g l e - o n : b e f o r e   { 
 
     c o n t e n t :   " \ f 2 0 5 " ;   } 
 
 
 
 . f a - t o i l e t : b e f o r e   { 
 
     c o n t e n t :   " \ f 7 d 8 " ;   } 
 
 
 
 . f a - t o i l e t - p a p e r : b e f o r e   { 
 
     c o n t e n t :   " \ f 7 1 e " ;   } 
 
 
 
 . f a - t o o l b o x : b e f o r e   { 
 
     c o n t e n t :   " \ f 5 5 2 " ;   } 
 
 
 
 . f a - t o o l s : b e f o r e   { 
 
     c o n t e n t :   " \ f 7 d 9 " ;   } 
 
 
 
 . f a - t o o t h : b e f o r e   { 
 
     c o n t e n t :   " \ f 5 c 9 " ;   } 
 
 
 
 . f a - t o r a h : b e f o r e   { 
 
     c o n t e n t :   " \ f 6 a 0 " ;   } 
 
 
 
 . f a - t o r i i - g a t e : b e f o r e   { 
 
     c o n t e n t :   " \ f 6 a 1 " ;   } 
 
 
 
 . f a - t r a c t o r : b e f o r e   { 
 
     c o n t e n t :   " \ f 7 2 2 " ;   } 
 
 
 
 . f a - t r a d e - f e d e r a t i o n : b e f o r e   { 
 
     c o n t e n t :   " \ f 5 1 3 " ;   } 
 
 
 
 . f a - t r a d e m a r k : b e f o r e   { 
 
     c o n t e n t :   " \ f 2 5 c " ;   } 
 
 
 
 . f a - t r a f f i c - l i g h t : b e f o r e   { 
 
     c o n t e n t :   " \ f 6 3 7 " ;   } 
 
 
 
 . f a - t r a i n : b e f o r e   { 
 
     c o n t e n t :   " \ f 2 3 8 " ;   } 
 
 
 
 . f a - t r a m : b e f o r e   { 
 
     c o n t e n t :   " \ f 7 d a " ;   } 
 
 
 
 . f a - t r a n s g e n d e r : b e f o r e   { 
 
     c o n t e n t :   " \ f 2 2 4 " ;   } 
 
 
 
 . f a - t r a n s g e n d e r - a l t : b e f o r e   { 
 
     c o n t e n t :   " \ f 2 2 5 " ;   } 
 
 
 
 . f a - t r a s h : b e f o r e   { 
 
     c o n t e n t :   " \ f 1 f 8 " ;   } 
 
 
 
 . f a - t r a s h - a l t : b e f o r e   { 
 
     c o n t e n t :   " \ f 2 e d " ;   } 
 
 
 
 . f a - t r a s h - r e s t o r e : b e f o r e   { 
 
     c o n t e n t :   " \ f 8 2 9 " ;   } 
 
 
 
 . f a - t r a s h - r e s t o r e - a l t : b e f o r e   { 
 
     c o n t e n t :   " \ f 8 2 a " ;   } 
 
 
 
 . f a - t r e e : b e f o r e   { 
 
     c o n t e n t :   " \ f 1 b b " ;   } 
 
 
 
 . f a - t r e l l o : b e f o r e   { 
 
     c o n t e n t :   " \ f 1 8 1 " ;   } 
 
 
 
 . f a - t r i p a d v i s o r : b e f o r e   { 
 
     c o n t e n t :   " \ f 2 6 2 " ;   } 
 
 
 
 . f a - t r o p h y : b e f o r e   { 
 
     c o n t e n t :   " \ f 0 9 1 " ;   } 
 
 
 
 . f a - t r u c k : b e f o r e   { 
 
     c o n t e n t :   " \ f 0 d 1 " ;   } 
 
 
 
 . f a - t r u c k - l o a d i n g : b e f o r e   { 
 
     c o n t e n t :   " \ f 4 d e " ;   } 
 
 
 
 . f a - t r u c k - m o n s t e r : b e f o r e   { 
 
     c o n t e n t :   " \ f 6 3 b " ;   } 
 
 
 
 . f a - t r u c k - m o v i n g : b e f o r e   { 
 
     c o n t e n t :   " \ f 4 d f " ;   } 
 
 
 
 . f a - t r u c k - p i c k u p : b e f o r e   { 
 
     c o n t e n t :   " \ f 6 3 c " ;   } 
 
 
 
 . f a - t s h i r t : b e f o r e   { 
 
     c o n t e n t :   " \ f 5 5 3 " ;   } 
 
 
 
 . f a - t t y : b e f o r e   { 
 
     c o n t e n t :   " \ f 1 e 4 " ;   } 
 
 
 
 . f a - t u m b l r : b e f o r e   { 
 
     c o n t e n t :   " \ f 1 7 3 " ;   } 
 
 
 
 . f a - t u m b l r - s q u a r e : b e f o r e   { 
 
     c o n t e n t :   " \ f 1 7 4 " ;   } 
 
 
 
 . f a - t v : b e f o r e   { 
 
     c o n t e n t :   " \ f 2 6 c " ;   } 
 
 
 
 . f a - t w i t c h : b e f o r e   { 
 
     c o n t e n t :   " \ f 1 e 8 " ;   } 
 
 
 
 . f a - t w i t t e r : b e f o r e   { 
 
     c o n t e n t :   " \ f 0 9 9 " ;   } 
 
 
 
 . f a - t w i t t e r - s q u a r e : b e f o r e   { 
 
     c o n t e n t :   " \ f 0 8 1 " ;   } 
 
 
 
 . f a - t y p o 3 : b e f o r e   { 
 
     c o n t e n t :   " \ f 4 2 b " ;   } 
 
 
 
 . f a - u b e r : b e f o r e   { 
 
     c o n t e n t :   " \ f 4 0 2 " ;   } 
 
 
 
 . f a - u b u n t u : b e f o r e   { 
 
     c o n t e n t :   " \ f 7 d f " ;   } 
 
 
 
 . f a - u i k i t : b e f o r e   { 
 
     c o n t e n t :   " \ f 4 0 3 " ;   } 
 
 
 
 . f a - u m b r e l l a : b e f o r e   { 
 
     c o n t e n t :   " \ f 0 e 9 " ;   } 
 
 
 
 . f a - u m b r e l l a - b e a c h : b e f o r e   { 
 
     c o n t e n t :   " \ f 5 c a " ;   } 
 
 
 
 . f a - u n d e r l i n e : b e f o r e   { 
 
     c o n t e n t :   " \ f 0 c d " ;   } 
 
 
 
 . f a - u n d o : b e f o r e   { 
 
     c o n t e n t :   " \ f 0 e 2 " ;   } 
 
 
 
 . f a - u n d o - a l t : b e f o r e   { 
 
     c o n t e n t :   " \ f 2 e a " ;   } 
 
 
 
 . f a - u n i r e g i s t r y : b e f o r e   { 
 
     c o n t e n t :   " \ f 4 0 4 " ;   } 
 
 
 
 . f a - u n i v e r s a l - a c c e s s : b e f o r e   { 
 
     c o n t e n t :   " \ f 2 9 a " ;   } 
 
 
 
 . f a - u n i v e r s i t y : b e f o r e   { 
 
     c o n t e n t :   " \ f 1 9 c " ;   } 
 
 
 
 . f a - u n l i n k : b e f o r e   { 
 
     c o n t e n t :   " \ f 1 2 7 " ;   } 
 
 
 
 . f a - u n l o c k : b e f o r e   { 
 
     c o n t e n t :   " \ f 0 9 c " ;   } 
 
 
 
 . f a - u n l o c k - a l t : b e f o r e   { 
 
     c o n t e n t :   " \ f 1 3 e " ;   } 
 
 
 
 . f a - u n t a p p d : b e f o r e   { 
 
     c o n t e n t :   " \ f 4 0 5 " ;   } 
 
 
 
 . f a - u p l o a d : b e f o r e   { 
 
     c o n t e n t :   " \ f 0 9 3 " ;   } 
 
 
 
 . f a - u p s : b e f o r e   { 
 
     c o n t e n t :   " \ f 7 e 0 " ;   } 
 
 
 
 . f a - u s b : b e f o r e   { 
 
     c o n t e n t :   " \ f 2 8 7 " ;   } 
 
 
 
 . f a - u s e r : b e f o r e   { 
 
     c o n t e n t :   " \ f 0 0 7 " ;   } 
 
 
 
 . f a - u s e r - a l t : b e f o r e   { 
 
     c o n t e n t :   " \ f 4 0 6 " ;   } 
 
 
 
 . f a - u s e r - a l t - s l a s h : b e f o r e   { 
 
     c o n t e n t :   " \ f 4 f a " ;   } 
 
 
 
 . f a - u s e r - a s t r o n a u t : b e f o r e   { 
 
     c o n t e n t :   " \ f 4 f b " ;   } 
 
 
 
 . f a - u s e r - c h e c k : b e f o r e   { 
 
     c o n t e n t :   " \ f 4 f c " ;   } 
 
 
 
 . f a - u s e r - c i r c l e : b e f o r e   { 
 
     c o n t e n t :   " \ f 2 b d " ;   } 
 
 
 
 . f a - u s e r - c l o c k : b e f o r e   { 
 
     c o n t e n t :   " \ f 4 f d " ;   } 
 
 
 
 . f a - u s e r - c o g : b e f o r e   { 
 
     c o n t e n t :   " \ f 4 f e " ;   } 
 
 
 
 . f a - u s e r - e d i t : b e f o r e   { 
 
     c o n t e n t :   " \ f 4 f f " ;   } 
 
 
 
 . f a - u s e r - f r i e n d s : b e f o r e   { 
 
     c o n t e n t :   " \ f 5 0 0 " ;   } 
 
 
 
 . f a - u s e r - g r a d u a t e : b e f o r e   { 
 
     c o n t e n t :   " \ f 5 0 1 " ;   } 
 
 
 
 . f a - u s e r - i n j u r e d : b e f o r e   { 
 
     c o n t e n t :   " \ f 7 2 8 " ;   } 
 
 
 
 . f a - u s e r - l o c k : b e f o r e   { 
 
     c o n t e n t :   " \ f 5 0 2 " ;   } 
 
 
 
 . f a - u s e r - m d : b e f o r e   { 
 
     c o n t e n t :   " \ f 0 f 0 " ;   } 
 
 
 
 . f a - u s e r - m i n u s : b e f o r e   { 
 
     c o n t e n t :   " \ f 5 0 3 " ;   } 
 
 
 
 . f a - u s e r - n i n j a : b e f o r e   { 
 
     c o n t e n t :   " \ f 5 0 4 " ;   } 
 
 
 
 . f a - u s e r - n u r s e : b e f o r e   { 
 
     c o n t e n t :   " \ f 8 2 f " ;   } 
 
 
 
 . f a - u s e r - p l u s : b e f o r e   { 
 
     c o n t e n t :   " \ f 2 3 4 " ;   } 
 
 
 
 . f a - u s e r - s e c r e t : b e f o r e   { 
 
     c o n t e n t :   " \ f 2 1 b " ;   } 
 
 
 
 . f a - u s e r - s h i e l d : b e f o r e   { 
 
     c o n t e n t :   " \ f 5 0 5 " ;   } 
 
 
 
 . f a - u s e r - s l a s h : b e f o r e   { 
 
     c o n t e n t :   " \ f 5 0 6 " ;   } 
 
 
 
 . f a - u s e r - t a g : b e f o r e   { 
 
     c o n t e n t :   " \ f 5 0 7 " ;   } 
 
 
 
 . f a - u s e r - t i e : b e f o r e   { 
 
     c o n t e n t :   " \ f 5 0 8 " ;   } 
 
 
 
 . f a - u s e r - t i m e s : b e f o r e   { 
 
     c o n t e n t :   " \ f 2 3 5 " ;   } 
 
 
 
 . f a - u s e r s : b e f o r e   { 
 
     c o n t e n t :   " \ f 0 c 0 " ;   } 
 
 
 
 . f a - u s e r s - c o g : b e f o r e   { 
 
     c o n t e n t :   " \ f 5 0 9 " ;   } 
 
 
 
 . f a - u s p s : b e f o r e   { 
 
     c o n t e n t :   " \ f 7 e 1 " ;   } 
 
 
 
 . f a - u s s u n n a h : b e f o r e   { 
 
     c o n t e n t :   " \ f 4 0 7 " ;   } 
 
 
 
 . f a - u t e n s i l - s p o o n : b e f o r e   { 
 
     c o n t e n t :   " \ f 2 e 5 " ;   } 
 
 
 
 . f a - u t e n s i l s : b e f o r e   { 
 
     c o n t e n t :   " \ f 2 e 7 " ;   } 
 
 
 
 . f a - v a a d i n : b e f o r e   { 
 
     c o n t e n t :   " \ f 4 0 8 " ;   } 
 
 
 
 . f a - v e c t o r - s q u a r e : b e f o r e   { 
 
     c o n t e n t :   " \ f 5 c b " ;   } 
 
 
 
 . f a - v e n u s : b e f o r e   { 
 
     c o n t e n t :   " \ f 2 2 1 " ;   } 
 
 
 
 . f a - v e n u s - d o u b l e : b e f o r e   { 
 
     c o n t e n t :   " \ f 2 2 6 " ;   } 
 
 
 
 . f a - v e n u s - m a r s : b e f o r e   { 
 
     c o n t e n t :   " \ f 2 2 8 " ;   } 
 
 
 
 . f a - v i a c o i n : b e f o r e   { 
 
     c o n t e n t :   " \ f 2 3 7 " ;   } 
 
 
 
 . f a - v i a d e o : b e f o r e   { 
 
     c o n t e n t :   " \ f 2 a 9 " ;   } 
 
 
 
 . f a - v i a d e o - s q u a r e : b e f o r e   { 
 
     c o n t e n t :   " \ f 2 a a " ;   } 
 
 
 
 . f a - v i a l : b e f o r e   { 
 
     c o n t e n t :   " \ f 4 9 2 " ;   } 
 
 
 
 . f a - v i a l s : b e f o r e   { 
 
     c o n t e n t :   " \ f 4 9 3 " ;   } 
 
 
 
 . f a - v i b e r : b e f o r e   { 
 
     c o n t e n t :   " \ f 4 0 9 " ;   } 
 
 
 
 . f a - v i d e o : b e f o r e   { 
 
     c o n t e n t :   " \ f 0 3 d " ;   } 
 
 
 
 . f a - v i d e o - s l a s h : b e f o r e   { 
 
     c o n t e n t :   " \ f 4 e 2 " ;   } 
 
 
 
 . f a - v i h a r a : b e f o r e   { 
 
     c o n t e n t :   " \ f 6 a 7 " ;   } 
 
 
 
 . f a - v i m e o : b e f o r e   { 
 
     c o n t e n t :   " \ f 4 0 a " ;   } 
 
 
 
 . f a - v i m e o - s q u a r e : b e f o r e   { 
 
     c o n t e n t :   " \ f 1 9 4 " ;   } 
 
 
 
 . f a - v i m e o - v : b e f o r e   { 
 
     c o n t e n t :   " \ f 2 7 d " ;   } 
 
 
 
 . f a - v i n e : b e f o r e   { 
 
     c o n t e n t :   " \ f 1 c a " ;   } 
 
 
 
 . f a - v k : b e f o r e   { 
 
     c o n t e n t :   " \ f 1 8 9 " ;   } 
 
 
 
 . f a - v n v : b e f o r e   { 
 
     c o n t e n t :   " \ f 4 0 b " ;   } 
 
 
 
 . f a - v o i c e m a i l : b e f o r e   { 
 
     c o n t e n t :   " \ f 8 9 7 " ;   } 
 
 
 
 . f a - v o l l e y b a l l - b a l l : b e f o r e   { 
 
     c o n t e n t :   " \ f 4 5 f " ;   } 
 
 
 
 . f a - v o l u m e - d o w n : b e f o r e   { 
 
     c o n t e n t :   " \ f 0 2 7 " ;   } 
 
 
 
 . f a - v o l u m e - m u t e : b e f o r e   { 
 
     c o n t e n t :   " \ f 6 a 9 " ;   } 
 
 
 
 . f a - v o l u m e - o f f : b e f o r e   { 
 
     c o n t e n t :   " \ f 0 2 6 " ;   } 
 
 
 
 . f a - v o l u m e - u p : b e f o r e   { 
 
     c o n t e n t :   " \ f 0 2 8 " ;   } 
 
 
 
 . f a - v o t e - y e a : b e f o r e   { 
 
     c o n t e n t :   " \ f 7 7 2 " ;   } 
 
 
 
 . f a - v r - c a r d b o a r d : b e f o r e   { 
 
     c o n t e n t :   " \ f 7 2 9 " ;   } 
 
 
 
 . f a - v u e j s : b e f o r e   { 
 
     c o n t e n t :   " \ f 4 1 f " ;   } 
 
 
 
 . f a - w a l k i n g : b e f o r e   { 
 
     c o n t e n t :   " \ f 5 5 4 " ;   } 
 
 
 
 . f a - w a l l e t : b e f o r e   { 
 
     c o n t e n t :   " \ f 5 5 5 " ;   } 
 
 
 
 . f a - w a r e h o u s e : b e f o r e   { 
 
     c o n t e n t :   " \ f 4 9 4 " ;   } 
 
 
 
 . f a - w a t e r : b e f o r e   { 
 
     c o n t e n t :   " \ f 7 7 3 " ;   } 
 
 
 
 . f a - w a v e - s q u a r e : b e f o r e   { 
 
     c o n t e n t :   " \ f 8 3 e " ;   } 
 
 
 
 . f a - w a z e : b e f o r e   { 
 
     c o n t e n t :   " \ f 8 3 f " ;   } 
 
 
 
 . f a - w e e b l y : b e f o r e   { 
 
     c o n t e n t :   " \ f 5 c c " ;   } 
 
 
 
 . f a - w e i b o : b e f o r e   { 
 
     c o n t e n t :   " \ f 1 8 a " ;   } 
 
 
 
 . f a - w e i g h t : b e f o r e   { 
 
     c o n t e n t :   " \ f 4 9 6 " ;   } 
 
 
 
 . f a - w e i g h t - h a n g i n g : b e f o r e   { 
 
     c o n t e n t :   " \ f 5 c d " ;   } 
 
 
 
 . f a - w e i x i n : b e f o r e   { 
 
     c o n t e n t :   " \ f 1 d 7 " ;   } 
 
 
 
 . f a - w h a t s a p p : b e f o r e   { 
 
     c o n t e n t :   " \ f 2 3 2 " ;   } 
 
 
 
 . f a - w h a t s a p p - s q u a r e : b e f o r e   { 
 
     c o n t e n t :   " \ f 4 0 c " ;   } 
 
 
 
 . f a - w h e e l c h a i r : b e f o r e   { 
 
     c o n t e n t :   " \ f 1 9 3 " ;   } 
 
 
 
 . f a - w h m c s : b e f o r e   { 
 
     c o n t e n t :   " \ f 4 0 d " ;   } 
 
 
 
 . f a - w i f i : b e f o r e   { 
 
     c o n t e n t :   " \ f 1 e b " ;   } 
 
 
 
 . f a - w i k i p e d i a - w : b e f o r e   { 
 
     c o n t e n t :   " \ f 2 6 6 " ;   } 
 
 
 
 . f a - w i n d : b e f o r e   { 
 
     c o n t e n t :   " \ f 7 2 e " ;   } 
 
 
 
 . f a - w i n d o w - c l o s e : b e f o r e   { 
 
     c o n t e n t :   " \ f 4 1 0 " ;   } 
 
 
 
 . f a - w i n d o w - m a x i m i z e : b e f o r e   { 
 
     c o n t e n t :   " \ f 2 d 0 " ;   } 
 
 
 
 . f a - w i n d o w - m i n i m i z e : b e f o r e   { 
 
     c o n t e n t :   " \ f 2 d 1 " ;   } 
 
 
 
 . f a - w i n d o w - r e s t o r e : b e f o r e   { 
 
     c o n t e n t :   " \ f 2 d 2 " ;   } 
 
 
 
 . f a - w i n d o w s : b e f o r e   { 
 
     c o n t e n t :   " \ f 1 7 a " ;   } 
 
 
 
 . f a - w i n e - b o t t l e : b e f o r e   { 
 
     c o n t e n t :   " \ f 7 2 f " ;   } 
 
 
 
 . f a - w i n e - g l a s s : b e f o r e   { 
 
     c o n t e n t :   " \ f 4 e 3 " ;   } 
 
 
 
 . f a - w i n e - g l a s s - a l t : b e f o r e   { 
 
     c o n t e n t :   " \ f 5 c e " ;   } 
 
 
 
 . f a - w i x : b e f o r e   { 
 
     c o n t e n t :   " \ f 5 c f " ;   } 
 
 
 
 . f a - w i z a r d s - o f - t h e - c o a s t : b e f o r e   { 
 
     c o n t e n t :   " \ f 7 3 0 " ;   } 
 
 
 
 . f a - w o l f - p a c k - b a t t a l i o n : b e f o r e   { 
 
     c o n t e n t :   " \ f 5 1 4 " ;   } 
 
 
 
 . f a - w o n - s i g n : b e f o r e   { 
 
     c o n t e n t :   " \ f 1 5 9 " ;   } 
 
 
 
 . f a - w o r d p r e s s : b e f o r e   { 
 
     c o n t e n t :   " \ f 1 9 a " ;   } 
 
 
 
 . f a - w o r d p r e s s - s i m p l e : b e f o r e   { 
 
     c o n t e n t :   " \ f 4 1 1 " ;   } 
 
 
 
 . f a - w p b e g i n n e r : b e f o r e   { 
 
     c o n t e n t :   " \ f 2 9 7 " ;   } 
 
 
 
 . f a - w p e x p l o r e r : b e f o r e   { 
 
     c o n t e n t :   " \ f 2 d e " ;   } 
 
 
 
 . f a - w p f o r m s : b e f o r e   { 
 
     c o n t e n t :   " \ f 2 9 8 " ;   } 
 
 
 
 . f a - w p r e s s r : b e f o r e   { 
 
     c o n t e n t :   " \ f 3 e 4 " ;   } 
 
 
 
 . f a - w r e n c h : b e f o r e   { 
 
     c o n t e n t :   " \ f 0 a d " ;   } 
 
 
 
 . f a - x - r a y : b e f o r e   { 
 
     c o n t e n t :   " \ f 4 9 7 " ;   } 
 
 
 
 . f a - x b o x : b e f o r e   { 
 
     c o n t e n t :   " \ f 4 1 2 " ;   } 
 
 
 
 . f a - x i n g : b e f o r e   { 
 
     c o n t e n t :   " \ f 1 6 8 " ;   } 
 
 
 
 . f a - x i n g - s q u a r e : b e f o r e   { 
 
     c o n t e n t :   " \ f 1 6 9 " ;   } 
 
 
 
 . f a - y - c o m b i n a t o r : b e f o r e   { 
 
     c o n t e n t :   " \ f 2 3 b " ;   } 
 
 
 
 . f a - y a h o o : b e f o r e   { 
 
     c o n t e n t :   " \ f 1 9 e " ;   } 
 
 
 
 . f a - y a m m e r : b e f o r e   { 
 
     c o n t e n t :   " \ f 8 4 0 " ;   } 
 
 
 
 . f a - y a n d e x : b e f o r e   { 
 
     c o n t e n t :   " \ f 4 1 3 " ;   } 
 
 
 
 . f a - y a n d e x - i n t e r n a t i o n a l : b e f o r e   { 
 
     c o n t e n t :   " \ f 4 1 4 " ;   } 
 
 
 
 . f a - y a r n : b e f o r e   { 
 
     c o n t e n t :   " \ f 7 e 3 " ;   } 
 
 
 
 . f a - y e l p : b e f o r e   { 
 
     c o n t e n t :   " \ f 1 e 9 " ;   } 
 
 
 
 . f a - y e n - s i g n : b e f o r e   { 
 
     c o n t e n t :   " \ f 1 5 7 " ;   } 
 
 
 
 . f a - y i n - y a n g : b e f o r e   { 
 
     c o n t e n t :   " \ f 6 a d " ;   } 
 
 
 
 . f a - y o a s t : b e f o r e   { 
 
     c o n t e n t :   " \ f 2 b 1 " ;   } 
 
 
 
 . f a - y o u t u b e : b e f o r e   { 
 
     c o n t e n t :   " \ f 1 6 7 " ;   } 
 
 
 
 . f a - y o u t u b e - s q u a r e : b e f o r e   { 
 
     c o n t e n t :   " \ f 4 3 1 " ;   } 
 
 
 
 . f a - z h i h u : b e f o r e   { 
 
     c o n t e n t :   " \ f 6 3 f " ;   } 
 
 
 
 . s r - o n l y   { 
 
     b o r d e r :   0 ; 
 
     c l i p :   r e c t ( 0 ,   0 ,   0 ,   0 ) ; 
 
     h e i g h t :   1 p x ; 
 
     m a r g i n :   - 1 p x ; 
 
     o v e r f l o w :   h i d d e n ; 
 
     p a d d i n g :   0 ; 
 
     p o s i t i o n :   a b s o l u t e ; 
 
     w i d t h :   1 p x ;   } 
 
 
 
 . s r - o n l y - f o c u s a b l e : a c t i v e ,   . s r - o n l y - f o c u s a b l e : f o c u s   { 
 
     c l i p :   a u t o ; 
 
     h e i g h t :   a u t o ; 
 
     m a r g i n :   0 ; 
 
     o v e r f l o w :   v i s i b l e ; 
 
     p o s i t i o n :   s t a t i c ; 
 
     w i d t h :   a u t o ;   } 
 
 @ f o n t - f a c e   { 
 
     f o n t - f a m i l y :   ' F o n t   A w e s o m e   5   B r a n d s ' ; 
 
     f o n t - s t y l e :   n o r m a l ; 
 
     f o n t - w e i g h t :   n o r m a l ; 
 
     f o n t - d i s p l a y :   a u t o ; 
 
     s r c :   u r l ( " . . / w e b f o n t s / f a - b r a n d s - 4 0 0 . e o t " ) ; 
 
     s r c :   u r l ( " . . / w e b f o n t s / f a - b r a n d s - 4 0 0 . e o t ? # i e f i x " )   f o r m a t ( " e m b e d d e d - o p e n t y p e " ) ,   u r l ( " . . / w e b f o n t s / f a - b r a n d s - 4 0 0 . w o f f 2 " )   f o r m a t ( " w o f f 2 " ) ,   u r l ( " . . / w e b f o n t s / f a - b r a n d s - 4 0 0 . w o f f " )   f o r m a t ( " w o f f " ) ,   u r l ( " . . / w e b f o n t s / f a - b r a n d s - 4 0 0 . t t f " )   f o r m a t ( " t r u e t y p e " ) ,   u r l ( " . . / w e b f o n t s / f a - b r a n d s - 4 0 0 . s v g # f o n t a w e s o m e " )   f o r m a t ( " s v g " ) ;   } 
 
 
 
 . f a b   { 
 
     f o n t - f a m i l y :   ' F o n t   A w e s o m e   5   B r a n d s ' ;   } 
 
 @ f o n t - f a c e   { 
 
     f o n t - f a m i l y :   ' F o n t   A w e s o m e   5   F r e e ' ; 
 
     f o n t - s t y l e :   n o r m a l ; 
 
     f o n t - w e i g h t :   4 0 0 ; 
 
     f o n t - d i s p l a y :   a u t o ; 
 
     s r c :   u r l ( " . . / w e b f o n t s / f a - r e g u l a r - 4 0 0 . e o t " ) ; 
 
     s r c :   u r l ( " . . / w e b f o n t s / f a - r e g u l a r - 4 0 0 . e o t ? # i e f i x " )   f o r m a t ( " e m b e d d e d - o p e n t y p e " ) ,   u r l ( " . . / w e b f o n t s / f a - r e g u l a r - 4 0 0 . w o f f 2 " )   f o r m a t ( " w o f f 2 " ) ,   u r l ( " . . / w e b f o n t s / f a - r e g u l a r - 4 0 0 . w o f f " )   f o r m a t ( " w o f f " ) ,   u r l ( " . . / w e b f o n t s / f a - r e g u l a r - 4 0 0 . t t f " )   f o r m a t ( " t r u e t y p e " ) ,   u r l ( " . . / w e b f o n t s / f a - r e g u l a r - 4 0 0 . s v g # f o n t a w e s o m e " )   f o r m a t ( " s v g " ) ;   } 
 
 
 
 . f a r   { 
 
     f o n t - f a m i l y :   ' F o n t   A w e s o m e   5   F r e e ' ; 
 
     f o n t - w e i g h t :   4 0 0 ;   } 
 
 @ f o n t - f a c e   { 
 
     f o n t - f a m i l y :   ' F o n t   A w e s o m e   5   F r e e ' ; 
 
     f o n t - s t y l e :   n o r m a l ; 
 
     f o n t - w e i g h t :   9 0 0 ; 
 
     f o n t - d i s p l a y :   a u t o ; 
 
     s r c :   u r l ( " . . / w e b f o n t s / f a - s o l i d - 9 0 0 . e o t " ) ; 
 
     s r c :   u r l ( " . . / w e b f o n t s / f a - s o l i d - 9 0 0 . e o t ? # i e f i x " )   f o r m a t ( " e m b e d d e d - o p e n t y p e " ) ,   u r l ( " . . / w e b f o n t s / f a - s o l i d - 9 0 0 . w o f f 2 " )   f o r m a t ( " w o f f 2 " ) ,   u r l ( " . . / w e b f o n t s / f a - s o l i d - 9 0 0 . w o f f " )   f o r m a t ( " w o f f " ) ,   u r l ( " . . / w e b f o n t s / f a - s o l i d - 9 0 0 . t t f " )   f o r m a t ( " t r u e t y p e " ) ,   u r l ( " . . / w e b f o n t s / f a - s o l i d - 9 0 0 . s v g # f o n t a w e s o m e " )   f o r m a t ( " s v g " ) ;   } 
 
 
 
 . f a , 
 
 . f a s   { 
 
     f o n t - f a m i l y :   ' F o n t   A w e s o m e   5   F r e e ' ; 
 
     f o n t - w e i g h t :   9 0 0 ;   } 
 
 / * ! 
 
   *   B o o t s t r a p   v 4 . 3 . 1   ( h t t p s : / / g e t b o o t s t r a p . c o m / ) 
 
   *   C o p y r i g h t   2 0 1 1 - 2 0 1 9   T h e   B o o t s t r a p   A u t h o r s 
 
   *   C o p y r i g h t   2 0 1 1 - 2 0 1 9   T w i t t e r ,   I n c . 
 
   *   L i c e n s e d   u n d e r   M I T   ( h t t p s : / / g i t h u b . c o m / t w b s / b o o t s t r a p / b l o b / m a s t e r / L I C E N S E ) 
 
   * / 
 
 : r o o t   { 
 
     - - b l u e :   # 0 0 7 b f f ; 
 
     - - i n d i g o :   # 6 6 1 0 f 2 ; 
 
     - - p u r p l e :   # 6 f 4 2 c 1 ; 
 
     - - p i n k :   # e 8 3 e 8 c ; 
 
     - - r e d :   # d c 3 5 4 5 ; 
 
     - - o r a n g e :   # f d 7 e 1 4 ; 
 
     - - y e l l o w :   # f f c 1 0 7 ; 
 
     - - g r e e n :   # 2 8 a 7 4 5 ; 
 
     - - t e a l :   # 2 0 c 9 9 7 ; 
 
     - - c y a n :   # 1 7 a 2 b 8 ; 
 
     - - w h i t e :   # f f f ; 
 
     - - g r a y :   # 6 c 7 5 7 d ; 
 
     - - g r a y - d a r k :   # 3 4 3 a 4 0 ; 
 
     - - p r i m a r y :   # 0 0 7 b f f ; 
 
     - - s e c o n d a r y :   # 6 c 7 5 7 d ; 
 
     - - s u c c e s s :   # 2 8 a 7 4 5 ; 
 
     - - i n f o :   # 1 7 a 2 b 8 ; 
 
     - - w a r n i n g :   # f f c 1 0 7 ; 
 
     - - d a n g e r :   # d c 3 5 4 5 ; 
 
     - - l i g h t :   # f 8 f 9 f a ; 
 
     - - d a r k :   # 3 4 3 a 4 0 ; 
 
     - - b r e a k p o i n t - x s :   0 ; 
 
     - - b r e a k p o i n t - s m :   5 7 6 p x ; 
 
     - - b r e a k p o i n t - m d :   7 6 8 p x ; 
 
     - - b r e a k p o i n t - l g :   9 9 2 p x ; 
 
     - - b r e a k p o i n t - x l :   1 2 0 0 p x ; 
 
     - - f o n t - f a m i l y - s a n s - s e r i f :   - a p p l e - s y s t e m ,   B l i n k M a c S y s t e m F o n t ,   " S e g o e   U I " ,   R o b o t o ,   " H e l v e t i c a   N e u e " ,   A r i a l ,   " N o t o   S a n s " ,   s a n s - s e r i f ,   " A p p l e   C o l o r   E m o j i " ,   " S e g o e   U I   E m o j i " ,   " S e g o e   U I   S y m b o l " ,   " N o t o   C o l o r   E m o j i " ; 
 
     - - f o n t - f a m i l y - m o n o s p a c e :   S F M o n o - R e g u l a r ,   M e n l o ,   M o n a c o ,   C o n s o l a s ,   " L i b e r a t i o n   M o n o " ,   " C o u r i e r   N e w " ,   m o n o s p a c e ; 
 
 } 
 
 
 
 * , 
 
 * : : b e f o r e , 
 
 * : : a f t e r   { 
 
     b o x - s i z i n g :   b o r d e r - b o x ; 
 
 } 
 
 
 
 h t m l   { 
 
     f o n t - f a m i l y :   s a n s - s e r i f ; 
 
     l i n e - h e i g h t :   1 . 1 5 ; 
 
     - w e b k i t - t e x t - s i z e - a d j u s t :   1 0 0 % ; 
 
     - w e b k i t - t a p - h i g h l i g h t - c o l o r :   r g b a ( 0 ,   0 ,   0 ,   0 ) ; 
 
 } 
 
 
 
 a r t i c l e ,   a s i d e ,   f i g c a p t i o n ,   f i g u r e ,   f o o t e r ,   h e a d e r ,   h g r o u p ,   m a i n ,   n a v ,   s e c t i o n   { 
 
     d i s p l a y :   b l o c k ; 
 
 } 
 
 
 
 b o d y   { 
 
     m a r g i n :   0 ; 
 
     f o n t - f a m i l y :   - a p p l e - s y s t e m ,   B l i n k M a c S y s t e m F o n t ,   " S e g o e   U I " ,   R o b o t o ,   " H e l v e t i c a   N e u e " ,   A r i a l ,   " N o t o   S a n s " ,   s a n s - s e r i f ,   " A p p l e   C o l o r   E m o j i " ,   " S e g o e   U I   E m o j i " ,   " S e g o e   U I   S y m b o l " ,   " N o t o   C o l o r   E m o j i " ; 
 
     f o n t - s i z e :   1 r e m ; 
 
     f o n t - w e i g h t :   4 0 0 ; 
 
     l i n e - h e i g h t :   1 . 5 ; 
 
     c o l o r :   # 2 1 2 5 2 9 ; 
 
     t e x t - a l i g n :   l e f t ; 
 
     b a c k g r o u n d - c o l o r :   # f f f ; 
 
 } 
 
 
 
 [ t a b i n d e x = " - 1 " ] : f o c u s   { 
 
     o u t l i n e :   0   ! i m p o r t a n t ; 
 
 } 
 
 
 
 h r   { 
 
     b o x - s i z i n g :   c o n t e n t - b o x ; 
 
     h e i g h t :   0 ; 
 
     o v e r f l o w :   v i s i b l e ; 
 
 } 
 
 
 
 h 1 ,   h 2 ,   h 3 ,   h 4 ,   h 5 ,   h 6   { 
 
     m a r g i n - t o p :   0 ; 
 
     m a r g i n - b o t t o m :   0 . 5 r e m ; 
 
 } 
 
 
 
 p   { 
 
     m a r g i n - t o p :   0 ; 
 
     m a r g i n - b o t t o m :   1 r e m ; 
 
 } 
 
 
 
 a b b r [ t i t l e ] , 
 
 a b b r [ d a t a - o r i g i n a l - t i t l e ]   { 
 
     t e x t - d e c o r a t i o n :   u n d e r l i n e ; 
 
     - w e b k i t - t e x t - d e c o r a t i o n :   u n d e r l i n e   d o t t e d ; 
 
     t e x t - d e c o r a t i o n :   u n d e r l i n e   d o t t e d ; 
 
     c u r s o r :   h e l p ; 
 
     b o r d e r - b o t t o m :   0 ; 
 
     - w e b k i t - t e x t - d e c o r a t i o n - s k i p - i n k :   n o n e ; 
 
     t e x t - d e c o r a t i o n - s k i p - i n k :   n o n e ; 
 
 } 
 
 
 
 a d d r e s s   { 
 
     m a r g i n - b o t t o m :   1 r e m ; 
 
     f o n t - s t y l e :   n o r m a l ; 
 
     l i n e - h e i g h t :   i n h e r i t ; 
 
 } 
 
 
 
 o l , 
 
 u l , 
 
 d l   { 
 
     m a r g i n - t o p :   0 ; 
 
     m a r g i n - b o t t o m :   1 r e m ; 
 
 } 
 
 
 
 o l   o l , 
 
 u l   u l , 
 
 o l   u l , 
 
 u l   o l   { 
 
     m a r g i n - b o t t o m :   0 ; 
 
 } 
 
 
 
 d t   { 
 
     f o n t - w e i g h t :   7 0 0 ; 
 
 } 
 
 
 
 d d   { 
 
     m a r g i n - b o t t o m :   . 5 r e m ; 
 
     m a r g i n - l e f t :   0 ; 
 
 } 
 
 
 
 b l o c k q u o t e   { 
 
     m a r g i n :   0   0   1 r e m ; 
 
 } 
 
 
 
 b , 
 
 s t r o n g   { 
 
     f o n t - w e i g h t :   b o l d e r ; 
 
 } 
 
 
 
 s m a l l   { 
 
     f o n t - s i z e :   8 0 % ; 
 
 } 
 
 
 
 s u b , 
 
 s u p   { 
 
     p o s i t i o n :   r e l a t i v e ; 
 
     f o n t - s i z e :   7 5 % ; 
 
     l i n e - h e i g h t :   0 ; 
 
     v e r t i c a l - a l i g n :   b a s e l i n e ; 
 
 } 
 
 
 
 s u b   { 
 
     b o t t o m :   - . 2 5 e m ; 
 
 } 
 
 
 
 s u p   { 
 
     t o p :   - . 5 e m ; 
 
 } 
 
 
 
 a   { 
 
     c o l o r :   # 0 0 7 b f f ; 
 
     t e x t - d e c o r a t i o n :   n o n e ; 
 
     b a c k g r o u n d - c o l o r :   t r a n s p a r e n t ; 
 
 } 
 
 
 
 a : h o v e r   { 
 
     c o l o r :   # 0 0 5 6 b 3 ; 
 
     t e x t - d e c o r a t i o n :   u n d e r l i n e ; 
 
 } 
 
 
 
 a : n o t ( [ h r e f ] ) : n o t ( [ t a b i n d e x ] )   { 
 
     c o l o r :   i n h e r i t ; 
 
     t e x t - d e c o r a t i o n :   n o n e ; 
 
 } 
 
 
 
 a : n o t ( [ h r e f ] ) : n o t ( [ t a b i n d e x ] ) : h o v e r ,   a : n o t ( [ h r e f ] ) : n o t ( [ t a b i n d e x ] ) : f o c u s   { 
 
     c o l o r :   i n h e r i t ; 
 
     t e x t - d e c o r a t i o n :   n o n e ; 
 
 } 
 
 
 
 a : n o t ( [ h r e f ] ) : n o t ( [ t a b i n d e x ] ) : f o c u s   { 
 
     o u t l i n e :   0 ; 
 
 } 
 
 
 
 p r e , 
 
 c o d e , 
 
 k b d , 
 
 s a m p   { 
 
     f o n t - f a m i l y :   S F M o n o - R e g u l a r ,   M e n l o ,   M o n a c o ,   C o n s o l a s ,   " L i b e r a t i o n   M o n o " ,   " C o u r i e r   N e w " ,   m o n o s p a c e ; 
 
     f o n t - s i z e :   1 e m ; 
 
 } 
 
 
 
 p r e   { 
 
     m a r g i n - t o p :   0 ; 
 
     m a r g i n - b o t t o m :   1 r e m ; 
 
     o v e r f l o w :   a u t o ; 
 
 } 
 
 
 
 f i g u r e   { 
 
     m a r g i n :   0   0   1 r e m ; 
 
 } 
 
 
 
 i m g   { 
 
     v e r t i c a l - a l i g n :   m i d d l e ; 
 
     b o r d e r - s t y l e :   n o n e ; 
 
 } 
 
 
 
 s v g   { 
 
     o v e r f l o w :   h i d d e n ; 
 
     v e r t i c a l - a l i g n :   m i d d l e ; 
 
 } 
 
 
 
 t a b l e   { 
 
     b o r d e r - c o l l a p s e :   c o l l a p s e ; 
 
 } 
 
 
 
 c a p t i o n   { 
 
     p a d d i n g - t o p :   0 . 7 5 r e m ; 
 
     p a d d i n g - b o t t o m :   0 . 7 5 r e m ; 
 
     c o l o r :   # 6 c 7 5 7 d ; 
 
     t e x t - a l i g n :   l e f t ; 
 
     c a p t i o n - s i d e :   b o t t o m ; 
 
 } 
 
 
 
 t h   { 
 
     t e x t - a l i g n :   i n h e r i t ; 
 
 } 
 
 
 
 l a b e l   { 
 
     d i s p l a y :   i n l i n e - b l o c k ; 
 
     m a r g i n - b o t t o m :   0 . 5 r e m ; 
 
 } 
 
 
 
 b u t t o n   { 
 
     b o r d e r - r a d i u s :   0 ; 
 
 } 
 
 
 
 b u t t o n : f o c u s   { 
 
     o u t l i n e :   1 p x   d o t t e d ; 
 
     o u t l i n e :   5 p x   a u t o   - w e b k i t - f o c u s - r i n g - c o l o r ; 
 
 } 
 
 
 
 i n p u t , 
 
 b u t t o n , 
 
 s e l e c t , 
 
 o p t g r o u p , 
 
 t e x t a r e a   { 
 
     m a r g i n :   0 ; 
 
     f o n t - f a m i l y :   i n h e r i t ; 
 
     f o n t - s i z e :   i n h e r i t ; 
 
     l i n e - h e i g h t :   i n h e r i t ; 
 
 } 
 
 
 
 b u t t o n , 
 
 i n p u t   { 
 
     o v e r f l o w :   v i s i b l e ; 
 
 } 
 
 
 
 b u t t o n , 
 
 s e l e c t   { 
 
     t e x t - t r a n s f o r m :   n o n e ; 
 
 } 
 
 
 
 s e l e c t   { 
 
     w o r d - w r a p :   n o r m a l ; 
 
 } 
 
 
 
 b u t t o n , 
 
 [ t y p e = " b u t t o n " ] , 
 
 [ t y p e = " r e s e t " ] , 
 
 [ t y p e = " s u b m i t " ]   { 
 
     - w e b k i t - a p p e a r a n c e :   b u t t o n ; 
 
 } 
 
 
 
 b u t t o n : n o t ( : d i s a b l e d ) , 
 
 [ t y p e = " b u t t o n " ] : n o t ( : d i s a b l e d ) , 
 
 [ t y p e = " r e s e t " ] : n o t ( : d i s a b l e d ) , 
 
 [ t y p e = " s u b m i t " ] : n o t ( : d i s a b l e d )   { 
 
     c u r s o r :   p o i n t e r ; 
 
 } 
 
 
 
 b u t t o n : : - m o z - f o c u s - i n n e r , 
 
 [ t y p e = " b u t t o n " ] : : - m o z - f o c u s - i n n e r , 
 
 [ t y p e = " r e s e t " ] : : - m o z - f o c u s - i n n e r , 
 
 [ t y p e = " s u b m i t " ] : : - m o z - f o c u s - i n n e r   { 
 
     p a d d i n g :   0 ; 
 
     b o r d e r - s t y l e :   n o n e ; 
 
 } 
 
 
 
 i n p u t [ t y p e = " r a d i o " ] , 
 
 i n p u t [ t y p e = " c h e c k b o x " ]   { 
 
     b o x - s i z i n g :   b o r d e r - b o x ; 
 
     p a d d i n g :   0 ; 
 
 } 
 
 
 
 i n p u t [ t y p e = " d a t e " ] , 
 
 i n p u t [ t y p e = " t i m e " ] , 
 
 i n p u t [ t y p e = " d a t e t i m e - l o c a l " ] , 
 
 i n p u t [ t y p e = " m o n t h " ]   { 
 
     - w e b k i t - a p p e a r a n c e :   l i s t b o x ; 
 
 } 
 
 
 
 t e x t a r e a   { 
 
     o v e r f l o w :   a u t o ; 
 
     r e s i z e :   v e r t i c a l ; 
 
 } 
 
 
 
 f i e l d s e t   { 
 
     m i n - w i d t h :   0 ; 
 
     p a d d i n g :   0 ; 
 
     m a r g i n :   0 ; 
 
     b o r d e r :   0 ; 
 
 } 
 
 
 
 l e g e n d   { 
 
     d i s p l a y :   b l o c k ; 
 
     w i d t h :   1 0 0 % ; 
 
     m a x - w i d t h :   1 0 0 % ; 
 
     p a d d i n g :   0 ; 
 
     m a r g i n - b o t t o m :   . 5 r e m ; 
 
     f o n t - s i z e :   1 . 5 r e m ; 
 
     l i n e - h e i g h t :   i n h e r i t ; 
 
     c o l o r :   i n h e r i t ; 
 
     w h i t e - s p a c e :   n o r m a l ; 
 
 } 
 
 
 
 p r o g r e s s   { 
 
     v e r t i c a l - a l i g n :   b a s e l i n e ; 
 
 } 
 
 
 
 [ t y p e = " n u m b e r " ] : : - w e b k i t - i n n e r - s p i n - b u t t o n , 
 
 [ t y p e = " n u m b e r " ] : : - w e b k i t - o u t e r - s p i n - b u t t o n   { 
 
     h e i g h t :   a u t o ; 
 
 } 
 
 
 
 [ t y p e = " s e a r c h " ]   { 
 
     o u t l i n e - o f f s e t :   - 2 p x ; 
 
     - w e b k i t - a p p e a r a n c e :   n o n e ; 
 
 } 
 
 
 
 [ t y p e = " s e a r c h " ] : : - w e b k i t - s e a r c h - d e c o r a t i o n   { 
 
     - w e b k i t - a p p e a r a n c e :   n o n e ; 
 
 } 
 
 
 
 : : - w e b k i t - f i l e - u p l o a d - b u t t o n   { 
 
     f o n t :   i n h e r i t ; 
 
     - w e b k i t - a p p e a r a n c e :   b u t t o n ; 
 
 } 
 
 
 
 o u t p u t   { 
 
     d i s p l a y :   i n l i n e - b l o c k ; 
 
 } 
 
 
 
 s u m m a r y   { 
 
     d i s p l a y :   l i s t - i t e m ; 
 
     c u r s o r :   p o i n t e r ; 
 
 } 
 
 
 
 t e m p l a t e   { 
 
     d i s p l a y :   n o n e ; 
 
 } 
 
 
 
 [ h i d d e n ]   { 
 
     d i s p l a y :   n o n e   ! i m p o r t a n t ; 
 
 } 
 
 
 
 h 1 ,   h 2 ,   h 3 ,   h 4 ,   h 5 ,   h 6 , 
 
 . h 1 ,   . h 2 ,   . h 3 ,   . h 4 ,   . h 5 ,   . h 6   { 
 
     m a r g i n - b o t t o m :   0 . 5 r e m ; 
 
     f o n t - w e i g h t :   5 0 0 ; 
 
     l i n e - h e i g h t :   1 . 2 ; 
 
 } 
 
 
 
 h 1 ,   . h 1   { 
 
     f o n t - s i z e :   2 . 5 r e m ; 
 
 } 
 
 
 
 h 2 ,   . h 2   { 
 
     f o n t - s i z e :   2 r e m ; 
 
 } 
 
 
 
 h 3 ,   . h 3   { 
 
     f o n t - s i z e :   1 . 7 5 r e m ; 
 
 } 
 
 
 
 h 4 ,   . h 4   { 
 
     f o n t - s i z e :   1 . 5 r e m ; 
 
 } 
 
 
 
 h 5 ,   . h 5   { 
 
     f o n t - s i z e :   1 . 2 5 r e m ; 
 
 } 
 
 
 
 h 6 ,   . h 6   { 
 
     f o n t - s i z e :   1 r e m ; 
 
 } 
 
 
 
 . l e a d   { 
 
     f o n t - s i z e :   1 . 2 5 r e m ; 
 
     f o n t - w e i g h t :   3 0 0 ; 
 
 } 
 
 
 
 . d i s p l a y - 1   { 
 
     f o n t - s i z e :   6 r e m ; 
 
     f o n t - w e i g h t :   3 0 0 ; 
 
     l i n e - h e i g h t :   1 . 2 ; 
 
 } 
 
 
 
 . d i s p l a y - 2   { 
 
     f o n t - s i z e :   5 . 5 r e m ; 
 
     f o n t - w e i g h t :   3 0 0 ; 
 
     l i n e - h e i g h t :   1 . 2 ; 
 
 } 
 
 
 
 . d i s p l a y - 3   { 
 
     f o n t - s i z e :   4 . 5 r e m ; 
 
     f o n t - w e i g h t :   3 0 0 ; 
 
     l i n e - h e i g h t :   1 . 2 ; 
 
 } 
 
 
 
 . d i s p l a y - 4   { 
 
     f o n t - s i z e :   3 . 5 r e m ; 
 
     f o n t - w e i g h t :   3 0 0 ; 
 
     l i n e - h e i g h t :   1 . 2 ; 
 
 } 
 
 
 
 h r   { 
 
     m a r g i n - t o p :   1 r e m ; 
 
     m a r g i n - b o t t o m :   1 r e m ; 
 
     b o r d e r :   0 ; 
 
     b o r d e r - t o p :   1 p x   s o l i d   r g b a ( 0 ,   0 ,   0 ,   0 . 1 ) ; 
 
 } 
 
 
 
 s m a l l , 
 
 . s m a l l   { 
 
     f o n t - s i z e :   8 0 % ; 
 
     f o n t - w e i g h t :   4 0 0 ; 
 
 } 
 
 
 
 m a r k , 
 
 . m a r k   { 
 
     p a d d i n g :   0 . 2 e m ; 
 
     b a c k g r o u n d - c o l o r :   # f c f 8 e 3 ; 
 
 } 
 
 
 
 . l i s t - u n s t y l e d   { 
 
     p a d d i n g - l e f t :   0 ; 
 
     l i s t - s t y l e :   n o n e ; 
 
 } 
 
 
 
 . l i s t - i n l i n e   { 
 
     p a d d i n g - l e f t :   0 ; 
 
     l i s t - s t y l e :   n o n e ; 
 
 } 
 
 
 
 . l i s t - i n l i n e - i t e m   { 
 
     d i s p l a y :   i n l i n e - b l o c k ; 
 
 } 
 
 
 
 . l i s t - i n l i n e - i t e m : n o t ( : l a s t - c h i l d )   { 
 
     m a r g i n - r i g h t :   0 . 5 r e m ; 
 
 } 
 
 
 
 . i n i t i a l i s m   { 
 
     f o n t - s i z e :   9 0 % ; 
 
     t e x t - t r a n s f o r m :   u p p e r c a s e ; 
 
 } 
 
 
 
 . b l o c k q u o t e   { 
 
     m a r g i n - b o t t o m :   1 r e m ; 
 
     f o n t - s i z e :   1 . 2 5 r e m ; 
 
 } 
 
 
 
 . b l o c k q u o t e - f o o t e r   { 
 
     d i s p l a y :   b l o c k ; 
 
     f o n t - s i z e :   8 0 % ; 
 
     c o l o r :   # 6 c 7 5 7 d ; 
 
 } 
 
 
 
 . b l o c k q u o t e - f o o t e r : : b e f o r e   { 
 
     c o n t e n t :   " \ 2 0 1 4 \ 0 0 A 0 " ; 
 
 } 
 
 
 
 . i m g - f l u i d   { 
 
     m a x - w i d t h :   1 0 0 % ; 
 
     h e i g h t :   a u t o ; 
 
 } 
 
 
 
 . i m g - t h u m b n a i l   { 
 
     p a d d i n g :   0 . 2 5 r e m ; 
 
     b a c k g r o u n d - c o l o r :   # f f f ; 
 
     b o r d e r :   1 p x   s o l i d   # d e e 2 e 6 ; 
 
     b o r d e r - r a d i u s :   0 . 2 5 r e m ; 
 
     m a x - w i d t h :   1 0 0 % ; 
 
     h e i g h t :   a u t o ; 
 
 } 
 
 
 
 . f i g u r e   { 
 
     d i s p l a y :   i n l i n e - b l o c k ; 
 
 } 
 
 
 
 . f i g u r e - i m g   { 
 
     m a r g i n - b o t t o m :   0 . 5 r e m ; 
 
     l i n e - h e i g h t :   1 ; 
 
 } 
 
 
 
 . f i g u r e - c a p t i o n   { 
 
     f o n t - s i z e :   9 0 % ; 
 
     c o l o r :   # 6 c 7 5 7 d ; 
 
 } 
 
 
 
 c o d e   { 
 
     f o n t - s i z e :   8 7 . 5 % ; 
 
     c o l o r :   # e 8 3 e 8 c ; 
 
     w o r d - b r e a k :   b r e a k - w o r d ; 
 
 } 
 
 
 
 a   >   c o d e   { 
 
     c o l o r :   i n h e r i t ; 
 
 } 
 
 
 
 k b d   { 
 
     p a d d i n g :   0 . 2 r e m   0 . 4 r e m ; 
 
     f o n t - s i z e :   8 7 . 5 % ; 
 
     c o l o r :   # f f f ; 
 
     b a c k g r o u n d - c o l o r :   # 2 1 2 5 2 9 ; 
 
     b o r d e r - r a d i u s :   0 . 2 r e m ; 
 
 } 
 
 
 
 k b d   k b d   { 
 
     p a d d i n g :   0 ; 
 
     f o n t - s i z e :   1 0 0 % ; 
 
     f o n t - w e i g h t :   7 0 0 ; 
 
 } 
 
 
 
 p r e   { 
 
     d i s p l a y :   b l o c k ; 
 
     f o n t - s i z e :   8 7 . 5 % ; 
 
     c o l o r :   # 2 1 2 5 2 9 ; 
 
 } 
 
 
 
 p r e   c o d e   { 
 
     f o n t - s i z e :   i n h e r i t ; 
 
     c o l o r :   i n h e r i t ; 
 
     w o r d - b r e a k :   n o r m a l ; 
 
 } 
 
 
 
 . p r e - s c r o l l a b l e   { 
 
     m a x - h e i g h t :   3 4 0 p x ; 
 
     o v e r f l o w - y :   s c r o l l ; 
 
 } 
 
 
 
 . c o n t a i n e r   { 
 
     w i d t h :   1 0 0 % ; 
 
     p a d d i n g - r i g h t :   1 5 p x ; 
 
     p a d d i n g - l e f t :   1 5 p x ; 
 
     m a r g i n - r i g h t :   a u t o ; 
 
     m a r g i n - l e f t :   a u t o ; 
 
 } 
 
 
 
 @ m e d i a   ( m i n - w i d t h :   5 7 6 p x )   { 
 
     . c o n t a i n e r   { 
 
         m a x - w i d t h :   5 4 0 p x ; 
 
     } 
 
 } 
 
 
 
 @ m e d i a   ( m i n - w i d t h :   7 6 8 p x )   { 
 
     . c o n t a i n e r   { 
 
         m a x - w i d t h :   7 2 0 p x ; 
 
     } 
 
 } 
 
 
 
 @ m e d i a   ( m i n - w i d t h :   9 9 2 p x )   { 
 
     . c o n t a i n e r   { 
 
         m a x - w i d t h :   9 6 0 p x ; 
 
     } 
 
 } 
 
 
 
 @ m e d i a   ( m i n - w i d t h :   1 2 0 0 p x )   { 
 
     . c o n t a i n e r   { 
 
         m a x - w i d t h :   1 1 4 0 p x ; 
 
     } 
 
 } 
 
 
 
 . c o n t a i n e r - f l u i d   { 
 
     w i d t h :   1 0 0 % ; 
 
     p a d d i n g - r i g h t :   1 5 p x ; 
 
     p a d d i n g - l e f t :   1 5 p x ; 
 
     m a r g i n - r i g h t :   a u t o ; 
 
     m a r g i n - l e f t :   a u t o ; 
 
 } 
 
 
 
 . r o w   { 
 
     d i s p l a y :   - m s - f l e x b o x ; 
 
     d i s p l a y :   f l e x ; 
 
     - m s - f l e x - w r a p :   w r a p ; 
 
     f l e x - w r a p :   w r a p ; 
 
     m a r g i n - r i g h t :   - 1 5 p x ; 
 
     m a r g i n - l e f t :   - 1 5 p x ; 
 
 } 
 
 
 
 . n o - g u t t e r s   { 
 
     m a r g i n - r i g h t :   0 ; 
 
     m a r g i n - l e f t :   0 ; 
 
 } 
 
 
 
 . n o - g u t t e r s   >   . c o l , 
 
 . n o - g u t t e r s   >   [ c l a s s * = " c o l - " ]   { 
 
     p a d d i n g - r i g h t :   0 ; 
 
     p a d d i n g - l e f t :   0 ; 
 
 } 
 
 
 
 . c o l - 1 ,   . c o l - 2 ,   . c o l - 3 ,   . c o l - 4 ,   . c o l - 5 ,   . c o l - 6 ,   . c o l - 7 ,   . c o l - 8 ,   . c o l - 9 ,   . c o l - 1 0 ,   . c o l - 1 1 ,   . c o l - 1 2 ,   . c o l , 
 
 . c o l - a u t o ,   . c o l - s m - 1 ,   . c o l - s m - 2 ,   . c o l - s m - 3 ,   . c o l - s m - 4 ,   . c o l - s m - 5 ,   . c o l - s m - 6 ,   . c o l - s m - 7 ,   . c o l - s m - 8 ,   . c o l - s m - 9 ,   . c o l - s m - 1 0 ,   . c o l - s m - 1 1 ,   . c o l - s m - 1 2 ,   . c o l - s m , 
 
 . c o l - s m - a u t o ,   . c o l - m d - 1 ,   . c o l - m d - 2 ,   . c o l - m d - 3 ,   . c o l - m d - 4 ,   . c o l - m d - 5 ,   . c o l - m d - 6 ,   . c o l - m d - 7 ,   . c o l - m d - 8 ,   . c o l - m d - 9 ,   . c o l - m d - 1 0 ,   . c o l - m d - 1 1 ,   . c o l - m d - 1 2 ,   . c o l - m d , 
 
 . c o l - m d - a u t o ,   . c o l - l g - 1 ,   . c o l - l g - 2 ,   . c o l - l g - 3 ,   . c o l - l g - 4 ,   . c o l - l g - 5 ,   . c o l - l g - 6 ,   . c o l - l g - 7 ,   . c o l - l g - 8 ,   . c o l - l g - 9 ,   . c o l - l g - 1 0 ,   . c o l - l g - 1 1 ,   . c o l - l g - 1 2 ,   . c o l - l g , 
 
 . c o l - l g - a u t o ,   . c o l - x l - 1 ,   . c o l - x l - 2 ,   . c o l - x l - 3 ,   . c o l - x l - 4 ,   . c o l - x l - 5 ,   . c o l - x l - 6 ,   . c o l - x l - 7 ,   . c o l - x l - 8 ,   . c o l - x l - 9 ,   . c o l - x l - 1 0 ,   . c o l - x l - 1 1 ,   . c o l - x l - 1 2 ,   . c o l - x l , 
 
 . c o l - x l - a u t o   { 
 
     p o s i t i o n :   r e l a t i v e ; 
 
     w i d t h :   1 0 0 % ; 
 
     p a d d i n g - r i g h t :   1 5 p x ; 
 
     p a d d i n g - l e f t :   1 5 p x ; 
 
 } 
 
 
 
 . c o l   { 
 
     - m s - f l e x - p r e f e r r e d - s i z e :   0 ; 
 
     f l e x - b a s i s :   0 ; 
 
     - m s - f l e x - p o s i t i v e :   1 ; 
 
     f l e x - g r o w :   1 ; 
 
     m a x - w i d t h :   1 0 0 % ; 
 
 } 
 
 
 
 . c o l - a u t o   { 
 
     - m s - f l e x :   0   0   a u t o ; 
 
     f l e x :   0   0   a u t o ; 
 
     w i d t h :   a u t o ; 
 
     m a x - w i d t h :   1 0 0 % ; 
 
 } 
 
 
 
 . c o l - 1   { 
 
     - m s - f l e x :   0   0   8 . 3 3 3 3 3 3 % ; 
 
     f l e x :   0   0   8 . 3 3 3 3 3 3 % ; 
 
     m a x - w i d t h :   8 . 3 3 3 3 3 3 % ; 
 
 } 
 
 
 
 . c o l - 2   { 
 
     - m s - f l e x :   0   0   1 6 . 6 6 6 6 6 7 % ; 
 
     f l e x :   0   0   1 6 . 6 6 6 6 6 7 % ; 
 
     m a x - w i d t h :   1 6 . 6 6 6 6 6 7 % ; 
 
 } 
 
 
 
 . c o l - 3   { 
 
     - m s - f l e x :   0   0   2 5 % ; 
 
     f l e x :   0   0   2 5 % ; 
 
     m a x - w i d t h :   2 5 % ; 
 
 } 
 
 
 
 . c o l - 4   { 
 
     - m s - f l e x :   0   0   3 3 . 3 3 3 3 3 3 % ; 
 
     f l e x :   0   0   3 3 . 3 3 3 3 3 3 % ; 
 
     m a x - w i d t h :   3 3 . 3 3 3 3 3 3 % ; 
 
 } 
 
 
 
 . c o l - 5   { 
 
     - m s - f l e x :   0   0   4 1 . 6 6 6 6 6 7 % ; 
 
     f l e x :   0   0   4 1 . 6 6 6 6 6 7 % ; 
 
     m a x - w i d t h :   4 1 . 6 6 6 6 6 7 % ; 
 
 } 
 
 
 
 . c o l - 6   { 
 
     - m s - f l e x :   0   0   5 0 % ; 
 
     f l e x :   0   0   5 0 % ; 
 
     m a x - w i d t h :   5 0 % ; 
 
 } 
 
 
 
 . c o l - 7   { 
 
     - m s - f l e x :   0   0   5 8 . 3 3 3 3 3 3 % ; 
 
     f l e x :   0   0   5 8 . 3 3 3 3 3 3 % ; 
 
     m a x - w i d t h :   5 8 . 3 3 3 3 3 3 % ; 
 
 } 
 
 
 
 . c o l - 8   { 
 
     - m s - f l e x :   0   0   6 6 . 6 6 6 6 6 7 % ; 
 
     f l e x :   0   0   6 6 . 6 6 6 6 6 7 % ; 
 
     m a x - w i d t h :   6 6 . 6 6 6 6 6 7 % ; 
 
 } 
 
 
 
 . c o l - 9   { 
 
     - m s - f l e x :   0   0   7 5 % ; 
 
     f l e x :   0   0   7 5 % ; 
 
     m a x - w i d t h :   7 5 % ; 
 
 } 
 
 
 
 . c o l - 1 0   { 
 
     - m s - f l e x :   0   0   8 3 . 3 3 3 3 3 3 % ; 
 
     f l e x :   0   0   8 3 . 3 3 3 3 3 3 % ; 
 
     m a x - w i d t h :   8 3 . 3 3 3 3 3 3 % ; 
 
 } 
 
 
 
 . c o l - 1 1   { 
 
     - m s - f l e x :   0   0   9 1 . 6 6 6 6 6 7 % ; 
 
     f l e x :   0   0   9 1 . 6 6 6 6 6 7 % ; 
 
     m a x - w i d t h :   9 1 . 6 6 6 6 6 7 % ; 
 
 } 
 
 
 
 . c o l - 1 2   { 
 
     - m s - f l e x :   0   0   1 0 0 % ; 
 
     f l e x :   0   0   1 0 0 % ; 
 
     m a x - w i d t h :   1 0 0 % ; 
 
 } 
 
 
 
 . o r d e r - f i r s t   { 
 
     - m s - f l e x - o r d e r :   - 1 ; 
 
     o r d e r :   - 1 ; 
 
 } 
 
 
 
 . o r d e r - l a s t   { 
 
     - m s - f l e x - o r d e r :   1 3 ; 
 
     o r d e r :   1 3 ; 
 
 } 
 
 
 
 . o r d e r - 0   { 
 
     - m s - f l e x - o r d e r :   0 ; 
 
     o r d e r :   0 ; 
 
 } 
 
 
 
 . o r d e r - 1   { 
 
     - m s - f l e x - o r d e r :   1 ; 
 
     o r d e r :   1 ; 
 
 } 
 
 
 
 . o r d e r - 2   { 
 
     - m s - f l e x - o r d e r :   2 ; 
 
     o r d e r :   2 ; 
 
 } 
 
 
 
 . o r d e r - 3   { 
 
     - m s - f l e x - o r d e r :   3 ; 
 
     o r d e r :   3 ; 
 
 } 
 
 
 
 . o r d e r - 4   { 
 
     - m s - f l e x - o r d e r :   4 ; 
 
     o r d e r :   4 ; 
 
 } 
 
 
 
 . o r d e r - 5   { 
 
     - m s - f l e x - o r d e r :   5 ; 
 
     o r d e r :   5 ; 
 
 } 
 
 
 
 . o r d e r - 6   { 
 
     - m s - f l e x - o r d e r :   6 ; 
 
     o r d e r :   6 ; 
 
 } 
 
 
 
 . o r d e r - 7   { 
 
     - m s - f l e x - o r d e r :   7 ; 
 
     o r d e r :   7 ; 
 
 } 
 
 
 
 . o r d e r - 8   { 
 
     - m s - f l e x - o r d e r :   8 ; 
 
     o r d e r :   8 ; 
 
 } 
 
 
 
 . o r d e r - 9   { 
 
     - m s - f l e x - o r d e r :   9 ; 
 
     o r d e r :   9 ; 
 
 } 
 
 
 
 . o r d e r - 1 0   { 
 
     - m s - f l e x - o r d e r :   1 0 ; 
 
     o r d e r :   1 0 ; 
 
 } 
 
 
 
 . o r d e r - 1 1   { 
 
     - m s - f l e x - o r d e r :   1 1 ; 
 
     o r d e r :   1 1 ; 
 
 } 
 
 
 
 . o r d e r - 1 2   { 
 
     - m s - f l e x - o r d e r :   1 2 ; 
 
     o r d e r :   1 2 ; 
 
 } 
 
 
 
 . o f f s e t - 1   { 
 
     m a r g i n - l e f t :   8 . 3 3 3 3 3 3 % ; 
 
 } 
 
 
 
 . o f f s e t - 2   { 
 
     m a r g i n - l e f t :   1 6 . 6 6 6 6 6 7 % ; 
 
 } 
 
 
 
 . o f f s e t - 3   { 
 
     m a r g i n - l e f t :   2 5 % ; 
 
 } 
 
 
 
 . o f f s e t - 4   { 
 
     m a r g i n - l e f t :   3 3 . 3 3 3 3 3 3 % ; 
 
 } 
 
 
 
 . o f f s e t - 5   { 
 
     m a r g i n - l e f t :   4 1 . 6 6 6 6 6 7 % ; 
 
 } 
 
 
 
 . o f f s e t - 6   { 
 
     m a r g i n - l e f t :   5 0 % ; 
 
 } 
 
 
 
 . o f f s e t - 7   { 
 
     m a r g i n - l e f t :   5 8 . 3 3 3 3 3 3 % ; 
 
 } 
 
 
 
 . o f f s e t - 8   { 
 
     m a r g i n - l e f t :   6 6 . 6 6 6 6 6 7 % ; 
 
 } 
 
 
 
 . o f f s e t - 9   { 
 
     m a r g i n - l e f t :   7 5 % ; 
 
 } 
 
 
 
 . o f f s e t - 1 0   { 
 
     m a r g i n - l e f t :   8 3 . 3 3 3 3 3 3 % ; 
 
 } 
 
 
 
 . o f f s e t - 1 1   { 
 
     m a r g i n - l e f t :   9 1 . 6 6 6 6 6 7 % ; 
 
 } 
 
 
 
 @ m e d i a   ( m i n - w i d t h :   5 7 6 p x )   { 
 
     . c o l - s m   { 
 
         - m s - f l e x - p r e f e r r e d - s i z e :   0 ; 
 
         f l e x - b a s i s :   0 ; 
 
         - m s - f l e x - p o s i t i v e :   1 ; 
 
         f l e x - g r o w :   1 ; 
 
         m a x - w i d t h :   1 0 0 % ; 
 
     } 
 
     . c o l - s m - a u t o   { 
 
         - m s - f l e x :   0   0   a u t o ; 
 
         f l e x :   0   0   a u t o ; 
 
         w i d t h :   a u t o ; 
 
         m a x - w i d t h :   1 0 0 % ; 
 
     } 
 
     . c o l - s m - 1   { 
 
         - m s - f l e x :   0   0   8 . 3 3 3 3 3 3 % ; 
 
         f l e x :   0   0   8 . 3 3 3 3 3 3 % ; 
 
         m a x - w i d t h :   8 . 3 3 3 3 3 3 % ; 
 
     } 
 
     . c o l - s m - 2   { 
 
         - m s - f l e x :   0   0   1 6 . 6 6 6 6 6 7 % ; 
 
         f l e x :   0   0   1 6 . 6 6 6 6 6 7 % ; 
 
         m a x - w i d t h :   1 6 . 6 6 6 6 6 7 % ; 
 
     } 
 
     . c o l - s m - 3   { 
 
         - m s - f l e x :   0   0   2 5 % ; 
 
         f l e x :   0   0   2 5 % ; 
 
         m a x - w i d t h :   2 5 % ; 
 
     } 
 
     . c o l - s m - 4   { 
 
         - m s - f l e x :   0   0   3 3 . 3 3 3 3 3 3 % ; 
 
         f l e x :   0   0   3 3 . 3 3 3 3 3 3 % ; 
 
         m a x - w i d t h :   3 3 . 3 3 3 3 3 3 % ; 
 
     } 
 
     . c o l - s m - 5   { 
 
         - m s - f l e x :   0   0   4 1 . 6 6 6 6 6 7 % ; 
 
         f l e x :   0   0   4 1 . 6 6 6 6 6 7 % ; 
 
         m a x - w i d t h :   4 1 . 6 6 6 6 6 7 % ; 
 
     } 
 
     . c o l - s m - 6   { 
 
         - m s - f l e x :   0   0   5 0 % ; 
 
         f l e x :   0   0   5 0 % ; 
 
         m a x - w i d t h :   5 0 % ; 
 
     } 
 
     . c o l - s m - 7   { 
 
         - m s - f l e x :   0   0   5 8 . 3 3 3 3 3 3 % ; 
 
         f l e x :   0   0   5 8 . 3 3 3 3 3 3 % ; 
 
         m a x - w i d t h :   5 8 . 3 3 3 3 3 3 % ; 
 
     } 
 
     . c o l - s m - 8   { 
 
         - m s - f l e x :   0   0   6 6 . 6 6 6 6 6 7 % ; 
 
         f l e x :   0   0   6 6 . 6 6 6 6 6 7 % ; 
 
         m a x - w i d t h :   6 6 . 6 6 6 6 6 7 % ; 
 
     } 
 
     . c o l - s m - 9   { 
 
         - m s - f l e x :   0   0   7 5 % ; 
 
         f l e x :   0   0   7 5 % ; 
 
         m a x - w i d t h :   7 5 % ; 
 
     } 
 
     . c o l - s m - 1 0   { 
 
         - m s - f l e x :   0   0   8 3 . 3 3 3 3 3 3 % ; 
 
         f l e x :   0   0   8 3 . 3 3 3 3 3 3 % ; 
 
         m a x - w i d t h :   8 3 . 3 3 3 3 3 3 % ; 
 
     } 
 
     . c o l - s m - 1 1   { 
 
         - m s - f l e x :   0   0   9 1 . 6 6 6 6 6 7 % ; 
 
         f l e x :   0   0   9 1 . 6 6 6 6 6 7 % ; 
 
         m a x - w i d t h :   9 1 . 6 6 6 6 6 7 % ; 
 
     } 
 
     . c o l - s m - 1 2   { 
 
         - m s - f l e x :   0   0   1 0 0 % ; 
 
         f l e x :   0   0   1 0 0 % ; 
 
         m a x - w i d t h :   1 0 0 % ; 
 
     } 
 
     . o r d e r - s m - f i r s t   { 
 
         - m s - f l e x - o r d e r :   - 1 ; 
 
         o r d e r :   - 1 ; 
 
     } 
 
     . o r d e r - s m - l a s t   { 
 
         - m s - f l e x - o r d e r :   1 3 ; 
 
         o r d e r :   1 3 ; 
 
     } 
 
     . o r d e r - s m - 0   { 
 
         - m s - f l e x - o r d e r :   0 ; 
 
         o r d e r :   0 ; 
 
     } 
 
     . o r d e r - s m - 1   { 
 
         - m s - f l e x - o r d e r :   1 ; 
 
         o r d e r :   1 ; 
 
     } 
 
     . o r d e r - s m - 2   { 
 
         - m s - f l e x - o r d e r :   2 ; 
 
         o r d e r :   2 ; 
 
     } 
 
     . o r d e r - s m - 3   { 
 
         - m s - f l e x - o r d e r :   3 ; 
 
         o r d e r :   3 ; 
 
     } 
 
     . o r d e r - s m - 4   { 
 
         - m s - f l e x - o r d e r :   4 ; 
 
         o r d e r :   4 ; 
 
     } 
 
     . o r d e r - s m - 5   { 
 
         - m s - f l e x - o r d e r :   5 ; 
 
         o r d e r :   5 ; 
 
     } 
 
     . o r d e r - s m - 6   { 
 
         - m s - f l e x - o r d e r :   6 ; 
 
         o r d e r :   6 ; 
 
     } 
 
     . o r d e r - s m - 7   { 
 
         - m s - f l e x - o r d e r :   7 ; 
 
         o r d e r :   7 ; 
 
     } 
 
     . o r d e r - s m - 8   { 
 
         - m s - f l e x - o r d e r :   8 ; 
 
         o r d e r :   8 ; 
 
     } 
 
     . o r d e r - s m - 9   { 
 
         - m s - f l e x - o r d e r :   9 ; 
 
         o r d e r :   9 ; 
 
     } 
 
     . o r d e r - s m - 1 0   { 
 
         - m s - f l e x - o r d e r :   1 0 ; 
 
         o r d e r :   1 0 ; 
 
     } 
 
     . o r d e r - s m - 1 1   { 
 
         - m s - f l e x - o r d e r :   1 1 ; 
 
         o r d e r :   1 1 ; 
 
     } 
 
     . o r d e r - s m - 1 2   { 
 
         - m s - f l e x - o r d e r :   1 2 ; 
 
         o r d e r :   1 2 ; 
 
     } 
 
     . o f f s e t - s m - 0   { 
 
         m a r g i n - l e f t :   0 ; 
 
     } 
 
     . o f f s e t - s m - 1   { 
 
         m a r g i n - l e f t :   8 . 3 3 3 3 3 3 % ; 
 
     } 
 
     . o f f s e t - s m - 2   { 
 
         m a r g i n - l e f t :   1 6 . 6 6 6 6 6 7 % ; 
 
     } 
 
     . o f f s e t - s m - 3   { 
 
         m a r g i n - l e f t :   2 5 % ; 
 
     } 
 
     . o f f s e t - s m - 4   { 
 
         m a r g i n - l e f t :   3 3 . 3 3 3 3 3 3 % ; 
 
     } 
 
     . o f f s e t - s m - 5   { 
 
         m a r g i n - l e f t :   4 1 . 6 6 6 6 6 7 % ; 
 
     } 
 
     . o f f s e t - s m - 6   { 
 
         m a r g i n - l e f t :   5 0 % ; 
 
     } 
 
     . o f f s e t - s m - 7   { 
 
         m a r g i n - l e f t :   5 8 . 3 3 3 3 3 3 % ; 
 
     } 
 
     . o f f s e t - s m - 8   { 
 
         m a r g i n - l e f t :   6 6 . 6 6 6 6 6 7 % ; 
 
     } 
 
     . o f f s e t - s m - 9   { 
 
         m a r g i n - l e f t :   7 5 % ; 
 
     } 
 
     . o f f s e t - s m - 1 0   { 
 
         m a r g i n - l e f t :   8 3 . 3 3 3 3 3 3 % ; 
 
     } 
 
     . o f f s e t - s m - 1 1   { 
 
         m a r g i n - l e f t :   9 1 . 6 6 6 6 6 7 % ; 
 
     } 
 
 } 
 
 
 
 @ m e d i a   ( m i n - w i d t h :   7 6 8 p x )   { 
 
     . c o l - m d   { 
 
         - m s - f l e x - p r e f e r r e d - s i z e :   0 ; 
 
         f l e x - b a s i s :   0 ; 
 
         - m s - f l e x - p o s i t i v e :   1 ; 
 
         f l e x - g r o w :   1 ; 
 
         m a x - w i d t h :   1 0 0 % ; 
 
     } 
 
     . c o l - m d - a u t o   { 
 
         - m s - f l e x :   0   0   a u t o ; 
 
         f l e x :   0   0   a u t o ; 
 
         w i d t h :   a u t o ; 
 
         m a x - w i d t h :   1 0 0 % ; 
 
     } 
 
     . c o l - m d - 1   { 
 
         - m s - f l e x :   0   0   8 . 3 3 3 3 3 3 % ; 
 
         f l e x :   0   0   8 . 3 3 3 3 3 3 % ; 
 
         m a x - w i d t h :   8 . 3 3 3 3 3 3 % ; 
 
     } 
 
     . c o l - m d - 2   { 
 
         - m s - f l e x :   0   0   1 6 . 6 6 6 6 6 7 % ; 
 
         f l e x :   0   0   1 6 . 6 6 6 6 6 7 % ; 
 
         m a x - w i d t h :   1 6 . 6 6 6 6 6 7 % ; 
 
     } 
 
     . c o l - m d - 3   { 
 
         - m s - f l e x :   0   0   2 5 % ; 
 
         f l e x :   0   0   2 5 % ; 
 
         m a x - w i d t h :   2 5 % ; 
 
     } 
 
     . c o l - m d - 4   { 
 
         - m s - f l e x :   0   0   3 3 . 3 3 3 3 3 3 % ; 
 
         f l e x :   0   0   3 3 . 3 3 3 3 3 3 % ; 
 
         m a x - w i d t h :   3 3 . 3 3 3 3 3 3 % ; 
 
     } 
 
     . c o l - m d - 5   { 
 
         - m s - f l e x :   0   0   4 1 . 6 6 6 6 6 7 % ; 
 
         f l e x :   0   0   4 1 . 6 6 6 6 6 7 % ; 
 
         m a x - w i d t h :   4 1 . 6 6 6 6 6 7 % ; 
 
     } 
 
     . c o l - m d - 6   { 
 
         - m s - f l e x :   0   0   5 0 % ; 
 
         f l e x :   0   0   5 0 % ; 
 
         m a x - w i d t h :   5 0 % ; 
 
     } 
 
     . c o l - m d - 7   { 
 
         - m s - f l e x :   0   0   5 8 . 3 3 3 3 3 3 % ; 
 
         f l e x :   0   0   5 8 . 3 3 3 3 3 3 % ; 
 
         m a x - w i d t h :   5 8 . 3 3 3 3 3 3 % ; 
 
     } 
 
     . c o l - m d - 8   { 
 
         - m s - f l e x :   0   0   6 6 . 6 6 6 6 6 7 % ; 
 
         f l e x :   0   0   6 6 . 6 6 6 6 6 7 % ; 
 
         m a x - w i d t h :   6 6 . 6 6 6 6 6 7 % ; 
 
     } 
 
     . c o l - m d - 9   { 
 
         - m s - f l e x :   0   0   7 5 % ; 
 
         f l e x :   0   0   7 5 % ; 
 
         m a x - w i d t h :   7 5 % ; 
 
     } 
 
     . c o l - m d - 1 0   { 
 
         - m s - f l e x :   0   0   8 3 . 3 3 3 3 3 3 % ; 
 
         f l e x :   0   0   8 3 . 3 3 3 3 3 3 % ; 
 
         m a x - w i d t h :   8 3 . 3 3 3 3 3 3 % ; 
 
     } 
 
     . c o l - m d - 1 1   { 
 
         - m s - f l e x :   0   0   9 1 . 6 6 6 6 6 7 % ; 
 
         f l e x :   0   0   9 1 . 6 6 6 6 6 7 % ; 
 
         m a x - w i d t h :   9 1 . 6 6 6 6 6 7 % ; 
 
     } 
 
     . c o l - m d - 1 2   { 
 
         - m s - f l e x :   0   0   1 0 0 % ; 
 
         f l e x :   0   0   1 0 0 % ; 
 
         m a x - w i d t h :   1 0 0 % ; 
 
     } 
 
     . o r d e r - m d - f i r s t   { 
 
         - m s - f l e x - o r d e r :   - 1 ; 
 
         o r d e r :   - 1 ; 
 
     } 
 
     . o r d e r - m d - l a s t   { 
 
         - m s - f l e x - o r d e r :   1 3 ; 
 
         o r d e r :   1 3 ; 
 
     } 
 
     . o r d e r - m d - 0   { 
 
         - m s - f l e x - o r d e r :   0 ; 
 
         o r d e r :   0 ; 
 
     } 
 
     . o r d e r - m d - 1   { 
 
         - m s - f l e x - o r d e r :   1 ; 
 
         o r d e r :   1 ; 
 
     } 
 
     . o r d e r - m d - 2   { 
 
         - m s - f l e x - o r d e r :   2 ; 
 
         o r d e r :   2 ; 
 
     } 
 
     . o r d e r - m d - 3   { 
 
         - m s - f l e x - o r d e r :   3 ; 
 
         o r d e r :   3 ; 
 
     } 
 
     . o r d e r - m d - 4   { 
 
         - m s - f l e x - o r d e r :   4 ; 
 
         o r d e r :   4 ; 
 
     } 
 
     . o r d e r - m d - 5   { 
 
         - m s - f l e x - o r d e r :   5 ; 
 
         o r d e r :   5 ; 
 
     } 
 
     . o r d e r - m d - 6   { 
 
         - m s - f l e x - o r d e r :   6 ; 
 
         o r d e r :   6 ; 
 
     } 
 
     . o r d e r - m d - 7   { 
 
         - m s - f l e x - o r d e r :   7 ; 
 
         o r d e r :   7 ; 
 
     } 
 
     . o r d e r - m d - 8   { 
 
         - m s - f l e x - o r d e r :   8 ; 
 
         o r d e r :   8 ; 
 
     } 
 
     . o r d e r - m d - 9   { 
 
         - m s - f l e x - o r d e r :   9 ; 
 
         o r d e r :   9 ; 
 
     } 
 
     . o r d e r - m d - 1 0   { 
 
         - m s - f l e x - o r d e r :   1 0 ; 
 
         o r d e r :   1 0 ; 
 
     } 
 
     . o r d e r - m d - 1 1   { 
 
         - m s - f l e x - o r d e r :   1 1 ; 
 
         o r d e r :   1 1 ; 
 
     } 
 
     . o r d e r - m d - 1 2   { 
 
         - m s - f l e x - o r d e r :   1 2 ; 
 
         o r d e r :   1 2 ; 
 
     } 
 
     . o f f s e t - m d - 0   { 
 
         m a r g i n - l e f t :   0 ; 
 
     } 
 
     . o f f s e t - m d - 1   { 
 
         m a r g i n - l e f t :   8 . 3 3 3 3 3 3 % ; 
 
     } 
 
     . o f f s e t - m d - 2   { 
 
         m a r g i n - l e f t :   1 6 . 6 6 6 6 6 7 % ; 
 
     } 
 
     . o f f s e t - m d - 3   { 
 
         m a r g i n - l e f t :   2 5 % ; 
 
     } 
 
     . o f f s e t - m d - 4   { 
 
         m a r g i n - l e f t :   3 3 . 3 3 3 3 3 3 % ; 
 
     } 
 
     . o f f s e t - m d - 5   { 
 
         m a r g i n - l e f t :   4 1 . 6 6 6 6 6 7 % ; 
 
     } 
 
     . o f f s e t - m d - 6   { 
 
         m a r g i n - l e f t :   5 0 % ; 
 
     } 
 
     . o f f s e t - m d - 7   { 
 
         m a r g i n - l e f t :   5 8 . 3 3 3 3 3 3 % ; 
 
     } 
 
     . o f f s e t - m d - 8   { 
 
         m a r g i n - l e f t :   6 6 . 6 6 6 6 6 7 % ; 
 
     } 
 
     . o f f s e t - m d - 9   { 
 
         m a r g i n - l e f t :   7 5 % ; 
 
     } 
 
     . o f f s e t - m d - 1 0   { 
 
         m a r g i n - l e f t :   8 3 . 3 3 3 3 3 3 % ; 
 
     } 
 
     . o f f s e t - m d - 1 1   { 
 
         m a r g i n - l e f t :   9 1 . 6 6 6 6 6 7 % ; 
 
     } 
 
 } 
 
 
 
 @ m e d i a   ( m i n - w i d t h :   9 9 2 p x )   { 
 
     . c o l - l g   { 
 
         - m s - f l e x - p r e f e r r e d - s i z e :   0 ; 
 
         f l e x - b a s i s :   0 ; 
 
         - m s - f l e x - p o s i t i v e :   1 ; 
 
         f l e x - g r o w :   1 ; 
 
         m a x - w i d t h :   1 0 0 % ; 
 
     } 
 
     . c o l - l g - a u t o   { 
 
         - m s - f l e x :   0   0   a u t o ; 
 
         f l e x :   0   0   a u t o ; 
 
         w i d t h :   a u t o ; 
 
         m a x - w i d t h :   1 0 0 % ; 
 
     } 
 
     . c o l - l g - 1   { 
 
         - m s - f l e x :   0   0   8 . 3 3 3 3 3 3 % ; 
 
         f l e x :   0   0   8 . 3 3 3 3 3 3 % ; 
 
         m a x - w i d t h :   8 . 3 3 3 3 3 3 % ; 
 
     } 
 
     . c o l - l g - 2   { 
 
         - m s - f l e x :   0   0   1 6 . 6 6 6 6 6 7 % ; 
 
         f l e x :   0   0   1 6 . 6 6 6 6 6 7 % ; 
 
         m a x - w i d t h :   1 6 . 6 6 6 6 6 7 % ; 
 
     } 
 
     . c o l - l g - 3   { 
 
         - m s - f l e x :   0   0   2 5 % ; 
 
         f l e x :   0   0   2 5 % ; 
 
         m a x - w i d t h :   2 5 % ; 
 
     } 
 
     . c o l - l g - 4   { 
 
         - m s - f l e x :   0   0   3 3 . 3 3 3 3 3 3 % ; 
 
         f l e x :   0   0   3 3 . 3 3 3 3 3 3 % ; 
 
         m a x - w i d t h :   3 3 . 3 3 3 3 3 3 % ; 
 
     } 
 
     . c o l - l g - 5   { 
 
         - m s - f l e x :   0   0   4 1 . 6 6 6 6 6 7 % ; 
 
         f l e x :   0   0   4 1 . 6 6 6 6 6 7 % ; 
 
         m a x - w i d t h :   4 1 . 6 6 6 6 6 7 % ; 
 
     } 
 
     . c o l - l g - 6   { 
 
         - m s - f l e x :   0   0   5 0 % ; 
 
         f l e x :   0   0   5 0 % ; 
 
         m a x - w i d t h :   5 0 % ; 
 
     } 
 
     . c o l - l g - 7   { 
 
         - m s - f l e x :   0   0   5 8 . 3 3 3 3 3 3 % ; 
 
         f l e x :   0   0   5 8 . 3 3 3 3 3 3 % ; 
 
         m a x - w i d t h :   5 8 . 3 3 3 3 3 3 % ; 
 
     } 
 
     . c o l - l g - 8   { 
 
         - m s - f l e x :   0   0   6 6 . 6 6 6 6 6 7 % ; 
 
         f l e x :   0   0   6 6 . 6 6 6 6 6 7 % ; 
 
         m a x - w i d t h :   6 6 . 6 6 6 6 6 7 % ; 
 
     } 
 
     . c o l - l g - 9   { 
 
         - m s - f l e x :   0   0   7 5 % ; 
 
         f l e x :   0   0   7 5 % ; 
 
         m a x - w i d t h :   7 5 % ; 
 
     } 
 
     . c o l - l g - 1 0   { 
 
         - m s - f l e x :   0   0   8 3 . 3 3 3 3 3 3 % ; 
 
         f l e x :   0   0   8 3 . 3 3 3 3 3 3 % ; 
 
         m a x - w i d t h :   8 3 . 3 3 3 3 3 3 % ; 
 
     } 
 
     . c o l - l g - 1 1   { 
 
         - m s - f l e x :   0   0   9 1 . 6 6 6 6 6 7 % ; 
 
         f l e x :   0   0   9 1 . 6 6 6 6 6 7 % ; 
 
         m a x - w i d t h :   9 1 . 6 6 6 6 6 7 % ; 
 
     } 
 
     . c o l - l g - 1 2   { 
 
         - m s - f l e x :   0   0   1 0 0 % ; 
 
         f l e x :   0   0   1 0 0 % ; 
 
         m a x - w i d t h :   1 0 0 % ; 
 
     } 
 
     . o r d e r - l g - f i r s t   { 
 
         - m s - f l e x - o r d e r :   - 1 ; 
 
         o r d e r :   - 1 ; 
 
     } 
 
     . o r d e r - l g - l a s t   { 
 
         - m s - f l e x - o r d e r :   1 3 ; 
 
         o r d e r :   1 3 ; 
 
     } 
 
     . o r d e r - l g - 0   { 
 
         - m s - f l e x - o r d e r :   0 ; 
 
         o r d e r :   0 ; 
 
     } 
 
     . o r d e r - l g - 1   { 
 
         - m s - f l e x - o r d e r :   1 ; 
 
         o r d e r :   1 ; 
 
     } 
 
     . o r d e r - l g - 2   { 
 
         - m s - f l e x - o r d e r :   2 ; 
 
         o r d e r :   2 ; 
 
     } 
 
     . o r d e r - l g - 3   { 
 
         - m s - f l e x - o r d e r :   3 ; 
 
         o r d e r :   3 ; 
 
     } 
 
     . o r d e r - l g - 4   { 
 
         - m s - f l e x - o r d e r :   4 ; 
 
         o r d e r :   4 ; 
 
     } 
 
     . o r d e r - l g - 5   { 
 
         - m s - f l e x - o r d e r :   5 ; 
 
         o r d e r :   5 ; 
 
     } 
 
     . o r d e r - l g - 6   { 
 
         - m s - f l e x - o r d e r :   6 ; 
 
         o r d e r :   6 ; 
 
     } 
 
     . o r d e r - l g - 7   { 
 
         - m s - f l e x - o r d e r :   7 ; 
 
         o r d e r :   7 ; 
 
     } 
 
     . o r d e r - l g - 8   { 
 
         - m s - f l e x - o r d e r :   8 ; 
 
         o r d e r :   8 ; 
 
     } 
 
     . o r d e r - l g - 9   { 
 
         - m s - f l e x - o r d e r :   9 ; 
 
         o r d e r :   9 ; 
 
     } 
 
     . o r d e r - l g - 1 0   { 
 
         - m s - f l e x - o r d e r :   1 0 ; 
 
         o r d e r :   1 0 ; 
 
     } 
 
     . o r d e r - l g - 1 1   { 
 
         - m s - f l e x - o r d e r :   1 1 ; 
 
         o r d e r :   1 1 ; 
 
     } 
 
     . o r d e r - l g - 1 2   { 
 
         - m s - f l e x - o r d e r :   1 2 ; 
 
         o r d e r :   1 2 ; 
 
     } 
 
     . o f f s e t - l g - 0   { 
 
         m a r g i n - l e f t :   0 ; 
 
     } 
 
     . o f f s e t - l g - 1   { 
 
         m a r g i n - l e f t :   8 . 3 3 3 3 3 3 % ; 
 
     } 
 
     . o f f s e t - l g - 2   { 
 
         m a r g i n - l e f t :   1 6 . 6 6 6 6 6 7 % ; 
 
     } 
 
     . o f f s e t - l g - 3   { 
 
         m a r g i n - l e f t :   2 5 % ; 
 
     } 
 
     . o f f s e t - l g - 4   { 
 
         m a r g i n - l e f t :   3 3 . 3 3 3 3 3 3 % ; 
 
     } 
 
     . o f f s e t - l g - 5   { 
 
         m a r g i n - l e f t :   4 1 . 6 6 6 6 6 7 % ; 
 
     } 
 
     . o f f s e t - l g - 6   { 
 
         m a r g i n - l e f t :   5 0 % ; 
 
     } 
 
     . o f f s e t - l g - 7   { 
 
         m a r g i n - l e f t :   5 8 . 3 3 3 3 3 3 % ; 
 
     } 
 
     . o f f s e t - l g - 8   { 
 
         m a r g i n - l e f t :   6 6 . 6 6 6 6 6 7 % ; 
 
     } 
 
     . o f f s e t - l g - 9   { 
 
         m a r g i n - l e f t :   7 5 % ; 
 
     } 
 
     . o f f s e t - l g - 1 0   { 
 
         m a r g i n - l e f t :   8 3 . 3 3 3 3 3 3 % ; 
 
     } 
 
     . o f f s e t - l g - 1 1   { 
 
         m a r g i n - l e f t :   9 1 . 6 6 6 6 6 7 % ; 
 
     } 
 
 } 
 
 
 
 @ m e d i a   ( m i n - w i d t h :   1 2 0 0 p x )   { 
 
     . c o l - x l   { 
 
         - m s - f l e x - p r e f e r r e d - s i z e :   0 ; 
 
         f l e x - b a s i s :   0 ; 
 
         - m s - f l e x - p o s i t i v e :   1 ; 
 
         f l e x - g r o w :   1 ; 
 
         m a x - w i d t h :   1 0 0 % ; 
 
     } 
 
     . c o l - x l - a u t o   { 
 
         - m s - f l e x :   0   0   a u t o ; 
 
         f l e x :   0   0   a u t o ; 
 
         w i d t h :   a u t o ; 
 
         m a x - w i d t h :   1 0 0 % ; 
 
     } 
 
     . c o l - x l - 1   { 
 
         - m s - f l e x :   0   0   8 . 3 3 3 3 3 3 % ; 
 
         f l e x :   0   0   8 . 3 3 3 3 3 3 % ; 
 
         m a x - w i d t h :   8 . 3 3 3 3 3 3 % ; 
 
     } 
 
     . c o l - x l - 2   { 
 
         - m s - f l e x :   0   0   1 6 . 6 6 6 6 6 7 % ; 
 
         f l e x :   0   0   1 6 . 6 6 6 6 6 7 % ; 
 
         m a x - w i d t h :   1 6 . 6 6 6 6 6 7 % ; 
 
     } 
 
     . c o l - x l - 3   { 
 
         - m s - f l e x :   0   0   2 5 % ; 
 
         f l e x :   0   0   2 5 % ; 
 
         m a x - w i d t h :   2 5 % ; 
 
     } 
 
     . c o l - x l - 4   { 
 
         - m s - f l e x :   0   0   3 3 . 3 3 3 3 3 3 % ; 
 
         f l e x :   0   0   3 3 . 3 3 3 3 3 3 % ; 
 
         m a x - w i d t h :   3 3 . 3 3 3 3 3 3 % ; 
 
     } 
 
     . c o l - x l - 5   { 
 
         - m s - f l e x :   0   0   4 1 . 6 6 6 6 6 7 % ; 
 
         f l e x :   0   0   4 1 . 6 6 6 6 6 7 % ; 
 
         m a x - w i d t h :   4 1 . 6 6 6 6 6 7 % ; 
 
     } 
 
     . c o l - x l - 6   { 
 
         - m s - f l e x :   0   0   5 0 % ; 
 
         f l e x :   0   0   5 0 % ; 
 
         m a x - w i d t h :   5 0 % ; 
 
     } 
 
     . c o l - x l - 7   { 
 
         - m s - f l e x :   0   0   5 8 . 3 3 3 3 3 3 % ; 
 
         f l e x :   0   0   5 8 . 3 3 3 3 3 3 % ; 
 
         m a x - w i d t h :   5 8 . 3 3 3 3 3 3 % ; 
 
     } 
 
     . c o l - x l - 8   { 
 
         - m s - f l e x :   0   0   6 6 . 6 6 6 6 6 7 % ; 
 
         f l e x :   0   0   6 6 . 6 6 6 6 6 7 % ; 
 
         m a x - w i d t h :   6 6 . 6 6 6 6 6 7 % ; 
 
     } 
 
     . c o l - x l - 9   { 
 
         - m s - f l e x :   0   0   7 5 % ; 
 
         f l e x :   0   0   7 5 % ; 
 
         m a x - w i d t h :   7 5 % ; 
 
     } 
 
     . c o l - x l - 1 0   { 
 
         - m s - f l e x :   0   0   8 3 . 3 3 3 3 3 3 % ; 
 
         f l e x :   0   0   8 3 . 3 3 3 3 3 3 % ; 
 
         m a x - w i d t h :   8 3 . 3 3 3 3 3 3 % ; 
 
     } 
 
     . c o l - x l - 1 1   { 
 
         - m s - f l e x :   0   0   9 1 . 6 6 6 6 6 7 % ; 
 
         f l e x :   0   0   9 1 . 6 6 6 6 6 7 % ; 
 
         m a x - w i d t h :   9 1 . 6 6 6 6 6 7 % ; 
 
     } 
 
     . c o l - x l - 1 2   { 
 
         - m s - f l e x :   0   0   1 0 0 % ; 
 
         f l e x :   0   0   1 0 0 % ; 
 
         m a x - w i d t h :   1 0 0 % ; 
 
     } 
 
     . o r d e r - x l - f i r s t   { 
 
         - m s - f l e x - o r d e r :   - 1 ; 
 
         o r d e r :   - 1 ; 
 
     } 
 
     . o r d e r - x l - l a s t   { 
 
         - m s - f l e x - o r d e r :   1 3 ; 
 
         o r d e r :   1 3 ; 
 
     } 
 
     . o r d e r - x l - 0   { 
 
         - m s - f l e x - o r d e r :   0 ; 
 
         o r d e r :   0 ; 
 
     } 
 
     . o r d e r - x l - 1   { 
 
         - m s - f l e x - o r d e r :   1 ; 
 
         o r d e r :   1 ; 
 
     } 
 
     . o r d e r - x l - 2   { 
 
         - m s - f l e x - o r d e r :   2 ; 
 
         o r d e r :   2 ; 
 
     } 
 
     . o r d e r - x l - 3   { 
 
         - m s - f l e x - o r d e r :   3 ; 
 
         o r d e r :   3 ; 
 
     } 
 
     . o r d e r - x l - 4   { 
 
         - m s - f l e x - o r d e r :   4 ; 
 
         o r d e r :   4 ; 
 
     } 
 
     . o r d e r - x l - 5   { 
 
         - m s - f l e x - o r d e r :   5 ; 
 
         o r d e r :   5 ; 
 
     } 
 
     . o r d e r - x l - 6   { 
 
         - m s - f l e x - o r d e r :   6 ; 
 
         o r d e r :   6 ; 
 
     } 
 
     . o r d e r - x l - 7   { 
 
         - m s - f l e x - o r d e r :   7 ; 
 
         o r d e r :   7 ; 
 
     } 
 
     . o r d e r - x l - 8   { 
 
         - m s - f l e x - o r d e r :   8 ; 
 
         o r d e r :   8 ; 
 
     } 
 
     . o r d e r - x l - 9   { 
 
         - m s - f l e x - o r d e r :   9 ; 
 
         o r d e r :   9 ; 
 
     } 
 
     . o r d e r - x l - 1 0   { 
 
         - m s - f l e x - o r d e r :   1 0 ; 
 
         o r d e r :   1 0 ; 
 
     } 
 
     . o r d e r - x l - 1 1   { 
 
         - m s - f l e x - o r d e r :   1 1 ; 
 
         o r d e r :   1 1 ; 
 
     } 
 
     . o r d e r - x l - 1 2   { 
 
         - m s - f l e x - o r d e r :   1 2 ; 
 
         o r d e r :   1 2 ; 
 
     } 
 
     . o f f s e t - x l - 0   { 
 
         m a r g i n - l e f t :   0 ; 
 
     } 
 
     . o f f s e t - x l - 1   { 
 
         m a r g i n - l e f t :   8 . 3 3 3 3 3 3 % ; 
 
     } 
 
     . o f f s e t - x l - 2   { 
 
         m a r g i n - l e f t :   1 6 . 6 6 6 6 6 7 % ; 
 
     } 
 
     . o f f s e t - x l - 3   { 
 
         m a r g i n - l e f t :   2 5 % ; 
 
     } 
 
     . o f f s e t - x l - 4   { 
 
         m a r g i n - l e f t :   3 3 . 3 3 3 3 3 3 % ; 
 
     } 
 
     . o f f s e t - x l - 5   { 
 
         m a r g i n - l e f t :   4 1 . 6 6 6 6 6 7 % ; 
 
     } 
 
     . o f f s e t - x l - 6   { 
 
         m a r g i n - l e f t :   5 0 % ; 
 
     } 
 
     . o f f s e t - x l - 7   { 
 
         m a r g i n - l e f t :   5 8 . 3 3 3 3 3 3 % ; 
 
     } 
 
     . o f f s e t - x l - 8   { 
 
         m a r g i n - l e f t :   6 6 . 6 6 6 6 6 7 % ; 
 
     } 
 
     . o f f s e t - x l - 9   { 
 
         m a r g i n - l e f t :   7 5 % ; 
 
     } 
 
     . o f f s e t - x l - 1 0   { 
 
         m a r g i n - l e f t :   8 3 . 3 3 3 3 3 3 % ; 
 
     } 
 
     . o f f s e t - x l - 1 1   { 
 
         m a r g i n - l e f t :   9 1 . 6 6 6 6 6 7 % ; 
 
     } 
 
 } 
 
 
 
 . t a b l e   { 
 
     w i d t h :   1 0 0 % ; 
 
     m a r g i n - b o t t o m :   1 r e m ; 
 
     c o l o r :   # 2 1 2 5 2 9 ; 
 
 } 
 
 
 
 . t a b l e   t h , 
 
 . t a b l e   t d   { 
 
     p a d d i n g :   0 . 7 5 r e m ; 
 
     v e r t i c a l - a l i g n :   t o p ; 
 
     b o r d e r - t o p :   1 p x   s o l i d   # d e e 2 e 6 ; 
 
 } 
 
 
 
 . t a b l e   t h e a d   t h   { 
 
     v e r t i c a l - a l i g n :   b o t t o m ; 
 
     b o r d e r - b o t t o m :   2 p x   s o l i d   # d e e 2 e 6 ; 
 
 } 
 
 
 
 . t a b l e   t b o d y   +   t b o d y   { 
 
     b o r d e r - t o p :   2 p x   s o l i d   # d e e 2 e 6 ; 
 
 } 
 
 
 
 . t a b l e - s m   t h , 
 
 . t a b l e - s m   t d   { 
 
     p a d d i n g :   0 . 3 r e m ; 
 
 } 
 
 
 
 . t a b l e - b o r d e r e d   { 
 
     b o r d e r :   1 p x   s o l i d   # d e e 2 e 6 ; 
 
 } 
 
 
 
 . t a b l e - b o r d e r e d   t h , 
 
 . t a b l e - b o r d e r e d   t d   { 
 
     b o r d e r :   1 p x   s o l i d   # d e e 2 e 6 ; 
 
 } 
 
 
 
 . t a b l e - b o r d e r e d   t h e a d   t h , 
 
 . t a b l e - b o r d e r e d   t h e a d   t d   { 
 
     b o r d e r - b o t t o m - w i d t h :   2 p x ; 
 
 } 
 
 
 
 . t a b l e - b o r d e r l e s s   t h , 
 
 . t a b l e - b o r d e r l e s s   t d , 
 
 . t a b l e - b o r d e r l e s s   t h e a d   t h , 
 
 . t a b l e - b o r d e r l e s s   t b o d y   +   t b o d y   { 
 
     b o r d e r :   0 ; 
 
 } 
 
 
 
 . t a b l e - s t r i p e d   t b o d y   t r : n t h - o f - t y p e ( o d d )   { 
 
     b a c k g r o u n d - c o l o r :   r g b a ( 0 ,   0 ,   0 ,   0 . 0 5 ) ; 
 
 } 
 
 
 
 . t a b l e - h o v e r   t b o d y   t r : h o v e r   { 
 
     c o l o r :   # 2 1 2 5 2 9 ; 
 
     b a c k g r o u n d - c o l o r :   r g b a ( 0 ,   0 ,   0 ,   0 . 0 7 5 ) ; 
 
 } 
 
 
 
 . t a b l e - p r i m a r y , 
 
 . t a b l e - p r i m a r y   >   t h , 
 
 . t a b l e - p r i m a r y   >   t d   { 
 
     b a c k g r o u n d - c o l o r :   # b 8 d a f f ; 
 
 } 
 
 
 
 . t a b l e - p r i m a r y   t h , 
 
 . t a b l e - p r i m a r y   t d , 
 
 . t a b l e - p r i m a r y   t h e a d   t h , 
 
 . t a b l e - p r i m a r y   t b o d y   +   t b o d y   { 
 
     b o r d e r - c o l o r :   # 7 a b a f f ; 
 
 } 
 
 
 
 . t a b l e - h o v e r   . t a b l e - p r i m a r y : h o v e r   { 
 
     b a c k g r o u n d - c o l o r :   # 9 f c d f f ; 
 
 } 
 
 
 
 . t a b l e - h o v e r   . t a b l e - p r i m a r y : h o v e r   >   t d , 
 
 . t a b l e - h o v e r   . t a b l e - p r i m a r y : h o v e r   >   t h   { 
 
     b a c k g r o u n d - c o l o r :   # 9 f c d f f ; 
 
 } 
 
 
 
 . t a b l e - s e c o n d a r y , 
 
 . t a b l e - s e c o n d a r y   >   t h , 
 
 . t a b l e - s e c o n d a r y   >   t d   { 
 
     b a c k g r o u n d - c o l o r :   # d 6 d 8 d b ; 
 
 } 
 
 
 
 . t a b l e - s e c o n d a r y   t h , 
 
 . t a b l e - s e c o n d a r y   t d , 
 
 . t a b l e - s e c o n d a r y   t h e a d   t h , 
 
 . t a b l e - s e c o n d a r y   t b o d y   +   t b o d y   { 
 
     b o r d e r - c o l o r :   # b 3 b 7 b b ; 
 
 } 
 
 
 
 . t a b l e - h o v e r   . t a b l e - s e c o n d a r y : h o v e r   { 
 
     b a c k g r o u n d - c o l o r :   # c 8 c b c f ; 
 
 } 
 
 
 
 . t a b l e - h o v e r   . t a b l e - s e c o n d a r y : h o v e r   >   t d , 
 
 . t a b l e - h o v e r   . t a b l e - s e c o n d a r y : h o v e r   >   t h   { 
 
     b a c k g r o u n d - c o l o r :   # c 8 c b c f ; 
 
 } 
 
 
 
 . t a b l e - s u c c e s s , 
 
 . t a b l e - s u c c e s s   >   t h , 
 
 . t a b l e - s u c c e s s   >   t d   { 
 
     b a c k g r o u n d - c o l o r :   # c 3 e 6 c b ; 
 
 } 
 
 
 
 . t a b l e - s u c c e s s   t h , 
 
 . t a b l e - s u c c e s s   t d , 
 
 . t a b l e - s u c c e s s   t h e a d   t h , 
 
 . t a b l e - s u c c e s s   t b o d y   +   t b o d y   { 
 
     b o r d e r - c o l o r :   # 8 f d 1 9 e ; 
 
 } 
 
 
 
 . t a b l e - h o v e r   . t a b l e - s u c c e s s : h o v e r   { 
 
     b a c k g r o u n d - c o l o r :   # b 1 d f b b ; 
 
 } 
 
 
 
 . t a b l e - h o v e r   . t a b l e - s u c c e s s : h o v e r   >   t d , 
 
 . t a b l e - h o v e r   . t a b l e - s u c c e s s : h o v e r   >   t h   { 
 
     b a c k g r o u n d - c o l o r :   # b 1 d f b b ; 
 
 } 
 
 
 
 . t a b l e - i n f o , 
 
 . t a b l e - i n f o   >   t h , 
 
 . t a b l e - i n f o   >   t d   { 
 
     b a c k g r o u n d - c o l o r :   # b e e 5 e b ; 
 
 } 
 
 
 
 . t a b l e - i n f o   t h , 
 
 . t a b l e - i n f o   t d , 
 
 . t a b l e - i n f o   t h e a d   t h , 
 
 . t a b l e - i n f o   t b o d y   +   t b o d y   { 
 
     b o r d e r - c o l o r :   # 8 6 c f d a ; 
 
 } 
 
 
 
 . t a b l e - h o v e r   . t a b l e - i n f o : h o v e r   { 
 
     b a c k g r o u n d - c o l o r :   # a b d d e 5 ; 
 
 } 
 
 
 
 . t a b l e - h o v e r   . t a b l e - i n f o : h o v e r   >   t d , 
 
 . t a b l e - h o v e r   . t a b l e - i n f o : h o v e r   >   t h   { 
 
     b a c k g r o u n d - c o l o r :   # a b d d e 5 ; 
 
 } 
 
 
 
 . t a b l e - w a r n i n g , 
 
 . t a b l e - w a r n i n g   >   t h , 
 
 . t a b l e - w a r n i n g   >   t d   { 
 
     b a c k g r o u n d - c o l o r :   # f f e e b a ; 
 
 } 
 
 
 
 . t a b l e - w a r n i n g   t h , 
 
 . t a b l e - w a r n i n g   t d , 
 
 . t a b l e - w a r n i n g   t h e a d   t h , 
 
 . t a b l e - w a r n i n g   t b o d y   +   t b o d y   { 
 
     b o r d e r - c o l o r :   # f f d f 7 e ; 
 
 } 
 
 
 
 . t a b l e - h o v e r   . t a b l e - w a r n i n g : h o v e r   { 
 
     b a c k g r o u n d - c o l o r :   # f f e 8 a 1 ; 
 
 } 
 
 
 
 . t a b l e - h o v e r   . t a b l e - w a r n i n g : h o v e r   >   t d , 
 
 . t a b l e - h o v e r   . t a b l e - w a r n i n g : h o v e r   >   t h   { 
 
     b a c k g r o u n d - c o l o r :   # f f e 8 a 1 ; 
 
 } 
 
 
 
 . t a b l e - d a n g e r , 
 
 . t a b l e - d a n g e r   >   t h , 
 
 . t a b l e - d a n g e r   >   t d   { 
 
     b a c k g r o u n d - c o l o r :   # f 5 c 6 c b ; 
 
 } 
 
 
 
 . t a b l e - d a n g e r   t h , 
 
 . t a b l e - d a n g e r   t d , 
 
 . t a b l e - d a n g e r   t h e a d   t h , 
 
 . t a b l e - d a n g e r   t b o d y   +   t b o d y   { 
 
     b o r d e r - c o l o r :   # e d 9 6 9 e ; 
 
 } 
 
 
 
 . t a b l e - h o v e r   . t a b l e - d a n g e r : h o v e r   { 
 
     b a c k g r o u n d - c o l o r :   # f 1 b 0 b 7 ; 
 
 } 
 
 
 
 . t a b l e - h o v e r   . t a b l e - d a n g e r : h o v e r   >   t d , 
 
 . t a b l e - h o v e r   . t a b l e - d a n g e r : h o v e r   >   t h   { 
 
     b a c k g r o u n d - c o l o r :   # f 1 b 0 b 7 ; 
 
 } 
 
 
 
 . t a b l e - l i g h t , 
 
 . t a b l e - l i g h t   >   t h , 
 
 . t a b l e - l i g h t   >   t d   { 
 
     b a c k g r o u n d - c o l o r :   # f d f d f e ; 
 
 } 
 
 
 
 . t a b l e - l i g h t   t h , 
 
 . t a b l e - l i g h t   t d , 
 
 . t a b l e - l i g h t   t h e a d   t h , 
 
 . t a b l e - l i g h t   t b o d y   +   t b o d y   { 
 
     b o r d e r - c o l o r :   # f b f c f c ; 
 
 } 
 
 
 
 . t a b l e - h o v e r   . t a b l e - l i g h t : h o v e r   { 
 
     b a c k g r o u n d - c o l o r :   # e c e c f 6 ; 
 
 } 
 
 
 
 . t a b l e - h o v e r   . t a b l e - l i g h t : h o v e r   >   t d , 
 
 . t a b l e - h o v e r   . t a b l e - l i g h t : h o v e r   >   t h   { 
 
     b a c k g r o u n d - c o l o r :   # e c e c f 6 ; 
 
 } 
 
 
 
 . t a b l e - d a r k , 
 
 . t a b l e - d a r k   >   t h , 
 
 . t a b l e - d a r k   >   t d   { 
 
     b a c k g r o u n d - c o l o r :   # c 6 c 8 c a ; 
 
 } 
 
 
 
 . t a b l e - d a r k   t h , 
 
 . t a b l e - d a r k   t d , 
 
 . t a b l e - d a r k   t h e a d   t h , 
 
 . t a b l e - d a r k   t b o d y   +   t b o d y   { 
 
     b o r d e r - c o l o r :   # 9 5 9 9 9 c ; 
 
 } 
 
 
 
 . t a b l e - h o v e r   . t a b l e - d a r k : h o v e r   { 
 
     b a c k g r o u n d - c o l o r :   # b 9 b b b e ; 
 
 } 
 
 
 
 . t a b l e - h o v e r   . t a b l e - d a r k : h o v e r   >   t d , 
 
 . t a b l e - h o v e r   . t a b l e - d a r k : h o v e r   >   t h   { 
 
     b a c k g r o u n d - c o l o r :   # b 9 b b b e ; 
 
 } 
 
 
 
 . t a b l e - a c t i v e , 
 
 . t a b l e - a c t i v e   >   t h , 
 
 . t a b l e - a c t i v e   >   t d   { 
 
     b a c k g r o u n d - c o l o r :   r g b a ( 0 ,   0 ,   0 ,   0 . 0 7 5 ) ; 
 
 } 
 
 
 
 . t a b l e - h o v e r   . t a b l e - a c t i v e : h o v e r   { 
 
     b a c k g r o u n d - c o l o r :   r g b a ( 0 ,   0 ,   0 ,   0 . 0 7 5 ) ; 
 
 } 
 
 
 
 . t a b l e - h o v e r   . t a b l e - a c t i v e : h o v e r   >   t d , 
 
 . t a b l e - h o v e r   . t a b l e - a c t i v e : h o v e r   >   t h   { 
 
     b a c k g r o u n d - c o l o r :   r g b a ( 0 ,   0 ,   0 ,   0 . 0 7 5 ) ; 
 
 } 
 
 
 
 . t a b l e   . t h e a d - d a r k   t h   { 
 
     c o l o r :   # f f f ; 
 
     b a c k g r o u n d - c o l o r :   # 3 4 3 a 4 0 ; 
 
     b o r d e r - c o l o r :   # 4 5 4 d 5 5 ; 
 
 } 
 
 
 
 . t a b l e   . t h e a d - l i g h t   t h   { 
 
     c o l o r :   # 4 9 5 0 5 7 ; 
 
     b a c k g r o u n d - c o l o r :   # e 9 e c e f ; 
 
     b o r d e r - c o l o r :   # d e e 2 e 6 ; 
 
 } 
 
 
 
 . t a b l e - d a r k   { 
 
     c o l o r :   # f f f ; 
 
     b a c k g r o u n d - c o l o r :   # 3 4 3 a 4 0 ; 
 
 } 
 
 
 
 . t a b l e - d a r k   t h , 
 
 . t a b l e - d a r k   t d , 
 
 . t a b l e - d a r k   t h e a d   t h   { 
 
     b o r d e r - c o l o r :   # 4 5 4 d 5 5 ; 
 
 } 
 
 
 
 . t a b l e - d a r k . t a b l e - b o r d e r e d   { 
 
     b o r d e r :   0 ; 
 
 } 
 
 
 
 . t a b l e - d a r k . t a b l e - s t r i p e d   t b o d y   t r : n t h - o f - t y p e ( o d d )   { 
 
     b a c k g r o u n d - c o l o r :   r g b a ( 2 5 5 ,   2 5 5 ,   2 5 5 ,   0 . 0 5 ) ; 
 
 } 
 
 
 
 . t a b l e - d a r k . t a b l e - h o v e r   t b o d y   t r : h o v e r   { 
 
     c o l o r :   # f f f ; 
 
     b a c k g r o u n d - c o l o r :   r g b a ( 2 5 5 ,   2 5 5 ,   2 5 5 ,   0 . 0 7 5 ) ; 
 
 } 
 
 
 
 @ m e d i a   ( m a x - w i d t h :   5 7 5 . 9 8 p x )   { 
 
     . t a b l e - r e s p o n s i v e - s m   { 
 
         d i s p l a y :   b l o c k ; 
 
         w i d t h :   1 0 0 % ; 
 
         o v e r f l o w - x :   a u t o ; 
 
         - w e b k i t - o v e r f l o w - s c r o l l i n g :   t o u c h ; 
 
     } 
 
     . t a b l e - r e s p o n s i v e - s m   >   . t a b l e - b o r d e r e d   { 
 
         b o r d e r :   0 ; 
 
     } 
 
 } 
 
 
 
 @ m e d i a   ( m a x - w i d t h :   7 6 7 . 9 8 p x )   { 
 
     . t a b l e - r e s p o n s i v e - m d   { 
 
         d i s p l a y :   b l o c k ; 
 
         w i d t h :   1 0 0 % ; 
 
         o v e r f l o w - x :   a u t o ; 
 
         - w e b k i t - o v e r f l o w - s c r o l l i n g :   t o u c h ; 
 
     } 
 
     . t a b l e - r e s p o n s i v e - m d   >   . t a b l e - b o r d e r e d   { 
 
         b o r d e r :   0 ; 
 
     } 
 
 } 
 
 
 
 @ m e d i a   ( m a x - w i d t h :   9 9 1 . 9 8 p x )   { 
 
     . t a b l e - r e s p o n s i v e - l g   { 
 
         d i s p l a y :   b l o c k ; 
 
         w i d t h :   1 0 0 % ; 
 
         o v e r f l o w - x :   a u t o ; 
 
         - w e b k i t - o v e r f l o w - s c r o l l i n g :   t o u c h ; 
 
     } 
 
     . t a b l e - r e s p o n s i v e - l g   >   . t a b l e - b o r d e r e d   { 
 
         b o r d e r :   0 ; 
 
     } 
 
 } 
 
 
 
 @ m e d i a   ( m a x - w i d t h :   1 1 9 9 . 9 8 p x )   { 
 
     . t a b l e - r e s p o n s i v e - x l   { 
 
         d i s p l a y :   b l o c k ; 
 
         w i d t h :   1 0 0 % ; 
 
         o v e r f l o w - x :   a u t o ; 
 
         - w e b k i t - o v e r f l o w - s c r o l l i n g :   t o u c h ; 
 
     } 
 
     . t a b l e - r e s p o n s i v e - x l   >   . t a b l e - b o r d e r e d   { 
 
         b o r d e r :   0 ; 
 
     } 
 
 } 
 
 
 
 . t a b l e - r e s p o n s i v e   { 
 
     d i s p l a y :   b l o c k ; 
 
     w i d t h :   1 0 0 % ; 
 
     o v e r f l o w - x :   a u t o ; 
 
     - w e b k i t - o v e r f l o w - s c r o l l i n g :   t o u c h ; 
 
 } 
 
 
 
 . t a b l e - r e s p o n s i v e   >   . t a b l e - b o r d e r e d   { 
 
     b o r d e r :   0 ; 
 
 } 
 
 
 
 . f o r m - c o n t r o l   { 
 
     d i s p l a y :   b l o c k ; 
 
     w i d t h :   1 0 0 % ; 
 
     h e i g h t :   c a l c ( 1 . 5 e m   +   0 . 7 5 r e m   +   2 p x ) ; 
 
     p a d d i n g :   0 . 3 7 5 r e m   0 . 7 5 r e m ; 
 
     f o n t - s i z e :   1 r e m ; 
 
     f o n t - w e i g h t :   4 0 0 ; 
 
     l i n e - h e i g h t :   1 . 5 ; 
 
     c o l o r :   # 4 9 5 0 5 7 ; 
 
     b a c k g r o u n d - c o l o r :   # f f f ; 
 
     b a c k g r o u n d - c l i p :   p a d d i n g - b o x ; 
 
     b o r d e r :   1 p x   s o l i d   # c e d 4 d a ; 
 
     b o r d e r - r a d i u s :   0 . 2 5 r e m ; 
 
     t r a n s i t i o n :   b o r d e r - c o l o r   0 . 1 5 s   e a s e - i n - o u t ,   b o x - s h a d o w   0 . 1 5 s   e a s e - i n - o u t ; 
 
 } 
 
 
 
 @ m e d i a   ( p r e f e r s - r e d u c e d - m o t i o n :   r e d u c e )   { 
 
     . f o r m - c o n t r o l   { 
 
         t r a n s i t i o n :   n o n e ; 
 
     } 
 
 } 
 
 
 
 . f o r m - c o n t r o l : : - m s - e x p a n d   { 
 
     b a c k g r o u n d - c o l o r :   t r a n s p a r e n t ; 
 
     b o r d e r :   0 ; 
 
 } 
 
 
 
 . f o r m - c o n t r o l : f o c u s   { 
 
     c o l o r :   # 4 9 5 0 5 7 ; 
 
     b a c k g r o u n d - c o l o r :   # f f f ; 
 
     b o r d e r - c o l o r :   # 8 0 b d f f ; 
 
     o u t l i n e :   0 ; 
 
     b o x - s h a d o w :   0   0   0   0 . 2 r e m   r g b a ( 0 ,   1 2 3 ,   2 5 5 ,   0 . 2 5 ) ; 
 
 } 
 
 
 
 . f o r m - c o n t r o l : : - w e b k i t - i n p u t - p l a c e h o l d e r   { 
 
     c o l o r :   # 6 c 7 5 7 d ; 
 
     o p a c i t y :   1 ; 
 
 } 
 
 
 
 . f o r m - c o n t r o l : : - m o z - p l a c e h o l d e r   { 
 
     c o l o r :   # 6 c 7 5 7 d ; 
 
     o p a c i t y :   1 ; 
 
 } 
 
 
 
 . f o r m - c o n t r o l : - m s - i n p u t - p l a c e h o l d e r   { 
 
     c o l o r :   # 6 c 7 5 7 d ; 
 
     o p a c i t y :   1 ; 
 
 } 
 
 
 
 . f o r m - c o n t r o l : : - m s - i n p u t - p l a c e h o l d e r   { 
 
     c o l o r :   # 6 c 7 5 7 d ; 
 
     o p a c i t y :   1 ; 
 
 } 
 
 
 
 . f o r m - c o n t r o l : : p l a c e h o l d e r   { 
 
     c o l o r :   # 6 c 7 5 7 d ; 
 
     o p a c i t y :   1 ; 
 
 } 
 
 
 
 . f o r m - c o n t r o l : d i s a b l e d ,   . f o r m - c o n t r o l [ r e a d o n l y ]   { 
 
     b a c k g r o u n d - c o l o r :   # e 9 e c e f ; 
 
     o p a c i t y :   1 ; 
 
 } 
 
 
 
 s e l e c t . f o r m - c o n t r o l : f o c u s : : - m s - v a l u e   { 
 
     c o l o r :   # 4 9 5 0 5 7 ; 
 
     b a c k g r o u n d - c o l o r :   # f f f ; 
 
 } 
 
 
 
 . f o r m - c o n t r o l - f i l e , 
 
 . f o r m - c o n t r o l - r a n g e   { 
 
     d i s p l a y :   b l o c k ; 
 
     w i d t h :   1 0 0 % ; 
 
 } 
 
 
 
 . c o l - f o r m - l a b e l   { 
 
     p a d d i n g - t o p :   c a l c ( 0 . 3 7 5 r e m   +   1 p x ) ; 
 
     p a d d i n g - b o t t o m :   c a l c ( 0 . 3 7 5 r e m   +   1 p x ) ; 
 
     m a r g i n - b o t t o m :   0 ; 
 
     f o n t - s i z e :   i n h e r i t ; 
 
     l i n e - h e i g h t :   1 . 5 ; 
 
 } 
 
 
 
 . c o l - f o r m - l a b e l - l g   { 
 
     p a d d i n g - t o p :   c a l c ( 0 . 5 r e m   +   1 p x ) ; 
 
     p a d d i n g - b o t t o m :   c a l c ( 0 . 5 r e m   +   1 p x ) ; 
 
     f o n t - s i z e :   1 . 2 5 r e m ; 
 
     l i n e - h e i g h t :   1 . 5 ; 
 
 } 
 
 
 
 . c o l - f o r m - l a b e l - s m   { 
 
     p a d d i n g - t o p :   c a l c ( 0 . 2 5 r e m   +   1 p x ) ; 
 
     p a d d i n g - b o t t o m :   c a l c ( 0 . 2 5 r e m   +   1 p x ) ; 
 
     f o n t - s i z e :   0 . 8 7 5 r e m ; 
 
     l i n e - h e i g h t :   1 . 5 ; 
 
 } 
 
 
 
 . f o r m - c o n t r o l - p l a i n t e x t   { 
 
     d i s p l a y :   b l o c k ; 
 
     w i d t h :   1 0 0 % ; 
 
     p a d d i n g - t o p :   0 . 3 7 5 r e m ; 
 
     p a d d i n g - b o t t o m :   0 . 3 7 5 r e m ; 
 
     m a r g i n - b o t t o m :   0 ; 
 
     l i n e - h e i g h t :   1 . 5 ; 
 
     c o l o r :   # 2 1 2 5 2 9 ; 
 
     b a c k g r o u n d - c o l o r :   t r a n s p a r e n t ; 
 
     b o r d e r :   s o l i d   t r a n s p a r e n t ; 
 
     b o r d e r - w i d t h :   1 p x   0 ; 
 
 } 
 
 
 
 . f o r m - c o n t r o l - p l a i n t e x t . f o r m - c o n t r o l - s m ,   . f o r m - c o n t r o l - p l a i n t e x t . f o r m - c o n t r o l - l g   { 
 
     p a d d i n g - r i g h t :   0 ; 
 
     p a d d i n g - l e f t :   0 ; 
 
 } 
 
 
 
 . f o r m - c o n t r o l - s m   { 
 
     h e i g h t :   c a l c ( 1 . 5 e m   +   0 . 5 r e m   +   2 p x ) ; 
 
     p a d d i n g :   0 . 2 5 r e m   0 . 5 r e m ; 
 
     f o n t - s i z e :   0 . 8 7 5 r e m ; 
 
     l i n e - h e i g h t :   1 . 5 ; 
 
     b o r d e r - r a d i u s :   0 . 2 r e m ; 
 
 } 
 
 
 
 . f o r m - c o n t r o l - l g   { 
 
     h e i g h t :   c a l c ( 1 . 5 e m   +   1 r e m   +   2 p x ) ; 
 
     p a d d i n g :   0 . 5 r e m   1 r e m ; 
 
     f o n t - s i z e :   1 . 2 5 r e m ; 
 
     l i n e - h e i g h t :   1 . 5 ; 
 
     b o r d e r - r a d i u s :   0 . 3 r e m ; 
 
 } 
 
 
 
 s e l e c t . f o r m - c o n t r o l [ s i z e ] ,   s e l e c t . f o r m - c o n t r o l [ m u l t i p l e ]   { 
 
     h e i g h t :   a u t o ; 
 
 } 
 
 
 
 t e x t a r e a . f o r m - c o n t r o l   { 
 
     h e i g h t :   a u t o ; 
 
 } 
 
 
 
 . f o r m - g r o u p   { 
 
     m a r g i n - b o t t o m :   1 r e m ; 
 
 } 
 
 
 
 . f o r m - t e x t   { 
 
     d i s p l a y :   b l o c k ; 
 
     m a r g i n - t o p :   0 . 2 5 r e m ; 
 
 } 
 
 
 
 . f o r m - r o w   { 
 
     d i s p l a y :   - m s - f l e x b o x ; 
 
     d i s p l a y :   f l e x ; 
 
     - m s - f l e x - w r a p :   w r a p ; 
 
     f l e x - w r a p :   w r a p ; 
 
     m a r g i n - r i g h t :   - 5 p x ; 
 
     m a r g i n - l e f t :   - 5 p x ; 
 
 } 
 
 
 
 . f o r m - r o w   >   . c o l , 
 
 . f o r m - r o w   >   [ c l a s s * = " c o l - " ]   { 
 
     p a d d i n g - r i g h t :   5 p x ; 
 
     p a d d i n g - l e f t :   5 p x ; 
 
 } 
 
 
 
 . f o r m - c h e c k   { 
 
     p o s i t i o n :   r e l a t i v e ; 
 
     d i s p l a y :   b l o c k ; 
 
     p a d d i n g - l e f t :   1 . 2 5 r e m ; 
 
 } 
 
 
 
 . f o r m - c h e c k - i n p u t   { 
 
     p o s i t i o n :   a b s o l u t e ; 
 
     m a r g i n - t o p :   0 . 3 r e m ; 
 
     m a r g i n - l e f t :   - 1 . 2 5 r e m ; 
 
 } 
 
 
 
 . f o r m - c h e c k - i n p u t : d i s a b l e d   ~   . f o r m - c h e c k - l a b e l   { 
 
     c o l o r :   # 6 c 7 5 7 d ; 
 
 } 
 
 
 
 . f o r m - c h e c k - l a b e l   { 
 
     m a r g i n - b o t t o m :   0 ; 
 
 } 
 
 
 
 . f o r m - c h e c k - i n l i n e   { 
 
     d i s p l a y :   - m s - i n l i n e - f l e x b o x ; 
 
     d i s p l a y :   i n l i n e - f l e x ; 
 
     - m s - f l e x - a l i g n :   c e n t e r ; 
 
     a l i g n - i t e m s :   c e n t e r ; 
 
     p a d d i n g - l e f t :   0 ; 
 
     m a r g i n - r i g h t :   0 . 7 5 r e m ; 
 
 } 
 
 
 
 . f o r m - c h e c k - i n l i n e   . f o r m - c h e c k - i n p u t   { 
 
     p o s i t i o n :   s t a t i c ; 
 
     m a r g i n - t o p :   0 ; 
 
     m a r g i n - r i g h t :   0 . 3 1 2 5 r e m ; 
 
     m a r g i n - l e f t :   0 ; 
 
 } 
 
 
 
 . v a l i d - f e e d b a c k   { 
 
     d i s p l a y :   n o n e ; 
 
     w i d t h :   1 0 0 % ; 
 
     m a r g i n - t o p :   0 . 2 5 r e m ; 
 
     f o n t - s i z e :   8 0 % ; 
 
     c o l o r :   # 2 8 a 7 4 5 ; 
 
 } 
 
 
 
 . v a l i d - t o o l t i p   { 
 
     p o s i t i o n :   a b s o l u t e ; 
 
     t o p :   1 0 0 % ; 
 
     z - i n d e x :   5 ; 
 
     d i s p l a y :   n o n e ; 
 
     m a x - w i d t h :   1 0 0 % ; 
 
     p a d d i n g :   0 . 2 5 r e m   0 . 5 r e m ; 
 
     m a r g i n - t o p :   . 1 r e m ; 
 
     f o n t - s i z e :   0 . 8 7 5 r e m ; 
 
     l i n e - h e i g h t :   1 . 5 ; 
 
     c o l o r :   # f f f ; 
 
     b a c k g r o u n d - c o l o r :   r g b a ( 4 0 ,   1 6 7 ,   6 9 ,   0 . 9 ) ; 
 
     b o r d e r - r a d i u s :   0 . 2 5 r e m ; 
 
 } 
 
 
 
 . w a s - v a l i d a t e d   . f o r m - c o n t r o l : v a l i d ,   . f o r m - c o n t r o l . i s - v a l i d   { 
 
     b o r d e r - c o l o r :   # 2 8 a 7 4 5 ; 
 
     p a d d i n g - r i g h t :   c a l c ( 1 . 5 e m   +   0 . 7 5 r e m ) ; 
 
     b a c k g r o u n d - i m a g e :   u r l ( " d a t a : i m a g e / s v g + x m l , % 3 c s v g   x m l n s = ' h t t p : / / w w w . w 3 . o r g / 2 0 0 0 / s v g '   v i e w B o x = ' 0   0   8   8 ' % 3 e % 3 c p a t h   f i l l = ' % 2 3 2 8 a 7 4 5 '   d = ' M 2 . 3   6 . 7 3 L . 6   4 . 5 3 c - . 4 - 1 . 0 4 . 4 6 - 1 . 4   1 . 1 - . 8 l 1 . 1   1 . 4   3 . 4 - 3 . 8 c . 6 - . 6 3   1 . 6 - . 2 7   1 . 2 . 7 l - 4   4 . 6 c - . 4 3 . 5 - . 8 . 4 - 1 . 1 . 1 z ' / % 3 e % 3 c / s v g % 3 e " ) ; 
 
     b a c k g r o u n d - r e p e a t :   n o - r e p e a t ; 
 
     b a c k g r o u n d - p o s i t i o n :   c e n t e r   r i g h t   c a l c ( 0 . 3 7 5 e m   +   0 . 1 8 7 5 r e m ) ; 
 
     b a c k g r o u n d - s i z e :   c a l c ( 0 . 7 5 e m   +   0 . 3 7 5 r e m )   c a l c ( 0 . 7 5 e m   +   0 . 3 7 5 r e m ) ; 
 
 } 
 
 
 
 . w a s - v a l i d a t e d   . f o r m - c o n t r o l : v a l i d : f o c u s ,   . f o r m - c o n t r o l . i s - v a l i d : f o c u s   { 
 
     b o r d e r - c o l o r :   # 2 8 a 7 4 5 ; 
 
     b o x - s h a d o w :   0   0   0   0 . 2 r e m   r g b a ( 4 0 ,   1 6 7 ,   6 9 ,   0 . 2 5 ) ; 
 
 } 
 
 
 
 . w a s - v a l i d a t e d   . f o r m - c o n t r o l : v a l i d   ~   . v a l i d - f e e d b a c k , 
 
 . w a s - v a l i d a t e d   . f o r m - c o n t r o l : v a l i d   ~   . v a l i d - t o o l t i p ,   . f o r m - c o n t r o l . i s - v a l i d   ~   . v a l i d - f e e d b a c k , 
 
 . f o r m - c o n t r o l . i s - v a l i d   ~   . v a l i d - t o o l t i p   { 
 
     d i s p l a y :   b l o c k ; 
 
 } 
 
 
 
 . w a s - v a l i d a t e d   t e x t a r e a . f o r m - c o n t r o l : v a l i d ,   t e x t a r e a . f o r m - c o n t r o l . i s - v a l i d   { 
 
     p a d d i n g - r i g h t :   c a l c ( 1 . 5 e m   +   0 . 7 5 r e m ) ; 
 
     b a c k g r o u n d - p o s i t i o n :   t o p   c a l c ( 0 . 3 7 5 e m   +   0 . 1 8 7 5 r e m )   r i g h t   c a l c ( 0 . 3 7 5 e m   +   0 . 1 8 7 5 r e m ) ; 
 
 } 
 
 
 
 . w a s - v a l i d a t e d   . c u s t o m - s e l e c t : v a l i d ,   . c u s t o m - s e l e c t . i s - v a l i d   { 
 
     b o r d e r - c o l o r :   # 2 8 a 7 4 5 ; 
 
     p a d d i n g - r i g h t :   c a l c ( ( 1 e m   +   0 . 7 5 r e m )   *   3   /   4   +   1 . 7 5 r e m ) ; 
 
     b a c k g r o u n d :   u r l ( " d a t a : i m a g e / s v g + x m l , % 3 c s v g   x m l n s = ' h t t p : / / w w w . w 3 . o r g / 2 0 0 0 / s v g '   v i e w B o x = ' 0   0   4   5 ' % 3 e % 3 c p a t h   f i l l = ' % 2 3 3 4 3 a 4 0 '   d = ' M 2   0 L 0   2 h 4 z m 0   5 L 0   3 h 4 z ' / % 3 e % 3 c / s v g % 3 e " )   n o - r e p e a t   r i g h t   0 . 7 5 r e m   c e n t e r / 8 p x   1 0 p x ,   u r l ( " d a t a : i m a g e / s v g + x m l , % 3 c s v g   x m l n s = ' h t t p : / / w w w . w 3 . o r g / 2 0 0 0 / s v g '   v i e w B o x = ' 0   0   8   8 ' % 3 e % 3 c p a t h   f i l l = ' % 2 3 2 8 a 7 4 5 '   d = ' M 2 . 3   6 . 7 3 L . 6   4 . 5 3 c - . 4 - 1 . 0 4 . 4 6 - 1 . 4   1 . 1 - . 8 l 1 . 1   1 . 4   3 . 4 - 3 . 8 c . 6 - . 6 3   1 . 6 - . 2 7   1 . 2 . 7 l - 4   4 . 6 c - . 4 3 . 5 - . 8 . 4 - 1 . 1 . 1 z ' / % 3 e % 3 c / s v g % 3 e " )   # f f f   n o - r e p e a t   c e n t e r   r i g h t   1 . 7 5 r e m / c a l c ( 0 . 7 5 e m   +   0 . 3 7 5 r e m )   c a l c ( 0 . 7 5 e m   +   0 . 3 7 5 r e m ) ; 
 
 } 
 
 
 
 . w a s - v a l i d a t e d   . c u s t o m - s e l e c t : v a l i d : f o c u s ,   . c u s t o m - s e l e c t . i s - v a l i d : f o c u s   { 
 
     b o r d e r - c o l o r :   # 2 8 a 7 4 5 ; 
 
     b o x - s h a d o w :   0   0   0   0 . 2 r e m   r g b a ( 4 0 ,   1 6 7 ,   6 9 ,   0 . 2 5 ) ; 
 
 } 
 
 
 
 . w a s - v a l i d a t e d   . c u s t o m - s e l e c t : v a l i d   ~   . v a l i d - f e e d b a c k , 
 
 . w a s - v a l i d a t e d   . c u s t o m - s e l e c t : v a l i d   ~   . v a l i d - t o o l t i p ,   . c u s t o m - s e l e c t . i s - v a l i d   ~   . v a l i d - f e e d b a c k , 
 
 . c u s t o m - s e l e c t . i s - v a l i d   ~   . v a l i d - t o o l t i p   { 
 
     d i s p l a y :   b l o c k ; 
 
 } 
 
 
 
 . w a s - v a l i d a t e d   . f o r m - c o n t r o l - f i l e : v a l i d   ~   . v a l i d - f e e d b a c k , 
 
 . w a s - v a l i d a t e d   . f o r m - c o n t r o l - f i l e : v a l i d   ~   . v a l i d - t o o l t i p ,   . f o r m - c o n t r o l - f i l e . i s - v a l i d   ~   . v a l i d - f e e d b a c k , 
 
 . f o r m - c o n t r o l - f i l e . i s - v a l i d   ~   . v a l i d - t o o l t i p   { 
 
     d i s p l a y :   b l o c k ; 
 
 } 
 
 
 
 . w a s - v a l i d a t e d   . f o r m - c h e c k - i n p u t : v a l i d   ~   . f o r m - c h e c k - l a b e l ,   . f o r m - c h e c k - i n p u t . i s - v a l i d   ~   . f o r m - c h e c k - l a b e l   { 
 
     c o l o r :   # 2 8 a 7 4 5 ; 
 
 } 
 
 
 
 . w a s - v a l i d a t e d   . f o r m - c h e c k - i n p u t : v a l i d   ~   . v a l i d - f e e d b a c k , 
 
 . w a s - v a l i d a t e d   . f o r m - c h e c k - i n p u t : v a l i d   ~   . v a l i d - t o o l t i p ,   . f o r m - c h e c k - i n p u t . i s - v a l i d   ~   . v a l i d - f e e d b a c k , 
 
 . f o r m - c h e c k - i n p u t . i s - v a l i d   ~   . v a l i d - t o o l t i p   { 
 
     d i s p l a y :   b l o c k ; 
 
 } 
 
 
 
 . w a s - v a l i d a t e d   . c u s t o m - c o n t r o l - i n p u t : v a l i d   ~   . c u s t o m - c o n t r o l - l a b e l ,   . c u s t o m - c o n t r o l - i n p u t . i s - v a l i d   ~   . c u s t o m - c o n t r o l - l a b e l   { 
 
     c o l o r :   # 2 8 a 7 4 5 ; 
 
 } 
 
 
 
 . w a s - v a l i d a t e d   . c u s t o m - c o n t r o l - i n p u t : v a l i d   ~   . c u s t o m - c o n t r o l - l a b e l : : b e f o r e ,   . c u s t o m - c o n t r o l - i n p u t . i s - v a l i d   ~   . c u s t o m - c o n t r o l - l a b e l : : b e f o r e   { 
 
     b o r d e r - c o l o r :   # 2 8 a 7 4 5 ; 
 
 } 
 
 
 
 . w a s - v a l i d a t e d   . c u s t o m - c o n t r o l - i n p u t : v a l i d   ~   . v a l i d - f e e d b a c k , 
 
 . w a s - v a l i d a t e d   . c u s t o m - c o n t r o l - i n p u t : v a l i d   ~   . v a l i d - t o o l t i p ,   . c u s t o m - c o n t r o l - i n p u t . i s - v a l i d   ~   . v a l i d - f e e d b a c k , 
 
 . c u s t o m - c o n t r o l - i n p u t . i s - v a l i d   ~   . v a l i d - t o o l t i p   { 
 
     d i s p l a y :   b l o c k ; 
 
 } 
 
 
 
 . w a s - v a l i d a t e d   . c u s t o m - c o n t r o l - i n p u t : v a l i d : c h e c k e d   ~   . c u s t o m - c o n t r o l - l a b e l : : b e f o r e ,   . c u s t o m - c o n t r o l - i n p u t . i s - v a l i d : c h e c k e d   ~   . c u s t o m - c o n t r o l - l a b e l : : b e f o r e   { 
 
     b o r d e r - c o l o r :   # 3 4 c e 5 7 ; 
 
     b a c k g r o u n d - c o l o r :   # 3 4 c e 5 7 ; 
 
 } 
 
 
 
 . w a s - v a l i d a t e d   . c u s t o m - c o n t r o l - i n p u t : v a l i d : f o c u s   ~   . c u s t o m - c o n t r o l - l a b e l : : b e f o r e ,   . c u s t o m - c o n t r o l - i n p u t . i s - v a l i d : f o c u s   ~   . c u s t o m - c o n t r o l - l a b e l : : b e f o r e   { 
 
     b o x - s h a d o w :   0   0   0   0 . 2 r e m   r g b a ( 4 0 ,   1 6 7 ,   6 9 ,   0 . 2 5 ) ; 
 
 } 
 
 
 
 . w a s - v a l i d a t e d   . c u s t o m - c o n t r o l - i n p u t : v a l i d : f o c u s : n o t ( : c h e c k e d )   ~   . c u s t o m - c o n t r o l - l a b e l : : b e f o r e ,   . c u s t o m - c o n t r o l - i n p u t . i s - v a l i d : f o c u s : n o t ( : c h e c k e d )   ~   . c u s t o m - c o n t r o l - l a b e l : : b e f o r e   { 
 
     b o r d e r - c o l o r :   # 2 8 a 7 4 5 ; 
 
 } 
 
 
 
 . w a s - v a l i d a t e d   . c u s t o m - f i l e - i n p u t : v a l i d   ~   . c u s t o m - f i l e - l a b e l ,   . c u s t o m - f i l e - i n p u t . i s - v a l i d   ~   . c u s t o m - f i l e - l a b e l   { 
 
     b o r d e r - c o l o r :   # 2 8 a 7 4 5 ; 
 
 } 
 
 
 
 . w a s - v a l i d a t e d   . c u s t o m - f i l e - i n p u t : v a l i d   ~   . v a l i d - f e e d b a c k , 
 
 . w a s - v a l i d a t e d   . c u s t o m - f i l e - i n p u t : v a l i d   ~   . v a l i d - t o o l t i p ,   . c u s t o m - f i l e - i n p u t . i s - v a l i d   ~   . v a l i d - f e e d b a c k , 
 
 . c u s t o m - f i l e - i n p u t . i s - v a l i d   ~   . v a l i d - t o o l t i p   { 
 
     d i s p l a y :   b l o c k ; 
 
 } 
 
 
 
 . w a s - v a l i d a t e d   . c u s t o m - f i l e - i n p u t : v a l i d : f o c u s   ~   . c u s t o m - f i l e - l a b e l ,   . c u s t o m - f i l e - i n p u t . i s - v a l i d : f o c u s   ~   . c u s t o m - f i l e - l a b e l   { 
 
     b o r d e r - c o l o r :   # 2 8 a 7 4 5 ; 
 
     b o x - s h a d o w :   0   0   0   0 . 2 r e m   r g b a ( 4 0 ,   1 6 7 ,   6 9 ,   0 . 2 5 ) ; 
 
 } 
 
 
 
 . i n v a l i d - f e e d b a c k   { 
 
     d i s p l a y :   n o n e ; 
 
     w i d t h :   1 0 0 % ; 
 
     m a r g i n - t o p :   0 . 2 5 r e m ; 
 
     f o n t - s i z e :   8 0 % ; 
 
     c o l o r :   # d c 3 5 4 5 ; 
 
 } 
 
 
 
 . i n v a l i d - t o o l t i p   { 
 
     p o s i t i o n :   a b s o l u t e ; 
 
     t o p :   1 0 0 % ; 
 
     z - i n d e x :   5 ; 
 
     d i s p l a y :   n o n e ; 
 
     m a x - w i d t h :   1 0 0 % ; 
 
     p a d d i n g :   0 . 2 5 r e m   0 . 5 r e m ; 
 
     m a r g i n - t o p :   . 1 r e m ; 
 
     f o n t - s i z e :   0 . 8 7 5 r e m ; 
 
     l i n e - h e i g h t :   1 . 5 ; 
 
     c o l o r :   # f f f ; 
 
     b a c k g r o u n d - c o l o r :   r g b a ( 2 2 0 ,   5 3 ,   6 9 ,   0 . 9 ) ; 
 
     b o r d e r - r a d i u s :   0 . 2 5 r e m ; 
 
 } 
 
 
 
 . w a s - v a l i d a t e d   . f o r m - c o n t r o l : i n v a l i d ,   . f o r m - c o n t r o l . i s - i n v a l i d   { 
 
     b o r d e r - c o l o r :   # d c 3 5 4 5 ; 
 
     p a d d i n g - r i g h t :   c a l c ( 1 . 5 e m   +   0 . 7 5 r e m ) ; 
 
     b a c k g r o u n d - i m a g e :   u r l ( " d a t a : i m a g e / s v g + x m l , % 3 c s v g   x m l n s = ' h t t p : / / w w w . w 3 . o r g / 2 0 0 0 / s v g '   f i l l = ' % 2 3 d c 3 5 4 5 '   v i e w B o x = ' - 2   - 2   7   7 ' % 3 e % 3 c p a t h   s t r o k e = ' % 2 3 d c 3 5 4 5 '   d = ' M 0   0 l 3   3 m 0 - 3 L 0   3 ' / % 3 e % 3 c c i r c l e   r = ' . 5 ' / % 3 e % 3 c c i r c l e   c x = ' 3 '   r = ' . 5 ' / % 3 e % 3 c c i r c l e   c y = ' 3 '   r = ' . 5 ' / % 3 e % 3 c c i r c l e   c x = ' 3 '   c y = ' 3 '   r = ' . 5 ' / % 3 e % 3 c / s v g % 3 E " ) ; 
 
     b a c k g r o u n d - r e p e a t :   n o - r e p e a t ; 
 
     b a c k g r o u n d - p o s i t i o n :   c e n t e r   r i g h t   c a l c ( 0 . 3 7 5 e m   +   0 . 1 8 7 5 r e m ) ; 
 
     b a c k g r o u n d - s i z e :   c a l c ( 0 . 7 5 e m   +   0 . 3 7 5 r e m )   c a l c ( 0 . 7 5 e m   +   0 . 3 7 5 r e m ) ; 
 
 } 
 
 
 
 . w a s - v a l i d a t e d   . f o r m - c o n t r o l : i n v a l i d : f o c u s ,   . f o r m - c o n t r o l . i s - i n v a l i d : f o c u s   { 
 
     b o r d e r - c o l o r :   # d c 3 5 4 5 ; 
 
     b o x - s h a d o w :   0   0   0   0 . 2 r e m   r g b a ( 2 2 0 ,   5 3 ,   6 9 ,   0 . 2 5 ) ; 
 
 } 
 
 
 
 . w a s - v a l i d a t e d   . f o r m - c o n t r o l : i n v a l i d   ~   . i n v a l i d - f e e d b a c k , 
 
 . w a s - v a l i d a t e d   . f o r m - c o n t r o l : i n v a l i d   ~   . i n v a l i d - t o o l t i p ,   . f o r m - c o n t r o l . i s - i n v a l i d   ~   . i n v a l i d - f e e d b a c k , 
 
 . f o r m - c o n t r o l . i s - i n v a l i d   ~   . i n v a l i d - t o o l t i p   { 
 
     d i s p l a y :   b l o c k ; 
 
 } 
 
 
 
 . w a s - v a l i d a t e d   t e x t a r e a . f o r m - c o n t r o l : i n v a l i d ,   t e x t a r e a . f o r m - c o n t r o l . i s - i n v a l i d   { 
 
     p a d d i n g - r i g h t :   c a l c ( 1 . 5 e m   +   0 . 7 5 r e m ) ; 
 
     b a c k g r o u n d - p o s i t i o n :   t o p   c a l c ( 0 . 3 7 5 e m   +   0 . 1 8 7 5 r e m )   r i g h t   c a l c ( 0 . 3 7 5 e m   +   0 . 1 8 7 5 r e m ) ; 
 
 } 
 
 
 
 . w a s - v a l i d a t e d   . c u s t o m - s e l e c t : i n v a l i d ,   . c u s t o m - s e l e c t . i s - i n v a l i d   { 
 
     b o r d e r - c o l o r :   # d c 3 5 4 5 ; 
 
     p a d d i n g - r i g h t :   c a l c ( ( 1 e m   +   0 . 7 5 r e m )   *   3   /   4   +   1 . 7 5 r e m ) ; 
 
     b a c k g r o u n d :   u r l ( " d a t a : i m a g e / s v g + x m l , % 3 c s v g   x m l n s = ' h t t p : / / w w w . w 3 . o r g / 2 0 0 0 / s v g '   v i e w B o x = ' 0   0   4   5 ' % 3 e % 3 c p a t h   f i l l = ' % 2 3 3 4 3 a 4 0 '   d = ' M 2   0 L 0   2 h 4 z m 0   5 L 0   3 h 4 z ' / % 3 e % 3 c / s v g % 3 e " )   n o - r e p e a t   r i g h t   0 . 7 5 r e m   c e n t e r / 8 p x   1 0 p x ,   u r l ( " d a t a : i m a g e / s v g + x m l , % 3 c s v g   x m l n s = ' h t t p : / / w w w . w 3 . o r g / 2 0 0 0 / s v g '   f i l l = ' % 2 3 d c 3 5 4 5 '   v i e w B o x = ' - 2   - 2   7   7 ' % 3 e % 3 c p a t h   s t r o k e = ' % 2 3 d c 3 5 4 5 '   d = ' M 0   0 l 3   3 m 0 - 3 L 0   3 ' / % 3 e % 3 c c i r c l e   r = ' . 5 ' / % 3 e % 3 c c i r c l e   c x = ' 3 '   r = ' . 5 ' / % 3 e % 3 c c i r c l e   c y = ' 3 '   r = ' . 5 ' / % 3 e % 3 c c i r c l e   c x = ' 3 '   c y = ' 3 '   r = ' . 5 ' / % 3 e % 3 c / s v g % 3 E " )   # f f f   n o - r e p e a t   c e n t e r   r i g h t   1 . 7 5 r e m / c a l c ( 0 . 7 5 e m   +   0 . 3 7 5 r e m )   c a l c ( 0 . 7 5 e m   +   0 . 3 7 5 r e m ) ; 
 
 } 
 
 
 
 . w a s - v a l i d a t e d   . c u s t o m - s e l e c t : i n v a l i d : f o c u s ,   . c u s t o m - s e l e c t . i s - i n v a l i d : f o c u s   { 
 
     b o r d e r - c o l o r :   # d c 3 5 4 5 ; 
 
     b o x - s h a d o w :   0   0   0   0 . 2 r e m   r g b a ( 2 2 0 ,   5 3 ,   6 9 ,   0 . 2 5 ) ; 
 
 } 
 
 
 
 . w a s - v a l i d a t e d   . c u s t o m - s e l e c t : i n v a l i d   ~   . i n v a l i d - f e e d b a c k , 
 
 . w a s - v a l i d a t e d   . c u s t o m - s e l e c t : i n v a l i d   ~   . i n v a l i d - t o o l t i p ,   . c u s t o m - s e l e c t . i s - i n v a l i d   ~   . i n v a l i d - f e e d b a c k , 
 
 . c u s t o m - s e l e c t . i s - i n v a l i d   ~   . i n v a l i d - t o o l t i p   { 
 
     d i s p l a y :   b l o c k ; 
 
 } 
 
 
 
 . w a s - v a l i d a t e d   . f o r m - c o n t r o l - f i l e : i n v a l i d   ~   . i n v a l i d - f e e d b a c k , 
 
 . w a s - v a l i d a t e d   . f o r m - c o n t r o l - f i l e : i n v a l i d   ~   . i n v a l i d - t o o l t i p ,   . f o r m - c o n t r o l - f i l e . i s - i n v a l i d   ~   . i n v a l i d - f e e d b a c k , 
 
 . f o r m - c o n t r o l - f i l e . i s - i n v a l i d   ~   . i n v a l i d - t o o l t i p   { 
 
     d i s p l a y :   b l o c k ; 
 
 } 
 
 
 
 . w a s - v a l i d a t e d   . f o r m - c h e c k - i n p u t : i n v a l i d   ~   . f o r m - c h e c k - l a b e l ,   . f o r m - c h e c k - i n p u t . i s - i n v a l i d   ~   . f o r m - c h e c k - l a b e l   { 
 
     c o l o r :   # d c 3 5 4 5 ; 
 
 } 
 
 
 
 . w a s - v a l i d a t e d   . f o r m - c h e c k - i n p u t : i n v a l i d   ~   . i n v a l i d - f e e d b a c k , 
 
 . w a s - v a l i d a t e d   . f o r m - c h e c k - i n p u t : i n v a l i d   ~   . i n v a l i d - t o o l t i p ,   . f o r m - c h e c k - i n p u t . i s - i n v a l i d   ~   . i n v a l i d - f e e d b a c k , 
 
 . f o r m - c h e c k - i n p u t . i s - i n v a l i d   ~   . i n v a l i d - t o o l t i p   { 
 
     d i s p l a y :   b l o c k ; 
 
 } 
 
 
 
 . w a s - v a l i d a t e d   . c u s t o m - c o n t r o l - i n p u t : i n v a l i d   ~   . c u s t o m - c o n t r o l - l a b e l ,   . c u s t o m - c o n t r o l - i n p u t . i s - i n v a l i d   ~   . c u s t o m - c o n t r o l - l a b e l   { 
 
     c o l o r :   # d c 3 5 4 5 ; 
 
 } 
 
 
 
 . w a s - v a l i d a t e d   . c u s t o m - c o n t r o l - i n p u t : i n v a l i d   ~   . c u s t o m - c o n t r o l - l a b e l : : b e f o r e ,   . c u s t o m - c o n t r o l - i n p u t . i s - i n v a l i d   ~   . c u s t o m - c o n t r o l - l a b e l : : b e f o r e   { 
 
     b o r d e r - c o l o r :   # d c 3 5 4 5 ; 
 
 } 
 
 
 
 . w a s - v a l i d a t e d   . c u s t o m - c o n t r o l - i n p u t : i n v a l i d   ~   . i n v a l i d - f e e d b a c k , 
 
 . w a s - v a l i d a t e d   . c u s t o m - c o n t r o l - i n p u t : i n v a l i d   ~   . i n v a l i d - t o o l t i p ,   . c u s t o m - c o n t r o l - i n p u t . i s - i n v a l i d   ~   . i n v a l i d - f e e d b a c k , 
 
 . c u s t o m - c o n t r o l - i n p u t . i s - i n v a l i d   ~   . i n v a l i d - t o o l t i p   { 
 
     d i s p l a y :   b l o c k ; 
 
 } 
 
 
 
 . w a s - v a l i d a t e d   . c u s t o m - c o n t r o l - i n p u t : i n v a l i d : c h e c k e d   ~   . c u s t o m - c o n t r o l - l a b e l : : b e f o r e ,   . c u s t o m - c o n t r o l - i n p u t . i s - i n v a l i d : c h e c k e d   ~   . c u s t o m - c o n t r o l - l a b e l : : b e f o r e   { 
 
     b o r d e r - c o l o r :   # e 4 6 0 6 d ; 
 
     b a c k g r o u n d - c o l o r :   # e 4 6 0 6 d ; 
 
 } 
 
 
 
 . w a s - v a l i d a t e d   . c u s t o m - c o n t r o l - i n p u t : i n v a l i d : f o c u s   ~   . c u s t o m - c o n t r o l - l a b e l : : b e f o r e ,   . c u s t o m - c o n t r o l - i n p u t . i s - i n v a l i d : f o c u s   ~   . c u s t o m - c o n t r o l - l a b e l : : b e f o r e   { 
 
     b o x - s h a d o w :   0   0   0   0 . 2 r e m   r g b a ( 2 2 0 ,   5 3 ,   6 9 ,   0 . 2 5 ) ; 
 
 } 
 
 
 
 . w a s - v a l i d a t e d   . c u s t o m - c o n t r o l - i n p u t : i n v a l i d : f o c u s : n o t ( : c h e c k e d )   ~   . c u s t o m - c o n t r o l - l a b e l : : b e f o r e ,   . c u s t o m - c o n t r o l - i n p u t . i s - i n v a l i d : f o c u s : n o t ( : c h e c k e d )   ~   . c u s t o m - c o n t r o l - l a b e l : : b e f o r e   { 
 
     b o r d e r - c o l o r :   # d c 3 5 4 5 ; 
 
 } 
 
 
 
 . w a s - v a l i d a t e d   . c u s t o m - f i l e - i n p u t : i n v a l i d   ~   . c u s t o m - f i l e - l a b e l ,   . c u s t o m - f i l e - i n p u t . i s - i n v a l i d   ~   . c u s t o m - f i l e - l a b e l   { 
 
     b o r d e r - c o l o r :   # d c 3 5 4 5 ; 
 
 } 
 
 
 
 . w a s - v a l i d a t e d   . c u s t o m - f i l e - i n p u t : i n v a l i d   ~   . i n v a l i d - f e e d b a c k , 
 
 . w a s - v a l i d a t e d   . c u s t o m - f i l e - i n p u t : i n v a l i d   ~   . i n v a l i d - t o o l t i p ,   . c u s t o m - f i l e - i n p u t . i s - i n v a l i d   ~   . i n v a l i d - f e e d b a c k , 
 
 . c u s t o m - f i l e - i n p u t . i s - i n v a l i d   ~   . i n v a l i d - t o o l t i p   { 
 
     d i s p l a y :   b l o c k ; 
 
 } 
 
 
 
 . w a s - v a l i d a t e d   . c u s t o m - f i l e - i n p u t : i n v a l i d : f o c u s   ~   . c u s t o m - f i l e - l a b e l ,   . c u s t o m - f i l e - i n p u t . i s - i n v a l i d : f o c u s   ~   . c u s t o m - f i l e - l a b e l   { 
 
     b o r d e r - c o l o r :   # d c 3 5 4 5 ; 
 
     b o x - s h a d o w :   0   0   0   0 . 2 r e m   r g b a ( 2 2 0 ,   5 3 ,   6 9 ,   0 . 2 5 ) ; 
 
 } 
 
 
 
 . f o r m - i n l i n e   { 
 
     d i s p l a y :   - m s - f l e x b o x ; 
 
     d i s p l a y :   f l e x ; 
 
     - m s - f l e x - f l o w :   r o w   w r a p ; 
 
     f l e x - f l o w :   r o w   w r a p ; 
 
     - m s - f l e x - a l i g n :   c e n t e r ; 
 
     a l i g n - i t e m s :   c e n t e r ; 
 
 } 
 
 
 
 . f o r m - i n l i n e   . f o r m - c h e c k   { 
 
     w i d t h :   1 0 0 % ; 
 
 } 
 
 
 
 @ m e d i a   ( m i n - w i d t h :   5 7 6 p x )   { 
 
     . f o r m - i n l i n e   l a b e l   { 
 
         d i s p l a y :   - m s - f l e x b o x ; 
 
         d i s p l a y :   f l e x ; 
 
         - m s - f l e x - a l i g n :   c e n t e r ; 
 
         a l i g n - i t e m s :   c e n t e r ; 
 
         - m s - f l e x - p a c k :   c e n t e r ; 
 
         j u s t i f y - c o n t e n t :   c e n t e r ; 
 
         m a r g i n - b o t t o m :   0 ; 
 
     } 
 
     . f o r m - i n l i n e   . f o r m - g r o u p   { 
 
         d i s p l a y :   - m s - f l e x b o x ; 
 
         d i s p l a y :   f l e x ; 
 
         - m s - f l e x :   0   0   a u t o ; 
 
         f l e x :   0   0   a u t o ; 
 
         - m s - f l e x - f l o w :   r o w   w r a p ; 
 
         f l e x - f l o w :   r o w   w r a p ; 
 
         - m s - f l e x - a l i g n :   c e n t e r ; 
 
         a l i g n - i t e m s :   c e n t e r ; 
 
         m a r g i n - b o t t o m :   0 ; 
 
     } 
 
     . f o r m - i n l i n e   . f o r m - c o n t r o l   { 
 
         d i s p l a y :   i n l i n e - b l o c k ; 
 
         w i d t h :   a u t o ; 
 
         v e r t i c a l - a l i g n :   m i d d l e ; 
 
     } 
 
     . f o r m - i n l i n e   . f o r m - c o n t r o l - p l a i n t e x t   { 
 
         d i s p l a y :   i n l i n e - b l o c k ; 
 
     } 
 
     . f o r m - i n l i n e   . i n p u t - g r o u p , 
 
     . f o r m - i n l i n e   . c u s t o m - s e l e c t   { 
 
         w i d t h :   a u t o ; 
 
     } 
 
     . f o r m - i n l i n e   . f o r m - c h e c k   { 
 
         d i s p l a y :   - m s - f l e x b o x ; 
 
         d i s p l a y :   f l e x ; 
 
         - m s - f l e x - a l i g n :   c e n t e r ; 
 
         a l i g n - i t e m s :   c e n t e r ; 
 
         - m s - f l e x - p a c k :   c e n t e r ; 
 
         j u s t i f y - c o n t e n t :   c e n t e r ; 
 
         w i d t h :   a u t o ; 
 
         p a d d i n g - l e f t :   0 ; 
 
     } 
 
     . f o r m - i n l i n e   . f o r m - c h e c k - i n p u t   { 
 
         p o s i t i o n :   r e l a t i v e ; 
 
         - m s - f l e x - n e g a t i v e :   0 ; 
 
         f l e x - s h r i n k :   0 ; 
 
         m a r g i n - t o p :   0 ; 
 
         m a r g i n - r i g h t :   0 . 2 5 r e m ; 
 
         m a r g i n - l e f t :   0 ; 
 
     } 
 
     . f o r m - i n l i n e   . c u s t o m - c o n t r o l   { 
 
         - m s - f l e x - a l i g n :   c e n t e r ; 
 
         a l i g n - i t e m s :   c e n t e r ; 
 
         - m s - f l e x - p a c k :   c e n t e r ; 
 
         j u s t i f y - c o n t e n t :   c e n t e r ; 
 
     } 
 
     . f o r m - i n l i n e   . c u s t o m - c o n t r o l - l a b e l   { 
 
         m a r g i n - b o t t o m :   0 ; 
 
     } 
 
 } 
 
 
 
 . b t n   { 
 
     d i s p l a y :   i n l i n e - b l o c k ; 
 
     f o n t - w e i g h t :   4 0 0 ; 
 
     c o l o r :   # 2 1 2 5 2 9 ; 
 
     t e x t - a l i g n :   c e n t e r ; 
 
     v e r t i c a l - a l i g n :   m i d d l e ; 
 
     - w e b k i t - u s e r - s e l e c t :   n o n e ; 
 
     - m o z - u s e r - s e l e c t :   n o n e ; 
 
     - m s - u s e r - s e l e c t :   n o n e ; 
 
     u s e r - s e l e c t :   n o n e ; 
 
     b a c k g r o u n d - c o l o r :   t r a n s p a r e n t ; 
 
     b o r d e r :   1 p x   s o l i d   t r a n s p a r e n t ; 
 
     p a d d i n g :   0 . 3 7 5 r e m   0 . 7 5 r e m ; 
 
     f o n t - s i z e :   1 r e m ; 
 
     l i n e - h e i g h t :   1 . 5 ; 
 
     b o r d e r - r a d i u s :   0 . 2 5 r e m ; 
 
     t r a n s i t i o n :   c o l o r   0 . 1 5 s   e a s e - i n - o u t ,   b a c k g r o u n d - c o l o r   0 . 1 5 s   e a s e - i n - o u t ,   b o r d e r - c o l o r   0 . 1 5 s   e a s e - i n - o u t ,   b o x - s h a d o w   0 . 1 5 s   e a s e - i n - o u t ; 
 
 } 
 
 
 
 @ m e d i a   ( p r e f e r s - r e d u c e d - m o t i o n :   r e d u c e )   { 
 
     . b t n   { 
 
         t r a n s i t i o n :   n o n e ; 
 
     } 
 
 } 
 
 
 
 . b t n : h o v e r   { 
 
     c o l o r :   # 2 1 2 5 2 9 ; 
 
     t e x t - d e c o r a t i o n :   n o n e ; 
 
 } 
 
 
 
 . b t n : f o c u s ,   . b t n . f o c u s   { 
 
     o u t l i n e :   0 ; 
 
     b o x - s h a d o w :   0   0   0   0 . 2 r e m   r g b a ( 0 ,   1 2 3 ,   2 5 5 ,   0 . 2 5 ) ; 
 
 } 
 
 
 
 . b t n . d i s a b l e d ,   . b t n : d i s a b l e d   { 
 
     o p a c i t y :   0 . 6 5 ; 
 
 } 
 
 
 
 a . b t n . d i s a b l e d , 
 
 f i e l d s e t : d i s a b l e d   a . b t n   { 
 
     p o i n t e r - e v e n t s :   n o n e ; 
 
 } 
 
 
 
 . b t n - p r i m a r y   { 
 
     c o l o r :   # f f f ; 
 
     b a c k g r o u n d - c o l o r :   # 0 0 7 b f f ; 
 
     b o r d e r - c o l o r :   # 0 0 7 b f f ; 
 
 } 
 
 
 
 . b t n - p r i m a r y : h o v e r   { 
 
     c o l o r :   # f f f ; 
 
     b a c k g r o u n d - c o l o r :   # 0 0 6 9 d 9 ; 
 
     b o r d e r - c o l o r :   # 0 0 6 2 c c ; 
 
 } 
 
 
 
 . b t n - p r i m a r y : f o c u s ,   . b t n - p r i m a r y . f o c u s   { 
 
     b o x - s h a d o w :   0   0   0   0 . 2 r e m   r g b a ( 3 8 ,   1 4 3 ,   2 5 5 ,   0 . 5 ) ; 
 
 } 
 
 
 
 . b t n - p r i m a r y . d i s a b l e d ,   . b t n - p r i m a r y : d i s a b l e d   { 
 
     c o l o r :   # f f f ; 
 
     b a c k g r o u n d - c o l o r :   # 0 0 7 b f f ; 
 
     b o r d e r - c o l o r :   # 0 0 7 b f f ; 
 
 } 
 
 
 
 . b t n - p r i m a r y : n o t ( : d i s a b l e d ) : n o t ( . d i s a b l e d ) : a c t i v e ,   . b t n - p r i m a r y : n o t ( : d i s a b l e d ) : n o t ( . d i s a b l e d ) . a c t i v e , 
 
 . s h o w   >   . b t n - p r i m a r y . d r o p d o w n - t o g g l e   { 
 
     c o l o r :   # f f f ; 
 
     b a c k g r o u n d - c o l o r :   # 0 0 6 2 c c ; 
 
     b o r d e r - c o l o r :   # 0 0 5 c b f ; 
 
 } 
 
 
 
 . b t n - p r i m a r y : n o t ( : d i s a b l e d ) : n o t ( . d i s a b l e d ) : a c t i v e : f o c u s ,   . b t n - p r i m a r y : n o t ( : d i s a b l e d ) : n o t ( . d i s a b l e d ) . a c t i v e : f o c u s , 
 
 . s h o w   >   . b t n - p r i m a r y . d r o p d o w n - t o g g l e : f o c u s   { 
 
     b o x - s h a d o w :   0   0   0   0 . 2 r e m   r g b a ( 3 8 ,   1 4 3 ,   2 5 5 ,   0 . 5 ) ; 
 
 } 
 
 
 
 . b t n - s e c o n d a r y   { 
 
     c o l o r :   # f f f ; 
 
     b a c k g r o u n d - c o l o r :   # 6 c 7 5 7 d ; 
 
     b o r d e r - c o l o r :   # 6 c 7 5 7 d ; 
 
 } 
 
 
 
 . b t n - s e c o n d a r y : h o v e r   { 
 
     c o l o r :   # f f f ; 
 
     b a c k g r o u n d - c o l o r :   # 5 a 6 2 6 8 ; 
 
     b o r d e r - c o l o r :   # 5 4 5 b 6 2 ; 
 
 } 
 
 
 
 . b t n - s e c o n d a r y : f o c u s ,   . b t n - s e c o n d a r y . f o c u s   { 
 
     b o x - s h a d o w :   0   0   0   0 . 2 r e m   r g b a ( 1 3 0 ,   1 3 8 ,   1 4 5 ,   0 . 5 ) ; 
 
 } 
 
 
 
 . b t n - s e c o n d a r y . d i s a b l e d ,   . b t n - s e c o n d a r y : d i s a b l e d   { 
 
     c o l o r :   # f f f ; 
 
     b a c k g r o u n d - c o l o r :   # 6 c 7 5 7 d ; 
 
     b o r d e r - c o l o r :   # 6 c 7 5 7 d ; 
 
 } 
 
 
 
 . b t n - s e c o n d a r y : n o t ( : d i s a b l e d ) : n o t ( . d i s a b l e d ) : a c t i v e ,   . b t n - s e c o n d a r y : n o t ( : d i s a b l e d ) : n o t ( . d i s a b l e d ) . a c t i v e , 
 
 . s h o w   >   . b t n - s e c o n d a r y . d r o p d o w n - t o g g l e   { 
 
     c o l o r :   # f f f ; 
 
     b a c k g r o u n d - c o l o r :   # 5 4 5 b 6 2 ; 
 
     b o r d e r - c o l o r :   # 4 e 5 5 5 b ; 
 
 } 
 
 
 
 . b t n - s e c o n d a r y : n o t ( : d i s a b l e d ) : n o t ( . d i s a b l e d ) : a c t i v e : f o c u s ,   . b t n - s e c o n d a r y : n o t ( : d i s a b l e d ) : n o t ( . d i s a b l e d ) . a c t i v e : f o c u s , 
 
 . s h o w   >   . b t n - s e c o n d a r y . d r o p d o w n - t o g g l e : f o c u s   { 
 
     b o x - s h a d o w :   0   0   0   0 . 2 r e m   r g b a ( 1 3 0 ,   1 3 8 ,   1 4 5 ,   0 . 5 ) ; 
 
 } 
 
 
 
 . b t n - s u c c e s s   { 
 
     c o l o r :   # f f f ; 
 
     b a c k g r o u n d - c o l o r :   # 2 8 a 7 4 5 ; 
 
     b o r d e r - c o l o r :   # 2 8 a 7 4 5 ; 
 
 } 
 
 
 
 . b t n - s u c c e s s : h o v e r   { 
 
     c o l o r :   # f f f ; 
 
     b a c k g r o u n d - c o l o r :   # 2 1 8 8 3 8 ; 
 
     b o r d e r - c o l o r :   # 1 e 7 e 3 4 ; 
 
 } 
 
 
 
 . b t n - s u c c e s s : f o c u s ,   . b t n - s u c c e s s . f o c u s   { 
 
     b o x - s h a d o w :   0   0   0   0 . 2 r e m   r g b a ( 7 2 ,   1 8 0 ,   9 7 ,   0 . 5 ) ; 
 
 } 
 
 
 
 . b t n - s u c c e s s . d i s a b l e d ,   . b t n - s u c c e s s : d i s a b l e d   { 
 
     c o l o r :   # f f f ; 
 
     b a c k g r o u n d - c o l o r :   # 2 8 a 7 4 5 ; 
 
     b o r d e r - c o l o r :   # 2 8 a 7 4 5 ; 
 
 } 
 
 
 
 . b t n - s u c c e s s : n o t ( : d i s a b l e d ) : n o t ( . d i s a b l e d ) : a c t i v e ,   . b t n - s u c c e s s : n o t ( : d i s a b l e d ) : n o t ( . d i s a b l e d ) . a c t i v e , 
 
 . s h o w   >   . b t n - s u c c e s s . d r o p d o w n - t o g g l e   { 
 
     c o l o r :   # f f f ; 
 
     b a c k g r o u n d - c o l o r :   # 1 e 7 e 3 4 ; 
 
     b o r d e r - c o l o r :   # 1 c 7 4 3 0 ; 
 
 } 
 
 
 
 . b t n - s u c c e s s : n o t ( : d i s a b l e d ) : n o t ( . d i s a b l e d ) : a c t i v e : f o c u s ,   . b t n - s u c c e s s : n o t ( : d i s a b l e d ) : n o t ( . d i s a b l e d ) . a c t i v e : f o c u s , 
 
 . s h o w   >   . b t n - s u c c e s s . d r o p d o w n - t o g g l e : f o c u s   { 
 
     b o x - s h a d o w :   0   0   0   0 . 2 r e m   r g b a ( 7 2 ,   1 8 0 ,   9 7 ,   0 . 5 ) ; 
 
 } 
 
 
 
 . b t n - i n f o   { 
 
     c o l o r :   # f f f ; 
 
     b a c k g r o u n d - c o l o r :   # 1 7 a 2 b 8 ; 
 
     b o r d e r - c o l o r :   # 1 7 a 2 b 8 ; 
 
 } 
 
 
 
 . b t n - i n f o : h o v e r   { 
 
     c o l o r :   # f f f ; 
 
     b a c k g r o u n d - c o l o r :   # 1 3 8 4 9 6 ; 
 
     b o r d e r - c o l o r :   # 1 1 7 a 8 b ; 
 
 } 
 
 
 
 . b t n - i n f o : f o c u s ,   . b t n - i n f o . f o c u s   { 
 
     b o x - s h a d o w :   0   0   0   0 . 2 r e m   r g b a ( 5 8 ,   1 7 6 ,   1 9 5 ,   0 . 5 ) ; 
 
 } 
 
 
 
 . b t n - i n f o . d i s a b l e d ,   . b t n - i n f o : d i s a b l e d   { 
 
     c o l o r :   # f f f ; 
 
     b a c k g r o u n d - c o l o r :   # 1 7 a 2 b 8 ; 
 
     b o r d e r - c o l o r :   # 1 7 a 2 b 8 ; 
 
 } 
 
 
 
 . b t n - i n f o : n o t ( : d i s a b l e d ) : n o t ( . d i s a b l e d ) : a c t i v e ,   . b t n - i n f o : n o t ( : d i s a b l e d ) : n o t ( . d i s a b l e d ) . a c t i v e , 
 
 . s h o w   >   . b t n - i n f o . d r o p d o w n - t o g g l e   { 
 
     c o l o r :   # f f f ; 
 
     b a c k g r o u n d - c o l o r :   # 1 1 7 a 8 b ; 
 
     b o r d e r - c o l o r :   # 1 0 7 0 7 f ; 
 
 } 
 
 
 
 . b t n - i n f o : n o t ( : d i s a b l e d ) : n o t ( . d i s a b l e d ) : a c t i v e : f o c u s ,   . b t n - i n f o : n o t ( : d i s a b l e d ) : n o t ( . d i s a b l e d ) . a c t i v e : f o c u s , 
 
 . s h o w   >   . b t n - i n f o . d r o p d o w n - t o g g l e : f o c u s   { 
 
     b o x - s h a d o w :   0   0   0   0 . 2 r e m   r g b a ( 5 8 ,   1 7 6 ,   1 9 5 ,   0 . 5 ) ; 
 
 } 
 
 
 
 . b t n - w a r n i n g   { 
 
     c o l o r :   # 2 1 2 5 2 9 ; 
 
     b a c k g r o u n d - c o l o r :   # f f c 1 0 7 ; 
 
     b o r d e r - c o l o r :   # f f c 1 0 7 ; 
 
 } 
 
 
 
 . b t n - w a r n i n g : h o v e r   { 
 
     c o l o r :   # 2 1 2 5 2 9 ; 
 
     b a c k g r o u n d - c o l o r :   # e 0 a 8 0 0 ; 
 
     b o r d e r - c o l o r :   # d 3 9 e 0 0 ; 
 
 } 
 
 
 
 . b t n - w a r n i n g : f o c u s ,   . b t n - w a r n i n g . f o c u s   { 
 
     b o x - s h a d o w :   0   0   0   0 . 2 r e m   r g b a ( 2 2 2 ,   1 7 0 ,   1 2 ,   0 . 5 ) ; 
 
 } 
 
 
 
 . b t n - w a r n i n g . d i s a b l e d ,   . b t n - w a r n i n g : d i s a b l e d   { 
 
     c o l o r :   # 2 1 2 5 2 9 ; 
 
     b a c k g r o u n d - c o l o r :   # f f c 1 0 7 ; 
 
     b o r d e r - c o l o r :   # f f c 1 0 7 ; 
 
 } 
 
 
 
 . b t n - w a r n i n g : n o t ( : d i s a b l e d ) : n o t ( . d i s a b l e d ) : a c t i v e ,   . b t n - w a r n i n g : n o t ( : d i s a b l e d ) : n o t ( . d i s a b l e d ) . a c t i v e , 
 
 . s h o w   >   . b t n - w a r n i n g . d r o p d o w n - t o g g l e   { 
 
     c o l o r :   # 2 1 2 5 2 9 ; 
 
     b a c k g r o u n d - c o l o r :   # d 3 9 e 0 0 ; 
 
     b o r d e r - c o l o r :   # c 6 9 5 0 0 ; 
 
 } 
 
 
 
 . b t n - w a r n i n g : n o t ( : d i s a b l e d ) : n o t ( . d i s a b l e d ) : a c t i v e : f o c u s ,   . b t n - w a r n i n g : n o t ( : d i s a b l e d ) : n o t ( . d i s a b l e d ) . a c t i v e : f o c u s , 
 
 . s h o w   >   . b t n - w a r n i n g . d r o p d o w n - t o g g l e : f o c u s   { 
 
     b o x - s h a d o w :   0   0   0   0 . 2 r e m   r g b a ( 2 2 2 ,   1 7 0 ,   1 2 ,   0 . 5 ) ; 
 
 } 
 
 
 
 . b t n - d a n g e r   { 
 
     c o l o r :   # f f f ; 
 
     b a c k g r o u n d - c o l o r :   # d c 3 5 4 5 ; 
 
     b o r d e r - c o l o r :   # d c 3 5 4 5 ; 
 
 } 
 
 
 
 . b t n - d a n g e r : h o v e r   { 
 
     c o l o r :   # f f f ; 
 
     b a c k g r o u n d - c o l o r :   # c 8 2 3 3 3 ; 
 
     b o r d e r - c o l o r :   # b d 2 1 3 0 ; 
 
 } 
 
 
 
 . b t n - d a n g e r : f o c u s ,   . b t n - d a n g e r . f o c u s   { 
 
     b o x - s h a d o w :   0   0   0   0 . 2 r e m   r g b a ( 2 2 5 ,   8 3 ,   9 7 ,   0 . 5 ) ; 
 
 } 
 
 
 
 . b t n - d a n g e r . d i s a b l e d ,   . b t n - d a n g e r : d i s a b l e d   { 
 
     c o l o r :   # f f f ; 
 
     b a c k g r o u n d - c o l o r :   # d c 3 5 4 5 ; 
 
     b o r d e r - c o l o r :   # d c 3 5 4 5 ; 
 
 } 
 
 
 
 . b t n - d a n g e r : n o t ( : d i s a b l e d ) : n o t ( . d i s a b l e d ) : a c t i v e ,   . b t n - d a n g e r : n o t ( : d i s a b l e d ) : n o t ( . d i s a b l e d ) . a c t i v e , 
 
 . s h o w   >   . b t n - d a n g e r . d r o p d o w n - t o g g l e   { 
 
     c o l o r :   # f f f ; 
 
     b a c k g r o u n d - c o l o r :   # b d 2 1 3 0 ; 
 
     b o r d e r - c o l o r :   # b 2 1 f 2 d ; 
 
 } 
 
 
 
 . b t n - d a n g e r : n o t ( : d i s a b l e d ) : n o t ( . d i s a b l e d ) : a c t i v e : f o c u s ,   . b t n - d a n g e r : n o t ( : d i s a b l e d ) : n o t ( . d i s a b l e d ) . a c t i v e : f o c u s , 
 
 . s h o w   >   . b t n - d a n g e r . d r o p d o w n - t o g g l e : f o c u s   { 
 
     b o x - s h a d o w :   0   0   0   0 . 2 r e m   r g b a ( 2 2 5 ,   8 3 ,   9 7 ,   0 . 5 ) ; 
 
 } 
 
 
 
 . b t n - l i g h t   { 
 
     c o l o r :   # 2 1 2 5 2 9 ; 
 
     b a c k g r o u n d - c o l o r :   # f 8 f 9 f a ; 
 
     b o r d e r - c o l o r :   # f 8 f 9 f a ; 
 
 } 
 
 
 
 . b t n - l i g h t : h o v e r   { 
 
     c o l o r :   # 2 1 2 5 2 9 ; 
 
     b a c k g r o u n d - c o l o r :   # e 2 e 6 e a ; 
 
     b o r d e r - c o l o r :   # d a e 0 e 5 ; 
 
 } 
 
 
 
 . b t n - l i g h t : f o c u s ,   . b t n - l i g h t . f o c u s   { 
 
     b o x - s h a d o w :   0   0   0   0 . 2 r e m   r g b a ( 2 1 6 ,   2 1 7 ,   2 1 9 ,   0 . 5 ) ; 
 
 } 
 
 
 
 . b t n - l i g h t . d i s a b l e d ,   . b t n - l i g h t : d i s a b l e d   { 
 
     c o l o r :   # 2 1 2 5 2 9 ; 
 
     b a c k g r o u n d - c o l o r :   # f 8 f 9 f a ; 
 
     b o r d e r - c o l o r :   # f 8 f 9 f a ; 
 
 } 
 
 
 
 . b t n - l i g h t : n o t ( : d i s a b l e d ) : n o t ( . d i s a b l e d ) : a c t i v e ,   . b t n - l i g h t : n o t ( : d i s a b l e d ) : n o t ( . d i s a b l e d ) . a c t i v e , 
 
 . s h o w   >   . b t n - l i g h t . d r o p d o w n - t o g g l e   { 
 
     c o l o r :   # 2 1 2 5 2 9 ; 
 
     b a c k g r o u n d - c o l o r :   # d a e 0 e 5 ; 
 
     b o r d e r - c o l o r :   # d 3 d 9 d f ; 
 
 } 
 
 
 
 . b t n - l i g h t : n o t ( : d i s a b l e d ) : n o t ( . d i s a b l e d ) : a c t i v e : f o c u s ,   . b t n - l i g h t : n o t ( : d i s a b l e d ) : n o t ( . d i s a b l e d ) . a c t i v e : f o c u s , 
 
 . s h o w   >   . b t n - l i g h t . d r o p d o w n - t o g g l e : f o c u s   { 
 
     b o x - s h a d o w :   0   0   0   0 . 2 r e m   r g b a ( 2 1 6 ,   2 1 7 ,   2 1 9 ,   0 . 5 ) ; 
 
 } 
 
 
 
 . b t n - d a r k   { 
 
     c o l o r :   # f f f ; 
 
     b a c k g r o u n d - c o l o r :   # 3 4 3 a 4 0 ; 
 
     b o r d e r - c o l o r :   # 3 4 3 a 4 0 ; 
 
 } 
 
 
 
 . b t n - d a r k : h o v e r   { 
 
     c o l o r :   # f f f ; 
 
     b a c k g r o u n d - c o l o r :   # 2 3 2 7 2 b ; 
 
     b o r d e r - c o l o r :   # 1 d 2 1 2 4 ; 
 
 } 
 
 
 
 . b t n - d a r k : f o c u s ,   . b t n - d a r k . f o c u s   { 
 
     b o x - s h a d o w :   0   0   0   0 . 2 r e m   r g b a ( 8 2 ,   8 8 ,   9 3 ,   0 . 5 ) ; 
 
 } 
 
 
 
 . b t n - d a r k . d i s a b l e d ,   . b t n - d a r k : d i s a b l e d   { 
 
     c o l o r :   # f f f ; 
 
     b a c k g r o u n d - c o l o r :   # 3 4 3 a 4 0 ; 
 
     b o r d e r - c o l o r :   # 3 4 3 a 4 0 ; 
 
 } 
 
 
 
 . b t n - d a r k : n o t ( : d i s a b l e d ) : n o t ( . d i s a b l e d ) : a c t i v e ,   . b t n - d a r k : n o t ( : d i s a b l e d ) : n o t ( . d i s a b l e d ) . a c t i v e , 
 
 . s h o w   >   . b t n - d a r k . d r o p d o w n - t o g g l e   { 
 
     c o l o r :   # f f f ; 
 
     b a c k g r o u n d - c o l o r :   # 1 d 2 1 2 4 ; 
 
     b o r d e r - c o l o r :   # 1 7 1 a 1 d ; 
 
 } 
 
 
 
 . b t n - d a r k : n o t ( : d i s a b l e d ) : n o t ( . d i s a b l e d ) : a c t i v e : f o c u s ,   . b t n - d a r k : n o t ( : d i s a b l e d ) : n o t ( . d i s a b l e d ) . a c t i v e : f o c u s , 
 
 . s h o w   >   . b t n - d a r k . d r o p d o w n - t o g g l e : f o c u s   { 
 
     b o x - s h a d o w :   0   0   0   0 . 2 r e m   r g b a ( 8 2 ,   8 8 ,   9 3 ,   0 . 5 ) ; 
 
 } 
 
 
 
 . b t n - o u t l i n e - p r i m a r y   { 
 
     c o l o r :   # 0 0 7 b f f ; 
 
     b o r d e r - c o l o r :   # 0 0 7 b f f ; 
 
 } 
 
 
 
 . b t n - o u t l i n e - p r i m a r y : h o v e r   { 
 
     c o l o r :   # f f f ; 
 
     b a c k g r o u n d - c o l o r :   # 0 0 7 b f f ; 
 
     b o r d e r - c o l o r :   # 0 0 7 b f f ; 
 
 } 
 
 
 
 . b t n - o u t l i n e - p r i m a r y : f o c u s ,   . b t n - o u t l i n e - p r i m a r y . f o c u s   { 
 
     b o x - s h a d o w :   0   0   0   0 . 2 r e m   r g b a ( 0 ,   1 2 3 ,   2 5 5 ,   0 . 5 ) ; 
 
 } 
 
 
 
 . b t n - o u t l i n e - p r i m a r y . d i s a b l e d ,   . b t n - o u t l i n e - p r i m a r y : d i s a b l e d   { 
 
     c o l o r :   # 0 0 7 b f f ; 
 
     b a c k g r o u n d - c o l o r :   t r a n s p a r e n t ; 
 
 } 
 
 
 
 . b t n - o u t l i n e - p r i m a r y : n o t ( : d i s a b l e d ) : n o t ( . d i s a b l e d ) : a c t i v e ,   . b t n - o u t l i n e - p r i m a r y : n o t ( : d i s a b l e d ) : n o t ( . d i s a b l e d ) . a c t i v e , 
 
 . s h o w   >   . b t n - o u t l i n e - p r i m a r y . d r o p d o w n - t o g g l e   { 
 
     c o l o r :   # f f f ; 
 
     b a c k g r o u n d - c o l o r :   # 0 0 7 b f f ; 
 
     b o r d e r - c o l o r :   # 0 0 7 b f f ; 
 
 } 
 
 
 
 . b t n - o u t l i n e - p r i m a r y : n o t ( : d i s a b l e d ) : n o t ( . d i s a b l e d ) : a c t i v e : f o c u s ,   . b t n - o u t l i n e - p r i m a r y : n o t ( : d i s a b l e d ) : n o t ( . d i s a b l e d ) . a c t i v e : f o c u s , 
 
 . s h o w   >   . b t n - o u t l i n e - p r i m a r y . d r o p d o w n - t o g g l e : f o c u s   { 
 
     b o x - s h a d o w :   0   0   0   0 . 2 r e m   r g b a ( 0 ,   1 2 3 ,   2 5 5 ,   0 . 5 ) ; 
 
 } 
 
 
 
 . b t n - o u t l i n e - s e c o n d a r y   { 
 
     c o l o r :   # 6 c 7 5 7 d ; 
 
     b o r d e r - c o l o r :   # 6 c 7 5 7 d ; 
 
 } 
 
 
 
 . b t n - o u t l i n e - s e c o n d a r y : h o v e r   { 
 
     c o l o r :   # f f f ; 
 
     b a c k g r o u n d - c o l o r :   # 6 c 7 5 7 d ; 
 
     b o r d e r - c o l o r :   # 6 c 7 5 7 d ; 
 
 } 
 
 
 
 . b t n - o u t l i n e - s e c o n d a r y : f o c u s ,   . b t n - o u t l i n e - s e c o n d a r y . f o c u s   { 
 
     b o x - s h a d o w :   0   0   0   0 . 2 r e m   r g b a ( 1 0 8 ,   1 1 7 ,   1 2 5 ,   0 . 5 ) ; 
 
 } 
 
 
 
 . b t n - o u t l i n e - s e c o n d a r y . d i s a b l e d ,   . b t n - o u t l i n e - s e c o n d a r y : d i s a b l e d   { 
 
     c o l o r :   # 6 c 7 5 7 d ; 
 
     b a c k g r o u n d - c o l o r :   t r a n s p a r e n t ; 
 
 } 
 
 
 
 . b t n - o u t l i n e - s e c o n d a r y : n o t ( : d i s a b l e d ) : n o t ( . d i s a b l e d ) : a c t i v e ,   . b t n - o u t l i n e - s e c o n d a r y : n o t ( : d i s a b l e d ) : n o t ( . d i s a b l e d ) . a c t i v e , 
 
 . s h o w   >   . b t n - o u t l i n e - s e c o n d a r y . d r o p d o w n - t o g g l e   { 
 
     c o l o r :   # f f f ; 
 
     b a c k g r o u n d - c o l o r :   # 6 c 7 5 7 d ; 
 
     b o r d e r - c o l o r :   # 6 c 7 5 7 d ; 
 
 } 
 
 
 
 . b t n - o u t l i n e - s e c o n d a r y : n o t ( : d i s a b l e d ) : n o t ( . d i s a b l e d ) : a c t i v e : f o c u s ,   . b t n - o u t l i n e - s e c o n d a r y : n o t ( : d i s a b l e d ) : n o t ( . d i s a b l e d ) . a c t i v e : f o c u s , 
 
 . s h o w   >   . b t n - o u t l i n e - s e c o n d a r y . d r o p d o w n - t o g g l e : f o c u s   { 
 
     b o x - s h a d o w :   0   0   0   0 . 2 r e m   r g b a ( 1 0 8 ,   1 1 7 ,   1 2 5 ,   0 . 5 ) ; 
 
 } 
 
 
 
 . b t n - o u t l i n e - s u c c e s s   { 
 
     c o l o r :   # 2 8 a 7 4 5 ; 
 
     b o r d e r - c o l o r :   # 2 8 a 7 4 5 ; 
 
 } 
 
 
 
 . b t n - o u t l i n e - s u c c e s s : h o v e r   { 
 
     c o l o r :   # f f f ; 
 
     b a c k g r o u n d - c o l o r :   # 2 8 a 7 4 5 ; 
 
     b o r d e r - c o l o r :   # 2 8 a 7 4 5 ; 
 
 } 
 
 
 
 . b t n - o u t l i n e - s u c c e s s : f o c u s ,   . b t n - o u t l i n e - s u c c e s s . f o c u s   { 
 
     b o x - s h a d o w :   0   0   0   0 . 2 r e m   r g b a ( 4 0 ,   1 6 7 ,   6 9 ,   0 . 5 ) ; 
 
 } 
 
 
 
 . b t n - o u t l i n e - s u c c e s s . d i s a b l e d ,   . b t n - o u t l i n e - s u c c e s s : d i s a b l e d   { 
 
     c o l o r :   # 2 8 a 7 4 5 ; 
 
     b a c k g r o u n d - c o l o r :   t r a n s p a r e n t ; 
 
 } 
 
 
 
 . b t n - o u t l i n e - s u c c e s s : n o t ( : d i s a b l e d ) : n o t ( . d i s a b l e d ) : a c t i v e ,   . b t n - o u t l i n e - s u c c e s s : n o t ( : d i s a b l e d ) : n o t ( . d i s a b l e d ) . a c t i v e , 
 
 . s h o w   >   . b t n - o u t l i n e - s u c c e s s . d r o p d o w n - t o g g l e   { 
 
     c o l o r :   # f f f ; 
 
     b a c k g r o u n d - c o l o r :   # 2 8 a 7 4 5 ; 
 
     b o r d e r - c o l o r :   # 2 8 a 7 4 5 ; 
 
 } 
 
 
 
 . b t n - o u t l i n e - s u c c e s s : n o t ( : d i s a b l e d ) : n o t ( . d i s a b l e d ) : a c t i v e : f o c u s ,   . b t n - o u t l i n e - s u c c e s s : n o t ( : d i s a b l e d ) : n o t ( . d i s a b l e d ) . a c t i v e : f o c u s , 
 
 . s h o w   >   . b t n - o u t l i n e - s u c c e s s . d r o p d o w n - t o g g l e : f o c u s   { 
 
     b o x - s h a d o w :   0   0   0   0 . 2 r e m   r g b a ( 4 0 ,   1 6 7 ,   6 9 ,   0 . 5 ) ; 
 
 } 
 
 
 
 . b t n - o u t l i n e - i n f o   { 
 
     c o l o r :   # 1 7 a 2 b 8 ; 
 
     b o r d e r - c o l o r :   # 1 7 a 2 b 8 ; 
 
 } 
 
 
 
 . b t n - o u t l i n e - i n f o : h o v e r   { 
 
     c o l o r :   # f f f ; 
 
     b a c k g r o u n d - c o l o r :   # 1 7 a 2 b 8 ; 
 
     b o r d e r - c o l o r :   # 1 7 a 2 b 8 ; 
 
 } 
 
 
 
 . b t n - o u t l i n e - i n f o : f o c u s ,   . b t n - o u t l i n e - i n f o . f o c u s   { 
 
     b o x - s h a d o w :   0   0   0   0 . 2 r e m   r g b a ( 2 3 ,   1 6 2 ,   1 8 4 ,   0 . 5 ) ; 
 
 } 
 
 
 
 . b t n - o u t l i n e - i n f o . d i s a b l e d ,   . b t n - o u t l i n e - i n f o : d i s a b l e d   { 
 
     c o l o r :   # 1 7 a 2 b 8 ; 
 
     b a c k g r o u n d - c o l o r :   t r a n s p a r e n t ; 
 
 } 
 
 
 
 . b t n - o u t l i n e - i n f o : n o t ( : d i s a b l e d ) : n o t ( . d i s a b l e d ) : a c t i v e ,   . b t n - o u t l i n e - i n f o : n o t ( : d i s a b l e d ) : n o t ( . d i s a b l e d ) . a c t i v e , 
 
 . s h o w   >   . b t n - o u t l i n e - i n f o . d r o p d o w n - t o g g l e   { 
 
     c o l o r :   # f f f ; 
 
     b a c k g r o u n d - c o l o r :   # 1 7 a 2 b 8 ; 
 
     b o r d e r - c o l o r :   # 1 7 a 2 b 8 ; 
 
 } 
 
 
 
 . b t n - o u t l i n e - i n f o : n o t ( : d i s a b l e d ) : n o t ( . d i s a b l e d ) : a c t i v e : f o c u s ,   . b t n - o u t l i n e - i n f o : n o t ( : d i s a b l e d ) : n o t ( . d i s a b l e d ) . a c t i v e : f o c u s , 
 
 . s h o w   >   . b t n - o u t l i n e - i n f o . d r o p d o w n - t o g g l e : f o c u s   { 
 
     b o x - s h a d o w :   0   0   0   0 . 2 r e m   r g b a ( 2 3 ,   1 6 2 ,   1 8 4 ,   0 . 5 ) ; 
 
 } 
 
 
 
 . b t n - o u t l i n e - w a r n i n g   { 
 
     c o l o r :   # f f c 1 0 7 ; 
 
     b o r d e r - c o l o r :   # f f c 1 0 7 ; 
 
 } 
 
 
 
 . b t n - o u t l i n e - w a r n i n g : h o v e r   { 
 
     c o l o r :   # 2 1 2 5 2 9 ; 
 
     b a c k g r o u n d - c o l o r :   # f f c 1 0 7 ; 
 
     b o r d e r - c o l o r :   # f f c 1 0 7 ; 
 
 } 
 
 
 
 . b t n - o u t l i n e - w a r n i n g : f o c u s ,   . b t n - o u t l i n e - w a r n i n g . f o c u s   { 
 
     b o x - s h a d o w :   0   0   0   0 . 2 r e m   r g b a ( 2 5 5 ,   1 9 3 ,   7 ,   0 . 5 ) ; 
 
 } 
 
 
 
 . b t n - o u t l i n e - w a r n i n g . d i s a b l e d ,   . b t n - o u t l i n e - w a r n i n g : d i s a b l e d   { 
 
     c o l o r :   # f f c 1 0 7 ; 
 
     b a c k g r o u n d - c o l o r :   t r a n s p a r e n t ; 
 
 } 
 
 
 
 . b t n - o u t l i n e - w a r n i n g : n o t ( : d i s a b l e d ) : n o t ( . d i s a b l e d ) : a c t i v e ,   . b t n - o u t l i n e - w a r n i n g : n o t ( : d i s a b l e d ) : n o t ( . d i s a b l e d ) . a c t i v e , 
 
 . s h o w   >   . b t n - o u t l i n e - w a r n i n g . d r o p d o w n - t o g g l e   { 
 
     c o l o r :   # 2 1 2 5 2 9 ; 
 
     b a c k g r o u n d - c o l o r :   # f f c 1 0 7 ; 
 
     b o r d e r - c o l o r :   # f f c 1 0 7 ; 
 
 } 
 
 
 
 . b t n - o u t l i n e - w a r n i n g : n o t ( : d i s a b l e d ) : n o t ( . d i s a b l e d ) : a c t i v e : f o c u s ,   . b t n - o u t l i n e - w a r n i n g : n o t ( : d i s a b l e d ) : n o t ( . d i s a b l e d ) . a c t i v e : f o c u s , 
 
 . s h o w   >   . b t n - o u t l i n e - w a r n i n g . d r o p d o w n - t o g g l e : f o c u s   { 
 
     b o x - s h a d o w :   0   0   0   0 . 2 r e m   r g b a ( 2 5 5 ,   1 9 3 ,   7 ,   0 . 5 ) ; 
 
 } 
 
 
 
 . b t n - o u t l i n e - d a n g e r   { 
 
     c o l o r :   # d c 3 5 4 5 ; 
 
     b o r d e r - c o l o r :   # d c 3 5 4 5 ; 
 
 } 
 
 
 
 . b t n - o u t l i n e - d a n g e r : h o v e r   { 
 
     c o l o r :   # f f f ; 
 
     b a c k g r o u n d - c o l o r :   # d c 3 5 4 5 ; 
 
     b o r d e r - c o l o r :   # d c 3 5 4 5 ; 
 
 } 
 
 
 
 . b t n - o u t l i n e - d a n g e r : f o c u s ,   . b t n - o u t l i n e - d a n g e r . f o c u s   { 
 
     b o x - s h a d o w :   0   0   0   0 . 2 r e m   r g b a ( 2 2 0 ,   5 3 ,   6 9 ,   0 . 5 ) ; 
 
 } 
 
 
 
 . b t n - o u t l i n e - d a n g e r . d i s a b l e d ,   . b t n - o u t l i n e - d a n g e r : d i s a b l e d   { 
 
     c o l o r :   # d c 3 5 4 5 ; 
 
     b a c k g r o u n d - c o l o r :   t r a n s p a r e n t ; 
 
 } 
 
 
 
 . b t n - o u t l i n e - d a n g e r : n o t ( : d i s a b l e d ) : n o t ( . d i s a b l e d ) : a c t i v e ,   . b t n - o u t l i n e - d a n g e r : n o t ( : d i s a b l e d ) : n o t ( . d i s a b l e d ) . a c t i v e , 
 
 . s h o w   >   . b t n - o u t l i n e - d a n g e r . d r o p d o w n - t o g g l e   { 
 
     c o l o r :   # f f f ; 
 
     b a c k g r o u n d - c o l o r :   # d c 3 5 4 5 ; 
 
     b o r d e r - c o l o r :   # d c 3 5 4 5 ; 
 
 } 
 
 
 
 . b t n - o u t l i n e - d a n g e r : n o t ( : d i s a b l e d ) : n o t ( . d i s a b l e d ) : a c t i v e : f o c u s ,   . b t n - o u t l i n e - d a n g e r : n o t ( : d i s a b l e d ) : n o t ( . d i s a b l e d ) . a c t i v e : f o c u s , 
 
 . s h o w   >   . b t n - o u t l i n e - d a n g e r . d r o p d o w n - t o g g l e : f o c u s   { 
 
     b o x - s h a d o w :   0   0   0   0 . 2 r e m   r g b a ( 2 2 0 ,   5 3 ,   6 9 ,   0 . 5 ) ; 
 
 } 
 
 
 
 . b t n - o u t l i n e - l i g h t   { 
 
     c o l o r :   # f 8 f 9 f a ; 
 
     b o r d e r - c o l o r :   # f 8 f 9 f a ; 
 
 } 
 
 
 
 . b t n - o u t l i n e - l i g h t : h o v e r   { 
 
     c o l o r :   # 2 1 2 5 2 9 ; 
 
     b a c k g r o u n d - c o l o r :   # f 8 f 9 f a ; 
 
     b o r d e r - c o l o r :   # f 8 f 9 f a ; 
 
 } 
 
 
 
 . b t n - o u t l i n e - l i g h t : f o c u s ,   . b t n - o u t l i n e - l i g h t . f o c u s   { 
 
     b o x - s h a d o w :   0   0   0   0 . 2 r e m   r g b a ( 2 4 8 ,   2 4 9 ,   2 5 0 ,   0 . 5 ) ; 
 
 } 
 
 
 
 . b t n - o u t l i n e - l i g h t . d i s a b l e d ,   . b t n - o u t l i n e - l i g h t : d i s a b l e d   { 
 
     c o l o r :   # f 8 f 9 f a ; 
 
     b a c k g r o u n d - c o l o r :   t r a n s p a r e n t ; 
 
 } 
 
 
 
 . b t n - o u t l i n e - l i g h t : n o t ( : d i s a b l e d ) : n o t ( . d i s a b l e d ) : a c t i v e ,   . b t n - o u t l i n e - l i g h t : n o t ( : d i s a b l e d ) : n o t ( . d i s a b l e d ) . a c t i v e , 
 
 . s h o w   >   . b t n - o u t l i n e - l i g h t . d r o p d o w n - t o g g l e   { 
 
     c o l o r :   # 2 1 2 5 2 9 ; 
 
     b a c k g r o u n d - c o l o r :   # f 8 f 9 f a ; 
 
     b o r d e r - c o l o r :   # f 8 f 9 f a ; 
 
 } 
 
 
 
 . b t n - o u t l i n e - l i g h t : n o t ( : d i s a b l e d ) : n o t ( . d i s a b l e d ) : a c t i v e : f o c u s ,   . b t n - o u t l i n e - l i g h t : n o t ( : d i s a b l e d ) : n o t ( . d i s a b l e d ) . a c t i v e : f o c u s , 
 
 . s h o w   >   . b t n - o u t l i n e - l i g h t . d r o p d o w n - t o g g l e : f o c u s   { 
 
     b o x - s h a d o w :   0   0   0   0 . 2 r e m   r g b a ( 2 4 8 ,   2 4 9 ,   2 5 0 ,   0 . 5 ) ; 
 
 } 
 
 
 
 . b t n - o u t l i n e - d a r k   { 
 
     c o l o r :   # 3 4 3 a 4 0 ; 
 
     b o r d e r - c o l o r :   # 3 4 3 a 4 0 ; 
 
 } 
 
 
 
 . b t n - o u t l i n e - d a r k : h o v e r   { 
 
     c o l o r :   # f f f ; 
 
     b a c k g r o u n d - c o l o r :   # 3 4 3 a 4 0 ; 
 
     b o r d e r - c o l o r :   # 3 4 3 a 4 0 ; 
 
 } 
 
 
 
 . b t n - o u t l i n e - d a r k : f o c u s ,   . b t n - o u t l i n e - d a r k . f o c u s   { 
 
     b o x - s h a d o w :   0   0   0   0 . 2 r e m   r g b a ( 5 2 ,   5 8 ,   6 4 ,   0 . 5 ) ; 
 
 } 
 
 
 
 . b t n - o u t l i n e - d a r k . d i s a b l e d ,   . b t n - o u t l i n e - d a r k : d i s a b l e d   { 
 
     c o l o r :   # 3 4 3 a 4 0 ; 
 
     b a c k g r o u n d - c o l o r :   t r a n s p a r e n t ; 
 
 } 
 
 
 
 . b t n - o u t l i n e - d a r k : n o t ( : d i s a b l e d ) : n o t ( . d i s a b l e d ) : a c t i v e ,   . b t n - o u t l i n e - d a r k : n o t ( : d i s a b l e d ) : n o t ( . d i s a b l e d ) . a c t i v e , 
 
 . s h o w   >   . b t n - o u t l i n e - d a r k . d r o p d o w n - t o g g l e   { 
 
     c o l o r :   # f f f ; 
 
     b a c k g r o u n d - c o l o r :   # 3 4 3 a 4 0 ; 
 
     b o r d e r - c o l o r :   # 3 4 3 a 4 0 ; 
 
 } 
 
 
 
 . b t n - o u t l i n e - d a r k : n o t ( : d i s a b l e d ) : n o t ( . d i s a b l e d ) : a c t i v e : f o c u s ,   . b t n - o u t l i n e - d a r k : n o t ( : d i s a b l e d ) : n o t ( . d i s a b l e d ) . a c t i v e : f o c u s , 
 
 . s h o w   >   . b t n - o u t l i n e - d a r k . d r o p d o w n - t o g g l e : f o c u s   { 
 
     b o x - s h a d o w :   0   0   0   0 . 2 r e m   r g b a ( 5 2 ,   5 8 ,   6 4 ,   0 . 5 ) ; 
 
 } 
 
 
 
 . b t n - l i n k   { 
 
     f o n t - w e i g h t :   4 0 0 ; 
 
     c o l o r :   # 0 0 7 b f f ; 
 
     t e x t - d e c o r a t i o n :   n o n e ; 
 
 } 
 
 
 
 . b t n - l i n k : h o v e r   { 
 
     c o l o r :   # 0 0 5 6 b 3 ; 
 
     t e x t - d e c o r a t i o n :   u n d e r l i n e ; 
 
 } 
 
 
 
 . b t n - l i n k : f o c u s ,   . b t n - l i n k . f o c u s   { 
 
     t e x t - d e c o r a t i o n :   u n d e r l i n e ; 
 
     b o x - s h a d o w :   n o n e ; 
 
 } 
 
 
 
 . b t n - l i n k : d i s a b l e d ,   . b t n - l i n k . d i s a b l e d   { 
 
     c o l o r :   # 6 c 7 5 7 d ; 
 
     p o i n t e r - e v e n t s :   n o n e ; 
 
 } 
 
 
 
 . b t n - l g ,   . b t n - g r o u p - l g   >   . b t n   { 
 
     p a d d i n g :   0 . 5 r e m   1 r e m ; 
 
     f o n t - s i z e :   1 . 2 5 r e m ; 
 
     l i n e - h e i g h t :   1 . 5 ; 
 
     b o r d e r - r a d i u s :   0 . 3 r e m ; 
 
 } 
 
 
 
 . b t n - s m ,   . b t n - g r o u p - s m   >   . b t n   { 
 
     p a d d i n g :   0 . 2 5 r e m   0 . 5 r e m ; 
 
     f o n t - s i z e :   0 . 8 7 5 r e m ; 
 
     l i n e - h e i g h t :   1 . 5 ; 
 
     b o r d e r - r a d i u s :   0 . 2 r e m ; 
 
 } 
 
 
 
 . b t n - b l o c k   { 
 
     d i s p l a y :   b l o c k ; 
 
     w i d t h :   1 0 0 % ; 
 
 } 
 
 
 
 . b t n - b l o c k   +   . b t n - b l o c k   { 
 
     m a r g i n - t o p :   0 . 5 r e m ; 
 
 } 
 
 
 
 i n p u t [ t y p e = " s u b m i t " ] . b t n - b l o c k , 
 
 i n p u t [ t y p e = " r e s e t " ] . b t n - b l o c k , 
 
 i n p u t [ t y p e = " b u t t o n " ] . b t n - b l o c k   { 
 
     w i d t h :   1 0 0 % ; 
 
 } 
 
 
 
 . f a d e   { 
 
     t r a n s i t i o n :   o p a c i t y   0 . 1 5 s   l i n e a r ; 
 
 } 
 
 
 
 @ m e d i a   ( p r e f e r s - r e d u c e d - m o t i o n :   r e d u c e )   { 
 
     . f a d e   { 
 
         t r a n s i t i o n :   n o n e ; 
 
     } 
 
 } 
 
 
 
 . f a d e : n o t ( . s h o w )   { 
 
     o p a c i t y :   0 ; 
 
 } 
 
 
 
 . c o l l a p s e : n o t ( . s h o w )   { 
 
     d i s p l a y :   n o n e ; 
 
 } 
 
 
 
 . c o l l a p s i n g   { 
 
     p o s i t i o n :   r e l a t i v e ; 
 
     h e i g h t :   0 ; 
 
     o v e r f l o w :   h i d d e n ; 
 
     t r a n s i t i o n :   h e i g h t   0 . 3 5 s   e a s e ; 
 
 } 
 
 
 
 @ m e d i a   ( p r e f e r s - r e d u c e d - m o t i o n :   r e d u c e )   { 
 
     . c o l l a p s i n g   { 
 
         t r a n s i t i o n :   n o n e ; 
 
     } 
 
 } 
 
 
 
 . d r o p u p , 
 
 . d r o p r i g h t , 
 
 . d r o p d o w n , 
 
 . d r o p l e f t   { 
 
     p o s i t i o n :   r e l a t i v e ; 
 
 } 
 
 
 
 . d r o p d o w n - t o g g l e   { 
 
     w h i t e - s p a c e :   n o w r a p ; 
 
 } 
 
 
 
 . d r o p d o w n - t o g g l e : : a f t e r   { 
 
     d i s p l a y :   i n l i n e - b l o c k ; 
 
     m a r g i n - l e f t :   0 . 2 5 5 e m ; 
 
     v e r t i c a l - a l i g n :   0 . 2 5 5 e m ; 
 
     c o n t e n t :   " " ; 
 
     b o r d e r - t o p :   0 . 3 e m   s o l i d ; 
 
     b o r d e r - r i g h t :   0 . 3 e m   s o l i d   t r a n s p a r e n t ; 
 
     b o r d e r - b o t t o m :   0 ; 
 
     b o r d e r - l e f t :   0 . 3 e m   s o l i d   t r a n s p a r e n t ; 
 
 } 
 
 
 
 . d r o p d o w n - t o g g l e : e m p t y : : a f t e r   { 
 
     m a r g i n - l e f t :   0 ; 
 
 } 
 
 
 
 . d r o p d o w n - m e n u   { 
 
     p o s i t i o n :   a b s o l u t e ; 
 
     t o p :   1 0 0 % ; 
 
     l e f t :   0 ; 
 
     z - i n d e x :   1 0 0 0 ; 
 
     d i s p l a y :   n o n e ; 
 
     f l o a t :   l e f t ; 
 
     m i n - w i d t h :   1 0 r e m ; 
 
     p a d d i n g :   0 . 5 r e m   0 ; 
 
     m a r g i n :   0 . 1 2 5 r e m   0   0 ; 
 
     f o n t - s i z e :   1 r e m ; 
 
     c o l o r :   # 2 1 2 5 2 9 ; 
 
     t e x t - a l i g n :   l e f t ; 
 
     l i s t - s t y l e :   n o n e ; 
 
     b a c k g r o u n d - c o l o r :   # f f f ; 
 
     b a c k g r o u n d - c l i p :   p a d d i n g - b o x ; 
 
     b o r d e r :   1 p x   s o l i d   r g b a ( 0 ,   0 ,   0 ,   0 . 1 5 ) ; 
 
     b o r d e r - r a d i u s :   0 . 2 5 r e m ; 
 
 } 
 
 
 
 . d r o p d o w n - m e n u - l e f t   { 
 
     r i g h t :   a u t o ; 
 
     l e f t :   0 ; 
 
 } 
 
 
 
 . d r o p d o w n - m e n u - r i g h t   { 
 
     r i g h t :   0 ; 
 
     l e f t :   a u t o ; 
 
 } 
 
 
 
 @ m e d i a   ( m i n - w i d t h :   5 7 6 p x )   { 
 
     . d r o p d o w n - m e n u - s m - l e f t   { 
 
         r i g h t :   a u t o ; 
 
         l e f t :   0 ; 
 
     } 
 
     . d r o p d o w n - m e n u - s m - r i g h t   { 
 
         r i g h t :   0 ; 
 
         l e f t :   a u t o ; 
 
     } 
 
 } 
 
 
 
 @ m e d i a   ( m i n - w i d t h :   7 6 8 p x )   { 
 
     . d r o p d o w n - m e n u - m d - l e f t   { 
 
         r i g h t :   a u t o ; 
 
         l e f t :   0 ; 
 
     } 
 
     . d r o p d o w n - m e n u - m d - r i g h t   { 
 
         r i g h t :   0 ; 
 
         l e f t :   a u t o ; 
 
     } 
 
 } 
 
 
 
 @ m e d i a   ( m i n - w i d t h :   9 9 2 p x )   { 
 
     . d r o p d o w n - m e n u - l g - l e f t   { 
 
         r i g h t :   a u t o ; 
 
         l e f t :   0 ; 
 
     } 
 
     . d r o p d o w n - m e n u - l g - r i g h t   { 
 
         r i g h t :   0 ; 
 
         l e f t :   a u t o ; 
 
     } 
 
 } 
 
 
 
 @ m e d i a   ( m i n - w i d t h :   1 2 0 0 p x )   { 
 
     . d r o p d o w n - m e n u - x l - l e f t   { 
 
         r i g h t :   a u t o ; 
 
         l e f t :   0 ; 
 
     } 
 
     . d r o p d o w n - m e n u - x l - r i g h t   { 
 
         r i g h t :   0 ; 
 
         l e f t :   a u t o ; 
 
     } 
 
 } 
 
 
 
 . d r o p u p   . d r o p d o w n - m e n u   { 
 
     t o p :   a u t o ; 
 
     b o t t o m :   1 0 0 % ; 
 
     m a r g i n - t o p :   0 ; 
 
     m a r g i n - b o t t o m :   0 . 1 2 5 r e m ; 
 
 } 
 
 
 
 . d r o p u p   . d r o p d o w n - t o g g l e : : a f t e r   { 
 
     d i s p l a y :   i n l i n e - b l o c k ; 
 
     m a r g i n - l e f t :   0 . 2 5 5 e m ; 
 
     v e r t i c a l - a l i g n :   0 . 2 5 5 e m ; 
 
     c o n t e n t :   " " ; 
 
     b o r d e r - t o p :   0 ; 
 
     b o r d e r - r i g h t :   0 . 3 e m   s o l i d   t r a n s p a r e n t ; 
 
     b o r d e r - b o t t o m :   0 . 3 e m   s o l i d ; 
 
     b o r d e r - l e f t :   0 . 3 e m   s o l i d   t r a n s p a r e n t ; 
 
 } 
 
 
 
 . d r o p u p   . d r o p d o w n - t o g g l e : e m p t y : : a f t e r   { 
 
     m a r g i n - l e f t :   0 ; 
 
 } 
 
 
 
 . d r o p r i g h t   . d r o p d o w n - m e n u   { 
 
     t o p :   0 ; 
 
     r i g h t :   a u t o ; 
 
     l e f t :   1 0 0 % ; 
 
     m a r g i n - t o p :   0 ; 
 
     m a r g i n - l e f t :   0 . 1 2 5 r e m ; 
 
 } 
 
 
 
 . d r o p r i g h t   . d r o p d o w n - t o g g l e : : a f t e r   { 
 
     d i s p l a y :   i n l i n e - b l o c k ; 
 
     m a r g i n - l e f t :   0 . 2 5 5 e m ; 
 
     v e r t i c a l - a l i g n :   0 . 2 5 5 e m ; 
 
     c o n t e n t :   " " ; 
 
     b o r d e r - t o p :   0 . 3 e m   s o l i d   t r a n s p a r e n t ; 
 
     b o r d e r - r i g h t :   0 ; 
 
     b o r d e r - b o t t o m :   0 . 3 e m   s o l i d   t r a n s p a r e n t ; 
 
     b o r d e r - l e f t :   0 . 3 e m   s o l i d ; 
 
 } 
 
 
 
 . d r o p r i g h t   . d r o p d o w n - t o g g l e : e m p t y : : a f t e r   { 
 
     m a r g i n - l e f t :   0 ; 
 
 } 
 
 
 
 . d r o p r i g h t   . d r o p d o w n - t o g g l e : : a f t e r   { 
 
     v e r t i c a l - a l i g n :   0 ; 
 
 } 
 
 
 
 . d r o p l e f t   . d r o p d o w n - m e n u   { 
 
     t o p :   0 ; 
 
     r i g h t :   1 0 0 % ; 
 
     l e f t :   a u t o ; 
 
     m a r g i n - t o p :   0 ; 
 
     m a r g i n - r i g h t :   0 . 1 2 5 r e m ; 
 
 } 
 
 
 
 . d r o p l e f t   . d r o p d o w n - t o g g l e : : a f t e r   { 
 
     d i s p l a y :   i n l i n e - b l o c k ; 
 
     m a r g i n - l e f t :   0 . 2 5 5 e m ; 
 
     v e r t i c a l - a l i g n :   0 . 2 5 5 e m ; 
 
     c o n t e n t :   " " ; 
 
 } 
 
 
 
 . d r o p l e f t   . d r o p d o w n - t o g g l e : : a f t e r   { 
 
     d i s p l a y :   n o n e ; 
 
 } 
 
 
 
 . d r o p l e f t   . d r o p d o w n - t o g g l e : : b e f o r e   { 
 
     d i s p l a y :   i n l i n e - b l o c k ; 
 
     m a r g i n - r i g h t :   0 . 2 5 5 e m ; 
 
     v e r t i c a l - a l i g n :   0 . 2 5 5 e m ; 
 
     c o n t e n t :   " " ; 
 
     b o r d e r - t o p :   0 . 3 e m   s o l i d   t r a n s p a r e n t ; 
 
     b o r d e r - r i g h t :   0 . 3 e m   s o l i d ; 
 
     b o r d e r - b o t t o m :   0 . 3 e m   s o l i d   t r a n s p a r e n t ; 
 
 } 
 
 
 
 . d r o p l e f t   . d r o p d o w n - t o g g l e : e m p t y : : a f t e r   { 
 
     m a r g i n - l e f t :   0 ; 
 
 } 
 
 
 
 . d r o p l e f t   . d r o p d o w n - t o g g l e : : b e f o r e   { 
 
     v e r t i c a l - a l i g n :   0 ; 
 
 } 
 
 
 
 . d r o p d o w n - m e n u [ x - p l a c e m e n t ^ = " t o p " ] ,   . d r o p d o w n - m e n u [ x - p l a c e m e n t ^ = " r i g h t " ] ,   . d r o p d o w n - m e n u [ x - p l a c e m e n t ^ = " b o t t o m " ] ,   . d r o p d o w n - m e n u [ x - p l a c e m e n t ^ = " l e f t " ]   { 
 
     r i g h t :   a u t o ; 
 
     b o t t o m :   a u t o ; 
 
 } 
 
 
 
 . d r o p d o w n - d i v i d e r   { 
 
     h e i g h t :   0 ; 
 
     m a r g i n :   0 . 5 r e m   0 ; 
 
     o v e r f l o w :   h i d d e n ; 
 
     b o r d e r - t o p :   1 p x   s o l i d   # e 9 e c e f ; 
 
 } 
 
 
 
 . d r o p d o w n - i t e m   { 
 
     d i s p l a y :   b l o c k ; 
 
     w i d t h :   1 0 0 % ; 
 
     p a d d i n g :   0 . 2 5 r e m   1 . 5 r e m ; 
 
     c l e a r :   b o t h ; 
 
     f o n t - w e i g h t :   4 0 0 ; 
 
     c o l o r :   # 2 1 2 5 2 9 ; 
 
     t e x t - a l i g n :   i n h e r i t ; 
 
     w h i t e - s p a c e :   n o w r a p ; 
 
     b a c k g r o u n d - c o l o r :   t r a n s p a r e n t ; 
 
     b o r d e r :   0 ; 
 
 } 
 
 
 
 . d r o p d o w n - i t e m : h o v e r ,   . d r o p d o w n - i t e m : f o c u s   { 
 
     c o l o r :   # 1 6 1 8 1 b ; 
 
     t e x t - d e c o r a t i o n :   n o n e ; 
 
     b a c k g r o u n d - c o l o r :   # f 8 f 9 f a ; 
 
 } 
 
 
 
 . d r o p d o w n - i t e m . a c t i v e ,   . d r o p d o w n - i t e m : a c t i v e   { 
 
     c o l o r :   # f f f ; 
 
     t e x t - d e c o r a t i o n :   n o n e ; 
 
     b a c k g r o u n d - c o l o r :   # 0 0 7 b f f ; 
 
 } 
 
 
 
 . d r o p d o w n - i t e m . d i s a b l e d ,   . d r o p d o w n - i t e m : d i s a b l e d   { 
 
     c o l o r :   # 6 c 7 5 7 d ; 
 
     p o i n t e r - e v e n t s :   n o n e ; 
 
     b a c k g r o u n d - c o l o r :   t r a n s p a r e n t ; 
 
 } 
 
 
 
 . d r o p d o w n - m e n u . s h o w   { 
 
     d i s p l a y :   b l o c k ; 
 
 } 
 
 
 
 . d r o p d o w n - h e a d e r   { 
 
     d i s p l a y :   b l o c k ; 
 
     p a d d i n g :   0 . 5 r e m   1 . 5 r e m ; 
 
     m a r g i n - b o t t o m :   0 ; 
 
     f o n t - s i z e :   0 . 8 7 5 r e m ; 
 
     c o l o r :   # 6 c 7 5 7 d ; 
 
     w h i t e - s p a c e :   n o w r a p ; 
 
 } 
 
 
 
 . d r o p d o w n - i t e m - t e x t   { 
 
     d i s p l a y :   b l o c k ; 
 
     p a d d i n g :   0 . 2 5 r e m   1 . 5 r e m ; 
 
     c o l o r :   # 2 1 2 5 2 9 ; 
 
 } 
 
 
 
 . b t n - g r o u p , 
 
 . b t n - g r o u p - v e r t i c a l   { 
 
     p o s i t i o n :   r e l a t i v e ; 
 
     d i s p l a y :   - m s - i n l i n e - f l e x b o x ; 
 
     d i s p l a y :   i n l i n e - f l e x ; 
 
     v e r t i c a l - a l i g n :   m i d d l e ; 
 
 } 
 
 
 
 . b t n - g r o u p   >   . b t n , 
 
 . b t n - g r o u p - v e r t i c a l   >   . b t n   { 
 
     p o s i t i o n :   r e l a t i v e ; 
 
     - m s - f l e x :   1   1   a u t o ; 
 
     f l e x :   1   1   a u t o ; 
 
 } 
 
 
 
 . b t n - g r o u p   >   . b t n : h o v e r , 
 
 . b t n - g r o u p - v e r t i c a l   >   . b t n : h o v e r   { 
 
     z - i n d e x :   1 ; 
 
 } 
 
 
 
 . b t n - g r o u p   >   . b t n : f o c u s ,   . b t n - g r o u p   >   . b t n : a c t i v e ,   . b t n - g r o u p   >   . b t n . a c t i v e , 
 
 . b t n - g r o u p - v e r t i c a l   >   . b t n : f o c u s , 
 
 . b t n - g r o u p - v e r t i c a l   >   . b t n : a c t i v e , 
 
 . b t n - g r o u p - v e r t i c a l   >   . b t n . a c t i v e   { 
 
     z - i n d e x :   1 ; 
 
 } 
 
 
 
 . b t n - t o o l b a r   { 
 
     d i s p l a y :   - m s - f l e x b o x ; 
 
     d i s p l a y :   f l e x ; 
 
     - m s - f l e x - w r a p :   w r a p ; 
 
     f l e x - w r a p :   w r a p ; 
 
     - m s - f l e x - p a c k :   s t a r t ; 
 
     j u s t i f y - c o n t e n t :   f l e x - s t a r t ; 
 
 } 
 
 
 
 . b t n - t o o l b a r   . i n p u t - g r o u p   { 
 
     w i d t h :   a u t o ; 
 
 } 
 
 
 
 . b t n - g r o u p   >   . b t n : n o t ( : f i r s t - c h i l d ) , 
 
 . b t n - g r o u p   >   . b t n - g r o u p : n o t ( : f i r s t - c h i l d )   { 
 
     m a r g i n - l e f t :   - 1 p x ; 
 
 } 
 
 
 
 . b t n - g r o u p   >   . b t n : n o t ( : l a s t - c h i l d ) : n o t ( . d r o p d o w n - t o g g l e ) , 
 
 . b t n - g r o u p   >   . b t n - g r o u p : n o t ( : l a s t - c h i l d )   >   . b t n   { 
 
     b o r d e r - t o p - r i g h t - r a d i u s :   0 ; 
 
     b o r d e r - b o t t o m - r i g h t - r a d i u s :   0 ; 
 
 } 
 
 
 
 . b t n - g r o u p   >   . b t n : n o t ( : f i r s t - c h i l d ) , 
 
 . b t n - g r o u p   >   . b t n - g r o u p : n o t ( : f i r s t - c h i l d )   >   . b t n   { 
 
     b o r d e r - t o p - l e f t - r a d i u s :   0 ; 
 
     b o r d e r - b o t t o m - l e f t - r a d i u s :   0 ; 
 
 } 
 
 
 
 . d r o p d o w n - t o g g l e - s p l i t   { 
 
     p a d d i n g - r i g h t :   0 . 5 6 2 5 r e m ; 
 
     p a d d i n g - l e f t :   0 . 5 6 2 5 r e m ; 
 
 } 
 
 
 
 . d r o p d o w n - t o g g l e - s p l i t : : a f t e r , 
 
 . d r o p u p   . d r o p d o w n - t o g g l e - s p l i t : : a f t e r , 
 
 . d r o p r i g h t   . d r o p d o w n - t o g g l e - s p l i t : : a f t e r   { 
 
     m a r g i n - l e f t :   0 ; 
 
 } 
 
 
 
 . d r o p l e f t   . d r o p d o w n - t o g g l e - s p l i t : : b e f o r e   { 
 
     m a r g i n - r i g h t :   0 ; 
 
 } 
 
 
 
 . b t n - s m   +   . d r o p d o w n - t o g g l e - s p l i t ,   . b t n - g r o u p - s m   >   . b t n   +   . d r o p d o w n - t o g g l e - s p l i t   { 
 
     p a d d i n g - r i g h t :   0 . 3 7 5 r e m ; 
 
     p a d d i n g - l e f t :   0 . 3 7 5 r e m ; 
 
 } 
 
 
 
 . b t n - l g   +   . d r o p d o w n - t o g g l e - s p l i t ,   . b t n - g r o u p - l g   >   . b t n   +   . d r o p d o w n - t o g g l e - s p l i t   { 
 
     p a d d i n g - r i g h t :   0 . 7 5 r e m ; 
 
     p a d d i n g - l e f t :   0 . 7 5 r e m ; 
 
 } 
 
 
 
 . b t n - g r o u p - v e r t i c a l   { 
 
     - m s - f l e x - d i r e c t i o n :   c o l u m n ; 
 
     f l e x - d i r e c t i o n :   c o l u m n ; 
 
     - m s - f l e x - a l i g n :   s t a r t ; 
 
     a l i g n - i t e m s :   f l e x - s t a r t ; 
 
     - m s - f l e x - p a c k :   c e n t e r ; 
 
     j u s t i f y - c o n t e n t :   c e n t e r ; 
 
 } 
 
 
 
 . b t n - g r o u p - v e r t i c a l   >   . b t n , 
 
 . b t n - g r o u p - v e r t i c a l   >   . b t n - g r o u p   { 
 
     w i d t h :   1 0 0 % ; 
 
 } 
 
 
 
 . b t n - g r o u p - v e r t i c a l   >   . b t n : n o t ( : f i r s t - c h i l d ) , 
 
 . b t n - g r o u p - v e r t i c a l   >   . b t n - g r o u p : n o t ( : f i r s t - c h i l d )   { 
 
     m a r g i n - t o p :   - 1 p x ; 
 
 } 
 
 
 
 . b t n - g r o u p - v e r t i c a l   >   . b t n : n o t ( : l a s t - c h i l d ) : n o t ( . d r o p d o w n - t o g g l e ) , 
 
 . b t n - g r o u p - v e r t i c a l   >   . b t n - g r o u p : n o t ( : l a s t - c h i l d )   >   . b t n   { 
 
     b o r d e r - b o t t o m - r i g h t - r a d i u s :   0 ; 
 
     b o r d e r - b o t t o m - l e f t - r a d i u s :   0 ; 
 
 } 
 
 
 
 . b t n - g r o u p - v e r t i c a l   >   . b t n : n o t ( : f i r s t - c h i l d ) , 
 
 . b t n - g r o u p - v e r t i c a l   >   . b t n - g r o u p : n o t ( : f i r s t - c h i l d )   >   . b t n   { 
 
     b o r d e r - t o p - l e f t - r a d i u s :   0 ; 
 
     b o r d e r - t o p - r i g h t - r a d i u s :   0 ; 
 
 } 
 
 
 
 . b t n - g r o u p - t o g g l e   >   . b t n , 
 
 . b t n - g r o u p - t o g g l e   >   . b t n - g r o u p   >   . b t n   { 
 
     m a r g i n - b o t t o m :   0 ; 
 
 } 
 
 
 
 . b t n - g r o u p - t o g g l e   >   . b t n   i n p u t [ t y p e = " r a d i o " ] , 
 
 . b t n - g r o u p - t o g g l e   >   . b t n   i n p u t [ t y p e = " c h e c k b o x " ] , 
 
 . b t n - g r o u p - t o g g l e   >   . b t n - g r o u p   >   . b t n   i n p u t [ t y p e = " r a d i o " ] , 
 
 . b t n - g r o u p - t o g g l e   >   . b t n - g r o u p   >   . b t n   i n p u t [ t y p e = " c h e c k b o x " ]   { 
 
     p o s i t i o n :   a b s o l u t e ; 
 
     c l i p :   r e c t ( 0 ,   0 ,   0 ,   0 ) ; 
 
     p o i n t e r - e v e n t s :   n o n e ; 
 
 } 
 
 
 
 . i n p u t - g r o u p   { 
 
     p o s i t i o n :   r e l a t i v e ; 
 
     d i s p l a y :   - m s - f l e x b o x ; 
 
     d i s p l a y :   f l e x ; 
 
     - m s - f l e x - w r a p :   w r a p ; 
 
     f l e x - w r a p :   w r a p ; 
 
     - m s - f l e x - a l i g n :   s t r e t c h ; 
 
     a l i g n - i t e m s :   s t r e t c h ; 
 
     w i d t h :   1 0 0 % ; 
 
 } 
 
 
 
 . i n p u t - g r o u p   >   . f o r m - c o n t r o l , 
 
 . i n p u t - g r o u p   >   . f o r m - c o n t r o l - p l a i n t e x t , 
 
 . i n p u t - g r o u p   >   . c u s t o m - s e l e c t , 
 
 . i n p u t - g r o u p   >   . c u s t o m - f i l e   { 
 
     p o s i t i o n :   r e l a t i v e ; 
 
     - m s - f l e x :   1   1   a u t o ; 
 
     f l e x :   1   1   a u t o ; 
 
     w i d t h :   1 % ; 
 
     m a r g i n - b o t t o m :   0 ; 
 
 } 
 
 
 
 . i n p u t - g r o u p   >   . f o r m - c o n t r o l   +   . f o r m - c o n t r o l , 
 
 . i n p u t - g r o u p   >   . f o r m - c o n t r o l   +   . c u s t o m - s e l e c t , 
 
 . i n p u t - g r o u p   >   . f o r m - c o n t r o l   +   . c u s t o m - f i l e , 
 
 . i n p u t - g r o u p   >   . f o r m - c o n t r o l - p l a i n t e x t   +   . f o r m - c o n t r o l , 
 
 . i n p u t - g r o u p   >   . f o r m - c o n t r o l - p l a i n t e x t   +   . c u s t o m - s e l e c t , 
 
 . i n p u t - g r o u p   >   . f o r m - c o n t r o l - p l a i n t e x t   +   . c u s t o m - f i l e , 
 
 . i n p u t - g r o u p   >   . c u s t o m - s e l e c t   +   . f o r m - c o n t r o l , 
 
 . i n p u t - g r o u p   >   . c u s t o m - s e l e c t   +   . c u s t o m - s e l e c t , 
 
 . i n p u t - g r o u p   >   . c u s t o m - s e l e c t   +   . c u s t o m - f i l e , 
 
 . i n p u t - g r o u p   >   . c u s t o m - f i l e   +   . f o r m - c o n t r o l , 
 
 . i n p u t - g r o u p   >   . c u s t o m - f i l e   +   . c u s t o m - s e l e c t , 
 
 . i n p u t - g r o u p   >   . c u s t o m - f i l e   +   . c u s t o m - f i l e   { 
 
     m a r g i n - l e f t :   - 1 p x ; 
 
 } 
 
 
 
 . i n p u t - g r o u p   >   . f o r m - c o n t r o l : f o c u s , 
 
 . i n p u t - g r o u p   >   . c u s t o m - s e l e c t : f o c u s , 
 
 . i n p u t - g r o u p   >   . c u s t o m - f i l e   . c u s t o m - f i l e - i n p u t : f o c u s   ~   . c u s t o m - f i l e - l a b e l   { 
 
     z - i n d e x :   3 ; 
 
 } 
 
 
 
 . i n p u t - g r o u p   >   . c u s t o m - f i l e   . c u s t o m - f i l e - i n p u t : f o c u s   { 
 
     z - i n d e x :   4 ; 
 
 } 
 
 
 
 . i n p u t - g r o u p   >   . f o r m - c o n t r o l : n o t ( : l a s t - c h i l d ) , 
 
 . i n p u t - g r o u p   >   . c u s t o m - s e l e c t : n o t ( : l a s t - c h i l d )   { 
 
     b o r d e r - t o p - r i g h t - r a d i u s :   0 ; 
 
     b o r d e r - b o t t o m - r i g h t - r a d i u s :   0 ; 
 
 } 
 
 
 
 . i n p u t - g r o u p   >   . f o r m - c o n t r o l : n o t ( : f i r s t - c h i l d ) , 
 
 . i n p u t - g r o u p   >   . c u s t o m - s e l e c t : n o t ( : f i r s t - c h i l d )   { 
 
     b o r d e r - t o p - l e f t - r a d i u s :   0 ; 
 
     b o r d e r - b o t t o m - l e f t - r a d i u s :   0 ; 
 
 } 
 
 
 
 . i n p u t - g r o u p   >   . c u s t o m - f i l e   { 
 
     d i s p l a y :   - m s - f l e x b o x ; 
 
     d i s p l a y :   f l e x ; 
 
     - m s - f l e x - a l i g n :   c e n t e r ; 
 
     a l i g n - i t e m s :   c e n t e r ; 
 
 } 
 
 
 
 . i n p u t - g r o u p   >   . c u s t o m - f i l e : n o t ( : l a s t - c h i l d )   . c u s t o m - f i l e - l a b e l , 
 
 . i n p u t - g r o u p   >   . c u s t o m - f i l e : n o t ( : l a s t - c h i l d )   . c u s t o m - f i l e - l a b e l : : a f t e r   { 
 
     b o r d e r - t o p - r i g h t - r a d i u s :   0 ; 
 
     b o r d e r - b o t t o m - r i g h t - r a d i u s :   0 ; 
 
 } 
 
 
 
 . i n p u t - g r o u p   >   . c u s t o m - f i l e : n o t ( : f i r s t - c h i l d )   . c u s t o m - f i l e - l a b e l   { 
 
     b o r d e r - t o p - l e f t - r a d i u s :   0 ; 
 
     b o r d e r - b o t t o m - l e f t - r a d i u s :   0 ; 
 
 } 
 
 
 
 . i n p u t - g r o u p - p r e p e n d , 
 
 . i n p u t - g r o u p - a p p e n d   { 
 
     d i s p l a y :   - m s - f l e x b o x ; 
 
     d i s p l a y :   f l e x ; 
 
 } 
 
 
 
 . i n p u t - g r o u p - p r e p e n d   . b t n , 
 
 . i n p u t - g r o u p - a p p e n d   . b t n   { 
 
     p o s i t i o n :   r e l a t i v e ; 
 
     z - i n d e x :   2 ; 
 
 } 
 
 
 
 . i n p u t - g r o u p - p r e p e n d   . b t n : f o c u s , 
 
 . i n p u t - g r o u p - a p p e n d   . b t n : f o c u s   { 
 
     z - i n d e x :   3 ; 
 
 } 
 
 
 
 . i n p u t - g r o u p - p r e p e n d   . b t n   +   . b t n , 
 
 . i n p u t - g r o u p - p r e p e n d   . b t n   +   . i n p u t - g r o u p - t e x t , 
 
 . i n p u t - g r o u p - p r e p e n d   . i n p u t - g r o u p - t e x t   +   . i n p u t - g r o u p - t e x t , 
 
 . i n p u t - g r o u p - p r e p e n d   . i n p u t - g r o u p - t e x t   +   . b t n , 
 
 . i n p u t - g r o u p - a p p e n d   . b t n   +   . b t n , 
 
 . i n p u t - g r o u p - a p p e n d   . b t n   +   . i n p u t - g r o u p - t e x t , 
 
 . i n p u t - g r o u p - a p p e n d   . i n p u t - g r o u p - t e x t   +   . i n p u t - g r o u p - t e x t , 
 
 . i n p u t - g r o u p - a p p e n d   . i n p u t - g r o u p - t e x t   +   . b t n   { 
 
     m a r g i n - l e f t :   - 1 p x ; 
 
 } 
 
 
 
 . i n p u t - g r o u p - p r e p e n d   { 
 
     m a r g i n - r i g h t :   - 1 p x ; 
 
 } 
 
 
 
 . i n p u t - g r o u p - a p p e n d   { 
 
     m a r g i n - l e f t :   - 1 p x ; 
 
 } 
 
 
 
 . i n p u t - g r o u p - t e x t   { 
 
     d i s p l a y :   - m s - f l e x b o x ; 
 
     d i s p l a y :   f l e x ; 
 
     - m s - f l e x - a l i g n :   c e n t e r ; 
 
     a l i g n - i t e m s :   c e n t e r ; 
 
     p a d d i n g :   0 . 3 7 5 r e m   0 . 7 5 r e m ; 
 
     m a r g i n - b o t t o m :   0 ; 
 
     f o n t - s i z e :   1 r e m ; 
 
     f o n t - w e i g h t :   4 0 0 ; 
 
     l i n e - h e i g h t :   1 . 5 ; 
 
     c o l o r :   # 4 9 5 0 5 7 ; 
 
     t e x t - a l i g n :   c e n t e r ; 
 
     w h i t e - s p a c e :   n o w r a p ; 
 
     b a c k g r o u n d - c o l o r :   # e 9 e c e f ; 
 
     b o r d e r :   1 p x   s o l i d   # c e d 4 d a ; 
 
     b o r d e r - r a d i u s :   0 . 2 5 r e m ; 
 
 } 
 
 
 
 . i n p u t - g r o u p - t e x t   i n p u t [ t y p e = " r a d i o " ] , 
 
 . i n p u t - g r o u p - t e x t   i n p u t [ t y p e = " c h e c k b o x " ]   { 
 
     m a r g i n - t o p :   0 ; 
 
 } 
 
 
 
 . i n p u t - g r o u p - l g   >   . f o r m - c o n t r o l : n o t ( t e x t a r e a ) , 
 
 . i n p u t - g r o u p - l g   >   . c u s t o m - s e l e c t   { 
 
     h e i g h t :   c a l c ( 1 . 5 e m   +   1 r e m   +   2 p x ) ; 
 
 } 
 
 
 
 . i n p u t - g r o u p - l g   >   . f o r m - c o n t r o l , 
 
 . i n p u t - g r o u p - l g   >   . c u s t o m - s e l e c t , 
 
 . i n p u t - g r o u p - l g   >   . i n p u t - g r o u p - p r e p e n d   >   . i n p u t - g r o u p - t e x t , 
 
 . i n p u t - g r o u p - l g   >   . i n p u t - g r o u p - a p p e n d   >   . i n p u t - g r o u p - t e x t , 
 
 . i n p u t - g r o u p - l g   >   . i n p u t - g r o u p - p r e p e n d   >   . b t n , 
 
 . i n p u t - g r o u p - l g   >   . i n p u t - g r o u p - a p p e n d   >   . b t n   { 
 
     p a d d i n g :   0 . 5 r e m   1 r e m ; 
 
     f o n t - s i z e :   1 . 2 5 r e m ; 
 
     l i n e - h e i g h t :   1 . 5 ; 
 
     b o r d e r - r a d i u s :   0 . 3 r e m ; 
 
 } 
 
 
 
 . i n p u t - g r o u p - s m   >   . f o r m - c o n t r o l : n o t ( t e x t a r e a ) , 
 
 . i n p u t - g r o u p - s m   >   . c u s t o m - s e l e c t   { 
 
     h e i g h t :   c a l c ( 1 . 5 e m   +   0 . 5 r e m   +   2 p x ) ; 
 
 } 
 
 
 
 . i n p u t - g r o u p - s m   >   . f o r m - c o n t r o l , 
 
 . i n p u t - g r o u p - s m   >   . c u s t o m - s e l e c t , 
 
 . i n p u t - g r o u p - s m   >   . i n p u t - g r o u p - p r e p e n d   >   . i n p u t - g r o u p - t e x t , 
 
 . i n p u t - g r o u p - s m   >   . i n p u t - g r o u p - a p p e n d   >   . i n p u t - g r o u p - t e x t , 
 
 . i n p u t - g r o u p - s m   >   . i n p u t - g r o u p - p r e p e n d   >   . b t n , 
 
 . i n p u t - g r o u p - s m   >   . i n p u t - g r o u p - a p p e n d   >   . b t n   { 
 
     p a d d i n g :   0 . 2 5 r e m   0 . 5 r e m ; 
 
     f o n t - s i z e :   0 . 8 7 5 r e m ; 
 
     l i n e - h e i g h t :   1 . 5 ; 
 
     b o r d e r - r a d i u s :   0 . 2 r e m ; 
 
 } 
 
 
 
 . i n p u t - g r o u p - l g   >   . c u s t o m - s e l e c t , 
 
 . i n p u t - g r o u p - s m   >   . c u s t o m - s e l e c t   { 
 
     p a d d i n g - r i g h t :   1 . 7 5 r e m ; 
 
 } 
 
 
 
 . i n p u t - g r o u p   >   . i n p u t - g r o u p - p r e p e n d   >   . b t n , 
 
 . i n p u t - g r o u p   >   . i n p u t - g r o u p - p r e p e n d   >   . i n p u t - g r o u p - t e x t , 
 
 . i n p u t - g r o u p   >   . i n p u t - g r o u p - a p p e n d : n o t ( : l a s t - c h i l d )   >   . b t n , 
 
 . i n p u t - g r o u p   >   . i n p u t - g r o u p - a p p e n d : n o t ( : l a s t - c h i l d )   >   . i n p u t - g r o u p - t e x t , 
 
 . i n p u t - g r o u p   >   . i n p u t - g r o u p - a p p e n d : l a s t - c h i l d   >   . b t n : n o t ( : l a s t - c h i l d ) : n o t ( . d r o p d o w n - t o g g l e ) , 
 
 . i n p u t - g r o u p   >   . i n p u t - g r o u p - a p p e n d : l a s t - c h i l d   >   . i n p u t - g r o u p - t e x t : n o t ( : l a s t - c h i l d )   { 
 
     b o r d e r - t o p - r i g h t - r a d i u s :   0 ; 
 
     b o r d e r - b o t t o m - r i g h t - r a d i u s :   0 ; 
 
 } 
 
 
 
 . i n p u t - g r o u p   >   . i n p u t - g r o u p - a p p e n d   >   . b t n , 
 
 . i n p u t - g r o u p   >   . i n p u t - g r o u p - a p p e n d   >   . i n p u t - g r o u p - t e x t , 
 
 . i n p u t - g r o u p   >   . i n p u t - g r o u p - p r e p e n d : n o t ( : f i r s t - c h i l d )   >   . b t n , 
 
 . i n p u t - g r o u p   >   . i n p u t - g r o u p - p r e p e n d : n o t ( : f i r s t - c h i l d )   >   . i n p u t - g r o u p - t e x t , 
 
 . i n p u t - g r o u p   >   . i n p u t - g r o u p - p r e p e n d : f i r s t - c h i l d   >   . b t n : n o t ( : f i r s t - c h i l d ) , 
 
 . i n p u t - g r o u p   >   . i n p u t - g r o u p - p r e p e n d : f i r s t - c h i l d   >   . i n p u t - g r o u p - t e x t : n o t ( : f i r s t - c h i l d )   { 
 
     b o r d e r - t o p - l e f t - r a d i u s :   0 ; 
 
     b o r d e r - b o t t o m - l e f t - r a d i u s :   0 ; 
 
 } 
 
 
 
 . c u s t o m - c o n t r o l   { 
 
     p o s i t i o n :   r e l a t i v e ; 
 
     d i s p l a y :   b l o c k ; 
 
     m i n - h e i g h t :   1 . 5 r e m ; 
 
     p a d d i n g - l e f t :   1 . 5 r e m ; 
 
 } 
 
 
 
 . c u s t o m - c o n t r o l - i n l i n e   { 
 
     d i s p l a y :   - m s - i n l i n e - f l e x b o x ; 
 
     d i s p l a y :   i n l i n e - f l e x ; 
 
     m a r g i n - r i g h t :   1 r e m ; 
 
 } 
 
 
 
 . c u s t o m - c o n t r o l - i n p u t   { 
 
     p o s i t i o n :   a b s o l u t e ; 
 
     z - i n d e x :   - 1 ; 
 
     o p a c i t y :   0 ; 
 
 } 
 
 
 
 . c u s t o m - c o n t r o l - i n p u t : c h e c k e d   ~   . c u s t o m - c o n t r o l - l a b e l : : b e f o r e   { 
 
     c o l o r :   # f f f ; 
 
     b o r d e r - c o l o r :   # 0 0 7 b f f ; 
 
     b a c k g r o u n d - c o l o r :   # 0 0 7 b f f ; 
 
 } 
 
 
 
 . c u s t o m - c o n t r o l - i n p u t : f o c u s   ~   . c u s t o m - c o n t r o l - l a b e l : : b e f o r e   { 
 
     b o x - s h a d o w :   0   0   0   0 . 2 r e m   r g b a ( 0 ,   1 2 3 ,   2 5 5 ,   0 . 2 5 ) ; 
 
 } 
 
 
 
 . c u s t o m - c o n t r o l - i n p u t : f o c u s : n o t ( : c h e c k e d )   ~   . c u s t o m - c o n t r o l - l a b e l : : b e f o r e   { 
 
     b o r d e r - c o l o r :   # 8 0 b d f f ; 
 
 } 
 
 
 
 . c u s t o m - c o n t r o l - i n p u t : n o t ( : d i s a b l e d ) : a c t i v e   ~   . c u s t o m - c o n t r o l - l a b e l : : b e f o r e   { 
 
     c o l o r :   # f f f ; 
 
     b a c k g r o u n d - c o l o r :   # b 3 d 7 f f ; 
 
     b o r d e r - c o l o r :   # b 3 d 7 f f ; 
 
 } 
 
 
 
 . c u s t o m - c o n t r o l - i n p u t : d i s a b l e d   ~   . c u s t o m - c o n t r o l - l a b e l   { 
 
     c o l o r :   # 6 c 7 5 7 d ; 
 
 } 
 
 
 
 . c u s t o m - c o n t r o l - i n p u t : d i s a b l e d   ~   . c u s t o m - c o n t r o l - l a b e l : : b e f o r e   { 
 
     b a c k g r o u n d - c o l o r :   # e 9 e c e f ; 
 
 } 
 
 
 
 . c u s t o m - c o n t r o l - l a b e l   { 
 
     p o s i t i o n :   r e l a t i v e ; 
 
     m a r g i n - b o t t o m :   0 ; 
 
     v e r t i c a l - a l i g n :   t o p ; 
 
 } 
 
 
 
 . c u s t o m - c o n t r o l - l a b e l : : b e f o r e   { 
 
     p o s i t i o n :   a b s o l u t e ; 
 
     t o p :   0 . 2 5 r e m ; 
 
     l e f t :   - 1 . 5 r e m ; 
 
     d i s p l a y :   b l o c k ; 
 
     w i d t h :   1 r e m ; 
 
     h e i g h t :   1 r e m ; 
 
     p o i n t e r - e v e n t s :   n o n e ; 
 
     c o n t e n t :   " " ; 
 
     b a c k g r o u n d - c o l o r :   # f f f ; 
 
     b o r d e r :   # a d b 5 b d   s o l i d   1 p x ; 
 
 } 
 
 
 
 . c u s t o m - c o n t r o l - l a b e l : : a f t e r   { 
 
     p o s i t i o n :   a b s o l u t e ; 
 
     t o p :   0 . 2 5 r e m ; 
 
     l e f t :   - 1 . 5 r e m ; 
 
     d i s p l a y :   b l o c k ; 
 
     w i d t h :   1 r e m ; 
 
     h e i g h t :   1 r e m ; 
 
     c o n t e n t :   " " ; 
 
     b a c k g r o u n d :   n o - r e p e a t   5 0 %   /   5 0 %   5 0 % ; 
 
 } 
 
 
 
 . c u s t o m - c h e c k b o x   . c u s t o m - c o n t r o l - l a b e l : : b e f o r e   { 
 
     b o r d e r - r a d i u s :   0 . 2 5 r e m ; 
 
 } 
 
 
 
 . c u s t o m - c h e c k b o x   . c u s t o m - c o n t r o l - i n p u t : c h e c k e d   ~   . c u s t o m - c o n t r o l - l a b e l : : a f t e r   { 
 
     b a c k g r o u n d - i m a g e :   u r l ( " d a t a : i m a g e / s v g + x m l , % 3 c s v g   x m l n s = ' h t t p : / / w w w . w 3 . o r g / 2 0 0 0 / s v g '   v i e w B o x = ' 0   0   8   8 ' % 3 e % 3 c p a t h   f i l l = ' % 2 3 f f f '   d = ' M 6 . 5 6 4 . 7 5 l - 3 . 5 9   3 . 6 1 2 - 1 . 5 3 8 - 1 . 5 5 L 0   4 . 2 6   2 . 9 7 4   7 . 2 5   8   2 . 1 9 3 z ' / % 3 e % 3 c / s v g % 3 e " ) ; 
 
 } 
 
 
 
 . c u s t o m - c h e c k b o x   . c u s t o m - c o n t r o l - i n p u t : i n d e t e r m i n a t e   ~   . c u s t o m - c o n t r o l - l a b e l : : b e f o r e   { 
 
     b o r d e r - c o l o r :   # 0 0 7 b f f ; 
 
     b a c k g r o u n d - c o l o r :   # 0 0 7 b f f ; 
 
 } 
 
 
 
 . c u s t o m - c h e c k b o x   . c u s t o m - c o n t r o l - i n p u t : i n d e t e r m i n a t e   ~   . c u s t o m - c o n t r o l - l a b e l : : a f t e r   { 
 
     b a c k g r o u n d - i m a g e :   u r l ( " d a t a : i m a g e / s v g + x m l , % 3 c s v g   x m l n s = ' h t t p : / / w w w . w 3 . o r g / 2 0 0 0 / s v g '   v i e w B o x = ' 0   0   4   4 ' % 3 e % 3 c p a t h   s t r o k e = ' % 2 3 f f f '   d = ' M 0   2 h 4 ' / % 3 e % 3 c / s v g % 3 e " ) ; 
 
 } 
 
 
 
 . c u s t o m - c h e c k b o x   . c u s t o m - c o n t r o l - i n p u t : d i s a b l e d : c h e c k e d   ~   . c u s t o m - c o n t r o l - l a b e l : : b e f o r e   { 
 
     b a c k g r o u n d - c o l o r :   r g b a ( 0 ,   1 2 3 ,   2 5 5 ,   0 . 5 ) ; 
 
 } 
 
 
 
 . c u s t o m - c h e c k b o x   . c u s t o m - c o n t r o l - i n p u t : d i s a b l e d : i n d e t e r m i n a t e   ~   . c u s t o m - c o n t r o l - l a b e l : : b e f o r e   { 
 
     b a c k g r o u n d - c o l o r :   r g b a ( 0 ,   1 2 3 ,   2 5 5 ,   0 . 5 ) ; 
 
 } 
 
 
 
 . c u s t o m - r a d i o   . c u s t o m - c o n t r o l - l a b e l : : b e f o r e   { 
 
     b o r d e r - r a d i u s :   5 0 % ; 
 
 } 
 
 
 
 . c u s t o m - r a d i o   . c u s t o m - c o n t r o l - i n p u t : c h e c k e d   ~   . c u s t o m - c o n t r o l - l a b e l : : a f t e r   { 
 
     b a c k g r o u n d - i m a g e :   u r l ( " d a t a : i m a g e / s v g + x m l , % 3 c s v g   x m l n s = ' h t t p : / / w w w . w 3 . o r g / 2 0 0 0 / s v g '   v i e w B o x = ' - 4   - 4   8   8 ' % 3 e % 3 c c i r c l e   r = ' 3 '   f i l l = ' % 2 3 f f f ' / % 3 e % 3 c / s v g % 3 e " ) ; 
 
 } 
 
 
 
 . c u s t o m - r a d i o   . c u s t o m - c o n t r o l - i n p u t : d i s a b l e d : c h e c k e d   ~   . c u s t o m - c o n t r o l - l a b e l : : b e f o r e   { 
 
     b a c k g r o u n d - c o l o r :   r g b a ( 0 ,   1 2 3 ,   2 5 5 ,   0 . 5 ) ; 
 
 } 
 
 
 
 . c u s t o m - s w i t c h   { 
 
     p a d d i n g - l e f t :   2 . 2 5 r e m ; 
 
 } 
 
 
 
 . c u s t o m - s w i t c h   . c u s t o m - c o n t r o l - l a b e l : : b e f o r e   { 
 
     l e f t :   - 2 . 2 5 r e m ; 
 
     w i d t h :   1 . 7 5 r e m ; 
 
     p o i n t e r - e v e n t s :   a l l ; 
 
     b o r d e r - r a d i u s :   0 . 5 r e m ; 
 
 } 
 
 
 
 . c u s t o m - s w i t c h   . c u s t o m - c o n t r o l - l a b e l : : a f t e r   { 
 
     t o p :   c a l c ( 0 . 2 5 r e m   +   2 p x ) ; 
 
     l e f t :   c a l c ( - 2 . 2 5 r e m   +   2 p x ) ; 
 
     w i d t h :   c a l c ( 1 r e m   -   4 p x ) ; 
 
     h e i g h t :   c a l c ( 1 r e m   -   4 p x ) ; 
 
     b a c k g r o u n d - c o l o r :   # a d b 5 b d ; 
 
     b o r d e r - r a d i u s :   0 . 5 r e m ; 
 
     t r a n s i t i o n :   b a c k g r o u n d - c o l o r   0 . 1 5 s   e a s e - i n - o u t ,   b o r d e r - c o l o r   0 . 1 5 s   e a s e - i n - o u t ,   b o x - s h a d o w   0 . 1 5 s   e a s e - i n - o u t ,   - w e b k i t - t r a n s f o r m   0 . 1 5 s   e a s e - i n - o u t ; 
 
     t r a n s i t i o n :   t r a n s f o r m   0 . 1 5 s   e a s e - i n - o u t ,   b a c k g r o u n d - c o l o r   0 . 1 5 s   e a s e - i n - o u t ,   b o r d e r - c o l o r   0 . 1 5 s   e a s e - i n - o u t ,   b o x - s h a d o w   0 . 1 5 s   e a s e - i n - o u t ; 
 
     t r a n s i t i o n :   t r a n s f o r m   0 . 1 5 s   e a s e - i n - o u t ,   b a c k g r o u n d - c o l o r   0 . 1 5 s   e a s e - i n - o u t ,   b o r d e r - c o l o r   0 . 1 5 s   e a s e - i n - o u t ,   b o x - s h a d o w   0 . 1 5 s   e a s e - i n - o u t ,   - w e b k i t - t r a n s f o r m   0 . 1 5 s   e a s e - i n - o u t ; 
 
 } 
 
 
 
 @ m e d i a   ( p r e f e r s - r e d u c e d - m o t i o n :   r e d u c e )   { 
 
     . c u s t o m - s w i t c h   . c u s t o m - c o n t r o l - l a b e l : : a f t e r   { 
 
         t r a n s i t i o n :   n o n e ; 
 
     } 
 
 } 
 
 
 
 . c u s t o m - s w i t c h   . c u s t o m - c o n t r o l - i n p u t : c h e c k e d   ~   . c u s t o m - c o n t r o l - l a b e l : : a f t e r   { 
 
     b a c k g r o u n d - c o l o r :   # f f f ; 
 
     - w e b k i t - t r a n s f o r m :   t r a n s l a t e X ( 0 . 7 5 r e m ) ; 
 
     t r a n s f o r m :   t r a n s l a t e X ( 0 . 7 5 r e m ) ; 
 
 } 
 
 
 
 . c u s t o m - s w i t c h   . c u s t o m - c o n t r o l - i n p u t : d i s a b l e d : c h e c k e d   ~   . c u s t o m - c o n t r o l - l a b e l : : b e f o r e   { 
 
     b a c k g r o u n d - c o l o r :   r g b a ( 0 ,   1 2 3 ,   2 5 5 ,   0 . 5 ) ; 
 
 } 
 
 
 
 . c u s t o m - s e l e c t   { 
 
     d i s p l a y :   i n l i n e - b l o c k ; 
 
     w i d t h :   1 0 0 % ; 
 
     h e i g h t :   c a l c ( 1 . 5 e m   +   0 . 7 5 r e m   +   2 p x ) ; 
 
     p a d d i n g :   0 . 3 7 5 r e m   1 . 7 5 r e m   0 . 3 7 5 r e m   0 . 7 5 r e m ; 
 
     f o n t - s i z e :   1 r e m ; 
 
     f o n t - w e i g h t :   4 0 0 ; 
 
     l i n e - h e i g h t :   1 . 5 ; 
 
     c o l o r :   # 4 9 5 0 5 7 ; 
 
     v e r t i c a l - a l i g n :   m i d d l e ; 
 
     b a c k g r o u n d :   u r l ( " d a t a : i m a g e / s v g + x m l , % 3 c s v g   x m l n s = ' h t t p : / / w w w . w 3 . o r g / 2 0 0 0 / s v g '   v i e w B o x = ' 0   0   4   5 ' % 3 e % 3 c p a t h   f i l l = ' % 2 3 3 4 3 a 4 0 '   d = ' M 2   0 L 0   2 h 4 z m 0   5 L 0   3 h 4 z ' / % 3 e % 3 c / s v g % 3 e " )   n o - r e p e a t   r i g h t   0 . 7 5 r e m   c e n t e r / 8 p x   1 0 p x ; 
 
     b a c k g r o u n d - c o l o r :   # f f f ; 
 
     b o r d e r :   1 p x   s o l i d   # c e d 4 d a ; 
 
     b o r d e r - r a d i u s :   0 . 2 5 r e m ; 
 
     - w e b k i t - a p p e a r a n c e :   n o n e ; 
 
     - m o z - a p p e a r a n c e :   n o n e ; 
 
     a p p e a r a n c e :   n o n e ; 
 
 } 
 
 
 
 . c u s t o m - s e l e c t : f o c u s   { 
 
     b o r d e r - c o l o r :   # 8 0 b d f f ; 
 
     o u t l i n e :   0 ; 
 
     b o x - s h a d o w :   0   0   0   0 . 2 r e m   r g b a ( 0 ,   1 2 3 ,   2 5 5 ,   0 . 2 5 ) ; 
 
 } 
 
 
 
 . c u s t o m - s e l e c t : f o c u s : : - m s - v a l u e   { 
 
     c o l o r :   # 4 9 5 0 5 7 ; 
 
     b a c k g r o u n d - c o l o r :   # f f f ; 
 
 } 
 
 
 
 . c u s t o m - s e l e c t [ m u l t i p l e ] ,   . c u s t o m - s e l e c t [ s i z e ] : n o t ( [ s i z e = " 1 " ] )   { 
 
     h e i g h t :   a u t o ; 
 
     p a d d i n g - r i g h t :   0 . 7 5 r e m ; 
 
     b a c k g r o u n d - i m a g e :   n o n e ; 
 
 } 
 
 
 
 . c u s t o m - s e l e c t : d i s a b l e d   { 
 
     c o l o r :   # 6 c 7 5 7 d ; 
 
     b a c k g r o u n d - c o l o r :   # e 9 e c e f ; 
 
 } 
 
 
 
 . c u s t o m - s e l e c t : : - m s - e x p a n d   { 
 
     d i s p l a y :   n o n e ; 
 
 } 
 
 
 
 . c u s t o m - s e l e c t - s m   { 
 
     h e i g h t :   c a l c ( 1 . 5 e m   +   0 . 5 r e m   +   2 p x ) ; 
 
     p a d d i n g - t o p :   0 . 2 5 r e m ; 
 
     p a d d i n g - b o t t o m :   0 . 2 5 r e m ; 
 
     p a d d i n g - l e f t :   0 . 5 r e m ; 
 
     f o n t - s i z e :   0 . 8 7 5 r e m ; 
 
 } 
 
 
 
 . c u s t o m - s e l e c t - l g   { 
 
     h e i g h t :   c a l c ( 1 . 5 e m   +   1 r e m   +   2 p x ) ; 
 
     p a d d i n g - t o p :   0 . 5 r e m ; 
 
     p a d d i n g - b o t t o m :   0 . 5 r e m ; 
 
     p a d d i n g - l e f t :   1 r e m ; 
 
     f o n t - s i z e :   1 . 2 5 r e m ; 
 
 } 
 
 
 
 . c u s t o m - f i l e   { 
 
     p o s i t i o n :   r e l a t i v e ; 
 
     d i s p l a y :   i n l i n e - b l o c k ; 
 
     w i d t h :   1 0 0 % ; 
 
     h e i g h t :   c a l c ( 1 . 5 e m   +   0 . 7 5 r e m   +   2 p x ) ; 
 
     m a r g i n - b o t t o m :   0 ; 
 
 } 
 
 
 
 . c u s t o m - f i l e - i n p u t   { 
 
     p o s i t i o n :   r e l a t i v e ; 
 
     z - i n d e x :   2 ; 
 
     w i d t h :   1 0 0 % ; 
 
     h e i g h t :   c a l c ( 1 . 5 e m   +   0 . 7 5 r e m   +   2 p x ) ; 
 
     m a r g i n :   0 ; 
 
     o p a c i t y :   0 ; 
 
 } 
 
 
 
 . c u s t o m - f i l e - i n p u t : f o c u s   ~   . c u s t o m - f i l e - l a b e l   { 
 
     b o r d e r - c o l o r :   # 8 0 b d f f ; 
 
     b o x - s h a d o w :   0   0   0   0 . 2 r e m   r g b a ( 0 ,   1 2 3 ,   2 5 5 ,   0 . 2 5 ) ; 
 
 } 
 
 
 
 . c u s t o m - f i l e - i n p u t : d i s a b l e d   ~   . c u s t o m - f i l e - l a b e l   { 
 
     b a c k g r o u n d - c o l o r :   # e 9 e c e f ; 
 
 } 
 
 
 
 . c u s t o m - f i l e - i n p u t : l a n g ( e n )   ~   . c u s t o m - f i l e - l a b e l : : a f t e r   { 
 
     c o n t e n t :   " B r o w s e " ; 
 
 } 
 
 
 
 . c u s t o m - f i l e - i n p u t   ~   . c u s t o m - f i l e - l a b e l [ d a t a - b r o w s e ] : : a f t e r   { 
 
     c o n t e n t :   a t t r ( d a t a - b r o w s e ) ; 
 
 } 
 
 
 
 . c u s t o m - f i l e - l a b e l   { 
 
     p o s i t i o n :   a b s o l u t e ; 
 
     t o p :   0 ; 
 
     r i g h t :   0 ; 
 
     l e f t :   0 ; 
 
     z - i n d e x :   1 ; 
 
     h e i g h t :   c a l c ( 1 . 5 e m   +   0 . 7 5 r e m   +   2 p x ) ; 
 
     p a d d i n g :   0 . 3 7 5 r e m   0 . 7 5 r e m ; 
 
     f o n t - w e i g h t :   4 0 0 ; 
 
     l i n e - h e i g h t :   1 . 5 ; 
 
     c o l o r :   # 4 9 5 0 5 7 ; 
 
     b a c k g r o u n d - c o l o r :   # f f f ; 
 
     b o r d e r :   1 p x   s o l i d   # c e d 4 d a ; 
 
     b o r d e r - r a d i u s :   0 . 2 5 r e m ; 
 
 } 
 
 
 
 . c u s t o m - f i l e - l a b e l : : a f t e r   { 
 
     p o s i t i o n :   a b s o l u t e ; 
 
     t o p :   0 ; 
 
     r i g h t :   0 ; 
 
     b o t t o m :   0 ; 
 
     z - i n d e x :   3 ; 
 
     d i s p l a y :   b l o c k ; 
 
     h e i g h t :   c a l c ( 1 . 5 e m   +   0 . 7 5 r e m ) ; 
 
     p a d d i n g :   0 . 3 7 5 r e m   0 . 7 5 r e m ; 
 
     l i n e - h e i g h t :   1 . 5 ; 
 
     c o l o r :   # 4 9 5 0 5 7 ; 
 
     c o n t e n t :   " B r o w s e " ; 
 
     b a c k g r o u n d - c o l o r :   # e 9 e c e f ; 
 
     b o r d e r - l e f t :   i n h e r i t ; 
 
     b o r d e r - r a d i u s :   0   0 . 2 5 r e m   0 . 2 5 r e m   0 ; 
 
 } 
 
 
 
 . c u s t o m - r a n g e   { 
 
     w i d t h :   1 0 0 % ; 
 
     h e i g h t :   c a l c ( 1 r e m   +   0 . 4 r e m ) ; 
 
     p a d d i n g :   0 ; 
 
     b a c k g r o u n d - c o l o r :   t r a n s p a r e n t ; 
 
     - w e b k i t - a p p e a r a n c e :   n o n e ; 
 
     - m o z - a p p e a r a n c e :   n o n e ; 
 
     a p p e a r a n c e :   n o n e ; 
 
 } 
 
 
 
 . c u s t o m - r a n g e : f o c u s   { 
 
     o u t l i n e :   n o n e ; 
 
 } 
 
 
 
 . c u s t o m - r a n g e : f o c u s : : - w e b k i t - s l i d e r - t h u m b   { 
 
     b o x - s h a d o w :   0   0   0   1 p x   # f f f ,   0   0   0   0 . 2 r e m   r g b a ( 0 ,   1 2 3 ,   2 5 5 ,   0 . 2 5 ) ; 
 
 } 
 
 
 
 . c u s t o m - r a n g e : f o c u s : : - m o z - r a n g e - t h u m b   { 
 
     b o x - s h a d o w :   0   0   0   1 p x   # f f f ,   0   0   0   0 . 2 r e m   r g b a ( 0 ,   1 2 3 ,   2 5 5 ,   0 . 2 5 ) ; 
 
 } 
 
 
 
 . c u s t o m - r a n g e : f o c u s : : - m s - t h u m b   { 
 
     b o x - s h a d o w :   0   0   0   1 p x   # f f f ,   0   0   0   0 . 2 r e m   r g b a ( 0 ,   1 2 3 ,   2 5 5 ,   0 . 2 5 ) ; 
 
 } 
 
 
 
 . c u s t o m - r a n g e : : - m o z - f o c u s - o u t e r   { 
 
     b o r d e r :   0 ; 
 
 } 
 
 
 
 . c u s t o m - r a n g e : : - w e b k i t - s l i d e r - t h u m b   { 
 
     w i d t h :   1 r e m ; 
 
     h e i g h t :   1 r e m ; 
 
     m a r g i n - t o p :   - 0 . 2 5 r e m ; 
 
     b a c k g r o u n d - c o l o r :   # 0 0 7 b f f ; 
 
     b o r d e r :   0 ; 
 
     b o r d e r - r a d i u s :   1 r e m ; 
 
     t r a n s i t i o n :   b a c k g r o u n d - c o l o r   0 . 1 5 s   e a s e - i n - o u t ,   b o r d e r - c o l o r   0 . 1 5 s   e a s e - i n - o u t ,   b o x - s h a d o w   0 . 1 5 s   e a s e - i n - o u t ; 
 
     - w e b k i t - a p p e a r a n c e :   n o n e ; 
 
     a p p e a r a n c e :   n o n e ; 
 
 } 
 
 
 
 @ m e d i a   ( p r e f e r s - r e d u c e d - m o t i o n :   r e d u c e )   { 
 
     . c u s t o m - r a n g e : : - w e b k i t - s l i d e r - t h u m b   { 
 
         t r a n s i t i o n :   n o n e ; 
 
     } 
 
 } 
 
 
 
 . c u s t o m - r a n g e : : - w e b k i t - s l i d e r - t h u m b : a c t i v e   { 
 
     b a c k g r o u n d - c o l o r :   # b 3 d 7 f f ; 
 
 } 
 
 
 
 . c u s t o m - r a n g e : : - w e b k i t - s l i d e r - r u n n a b l e - t r a c k   { 
 
     w i d t h :   1 0 0 % ; 
 
     h e i g h t :   0 . 5 r e m ; 
 
     c o l o r :   t r a n s p a r e n t ; 
 
     c u r s o r :   p o i n t e r ; 
 
     b a c k g r o u n d - c o l o r :   # d e e 2 e 6 ; 
 
     b o r d e r - c o l o r :   t r a n s p a r e n t ; 
 
     b o r d e r - r a d i u s :   1 r e m ; 
 
 } 
 
 
 
 . c u s t o m - r a n g e : : - m o z - r a n g e - t h u m b   { 
 
     w i d t h :   1 r e m ; 
 
     h e i g h t :   1 r e m ; 
 
     b a c k g r o u n d - c o l o r :   # 0 0 7 b f f ; 
 
     b o r d e r :   0 ; 
 
     b o r d e r - r a d i u s :   1 r e m ; 
 
     t r a n s i t i o n :   b a c k g r o u n d - c o l o r   0 . 1 5 s   e a s e - i n - o u t ,   b o r d e r - c o l o r   0 . 1 5 s   e a s e - i n - o u t ,   b o x - s h a d o w   0 . 1 5 s   e a s e - i n - o u t ; 
 
     - m o z - a p p e a r a n c e :   n o n e ; 
 
     a p p e a r a n c e :   n o n e ; 
 
 } 
 
 
 
 @ m e d i a   ( p r e f e r s - r e d u c e d - m o t i o n :   r e d u c e )   { 
 
     . c u s t o m - r a n g e : : - m o z - r a n g e - t h u m b   { 
 
         t r a n s i t i o n :   n o n e ; 
 
     } 
 
 } 
 
 
 
 . c u s t o m - r a n g e : : - m o z - r a n g e - t h u m b : a c t i v e   { 
 
     b a c k g r o u n d - c o l o r :   # b 3 d 7 f f ; 
 
 } 
 
 
 
 . c u s t o m - r a n g e : : - m o z - r a n g e - t r a c k   { 
 
     w i d t h :   1 0 0 % ; 
 
     h e i g h t :   0 . 5 r e m ; 
 
     c o l o r :   t r a n s p a r e n t ; 
 
     c u r s o r :   p o i n t e r ; 
 
     b a c k g r o u n d - c o l o r :   # d e e 2 e 6 ; 
 
     b o r d e r - c o l o r :   t r a n s p a r e n t ; 
 
     b o r d e r - r a d i u s :   1 r e m ; 
 
 } 
 
 
 
 . c u s t o m - r a n g e : : - m s - t h u m b   { 
 
     w i d t h :   1 r e m ; 
 
     h e i g h t :   1 r e m ; 
 
     m a r g i n - t o p :   0 ; 
 
     m a r g i n - r i g h t :   0 . 2 r e m ; 
 
     m a r g i n - l e f t :   0 . 2 r e m ; 
 
     b a c k g r o u n d - c o l o r :   # 0 0 7 b f f ; 
 
     b o r d e r :   0 ; 
 
     b o r d e r - r a d i u s :   1 r e m ; 
 
     t r a n s i t i o n :   b a c k g r o u n d - c o l o r   0 . 1 5 s   e a s e - i n - o u t ,   b o r d e r - c o l o r   0 . 1 5 s   e a s e - i n - o u t ,   b o x - s h a d o w   0 . 1 5 s   e a s e - i n - o u t ; 
 
     a p p e a r a n c e :   n o n e ; 
 
 } 
 
 
 
 @ m e d i a   ( p r e f e r s - r e d u c e d - m o t i o n :   r e d u c e )   { 
 
     . c u s t o m - r a n g e : : - m s - t h u m b   { 
 
         t r a n s i t i o n :   n o n e ; 
 
     } 
 
 } 
 
 
 
 . c u s t o m - r a n g e : : - m s - t h u m b : a c t i v e   { 
 
     b a c k g r o u n d - c o l o r :   # b 3 d 7 f f ; 
 
 } 
 
 
 
 . c u s t o m - r a n g e : : - m s - t r a c k   { 
 
     w i d t h :   1 0 0 % ; 
 
     h e i g h t :   0 . 5 r e m ; 
 
     c o l o r :   t r a n s p a r e n t ; 
 
     c u r s o r :   p o i n t e r ; 
 
     b a c k g r o u n d - c o l o r :   t r a n s p a r e n t ; 
 
     b o r d e r - c o l o r :   t r a n s p a r e n t ; 
 
     b o r d e r - w i d t h :   0 . 5 r e m ; 
 
 } 
 
 
 
 . c u s t o m - r a n g e : : - m s - f i l l - l o w e r   { 
 
     b a c k g r o u n d - c o l o r :   # d e e 2 e 6 ; 
 
     b o r d e r - r a d i u s :   1 r e m ; 
 
 } 
 
 
 
 . c u s t o m - r a n g e : : - m s - f i l l - u p p e r   { 
 
     m a r g i n - r i g h t :   1 5 p x ; 
 
     b a c k g r o u n d - c o l o r :   # d e e 2 e 6 ; 
 
     b o r d e r - r a d i u s :   1 r e m ; 
 
 } 
 
 
 
 . c u s t o m - r a n g e : d i s a b l e d : : - w e b k i t - s l i d e r - t h u m b   { 
 
     b a c k g r o u n d - c o l o r :   # a d b 5 b d ; 
 
 } 
 
 
 
 . c u s t o m - r a n g e : d i s a b l e d : : - w e b k i t - s l i d e r - r u n n a b l e - t r a c k   { 
 
     c u r s o r :   d e f a u l t ; 
 
 } 
 
 
 
 . c u s t o m - r a n g e : d i s a b l e d : : - m o z - r a n g e - t h u m b   { 
 
     b a c k g r o u n d - c o l o r :   # a d b 5 b d ; 
 
 } 
 
 
 
 . c u s t o m - r a n g e : d i s a b l e d : : - m o z - r a n g e - t r a c k   { 
 
     c u r s o r :   d e f a u l t ; 
 
 } 
 
 
 
 . c u s t o m - r a n g e : d i s a b l e d : : - m s - t h u m b   { 
 
     b a c k g r o u n d - c o l o r :   # a d b 5 b d ; 
 
 } 
 
 
 
 . c u s t o m - c o n t r o l - l a b e l : : b e f o r e , 
 
 . c u s t o m - f i l e - l a b e l , 
 
 . c u s t o m - s e l e c t   { 
 
     t r a n s i t i o n :   b a c k g r o u n d - c o l o r   0 . 1 5 s   e a s e - i n - o u t ,   b o r d e r - c o l o r   0 . 1 5 s   e a s e - i n - o u t ,   b o x - s h a d o w   0 . 1 5 s   e a s e - i n - o u t ; 
 
 } 
 
 
 
 @ m e d i a   ( p r e f e r s - r e d u c e d - m o t i o n :   r e d u c e )   { 
 
     . c u s t o m - c o n t r o l - l a b e l : : b e f o r e , 
 
     . c u s t o m - f i l e - l a b e l , 
 
     . c u s t o m - s e l e c t   { 
 
         t r a n s i t i o n :   n o n e ; 
 
     } 
 
 } 
 
 
 
 . n a v   { 
 
     d i s p l a y :   - m s - f l e x b o x ; 
 
     d i s p l a y :   f l e x ; 
 
     - m s - f l e x - w r a p :   w r a p ; 
 
     f l e x - w r a p :   w r a p ; 
 
     p a d d i n g - l e f t :   0 ; 
 
     m a r g i n - b o t t o m :   0 ; 
 
     l i s t - s t y l e :   n o n e ; 
 
 } 
 
 
 
 . n a v - l i n k   { 
 
     d i s p l a y :   b l o c k ; 
 
     p a d d i n g :   0 . 5 r e m   1 r e m ; 
 
 } 
 
 
 
 . n a v - l i n k : h o v e r ,   . n a v - l i n k : f o c u s   { 
 
     t e x t - d e c o r a t i o n :   n o n e ; 
 
 } 
 
 
 
 . n a v - l i n k . d i s a b l e d   { 
 
     c o l o r :   # 6 c 7 5 7 d ; 
 
     p o i n t e r - e v e n t s :   n o n e ; 
 
     c u r s o r :   d e f a u l t ; 
 
 } 
 
 
 
 . n a v - t a b s   { 
 
     b o r d e r - b o t t o m :   1 p x   s o l i d   # d e e 2 e 6 ; 
 
 } 
 
 
 
 . n a v - t a b s   . n a v - i t e m   { 
 
     m a r g i n - b o t t o m :   - 1 p x ; 
 
 } 
 
 
 
 . n a v - t a b s   . n a v - l i n k   { 
 
     b o r d e r :   1 p x   s o l i d   t r a n s p a r e n t ; 
 
     b o r d e r - t o p - l e f t - r a d i u s :   0 . 2 5 r e m ; 
 
     b o r d e r - t o p - r i g h t - r a d i u s :   0 . 2 5 r e m ; 
 
 } 
 
 
 
 . n a v - t a b s   . n a v - l i n k : h o v e r ,   . n a v - t a b s   . n a v - l i n k : f o c u s   { 
 
     b o r d e r - c o l o r :   # e 9 e c e f   # e 9 e c e f   # d e e 2 e 6 ; 
 
 } 
 
 
 
 . n a v - t a b s   . n a v - l i n k . d i s a b l e d   { 
 
     c o l o r :   # 6 c 7 5 7 d ; 
 
     b a c k g r o u n d - c o l o r :   t r a n s p a r e n t ; 
 
     b o r d e r - c o l o r :   t r a n s p a r e n t ; 
 
 } 
 
 
 
 . n a v - t a b s   . n a v - l i n k . a c t i v e , 
 
 . n a v - t a b s   . n a v - i t e m . s h o w   . n a v - l i n k   { 
 
     c o l o r :   # 4 9 5 0 5 7 ; 
 
     b a c k g r o u n d - c o l o r :   # f f f ; 
 
     b o r d e r - c o l o r :   # d e e 2 e 6   # d e e 2 e 6   # f f f ; 
 
 } 
 
 
 
 . n a v - t a b s   . d r o p d o w n - m e n u   { 
 
     m a r g i n - t o p :   - 1 p x ; 
 
     b o r d e r - t o p - l e f t - r a d i u s :   0 ; 
 
     b o r d e r - t o p - r i g h t - r a d i u s :   0 ; 
 
 } 
 
 
 
 . n a v - p i l l s   . n a v - l i n k   { 
 
     b o r d e r - r a d i u s :   0 . 2 5 r e m ; 
 
 } 
 
 
 
 . n a v - p i l l s   . n a v - l i n k . a c t i v e , 
 
 . n a v - p i l l s   . s h o w   >   . n a v - l i n k   { 
 
     c o l o r :   # f f f ; 
 
     b a c k g r o u n d - c o l o r :   # 0 0 7 b f f ; 
 
 } 
 
 
 
 . n a v - f i l l   . n a v - i t e m   { 
 
     - m s - f l e x :   1   1   a u t o ; 
 
     f l e x :   1   1   a u t o ; 
 
     t e x t - a l i g n :   c e n t e r ; 
 
 } 
 
 
 
 . n a v - j u s t i f i e d   . n a v - i t e m   { 
 
     - m s - f l e x - p r e f e r r e d - s i z e :   0 ; 
 
     f l e x - b a s i s :   0 ; 
 
     - m s - f l e x - p o s i t i v e :   1 ; 
 
     f l e x - g r o w :   1 ; 
 
     t e x t - a l i g n :   c e n t e r ; 
 
 } 
 
 
 
 . t a b - c o n t e n t   >   . t a b - p a n e   { 
 
     d i s p l a y :   n o n e ; 
 
 } 
 
 
 
 . t a b - c o n t e n t   >   . a c t i v e   { 
 
     d i s p l a y :   b l o c k ; 
 
 } 
 
 
 
 . n a v b a r   { 
 
     p o s i t i o n :   r e l a t i v e ; 
 
     d i s p l a y :   - m s - f l e x b o x ; 
 
     d i s p l a y :   f l e x ; 
 
     - m s - f l e x - w r a p :   w r a p ; 
 
     f l e x - w r a p :   w r a p ; 
 
     - m s - f l e x - a l i g n :   c e n t e r ; 
 
     a l i g n - i t e m s :   c e n t e r ; 
 
     - m s - f l e x - p a c k :   j u s t i f y ; 
 
     j u s t i f y - c o n t e n t :   s p a c e - b e t w e e n ; 
 
     p a d d i n g :   0 . 5 r e m   1 r e m ; 
 
 } 
 
 
 
 . n a v b a r   >   . c o n t a i n e r , 
 
 . n a v b a r   >   . c o n t a i n e r - f l u i d   { 
 
     d i s p l a y :   - m s - f l e x b o x ; 
 
     d i s p l a y :   f l e x ; 
 
     - m s - f l e x - w r a p :   w r a p ; 
 
     f l e x - w r a p :   w r a p ; 
 
     - m s - f l e x - a l i g n :   c e n t e r ; 
 
     a l i g n - i t e m s :   c e n t e r ; 
 
     - m s - f l e x - p a c k :   j u s t i f y ; 
 
     j u s t i f y - c o n t e n t :   s p a c e - b e t w e e n ; 
 
 } 
 
 
 
 . n a v b a r - b r a n d   { 
 
     d i s p l a y :   i n l i n e - b l o c k ; 
 
     p a d d i n g - t o p :   0 . 3 1 2 5 r e m ; 
 
     p a d d i n g - b o t t o m :   0 . 3 1 2 5 r e m ; 
 
     m a r g i n - r i g h t :   1 r e m ; 
 
     f o n t - s i z e :   1 . 2 5 r e m ; 
 
     l i n e - h e i g h t :   i n h e r i t ; 
 
     w h i t e - s p a c e :   n o w r a p ; 
 
 } 
 
 
 
 . n a v b a r - b r a n d : h o v e r ,   . n a v b a r - b r a n d : f o c u s   { 
 
     t e x t - d e c o r a t i o n :   n o n e ; 
 
 } 
 
 
 
 . n a v b a r - n a v   { 
 
     d i s p l a y :   - m s - f l e x b o x ; 
 
     d i s p l a y :   f l e x ; 
 
     - m s - f l e x - d i r e c t i o n :   c o l u m n ; 
 
     f l e x - d i r e c t i o n :   c o l u m n ; 
 
     p a d d i n g - l e f t :   0 ; 
 
     m a r g i n - b o t t o m :   0 ; 
 
     l i s t - s t y l e :   n o n e ; 
 
 } 
 
 
 
 . n a v b a r - n a v   . n a v - l i n k   { 
 
     p a d d i n g - r i g h t :   0 ; 
 
     p a d d i n g - l e f t :   0 ; 
 
 } 
 
 
 
 . n a v b a r - n a v   . d r o p d o w n - m e n u   { 
 
     p o s i t i o n :   s t a t i c ; 
 
     f l o a t :   n o n e ; 
 
 } 
 
 
 
 . n a v b a r - t e x t   { 
 
     d i s p l a y :   i n l i n e - b l o c k ; 
 
     p a d d i n g - t o p :   0 . 5 r e m ; 
 
     p a d d i n g - b o t t o m :   0 . 5 r e m ; 
 
 } 
 
 
 
 . n a v b a r - c o l l a p s e   { 
 
     - m s - f l e x - p r e f e r r e d - s i z e :   1 0 0 % ; 
 
     f l e x - b a s i s :   1 0 0 % ; 
 
     - m s - f l e x - p o s i t i v e :   1 ; 
 
     f l e x - g r o w :   1 ; 
 
     - m s - f l e x - a l i g n :   c e n t e r ; 
 
     a l i g n - i t e m s :   c e n t e r ; 
 
 } 
 
 
 
 . n a v b a r - t o g g l e r   { 
 
     p a d d i n g :   0 . 2 5 r e m   0 . 7 5 r e m ; 
 
     f o n t - s i z e :   1 . 2 5 r e m ; 
 
     l i n e - h e i g h t :   1 ; 
 
     b a c k g r o u n d - c o l o r :   t r a n s p a r e n t ; 
 
     b o r d e r :   1 p x   s o l i d   t r a n s p a r e n t ; 
 
     b o r d e r - r a d i u s :   0 . 2 5 r e m ; 
 
 } 
 
 
 
 . n a v b a r - t o g g l e r : h o v e r ,   . n a v b a r - t o g g l e r : f o c u s   { 
 
     t e x t - d e c o r a t i o n :   n o n e ; 
 
 } 
 
 
 
 . n a v b a r - t o g g l e r - i c o n   { 
 
     d i s p l a y :   i n l i n e - b l o c k ; 
 
     w i d t h :   1 . 5 e m ; 
 
     h e i g h t :   1 . 5 e m ; 
 
     v e r t i c a l - a l i g n :   m i d d l e ; 
 
     c o n t e n t :   " " ; 
 
     b a c k g r o u n d :   n o - r e p e a t   c e n t e r   c e n t e r ; 
 
     b a c k g r o u n d - s i z e :   1 0 0 %   1 0 0 % ; 
 
 } 
 
 
 
 @ m e d i a   ( m a x - w i d t h :   5 7 5 . 9 8 p x )   { 
 
     . n a v b a r - e x p a n d - s m   >   . c o n t a i n e r , 
 
     . n a v b a r - e x p a n d - s m   >   . c o n t a i n e r - f l u i d   { 
 
         p a d d i n g - r i g h t :   0 ; 
 
         p a d d i n g - l e f t :   0 ; 
 
     } 
 
 } 
 
 
 
 @ m e d i a   ( m i n - w i d t h :   5 7 6 p x )   { 
 
     . n a v b a r - e x p a n d - s m   { 
 
         - m s - f l e x - f l o w :   r o w   n o w r a p ; 
 
         f l e x - f l o w :   r o w   n o w r a p ; 
 
         - m s - f l e x - p a c k :   s t a r t ; 
 
         j u s t i f y - c o n t e n t :   f l e x - s t a r t ; 
 
     } 
 
     . n a v b a r - e x p a n d - s m   . n a v b a r - n a v   { 
 
         - m s - f l e x - d i r e c t i o n :   r o w ; 
 
         f l e x - d i r e c t i o n :   r o w ; 
 
     } 
 
     . n a v b a r - e x p a n d - s m   . n a v b a r - n a v   . d r o p d o w n - m e n u   { 
 
         p o s i t i o n :   a b s o l u t e ; 
 
     } 
 
     . n a v b a r - e x p a n d - s m   . n a v b a r - n a v   . n a v - l i n k   { 
 
         p a d d i n g - r i g h t :   0 . 5 r e m ; 
 
         p a d d i n g - l e f t :   0 . 5 r e m ; 
 
     } 
 
     . n a v b a r - e x p a n d - s m   >   . c o n t a i n e r , 
 
     . n a v b a r - e x p a n d - s m   >   . c o n t a i n e r - f l u i d   { 
 
         - m s - f l e x - w r a p :   n o w r a p ; 
 
         f l e x - w r a p :   n o w r a p ; 
 
     } 
 
     . n a v b a r - e x p a n d - s m   . n a v b a r - c o l l a p s e   { 
 
         d i s p l a y :   - m s - f l e x b o x   ! i m p o r t a n t ; 
 
         d i s p l a y :   f l e x   ! i m p o r t a n t ; 
 
         - m s - f l e x - p r e f e r r e d - s i z e :   a u t o ; 
 
         f l e x - b a s i s :   a u t o ; 
 
     } 
 
     . n a v b a r - e x p a n d - s m   . n a v b a r - t o g g l e r   { 
 
         d i s p l a y :   n o n e ; 
 
     } 
 
 } 
 
 
 
 @ m e d i a   ( m a x - w i d t h :   7 6 7 . 9 8 p x )   { 
 
     . n a v b a r - e x p a n d - m d   >   . c o n t a i n e r , 
 
     . n a v b a r - e x p a n d - m d   >   . c o n t a i n e r - f l u i d   { 
 
         p a d d i n g - r i g h t :   0 ; 
 
         p a d d i n g - l e f t :   0 ; 
 
     } 
 
 } 
 
 
 
 @ m e d i a   ( m i n - w i d t h :   7 6 8 p x )   { 
 
     . n a v b a r - e x p a n d - m d   { 
 
         - m s - f l e x - f l o w :   r o w   n o w r a p ; 
 
         f l e x - f l o w :   r o w   n o w r a p ; 
 
         - m s - f l e x - p a c k :   s t a r t ; 
 
         j u s t i f y - c o n t e n t :   f l e x - s t a r t ; 
 
     } 
 
     . n a v b a r - e x p a n d - m d   . n a v b a r - n a v   { 
 
         - m s - f l e x - d i r e c t i o n :   r o w ; 
 
         f l e x - d i r e c t i o n :   r o w ; 
 
     } 
 
     . n a v b a r - e x p a n d - m d   . n a v b a r - n a v   . d r o p d o w n - m e n u   { 
 
         p o s i t i o n :   a b s o l u t e ; 
 
     } 
 
     . n a v b a r - e x p a n d - m d   . n a v b a r - n a v   . n a v - l i n k   { 
 
         p a d d i n g - r i g h t :   0 . 5 r e m ; 
 
         p a d d i n g - l e f t :   0 . 5 r e m ; 
 
     } 
 
     . n a v b a r - e x p a n d - m d   >   . c o n t a i n e r , 
 
     . n a v b a r - e x p a n d - m d   >   . c o n t a i n e r - f l u i d   { 
 
         - m s - f l e x - w r a p :   n o w r a p ; 
 
         f l e x - w r a p :   n o w r a p ; 
 
     } 
 
     . n a v b a r - e x p a n d - m d   . n a v b a r - c o l l a p s e   { 
 
         d i s p l a y :   - m s - f l e x b o x   ! i m p o r t a n t ; 
 
         d i s p l a y :   f l e x   ! i m p o r t a n t ; 
 
         - m s - f l e x - p r e f e r r e d - s i z e :   a u t o ; 
 
         f l e x - b a s i s :   a u t o ; 
 
     } 
 
     . n a v b a r - e x p a n d - m d   . n a v b a r - t o g g l e r   { 
 
         d i s p l a y :   n o n e ; 
 
     } 
 
 } 
 
 
 
 @ m e d i a   ( m a x - w i d t h :   9 9 1 . 9 8 p x )   { 
 
     . n a v b a r - e x p a n d - l g   >   . c o n t a i n e r , 
 
     . n a v b a r - e x p a n d - l g   >   . c o n t a i n e r - f l u i d   { 
 
         p a d d i n g - r i g h t :   0 ; 
 
         p a d d i n g - l e f t :   0 ; 
 
     } 
 
 } 
 
 
 
 @ m e d i a   ( m i n - w i d t h :   9 9 2 p x )   { 
 
     . n a v b a r - e x p a n d - l g   { 
 
         - m s - f l e x - f l o w :   r o w   n o w r a p ; 
 
         f l e x - f l o w :   r o w   n o w r a p ; 
 
         - m s - f l e x - p a c k :   s t a r t ; 
 
         j u s t i f y - c o n t e n t :   f l e x - s t a r t ; 
 
     } 
 
     . n a v b a r - e x p a n d - l g   . n a v b a r - n a v   { 
 
         - m s - f l e x - d i r e c t i o n :   r o w ; 
 
         f l e x - d i r e c t i o n :   r o w ; 
 
     } 
 
     . n a v b a r - e x p a n d - l g   . n a v b a r - n a v   . d r o p d o w n - m e n u   { 
 
         p o s i t i o n :   a b s o l u t e ; 
 
     } 
 
     . n a v b a r - e x p a n d - l g   . n a v b a r - n a v   . n a v - l i n k   { 
 
         p a d d i n g - r i g h t :   0 . 5 r e m ; 
 
         p a d d i n g - l e f t :   0 . 5 r e m ; 
 
     } 
 
     . n a v b a r - e x p a n d - l g   >   . c o n t a i n e r , 
 
     . n a v b a r - e x p a n d - l g   >   . c o n t a i n e r - f l u i d   { 
 
         - m s - f l e x - w r a p :   n o w r a p ; 
 
         f l e x - w r a p :   n o w r a p ; 
 
     } 
 
     . n a v b a r - e x p a n d - l g   . n a v b a r - c o l l a p s e   { 
 
         d i s p l a y :   - m s - f l e x b o x   ! i m p o r t a n t ; 
 
         d i s p l a y :   f l e x   ! i m p o r t a n t ; 
 
         - m s - f l e x - p r e f e r r e d - s i z e :   a u t o ; 
 
         f l e x - b a s i s :   a u t o ; 
 
     } 
 
     . n a v b a r - e x p a n d - l g   . n a v b a r - t o g g l e r   { 
 
         d i s p l a y :   n o n e ; 
 
     } 
 
 } 
 
 
 
 @ m e d i a   ( m a x - w i d t h :   1 1 9 9 . 9 8 p x )   { 
 
     . n a v b a r - e x p a n d - x l   >   . c o n t a i n e r , 
 
     . n a v b a r - e x p a n d - x l   >   . c o n t a i n e r - f l u i d   { 
 
         p a d d i n g - r i g h t :   0 ; 
 
         p a d d i n g - l e f t :   0 ; 
 
     } 
 
 } 
 
 
 
 @ m e d i a   ( m i n - w i d t h :   1 2 0 0 p x )   { 
 
     . n a v b a r - e x p a n d - x l   { 
 
         - m s - f l e x - f l o w :   r o w   n o w r a p ; 
 
         f l e x - f l o w :   r o w   n o w r a p ; 
 
         - m s - f l e x - p a c k :   s t a r t ; 
 
         j u s t i f y - c o n t e n t :   f l e x - s t a r t ; 
 
     } 
 
     . n a v b a r - e x p a n d - x l   . n a v b a r - n a v   { 
 
         - m s - f l e x - d i r e c t i o n :   r o w ; 
 
         f l e x - d i r e c t i o n :   r o w ; 
 
     } 
 
     . n a v b a r - e x p a n d - x l   . n a v b a r - n a v   . d r o p d o w n - m e n u   { 
 
         p o s i t i o n :   a b s o l u t e ; 
 
     } 
 
     . n a v b a r - e x p a n d - x l   . n a v b a r - n a v   . n a v - l i n k   { 
 
         p a d d i n g - r i g h t :   0 . 5 r e m ; 
 
         p a d d i n g - l e f t :   0 . 5 r e m ; 
 
     } 
 
     . n a v b a r - e x p a n d - x l   >   . c o n t a i n e r , 
 
     . n a v b a r - e x p a n d - x l   >   . c o n t a i n e r - f l u i d   { 
 
         - m s - f l e x - w r a p :   n o w r a p ; 
 
         f l e x - w r a p :   n o w r a p ; 
 
     } 
 
     . n a v b a r - e x p a n d - x l   . n a v b a r - c o l l a p s e   { 
 
         d i s p l a y :   - m s - f l e x b o x   ! i m p o r t a n t ; 
 
         d i s p l a y :   f l e x   ! i m p o r t a n t ; 
 
         - m s - f l e x - p r e f e r r e d - s i z e :   a u t o ; 
 
         f l e x - b a s i s :   a u t o ; 
 
     } 
 
     . n a v b a r - e x p a n d - x l   . n a v b a r - t o g g l e r   { 
 
         d i s p l a y :   n o n e ; 
 
     } 
 
 } 
 
 
 
 . n a v b a r - e x p a n d   { 
 
     - m s - f l e x - f l o w :   r o w   n o w r a p ; 
 
     f l e x - f l o w :   r o w   n o w r a p ; 
 
     - m s - f l e x - p a c k :   s t a r t ; 
 
     j u s t i f y - c o n t e n t :   f l e x - s t a r t ; 
 
 } 
 
 
 
 . n a v b a r - e x p a n d   >   . c o n t a i n e r , 
 
 . n a v b a r - e x p a n d   >   . c o n t a i n e r - f l u i d   { 
 
     p a d d i n g - r i g h t :   0 ; 
 
     p a d d i n g - l e f t :   0 ; 
 
 } 
 
 
 
 . n a v b a r - e x p a n d   . n a v b a r - n a v   { 
 
     - m s - f l e x - d i r e c t i o n :   r o w ; 
 
     f l e x - d i r e c t i o n :   r o w ; 
 
 } 
 
 
 
 . n a v b a r - e x p a n d   . n a v b a r - n a v   . d r o p d o w n - m e n u   { 
 
     p o s i t i o n :   a b s o l u t e ; 
 
 } 
 
 
 
 . n a v b a r - e x p a n d   . n a v b a r - n a v   . n a v - l i n k   { 
 
     p a d d i n g - r i g h t :   0 . 5 r e m ; 
 
     p a d d i n g - l e f t :   0 . 5 r e m ; 
 
 } 
 
 
 
 . n a v b a r - e x p a n d   >   . c o n t a i n e r , 
 
 . n a v b a r - e x p a n d   >   . c o n t a i n e r - f l u i d   { 
 
     - m s - f l e x - w r a p :   n o w r a p ; 
 
     f l e x - w r a p :   n o w r a p ; 
 
 } 
 
 
 
 . n a v b a r - e x p a n d   . n a v b a r - c o l l a p s e   { 
 
     d i s p l a y :   - m s - f l e x b o x   ! i m p o r t a n t ; 
 
     d i s p l a y :   f l e x   ! i m p o r t a n t ; 
 
     - m s - f l e x - p r e f e r r e d - s i z e :   a u t o ; 
 
     f l e x - b a s i s :   a u t o ; 
 
 } 
 
 
 
 . n a v b a r - e x p a n d   . n a v b a r - t o g g l e r   { 
 
     d i s p l a y :   n o n e ; 
 
 } 
 
 
 
 . n a v b a r - l i g h t   . n a v b a r - b r a n d   { 
 
     c o l o r :   r g b a ( 0 ,   0 ,   0 ,   0 . 9 ) ; 
 
 } 
 
 
 
 . n a v b a r - l i g h t   . n a v b a r - b r a n d : h o v e r ,   . n a v b a r - l i g h t   . n a v b a r - b r a n d : f o c u s   { 
 
     c o l o r :   r g b a ( 0 ,   0 ,   0 ,   0 . 9 ) ; 
 
 } 
 
 
 
 . n a v b a r - l i g h t   . n a v b a r - n a v   . n a v - l i n k   { 
 
     c o l o r :   r g b a ( 0 ,   0 ,   0 ,   0 . 5 ) ; 
 
 } 
 
 
 
 . n a v b a r - l i g h t   . n a v b a r - n a v   . n a v - l i n k : h o v e r ,   . n a v b a r - l i g h t   . n a v b a r - n a v   . n a v - l i n k : f o c u s   { 
 
     c o l o r :   r g b a ( 0 ,   0 ,   0 ,   0 . 7 ) ; 
 
 } 
 
 
 
 . n a v b a r - l i g h t   . n a v b a r - n a v   . n a v - l i n k . d i s a b l e d   { 
 
     c o l o r :   r g b a ( 0 ,   0 ,   0 ,   0 . 3 ) ; 
 
 } 
 
 
 
 . n a v b a r - l i g h t   . n a v b a r - n a v   . s h o w   >   . n a v - l i n k , 
 
 . n a v b a r - l i g h t   . n a v b a r - n a v   . a c t i v e   >   . n a v - l i n k , 
 
 . n a v b a r - l i g h t   . n a v b a r - n a v   . n a v - l i n k . s h o w , 
 
 . n a v b a r - l i g h t   . n a v b a r - n a v   . n a v - l i n k . a c t i v e   { 
 
     c o l o r :   r g b a ( 0 ,   0 ,   0 ,   0 . 9 ) ; 
 
 } 
 
 
 
 . n a v b a r - l i g h t   . n a v b a r - t o g g l e r   { 
 
     c o l o r :   r g b a ( 0 ,   0 ,   0 ,   0 . 5 ) ; 
 
     b o r d e r - c o l o r :   r g b a ( 0 ,   0 ,   0 ,   0 . 1 ) ; 
 
 } 
 
 
 
 . n a v b a r - l i g h t   . n a v b a r - t o g g l e r - i c o n   { 
 
     b a c k g r o u n d - i m a g e :   u r l ( " d a t a : i m a g e / s v g + x m l , % 3 c s v g   v i e w B o x = ' 0   0   3 0   3 0 '   x m l n s = ' h t t p : / / w w w . w 3 . o r g / 2 0 0 0 / s v g ' % 3 e % 3 c p a t h   s t r o k e = ' r g b a ( 0 ,   0 ,   0 ,   0 . 5 ) '   s t r o k e - w i d t h = ' 2 '   s t r o k e - l i n e c a p = ' r o u n d '   s t r o k e - m i t e r l i m i t = ' 1 0 '   d = ' M 4   7 h 2 2 M 4   1 5 h 2 2 M 4   2 3 h 2 2 ' / % 3 e % 3 c / s v g % 3 e " ) ; 
 
 } 
 
 
 
 . n a v b a r - l i g h t   . n a v b a r - t e x t   { 
 
     c o l o r :   r g b a ( 0 ,   0 ,   0 ,   0 . 5 ) ; 
 
 } 
 
 
 
 . n a v b a r - l i g h t   . n a v b a r - t e x t   a   { 
 
     c o l o r :   r g b a ( 0 ,   0 ,   0 ,   0 . 9 ) ; 
 
 } 
 
 
 
 . n a v b a r - l i g h t   . n a v b a r - t e x t   a : h o v e r ,   . n a v b a r - l i g h t   . n a v b a r - t e x t   a : f o c u s   { 
 
     c o l o r :   r g b a ( 0 ,   0 ,   0 ,   0 . 9 ) ; 
 
 } 
 
 
 
 . n a v b a r - d a r k   . n a v b a r - b r a n d   { 
 
     c o l o r :   # f f f ; 
 
 } 
 
 
 
 . n a v b a r - d a r k   . n a v b a r - b r a n d : h o v e r ,   . n a v b a r - d a r k   . n a v b a r - b r a n d : f o c u s   { 
 
     c o l o r :   # f f f ; 
 
 } 
 
 
 
 . n a v b a r - d a r k   . n a v b a r - n a v   . n a v - l i n k   { 
 
     c o l o r :   r g b a ( 2 5 5 ,   2 5 5 ,   2 5 5 ,   0 . 5 ) ; 
 
 } 
 
 
 
 . n a v b a r - d a r k   . n a v b a r - n a v   . n a v - l i n k : h o v e r ,   . n a v b a r - d a r k   . n a v b a r - n a v   . n a v - l i n k : f o c u s   { 
 
     c o l o r :   r g b a ( 2 5 5 ,   2 5 5 ,   2 5 5 ,   0 . 7 5 ) ; 
 
 } 
 
 
 
 . n a v b a r - d a r k   . n a v b a r - n a v   . n a v - l i n k . d i s a b l e d   { 
 
     c o l o r :   r g b a ( 2 5 5 ,   2 5 5 ,   2 5 5 ,   0 . 2 5 ) ; 
 
 } 
 
 
 
 . n a v b a r - d a r k   . n a v b a r - n a v   . s h o w   >   . n a v - l i n k , 
 
 . n a v b a r - d a r k   . n a v b a r - n a v   . a c t i v e   >   . n a v - l i n k , 
 
 . n a v b a r - d a r k   . n a v b a r - n a v   . n a v - l i n k . s h o w , 
 
 . n a v b a r - d a r k   . n a v b a r - n a v   . n a v - l i n k . a c t i v e   { 
 
     c o l o r :   # f f f ; 
 
 } 
 
 
 
 . n a v b a r - d a r k   . n a v b a r - t o g g l e r   { 
 
     c o l o r :   r g b a ( 2 5 5 ,   2 5 5 ,   2 5 5 ,   0 . 5 ) ; 
 
     b o r d e r - c o l o r :   r g b a ( 2 5 5 ,   2 5 5 ,   2 5 5 ,   0 . 1 ) ; 
 
 } 
 
 
 
 . n a v b a r - d a r k   . n a v b a r - t o g g l e r - i c o n   { 
 
     b a c k g r o u n d - i m a g e :   u r l ( " d a t a : i m a g e / s v g + x m l , % 3 c s v g   v i e w B o x = ' 0   0   3 0   3 0 '   x m l n s = ' h t t p : / / w w w . w 3 . o r g / 2 0 0 0 / s v g ' % 3 e % 3 c p a t h   s t r o k e = ' r g b a ( 2 5 5 ,   2 5 5 ,   2 5 5 ,   0 . 5 ) '   s t r o k e - w i d t h = ' 2 '   s t r o k e - l i n e c a p = ' r o u n d '   s t r o k e - m i t e r l i m i t = ' 1 0 '   d = ' M 4   7 h 2 2 M 4   1 5 h 2 2 M 4   2 3 h 2 2 ' / % 3 e % 3 c / s v g % 3 e " ) ; 
 
 } 
 
 
 
 . n a v b a r - d a r k   . n a v b a r - t e x t   { 
 
     c o l o r :   r g b a ( 2 5 5 ,   2 5 5 ,   2 5 5 ,   0 . 5 ) ; 
 
 } 
 
 
 
 . n a v b a r - d a r k   . n a v b a r - t e x t   a   { 
 
     c o l o r :   # f f f ; 
 
 } 
 
 
 
 . n a v b a r - d a r k   . n a v b a r - t e x t   a : h o v e r ,   . n a v b a r - d a r k   . n a v b a r - t e x t   a : f o c u s   { 
 
     c o l o r :   # f f f ; 
 
 } 
 
 
 
 . c a r d   { 
 
     p o s i t i o n :   r e l a t i v e ; 
 
     d i s p l a y :   - m s - f l e x b o x ; 
 
     d i s p l a y :   f l e x ; 
 
     - m s - f l e x - d i r e c t i o n :   c o l u m n ; 
 
     f l e x - d i r e c t i o n :   c o l u m n ; 
 
     m i n - w i d t h :   0 ; 
 
     w o r d - w r a p :   b r e a k - w o r d ; 
 
     b a c k g r o u n d - c o l o r :   # f f f ; 
 
     b a c k g r o u n d - c l i p :   b o r d e r - b o x ; 
 
     b o r d e r :   1 p x   s o l i d   r g b a ( 0 ,   0 ,   0 ,   0 . 1 2 5 ) ; 
 
     b o r d e r - r a d i u s :   0 . 2 5 r e m ; 
 
 } 
 
 
 
 . c a r d   >   h r   { 
 
     m a r g i n - r i g h t :   0 ; 
 
     m a r g i n - l e f t :   0 ; 
 
 } 
 
 
 
 . c a r d   >   . l i s t - g r o u p : f i r s t - c h i l d   . l i s t - g r o u p - i t e m : f i r s t - c h i l d   { 
 
     b o r d e r - t o p - l e f t - r a d i u s :   0 . 2 5 r e m ; 
 
     b o r d e r - t o p - r i g h t - r a d i u s :   0 . 2 5 r e m ; 
 
 } 
 
 
 
 . c a r d   >   . l i s t - g r o u p : l a s t - c h i l d   . l i s t - g r o u p - i t e m : l a s t - c h i l d   { 
 
     b o r d e r - b o t t o m - r i g h t - r a d i u s :   0 . 2 5 r e m ; 
 
     b o r d e r - b o t t o m - l e f t - r a d i u s :   0 . 2 5 r e m ; 
 
 } 
 
 
 
 . c a r d - b o d y   { 
 
     - m s - f l e x :   1   1   a u t o ; 
 
     f l e x :   1   1   a u t o ; 
 
     p a d d i n g :   1 . 2 5 r e m ; 
 
 } 
 
 
 
 . c a r d - t i t l e   { 
 
     m a r g i n - b o t t o m :   0 . 7 5 r e m ; 
 
 } 
 
 
 
 . c a r d - s u b t i t l e   { 
 
     m a r g i n - t o p :   - 0 . 3 7 5 r e m ; 
 
     m a r g i n - b o t t o m :   0 ; 
 
 } 
 
 
 
 . c a r d - t e x t : l a s t - c h i l d   { 
 
     m a r g i n - b o t t o m :   0 ; 
 
 } 
 
 
 
 . c a r d - l i n k : h o v e r   { 
 
     t e x t - d e c o r a t i o n :   n o n e ; 
 
 } 
 
 
 
 . c a r d - l i n k   +   . c a r d - l i n k   { 
 
     m a r g i n - l e f t :   1 . 2 5 r e m ; 
 
 } 
 
 
 
 . c a r d - h e a d e r   { 
 
     p a d d i n g :   0 . 7 5 r e m   1 . 2 5 r e m ; 
 
     m a r g i n - b o t t o m :   0 ; 
 
     b a c k g r o u n d - c o l o r :   r g b a ( 0 ,   0 ,   0 ,   0 . 0 3 ) ; 
 
     b o r d e r - b o t t o m :   1 p x   s o l i d   r g b a ( 0 ,   0 ,   0 ,   0 . 1 2 5 ) ; 
 
 } 
 
 
 
 . c a r d - h e a d e r : f i r s t - c h i l d   { 
 
     b o r d e r - r a d i u s :   c a l c ( 0 . 2 5 r e m   -   1 p x )   c a l c ( 0 . 2 5 r e m   -   1 p x )   0   0 ; 
 
 } 
 
 
 
 . c a r d - h e a d e r   +   . l i s t - g r o u p   . l i s t - g r o u p - i t e m : f i r s t - c h i l d   { 
 
     b o r d e r - t o p :   0 ; 
 
 } 
 
 
 
 . c a r d - f o o t e r   { 
 
     p a d d i n g :   0 . 7 5 r e m   1 . 2 5 r e m ; 
 
     b a c k g r o u n d - c o l o r :   r g b a ( 0 ,   0 ,   0 ,   0 . 0 3 ) ; 
 
     b o r d e r - t o p :   1 p x   s o l i d   r g b a ( 0 ,   0 ,   0 ,   0 . 1 2 5 ) ; 
 
 } 
 
 
 
 . c a r d - f o o t e r : l a s t - c h i l d   { 
 
     b o r d e r - r a d i u s :   0   0   c a l c ( 0 . 2 5 r e m   -   1 p x )   c a l c ( 0 . 2 5 r e m   -   1 p x ) ; 
 
 } 
 
 
 
 . c a r d - h e a d e r - t a b s   { 
 
     m a r g i n - r i g h t :   - 0 . 6 2 5 r e m ; 
 
     m a r g i n - b o t t o m :   - 0 . 7 5 r e m ; 
 
     m a r g i n - l e f t :   - 0 . 6 2 5 r e m ; 
 
     b o r d e r - b o t t o m :   0 ; 
 
 } 
 
 
 
 . c a r d - h e a d e r - p i l l s   { 
 
     m a r g i n - r i g h t :   - 0 . 6 2 5 r e m ; 
 
     m a r g i n - l e f t :   - 0 . 6 2 5 r e m ; 
 
 } 
 
 
 
 . c a r d - i m g - o v e r l a y   { 
 
     p o s i t i o n :   a b s o l u t e ; 
 
     t o p :   0 ; 
 
     r i g h t :   0 ; 
 
     b o t t o m :   0 ; 
 
     l e f t :   0 ; 
 
     p a d d i n g :   1 . 2 5 r e m ; 
 
 } 
 
 
 
 . c a r d - i m g   { 
 
     w i d t h :   1 0 0 % ; 
 
     b o r d e r - r a d i u s :   c a l c ( 0 . 2 5 r e m   -   1 p x ) ; 
 
 } 
 
 
 
 . c a r d - i m g - t o p   { 
 
     w i d t h :   1 0 0 % ; 
 
     b o r d e r - t o p - l e f t - r a d i u s :   c a l c ( 0 . 2 5 r e m   -   1 p x ) ; 
 
     b o r d e r - t o p - r i g h t - r a d i u s :   c a l c ( 0 . 2 5 r e m   -   1 p x ) ; 
 
 } 
 
 
 
 . c a r d - i m g - b o t t o m   { 
 
     w i d t h :   1 0 0 % ; 
 
     b o r d e r - b o t t o m - r i g h t - r a d i u s :   c a l c ( 0 . 2 5 r e m   -   1 p x ) ; 
 
     b o r d e r - b o t t o m - l e f t - r a d i u s :   c a l c ( 0 . 2 5 r e m   -   1 p x ) ; 
 
 } 
 
 
 
 . c a r d - d e c k   { 
 
     d i s p l a y :   - m s - f l e x b o x ; 
 
     d i s p l a y :   f l e x ; 
 
     - m s - f l e x - d i r e c t i o n :   c o l u m n ; 
 
     f l e x - d i r e c t i o n :   c o l u m n ; 
 
 } 
 
 
 
 . c a r d - d e c k   . c a r d   { 
 
     m a r g i n - b o t t o m :   1 5 p x ; 
 
 } 
 
 
 
 @ m e d i a   ( m i n - w i d t h :   5 7 6 p x )   { 
 
     . c a r d - d e c k   { 
 
         - m s - f l e x - f l o w :   r o w   w r a p ; 
 
         f l e x - f l o w :   r o w   w r a p ; 
 
         m a r g i n - r i g h t :   - 1 5 p x ; 
 
         m a r g i n - l e f t :   - 1 5 p x ; 
 
     } 
 
     . c a r d - d e c k   . c a r d   { 
 
         d i s p l a y :   - m s - f l e x b o x ; 
 
         d i s p l a y :   f l e x ; 
 
         - m s - f l e x :   1   0   0 % ; 
 
         f l e x :   1   0   0 % ; 
 
         - m s - f l e x - d i r e c t i o n :   c o l u m n ; 
 
         f l e x - d i r e c t i o n :   c o l u m n ; 
 
         m a r g i n - r i g h t :   1 5 p x ; 
 
         m a r g i n - b o t t o m :   0 ; 
 
         m a r g i n - l e f t :   1 5 p x ; 
 
     } 
 
 } 
 
 
 
 . c a r d - g r o u p   { 
 
     d i s p l a y :   - m s - f l e x b o x ; 
 
     d i s p l a y :   f l e x ; 
 
     - m s - f l e x - d i r e c t i o n :   c o l u m n ; 
 
     f l e x - d i r e c t i o n :   c o l u m n ; 
 
 } 
 
 
 
 . c a r d - g r o u p   >   . c a r d   { 
 
     m a r g i n - b o t t o m :   1 5 p x ; 
 
 } 
 
 
 
 @ m e d i a   ( m i n - w i d t h :   5 7 6 p x )   { 
 
     . c a r d - g r o u p   { 
 
         - m s - f l e x - f l o w :   r o w   w r a p ; 
 
         f l e x - f l o w :   r o w   w r a p ; 
 
     } 
 
     . c a r d - g r o u p   >   . c a r d   { 
 
         - m s - f l e x :   1   0   0 % ; 
 
         f l e x :   1   0   0 % ; 
 
         m a r g i n - b o t t o m :   0 ; 
 
     } 
 
     . c a r d - g r o u p   >   . c a r d   +   . c a r d   { 
 
         m a r g i n - l e f t :   0 ; 
 
         b o r d e r - l e f t :   0 ; 
 
     } 
 
     . c a r d - g r o u p   >   . c a r d : n o t ( : l a s t - c h i l d )   { 
 
         b o r d e r - t o p - r i g h t - r a d i u s :   0 ; 
 
         b o r d e r - b o t t o m - r i g h t - r a d i u s :   0 ; 
 
     } 
 
     . c a r d - g r o u p   >   . c a r d : n o t ( : l a s t - c h i l d )   . c a r d - i m g - t o p , 
 
     . c a r d - g r o u p   >   . c a r d : n o t ( : l a s t - c h i l d )   . c a r d - h e a d e r   { 
 
         b o r d e r - t o p - r i g h t - r a d i u s :   0 ; 
 
     } 
 
     . c a r d - g r o u p   >   . c a r d : n o t ( : l a s t - c h i l d )   . c a r d - i m g - b o t t o m , 
 
     . c a r d - g r o u p   >   . c a r d : n o t ( : l a s t - c h i l d )   . c a r d - f o o t e r   { 
 
         b o r d e r - b o t t o m - r i g h t - r a d i u s :   0 ; 
 
     } 
 
     . c a r d - g r o u p   >   . c a r d : n o t ( : f i r s t - c h i l d )   { 
 
         b o r d e r - t o p - l e f t - r a d i u s :   0 ; 
 
         b o r d e r - b o t t o m - l e f t - r a d i u s :   0 ; 
 
     } 
 
     . c a r d - g r o u p   >   . c a r d : n o t ( : f i r s t - c h i l d )   . c a r d - i m g - t o p , 
 
     . c a r d - g r o u p   >   . c a r d : n o t ( : f i r s t - c h i l d )   . c a r d - h e a d e r   { 
 
         b o r d e r - t o p - l e f t - r a d i u s :   0 ; 
 
     } 
 
     . c a r d - g r o u p   >   . c a r d : n o t ( : f i r s t - c h i l d )   . c a r d - i m g - b o t t o m , 
 
     . c a r d - g r o u p   >   . c a r d : n o t ( : f i r s t - c h i l d )   . c a r d - f o o t e r   { 
 
         b o r d e r - b o t t o m - l e f t - r a d i u s :   0 ; 
 
     } 
 
 } 
 
 
 
 . c a r d - c o l u m n s   . c a r d   { 
 
     m a r g i n - b o t t o m :   0 . 7 5 r e m ; 
 
 } 
 
 
 
 @ m e d i a   ( m i n - w i d t h :   5 7 6 p x )   { 
 
     . c a r d - c o l u m n s   { 
 
         - w e b k i t - c o l u m n - c o u n t :   3 ; 
 
         - m o z - c o l u m n - c o u n t :   3 ; 
 
         c o l u m n - c o u n t :   3 ; 
 
         - w e b k i t - c o l u m n - g a p :   1 . 2 5 r e m ; 
 
         - m o z - c o l u m n - g a p :   1 . 2 5 r e m ; 
 
         c o l u m n - g a p :   1 . 2 5 r e m ; 
 
         o r p h a n s :   1 ; 
 
         w i d o w s :   1 ; 
 
     } 
 
     . c a r d - c o l u m n s   . c a r d   { 
 
         d i s p l a y :   i n l i n e - b l o c k ; 
 
         w i d t h :   1 0 0 % ; 
 
     } 
 
 } 
 
 
 
 . a c c o r d i o n   >   . c a r d   { 
 
     o v e r f l o w :   h i d d e n ; 
 
 } 
 
 
 
 . a c c o r d i o n   >   . c a r d : n o t ( : f i r s t - o f - t y p e )   . c a r d - h e a d e r : f i r s t - c h i l d   { 
 
     b o r d e r - r a d i u s :   0 ; 
 
 } 
 
 
 
 . a c c o r d i o n   >   . c a r d : n o t ( : f i r s t - o f - t y p e ) : n o t ( : l a s t - o f - t y p e )   { 
 
     b o r d e r - b o t t o m :   0 ; 
 
     b o r d e r - r a d i u s :   0 ; 
 
 } 
 
 
 
 . a c c o r d i o n   >   . c a r d : f i r s t - o f - t y p e   { 
 
     b o r d e r - b o t t o m :   0 ; 
 
     b o r d e r - b o t t o m - r i g h t - r a d i u s :   0 ; 
 
     b o r d e r - b o t t o m - l e f t - r a d i u s :   0 ; 
 
 } 
 
 
 
 . a c c o r d i o n   >   . c a r d : l a s t - o f - t y p e   { 
 
     b o r d e r - t o p - l e f t - r a d i u s :   0 ; 
 
     b o r d e r - t o p - r i g h t - r a d i u s :   0 ; 
 
 } 
 
 
 
 . a c c o r d i o n   >   . c a r d   . c a r d - h e a d e r   { 
 
     m a r g i n - b o t t o m :   - 1 p x ; 
 
 } 
 
 
 
 . b r e a d c r u m b   { 
 
     d i s p l a y :   - m s - f l e x b o x ; 
 
     d i s p l a y :   f l e x ; 
 
     - m s - f l e x - w r a p :   w r a p ; 
 
     f l e x - w r a p :   w r a p ; 
 
     p a d d i n g :   0 . 7 5 r e m   1 r e m ; 
 
     m a r g i n - b o t t o m :   1 r e m ; 
 
     l i s t - s t y l e :   n o n e ; 
 
     b a c k g r o u n d - c o l o r :   # e 9 e c e f ; 
 
     b o r d e r - r a d i u s :   0 . 2 5 r e m ; 
 
 } 
 
 
 
 . b r e a d c r u m b - i t e m   +   . b r e a d c r u m b - i t e m   { 
 
     p a d d i n g - l e f t :   0 . 5 r e m ; 
 
 } 
 
 
 
 . b r e a d c r u m b - i t e m   +   . b r e a d c r u m b - i t e m : : b e f o r e   { 
 
     d i s p l a y :   i n l i n e - b l o c k ; 
 
     p a d d i n g - r i g h t :   0 . 5 r e m ; 
 
     c o l o r :   # 6 c 7 5 7 d ; 
 
     c o n t e n t :   " / " ; 
 
 } 
 
 
 
 . b r e a d c r u m b - i t e m   +   . b r e a d c r u m b - i t e m : h o v e r : : b e f o r e   { 
 
     t e x t - d e c o r a t i o n :   u n d e r l i n e ; 
 
 } 
 
 
 
 . b r e a d c r u m b - i t e m   +   . b r e a d c r u m b - i t e m : h o v e r : : b e f o r e   { 
 
     t e x t - d e c o r a t i o n :   n o n e ; 
 
 } 
 
 
 
 . b r e a d c r u m b - i t e m . a c t i v e   { 
 
     c o l o r :   # 6 c 7 5 7 d ; 
 
 } 
 
 
 
 . p a g i n a t i o n   { 
 
     d i s p l a y :   - m s - f l e x b o x ; 
 
     d i s p l a y :   f l e x ; 
 
     p a d d i n g - l e f t :   0 ; 
 
     l i s t - s t y l e :   n o n e ; 
 
     b o r d e r - r a d i u s :   0 . 2 5 r e m ; 
 
 } 
 
 
 
 . p a g e - l i n k   { 
 
     p o s i t i o n :   r e l a t i v e ; 
 
     d i s p l a y :   b l o c k ; 
 
     p a d d i n g :   0 . 5 r e m   0 . 7 5 r e m ; 
 
     m a r g i n - l e f t :   - 1 p x ; 
 
     l i n e - h e i g h t :   1 . 2 5 ; 
 
     c o l o r :   # 0 0 7 b f f ; 
 
     b a c k g r o u n d - c o l o r :   # f f f ; 
 
     b o r d e r :   1 p x   s o l i d   # d e e 2 e 6 ; 
 
 } 
 
 
 
 . p a g e - l i n k : h o v e r   { 
 
     z - i n d e x :   2 ; 
 
     c o l o r :   # 0 0 5 6 b 3 ; 
 
     t e x t - d e c o r a t i o n :   n o n e ; 
 
     b a c k g r o u n d - c o l o r :   # e 9 e c e f ; 
 
     b o r d e r - c o l o r :   # d e e 2 e 6 ; 
 
 } 
 
 
 
 . p a g e - l i n k : f o c u s   { 
 
     z - i n d e x :   2 ; 
 
     o u t l i n e :   0 ; 
 
     b o x - s h a d o w :   0   0   0   0 . 2 r e m   r g b a ( 0 ,   1 2 3 ,   2 5 5 ,   0 . 2 5 ) ; 
 
 } 
 
 
 
 . p a g e - i t e m : f i r s t - c h i l d   . p a g e - l i n k   { 
 
     m a r g i n - l e f t :   0 ; 
 
     b o r d e r - t o p - l e f t - r a d i u s :   0 . 2 5 r e m ; 
 
     b o r d e r - b o t t o m - l e f t - r a d i u s :   0 . 2 5 r e m ; 
 
 } 
 
 
 
 . p a g e - i t e m : l a s t - c h i l d   . p a g e - l i n k   { 
 
     b o r d e r - t o p - r i g h t - r a d i u s :   0 . 2 5 r e m ; 
 
     b o r d e r - b o t t o m - r i g h t - r a d i u s :   0 . 2 5 r e m ; 
 
 } 
 
 
 
 . p a g e - i t e m . a c t i v e   . p a g e - l i n k   { 
 
     z - i n d e x :   1 ; 
 
     c o l o r :   # f f f ; 
 
     b a c k g r o u n d - c o l o r :   # 0 0 7 b f f ; 
 
     b o r d e r - c o l o r :   # 0 0 7 b f f ; 
 
 } 
 
 
 
 . p a g e - i t e m . d i s a b l e d   . p a g e - l i n k   { 
 
     c o l o r :   # 6 c 7 5 7 d ; 
 
     p o i n t e r - e v e n t s :   n o n e ; 
 
     c u r s o r :   a u t o ; 
 
     b a c k g r o u n d - c o l o r :   # f f f ; 
 
     b o r d e r - c o l o r :   # d e e 2 e 6 ; 
 
 } 
 
 
 
 . p a g i n a t i o n - l g   . p a g e - l i n k   { 
 
     p a d d i n g :   0 . 7 5 r e m   1 . 5 r e m ; 
 
     f o n t - s i z e :   1 . 2 5 r e m ; 
 
     l i n e - h e i g h t :   1 . 5 ; 
 
 } 
 
 
 
 . p a g i n a t i o n - l g   . p a g e - i t e m : f i r s t - c h i l d   . p a g e - l i n k   { 
 
     b o r d e r - t o p - l e f t - r a d i u s :   0 . 3 r e m ; 
 
     b o r d e r - b o t t o m - l e f t - r a d i u s :   0 . 3 r e m ; 
 
 } 
 
 
 
 . p a g i n a t i o n - l g   . p a g e - i t e m : l a s t - c h i l d   . p a g e - l i n k   { 
 
     b o r d e r - t o p - r i g h t - r a d i u s :   0 . 3 r e m ; 
 
     b o r d e r - b o t t o m - r i g h t - r a d i u s :   0 . 3 r e m ; 
 
 } 
 
 
 
 . p a g i n a t i o n - s m   . p a g e - l i n k   { 
 
     p a d d i n g :   0 . 2 5 r e m   0 . 5 r e m ; 
 
     f o n t - s i z e :   0 . 8 7 5 r e m ; 
 
     l i n e - h e i g h t :   1 . 5 ; 
 
 } 
 
 
 
 . p a g i n a t i o n - s m   . p a g e - i t e m : f i r s t - c h i l d   . p a g e - l i n k   { 
 
     b o r d e r - t o p - l e f t - r a d i u s :   0 . 2 r e m ; 
 
     b o r d e r - b o t t o m - l e f t - r a d i u s :   0 . 2 r e m ; 
 
 } 
 
 
 
 . p a g i n a t i o n - s m   . p a g e - i t e m : l a s t - c h i l d   . p a g e - l i n k   { 
 
     b o r d e r - t o p - r i g h t - r a d i u s :   0 . 2 r e m ; 
 
     b o r d e r - b o t t o m - r i g h t - r a d i u s :   0 . 2 r e m ; 
 
 } 
 
 
 
 . b a d g e   { 
 
     d i s p l a y :   i n l i n e - b l o c k ; 
 
     p a d d i n g :   0 . 2 5 e m   0 . 4 e m ; 
 
     f o n t - s i z e :   7 5 % ; 
 
     f o n t - w e i g h t :   7 0 0 ; 
 
     l i n e - h e i g h t :   1 ; 
 
     t e x t - a l i g n :   c e n t e r ; 
 
     w h i t e - s p a c e :   n o w r a p ; 
 
     v e r t i c a l - a l i g n :   b a s e l i n e ; 
 
     b o r d e r - r a d i u s :   0 . 2 5 r e m ; 
 
     t r a n s i t i o n :   c o l o r   0 . 1 5 s   e a s e - i n - o u t ,   b a c k g r o u n d - c o l o r   0 . 1 5 s   e a s e - i n - o u t ,   b o r d e r - c o l o r   0 . 1 5 s   e a s e - i n - o u t ,   b o x - s h a d o w   0 . 1 5 s   e a s e - i n - o u t ; 
 
 } 
 
 
 
 @ m e d i a   ( p r e f e r s - r e d u c e d - m o t i o n :   r e d u c e )   { 
 
     . b a d g e   { 
 
         t r a n s i t i o n :   n o n e ; 
 
     } 
 
 } 
 
 
 
 a . b a d g e : h o v e r ,   a . b a d g e : f o c u s   { 
 
     t e x t - d e c o r a t i o n :   n o n e ; 
 
 } 
 
 
 
 . b a d g e : e m p t y   { 
 
     d i s p l a y :   n o n e ; 
 
 } 
 
 
 
 . b t n   . b a d g e   { 
 
     p o s i t i o n :   r e l a t i v e ; 
 
     t o p :   - 1 p x ; 
 
 } 
 
 
 
 . b a d g e - p i l l   { 
 
     p a d d i n g - r i g h t :   0 . 6 e m ; 
 
     p a d d i n g - l e f t :   0 . 6 e m ; 
 
     b o r d e r - r a d i u s :   1 0 r e m ; 
 
 } 
 
 
 
 . b a d g e - p r i m a r y   { 
 
     c o l o r :   # f f f ; 
 
     b a c k g r o u n d - c o l o r :   # 0 0 7 b f f ; 
 
 } 
 
 
 
 a . b a d g e - p r i m a r y : h o v e r ,   a . b a d g e - p r i m a r y : f o c u s   { 
 
     c o l o r :   # f f f ; 
 
     b a c k g r o u n d - c o l o r :   # 0 0 6 2 c c ; 
 
 } 
 
 
 
 a . b a d g e - p r i m a r y : f o c u s ,   a . b a d g e - p r i m a r y . f o c u s   { 
 
     o u t l i n e :   0 ; 
 
     b o x - s h a d o w :   0   0   0   0 . 2 r e m   r g b a ( 0 ,   1 2 3 ,   2 5 5 ,   0 . 5 ) ; 
 
 } 
 
 
 
 . b a d g e - s e c o n d a r y   { 
 
     c o l o r :   # f f f ; 
 
     b a c k g r o u n d - c o l o r :   # 6 c 7 5 7 d ; 
 
 } 
 
 
 
 a . b a d g e - s e c o n d a r y : h o v e r ,   a . b a d g e - s e c o n d a r y : f o c u s   { 
 
     c o l o r :   # f f f ; 
 
     b a c k g r o u n d - c o l o r :   # 5 4 5 b 6 2 ; 
 
 } 
 
 
 
 a . b a d g e - s e c o n d a r y : f o c u s ,   a . b a d g e - s e c o n d a r y . f o c u s   { 
 
     o u t l i n e :   0 ; 
 
     b o x - s h a d o w :   0   0   0   0 . 2 r e m   r g b a ( 1 0 8 ,   1 1 7 ,   1 2 5 ,   0 . 5 ) ; 
 
 } 
 
 
 
 . b a d g e - s u c c e s s   { 
 
     c o l o r :   # f f f ; 
 
     b a c k g r o u n d - c o l o r :   # 2 8 a 7 4 5 ; 
 
 } 
 
 
 
 a . b a d g e - s u c c e s s : h o v e r ,   a . b a d g e - s u c c e s s : f o c u s   { 
 
     c o l o r :   # f f f ; 
 
     b a c k g r o u n d - c o l o r :   # 1 e 7 e 3 4 ; 
 
 } 
 
 
 
 a . b a d g e - s u c c e s s : f o c u s ,   a . b a d g e - s u c c e s s . f o c u s   { 
 
     o u t l i n e :   0 ; 
 
     b o x - s h a d o w :   0   0   0   0 . 2 r e m   r g b a ( 4 0 ,   1 6 7 ,   6 9 ,   0 . 5 ) ; 
 
 } 
 
 
 
 . b a d g e - i n f o   { 
 
     c o l o r :   # f f f ; 
 
     b a c k g r o u n d - c o l o r :   # 1 7 a 2 b 8 ; 
 
 } 
 
 
 
 a . b a d g e - i n f o : h o v e r ,   a . b a d g e - i n f o : f o c u s   { 
 
     c o l o r :   # f f f ; 
 
     b a c k g r o u n d - c o l o r :   # 1 1 7 a 8 b ; 
 
 } 
 
 
 
 a . b a d g e - i n f o : f o c u s ,   a . b a d g e - i n f o . f o c u s   { 
 
     o u t l i n e :   0 ; 
 
     b o x - s h a d o w :   0   0   0   0 . 2 r e m   r g b a ( 2 3 ,   1 6 2 ,   1 8 4 ,   0 . 5 ) ; 
 
 } 
 
 
 
 . b a d g e - w a r n i n g   { 
 
     c o l o r :   # 2 1 2 5 2 9 ; 
 
     b a c k g r o u n d - c o l o r :   # f f c 1 0 7 ; 
 
 } 
 
 
 
 a . b a d g e - w a r n i n g : h o v e r ,   a . b a d g e - w a r n i n g : f o c u s   { 
 
     c o l o r :   # 2 1 2 5 2 9 ; 
 
     b a c k g r o u n d - c o l o r :   # d 3 9 e 0 0 ; 
 
 } 
 
 
 
 a . b a d g e - w a r n i n g : f o c u s ,   a . b a d g e - w a r n i n g . f o c u s   { 
 
     o u t l i n e :   0 ; 
 
     b o x - s h a d o w :   0   0   0   0 . 2 r e m   r g b a ( 2 5 5 ,   1 9 3 ,   7 ,   0 . 5 ) ; 
 
 } 
 
 
 
 . b a d g e - d a n g e r   { 
 
     c o l o r :   # f f f ; 
 
     b a c k g r o u n d - c o l o r :   # d c 3 5 4 5 ; 
 
 } 
 
 
 
 a . b a d g e - d a n g e r : h o v e r ,   a . b a d g e - d a n g e r : f o c u s   { 
 
     c o l o r :   # f f f ; 
 
     b a c k g r o u n d - c o l o r :   # b d 2 1 3 0 ; 
 
 } 
 
 
 
 a . b a d g e - d a n g e r : f o c u s ,   a . b a d g e - d a n g e r . f o c u s   { 
 
     o u t l i n e :   0 ; 
 
     b o x - s h a d o w :   0   0   0   0 . 2 r e m   r g b a ( 2 2 0 ,   5 3 ,   6 9 ,   0 . 5 ) ; 
 
 } 
 
 
 
 . b a d g e - l i g h t   { 
 
     c o l o r :   # 2 1 2 5 2 9 ; 
 
     b a c k g r o u n d - c o l o r :   # f 8 f 9 f a ; 
 
 } 
 
 
 
 a . b a d g e - l i g h t : h o v e r ,   a . b a d g e - l i g h t : f o c u s   { 
 
     c o l o r :   # 2 1 2 5 2 9 ; 
 
     b a c k g r o u n d - c o l o r :   # d a e 0 e 5 ; 
 
 } 
 
 
 
 a . b a d g e - l i g h t : f o c u s ,   a . b a d g e - l i g h t . f o c u s   { 
 
     o u t l i n e :   0 ; 
 
     b o x - s h a d o w :   0   0   0   0 . 2 r e m   r g b a ( 2 4 8 ,   2 4 9 ,   2 5 0 ,   0 . 5 ) ; 
 
 } 
 
 
 
 . b a d g e - d a r k   { 
 
     c o l o r :   # f f f ; 
 
     b a c k g r o u n d - c o l o r :   # 3 4 3 a 4 0 ; 
 
 } 
 
 
 
 a . b a d g e - d a r k : h o v e r ,   a . b a d g e - d a r k : f o c u s   { 
 
     c o l o r :   # f f f ; 
 
     b a c k g r o u n d - c o l o r :   # 1 d 2 1 2 4 ; 
 
 } 
 
 
 
 a . b a d g e - d a r k : f o c u s ,   a . b a d g e - d a r k . f o c u s   { 
 
     o u t l i n e :   0 ; 
 
     b o x - s h a d o w :   0   0   0   0 . 2 r e m   r g b a ( 5 2 ,   5 8 ,   6 4 ,   0 . 5 ) ; 
 
 } 
 
 
 
 . j u m b o t r o n   { 
 
     p a d d i n g :   2 r e m   1 r e m ; 
 
     m a r g i n - b o t t o m :   2 r e m ; 
 
     b a c k g r o u n d - c o l o r :   # e 9 e c e f ; 
 
     b o r d e r - r a d i u s :   0 . 3 r e m ; 
 
 } 
 
 
 
 @ m e d i a   ( m i n - w i d t h :   5 7 6 p x )   { 
 
     . j u m b o t r o n   { 
 
         p a d d i n g :   4 r e m   2 r e m ; 
 
     } 
 
 } 
 
 
 
 . j u m b o t r o n - f l u i d   { 
 
     p a d d i n g - r i g h t :   0 ; 
 
     p a d d i n g - l e f t :   0 ; 
 
     b o r d e r - r a d i u s :   0 ; 
 
 } 
 
 
 
 . a l e r t   { 
 
     p o s i t i o n :   r e l a t i v e ; 
 
     p a d d i n g :   0 . 7 5 r e m   1 . 2 5 r e m ; 
 
     m a r g i n - b o t t o m :   1 r e m ; 
 
     b o r d e r :   1 p x   s o l i d   t r a n s p a r e n t ; 
 
     b o r d e r - r a d i u s :   0 . 2 5 r e m ; 
 
 } 
 
 
 
 . a l e r t - h e a d i n g   { 
 
     c o l o r :   i n h e r i t ; 
 
 } 
 
 
 
 . a l e r t - l i n k   { 
 
     f o n t - w e i g h t :   7 0 0 ; 
 
 } 
 
 
 
 . a l e r t - d i s m i s s i b l e   { 
 
     p a d d i n g - r i g h t :   4 r e m ; 
 
 } 
 
 
 
 . a l e r t - d i s m i s s i b l e   . c l o s e   { 
 
     p o s i t i o n :   a b s o l u t e ; 
 
     t o p :   0 ; 
 
     r i g h t :   0 ; 
 
     p a d d i n g :   0 . 7 5 r e m   1 . 2 5 r e m ; 
 
     c o l o r :   i n h e r i t ; 
 
 } 
 
 
 
 . a l e r t - p r i m a r y   { 
 
     c o l o r :   # 0 0 4 0 8 5 ; 
 
     b a c k g r o u n d - c o l o r :   # c c e 5 f f ; 
 
     b o r d e r - c o l o r :   # b 8 d a f f ; 
 
 } 
 
 
 
 . a l e r t - p r i m a r y   h r   { 
 
     b o r d e r - t o p - c o l o r :   # 9 f c d f f ; 
 
 } 
 
 
 
 . a l e r t - p r i m a r y   . a l e r t - l i n k   { 
 
     c o l o r :   # 0 0 2 7 5 2 ; 
 
 } 
 
 
 
 . a l e r t - s e c o n d a r y   { 
 
     c o l o r :   # 3 8 3 d 4 1 ; 
 
     b a c k g r o u n d - c o l o r :   # e 2 e 3 e 5 ; 
 
     b o r d e r - c o l o r :   # d 6 d 8 d b ; 
 
 } 
 
 
 
 . a l e r t - s e c o n d a r y   h r   { 
 
     b o r d e r - t o p - c o l o r :   # c 8 c b c f ; 
 
 } 
 
 
 
 . a l e r t - s e c o n d a r y   . a l e r t - l i n k   { 
 
     c o l o r :   # 2 0 2 3 2 6 ; 
 
 } 
 
 
 
 . a l e r t - s u c c e s s   { 
 
     c o l o r :   # 1 5 5 7 2 4 ; 
 
     b a c k g r o u n d - c o l o r :   # d 4 e d d a ; 
 
     b o r d e r - c o l o r :   # c 3 e 6 c b ; 
 
 } 
 
 
 
 . a l e r t - s u c c e s s   h r   { 
 
     b o r d e r - t o p - c o l o r :   # b 1 d f b b ; 
 
 } 
 
 
 
 . a l e r t - s u c c e s s   . a l e r t - l i n k   { 
 
     c o l o r :   # 0 b 2 e 1 3 ; 
 
 } 
 
 
 
 . a l e r t - i n f o   { 
 
     c o l o r :   # 0 c 5 4 6 0 ; 
 
     b a c k g r o u n d - c o l o r :   # d 1 e c f 1 ; 
 
     b o r d e r - c o l o r :   # b e e 5 e b ; 
 
 } 
 
 
 
 . a l e r t - i n f o   h r   { 
 
     b o r d e r - t o p - c o l o r :   # a b d d e 5 ; 
 
 } 
 
 
 
 . a l e r t - i n f o   . a l e r t - l i n k   { 
 
     c o l o r :   # 0 6 2 c 3 3 ; 
 
 } 
 
 
 
 . a l e r t - w a r n i n g   { 
 
     c o l o r :   # 8 5 6 4 0 4 ; 
 
     b a c k g r o u n d - c o l o r :   # f f f 3 c d ; 
 
     b o r d e r - c o l o r :   # f f e e b a ; 
 
 } 
 
 
 
 . a l e r t - w a r n i n g   h r   { 
 
     b o r d e r - t o p - c o l o r :   # f f e 8 a 1 ; 
 
 } 
 
 
 
 . a l e r t - w a r n i n g   . a l e r t - l i n k   { 
 
     c o l o r :   # 5 3 3 f 0 3 ; 
 
 } 
 
 
 
 . a l e r t - d a n g e r   { 
 
     c o l o r :   # 7 2 1 c 2 4 ; 
 
     b a c k g r o u n d - c o l o r :   # f 8 d 7 d a ; 
 
     b o r d e r - c o l o r :   # f 5 c 6 c b ; 
 
 } 
 
 
 
 . a l e r t - d a n g e r   h r   { 
 
     b o r d e r - t o p - c o l o r :   # f 1 b 0 b 7 ; 
 
 } 
 
 
 
 . a l e r t - d a n g e r   . a l e r t - l i n k   { 
 
     c o l o r :   # 4 9 1 2 1 7 ; 
 
 } 
 
 
 
 . a l e r t - l i g h t   { 
 
     c o l o r :   # 8 1 8 1 8 2 ; 
 
     b a c k g r o u n d - c o l o r :   # f e f e f e ; 
 
     b o r d e r - c o l o r :   # f d f d f e ; 
 
 } 
 
 
 
 . a l e r t - l i g h t   h r   { 
 
     b o r d e r - t o p - c o l o r :   # e c e c f 6 ; 
 
 } 
 
 
 
 . a l e r t - l i g h t   . a l e r t - l i n k   { 
 
     c o l o r :   # 6 8 6 8 6 8 ; 
 
 } 
 
 
 
 . a l e r t - d a r k   { 
 
     c o l o r :   # 1 b 1 e 2 1 ; 
 
     b a c k g r o u n d - c o l o r :   # d 6 d 8 d 9 ; 
 
     b o r d e r - c o l o r :   # c 6 c 8 c a ; 
 
 } 
 
 
 
 . a l e r t - d a r k   h r   { 
 
     b o r d e r - t o p - c o l o r :   # b 9 b b b e ; 
 
 } 
 
 
 
 . a l e r t - d a r k   . a l e r t - l i n k   { 
 
     c o l o r :   # 0 4 0 5 0 5 ; 
 
 } 
 
 
 
 @ - w e b k i t - k e y f r a m e s   p r o g r e s s - b a r - s t r i p e s   { 
 
     f r o m   { 
 
         b a c k g r o u n d - p o s i t i o n :   1 r e m   0 ; 
 
     } 
 
     t o   { 
 
         b a c k g r o u n d - p o s i t i o n :   0   0 ; 
 
     } 
 
 } 
 
 
 
 @ k e y f r a m e s   p r o g r e s s - b a r - s t r i p e s   { 
 
     f r o m   { 
 
         b a c k g r o u n d - p o s i t i o n :   1 r e m   0 ; 
 
     } 
 
     t o   { 
 
         b a c k g r o u n d - p o s i t i o n :   0   0 ; 
 
     } 
 
 } 
 
 
 
 . p r o g r e s s   { 
 
     d i s p l a y :   - m s - f l e x b o x ; 
 
     d i s p l a y :   f l e x ; 
 
     h e i g h t :   1 r e m ; 
 
     o v e r f l o w :   h i d d e n ; 
 
     f o n t - s i z e :   0 . 7 5 r e m ; 
 
     b a c k g r o u n d - c o l o r :   # e 9 e c e f ; 
 
     b o r d e r - r a d i u s :   0 . 2 5 r e m ; 
 
 } 
 
 
 
 . p r o g r e s s - b a r   { 
 
     d i s p l a y :   - m s - f l e x b o x ; 
 
     d i s p l a y :   f l e x ; 
 
     - m s - f l e x - d i r e c t i o n :   c o l u m n ; 
 
     f l e x - d i r e c t i o n :   c o l u m n ; 
 
     - m s - f l e x - p a c k :   c e n t e r ; 
 
     j u s t i f y - c o n t e n t :   c e n t e r ; 
 
     c o l o r :   # f f f ; 
 
     t e x t - a l i g n :   c e n t e r ; 
 
     w h i t e - s p a c e :   n o w r a p ; 
 
     b a c k g r o u n d - c o l o r :   # 0 0 7 b f f ; 
 
     t r a n s i t i o n :   w i d t h   0 . 6 s   e a s e ; 
 
 } 
 
 
 
 @ m e d i a   ( p r e f e r s - r e d u c e d - m o t i o n :   r e d u c e )   { 
 
     . p r o g r e s s - b a r   { 
 
         t r a n s i t i o n :   n o n e ; 
 
     } 
 
 } 
 
 
 
 . p r o g r e s s - b a r - s t r i p e d   { 
 
     b a c k g r o u n d - i m a g e :   l i n e a r - g r a d i e n t ( 4 5 d e g ,   r g b a ( 2 5 5 ,   2 5 5 ,   2 5 5 ,   0 . 1 5 )   2 5 % ,   t r a n s p a r e n t   2 5 % ,   t r a n s p a r e n t   5 0 % ,   r g b a ( 2 5 5 ,   2 5 5 ,   2 5 5 ,   0 . 1 5 )   5 0 % ,   r g b a ( 2 5 5 ,   2 5 5 ,   2 5 5 ,   0 . 1 5 )   7 5 % ,   t r a n s p a r e n t   7 5 % ,   t r a n s p a r e n t ) ; 
 
     b a c k g r o u n d - s i z e :   1 r e m   1 r e m ; 
 
 } 
 
 
 
 . p r o g r e s s - b a r - a n i m a t e d   { 
 
     - w e b k i t - a n i m a t i o n :   p r o g r e s s - b a r - s t r i p e s   1 s   l i n e a r   i n f i n i t e ; 
 
     a n i m a t i o n :   p r o g r e s s - b a r - s t r i p e s   1 s   l i n e a r   i n f i n i t e ; 
 
 } 
 
 
 
 @ m e d i a   ( p r e f e r s - r e d u c e d - m o t i o n :   r e d u c e )   { 
 
     . p r o g r e s s - b a r - a n i m a t e d   { 
 
         - w e b k i t - a n i m a t i o n :   n o n e ; 
 
         a n i m a t i o n :   n o n e ; 
 
     } 
 
 } 
 
 
 
 . m e d i a   { 
 
     d i s p l a y :   - m s - f l e x b o x ; 
 
     d i s p l a y :   f l e x ; 
 
     - m s - f l e x - a l i g n :   s t a r t ; 
 
     a l i g n - i t e m s :   f l e x - s t a r t ; 
 
 } 
 
 
 
 . m e d i a - b o d y   { 
 
     - m s - f l e x :   1 ; 
 
     f l e x :   1 ; 
 
 } 
 
 
 
 . l i s t - g r o u p   { 
 
     d i s p l a y :   - m s - f l e x b o x ; 
 
     d i s p l a y :   f l e x ; 
 
     - m s - f l e x - d i r e c t i o n :   c o l u m n ; 
 
     f l e x - d i r e c t i o n :   c o l u m n ; 
 
     p a d d i n g - l e f t :   0 ; 
 
     m a r g i n - b o t t o m :   0 ; 
 
 } 
 
 
 
 . l i s t - g r o u p - i t e m - a c t i o n   { 
 
     w i d t h :   1 0 0 % ; 
 
     c o l o r :   # 4 9 5 0 5 7 ; 
 
     t e x t - a l i g n :   i n h e r i t ; 
 
 } 
 
 
 
 . l i s t - g r o u p - i t e m - a c t i o n : h o v e r ,   . l i s t - g r o u p - i t e m - a c t i o n : f o c u s   { 
 
     z - i n d e x :   1 ; 
 
     c o l o r :   # 4 9 5 0 5 7 ; 
 
     t e x t - d e c o r a t i o n :   n o n e ; 
 
     b a c k g r o u n d - c o l o r :   # f 8 f 9 f a ; 
 
 } 
 
 
 
 . l i s t - g r o u p - i t e m - a c t i o n : a c t i v e   { 
 
     c o l o r :   # 2 1 2 5 2 9 ; 
 
     b a c k g r o u n d - c o l o r :   # e 9 e c e f ; 
 
 } 
 
 
 
 . l i s t - g r o u p - i t e m   { 
 
     p o s i t i o n :   r e l a t i v e ; 
 
     d i s p l a y :   b l o c k ; 
 
     p a d d i n g :   0 . 7 5 r e m   1 . 2 5 r e m ; 
 
     m a r g i n - b o t t o m :   - 1 p x ; 
 
     b a c k g r o u n d - c o l o r :   # f f f ; 
 
     b o r d e r :   1 p x   s o l i d   r g b a ( 0 ,   0 ,   0 ,   0 . 1 2 5 ) ; 
 
 } 
 
 
 
 . l i s t - g r o u p - i t e m : f i r s t - c h i l d   { 
 
     b o r d e r - t o p - l e f t - r a d i u s :   0 . 2 5 r e m ; 
 
     b o r d e r - t o p - r i g h t - r a d i u s :   0 . 2 5 r e m ; 
 
 } 
 
 
 
 . l i s t - g r o u p - i t e m : l a s t - c h i l d   { 
 
     m a r g i n - b o t t o m :   0 ; 
 
     b o r d e r - b o t t o m - r i g h t - r a d i u s :   0 . 2 5 r e m ; 
 
     b o r d e r - b o t t o m - l e f t - r a d i u s :   0 . 2 5 r e m ; 
 
 } 
 
 
 
 . l i s t - g r o u p - i t e m . d i s a b l e d ,   . l i s t - g r o u p - i t e m : d i s a b l e d   { 
 
     c o l o r :   # 6 c 7 5 7 d ; 
 
     p o i n t e r - e v e n t s :   n o n e ; 
 
     b a c k g r o u n d - c o l o r :   # f f f ; 
 
 } 
 
 
 
 . l i s t - g r o u p - i t e m . a c t i v e   { 
 
     z - i n d e x :   2 ; 
 
     c o l o r :   # f f f ; 
 
     b a c k g r o u n d - c o l o r :   # 0 0 7 b f f ; 
 
     b o r d e r - c o l o r :   # 0 0 7 b f f ; 
 
 } 
 
 
 
 . l i s t - g r o u p - h o r i z o n t a l   { 
 
     - m s - f l e x - d i r e c t i o n :   r o w ; 
 
     f l e x - d i r e c t i o n :   r o w ; 
 
 } 
 
 
 
 . l i s t - g r o u p - h o r i z o n t a l   . l i s t - g r o u p - i t e m   { 
 
     m a r g i n - r i g h t :   - 1 p x ; 
 
     m a r g i n - b o t t o m :   0 ; 
 
 } 
 
 
 
 . l i s t - g r o u p - h o r i z o n t a l   . l i s t - g r o u p - i t e m : f i r s t - c h i l d   { 
 
     b o r d e r - t o p - l e f t - r a d i u s :   0 . 2 5 r e m ; 
 
     b o r d e r - b o t t o m - l e f t - r a d i u s :   0 . 2 5 r e m ; 
 
     b o r d e r - t o p - r i g h t - r a d i u s :   0 ; 
 
 } 
 
 
 
 . l i s t - g r o u p - h o r i z o n t a l   . l i s t - g r o u p - i t e m : l a s t - c h i l d   { 
 
     m a r g i n - r i g h t :   0 ; 
 
     b o r d e r - t o p - r i g h t - r a d i u s :   0 . 2 5 r e m ; 
 
     b o r d e r - b o t t o m - r i g h t - r a d i u s :   0 . 2 5 r e m ; 
 
     b o r d e r - b o t t o m - l e f t - r a d i u s :   0 ; 
 
 } 
 
 
 
 @ m e d i a   ( m i n - w i d t h :   5 7 6 p x )   { 
 
     . l i s t - g r o u p - h o r i z o n t a l - s m   { 
 
         - m s - f l e x - d i r e c t i o n :   r o w ; 
 
         f l e x - d i r e c t i o n :   r o w ; 
 
     } 
 
     . l i s t - g r o u p - h o r i z o n t a l - s m   . l i s t - g r o u p - i t e m   { 
 
         m a r g i n - r i g h t :   - 1 p x ; 
 
         m a r g i n - b o t t o m :   0 ; 
 
     } 
 
     . l i s t - g r o u p - h o r i z o n t a l - s m   . l i s t - g r o u p - i t e m : f i r s t - c h i l d   { 
 
         b o r d e r - t o p - l e f t - r a d i u s :   0 . 2 5 r e m ; 
 
         b o r d e r - b o t t o m - l e f t - r a d i u s :   0 . 2 5 r e m ; 
 
         b o r d e r - t o p - r i g h t - r a d i u s :   0 ; 
 
     } 
 
     . l i s t - g r o u p - h o r i z o n t a l - s m   . l i s t - g r o u p - i t e m : l a s t - c h i l d   { 
 
         m a r g i n - r i g h t :   0 ; 
 
         b o r d e r - t o p - r i g h t - r a d i u s :   0 . 2 5 r e m ; 
 
         b o r d e r - b o t t o m - r i g h t - r a d i u s :   0 . 2 5 r e m ; 
 
         b o r d e r - b o t t o m - l e f t - r a d i u s :   0 ; 
 
     } 
 
 } 
 
 
 
 @ m e d i a   ( m i n - w i d t h :   7 6 8 p x )   { 
 
     . l i s t - g r o u p - h o r i z o n t a l - m d   { 
 
         - m s - f l e x - d i r e c t i o n :   r o w ; 
 
         f l e x - d i r e c t i o n :   r o w ; 
 
     } 
 
     . l i s t - g r o u p - h o r i z o n t a l - m d   . l i s t - g r o u p - i t e m   { 
 
         m a r g i n - r i g h t :   - 1 p x ; 
 
         m a r g i n - b o t t o m :   0 ; 
 
     } 
 
     . l i s t - g r o u p - h o r i z o n t a l - m d   . l i s t - g r o u p - i t e m : f i r s t - c h i l d   { 
 
         b o r d e r - t o p - l e f t - r a d i u s :   0 . 2 5 r e m ; 
 
         b o r d e r - b o t t o m - l e f t - r a d i u s :   0 . 2 5 r e m ; 
 
         b o r d e r - t o p - r i g h t - r a d i u s :   0 ; 
 
     } 
 
     . l i s t - g r o u p - h o r i z o n t a l - m d   . l i s t - g r o u p - i t e m : l a s t - c h i l d   { 
 
         m a r g i n - r i g h t :   0 ; 
 
         b o r d e r - t o p - r i g h t - r a d i u s :   0 . 2 5 r e m ; 
 
         b o r d e r - b o t t o m - r i g h t - r a d i u s :   0 . 2 5 r e m ; 
 
         b o r d e r - b o t t o m - l e f t - r a d i u s :   0 ; 
 
     } 
 
 } 
 
 
 
 @ m e d i a   ( m i n - w i d t h :   9 9 2 p x )   { 
 
     . l i s t - g r o u p - h o r i z o n t a l - l g   { 
 
         - m s - f l e x - d i r e c t i o n :   r o w ; 
 
         f l e x - d i r e c t i o n :   r o w ; 
 
     } 
 
     . l i s t - g r o u p - h o r i z o n t a l - l g   . l i s t - g r o u p - i t e m   { 
 
         m a r g i n - r i g h t :   - 1 p x ; 
 
         m a r g i n - b o t t o m :   0 ; 
 
     } 
 
     . l i s t - g r o u p - h o r i z o n t a l - l g   . l i s t - g r o u p - i t e m : f i r s t - c h i l d   { 
 
         b o r d e r - t o p - l e f t - r a d i u s :   0 . 2 5 r e m ; 
 
         b o r d e r - b o t t o m - l e f t - r a d i u s :   0 . 2 5 r e m ; 
 
         b o r d e r - t o p - r i g h t - r a d i u s :   0 ; 
 
     } 
 
     . l i s t - g r o u p - h o r i z o n t a l - l g   . l i s t - g r o u p - i t e m : l a s t - c h i l d   { 
 
         m a r g i n - r i g h t :   0 ; 
 
         b o r d e r - t o p - r i g h t - r a d i u s :   0 . 2 5 r e m ; 
 
         b o r d e r - b o t t o m - r i g h t - r a d i u s :   0 . 2 5 r e m ; 
 
         b o r d e r - b o t t o m - l e f t - r a d i u s :   0 ; 
 
     } 
 
 } 
 
 
 
 @ m e d i a   ( m i n - w i d t h :   1 2 0 0 p x )   { 
 
     . l i s t - g r o u p - h o r i z o n t a l - x l   { 
 
         - m s - f l e x - d i r e c t i o n :   r o w ; 
 
         f l e x - d i r e c t i o n :   r o w ; 
 
     } 
 
     . l i s t - g r o u p - h o r i z o n t a l - x l   . l i s t - g r o u p - i t e m   { 
 
         m a r g i n - r i g h t :   - 1 p x ; 
 
         m a r g i n - b o t t o m :   0 ; 
 
     } 
 
     . l i s t - g r o u p - h o r i z o n t a l - x l   . l i s t - g r o u p - i t e m : f i r s t - c h i l d   { 
 
         b o r d e r - t o p - l e f t - r a d i u s :   0 . 2 5 r e m ; 
 
         b o r d e r - b o t t o m - l e f t - r a d i u s :   0 . 2 5 r e m ; 
 
         b o r d e r - t o p - r i g h t - r a d i u s :   0 ; 
 
     } 
 
     . l i s t - g r o u p - h o r i z o n t a l - x l   . l i s t - g r o u p - i t e m : l a s t - c h i l d   { 
 
         m a r g i n - r i g h t :   0 ; 
 
         b o r d e r - t o p - r i g h t - r a d i u s :   0 . 2 5 r e m ; 
 
         b o r d e r - b o t t o m - r i g h t - r a d i u s :   0 . 2 5 r e m ; 
 
         b o r d e r - b o t t o m - l e f t - r a d i u s :   0 ; 
 
     } 
 
 } 
 
 
 
 . l i s t - g r o u p - f l u s h   . l i s t - g r o u p - i t e m   { 
 
     b o r d e r - r i g h t :   0 ; 
 
     b o r d e r - l e f t :   0 ; 
 
     b o r d e r - r a d i u s :   0 ; 
 
 } 
 
 
 
 . l i s t - g r o u p - f l u s h   . l i s t - g r o u p - i t e m : l a s t - c h i l d   { 
 
     m a r g i n - b o t t o m :   - 1 p x ; 
 
 } 
 
 
 
 . l i s t - g r o u p - f l u s h : f i r s t - c h i l d   . l i s t - g r o u p - i t e m : f i r s t - c h i l d   { 
 
     b o r d e r - t o p :   0 ; 
 
 } 
 
 
 
 . l i s t - g r o u p - f l u s h : l a s t - c h i l d   . l i s t - g r o u p - i t e m : l a s t - c h i l d   { 
 
     m a r g i n - b o t t o m :   0 ; 
 
     b o r d e r - b o t t o m :   0 ; 
 
 } 
 
 
 
 . l i s t - g r o u p - i t e m - p r i m a r y   { 
 
     c o l o r :   # 0 0 4 0 8 5 ; 
 
     b a c k g r o u n d - c o l o r :   # b 8 d a f f ; 
 
 } 
 
 
 
 . l i s t - g r o u p - i t e m - p r i m a r y . l i s t - g r o u p - i t e m - a c t i o n : h o v e r ,   . l i s t - g r o u p - i t e m - p r i m a r y . l i s t - g r o u p - i t e m - a c t i o n : f o c u s   { 
 
     c o l o r :   # 0 0 4 0 8 5 ; 
 
     b a c k g r o u n d - c o l o r :   # 9 f c d f f ; 
 
 } 
 
 
 
 . l i s t - g r o u p - i t e m - p r i m a r y . l i s t - g r o u p - i t e m - a c t i o n . a c t i v e   { 
 
     c o l o r :   # f f f ; 
 
     b a c k g r o u n d - c o l o r :   # 0 0 4 0 8 5 ; 
 
     b o r d e r - c o l o r :   # 0 0 4 0 8 5 ; 
 
 } 
 
 
 
 . l i s t - g r o u p - i t e m - s e c o n d a r y   { 
 
     c o l o r :   # 3 8 3 d 4 1 ; 
 
     b a c k g r o u n d - c o l o r :   # d 6 d 8 d b ; 
 
 } 
 
 
 
 . l i s t - g r o u p - i t e m - s e c o n d a r y . l i s t - g r o u p - i t e m - a c t i o n : h o v e r ,   . l i s t - g r o u p - i t e m - s e c o n d a r y . l i s t - g r o u p - i t e m - a c t i o n : f o c u s   { 
 
     c o l o r :   # 3 8 3 d 4 1 ; 
 
     b a c k g r o u n d - c o l o r :   # c 8 c b c f ; 
 
 } 
 
 
 
 . l i s t - g r o u p - i t e m - s e c o n d a r y . l i s t - g r o u p - i t e m - a c t i o n . a c t i v e   { 
 
     c o l o r :   # f f f ; 
 
     b a c k g r o u n d - c o l o r :   # 3 8 3 d 4 1 ; 
 
     b o r d e r - c o l o r :   # 3 8 3 d 4 1 ; 
 
 } 
 
 
 
 . l i s t - g r o u p - i t e m - s u c c e s s   { 
 
     c o l o r :   # 1 5 5 7 2 4 ; 
 
     b a c k g r o u n d - c o l o r :   # c 3 e 6 c b ; 
 
 } 
 
 
 
 . l i s t - g r o u p - i t e m - s u c c e s s . l i s t - g r o u p - i t e m - a c t i o n : h o v e r ,   . l i s t - g r o u p - i t e m - s u c c e s s . l i s t - g r o u p - i t e m - a c t i o n : f o c u s   { 
 
     c o l o r :   # 1 5 5 7 2 4 ; 
 
     b a c k g r o u n d - c o l o r :   # b 1 d f b b ; 
 
 } 
 
 
 
 . l i s t - g r o u p - i t e m - s u c c e s s . l i s t - g r o u p - i t e m - a c t i o n . a c t i v e   { 
 
     c o l o r :   # f f f ; 
 
     b a c k g r o u n d - c o l o r :   # 1 5 5 7 2 4 ; 
 
     b o r d e r - c o l o r :   # 1 5 5 7 2 4 ; 
 
 } 
 
 
 
 . l i s t - g r o u p - i t e m - i n f o   { 
 
     c o l o r :   # 0 c 5 4 6 0 ; 
 
     b a c k g r o u n d - c o l o r :   # b e e 5 e b ; 
 
 } 
 
 
 
 . l i s t - g r o u p - i t e m - i n f o . l i s t - g r o u p - i t e m - a c t i o n : h o v e r ,   . l i s t - g r o u p - i t e m - i n f o . l i s t - g r o u p - i t e m - a c t i o n : f o c u s   { 
 
     c o l o r :   # 0 c 5 4 6 0 ; 
 
     b a c k g r o u n d - c o l o r :   # a b d d e 5 ; 
 
 } 
 
 
 
 . l i s t - g r o u p - i t e m - i n f o . l i s t - g r o u p - i t e m - a c t i o n . a c t i v e   { 
 
     c o l o r :   # f f f ; 
 
     b a c k g r o u n d - c o l o r :   # 0 c 5 4 6 0 ; 
 
     b o r d e r - c o l o r :   # 0 c 5 4 6 0 ; 
 
 } 
 
 
 
 . l i s t - g r o u p - i t e m - w a r n i n g   { 
 
     c o l o r :   # 8 5 6 4 0 4 ; 
 
     b a c k g r o u n d - c o l o r :   # f f e e b a ; 
 
 } 
 
 
 
 . l i s t - g r o u p - i t e m - w a r n i n g . l i s t - g r o u p - i t e m - a c t i o n : h o v e r ,   . l i s t - g r o u p - i t e m - w a r n i n g . l i s t - g r o u p - i t e m - a c t i o n : f o c u s   { 
 
     c o l o r :   # 8 5 6 4 0 4 ; 
 
     b a c k g r o u n d - c o l o r :   # f f e 8 a 1 ; 
 
 } 
 
 
 
 . l i s t - g r o u p - i t e m - w a r n i n g . l i s t - g r o u p - i t e m - a c t i o n . a c t i v e   { 
 
     c o l o r :   # f f f ; 
 
     b a c k g r o u n d - c o l o r :   # 8 5 6 4 0 4 ; 
 
     b o r d e r - c o l o r :   # 8 5 6 4 0 4 ; 
 
 } 
 
 
 
 . l i s t - g r o u p - i t e m - d a n g e r   { 
 
     c o l o r :   # 7 2 1 c 2 4 ; 
 
     b a c k g r o u n d - c o l o r :   # f 5 c 6 c b ; 
 
 } 
 
 
 
 . l i s t - g r o u p - i t e m - d a n g e r . l i s t - g r o u p - i t e m - a c t i o n : h o v e r ,   . l i s t - g r o u p - i t e m - d a n g e r . l i s t - g r o u p - i t e m - a c t i o n : f o c u s   { 
 
     c o l o r :   # 7 2 1 c 2 4 ; 
 
     b a c k g r o u n d - c o l o r :   # f 1 b 0 b 7 ; 
 
 } 
 
 
 
 . l i s t - g r o u p - i t e m - d a n g e r . l i s t - g r o u p - i t e m - a c t i o n . a c t i v e   { 
 
     c o l o r :   # f f f ; 
 
     b a c k g r o u n d - c o l o r :   # 7 2 1 c 2 4 ; 
 
     b o r d e r - c o l o r :   # 7 2 1 c 2 4 ; 
 
 } 
 
 
 
 . l i s t - g r o u p - i t e m - l i g h t   { 
 
     c o l o r :   # 8 1 8 1 8 2 ; 
 
     b a c k g r o u n d - c o l o r :   # f d f d f e ; 
 
 } 
 
 
 
 . l i s t - g r o u p - i t e m - l i g h t . l i s t - g r o u p - i t e m - a c t i o n : h o v e r ,   . l i s t - g r o u p - i t e m - l i g h t . l i s t - g r o u p - i t e m - a c t i o n : f o c u s   { 
 
     c o l o r :   # 8 1 8 1 8 2 ; 
 
     b a c k g r o u n d - c o l o r :   # e c e c f 6 ; 
 
 } 
 
 
 
 . l i s t - g r o u p - i t e m - l i g h t . l i s t - g r o u p - i t e m - a c t i o n . a c t i v e   { 
 
     c o l o r :   # f f f ; 
 
     b a c k g r o u n d - c o l o r :   # 8 1 8 1 8 2 ; 
 
     b o r d e r - c o l o r :   # 8 1 8 1 8 2 ; 
 
 } 
 
 
 
 . l i s t - g r o u p - i t e m - d a r k   { 
 
     c o l o r :   # 1 b 1 e 2 1 ; 
 
     b a c k g r o u n d - c o l o r :   # c 6 c 8 c a ; 
 
 } 
 
 
 
 . l i s t - g r o u p - i t e m - d a r k . l i s t - g r o u p - i t e m - a c t i o n : h o v e r ,   . l i s t - g r o u p - i t e m - d a r k . l i s t - g r o u p - i t e m - a c t i o n : f o c u s   { 
 
     c o l o r :   # 1 b 1 e 2 1 ; 
 
     b a c k g r o u n d - c o l o r :   # b 9 b b b e ; 
 
 } 
 
 
 
 . l i s t - g r o u p - i t e m - d a r k . l i s t - g r o u p - i t e m - a c t i o n . a c t i v e   { 
 
     c o l o r :   # f f f ; 
 
     b a c k g r o u n d - c o l o r :   # 1 b 1 e 2 1 ; 
 
     b o r d e r - c o l o r :   # 1 b 1 e 2 1 ; 
 
 } 
 
 
 
 . c l o s e   { 
 
     f l o a t :   r i g h t ; 
 
     f o n t - s i z e :   1 . 5 r e m ; 
 
     f o n t - w e i g h t :   7 0 0 ; 
 
     l i n e - h e i g h t :   1 ; 
 
     c o l o r :   # 0 0 0 ; 
 
     t e x t - s h a d o w :   0   1 p x   0   # f f f ; 
 
     o p a c i t y :   . 5 ; 
 
 } 
 
 
 
 . c l o s e : h o v e r   { 
 
     c o l o r :   # 0 0 0 ; 
 
     t e x t - d e c o r a t i o n :   n o n e ; 
 
 } 
 
 
 
 . c l o s e : n o t ( : d i s a b l e d ) : n o t ( . d i s a b l e d ) : h o v e r ,   . c l o s e : n o t ( : d i s a b l e d ) : n o t ( . d i s a b l e d ) : f o c u s   { 
 
     o p a c i t y :   . 7 5 ; 
 
 } 
 
 
 
 b u t t o n . c l o s e   { 
 
     p a d d i n g :   0 ; 
 
     b a c k g r o u n d - c o l o r :   t r a n s p a r e n t ; 
 
     b o r d e r :   0 ; 
 
     - w e b k i t - a p p e a r a n c e :   n o n e ; 
 
     - m o z - a p p e a r a n c e :   n o n e ; 
 
     a p p e a r a n c e :   n o n e ; 
 
 } 
 
 
 
 a . c l o s e . d i s a b l e d   { 
 
     p o i n t e r - e v e n t s :   n o n e ; 
 
 } 
 
 
 
 . t o a s t   { 
 
     m a x - w i d t h :   3 5 0 p x ; 
 
     o v e r f l o w :   h i d d e n ; 
 
     f o n t - s i z e :   0 . 8 7 5 r e m ; 
 
     b a c k g r o u n d - c o l o r :   r g b a ( 2 5 5 ,   2 5 5 ,   2 5 5 ,   0 . 8 5 ) ; 
 
     b a c k g r o u n d - c l i p :   p a d d i n g - b o x ; 
 
     b o r d e r :   1 p x   s o l i d   r g b a ( 0 ,   0 ,   0 ,   0 . 1 ) ; 
 
     b o x - s h a d o w :   0   0 . 2 5 r e m   0 . 7 5 r e m   r g b a ( 0 ,   0 ,   0 ,   0 . 1 ) ; 
 
     - w e b k i t - b a c k d r o p - f i l t e r :   b l u r ( 1 0 p x ) ; 
 
     b a c k d r o p - f i l t e r :   b l u r ( 1 0 p x ) ; 
 
     o p a c i t y :   0 ; 
 
     b o r d e r - r a d i u s :   0 . 2 5 r e m ; 
 
 } 
 
 
 
 . t o a s t : n o t ( : l a s t - c h i l d )   { 
 
     m a r g i n - b o t t o m :   0 . 7 5 r e m ; 
 
 } 
 
 
 
 . t o a s t . s h o w i n g   { 
 
     o p a c i t y :   1 ; 
 
 } 
 
 
 
 . t o a s t . s h o w   { 
 
     d i s p l a y :   b l o c k ; 
 
     o p a c i t y :   1 ; 
 
 } 
 
 
 
 . t o a s t . h i d e   { 
 
     d i s p l a y :   n o n e ; 
 
 } 
 
 
 
 . t o a s t - h e a d e r   { 
 
     d i s p l a y :   - m s - f l e x b o x ; 
 
     d i s p l a y :   f l e x ; 
 
     - m s - f l e x - a l i g n :   c e n t e r ; 
 
     a l i g n - i t e m s :   c e n t e r ; 
 
     p a d d i n g :   0 . 2 5 r e m   0 . 7 5 r e m ; 
 
     c o l o r :   # 6 c 7 5 7 d ; 
 
     b a c k g r o u n d - c o l o r :   r g b a ( 2 5 5 ,   2 5 5 ,   2 5 5 ,   0 . 8 5 ) ; 
 
     b a c k g r o u n d - c l i p :   p a d d i n g - b o x ; 
 
     b o r d e r - b o t t o m :   1 p x   s o l i d   r g b a ( 0 ,   0 ,   0 ,   0 . 0 5 ) ; 
 
 } 
 
 
 
 . t o a s t - b o d y   { 
 
     p a d d i n g :   0 . 7 5 r e m ; 
 
 } 
 
 
 
 . m o d a l - o p e n   { 
 
     o v e r f l o w :   h i d d e n ; 
 
 } 
 
 
 
 . m o d a l - o p e n   . m o d a l   { 
 
     o v e r f l o w - x :   h i d d e n ; 
 
     o v e r f l o w - y :   a u t o ; 
 
 } 
 
 
 
 . m o d a l   { 
 
     p o s i t i o n :   f i x e d ; 
 
     t o p :   0 ; 
 
     l e f t :   0 ; 
 
     z - i n d e x :   1 0 5 0 ; 
 
     d i s p l a y :   n o n e ; 
 
     w i d t h :   1 0 0 % ; 
 
     h e i g h t :   1 0 0 % ; 
 
     o v e r f l o w :   h i d d e n ; 
 
     o u t l i n e :   0 ; 
 
 } 
 
 
 
 . m o d a l - d i a l o g   { 
 
     p o s i t i o n :   r e l a t i v e ; 
 
     w i d t h :   a u t o ; 
 
     m a r g i n :   0 . 5 r e m ; 
 
     p o i n t e r - e v e n t s :   n o n e ; 
 
 } 
 
 
 
 . m o d a l . f a d e   . m o d a l - d i a l o g   { 
 
     t r a n s i t i o n :   - w e b k i t - t r a n s f o r m   0 . 3 s   e a s e - o u t ; 
 
     t r a n s i t i o n :   t r a n s f o r m   0 . 3 s   e a s e - o u t ; 
 
     t r a n s i t i o n :   t r a n s f o r m   0 . 3 s   e a s e - o u t ,   - w e b k i t - t r a n s f o r m   0 . 3 s   e a s e - o u t ; 
 
     - w e b k i t - t r a n s f o r m :   t r a n s l a t e ( 0 ,   - 5 0 p x ) ; 
 
     t r a n s f o r m :   t r a n s l a t e ( 0 ,   - 5 0 p x ) ; 
 
 } 
 
 
 
 @ m e d i a   ( p r e f e r s - r e d u c e d - m o t i o n :   r e d u c e )   { 
 
     . m o d a l . f a d e   . m o d a l - d i a l o g   { 
 
         t r a n s i t i o n :   n o n e ; 
 
     } 
 
 } 
 
 
 
 . m o d a l . s h o w   . m o d a l - d i a l o g   { 
 
     - w e b k i t - t r a n s f o r m :   n o n e ; 
 
     t r a n s f o r m :   n o n e ; 
 
 } 
 
 
 
 . m o d a l - d i a l o g - s c r o l l a b l e   { 
 
     d i s p l a y :   - m s - f l e x b o x ; 
 
     d i s p l a y :   f l e x ; 
 
     m a x - h e i g h t :   c a l c ( 1 0 0 %   -   1 r e m ) ; 
 
 } 
 
 
 
 . m o d a l - d i a l o g - s c r o l l a b l e   . m o d a l - c o n t e n t   { 
 
     m a x - h e i g h t :   c a l c ( 1 0 0 v h   -   1 r e m ) ; 
 
     o v e r f l o w :   h i d d e n ; 
 
 } 
 
 
 
 . m o d a l - d i a l o g - s c r o l l a b l e   . m o d a l - h e a d e r , 
 
 . m o d a l - d i a l o g - s c r o l l a b l e   . m o d a l - f o o t e r   { 
 
     - m s - f l e x - n e g a t i v e :   0 ; 
 
     f l e x - s h r i n k :   0 ; 
 
 } 
 
 
 
 . m o d a l - d i a l o g - s c r o l l a b l e   . m o d a l - b o d y   { 
 
     o v e r f l o w - y :   a u t o ; 
 
 } 
 
 
 
 . m o d a l - d i a l o g - c e n t e r e d   { 
 
     d i s p l a y :   - m s - f l e x b o x ; 
 
     d i s p l a y :   f l e x ; 
 
     - m s - f l e x - a l i g n :   c e n t e r ; 
 
     a l i g n - i t e m s :   c e n t e r ; 
 
     m i n - h e i g h t :   c a l c ( 1 0 0 %   -   1 r e m ) ; 
 
 } 
 
 
 
 . m o d a l - d i a l o g - c e n t e r e d : : b e f o r e   { 
 
     d i s p l a y :   b l o c k ; 
 
     h e i g h t :   c a l c ( 1 0 0 v h   -   1 r e m ) ; 
 
     c o n t e n t :   " " ; 
 
 } 
 
 
 
 . m o d a l - d i a l o g - c e n t e r e d . m o d a l - d i a l o g - s c r o l l a b l e   { 
 
     - m s - f l e x - d i r e c t i o n :   c o l u m n ; 
 
     f l e x - d i r e c t i o n :   c o l u m n ; 
 
     - m s - f l e x - p a c k :   c e n t e r ; 
 
     j u s t i f y - c o n t e n t :   c e n t e r ; 
 
     h e i g h t :   1 0 0 % ; 
 
 } 
 
 
 
 . m o d a l - d i a l o g - c e n t e r e d . m o d a l - d i a l o g - s c r o l l a b l e   . m o d a l - c o n t e n t   { 
 
     m a x - h e i g h t :   n o n e ; 
 
 } 
 
 
 
 . m o d a l - d i a l o g - c e n t e r e d . m o d a l - d i a l o g - s c r o l l a b l e : : b e f o r e   { 
 
     c o n t e n t :   n o n e ; 
 
 } 
 
 
 
 . m o d a l - c o n t e n t   { 
 
     p o s i t i o n :   r e l a t i v e ; 
 
     d i s p l a y :   - m s - f l e x b o x ; 
 
     d i s p l a y :   f l e x ; 
 
     - m s - f l e x - d i r e c t i o n :   c o l u m n ; 
 
     f l e x - d i r e c t i o n :   c o l u m n ; 
 
     w i d t h :   1 0 0 % ; 
 
     p o i n t e r - e v e n t s :   a u t o ; 
 
     b a c k g r o u n d - c o l o r :   # f f f ; 
 
     b a c k g r o u n d - c l i p :   p a d d i n g - b o x ; 
 
     b o r d e r :   1 p x   s o l i d   r g b a ( 0 ,   0 ,   0 ,   0 . 2 ) ; 
 
     b o r d e r - r a d i u s :   0 . 3 r e m ; 
 
     o u t l i n e :   0 ; 
 
 } 
 
 
 
 . m o d a l - b a c k d r o p   { 
 
     p o s i t i o n :   f i x e d ; 
 
     t o p :   0 ; 
 
     l e f t :   0 ; 
 
     z - i n d e x :   1 0 4 0 ; 
 
     w i d t h :   1 0 0 v w ; 
 
     h e i g h t :   1 0 0 v h ; 
 
     b a c k g r o u n d - c o l o r :   # 0 0 0 ; 
 
 } 
 
 
 
 . m o d a l - b a c k d r o p . f a d e   { 
 
     o p a c i t y :   0 ; 
 
 } 
 
 
 
 . m o d a l - b a c k d r o p . s h o w   { 
 
     o p a c i t y :   0 . 5 ; 
 
 } 
 
 
 
 . m o d a l - h e a d e r   { 
 
     d i s p l a y :   - m s - f l e x b o x ; 
 
     d i s p l a y :   f l e x ; 
 
     - m s - f l e x - a l i g n :   s t a r t ; 
 
     a l i g n - i t e m s :   f l e x - s t a r t ; 
 
     - m s - f l e x - p a c k :   j u s t i f y ; 
 
     j u s t i f y - c o n t e n t :   s p a c e - b e t w e e n ; 
 
     p a d d i n g :   1 r e m   1 r e m ; 
 
     b o r d e r - b o t t o m :   1 p x   s o l i d   # d e e 2 e 6 ; 
 
     b o r d e r - t o p - l e f t - r a d i u s :   0 . 3 r e m ; 
 
     b o r d e r - t o p - r i g h t - r a d i u s :   0 . 3 r e m ; 
 
 } 
 
 
 
 . m o d a l - h e a d e r   . c l o s e   { 
 
     p a d d i n g :   1 r e m   1 r e m ; 
 
     m a r g i n :   - 1 r e m   - 1 r e m   - 1 r e m   a u t o ; 
 
 } 
 
 
 
 . m o d a l - t i t l e   { 
 
     m a r g i n - b o t t o m :   0 ; 
 
     l i n e - h e i g h t :   1 . 5 ; 
 
 } 
 
 
 
 . m o d a l - b o d y   { 
 
     p o s i t i o n :   r e l a t i v e ; 
 
     - m s - f l e x :   1   1   a u t o ; 
 
     f l e x :   1   1   a u t o ; 
 
     p a d d i n g :   1 r e m ; 
 
 } 
 
 
 
 . m o d a l - f o o t e r   { 
 
     d i s p l a y :   - m s - f l e x b o x ; 
 
     d i s p l a y :   f l e x ; 
 
     - m s - f l e x - a l i g n :   c e n t e r ; 
 
     a l i g n - i t e m s :   c e n t e r ; 
 
     - m s - f l e x - p a c k :   e n d ; 
 
     j u s t i f y - c o n t e n t :   f l e x - e n d ; 
 
     p a d d i n g :   1 r e m ; 
 
     b o r d e r - t o p :   1 p x   s o l i d   # d e e 2 e 6 ; 
 
     b o r d e r - b o t t o m - r i g h t - r a d i u s :   0 . 3 r e m ; 
 
     b o r d e r - b o t t o m - l e f t - r a d i u s :   0 . 3 r e m ; 
 
 } 
 
 
 
 . m o d a l - f o o t e r   >   : n o t ( : f i r s t - c h i l d )   { 
 
     m a r g i n - l e f t :   . 2 5 r e m ; 
 
 } 
 
 
 
 . m o d a l - f o o t e r   >   : n o t ( : l a s t - c h i l d )   { 
 
     m a r g i n - r i g h t :   . 2 5 r e m ; 
 
 } 
 
 
 
 . m o d a l - s c r o l l b a r - m e a s u r e   { 
 
     p o s i t i o n :   a b s o l u t e ; 
 
     t o p :   - 9 9 9 9 p x ; 
 
     w i d t h :   5 0 p x ; 
 
     h e i g h t :   5 0 p x ; 
 
     o v e r f l o w :   s c r o l l ; 
 
 } 
 
 
 
 @ m e d i a   ( m i n - w i d t h :   5 7 6 p x )   { 
 
     . m o d a l - d i a l o g   { 
 
         m a x - w i d t h :   5 0 0 p x ; 
 
         m a r g i n :   1 . 7 5 r e m   a u t o ; 
 
     } 
 
     . m o d a l - d i a l o g - s c r o l l a b l e   { 
 
         m a x - h e i g h t :   c a l c ( 1 0 0 %   -   3 . 5 r e m ) ; 
 
     } 
 
     . m o d a l - d i a l o g - s c r o l l a b l e   . m o d a l - c o n t e n t   { 
 
         m a x - h e i g h t :   c a l c ( 1 0 0 v h   -   3 . 5 r e m ) ; 
 
     } 
 
     . m o d a l - d i a l o g - c e n t e r e d   { 
 
         m i n - h e i g h t :   c a l c ( 1 0 0 %   -   3 . 5 r e m ) ; 
 
     } 
 
     . m o d a l - d i a l o g - c e n t e r e d : : b e f o r e   { 
 
         h e i g h t :   c a l c ( 1 0 0 v h   -   3 . 5 r e m ) ; 
 
     } 
 
     . m o d a l - s m   { 
 
         m a x - w i d t h :   3 0 0 p x ; 
 
     } 
 
 } 
 
 
 
 @ m e d i a   ( m i n - w i d t h :   9 9 2 p x )   { 
 
     . m o d a l - l g , 
 
     . m o d a l - x l   { 
 
         m a x - w i d t h :   8 0 0 p x ; 
 
     } 
 
 } 
 
 
 
 @ m e d i a   ( m i n - w i d t h :   1 2 0 0 p x )   { 
 
     . m o d a l - x l   { 
 
         m a x - w i d t h :   1 1 4 0 p x ; 
 
     } 
 
 } 
 
 
 
 . t o o l t i p   { 
 
     p o s i t i o n :   a b s o l u t e ; 
 
     z - i n d e x :   1 0 7 0 ; 
 
     d i s p l a y :   b l o c k ; 
 
     m a r g i n :   0 ; 
 
     f o n t - f a m i l y :   - a p p l e - s y s t e m ,   B l i n k M a c S y s t e m F o n t ,   " S e g o e   U I " ,   R o b o t o ,   " H e l v e t i c a   N e u e " ,   A r i a l ,   " N o t o   S a n s " ,   s a n s - s e r i f ,   " A p p l e   C o l o r   E m o j i " ,   " S e g o e   U I   E m o j i " ,   " S e g o e   U I   S y m b o l " ,   " N o t o   C o l o r   E m o j i " ; 
 
     f o n t - s t y l e :   n o r m a l ; 
 
     f o n t - w e i g h t :   4 0 0 ; 
 
     l i n e - h e i g h t :   1 . 5 ; 
 
     t e x t - a l i g n :   l e f t ; 
 
     t e x t - a l i g n :   s t a r t ; 
 
     t e x t - d e c o r a t i o n :   n o n e ; 
 
     t e x t - s h a d o w :   n o n e ; 
 
     t e x t - t r a n s f o r m :   n o n e ; 
 
     l e t t e r - s p a c i n g :   n o r m a l ; 
 
     w o r d - b r e a k :   n o r m a l ; 
 
     w o r d - s p a c i n g :   n o r m a l ; 
 
     w h i t e - s p a c e :   n o r m a l ; 
 
     l i n e - b r e a k :   a u t o ; 
 
     f o n t - s i z e :   0 . 8 7 5 r e m ; 
 
     w o r d - w r a p :   b r e a k - w o r d ; 
 
     o p a c i t y :   0 ; 
 
 } 
 
 
 
 . t o o l t i p . s h o w   { 
 
     o p a c i t y :   0 . 9 ; 
 
 } 
 
 
 
 . t o o l t i p   . a r r o w   { 
 
     p o s i t i o n :   a b s o l u t e ; 
 
     d i s p l a y :   b l o c k ; 
 
     w i d t h :   0 . 8 r e m ; 
 
     h e i g h t :   0 . 4 r e m ; 
 
 } 
 
 
 
 . t o o l t i p   . a r r o w : : b e f o r e   { 
 
     p o s i t i o n :   a b s o l u t e ; 
 
     c o n t e n t :   " " ; 
 
     b o r d e r - c o l o r :   t r a n s p a r e n t ; 
 
     b o r d e r - s t y l e :   s o l i d ; 
 
 } 
 
 
 
 . b s - t o o l t i p - t o p ,   . b s - t o o l t i p - a u t o [ x - p l a c e m e n t ^ = " t o p " ]   { 
 
     p a d d i n g :   0 . 4 r e m   0 ; 
 
 } 
 
 
 
 . b s - t o o l t i p - t o p   . a r r o w ,   . b s - t o o l t i p - a u t o [ x - p l a c e m e n t ^ = " t o p " ]   . a r r o w   { 
 
     b o t t o m :   0 ; 
 
 } 
 
 
 
 . b s - t o o l t i p - t o p   . a r r o w : : b e f o r e ,   . b s - t o o l t i p - a u t o [ x - p l a c e m e n t ^ = " t o p " ]   . a r r o w : : b e f o r e   { 
 
     t o p :   0 ; 
 
     b o r d e r - w i d t h :   0 . 4 r e m   0 . 4 r e m   0 ; 
 
     b o r d e r - t o p - c o l o r :   # 0 0 0 ; 
 
 } 
 
 
 
 . b s - t o o l t i p - r i g h t ,   . b s - t o o l t i p - a u t o [ x - p l a c e m e n t ^ = " r i g h t " ]   { 
 
     p a d d i n g :   0   0 . 4 r e m ; 
 
 } 
 
 
 
 . b s - t o o l t i p - r i g h t   . a r r o w ,   . b s - t o o l t i p - a u t o [ x - p l a c e m e n t ^ = " r i g h t " ]   . a r r o w   { 
 
     l e f t :   0 ; 
 
     w i d t h :   0 . 4 r e m ; 
 
     h e i g h t :   0 . 8 r e m ; 
 
 } 
 
 
 
 . b s - t o o l t i p - r i g h t   . a r r o w : : b e f o r e ,   . b s - t o o l t i p - a u t o [ x - p l a c e m e n t ^ = " r i g h t " ]   . a r r o w : : b e f o r e   { 
 
     r i g h t :   0 ; 
 
     b o r d e r - w i d t h :   0 . 4 r e m   0 . 4 r e m   0 . 4 r e m   0 ; 
 
     b o r d e r - r i g h t - c o l o r :   # 0 0 0 ; 
 
 } 
 
 
 
 . b s - t o o l t i p - b o t t o m ,   . b s - t o o l t i p - a u t o [ x - p l a c e m e n t ^ = " b o t t o m " ]   { 
 
     p a d d i n g :   0 . 4 r e m   0 ; 
 
 } 
 
 
 
 . b s - t o o l t i p - b o t t o m   . a r r o w ,   . b s - t o o l t i p - a u t o [ x - p l a c e m e n t ^ = " b o t t o m " ]   . a r r o w   { 
 
     t o p :   0 ; 
 
 } 
 
 
 
 . b s - t o o l t i p - b o t t o m   . a r r o w : : b e f o r e ,   . b s - t o o l t i p - a u t o [ x - p l a c e m e n t ^ = " b o t t o m " ]   . a r r o w : : b e f o r e   { 
 
     b o t t o m :   0 ; 
 
     b o r d e r - w i d t h :   0   0 . 4 r e m   0 . 4 r e m ; 
 
     b o r d e r - b o t t o m - c o l o r :   # 0 0 0 ; 
 
 } 
 
 
 
 . b s - t o o l t i p - l e f t ,   . b s - t o o l t i p - a u t o [ x - p l a c e m e n t ^ = " l e f t " ]   { 
 
     p a d d i n g :   0   0 . 4 r e m ; 
 
 } 
 
 
 
 . b s - t o o l t i p - l e f t   . a r r o w ,   . b s - t o o l t i p - a u t o [ x - p l a c e m e n t ^ = " l e f t " ]   . a r r o w   { 
 
     r i g h t :   0 ; 
 
     w i d t h :   0 . 4 r e m ; 
 
     h e i g h t :   0 . 8 r e m ; 
 
 } 
 
 
 
 . b s - t o o l t i p - l e f t   . a r r o w : : b e f o r e ,   . b s - t o o l t i p - a u t o [ x - p l a c e m e n t ^ = " l e f t " ]   . a r r o w : : b e f o r e   { 
 
     l e f t :   0 ; 
 
     b o r d e r - w i d t h :   0 . 4 r e m   0   0 . 4 r e m   0 . 4 r e m ; 
 
     b o r d e r - l e f t - c o l o r :   # 0 0 0 ; 
 
 } 
 
 
 
 . t o o l t i p - i n n e r   { 
 
     m a x - w i d t h :   2 0 0 p x ; 
 
     p a d d i n g :   0 . 2 5 r e m   0 . 5 r e m ; 
 
     c o l o r :   # f f f ; 
 
     t e x t - a l i g n :   c e n t e r ; 
 
     b a c k g r o u n d - c o l o r :   # 0 0 0 ; 
 
     b o r d e r - r a d i u s :   0 . 2 5 r e m ; 
 
 } 
 
 
 
 . p o p o v e r   { 
 
     p o s i t i o n :   a b s o l u t e ; 
 
     t o p :   0 ; 
 
     l e f t :   0 ; 
 
     z - i n d e x :   1 0 6 0 ; 
 
     d i s p l a y :   b l o c k ; 
 
     m a x - w i d t h :   2 7 6 p x ; 
 
     f o n t - f a m i l y :   - a p p l e - s y s t e m ,   B l i n k M a c S y s t e m F o n t ,   " S e g o e   U I " ,   R o b o t o ,   " H e l v e t i c a   N e u e " ,   A r i a l ,   " N o t o   S a n s " ,   s a n s - s e r i f ,   " A p p l e   C o l o r   E m o j i " ,   " S e g o e   U I   E m o j i " ,   " S e g o e   U I   S y m b o l " ,   " N o t o   C o l o r   E m o j i " ; 
 
     f o n t - s t y l e :   n o r m a l ; 
 
     f o n t - w e i g h t :   4 0 0 ; 
 
     l i n e - h e i g h t :   1 . 5 ; 
 
     t e x t - a l i g n :   l e f t ; 
 
     t e x t - a l i g n :   s t a r t ; 
 
     t e x t - d e c o r a t i o n :   n o n e ; 
 
     t e x t - s h a d o w :   n o n e ; 
 
     t e x t - t r a n s f o r m :   n o n e ; 
 
     l e t t e r - s p a c i n g :   n o r m a l ; 
 
     w o r d - b r e a k :   n o r m a l ; 
 
     w o r d - s p a c i n g :   n o r m a l ; 
 
     w h i t e - s p a c e :   n o r m a l ; 
 
     l i n e - b r e a k :   a u t o ; 
 
     f o n t - s i z e :   0 . 8 7 5 r e m ; 
 
     w o r d - w r a p :   b r e a k - w o r d ; 
 
     b a c k g r o u n d - c o l o r :   # f f f ; 
 
     b a c k g r o u n d - c l i p :   p a d d i n g - b o x ; 
 
     b o r d e r :   1 p x   s o l i d   r g b a ( 0 ,   0 ,   0 ,   0 . 2 ) ; 
 
     b o r d e r - r a d i u s :   0 . 3 r e m ; 
 
 } 
 
 
 
 . p o p o v e r   . a r r o w   { 
 
     p o s i t i o n :   a b s o l u t e ; 
 
     d i s p l a y :   b l o c k ; 
 
     w i d t h :   1 r e m ; 
 
     h e i g h t :   0 . 5 r e m ; 
 
     m a r g i n :   0   0 . 3 r e m ; 
 
 } 
 
 
 
 . p o p o v e r   . a r r o w : : b e f o r e ,   . p o p o v e r   . a r r o w : : a f t e r   { 
 
     p o s i t i o n :   a b s o l u t e ; 
 
     d i s p l a y :   b l o c k ; 
 
     c o n t e n t :   " " ; 
 
     b o r d e r - c o l o r :   t r a n s p a r e n t ; 
 
     b o r d e r - s t y l e :   s o l i d ; 
 
 } 
 
 
 
 . b s - p o p o v e r - t o p ,   . b s - p o p o v e r - a u t o [ x - p l a c e m e n t ^ = " t o p " ]   { 
 
     m a r g i n - b o t t o m :   0 . 5 r e m ; 
 
 } 
 
 
 
 . b s - p o p o v e r - t o p   >   . a r r o w ,   . b s - p o p o v e r - a u t o [ x - p l a c e m e n t ^ = " t o p " ]   >   . a r r o w   { 
 
     b o t t o m :   c a l c ( ( 0 . 5 r e m   +   1 p x )   *   - 1 ) ; 
 
 } 
 
 
 
 . b s - p o p o v e r - t o p   >   . a r r o w : : b e f o r e ,   . b s - p o p o v e r - a u t o [ x - p l a c e m e n t ^ = " t o p " ]   >   . a r r o w : : b e f o r e   { 
 
     b o t t o m :   0 ; 
 
     b o r d e r - w i d t h :   0 . 5 r e m   0 . 5 r e m   0 ; 
 
     b o r d e r - t o p - c o l o r :   r g b a ( 0 ,   0 ,   0 ,   0 . 2 5 ) ; 
 
 } 
 
 
 
 . b s - p o p o v e r - t o p   >   . a r r o w : : a f t e r ,   . b s - p o p o v e r - a u t o [ x - p l a c e m e n t ^ = " t o p " ]   >   . a r r o w : : a f t e r   { 
 
     b o t t o m :   1 p x ; 
 
     b o r d e r - w i d t h :   0 . 5 r e m   0 . 5 r e m   0 ; 
 
     b o r d e r - t o p - c o l o r :   # f f f ; 
 
 } 
 
 
 
 . b s - p o p o v e r - r i g h t ,   . b s - p o p o v e r - a u t o [ x - p l a c e m e n t ^ = " r i g h t " ]   { 
 
     m a r g i n - l e f t :   0 . 5 r e m ; 
 
 } 
 
 
 
 . b s - p o p o v e r - r i g h t   >   . a r r o w ,   . b s - p o p o v e r - a u t o [ x - p l a c e m e n t ^ = " r i g h t " ]   >   . a r r o w   { 
 
     l e f t :   c a l c ( ( 0 . 5 r e m   +   1 p x )   *   - 1 ) ; 
 
     w i d t h :   0 . 5 r e m ; 
 
     h e i g h t :   1 r e m ; 
 
     m a r g i n :   0 . 3 r e m   0 ; 
 
 } 
 
 
 
 . b s - p o p o v e r - r i g h t   >   . a r r o w : : b e f o r e ,   . b s - p o p o v e r - a u t o [ x - p l a c e m e n t ^ = " r i g h t " ]   >   . a r r o w : : b e f o r e   { 
 
     l e f t :   0 ; 
 
     b o r d e r - w i d t h :   0 . 5 r e m   0 . 5 r e m   0 . 5 r e m   0 ; 
 
     b o r d e r - r i g h t - c o l o r :   r g b a ( 0 ,   0 ,   0 ,   0 . 2 5 ) ; 
 
 } 
 
 
 
 . b s - p o p o v e r - r i g h t   >   . a r r o w : : a f t e r ,   . b s - p o p o v e r - a u t o [ x - p l a c e m e n t ^ = " r i g h t " ]   >   . a r r o w : : a f t e r   { 
 
     l e f t :   1 p x ; 
 
     b o r d e r - w i d t h :   0 . 5 r e m   0 . 5 r e m   0 . 5 r e m   0 ; 
 
     b o r d e r - r i g h t - c o l o r :   # f f f ; 
 
 } 
 
 
 
 . b s - p o p o v e r - b o t t o m ,   . b s - p o p o v e r - a u t o [ x - p l a c e m e n t ^ = " b o t t o m " ]   { 
 
     m a r g i n - t o p :   0 . 5 r e m ; 
 
 } 
 
 
 
 . b s - p o p o v e r - b o t t o m   >   . a r r o w ,   . b s - p o p o v e r - a u t o [ x - p l a c e m e n t ^ = " b o t t o m " ]   >   . a r r o w   { 
 
     t o p :   c a l c ( ( 0 . 5 r e m   +   1 p x )   *   - 1 ) ; 
 
 } 
 
 
 
 . b s - p o p o v e r - b o t t o m   >   . a r r o w : : b e f o r e ,   . b s - p o p o v e r - a u t o [ x - p l a c e m e n t ^ = " b o t t o m " ]   >   . a r r o w : : b e f o r e   { 
 
     t o p :   0 ; 
 
     b o r d e r - w i d t h :   0   0 . 5 r e m   0 . 5 r e m   0 . 5 r e m ; 
 
     b o r d e r - b o t t o m - c o l o r :   r g b a ( 0 ,   0 ,   0 ,   0 . 2 5 ) ; 
 
 } 
 
 
 
 . b s - p o p o v e r - b o t t o m   >   . a r r o w : : a f t e r ,   . b s - p o p o v e r - a u t o [ x - p l a c e m e n t ^ = " b o t t o m " ]   >   . a r r o w : : a f t e r   { 
 
     t o p :   1 p x ; 
 
     b o r d e r - w i d t h :   0   0 . 5 r e m   0 . 5 r e m   0 . 5 r e m ; 
 
     b o r d e r - b o t t o m - c o l o r :   # f f f ; 
 
 } 
 
 
 
 . b s - p o p o v e r - b o t t o m   . p o p o v e r - h e a d e r : : b e f o r e ,   . b s - p o p o v e r - a u t o [ x - p l a c e m e n t ^ = " b o t t o m " ]   . p o p o v e r - h e a d e r : : b e f o r e   { 
 
     p o s i t i o n :   a b s o l u t e ; 
 
     t o p :   0 ; 
 
     l e f t :   5 0 % ; 
 
     d i s p l a y :   b l o c k ; 
 
     w i d t h :   1 r e m ; 
 
     m a r g i n - l e f t :   - 0 . 5 r e m ; 
 
     c o n t e n t :   " " ; 
 
     b o r d e r - b o t t o m :   1 p x   s o l i d   # f 7 f 7 f 7 ; 
 
 } 
 
 
 
 . b s - p o p o v e r - l e f t ,   . b s - p o p o v e r - a u t o [ x - p l a c e m e n t ^ = " l e f t " ]   { 
 
     m a r g i n - r i g h t :   0 . 5 r e m ; 
 
 } 
 
 
 
 . b s - p o p o v e r - l e f t   >   . a r r o w ,   . b s - p o p o v e r - a u t o [ x - p l a c e m e n t ^ = " l e f t " ]   >   . a r r o w   { 
 
     r i g h t :   c a l c ( ( 0 . 5 r e m   +   1 p x )   *   - 1 ) ; 
 
     w i d t h :   0 . 5 r e m ; 
 
     h e i g h t :   1 r e m ; 
 
     m a r g i n :   0 . 3 r e m   0 ; 
 
 } 
 
 
 
 . b s - p o p o v e r - l e f t   >   . a r r o w : : b e f o r e ,   . b s - p o p o v e r - a u t o [ x - p l a c e m e n t ^ = " l e f t " ]   >   . a r r o w : : b e f o r e   { 
 
     r i g h t :   0 ; 
 
     b o r d e r - w i d t h :   0 . 5 r e m   0   0 . 5 r e m   0 . 5 r e m ; 
 
     b o r d e r - l e f t - c o l o r :   r g b a ( 0 ,   0 ,   0 ,   0 . 2 5 ) ; 
 
 } 
 
 
 
 . b s - p o p o v e r - l e f t   >   . a r r o w : : a f t e r ,   . b s - p o p o v e r - a u t o [ x - p l a c e m e n t ^ = " l e f t " ]   >   . a r r o w : : a f t e r   { 
 
     r i g h t :   1 p x ; 
 
     b o r d e r - w i d t h :   0 . 5 r e m   0   0 . 5 r e m   0 . 5 r e m ; 
 
     b o r d e r - l e f t - c o l o r :   # f f f ; 
 
 } 
 
 
 
 . p o p o v e r - h e a d e r   { 
 
     p a d d i n g :   0 . 5 r e m   0 . 7 5 r e m ; 
 
     m a r g i n - b o t t o m :   0 ; 
 
     f o n t - s i z e :   1 r e m ; 
 
     b a c k g r o u n d - c o l o r :   # f 7 f 7 f 7 ; 
 
     b o r d e r - b o t t o m :   1 p x   s o l i d   # e b e b e b ; 
 
     b o r d e r - t o p - l e f t - r a d i u s :   c a l c ( 0 . 3 r e m   -   1 p x ) ; 
 
     b o r d e r - t o p - r i g h t - r a d i u s :   c a l c ( 0 . 3 r e m   -   1 p x ) ; 
 
 } 
 
 
 
 . p o p o v e r - h e a d e r : e m p t y   { 
 
     d i s p l a y :   n o n e ; 
 
 } 
 
 
 
 . p o p o v e r - b o d y   { 
 
     p a d d i n g :   0 . 5 r e m   0 . 7 5 r e m ; 
 
     c o l o r :   # 2 1 2 5 2 9 ; 
 
 } 
 
 
 
 . c a r o u s e l   { 
 
     p o s i t i o n :   r e l a t i v e ; 
 
 } 
 
 
 
 . c a r o u s e l . p o i n t e r - e v e n t   { 
 
     - m s - t o u c h - a c t i o n :   p a n - y ; 
 
     t o u c h - a c t i o n :   p a n - y ; 
 
 } 
 
 
 
 . c a r o u s e l - i n n e r   { 
 
     p o s i t i o n :   r e l a t i v e ; 
 
     w i d t h :   1 0 0 % ; 
 
     o v e r f l o w :   h i d d e n ; 
 
 } 
 
 
 
 . c a r o u s e l - i n n e r : : a f t e r   { 
 
     d i s p l a y :   b l o c k ; 
 
     c l e a r :   b o t h ; 
 
     c o n t e n t :   " " ; 
 
 } 
 
 
 
 . c a r o u s e l - i t e m   { 
 
     p o s i t i o n :   r e l a t i v e ; 
 
     d i s p l a y :   n o n e ; 
 
     f l o a t :   l e f t ; 
 
     w i d t h :   1 0 0 % ; 
 
     m a r g i n - r i g h t :   - 1 0 0 % ; 
 
     - w e b k i t - b a c k f a c e - v i s i b i l i t y :   h i d d e n ; 
 
     b a c k f a c e - v i s i b i l i t y :   h i d d e n ; 
 
     t r a n s i t i o n :   - w e b k i t - t r a n s f o r m   0 . 6 s   e a s e - i n - o u t ; 
 
     t r a n s i t i o n :   t r a n s f o r m   0 . 6 s   e a s e - i n - o u t ; 
 
     t r a n s i t i o n :   t r a n s f o r m   0 . 6 s   e a s e - i n - o u t ,   - w e b k i t - t r a n s f o r m   0 . 6 s   e a s e - i n - o u t ; 
 
 } 
 
 
 
 @ m e d i a   ( p r e f e r s - r e d u c e d - m o t i o n :   r e d u c e )   { 
 
     . c a r o u s e l - i t e m   { 
 
         t r a n s i t i o n :   n o n e ; 
 
     } 
 
 } 
 
 
 
 . c a r o u s e l - i t e m . a c t i v e , 
 
 . c a r o u s e l - i t e m - n e x t , 
 
 . c a r o u s e l - i t e m - p r e v   { 
 
     d i s p l a y :   b l o c k ; 
 
 } 
 
 
 
 . c a r o u s e l - i t e m - n e x t : n o t ( . c a r o u s e l - i t e m - l e f t ) , 
 
 . a c t i v e . c a r o u s e l - i t e m - r i g h t   { 
 
     - w e b k i t - t r a n s f o r m :   t r a n s l a t e X ( 1 0 0 % ) ; 
 
     t r a n s f o r m :   t r a n s l a t e X ( 1 0 0 % ) ; 
 
 } 
 
 
 
 . c a r o u s e l - i t e m - p r e v : n o t ( . c a r o u s e l - i t e m - r i g h t ) , 
 
 . a c t i v e . c a r o u s e l - i t e m - l e f t   { 
 
     - w e b k i t - t r a n s f o r m :   t r a n s l a t e X ( - 1 0 0 % ) ; 
 
     t r a n s f o r m :   t r a n s l a t e X ( - 1 0 0 % ) ; 
 
 } 
 
 
 
 . c a r o u s e l - f a d e   . c a r o u s e l - i t e m   { 
 
     o p a c i t y :   0 ; 
 
     t r a n s i t i o n - p r o p e r t y :   o p a c i t y ; 
 
     - w e b k i t - t r a n s f o r m :   n o n e ; 
 
     t r a n s f o r m :   n o n e ; 
 
 } 
 
 
 
 . c a r o u s e l - f a d e   . c a r o u s e l - i t e m . a c t i v e , 
 
 . c a r o u s e l - f a d e   . c a r o u s e l - i t e m - n e x t . c a r o u s e l - i t e m - l e f t , 
 
 . c a r o u s e l - f a d e   . c a r o u s e l - i t e m - p r e v . c a r o u s e l - i t e m - r i g h t   { 
 
     z - i n d e x :   1 ; 
 
     o p a c i t y :   1 ; 
 
 } 
 
 
 
 . c a r o u s e l - f a d e   . a c t i v e . c a r o u s e l - i t e m - l e f t , 
 
 . c a r o u s e l - f a d e   . a c t i v e . c a r o u s e l - i t e m - r i g h t   { 
 
     z - i n d e x :   0 ; 
 
     o p a c i t y :   0 ; 
 
     t r a n s i t i o n :   0 s   0 . 6 s   o p a c i t y ; 
 
 } 
 
 
 
 @ m e d i a   ( p r e f e r s - r e d u c e d - m o t i o n :   r e d u c e )   { 
 
     . c a r o u s e l - f a d e   . a c t i v e . c a r o u s e l - i t e m - l e f t , 
 
     . c a r o u s e l - f a d e   . a c t i v e . c a r o u s e l - i t e m - r i g h t   { 
 
         t r a n s i t i o n :   n o n e ; 
 
     } 
 
 } 
 
 
 
 . c a r o u s e l - c o n t r o l - p r e v , 
 
 . c a r o u s e l - c o n t r o l - n e x t   { 
 
     p o s i t i o n :   a b s o l u t e ; 
 
     t o p :   0 ; 
 
     b o t t o m :   0 ; 
 
     z - i n d e x :   1 ; 
 
     d i s p l a y :   - m s - f l e x b o x ; 
 
     d i s p l a y :   f l e x ; 
 
     - m s - f l e x - a l i g n :   c e n t e r ; 
 
     a l i g n - i t e m s :   c e n t e r ; 
 
     - m s - f l e x - p a c k :   c e n t e r ; 
 
     j u s t i f y - c o n t e n t :   c e n t e r ; 
 
     w i d t h :   1 5 % ; 
 
     c o l o r :   # f f f ; 
 
     t e x t - a l i g n :   c e n t e r ; 
 
     o p a c i t y :   0 . 5 ; 
 
     t r a n s i t i o n :   o p a c i t y   0 . 1 5 s   e a s e ; 
 
 } 
 
 
 
 @ m e d i a   ( p r e f e r s - r e d u c e d - m o t i o n :   r e d u c e )   { 
 
     . c a r o u s e l - c o n t r o l - p r e v , 
 
     . c a r o u s e l - c o n t r o l - n e x t   { 
 
         t r a n s i t i o n :   n o n e ; 
 
     } 
 
 } 
 
 
 
 . c a r o u s e l - c o n t r o l - p r e v : h o v e r ,   . c a r o u s e l - c o n t r o l - p r e v : f o c u s , 
 
 . c a r o u s e l - c o n t r o l - n e x t : h o v e r , 
 
 . c a r o u s e l - c o n t r o l - n e x t : f o c u s   { 
 
     c o l o r :   # f f f ; 
 
     t e x t - d e c o r a t i o n :   n o n e ; 
 
     o u t l i n e :   0 ; 
 
     o p a c i t y :   0 . 9 ; 
 
 } 
 
 
 
 . c a r o u s e l - c o n t r o l - p r e v   { 
 
     l e f t :   0 ; 
 
 } 
 
 
 
 . c a r o u s e l - c o n t r o l - n e x t   { 
 
     r i g h t :   0 ; 
 
 } 
 
 
 
 . c a r o u s e l - c o n t r o l - p r e v - i c o n , 
 
 . c a r o u s e l - c o n t r o l - n e x t - i c o n   { 
 
     d i s p l a y :   i n l i n e - b l o c k ; 
 
     w i d t h :   2 0 p x ; 
 
     h e i g h t :   2 0 p x ; 
 
     b a c k g r o u n d :   n o - r e p e a t   5 0 %   /   1 0 0 %   1 0 0 % ; 
 
 } 
 
 
 
 . c a r o u s e l - c o n t r o l - p r e v - i c o n   { 
 
     b a c k g r o u n d - i m a g e :   u r l ( " d a t a : i m a g e / s v g + x m l , % 3 c s v g   x m l n s = ' h t t p : / / w w w . w 3 . o r g / 2 0 0 0 / s v g '   f i l l = ' % 2 3 f f f '   v i e w B o x = ' 0   0   8   8 ' % 3 e % 3 c p a t h   d = ' M 5 . 2 5   0 l - 4   4   4   4   1 . 5 - 1 . 5 - 2 . 5 - 2 . 5   2 . 5 - 2 . 5 - 1 . 5 - 1 . 5 z ' / % 3 e % 3 c / s v g % 3 e " ) ; 
 
 } 
 
 
 
 . c a r o u s e l - c o n t r o l - n e x t - i c o n   { 
 
     b a c k g r o u n d - i m a g e :   u r l ( " d a t a : i m a g e / s v g + x m l , % 3 c s v g   x m l n s = ' h t t p : / / w w w . w 3 . o r g / 2 0 0 0 / s v g '   f i l l = ' % 2 3 f f f '   v i e w B o x = ' 0   0   8   8 ' % 3 e % 3 c p a t h   d = ' M 2 . 7 5   0 l - 1 . 5   1 . 5   2 . 5   2 . 5 - 2 . 5   2 . 5   1 . 5   1 . 5   4 - 4 - 4 - 4 z ' / % 3 e % 3 c / s v g % 3 e " ) ; 
 
 } 
 
 
 
 . c a r o u s e l - i n d i c a t o r s   { 
 
     p o s i t i o n :   a b s o l u t e ; 
 
     r i g h t :   0 ; 
 
     b o t t o m :   0 ; 
 
     l e f t :   0 ; 
 
     z - i n d e x :   1 5 ; 
 
     d i s p l a y :   - m s - f l e x b o x ; 
 
     d i s p l a y :   f l e x ; 
 
     - m s - f l e x - p a c k :   c e n t e r ; 
 
     j u s t i f y - c o n t e n t :   c e n t e r ; 
 
     p a d d i n g - l e f t :   0 ; 
 
     m a r g i n - r i g h t :   1 5 % ; 
 
     m a r g i n - l e f t :   1 5 % ; 
 
     l i s t - s t y l e :   n o n e ; 
 
 } 
 
 
 
 . c a r o u s e l - i n d i c a t o r s   l i   { 
 
     b o x - s i z i n g :   c o n t e n t - b o x ; 
 
     - m s - f l e x :   0   1   a u t o ; 
 
     f l e x :   0   1   a u t o ; 
 
     w i d t h :   3 0 p x ; 
 
     h e i g h t :   3 p x ; 
 
     m a r g i n - r i g h t :   3 p x ; 
 
     m a r g i n - l e f t :   3 p x ; 
 
     t e x t - i n d e n t :   - 9 9 9 p x ; 
 
     c u r s o r :   p o i n t e r ; 
 
     b a c k g r o u n d - c o l o r :   # f f f ; 
 
     b a c k g r o u n d - c l i p :   p a d d i n g - b o x ; 
 
     b o r d e r - t o p :   1 0 p x   s o l i d   t r a n s p a r e n t ; 
 
     b o r d e r - b o t t o m :   1 0 p x   s o l i d   t r a n s p a r e n t ; 
 
     o p a c i t y :   . 5 ; 
 
     t r a n s i t i o n :   o p a c i t y   0 . 6 s   e a s e ; 
 
 } 
 
 
 
 @ m e d i a   ( p r e f e r s - r e d u c e d - m o t i o n :   r e d u c e )   { 
 
     . c a r o u s e l - i n d i c a t o r s   l i   { 
 
         t r a n s i t i o n :   n o n e ; 
 
     } 
 
 } 
 
 
 
 . c a r o u s e l - i n d i c a t o r s   . a c t i v e   { 
 
     o p a c i t y :   1 ; 
 
 } 
 
 
 
 . c a r o u s e l - c a p t i o n   { 
 
     p o s i t i o n :   a b s o l u t e ; 
 
     r i g h t :   1 5 % ; 
 
     b o t t o m :   2 0 p x ; 
 
     l e f t :   1 5 % ; 
 
     z - i n d e x :   1 0 ; 
 
     p a d d i n g - t o p :   2 0 p x ; 
 
     p a d d i n g - b o t t o m :   2 0 p x ; 
 
     c o l o r :   # f f f ; 
 
     t e x t - a l i g n :   c e n t e r ; 
 
 } 
 
 
 
 @ - w e b k i t - k e y f r a m e s   s p i n n e r - b o r d e r   { 
 
     t o   { 
 
         - w e b k i t - t r a n s f o r m :   r o t a t e ( 3 6 0 d e g ) ; 
 
         t r a n s f o r m :   r o t a t e ( 3 6 0 d e g ) ; 
 
     } 
 
 } 
 
 
 
 @ k e y f r a m e s   s p i n n e r - b o r d e r   { 
 
     t o   { 
 
         - w e b k i t - t r a n s f o r m :   r o t a t e ( 3 6 0 d e g ) ; 
 
         t r a n s f o r m :   r o t a t e ( 3 6 0 d e g ) ; 
 
     } 
 
 } 
 
 
 
 . s p i n n e r - b o r d e r   { 
 
     d i s p l a y :   i n l i n e - b l o c k ; 
 
     w i d t h :   2 r e m ; 
 
     h e i g h t :   2 r e m ; 
 
     v e r t i c a l - a l i g n :   t e x t - b o t t o m ; 
 
     b o r d e r :   0 . 2 5 e m   s o l i d   c u r r e n t C o l o r ; 
 
     b o r d e r - r i g h t - c o l o r :   t r a n s p a r e n t ; 
 
     b o r d e r - r a d i u s :   5 0 % ; 
 
     - w e b k i t - a n i m a t i o n :   s p i n n e r - b o r d e r   . 7 5 s   l i n e a r   i n f i n i t e ; 
 
     a n i m a t i o n :   s p i n n e r - b o r d e r   . 7 5 s   l i n e a r   i n f i n i t e ; 
 
 } 
 
 
 
 . s p i n n e r - b o r d e r - s m   { 
 
     w i d t h :   1 r e m ; 
 
     h e i g h t :   1 r e m ; 
 
     b o r d e r - w i d t h :   0 . 2 e m ; 
 
 } 
 
 
 
 @ - w e b k i t - k e y f r a m e s   s p i n n e r - g r o w   { 
 
     0 %   { 
 
         - w e b k i t - t r a n s f o r m :   s c a l e ( 0 ) ; 
 
         t r a n s f o r m :   s c a l e ( 0 ) ; 
 
     } 
 
     5 0 %   { 
 
         o p a c i t y :   1 ; 
 
     } 
 
 } 
 
 
 
 @ k e y f r a m e s   s p i n n e r - g r o w   { 
 
     0 %   { 
 
         - w e b k i t - t r a n s f o r m :   s c a l e ( 0 ) ; 
 
         t r a n s f o r m :   s c a l e ( 0 ) ; 
 
     } 
 
     5 0 %   { 
 
         o p a c i t y :   1 ; 
 
     } 
 
 } 
 
 
 
 . s p i n n e r - g r o w   { 
 
     d i s p l a y :   i n l i n e - b l o c k ; 
 
     w i d t h :   2 r e m ; 
 
     h e i g h t :   2 r e m ; 
 
     v e r t i c a l - a l i g n :   t e x t - b o t t o m ; 
 
     b a c k g r o u n d - c o l o r :   c u r r e n t C o l o r ; 
 
     b o r d e r - r a d i u s :   5 0 % ; 
 
     o p a c i t y :   0 ; 
 
     - w e b k i t - a n i m a t i o n :   s p i n n e r - g r o w   . 7 5 s   l i n e a r   i n f i n i t e ; 
 
     a n i m a t i o n :   s p i n n e r - g r o w   . 7 5 s   l i n e a r   i n f i n i t e ; 
 
 } 
 
 
 
 . s p i n n e r - g r o w - s m   { 
 
     w i d t h :   1 r e m ; 
 
     h e i g h t :   1 r e m ; 
 
 } 
 
 
 
 . a l i g n - b a s e l i n e   { 
 
     v e r t i c a l - a l i g n :   b a s e l i n e   ! i m p o r t a n t ; 
 
 } 
 
 
 
 . a l i g n - t o p   { 
 
     v e r t i c a l - a l i g n :   t o p   ! i m p o r t a n t ; 
 
 } 
 
 
 
 . a l i g n - m i d d l e   { 
 
     v e r t i c a l - a l i g n :   m i d d l e   ! i m p o r t a n t ; 
 
 } 
 
 
 
 . a l i g n - b o t t o m   { 
 
     v e r t i c a l - a l i g n :   b o t t o m   ! i m p o r t a n t ; 
 
 } 
 
 
 
 . a l i g n - t e x t - b o t t o m   { 
 
     v e r t i c a l - a l i g n :   t e x t - b o t t o m   ! i m p o r t a n t ; 
 
 } 
 
 
 
 . a l i g n - t e x t - t o p   { 
 
     v e r t i c a l - a l i g n :   t e x t - t o p   ! i m p o r t a n t ; 
 
 } 
 
 
 
 . b g - p r i m a r y   { 
 
     b a c k g r o u n d - c o l o r :   # 0 0 7 b f f   ! i m p o r t a n t ; 
 
 } 
 
 
 
 a . b g - p r i m a r y : h o v e r ,   a . b g - p r i m a r y : f o c u s , 
 
 b u t t o n . b g - p r i m a r y : h o v e r , 
 
 b u t t o n . b g - p r i m a r y : f o c u s   { 
 
     b a c k g r o u n d - c o l o r :   # 0 0 6 2 c c   ! i m p o r t a n t ; 
 
 } 
 
 
 
 . b g - s e c o n d a r y   { 
 
     b a c k g r o u n d - c o l o r :   # 6 c 7 5 7 d   ! i m p o r t a n t ; 
 
 } 
 
 
 
 a . b g - s e c o n d a r y : h o v e r ,   a . b g - s e c o n d a r y : f o c u s , 
 
 b u t t o n . b g - s e c o n d a r y : h o v e r , 
 
 b u t t o n . b g - s e c o n d a r y : f o c u s   { 
 
     b a c k g r o u n d - c o l o r :   # 5 4 5 b 6 2   ! i m p o r t a n t ; 
 
 } 
 
 
 
 . b g - s u c c e s s   { 
 
     b a c k g r o u n d - c o l o r :   # 2 8 a 7 4 5   ! i m p o r t a n t ; 
 
 } 
 
 
 
 a . b g - s u c c e s s : h o v e r ,   a . b g - s u c c e s s : f o c u s , 
 
 b u t t o n . b g - s u c c e s s : h o v e r , 
 
 b u t t o n . b g - s u c c e s s : f o c u s   { 
 
     b a c k g r o u n d - c o l o r :   # 1 e 7 e 3 4   ! i m p o r t a n t ; 
 
 } 
 
 
 
 . b g - i n f o   { 
 
     b a c k g r o u n d - c o l o r :   # 1 7 a 2 b 8   ! i m p o r t a n t ; 
 
 } 
 
 
 
 a . b g - i n f o : h o v e r ,   a . b g - i n f o : f o c u s , 
 
 b u t t o n . b g - i n f o : h o v e r , 
 
 b u t t o n . b g - i n f o : f o c u s   { 
 
     b a c k g r o u n d - c o l o r :   # 1 1 7 a 8 b   ! i m p o r t a n t ; 
 
 } 
 
 
 
 . b g - w a r n i n g   { 
 
     b a c k g r o u n d - c o l o r :   # f f c 1 0 7   ! i m p o r t a n t ; 
 
 } 
 
 
 
 a . b g - w a r n i n g : h o v e r ,   a . b g - w a r n i n g : f o c u s , 
 
 b u t t o n . b g - w a r n i n g : h o v e r , 
 
 b u t t o n . b g - w a r n i n g : f o c u s   { 
 
     b a c k g r o u n d - c o l o r :   # d 3 9 e 0 0   ! i m p o r t a n t ; 
 
 } 
 
 
 
 . b g - d a n g e r   { 
 
     b a c k g r o u n d - c o l o r :   # d c 3 5 4 5   ! i m p o r t a n t ; 
 
 } 
 
 
 
 a . b g - d a n g e r : h o v e r ,   a . b g - d a n g e r : f o c u s , 
 
 b u t t o n . b g - d a n g e r : h o v e r , 
 
 b u t t o n . b g - d a n g e r : f o c u s   { 
 
     b a c k g r o u n d - c o l o r :   # b d 2 1 3 0   ! i m p o r t a n t ; 
 
 } 
 
 
 
 . b g - l i g h t   { 
 
     b a c k g r o u n d - c o l o r :   # f 8 f 9 f a   ! i m p o r t a n t ; 
 
 } 
 
 
 
 a . b g - l i g h t : h o v e r ,   a . b g - l i g h t : f o c u s , 
 
 b u t t o n . b g - l i g h t : h o v e r , 
 
 b u t t o n . b g - l i g h t : f o c u s   { 
 
     b a c k g r o u n d - c o l o r :   # d a e 0 e 5   ! i m p o r t a n t ; 
 
 } 
 
 
 
 . b g - d a r k   { 
 
     b a c k g r o u n d - c o l o r :   # 3 4 3 a 4 0   ! i m p o r t a n t ; 
 
 } 
 
 
 
 a . b g - d a r k : h o v e r ,   a . b g - d a r k : f o c u s , 
 
 b u t t o n . b g - d a r k : h o v e r , 
 
 b u t t o n . b g - d a r k : f o c u s   { 
 
     b a c k g r o u n d - c o l o r :   # 1 d 2 1 2 4   ! i m p o r t a n t ; 
 
 } 
 
 
 
 . b g - w h i t e   { 
 
     b a c k g r o u n d - c o l o r :   # f f f   ! i m p o r t a n t ; 
 
 } 
 
 
 
 . b g - t r a n s p a r e n t   { 
 
     b a c k g r o u n d - c o l o r :   t r a n s p a r e n t   ! i m p o r t a n t ; 
 
 } 
 
 
 
 . b o r d e r   { 
 
     b o r d e r :   1 p x   s o l i d   # d e e 2 e 6   ! i m p o r t a n t ; 
 
 } 
 
 
 
 . b o r d e r - t o p   { 
 
     b o r d e r - t o p :   1 p x   s o l i d   # d e e 2 e 6   ! i m p o r t a n t ; 
 
 } 
 
 
 
 . b o r d e r - r i g h t   { 
 
     b o r d e r - r i g h t :   1 p x   s o l i d   # d e e 2 e 6   ! i m p o r t a n t ; 
 
 } 
 
 
 
 . b o r d e r - b o t t o m   { 
 
     b o r d e r - b o t t o m :   1 p x   s o l i d   # d e e 2 e 6   ! i m p o r t a n t ; 
 
 } 
 
 
 
 . b o r d e r - l e f t   { 
 
     b o r d e r - l e f t :   1 p x   s o l i d   # d e e 2 e 6   ! i m p o r t a n t ; 
 
 } 
 
 
 
 . b o r d e r - 0   { 
 
     b o r d e r :   0   ! i m p o r t a n t ; 
 
 } 
 
 
 
 . b o r d e r - t o p - 0   { 
 
     b o r d e r - t o p :   0   ! i m p o r t a n t ; 
 
 } 
 
 
 
 . b o r d e r - r i g h t - 0   { 
 
     b o r d e r - r i g h t :   0   ! i m p o r t a n t ; 
 
 } 
 
 
 
 . b o r d e r - b o t t o m - 0   { 
 
     b o r d e r - b o t t o m :   0   ! i m p o r t a n t ; 
 
 } 
 
 
 
 . b o r d e r - l e f t - 0   { 
 
     b o r d e r - l e f t :   0   ! i m p o r t a n t ; 
 
 } 
 
 
 
 . b o r d e r - p r i m a r y   { 
 
     b o r d e r - c o l o r :   # 0 0 7 b f f   ! i m p o r t a n t ; 
 
 } 
 
 
 
 . b o r d e r - s e c o n d a r y   { 
 
     b o r d e r - c o l o r :   # 6 c 7 5 7 d   ! i m p o r t a n t ; 
 
 } 
 
 
 
 . b o r d e r - s u c c e s s   { 
 
     b o r d e r - c o l o r :   # 2 8 a 7 4 5   ! i m p o r t a n t ; 
 
 } 
 
 
 
 . b o r d e r - i n f o   { 
 
     b o r d e r - c o l o r :   # 1 7 a 2 b 8   ! i m p o r t a n t ; 
 
 } 
 
 
 
 . b o r d e r - w a r n i n g   { 
 
     b o r d e r - c o l o r :   # f f c 1 0 7   ! i m p o r t a n t ; 
 
 } 
 
 
 
 . b o r d e r - d a n g e r   { 
 
     b o r d e r - c o l o r :   # d c 3 5 4 5   ! i m p o r t a n t ; 
 
 } 
 
 
 
 . b o r d e r - l i g h t   { 
 
     b o r d e r - c o l o r :   # f 8 f 9 f a   ! i m p o r t a n t ; 
 
 } 
 
 
 
 . b o r d e r - d a r k   { 
 
     b o r d e r - c o l o r :   # 3 4 3 a 4 0   ! i m p o r t a n t ; 
 
 } 
 
 
 
 . b o r d e r - w h i t e   { 
 
     b o r d e r - c o l o r :   # f f f   ! i m p o r t a n t ; 
 
 } 
 
 
 
 . r o u n d e d - s m   { 
 
     b o r d e r - r a d i u s :   0 . 2 r e m   ! i m p o r t a n t ; 
 
 } 
 
 
 
 . r o u n d e d   { 
 
     b o r d e r - r a d i u s :   0 . 2 5 r e m   ! i m p o r t a n t ; 
 
 } 
 
 
 
 . r o u n d e d - t o p   { 
 
     b o r d e r - t o p - l e f t - r a d i u s :   0 . 2 5 r e m   ! i m p o r t a n t ; 
 
     b o r d e r - t o p - r i g h t - r a d i u s :   0 . 2 5 r e m   ! i m p o r t a n t ; 
 
 } 
 
 
 
 . r o u n d e d - r i g h t   { 
 
     b o r d e r - t o p - r i g h t - r a d i u s :   0 . 2 5 r e m   ! i m p o r t a n t ; 
 
     b o r d e r - b o t t o m - r i g h t - r a d i u s :   0 . 2 5 r e m   ! i m p o r t a n t ; 
 
 } 
 
 
 
 . r o u n d e d - b o t t o m   { 
 
     b o r d e r - b o t t o m - r i g h t - r a d i u s :   0 . 2 5 r e m   ! i m p o r t a n t ; 
 
     b o r d e r - b o t t o m - l e f t - r a d i u s :   0 . 2 5 r e m   ! i m p o r t a n t ; 
 
 } 
 
 
 
 . r o u n d e d - l e f t   { 
 
     b o r d e r - t o p - l e f t - r a d i u s :   0 . 2 5 r e m   ! i m p o r t a n t ; 
 
     b o r d e r - b o t t o m - l e f t - r a d i u s :   0 . 2 5 r e m   ! i m p o r t a n t ; 
 
 } 
 
 
 
 . r o u n d e d - l g   { 
 
     b o r d e r - r a d i u s :   0 . 3 r e m   ! i m p o r t a n t ; 
 
 } 
 
 
 
 . r o u n d e d - c i r c l e   { 
 
     b o r d e r - r a d i u s :   5 0 %   ! i m p o r t a n t ; 
 
 } 
 
 
 
 . r o u n d e d - p i l l   { 
 
     b o r d e r - r a d i u s :   5 0 r e m   ! i m p o r t a n t ; 
 
 } 
 
 
 
 . r o u n d e d - 0   { 
 
     b o r d e r - r a d i u s :   0   ! i m p o r t a n t ; 
 
 } 
 
 
 
 . c l e a r f i x : : a f t e r   { 
 
     d i s p l a y :   b l o c k ; 
 
     c l e a r :   b o t h ; 
 
     c o n t e n t :   " " ; 
 
 } 
 
 
 
 . d - n o n e   { 
 
     d i s p l a y :   n o n e   ! i m p o r t a n t ; 
 
 } 
 
 
 
 . d - i n l i n e   { 
 
     d i s p l a y :   i n l i n e   ! i m p o r t a n t ; 
 
 } 
 
 
 
 . d - i n l i n e - b l o c k   { 
 
     d i s p l a y :   i n l i n e - b l o c k   ! i m p o r t a n t ; 
 
 } 
 
 
 
 . d - b l o c k   { 
 
     d i s p l a y :   b l o c k   ! i m p o r t a n t ; 
 
 } 
 
 
 
 . d - t a b l e   { 
 
     d i s p l a y :   t a b l e   ! i m p o r t a n t ; 
 
 } 
 
 
 
 . d - t a b l e - r o w   { 
 
     d i s p l a y :   t a b l e - r o w   ! i m p o r t a n t ; 
 
 } 
 
 
 
 . d - t a b l e - c e l l   { 
 
     d i s p l a y :   t a b l e - c e l l   ! i m p o r t a n t ; 
 
 } 
 
 
 
 . d - f l e x   { 
 
     d i s p l a y :   - m s - f l e x b o x   ! i m p o r t a n t ; 
 
     d i s p l a y :   f l e x   ! i m p o r t a n t ; 
 
 } 
 
 
 
 . d - i n l i n e - f l e x   { 
 
     d i s p l a y :   - m s - i n l i n e - f l e x b o x   ! i m p o r t a n t ; 
 
     d i s p l a y :   i n l i n e - f l e x   ! i m p o r t a n t ; 
 
 } 
 
 
 
 @ m e d i a   ( m i n - w i d t h :   5 7 6 p x )   { 
 
     . d - s m - n o n e   { 
 
         d i s p l a y :   n o n e   ! i m p o r t a n t ; 
 
     } 
 
     . d - s m - i n l i n e   { 
 
         d i s p l a y :   i n l i n e   ! i m p o r t a n t ; 
 
     } 
 
     . d - s m - i n l i n e - b l o c k   { 
 
         d i s p l a y :   i n l i n e - b l o c k   ! i m p o r t a n t ; 
 
     } 
 
     . d - s m - b l o c k   { 
 
         d i s p l a y :   b l o c k   ! i m p o r t a n t ; 
 
     } 
 
     . d - s m - t a b l e   { 
 
         d i s p l a y :   t a b l e   ! i m p o r t a n t ; 
 
     } 
 
     . d - s m - t a b l e - r o w   { 
 
         d i s p l a y :   t a b l e - r o w   ! i m p o r t a n t ; 
 
     } 
 
     . d - s m - t a b l e - c e l l   { 
 
         d i s p l a y :   t a b l e - c e l l   ! i m p o r t a n t ; 
 
     } 
 
     . d - s m - f l e x   { 
 
         d i s p l a y :   - m s - f l e x b o x   ! i m p o r t a n t ; 
 
         d i s p l a y :   f l e x   ! i m p o r t a n t ; 
 
     } 
 
     . d - s m - i n l i n e - f l e x   { 
 
         d i s p l a y :   - m s - i n l i n e - f l e x b o x   ! i m p o r t a n t ; 
 
         d i s p l a y :   i n l i n e - f l e x   ! i m p o r t a n t ; 
 
     } 
 
 } 
 
 
 
 @ m e d i a   ( m i n - w i d t h :   7 6 8 p x )   { 
 
     . d - m d - n o n e   { 
 
         d i s p l a y :   n o n e   ! i m p o r t a n t ; 
 
     } 
 
     . d - m d - i n l i n e   { 
 
         d i s p l a y :   i n l i n e   ! i m p o r t a n t ; 
 
     } 
 
     . d - m d - i n l i n e - b l o c k   { 
 
         d i s p l a y :   i n l i n e - b l o c k   ! i m p o r t a n t ; 
 
     } 
 
     . d - m d - b l o c k   { 
 
         d i s p l a y :   b l o c k   ! i m p o r t a n t ; 
 
     } 
 
     . d - m d - t a b l e   { 
 
         d i s p l a y :   t a b l e   ! i m p o r t a n t ; 
 
     } 
 
     . d - m d - t a b l e - r o w   { 
 
         d i s p l a y :   t a b l e - r o w   ! i m p o r t a n t ; 
 
     } 
 
     . d - m d - t a b l e - c e l l   { 
 
         d i s p l a y :   t a b l e - c e l l   ! i m p o r t a n t ; 
 
     } 
 
     . d - m d - f l e x   { 
 
         d i s p l a y :   - m s - f l e x b o x   ! i m p o r t a n t ; 
 
         d i s p l a y :   f l e x   ! i m p o r t a n t ; 
 
     } 
 
     . d - m d - i n l i n e - f l e x   { 
 
         d i s p l a y :   - m s - i n l i n e - f l e x b o x   ! i m p o r t a n t ; 
 
         d i s p l a y :   i n l i n e - f l e x   ! i m p o r t a n t ; 
 
     } 
 
 } 
 
 
 
 @ m e d i a   ( m i n - w i d t h :   9 9 2 p x )   { 
 
     . d - l g - n o n e   { 
 
         d i s p l a y :   n o n e   ! i m p o r t a n t ; 
 
     } 
 
     . d - l g - i n l i n e   { 
 
         d i s p l a y :   i n l i n e   ! i m p o r t a n t ; 
 
     } 
 
     . d - l g - i n l i n e - b l o c k   { 
 
         d i s p l a y :   i n l i n e - b l o c k   ! i m p o r t a n t ; 
 
     } 
 
     . d - l g - b l o c k   { 
 
         d i s p l a y :   b l o c k   ! i m p o r t a n t ; 
 
     } 
 
     . d - l g - t a b l e   { 
 
         d i s p l a y :   t a b l e   ! i m p o r t a n t ; 
 
     } 
 
     . d - l g - t a b l e - r o w   { 
 
         d i s p l a y :   t a b l e - r o w   ! i m p o r t a n t ; 
 
     } 
 
     . d - l g - t a b l e - c e l l   { 
 
         d i s p l a y :   t a b l e - c e l l   ! i m p o r t a n t ; 
 
     } 
 
     . d - l g - f l e x   { 
 
         d i s p l a y :   - m s - f l e x b o x   ! i m p o r t a n t ; 
 
         d i s p l a y :   f l e x   ! i m p o r t a n t ; 
 
     } 
 
     . d - l g - i n l i n e - f l e x   { 
 
         d i s p l a y :   - m s - i n l i n e - f l e x b o x   ! i m p o r t a n t ; 
 
         d i s p l a y :   i n l i n e - f l e x   ! i m p o r t a n t ; 
 
     } 
 
 } 
 
 
 
 @ m e d i a   ( m i n - w i d t h :   1 2 0 0 p x )   { 
 
     . d - x l - n o n e   { 
 
         d i s p l a y :   n o n e   ! i m p o r t a n t ; 
 
     } 
 
     . d - x l - i n l i n e   { 
 
         d i s p l a y :   i n l i n e   ! i m p o r t a n t ; 
 
     } 
 
     . d - x l - i n l i n e - b l o c k   { 
 
         d i s p l a y :   i n l i n e - b l o c k   ! i m p o r t a n t ; 
 
     } 
 
     . d - x l - b l o c k   { 
 
         d i s p l a y :   b l o c k   ! i m p o r t a n t ; 
 
     } 
 
     . d - x l - t a b l e   { 
 
         d i s p l a y :   t a b l e   ! i m p o r t a n t ; 
 
     } 
 
     . d - x l - t a b l e - r o w   { 
 
         d i s p l a y :   t a b l e - r o w   ! i m p o r t a n t ; 
 
     } 
 
     . d - x l - t a b l e - c e l l   { 
 
         d i s p l a y :   t a b l e - c e l l   ! i m p o r t a n t ; 
 
     } 
 
     . d - x l - f l e x   { 
 
         d i s p l a y :   - m s - f l e x b o x   ! i m p o r t a n t ; 
 
         d i s p l a y :   f l e x   ! i m p o r t a n t ; 
 
     } 
 
     . d - x l - i n l i n e - f l e x   { 
 
         d i s p l a y :   - m s - i n l i n e - f l e x b o x   ! i m p o r t a n t ; 
 
         d i s p l a y :   i n l i n e - f l e x   ! i m p o r t a n t ; 
 
     } 
 
 } 
 
 
 
 @ m e d i a   p r i n t   { 
 
     . d - p r i n t - n o n e   { 
 
         d i s p l a y :   n o n e   ! i m p o r t a n t ; 
 
     } 
 
     . d - p r i n t - i n l i n e   { 
 
         d i s p l a y :   i n l i n e   ! i m p o r t a n t ; 
 
     } 
 
     . d - p r i n t - i n l i n e - b l o c k   { 
 
         d i s p l a y :   i n l i n e - b l o c k   ! i m p o r t a n t ; 
 
     } 
 
     . d - p r i n t - b l o c k   { 
 
         d i s p l a y :   b l o c k   ! i m p o r t a n t ; 
 
     } 
 
     . d - p r i n t - t a b l e   { 
 
         d i s p l a y :   t a b l e   ! i m p o r t a n t ; 
 
     } 
 
     . d - p r i n t - t a b l e - r o w   { 
 
         d i s p l a y :   t a b l e - r o w   ! i m p o r t a n t ; 
 
     } 
 
     . d - p r i n t - t a b l e - c e l l   { 
 
         d i s p l a y :   t a b l e - c e l l   ! i m p o r t a n t ; 
 
     } 
 
     . d - p r i n t - f l e x   { 
 
         d i s p l a y :   - m s - f l e x b o x   ! i m p o r t a n t ; 
 
         d i s p l a y :   f l e x   ! i m p o r t a n t ; 
 
     } 
 
     . d - p r i n t - i n l i n e - f l e x   { 
 
         d i s p l a y :   - m s - i n l i n e - f l e x b o x   ! i m p o r t a n t ; 
 
         d i s p l a y :   i n l i n e - f l e x   ! i m p o r t a n t ; 
 
     } 
 
 } 
 
 
 
 . e m b e d - r e s p o n s i v e   { 
 
     p o s i t i o n :   r e l a t i v e ; 
 
     d i s p l a y :   b l o c k ; 
 
     w i d t h :   1 0 0 % ; 
 
     p a d d i n g :   0 ; 
 
     o v e r f l o w :   h i d d e n ; 
 
 } 
 
 
 
 . e m b e d - r e s p o n s i v e : : b e f o r e   { 
 
     d i s p l a y :   b l o c k ; 
 
     c o n t e n t :   " " ; 
 
 } 
 
 
 
 . e m b e d - r e s p o n s i v e   . e m b e d - r e s p o n s i v e - i t e m , 
 
 . e m b e d - r e s p o n s i v e   i f r a m e , 
 
 . e m b e d - r e s p o n s i v e   e m b e d , 
 
 . e m b e d - r e s p o n s i v e   o b j e c t , 
 
 . e m b e d - r e s p o n s i v e   v i d e o   { 
 
     p o s i t i o n :   a b s o l u t e ; 
 
     t o p :   0 ; 
 
     b o t t o m :   0 ; 
 
     l e f t :   0 ; 
 
     w i d t h :   1 0 0 % ; 
 
     h e i g h t :   1 0 0 % ; 
 
     b o r d e r :   0 ; 
 
 } 
 
 
 
 . e m b e d - r e s p o n s i v e - 2 1 b y 9 : : b e f o r e   { 
 
     p a d d i n g - t o p :   4 2 . 8 5 7 1 4 3 % ; 
 
 } 
 
 
 
 . e m b e d - r e s p o n s i v e - 1 6 b y 9 : : b e f o r e   { 
 
     p a d d i n g - t o p :   5 6 . 2 5 % ; 
 
 } 
 
 
 
 . e m b e d - r e s p o n s i v e - 4 b y 3 : : b e f o r e   { 
 
     p a d d i n g - t o p :   7 5 % ; 
 
 } 
 
 
 
 . e m b e d - r e s p o n s i v e - 1 b y 1 : : b e f o r e   { 
 
     p a d d i n g - t o p :   1 0 0 % ; 
 
 } 
 
 
 
 . f l e x - r o w   { 
 
     - m s - f l e x - d i r e c t i o n :   r o w   ! i m p o r t a n t ; 
 
     f l e x - d i r e c t i o n :   r o w   ! i m p o r t a n t ; 
 
 } 
 
 
 
 . f l e x - c o l u m n   { 
 
     - m s - f l e x - d i r e c t i o n :   c o l u m n   ! i m p o r t a n t ; 
 
     f l e x - d i r e c t i o n :   c o l u m n   ! i m p o r t a n t ; 
 
 } 
 
 
 
 . f l e x - r o w - r e v e r s e   { 
 
     - m s - f l e x - d i r e c t i o n :   r o w - r e v e r s e   ! i m p o r t a n t ; 
 
     f l e x - d i r e c t i o n :   r o w - r e v e r s e   ! i m p o r t a n t ; 
 
 } 
 
 
 
 . f l e x - c o l u m n - r e v e r s e   { 
 
     - m s - f l e x - d i r e c t i o n :   c o l u m n - r e v e r s e   ! i m p o r t a n t ; 
 
     f l e x - d i r e c t i o n :   c o l u m n - r e v e r s e   ! i m p o r t a n t ; 
 
 } 
 
 
 
 . f l e x - w r a p   { 
 
     - m s - f l e x - w r a p :   w r a p   ! i m p o r t a n t ; 
 
     f l e x - w r a p :   w r a p   ! i m p o r t a n t ; 
 
 } 
 
 
 
 . f l e x - n o w r a p   { 
 
     - m s - f l e x - w r a p :   n o w r a p   ! i m p o r t a n t ; 
 
     f l e x - w r a p :   n o w r a p   ! i m p o r t a n t ; 
 
 } 
 
 
 
 . f l e x - w r a p - r e v e r s e   { 
 
     - m s - f l e x - w r a p :   w r a p - r e v e r s e   ! i m p o r t a n t ; 
 
     f l e x - w r a p :   w r a p - r e v e r s e   ! i m p o r t a n t ; 
 
 } 
 
 
 
 . f l e x - f i l l   { 
 
     - m s - f l e x :   1   1   a u t o   ! i m p o r t a n t ; 
 
     f l e x :   1   1   a u t o   ! i m p o r t a n t ; 
 
 } 
 
 
 
 . f l e x - g r o w - 0   { 
 
     - m s - f l e x - p o s i t i v e :   0   ! i m p o r t a n t ; 
 
     f l e x - g r o w :   0   ! i m p o r t a n t ; 
 
 } 
 
 
 
 . f l e x - g r o w - 1   { 
 
     - m s - f l e x - p o s i t i v e :   1   ! i m p o r t a n t ; 
 
     f l e x - g r o w :   1   ! i m p o r t a n t ; 
 
 } 
 
 
 
 . f l e x - s h r i n k - 0   { 
 
     - m s - f l e x - n e g a t i v e :   0   ! i m p o r t a n t ; 
 
     f l e x - s h r i n k :   0   ! i m p o r t a n t ; 
 
 } 
 
 
 
 . f l e x - s h r i n k - 1   { 
 
     - m s - f l e x - n e g a t i v e :   1   ! i m p o r t a n t ; 
 
     f l e x - s h r i n k :   1   ! i m p o r t a n t ; 
 
 } 
 
 
 
 . j u s t i f y - c o n t e n t - s t a r t   { 
 
     - m s - f l e x - p a c k :   s t a r t   ! i m p o r t a n t ; 
 
     j u s t i f y - c o n t e n t :   f l e x - s t a r t   ! i m p o r t a n t ; 
 
 } 
 
 
 
 . j u s t i f y - c o n t e n t - e n d   { 
 
     - m s - f l e x - p a c k :   e n d   ! i m p o r t a n t ; 
 
     j u s t i f y - c o n t e n t :   f l e x - e n d   ! i m p o r t a n t ; 
 
 } 
 
 
 
 . j u s t i f y - c o n t e n t - c e n t e r   { 
 
     - m s - f l e x - p a c k :   c e n t e r   ! i m p o r t a n t ; 
 
     j u s t i f y - c o n t e n t :   c e n t e r   ! i m p o r t a n t ; 
 
 } 
 
 
 
 . j u s t i f y - c o n t e n t - b e t w e e n   { 
 
     - m s - f l e x - p a c k :   j u s t i f y   ! i m p o r t a n t ; 
 
     j u s t i f y - c o n t e n t :   s p a c e - b e t w e e n   ! i m p o r t a n t ; 
 
 } 
 
 
 
 . j u s t i f y - c o n t e n t - a r o u n d   { 
 
     - m s - f l e x - p a c k :   d i s t r i b u t e   ! i m p o r t a n t ; 
 
     j u s t i f y - c o n t e n t :   s p a c e - a r o u n d   ! i m p o r t a n t ; 
 
 } 
 
 
 
 . a l i g n - i t e m s - s t a r t   { 
 
     - m s - f l e x - a l i g n :   s t a r t   ! i m p o r t a n t ; 
 
     a l i g n - i t e m s :   f l e x - s t a r t   ! i m p o r t a n t ; 
 
 } 
 
 
 
 . a l i g n - i t e m s - e n d   { 
 
     - m s - f l e x - a l i g n :   e n d   ! i m p o r t a n t ; 
 
     a l i g n - i t e m s :   f l e x - e n d   ! i m p o r t a n t ; 
 
 } 
 
 
 
 . a l i g n - i t e m s - c e n t e r   { 
 
     - m s - f l e x - a l i g n :   c e n t e r   ! i m p o r t a n t ; 
 
     a l i g n - i t e m s :   c e n t e r   ! i m p o r t a n t ; 
 
 } 
 
 
 
 . a l i g n - i t e m s - b a s e l i n e   { 
 
     - m s - f l e x - a l i g n :   b a s e l i n e   ! i m p o r t a n t ; 
 
     a l i g n - i t e m s :   b a s e l i n e   ! i m p o r t a n t ; 
 
 } 
 
 
 
 . a l i g n - i t e m s - s t r e t c h   { 
 
     - m s - f l e x - a l i g n :   s t r e t c h   ! i m p o r t a n t ; 
 
     a l i g n - i t e m s :   s t r e t c h   ! i m p o r t a n t ; 
 
 } 
 
 
 
 . a l i g n - c o n t e n t - s t a r t   { 
 
     - m s - f l e x - l i n e - p a c k :   s t a r t   ! i m p o r t a n t ; 
 
     a l i g n - c o n t e n t :   f l e x - s t a r t   ! i m p o r t a n t ; 
 
 } 
 
 
 
 . a l i g n - c o n t e n t - e n d   { 
 
     - m s - f l e x - l i n e - p a c k :   e n d   ! i m p o r t a n t ; 
 
     a l i g n - c o n t e n t :   f l e x - e n d   ! i m p o r t a n t ; 
 
 } 
 
 
 
 . a l i g n - c o n t e n t - c e n t e r   { 
 
     - m s - f l e x - l i n e - p a c k :   c e n t e r   ! i m p o r t a n t ; 
 
     a l i g n - c o n t e n t :   c e n t e r   ! i m p o r t a n t ; 
 
 } 
 
 
 
 . a l i g n - c o n t e n t - b e t w e e n   { 
 
     - m s - f l e x - l i n e - p a c k :   j u s t i f y   ! i m p o r t a n t ; 
 
     a l i g n - c o n t e n t :   s p a c e - b e t w e e n   ! i m p o r t a n t ; 
 
 } 
 
 
 
 . a l i g n - c o n t e n t - a r o u n d   { 
 
     - m s - f l e x - l i n e - p a c k :   d i s t r i b u t e   ! i m p o r t a n t ; 
 
     a l i g n - c o n t e n t :   s p a c e - a r o u n d   ! i m p o r t a n t ; 
 
 } 
 
 
 
 . a l i g n - c o n t e n t - s t r e t c h   { 
 
     - m s - f l e x - l i n e - p a c k :   s t r e t c h   ! i m p o r t a n t ; 
 
     a l i g n - c o n t e n t :   s t r e t c h   ! i m p o r t a n t ; 
 
 } 
 
 
 
 . a l i g n - s e l f - a u t o   { 
 
     - m s - f l e x - i t e m - a l i g n :   a u t o   ! i m p o r t a n t ; 
 
     a l i g n - s e l f :   a u t o   ! i m p o r t a n t ; 
 
 } 
 
 
 
 . a l i g n - s e l f - s t a r t   { 
 
     - m s - f l e x - i t e m - a l i g n :   s t a r t   ! i m p o r t a n t ; 
 
     a l i g n - s e l f :   f l e x - s t a r t   ! i m p o r t a n t ; 
 
 } 
 
 
 
 . a l i g n - s e l f - e n d   { 
 
     - m s - f l e x - i t e m - a l i g n :   e n d   ! i m p o r t a n t ; 
 
     a l i g n - s e l f :   f l e x - e n d   ! i m p o r t a n t ; 
 
 } 
 
 
 
 . a l i g n - s e l f - c e n t e r   { 
 
     - m s - f l e x - i t e m - a l i g n :   c e n t e r   ! i m p o r t a n t ; 
 
     a l i g n - s e l f :   c e n t e r   ! i m p o r t a n t ; 
 
 } 
 
 
 
 . a l i g n - s e l f - b a s e l i n e   { 
 
     - m s - f l e x - i t e m - a l i g n :   b a s e l i n e   ! i m p o r t a n t ; 
 
     a l i g n - s e l f :   b a s e l i n e   ! i m p o r t a n t ; 
 
 } 
 
 
 
 . a l i g n - s e l f - s t r e t c h   { 
 
     - m s - f l e x - i t e m - a l i g n :   s t r e t c h   ! i m p o r t a n t ; 
 
     a l i g n - s e l f :   s t r e t c h   ! i m p o r t a n t ; 
 
 } 
 
 
 
 @ m e d i a   ( m i n - w i d t h :   5 7 6 p x )   { 
 
     . f l e x - s m - r o w   { 
 
         - m s - f l e x - d i r e c t i o n :   r o w   ! i m p o r t a n t ; 
 
         f l e x - d i r e c t i o n :   r o w   ! i m p o r t a n t ; 
 
     } 
 
     . f l e x - s m - c o l u m n   { 
 
         - m s - f l e x - d i r e c t i o n :   c o l u m n   ! i m p o r t a n t ; 
 
         f l e x - d i r e c t i o n :   c o l u m n   ! i m p o r t a n t ; 
 
     } 
 
     . f l e x - s m - r o w - r e v e r s e   { 
 
         - m s - f l e x - d i r e c t i o n :   r o w - r e v e r s e   ! i m p o r t a n t ; 
 
         f l e x - d i r e c t i o n :   r o w - r e v e r s e   ! i m p o r t a n t ; 
 
     } 
 
     . f l e x - s m - c o l u m n - r e v e r s e   { 
 
         - m s - f l e x - d i r e c t i o n :   c o l u m n - r e v e r s e   ! i m p o r t a n t ; 
 
         f l e x - d i r e c t i o n :   c o l u m n - r e v e r s e   ! i m p o r t a n t ; 
 
     } 
 
     . f l e x - s m - w r a p   { 
 
         - m s - f l e x - w r a p :   w r a p   ! i m p o r t a n t ; 
 
         f l e x - w r a p :   w r a p   ! i m p o r t a n t ; 
 
     } 
 
     . f l e x - s m - n o w r a p   { 
 
         - m s - f l e x - w r a p :   n o w r a p   ! i m p o r t a n t ; 
 
         f l e x - w r a p :   n o w r a p   ! i m p o r t a n t ; 
 
     } 
 
     . f l e x - s m - w r a p - r e v e r s e   { 
 
         - m s - f l e x - w r a p :   w r a p - r e v e r s e   ! i m p o r t a n t ; 
 
         f l e x - w r a p :   w r a p - r e v e r s e   ! i m p o r t a n t ; 
 
     } 
 
     . f l e x - s m - f i l l   { 
 
         - m s - f l e x :   1   1   a u t o   ! i m p o r t a n t ; 
 
         f l e x :   1   1   a u t o   ! i m p o r t a n t ; 
 
     } 
 
     . f l e x - s m - g r o w - 0   { 
 
         - m s - f l e x - p o s i t i v e :   0   ! i m p o r t a n t ; 
 
         f l e x - g r o w :   0   ! i m p o r t a n t ; 
 
     } 
 
     . f l e x - s m - g r o w - 1   { 
 
         - m s - f l e x - p o s i t i v e :   1   ! i m p o r t a n t ; 
 
         f l e x - g r o w :   1   ! i m p o r t a n t ; 
 
     } 
 
     . f l e x - s m - s h r i n k - 0   { 
 
         - m s - f l e x - n e g a t i v e :   0   ! i m p o r t a n t ; 
 
         f l e x - s h r i n k :   0   ! i m p o r t a n t ; 
 
     } 
 
     . f l e x - s m - s h r i n k - 1   { 
 
         - m s - f l e x - n e g a t i v e :   1   ! i m p o r t a n t ; 
 
         f l e x - s h r i n k :   1   ! i m p o r t a n t ; 
 
     } 
 
     . j u s t i f y - c o n t e n t - s m - s t a r t   { 
 
         - m s - f l e x - p a c k :   s t a r t   ! i m p o r t a n t ; 
 
         j u s t i f y - c o n t e n t :   f l e x - s t a r t   ! i m p o r t a n t ; 
 
     } 
 
     . j u s t i f y - c o n t e n t - s m - e n d   { 
 
         - m s - f l e x - p a c k :   e n d   ! i m p o r t a n t ; 
 
         j u s t i f y - c o n t e n t :   f l e x - e n d   ! i m p o r t a n t ; 
 
     } 
 
     . j u s t i f y - c o n t e n t - s m - c e n t e r   { 
 
         - m s - f l e x - p a c k :   c e n t e r   ! i m p o r t a n t ; 
 
         j u s t i f y - c o n t e n t :   c e n t e r   ! i m p o r t a n t ; 
 
     } 
 
     . j u s t i f y - c o n t e n t - s m - b e t w e e n   { 
 
         - m s - f l e x - p a c k :   j u s t i f y   ! i m p o r t a n t ; 
 
         j u s t i f y - c o n t e n t :   s p a c e - b e t w e e n   ! i m p o r t a n t ; 
 
     } 
 
     . j u s t i f y - c o n t e n t - s m - a r o u n d   { 
 
         - m s - f l e x - p a c k :   d i s t r i b u t e   ! i m p o r t a n t ; 
 
         j u s t i f y - c o n t e n t :   s p a c e - a r o u n d   ! i m p o r t a n t ; 
 
     } 
 
     . a l i g n - i t e m s - s m - s t a r t   { 
 
         - m s - f l e x - a l i g n :   s t a r t   ! i m p o r t a n t ; 
 
         a l i g n - i t e m s :   f l e x - s t a r t   ! i m p o r t a n t ; 
 
     } 
 
     . a l i g n - i t e m s - s m - e n d   { 
 
         - m s - f l e x - a l i g n :   e n d   ! i m p o r t a n t ; 
 
         a l i g n - i t e m s :   f l e x - e n d   ! i m p o r t a n t ; 
 
     } 
 
     . a l i g n - i t e m s - s m - c e n t e r   { 
 
         - m s - f l e x - a l i g n :   c e n t e r   ! i m p o r t a n t ; 
 
         a l i g n - i t e m s :   c e n t e r   ! i m p o r t a n t ; 
 
     } 
 
     . a l i g n - i t e m s - s m - b a s e l i n e   { 
 
         - m s - f l e x - a l i g n :   b a s e l i n e   ! i m p o r t a n t ; 
 
         a l i g n - i t e m s :   b a s e l i n e   ! i m p o r t a n t ; 
 
     } 
 
     . a l i g n - i t e m s - s m - s t r e t c h   { 
 
         - m s - f l e x - a l i g n :   s t r e t c h   ! i m p o r t a n t ; 
 
         a l i g n - i t e m s :   s t r e t c h   ! i m p o r t a n t ; 
 
     } 
 
     . a l i g n - c o n t e n t - s m - s t a r t   { 
 
         - m s - f l e x - l i n e - p a c k :   s t a r t   ! i m p o r t a n t ; 
 
         a l i g n - c o n t e n t :   f l e x - s t a r t   ! i m p o r t a n t ; 
 
     } 
 
     . a l i g n - c o n t e n t - s m - e n d   { 
 
         - m s - f l e x - l i n e - p a c k :   e n d   ! i m p o r t a n t ; 
 
         a l i g n - c o n t e n t :   f l e x - e n d   ! i m p o r t a n t ; 
 
     } 
 
     . a l i g n - c o n t e n t - s m - c e n t e r   { 
 
         - m s - f l e x - l i n e - p a c k :   c e n t e r   ! i m p o r t a n t ; 
 
         a l i g n - c o n t e n t :   c e n t e r   ! i m p o r t a n t ; 
 
     } 
 
     . a l i g n - c o n t e n t - s m - b e t w e e n   { 
 
         - m s - f l e x - l i n e - p a c k :   j u s t i f y   ! i m p o r t a n t ; 
 
         a l i g n - c o n t e n t :   s p a c e - b e t w e e n   ! i m p o r t a n t ; 
 
     } 
 
     . a l i g n - c o n t e n t - s m - a r o u n d   { 
 
         - m s - f l e x - l i n e - p a c k :   d i s t r i b u t e   ! i m p o r t a n t ; 
 
         a l i g n - c o n t e n t :   s p a c e - a r o u n d   ! i m p o r t a n t ; 
 
     } 
 
     . a l i g n - c o n t e n t - s m - s t r e t c h   { 
 
         - m s - f l e x - l i n e - p a c k :   s t r e t c h   ! i m p o r t a n t ; 
 
         a l i g n - c o n t e n t :   s t r e t c h   ! i m p o r t a n t ; 
 
     } 
 
     . a l i g n - s e l f - s m - a u t o   { 
 
         - m s - f l e x - i t e m - a l i g n :   a u t o   ! i m p o r t a n t ; 
 
         a l i g n - s e l f :   a u t o   ! i m p o r t a n t ; 
 
     } 
 
     . a l i g n - s e l f - s m - s t a r t   { 
 
         - m s - f l e x - i t e m - a l i g n :   s t a r t   ! i m p o r t a n t ; 
 
         a l i g n - s e l f :   f l e x - s t a r t   ! i m p o r t a n t ; 
 
     } 
 
     . a l i g n - s e l f - s m - e n d   { 
 
         - m s - f l e x - i t e m - a l i g n :   e n d   ! i m p o r t a n t ; 
 
         a l i g n - s e l f :   f l e x - e n d   ! i m p o r t a n t ; 
 
     } 
 
     . a l i g n - s e l f - s m - c e n t e r   { 
 
         - m s - f l e x - i t e m - a l i g n :   c e n t e r   ! i m p o r t a n t ; 
 
         a l i g n - s e l f :   c e n t e r   ! i m p o r t a n t ; 
 
     } 
 
     . a l i g n - s e l f - s m - b a s e l i n e   { 
 
         - m s - f l e x - i t e m - a l i g n :   b a s e l i n e   ! i m p o r t a n t ; 
 
         a l i g n - s e l f :   b a s e l i n e   ! i m p o r t a n t ; 
 
     } 
 
     . a l i g n - s e l f - s m - s t r e t c h   { 
 
         - m s - f l e x - i t e m - a l i g n :   s t r e t c h   ! i m p o r t a n t ; 
 
         a l i g n - s e l f :   s t r e t c h   ! i m p o r t a n t ; 
 
     } 
 
 } 
 
 
 
 @ m e d i a   ( m i n - w i d t h :   7 6 8 p x )   { 
 
     . f l e x - m d - r o w   { 
 
         - m s - f l e x - d i r e c t i o n :   r o w   ! i m p o r t a n t ; 
 
         f l e x - d i r e c t i o n :   r o w   ! i m p o r t a n t ; 
 
     } 
 
     . f l e x - m d - c o l u m n   { 
 
         - m s - f l e x - d i r e c t i o n :   c o l u m n   ! i m p o r t a n t ; 
 
         f l e x - d i r e c t i o n :   c o l u m n   ! i m p o r t a n t ; 
 
     } 
 
     . f l e x - m d - r o w - r e v e r s e   { 
 
         - m s - f l e x - d i r e c t i o n :   r o w - r e v e r s e   ! i m p o r t a n t ; 
 
         f l e x - d i r e c t i o n :   r o w - r e v e r s e   ! i m p o r t a n t ; 
 
     } 
 
     . f l e x - m d - c o l u m n - r e v e r s e   { 
 
         - m s - f l e x - d i r e c t i o n :   c o l u m n - r e v e r s e   ! i m p o r t a n t ; 
 
         f l e x - d i r e c t i o n :   c o l u m n - r e v e r s e   ! i m p o r t a n t ; 
 
     } 
 
     . f l e x - m d - w r a p   { 
 
         - m s - f l e x - w r a p :   w r a p   ! i m p o r t a n t ; 
 
         f l e x - w r a p :   w r a p   ! i m p o r t a n t ; 
 
     } 
 
     . f l e x - m d - n o w r a p   { 
 
         - m s - f l e x - w r a p :   n o w r a p   ! i m p o r t a n t ; 
 
         f l e x - w r a p :   n o w r a p   ! i m p o r t a n t ; 
 
     } 
 
     . f l e x - m d - w r a p - r e v e r s e   { 
 
         - m s - f l e x - w r a p :   w r a p - r e v e r s e   ! i m p o r t a n t ; 
 
         f l e x - w r a p :   w r a p - r e v e r s e   ! i m p o r t a n t ; 
 
     } 
 
     . f l e x - m d - f i l l   { 
 
         - m s - f l e x :   1   1   a u t o   ! i m p o r t a n t ; 
 
         f l e x :   1   1   a u t o   ! i m p o r t a n t ; 
 
     } 
 
     . f l e x - m d - g r o w - 0   { 
 
         - m s - f l e x - p o s i t i v e :   0   ! i m p o r t a n t ; 
 
         f l e x - g r o w :   0   ! i m p o r t a n t ; 
 
     } 
 
     . f l e x - m d - g r o w - 1   { 
 
         - m s - f l e x - p o s i t i v e :   1   ! i m p o r t a n t ; 
 
         f l e x - g r o w :   1   ! i m p o r t a n t ; 
 
     } 
 
     . f l e x - m d - s h r i n k - 0   { 
 
         - m s - f l e x - n e g a t i v e :   0   ! i m p o r t a n t ; 
 
         f l e x - s h r i n k :   0   ! i m p o r t a n t ; 
 
     } 
 
     . f l e x - m d - s h r i n k - 1   { 
 
         - m s - f l e x - n e g a t i v e :   1   ! i m p o r t a n t ; 
 
         f l e x - s h r i n k :   1   ! i m p o r t a n t ; 
 
     } 
 
     . j u s t i f y - c o n t e n t - m d - s t a r t   { 
 
         - m s - f l e x - p a c k :   s t a r t   ! i m p o r t a n t ; 
 
         j u s t i f y - c o n t e n t :   f l e x - s t a r t   ! i m p o r t a n t ; 
 
     } 
 
     . j u s t i f y - c o n t e n t - m d - e n d   { 
 
         - m s - f l e x - p a c k :   e n d   ! i m p o r t a n t ; 
 
         j u s t i f y - c o n t e n t :   f l e x - e n d   ! i m p o r t a n t ; 
 
     } 
 
     . j u s t i f y - c o n t e n t - m d - c e n t e r   { 
 
         - m s - f l e x - p a c k :   c e n t e r   ! i m p o r t a n t ; 
 
         j u s t i f y - c o n t e n t :   c e n t e r   ! i m p o r t a n t ; 
 
     } 
 
     . j u s t i f y - c o n t e n t - m d - b e t w e e n   { 
 
         - m s - f l e x - p a c k :   j u s t i f y   ! i m p o r t a n t ; 
 
         j u s t i f y - c o n t e n t :   s p a c e - b e t w e e n   ! i m p o r t a n t ; 
 
     } 
 
     . j u s t i f y - c o n t e n t - m d - a r o u n d   { 
 
         - m s - f l e x - p a c k :   d i s t r i b u t e   ! i m p o r t a n t ; 
 
         j u s t i f y - c o n t e n t :   s p a c e - a r o u n d   ! i m p o r t a n t ; 
 
     } 
 
     . a l i g n - i t e m s - m d - s t a r t   { 
 
         - m s - f l e x - a l i g n :   s t a r t   ! i m p o r t a n t ; 
 
         a l i g n - i t e m s :   f l e x - s t a r t   ! i m p o r t a n t ; 
 
     } 
 
     . a l i g n - i t e m s - m d - e n d   { 
 
         - m s - f l e x - a l i g n :   e n d   ! i m p o r t a n t ; 
 
         a l i g n - i t e m s :   f l e x - e n d   ! i m p o r t a n t ; 
 
     } 
 
     . a l i g n - i t e m s - m d - c e n t e r   { 
 
         - m s - f l e x - a l i g n :   c e n t e r   ! i m p o r t a n t ; 
 
         a l i g n - i t e m s :   c e n t e r   ! i m p o r t a n t ; 
 
     } 
 
     . a l i g n - i t e m s - m d - b a s e l i n e   { 
 
         - m s - f l e x - a l i g n :   b a s e l i n e   ! i m p o r t a n t ; 
 
         a l i g n - i t e m s :   b a s e l i n e   ! i m p o r t a n t ; 
 
     } 
 
     . a l i g n - i t e m s - m d - s t r e t c h   { 
 
         - m s - f l e x - a l i g n :   s t r e t c h   ! i m p o r t a n t ; 
 
         a l i g n - i t e m s :   s t r e t c h   ! i m p o r t a n t ; 
 
     } 
 
     . a l i g n - c o n t e n t - m d - s t a r t   { 
 
         - m s - f l e x - l i n e - p a c k :   s t a r t   ! i m p o r t a n t ; 
 
         a l i g n - c o n t e n t :   f l e x - s t a r t   ! i m p o r t a n t ; 
 
     } 
 
     . a l i g n - c o n t e n t - m d - e n d   { 
 
         - m s - f l e x - l i n e - p a c k :   e n d   ! i m p o r t a n t ; 
 
         a l i g n - c o n t e n t :   f l e x - e n d   ! i m p o r t a n t ; 
 
     } 
 
     . a l i g n - c o n t e n t - m d - c e n t e r   { 
 
         - m s - f l e x - l i n e - p a c k :   c e n t e r   ! i m p o r t a n t ; 
 
         a l i g n - c o n t e n t :   c e n t e r   ! i m p o r t a n t ; 
 
     } 
 
     . a l i g n - c o n t e n t - m d - b e t w e e n   { 
 
         - m s - f l e x - l i n e - p a c k :   j u s t i f y   ! i m p o r t a n t ; 
 
         a l i g n - c o n t e n t :   s p a c e - b e t w e e n   ! i m p o r t a n t ; 
 
     } 
 
     . a l i g n - c o n t e n t - m d - a r o u n d   { 
 
         - m s - f l e x - l i n e - p a c k :   d i s t r i b u t e   ! i m p o r t a n t ; 
 
         a l i g n - c o n t e n t :   s p a c e - a r o u n d   ! i m p o r t a n t ; 
 
     } 
 
     . a l i g n - c o n t e n t - m d - s t r e t c h   { 
 
         - m s - f l e x - l i n e - p a c k :   s t r e t c h   ! i m p o r t a n t ; 
 
         a l i g n - c o n t e n t :   s t r e t c h   ! i m p o r t a n t ; 
 
     } 
 
     . a l i g n - s e l f - m d - a u t o   { 
 
         - m s - f l e x - i t e m - a l i g n :   a u t o   ! i m p o r t a n t ; 
 
         a l i g n - s e l f :   a u t o   ! i m p o r t a n t ; 
 
     } 
 
     . a l i g n - s e l f - m d - s t a r t   { 
 
         - m s - f l e x - i t e m - a l i g n :   s t a r t   ! i m p o r t a n t ; 
 
         a l i g n - s e l f :   f l e x - s t a r t   ! i m p o r t a n t ; 
 
     } 
 
     . a l i g n - s e l f - m d - e n d   { 
 
         - m s - f l e x - i t e m - a l i g n :   e n d   ! i m p o r t a n t ; 
 
         a l i g n - s e l f :   f l e x - e n d   ! i m p o r t a n t ; 
 
     } 
 
     . a l i g n - s e l f - m d - c e n t e r   { 
 
         - m s - f l e x - i t e m - a l i g n :   c e n t e r   ! i m p o r t a n t ; 
 
         a l i g n - s e l f :   c e n t e r   ! i m p o r t a n t ; 
 
     } 
 
     . a l i g n - s e l f - m d - b a s e l i n e   { 
 
         - m s - f l e x - i t e m - a l i g n :   b a s e l i n e   ! i m p o r t a n t ; 
 
         a l i g n - s e l f :   b a s e l i n e   ! i m p o r t a n t ; 
 
     } 
 
     . a l i g n - s e l f - m d - s t r e t c h   { 
 
         - m s - f l e x - i t e m - a l i g n :   s t r e t c h   ! i m p o r t a n t ; 
 
         a l i g n - s e l f :   s t r e t c h   ! i m p o r t a n t ; 
 
     } 
 
 } 
 
 
 
 @ m e d i a   ( m i n - w i d t h :   9 9 2 p x )   { 
 
     . f l e x - l g - r o w   { 
 
         - m s - f l e x - d i r e c t i o n :   r o w   ! i m p o r t a n t ; 
 
         f l e x - d i r e c t i o n :   r o w   ! i m p o r t a n t ; 
 
     } 
 
     . f l e x - l g - c o l u m n   { 
 
         - m s - f l e x - d i r e c t i o n :   c o l u m n   ! i m p o r t a n t ; 
 
         f l e x - d i r e c t i o n :   c o l u m n   ! i m p o r t a n t ; 
 
     } 
 
     . f l e x - l g - r o w - r e v e r s e   { 
 
         - m s - f l e x - d i r e c t i o n :   r o w - r e v e r s e   ! i m p o r t a n t ; 
 
         f l e x - d i r e c t i o n :   r o w - r e v e r s e   ! i m p o r t a n t ; 
 
     } 
 
     . f l e x - l g - c o l u m n - r e v e r s e   { 
 
         - m s - f l e x - d i r e c t i o n :   c o l u m n - r e v e r s e   ! i m p o r t a n t ; 
 
         f l e x - d i r e c t i o n :   c o l u m n - r e v e r s e   ! i m p o r t a n t ; 
 
     } 
 
     . f l e x - l g - w r a p   { 
 
         - m s - f l e x - w r a p :   w r a p   ! i m p o r t a n t ; 
 
         f l e x - w r a p :   w r a p   ! i m p o r t a n t ; 
 
     } 
 
     . f l e x - l g - n o w r a p   { 
 
         - m s - f l e x - w r a p :   n o w r a p   ! i m p o r t a n t ; 
 
         f l e x - w r a p :   n o w r a p   ! i m p o r t a n t ; 
 
     } 
 
     . f l e x - l g - w r a p - r e v e r s e   { 
 
         - m s - f l e x - w r a p :   w r a p - r e v e r s e   ! i m p o r t a n t ; 
 
         f l e x - w r a p :   w r a p - r e v e r s e   ! i m p o r t a n t ; 
 
     } 
 
     . f l e x - l g - f i l l   { 
 
         - m s - f l e x :   1   1   a u t o   ! i m p o r t a n t ; 
 
         f l e x :   1   1   a u t o   ! i m p o r t a n t ; 
 
     } 
 
     . f l e x - l g - g r o w - 0   { 
 
         - m s - f l e x - p o s i t i v e :   0   ! i m p o r t a n t ; 
 
         f l e x - g r o w :   0   ! i m p o r t a n t ; 
 
     } 
 
     . f l e x - l g - g r o w - 1   { 
 
         - m s - f l e x - p o s i t i v e :   1   ! i m p o r t a n t ; 
 
         f l e x - g r o w :   1   ! i m p o r t a n t ; 
 
     } 
 
     . f l e x - l g - s h r i n k - 0   { 
 
         - m s - f l e x - n e g a t i v e :   0   ! i m p o r t a n t ; 
 
         f l e x - s h r i n k :   0   ! i m p o r t a n t ; 
 
     } 
 
     . f l e x - l g - s h r i n k - 1   { 
 
         - m s - f l e x - n e g a t i v e :   1   ! i m p o r t a n t ; 
 
         f l e x - s h r i n k :   1   ! i m p o r t a n t ; 
 
     } 
 
     . j u s t i f y - c o n t e n t - l g - s t a r t   { 
 
         - m s - f l e x - p a c k :   s t a r t   ! i m p o r t a n t ; 
 
         j u s t i f y - c o n t e n t :   f l e x - s t a r t   ! i m p o r t a n t ; 
 
     } 
 
     . j u s t i f y - c o n t e n t - l g - e n d   { 
 
         - m s - f l e x - p a c k :   e n d   ! i m p o r t a n t ; 
 
         j u s t i f y - c o n t e n t :   f l e x - e n d   ! i m p o r t a n t ; 
 
     } 
 
     . j u s t i f y - c o n t e n t - l g - c e n t e r   { 
 
         - m s - f l e x - p a c k :   c e n t e r   ! i m p o r t a n t ; 
 
         j u s t i f y - c o n t e n t :   c e n t e r   ! i m p o r t a n t ; 
 
     } 
 
     . j u s t i f y - c o n t e n t - l g - b e t w e e n   { 
 
         - m s - f l e x - p a c k :   j u s t i f y   ! i m p o r t a n t ; 
 
         j u s t i f y - c o n t e n t :   s p a c e - b e t w e e n   ! i m p o r t a n t ; 
 
     } 
 
     . j u s t i f y - c o n t e n t - l g - a r o u n d   { 
 
         - m s - f l e x - p a c k :   d i s t r i b u t e   ! i m p o r t a n t ; 
 
         j u s t i f y - c o n t e n t :   s p a c e - a r o u n d   ! i m p o r t a n t ; 
 
     } 
 
     . a l i g n - i t e m s - l g - s t a r t   { 
 
         - m s - f l e x - a l i g n :   s t a r t   ! i m p o r t a n t ; 
 
         a l i g n - i t e m s :   f l e x - s t a r t   ! i m p o r t a n t ; 
 
     } 
 
     . a l i g n - i t e m s - l g - e n d   { 
 
         - m s - f l e x - a l i g n :   e n d   ! i m p o r t a n t ; 
 
         a l i g n - i t e m s :   f l e x - e n d   ! i m p o r t a n t ; 
 
     } 
 
     . a l i g n - i t e m s - l g - c e n t e r   { 
 
         - m s - f l e x - a l i g n :   c e n t e r   ! i m p o r t a n t ; 
 
         a l i g n - i t e m s :   c e n t e r   ! i m p o r t a n t ; 
 
     } 
 
     . a l i g n - i t e m s - l g - b a s e l i n e   { 
 
         - m s - f l e x - a l i g n :   b a s e l i n e   ! i m p o r t a n t ; 
 
         a l i g n - i t e m s :   b a s e l i n e   ! i m p o r t a n t ; 
 
     } 
 
     . a l i g n - i t e m s - l g - s t r e t c h   { 
 
         - m s - f l e x - a l i g n :   s t r e t c h   ! i m p o r t a n t ; 
 
         a l i g n - i t e m s :   s t r e t c h   ! i m p o r t a n t ; 
 
     } 
 
     . a l i g n - c o n t e n t - l g - s t a r t   { 
 
         - m s - f l e x - l i n e - p a c k :   s t a r t   ! i m p o r t a n t ; 
 
         a l i g n - c o n t e n t :   f l e x - s t a r t   ! i m p o r t a n t ; 
 
     } 
 
     . a l i g n - c o n t e n t - l g - e n d   { 
 
         - m s - f l e x - l i n e - p a c k :   e n d   ! i m p o r t a n t ; 
 
         a l i g n - c o n t e n t :   f l e x - e n d   ! i m p o r t a n t ; 
 
     } 
 
     . a l i g n - c o n t e n t - l g - c e n t e r   { 
 
         - m s - f l e x - l i n e - p a c k :   c e n t e r   ! i m p o r t a n t ; 
 
         a l i g n - c o n t e n t :   c e n t e r   ! i m p o r t a n t ; 
 
     } 
 
     . a l i g n - c o n t e n t - l g - b e t w e e n   { 
 
         - m s - f l e x - l i n e - p a c k :   j u s t i f y   ! i m p o r t a n t ; 
 
         a l i g n - c o n t e n t :   s p a c e - b e t w e e n   ! i m p o r t a n t ; 
 
     } 
 
     . a l i g n - c o n t e n t - l g - a r o u n d   { 
 
         - m s - f l e x - l i n e - p a c k :   d i s t r i b u t e   ! i m p o r t a n t ; 
 
         a l i g n - c o n t e n t :   s p a c e - a r o u n d   ! i m p o r t a n t ; 
 
     } 
 
     . a l i g n - c o n t e n t - l g - s t r e t c h   { 
 
         - m s - f l e x - l i n e - p a c k :   s t r e t c h   ! i m p o r t a n t ; 
 
         a l i g n - c o n t e n t :   s t r e t c h   ! i m p o r t a n t ; 
 
     } 
 
     . a l i g n - s e l f - l g - a u t o   { 
 
         - m s - f l e x - i t e m - a l i g n :   a u t o   ! i m p o r t a n t ; 
 
         a l i g n - s e l f :   a u t o   ! i m p o r t a n t ; 
 
     } 
 
     . a l i g n - s e l f - l g - s t a r t   { 
 
         - m s - f l e x - i t e m - a l i g n :   s t a r t   ! i m p o r t a n t ; 
 
         a l i g n - s e l f :   f l e x - s t a r t   ! i m p o r t a n t ; 
 
     } 
 
     . a l i g n - s e l f - l g - e n d   { 
 
         - m s - f l e x - i t e m - a l i g n :   e n d   ! i m p o r t a n t ; 
 
         a l i g n - s e l f :   f l e x - e n d   ! i m p o r t a n t ; 
 
     } 
 
     . a l i g n - s e l f - l g - c e n t e r   { 
 
         - m s - f l e x - i t e m - a l i g n :   c e n t e r   ! i m p o r t a n t ; 
 
         a l i g n - s e l f :   c e n t e r   ! i m p o r t a n t ; 
 
     } 
 
     . a l i g n - s e l f - l g - b a s e l i n e   { 
 
         - m s - f l e x - i t e m - a l i g n :   b a s e l i n e   ! i m p o r t a n t ; 
 
         a l i g n - s e l f :   b a s e l i n e   ! i m p o r t a n t ; 
 
     } 
 
     . a l i g n - s e l f - l g - s t r e t c h   { 
 
         - m s - f l e x - i t e m - a l i g n :   s t r e t c h   ! i m p o r t a n t ; 
 
         a l i g n - s e l f :   s t r e t c h   ! i m p o r t a n t ; 
 
     } 
 
 } 
 
 
 
 @ m e d i a   ( m i n - w i d t h :   1 2 0 0 p x )   { 
 
     . f l e x - x l - r o w   { 
 
         - m s - f l e x - d i r e c t i o n :   r o w   ! i m p o r t a n t ; 
 
         f l e x - d i r e c t i o n :   r o w   ! i m p o r t a n t ; 
 
     } 
 
     . f l e x - x l - c o l u m n   { 
 
         - m s - f l e x - d i r e c t i o n :   c o l u m n   ! i m p o r t a n t ; 
 
         f l e x - d i r e c t i o n :   c o l u m n   ! i m p o r t a n t ; 
 
     } 
 
     . f l e x - x l - r o w - r e v e r s e   { 
 
         - m s - f l e x - d i r e c t i o n :   r o w - r e v e r s e   ! i m p o r t a n t ; 
 
         f l e x - d i r e c t i o n :   r o w - r e v e r s e   ! i m p o r t a n t ; 
 
     } 
 
     . f l e x - x l - c o l u m n - r e v e r s e   { 
 
         - m s - f l e x - d i r e c t i o n :   c o l u m n - r e v e r s e   ! i m p o r t a n t ; 
 
         f l e x - d i r e c t i o n :   c o l u m n - r e v e r s e   ! i m p o r t a n t ; 
 
     } 
 
     . f l e x - x l - w r a p   { 
 
         - m s - f l e x - w r a p :   w r a p   ! i m p o r t a n t ; 
 
         f l e x - w r a p :   w r a p   ! i m p o r t a n t ; 
 
     } 
 
     . f l e x - x l - n o w r a p   { 
 
         - m s - f l e x - w r a p :   n o w r a p   ! i m p o r t a n t ; 
 
         f l e x - w r a p :   n o w r a p   ! i m p o r t a n t ; 
 
     } 
 
     . f l e x - x l - w r a p - r e v e r s e   { 
 
         - m s - f l e x - w r a p :   w r a p - r e v e r s e   ! i m p o r t a n t ; 
 
         f l e x - w r a p :   w r a p - r e v e r s e   ! i m p o r t a n t ; 
 
     } 
 
     . f l e x - x l - f i l l   { 
 
         - m s - f l e x :   1   1   a u t o   ! i m p o r t a n t ; 
 
         f l e x :   1   1   a u t o   ! i m p o r t a n t ; 
 
     } 
 
     . f l e x - x l - g r o w - 0   { 
 
         - m s - f l e x - p o s i t i v e :   0   ! i m p o r t a n t ; 
 
         f l e x - g r o w :   0   ! i m p o r t a n t ; 
 
     } 
 
     . f l e x - x l - g r o w - 1   { 
 
         - m s - f l e x - p o s i t i v e :   1   ! i m p o r t a n t ; 
 
         f l e x - g r o w :   1   ! i m p o r t a n t ; 
 
     } 
 
     . f l e x - x l - s h r i n k - 0   { 
 
         - m s - f l e x - n e g a t i v e :   0   ! i m p o r t a n t ; 
 
         f l e x - s h r i n k :   0   ! i m p o r t a n t ; 
 
     } 
 
     . f l e x - x l - s h r i n k - 1   { 
 
         - m s - f l e x - n e g a t i v e :   1   ! i m p o r t a n t ; 
 
         f l e x - s h r i n k :   1   ! i m p o r t a n t ; 
 
     } 
 
     . j u s t i f y - c o n t e n t - x l - s t a r t   { 
 
         - m s - f l e x - p a c k :   s t a r t   ! i m p o r t a n t ; 
 
         j u s t i f y - c o n t e n t :   f l e x - s t a r t   ! i m p o r t a n t ; 
 
     } 
 
     . j u s t i f y - c o n t e n t - x l - e n d   { 
 
         - m s - f l e x - p a c k :   e n d   ! i m p o r t a n t ; 
 
         j u s t i f y - c o n t e n t :   f l e x - e n d   ! i m p o r t a n t ; 
 
     } 
 
     . j u s t i f y - c o n t e n t - x l - c e n t e r   { 
 
         - m s - f l e x - p a c k :   c e n t e r   ! i m p o r t a n t ; 
 
         j u s t i f y - c o n t e n t :   c e n t e r   ! i m p o r t a n t ; 
 
     } 
 
     . j u s t i f y - c o n t e n t - x l - b e t w e e n   { 
 
         - m s - f l e x - p a c k :   j u s t i f y   ! i m p o r t a n t ; 
 
         j u s t i f y - c o n t e n t :   s p a c e - b e t w e e n   ! i m p o r t a n t ; 
 
     } 
 
     . j u s t i f y - c o n t e n t - x l - a r o u n d   { 
 
         - m s - f l e x - p a c k :   d i s t r i b u t e   ! i m p o r t a n t ; 
 
         j u s t i f y - c o n t e n t :   s p a c e - a r o u n d   ! i m p o r t a n t ; 
 
     } 
 
     . a l i g n - i t e m s - x l - s t a r t   { 
 
         - m s - f l e x - a l i g n :   s t a r t   ! i m p o r t a n t ; 
 
         a l i g n - i t e m s :   f l e x - s t a r t   ! i m p o r t a n t ; 
 
     } 
 
     . a l i g n - i t e m s - x l - e n d   { 
 
         - m s - f l e x - a l i g n :   e n d   ! i m p o r t a n t ; 
 
         a l i g n - i t e m s :   f l e x - e n d   ! i m p o r t a n t ; 
 
     } 
 
     . a l i g n - i t e m s - x l - c e n t e r   { 
 
         - m s - f l e x - a l i g n :   c e n t e r   ! i m p o r t a n t ; 
 
         a l i g n - i t e m s :   c e n t e r   ! i m p o r t a n t ; 
 
     } 
 
     . a l i g n - i t e m s - x l - b a s e l i n e   { 
 
         - m s - f l e x - a l i g n :   b a s e l i n e   ! i m p o r t a n t ; 
 
         a l i g n - i t e m s :   b a s e l i n e   ! i m p o r t a n t ; 
 
     } 
 
     . a l i g n - i t e m s - x l - s t r e t c h   { 
 
         - m s - f l e x - a l i g n :   s t r e t c h   ! i m p o r t a n t ; 
 
         a l i g n - i t e m s :   s t r e t c h   ! i m p o r t a n t ; 
 
     } 
 
     . a l i g n - c o n t e n t - x l - s t a r t   { 
 
         - m s - f l e x - l i n e - p a c k :   s t a r t   ! i m p o r t a n t ; 
 
         a l i g n - c o n t e n t :   f l e x - s t a r t   ! i m p o r t a n t ; 
 
     } 
 
     . a l i g n - c o n t e n t - x l - e n d   { 
 
         - m s - f l e x - l i n e - p a c k :   e n d   ! i m p o r t a n t ; 
 
         a l i g n - c o n t e n t :   f l e x - e n d   ! i m p o r t a n t ; 
 
     } 
 
     . a l i g n - c o n t e n t - x l - c e n t e r   { 
 
         - m s - f l e x - l i n e - p a c k :   c e n t e r   ! i m p o r t a n t ; 
 
         a l i g n - c o n t e n t :   c e n t e r   ! i m p o r t a n t ; 
 
     } 
 
     . a l i g n - c o n t e n t - x l - b e t w e e n   { 
 
         - m s - f l e x - l i n e - p a c k :   j u s t i f y   ! i m p o r t a n t ; 
 
         a l i g n - c o n t e n t :   s p a c e - b e t w e e n   ! i m p o r t a n t ; 
 
     } 
 
     . a l i g n - c o n t e n t - x l - a r o u n d   { 
 
         - m s - f l e x - l i n e - p a c k :   d i s t r i b u t e   ! i m p o r t a n t ; 
 
         a l i g n - c o n t e n t :   s p a c e - a r o u n d   ! i m p o r t a n t ; 
 
     } 
 
     . a l i g n - c o n t e n t - x l - s t r e t c h   { 
 
         - m s - f l e x - l i n e - p a c k :   s t r e t c h   ! i m p o r t a n t ; 
 
         a l i g n - c o n t e n t :   s t r e t c h   ! i m p o r t a n t ; 
 
     } 
 
     . a l i g n - s e l f - x l - a u t o   { 
 
         - m s - f l e x - i t e m - a l i g n :   a u t o   ! i m p o r t a n t ; 
 
         a l i g n - s e l f :   a u t o   ! i m p o r t a n t ; 
 
     } 
 
     . a l i g n - s e l f - x l - s t a r t   { 
 
         - m s - f l e x - i t e m - a l i g n :   s t a r t   ! i m p o r t a n t ; 
 
         a l i g n - s e l f :   f l e x - s t a r t   ! i m p o r t a n t ; 
 
     } 
 
     . a l i g n - s e l f - x l - e n d   { 
 
         - m s - f l e x - i t e m - a l i g n :   e n d   ! i m p o r t a n t ; 
 
         a l i g n - s e l f :   f l e x - e n d   ! i m p o r t a n t ; 
 
     } 
 
     . a l i g n - s e l f - x l - c e n t e r   { 
 
         - m s - f l e x - i t e m - a l i g n :   c e n t e r   ! i m p o r t a n t ; 
 
         a l i g n - s e l f :   c e n t e r   ! i m p o r t a n t ; 
 
     } 
 
     . a l i g n - s e l f - x l - b a s e l i n e   { 
 
         - m s - f l e x - i t e m - a l i g n :   b a s e l i n e   ! i m p o r t a n t ; 
 
         a l i g n - s e l f :   b a s e l i n e   ! i m p o r t a n t ; 
 
     } 
 
     . a l i g n - s e l f - x l - s t r e t c h   { 
 
         - m s - f l e x - i t e m - a l i g n :   s t r e t c h   ! i m p o r t a n t ; 
 
         a l i g n - s e l f :   s t r e t c h   ! i m p o r t a n t ; 
 
     } 
 
 } 
 
 
 
 . f l o a t - l e f t   { 
 
     f l o a t :   l e f t   ! i m p o r t a n t ; 
 
 } 
 
 
 
 . f l o a t - r i g h t   { 
 
     f l o a t :   r i g h t   ! i m p o r t a n t ; 
 
 } 
 
 
 
 . f l o a t - n o n e   { 
 
     f l o a t :   n o n e   ! i m p o r t a n t ; 
 
 } 
 
 
 
 @ m e d i a   ( m i n - w i d t h :   5 7 6 p x )   { 
 
     . f l o a t - s m - l e f t   { 
 
         f l o a t :   l e f t   ! i m p o r t a n t ; 
 
     } 
 
     . f l o a t - s m - r i g h t   { 
 
         f l o a t :   r i g h t   ! i m p o r t a n t ; 
 
     } 
 
     . f l o a t - s m - n o n e   { 
 
         f l o a t :   n o n e   ! i m p o r t a n t ; 
 
     } 
 
 } 
 
 
 
 @ m e d i a   ( m i n - w i d t h :   7 6 8 p x )   { 
 
     . f l o a t - m d - l e f t   { 
 
         f l o a t :   l e f t   ! i m p o r t a n t ; 
 
     } 
 
     . f l o a t - m d - r i g h t   { 
 
         f l o a t :   r i g h t   ! i m p o r t a n t ; 
 
     } 
 
     . f l o a t - m d - n o n e   { 
 
         f l o a t :   n o n e   ! i m p o r t a n t ; 
 
     } 
 
 } 
 
 
 
 @ m e d i a   ( m i n - w i d t h :   9 9 2 p x )   { 
 
     . f l o a t - l g - l e f t   { 
 
         f l o a t :   l e f t   ! i m p o r t a n t ; 
 
     } 
 
     . f l o a t - l g - r i g h t   { 
 
         f l o a t :   r i g h t   ! i m p o r t a n t ; 
 
     } 
 
     . f l o a t - l g - n o n e   { 
 
         f l o a t :   n o n e   ! i m p o r t a n t ; 
 
     } 
 
 } 
 
 
 
 @ m e d i a   ( m i n - w i d t h :   1 2 0 0 p x )   { 
 
     . f l o a t - x l - l e f t   { 
 
         f l o a t :   l e f t   ! i m p o r t a n t ; 
 
     } 
 
     . f l o a t - x l - r i g h t   { 
 
         f l o a t :   r i g h t   ! i m p o r t a n t ; 
 
     } 
 
     . f l o a t - x l - n o n e   { 
 
         f l o a t :   n o n e   ! i m p o r t a n t ; 
 
     } 
 
 } 
 
 
 
 . o v e r f l o w - a u t o   { 
 
     o v e r f l o w :   a u t o   ! i m p o r t a n t ; 
 
 } 
 
 
 
 . o v e r f l o w - h i d d e n   { 
 
     o v e r f l o w :   h i d d e n   ! i m p o r t a n t ; 
 
 } 
 
 
 
 . p o s i t i o n - s t a t i c   { 
 
     p o s i t i o n :   s t a t i c   ! i m p o r t a n t ; 
 
 } 
 
 
 
 . p o s i t i o n - r e l a t i v e   { 
 
     p o s i t i o n :   r e l a t i v e   ! i m p o r t a n t ; 
 
 } 
 
 
 
 . p o s i t i o n - a b s o l u t e   { 
 
     p o s i t i o n :   a b s o l u t e   ! i m p o r t a n t ; 
 
 } 
 
 
 
 . p o s i t i o n - f i x e d   { 
 
     p o s i t i o n :   f i x e d   ! i m p o r t a n t ; 
 
 } 
 
 
 
 . p o s i t i o n - s t i c k y   { 
 
     p o s i t i o n :   - w e b k i t - s t i c k y   ! i m p o r t a n t ; 
 
     p o s i t i o n :   s t i c k y   ! i m p o r t a n t ; 
 
 } 
 
 
 
 . f i x e d - t o p   { 
 
     p o s i t i o n :   f i x e d ; 
 
     t o p :   0 ; 
 
     r i g h t :   0 ; 
 
     l e f t :   0 ; 
 
     z - i n d e x :   1 0 3 0 ; 
 
 } 
 
 
 
 . f i x e d - b o t t o m   { 
 
     p o s i t i o n :   f i x e d ; 
 
     r i g h t :   0 ; 
 
     b o t t o m :   0 ; 
 
     l e f t :   0 ; 
 
     z - i n d e x :   1 0 3 0 ; 
 
 } 
 
 
 
 @ s u p p o r t s   ( ( p o s i t i o n :   - w e b k i t - s t i c k y )   o r   ( p o s i t i o n :   s t i c k y ) )   { 
 
     . s t i c k y - t o p   { 
 
         p o s i t i o n :   - w e b k i t - s t i c k y ; 
 
         p o s i t i o n :   s t i c k y ; 
 
         t o p :   0 ; 
 
         z - i n d e x :   1 0 2 0 ; 
 
     } 
 
 } 
 
 
 
 . s r - o n l y   { 
 
     p o s i t i o n :   a b s o l u t e ; 
 
     w i d t h :   1 p x ; 
 
     h e i g h t :   1 p x ; 
 
     p a d d i n g :   0 ; 
 
     o v e r f l o w :   h i d d e n ; 
 
     c l i p :   r e c t ( 0 ,   0 ,   0 ,   0 ) ; 
 
     w h i t e - s p a c e :   n o w r a p ; 
 
     b o r d e r :   0 ; 
 
 } 
 
 
 
 . s r - o n l y - f o c u s a b l e : a c t i v e ,   . s r - o n l y - f o c u s a b l e : f o c u s   { 
 
     p o s i t i o n :   s t a t i c ; 
 
     w i d t h :   a u t o ; 
 
     h e i g h t :   a u t o ; 
 
     o v e r f l o w :   v i s i b l e ; 
 
     c l i p :   a u t o ; 
 
     w h i t e - s p a c e :   n o r m a l ; 
 
 } 
 
 
 
 . s h a d o w - s m   { 
 
     b o x - s h a d o w :   0   0 . 1 2 5 r e m   0 . 2 5 r e m   r g b a ( 0 ,   0 ,   0 ,   0 . 0 7 5 )   ! i m p o r t a n t ; 
 
 } 
 
 
 
 . s h a d o w   { 
 
     b o x - s h a d o w :   0   0 . 5 r e m   1 r e m   r g b a ( 0 ,   0 ,   0 ,   0 . 1 5 )   ! i m p o r t a n t ; 
 
 } 
 
 
 
 . s h a d o w - l g   { 
 
     b o x - s h a d o w :   0   1 r e m   3 r e m   r g b a ( 0 ,   0 ,   0 ,   0 . 1 7 5 )   ! i m p o r t a n t ; 
 
 } 
 
 
 
 . s h a d o w - n o n e   { 
 
     b o x - s h a d o w :   n o n e   ! i m p o r t a n t ; 
 
 } 
 
 
 
 . w - 2 5   { 
 
     w i d t h :   2 5 %   ! i m p o r t a n t ; 
 
 } 
 
 
 
 . w - 5 0   { 
 
     w i d t h :   5 0 %   ! i m p o r t a n t ; 
 
 } 
 
 
 
 . w - 7 5   { 
 
     w i d t h :   7 5 %   ! i m p o r t a n t ; 
 
 } 
 
 
 
 . w - 1 0 0   { 
 
     w i d t h :   1 0 0 %   ! i m p o r t a n t ; 
 
 } 
 
 
 
 . w - a u t o   { 
 
     w i d t h :   a u t o   ! i m p o r t a n t ; 
 
 } 
 
 
 
 . h - 2 5   { 
 
     h e i g h t :   2 5 %   ! i m p o r t a n t ; 
 
 } 
 
 
 
 . h - 5 0   { 
 
     h e i g h t :   5 0 %   ! i m p o r t a n t ; 
 
 } 
 
 
 
 . h - 7 5   { 
 
     h e i g h t :   7 5 %   ! i m p o r t a n t ; 
 
 } 
 
 
 
 . h - 1 0 0   { 
 
     h e i g h t :   1 0 0 %   ! i m p o r t a n t ; 
 
 } 
 
 
 
 . h - a u t o   { 
 
     h e i g h t :   a u t o   ! i m p o r t a n t ; 
 
 } 
 
 
 
 . m w - 1 0 0   { 
 
     m a x - w i d t h :   1 0 0 %   ! i m p o r t a n t ; 
 
 } 
 
 
 
 . m h - 1 0 0   { 
 
     m a x - h e i g h t :   1 0 0 %   ! i m p o r t a n t ; 
 
 } 
 
 
 
 . m i n - v w - 1 0 0   { 
 
     m i n - w i d t h :   1 0 0 v w   ! i m p o r t a n t ; 
 
 } 
 
 
 
 . m i n - v h - 1 0 0   { 
 
     m i n - h e i g h t :   1 0 0 v h   ! i m p o r t a n t ; 
 
 } 
 
 
 
 . v w - 1 0 0   { 
 
     w i d t h :   1 0 0 v w   ! i m p o r t a n t ; 
 
 } 
 
 
 
 . v h - 1 0 0   { 
 
     h e i g h t :   1 0 0 v h   ! i m p o r t a n t ; 
 
 } 
 
 
 
 . s t r e t c h e d - l i n k : : a f t e r   { 
 
     p o s i t i o n :   a b s o l u t e ; 
 
     t o p :   0 ; 
 
     r i g h t :   0 ; 
 
     b o t t o m :   0 ; 
 
     l e f t :   0 ; 
 
     z - i n d e x :   1 ; 
 
     p o i n t e r - e v e n t s :   a u t o ; 
 
     c o n t e n t :   " " ; 
 
     b a c k g r o u n d - c o l o r :   r g b a ( 0 ,   0 ,   0 ,   0 ) ; 
 
 } 
 
 
 
 . m - 0   { 
 
     m a r g i n :   0   ! i m p o r t a n t ; 
 
 } 
 
 
 
 . m t - 0 , 
 
 . m y - 0   { 
 
     m a r g i n - t o p :   0   ! i m p o r t a n t ; 
 
 } 
 
 
 
 . m r - 0 , 
 
 . m x - 0   { 
 
     m a r g i n - r i g h t :   0   ! i m p o r t a n t ; 
 
 } 
 
 
 
 . m b - 0 , 
 
 . m y - 0   { 
 
     m a r g i n - b o t t o m :   0   ! i m p o r t a n t ; 
 
 } 
 
 
 
 . m l - 0 , 
 
 . m x - 0   { 
 
     m a r g i n - l e f t :   0   ! i m p o r t a n t ; 
 
 } 
 
 
 
 . m - 1   { 
 
     m a r g i n :   0 . 2 5 r e m   ! i m p o r t a n t ; 
 
 } 
 
 
 
 . m t - 1 , 
 
 . m y - 1   { 
 
     m a r g i n - t o p :   0 . 2 5 r e m   ! i m p o r t a n t ; 
 
 } 
 
 
 
 . m r - 1 , 
 
 . m x - 1   { 
 
     m a r g i n - r i g h t :   0 . 2 5 r e m   ! i m p o r t a n t ; 
 
 } 
 
 
 
 . m b - 1 , 
 
 . m y - 1   { 
 
     m a r g i n - b o t t o m :   0 . 2 5 r e m   ! i m p o r t a n t ; 
 
 } 
 
 
 
 . m l - 1 , 
 
 . m x - 1   { 
 
     m a r g i n - l e f t :   0 . 2 5 r e m   ! i m p o r t a n t ; 
 
 } 
 
 
 
 . m - 2   { 
 
     m a r g i n :   0 . 5 r e m   ! i m p o r t a n t ; 
 
 } 
 
 
 
 . m t - 2 , 
 
 . m y - 2   { 
 
     m a r g i n - t o p :   0 . 5 r e m   ! i m p o r t a n t ; 
 
 } 
 
 
 
 . m r - 2 , 
 
 . m x - 2   { 
 
     m a r g i n - r i g h t :   0 . 5 r e m   ! i m p o r t a n t ; 
 
 } 
 
 
 
 . m b - 2 , 
 
 . m y - 2   { 
 
     m a r g i n - b o t t o m :   0 . 5 r e m   ! i m p o r t a n t ; 
 
 } 
 
 
 
 . m l - 2 , 
 
 . m x - 2   { 
 
     m a r g i n - l e f t :   0 . 5 r e m   ! i m p o r t a n t ; 
 
 } 
 
 
 
 . m - 3   { 
 
     m a r g i n :   1 r e m   ! i m p o r t a n t ; 
 
 } 
 
 
 
 . m t - 3 , 
 
 . m y - 3   { 
 
     m a r g i n - t o p :   1 r e m   ! i m p o r t a n t ; 
 
 } 
 
 
 
 . m r - 3 , 
 
 . m x - 3   { 
 
     m a r g i n - r i g h t :   1 r e m   ! i m p o r t a n t ; 
 
 } 
 
 
 
 . m b - 3 , 
 
 . m y - 3   { 
 
     m a r g i n - b o t t o m :   1 r e m   ! i m p o r t a n t ; 
 
 } 
 
 
 
 . m l - 3 , 
 
 . m x - 3   { 
 
     m a r g i n - l e f t :   1 r e m   ! i m p o r t a n t ; 
 
 } 
 
 
 
 . m - 4   { 
 
     m a r g i n :   1 . 5 r e m   ! i m p o r t a n t ; 
 
 } 
 
 
 
 . m t - 4 , 
 
 . m y - 4   { 
 
     m a r g i n - t o p :   1 . 5 r e m   ! i m p o r t a n t ; 
 
 } 
 
 
 
 . m r - 4 , 
 
 . m x - 4   { 
 
     m a r g i n - r i g h t :   1 . 5 r e m   ! i m p o r t a n t ; 
 
 } 
 
 
 
 . m b - 4 , 
 
 . m y - 4   { 
 
     m a r g i n - b o t t o m :   1 . 5 r e m   ! i m p o r t a n t ; 
 
 } 
 
 
 
 . m l - 4 , 
 
 . m x - 4   { 
 
     m a r g i n - l e f t :   1 . 5 r e m   ! i m p o r t a n t ; 
 
 } 
 
 
 
 . m - 5   { 
 
     m a r g i n :   3 r e m   ! i m p o r t a n t ; 
 
 } 
 
 
 
 . m t - 5 , 
 
 . m y - 5   { 
 
     m a r g i n - t o p :   3 r e m   ! i m p o r t a n t ; 
 
 } 
 
 
 
 . m r - 5 , 
 
 . m x - 5   { 
 
     m a r g i n - r i g h t :   3 r e m   ! i m p o r t a n t ; 
 
 } 
 
 
 
 . m b - 5 , 
 
 . m y - 5   { 
 
     m a r g i n - b o t t o m :   3 r e m   ! i m p o r t a n t ; 
 
 } 
 
 
 
 . m l - 5 , 
 
 . m x - 5   { 
 
     m a r g i n - l e f t :   3 r e m   ! i m p o r t a n t ; 
 
 } 
 
 
 
 . p - 0   { 
 
     p a d d i n g :   0   ! i m p o r t a n t ; 
 
 } 
 
 
 
 . p t - 0 , 
 
 . p y - 0   { 
 
     p a d d i n g - t o p :   0   ! i m p o r t a n t ; 
 
 } 
 
 
 
 . p r - 0 , 
 
 . p x - 0   { 
 
     p a d d i n g - r i g h t :   0   ! i m p o r t a n t ; 
 
 } 
 
 
 
 . p b - 0 , 
 
 . p y - 0   { 
 
     p a d d i n g - b o t t o m :   0   ! i m p o r t a n t ; 
 
 } 
 
 
 
 . p l - 0 , 
 
 . p x - 0   { 
 
     p a d d i n g - l e f t :   0   ! i m p o r t a n t ; 
 
 } 
 
 
 
 . p - 1   { 
 
     p a d d i n g :   0 . 2 5 r e m   ! i m p o r t a n t ; 
 
 } 
 
 
 
 . p t - 1 , 
 
 . p y - 1   { 
 
     p a d d i n g - t o p :   0 . 2 5 r e m   ! i m p o r t a n t ; 
 
 } 
 
 
 
 . p r - 1 , 
 
 . p x - 1   { 
 
     p a d d i n g - r i g h t :   0 . 2 5 r e m   ! i m p o r t a n t ; 
 
 } 
 
 
 
 . p b - 1 , 
 
 . p y - 1   { 
 
     p a d d i n g - b o t t o m :   0 . 2 5 r e m   ! i m p o r t a n t ; 
 
 } 
 
 
 
 . p l - 1 , 
 
 . p x - 1   { 
 
     p a d d i n g - l e f t :   0 . 2 5 r e m   ! i m p o r t a n t ; 
 
 } 
 
 
 
 . p - 2   { 
 
     p a d d i n g :   0 . 5 r e m   ! i m p o r t a n t ; 
 
 } 
 
 
 
 . p t - 2 , 
 
 . p y - 2   { 
 
     p a d d i n g - t o p :   0 . 5 r e m   ! i m p o r t a n t ; 
 
 } 
 
 
 
 . p r - 2 , 
 
 . p x - 2   { 
 
     p a d d i n g - r i g h t :   0 . 5 r e m   ! i m p o r t a n t ; 
 
 } 
 
 
 
 . p b - 2 , 
 
 . p y - 2   { 
 
     p a d d i n g - b o t t o m :   0 . 5 r e m   ! i m p o r t a n t ; 
 
 } 
 
 
 
 . p l - 2 , 
 
 . p x - 2   { 
 
     p a d d i n g - l e f t :   0 . 5 r e m   ! i m p o r t a n t ; 
 
 } 
 
 
 
 . p - 3   { 
 
     p a d d i n g :   1 r e m   ! i m p o r t a n t ; 
 
 } 
 
 
 
 . p t - 3 , 
 
 . p y - 3   { 
 
     p a d d i n g - t o p :   1 r e m   ! i m p o r t a n t ; 
 
 } 
 
 
 
 . p r - 3 , 
 
 . p x - 3   { 
 
     p a d d i n g - r i g h t :   1 r e m   ! i m p o r t a n t ; 
 
 } 
 
 
 
 . p b - 3 , 
 
 . p y - 3   { 
 
     p a d d i n g - b o t t o m :   1 r e m   ! i m p o r t a n t ; 
 
 } 
 
 
 
 . p l - 3 , 
 
 . p x - 3   { 
 
     p a d d i n g - l e f t :   1 r e m   ! i m p o r t a n t ; 
 
 } 
 
 
 
 . p - 4   { 
 
     p a d d i n g :   1 . 5 r e m   ! i m p o r t a n t ; 
 
 } 
 
 
 
 . p t - 4 , 
 
 . p y - 4   { 
 
     p a d d i n g - t o p :   1 . 5 r e m   ! i m p o r t a n t ; 
 
 } 
 
 
 
 . p r - 4 , 
 
 . p x - 4   { 
 
     p a d d i n g - r i g h t :   1 . 5 r e m   ! i m p o r t a n t ; 
 
 } 
 
 
 
 . p b - 4 , 
 
 . p y - 4   { 
 
     p a d d i n g - b o t t o m :   1 . 5 r e m   ! i m p o r t a n t ; 
 
 } 
 
 
 
 . p l - 4 , 
 
 . p x - 4   { 
 
     p a d d i n g - l e f t :   1 . 5 r e m   ! i m p o r t a n t ; 
 
 } 
 
 
 
 . p - 5   { 
 
     p a d d i n g :   3 r e m   ! i m p o r t a n t ; 
 
 } 
 
 
 
 . p t - 5 , 
 
 . p y - 5   { 
 
     p a d d i n g - t o p :   3 r e m   ! i m p o r t a n t ; 
 
 } 
 
 
 
 . p r - 5 , 
 
 . p x - 5   { 
 
     p a d d i n g - r i g h t :   3 r e m   ! i m p o r t a n t ; 
 
 } 
 
 
 
 . p b - 5 , 
 
 . p y - 5   { 
 
     p a d d i n g - b o t t o m :   3 r e m   ! i m p o r t a n t ; 
 
 } 
 
 
 
 . p l - 5 , 
 
 . p x - 5   { 
 
     p a d d i n g - l e f t :   3 r e m   ! i m p o r t a n t ; 
 
 } 
 
 
 
 . m - n 1   { 
 
     m a r g i n :   - 0 . 2 5 r e m   ! i m p o r t a n t ; 
 
 } 
 
 
 
 . m t - n 1 , 
 
 . m y - n 1   { 
 
     m a r g i n - t o p :   - 0 . 2 5 r e m   ! i m p o r t a n t ; 
 
 } 
 
 
 
 . m r - n 1 , 
 
 . m x - n 1   { 
 
     m a r g i n - r i g h t :   - 0 . 2 5 r e m   ! i m p o r t a n t ; 
 
 } 
 
 
 
 . m b - n 1 , 
 
 . m y - n 1   { 
 
     m a r g i n - b o t t o m :   - 0 . 2 5 r e m   ! i m p o r t a n t ; 
 
 } 
 
 
 
 . m l - n 1 , 
 
 . m x - n 1   { 
 
     m a r g i n - l e f t :   - 0 . 2 5 r e m   ! i m p o r t a n t ; 
 
 } 
 
 
 
 . m - n 2   { 
 
     m a r g i n :   - 0 . 5 r e m   ! i m p o r t a n t ; 
 
 } 
 
 
 
 . m t - n 2 , 
 
 . m y - n 2   { 
 
     m a r g i n - t o p :   - 0 . 5 r e m   ! i m p o r t a n t ; 
 
 } 
 
 
 
 . m r - n 2 , 
 
 . m x - n 2   { 
 
     m a r g i n - r i g h t :   - 0 . 5 r e m   ! i m p o r t a n t ; 
 
 } 
 
 
 
 . m b - n 2 , 
 
 . m y - n 2   { 
 
     m a r g i n - b o t t o m :   - 0 . 5 r e m   ! i m p o r t a n t ; 
 
 } 
 
 
 
 . m l - n 2 , 
 
 . m x - n 2   { 
 
     m a r g i n - l e f t :   - 0 . 5 r e m   ! i m p o r t a n t ; 
 
 } 
 
 
 
 . m - n 3   { 
 
     m a r g i n :   - 1 r e m   ! i m p o r t a n t ; 
 
 } 
 
 
 
 . m t - n 3 , 
 
 . m y - n 3   { 
 
     m a r g i n - t o p :   - 1 r e m   ! i m p o r t a n t ; 
 
 } 
 
 
 
 . m r - n 3 , 
 
 . m x - n 3   { 
 
     m a r g i n - r i g h t :   - 1 r e m   ! i m p o r t a n t ; 
 
 } 
 
 
 
 . m b - n 3 , 
 
 . m y - n 3   { 
 
     m a r g i n - b o t t o m :   - 1 r e m   ! i m p o r t a n t ; 
 
 } 
 
 
 
 . m l - n 3 , 
 
 . m x - n 3   { 
 
     m a r g i n - l e f t :   - 1 r e m   ! i m p o r t a n t ; 
 
 } 
 
 
 
 . m - n 4   { 
 
     m a r g i n :   - 1 . 5 r e m   ! i m p o r t a n t ; 
 
 } 
 
 
 
 . m t - n 4 , 
 
 . m y - n 4   { 
 
     m a r g i n - t o p :   - 1 . 5 r e m   ! i m p o r t a n t ; 
 
 } 
 
 
 
 . m r - n 4 , 
 
 . m x - n 4   { 
 
     m a r g i n - r i g h t :   - 1 . 5 r e m   ! i m p o r t a n t ; 
 
 } 
 
 
 
 . m b - n 4 , 
 
 . m y - n 4   { 
 
     m a r g i n - b o t t o m :   - 1 . 5 r e m   ! i m p o r t a n t ; 
 
 } 
 
 
 
 . m l - n 4 , 
 
 . m x - n 4   { 
 
     m a r g i n - l e f t :   - 1 . 5 r e m   ! i m p o r t a n t ; 
 
 } 
 
 
 
 . m - n 5   { 
 
     m a r g i n :   - 3 r e m   ! i m p o r t a n t ; 
 
 } 
 
 
 
 . m t - n 5 , 
 
 . m y - n 5   { 
 
     m a r g i n - t o p :   - 3 r e m   ! i m p o r t a n t ; 
 
 } 
 
 
 
 . m r - n 5 , 
 
 . m x - n 5   { 
 
     m a r g i n - r i g h t :   - 3 r e m   ! i m p o r t a n t ; 
 
 } 
 
 
 
 . m b - n 5 , 
 
 . m y - n 5   { 
 
     m a r g i n - b o t t o m :   - 3 r e m   ! i m p o r t a n t ; 
 
 } 
 
 
 
 . m l - n 5 , 
 
 . m x - n 5   { 
 
     m a r g i n - l e f t :   - 3 r e m   ! i m p o r t a n t ; 
 
 } 
 
 
 
 . m - a u t o   { 
 
     m a r g i n :   a u t o   ! i m p o r t a n t ; 
 
 } 
 
 
 
 . m t - a u t o , 
 
 . m y - a u t o   { 
 
     m a r g i n - t o p :   a u t o   ! i m p o r t a n t ; 
 
 } 
 
 
 
 . m r - a u t o , 
 
 . m x - a u t o   { 
 
     m a r g i n - r i g h t :   a u t o   ! i m p o r t a n t ; 
 
 } 
 
 
 
 . m b - a u t o , 
 
 . m y - a u t o   { 
 
     m a r g i n - b o t t o m :   a u t o   ! i m p o r t a n t ; 
 
 } 
 
 
 
 . m l - a u t o , 
 
 . m x - a u t o   { 
 
     m a r g i n - l e f t :   a u t o   ! i m p o r t a n t ; 
 
 } 
 
 
 
 @ m e d i a   ( m i n - w i d t h :   5 7 6 p x )   { 
 
     . m - s m - 0   { 
 
         m a r g i n :   0   ! i m p o r t a n t ; 
 
     } 
 
     . m t - s m - 0 , 
 
     . m y - s m - 0   { 
 
         m a r g i n - t o p :   0   ! i m p o r t a n t ; 
 
     } 
 
     . m r - s m - 0 , 
 
     . m x - s m - 0   { 
 
         m a r g i n - r i g h t :   0   ! i m p o r t a n t ; 
 
     } 
 
     . m b - s m - 0 , 
 
     . m y - s m - 0   { 
 
         m a r g i n - b o t t o m :   0   ! i m p o r t a n t ; 
 
     } 
 
     . m l - s m - 0 , 
 
     . m x - s m - 0   { 
 
         m a r g i n - l e f t :   0   ! i m p o r t a n t ; 
 
     } 
 
     . m - s m - 1   { 
 
         m a r g i n :   0 . 2 5 r e m   ! i m p o r t a n t ; 
 
     } 
 
     . m t - s m - 1 , 
 
     . m y - s m - 1   { 
 
         m a r g i n - t o p :   0 . 2 5 r e m   ! i m p o r t a n t ; 
 
     } 
 
     . m r - s m - 1 , 
 
     . m x - s m - 1   { 
 
         m a r g i n - r i g h t :   0 . 2 5 r e m   ! i m p o r t a n t ; 
 
     } 
 
     . m b - s m - 1 , 
 
     . m y - s m - 1   { 
 
         m a r g i n - b o t t o m :   0 . 2 5 r e m   ! i m p o r t a n t ; 
 
     } 
 
     . m l - s m - 1 , 
 
     . m x - s m - 1   { 
 
         m a r g i n - l e f t :   0 . 2 5 r e m   ! i m p o r t a n t ; 
 
     } 
 
     . m - s m - 2   { 
 
         m a r g i n :   0 . 5 r e m   ! i m p o r t a n t ; 
 
     } 
 
     . m t - s m - 2 , 
 
     . m y - s m - 2   { 
 
         m a r g i n - t o p :   0 . 5 r e m   ! i m p o r t a n t ; 
 
     } 
 
     . m r - s m - 2 , 
 
     . m x - s m - 2   { 
 
         m a r g i n - r i g h t :   0 . 5 r e m   ! i m p o r t a n t ; 
 
     } 
 
     . m b - s m - 2 , 
 
     . m y - s m - 2   { 
 
         m a r g i n - b o t t o m :   0 . 5 r e m   ! i m p o r t a n t ; 
 
     } 
 
     . m l - s m - 2 , 
 
     . m x - s m - 2   { 
 
         m a r g i n - l e f t :   0 . 5 r e m   ! i m p o r t a n t ; 
 
     } 
 
     . m - s m - 3   { 
 
         m a r g i n :   1 r e m   ! i m p o r t a n t ; 
 
     } 
 
     . m t - s m - 3 , 
 
     . m y - s m - 3   { 
 
         m a r g i n - t o p :   1 r e m   ! i m p o r t a n t ; 
 
     } 
 
     . m r - s m - 3 , 
 
     . m x - s m - 3   { 
 
         m a r g i n - r i g h t :   1 r e m   ! i m p o r t a n t ; 
 
     } 
 
     . m b - s m - 3 , 
 
     . m y - s m - 3   { 
 
         m a r g i n - b o t t o m :   1 r e m   ! i m p o r t a n t ; 
 
     } 
 
     . m l - s m - 3 , 
 
     . m x - s m - 3   { 
 
         m a r g i n - l e f t :   1 r e m   ! i m p o r t a n t ; 
 
     } 
 
     . m - s m - 4   { 
 
         m a r g i n :   1 . 5 r e m   ! i m p o r t a n t ; 
 
     } 
 
     . m t - s m - 4 , 
 
     . m y - s m - 4   { 
 
         m a r g i n - t o p :   1 . 5 r e m   ! i m p o r t a n t ; 
 
     } 
 
     . m r - s m - 4 , 
 
     . m x - s m - 4   { 
 
         m a r g i n - r i g h t :   1 . 5 r e m   ! i m p o r t a n t ; 
 
     } 
 
     . m b - s m - 4 , 
 
     . m y - s m - 4   { 
 
         m a r g i n - b o t t o m :   1 . 5 r e m   ! i m p o r t a n t ; 
 
     } 
 
     . m l - s m - 4 , 
 
     . m x - s m - 4   { 
 
         m a r g i n - l e f t :   1 . 5 r e m   ! i m p o r t a n t ; 
 
     } 
 
     . m - s m - 5   { 
 
         m a r g i n :   3 r e m   ! i m p o r t a n t ; 
 
     } 
 
     . m t - s m - 5 , 
 
     . m y - s m - 5   { 
 
         m a r g i n - t o p :   3 r e m   ! i m p o r t a n t ; 
 
     } 
 
     . m r - s m - 5 , 
 
     . m x - s m - 5   { 
 
         m a r g i n - r i g h t :   3 r e m   ! i m p o r t a n t ; 
 
     } 
 
     . m b - s m - 5 , 
 
     . m y - s m - 5   { 
 
         m a r g i n - b o t t o m :   3 r e m   ! i m p o r t a n t ; 
 
     } 
 
     . m l - s m - 5 , 
 
     . m x - s m - 5   { 
 
         m a r g i n - l e f t :   3 r e m   ! i m p o r t a n t ; 
 
     } 
 
     . p - s m - 0   { 
 
         p a d d i n g :   0   ! i m p o r t a n t ; 
 
     } 
 
     . p t - s m - 0 , 
 
     . p y - s m - 0   { 
 
         p a d d i n g - t o p :   0   ! i m p o r t a n t ; 
 
     } 
 
     . p r - s m - 0 , 
 
     . p x - s m - 0   { 
 
         p a d d i n g - r i g h t :   0   ! i m p o r t a n t ; 
 
     } 
 
     . p b - s m - 0 , 
 
     . p y - s m - 0   { 
 
         p a d d i n g - b o t t o m :   0   ! i m p o r t a n t ; 
 
     } 
 
     . p l - s m - 0 , 
 
     . p x - s m - 0   { 
 
         p a d d i n g - l e f t :   0   ! i m p o r t a n t ; 
 
     } 
 
     . p - s m - 1   { 
 
         p a d d i n g :   0 . 2 5 r e m   ! i m p o r t a n t ; 
 
     } 
 
     . p t - s m - 1 , 
 
     . p y - s m - 1   { 
 
         p a d d i n g - t o p :   0 . 2 5 r e m   ! i m p o r t a n t ; 
 
     } 
 
     . p r - s m - 1 , 
 
     . p x - s m - 1   { 
 
         p a d d i n g - r i g h t :   0 . 2 5 r e m   ! i m p o r t a n t ; 
 
     } 
 
     . p b - s m - 1 , 
 
     . p y - s m - 1   { 
 
         p a d d i n g - b o t t o m :   0 . 2 5 r e m   ! i m p o r t a n t ; 
 
     } 
 
     . p l - s m - 1 , 
 
     . p x - s m - 1   { 
 
         p a d d i n g - l e f t :   0 . 2 5 r e m   ! i m p o r t a n t ; 
 
     } 
 
     . p - s m - 2   { 
 
         p a d d i n g :   0 . 5 r e m   ! i m p o r t a n t ; 
 
     } 
 
     . p t - s m - 2 , 
 
     . p y - s m - 2   { 
 
         p a d d i n g - t o p :   0 . 5 r e m   ! i m p o r t a n t ; 
 
     } 
 
     . p r - s m - 2 , 
 
     . p x - s m - 2   { 
 
         p a d d i n g - r i g h t :   0 . 5 r e m   ! i m p o r t a n t ; 
 
     } 
 
     . p b - s m - 2 , 
 
     . p y - s m - 2   { 
 
         p a d d i n g - b o t t o m :   0 . 5 r e m   ! i m p o r t a n t ; 
 
     } 
 
     . p l - s m - 2 , 
 
     . p x - s m - 2   { 
 
         p a d d i n g - l e f t :   0 . 5 r e m   ! i m p o r t a n t ; 
 
     } 
 
     . p - s m - 3   { 
 
         p a d d i n g :   1 r e m   ! i m p o r t a n t ; 
 
     } 
 
     . p t - s m - 3 , 
 
     . p y - s m - 3   { 
 
         p a d d i n g - t o p :   1 r e m   ! i m p o r t a n t ; 
 
     } 
 
     . p r - s m - 3 , 
 
     . p x - s m - 3   { 
 
         p a d d i n g - r i g h t :   1 r e m   ! i m p o r t a n t ; 
 
     } 
 
     . p b - s m - 3 , 
 
     . p y - s m - 3   { 
 
         p a d d i n g - b o t t o m :   1 r e m   ! i m p o r t a n t ; 
 
     } 
 
     . p l - s m - 3 , 
 
     . p x - s m - 3   { 
 
         p a d d i n g - l e f t :   1 r e m   ! i m p o r t a n t ; 
 
     } 
 
     . p - s m - 4   { 
 
         p a d d i n g :   1 . 5 r e m   ! i m p o r t a n t ; 
 
     } 
 
     . p t - s m - 4 , 
 
     . p y - s m - 4   { 
 
         p a d d i n g - t o p :   1 . 5 r e m   ! i m p o r t a n t ; 
 
     } 
 
     . p r - s m - 4 , 
 
     . p x - s m - 4   { 
 
         p a d d i n g - r i g h t :   1 . 5 r e m   ! i m p o r t a n t ; 
 
     } 
 
     . p b - s m - 4 , 
 
     . p y - s m - 4   { 
 
         p a d d i n g - b o t t o m :   1 . 5 r e m   ! i m p o r t a n t ; 
 
     } 
 
     . p l - s m - 4 , 
 
     . p x - s m - 4   { 
 
         p a d d i n g - l e f t :   1 . 5 r e m   ! i m p o r t a n t ; 
 
     } 
 
     . p - s m - 5   { 
 
         p a d d i n g :   3 r e m   ! i m p o r t a n t ; 
 
     } 
 
     . p t - s m - 5 , 
 
     . p y - s m - 5   { 
 
         p a d d i n g - t o p :   3 r e m   ! i m p o r t a n t ; 
 
     } 
 
     . p r - s m - 5 , 
 
     . p x - s m - 5   { 
 
         p a d d i n g - r i g h t :   3 r e m   ! i m p o r t a n t ; 
 
     } 
 
     . p b - s m - 5 , 
 
     . p y - s m - 5   { 
 
         p a d d i n g - b o t t o m :   3 r e m   ! i m p o r t a n t ; 
 
     } 
 
     . p l - s m - 5 , 
 
     . p x - s m - 5   { 
 
         p a d d i n g - l e f t :   3 r e m   ! i m p o r t a n t ; 
 
     } 
 
     . m - s m - n 1   { 
 
         m a r g i n :   - 0 . 2 5 r e m   ! i m p o r t a n t ; 
 
     } 
 
     . m t - s m - n 1 , 
 
     . m y - s m - n 1   { 
 
         m a r g i n - t o p :   - 0 . 2 5 r e m   ! i m p o r t a n t ; 
 
     } 
 
     . m r - s m - n 1 , 
 
     . m x - s m - n 1   { 
 
         m a r g i n - r i g h t :   - 0 . 2 5 r e m   ! i m p o r t a n t ; 
 
     } 
 
     . m b - s m - n 1 , 
 
     . m y - s m - n 1   { 
 
         m a r g i n - b o t t o m :   - 0 . 2 5 r e m   ! i m p o r t a n t ; 
 
     } 
 
     . m l - s m - n 1 , 
 
     . m x - s m - n 1   { 
 
         m a r g i n - l e f t :   - 0 . 2 5 r e m   ! i m p o r t a n t ; 
 
     } 
 
     . m - s m - n 2   { 
 
         m a r g i n :   - 0 . 5 r e m   ! i m p o r t a n t ; 
 
     } 
 
     . m t - s m - n 2 , 
 
     . m y - s m - n 2   { 
 
         m a r g i n - t o p :   - 0 . 5 r e m   ! i m p o r t a n t ; 
 
     } 
 
     . m r - s m - n 2 , 
 
     . m x - s m - n 2   { 
 
         m a r g i n - r i g h t :   - 0 . 5 r e m   ! i m p o r t a n t ; 
 
     } 
 
     . m b - s m - n 2 , 
 
     . m y - s m - n 2   { 
 
         m a r g i n - b o t t o m :   - 0 . 5 r e m   ! i m p o r t a n t ; 
 
     } 
 
     . m l - s m - n 2 , 
 
     . m x - s m - n 2   { 
 
         m a r g i n - l e f t :   - 0 . 5 r e m   ! i m p o r t a n t ; 
 
     } 
 
     . m - s m - n 3   { 
 
         m a r g i n :   - 1 r e m   ! i m p o r t a n t ; 
 
     } 
 
     . m t - s m - n 3 , 
 
     . m y - s m - n 3   { 
 
         m a r g i n - t o p :   - 1 r e m   ! i m p o r t a n t ; 
 
     } 
 
     . m r - s m - n 3 , 
 
     . m x - s m - n 3   { 
 
         m a r g i n - r i g h t :   - 1 r e m   ! i m p o r t a n t ; 
 
     } 
 
     . m b - s m - n 3 , 
 
     . m y - s m - n 3   { 
 
         m a r g i n - b o t t o m :   - 1 r e m   ! i m p o r t a n t ; 
 
     } 
 
     . m l - s m - n 3 , 
 
     . m x - s m - n 3   { 
 
         m a r g i n - l e f t :   - 1 r e m   ! i m p o r t a n t ; 
 
     } 
 
     . m - s m - n 4   { 
 
         m a r g i n :   - 1 . 5 r e m   ! i m p o r t a n t ; 
 
     } 
 
     . m t - s m - n 4 , 
 
     . m y - s m - n 4   { 
 
         m a r g i n - t o p :   - 1 . 5 r e m   ! i m p o r t a n t ; 
 
     } 
 
     . m r - s m - n 4 , 
 
     . m x - s m - n 4   { 
 
         m a r g i n - r i g h t :   - 1 . 5 r e m   ! i m p o r t a n t ; 
 
     } 
 
     . m b - s m - n 4 , 
 
     . m y - s m - n 4   { 
 
         m a r g i n - b o t t o m :   - 1 . 5 r e m   ! i m p o r t a n t ; 
 
     } 
 
     . m l - s m - n 4 , 
 
     . m x - s m - n 4   { 
 
         m a r g i n - l e f t :   - 1 . 5 r e m   ! i m p o r t a n t ; 
 
     } 
 
     . m - s m - n 5   { 
 
         m a r g i n :   - 3 r e m   ! i m p o r t a n t ; 
 
     } 
 
     . m t - s m - n 5 , 
 
     . m y - s m - n 5   { 
 
         m a r g i n - t o p :   - 3 r e m   ! i m p o r t a n t ; 
 
     } 
 
     . m r - s m - n 5 , 
 
     . m x - s m - n 5   { 
 
         m a r g i n - r i g h t :   - 3 r e m   ! i m p o r t a n t ; 
 
     } 
 
     . m b - s m - n 5 , 
 
     . m y - s m - n 5   { 
 
         m a r g i n - b o t t o m :   - 3 r e m   ! i m p o r t a n t ; 
 
     } 
 
     . m l - s m - n 5 , 
 
     . m x - s m - n 5   { 
 
         m a r g i n - l e f t :   - 3 r e m   ! i m p o r t a n t ; 
 
     } 
 
     . m - s m - a u t o   { 
 
         m a r g i n :   a u t o   ! i m p o r t a n t ; 
 
     } 
 
     . m t - s m - a u t o , 
 
     . m y - s m - a u t o   { 
 
         m a r g i n - t o p :   a u t o   ! i m p o r t a n t ; 
 
     } 
 
     . m r - s m - a u t o , 
 
     . m x - s m - a u t o   { 
 
         m a r g i n - r i g h t :   a u t o   ! i m p o r t a n t ; 
 
     } 
 
     . m b - s m - a u t o , 
 
     . m y - s m - a u t o   { 
 
         m a r g i n - b o t t o m :   a u t o   ! i m p o r t a n t ; 
 
     } 
 
     . m l - s m - a u t o , 
 
     . m x - s m - a u t o   { 
 
         m a r g i n - l e f t :   a u t o   ! i m p o r t a n t ; 
 
     } 
 
 } 
 
 
 
 @ m e d i a   ( m i n - w i d t h :   7 6 8 p x )   { 
 
     . m - m d - 0   { 
 
         m a r g i n :   0   ! i m p o r t a n t ; 
 
     } 
 
     . m t - m d - 0 , 
 
     . m y - m d - 0   { 
 
         m a r g i n - t o p :   0   ! i m p o r t a n t ; 
 
     } 
 
     . m r - m d - 0 , 
 
     . m x - m d - 0   { 
 
         m a r g i n - r i g h t :   0   ! i m p o r t a n t ; 
 
     } 
 
     . m b - m d - 0 , 
 
     . m y - m d - 0   { 
 
         m a r g i n - b o t t o m :   0   ! i m p o r t a n t ; 
 
     } 
 
     . m l - m d - 0 , 
 
     . m x - m d - 0   { 
 
         m a r g i n - l e f t :   0   ! i m p o r t a n t ; 
 
     } 
 
     . m - m d - 1   { 
 
         m a r g i n :   0 . 2 5 r e m   ! i m p o r t a n t ; 
 
     } 
 
     . m t - m d - 1 , 
 
     . m y - m d - 1   { 
 
         m a r g i n - t o p :   0 . 2 5 r e m   ! i m p o r t a n t ; 
 
     } 
 
     . m r - m d - 1 , 
 
     . m x - m d - 1   { 
 
         m a r g i n - r i g h t :   0 . 2 5 r e m   ! i m p o r t a n t ; 
 
     } 
 
     . m b - m d - 1 , 
 
     . m y - m d - 1   { 
 
         m a r g i n - b o t t o m :   0 . 2 5 r e m   ! i m p o r t a n t ; 
 
     } 
 
     . m l - m d - 1 , 
 
     . m x - m d - 1   { 
 
         m a r g i n - l e f t :   0 . 2 5 r e m   ! i m p o r t a n t ; 
 
     } 
 
     . m - m d - 2   { 
 
         m a r g i n :   0 . 5 r e m   ! i m p o r t a n t ; 
 
     } 
 
     . m t - m d - 2 , 
 
     . m y - m d - 2   { 
 
         m a r g i n - t o p :   0 . 5 r e m   ! i m p o r t a n t ; 
 
     } 
 
     . m r - m d - 2 , 
 
     . m x - m d - 2   { 
 
         m a r g i n - r i g h t :   0 . 5 r e m   ! i m p o r t a n t ; 
 
     } 
 
     . m b - m d - 2 , 
 
     . m y - m d - 2   { 
 
         m a r g i n - b o t t o m :   0 . 5 r e m   ! i m p o r t a n t ; 
 
     } 
 
     . m l - m d - 2 , 
 
     . m x - m d - 2   { 
 
         m a r g i n - l e f t :   0 . 5 r e m   ! i m p o r t a n t ; 
 
     } 
 
     . m - m d - 3   { 
 
         m a r g i n :   1 r e m   ! i m p o r t a n t ; 
 
     } 
 
     . m t - m d - 3 , 
 
     . m y - m d - 3   { 
 
         m a r g i n - t o p :   1 r e m   ! i m p o r t a n t ; 
 
     } 
 
     . m r - m d - 3 , 
 
     . m x - m d - 3   { 
 
         m a r g i n - r i g h t :   1 r e m   ! i m p o r t a n t ; 
 
     } 
 
     . m b - m d - 3 , 
 
     . m y - m d - 3   { 
 
         m a r g i n - b o t t o m :   1 r e m   ! i m p o r t a n t ; 
 
     } 
 
     . m l - m d - 3 , 
 
     . m x - m d - 3   { 
 
         m a r g i n - l e f t :   1 r e m   ! i m p o r t a n t ; 
 
     } 
 
     . m - m d - 4   { 
 
         m a r g i n :   1 . 5 r e m   ! i m p o r t a n t ; 
 
     } 
 
     . m t - m d - 4 , 
 
     . m y - m d - 4   { 
 
         m a r g i n - t o p :   1 . 5 r e m   ! i m p o r t a n t ; 
 
     } 
 
     . m r - m d - 4 , 
 
     . m x - m d - 4   { 
 
         m a r g i n - r i g h t :   1 . 5 r e m   ! i m p o r t a n t ; 
 
     } 
 
     . m b - m d - 4 , 
 
     . m y - m d - 4   { 
 
         m a r g i n - b o t t o m :   1 . 5 r e m   ! i m p o r t a n t ; 
 
     } 
 
     . m l - m d - 4 , 
 
     . m x - m d - 4   { 
 
         m a r g i n - l e f t :   1 . 5 r e m   ! i m p o r t a n t ; 
 
     } 
 
     . m - m d - 5   { 
 
         m a r g i n :   3 r e m   ! i m p o r t a n t ; 
 
     } 
 
     . m t - m d - 5 , 
 
     . m y - m d - 5   { 
 
         m a r g i n - t o p :   3 r e m   ! i m p o r t a n t ; 
 
     } 
 
     . m r - m d - 5 , 
 
     . m x - m d - 5   { 
 
         m a r g i n - r i g h t :   3 r e m   ! i m p o r t a n t ; 
 
     } 
 
     . m b - m d - 5 , 
 
     . m y - m d - 5   { 
 
         m a r g i n - b o t t o m :   3 r e m   ! i m p o r t a n t ; 
 
     } 
 
     . m l - m d - 5 , 
 
     . m x - m d - 5   { 
 
         m a r g i n - l e f t :   3 r e m   ! i m p o r t a n t ; 
 
     } 
 
     . p - m d - 0   { 
 
         p a d d i n g :   0   ! i m p o r t a n t ; 
 
     } 
 
     . p t - m d - 0 , 
 
     . p y - m d - 0   { 
 
         p a d d i n g - t o p :   0   ! i m p o r t a n t ; 
 
     } 
 
     . p r - m d - 0 , 
 
     . p x - m d - 0   { 
 
         p a d d i n g - r i g h t :   0   ! i m p o r t a n t ; 
 
     } 
 
     . p b - m d - 0 , 
 
     . p y - m d - 0   { 
 
         p a d d i n g - b o t t o m :   0   ! i m p o r t a n t ; 
 
     } 
 
     . p l - m d - 0 , 
 
     . p x - m d - 0   { 
 
         p a d d i n g - l e f t :   0   ! i m p o r t a n t ; 
 
     } 
 
     . p - m d - 1   { 
 
         p a d d i n g :   0 . 2 5 r e m   ! i m p o r t a n t ; 
 
     } 
 
     . p t - m d - 1 , 
 
     . p y - m d - 1   { 
 
         p a d d i n g - t o p :   0 . 2 5 r e m   ! i m p o r t a n t ; 
 
     } 
 
     . p r - m d - 1 , 
 
     . p x - m d - 1   { 
 
         p a d d i n g - r i g h t :   0 . 2 5 r e m   ! i m p o r t a n t ; 
 
     } 
 
     . p b - m d - 1 , 
 
     . p y - m d - 1   { 
 
         p a d d i n g - b o t t o m :   0 . 2 5 r e m   ! i m p o r t a n t ; 
 
     } 
 
     . p l - m d - 1 , 
 
     . p x - m d - 1   { 
 
         p a d d i n g - l e f t :   0 . 2 5 r e m   ! i m p o r t a n t ; 
 
     } 
 
     . p - m d - 2   { 
 
         p a d d i n g :   0 . 5 r e m   ! i m p o r t a n t ; 
 
     } 
 
     . p t - m d - 2 , 
 
     . p y - m d - 2   { 
 
         p a d d i n g - t o p :   0 . 5 r e m   ! i m p o r t a n t ; 
 
     } 
 
     . p r - m d - 2 , 
 
     . p x - m d - 2   { 
 
         p a d d i n g - r i g h t :   0 . 5 r e m   ! i m p o r t a n t ; 
 
     } 
 
     . p b - m d - 2 , 
 
     . p y - m d - 2   { 
 
         p a d d i n g - b o t t o m :   0 . 5 r e m   ! i m p o r t a n t ; 
 
     } 
 
     . p l - m d - 2 , 
 
     . p x - m d - 2   { 
 
         p a d d i n g - l e f t :   0 . 5 r e m   ! i m p o r t a n t ; 
 
     } 
 
     . p - m d - 3   { 
 
         p a d d i n g :   1 r e m   ! i m p o r t a n t ; 
 
     } 
 
     . p t - m d - 3 , 
 
     . p y - m d - 3   { 
 
         p a d d i n g - t o p :   1 r e m   ! i m p o r t a n t ; 
 
     } 
 
     . p r - m d - 3 , 
 
     . p x - m d - 3   { 
 
         p a d d i n g - r i g h t :   1 r e m   ! i m p o r t a n t ; 
 
     } 
 
     . p b - m d - 3 , 
 
     . p y - m d - 3   { 
 
         p a d d i n g - b o t t o m :   1 r e m   ! i m p o r t a n t ; 
 
     } 
 
     . p l - m d - 3 , 
 
     . p x - m d - 3   { 
 
         p a d d i n g - l e f t :   1 r e m   ! i m p o r t a n t ; 
 
     } 
 
     . p - m d - 4   { 
 
         p a d d i n g :   1 . 5 r e m   ! i m p o r t a n t ; 
 
     } 
 
     . p t - m d - 4 , 
 
     . p y - m d - 4   { 
 
         p a d d i n g - t o p :   1 . 5 r e m   ! i m p o r t a n t ; 
 
     } 
 
     . p r - m d - 4 , 
 
     . p x - m d - 4   { 
 
         p a d d i n g - r i g h t :   1 . 5 r e m   ! i m p o r t a n t ; 
 
     } 
 
     . p b - m d - 4 , 
 
     . p y - m d - 4   { 
 
         p a d d i n g - b o t t o m :   1 . 5 r e m   ! i m p o r t a n t ; 
 
     } 
 
     . p l - m d - 4 , 
 
     . p x - m d - 4   { 
 
         p a d d i n g - l e f t :   1 . 5 r e m   ! i m p o r t a n t ; 
 
     } 
 
     . p - m d - 5   { 
 
         p a d d i n g :   3 r e m   ! i m p o r t a n t ; 
 
     } 
 
     . p t - m d - 5 , 
 
     . p y - m d - 5   { 
 
         p a d d i n g - t o p :   3 r e m   ! i m p o r t a n t ; 
 
     } 
 
     . p r - m d - 5 , 
 
     . p x - m d - 5   { 
 
         p a d d i n g - r i g h t :   3 r e m   ! i m p o r t a n t ; 
 
     } 
 
     . p b - m d - 5 , 
 
     . p y - m d - 5   { 
 
         p a d d i n g - b o t t o m :   3 r e m   ! i m p o r t a n t ; 
 
     } 
 
     . p l - m d - 5 , 
 
     . p x - m d - 5   { 
 
         p a d d i n g - l e f t :   3 r e m   ! i m p o r t a n t ; 
 
     } 
 
     . m - m d - n 1   { 
 
         m a r g i n :   - 0 . 2 5 r e m   ! i m p o r t a n t ; 
 
     } 
 
     . m t - m d - n 1 , 
 
     . m y - m d - n 1   { 
 
         m a r g i n - t o p :   - 0 . 2 5 r e m   ! i m p o r t a n t ; 
 
     } 
 
     . m r - m d - n 1 , 
 
     . m x - m d - n 1   { 
 
         m a r g i n - r i g h t :   - 0 . 2 5 r e m   ! i m p o r t a n t ; 
 
     } 
 
     . m b - m d - n 1 , 
 
     . m y - m d - n 1   { 
 
         m a r g i n - b o t t o m :   - 0 . 2 5 r e m   ! i m p o r t a n t ; 
 
     } 
 
     . m l - m d - n 1 , 
 
     . m x - m d - n 1   { 
 
         m a r g i n - l e f t :   - 0 . 2 5 r e m   ! i m p o r t a n t ; 
 
     } 
 
     . m - m d - n 2   { 
 
         m a r g i n :   - 0 . 5 r e m   ! i m p o r t a n t ; 
 
     } 
 
     . m t - m d - n 2 , 
 
     . m y - m d - n 2   { 
 
         m a r g i n - t o p :   - 0 . 5 r e m   ! i m p o r t a n t ; 
 
     } 
 
     . m r - m d - n 2 , 
 
     . m x - m d - n 2   { 
 
         m a r g i n - r i g h t :   - 0 . 5 r e m   ! i m p o r t a n t ; 
 
     } 
 
     . m b - m d - n 2 , 
 
     . m y - m d - n 2   { 
 
         m a r g i n - b o t t o m :   - 0 . 5 r e m   ! i m p o r t a n t ; 
 
     } 
 
     . m l - m d - n 2 , 
 
     . m x - m d - n 2   { 
 
         m a r g i n - l e f t :   - 0 . 5 r e m   ! i m p o r t a n t ; 
 
     } 
 
     . m - m d - n 3   { 
 
         m a r g i n :   - 1 r e m   ! i m p o r t a n t ; 
 
     } 
 
     . m t - m d - n 3 , 
 
     . m y - m d - n 3   { 
 
         m a r g i n - t o p :   - 1 r e m   ! i m p o r t a n t ; 
 
     } 
 
     . m r - m d - n 3 , 
 
     . m x - m d - n 3   { 
 
         m a r g i n - r i g h t :   - 1 r e m   ! i m p o r t a n t ; 
 
     } 
 
     . m b - m d - n 3 , 
 
     . m y - m d - n 3   { 
 
         m a r g i n - b o t t o m :   - 1 r e m   ! i m p o r t a n t ; 
 
     } 
 
     . m l - m d - n 3 , 
 
     . m x - m d - n 3   { 
 
         m a r g i n - l e f t :   - 1 r e m   ! i m p o r t a n t ; 
 
     } 
 
     . m - m d - n 4   { 
 
         m a r g i n :   - 1 . 5 r e m   ! i m p o r t a n t ; 
 
     } 
 
     . m t - m d - n 4 , 
 
     . m y - m d - n 4   { 
 
         m a r g i n - t o p :   - 1 . 5 r e m   ! i m p o r t a n t ; 
 
     } 
 
     . m r - m d - n 4 , 
 
     . m x - m d - n 4   { 
 
         m a r g i n - r i g h t :   - 1 . 5 r e m   ! i m p o r t a n t ; 
 
     } 
 
     . m b - m d - n 4 , 
 
     . m y - m d - n 4   { 
 
         m a r g i n - b o t t o m :   - 1 . 5 r e m   ! i m p o r t a n t ; 
 
     } 
 
     . m l - m d - n 4 , 
 
     . m x - m d - n 4   { 
 
         m a r g i n - l e f t :   - 1 . 5 r e m   ! i m p o r t a n t ; 
 
     } 
 
     . m - m d - n 5   { 
 
         m a r g i n :   - 3 r e m   ! i m p o r t a n t ; 
 
     } 
 
     . m t - m d - n 5 , 
 
     . m y - m d - n 5   { 
 
         m a r g i n - t o p :   - 3 r e m   ! i m p o r t a n t ; 
 
     } 
 
     . m r - m d - n 5 , 
 
     . m x - m d - n 5   { 
 
         m a r g i n - r i g h t :   - 3 r e m   ! i m p o r t a n t ; 
 
     } 
 
     . m b - m d - n 5 , 
 
     . m y - m d - n 5   { 
 
         m a r g i n - b o t t o m :   - 3 r e m   ! i m p o r t a n t ; 
 
     } 
 
     . m l - m d - n 5 , 
 
     . m x - m d - n 5   { 
 
         m a r g i n - l e f t :   - 3 r e m   ! i m p o r t a n t ; 
 
     } 
 
     . m - m d - a u t o   { 
 
         m a r g i n :   a u t o   ! i m p o r t a n t ; 
 
     } 
 
     . m t - m d - a u t o , 
 
     . m y - m d - a u t o   { 
 
         m a r g i n - t o p :   a u t o   ! i m p o r t a n t ; 
 
     } 
 
     . m r - m d - a u t o , 
 
     . m x - m d - a u t o   { 
 
         m a r g i n - r i g h t :   a u t o   ! i m p o r t a n t ; 
 
     } 
 
     . m b - m d - a u t o , 
 
     . m y - m d - a u t o   { 
 
         m a r g i n - b o t t o m :   a u t o   ! i m p o r t a n t ; 
 
     } 
 
     . m l - m d - a u t o , 
 
     . m x - m d - a u t o   { 
 
         m a r g i n - l e f t :   a u t o   ! i m p o r t a n t ; 
 
     } 
 
 } 
 
 
 
 @ m e d i a   ( m i n - w i d t h :   9 9 2 p x )   { 
 
     . m - l g - 0   { 
 
         m a r g i n :   0   ! i m p o r t a n t ; 
 
     } 
 
     . m t - l g - 0 , 
 
     . m y - l g - 0   { 
 
         m a r g i n - t o p :   0   ! i m p o r t a n t ; 
 
     } 
 
     . m r - l g - 0 , 
 
     . m x - l g - 0   { 
 
         m a r g i n - r i g h t :   0   ! i m p o r t a n t ; 
 
     } 
 
     . m b - l g - 0 , 
 
     . m y - l g - 0   { 
 
         m a r g i n - b o t t o m :   0   ! i m p o r t a n t ; 
 
     } 
 
     . m l - l g - 0 , 
 
     . m x - l g - 0   { 
 
         m a r g i n - l e f t :   0   ! i m p o r t a n t ; 
 
     } 
 
     . m - l g - 1   { 
 
         m a r g i n :   0 . 2 5 r e m   ! i m p o r t a n t ; 
 
     } 
 
     . m t - l g - 1 , 
 
     . m y - l g - 1   { 
 
         m a r g i n - t o p :   0 . 2 5 r e m   ! i m p o r t a n t ; 
 
     } 
 
     . m r - l g - 1 , 
 
     . m x - l g - 1   { 
 
         m a r g i n - r i g h t :   0 . 2 5 r e m   ! i m p o r t a n t ; 
 
     } 
 
     . m b - l g - 1 , 
 
     . m y - l g - 1   { 
 
         m a r g i n - b o t t o m :   0 . 2 5 r e m   ! i m p o r t a n t ; 
 
     } 
 
     . m l - l g - 1 , 
 
     . m x - l g - 1   { 
 
         m a r g i n - l e f t :   0 . 2 5 r e m   ! i m p o r t a n t ; 
 
     } 
 
     . m - l g - 2   { 
 
         m a r g i n :   0 . 5 r e m   ! i m p o r t a n t ; 
 
     } 
 
     . m t - l g - 2 , 
 
     . m y - l g - 2   { 
 
         m a r g i n - t o p :   0 . 5 r e m   ! i m p o r t a n t ; 
 
     } 
 
     . m r - l g - 2 , 
 
     . m x - l g - 2   { 
 
         m a r g i n - r i g h t :   0 . 5 r e m   ! i m p o r t a n t ; 
 
     } 
 
     . m b - l g - 2 , 
 
     . m y - l g - 2   { 
 
         m a r g i n - b o t t o m :   0 . 5 r e m   ! i m p o r t a n t ; 
 
     } 
 
     . m l - l g - 2 , 
 
     . m x - l g - 2   { 
 
         m a r g i n - l e f t :   0 . 5 r e m   ! i m p o r t a n t ; 
 
     } 
 
     . m - l g - 3   { 
 
         m a r g i n :   1 r e m   ! i m p o r t a n t ; 
 
     } 
 
     . m t - l g - 3 , 
 
     . m y - l g - 3   { 
 
         m a r g i n - t o p :   1 r e m   ! i m p o r t a n t ; 
 
     } 
 
     . m r - l g - 3 , 
 
     . m x - l g - 3   { 
 
         m a r g i n - r i g h t :   1 r e m   ! i m p o r t a n t ; 
 
     } 
 
     . m b - l g - 3 , 
 
     . m y - l g - 3   { 
 
         m a r g i n - b o t t o m :   1 r e m   ! i m p o r t a n t ; 
 
     } 
 
     . m l - l g - 3 , 
 
     . m x - l g - 3   { 
 
         m a r g i n - l e f t :   1 r e m   ! i m p o r t a n t ; 
 
     } 
 
     . m - l g - 4   { 
 
         m a r g i n :   1 . 5 r e m   ! i m p o r t a n t ; 
 
     } 
 
     . m t - l g - 4 , 
 
     . m y - l g - 4   { 
 
         m a r g i n - t o p :   1 . 5 r e m   ! i m p o r t a n t ; 
 
     } 
 
     . m r - l g - 4 , 
 
     . m x - l g - 4   { 
 
         m a r g i n - r i g h t :   1 . 5 r e m   ! i m p o r t a n t ; 
 
     } 
 
     . m b - l g - 4 , 
 
     . m y - l g - 4   { 
 
         m a r g i n - b o t t o m :   1 . 5 r e m   ! i m p o r t a n t ; 
 
     } 
 
     . m l - l g - 4 , 
 
     . m x - l g - 4   { 
 
         m a r g i n - l e f t :   1 . 5 r e m   ! i m p o r t a n t ; 
 
     } 
 
     . m - l g - 5   { 
 
         m a r g i n :   3 r e m   ! i m p o r t a n t ; 
 
     } 
 
     . m t - l g - 5 , 
 
     . m y - l g - 5   { 
 
         m a r g i n - t o p :   3 r e m   ! i m p o r t a n t ; 
 
     } 
 
     . m r - l g - 5 , 
 
     . m x - l g - 5   { 
 
         m a r g i n - r i g h t :   3 r e m   ! i m p o r t a n t ; 
 
     } 
 
     . m b - l g - 5 , 
 
     . m y - l g - 5   { 
 
         m a r g i n - b o t t o m :   3 r e m   ! i m p o r t a n t ; 
 
     } 
 
     . m l - l g - 5 , 
 
     . m x - l g - 5   { 
 
         m a r g i n - l e f t :   3 r e m   ! i m p o r t a n t ; 
 
     } 
 
     . p - l g - 0   { 
 
         p a d d i n g :   0   ! i m p o r t a n t ; 
 
     } 
 
     . p t - l g - 0 , 
 
     . p y - l g - 0   { 
 
         p a d d i n g - t o p :   0   ! i m p o r t a n t ; 
 
     } 
 
     . p r - l g - 0 , 
 
     . p x - l g - 0   { 
 
         p a d d i n g - r i g h t :   0   ! i m p o r t a n t ; 
 
     } 
 
     . p b - l g - 0 , 
 
     . p y - l g - 0   { 
 
         p a d d i n g - b o t t o m :   0   ! i m p o r t a n t ; 
 
     } 
 
     . p l - l g - 0 , 
 
     . p x - l g - 0   { 
 
         p a d d i n g - l e f t :   0   ! i m p o r t a n t ; 
 
     } 
 
     . p - l g - 1   { 
 
         p a d d i n g :   0 . 2 5 r e m   ! i m p o r t a n t ; 
 
     } 
 
     . p t - l g - 1 , 
 
     . p y - l g - 1   { 
 
         p a d d i n g - t o p :   0 . 2 5 r e m   ! i m p o r t a n t ; 
 
     } 
 
     . p r - l g - 1 , 
 
     . p x - l g - 1   { 
 
         p a d d i n g - r i g h t :   0 . 2 5 r e m   ! i m p o r t a n t ; 
 
     } 
 
     . p b - l g - 1 , 
 
     . p y - l g - 1   { 
 
         p a d d i n g - b o t t o m :   0 . 2 5 r e m   ! i m p o r t a n t ; 
 
     } 
 
     . p l - l g - 1 , 
 
     . p x - l g - 1   { 
 
         p a d d i n g - l e f t :   0 . 2 5 r e m   ! i m p o r t a n t ; 
 
     } 
 
     . p - l g - 2   { 
 
         p a d d i n g :   0 . 5 r e m   ! i m p o r t a n t ; 
 
     } 
 
     . p t - l g - 2 , 
 
     . p y - l g - 2   { 
 
         p a d d i n g - t o p :   0 . 5 r e m   ! i m p o r t a n t ; 
 
     } 
 
     . p r - l g - 2 , 
 
     . p x - l g - 2   { 
 
         p a d d i n g - r i g h t :   0 . 5 r e m   ! i m p o r t a n t ; 
 
     } 
 
     . p b - l g - 2 , 
 
     . p y - l g - 2   { 
 
         p a d d i n g - b o t t o m :   0 . 5 r e m   ! i m p o r t a n t ; 
 
     } 
 
     . p l - l g - 2 , 
 
     . p x - l g - 2   { 
 
         p a d d i n g - l e f t :   0 . 5 r e m   ! i m p o r t a n t ; 
 
     } 
 
     . p - l g - 3   { 
 
         p a d d i n g :   1 r e m   ! i m p o r t a n t ; 
 
     } 
 
     . p t - l g - 3 , 
 
     . p y - l g - 3   { 
 
         p a d d i n g - t o p :   1 r e m   ! i m p o r t a n t ; 
 
     } 
 
     . p r - l g - 3 , 
 
     . p x - l g - 3   { 
 
         p a d d i n g - r i g h t :   1 r e m   ! i m p o r t a n t ; 
 
     } 
 
     . p b - l g - 3 , 
 
     . p y - l g - 3   { 
 
         p a d d i n g - b o t t o m :   1 r e m   ! i m p o r t a n t ; 
 
     } 
 
     . p l - l g - 3 , 
 
     . p x - l g - 3   { 
 
         p a d d i n g - l e f t :   1 r e m   ! i m p o r t a n t ; 
 
     } 
 
     . p - l g - 4   { 
 
         p a d d i n g :   1 . 5 r e m   ! i m p o r t a n t ; 
 
     } 
 
     . p t - l g - 4 , 
 
     . p y - l g - 4   { 
 
         p a d d i n g - t o p :   1 . 5 r e m   ! i m p o r t a n t ; 
 
     } 
 
     . p r - l g - 4 , 
 
     . p x - l g - 4   { 
 
         p a d d i n g - r i g h t :   1 . 5 r e m   ! i m p o r t a n t ; 
 
     } 
 
     . p b - l g - 4 , 
 
     . p y - l g - 4   { 
 
         p a d d i n g - b o t t o m :   1 . 5 r e m   ! i m p o r t a n t ; 
 
     } 
 
     . p l - l g - 4 , 
 
     . p x - l g - 4   { 
 
         p a d d i n g - l e f t :   1 . 5 r e m   ! i m p o r t a n t ; 
 
     } 
 
     . p - l g - 5   { 
 
         p a d d i n g :   3 r e m   ! i m p o r t a n t ; 
 
     } 
 
     . p t - l g - 5 , 
 
     . p y - l g - 5   { 
 
         p a d d i n g - t o p :   3 r e m   ! i m p o r t a n t ; 
 
     } 
 
     . p r - l g - 5 , 
 
     . p x - l g - 5   { 
 
         p a d d i n g - r i g h t :   3 r e m   ! i m p o r t a n t ; 
 
     } 
 
     . p b - l g - 5 , 
 
     . p y - l g - 5   { 
 
         p a d d i n g - b o t t o m :   3 r e m   ! i m p o r t a n t ; 
 
     } 
 
     . p l - l g - 5 , 
 
     . p x - l g - 5   { 
 
         p a d d i n g - l e f t :   3 r e m   ! i m p o r t a n t ; 
 
     } 
 
     . m - l g - n 1   { 
 
         m a r g i n :   - 0 . 2 5 r e m   ! i m p o r t a n t ; 
 
     } 
 
     . m t - l g - n 1 , 
 
     . m y - l g - n 1   { 
 
         m a r g i n - t o p :   - 0 . 2 5 r e m   ! i m p o r t a n t ; 
 
     } 
 
     . m r - l g - n 1 , 
 
     . m x - l g - n 1   { 
 
         m a r g i n - r i g h t :   - 0 . 2 5 r e m   ! i m p o r t a n t ; 
 
     } 
 
     . m b - l g - n 1 , 
 
     . m y - l g - n 1   { 
 
         m a r g i n - b o t t o m :   - 0 . 2 5 r e m   ! i m p o r t a n t ; 
 
     } 
 
     . m l - l g - n 1 , 
 
     . m x - l g - n 1   { 
 
         m a r g i n - l e f t :   - 0 . 2 5 r e m   ! i m p o r t a n t ; 
 
     } 
 
     . m - l g - n 2   { 
 
         m a r g i n :   - 0 . 5 r e m   ! i m p o r t a n t ; 
 
     } 
 
     . m t - l g - n 2 , 
 
     . m y - l g - n 2   { 
 
         m a r g i n - t o p :   - 0 . 5 r e m   ! i m p o r t a n t ; 
 
     } 
 
     . m r - l g - n 2 , 
 
     . m x - l g - n 2   { 
 
         m a r g i n - r i g h t :   - 0 . 5 r e m   ! i m p o r t a n t ; 
 
     } 
 
     . m b - l g - n 2 , 
 
     . m y - l g - n 2   { 
 
         m a r g i n - b o t t o m :   - 0 . 5 r e m   ! i m p o r t a n t ; 
 
     } 
 
     . m l - l g - n 2 , 
 
     . m x - l g - n 2   { 
 
         m a r g i n - l e f t :   - 0 . 5 r e m   ! i m p o r t a n t ; 
 
     } 
 
     . m - l g - n 3   { 
 
         m a r g i n :   - 1 r e m   ! i m p o r t a n t ; 
 
     } 
 
     . m t - l g - n 3 , 
 
     . m y - l g - n 3   { 
 
         m a r g i n - t o p :   - 1 r e m   ! i m p o r t a n t ; 
 
     } 
 
     . m r - l g - n 3 , 
 
     . m x - l g - n 3   { 
 
         m a r g i n - r i g h t :   - 1 r e m   ! i m p o r t a n t ; 
 
     } 
 
     . m b - l g - n 3 , 
 
     . m y - l g - n 3   { 
 
         m a r g i n - b o t t o m :   - 1 r e m   ! i m p o r t a n t ; 
 
     } 
 
     . m l - l g - n 3 , 
 
     . m x - l g - n 3   { 
 
         m a r g i n - l e f t :   - 1 r e m   ! i m p o r t a n t ; 
 
     } 
 
     . m - l g - n 4   { 
 
         m a r g i n :   - 1 . 5 r e m   ! i m p o r t a n t ; 
 
     } 
 
     . m t - l g - n 4 , 
 
     . m y - l g - n 4   { 
 
         m a r g i n - t o p :   - 1 . 5 r e m   ! i m p o r t a n t ; 
 
     } 
 
     . m r - l g - n 4 , 
 
     . m x - l g - n 4   { 
 
         m a r g i n - r i g h t :   - 1 . 5 r e m   ! i m p o r t a n t ; 
 
     } 
 
     . m b - l g - n 4 , 
 
     . m y - l g - n 4   { 
 
         m a r g i n - b o t t o m :   - 1 . 5 r e m   ! i m p o r t a n t ; 
 
     } 
 
     . m l - l g - n 4 , 
 
     . m x - l g - n 4   { 
 
         m a r g i n - l e f t :   - 1 . 5 r e m   ! i m p o r t a n t ; 
 
     } 
 
     . m - l g - n 5   { 
 
         m a r g i n :   - 3 r e m   ! i m p o r t a n t ; 
 
     } 
 
     . m t - l g - n 5 , 
 
     . m y - l g - n 5   { 
 
         m a r g i n - t o p :   - 3 r e m   ! i m p o r t a n t ; 
 
     } 
 
     . m r - l g - n 5 , 
 
     . m x - l g - n 5   { 
 
         m a r g i n - r i g h t :   - 3 r e m   ! i m p o r t a n t ; 
 
     } 
 
     . m b - l g - n 5 , 
 
     . m y - l g - n 5   { 
 
         m a r g i n - b o t t o m :   - 3 r e m   ! i m p o r t a n t ; 
 
     } 
 
     . m l - l g - n 5 , 
 
     . m x - l g - n 5   { 
 
         m a r g i n - l e f t :   - 3 r e m   ! i m p o r t a n t ; 
 
     } 
 
     . m - l g - a u t o   { 
 
         m a r g i n :   a u t o   ! i m p o r t a n t ; 
 
     } 
 
     . m t - l g - a u t o , 
 
     . m y - l g - a u t o   { 
 
         m a r g i n - t o p :   a u t o   ! i m p o r t a n t ; 
 
     } 
 
     . m r - l g - a u t o , 
 
     . m x - l g - a u t o   { 
 
         m a r g i n - r i g h t :   a u t o   ! i m p o r t a n t ; 
 
     } 
 
     . m b - l g - a u t o , 
 
     . m y - l g - a u t o   { 
 
         m a r g i n - b o t t o m :   a u t o   ! i m p o r t a n t ; 
 
     } 
 
     . m l - l g - a u t o , 
 
     . m x - l g - a u t o   { 
 
         m a r g i n - l e f t :   a u t o   ! i m p o r t a n t ; 
 
     } 
 
 } 
 
 
 
 @ m e d i a   ( m i n - w i d t h :   1 2 0 0 p x )   { 
 
     . m - x l - 0   { 
 
         m a r g i n :   0   ! i m p o r t a n t ; 
 
     } 
 
     . m t - x l - 0 , 
 
     . m y - x l - 0   { 
 
         m a r g i n - t o p :   0   ! i m p o r t a n t ; 
 
     } 
 
     . m r - x l - 0 , 
 
     . m x - x l - 0   { 
 
         m a r g i n - r i g h t :   0   ! i m p o r t a n t ; 
 
     } 
 
     . m b - x l - 0 , 
 
     . m y - x l - 0   { 
 
         m a r g i n - b o t t o m :   0   ! i m p o r t a n t ; 
 
     } 
 
     . m l - x l - 0 , 
 
     . m x - x l - 0   { 
 
         m a r g i n - l e f t :   0   ! i m p o r t a n t ; 
 
     } 
 
     . m - x l - 1   { 
 
         m a r g i n :   0 . 2 5 r e m   ! i m p o r t a n t ; 
 
     } 
 
     . m t - x l - 1 , 
 
     . m y - x l - 1   { 
 
         m a r g i n - t o p :   0 . 2 5 r e m   ! i m p o r t a n t ; 
 
     } 
 
     . m r - x l - 1 , 
 
     . m x - x l - 1   { 
 
         m a r g i n - r i g h t :   0 . 2 5 r e m   ! i m p o r t a n t ; 
 
     } 
 
     . m b - x l - 1 , 
 
     . m y - x l - 1   { 
 
         m a r g i n - b o t t o m :   0 . 2 5 r e m   ! i m p o r t a n t ; 
 
     } 
 
     . m l - x l - 1 , 
 
     . m x - x l - 1   { 
 
         m a r g i n - l e f t :   0 . 2 5 r e m   ! i m p o r t a n t ; 
 
     } 
 
     . m - x l - 2   { 
 
         m a r g i n :   0 . 5 r e m   ! i m p o r t a n t ; 
 
     } 
 
     . m t - x l - 2 , 
 
     . m y - x l - 2   { 
 
         m a r g i n - t o p :   0 . 5 r e m   ! i m p o r t a n t ; 
 
     } 
 
     . m r - x l - 2 , 
 
     . m x - x l - 2   { 
 
         m a r g i n - r i g h t :   0 . 5 r e m   ! i m p o r t a n t ; 
 
     } 
 
     . m b - x l - 2 , 
 
     . m y - x l - 2   { 
 
         m a r g i n - b o t t o m :   0 . 5 r e m   ! i m p o r t a n t ; 
 
     } 
 
     . m l - x l - 2 , 
 
     . m x - x l - 2   { 
 
         m a r g i n - l e f t :   0 . 5 r e m   ! i m p o r t a n t ; 
 
     } 
 
     . m - x l - 3   { 
 
         m a r g i n :   1 r e m   ! i m p o r t a n t ; 
 
     } 
 
     . m t - x l - 3 , 
 
     . m y - x l - 3   { 
 
         m a r g i n - t o p :   1 r e m   ! i m p o r t a n t ; 
 
     } 
 
     . m r - x l - 3 , 
 
     . m x - x l - 3   { 
 
         m a r g i n - r i g h t :   1 r e m   ! i m p o r t a n t ; 
 
     } 
 
     . m b - x l - 3 , 
 
     . m y - x l - 3   { 
 
         m a r g i n - b o t t o m :   1 r e m   ! i m p o r t a n t ; 
 
     } 
 
     . m l - x l - 3 , 
 
     . m x - x l - 3   { 
 
         m a r g i n - l e f t :   1 r e m   ! i m p o r t a n t ; 
 
     } 
 
     . m - x l - 4   { 
 
         m a r g i n :   1 . 5 r e m   ! i m p o r t a n t ; 
 
     } 
 
     . m t - x l - 4 , 
 
     . m y - x l - 4   { 
 
         m a r g i n - t o p :   1 . 5 r e m   ! i m p o r t a n t ; 
 
     } 
 
     . m r - x l - 4 , 
 
     . m x - x l - 4   { 
 
         m a r g i n - r i g h t :   1 . 5 r e m   ! i m p o r t a n t ; 
 
     } 
 
     . m b - x l - 4 , 
 
     . m y - x l - 4   { 
 
         m a r g i n - b o t t o m :   1 . 5 r e m   ! i m p o r t a n t ; 
 
     } 
 
     . m l - x l - 4 , 
 
     . m x - x l - 4   { 
 
         m a r g i n - l e f t :   1 . 5 r e m   ! i m p o r t a n t ; 
 
     } 
 
     . m - x l - 5   { 
 
         m a r g i n :   3 r e m   ! i m p o r t a n t ; 
 
     } 
 
     . m t - x l - 5 , 
 
     . m y - x l - 5   { 
 
         m a r g i n - t o p :   3 r e m   ! i m p o r t a n t ; 
 
     } 
 
     . m r - x l - 5 , 
 
     . m x - x l - 5   { 
 
         m a r g i n - r i g h t :   3 r e m   ! i m p o r t a n t ; 
 
     } 
 
     . m b - x l - 5 , 
 
     . m y - x l - 5   { 
 
         m a r g i n - b o t t o m :   3 r e m   ! i m p o r t a n t ; 
 
     } 
 
     . m l - x l - 5 , 
 
     . m x - x l - 5   { 
 
         m a r g i n - l e f t :   3 r e m   ! i m p o r t a n t ; 
 
     } 
 
     . p - x l - 0   { 
 
         p a d d i n g :   0   ! i m p o r t a n t ; 
 
     } 
 
     . p t - x l - 0 , 
 
     . p y - x l - 0   { 
 
         p a d d i n g - t o p :   0   ! i m p o r t a n t ; 
 
     } 
 
     . p r - x l - 0 , 
 
     . p x - x l - 0   { 
 
         p a d d i n g - r i g h t :   0   ! i m p o r t a n t ; 
 
     } 
 
     . p b - x l - 0 , 
 
     . p y - x l - 0   { 
 
         p a d d i n g - b o t t o m :   0   ! i m p o r t a n t ; 
 
     } 
 
     . p l - x l - 0 , 
 
     . p x - x l - 0   { 
 
         p a d d i n g - l e f t :   0   ! i m p o r t a n t ; 
 
     } 
 
     . p - x l - 1   { 
 
         p a d d i n g :   0 . 2 5 r e m   ! i m p o r t a n t ; 
 
     } 
 
     . p t - x l - 1 , 
 
     . p y - x l - 1   { 
 
         p a d d i n g - t o p :   0 . 2 5 r e m   ! i m p o r t a n t ; 
 
     } 
 
     . p r - x l - 1 , 
 
     . p x - x l - 1   { 
 
         p a d d i n g - r i g h t :   0 . 2 5 r e m   ! i m p o r t a n t ; 
 
     } 
 
     . p b - x l - 1 , 
 
     . p y - x l - 1   { 
 
         p a d d i n g - b o t t o m :   0 . 2 5 r e m   ! i m p o r t a n t ; 
 
     } 
 
     . p l - x l - 1 , 
 
     . p x - x l - 1   { 
 
         p a d d i n g - l e f t :   0 . 2 5 r e m   ! i m p o r t a n t ; 
 
     } 
 
     . p - x l - 2   { 
 
         p a d d i n g :   0 . 5 r e m   ! i m p o r t a n t ; 
 
     } 
 
     . p t - x l - 2 , 
 
     . p y - x l - 2   { 
 
         p a d d i n g - t o p :   0 . 5 r e m   ! i m p o r t a n t ; 
 
     } 
 
     . p r - x l - 2 , 
 
     . p x - x l - 2   { 
 
         p a d d i n g - r i g h t :   0 . 5 r e m   ! i m p o r t a n t ; 
 
     } 
 
     . p b - x l - 2 , 
 
     . p y - x l - 2   { 
 
         p a d d i n g - b o t t o m :   0 . 5 r e m   ! i m p o r t a n t ; 
 
     } 
 
     . p l - x l - 2 , 
 
     . p x - x l - 2   { 
 
         p a d d i n g - l e f t :   0 . 5 r e m   ! i m p o r t a n t ; 
 
     } 
 
     . p - x l - 3   { 
 
         p a d d i n g :   1 r e m   ! i m p o r t a n t ; 
 
     } 
 
     . p t - x l - 3 , 
 
     . p y - x l - 3   { 
 
         p a d d i n g - t o p :   1 r e m   ! i m p o r t a n t ; 
 
     } 
 
     . p r - x l - 3 , 
 
     . p x - x l - 3   { 
 
         p a d d i n g - r i g h t :   1 r e m   ! i m p o r t a n t ; 
 
     } 
 
     . p b - x l - 3 , 
 
     . p y - x l - 3   { 
 
         p a d d i n g - b o t t o m :   1 r e m   ! i m p o r t a n t ; 
 
     } 
 
     . p l - x l - 3 , 
 
     . p x - x l - 3   { 
 
         p a d d i n g - l e f t :   1 r e m   ! i m p o r t a n t ; 
 
     } 
 
     . p - x l - 4   { 
 
         p a d d i n g :   1 . 5 r e m   ! i m p o r t a n t ; 
 
     } 
 
     . p t - x l - 4 , 
 
     . p y - x l - 4   { 
 
         p a d d i n g - t o p :   1 . 5 r e m   ! i m p o r t a n t ; 
 
     } 
 
     . p r - x l - 4 , 
 
     . p x - x l - 4   { 
 
         p a d d i n g - r i g h t :   1 . 5 r e m   ! i m p o r t a n t ; 
 
     } 
 
     . p b - x l - 4 , 
 
     . p y - x l - 4   { 
 
         p a d d i n g - b o t t o m :   1 . 5 r e m   ! i m p o r t a n t ; 
 
     } 
 
     . p l - x l - 4 , 
 
     . p x - x l - 4   { 
 
         p a d d i n g - l e f t :   1 . 5 r e m   ! i m p o r t a n t ; 
 
     } 
 
     . p - x l - 5   { 
 
         p a d d i n g :   3 r e m   ! i m p o r t a n t ; 
 
     } 
 
     . p t - x l - 5 , 
 
     . p y - x l - 5   { 
 
         p a d d i n g - t o p :   3 r e m   ! i m p o r t a n t ; 
 
     } 
 
     . p r - x l - 5 , 
 
     . p x - x l - 5   { 
 
         p a d d i n g - r i g h t :   3 r e m   ! i m p o r t a n t ; 
 
     } 
 
     . p b - x l - 5 , 
 
     . p y - x l - 5   { 
 
         p a d d i n g - b o t t o m :   3 r e m   ! i m p o r t a n t ; 
 
     } 
 
     . p l - x l - 5 , 
 
     . p x - x l - 5   { 
 
         p a d d i n g - l e f t :   3 r e m   ! i m p o r t a n t ; 
 
     } 
 
     . m - x l - n 1   { 
 
         m a r g i n :   - 0 . 2 5 r e m   ! i m p o r t a n t ; 
 
     } 
 
     . m t - x l - n 1 , 
 
     . m y - x l - n 1   { 
 
         m a r g i n - t o p :   - 0 . 2 5 r e m   ! i m p o r t a n t ; 
 
     } 
 
     . m r - x l - n 1 , 
 
     . m x - x l - n 1   { 
 
         m a r g i n - r i g h t :   - 0 . 2 5 r e m   ! i m p o r t a n t ; 
 
     } 
 
     . m b - x l - n 1 , 
 
     . m y - x l - n 1   { 
 
         m a r g i n - b o t t o m :   - 0 . 2 5 r e m   ! i m p o r t a n t ; 
 
     } 
 
     . m l - x l - n 1 , 
 
     . m x - x l - n 1   { 
 
         m a r g i n - l e f t :   - 0 . 2 5 r e m   ! i m p o r t a n t ; 
 
     } 
 
     . m - x l - n 2   { 
 
         m a r g i n :   - 0 . 5 r e m   ! i m p o r t a n t ; 
 
     } 
 
     . m t - x l - n 2 , 
 
     . m y - x l - n 2   { 
 
         m a r g i n - t o p :   - 0 . 5 r e m   ! i m p o r t a n t ; 
 
     } 
 
     . m r - x l - n 2 , 
 
     . m x - x l - n 2   { 
 
         m a r g i n - r i g h t :   - 0 . 5 r e m   ! i m p o r t a n t ; 
 
     } 
 
     . m b - x l - n 2 , 
 
     . m y - x l - n 2   { 
 
         m a r g i n - b o t t o m :   - 0 . 5 r e m   ! i m p o r t a n t ; 
 
     } 
 
     . m l - x l - n 2 , 
 
     . m x - x l - n 2   { 
 
         m a r g i n - l e f t :   - 0 . 5 r e m   ! i m p o r t a n t ; 
 
     } 
 
     . m - x l - n 3   { 
 
         m a r g i n :   - 1 r e m   ! i m p o r t a n t ; 
 
     } 
 
     . m t - x l - n 3 , 
 
     . m y - x l - n 3   { 
 
         m a r g i n - t o p :   - 1 r e m   ! i m p o r t a n t ; 
 
     } 
 
     . m r - x l - n 3 , 
 
     . m x - x l - n 3   { 
 
         m a r g i n - r i g h t :   - 1 r e m   ! i m p o r t a n t ; 
 
     } 
 
     . m b - x l - n 3 , 
 
     . m y - x l - n 3   { 
 
         m a r g i n - b o t t o m :   - 1 r e m   ! i m p o r t a n t ; 
 
     } 
 
     . m l - x l - n 3 , 
 
     . m x - x l - n 3   { 
 
         m a r g i n - l e f t :   - 1 r e m   ! i m p o r t a n t ; 
 
     } 
 
     . m - x l - n 4   { 
 
         m a r g i n :   - 1 . 5 r e m   ! i m p o r t a n t ; 
 
     } 
 
     . m t - x l - n 4 , 
 
     . m y - x l - n 4   { 
 
         m a r g i n - t o p :   - 1 . 5 r e m   ! i m p o r t a n t ; 
 
     } 
 
     . m r - x l - n 4 , 
 
     . m x - x l - n 4   { 
 
         m a r g i n - r i g h t :   - 1 . 5 r e m   ! i m p o r t a n t ; 
 
     } 
 
     . m b - x l - n 4 , 
 
     . m y - x l - n 4   { 
 
         m a r g i n - b o t t o m :   - 1 . 5 r e m   ! i m p o r t a n t ; 
 
     } 
 
     . m l - x l - n 4 , 
 
     . m x - x l - n 4   { 
 
         m a r g i n - l e f t :   - 1 . 5 r e m   ! i m p o r t a n t ; 
 
     } 
 
     . m - x l - n 5   { 
 
         m a r g i n :   - 3 r e m   ! i m p o r t a n t ; 
 
     } 
 
     . m t - x l - n 5 , 
 
     . m y - x l - n 5   { 
 
         m a r g i n - t o p :   - 3 r e m   ! i m p o r t a n t ; 
 
     } 
 
     . m r - x l - n 5 , 
 
     . m x - x l - n 5   { 
 
         m a r g i n - r i g h t :   - 3 r e m   ! i m p o r t a n t ; 
 
     } 
 
     . m b - x l - n 5 , 
 
     . m y - x l - n 5   { 
 
         m a r g i n - b o t t o m :   - 3 r e m   ! i m p o r t a n t ; 
 
     } 
 
     . m l - x l - n 5 , 
 
     . m x - x l - n 5   { 
 
         m a r g i n - l e f t :   - 3 r e m   ! i m p o r t a n t ; 
 
     } 
 
     . m - x l - a u t o   { 
 
         m a r g i n :   a u t o   ! i m p o r t a n t ; 
 
     } 
 
     . m t - x l - a u t o , 
 
     . m y - x l - a u t o   { 
 
         m a r g i n - t o p :   a u t o   ! i m p o r t a n t ; 
 
     } 
 
     . m r - x l - a u t o , 
 
     . m x - x l - a u t o   { 
 
         m a r g i n - r i g h t :   a u t o   ! i m p o r t a n t ; 
 
     } 
 
     . m b - x l - a u t o , 
 
     . m y - x l - a u t o   { 
 
         m a r g i n - b o t t o m :   a u t o   ! i m p o r t a n t ; 
 
     } 
 
     . m l - x l - a u t o , 
 
     . m x - x l - a u t o   { 
 
         m a r g i n - l e f t :   a u t o   ! i m p o r t a n t ; 
 
     } 
 
 } 
 
 
 
 . t e x t - m o n o s p a c e   { 
 
     f o n t - f a m i l y :   S F M o n o - R e g u l a r ,   M e n l o ,   M o n a c o ,   C o n s o l a s ,   " L i b e r a t i o n   M o n o " ,   " C o u r i e r   N e w " ,   m o n o s p a c e   ! i m p o r t a n t ; 
 
 } 
 
 
 
 . t e x t - j u s t i f y   { 
 
     t e x t - a l i g n :   j u s t i f y   ! i m p o r t a n t ; 
 
 } 
 
 
 
 . t e x t - w r a p   { 
 
     w h i t e - s p a c e :   n o r m a l   ! i m p o r t a n t ; 
 
 } 
 
 
 
 . t e x t - n o w r a p   { 
 
     w h i t e - s p a c e :   n o w r a p   ! i m p o r t a n t ; 
 
 } 
 
 
 
 . t e x t - t r u n c a t e   { 
 
     o v e r f l o w :   h i d d e n ; 
 
     t e x t - o v e r f l o w :   e l l i p s i s ; 
 
     w h i t e - s p a c e :   n o w r a p ; 
 
 } 
 
 
 
 . t e x t - l e f t   { 
 
     t e x t - a l i g n :   l e f t   ! i m p o r t a n t ; 
 
 } 
 
 
 
 . t e x t - r i g h t   { 
 
     t e x t - a l i g n :   r i g h t   ! i m p o r t a n t ; 
 
 } 
 
 
 
 . t e x t - c e n t e r   { 
 
     t e x t - a l i g n :   c e n t e r   ! i m p o r t a n t ; 
 
 } 
 
 
 
 @ m e d i a   ( m i n - w i d t h :   5 7 6 p x )   { 
 
     . t e x t - s m - l e f t   { 
 
         t e x t - a l i g n :   l e f t   ! i m p o r t a n t ; 
 
     } 
 
     . t e x t - s m - r i g h t   { 
 
         t e x t - a l i g n :   r i g h t   ! i m p o r t a n t ; 
 
     } 
 
     . t e x t - s m - c e n t e r   { 
 
         t e x t - a l i g n :   c e n t e r   ! i m p o r t a n t ; 
 
     } 
 
 } 
 
 
 
 @ m e d i a   ( m i n - w i d t h :   7 6 8 p x )   { 
 
     . t e x t - m d - l e f t   { 
 
         t e x t - a l i g n :   l e f t   ! i m p o r t a n t ; 
 
     } 
 
     . t e x t - m d - r i g h t   { 
 
         t e x t - a l i g n :   r i g h t   ! i m p o r t a n t ; 
 
     } 
 
     . t e x t - m d - c e n t e r   { 
 
         t e x t - a l i g n :   c e n t e r   ! i m p o r t a n t ; 
 
     } 
 
 } 
 
 
 
 @ m e d i a   ( m i n - w i d t h :   9 9 2 p x )   { 
 
     . t e x t - l g - l e f t   { 
 
         t e x t - a l i g n :   l e f t   ! i m p o r t a n t ; 
 
     } 
 
     . t e x t - l g - r i g h t   { 
 
         t e x t - a l i g n :   r i g h t   ! i m p o r t a n t ; 
 
     } 
 
     . t e x t - l g - c e n t e r   { 
 
         t e x t - a l i g n :   c e n t e r   ! i m p o r t a n t ; 
 
     } 
 
 } 
 
 
 
 @ m e d i a   ( m i n - w i d t h :   1 2 0 0 p x )   { 
 
     . t e x t - x l - l e f t   { 
 
         t e x t - a l i g n :   l e f t   ! i m p o r t a n t ; 
 
     } 
 
     . t e x t - x l - r i g h t   { 
 
         t e x t - a l i g n :   r i g h t   ! i m p o r t a n t ; 
 
     } 
 
     . t e x t - x l - c e n t e r   { 
 
         t e x t - a l i g n :   c e n t e r   ! i m p o r t a n t ; 
 
     } 
 
 } 
 
 
 
 . t e x t - l o w e r c a s e   { 
 
     t e x t - t r a n s f o r m :   l o w e r c a s e   ! i m p o r t a n t ; 
 
 } 
 
 
 
 . t e x t - u p p e r c a s e   { 
 
     t e x t - t r a n s f o r m :   u p p e r c a s e   ! i m p o r t a n t ; 
 
 } 
 
 
 
 . t e x t - c a p i t a l i z e   { 
 
     t e x t - t r a n s f o r m :   c a p i t a l i z e   ! i m p o r t a n t ; 
 
 } 
 
 
 
 . f o n t - w e i g h t - l i g h t   { 
 
     f o n t - w e i g h t :   3 0 0   ! i m p o r t a n t ; 
 
 } 
 
 
 
 . f o n t - w e i g h t - l i g h t e r   { 
 
     f o n t - w e i g h t :   l i g h t e r   ! i m p o r t a n t ; 
 
 } 
 
 
 
 . f o n t - w e i g h t - n o r m a l   { 
 
     f o n t - w e i g h t :   4 0 0   ! i m p o r t a n t ; 
 
 } 
 
 
 
 . f o n t - w e i g h t - b o l d   { 
 
     f o n t - w e i g h t :   7 0 0   ! i m p o r t a n t ; 
 
 } 
 
 
 
 . f o n t - w e i g h t - b o l d e r   { 
 
     f o n t - w e i g h t :   b o l d e r   ! i m p o r t a n t ; 
 
 } 
 
 
 
 . f o n t - i t a l i c   { 
 
     f o n t - s t y l e :   i t a l i c   ! i m p o r t a n t ; 
 
 } 
 
 
 
 . t e x t - w h i t e   { 
 
     c o l o r :   # f f f   ! i m p o r t a n t ; 
 
 } 
 
 
 
 . t e x t - p r i m a r y   { 
 
     c o l o r :   # 0 0 7 b f f   ! i m p o r t a n t ; 
 
 } 
 
 
 
 a . t e x t - p r i m a r y : h o v e r ,   a . t e x t - p r i m a r y : f o c u s   { 
 
     c o l o r :   # 0 0 5 6 b 3   ! i m p o r t a n t ; 
 
 } 
 
 
 
 . t e x t - s e c o n d a r y   { 
 
     c o l o r :   # 6 c 7 5 7 d   ! i m p o r t a n t ; 
 
 } 
 
 
 
 a . t e x t - s e c o n d a r y : h o v e r ,   a . t e x t - s e c o n d a r y : f o c u s   { 
 
     c o l o r :   # 4 9 4 f 5 4   ! i m p o r t a n t ; 
 
 } 
 
 
 
 . t e x t - s u c c e s s   { 
 
     c o l o r :   # 2 8 a 7 4 5   ! i m p o r t a n t ; 
 
 } 
 
 
 
 a . t e x t - s u c c e s s : h o v e r ,   a . t e x t - s u c c e s s : f o c u s   { 
 
     c o l o r :   # 1 9 6 9 2 c   ! i m p o r t a n t ; 
 
 } 
 
 
 
 . t e x t - i n f o   { 
 
     c o l o r :   # 1 7 a 2 b 8   ! i m p o r t a n t ; 
 
 } 
 
 
 
 a . t e x t - i n f o : h o v e r ,   a . t e x t - i n f o : f o c u s   { 
 
     c o l o r :   # 0 f 6 6 7 4   ! i m p o r t a n t ; 
 
 } 
 
 
 
 . t e x t - w a r n i n g   { 
 
     c o l o r :   # f f c 1 0 7   ! i m p o r t a n t ; 
 
 } 
 
 
 
 a . t e x t - w a r n i n g : h o v e r ,   a . t e x t - w a r n i n g : f o c u s   { 
 
     c o l o r :   # b a 8 b 0 0   ! i m p o r t a n t ; 
 
 } 
 
 
 
 . t e x t - d a n g e r   { 
 
     c o l o r :   # d c 3 5 4 5   ! i m p o r t a n t ; 
 
 } 
 
 
 
 a . t e x t - d a n g e r : h o v e r ,   a . t e x t - d a n g e r : f o c u s   { 
 
     c o l o r :   # a 7 1 d 2 a   ! i m p o r t a n t ; 
 
 } 
 
 
 
 . t e x t - l i g h t   { 
 
     c o l o r :   # f 8 f 9 f a   ! i m p o r t a n t ; 
 
 } 
 
 
 
 a . t e x t - l i g h t : h o v e r ,   a . t e x t - l i g h t : f o c u s   { 
 
     c o l o r :   # c b d 3 d a   ! i m p o r t a n t ; 
 
 } 
 
 
 
 . t e x t - d a r k   { 
 
     c o l o r :   # 3 4 3 a 4 0   ! i m p o r t a n t ; 
 
 } 
 
 
 
 a . t e x t - d a r k : h o v e r ,   a . t e x t - d a r k : f o c u s   { 
 
     c o l o r :   # 1 2 1 4 1 6   ! i m p o r t a n t ; 
 
 } 
 
 
 
 . t e x t - b o d y   { 
 
     c o l o r :   # 2 1 2 5 2 9   ! i m p o r t a n t ; 
 
 } 
 
 
 
 . t e x t - m u t e d   { 
 
     c o l o r :   # 6 c 7 5 7 d   ! i m p o r t a n t ; 
 
 } 
 
 
 
 . t e x t - b l a c k - 5 0   { 
 
     c o l o r :   r g b a ( 0 ,   0 ,   0 ,   0 . 5 )   ! i m p o r t a n t ; 
 
 } 
 
 
 
 . t e x t - w h i t e - 5 0   { 
 
     c o l o r :   r g b a ( 2 5 5 ,   2 5 5 ,   2 5 5 ,   0 . 5 )   ! i m p o r t a n t ; 
 
 } 
 
 
 
 . t e x t - h i d e   { 
 
     f o n t :   0 / 0   a ; 
 
     c o l o r :   t r a n s p a r e n t ; 
 
     t e x t - s h a d o w :   n o n e ; 
 
     b a c k g r o u n d - c o l o r :   t r a n s p a r e n t ; 
 
     b o r d e r :   0 ; 
 
 } 
 
 
 
 . t e x t - d e c o r a t i o n - n o n e   { 
 
     t e x t - d e c o r a t i o n :   n o n e   ! i m p o r t a n t ; 
 
 } 
 
 
 
 . t e x t - b r e a k   { 
 
     w o r d - b r e a k :   b r e a k - w o r d   ! i m p o r t a n t ; 
 
     o v e r f l o w - w r a p :   b r e a k - w o r d   ! i m p o r t a n t ; 
 
 } 
 
 
 
 . t e x t - r e s e t   { 
 
     c o l o r :   i n h e r i t   ! i m p o r t a n t ; 
 
 } 
 
 
 
 . v i s i b l e   { 
 
     v i s i b i l i t y :   v i s i b l e   ! i m p o r t a n t ; 
 
 } 
 
 
 
 . i n v i s i b l e   { 
 
     v i s i b i l i t y :   h i d d e n   ! i m p o r t a n t ; 
 
 } 
 
 
 
 @ m e d i a   p r i n t   { 
 
     * , 
 
     * : : b e f o r e , 
 
     * : : a f t e r   { 
 
         t e x t - s h a d o w :   n o n e   ! i m p o r t a n t ; 
 
         b o x - s h a d o w :   n o n e   ! i m p o r t a n t ; 
 
     } 
 
     a : n o t ( . b t n )   { 
 
         t e x t - d e c o r a t i o n :   u n d e r l i n e ; 
 
     } 
 
     a b b r [ t i t l e ] : : a f t e r   { 
 
         c o n t e n t :   "   ( "   a t t r ( t i t l e )   " ) " ; 
 
     } 
 
     p r e   { 
 
         w h i t e - s p a c e :   p r e - w r a p   ! i m p o r t a n t ; 
 
     } 
 
     p r e , 
 
     b l o c k q u o t e   { 
 
         b o r d e r :   1 p x   s o l i d   # a d b 5 b d ; 
 
         p a g e - b r e a k - i n s i d e :   a v o i d ; 
 
     } 
 
     t h e a d   { 
 
         d i s p l a y :   t a b l e - h e a d e r - g r o u p ; 
 
     } 
 
     t r , 
 
     i m g   { 
 
         p a g e - b r e a k - i n s i d e :   a v o i d ; 
 
     } 
 
     p , 
 
     h 2 , 
 
     h 3   { 
 
         o r p h a n s :   3 ; 
 
         w i d o w s :   3 ; 
 
     } 
 
     h 2 , 
 
     h 3   { 
 
         p a g e - b r e a k - a f t e r :   a v o i d ; 
 
     } 
 
     @ p a g e   { 
 
         s i z e :   a 3 ; 
 
     } 
 
     b o d y   { 
 
         m i n - w i d t h :   9 9 2 p x   ! i m p o r t a n t ; 
 
     } 
 
     . c o n t a i n e r   { 
 
         m i n - w i d t h :   9 9 2 p x   ! i m p o r t a n t ; 
 
     } 
 
     . n a v b a r   { 
 
         d i s p l a y :   n o n e ; 
 
     } 
 
     . b a d g e   { 
 
         b o r d e r :   1 p x   s o l i d   # 0 0 0 ; 
 
     } 
 
     . t a b l e   { 
 
         b o r d e r - c o l l a p s e :   c o l l a p s e   ! i m p o r t a n t ; 
 
     } 
 
     . t a b l e   t d , 
 
     . t a b l e   t h   { 
 
         b a c k g r o u n d - c o l o r :   # f f f   ! i m p o r t a n t ; 
 
     } 
 
     . t a b l e - b o r d e r e d   t h , 
 
     . t a b l e - b o r d e r e d   t d   { 
 
         b o r d e r :   1 p x   s o l i d   # d e e 2 e 6   ! i m p o r t a n t ; 
 
     } 
 
     . t a b l e - d a r k   { 
 
         c o l o r :   i n h e r i t ; 
 
     } 
 
     . t a b l e - d a r k   t h , 
 
     . t a b l e - d a r k   t d , 
 
     . t a b l e - d a r k   t h e a d   t h , 
 
     . t a b l e - d a r k   t b o d y   +   t b o d y   { 
 
         b o r d e r - c o l o r :   # d e e 2 e 6 ; 
 
     } 
 
     . t a b l e   . t h e a d - d a r k   t h   { 
 
         c o l o r :   i n h e r i t ; 
 
         b o r d e r - c o l o r :   # d e e 2 e 6 ; 
 
     } 
 
 } 
 
 / * #   s o u r c e M a p p i n g U R L = b o o t s t r a p . c s s . m a p   * / 
 
 